Version Description
New: Option to add author; shortcodes are stripped from excerpts; bug fixes; Check the Changelog for more details
=
Download this release
Release Info
Developer | Ajay |
Plugin | Top 10 – Popular posts plugin for WordPress |
Version | 1.9.8.2 |
Comparing to | |
See all releases |
Code changes from version 1.9.8.1 to 1.9.8.2
- admin.inc.php +75 -24
- languages/tptn-az_AZ.mo +0 -0
- languages/tptn-az_AZ.po +191 -156
- languages/tptn-be_BY.mo +0 -0
- languages/tptn-be_BY.po +186 -155
- languages/tptn-en_US.mo +0 -0
- languages/tptn-en_US.po +184 -155
- languages/tptn-en_US.pot +184 -155
- languages/tptn-es_ES.mo +0 -0
- languages/tptn-es_ES.po +191 -156
- languages/tptn-fr_FR.mo +0 -0
- languages/tptn-fr_FR.po +191 -156
- languages/tptn-ga_IR.mo +0 -0
- languages/tptn-ga_IR.po +186 -155
- languages/tptn-hi_IN.mo +0 -0
- languages/tptn-hi_IN.po +186 -155
- languages/tptn-it_IT.mo +0 -0
- languages/tptn-it_IT.po +191 -156
- languages/tptn-nl_NL.mo +0 -0
- languages/tptn-nl_NL.po +191 -156
- languages/tptn-ro_RO.mo +0 -0
- languages/tptn-ro_RO.po +191 -156
- languages/tptn-ru_RU.mo +0 -0
- languages/tptn-ru_RU.po +191 -156
- languages/tptn-ua_UA.mo +0 -0
- languages/tptn-ua_UA.po +191 -156
- readme.txt +14 -5
- screenshot-1.png +0 -0
- screenshot-2.png +0 -0
- timthumb/timthumb.php +1 -0
- top-10-counter.js.php +0 -3
- top-10-daily.js.php +1 -1
- top-10.php +142 -74
admin.inc.php
CHANGED
@@ -72,6 +72,7 @@ function tptn_options() {
|
|
72 |
$tptn_settings['excerpt_length'] = intval($_POST['excerpt_length']);
|
73 |
$tptn_settings['title_length'] = intval($_POST['title_length']);
|
74 |
$tptn_settings['show_date'] = (isset($_POST['show_date']) ? true : false);
|
|
|
75 |
$tptn_settings['custom_CSS'] = wp_kses_post($_POST['custom_CSS']);
|
76 |
|
77 |
$tptn_settings['link_new_window'] = (isset($_POST['link_new_window']) ? true : false);
|
@@ -245,7 +246,7 @@ function tptn_options() {
|
|
245 |
</tr>
|
246 |
<tr><th scope="row"><label for="dynamic_post_count"><?php _e('Always display latest post count',TPTN_LOCAL_NAME); ?></label></th>
|
247 |
<td><input type="checkbox" name="dynamic_post_count" id="dynamic_post_count" <?php if ($tptn_settings['dynamic_post_count']) echo 'checked="checked"' ?> />
|
248 |
-
<p class="description"><?php _e('This option uses JavaScript and will increase your page load time. Turn this off if you are not using caching plugins or are OK with displaying older cached counts',TPTN_LOCAL_NAME); ?></p>
|
249 |
</td>
|
250 |
</tr>
|
251 |
<tr><th scope="row"><label for="d_use_js"><?php _e('Always display latest post count in the daily lists',TPTN_LOCAL_NAME); ?></label></th>
|
@@ -303,8 +304,11 @@ function tptn_options() {
|
|
303 |
<tr><th scope="row"><label for="excerpt_length"><?php _e('Length of excerpt (in words): ',TPTN_LOCAL_NAME); ?></label></th>
|
304 |
<td><input type="textbox" name="excerpt_length" id="excerpt_length" value="<?php echo stripslashes($tptn_settings['excerpt_length']); ?>" /></td>
|
305 |
</tr>
|
|
|
|
|
|
|
306 |
<tr><th scope="row"><label for="show_date"><?php _e('Show post date in list?',TPTN_LOCAL_NAME); ?></label></th>
|
307 |
-
|
308 |
</tr>
|
309 |
<tr><th scope="row"><label for="title_length"><?php _e('Limit post title length (in characters)',TPTN_LOCAL_NAME); ?></label></th>
|
310 |
<td><input type="textbox" name="title_length" id="title_length" value="<?php echo stripslashes($tptn_settings['title_length']); ?>" /></td>
|
@@ -916,9 +920,12 @@ add_action('wp_dashboard_setup', 'tptn_pop_dashboard_setup');
|
|
916 |
function tptn_column($cols) {
|
917 |
$tptn_settings = tptn_read_options();
|
918 |
|
919 |
-
if ($tptn_settings['pv_in_admin']) $cols['
|
|
|
920 |
return $cols;
|
921 |
}
|
|
|
|
|
922 |
|
923 |
|
924 |
/**
|
@@ -930,18 +937,20 @@ function tptn_column($cols) {
|
|
930 |
* @return void
|
931 |
*/
|
932 |
function tptn_value($column_name, $id) {
|
|
|
933 |
$tptn_settings = tptn_read_options();
|
934 |
-
|
935 |
-
|
|
|
936 |
|
937 |
$table_name = $wpdb->prefix . "top_ten";
|
938 |
|
939 |
-
$resultscount = $wpdb->get_row("
|
940 |
$cntaccess = number_format_i18n((($resultscount) ? $resultscount->cntaccess : 0));
|
941 |
-
|
942 |
-
|
943 |
-
|
944 |
-
|
945 |
$table_name = $wpdb->prefix . "top_ten_daily";
|
946 |
|
947 |
$daily_range = $tptn_settings['daily_range']-1;
|
@@ -951,11 +960,63 @@ function tptn_value($column_name, $id) {
|
|
951 |
|
952 |
$resultscount = $wpdb->get_row("SELECT postnumber, SUM(cntaccess) as sumCount FROM $table_name WHERE postnumber = $id AND dp_date >= '$current_date' GROUP BY postnumber ");
|
953 |
$cntaccess .= number_format_i18n((($resultscount) ? $resultscount->sumCount : 0));
|
954 |
-
|
955 |
-
echo $cntaccess;
|
956 |
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
957 |
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
958 |
|
|
|
|
|
|
|
959 |
|
960 |
/**
|
961 |
* Output CSS for width of new column.
|
@@ -966,20 +1027,10 @@ function tptn_value($column_name, $id) {
|
|
966 |
function tptn_css() {
|
967 |
?>
|
968 |
<style type="text/css">
|
969 |
-
#
|
970 |
</style>
|
971 |
<?php
|
972 |
}
|
973 |
-
|
974 |
-
// Actions/Filters for various tables and the css output
|
975 |
-
add_filter('manage_posts_columns', 'tptn_column');
|
976 |
-
add_action('manage_posts_custom_column', 'tptn_value', 10, 2);
|
977 |
-
add_filter('manage_pages_columns', 'tptn_column');
|
978 |
-
add_action('manage_pages_custom_column', 'tptn_value', 10, 2);
|
979 |
-
add_filter('manage_media_columns', 'tptn_column');
|
980 |
-
add_action('manage_media_custom_column', 'tptn_value', 10, 2);
|
981 |
-
add_filter('manage_link-manager_columns', 'tptn_column');
|
982 |
-
add_action('manage_link_custom_column', 'tptn_value', 10, 2);
|
983 |
-
add_action('admin_head', 'tptn_css');
|
984 |
|
985 |
?>
|
72 |
$tptn_settings['excerpt_length'] = intval($_POST['excerpt_length']);
|
73 |
$tptn_settings['title_length'] = intval($_POST['title_length']);
|
74 |
$tptn_settings['show_date'] = (isset($_POST['show_date']) ? true : false);
|
75 |
+
$tptn_settings['show_author'] = (isset($_POST['show_author']) ? true : false);
|
76 |
$tptn_settings['custom_CSS'] = wp_kses_post($_POST['custom_CSS']);
|
77 |
|
78 |
$tptn_settings['link_new_window'] = (isset($_POST['link_new_window']) ? true : false);
|
246 |
</tr>
|
247 |
<tr><th scope="row"><label for="dynamic_post_count"><?php _e('Always display latest post count',TPTN_LOCAL_NAME); ?></label></th>
|
248 |
<td><input type="checkbox" name="dynamic_post_count" id="dynamic_post_count" <?php if ($tptn_settings['dynamic_post_count']) echo 'checked="checked"' ?> />
|
249 |
+
<p class="description"><?php _e('This option uses JavaScript and will increase your page load time. Turn this off if you are not using caching plugins or are OK with displaying older cached counts. When you enable this option, the daily widget will not use the options set there, but options will need to be set on this screen.',TPTN_LOCAL_NAME); ?></p>
|
250 |
</td>
|
251 |
</tr>
|
252 |
<tr><th scope="row"><label for="d_use_js"><?php _e('Always display latest post count in the daily lists',TPTN_LOCAL_NAME); ?></label></th>
|
304 |
<tr><th scope="row"><label for="excerpt_length"><?php _e('Length of excerpt (in words): ',TPTN_LOCAL_NAME); ?></label></th>
|
305 |
<td><input type="textbox" name="excerpt_length" id="excerpt_length" value="<?php echo stripslashes($tptn_settings['excerpt_length']); ?>" /></td>
|
306 |
</tr>
|
307 |
+
<tr><th scope="row"><label for="show_author"><?php _e('Show post author in list?',TPTN_LOCAL_NAME); ?></label></th>
|
308 |
+
<td><input type="checkbox" name="show_author" id="show_author" <?php if ($tptn_settings['show_author']) echo 'checked="checked"' ?> /></td>
|
309 |
+
</tr>
|
310 |
<tr><th scope="row"><label for="show_date"><?php _e('Show post date in list?',TPTN_LOCAL_NAME); ?></label></th>
|
311 |
+
<td><input type="checkbox" name="show_date" id="show_date" <?php if ($tptn_settings['show_date']) echo 'checked="checked"' ?> /></td>
|
312 |
</tr>
|
313 |
<tr><th scope="row"><label for="title_length"><?php _e('Limit post title length (in characters)',TPTN_LOCAL_NAME); ?></label></th>
|
314 |
<td><input type="textbox" name="title_length" id="title_length" value="<?php echo stripslashes($tptn_settings['title_length']); ?>" /></td>
|
920 |
function tptn_column($cols) {
|
921 |
$tptn_settings = tptn_read_options();
|
922 |
|
923 |
+
if ($tptn_settings['pv_in_admin']) $cols['tptn_total'] = __('Total Views',TPTN_LOCAL_NAME);
|
924 |
+
if ($tptn_settings['pv_in_admin']) $cols['tptn_daily'] = __('Today\'s Views',TPTN_LOCAL_NAME);
|
925 |
return $cols;
|
926 |
}
|
927 |
+
add_filter('manage_posts_columns', 'tptn_column');
|
928 |
+
add_filter('manage_pages_columns', 'tptn_column');
|
929 |
|
930 |
|
931 |
/**
|
937 |
* @return void
|
938 |
*/
|
939 |
function tptn_value($column_name, $id) {
|
940 |
+
global $wpdb;
|
941 |
$tptn_settings = tptn_read_options();
|
942 |
+
|
943 |
+
// Add Total count
|
944 |
+
if (($column_name == 'tptn_total')&&($tptn_settings['pv_in_admin'])) {
|
945 |
|
946 |
$table_name = $wpdb->prefix . "top_ten";
|
947 |
|
948 |
+
$resultscount = $wpdb->get_row("SELECT postnumber, cntaccess from $table_name WHERE postnumber = $id");
|
949 |
$cntaccess = number_format_i18n((($resultscount) ? $resultscount->cntaccess : 0));
|
950 |
+
}
|
951 |
+
|
952 |
+
// Now process daily count
|
953 |
+
if (($column_name == 'tptn_daily')&&($tptn_settings['pv_in_admin'])) {
|
954 |
$table_name = $wpdb->prefix . "top_ten_daily";
|
955 |
|
956 |
$daily_range = $tptn_settings['daily_range']-1;
|
960 |
|
961 |
$resultscount = $wpdb->get_row("SELECT postnumber, SUM(cntaccess) as sumCount FROM $table_name WHERE postnumber = $id AND dp_date >= '$current_date' GROUP BY postnumber ");
|
962 |
$cntaccess .= number_format_i18n((($resultscount) ? $resultscount->sumCount : 0));
|
|
|
|
|
963 |
}
|
964 |
+
|
965 |
+
echo $cntaccess;
|
966 |
+
}
|
967 |
+
add_action('manage_posts_custom_column', 'tptn_value', 10, 2);
|
968 |
+
add_action('manage_pages_custom_column', 'tptn_value', 10, 2);
|
969 |
+
|
970 |
+
|
971 |
+
/**
|
972 |
+
* Regiter the columns as sortable.
|
973 |
+
*
|
974 |
+
* @access public
|
975 |
+
* @param mixed $cols
|
976 |
+
* @return void
|
977 |
+
*/
|
978 |
+
function tptn_column_register_sortable( $cols ) {
|
979 |
+
$tptn_settings = tptn_read_options();
|
980 |
+
|
981 |
+
if ($tptn_settings['pv_in_admin']) $cols['tptn_total'] = 'tptn_total';
|
982 |
+
if ($tptn_settings['pv_in_admin']) $cols['tptn_daily'] = 'tptn_daily';
|
983 |
+
return $cols;
|
984 |
}
|
985 |
+
add_filter( 'manage_edit-post_sortable_columns', 'tptn_column_register_sortable' );
|
986 |
+
add_filter( 'manage_edit-page_sortable_columns', 'tptn_column_register_sortable' );
|
987 |
+
|
988 |
+
|
989 |
+
function tptn_column_clauses( $clauses, $wp_query ) {
|
990 |
+
global $wpdb;
|
991 |
+
$tptn_settings = tptn_read_options();
|
992 |
+
|
993 |
+
if ( isset( $wp_query->query['orderby'] ) && 'tptn_total' == $wp_query->query['orderby'] ) {
|
994 |
+
|
995 |
+
$table_name = $wpdb->prefix . "top_ten";
|
996 |
+
$clauses['join'] .= "LEFT OUTER JOIN {$table_name} ON {$wpdb->posts}.ID={$table_name}.postnumber";
|
997 |
+
$clauses['orderby'] = "cntaccess ";
|
998 |
+
$clauses['orderby'] .= ( 'ASC' == strtoupper( $wp_query->get('order') ) ) ? 'ASC' : 'DESC';
|
999 |
+
}
|
1000 |
+
|
1001 |
+
if ( isset( $wp_query->query['orderby'] ) && 'tptn_daily' == $wp_query->query['orderby'] ) {
|
1002 |
+
|
1003 |
+
$table_name = $wpdb->prefix . "top_ten_daily";
|
1004 |
+
|
1005 |
+
$daily_range = $tptn_settings['daily_range'] - 1;
|
1006 |
+
$current_time = gmdate( 'Y-m-d', ( time() + ( get_option( 'gmt_offset' ) * 3600 ) ) );
|
1007 |
+
$current_date = strtotime ( '-'.$daily_range. ' DAY' , strtotime ( $current_time ) );
|
1008 |
+
$current_date = date ( 'Y-m-j' , $current_date );
|
1009 |
+
|
1010 |
+
$clauses['join'] .= "LEFT OUTER JOIN {$table_name} ON {$wpdb->posts}.ID={$table_name}.postnumber";
|
1011 |
+
$clauses['where'] .= " AND {$table_name}.dp_date >= '$current_date' ";
|
1012 |
+
$clauses['groupby'] = "{$table_name}.postnumber";
|
1013 |
+
$clauses['orderby'] = "SUM({$table_name}.cntaccess) ";
|
1014 |
+
$clauses['orderby'] .= ( 'ASC' == strtoupper( $wp_query->get('order') ) ) ? 'ASC' : 'DESC';
|
1015 |
+
}
|
1016 |
|
1017 |
+
return $clauses;
|
1018 |
+
}
|
1019 |
+
add_filter( 'posts_clauses', 'tptn_column_clauses', 10, 2 );
|
1020 |
|
1021 |
/**
|
1022 |
* Output CSS for width of new column.
|
1027 |
function tptn_css() {
|
1028 |
?>
|
1029 |
<style type="text/css">
|
1030 |
+
#tptn_total, #tptn_daily { width: 100px; }
|
1031 |
</style>
|
1032 |
<?php
|
1033 |
}
|
1034 |
+
//add_action('admin_head', 'tptn_css');
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1035 |
|
1036 |
?>
|
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: 2013-
|
6 |
"PO-Revision-Date: \n"
|
7 |
"Last-Translator: Ajay D'Souza <me@ajaydsouza.com>\n"
|
8 |
"Language-Team: Bohdan Zograf <bozograf@gmail.com>\n"
|
@@ -15,166 +15,167 @@ msgstr ""
|
|
15 |
"X-Generator: Poedit 1.5.7\n"
|
16 |
"X-Poedit-SearchPath-0: .\n"
|
17 |
|
18 |
-
#: admin.inc.php:
|
19 |
msgid "Scheduled maintenance enabled / modified"
|
20 |
msgstr ""
|
21 |
|
22 |
-
#: admin.inc.php:
|
23 |
msgid "Scheduled maintenance disabled"
|
24 |
msgstr ""
|
25 |
|
26 |
-
#: admin.inc.php:
|
27 |
msgid "Options saved successfully."
|
28 |
msgstr "Opsiyalar müvəffəqiyyətlə yaddaşda saxlanılıb."
|
29 |
|
30 |
-
#: admin.inc.php:
|
31 |
msgid "Options set to Default."
|
32 |
msgstr "Opsiyalalr standard opsiyasına qaytarılıb."
|
33 |
|
34 |
-
#: admin.inc.php:
|
35 |
msgid "Top 10 popular posts reset"
|
36 |
msgstr "10 populyar yazı statisticasını pozmaq"
|
37 |
|
38 |
-
#: admin.inc.php:
|
39 |
msgid "Top 10 daily popular posts reset"
|
40 |
msgstr "10 gündəlik populyar yazı statisticasını pozmaq"
|
41 |
|
42 |
-
#: admin.inc.php:
|
43 |
msgid "Duplicate rows cleaned from tables"
|
44 |
msgstr ""
|
45 |
|
46 |
-
#: admin.inc.php:
|
47 |
msgid "General options"
|
48 |
msgstr ""
|
49 |
|
50 |
-
#: admin.inc.php:
|
51 |
msgid "Enable Overall stats"
|
52 |
msgstr ""
|
53 |
|
54 |
-
#: admin.inc.php:
|
55 |
msgid "Enable Daily stats"
|
56 |
msgstr ""
|
57 |
|
58 |
-
#: admin.inc.php:
|
59 |
msgid "W3 Total Cache fix:"
|
60 |
msgstr ""
|
61 |
|
62 |
-
#: admin.inc.php:
|
63 |
msgid ""
|
64 |
"This will try to prevent W3 Total Cache from caching the addcount script of "
|
65 |
"the plugin. Try toggling this option in case you find that our posts are not "
|
66 |
"tracked."
|
67 |
msgstr ""
|
68 |
|
69 |
-
#: admin.inc.php:
|
70 |
msgid "Number of popular posts to display: "
|
71 |
msgstr "Populyar postların miqdarının nümayişi:"
|
72 |
|
73 |
-
#: admin.inc.php:
|
74 |
msgid "Daily Popular should contain views of how many days? "
|
75 |
msgstr ""
|
76 |
"Gündəlik Populyar yazılar neçə gün ərzində baxılışı özündə əks etdirməlidir?"
|
77 |
|
78 |
-
#: admin.inc.php:
|
79 |
msgid "Post types to include in results (including custom post types)"
|
80 |
msgstr ""
|
81 |
|
82 |
-
#: admin.inc.php:
|
83 |
msgid "List of post or page IDs to exclude from the results: "
|
84 |
msgstr ""
|
85 |
|
86 |
-
#: admin.inc.php:
|
87 |
msgid "Exclude Categories: "
|
88 |
msgstr ""
|
89 |
|
90 |
-
#: admin.inc.php:
|
91 |
msgid ""
|
92 |
"Comma separated list of category slugs. The field above has an autocomplete "
|
93 |
"so simply start typing in the starting letters and it will prompt you with "
|
94 |
"options"
|
95 |
msgstr ""
|
96 |
|
97 |
-
#: admin.inc.php:
|
98 |
#, fuzzy
|
99 |
msgid "Display number of views on:"
|
100 |
msgstr "Posta baxılmasının miqdarını göstərmək lazımdır?"
|
101 |
|
102 |
-
#: admin.inc.php:
|
103 |
msgid "Posts"
|
104 |
msgstr ""
|
105 |
|
106 |
-
#: admin.inc.php:
|
107 |
#, fuzzy
|
108 |
msgid "Pages"
|
109 |
msgstr "Səhifə"
|
110 |
|
111 |
-
#: admin.inc.php:
|
112 |
msgid "Home page"
|
113 |
msgstr ""
|
114 |
|
115 |
-
#: admin.inc.php:
|
116 |
msgid "Feeds"
|
117 |
msgstr ""
|
118 |
|
119 |
-
#: admin.inc.php:
|
120 |
msgid "Category archives"
|
121 |
msgstr ""
|
122 |
|
123 |
-
#: admin.inc.php:
|
124 |
msgid "Tag archives"
|
125 |
msgstr ""
|
126 |
|
127 |
-
#: admin.inc.php:
|
128 |
msgid "Other archives"
|
129 |
msgstr ""
|
130 |
|
131 |
-
#: admin.inc.php:
|
132 |
msgid ""
|
133 |
"If you choose to disable this, please add <code><?php if(function_exists"
|
134 |
"('echo_ald_tptn')) echo_ald_tptn(); ?></code> to your template file where "
|
135 |
"you want it displayed"
|
136 |
msgstr ""
|
137 |
|
138 |
-
#: admin.inc.php:
|
139 |
msgid "Always display latest post count"
|
140 |
msgstr ""
|
141 |
|
142 |
-
#: admin.inc.php:
|
143 |
msgid ""
|
144 |
"This option uses JavaScript and will increase your page load time. Turn this "
|
145 |
"off if you are not using caching plugins or are OK with displaying older "
|
146 |
-
"cached counts"
|
|
|
147 |
msgstr ""
|
148 |
|
149 |
-
#: admin.inc.php:
|
150 |
msgid "Always display latest post count in the daily lists"
|
151 |
msgstr ""
|
152 |
|
153 |
-
#: admin.inc.php:
|
154 |
#, fuzzy
|
155 |
msgid "This option uses JavaScript and will increase your page load time"
|
156 |
msgstr ""
|
157 |
"Polulyar yazılışları siyahını dinamik etmək lazımdır? Bu opsiya JavaScript-i "
|
158 |
"istifadə edir və bu səhifənin yükləmə vaxtını uzada bilər"
|
159 |
|
160 |
-
#: admin.inc.php:
|
161 |
msgid "Track visits of authors on their own posts?"
|
162 |
msgstr "Müəllif tərəfindən edilmiş yazıları nəzərə almaq lazımdır?"
|
163 |
|
164 |
-
#: admin.inc.php:
|
165 |
#, fuzzy
|
166 |
msgid "Track visits of admins?"
|
167 |
msgstr "Müəllif tərəfindən edilmiş yazıları nəzərə almaq lazımdır?"
|
168 |
|
169 |
-
#: admin.inc.php:
|
170 |
msgid "Display page views on Posts > All Posts in Admin"
|
171 |
msgstr ""
|
172 |
|
173 |
-
#: admin.inc.php:
|
174 |
msgid "Link to Top 10 plugin page"
|
175 |
msgstr ""
|
176 |
|
177 |
-
#: admin.inc.php:
|
178 |
#, fuzzy
|
179 |
msgid ""
|
180 |
"A link to the plugin is added as an extra list item to the list of popular "
|
@@ -183,16 +184,16 @@ msgstr ""
|
|
183 |
"Popyulyar siyahının altnda ssılkanı qoymaq lazımdır? Plaginin müəllifi Siz "
|
184 |
"onu qoyduğunuz halda Sizə çox minnətdar olardı!"
|
185 |
|
186 |
-
#: admin.inc.php:
|
187 |
#, fuzzy
|
188 |
msgid "Output Options"
|
189 |
msgstr "Plaginin kökləmələri:"
|
190 |
|
191 |
-
#: admin.inc.php:
|
192 |
msgid "Format to display the count in: "
|
193 |
msgstr "Miqdarı göstərən format:"
|
194 |
|
195 |
-
#: admin.inc.php:
|
196 |
#, fuzzy
|
197 |
msgid ""
|
198 |
"Use <code>%totalcount%</code> to display the total count, <code>%dailycount"
|
@@ -204,154 +205,159 @@ msgstr ""
|
|
204 |
"edin, <code>%dailycount%</code> - gün ərzində baxılmış. Məsələn: <code>"
|
205 |
"(Yazı 123 dəfə baxılıb, bu gün 23 dəfə baxılmışdır)</code>."
|
206 |
|
207 |
-
#: admin.inc.php:
|
208 |
msgid "Title of popular posts: "
|
209 |
msgstr "Populyar yazılarının başlığı:"
|
210 |
|
211 |
-
#: admin.inc.php:
|
212 |
msgid "Title of daily popular posts: "
|
213 |
msgstr "Gündəlik populyual yazılışların başlığı:"
|
214 |
|
215 |
-
#: admin.inc.php:
|
216 |
msgid "When there are no posts, what should be shown?"
|
217 |
msgstr ""
|
218 |
|
219 |
-
#: admin.inc.php:
|
220 |
msgid "Blank Output"
|
221 |
msgstr ""
|
222 |
|
223 |
-
#: admin.inc.php:
|
224 |
msgid "Display:"
|
225 |
msgstr ""
|
226 |
|
227 |
-
#: admin.inc.php:
|
228 |
msgid "Show post excerpt in list?"
|
229 |
msgstr "Yazılış mətnini siyahıda göstərmək lazımdır?"
|
230 |
|
231 |
-
#: admin.inc.php:
|
232 |
msgid "Length of excerpt (in words): "
|
233 |
msgstr "Çıxardılmış mətnin uzunluğu (söz ilə):"
|
234 |
|
235 |
-
#: admin.inc.php:
|
|
|
|
|
|
|
|
|
|
|
236 |
#, fuzzy
|
237 |
msgid "Show post date in list?"
|
238 |
msgstr "Yazılış mətnini siyahıda göstərmək lazımdır?"
|
239 |
|
240 |
-
#: admin.inc.php:
|
241 |
msgid "Limit post title length (in characters)"
|
242 |
msgstr ""
|
243 |
|
244 |
-
#: admin.inc.php:
|
245 |
msgid "Display number of page views in popular lists?"
|
246 |
msgstr "Populyar siyahıda baxılmış səhifənin miqdarını göstərmək lazımdır? "
|
247 |
|
248 |
-
#: admin.inc.php:
|
249 |
msgid "Open links in new window"
|
250 |
msgstr ""
|
251 |
|
252 |
-
#: admin.inc.php:
|
253 |
msgid "Add nofollow attribute to links in the list"
|
254 |
msgstr ""
|
255 |
|
256 |
-
#: admin.inc.php:
|
257 |
msgid "Exclude display of related posts on these posts / pages"
|
258 |
msgstr ""
|
259 |
|
260 |
-
#: admin.inc.php:
|
261 |
msgid "Enter comma separated list of IDs. e.g. 188,320,500"
|
262 |
msgstr ""
|
263 |
|
264 |
-
#: admin.inc.php:
|
265 |
msgid "Customize the output:"
|
266 |
msgstr "Suiyahı formasının kökləmələri:"
|
267 |
|
268 |
-
#: admin.inc.php:
|
269 |
msgid "HTML to display before the list of posts: "
|
270 |
msgstr "Siyahıdan qabaq istifadə edilən HTML-teqi:"
|
271 |
|
272 |
-
#: admin.inc.php:
|
273 |
msgid "HTML to display before each list item: "
|
274 |
msgstr "Siyahıda hər maddənin qabağında istifadə edilən HTML-teqi:"
|
275 |
|
276 |
-
#: admin.inc.php:
|
277 |
msgid "HTML to display after each list item: "
|
278 |
msgstr "Siyahıda hər maddədən sonra istifadə edilən HTML-teqi: "
|
279 |
|
280 |
-
#: admin.inc.php:
|
281 |
msgid "HTML to display after the list of posts: "
|
282 |
msgstr "Siyahıdan sonra istifadə edilən HTML-teqi:"
|
283 |
|
284 |
-
#: admin.inc.php:
|
285 |
msgid "Post thumbnail options:"
|
286 |
msgstr "Yazılışlara əvvəlcədən baxma kökləmələri:"
|
287 |
|
288 |
-
#: admin.inc.php:
|
289 |
msgid "Location of post thumbnail:"
|
290 |
msgstr ""
|
291 |
|
292 |
-
#: admin.inc.php:
|
293 |
#, fuzzy
|
294 |
msgid "Display thumbnails inline with posts, before title"
|
295 |
msgstr "Mətni və əvvəlcədən baxışı göstərmək"
|
296 |
|
297 |
-
#: admin.inc.php:
|
298 |
#, fuzzy
|
299 |
msgid "Display thumbnails inline with posts, after title"
|
300 |
msgstr "Mətni və əvvəlcədən baxışı göstərmək"
|
301 |
|
302 |
-
#: admin.inc.php:
|
303 |
msgid "Display only thumbnails, no text"
|
304 |
msgstr "Yalnız əvvəlcədən baxışı göstərmək, mətnsiz"
|
305 |
|
306 |
-
#: admin.inc.php:
|
307 |
msgid "Do not display thumbnails, only text."
|
308 |
msgstr "Yalnız mətini göstərmək, əvəlcədən baxışsız"
|
309 |
|
310 |
-
#: admin.inc.php:
|
311 |
msgid "Width of the thumbnail: "
|
312 |
msgstr ""
|
313 |
|
314 |
-
#: admin.inc.php:
|
315 |
msgid "Height of the thumbnail: "
|
316 |
msgstr ""
|
317 |
|
318 |
-
#: admin.inc.php:
|
319 |
msgid "Style attributes / Width and Height HTML attributes:"
|
320 |
msgstr ""
|
321 |
|
322 |
-
#: admin.inc.php:
|
323 |
msgid ""
|
324 |
"Style attributes are used for width and height. <code>style=\"max-width:"
|
325 |
msgstr ""
|
326 |
|
327 |
-
#: admin.inc.php:
|
328 |
msgid ""
|
329 |
"HTML width and height attributes are used for width and height. <code>width="
|
330 |
"\""
|
331 |
msgstr ""
|
332 |
|
333 |
-
#: admin.inc.php:
|
334 |
msgid "Use timthumb to generate thumbnails? "
|
335 |
msgstr ""
|
336 |
|
337 |
-
#: admin.inc.php:
|
338 |
msgid ""
|
339 |
"If checked, <a href=\"http://www.binarymoon.co.uk/projects/timthumb/"
|
340 |
"\">timthumb</a> will be used to generate thumbnails"
|
341 |
msgstr ""
|
342 |
|
343 |
-
#: admin.inc.php:
|
344 |
#, fuzzy
|
345 |
msgid "Post thumbnail meta field name: "
|
346 |
msgstr "Yazılışlara əvvəlcədən baxma kökləmələri:"
|
347 |
|
348 |
-
#: admin.inc.php:
|
349 |
msgid ""
|
350 |
"The value of this field should contain the image source and is set in the "
|
351 |
"<em>Add New Post</em> screen"
|
352 |
msgstr ""
|
353 |
|
354 |
-
#: admin.inc.php:
|
355 |
#, fuzzy
|
356 |
msgid ""
|
357 |
"If the postmeta is not set, then should the plugin extract the first image "
|
@@ -361,7 +367,7 @@ msgstr ""
|
|
361 |
"şəkilil çıxardacaq. Balaca kopyasını yaradılması ilə əlaqədar olaraq bu "
|
362 |
"birinci dəfə şəkilin yükləməsini bir az uzada bilər. "
|
363 |
|
364 |
-
#: admin.inc.php:
|
365 |
#, fuzzy
|
366 |
msgid ""
|
367 |
"This could slow down the loading of your page if the first image in the "
|
@@ -371,21 +377,21 @@ msgstr ""
|
|
371 |
"şəkilil çıxardacaq. Balaca kopyasını yaradılması ilə əlaqədar olaraq bu "
|
372 |
"birinci dəfə şəkilin yükləməsini bir az uzada bilər. "
|
373 |
|
374 |
-
#: admin.inc.php:
|
375 |
msgid "Use default thumbnail? "
|
376 |
msgstr ""
|
377 |
|
378 |
-
#: admin.inc.php:
|
379 |
msgid ""
|
380 |
"If checked, when no thumbnail is found, show a default one from the URL "
|
381 |
"below. If not checked and no thumbnail is found, no image will be shown."
|
382 |
msgstr ""
|
383 |
|
384 |
-
#: admin.inc.php:
|
385 |
msgid "Default thumbnail: "
|
386 |
msgstr ""
|
387 |
|
388 |
-
#: admin.inc.php:
|
389 |
#, fuzzy
|
390 |
msgid ""
|
391 |
"The plugin will first check if the post contains a thumbnail. If it doesn't "
|
@@ -396,98 +402,98 @@ msgstr ""
|
|
396 |
"əvvəlcədən verilmiş sərbəst meta-sahə üzrə). Agər əvvəlcədən baxış yoxdursan "
|
397 |
"onda standard şəkil çıxarılacaq:"
|
398 |
|
399 |
-
#: admin.inc.php:
|
400 |
msgid "Custom Styles"
|
401 |
msgstr ""
|
402 |
|
403 |
-
#: admin.inc.php:
|
404 |
msgid "Custom CSS to add to header:"
|
405 |
msgstr ""
|
406 |
|
407 |
-
#: admin.inc.php:
|
408 |
msgid ""
|
409 |
"Do not include <code>style</code> tags. Check out the <a href=\"http://"
|
410 |
"wordpress.org/extend/plugins/top-10/faq/\" target=\"_blank\">FAQ</a> for "
|
411 |
"available CSS classes to style."
|
412 |
msgstr ""
|
413 |
|
414 |
-
#: admin.inc.php:
|
415 |
msgid "Maintenance"
|
416 |
msgstr ""
|
417 |
|
418 |
-
#: admin.inc.php:
|
419 |
msgid ""
|
420 |
"Over time the Daily Top 10 database grows in size, which reduces the "
|
421 |
"performance of the plugin. Cleaning the database at regular intervals could "
|
422 |
"improve performance, especially on high traffic blogs."
|
423 |
msgstr ""
|
424 |
|
425 |
-
#: admin.inc.php:
|
426 |
msgid ""
|
427 |
"Note: When scheduled maintenance is enabled, WordPress will run the cron job "
|
428 |
"everytime the job is rescheduled (i.e. you change the settings below). This "
|
429 |
"causes the daily posts table to reset."
|
430 |
msgstr ""
|
431 |
|
432 |
-
#: admin.inc.php:
|
433 |
msgid "Enable scheduled maintenance of daily tables:"
|
434 |
msgstr ""
|
435 |
|
436 |
-
#: admin.inc.php:
|
437 |
msgid "Time to run maintenance"
|
438 |
msgstr ""
|
439 |
|
440 |
-
#: admin.inc.php:
|
441 |
msgid "How often should the maintenance be run:"
|
442 |
msgstr ""
|
443 |
|
444 |
-
#: admin.inc.php:
|
445 |
msgid "Daily"
|
446 |
msgstr ""
|
447 |
|
448 |
-
#: admin.inc.php:
|
449 |
msgid "Weekly"
|
450 |
msgstr ""
|
451 |
|
452 |
-
#: admin.inc.php:
|
453 |
msgid "Fortnightly"
|
454 |
msgstr ""
|
455 |
|
456 |
-
#: admin.inc.php:
|
457 |
msgid "Monthly"
|
458 |
msgstr ""
|
459 |
|
460 |
-
#: admin.inc.php:
|
461 |
msgid "The cron job has been scheduled. Maintenance will run "
|
462 |
msgstr ""
|
463 |
|
464 |
-
#: admin.inc.php:
|
465 |
msgid "The cron job is missing. Please resave this page to add the job"
|
466 |
msgstr ""
|
467 |
|
468 |
-
#: admin.inc.php:
|
469 |
msgid "Maintenance is turned off"
|
470 |
msgstr ""
|
471 |
|
472 |
-
#: admin.inc.php:
|
473 |
#, fuzzy
|
474 |
msgid "Save Options"
|
475 |
msgstr "Opsiyalar:"
|
476 |
|
477 |
-
#: admin.inc.php:
|
478 |
#, fuzzy
|
479 |
msgid "Default Options"
|
480 |
msgstr "Plaginin kökləmələri:"
|
481 |
|
482 |
-
#: admin.inc.php:
|
483 |
msgid "Do you want to set options to Default?"
|
484 |
msgstr "Siz plaginin kökləmələrin standard etmək lazımdır?"
|
485 |
|
486 |
-
#: admin.inc.php:
|
487 |
msgid "Reset count"
|
488 |
msgstr "Statistikanı sbros etmək"
|
489 |
|
490 |
-
#: admin.inc.php:
|
491 |
msgid ""
|
492 |
"This cannot be reversed. Make sure that your database has been backed up "
|
493 |
"before proceeding"
|
@@ -495,223 +501,252 @@ msgstr ""
|
|
495 |
"Statistikanın sbrosu geriya qaytarmaq olmaz. Sbros etməkdən qabaq əmin olun "
|
496 |
"ki, Sizin məlumat bazasının kopiyası var!"
|
497 |
|
498 |
-
#: admin.inc.php:
|
499 |
#, fuzzy
|
500 |
msgid "Reset Popular Posts"
|
501 |
msgstr "Populyar yazılar"
|
502 |
|
503 |
-
#: admin.inc.php:
|
504 |
msgid "Are you sure you want to reset the popular posts?"
|
505 |
msgstr ""
|
506 |
"Siz əminsiniz ki, Populyar yazıları statistikanı sbros etmək istəyirsiniz?"
|
507 |
|
508 |
-
#: admin.inc.php:
|
509 |
#, fuzzy
|
510 |
msgid "Reset Daily Popular Posts"
|
511 |
msgstr "Gündəlik Populyar Yazılar"
|
512 |
|
513 |
-
#: admin.inc.php:
|
514 |
msgid "Are you sure you want to reset the daily popular posts?"
|
515 |
msgstr ""
|
516 |
"Siz əminsiniz ki, gündəlik populyar yazıları statistikanı sbros etmək "
|
517 |
"istəyirsiniz?"
|
518 |
|
519 |
-
#: admin.inc.php:
|
520 |
msgid "Clear duplicates"
|
521 |
msgstr ""
|
522 |
|
523 |
-
#: admin.inc.php:
|
524 |
msgid "This will delete the duplicate entries in the tables. Proceed?"
|
525 |
msgstr "Cədvəldəki dublikat yazılar silinəcəklər. Davam edək?"
|
526 |
|
527 |
-
#: admin.inc.php:
|
528 |
msgid "Popular Posts"
|
529 |
msgstr "Populyar yazılar"
|
530 |
|
531 |
-
#: admin.inc.php:
|
532 |
msgid "Daily Popular Posts"
|
533 |
msgstr "Gündəlik Populyar Yazılar"
|
534 |
|
535 |
-
#: admin.inc.php:
|
536 |
msgid "Support the development"
|
537 |
msgstr "İnkişafı dəstək vermək"
|
538 |
|
539 |
-
#: admin.inc.php:
|
540 |
msgid "Enter amount in USD: "
|
541 |
msgstr "Miiqdarı USD ilə daxil et:"
|
542 |
|
543 |
-
#: admin.inc.php:
|
544 |
msgid "Send your donation to the author of"
|
545 |
msgstr "Müəlifə ianə göndərin "
|
546 |
|
547 |
-
#: admin.inc.php:
|
548 |
msgid "Follow us"
|
549 |
msgstr ""
|
550 |
|
551 |
-
#: admin.inc.php:
|
552 |
#, fuzzy
|
553 |
msgid "Quick Links"
|
554 |
msgstr "Faydalı istenadlar"
|
555 |
|
556 |
-
#: admin.inc.php:
|
557 |
#, fuzzy
|
558 |
msgid "Top 10 plugin page"
|
559 |
msgstr "plaginin səhifəsi"
|
560 |
|
561 |
-
#: admin.inc.php:
|
562 |
msgid "Other plugins"
|
563 |
msgstr "Digər plaginlər"
|
564 |
|
565 |
-
#: admin.inc.php:
|
566 |
msgid "Ajay's blog"
|
567 |
msgstr "Ajay-in blogu"
|
568 |
|
569 |
-
#: admin.inc.php:
|
570 |
msgid "Support"
|
571 |
msgstr "Dəstək"
|
572 |
|
573 |
-
#: admin.inc.php:
|
574 |
msgid "Recent developments"
|
575 |
msgstr "Son inkişaflar"
|
576 |
|
577 |
-
#: admin.inc.php:
|
578 |
#, fuzzy
|
579 |
msgid "Top 10 Settings"
|
580 |
msgstr "Kökləmələr"
|
581 |
|
582 |
-
#: admin.inc.php:
|
583 |
msgid "Top 10"
|
584 |
msgstr "Top 10 yazılar"
|
585 |
|
586 |
-
#: admin.inc.php:
|
587 |
#, fuzzy
|
588 |
msgid "Overall Popular Posts"
|
589 |
msgstr "Bütün Populyar Yazılara Baxmaq"
|
590 |
|
591 |
-
#: admin.inc.php:
|
592 |
msgid "Results"
|
593 |
msgstr "Nəticələr"
|
594 |
|
595 |
-
#: admin.inc.php:
|
596 |
msgid "of"
|
597 |
msgstr "-dən "
|
598 |
|
599 |
-
#: admin.inc.php:
|
600 |
msgid "Page"
|
601 |
msgstr "Səhifə"
|
602 |
|
603 |
-
#: admin.inc.php:
|
604 |
msgid "View Daily Popular Posts"
|
605 |
msgstr "Gündəlik Populyar Yazılara Baxmaq"
|
606 |
|
607 |
-
#: admin.inc.php:
|
608 |
msgid "Results per-page:"
|
609 |
msgstr "Səhifə üzrə nəticələr:"
|
610 |
|
611 |
-
#: admin.inc.php:
|
612 |
msgid "View Overall Popular Posts"
|
613 |
msgstr "Bütün Populyar Yazılara Baxmaq"
|
614 |
|
615 |
-
#: admin.inc.php:
|
616 |
msgid "Previous"
|
617 |
msgstr "Əvvəlki"
|
618 |
|
619 |
-
#: admin.inc.php:
|
620 |
msgid "Next"
|
621 |
msgstr "Sonrakı"
|
622 |
|
623 |
-
#: admin.inc.php:
|
624 |
msgid "Daily Popular"
|
625 |
msgstr "Gündəlik Populyar"
|
626 |
|
627 |
-
#: admin.inc.php:
|
628 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
629 |
msgstr "Ümümi/ Bu günkü baxış"
|
630 |
|
631 |
-
#: top-10.php:
|
|
|
|
|
|
|
|
|
632 |
msgid "Display the posts popular this week"
|
633 |
msgstr ""
|
634 |
|
635 |
-
#: top-10.php:
|
636 |
msgid "Title"
|
637 |
msgstr ""
|
638 |
|
639 |
-
#: top-10.php:
|
640 |
msgid "No. of posts"
|
641 |
msgstr ""
|
642 |
|
643 |
-
#: top-10.php:
|
644 |
msgid "Overall"
|
645 |
msgstr ""
|
646 |
|
647 |
-
#: top-10.php:
|
648 |
msgid "Custom time period (Enter below)"
|
649 |
msgstr ""
|
650 |
|
651 |
-
#: top-10.php:
|
652 |
msgid "Range in number of days (applies only to custom option above)"
|
653 |
msgstr ""
|
654 |
|
655 |
-
#: top-10.php:
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
656 |
#, fuzzy
|
657 |
msgid "Thumbnail options"
|
658 |
msgstr "Yazılışlara əvvəlcədən baxma kökləmələri:"
|
659 |
|
660 |
-
#: top-10.php:
|
661 |
#, fuzzy
|
662 |
msgid "Thumbnails inline, before title"
|
663 |
msgstr "Mətni və əvvəlcədən baxışı göstərmək"
|
664 |
|
665 |
-
#: top-10.php:
|
666 |
#, fuzzy
|
667 |
msgid "Thumbnails inline, after title"
|
668 |
msgstr "Mətni və əvvəlcədən baxışı göstərmək"
|
669 |
|
670 |
-
#: top-10.php:
|
671 |
#, fuzzy
|
672 |
msgid "Only thumbnails, no text"
|
673 |
msgstr "Yalnız əvvəlcədən baxışı göstərmək, mətnsiz"
|
674 |
|
675 |
-
#: top-10.php:
|
676 |
#, fuzzy
|
677 |
msgid "No thumbnails, only text."
|
678 |
msgstr "Yalnız mətini göstərmək, əvəlcədən baxışsız"
|
679 |
|
680 |
-
#: top-10.php:
|
681 |
#, fuzzy
|
682 |
-
msgid "
|
683 |
-
msgstr "
|
|
|
|
|
|
|
|
|
|
|
684 |
|
685 |
-
#: top-10.php:
|
686 |
msgid "<h3>Popular Posts</h3>"
|
687 |
msgstr "<h3>Populyar yazılar</h3>"
|
688 |
|
689 |
-
#: top-10.php:
|
690 |
msgid "<h3>Daily Popular</h3>"
|
691 |
msgstr "<h3>Gündəlik Populyar</h3>"
|
692 |
|
693 |
-
#: top-10.php:
|
694 |
#, fuzzy
|
695 |
msgid "No top posts yet"
|
696 |
msgstr "10 populyar yazı statisticasını pozmaq"
|
697 |
|
698 |
-
#: top-10.php:
|
699 |
msgid "Once Weekly"
|
700 |
msgstr ""
|
701 |
|
702 |
-
#: top-10.php:
|
703 |
msgid "Once Fortnightly"
|
704 |
msgstr ""
|
705 |
|
706 |
-
#: top-10.php:
|
707 |
msgid "Once Monthly"
|
708 |
msgstr ""
|
709 |
|
710 |
-
#: top-10.php:
|
711 |
msgid "Settings"
|
712 |
msgstr "Kökləmələr"
|
713 |
|
714 |
-
#: top-10.php:
|
715 |
msgid "Donate"
|
716 |
msgstr "İanə etmək"
|
717 |
|
2 |
msgstr ""
|
3 |
"Project-Id-Version: Топ 10\n"
|
4 |
"Report-Msgid-Bugs-To: \n"
|
5 |
+
"POT-Creation-Date: 2013-09-01 12:50-0000\n"
|
6 |
"PO-Revision-Date: \n"
|
7 |
"Last-Translator: Ajay D'Souza <me@ajaydsouza.com>\n"
|
8 |
"Language-Team: Bohdan Zograf <bozograf@gmail.com>\n"
|
15 |
"X-Generator: Poedit 1.5.7\n"
|
16 |
"X-Poedit-SearchPath-0: .\n"
|
17 |
|
18 |
+
#: admin.inc.php:103
|
19 |
msgid "Scheduled maintenance enabled / modified"
|
20 |
msgstr ""
|
21 |
|
22 |
+
#: admin.inc.php:107
|
23 |
msgid "Scheduled maintenance disabled"
|
24 |
msgstr ""
|
25 |
|
26 |
+
#: admin.inc.php:124
|
27 |
msgid "Options saved successfully."
|
28 |
msgstr "Opsiyalar müvəffəqiyyətlə yaddaşda saxlanılıb."
|
29 |
|
30 |
+
#: admin.inc.php:133
|
31 |
msgid "Options set to Default."
|
32 |
msgstr "Opsiyalalr standard opsiyasına qaytarılıb."
|
33 |
|
34 |
+
#: admin.inc.php:139
|
35 |
msgid "Top 10 popular posts reset"
|
36 |
msgstr "10 populyar yazı statisticasını pozmaq"
|
37 |
|
38 |
+
#: admin.inc.php:145
|
39 |
msgid "Top 10 daily popular posts reset"
|
40 |
msgstr "10 gündəlik populyar yazı statisticasını pozmaq"
|
41 |
|
42 |
+
#: admin.inc.php:152
|
43 |
msgid "Duplicate rows cleaned from tables"
|
44 |
msgstr ""
|
45 |
|
46 |
+
#: admin.inc.php:173
|
47 |
msgid "General options"
|
48 |
msgstr ""
|
49 |
|
50 |
+
#: admin.inc.php:177
|
51 |
msgid "Enable Overall stats"
|
52 |
msgstr ""
|
53 |
|
54 |
+
#: admin.inc.php:182
|
55 |
msgid "Enable Daily stats"
|
56 |
msgstr ""
|
57 |
|
58 |
+
#: admin.inc.php:187
|
59 |
msgid "W3 Total Cache fix:"
|
60 |
msgstr ""
|
61 |
|
62 |
+
#: admin.inc.php:189
|
63 |
msgid ""
|
64 |
"This will try to prevent W3 Total Cache from caching the addcount script of "
|
65 |
"the plugin. Try toggling this option in case you find that our posts are not "
|
66 |
"tracked."
|
67 |
msgstr ""
|
68 |
|
69 |
+
#: admin.inc.php:193
|
70 |
msgid "Number of popular posts to display: "
|
71 |
msgstr "Populyar postların miqdarının nümayişi:"
|
72 |
|
73 |
+
#: admin.inc.php:197
|
74 |
msgid "Daily Popular should contain views of how many days? "
|
75 |
msgstr ""
|
76 |
"Gündəlik Populyar yazılar neçə gün ərzində baxılışı özündə əks etdirməlidir?"
|
77 |
|
78 |
+
#: admin.inc.php:200
|
79 |
msgid "Post types to include in results (including custom post types)"
|
80 |
msgstr ""
|
81 |
|
82 |
+
#: admin.inc.php:211
|
83 |
msgid "List of post or page IDs to exclude from the results: "
|
84 |
msgstr ""
|
85 |
|
86 |
+
#: admin.inc.php:215
|
87 |
msgid "Exclude Categories: "
|
88 |
msgstr ""
|
89 |
|
90 |
+
#: admin.inc.php:230
|
91 |
msgid ""
|
92 |
"Comma separated list of category slugs. The field above has an autocomplete "
|
93 |
"so simply start typing in the starting letters and it will prompt you with "
|
94 |
"options"
|
95 |
msgstr ""
|
96 |
|
97 |
+
#: admin.inc.php:235
|
98 |
#, fuzzy
|
99 |
msgid "Display number of views on:"
|
100 |
msgstr "Posta baxılmasının miqdarını göstərmək lazımdır?"
|
101 |
|
102 |
+
#: admin.inc.php:237
|
103 |
msgid "Posts"
|
104 |
msgstr ""
|
105 |
|
106 |
+
#: admin.inc.php:238
|
107 |
#, fuzzy
|
108 |
msgid "Pages"
|
109 |
msgstr "Səhifə"
|
110 |
|
111 |
+
#: admin.inc.php:239
|
112 |
msgid "Home page"
|
113 |
msgstr ""
|
114 |
|
115 |
+
#: admin.inc.php:240
|
116 |
msgid "Feeds"
|
117 |
msgstr ""
|
118 |
|
119 |
+
#: admin.inc.php:241
|
120 |
msgid "Category archives"
|
121 |
msgstr ""
|
122 |
|
123 |
+
#: admin.inc.php:242
|
124 |
msgid "Tag archives"
|
125 |
msgstr ""
|
126 |
|
127 |
+
#: admin.inc.php:243
|
128 |
msgid "Other archives"
|
129 |
msgstr ""
|
130 |
|
131 |
+
#: admin.inc.php:244
|
132 |
msgid ""
|
133 |
"If you choose to disable this, please add <code><?php if(function_exists"
|
134 |
"('echo_ald_tptn')) echo_ald_tptn(); ?></code> to your template file where "
|
135 |
"you want it displayed"
|
136 |
msgstr ""
|
137 |
|
138 |
+
#: admin.inc.php:247
|
139 |
msgid "Always display latest post count"
|
140 |
msgstr ""
|
141 |
|
142 |
+
#: admin.inc.php:249
|
143 |
msgid ""
|
144 |
"This option uses JavaScript and will increase your page load time. Turn this "
|
145 |
"off if you are not using caching plugins or are OK with displaying older "
|
146 |
+
"cached counts. When you enable this option, the daily widget will not use "
|
147 |
+
"the options set there, but options will need to be set on this screen."
|
148 |
msgstr ""
|
149 |
|
150 |
+
#: admin.inc.php:252
|
151 |
msgid "Always display latest post count in the daily lists"
|
152 |
msgstr ""
|
153 |
|
154 |
+
#: admin.inc.php:254
|
155 |
#, fuzzy
|
156 |
msgid "This option uses JavaScript and will increase your page load time"
|
157 |
msgstr ""
|
158 |
"Polulyar yazılışları siyahını dinamik etmək lazımdır? Bu opsiya JavaScript-i "
|
159 |
"istifadə edir və bu səhifənin yükləmə vaxtını uzada bilər"
|
160 |
|
161 |
+
#: admin.inc.php:257
|
162 |
msgid "Track visits of authors on their own posts?"
|
163 |
msgstr "Müəllif tərəfindən edilmiş yazıları nəzərə almaq lazımdır?"
|
164 |
|
165 |
+
#: admin.inc.php:260
|
166 |
#, fuzzy
|
167 |
msgid "Track visits of admins?"
|
168 |
msgstr "Müəllif tərəfindən edilmiş yazıları nəzərə almaq lazımdır?"
|
169 |
|
170 |
+
#: admin.inc.php:263
|
171 |
msgid "Display page views on Posts > All Posts in Admin"
|
172 |
msgstr ""
|
173 |
|
174 |
+
#: admin.inc.php:266
|
175 |
msgid "Link to Top 10 plugin page"
|
176 |
msgstr ""
|
177 |
|
178 |
+
#: admin.inc.php:268
|
179 |
#, fuzzy
|
180 |
msgid ""
|
181 |
"A link to the plugin is added as an extra list item to the list of popular "
|
184 |
"Popyulyar siyahının altnda ssılkanı qoymaq lazımdır? Plaginin müəllifi Siz "
|
185 |
"onu qoyduğunuz halda Sizə çox minnətdar olardı!"
|
186 |
|
187 |
+
#: admin.inc.php:275
|
188 |
#, fuzzy
|
189 |
msgid "Output Options"
|
190 |
msgstr "Plaginin kökləmələri:"
|
191 |
|
192 |
+
#: admin.inc.php:278
|
193 |
msgid "Format to display the count in: "
|
194 |
msgstr "Miqdarı göstərən format:"
|
195 |
|
196 |
+
#: admin.inc.php:280
|
197 |
#, fuzzy
|
198 |
msgid ""
|
199 |
"Use <code>%totalcount%</code> to display the total count, <code>%dailycount"
|
205 |
"edin, <code>%dailycount%</code> - gün ərzində baxılmış. Məsələn: <code>"
|
206 |
"(Yazı 123 dəfə baxılıb, bu gün 23 dəfə baxılmışdır)</code>."
|
207 |
|
208 |
+
#: admin.inc.php:283
|
209 |
msgid "Title of popular posts: "
|
210 |
msgstr "Populyar yazılarının başlığı:"
|
211 |
|
212 |
+
#: admin.inc.php:286
|
213 |
msgid "Title of daily popular posts: "
|
214 |
msgstr "Gündəlik populyual yazılışların başlığı:"
|
215 |
|
216 |
+
#: admin.inc.php:289
|
217 |
msgid "When there are no posts, what should be shown?"
|
218 |
msgstr ""
|
219 |
|
220 |
+
#: admin.inc.php:293
|
221 |
msgid "Blank Output"
|
222 |
msgstr ""
|
223 |
|
224 |
+
#: admin.inc.php:297
|
225 |
msgid "Display:"
|
226 |
msgstr ""
|
227 |
|
228 |
+
#: admin.inc.php:301
|
229 |
msgid "Show post excerpt in list?"
|
230 |
msgstr "Yazılış mətnini siyahıda göstərmək lazımdır?"
|
231 |
|
232 |
+
#: admin.inc.php:304
|
233 |
msgid "Length of excerpt (in words): "
|
234 |
msgstr "Çıxardılmış mətnin uzunluğu (söz ilə):"
|
235 |
|
236 |
+
#: admin.inc.php:307
|
237 |
+
#, fuzzy
|
238 |
+
msgid "Show post author in list?"
|
239 |
+
msgstr "Yazılış mətnini siyahıda göstərmək lazımdır?"
|
240 |
+
|
241 |
+
#: admin.inc.php:310
|
242 |
#, fuzzy
|
243 |
msgid "Show post date in list?"
|
244 |
msgstr "Yazılış mətnini siyahıda göstərmək lazımdır?"
|
245 |
|
246 |
+
#: admin.inc.php:313
|
247 |
msgid "Limit post title length (in characters)"
|
248 |
msgstr ""
|
249 |
|
250 |
+
#: admin.inc.php:316
|
251 |
msgid "Display number of page views in popular lists?"
|
252 |
msgstr "Populyar siyahıda baxılmış səhifənin miqdarını göstərmək lazımdır? "
|
253 |
|
254 |
+
#: admin.inc.php:319
|
255 |
msgid "Open links in new window"
|
256 |
msgstr ""
|
257 |
|
258 |
+
#: admin.inc.php:322
|
259 |
msgid "Add nofollow attribute to links in the list"
|
260 |
msgstr ""
|
261 |
|
262 |
+
#: admin.inc.php:325
|
263 |
msgid "Exclude display of related posts on these posts / pages"
|
264 |
msgstr ""
|
265 |
|
266 |
+
#: admin.inc.php:328
|
267 |
msgid "Enter comma separated list of IDs. e.g. 188,320,500"
|
268 |
msgstr ""
|
269 |
|
270 |
+
#: admin.inc.php:331
|
271 |
msgid "Customize the output:"
|
272 |
msgstr "Suiyahı formasının kökləmələri:"
|
273 |
|
274 |
+
#: admin.inc.php:333
|
275 |
msgid "HTML to display before the list of posts: "
|
276 |
msgstr "Siyahıdan qabaq istifadə edilən HTML-teqi:"
|
277 |
|
278 |
+
#: admin.inc.php:336
|
279 |
msgid "HTML to display before each list item: "
|
280 |
msgstr "Siyahıda hər maddənin qabağında istifadə edilən HTML-teqi:"
|
281 |
|
282 |
+
#: admin.inc.php:339
|
283 |
msgid "HTML to display after each list item: "
|
284 |
msgstr "Siyahıda hər maddədən sonra istifadə edilən HTML-teqi: "
|
285 |
|
286 |
+
#: admin.inc.php:342
|
287 |
msgid "HTML to display after the list of posts: "
|
288 |
msgstr "Siyahıdan sonra istifadə edilən HTML-teqi:"
|
289 |
|
290 |
+
#: admin.inc.php:345
|
291 |
msgid "Post thumbnail options:"
|
292 |
msgstr "Yazılışlara əvvəlcədən baxma kökləmələri:"
|
293 |
|
294 |
+
#: admin.inc.php:347
|
295 |
msgid "Location of post thumbnail:"
|
296 |
msgstr ""
|
297 |
|
298 |
+
#: admin.inc.php:351
|
299 |
#, fuzzy
|
300 |
msgid "Display thumbnails inline with posts, before title"
|
301 |
msgstr "Mətni və əvvəlcədən baxışı göstərmək"
|
302 |
|
303 |
+
#: admin.inc.php:355
|
304 |
#, fuzzy
|
305 |
msgid "Display thumbnails inline with posts, after title"
|
306 |
msgstr "Mətni və əvvəlcədən baxışı göstərmək"
|
307 |
|
308 |
+
#: admin.inc.php:359
|
309 |
msgid "Display only thumbnails, no text"
|
310 |
msgstr "Yalnız əvvəlcədən baxışı göstərmək, mətnsiz"
|
311 |
|
312 |
+
#: admin.inc.php:363
|
313 |
msgid "Do not display thumbnails, only text."
|
314 |
msgstr "Yalnız mətini göstərmək, əvəlcədən baxışsız"
|
315 |
|
316 |
+
#: admin.inc.php:367
|
317 |
msgid "Width of the thumbnail: "
|
318 |
msgstr ""
|
319 |
|
320 |
+
#: admin.inc.php:370
|
321 |
msgid "Height of the thumbnail: "
|
322 |
msgstr ""
|
323 |
|
324 |
+
#: admin.inc.php:373
|
325 |
msgid "Style attributes / Width and Height HTML attributes:"
|
326 |
msgstr ""
|
327 |
|
328 |
+
#: admin.inc.php:377
|
329 |
msgid ""
|
330 |
"Style attributes are used for width and height. <code>style=\"max-width:"
|
331 |
msgstr ""
|
332 |
|
333 |
+
#: admin.inc.php:381
|
334 |
msgid ""
|
335 |
"HTML width and height attributes are used for width and height. <code>width="
|
336 |
"\""
|
337 |
msgstr ""
|
338 |
|
339 |
+
#: admin.inc.php:385
|
340 |
msgid "Use timthumb to generate thumbnails? "
|
341 |
msgstr ""
|
342 |
|
343 |
+
#: admin.inc.php:386
|
344 |
msgid ""
|
345 |
"If checked, <a href=\"http://www.binarymoon.co.uk/projects/timthumb/"
|
346 |
"\">timthumb</a> will be used to generate thumbnails"
|
347 |
msgstr ""
|
348 |
|
349 |
+
#: admin.inc.php:388
|
350 |
#, fuzzy
|
351 |
msgid "Post thumbnail meta field name: "
|
352 |
msgstr "Yazılışlara əvvəlcədən baxma kökləmələri:"
|
353 |
|
354 |
+
#: admin.inc.php:389
|
355 |
msgid ""
|
356 |
"The value of this field should contain the image source and is set in the "
|
357 |
"<em>Add New Post</em> screen"
|
358 |
msgstr ""
|
359 |
|
360 |
+
#: admin.inc.php:391
|
361 |
#, fuzzy
|
362 |
msgid ""
|
363 |
"If the postmeta is not set, then should the plugin extract the first image "
|
367 |
"şəkilil çıxardacaq. Balaca kopyasını yaradılması ilə əlaqədar olaraq bu "
|
368 |
"birinci dəfə şəkilin yükləməsini bir az uzada bilər. "
|
369 |
|
370 |
+
#: admin.inc.php:392
|
371 |
#, fuzzy
|
372 |
msgid ""
|
373 |
"This could slow down the loading of your page if the first image in the "
|
377 |
"şəkilil çıxardacaq. Balaca kopyasını yaradılması ilə əlaqədar olaraq bu "
|
378 |
"birinci dəfə şəkilin yükləməsini bir az uzada bilər. "
|
379 |
|
380 |
+
#: admin.inc.php:394
|
381 |
msgid "Use default thumbnail? "
|
382 |
msgstr ""
|
383 |
|
384 |
+
#: admin.inc.php:395
|
385 |
msgid ""
|
386 |
"If checked, when no thumbnail is found, show a default one from the URL "
|
387 |
"below. If not checked and no thumbnail is found, no image will be shown."
|
388 |
msgstr ""
|
389 |
|
390 |
+
#: admin.inc.php:397
|
391 |
msgid "Default thumbnail: "
|
392 |
msgstr ""
|
393 |
|
394 |
+
#: admin.inc.php:398
|
395 |
#, fuzzy
|
396 |
msgid ""
|
397 |
"The plugin will first check if the post contains a thumbnail. If it doesn't "
|
402 |
"əvvəlcədən verilmiş sərbəst meta-sahə üzrə). Agər əvvəlcədən baxış yoxdursan "
|
403 |
"onda standard şəkil çıxarılacaq:"
|
404 |
|
405 |
+
#: admin.inc.php:404
|
406 |
msgid "Custom Styles"
|
407 |
msgstr ""
|
408 |
|
409 |
+
#: admin.inc.php:407
|
410 |
msgid "Custom CSS to add to header:"
|
411 |
msgstr ""
|
412 |
|
413 |
+
#: admin.inc.php:410
|
414 |
msgid ""
|
415 |
"Do not include <code>style</code> tags. Check out the <a href=\"http://"
|
416 |
"wordpress.org/extend/plugins/top-10/faq/\" target=\"_blank\">FAQ</a> for "
|
417 |
"available CSS classes to style."
|
418 |
msgstr ""
|
419 |
|
420 |
+
#: admin.inc.php:417
|
421 |
msgid "Maintenance"
|
422 |
msgstr ""
|
423 |
|
424 |
+
#: admin.inc.php:421
|
425 |
msgid ""
|
426 |
"Over time the Daily Top 10 database grows in size, which reduces the "
|
427 |
"performance of the plugin. Cleaning the database at regular intervals could "
|
428 |
"improve performance, especially on high traffic blogs."
|
429 |
msgstr ""
|
430 |
|
431 |
+
#: admin.inc.php:422
|
432 |
msgid ""
|
433 |
"Note: When scheduled maintenance is enabled, WordPress will run the cron job "
|
434 |
"everytime the job is rescheduled (i.e. you change the settings below). This "
|
435 |
"causes the daily posts table to reset."
|
436 |
msgstr ""
|
437 |
|
438 |
+
#: admin.inc.php:425
|
439 |
msgid "Enable scheduled maintenance of daily tables:"
|
440 |
msgstr ""
|
441 |
|
442 |
+
#: admin.inc.php:429
|
443 |
msgid "Time to run maintenance"
|
444 |
msgstr ""
|
445 |
|
446 |
+
#: admin.inc.php:432
|
447 |
msgid "How often should the maintenance be run:"
|
448 |
msgstr ""
|
449 |
|
450 |
+
#: admin.inc.php:436
|
451 |
msgid "Daily"
|
452 |
msgstr ""
|
453 |
|
454 |
+
#: admin.inc.php:440
|
455 |
msgid "Weekly"
|
456 |
msgstr ""
|
457 |
|
458 |
+
#: admin.inc.php:444
|
459 |
msgid "Fortnightly"
|
460 |
msgstr ""
|
461 |
|
462 |
+
#: admin.inc.php:448
|
463 |
msgid "Monthly"
|
464 |
msgstr ""
|
465 |
|
466 |
+
#: admin.inc.php:457
|
467 |
msgid "The cron job has been scheduled. Maintenance will run "
|
468 |
msgstr ""
|
469 |
|
470 |
+
#: admin.inc.php:462
|
471 |
msgid "The cron job is missing. Please resave this page to add the job"
|
472 |
msgstr ""
|
473 |
|
474 |
+
#: admin.inc.php:467
|
475 |
msgid "Maintenance is turned off"
|
476 |
msgstr ""
|
477 |
|
478 |
+
#: admin.inc.php:475
|
479 |
#, fuzzy
|
480 |
msgid "Save Options"
|
481 |
msgstr "Opsiyalar:"
|
482 |
|
483 |
+
#: admin.inc.php:476
|
484 |
#, fuzzy
|
485 |
msgid "Default Options"
|
486 |
msgstr "Plaginin kökləmələri:"
|
487 |
|
488 |
+
#: admin.inc.php:476
|
489 |
msgid "Do you want to set options to Default?"
|
490 |
msgstr "Siz plaginin kökləmələrin standard etmək lazımdır?"
|
491 |
|
492 |
+
#: admin.inc.php:480
|
493 |
msgid "Reset count"
|
494 |
msgstr "Statistikanı sbros etmək"
|
495 |
|
496 |
+
#: admin.inc.php:483
|
497 |
msgid ""
|
498 |
"This cannot be reversed. Make sure that your database has been backed up "
|
499 |
"before proceeding"
|
501 |
"Statistikanın sbrosu geriya qaytarmaq olmaz. Sbros etməkdən qabaq əmin olun "
|
502 |
"ki, Sizin məlumat bazasının kopiyası var!"
|
503 |
|
504 |
+
#: admin.inc.php:486
|
505 |
#, fuzzy
|
506 |
msgid "Reset Popular Posts"
|
507 |
msgstr "Populyar yazılar"
|
508 |
|
509 |
+
#: admin.inc.php:486
|
510 |
msgid "Are you sure you want to reset the popular posts?"
|
511 |
msgstr ""
|
512 |
"Siz əminsiniz ki, Populyar yazıları statistikanı sbros etmək istəyirsiniz?"
|
513 |
|
514 |
+
#: admin.inc.php:487
|
515 |
#, fuzzy
|
516 |
msgid "Reset Daily Popular Posts"
|
517 |
msgstr "Gündəlik Populyar Yazılar"
|
518 |
|
519 |
+
#: admin.inc.php:487
|
520 |
msgid "Are you sure you want to reset the daily popular posts?"
|
521 |
msgstr ""
|
522 |
"Siz əminsiniz ki, gündəlik populyar yazıları statistikanı sbros etmək "
|
523 |
"istəyirsiniz?"
|
524 |
|
525 |
+
#: admin.inc.php:488
|
526 |
msgid "Clear duplicates"
|
527 |
msgstr ""
|
528 |
|
529 |
+
#: admin.inc.php:488
|
530 |
msgid "This will delete the duplicate entries in the tables. Proceed?"
|
531 |
msgstr "Cədvəldəki dublikat yazılar silinəcəklər. Davam edək?"
|
532 |
|
533 |
+
#: admin.inc.php:531 admin.inc.php:906 top-10.php:476
|
534 |
msgid "Popular Posts"
|
535 |
msgstr "Populyar yazılar"
|
536 |
|
537 |
+
#: admin.inc.php:531 admin.inc.php:618
|
538 |
msgid "Daily Popular Posts"
|
539 |
msgstr "Gündəlik Populyar Yazılar"
|
540 |
|
541 |
+
#: admin.inc.php:559
|
542 |
msgid "Support the development"
|
543 |
msgstr "İnkişafı dəstək vermək"
|
544 |
|
545 |
+
#: admin.inc.php:567
|
546 |
msgid "Enter amount in USD: "
|
547 |
msgstr "Miiqdarı USD ilə daxil et:"
|
548 |
|
549 |
+
#: admin.inc.php:571
|
550 |
msgid "Send your donation to the author of"
|
551 |
msgstr "Müəlifə ianə göndərin "
|
552 |
|
553 |
+
#: admin.inc.php:577
|
554 |
msgid "Follow us"
|
555 |
msgstr ""
|
556 |
|
557 |
+
#: admin.inc.php:583
|
558 |
#, fuzzy
|
559 |
msgid "Quick Links"
|
560 |
msgstr "Faydalı istenadlar"
|
561 |
|
562 |
+
#: admin.inc.php:585
|
563 |
#, fuzzy
|
564 |
msgid "Top 10 plugin page"
|
565 |
msgstr "plaginin səhifəsi"
|
566 |
|
567 |
+
#: admin.inc.php:586
|
568 |
msgid "Other plugins"
|
569 |
msgstr "Digər plaginlər"
|
570 |
|
571 |
+
#: admin.inc.php:587
|
572 |
msgid "Ajay's blog"
|
573 |
msgstr "Ajay-in blogu"
|
574 |
|
575 |
+
#: admin.inc.php:588 top-10.php:1123
|
576 |
msgid "Support"
|
577 |
msgstr "Dəstək"
|
578 |
|
579 |
+
#: admin.inc.php:592
|
580 |
msgid "Recent developments"
|
581 |
msgstr "Son inkişaflar"
|
582 |
|
583 |
+
#: admin.inc.php:609 admin.inc.php:612
|
584 |
#, fuzzy
|
585 |
msgid "Top 10 Settings"
|
586 |
msgstr "Kökləmələr"
|
587 |
|
588 |
+
#: admin.inc.php:609
|
589 |
msgid "Top 10"
|
590 |
msgstr "Top 10 yazılar"
|
591 |
|
592 |
+
#: admin.inc.php:615
|
593 |
#, fuzzy
|
594 |
msgid "Overall Popular Posts"
|
595 |
msgstr "Bütün Populyar Yazılara Baxmaq"
|
596 |
|
597 |
+
#: admin.inc.php:786
|
598 |
msgid "Results"
|
599 |
msgstr "Nəticələr"
|
600 |
|
601 |
+
#: admin.inc.php:788 admin.inc.php:794
|
602 |
msgid "of"
|
603 |
msgstr "-dən "
|
604 |
|
605 |
+
#: admin.inc.php:792
|
606 |
msgid "Page"
|
607 |
msgstr "Səhifə"
|
608 |
|
609 |
+
#: admin.inc.php:806
|
610 |
msgid "View Daily Popular Posts"
|
611 |
msgstr "Gündəlik Populyar Yazılara Baxmaq"
|
612 |
|
613 |
+
#: admin.inc.php:809 admin.inc.php:822
|
614 |
msgid "Results per-page:"
|
615 |
msgstr "Səhifə üzrə nəticələr:"
|
616 |
|
617 |
+
#: admin.inc.php:819
|
618 |
msgid "View Overall Popular Posts"
|
619 |
msgstr "Bütün Populyar Yazılara Baxmaq"
|
620 |
|
621 |
+
#: admin.inc.php:848
|
622 |
msgid "Previous"
|
623 |
msgstr "Əvvəlki"
|
624 |
|
625 |
+
#: admin.inc.php:866
|
626 |
msgid "Next"
|
627 |
msgstr "Sonrakı"
|
628 |
|
629 |
+
#: admin.inc.php:907
|
630 |
msgid "Daily Popular"
|
631 |
msgstr "Gündəlik Populyar"
|
632 |
|
633 |
+
#: admin.inc.php:923
|
634 |
+
#, fuzzy
|
635 |
+
msgid "Total Views"
|
636 |
+
msgstr "Ümümi/ Bu günkü baxış"
|
637 |
+
|
638 |
+
#: admin.inc.php:924
|
639 |
+
#, fuzzy
|
640 |
+
msgid "Today's Views"
|
641 |
msgstr "Ümümi/ Bu günkü baxış"
|
642 |
|
643 |
+
#: top-10.php:393
|
644 |
+
msgid " Posted by "
|
645 |
+
msgstr ""
|
646 |
+
|
647 |
+
#: top-10.php:475
|
648 |
msgid "Display the posts popular this week"
|
649 |
msgstr ""
|
650 |
|
651 |
+
#: top-10.php:493
|
652 |
msgid "Title"
|
653 |
msgstr ""
|
654 |
|
655 |
+
#: top-10.php:498
|
656 |
msgid "No. of posts"
|
657 |
msgstr ""
|
658 |
|
659 |
+
#: top-10.php:503
|
660 |
msgid "Overall"
|
661 |
msgstr ""
|
662 |
|
663 |
+
#: top-10.php:504
|
664 |
msgid "Custom time period (Enter below)"
|
665 |
msgstr ""
|
666 |
|
667 |
+
#: top-10.php:509
|
668 |
msgid "Range in number of days (applies only to custom option above)"
|
669 |
msgstr ""
|
670 |
|
671 |
+
#: top-10.php:514
|
672 |
+
#, fuzzy
|
673 |
+
msgid " Show excerpt?"
|
674 |
+
msgstr "Yazılış mətnini siyahıda göstərmək lazımdır?"
|
675 |
+
|
676 |
+
#: top-10.php:519
|
677 |
+
msgid " Show author?"
|
678 |
+
msgstr ""
|
679 |
+
|
680 |
+
#: top-10.php:524
|
681 |
+
#, fuzzy
|
682 |
+
msgid " Show date?"
|
683 |
+
msgstr "Yazılış mətnini siyahıda göstərmək lazımdır?"
|
684 |
+
|
685 |
+
#: top-10.php:528
|
686 |
#, fuzzy
|
687 |
msgid "Thumbnail options"
|
688 |
msgstr "Yazılışlara əvvəlcədən baxma kökləmələri:"
|
689 |
|
690 |
+
#: top-10.php:530
|
691 |
#, fuzzy
|
692 |
msgid "Thumbnails inline, before title"
|
693 |
msgstr "Mətni və əvvəlcədən baxışı göstərmək"
|
694 |
|
695 |
+
#: top-10.php:531
|
696 |
#, fuzzy
|
697 |
msgid "Thumbnails inline, after title"
|
698 |
msgstr "Mətni və əvvəlcədən baxışı göstərmək"
|
699 |
|
700 |
+
#: top-10.php:532
|
701 |
#, fuzzy
|
702 |
msgid "Only thumbnails, no text"
|
703 |
msgstr "Yalnız əvvəlcədən baxışı göstərmək, mətnsiz"
|
704 |
|
705 |
+
#: top-10.php:533
|
706 |
#, fuzzy
|
707 |
msgid "No thumbnails, only text."
|
708 |
msgstr "Yalnız mətini göstərmək, əvəlcədən baxışsız"
|
709 |
|
710 |
+
#: top-10.php:538
|
711 |
#, fuzzy
|
712 |
+
msgid "Thumbnail height"
|
713 |
+
msgstr "Yazılışlara əvvəlcədən baxma kökləmələri:"
|
714 |
+
|
715 |
+
#: top-10.php:543
|
716 |
+
#, fuzzy
|
717 |
+
msgid "Thumbnail width"
|
718 |
+
msgstr "Yazılışlara əvvəlcədən baxma kökləmələri:"
|
719 |
|
720 |
+
#: top-10.php:646
|
721 |
msgid "<h3>Popular Posts</h3>"
|
722 |
msgstr "<h3>Populyar yazılar</h3>"
|
723 |
|
724 |
+
#: top-10.php:647
|
725 |
msgid "<h3>Daily Popular</h3>"
|
726 |
msgstr "<h3>Gündəlik Populyar</h3>"
|
727 |
|
728 |
+
#: top-10.php:648
|
729 |
#, fuzzy
|
730 |
msgid "No top posts yet"
|
731 |
msgstr "10 populyar yazı statisticasını pozmaq"
|
732 |
|
733 |
+
#: top-10.php:1089
|
734 |
msgid "Once Weekly"
|
735 |
msgstr ""
|
736 |
|
737 |
+
#: top-10.php:1090
|
738 |
msgid "Once Fortnightly"
|
739 |
msgstr ""
|
740 |
|
741 |
+
#: top-10.php:1091
|
742 |
msgid "Once Monthly"
|
743 |
msgstr ""
|
744 |
|
745 |
+
#: top-10.php:1111
|
746 |
msgid "Settings"
|
747 |
msgstr "Kökləmələr"
|
748 |
|
749 |
+
#: top-10.php:1124
|
750 |
msgid "Donate"
|
751 |
msgstr "İanə etmək"
|
752 |
|
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: 2013-
|
6 |
"PO-Revision-Date: \n"
|
7 |
"Last-Translator: Ajay D'Souza <me@ajaydsouza.com>\n"
|
8 |
"Language-Team: FatCow <zhr@tut.by>\n"
|
@@ -15,167 +15,168 @@ msgstr ""
|
|
15 |
"X-Generator: Poedit 1.5.7\n"
|
16 |
"X-Poedit-SearchPath-0: .\n"
|
17 |
|
18 |
-
#: admin.inc.php:
|
19 |
msgid "Scheduled maintenance enabled / modified"
|
20 |
msgstr ""
|
21 |
|
22 |
-
#: admin.inc.php:
|
23 |
msgid "Scheduled maintenance disabled"
|
24 |
msgstr ""
|
25 |
|
26 |
-
#: admin.inc.php:
|
27 |
msgid "Options saved successfully."
|
28 |
msgstr "Налады захаваны."
|
29 |
|
30 |
-
#: admin.inc.php:
|
31 |
msgid "Options set to Default."
|
32 |
msgstr "Налады скінуты."
|
33 |
|
34 |
-
#: admin.inc.php:
|
35 |
#, fuzzy
|
36 |
msgid "Top 10 popular posts reset"
|
37 |
msgstr "Загаловак блока Папулярных запісаў:"
|
38 |
|
39 |
-
#: admin.inc.php:
|
40 |
#, fuzzy
|
41 |
msgid "Top 10 daily popular posts reset"
|
42 |
msgstr "Загаловак блока Папулярных сёння запісаў:"
|
43 |
|
44 |
-
#: admin.inc.php:
|
45 |
msgid "Duplicate rows cleaned from tables"
|
46 |
msgstr ""
|
47 |
|
48 |
-
#: admin.inc.php:
|
49 |
msgid "General options"
|
50 |
msgstr ""
|
51 |
|
52 |
-
#: admin.inc.php:
|
53 |
msgid "Enable Overall stats"
|
54 |
msgstr ""
|
55 |
|
56 |
-
#: admin.inc.php:
|
57 |
msgid "Enable Daily stats"
|
58 |
msgstr ""
|
59 |
|
60 |
-
#: admin.inc.php:
|
61 |
msgid "W3 Total Cache fix:"
|
62 |
msgstr ""
|
63 |
|
64 |
-
#: admin.inc.php:
|
65 |
msgid ""
|
66 |
"This will try to prevent W3 Total Cache from caching the addcount script of "
|
67 |
"the plugin. Try toggling this option in case you find that our posts are not "
|
68 |
"tracked."
|
69 |
msgstr ""
|
70 |
|
71 |
-
#: admin.inc.php:
|
72 |
msgid "Number of popular posts to display: "
|
73 |
msgstr "Колькасць Папулярных запісаў у спісе:"
|
74 |
|
75 |
-
#: admin.inc.php:
|
76 |
msgid "Daily Popular should contain views of how many days? "
|
77 |
msgstr "За колькі дзён лічыць прагляды для запісаў, Папулярных сёння?"
|
78 |
|
79 |
-
#: admin.inc.php:
|
80 |
msgid "Post types to include in results (including custom post types)"
|
81 |
msgstr ""
|
82 |
|
83 |
-
#: admin.inc.php:
|
84 |
msgid "List of post or page IDs to exclude from the results: "
|
85 |
msgstr ""
|
86 |
|
87 |
-
#: admin.inc.php:
|
88 |
msgid "Exclude Categories: "
|
89 |
msgstr ""
|
90 |
|
91 |
-
#: admin.inc.php:
|
92 |
msgid ""
|
93 |
"Comma separated list of category slugs. The field above has an autocomplete "
|
94 |
"so simply start typing in the starting letters and it will prompt you with "
|
95 |
"options"
|
96 |
msgstr ""
|
97 |
|
98 |
-
#: admin.inc.php:
|
99 |
#, fuzzy
|
100 |
msgid "Display number of views on:"
|
101 |
msgstr "Паказваць колькасць праглядаў запісу ў яе \"целе\"?"
|
102 |
|
103 |
-
#: admin.inc.php:
|
104 |
msgid "Posts"
|
105 |
msgstr ""
|
106 |
|
107 |
-
#: admin.inc.php:
|
108 |
#, fuzzy
|
109 |
msgid "Pages"
|
110 |
msgstr "Старонка"
|
111 |
|
112 |
-
#: admin.inc.php:
|
113 |
msgid "Home page"
|
114 |
msgstr ""
|
115 |
|
116 |
-
#: admin.inc.php:
|
117 |
msgid "Feeds"
|
118 |
msgstr ""
|
119 |
|
120 |
-
#: admin.inc.php:
|
121 |
msgid "Category archives"
|
122 |
msgstr ""
|
123 |
|
124 |
-
#: admin.inc.php:
|
125 |
msgid "Tag archives"
|
126 |
msgstr ""
|
127 |
|
128 |
-
#: admin.inc.php:
|
129 |
msgid "Other archives"
|
130 |
msgstr ""
|
131 |
|
132 |
-
#: admin.inc.php:
|
133 |
msgid ""
|
134 |
"If you choose to disable this, please add <code><?php if(function_exists"
|
135 |
"('echo_ald_tptn')) echo_ald_tptn(); ?></code> to your template file where "
|
136 |
"you want it displayed"
|
137 |
msgstr ""
|
138 |
|
139 |
-
#: admin.inc.php:
|
140 |
msgid "Always display latest post count"
|
141 |
msgstr ""
|
142 |
|
143 |
-
#: admin.inc.php:
|
144 |
msgid ""
|
145 |
"This option uses JavaScript and will increase your page load time. Turn this "
|
146 |
"off if you are not using caching plugins or are OK with displaying older "
|
147 |
-
"cached counts"
|
|
|
148 |
msgstr ""
|
149 |
|
150 |
-
#: admin.inc.php:
|
151 |
msgid "Always display latest post count in the daily lists"
|
152 |
msgstr ""
|
153 |
|
154 |
-
#: admin.inc.php:
|
155 |
#, fuzzy
|
156 |
msgid "This option uses JavaScript and will increase your page load time"
|
157 |
msgstr ""
|
158 |
"Зрабіць спіс Папулярных запісаў дынамічным? Опцыя выкарыстоўвае JavaScript , "
|
159 |
"і гэта можа павялічыць час загрузкі старонак"
|
160 |
|
161 |
-
#: admin.inc.php:
|
162 |
msgid "Track visits of authors on their own posts?"
|
163 |
msgstr "Улічваць прагляды запісаў, зробленыя іх жа аўтарамі?"
|
164 |
|
165 |
-
#: admin.inc.php:
|
166 |
#, fuzzy
|
167 |
msgid "Track visits of admins?"
|
168 |
msgstr "Улічваць прагляды запісаў, зробленыя іх жа аўтарамі?"
|
169 |
|
170 |
-
#: admin.inc.php:
|
171 |
msgid "Display page views on Posts > All Posts in Admin"
|
172 |
msgstr ""
|
173 |
|
174 |
-
#: admin.inc.php:
|
175 |
msgid "Link to Top 10 plugin page"
|
176 |
msgstr ""
|
177 |
|
178 |
-
#: admin.inc.php:
|
179 |
#, fuzzy
|
180 |
msgid ""
|
181 |
"A link to the plugin is added as an extra list item to the list of popular "
|
@@ -184,16 +185,16 @@ msgstr ""
|
|
184 |
"Спасылка на ўбудову будзе дададзена да спісаў Папулярных запісаў. Мы будзем "
|
185 |
"удзячныя Вам, калі Вы яе ўсё ж пакінеце!"
|
186 |
|
187 |
-
#: admin.inc.php:
|
188 |
#, fuzzy
|
189 |
msgid "Output Options"
|
190 |
msgstr "Налады ўбудовы:"
|
191 |
|
192 |
-
#: admin.inc.php:
|
193 |
msgid "Format to display the count in: "
|
194 |
msgstr "Фармат адлюстравання колькасці праглядаў:"
|
195 |
|
196 |
-
#: admin.inc.php:
|
197 |
#, fuzzy
|
198 |
msgid ""
|
199 |
"Use <code>%totalcount%</code> to display the total count, <code>%dailycount"
|
@@ -205,492 +206,522 @@ msgstr ""
|
|
205 |
"праглядаў, а <code>%dailycount%</code> - прагляды за суткі. Напрыклад: <code>"
|
206 |
"(Прагледжана 123 раз, 23 разу прагляду сёння)</code>"
|
207 |
|
208 |
-
#: admin.inc.php:
|
209 |
msgid "Title of popular posts: "
|
210 |
msgstr "Загаловак блока Папулярных запісаў:"
|
211 |
|
212 |
-
#: admin.inc.php:
|
213 |
msgid "Title of daily popular posts: "
|
214 |
msgstr "Загаловак блока Папулярных сёння запісаў:"
|
215 |
|
216 |
-
#: admin.inc.php:
|
217 |
msgid "When there are no posts, what should be shown?"
|
218 |
msgstr ""
|
219 |
|
220 |
-
#: admin.inc.php:
|
221 |
msgid "Blank Output"
|
222 |
msgstr ""
|
223 |
|
224 |
-
#: admin.inc.php:
|
225 |
msgid "Display:"
|
226 |
msgstr ""
|
227 |
|
228 |
-
#: admin.inc.php:
|
229 |
msgid "Show post excerpt in list?"
|
230 |
msgstr ""
|
231 |
|
232 |
-
#: admin.inc.php:
|
233 |
msgid "Length of excerpt (in words): "
|
234 |
msgstr ""
|
235 |
|
236 |
-
#: admin.inc.php:
|
|
|
|
|
|
|
|
|
237 |
msgid "Show post date in list?"
|
238 |
msgstr ""
|
239 |
|
240 |
-
#: admin.inc.php:
|
241 |
msgid "Limit post title length (in characters)"
|
242 |
msgstr ""
|
243 |
|
244 |
-
#: admin.inc.php:
|
245 |
msgid "Display number of page views in popular lists?"
|
246 |
msgstr ""
|
247 |
"Паказваць колькасць праглядаў запісаў/старонак у спісе Папулярных запісаў?"
|
248 |
|
249 |
-
#: admin.inc.php:
|
250 |
msgid "Open links in new window"
|
251 |
msgstr ""
|
252 |
|
253 |
-
#: admin.inc.php:
|
254 |
msgid "Add nofollow attribute to links in the list"
|
255 |
msgstr ""
|
256 |
|
257 |
-
#: admin.inc.php:
|
258 |
msgid "Exclude display of related posts on these posts / pages"
|
259 |
msgstr ""
|
260 |
|
261 |
-
#: admin.inc.php:
|
262 |
msgid "Enter comma separated list of IDs. e.g. 188,320,500"
|
263 |
msgstr ""
|
264 |
|
265 |
-
#: admin.inc.php:
|
266 |
msgid "Customize the output:"
|
267 |
msgstr ""
|
268 |
|
269 |
-
#: admin.inc.php:
|
270 |
msgid "HTML to display before the list of posts: "
|
271 |
msgstr ""
|
272 |
|
273 |
-
#: admin.inc.php:
|
274 |
msgid "HTML to display before each list item: "
|
275 |
msgstr ""
|
276 |
|
277 |
-
#: admin.inc.php:
|
278 |
#, fuzzy
|
279 |
msgid "HTML to display after each list item: "
|
280 |
msgstr "Фармат адлюстравання колькасці праглядаў:"
|
281 |
|
282 |
-
#: admin.inc.php:
|
283 |
msgid "HTML to display after the list of posts: "
|
284 |
msgstr ""
|
285 |
|
286 |
-
#: admin.inc.php:
|
287 |
msgid "Post thumbnail options:"
|
288 |
msgstr ""
|
289 |
|
290 |
-
#: admin.inc.php:
|
291 |
msgid "Location of post thumbnail:"
|
292 |
msgstr ""
|
293 |
|
294 |
-
#: admin.inc.php:
|
295 |
#, fuzzy
|
296 |
msgid "Display thumbnails inline with posts, before title"
|
297 |
msgstr "Паказваць колькасць праглядаў запісу ў яе \"целе\"?"
|
298 |
|
299 |
-
#: admin.inc.php:
|
300 |
#, fuzzy
|
301 |
msgid "Display thumbnails inline with posts, after title"
|
302 |
msgstr "Паказваць колькасць праглядаў запісу ў яе \"целе\"?"
|
303 |
|
304 |
-
#: admin.inc.php:
|
305 |
msgid "Display only thumbnails, no text"
|
306 |
msgstr ""
|
307 |
|
308 |
-
#: admin.inc.php:
|
309 |
msgid "Do not display thumbnails, only text."
|
310 |
msgstr ""
|
311 |
|
312 |
-
#: admin.inc.php:
|
313 |
msgid "Width of the thumbnail: "
|
314 |
msgstr ""
|
315 |
|
316 |
-
#: admin.inc.php:
|
317 |
msgid "Height of the thumbnail: "
|
318 |
msgstr ""
|
319 |
|
320 |
-
#: admin.inc.php:
|
321 |
msgid "Style attributes / Width and Height HTML attributes:"
|
322 |
msgstr ""
|
323 |
|
324 |
-
#: admin.inc.php:
|
325 |
msgid ""
|
326 |
"Style attributes are used for width and height. <code>style=\"max-width:"
|
327 |
msgstr ""
|
328 |
|
329 |
-
#: admin.inc.php:
|
330 |
msgid ""
|
331 |
"HTML width and height attributes are used for width and height. <code>width="
|
332 |
"\""
|
333 |
msgstr ""
|
334 |
|
335 |
-
#: admin.inc.php:
|
336 |
msgid "Use timthumb to generate thumbnails? "
|
337 |
msgstr ""
|
338 |
|
339 |
-
#: admin.inc.php:
|
340 |
msgid ""
|
341 |
"If checked, <a href=\"http://www.binarymoon.co.uk/projects/timthumb/"
|
342 |
"\">timthumb</a> will be used to generate thumbnails"
|
343 |
msgstr ""
|
344 |
|
345 |
-
#: admin.inc.php:
|
346 |
msgid "Post thumbnail meta field name: "
|
347 |
msgstr ""
|
348 |
|
349 |
-
#: admin.inc.php:
|
350 |
msgid ""
|
351 |
"The value of this field should contain the image source and is set in the "
|
352 |
"<em>Add New Post</em> screen"
|
353 |
msgstr ""
|
354 |
|
355 |
-
#: admin.inc.php:
|
356 |
msgid ""
|
357 |
"If the postmeta is not set, then should the plugin extract the first image "
|
358 |
"from the post?"
|
359 |
msgstr ""
|
360 |
|
361 |
-
#: admin.inc.php:
|
362 |
msgid ""
|
363 |
"This could slow down the loading of your page if the first image in the "
|
364 |
"related posts is large in file-size"
|
365 |
msgstr ""
|
366 |
|
367 |
-
#: admin.inc.php:
|
368 |
msgid "Use default thumbnail? "
|
369 |
msgstr ""
|
370 |
|
371 |
-
#: admin.inc.php:
|
372 |
msgid ""
|
373 |
"If checked, when no thumbnail is found, show a default one from the URL "
|
374 |
"below. If not checked and no thumbnail is found, no image will be shown."
|
375 |
msgstr ""
|
376 |
|
377 |
-
#: admin.inc.php:
|
378 |
msgid "Default thumbnail: "
|
379 |
msgstr ""
|
380 |
|
381 |
-
#: admin.inc.php:
|
382 |
msgid ""
|
383 |
"The plugin will first check if the post contains a thumbnail. If it doesn't "
|
384 |
"then it will check the meta field. If this is not available, then it will "
|
385 |
"show the default image as specified above"
|
386 |
msgstr ""
|
387 |
|
388 |
-
#: admin.inc.php:
|
389 |
msgid "Custom Styles"
|
390 |
msgstr ""
|
391 |
|
392 |
-
#: admin.inc.php:
|
393 |
msgid "Custom CSS to add to header:"
|
394 |
msgstr ""
|
395 |
|
396 |
-
#: admin.inc.php:
|
397 |
msgid ""
|
398 |
"Do not include <code>style</code> tags. Check out the <a href=\"http://"
|
399 |
"wordpress.org/extend/plugins/top-10/faq/\" target=\"_blank\">FAQ</a> for "
|
400 |
"available CSS classes to style."
|
401 |
msgstr ""
|
402 |
|
403 |
-
#: admin.inc.php:
|
404 |
msgid "Maintenance"
|
405 |
msgstr ""
|
406 |
|
407 |
-
#: admin.inc.php:
|
408 |
msgid ""
|
409 |
"Over time the Daily Top 10 database grows in size, which reduces the "
|
410 |
"performance of the plugin. Cleaning the database at regular intervals could "
|
411 |
"improve performance, especially on high traffic blogs."
|
412 |
msgstr ""
|
413 |
|
414 |
-
#: admin.inc.php:
|
415 |
msgid ""
|
416 |
"Note: When scheduled maintenance is enabled, WordPress will run the cron job "
|
417 |
"everytime the job is rescheduled (i.e. you change the settings below). This "
|
418 |
"causes the daily posts table to reset."
|
419 |
msgstr ""
|
420 |
|
421 |
-
#: admin.inc.php:
|
422 |
msgid "Enable scheduled maintenance of daily tables:"
|
423 |
msgstr ""
|
424 |
|
425 |
-
#: admin.inc.php:
|
426 |
msgid "Time to run maintenance"
|
427 |
msgstr ""
|
428 |
|
429 |
-
#: admin.inc.php:
|
430 |
msgid "How often should the maintenance be run:"
|
431 |
msgstr ""
|
432 |
|
433 |
-
#: admin.inc.php:
|
434 |
msgid "Daily"
|
435 |
msgstr ""
|
436 |
|
437 |
-
#: admin.inc.php:
|
438 |
msgid "Weekly"
|
439 |
msgstr ""
|
440 |
|
441 |
-
#: admin.inc.php:
|
442 |
msgid "Fortnightly"
|
443 |
msgstr ""
|
444 |
|
445 |
-
#: admin.inc.php:
|
446 |
msgid "Monthly"
|
447 |
msgstr ""
|
448 |
|
449 |
-
#: admin.inc.php:
|
450 |
msgid "The cron job has been scheduled. Maintenance will run "
|
451 |
msgstr ""
|
452 |
|
453 |
-
#: admin.inc.php:
|
454 |
msgid "The cron job is missing. Please resave this page to add the job"
|
455 |
msgstr ""
|
456 |
|
457 |
-
#: admin.inc.php:
|
458 |
msgid "Maintenance is turned off"
|
459 |
msgstr ""
|
460 |
|
461 |
-
#: admin.inc.php:
|
462 |
#, fuzzy
|
463 |
msgid "Save Options"
|
464 |
msgstr "Налады ўбудовы:"
|
465 |
|
466 |
-
#: admin.inc.php:
|
467 |
#, fuzzy
|
468 |
msgid "Default Options"
|
469 |
msgstr "Налады ўбудовы:"
|
470 |
|
471 |
-
#: admin.inc.php:
|
472 |
msgid "Do you want to set options to Default?"
|
473 |
msgstr "Скінуць налады ўбудовы?"
|
474 |
|
475 |
-
#: admin.inc.php:
|
476 |
msgid "Reset count"
|
477 |
msgstr ""
|
478 |
|
479 |
-
#: admin.inc.php:
|
480 |
msgid ""
|
481 |
"This cannot be reversed. Make sure that your database has been backed up "
|
482 |
"before proceeding"
|
483 |
msgstr ""
|
484 |
|
485 |
-
#: admin.inc.php:
|
486 |
#, fuzzy
|
487 |
msgid "Reset Popular Posts"
|
488 |
msgstr "Папулярныя запісы"
|
489 |
|
490 |
-
#: admin.inc.php:
|
491 |
msgid "Are you sure you want to reset the popular posts?"
|
492 |
msgstr ""
|
493 |
|
494 |
-
#: admin.inc.php:
|
495 |
#, fuzzy
|
496 |
msgid "Reset Daily Popular Posts"
|
497 |
msgstr "Папулярныя сёння запісы"
|
498 |
|
499 |
-
#: admin.inc.php:
|
500 |
msgid "Are you sure you want to reset the daily popular posts?"
|
501 |
msgstr ""
|
502 |
|
503 |
-
#: admin.inc.php:
|
504 |
msgid "Clear duplicates"
|
505 |
msgstr ""
|
506 |
|
507 |
-
#: admin.inc.php:
|
508 |
msgid "This will delete the duplicate entries in the tables. Proceed?"
|
509 |
msgstr ""
|
510 |
|
511 |
-
#: admin.inc.php:
|
512 |
msgid "Popular Posts"
|
513 |
msgstr "Папулярныя запісы"
|
514 |
|
515 |
-
#: admin.inc.php:
|
516 |
msgid "Daily Popular Posts"
|
517 |
msgstr "Папулярныя сёння запісы"
|
518 |
|
519 |
-
#: admin.inc.php:
|
520 |
#, fuzzy
|
521 |
msgid "Support the development"
|
522 |
msgstr "Падтрымаеце стваральніка ўбудовы"
|
523 |
|
524 |
-
#: admin.inc.php:
|
525 |
msgid "Enter amount in USD: "
|
526 |
msgstr ""
|
527 |
|
528 |
-
#: admin.inc.php:
|
529 |
msgid "Send your donation to the author of"
|
530 |
msgstr ""
|
531 |
|
532 |
-
#: admin.inc.php:
|
533 |
msgid "Follow us"
|
534 |
msgstr ""
|
535 |
|
536 |
-
#: admin.inc.php:
|
537 |
msgid "Quick Links"
|
538 |
msgstr ""
|
539 |
|
540 |
-
#: admin.inc.php:
|
541 |
msgid "Top 10 plugin page"
|
542 |
msgstr ""
|
543 |
|
544 |
-
#: admin.inc.php:
|
545 |
msgid "Other plugins"
|
546 |
msgstr ""
|
547 |
|
548 |
-
#: admin.inc.php:
|
549 |
msgid "Ajay's blog"
|
550 |
msgstr ""
|
551 |
|
552 |
-
#: admin.inc.php:
|
553 |
msgid "Support"
|
554 |
msgstr ""
|
555 |
|
556 |
-
#: admin.inc.php:
|
557 |
msgid "Recent developments"
|
558 |
msgstr ""
|
559 |
|
560 |
-
#: admin.inc.php:
|
561 |
#, fuzzy
|
562 |
msgid "Top 10 Settings"
|
563 |
msgstr "Топ 10 запісаў"
|
564 |
|
565 |
-
#: admin.inc.php:
|
566 |
msgid "Top 10"
|
567 |
msgstr "Топ 10 запісаў"
|
568 |
|
569 |
-
#: admin.inc.php:
|
570 |
#, fuzzy
|
571 |
msgid "Overall Popular Posts"
|
572 |
msgstr "Паглядзець усе Папулярныя запісы"
|
573 |
|
574 |
-
#: admin.inc.php:
|
575 |
msgid "Results"
|
576 |
msgstr "Вынікі"
|
577 |
|
578 |
-
#: admin.inc.php:
|
579 |
msgid "of"
|
580 |
msgstr "з"
|
581 |
|
582 |
-
#: admin.inc.php:
|
583 |
msgid "Page"
|
584 |
msgstr "Старонка"
|
585 |
|
586 |
-
#: admin.inc.php:
|
587 |
msgid "View Daily Popular Posts"
|
588 |
msgstr "Паглядзець усе Папулярныя сёння запісы"
|
589 |
|
590 |
-
#: admin.inc.php:
|
591 |
msgid "Results per-page:"
|
592 |
msgstr "Вынікаў на старонку:"
|
593 |
|
594 |
-
#: admin.inc.php:
|
595 |
msgid "View Overall Popular Posts"
|
596 |
msgstr "Паглядзець усе Папулярныя запісы"
|
597 |
|
598 |
-
#: admin.inc.php:
|
599 |
msgid "Previous"
|
600 |
msgstr "Папярэдняя старонка"
|
601 |
|
602 |
-
#: admin.inc.php:
|
603 |
msgid "Next"
|
604 |
msgstr "Наступная старонка"
|
605 |
|
606 |
-
#: admin.inc.php:
|
607 |
msgid "Daily Popular"
|
608 |
msgstr "Папулярныя сёння запісы"
|
609 |
|
610 |
-
#: admin.inc.php:
|
611 |
-
|
|
|
612 |
msgstr "Усяго / Сёння праглядаў"
|
613 |
|
614 |
-
#:
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
615 |
msgid "Display the posts popular this week"
|
616 |
msgstr ""
|
617 |
|
618 |
-
#: top-10.php:
|
619 |
msgid "Title"
|
620 |
msgstr ""
|
621 |
|
622 |
-
#: top-10.php:
|
623 |
msgid "No. of posts"
|
624 |
msgstr ""
|
625 |
|
626 |
-
#: top-10.php:
|
627 |
msgid "Overall"
|
628 |
msgstr ""
|
629 |
|
630 |
-
#: top-10.php:
|
631 |
msgid "Custom time period (Enter below)"
|
632 |
msgstr ""
|
633 |
|
634 |
-
#: top-10.php:
|
635 |
msgid "Range in number of days (applies only to custom option above)"
|
636 |
msgstr ""
|
637 |
|
638 |
-
#: top-10.php:
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
639 |
msgid "Thumbnail options"
|
640 |
msgstr ""
|
641 |
|
642 |
-
#: top-10.php:
|
643 |
#, fuzzy
|
644 |
msgid "Thumbnails inline, before title"
|
645 |
msgstr "Паказваць колькасць праглядаў запісу ў яе \"целе\"?"
|
646 |
|
647 |
-
#: top-10.php:
|
648 |
#, fuzzy
|
649 |
msgid "Thumbnails inline, after title"
|
650 |
msgstr "Паказваць колькасць праглядаў запісу ў яе \"целе\"?"
|
651 |
|
652 |
-
#: top-10.php:
|
653 |
msgid "Only thumbnails, no text"
|
654 |
msgstr ""
|
655 |
|
656 |
-
#: top-10.php:
|
657 |
msgid "No thumbnails, only text."
|
658 |
msgstr ""
|
659 |
|
660 |
-
#: top-10.php:
|
661 |
-
msgid "
|
|
|
|
|
|
|
|
|
662 |
msgstr ""
|
663 |
|
664 |
-
#: top-10.php:
|
665 |
msgid "<h3>Popular Posts</h3>"
|
666 |
msgstr "<h3>Папулярныя запісы</h3>"
|
667 |
|
668 |
-
#: top-10.php:
|
669 |
msgid "<h3>Daily Popular</h3>"
|
670 |
msgstr "<h3>Папулярныя сёння запісы</h3>"
|
671 |
|
672 |
-
#: top-10.php:
|
673 |
#, fuzzy
|
674 |
msgid "No top posts yet"
|
675 |
msgstr "Загаловак блока Папулярных запісаў:"
|
676 |
|
677 |
-
#: top-10.php:
|
678 |
msgid "Once Weekly"
|
679 |
msgstr ""
|
680 |
|
681 |
-
#: top-10.php:
|
682 |
msgid "Once Fortnightly"
|
683 |
msgstr ""
|
684 |
|
685 |
-
#: top-10.php:
|
686 |
msgid "Once Monthly"
|
687 |
msgstr ""
|
688 |
|
689 |
-
#: top-10.php:
|
690 |
msgid "Settings"
|
691 |
msgstr ""
|
692 |
|
693 |
-
#: top-10.php:
|
694 |
msgid "Donate"
|
695 |
msgstr ""
|
696 |
|
2 |
msgstr ""
|
3 |
"Project-Id-Version: Топ 10\n"
|
4 |
"Report-Msgid-Bugs-To: \n"
|
5 |
+
"POT-Creation-Date: 2013-09-01 12:50-0000\n"
|
6 |
"PO-Revision-Date: \n"
|
7 |
"Last-Translator: Ajay D'Souza <me@ajaydsouza.com>\n"
|
8 |
"Language-Team: FatCow <zhr@tut.by>\n"
|
15 |
"X-Generator: Poedit 1.5.7\n"
|
16 |
"X-Poedit-SearchPath-0: .\n"
|
17 |
|
18 |
+
#: admin.inc.php:103
|
19 |
msgid "Scheduled maintenance enabled / modified"
|
20 |
msgstr ""
|
21 |
|
22 |
+
#: admin.inc.php:107
|
23 |
msgid "Scheduled maintenance disabled"
|
24 |
msgstr ""
|
25 |
|
26 |
+
#: admin.inc.php:124
|
27 |
msgid "Options saved successfully."
|
28 |
msgstr "Налады захаваны."
|
29 |
|
30 |
+
#: admin.inc.php:133
|
31 |
msgid "Options set to Default."
|
32 |
msgstr "Налады скінуты."
|
33 |
|
34 |
+
#: admin.inc.php:139
|
35 |
#, fuzzy
|
36 |
msgid "Top 10 popular posts reset"
|
37 |
msgstr "Загаловак блока Папулярных запісаў:"
|
38 |
|
39 |
+
#: admin.inc.php:145
|
40 |
#, fuzzy
|
41 |
msgid "Top 10 daily popular posts reset"
|
42 |
msgstr "Загаловак блока Папулярных сёння запісаў:"
|
43 |
|
44 |
+
#: admin.inc.php:152
|
45 |
msgid "Duplicate rows cleaned from tables"
|
46 |
msgstr ""
|
47 |
|
48 |
+
#: admin.inc.php:173
|
49 |
msgid "General options"
|
50 |
msgstr ""
|
51 |
|
52 |
+
#: admin.inc.php:177
|
53 |
msgid "Enable Overall stats"
|
54 |
msgstr ""
|
55 |
|
56 |
+
#: admin.inc.php:182
|
57 |
msgid "Enable Daily stats"
|
58 |
msgstr ""
|
59 |
|
60 |
+
#: admin.inc.php:187
|
61 |
msgid "W3 Total Cache fix:"
|
62 |
msgstr ""
|
63 |
|
64 |
+
#: admin.inc.php:189
|
65 |
msgid ""
|
66 |
"This will try to prevent W3 Total Cache from caching the addcount script of "
|
67 |
"the plugin. Try toggling this option in case you find that our posts are not "
|
68 |
"tracked."
|
69 |
msgstr ""
|
70 |
|
71 |
+
#: admin.inc.php:193
|
72 |
msgid "Number of popular posts to display: "
|
73 |
msgstr "Колькасць Папулярных запісаў у спісе:"
|
74 |
|
75 |
+
#: admin.inc.php:197
|
76 |
msgid "Daily Popular should contain views of how many days? "
|
77 |
msgstr "За колькі дзён лічыць прагляды для запісаў, Папулярных сёння?"
|
78 |
|
79 |
+
#: admin.inc.php:200
|
80 |
msgid "Post types to include in results (including custom post types)"
|
81 |
msgstr ""
|
82 |
|
83 |
+
#: admin.inc.php:211
|
84 |
msgid "List of post or page IDs to exclude from the results: "
|
85 |
msgstr ""
|
86 |
|
87 |
+
#: admin.inc.php:215
|
88 |
msgid "Exclude Categories: "
|
89 |
msgstr ""
|
90 |
|
91 |
+
#: admin.inc.php:230
|
92 |
msgid ""
|
93 |
"Comma separated list of category slugs. The field above has an autocomplete "
|
94 |
"so simply start typing in the starting letters and it will prompt you with "
|
95 |
"options"
|
96 |
msgstr ""
|
97 |
|
98 |
+
#: admin.inc.php:235
|
99 |
#, fuzzy
|
100 |
msgid "Display number of views on:"
|
101 |
msgstr "Паказваць колькасць праглядаў запісу ў яе \"целе\"?"
|
102 |
|
103 |
+
#: admin.inc.php:237
|
104 |
msgid "Posts"
|
105 |
msgstr ""
|
106 |
|
107 |
+
#: admin.inc.php:238
|
108 |
#, fuzzy
|
109 |
msgid "Pages"
|
110 |
msgstr "Старонка"
|
111 |
|
112 |
+
#: admin.inc.php:239
|
113 |
msgid "Home page"
|
114 |
msgstr ""
|
115 |
|
116 |
+
#: admin.inc.php:240
|
117 |
msgid "Feeds"
|
118 |
msgstr ""
|
119 |
|
120 |
+
#: admin.inc.php:241
|
121 |
msgid "Category archives"
|
122 |
msgstr ""
|
123 |
|
124 |
+
#: admin.inc.php:242
|
125 |
msgid "Tag archives"
|
126 |
msgstr ""
|
127 |
|
128 |
+
#: admin.inc.php:243
|
129 |
msgid "Other archives"
|
130 |
msgstr ""
|
131 |
|
132 |
+
#: admin.inc.php:244
|
133 |
msgid ""
|
134 |
"If you choose to disable this, please add <code><?php if(function_exists"
|
135 |
"('echo_ald_tptn')) echo_ald_tptn(); ?></code> to your template file where "
|
136 |
"you want it displayed"
|
137 |
msgstr ""
|
138 |
|
139 |
+
#: admin.inc.php:247
|
140 |
msgid "Always display latest post count"
|
141 |
msgstr ""
|
142 |
|
143 |
+
#: admin.inc.php:249
|
144 |
msgid ""
|
145 |
"This option uses JavaScript and will increase your page load time. Turn this "
|
146 |
"off if you are not using caching plugins or are OK with displaying older "
|
147 |
+
"cached counts. When you enable this option, the daily widget will not use "
|
148 |
+
"the options set there, but options will need to be set on this screen."
|
149 |
msgstr ""
|
150 |
|
151 |
+
#: admin.inc.php:252
|
152 |
msgid "Always display latest post count in the daily lists"
|
153 |
msgstr ""
|
154 |
|
155 |
+
#: admin.inc.php:254
|
156 |
#, fuzzy
|
157 |
msgid "This option uses JavaScript and will increase your page load time"
|
158 |
msgstr ""
|
159 |
"Зрабіць спіс Папулярных запісаў дынамічным? Опцыя выкарыстоўвае JavaScript , "
|
160 |
"і гэта можа павялічыць час загрузкі старонак"
|
161 |
|
162 |
+
#: admin.inc.php:257
|
163 |
msgid "Track visits of authors on their own posts?"
|
164 |
msgstr "Улічваць прагляды запісаў, зробленыя іх жа аўтарамі?"
|
165 |
|
166 |
+
#: admin.inc.php:260
|
167 |
#, fuzzy
|
168 |
msgid "Track visits of admins?"
|
169 |
msgstr "Улічваць прагляды запісаў, зробленыя іх жа аўтарамі?"
|
170 |
|
171 |
+
#: admin.inc.php:263
|
172 |
msgid "Display page views on Posts > All Posts in Admin"
|
173 |
msgstr ""
|
174 |
|
175 |
+
#: admin.inc.php:266
|
176 |
msgid "Link to Top 10 plugin page"
|
177 |
msgstr ""
|
178 |
|
179 |
+
#: admin.inc.php:268
|
180 |
#, fuzzy
|
181 |
msgid ""
|
182 |
"A link to the plugin is added as an extra list item to the list of popular "
|
185 |
"Спасылка на ўбудову будзе дададзена да спісаў Папулярных запісаў. Мы будзем "
|
186 |
"удзячныя Вам, калі Вы яе ўсё ж пакінеце!"
|
187 |
|
188 |
+
#: admin.inc.php:275
|
189 |
#, fuzzy
|
190 |
msgid "Output Options"
|
191 |
msgstr "Налады ўбудовы:"
|
192 |
|
193 |
+
#: admin.inc.php:278
|
194 |
msgid "Format to display the count in: "
|
195 |
msgstr "Фармат адлюстравання колькасці праглядаў:"
|
196 |
|
197 |
+
#: admin.inc.php:280
|
198 |
#, fuzzy
|
199 |
msgid ""
|
200 |
"Use <code>%totalcount%</code> to display the total count, <code>%dailycount"
|
206 |
"праглядаў, а <code>%dailycount%</code> - прагляды за суткі. Напрыклад: <code>"
|
207 |
"(Прагледжана 123 раз, 23 разу прагляду сёння)</code>"
|
208 |
|
209 |
+
#: admin.inc.php:283
|
210 |
msgid "Title of popular posts: "
|
211 |
msgstr "Загаловак блока Папулярных запісаў:"
|
212 |
|
213 |
+
#: admin.inc.php:286
|
214 |
msgid "Title of daily popular posts: "
|
215 |
msgstr "Загаловак блока Папулярных сёння запісаў:"
|
216 |
|
217 |
+
#: admin.inc.php:289
|
218 |
msgid "When there are no posts, what should be shown?"
|
219 |
msgstr ""
|
220 |
|
221 |
+
#: admin.inc.php:293
|
222 |
msgid "Blank Output"
|
223 |
msgstr ""
|
224 |
|
225 |
+
#: admin.inc.php:297
|
226 |
msgid "Display:"
|
227 |
msgstr ""
|
228 |
|
229 |
+
#: admin.inc.php:301
|
230 |
msgid "Show post excerpt in list?"
|
231 |
msgstr ""
|
232 |
|
233 |
+
#: admin.inc.php:304
|
234 |
msgid "Length of excerpt (in words): "
|
235 |
msgstr ""
|
236 |
|
237 |
+
#: admin.inc.php:307
|
238 |
+
msgid "Show post author in list?"
|
239 |
+
msgstr ""
|
240 |
+
|
241 |
+
#: admin.inc.php:310
|
242 |
msgid "Show post date in list?"
|
243 |
msgstr ""
|
244 |
|
245 |
+
#: admin.inc.php:313
|
246 |
msgid "Limit post title length (in characters)"
|
247 |
msgstr ""
|
248 |
|
249 |
+
#: admin.inc.php:316
|
250 |
msgid "Display number of page views in popular lists?"
|
251 |
msgstr ""
|
252 |
"Паказваць колькасць праглядаў запісаў/старонак у спісе Папулярных запісаў?"
|
253 |
|
254 |
+
#: admin.inc.php:319
|
255 |
msgid "Open links in new window"
|
256 |
msgstr ""
|
257 |
|
258 |
+
#: admin.inc.php:322
|
259 |
msgid "Add nofollow attribute to links in the list"
|
260 |
msgstr ""
|
261 |
|
262 |
+
#: admin.inc.php:325
|
263 |
msgid "Exclude display of related posts on these posts / pages"
|
264 |
msgstr ""
|
265 |
|
266 |
+
#: admin.inc.php:328
|
267 |
msgid "Enter comma separated list of IDs. e.g. 188,320,500"
|
268 |
msgstr ""
|
269 |
|
270 |
+
#: admin.inc.php:331
|
271 |
msgid "Customize the output:"
|
272 |
msgstr ""
|
273 |
|
274 |
+
#: admin.inc.php:333
|
275 |
msgid "HTML to display before the list of posts: "
|
276 |
msgstr ""
|
277 |
|
278 |
+
#: admin.inc.php:336
|
279 |
msgid "HTML to display before each list item: "
|
280 |
msgstr ""
|
281 |
|
282 |
+
#: admin.inc.php:339
|
283 |
#, fuzzy
|
284 |
msgid "HTML to display after each list item: "
|
285 |
msgstr "Фармат адлюстравання колькасці праглядаў:"
|
286 |
|
287 |
+
#: admin.inc.php:342
|
288 |
msgid "HTML to display after the list of posts: "
|
289 |
msgstr ""
|
290 |
|
291 |
+
#: admin.inc.php:345
|
292 |
msgid "Post thumbnail options:"
|
293 |
msgstr ""
|
294 |
|
295 |
+
#: admin.inc.php:347
|
296 |
msgid "Location of post thumbnail:"
|
297 |
msgstr ""
|
298 |
|
299 |
+
#: admin.inc.php:351
|
300 |
#, fuzzy
|
301 |
msgid "Display thumbnails inline with posts, before title"
|
302 |
msgstr "Паказваць колькасць праглядаў запісу ў яе \"целе\"?"
|
303 |
|
304 |
+
#: admin.inc.php:355
|
305 |
#, fuzzy
|
306 |
msgid "Display thumbnails inline with posts, after title"
|
307 |
msgstr "Паказваць колькасць праглядаў запісу ў яе \"целе\"?"
|
308 |
|
309 |
+
#: admin.inc.php:359
|
310 |
msgid "Display only thumbnails, no text"
|
311 |
msgstr ""
|
312 |
|
313 |
+
#: admin.inc.php:363
|
314 |
msgid "Do not display thumbnails, only text."
|
315 |
msgstr ""
|
316 |
|
317 |
+
#: admin.inc.php:367
|
318 |
msgid "Width of the thumbnail: "
|
319 |
msgstr ""
|
320 |
|
321 |
+
#: admin.inc.php:370
|
322 |
msgid "Height of the thumbnail: "
|
323 |
msgstr ""
|
324 |
|
325 |
+
#: admin.inc.php:373
|
326 |
msgid "Style attributes / Width and Height HTML attributes:"
|
327 |
msgstr ""
|
328 |
|
329 |
+
#: admin.inc.php:377
|
330 |
msgid ""
|
331 |
"Style attributes are used for width and height. <code>style=\"max-width:"
|
332 |
msgstr ""
|
333 |
|
334 |
+
#: admin.inc.php:381
|
335 |
msgid ""
|
336 |
"HTML width and height attributes are used for width and height. <code>width="
|
337 |
"\""
|
338 |
msgstr ""
|
339 |
|
340 |
+
#: admin.inc.php:385
|
341 |
msgid "Use timthumb to generate thumbnails? "
|
342 |
msgstr ""
|
343 |
|
344 |
+
#: admin.inc.php:386
|
345 |
msgid ""
|
346 |
"If checked, <a href=\"http://www.binarymoon.co.uk/projects/timthumb/"
|
347 |
"\">timthumb</a> will be used to generate thumbnails"
|
348 |
msgstr ""
|
349 |
|
350 |
+
#: admin.inc.php:388
|
351 |
msgid "Post thumbnail meta field name: "
|
352 |
msgstr ""
|
353 |
|
354 |
+
#: admin.inc.php:389
|
355 |
msgid ""
|
356 |
"The value of this field should contain the image source and is set in the "
|
357 |
"<em>Add New Post</em> screen"
|
358 |
msgstr ""
|
359 |
|
360 |
+
#: admin.inc.php:391
|
361 |
msgid ""
|
362 |
"If the postmeta is not set, then should the plugin extract the first image "
|
363 |
"from the post?"
|
364 |
msgstr ""
|
365 |
|
366 |
+
#: admin.inc.php:392
|
367 |
msgid ""
|
368 |
"This could slow down the loading of your page if the first image in the "
|
369 |
"related posts is large in file-size"
|
370 |
msgstr ""
|
371 |
|
372 |
+
#: admin.inc.php:394
|
373 |
msgid "Use default thumbnail? "
|
374 |
msgstr ""
|
375 |
|
376 |
+
#: admin.inc.php:395
|
377 |
msgid ""
|
378 |
"If checked, when no thumbnail is found, show a default one from the URL "
|
379 |
"below. If not checked and no thumbnail is found, no image will be shown."
|
380 |
msgstr ""
|
381 |
|
382 |
+
#: admin.inc.php:397
|
383 |
msgid "Default thumbnail: "
|
384 |
msgstr ""
|
385 |
|
386 |
+
#: admin.inc.php:398
|
387 |
msgid ""
|
388 |
"The plugin will first check if the post contains a thumbnail. If it doesn't "
|
389 |
"then it will check the meta field. If this is not available, then it will "
|
390 |
"show the default image as specified above"
|
391 |
msgstr ""
|
392 |
|
393 |
+
#: admin.inc.php:404
|
394 |
msgid "Custom Styles"
|
395 |
msgstr ""
|
396 |
|
397 |
+
#: admin.inc.php:407
|
398 |
msgid "Custom CSS to add to header:"
|
399 |
msgstr ""
|
400 |
|
401 |
+
#: admin.inc.php:410
|
402 |
msgid ""
|
403 |
"Do not include <code>style</code> tags. Check out the <a href=\"http://"
|
404 |
"wordpress.org/extend/plugins/top-10/faq/\" target=\"_blank\">FAQ</a> for "
|
405 |
"available CSS classes to style."
|
406 |
msgstr ""
|
407 |
|
408 |
+
#: admin.inc.php:417
|
409 |
msgid "Maintenance"
|
410 |
msgstr ""
|
411 |
|
412 |
+
#: admin.inc.php:421
|
413 |
msgid ""
|
414 |
"Over time the Daily Top 10 database grows in size, which reduces the "
|
415 |
"performance of the plugin. Cleaning the database at regular intervals could "
|
416 |
"improve performance, especially on high traffic blogs."
|
417 |
msgstr ""
|
418 |
|
419 |
+
#: admin.inc.php:422
|
420 |
msgid ""
|
421 |
"Note: When scheduled maintenance is enabled, WordPress will run the cron job "
|
422 |
"everytime the job is rescheduled (i.e. you change the settings below). This "
|
423 |
"causes the daily posts table to reset."
|
424 |
msgstr ""
|
425 |
|
426 |
+
#: admin.inc.php:425
|
427 |
msgid "Enable scheduled maintenance of daily tables:"
|
428 |
msgstr ""
|
429 |
|
430 |
+
#: admin.inc.php:429
|
431 |
msgid "Time to run maintenance"
|
432 |
msgstr ""
|
433 |
|
434 |
+
#: admin.inc.php:432
|
435 |
msgid "How often should the maintenance be run:"
|
436 |
msgstr ""
|
437 |
|
438 |
+
#: admin.inc.php:436
|
439 |
msgid "Daily"
|
440 |
msgstr ""
|
441 |
|
442 |
+
#: admin.inc.php:440
|
443 |
msgid "Weekly"
|
444 |
msgstr ""
|
445 |
|
446 |
+
#: admin.inc.php:444
|
447 |
msgid "Fortnightly"
|
448 |
msgstr ""
|
449 |
|
450 |
+
#: admin.inc.php:448
|
451 |
msgid "Monthly"
|
452 |
msgstr ""
|
453 |
|
454 |
+
#: admin.inc.php:457
|
455 |
msgid "The cron job has been scheduled. Maintenance will run "
|
456 |
msgstr ""
|
457 |
|
458 |
+
#: admin.inc.php:462
|
459 |
msgid "The cron job is missing. Please resave this page to add the job"
|
460 |
msgstr ""
|
461 |
|
462 |
+
#: admin.inc.php:467
|
463 |
msgid "Maintenance is turned off"
|
464 |
msgstr ""
|
465 |
|
466 |
+
#: admin.inc.php:475
|
467 |
#, fuzzy
|
468 |
msgid "Save Options"
|
469 |
msgstr "Налады ўбудовы:"
|
470 |
|
471 |
+
#: admin.inc.php:476
|
472 |
#, fuzzy
|
473 |
msgid "Default Options"
|
474 |
msgstr "Налады ўбудовы:"
|
475 |
|
476 |
+
#: admin.inc.php:476
|
477 |
msgid "Do you want to set options to Default?"
|
478 |
msgstr "Скінуць налады ўбудовы?"
|
479 |
|
480 |
+
#: admin.inc.php:480
|
481 |
msgid "Reset count"
|
482 |
msgstr ""
|
483 |
|
484 |
+
#: admin.inc.php:483
|
485 |
msgid ""
|
486 |
"This cannot be reversed. Make sure that your database has been backed up "
|
487 |
"before proceeding"
|
488 |
msgstr ""
|
489 |
|
490 |
+
#: admin.inc.php:486
|
491 |
#, fuzzy
|
492 |
msgid "Reset Popular Posts"
|
493 |
msgstr "Папулярныя запісы"
|
494 |
|
495 |
+
#: admin.inc.php:486
|
496 |
msgid "Are you sure you want to reset the popular posts?"
|
497 |
msgstr ""
|
498 |
|
499 |
+
#: admin.inc.php:487
|
500 |
#, fuzzy
|
501 |
msgid "Reset Daily Popular Posts"
|
502 |
msgstr "Папулярныя сёння запісы"
|
503 |
|
504 |
+
#: admin.inc.php:487
|
505 |
msgid "Are you sure you want to reset the daily popular posts?"
|
506 |
msgstr ""
|
507 |
|
508 |
+
#: admin.inc.php:488
|
509 |
msgid "Clear duplicates"
|
510 |
msgstr ""
|
511 |
|
512 |
+
#: admin.inc.php:488
|
513 |
msgid "This will delete the duplicate entries in the tables. Proceed?"
|
514 |
msgstr ""
|
515 |
|
516 |
+
#: admin.inc.php:531 admin.inc.php:906 top-10.php:476
|
517 |
msgid "Popular Posts"
|
518 |
msgstr "Папулярныя запісы"
|
519 |
|
520 |
+
#: admin.inc.php:531 admin.inc.php:618
|
521 |
msgid "Daily Popular Posts"
|
522 |
msgstr "Папулярныя сёння запісы"
|
523 |
|
524 |
+
#: admin.inc.php:559
|
525 |
#, fuzzy
|
526 |
msgid "Support the development"
|
527 |
msgstr "Падтрымаеце стваральніка ўбудовы"
|
528 |
|
529 |
+
#: admin.inc.php:567
|
530 |
msgid "Enter amount in USD: "
|
531 |
msgstr ""
|
532 |
|
533 |
+
#: admin.inc.php:571
|
534 |
msgid "Send your donation to the author of"
|
535 |
msgstr ""
|
536 |
|
537 |
+
#: admin.inc.php:577
|
538 |
msgid "Follow us"
|
539 |
msgstr ""
|
540 |
|
541 |
+
#: admin.inc.php:583
|
542 |
msgid "Quick Links"
|
543 |
msgstr ""
|
544 |
|
545 |
+
#: admin.inc.php:585
|
546 |
msgid "Top 10 plugin page"
|
547 |
msgstr ""
|
548 |
|
549 |
+
#: admin.inc.php:586
|
550 |
msgid "Other plugins"
|
551 |
msgstr ""
|
552 |
|
553 |
+
#: admin.inc.php:587
|
554 |
msgid "Ajay's blog"
|
555 |
msgstr ""
|
556 |
|
557 |
+
#: admin.inc.php:588 top-10.php:1123
|
558 |
msgid "Support"
|
559 |
msgstr ""
|
560 |
|
561 |
+
#: admin.inc.php:592
|
562 |
msgid "Recent developments"
|
563 |
msgstr ""
|
564 |
|
565 |
+
#: admin.inc.php:609 admin.inc.php:612
|
566 |
#, fuzzy
|
567 |
msgid "Top 10 Settings"
|
568 |
msgstr "Топ 10 запісаў"
|
569 |
|
570 |
+
#: admin.inc.php:609
|
571 |
msgid "Top 10"
|
572 |
msgstr "Топ 10 запісаў"
|
573 |
|
574 |
+
#: admin.inc.php:615
|
575 |
#, fuzzy
|
576 |
msgid "Overall Popular Posts"
|
577 |
msgstr "Паглядзець усе Папулярныя запісы"
|
578 |
|
579 |
+
#: admin.inc.php:786
|
580 |
msgid "Results"
|
581 |
msgstr "Вынікі"
|
582 |
|
583 |
+
#: admin.inc.php:788 admin.inc.php:794
|
584 |
msgid "of"
|
585 |
msgstr "з"
|
586 |
|
587 |
+
#: admin.inc.php:792
|
588 |
msgid "Page"
|
589 |
msgstr "Старонка"
|
590 |
|
591 |
+
#: admin.inc.php:806
|
592 |
msgid "View Daily Popular Posts"
|
593 |
msgstr "Паглядзець усе Папулярныя сёння запісы"
|
594 |
|
595 |
+
#: admin.inc.php:809 admin.inc.php:822
|
596 |
msgid "Results per-page:"
|
597 |
msgstr "Вынікаў на старонку:"
|
598 |
|
599 |
+
#: admin.inc.php:819
|
600 |
msgid "View Overall Popular Posts"
|
601 |
msgstr "Паглядзець усе Папулярныя запісы"
|
602 |
|
603 |
+
#: admin.inc.php:848
|
604 |
msgid "Previous"
|
605 |
msgstr "Папярэдняя старонка"
|
606 |
|
607 |
+
#: admin.inc.php:866
|
608 |
msgid "Next"
|
609 |
msgstr "Наступная старонка"
|
610 |
|
611 |
+
#: admin.inc.php:907
|
612 |
msgid "Daily Popular"
|
613 |
msgstr "Папулярныя сёння запісы"
|
614 |
|
615 |
+
#: admin.inc.php:923
|
616 |
+
#, fuzzy
|
617 |
+
msgid "Total Views"
|
618 |
msgstr "Усяго / Сёння праглядаў"
|
619 |
|
620 |
+
#: admin.inc.php:924
|
621 |
+
#, fuzzy
|
622 |
+
msgid "Today's Views"
|
623 |
+
msgstr "Усяго / Сёння праглядаў"
|
624 |
+
|
625 |
+
#: top-10.php:393
|
626 |
+
msgid " Posted by "
|
627 |
+
msgstr ""
|
628 |
+
|
629 |
+
#: top-10.php:475
|
630 |
msgid "Display the posts popular this week"
|
631 |
msgstr ""
|
632 |
|
633 |
+
#: top-10.php:493
|
634 |
msgid "Title"
|
635 |
msgstr ""
|
636 |
|
637 |
+
#: top-10.php:498
|
638 |
msgid "No. of posts"
|
639 |
msgstr ""
|
640 |
|
641 |
+
#: top-10.php:503
|
642 |
msgid "Overall"
|
643 |
msgstr ""
|
644 |
|
645 |
+
#: top-10.php:504
|
646 |
msgid "Custom time period (Enter below)"
|
647 |
msgstr ""
|
648 |
|
649 |
+
#: top-10.php:509
|
650 |
msgid "Range in number of days (applies only to custom option above)"
|
651 |
msgstr ""
|
652 |
|
653 |
+
#: top-10.php:514
|
654 |
+
msgid " Show excerpt?"
|
655 |
+
msgstr ""
|
656 |
+
|
657 |
+
#: top-10.php:519
|
658 |
+
msgid " Show author?"
|
659 |
+
msgstr ""
|
660 |
+
|
661 |
+
#: top-10.php:524
|
662 |
+
msgid " Show date?"
|
663 |
+
msgstr ""
|
664 |
+
|
665 |
+
#: top-10.php:528
|
666 |
msgid "Thumbnail options"
|
667 |
msgstr ""
|
668 |
|
669 |
+
#: top-10.php:530
|
670 |
#, fuzzy
|
671 |
msgid "Thumbnails inline, before title"
|
672 |
msgstr "Паказваць колькасць праглядаў запісу ў яе \"целе\"?"
|
673 |
|
674 |
+
#: top-10.php:531
|
675 |
#, fuzzy
|
676 |
msgid "Thumbnails inline, after title"
|
677 |
msgstr "Паказваць колькасць праглядаў запісу ў яе \"целе\"?"
|
678 |
|
679 |
+
#: top-10.php:532
|
680 |
msgid "Only thumbnails, no text"
|
681 |
msgstr ""
|
682 |
|
683 |
+
#: top-10.php:533
|
684 |
msgid "No thumbnails, only text."
|
685 |
msgstr ""
|
686 |
|
687 |
+
#: top-10.php:538
|
688 |
+
msgid "Thumbnail height"
|
689 |
+
msgstr ""
|
690 |
+
|
691 |
+
#: top-10.php:543
|
692 |
+
msgid "Thumbnail width"
|
693 |
msgstr ""
|
694 |
|
695 |
+
#: top-10.php:646
|
696 |
msgid "<h3>Popular Posts</h3>"
|
697 |
msgstr "<h3>Папулярныя запісы</h3>"
|
698 |
|
699 |
+
#: top-10.php:647
|
700 |
msgid "<h3>Daily Popular</h3>"
|
701 |
msgstr "<h3>Папулярныя сёння запісы</h3>"
|
702 |
|
703 |
+
#: top-10.php:648
|
704 |
#, fuzzy
|
705 |
msgid "No top posts yet"
|
706 |
msgstr "Загаловак блока Папулярных запісаў:"
|
707 |
|
708 |
+
#: top-10.php:1089
|
709 |
msgid "Once Weekly"
|
710 |
msgstr ""
|
711 |
|
712 |
+
#: top-10.php:1090
|
713 |
msgid "Once Fortnightly"
|
714 |
msgstr ""
|
715 |
|
716 |
+
#: top-10.php:1091
|
717 |
msgid "Once Monthly"
|
718 |
msgstr ""
|
719 |
|
720 |
+
#: top-10.php:1111
|
721 |
msgid "Settings"
|
722 |
msgstr ""
|
723 |
|
724 |
+
#: top-10.php:1124
|
725 |
msgid "Donate"
|
726 |
msgstr ""
|
727 |
|
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: 2013-
|
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"
|
@@ -15,173 +15,174 @@ msgstr ""
|
|
15 |
"X-Generator: Poedit 1.5.7\n"
|
16 |
"X-Poedit-SearchPath-0: .\n"
|
17 |
|
18 |
-
#: admin.inc.php:
|
19 |
msgid "Scheduled maintenance enabled / modified"
|
20 |
msgstr ""
|
21 |
|
22 |
-
#: admin.inc.php:
|
23 |
msgid "Scheduled maintenance disabled"
|
24 |
msgstr ""
|
25 |
|
26 |
-
#: admin.inc.php:
|
27 |
msgid "Options saved successfully."
|
28 |
msgstr ""
|
29 |
|
30 |
-
#: admin.inc.php:
|
31 |
msgid "Options set to Default."
|
32 |
msgstr ""
|
33 |
|
34 |
-
#: admin.inc.php:
|
35 |
msgid "Top 10 popular posts reset"
|
36 |
msgstr ""
|
37 |
|
38 |
-
#: admin.inc.php:
|
39 |
msgid "Top 10 daily popular posts reset"
|
40 |
msgstr ""
|
41 |
|
42 |
-
#: admin.inc.php:
|
43 |
msgid "Duplicate rows cleaned from tables"
|
44 |
msgstr ""
|
45 |
|
46 |
-
#: admin.inc.php:
|
47 |
msgid "General options"
|
48 |
msgstr ""
|
49 |
|
50 |
-
#: admin.inc.php:
|
51 |
msgid "Enable Overall stats"
|
52 |
msgstr ""
|
53 |
|
54 |
-
#: admin.inc.php:
|
55 |
msgid "Enable Daily stats"
|
56 |
msgstr ""
|
57 |
|
58 |
-
#: admin.inc.php:
|
59 |
msgid "W3 Total Cache fix:"
|
60 |
msgstr ""
|
61 |
|
62 |
-
#: admin.inc.php:
|
63 |
msgid ""
|
64 |
"This will try to prevent W3 Total Cache from caching the addcount script of "
|
65 |
"the plugin. Try toggling this option in case you find that our posts are not "
|
66 |
"tracked."
|
67 |
msgstr ""
|
68 |
|
69 |
-
#: admin.inc.php:
|
70 |
msgid "Number of popular posts to display: "
|
71 |
msgstr ""
|
72 |
|
73 |
-
#: admin.inc.php:
|
74 |
msgid "Daily Popular should contain views of how many days? "
|
75 |
msgstr ""
|
76 |
|
77 |
-
#: admin.inc.php:
|
78 |
msgid "Post types to include in results (including custom post types)"
|
79 |
msgstr ""
|
80 |
|
81 |
-
#: admin.inc.php:
|
82 |
msgid "List of post or page IDs to exclude from the results: "
|
83 |
msgstr ""
|
84 |
|
85 |
-
#: admin.inc.php:
|
86 |
msgid "Exclude Categories: "
|
87 |
msgstr ""
|
88 |
|
89 |
-
#: admin.inc.php:
|
90 |
msgid ""
|
91 |
"Comma separated list of category slugs. The field above has an autocomplete "
|
92 |
"so simply start typing in the starting letters and it will prompt you with "
|
93 |
"options"
|
94 |
msgstr ""
|
95 |
|
96 |
-
#: admin.inc.php:
|
97 |
msgid "Display number of views on:"
|
98 |
msgstr ""
|
99 |
|
100 |
-
#: admin.inc.php:
|
101 |
msgid "Posts"
|
102 |
msgstr ""
|
103 |
|
104 |
-
#: admin.inc.php:
|
105 |
msgid "Pages"
|
106 |
msgstr ""
|
107 |
|
108 |
-
#: admin.inc.php:
|
109 |
msgid "Home page"
|
110 |
msgstr ""
|
111 |
|
112 |
-
#: admin.inc.php:
|
113 |
msgid "Feeds"
|
114 |
msgstr ""
|
115 |
|
116 |
-
#: admin.inc.php:
|
117 |
msgid "Category archives"
|
118 |
msgstr ""
|
119 |
|
120 |
-
#: admin.inc.php:
|
121 |
msgid "Tag archives"
|
122 |
msgstr ""
|
123 |
|
124 |
-
#: admin.inc.php:
|
125 |
msgid "Other archives"
|
126 |
msgstr ""
|
127 |
|
128 |
-
#: admin.inc.php:
|
129 |
msgid ""
|
130 |
"If you choose to disable this, please add <code><?php if(function_exists"
|
131 |
"('echo_ald_tptn')) echo_ald_tptn(); ?></code> to your template file where "
|
132 |
"you want it displayed"
|
133 |
msgstr ""
|
134 |
|
135 |
-
#: admin.inc.php:
|
136 |
msgid "Always display latest post count"
|
137 |
msgstr ""
|
138 |
|
139 |
-
#: admin.inc.php:
|
140 |
msgid ""
|
141 |
"This option uses JavaScript and will increase your page load time. Turn this "
|
142 |
"off if you are not using caching plugins or are OK with displaying older "
|
143 |
-
"cached counts"
|
|
|
144 |
msgstr ""
|
145 |
|
146 |
-
#: admin.inc.php:
|
147 |
msgid "Always display latest post count in the daily lists"
|
148 |
msgstr ""
|
149 |
|
150 |
-
#: admin.inc.php:
|
151 |
msgid "This option uses JavaScript and will increase your page load time"
|
152 |
msgstr ""
|
153 |
|
154 |
-
#: admin.inc.php:
|
155 |
msgid "Track visits of authors on their own posts?"
|
156 |
msgstr ""
|
157 |
|
158 |
-
#: admin.inc.php:
|
159 |
msgid "Track visits of admins?"
|
160 |
msgstr ""
|
161 |
|
162 |
-
#: admin.inc.php:
|
163 |
msgid "Display page views on Posts > All Posts in Admin"
|
164 |
msgstr ""
|
165 |
|
166 |
-
#: admin.inc.php:
|
167 |
msgid "Link to Top 10 plugin page"
|
168 |
msgstr ""
|
169 |
|
170 |
-
#: admin.inc.php:
|
171 |
msgid ""
|
172 |
"A link to the plugin is added as an extra list item to the list of popular "
|
173 |
"posts"
|
174 |
msgstr ""
|
175 |
|
176 |
-
#: admin.inc.php:
|
177 |
msgid "Output Options"
|
178 |
msgstr ""
|
179 |
|
180 |
-
#: admin.inc.php:
|
181 |
msgid "Format to display the count in: "
|
182 |
msgstr ""
|
183 |
|
184 |
-
#: admin.inc.php:
|
185 |
msgid ""
|
186 |
"Use <code>%totalcount%</code> to display the total count, <code>%dailycount"
|
187 |
"%</code> to display the daily count and <code>%overallcount%</code> to "
|
@@ -189,477 +190,505 @@ msgid ""
|
|
189 |
"options displays <code>(Visited 123 times, 23 visits today)</code>"
|
190 |
msgstr ""
|
191 |
|
192 |
-
#: admin.inc.php:
|
193 |
msgid "Title of popular posts: "
|
194 |
msgstr ""
|
195 |
|
196 |
-
#: admin.inc.php:
|
197 |
msgid "Title of daily popular posts: "
|
198 |
msgstr ""
|
199 |
|
200 |
-
#: admin.inc.php:
|
201 |
msgid "When there are no posts, what should be shown?"
|
202 |
msgstr ""
|
203 |
|
204 |
-
#: admin.inc.php:
|
205 |
msgid "Blank Output"
|
206 |
msgstr ""
|
207 |
|
208 |
-
#: admin.inc.php:
|
209 |
msgid "Display:"
|
210 |
msgstr ""
|
211 |
|
212 |
-
#: admin.inc.php:
|
213 |
msgid "Show post excerpt in list?"
|
214 |
msgstr ""
|
215 |
|
216 |
-
#: admin.inc.php:
|
217 |
msgid "Length of excerpt (in words): "
|
218 |
msgstr ""
|
219 |
|
220 |
-
#: admin.inc.php:
|
|
|
|
|
|
|
|
|
221 |
msgid "Show post date in list?"
|
222 |
msgstr ""
|
223 |
|
224 |
-
#: admin.inc.php:
|
225 |
msgid "Limit post title length (in characters)"
|
226 |
msgstr ""
|
227 |
|
228 |
-
#: admin.inc.php:
|
229 |
msgid "Display number of page views in popular lists?"
|
230 |
msgstr ""
|
231 |
|
232 |
-
#: admin.inc.php:
|
233 |
msgid "Open links in new window"
|
234 |
msgstr ""
|
235 |
|
236 |
-
#: admin.inc.php:
|
237 |
msgid "Add nofollow attribute to links in the list"
|
238 |
msgstr ""
|
239 |
|
240 |
-
#: admin.inc.php:
|
241 |
msgid "Exclude display of related posts on these posts / pages"
|
242 |
msgstr ""
|
243 |
|
244 |
-
#: admin.inc.php:
|
245 |
msgid "Enter comma separated list of IDs. e.g. 188,320,500"
|
246 |
msgstr ""
|
247 |
|
248 |
-
#: admin.inc.php:
|
249 |
msgid "Customize the output:"
|
250 |
msgstr ""
|
251 |
|
252 |
-
#: admin.inc.php:
|
253 |
msgid "HTML to display before the list of posts: "
|
254 |
msgstr ""
|
255 |
|
256 |
-
#: admin.inc.php:
|
257 |
msgid "HTML to display before each list item: "
|
258 |
msgstr ""
|
259 |
|
260 |
-
#: admin.inc.php:
|
261 |
msgid "HTML to display after each list item: "
|
262 |
msgstr ""
|
263 |
|
264 |
-
#: admin.inc.php:
|
265 |
msgid "HTML to display after the list of posts: "
|
266 |
msgstr ""
|
267 |
|
268 |
-
#: admin.inc.php:
|
269 |
msgid "Post thumbnail options:"
|
270 |
msgstr ""
|
271 |
|
272 |
-
#: admin.inc.php:
|
273 |
msgid "Location of post thumbnail:"
|
274 |
msgstr ""
|
275 |
|
276 |
-
#: admin.inc.php:
|
277 |
msgid "Display thumbnails inline with posts, before title"
|
278 |
msgstr ""
|
279 |
|
280 |
-
#: admin.inc.php:
|
281 |
msgid "Display thumbnails inline with posts, after title"
|
282 |
msgstr ""
|
283 |
|
284 |
-
#: admin.inc.php:
|
285 |
msgid "Display only thumbnails, no text"
|
286 |
msgstr ""
|
287 |
|
288 |
-
#: admin.inc.php:
|
289 |
msgid "Do not display thumbnails, only text."
|
290 |
msgstr ""
|
291 |
|
292 |
-
#: admin.inc.php:
|
293 |
msgid "Width of the thumbnail: "
|
294 |
msgstr ""
|
295 |
|
296 |
-
#: admin.inc.php:
|
297 |
msgid "Height of the thumbnail: "
|
298 |
msgstr ""
|
299 |
|
300 |
-
#: admin.inc.php:
|
301 |
msgid "Style attributes / Width and Height HTML attributes:"
|
302 |
msgstr ""
|
303 |
|
304 |
-
#: admin.inc.php:
|
305 |
msgid ""
|
306 |
"Style attributes are used for width and height. <code>style=\"max-width:"
|
307 |
msgstr ""
|
308 |
|
309 |
-
#: admin.inc.php:
|
310 |
msgid ""
|
311 |
"HTML width and height attributes are used for width and height. <code>width="
|
312 |
"\""
|
313 |
msgstr ""
|
314 |
|
315 |
-
#: admin.inc.php:
|
316 |
msgid "Use timthumb to generate thumbnails? "
|
317 |
msgstr ""
|
318 |
|
319 |
-
#: admin.inc.php:
|
320 |
msgid ""
|
321 |
"If checked, <a href=\"http://www.binarymoon.co.uk/projects/timthumb/"
|
322 |
"\">timthumb</a> will be used to generate thumbnails"
|
323 |
msgstr ""
|
324 |
|
325 |
-
#: admin.inc.php:
|
326 |
msgid "Post thumbnail meta field name: "
|
327 |
msgstr ""
|
328 |
|
329 |
-
#: admin.inc.php:
|
330 |
msgid ""
|
331 |
"The value of this field should contain the image source and is set in the "
|
332 |
"<em>Add New Post</em> screen"
|
333 |
msgstr ""
|
334 |
|
335 |
-
#: admin.inc.php:
|
336 |
msgid ""
|
337 |
"If the postmeta is not set, then should the plugin extract the first image "
|
338 |
"from the post?"
|
339 |
msgstr ""
|
340 |
|
341 |
-
#: admin.inc.php:
|
342 |
msgid ""
|
343 |
"This could slow down the loading of your page if the first image in the "
|
344 |
"related posts is large in file-size"
|
345 |
msgstr ""
|
346 |
|
347 |
-
#: admin.inc.php:
|
348 |
msgid "Use default thumbnail? "
|
349 |
msgstr ""
|
350 |
|
351 |
-
#: admin.inc.php:
|
352 |
msgid ""
|
353 |
"If checked, when no thumbnail is found, show a default one from the URL "
|
354 |
"below. If not checked and no thumbnail is found, no image will be shown."
|
355 |
msgstr ""
|
356 |
|
357 |
-
#: admin.inc.php:
|
358 |
msgid "Default thumbnail: "
|
359 |
msgstr ""
|
360 |
|
361 |
-
#: admin.inc.php:
|
362 |
msgid ""
|
363 |
"The plugin will first check if the post contains a thumbnail. If it doesn't "
|
364 |
"then it will check the meta field. If this is not available, then it will "
|
365 |
"show the default image as specified above"
|
366 |
msgstr ""
|
367 |
|
368 |
-
#: admin.inc.php:
|
369 |
msgid "Custom Styles"
|
370 |
msgstr ""
|
371 |
|
372 |
-
#: admin.inc.php:
|
373 |
msgid "Custom CSS to add to header:"
|
374 |
msgstr ""
|
375 |
|
376 |
-
#: admin.inc.php:
|
377 |
msgid ""
|
378 |
"Do not include <code>style</code> tags. Check out the <a href=\"http://"
|
379 |
"wordpress.org/extend/plugins/top-10/faq/\" target=\"_blank\">FAQ</a> for "
|
380 |
"available CSS classes to style."
|
381 |
msgstr ""
|
382 |
|
383 |
-
#: admin.inc.php:
|
384 |
msgid "Maintenance"
|
385 |
msgstr ""
|
386 |
|
387 |
-
#: admin.inc.php:
|
388 |
msgid ""
|
389 |
"Over time the Daily Top 10 database grows in size, which reduces the "
|
390 |
"performance of the plugin. Cleaning the database at regular intervals could "
|
391 |
"improve performance, especially on high traffic blogs."
|
392 |
msgstr ""
|
393 |
|
394 |
-
#: admin.inc.php:
|
395 |
msgid ""
|
396 |
"Note: When scheduled maintenance is enabled, WordPress will run the cron job "
|
397 |
"everytime the job is rescheduled (i.e. you change the settings below). This "
|
398 |
"causes the daily posts table to reset."
|
399 |
msgstr ""
|
400 |
|
401 |
-
#: admin.inc.php:
|
402 |
msgid "Enable scheduled maintenance of daily tables:"
|
403 |
msgstr ""
|
404 |
|
405 |
-
#: admin.inc.php:
|
406 |
msgid "Time to run maintenance"
|
407 |
msgstr ""
|
408 |
|
409 |
-
#: admin.inc.php:
|
410 |
msgid "How often should the maintenance be run:"
|
411 |
msgstr ""
|
412 |
|
413 |
-
#: admin.inc.php:
|
414 |
msgid "Daily"
|
415 |
msgstr ""
|
416 |
|
417 |
-
#: admin.inc.php:
|
418 |
msgid "Weekly"
|
419 |
msgstr ""
|
420 |
|
421 |
-
#: admin.inc.php:
|
422 |
msgid "Fortnightly"
|
423 |
msgstr ""
|
424 |
|
425 |
-
#: admin.inc.php:
|
426 |
msgid "Monthly"
|
427 |
msgstr ""
|
428 |
|
429 |
-
#: admin.inc.php:
|
430 |
msgid "The cron job has been scheduled. Maintenance will run "
|
431 |
msgstr ""
|
432 |
|
433 |
-
#: admin.inc.php:
|
434 |
msgid "The cron job is missing. Please resave this page to add the job"
|
435 |
msgstr ""
|
436 |
|
437 |
-
#: admin.inc.php:
|
438 |
msgid "Maintenance is turned off"
|
439 |
msgstr ""
|
440 |
|
441 |
-
#: admin.inc.php:
|
442 |
msgid "Save Options"
|
443 |
msgstr ""
|
444 |
|
445 |
-
#: admin.inc.php:
|
446 |
msgid "Default Options"
|
447 |
msgstr ""
|
448 |
|
449 |
-
#: admin.inc.php:
|
450 |
msgid "Do you want to set options to Default?"
|
451 |
msgstr ""
|
452 |
|
453 |
-
#: admin.inc.php:
|
454 |
msgid "Reset count"
|
455 |
msgstr ""
|
456 |
|
457 |
-
#: admin.inc.php:
|
458 |
msgid ""
|
459 |
"This cannot be reversed. Make sure that your database has been backed up "
|
460 |
"before proceeding"
|
461 |
msgstr ""
|
462 |
|
463 |
-
#: admin.inc.php:
|
464 |
msgid "Reset Popular Posts"
|
465 |
msgstr ""
|
466 |
|
467 |
-
#: admin.inc.php:
|
468 |
msgid "Are you sure you want to reset the popular posts?"
|
469 |
msgstr ""
|
470 |
|
471 |
-
#: admin.inc.php:
|
472 |
msgid "Reset Daily Popular Posts"
|
473 |
msgstr ""
|
474 |
|
475 |
-
#: admin.inc.php:
|
476 |
msgid "Are you sure you want to reset the daily popular posts?"
|
477 |
msgstr ""
|
478 |
|
479 |
-
#: admin.inc.php:
|
480 |
msgid "Clear duplicates"
|
481 |
msgstr ""
|
482 |
|
483 |
-
#: admin.inc.php:
|
484 |
msgid "This will delete the duplicate entries in the tables. Proceed?"
|
485 |
msgstr ""
|
486 |
|
487 |
-
#: admin.inc.php:
|
488 |
msgid "Popular Posts"
|
489 |
msgstr ""
|
490 |
|
491 |
-
#: admin.inc.php:
|
492 |
msgid "Daily Popular Posts"
|
493 |
msgstr ""
|
494 |
|
495 |
-
#: admin.inc.php:
|
496 |
msgid "Support the development"
|
497 |
msgstr ""
|
498 |
|
499 |
-
#: admin.inc.php:
|
500 |
msgid "Enter amount in USD: "
|
501 |
msgstr ""
|
502 |
|
503 |
-
#: admin.inc.php:
|
504 |
msgid "Send your donation to the author of"
|
505 |
msgstr ""
|
506 |
|
507 |
-
#: admin.inc.php:
|
508 |
msgid "Follow us"
|
509 |
msgstr ""
|
510 |
|
511 |
-
#: admin.inc.php:
|
512 |
msgid "Quick Links"
|
513 |
msgstr ""
|
514 |
|
515 |
-
#: admin.inc.php:
|
516 |
msgid "Top 10 plugin page"
|
517 |
msgstr ""
|
518 |
|
519 |
-
#: admin.inc.php:
|
520 |
msgid "Other plugins"
|
521 |
msgstr ""
|
522 |
|
523 |
-
#: admin.inc.php:
|
524 |
msgid "Ajay's blog"
|
525 |
msgstr ""
|
526 |
|
527 |
-
#: admin.inc.php:
|
528 |
msgid "Support"
|
529 |
msgstr ""
|
530 |
|
531 |
-
#: admin.inc.php:
|
532 |
msgid "Recent developments"
|
533 |
msgstr ""
|
534 |
|
535 |
-
#: admin.inc.php:
|
536 |
msgid "Top 10 Settings"
|
537 |
msgstr ""
|
538 |
|
539 |
-
#: admin.inc.php:
|
540 |
msgid "Top 10"
|
541 |
msgstr ""
|
542 |
|
543 |
-
#: admin.inc.php:
|
544 |
msgid "Overall Popular Posts"
|
545 |
msgstr ""
|
546 |
|
547 |
-
#: admin.inc.php:
|
548 |
msgid "Results"
|
549 |
msgstr ""
|
550 |
|
551 |
-
#: admin.inc.php:
|
552 |
msgid "of"
|
553 |
msgstr ""
|
554 |
|
555 |
-
#: admin.inc.php:
|
556 |
msgid "Page"
|
557 |
msgstr ""
|
558 |
|
559 |
-
#: admin.inc.php:
|
560 |
msgid "View Daily Popular Posts"
|
561 |
msgstr ""
|
562 |
|
563 |
-
#: admin.inc.php:
|
564 |
msgid "Results per-page:"
|
565 |
msgstr ""
|
566 |
|
567 |
-
#: admin.inc.php:
|
568 |
msgid "View Overall Popular Posts"
|
569 |
msgstr ""
|
570 |
|
571 |
-
#: admin.inc.php:
|
572 |
msgid "Previous"
|
573 |
msgstr ""
|
574 |
|
575 |
-
#: admin.inc.php:
|
576 |
msgid "Next"
|
577 |
msgstr ""
|
578 |
|
579 |
-
#: admin.inc.php:
|
580 |
msgid "Daily Popular"
|
581 |
msgstr ""
|
582 |
|
583 |
-
#: admin.inc.php:
|
584 |
-
msgid "Total
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
585 |
msgstr ""
|
586 |
|
587 |
-
#: top-10.php:
|
588 |
msgid "Display the posts popular this week"
|
589 |
msgstr ""
|
590 |
|
591 |
-
#: top-10.php:
|
592 |
msgid "Title"
|
593 |
msgstr ""
|
594 |
|
595 |
-
#: top-10.php:
|
596 |
msgid "No. of posts"
|
597 |
msgstr ""
|
598 |
|
599 |
-
#: top-10.php:
|
600 |
msgid "Overall"
|
601 |
msgstr ""
|
602 |
|
603 |
-
#: top-10.php:
|
604 |
msgid "Custom time period (Enter below)"
|
605 |
msgstr ""
|
606 |
|
607 |
-
#: top-10.php:
|
608 |
msgid "Range in number of days (applies only to custom option above)"
|
609 |
msgstr ""
|
610 |
|
611 |
-
#: top-10.php:
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
612 |
msgid "Thumbnail options"
|
613 |
msgstr ""
|
614 |
|
615 |
-
#: top-10.php:
|
616 |
msgid "Thumbnails inline, before title"
|
617 |
msgstr ""
|
618 |
|
619 |
-
#: top-10.php:
|
620 |
msgid "Thumbnails inline, after title"
|
621 |
msgstr ""
|
622 |
|
623 |
-
#: top-10.php:
|
624 |
msgid "Only thumbnails, no text"
|
625 |
msgstr ""
|
626 |
|
627 |
-
#: top-10.php:
|
628 |
msgid "No thumbnails, only text."
|
629 |
msgstr ""
|
630 |
|
631 |
-
#: top-10.php:
|
632 |
-
msgid "
|
|
|
|
|
|
|
|
|
633 |
msgstr ""
|
634 |
|
635 |
-
#: top-10.php:
|
636 |
msgid "<h3>Popular Posts</h3>"
|
637 |
msgstr ""
|
638 |
|
639 |
-
#: top-10.php:
|
640 |
msgid "<h3>Daily Popular</h3>"
|
641 |
msgstr ""
|
642 |
|
643 |
-
#: top-10.php:
|
644 |
msgid "No top posts yet"
|
645 |
msgstr ""
|
646 |
|
647 |
-
#: top-10.php:
|
648 |
msgid "Once Weekly"
|
649 |
msgstr ""
|
650 |
|
651 |
-
#: top-10.php:
|
652 |
msgid "Once Fortnightly"
|
653 |
msgstr ""
|
654 |
|
655 |
-
#: top-10.php:
|
656 |
msgid "Once Monthly"
|
657 |
msgstr ""
|
658 |
|
659 |
-
#: top-10.php:
|
660 |
msgid "Settings"
|
661 |
msgstr ""
|
662 |
|
663 |
-
#: top-10.php:
|
664 |
msgid "Donate"
|
665 |
msgstr ""
|
2 |
msgstr ""
|
3 |
"Project-Id-Version: Top 10\n"
|
4 |
"Report-Msgid-Bugs-To: \n"
|
5 |
+
"POT-Creation-Date: 2013-09-09 21:04-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"
|
15 |
"X-Generator: Poedit 1.5.7\n"
|
16 |
"X-Poedit-SearchPath-0: .\n"
|
17 |
|
18 |
+
#: admin.inc.php:103
|
19 |
msgid "Scheduled maintenance enabled / modified"
|
20 |
msgstr ""
|
21 |
|
22 |
+
#: admin.inc.php:107
|
23 |
msgid "Scheduled maintenance disabled"
|
24 |
msgstr ""
|
25 |
|
26 |
+
#: admin.inc.php:124
|
27 |
msgid "Options saved successfully."
|
28 |
msgstr ""
|
29 |
|
30 |
+
#: admin.inc.php:133
|
31 |
msgid "Options set to Default."
|
32 |
msgstr ""
|
33 |
|
34 |
+
#: admin.inc.php:139
|
35 |
msgid "Top 10 popular posts reset"
|
36 |
msgstr ""
|
37 |
|
38 |
+
#: admin.inc.php:145
|
39 |
msgid "Top 10 daily popular posts reset"
|
40 |
msgstr ""
|
41 |
|
42 |
+
#: admin.inc.php:152
|
43 |
msgid "Duplicate rows cleaned from tables"
|
44 |
msgstr ""
|
45 |
|
46 |
+
#: admin.inc.php:173
|
47 |
msgid "General options"
|
48 |
msgstr ""
|
49 |
|
50 |
+
#: admin.inc.php:177
|
51 |
msgid "Enable Overall stats"
|
52 |
msgstr ""
|
53 |
|
54 |
+
#: admin.inc.php:182
|
55 |
msgid "Enable Daily stats"
|
56 |
msgstr ""
|
57 |
|
58 |
+
#: admin.inc.php:187
|
59 |
msgid "W3 Total Cache fix:"
|
60 |
msgstr ""
|
61 |
|
62 |
+
#: admin.inc.php:189
|
63 |
msgid ""
|
64 |
"This will try to prevent W3 Total Cache from caching the addcount script of "
|
65 |
"the plugin. Try toggling this option in case you find that our posts are not "
|
66 |
"tracked."
|
67 |
msgstr ""
|
68 |
|
69 |
+
#: admin.inc.php:193
|
70 |
msgid "Number of popular posts to display: "
|
71 |
msgstr ""
|
72 |
|
73 |
+
#: admin.inc.php:197
|
74 |
msgid "Daily Popular should contain views of how many days? "
|
75 |
msgstr ""
|
76 |
|
77 |
+
#: admin.inc.php:200
|
78 |
msgid "Post types to include in results (including custom post types)"
|
79 |
msgstr ""
|
80 |
|
81 |
+
#: admin.inc.php:211
|
82 |
msgid "List of post or page IDs to exclude from the results: "
|
83 |
msgstr ""
|
84 |
|
85 |
+
#: admin.inc.php:215
|
86 |
msgid "Exclude Categories: "
|
87 |
msgstr ""
|
88 |
|
89 |
+
#: admin.inc.php:230
|
90 |
msgid ""
|
91 |
"Comma separated list of category slugs. The field above has an autocomplete "
|
92 |
"so simply start typing in the starting letters and it will prompt you with "
|
93 |
"options"
|
94 |
msgstr ""
|
95 |
|
96 |
+
#: admin.inc.php:235
|
97 |
msgid "Display number of views on:"
|
98 |
msgstr ""
|
99 |
|
100 |
+
#: admin.inc.php:237
|
101 |
msgid "Posts"
|
102 |
msgstr ""
|
103 |
|
104 |
+
#: admin.inc.php:238
|
105 |
msgid "Pages"
|
106 |
msgstr ""
|
107 |
|
108 |
+
#: admin.inc.php:239
|
109 |
msgid "Home page"
|
110 |
msgstr ""
|
111 |
|
112 |
+
#: admin.inc.php:240
|
113 |
msgid "Feeds"
|
114 |
msgstr ""
|
115 |
|
116 |
+
#: admin.inc.php:241
|
117 |
msgid "Category archives"
|
118 |
msgstr ""
|
119 |
|
120 |
+
#: admin.inc.php:242
|
121 |
msgid "Tag archives"
|
122 |
msgstr ""
|
123 |
|
124 |
+
#: admin.inc.php:243
|
125 |
msgid "Other archives"
|
126 |
msgstr ""
|
127 |
|
128 |
+
#: admin.inc.php:244
|
129 |
msgid ""
|
130 |
"If you choose to disable this, please add <code><?php if(function_exists"
|
131 |
"('echo_ald_tptn')) echo_ald_tptn(); ?></code> to your template file where "
|
132 |
"you want it displayed"
|
133 |
msgstr ""
|
134 |
|
135 |
+
#: admin.inc.php:247
|
136 |
msgid "Always display latest post count"
|
137 |
msgstr ""
|
138 |
|
139 |
+
#: admin.inc.php:249
|
140 |
msgid ""
|
141 |
"This option uses JavaScript and will increase your page load time. Turn this "
|
142 |
"off if you are not using caching plugins or are OK with displaying older "
|
143 |
+
"cached counts. When you enable this option, the daily widget will not use "
|
144 |
+
"the options set there, but options will need to be set on this screen."
|
145 |
msgstr ""
|
146 |
|
147 |
+
#: admin.inc.php:252
|
148 |
msgid "Always display latest post count in the daily lists"
|
149 |
msgstr ""
|
150 |
|
151 |
+
#: admin.inc.php:254
|
152 |
msgid "This option uses JavaScript and will increase your page load time"
|
153 |
msgstr ""
|
154 |
|
155 |
+
#: admin.inc.php:257
|
156 |
msgid "Track visits of authors on their own posts?"
|
157 |
msgstr ""
|
158 |
|
159 |
+
#: admin.inc.php:260
|
160 |
msgid "Track visits of admins?"
|
161 |
msgstr ""
|
162 |
|
163 |
+
#: admin.inc.php:263
|
164 |
msgid "Display page views on Posts > All Posts in Admin"
|
165 |
msgstr ""
|
166 |
|
167 |
+
#: admin.inc.php:266
|
168 |
msgid "Link to Top 10 plugin page"
|
169 |
msgstr ""
|
170 |
|
171 |
+
#: admin.inc.php:268
|
172 |
msgid ""
|
173 |
"A link to the plugin is added as an extra list item to the list of popular "
|
174 |
"posts"
|
175 |
msgstr ""
|
176 |
|
177 |
+
#: admin.inc.php:275
|
178 |
msgid "Output Options"
|
179 |
msgstr ""
|
180 |
|
181 |
+
#: admin.inc.php:278
|
182 |
msgid "Format to display the count in: "
|
183 |
msgstr ""
|
184 |
|
185 |
+
#: admin.inc.php:280
|
186 |
msgid ""
|
187 |
"Use <code>%totalcount%</code> to display the total count, <code>%dailycount"
|
188 |
"%</code> to display the daily count and <code>%overallcount%</code> to "
|
190 |
"options displays <code>(Visited 123 times, 23 visits today)</code>"
|
191 |
msgstr ""
|
192 |
|
193 |
+
#: admin.inc.php:283
|
194 |
msgid "Title of popular posts: "
|
195 |
msgstr ""
|
196 |
|
197 |
+
#: admin.inc.php:286
|
198 |
msgid "Title of daily popular posts: "
|
199 |
msgstr ""
|
200 |
|
201 |
+
#: admin.inc.php:289
|
202 |
msgid "When there are no posts, what should be shown?"
|
203 |
msgstr ""
|
204 |
|
205 |
+
#: admin.inc.php:293
|
206 |
msgid "Blank Output"
|
207 |
msgstr ""
|
208 |
|
209 |
+
#: admin.inc.php:297
|
210 |
msgid "Display:"
|
211 |
msgstr ""
|
212 |
|
213 |
+
#: admin.inc.php:301
|
214 |
msgid "Show post excerpt in list?"
|
215 |
msgstr ""
|
216 |
|
217 |
+
#: admin.inc.php:304
|
218 |
msgid "Length of excerpt (in words): "
|
219 |
msgstr ""
|
220 |
|
221 |
+
#: admin.inc.php:307
|
222 |
+
msgid "Show post author in list?"
|
223 |
+
msgstr ""
|
224 |
+
|
225 |
+
#: admin.inc.php:310
|
226 |
msgid "Show post date in list?"
|
227 |
msgstr ""
|
228 |
|
229 |
+
#: admin.inc.php:313
|
230 |
msgid "Limit post title length (in characters)"
|
231 |
msgstr ""
|
232 |
|
233 |
+
#: admin.inc.php:316
|
234 |
msgid "Display number of page views in popular lists?"
|
235 |
msgstr ""
|
236 |
|
237 |
+
#: admin.inc.php:319
|
238 |
msgid "Open links in new window"
|
239 |
msgstr ""
|
240 |
|
241 |
+
#: admin.inc.php:322
|
242 |
msgid "Add nofollow attribute to links in the list"
|
243 |
msgstr ""
|
244 |
|
245 |
+
#: admin.inc.php:325
|
246 |
msgid "Exclude display of related posts on these posts / pages"
|
247 |
msgstr ""
|
248 |
|
249 |
+
#: admin.inc.php:328
|
250 |
msgid "Enter comma separated list of IDs. e.g. 188,320,500"
|
251 |
msgstr ""
|
252 |
|
253 |
+
#: admin.inc.php:331
|
254 |
msgid "Customize the output:"
|
255 |
msgstr ""
|
256 |
|
257 |
+
#: admin.inc.php:333
|
258 |
msgid "HTML to display before the list of posts: "
|
259 |
msgstr ""
|
260 |
|
261 |
+
#: admin.inc.php:336
|
262 |
msgid "HTML to display before each list item: "
|
263 |
msgstr ""
|
264 |
|
265 |
+
#: admin.inc.php:339
|
266 |
msgid "HTML to display after each list item: "
|
267 |
msgstr ""
|
268 |
|
269 |
+
#: admin.inc.php:342
|
270 |
msgid "HTML to display after the list of posts: "
|
271 |
msgstr ""
|
272 |
|
273 |
+
#: admin.inc.php:345
|
274 |
msgid "Post thumbnail options:"
|
275 |
msgstr ""
|
276 |
|
277 |
+
#: admin.inc.php:347
|
278 |
msgid "Location of post thumbnail:"
|
279 |
msgstr ""
|
280 |
|
281 |
+
#: admin.inc.php:351
|
282 |
msgid "Display thumbnails inline with posts, before title"
|
283 |
msgstr ""
|
284 |
|
285 |
+
#: admin.inc.php:355
|
286 |
msgid "Display thumbnails inline with posts, after title"
|
287 |
msgstr ""
|
288 |
|
289 |
+
#: admin.inc.php:359
|
290 |
msgid "Display only thumbnails, no text"
|
291 |
msgstr ""
|
292 |
|
293 |
+
#: admin.inc.php:363
|
294 |
msgid "Do not display thumbnails, only text."
|
295 |
msgstr ""
|
296 |
|
297 |
+
#: admin.inc.php:367
|
298 |
msgid "Width of the thumbnail: "
|
299 |
msgstr ""
|
300 |
|
301 |
+
#: admin.inc.php:370
|
302 |
msgid "Height of the thumbnail: "
|
303 |
msgstr ""
|
304 |
|
305 |
+
#: admin.inc.php:373
|
306 |
msgid "Style attributes / Width and Height HTML attributes:"
|
307 |
msgstr ""
|
308 |
|
309 |
+
#: admin.inc.php:377
|
310 |
msgid ""
|
311 |
"Style attributes are used for width and height. <code>style=\"max-width:"
|
312 |
msgstr ""
|
313 |
|
314 |
+
#: admin.inc.php:381
|
315 |
msgid ""
|
316 |
"HTML width and height attributes are used for width and height. <code>width="
|
317 |
"\""
|
318 |
msgstr ""
|
319 |
|
320 |
+
#: admin.inc.php:385
|
321 |
msgid "Use timthumb to generate thumbnails? "
|
322 |
msgstr ""
|
323 |
|
324 |
+
#: admin.inc.php:386
|
325 |
msgid ""
|
326 |
"If checked, <a href=\"http://www.binarymoon.co.uk/projects/timthumb/"
|
327 |
"\">timthumb</a> will be used to generate thumbnails"
|
328 |
msgstr ""
|
329 |
|
330 |
+
#: admin.inc.php:388
|
331 |
msgid "Post thumbnail meta field name: "
|
332 |
msgstr ""
|
333 |
|
334 |
+
#: admin.inc.php:389
|
335 |
msgid ""
|
336 |
"The value of this field should contain the image source and is set in the "
|
337 |
"<em>Add New Post</em> screen"
|
338 |
msgstr ""
|
339 |
|
340 |
+
#: admin.inc.php:391
|
341 |
msgid ""
|
342 |
"If the postmeta is not set, then should the plugin extract the first image "
|
343 |
"from the post?"
|
344 |
msgstr ""
|
345 |
|
346 |
+
#: admin.inc.php:392
|
347 |
msgid ""
|
348 |
"This could slow down the loading of your page if the first image in the "
|
349 |
"related posts is large in file-size"
|
350 |
msgstr ""
|
351 |
|
352 |
+
#: admin.inc.php:394
|
353 |
msgid "Use default thumbnail? "
|
354 |
msgstr ""
|
355 |
|
356 |
+
#: admin.inc.php:395
|
357 |
msgid ""
|
358 |
"If checked, when no thumbnail is found, show a default one from the URL "
|
359 |
"below. If not checked and no thumbnail is found, no image will be shown."
|
360 |
msgstr ""
|
361 |
|
362 |
+
#: admin.inc.php:397
|
363 |
msgid "Default thumbnail: "
|
364 |
msgstr ""
|
365 |
|
366 |
+
#: admin.inc.php:398
|
367 |
msgid ""
|
368 |
"The plugin will first check if the post contains a thumbnail. If it doesn't "
|
369 |
"then it will check the meta field. If this is not available, then it will "
|
370 |
"show the default image as specified above"
|
371 |
msgstr ""
|
372 |
|
373 |
+
#: admin.inc.php:404
|
374 |
msgid "Custom Styles"
|
375 |
msgstr ""
|
376 |
|
377 |
+
#: admin.inc.php:407
|
378 |
msgid "Custom CSS to add to header:"
|
379 |
msgstr ""
|
380 |
|
381 |
+
#: admin.inc.php:410
|
382 |
msgid ""
|
383 |
"Do not include <code>style</code> tags. Check out the <a href=\"http://"
|
384 |
"wordpress.org/extend/plugins/top-10/faq/\" target=\"_blank\">FAQ</a> for "
|
385 |
"available CSS classes to style."
|
386 |
msgstr ""
|
387 |
|
388 |
+
#: admin.inc.php:417
|
389 |
msgid "Maintenance"
|
390 |
msgstr ""
|
391 |
|
392 |
+
#: admin.inc.php:421
|
393 |
msgid ""
|
394 |
"Over time the Daily Top 10 database grows in size, which reduces the "
|
395 |
"performance of the plugin. Cleaning the database at regular intervals could "
|
396 |
"improve performance, especially on high traffic blogs."
|
397 |
msgstr ""
|
398 |
|
399 |
+
#: admin.inc.php:422
|
400 |
msgid ""
|
401 |
"Note: When scheduled maintenance is enabled, WordPress will run the cron job "
|
402 |
"everytime the job is rescheduled (i.e. you change the settings below). This "
|
403 |
"causes the daily posts table to reset."
|
404 |
msgstr ""
|
405 |
|
406 |
+
#: admin.inc.php:425
|
407 |
msgid "Enable scheduled maintenance of daily tables:"
|
408 |
msgstr ""
|
409 |
|
410 |
+
#: admin.inc.php:429
|
411 |
msgid "Time to run maintenance"
|
412 |
msgstr ""
|
413 |
|
414 |
+
#: admin.inc.php:432
|
415 |
msgid "How often should the maintenance be run:"
|
416 |
msgstr ""
|
417 |
|
418 |
+
#: admin.inc.php:436
|
419 |
msgid "Daily"
|
420 |
msgstr ""
|
421 |
|
422 |
+
#: admin.inc.php:440
|
423 |
msgid "Weekly"
|
424 |
msgstr ""
|
425 |
|
426 |
+
#: admin.inc.php:444
|
427 |
msgid "Fortnightly"
|
428 |
msgstr ""
|
429 |
|
430 |
+
#: admin.inc.php:448
|
431 |
msgid "Monthly"
|
432 |
msgstr ""
|
433 |
|
434 |
+
#: admin.inc.php:457
|
435 |
msgid "The cron job has been scheduled. Maintenance will run "
|
436 |
msgstr ""
|
437 |
|
438 |
+
#: admin.inc.php:462
|
439 |
msgid "The cron job is missing. Please resave this page to add the job"
|
440 |
msgstr ""
|
441 |
|
442 |
+
#: admin.inc.php:467
|
443 |
msgid "Maintenance is turned off"
|
444 |
msgstr ""
|
445 |
|
446 |
+
#: admin.inc.php:475
|
447 |
msgid "Save Options"
|
448 |
msgstr ""
|
449 |
|
450 |
+
#: admin.inc.php:476
|
451 |
msgid "Default Options"
|
452 |
msgstr ""
|
453 |
|
454 |
+
#: admin.inc.php:476
|
455 |
msgid "Do you want to set options to Default?"
|
456 |
msgstr ""
|
457 |
|
458 |
+
#: admin.inc.php:480
|
459 |
msgid "Reset count"
|
460 |
msgstr ""
|
461 |
|
462 |
+
#: admin.inc.php:483
|
463 |
msgid ""
|
464 |
"This cannot be reversed. Make sure that your database has been backed up "
|
465 |
"before proceeding"
|
466 |
msgstr ""
|
467 |
|
468 |
+
#: admin.inc.php:486
|
469 |
msgid "Reset Popular Posts"
|
470 |
msgstr ""
|
471 |
|
472 |
+
#: admin.inc.php:486
|
473 |
msgid "Are you sure you want to reset the popular posts?"
|
474 |
msgstr ""
|
475 |
|
476 |
+
#: admin.inc.php:487
|
477 |
msgid "Reset Daily Popular Posts"
|
478 |
msgstr ""
|
479 |
|
480 |
+
#: admin.inc.php:487
|
481 |
msgid "Are you sure you want to reset the daily popular posts?"
|
482 |
msgstr ""
|
483 |
|
484 |
+
#: admin.inc.php:488
|
485 |
msgid "Clear duplicates"
|
486 |
msgstr ""
|
487 |
|
488 |
+
#: admin.inc.php:488
|
489 |
msgid "This will delete the duplicate entries in the tables. Proceed?"
|
490 |
msgstr ""
|
491 |
|
492 |
+
#: admin.inc.php:531 admin.inc.php:906 top-10.php:483
|
493 |
msgid "Popular Posts"
|
494 |
msgstr ""
|
495 |
|
496 |
+
#: admin.inc.php:531 admin.inc.php:618
|
497 |
msgid "Daily Popular Posts"
|
498 |
msgstr ""
|
499 |
|
500 |
+
#: admin.inc.php:559
|
501 |
msgid "Support the development"
|
502 |
msgstr ""
|
503 |
|
504 |
+
#: admin.inc.php:567
|
505 |
msgid "Enter amount in USD: "
|
506 |
msgstr ""
|
507 |
|
508 |
+
#: admin.inc.php:571
|
509 |
msgid "Send your donation to the author of"
|
510 |
msgstr ""
|
511 |
|
512 |
+
#: admin.inc.php:577
|
513 |
msgid "Follow us"
|
514 |
msgstr ""
|
515 |
|
516 |
+
#: admin.inc.php:583
|
517 |
msgid "Quick Links"
|
518 |
msgstr ""
|
519 |
|
520 |
+
#: admin.inc.php:585
|
521 |
msgid "Top 10 plugin page"
|
522 |
msgstr ""
|
523 |
|
524 |
+
#: admin.inc.php:586
|
525 |
msgid "Other plugins"
|
526 |
msgstr ""
|
527 |
|
528 |
+
#: admin.inc.php:587
|
529 |
msgid "Ajay's blog"
|
530 |
msgstr ""
|
531 |
|
532 |
+
#: admin.inc.php:588 top-10.php:1130
|
533 |
msgid "Support"
|
534 |
msgstr ""
|
535 |
|
536 |
+
#: admin.inc.php:592
|
537 |
msgid "Recent developments"
|
538 |
msgstr ""
|
539 |
|
540 |
+
#: admin.inc.php:609 admin.inc.php:612
|
541 |
msgid "Top 10 Settings"
|
542 |
msgstr ""
|
543 |
|
544 |
+
#: admin.inc.php:609
|
545 |
msgid "Top 10"
|
546 |
msgstr ""
|
547 |
|
548 |
+
#: admin.inc.php:615
|
549 |
msgid "Overall Popular Posts"
|
550 |
msgstr ""
|
551 |
|
552 |
+
#: admin.inc.php:786
|
553 |
msgid "Results"
|
554 |
msgstr ""
|
555 |
|
556 |
+
#: admin.inc.php:788 admin.inc.php:794
|
557 |
msgid "of"
|
558 |
msgstr ""
|
559 |
|
560 |
+
#: admin.inc.php:792
|
561 |
msgid "Page"
|
562 |
msgstr ""
|
563 |
|
564 |
+
#: admin.inc.php:806
|
565 |
msgid "View Daily Popular Posts"
|
566 |
msgstr ""
|
567 |
|
568 |
+
#: admin.inc.php:809 admin.inc.php:822
|
569 |
msgid "Results per-page:"
|
570 |
msgstr ""
|
571 |
|
572 |
+
#: admin.inc.php:819
|
573 |
msgid "View Overall Popular Posts"
|
574 |
msgstr ""
|
575 |
|
576 |
+
#: admin.inc.php:848
|
577 |
msgid "Previous"
|
578 |
msgstr ""
|
579 |
|
580 |
+
#: admin.inc.php:866
|
581 |
msgid "Next"
|
582 |
msgstr ""
|
583 |
|
584 |
+
#: admin.inc.php:907
|
585 |
msgid "Daily Popular"
|
586 |
msgstr ""
|
587 |
|
588 |
+
#: admin.inc.php:923
|
589 |
+
msgid "Total Views"
|
590 |
+
msgstr ""
|
591 |
+
|
592 |
+
#: admin.inc.php:924
|
593 |
+
msgid "Today's Views"
|
594 |
+
msgstr ""
|
595 |
+
|
596 |
+
#: top-10.php:400
|
597 |
+
msgid " Posted by "
|
598 |
msgstr ""
|
599 |
|
600 |
+
#: top-10.php:482
|
601 |
msgid "Display the posts popular this week"
|
602 |
msgstr ""
|
603 |
|
604 |
+
#: top-10.php:500
|
605 |
msgid "Title"
|
606 |
msgstr ""
|
607 |
|
608 |
+
#: top-10.php:505
|
609 |
msgid "No. of posts"
|
610 |
msgstr ""
|
611 |
|
612 |
+
#: top-10.php:510
|
613 |
msgid "Overall"
|
614 |
msgstr ""
|
615 |
|
616 |
+
#: top-10.php:511
|
617 |
msgid "Custom time period (Enter below)"
|
618 |
msgstr ""
|
619 |
|
620 |
+
#: top-10.php:516
|
621 |
msgid "Range in number of days (applies only to custom option above)"
|
622 |
msgstr ""
|
623 |
|
624 |
+
#: top-10.php:521
|
625 |
+
msgid " Show excerpt?"
|
626 |
+
msgstr ""
|
627 |
+
|
628 |
+
#: top-10.php:526
|
629 |
+
msgid " Show author?"
|
630 |
+
msgstr ""
|
631 |
+
|
632 |
+
#: top-10.php:531
|
633 |
+
msgid " Show date?"
|
634 |
+
msgstr ""
|
635 |
+
|
636 |
+
#: top-10.php:535
|
637 |
msgid "Thumbnail options"
|
638 |
msgstr ""
|
639 |
|
640 |
+
#: top-10.php:537
|
641 |
msgid "Thumbnails inline, before title"
|
642 |
msgstr ""
|
643 |
|
644 |
+
#: top-10.php:538
|
645 |
msgid "Thumbnails inline, after title"
|
646 |
msgstr ""
|
647 |
|
648 |
+
#: top-10.php:539
|
649 |
msgid "Only thumbnails, no text"
|
650 |
msgstr ""
|
651 |
|
652 |
+
#: top-10.php:540
|
653 |
msgid "No thumbnails, only text."
|
654 |
msgstr ""
|
655 |
|
656 |
+
#: top-10.php:545
|
657 |
+
msgid "Thumbnail height"
|
658 |
+
msgstr ""
|
659 |
+
|
660 |
+
#: top-10.php:550
|
661 |
+
msgid "Thumbnail width"
|
662 |
msgstr ""
|
663 |
|
664 |
+
#: top-10.php:653
|
665 |
msgid "<h3>Popular Posts</h3>"
|
666 |
msgstr ""
|
667 |
|
668 |
+
#: top-10.php:654
|
669 |
msgid "<h3>Daily Popular</h3>"
|
670 |
msgstr ""
|
671 |
|
672 |
+
#: top-10.php:655
|
673 |
msgid "No top posts yet"
|
674 |
msgstr ""
|
675 |
|
676 |
+
#: top-10.php:1096
|
677 |
msgid "Once Weekly"
|
678 |
msgstr ""
|
679 |
|
680 |
+
#: top-10.php:1097
|
681 |
msgid "Once Fortnightly"
|
682 |
msgstr ""
|
683 |
|
684 |
+
#: top-10.php:1098
|
685 |
msgid "Once Monthly"
|
686 |
msgstr ""
|
687 |
|
688 |
+
#: top-10.php:1118
|
689 |
msgid "Settings"
|
690 |
msgstr ""
|
691 |
|
692 |
+
#: top-10.php:1131
|
693 |
msgid "Donate"
|
694 |
msgstr ""
|
languages/tptn-en_US.pot
CHANGED
@@ -2,7 +2,7 @@ msgid ""
|
|
2 |
msgstr ""
|
3 |
"Project-Id-Version: Top 10\n"
|
4 |
"Report-Msgid-Bugs-To: \n"
|
5 |
-
"POT-Creation-Date: 2013-
|
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"
|
@@ -15,173 +15,174 @@ msgstr ""
|
|
15 |
"X-Generator: Poedit 1.5.7\n"
|
16 |
"X-Poedit-SearchPath-0: .\n"
|
17 |
|
18 |
-
#: admin.inc.php:
|
19 |
msgid "Scheduled maintenance enabled / modified"
|
20 |
msgstr ""
|
21 |
|
22 |
-
#: admin.inc.php:
|
23 |
msgid "Scheduled maintenance disabled"
|
24 |
msgstr ""
|
25 |
|
26 |
-
#: admin.inc.php:
|
27 |
msgid "Options saved successfully."
|
28 |
msgstr ""
|
29 |
|
30 |
-
#: admin.inc.php:
|
31 |
msgid "Options set to Default."
|
32 |
msgstr ""
|
33 |
|
34 |
-
#: admin.inc.php:
|
35 |
msgid "Top 10 popular posts reset"
|
36 |
msgstr ""
|
37 |
|
38 |
-
#: admin.inc.php:
|
39 |
msgid "Top 10 daily popular posts reset"
|
40 |
msgstr ""
|
41 |
|
42 |
-
#: admin.inc.php:
|
43 |
msgid "Duplicate rows cleaned from tables"
|
44 |
msgstr ""
|
45 |
|
46 |
-
#: admin.inc.php:
|
47 |
msgid "General options"
|
48 |
msgstr ""
|
49 |
|
50 |
-
#: admin.inc.php:
|
51 |
msgid "Enable Overall stats"
|
52 |
msgstr ""
|
53 |
|
54 |
-
#: admin.inc.php:
|
55 |
msgid "Enable Daily stats"
|
56 |
msgstr ""
|
57 |
|
58 |
-
#: admin.inc.php:
|
59 |
msgid "W3 Total Cache fix:"
|
60 |
msgstr ""
|
61 |
|
62 |
-
#: admin.inc.php:
|
63 |
msgid ""
|
64 |
"This will try to prevent W3 Total Cache from caching the addcount script of "
|
65 |
"the plugin. Try toggling this option in case you find that our posts are not "
|
66 |
"tracked."
|
67 |
msgstr ""
|
68 |
|
69 |
-
#: admin.inc.php:
|
70 |
msgid "Number of popular posts to display: "
|
71 |
msgstr ""
|
72 |
|
73 |
-
#: admin.inc.php:
|
74 |
msgid "Daily Popular should contain views of how many days? "
|
75 |
msgstr ""
|
76 |
|
77 |
-
#: admin.inc.php:
|
78 |
msgid "Post types to include in results (including custom post types)"
|
79 |
msgstr ""
|
80 |
|
81 |
-
#: admin.inc.php:
|
82 |
msgid "List of post or page IDs to exclude from the results: "
|
83 |
msgstr ""
|
84 |
|
85 |
-
#: admin.inc.php:
|
86 |
msgid "Exclude Categories: "
|
87 |
msgstr ""
|
88 |
|
89 |
-
#: admin.inc.php:
|
90 |
msgid ""
|
91 |
"Comma separated list of category slugs. The field above has an autocomplete "
|
92 |
"so simply start typing in the starting letters and it will prompt you with "
|
93 |
"options"
|
94 |
msgstr ""
|
95 |
|
96 |
-
#: admin.inc.php:
|
97 |
msgid "Display number of views on:"
|
98 |
msgstr ""
|
99 |
|
100 |
-
#: admin.inc.php:
|
101 |
msgid "Posts"
|
102 |
msgstr ""
|
103 |
|
104 |
-
#: admin.inc.php:
|
105 |
msgid "Pages"
|
106 |
msgstr ""
|
107 |
|
108 |
-
#: admin.inc.php:
|
109 |
msgid "Home page"
|
110 |
msgstr ""
|
111 |
|
112 |
-
#: admin.inc.php:
|
113 |
msgid "Feeds"
|
114 |
msgstr ""
|
115 |
|
116 |
-
#: admin.inc.php:
|
117 |
msgid "Category archives"
|
118 |
msgstr ""
|
119 |
|
120 |
-
#: admin.inc.php:
|
121 |
msgid "Tag archives"
|
122 |
msgstr ""
|
123 |
|
124 |
-
#: admin.inc.php:
|
125 |
msgid "Other archives"
|
126 |
msgstr ""
|
127 |
|
128 |
-
#: admin.inc.php:
|
129 |
msgid ""
|
130 |
"If you choose to disable this, please add <code><?php if(function_exists"
|
131 |
"('echo_ald_tptn')) echo_ald_tptn(); ?></code> to your template file where "
|
132 |
"you want it displayed"
|
133 |
msgstr ""
|
134 |
|
135 |
-
#: admin.inc.php:
|
136 |
msgid "Always display latest post count"
|
137 |
msgstr ""
|
138 |
|
139 |
-
#: admin.inc.php:
|
140 |
msgid ""
|
141 |
"This option uses JavaScript and will increase your page load time. Turn this "
|
142 |
"off if you are not using caching plugins or are OK with displaying older "
|
143 |
-
"cached counts"
|
|
|
144 |
msgstr ""
|
145 |
|
146 |
-
#: admin.inc.php:
|
147 |
msgid "Always display latest post count in the daily lists"
|
148 |
msgstr ""
|
149 |
|
150 |
-
#: admin.inc.php:
|
151 |
msgid "This option uses JavaScript and will increase your page load time"
|
152 |
msgstr ""
|
153 |
|
154 |
-
#: admin.inc.php:
|
155 |
msgid "Track visits of authors on their own posts?"
|
156 |
msgstr ""
|
157 |
|
158 |
-
#: admin.inc.php:
|
159 |
msgid "Track visits of admins?"
|
160 |
msgstr ""
|
161 |
|
162 |
-
#: admin.inc.php:
|
163 |
msgid "Display page views on Posts > All Posts in Admin"
|
164 |
msgstr ""
|
165 |
|
166 |
-
#: admin.inc.php:
|
167 |
msgid "Link to Top 10 plugin page"
|
168 |
msgstr ""
|
169 |
|
170 |
-
#: admin.inc.php:
|
171 |
msgid ""
|
172 |
"A link to the plugin is added as an extra list item to the list of popular "
|
173 |
"posts"
|
174 |
msgstr ""
|
175 |
|
176 |
-
#: admin.inc.php:
|
177 |
msgid "Output Options"
|
178 |
msgstr ""
|
179 |
|
180 |
-
#: admin.inc.php:
|
181 |
msgid "Format to display the count in: "
|
182 |
msgstr ""
|
183 |
|
184 |
-
#: admin.inc.php:
|
185 |
msgid ""
|
186 |
"Use <code>%totalcount%</code> to display the total count, <code>%dailycount"
|
187 |
"%</code> to display the daily count and <code>%overallcount%</code> to "
|
@@ -189,477 +190,505 @@ msgid ""
|
|
189 |
"options displays <code>(Visited 123 times, 23 visits today)</code>"
|
190 |
msgstr ""
|
191 |
|
192 |
-
#: admin.inc.php:
|
193 |
msgid "Title of popular posts: "
|
194 |
msgstr ""
|
195 |
|
196 |
-
#: admin.inc.php:
|
197 |
msgid "Title of daily popular posts: "
|
198 |
msgstr ""
|
199 |
|
200 |
-
#: admin.inc.php:
|
201 |
msgid "When there are no posts, what should be shown?"
|
202 |
msgstr ""
|
203 |
|
204 |
-
#: admin.inc.php:
|
205 |
msgid "Blank Output"
|
206 |
msgstr ""
|
207 |
|
208 |
-
#: admin.inc.php:
|
209 |
msgid "Display:"
|
210 |
msgstr ""
|
211 |
|
212 |
-
#: admin.inc.php:
|
213 |
msgid "Show post excerpt in list?"
|
214 |
msgstr ""
|
215 |
|
216 |
-
#: admin.inc.php:
|
217 |
msgid "Length of excerpt (in words): "
|
218 |
msgstr ""
|
219 |
|
220 |
-
#: admin.inc.php:
|
|
|
|
|
|
|
|
|
221 |
msgid "Show post date in list?"
|
222 |
msgstr ""
|
223 |
|
224 |
-
#: admin.inc.php:
|
225 |
msgid "Limit post title length (in characters)"
|
226 |
msgstr ""
|
227 |
|
228 |
-
#: admin.inc.php:
|
229 |
msgid "Display number of page views in popular lists?"
|
230 |
msgstr ""
|
231 |
|
232 |
-
#: admin.inc.php:
|
233 |
msgid "Open links in new window"
|
234 |
msgstr ""
|
235 |
|
236 |
-
#: admin.inc.php:
|
237 |
msgid "Add nofollow attribute to links in the list"
|
238 |
msgstr ""
|
239 |
|
240 |
-
#: admin.inc.php:
|
241 |
msgid "Exclude display of related posts on these posts / pages"
|
242 |
msgstr ""
|
243 |
|
244 |
-
#: admin.inc.php:
|
245 |
msgid "Enter comma separated list of IDs. e.g. 188,320,500"
|
246 |
msgstr ""
|
247 |
|
248 |
-
#: admin.inc.php:
|
249 |
msgid "Customize the output:"
|
250 |
msgstr ""
|
251 |
|
252 |
-
#: admin.inc.php:
|
253 |
msgid "HTML to display before the list of posts: "
|
254 |
msgstr ""
|
255 |
|
256 |
-
#: admin.inc.php:
|
257 |
msgid "HTML to display before each list item: "
|
258 |
msgstr ""
|
259 |
|
260 |
-
#: admin.inc.php:
|
261 |
msgid "HTML to display after each list item: "
|
262 |
msgstr ""
|
263 |
|
264 |
-
#: admin.inc.php:
|
265 |
msgid "HTML to display after the list of posts: "
|
266 |
msgstr ""
|
267 |
|
268 |
-
#: admin.inc.php:
|
269 |
msgid "Post thumbnail options:"
|
270 |
msgstr ""
|
271 |
|
272 |
-
#: admin.inc.php:
|
273 |
msgid "Location of post thumbnail:"
|
274 |
msgstr ""
|
275 |
|
276 |
-
#: admin.inc.php:
|
277 |
msgid "Display thumbnails inline with posts, before title"
|
278 |
msgstr ""
|
279 |
|
280 |
-
#: admin.inc.php:
|
281 |
msgid "Display thumbnails inline with posts, after title"
|
282 |
msgstr ""
|
283 |
|
284 |
-
#: admin.inc.php:
|
285 |
msgid "Display only thumbnails, no text"
|
286 |
msgstr ""
|
287 |
|
288 |
-
#: admin.inc.php:
|
289 |
msgid "Do not display thumbnails, only text."
|
290 |
msgstr ""
|
291 |
|
292 |
-
#: admin.inc.php:
|
293 |
msgid "Width of the thumbnail: "
|
294 |
msgstr ""
|
295 |
|
296 |
-
#: admin.inc.php:
|
297 |
msgid "Height of the thumbnail: "
|
298 |
msgstr ""
|
299 |
|
300 |
-
#: admin.inc.php:
|
301 |
msgid "Style attributes / Width and Height HTML attributes:"
|
302 |
msgstr ""
|
303 |
|
304 |
-
#: admin.inc.php:
|
305 |
msgid ""
|
306 |
"Style attributes are used for width and height. <code>style=\"max-width:"
|
307 |
msgstr ""
|
308 |
|
309 |
-
#: admin.inc.php:
|
310 |
msgid ""
|
311 |
"HTML width and height attributes are used for width and height. <code>width="
|
312 |
"\""
|
313 |
msgstr ""
|
314 |
|
315 |
-
#: admin.inc.php:
|
316 |
msgid "Use timthumb to generate thumbnails? "
|
317 |
msgstr ""
|
318 |
|
319 |
-
#: admin.inc.php:
|
320 |
msgid ""
|
321 |
"If checked, <a href=\"http://www.binarymoon.co.uk/projects/timthumb/"
|
322 |
"\">timthumb</a> will be used to generate thumbnails"
|
323 |
msgstr ""
|
324 |
|
325 |
-
#: admin.inc.php:
|
326 |
msgid "Post thumbnail meta field name: "
|
327 |
msgstr ""
|
328 |
|
329 |
-
#: admin.inc.php:
|
330 |
msgid ""
|
331 |
"The value of this field should contain the image source and is set in the "
|
332 |
"<em>Add New Post</em> screen"
|
333 |
msgstr ""
|
334 |
|
335 |
-
#: admin.inc.php:
|
336 |
msgid ""
|
337 |
"If the postmeta is not set, then should the plugin extract the first image "
|
338 |
"from the post?"
|
339 |
msgstr ""
|
340 |
|
341 |
-
#: admin.inc.php:
|
342 |
msgid ""
|
343 |
"This could slow down the loading of your page if the first image in the "
|
344 |
"related posts is large in file-size"
|
345 |
msgstr ""
|
346 |
|
347 |
-
#: admin.inc.php:
|
348 |
msgid "Use default thumbnail? "
|
349 |
msgstr ""
|
350 |
|
351 |
-
#: admin.inc.php:
|
352 |
msgid ""
|
353 |
"If checked, when no thumbnail is found, show a default one from the URL "
|
354 |
"below. If not checked and no thumbnail is found, no image will be shown."
|
355 |
msgstr ""
|
356 |
|
357 |
-
#: admin.inc.php:
|
358 |
msgid "Default thumbnail: "
|
359 |
msgstr ""
|
360 |
|
361 |
-
#: admin.inc.php:
|
362 |
msgid ""
|
363 |
"The plugin will first check if the post contains a thumbnail. If it doesn't "
|
364 |
"then it will check the meta field. If this is not available, then it will "
|
365 |
"show the default image as specified above"
|
366 |
msgstr ""
|
367 |
|
368 |
-
#: admin.inc.php:
|
369 |
msgid "Custom Styles"
|
370 |
msgstr ""
|
371 |
|
372 |
-
#: admin.inc.php:
|
373 |
msgid "Custom CSS to add to header:"
|
374 |
msgstr ""
|
375 |
|
376 |
-
#: admin.inc.php:
|
377 |
msgid ""
|
378 |
"Do not include <code>style</code> tags. Check out the <a href=\"http://"
|
379 |
"wordpress.org/extend/plugins/top-10/faq/\" target=\"_blank\">FAQ</a> for "
|
380 |
"available CSS classes to style."
|
381 |
msgstr ""
|
382 |
|
383 |
-
#: admin.inc.php:
|
384 |
msgid "Maintenance"
|
385 |
msgstr ""
|
386 |
|
387 |
-
#: admin.inc.php:
|
388 |
msgid ""
|
389 |
"Over time the Daily Top 10 database grows in size, which reduces the "
|
390 |
"performance of the plugin. Cleaning the database at regular intervals could "
|
391 |
"improve performance, especially on high traffic blogs."
|
392 |
msgstr ""
|
393 |
|
394 |
-
#: admin.inc.php:
|
395 |
msgid ""
|
396 |
"Note: When scheduled maintenance is enabled, WordPress will run the cron job "
|
397 |
"everytime the job is rescheduled (i.e. you change the settings below). This "
|
398 |
"causes the daily posts table to reset."
|
399 |
msgstr ""
|
400 |
|
401 |
-
#: admin.inc.php:
|
402 |
msgid "Enable scheduled maintenance of daily tables:"
|
403 |
msgstr ""
|
404 |
|
405 |
-
#: admin.inc.php:
|
406 |
msgid "Time to run maintenance"
|
407 |
msgstr ""
|
408 |
|
409 |
-
#: admin.inc.php:
|
410 |
msgid "How often should the maintenance be run:"
|
411 |
msgstr ""
|
412 |
|
413 |
-
#: admin.inc.php:
|
414 |
msgid "Daily"
|
415 |
msgstr ""
|
416 |
|
417 |
-
#: admin.inc.php:
|
418 |
msgid "Weekly"
|
419 |
msgstr ""
|
420 |
|
421 |
-
#: admin.inc.php:
|
422 |
msgid "Fortnightly"
|
423 |
msgstr ""
|
424 |
|
425 |
-
#: admin.inc.php:
|
426 |
msgid "Monthly"
|
427 |
msgstr ""
|
428 |
|
429 |
-
#: admin.inc.php:
|
430 |
msgid "The cron job has been scheduled. Maintenance will run "
|
431 |
msgstr ""
|
432 |
|
433 |
-
#: admin.inc.php:
|
434 |
msgid "The cron job is missing. Please resave this page to add the job"
|
435 |
msgstr ""
|
436 |
|
437 |
-
#: admin.inc.php:
|
438 |
msgid "Maintenance is turned off"
|
439 |
msgstr ""
|
440 |
|
441 |
-
#: admin.inc.php:
|
442 |
msgid "Save Options"
|
443 |
msgstr ""
|
444 |
|
445 |
-
#: admin.inc.php:
|
446 |
msgid "Default Options"
|
447 |
msgstr ""
|
448 |
|
449 |
-
#: admin.inc.php:
|
450 |
msgid "Do you want to set options to Default?"
|
451 |
msgstr ""
|
452 |
|
453 |
-
#: admin.inc.php:
|
454 |
msgid "Reset count"
|
455 |
msgstr ""
|
456 |
|
457 |
-
#: admin.inc.php:
|
458 |
msgid ""
|
459 |
"This cannot be reversed. Make sure that your database has been backed up "
|
460 |
"before proceeding"
|
461 |
msgstr ""
|
462 |
|
463 |
-
#: admin.inc.php:
|
464 |
msgid "Reset Popular Posts"
|
465 |
msgstr ""
|
466 |
|
467 |
-
#: admin.inc.php:
|
468 |
msgid "Are you sure you want to reset the popular posts?"
|
469 |
msgstr ""
|
470 |
|
471 |
-
#: admin.inc.php:
|
472 |
msgid "Reset Daily Popular Posts"
|
473 |
msgstr ""
|
474 |
|
475 |
-
#: admin.inc.php:
|
476 |
msgid "Are you sure you want to reset the daily popular posts?"
|
477 |
msgstr ""
|
478 |
|
479 |
-
#: admin.inc.php:
|
480 |
msgid "Clear duplicates"
|
481 |
msgstr ""
|
482 |
|
483 |
-
#: admin.inc.php:
|
484 |
msgid "This will delete the duplicate entries in the tables. Proceed?"
|
485 |
msgstr ""
|
486 |
|
487 |
-
#: admin.inc.php:
|
488 |
msgid "Popular Posts"
|
489 |
msgstr ""
|
490 |
|
491 |
-
#: admin.inc.php:
|
492 |
msgid "Daily Popular Posts"
|
493 |
msgstr ""
|
494 |
|
495 |
-
#: admin.inc.php:
|
496 |
msgid "Support the development"
|
497 |
msgstr ""
|
498 |
|
499 |
-
#: admin.inc.php:
|
500 |
msgid "Enter amount in USD: "
|
501 |
msgstr ""
|
502 |
|
503 |
-
#: admin.inc.php:
|
504 |
msgid "Send your donation to the author of"
|
505 |
msgstr ""
|
506 |
|
507 |
-
#: admin.inc.php:
|
508 |
msgid "Follow us"
|
509 |
msgstr ""
|
510 |
|
511 |
-
#: admin.inc.php:
|
512 |
msgid "Quick Links"
|
513 |
msgstr ""
|
514 |
|
515 |
-
#: admin.inc.php:
|
516 |
msgid "Top 10 plugin page"
|
517 |
msgstr ""
|
518 |
|
519 |
-
#: admin.inc.php:
|
520 |
msgid "Other plugins"
|
521 |
msgstr ""
|
522 |
|
523 |
-
#: admin.inc.php:
|
524 |
msgid "Ajay's blog"
|
525 |
msgstr ""
|
526 |
|
527 |
-
#: admin.inc.php:
|
528 |
msgid "Support"
|
529 |
msgstr ""
|
530 |
|
531 |
-
#: admin.inc.php:
|
532 |
msgid "Recent developments"
|
533 |
msgstr ""
|
534 |
|
535 |
-
#: admin.inc.php:
|
536 |
msgid "Top 10 Settings"
|
537 |
msgstr ""
|
538 |
|
539 |
-
#: admin.inc.php:
|
540 |
msgid "Top 10"
|
541 |
msgstr ""
|
542 |
|
543 |
-
#: admin.inc.php:
|
544 |
msgid "Overall Popular Posts"
|
545 |
msgstr ""
|
546 |
|
547 |
-
#: admin.inc.php:
|
548 |
msgid "Results"
|
549 |
msgstr ""
|
550 |
|
551 |
-
#: admin.inc.php:
|
552 |
msgid "of"
|
553 |
msgstr ""
|
554 |
|
555 |
-
#: admin.inc.php:
|
556 |
msgid "Page"
|
557 |
msgstr ""
|
558 |
|
559 |
-
#: admin.inc.php:
|
560 |
msgid "View Daily Popular Posts"
|
561 |
msgstr ""
|
562 |
|
563 |
-
#: admin.inc.php:
|
564 |
msgid "Results per-page:"
|
565 |
msgstr ""
|
566 |
|
567 |
-
#: admin.inc.php:
|
568 |
msgid "View Overall Popular Posts"
|
569 |
msgstr ""
|
570 |
|
571 |
-
#: admin.inc.php:
|
572 |
msgid "Previous"
|
573 |
msgstr ""
|
574 |
|
575 |
-
#: admin.inc.php:
|
576 |
msgid "Next"
|
577 |
msgstr ""
|
578 |
|
579 |
-
#: admin.inc.php:
|
580 |
msgid "Daily Popular"
|
581 |
msgstr ""
|
582 |
|
583 |
-
#: admin.inc.php:
|
584 |
-
msgid "Total
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
585 |
msgstr ""
|
586 |
|
587 |
-
#: top-10.php:
|
588 |
msgid "Display the posts popular this week"
|
589 |
msgstr ""
|
590 |
|
591 |
-
#: top-10.php:
|
592 |
msgid "Title"
|
593 |
msgstr ""
|
594 |
|
595 |
-
#: top-10.php:
|
596 |
msgid "No. of posts"
|
597 |
msgstr ""
|
598 |
|
599 |
-
#: top-10.php:
|
600 |
msgid "Overall"
|
601 |
msgstr ""
|
602 |
|
603 |
-
#: top-10.php:
|
604 |
msgid "Custom time period (Enter below)"
|
605 |
msgstr ""
|
606 |
|
607 |
-
#: top-10.php:
|
608 |
msgid "Range in number of days (applies only to custom option above)"
|
609 |
msgstr ""
|
610 |
|
611 |
-
#: top-10.php:
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
612 |
msgid "Thumbnail options"
|
613 |
msgstr ""
|
614 |
|
615 |
-
#: top-10.php:
|
616 |
msgid "Thumbnails inline, before title"
|
617 |
msgstr ""
|
618 |
|
619 |
-
#: top-10.php:
|
620 |
msgid "Thumbnails inline, after title"
|
621 |
msgstr ""
|
622 |
|
623 |
-
#: top-10.php:
|
624 |
msgid "Only thumbnails, no text"
|
625 |
msgstr ""
|
626 |
|
627 |
-
#: top-10.php:
|
628 |
msgid "No thumbnails, only text."
|
629 |
msgstr ""
|
630 |
|
631 |
-
#: top-10.php:
|
632 |
-
msgid "
|
|
|
|
|
|
|
|
|
633 |
msgstr ""
|
634 |
|
635 |
-
#: top-10.php:
|
636 |
msgid "<h3>Popular Posts</h3>"
|
637 |
msgstr ""
|
638 |
|
639 |
-
#: top-10.php:
|
640 |
msgid "<h3>Daily Popular</h3>"
|
641 |
msgstr ""
|
642 |
|
643 |
-
#: top-10.php:
|
644 |
msgid "No top posts yet"
|
645 |
msgstr ""
|
646 |
|
647 |
-
#: top-10.php:
|
648 |
msgid "Once Weekly"
|
649 |
msgstr ""
|
650 |
|
651 |
-
#: top-10.php:
|
652 |
msgid "Once Fortnightly"
|
653 |
msgstr ""
|
654 |
|
655 |
-
#: top-10.php:
|
656 |
msgid "Once Monthly"
|
657 |
msgstr ""
|
658 |
|
659 |
-
#: top-10.php:
|
660 |
msgid "Settings"
|
661 |
msgstr ""
|
662 |
|
663 |
-
#: top-10.php:
|
664 |
msgid "Donate"
|
665 |
msgstr ""
|
2 |
msgstr ""
|
3 |
"Project-Id-Version: Top 10\n"
|
4 |
"Report-Msgid-Bugs-To: \n"
|
5 |
+
"POT-Creation-Date: 2013-09-09 21:04-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"
|
15 |
"X-Generator: Poedit 1.5.7\n"
|
16 |
"X-Poedit-SearchPath-0: .\n"
|
17 |
|
18 |
+
#: admin.inc.php:103
|
19 |
msgid "Scheduled maintenance enabled / modified"
|
20 |
msgstr ""
|
21 |
|
22 |
+
#: admin.inc.php:107
|
23 |
msgid "Scheduled maintenance disabled"
|
24 |
msgstr ""
|
25 |
|
26 |
+
#: admin.inc.php:124
|
27 |
msgid "Options saved successfully."
|
28 |
msgstr ""
|
29 |
|
30 |
+
#: admin.inc.php:133
|
31 |
msgid "Options set to Default."
|
32 |
msgstr ""
|
33 |
|
34 |
+
#: admin.inc.php:139
|
35 |
msgid "Top 10 popular posts reset"
|
36 |
msgstr ""
|
37 |
|
38 |
+
#: admin.inc.php:145
|
39 |
msgid "Top 10 daily popular posts reset"
|
40 |
msgstr ""
|
41 |
|
42 |
+
#: admin.inc.php:152
|
43 |
msgid "Duplicate rows cleaned from tables"
|
44 |
msgstr ""
|
45 |
|
46 |
+
#: admin.inc.php:173
|
47 |
msgid "General options"
|
48 |
msgstr ""
|
49 |
|
50 |
+
#: admin.inc.php:177
|
51 |
msgid "Enable Overall stats"
|
52 |
msgstr ""
|
53 |
|
54 |
+
#: admin.inc.php:182
|
55 |
msgid "Enable Daily stats"
|
56 |
msgstr ""
|
57 |
|
58 |
+
#: admin.inc.php:187
|
59 |
msgid "W3 Total Cache fix:"
|
60 |
msgstr ""
|
61 |
|
62 |
+
#: admin.inc.php:189
|
63 |
msgid ""
|
64 |
"This will try to prevent W3 Total Cache from caching the addcount script of "
|
65 |
"the plugin. Try toggling this option in case you find that our posts are not "
|
66 |
"tracked."
|
67 |
msgstr ""
|
68 |
|
69 |
+
#: admin.inc.php:193
|
70 |
msgid "Number of popular posts to display: "
|
71 |
msgstr ""
|
72 |
|
73 |
+
#: admin.inc.php:197
|
74 |
msgid "Daily Popular should contain views of how many days? "
|
75 |
msgstr ""
|
76 |
|
77 |
+
#: admin.inc.php:200
|
78 |
msgid "Post types to include in results (including custom post types)"
|
79 |
msgstr ""
|
80 |
|
81 |
+
#: admin.inc.php:211
|
82 |
msgid "List of post or page IDs to exclude from the results: "
|
83 |
msgstr ""
|
84 |
|
85 |
+
#: admin.inc.php:215
|
86 |
msgid "Exclude Categories: "
|
87 |
msgstr ""
|
88 |
|
89 |
+
#: admin.inc.php:230
|
90 |
msgid ""
|
91 |
"Comma separated list of category slugs. The field above has an autocomplete "
|
92 |
"so simply start typing in the starting letters and it will prompt you with "
|
93 |
"options"
|
94 |
msgstr ""
|
95 |
|
96 |
+
#: admin.inc.php:235
|
97 |
msgid "Display number of views on:"
|
98 |
msgstr ""
|
99 |
|
100 |
+
#: admin.inc.php:237
|
101 |
msgid "Posts"
|
102 |
msgstr ""
|
103 |
|
104 |
+
#: admin.inc.php:238
|
105 |
msgid "Pages"
|
106 |
msgstr ""
|
107 |
|
108 |
+
#: admin.inc.php:239
|
109 |
msgid "Home page"
|
110 |
msgstr ""
|
111 |
|
112 |
+
#: admin.inc.php:240
|
113 |
msgid "Feeds"
|
114 |
msgstr ""
|
115 |
|
116 |
+
#: admin.inc.php:241
|
117 |
msgid "Category archives"
|
118 |
msgstr ""
|
119 |
|
120 |
+
#: admin.inc.php:242
|
121 |
msgid "Tag archives"
|
122 |
msgstr ""
|
123 |
|
124 |
+
#: admin.inc.php:243
|
125 |
msgid "Other archives"
|
126 |
msgstr ""
|
127 |
|
128 |
+
#: admin.inc.php:244
|
129 |
msgid ""
|
130 |
"If you choose to disable this, please add <code><?php if(function_exists"
|
131 |
"('echo_ald_tptn')) echo_ald_tptn(); ?></code> to your template file where "
|
132 |
"you want it displayed"
|
133 |
msgstr ""
|
134 |
|
135 |
+
#: admin.inc.php:247
|
136 |
msgid "Always display latest post count"
|
137 |
msgstr ""
|
138 |
|
139 |
+
#: admin.inc.php:249
|
140 |
msgid ""
|
141 |
"This option uses JavaScript and will increase your page load time. Turn this "
|
142 |
"off if you are not using caching plugins or are OK with displaying older "
|
143 |
+
"cached counts. When you enable this option, the daily widget will not use "
|
144 |
+
"the options set there, but options will need to be set on this screen."
|
145 |
msgstr ""
|
146 |
|
147 |
+
#: admin.inc.php:252
|
148 |
msgid "Always display latest post count in the daily lists"
|
149 |
msgstr ""
|
150 |
|
151 |
+
#: admin.inc.php:254
|
152 |
msgid "This option uses JavaScript and will increase your page load time"
|
153 |
msgstr ""
|
154 |
|
155 |
+
#: admin.inc.php:257
|
156 |
msgid "Track visits of authors on their own posts?"
|
157 |
msgstr ""
|
158 |
|
159 |
+
#: admin.inc.php:260
|
160 |
msgid "Track visits of admins?"
|
161 |
msgstr ""
|
162 |
|
163 |
+
#: admin.inc.php:263
|
164 |
msgid "Display page views on Posts > All Posts in Admin"
|
165 |
msgstr ""
|
166 |
|
167 |
+
#: admin.inc.php:266
|
168 |
msgid "Link to Top 10 plugin page"
|
169 |
msgstr ""
|
170 |
|
171 |
+
#: admin.inc.php:268
|
172 |
msgid ""
|
173 |
"A link to the plugin is added as an extra list item to the list of popular "
|
174 |
"posts"
|
175 |
msgstr ""
|
176 |
|
177 |
+
#: admin.inc.php:275
|
178 |
msgid "Output Options"
|
179 |
msgstr ""
|
180 |
|
181 |
+
#: admin.inc.php:278
|
182 |
msgid "Format to display the count in: "
|
183 |
msgstr ""
|
184 |
|
185 |
+
#: admin.inc.php:280
|
186 |
msgid ""
|
187 |
"Use <code>%totalcount%</code> to display the total count, <code>%dailycount"
|
188 |
"%</code> to display the daily count and <code>%overallcount%</code> to "
|
190 |
"options displays <code>(Visited 123 times, 23 visits today)</code>"
|
191 |
msgstr ""
|
192 |
|
193 |
+
#: admin.inc.php:283
|
194 |
msgid "Title of popular posts: "
|
195 |
msgstr ""
|
196 |
|
197 |
+
#: admin.inc.php:286
|
198 |
msgid "Title of daily popular posts: "
|
199 |
msgstr ""
|
200 |
|
201 |
+
#: admin.inc.php:289
|
202 |
msgid "When there are no posts, what should be shown?"
|
203 |
msgstr ""
|
204 |
|
205 |
+
#: admin.inc.php:293
|
206 |
msgid "Blank Output"
|
207 |
msgstr ""
|
208 |
|
209 |
+
#: admin.inc.php:297
|
210 |
msgid "Display:"
|
211 |
msgstr ""
|
212 |
|
213 |
+
#: admin.inc.php:301
|
214 |
msgid "Show post excerpt in list?"
|
215 |
msgstr ""
|
216 |
|
217 |
+
#: admin.inc.php:304
|
218 |
msgid "Length of excerpt (in words): "
|
219 |
msgstr ""
|
220 |
|
221 |
+
#: admin.inc.php:307
|
222 |
+
msgid "Show post author in list?"
|
223 |
+
msgstr ""
|
224 |
+
|
225 |
+
#: admin.inc.php:310
|
226 |
msgid "Show post date in list?"
|
227 |
msgstr ""
|
228 |
|
229 |
+
#: admin.inc.php:313
|
230 |
msgid "Limit post title length (in characters)"
|
231 |
msgstr ""
|
232 |
|
233 |
+
#: admin.inc.php:316
|
234 |
msgid "Display number of page views in popular lists?"
|
235 |
msgstr ""
|
236 |
|
237 |
+
#: admin.inc.php:319
|
238 |
msgid "Open links in new window"
|
239 |
msgstr ""
|
240 |
|
241 |
+
#: admin.inc.php:322
|
242 |
msgid "Add nofollow attribute to links in the list"
|
243 |
msgstr ""
|
244 |
|
245 |
+
#: admin.inc.php:325
|
246 |
msgid "Exclude display of related posts on these posts / pages"
|
247 |
msgstr ""
|
248 |
|
249 |
+
#: admin.inc.php:328
|
250 |
msgid "Enter comma separated list of IDs. e.g. 188,320,500"
|
251 |
msgstr ""
|
252 |
|
253 |
+
#: admin.inc.php:331
|
254 |
msgid "Customize the output:"
|
255 |
msgstr ""
|
256 |
|
257 |
+
#: admin.inc.php:333
|
258 |
msgid "HTML to display before the list of posts: "
|
259 |
msgstr ""
|
260 |
|
261 |
+
#: admin.inc.php:336
|
262 |
msgid "HTML to display before each list item: "
|
263 |
msgstr ""
|
264 |
|
265 |
+
#: admin.inc.php:339
|
266 |
msgid "HTML to display after each list item: "
|
267 |
msgstr ""
|
268 |
|
269 |
+
#: admin.inc.php:342
|
270 |
msgid "HTML to display after the list of posts: "
|
271 |
msgstr ""
|
272 |
|
273 |
+
#: admin.inc.php:345
|
274 |
msgid "Post thumbnail options:"
|
275 |
msgstr ""
|
276 |
|
277 |
+
#: admin.inc.php:347
|
278 |
msgid "Location of post thumbnail:"
|
279 |
msgstr ""
|
280 |
|
281 |
+
#: admin.inc.php:351
|
282 |
msgid "Display thumbnails inline with posts, before title"
|
283 |
msgstr ""
|
284 |
|
285 |
+
#: admin.inc.php:355
|
286 |
msgid "Display thumbnails inline with posts, after title"
|
287 |
msgstr ""
|
288 |
|
289 |
+
#: admin.inc.php:359
|
290 |
msgid "Display only thumbnails, no text"
|
291 |
msgstr ""
|
292 |
|
293 |
+
#: admin.inc.php:363
|
294 |
msgid "Do not display thumbnails, only text."
|
295 |
msgstr ""
|
296 |
|
297 |
+
#: admin.inc.php:367
|
298 |
msgid "Width of the thumbnail: "
|
299 |
msgstr ""
|
300 |
|
301 |
+
#: admin.inc.php:370
|
302 |
msgid "Height of the thumbnail: "
|
303 |
msgstr ""
|
304 |
|
305 |
+
#: admin.inc.php:373
|
306 |
msgid "Style attributes / Width and Height HTML attributes:"
|
307 |
msgstr ""
|
308 |
|
309 |
+
#: admin.inc.php:377
|
310 |
msgid ""
|
311 |
"Style attributes are used for width and height. <code>style=\"max-width:"
|
312 |
msgstr ""
|
313 |
|
314 |
+
#: admin.inc.php:381
|
315 |
msgid ""
|
316 |
"HTML width and height attributes are used for width and height. <code>width="
|
317 |
"\""
|
318 |
msgstr ""
|
319 |
|
320 |
+
#: admin.inc.php:385
|
321 |
msgid "Use timthumb to generate thumbnails? "
|
322 |
msgstr ""
|
323 |
|
324 |
+
#: admin.inc.php:386
|
325 |
msgid ""
|
326 |
"If checked, <a href=\"http://www.binarymoon.co.uk/projects/timthumb/"
|
327 |
"\">timthumb</a> will be used to generate thumbnails"
|
328 |
msgstr ""
|
329 |
|
330 |
+
#: admin.inc.php:388
|
331 |
msgid "Post thumbnail meta field name: "
|
332 |
msgstr ""
|
333 |
|
334 |
+
#: admin.inc.php:389
|
335 |
msgid ""
|
336 |
"The value of this field should contain the image source and is set in the "
|
337 |
"<em>Add New Post</em> screen"
|
338 |
msgstr ""
|
339 |
|
340 |
+
#: admin.inc.php:391
|
341 |
msgid ""
|
342 |
"If the postmeta is not set, then should the plugin extract the first image "
|
343 |
"from the post?"
|
344 |
msgstr ""
|
345 |
|
346 |
+
#: admin.inc.php:392
|
347 |
msgid ""
|
348 |
"This could slow down the loading of your page if the first image in the "
|
349 |
"related posts is large in file-size"
|
350 |
msgstr ""
|
351 |
|
352 |
+
#: admin.inc.php:394
|
353 |
msgid "Use default thumbnail? "
|
354 |
msgstr ""
|
355 |
|
356 |
+
#: admin.inc.php:395
|
357 |
msgid ""
|
358 |
"If checked, when no thumbnail is found, show a default one from the URL "
|
359 |
"below. If not checked and no thumbnail is found, no image will be shown."
|
360 |
msgstr ""
|
361 |
|
362 |
+
#: admin.inc.php:397
|
363 |
msgid "Default thumbnail: "
|
364 |
msgstr ""
|
365 |
|
366 |
+
#: admin.inc.php:398
|
367 |
msgid ""
|
368 |
"The plugin will first check if the post contains a thumbnail. If it doesn't "
|
369 |
"then it will check the meta field. If this is not available, then it will "
|
370 |
"show the default image as specified above"
|
371 |
msgstr ""
|
372 |
|
373 |
+
#: admin.inc.php:404
|
374 |
msgid "Custom Styles"
|
375 |
msgstr ""
|
376 |
|
377 |
+
#: admin.inc.php:407
|
378 |
msgid "Custom CSS to add to header:"
|
379 |
msgstr ""
|
380 |
|
381 |
+
#: admin.inc.php:410
|
382 |
msgid ""
|
383 |
"Do not include <code>style</code> tags. Check out the <a href=\"http://"
|
384 |
"wordpress.org/extend/plugins/top-10/faq/\" target=\"_blank\">FAQ</a> for "
|
385 |
"available CSS classes to style."
|
386 |
msgstr ""
|
387 |
|
388 |
+
#: admin.inc.php:417
|
389 |
msgid "Maintenance"
|
390 |
msgstr ""
|
391 |
|
392 |
+
#: admin.inc.php:421
|
393 |
msgid ""
|
394 |
"Over time the Daily Top 10 database grows in size, which reduces the "
|
395 |
"performance of the plugin. Cleaning the database at regular intervals could "
|
396 |
"improve performance, especially on high traffic blogs."
|
397 |
msgstr ""
|
398 |
|
399 |
+
#: admin.inc.php:422
|
400 |
msgid ""
|
401 |
"Note: When scheduled maintenance is enabled, WordPress will run the cron job "
|
402 |
"everytime the job is rescheduled (i.e. you change the settings below). This "
|
403 |
"causes the daily posts table to reset."
|
404 |
msgstr ""
|
405 |
|
406 |
+
#: admin.inc.php:425
|
407 |
msgid "Enable scheduled maintenance of daily tables:"
|
408 |
msgstr ""
|
409 |
|
410 |
+
#: admin.inc.php:429
|
411 |
msgid "Time to run maintenance"
|
412 |
msgstr ""
|
413 |
|
414 |
+
#: admin.inc.php:432
|
415 |
msgid "How often should the maintenance be run:"
|
416 |
msgstr ""
|
417 |
|
418 |
+
#: admin.inc.php:436
|
419 |
msgid "Daily"
|
420 |
msgstr ""
|
421 |
|
422 |
+
#: admin.inc.php:440
|
423 |
msgid "Weekly"
|
424 |
msgstr ""
|
425 |
|
426 |
+
#: admin.inc.php:444
|
427 |
msgid "Fortnightly"
|
428 |
msgstr ""
|
429 |
|
430 |
+
#: admin.inc.php:448
|
431 |
msgid "Monthly"
|
432 |
msgstr ""
|
433 |
|
434 |
+
#: admin.inc.php:457
|
435 |
msgid "The cron job has been scheduled. Maintenance will run "
|
436 |
msgstr ""
|
437 |
|
438 |
+
#: admin.inc.php:462
|
439 |
msgid "The cron job is missing. Please resave this page to add the job"
|
440 |
msgstr ""
|
441 |
|
442 |
+
#: admin.inc.php:467
|
443 |
msgid "Maintenance is turned off"
|
444 |
msgstr ""
|
445 |
|
446 |
+
#: admin.inc.php:475
|
447 |
msgid "Save Options"
|
448 |
msgstr ""
|
449 |
|
450 |
+
#: admin.inc.php:476
|
451 |
msgid "Default Options"
|
452 |
msgstr ""
|
453 |
|
454 |
+
#: admin.inc.php:476
|
455 |
msgid "Do you want to set options to Default?"
|
456 |
msgstr ""
|
457 |
|
458 |
+
#: admin.inc.php:480
|
459 |
msgid "Reset count"
|
460 |
msgstr ""
|
461 |
|
462 |
+
#: admin.inc.php:483
|
463 |
msgid ""
|
464 |
"This cannot be reversed. Make sure that your database has been backed up "
|
465 |
"before proceeding"
|
466 |
msgstr ""
|
467 |
|
468 |
+
#: admin.inc.php:486
|
469 |
msgid "Reset Popular Posts"
|
470 |
msgstr ""
|
471 |
|
472 |
+
#: admin.inc.php:486
|
473 |
msgid "Are you sure you want to reset the popular posts?"
|
474 |
msgstr ""
|
475 |
|
476 |
+
#: admin.inc.php:487
|
477 |
msgid "Reset Daily Popular Posts"
|
478 |
msgstr ""
|
479 |
|
480 |
+
#: admin.inc.php:487
|
481 |
msgid "Are you sure you want to reset the daily popular posts?"
|
482 |
msgstr ""
|
483 |
|
484 |
+
#: admin.inc.php:488
|
485 |
msgid "Clear duplicates"
|
486 |
msgstr ""
|
487 |
|
488 |
+
#: admin.inc.php:488
|
489 |
msgid "This will delete the duplicate entries in the tables. Proceed?"
|
490 |
msgstr ""
|
491 |
|
492 |
+
#: admin.inc.php:531 admin.inc.php:906 top-10.php:483
|
493 |
msgid "Popular Posts"
|
494 |
msgstr ""
|
495 |
|
496 |
+
#: admin.inc.php:531 admin.inc.php:618
|
497 |
msgid "Daily Popular Posts"
|
498 |
msgstr ""
|
499 |
|
500 |
+
#: admin.inc.php:559
|
501 |
msgid "Support the development"
|
502 |
msgstr ""
|
503 |
|
504 |
+
#: admin.inc.php:567
|
505 |
msgid "Enter amount in USD: "
|
506 |
msgstr ""
|
507 |
|
508 |
+
#: admin.inc.php:571
|
509 |
msgid "Send your donation to the author of"
|
510 |
msgstr ""
|
511 |
|
512 |
+
#: admin.inc.php:577
|
513 |
msgid "Follow us"
|
514 |
msgstr ""
|
515 |
|
516 |
+
#: admin.inc.php:583
|
517 |
msgid "Quick Links"
|
518 |
msgstr ""
|
519 |
|
520 |
+
#: admin.inc.php:585
|
521 |
msgid "Top 10 plugin page"
|
522 |
msgstr ""
|
523 |
|
524 |
+
#: admin.inc.php:586
|
525 |
msgid "Other plugins"
|
526 |
msgstr ""
|
527 |
|
528 |
+
#: admin.inc.php:587
|
529 |
msgid "Ajay's blog"
|
530 |
msgstr ""
|
531 |
|
532 |
+
#: admin.inc.php:588 top-10.php:1130
|
533 |
msgid "Support"
|
534 |
msgstr ""
|
535 |
|
536 |
+
#: admin.inc.php:592
|
537 |
msgid "Recent developments"
|
538 |
msgstr ""
|
539 |
|
540 |
+
#: admin.inc.php:609 admin.inc.php:612
|
541 |
msgid "Top 10 Settings"
|
542 |
msgstr ""
|
543 |
|
544 |
+
#: admin.inc.php:609
|
545 |
msgid "Top 10"
|
546 |
msgstr ""
|
547 |
|
548 |
+
#: admin.inc.php:615
|
549 |
msgid "Overall Popular Posts"
|
550 |
msgstr ""
|
551 |
|
552 |
+
#: admin.inc.php:786
|
553 |
msgid "Results"
|
554 |
msgstr ""
|
555 |
|
556 |
+
#: admin.inc.php:788 admin.inc.php:794
|
557 |
msgid "of"
|
558 |
msgstr ""
|
559 |
|
560 |
+
#: admin.inc.php:792
|
561 |
msgid "Page"
|
562 |
msgstr ""
|
563 |
|
564 |
+
#: admin.inc.php:806
|
565 |
msgid "View Daily Popular Posts"
|
566 |
msgstr ""
|
567 |
|
568 |
+
#: admin.inc.php:809 admin.inc.php:822
|
569 |
msgid "Results per-page:"
|
570 |
msgstr ""
|
571 |
|
572 |
+
#: admin.inc.php:819
|
573 |
msgid "View Overall Popular Posts"
|
574 |
msgstr ""
|
575 |
|
576 |
+
#: admin.inc.php:848
|
577 |
msgid "Previous"
|
578 |
msgstr ""
|
579 |
|
580 |
+
#: admin.inc.php:866
|
581 |
msgid "Next"
|
582 |
msgstr ""
|
583 |
|
584 |
+
#: admin.inc.php:907
|
585 |
msgid "Daily Popular"
|
586 |
msgstr ""
|
587 |
|
588 |
+
#: admin.inc.php:923
|
589 |
+
msgid "Total Views"
|
590 |
+
msgstr ""
|
591 |
+
|
592 |
+
#: admin.inc.php:924
|
593 |
+
msgid "Today's Views"
|
594 |
+
msgstr ""
|
595 |
+
|
596 |
+
#: top-10.php:400
|
597 |
+
msgid " Posted by "
|
598 |
msgstr ""
|
599 |
|
600 |
+
#: top-10.php:482
|
601 |
msgid "Display the posts popular this week"
|
602 |
msgstr ""
|
603 |
|
604 |
+
#: top-10.php:500
|
605 |
msgid "Title"
|
606 |
msgstr ""
|
607 |
|
608 |
+
#: top-10.php:505
|
609 |
msgid "No. of posts"
|
610 |
msgstr ""
|
611 |
|
612 |
+
#: top-10.php:510
|
613 |
msgid "Overall"
|
614 |
msgstr ""
|
615 |
|
616 |
+
#: top-10.php:511
|
617 |
msgid "Custom time period (Enter below)"
|
618 |
msgstr ""
|
619 |
|
620 |
+
#: top-10.php:516
|
621 |
msgid "Range in number of days (applies only to custom option above)"
|
622 |
msgstr ""
|
623 |
|
624 |
+
#: top-10.php:521
|
625 |
+
msgid " Show excerpt?"
|
626 |
+
msgstr ""
|
627 |
+
|
628 |
+
#: top-10.php:526
|
629 |
+
msgid " Show author?"
|
630 |
+
msgstr ""
|
631 |
+
|
632 |
+
#: top-10.php:531
|
633 |
+
msgid " Show date?"
|
634 |
+
msgstr ""
|
635 |
+
|
636 |
+
#: top-10.php:535
|
637 |
msgid "Thumbnail options"
|
638 |
msgstr ""
|
639 |
|
640 |
+
#: top-10.php:537
|
641 |
msgid "Thumbnails inline, before title"
|
642 |
msgstr ""
|
643 |
|
644 |
+
#: top-10.php:538
|
645 |
msgid "Thumbnails inline, after title"
|
646 |
msgstr ""
|
647 |
|
648 |
+
#: top-10.php:539
|
649 |
msgid "Only thumbnails, no text"
|
650 |
msgstr ""
|
651 |
|
652 |
+
#: top-10.php:540
|
653 |
msgid "No thumbnails, only text."
|
654 |
msgstr ""
|
655 |
|
656 |
+
#: top-10.php:545
|
657 |
+
msgid "Thumbnail height"
|
658 |
+
msgstr ""
|
659 |
+
|
660 |
+
#: top-10.php:550
|
661 |
+
msgid "Thumbnail width"
|
662 |
msgstr ""
|
663 |
|
664 |
+
#: top-10.php:653
|
665 |
msgid "<h3>Popular Posts</h3>"
|
666 |
msgstr ""
|
667 |
|
668 |
+
#: top-10.php:654
|
669 |
msgid "<h3>Daily Popular</h3>"
|
670 |
msgstr ""
|
671 |
|
672 |
+
#: top-10.php:655
|
673 |
msgid "No top posts yet"
|
674 |
msgstr ""
|
675 |
|
676 |
+
#: top-10.php:1096
|
677 |
msgid "Once Weekly"
|
678 |
msgstr ""
|
679 |
|
680 |
+
#: top-10.php:1097
|
681 |
msgid "Once Fortnightly"
|
682 |
msgstr ""
|
683 |
|
684 |
+
#: top-10.php:1098
|
685 |
msgid "Once Monthly"
|
686 |
msgstr ""
|
687 |
|
688 |
+
#: top-10.php:1118
|
689 |
msgid "Settings"
|
690 |
msgstr ""
|
691 |
|
692 |
+
#: top-10.php:1131
|
693 |
msgid "Donate"
|
694 |
msgstr ""
|
languages/tptn-es_ES.mo
CHANGED
Binary file
|
languages/tptn-es_ES.po
CHANGED
@@ -2,7 +2,7 @@ msgid ""
|
|
2 |
msgstr ""
|
3 |
"Project-Id-Version: Top 10\n"
|
4 |
"Report-Msgid-Bugs-To: \n"
|
5 |
-
"POT-Creation-Date: 2013-
|
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"
|
@@ -15,166 +15,167 @@ msgstr ""
|
|
15 |
"X-Generator: Poedit 1.5.7\n"
|
16 |
"X-Poedit-SearchPath-0: .\n"
|
17 |
|
18 |
-
#: admin.inc.php:
|
19 |
msgid "Scheduled maintenance enabled / modified"
|
20 |
msgstr ""
|
21 |
|
22 |
-
#: admin.inc.php:
|
23 |
msgid "Scheduled maintenance disabled"
|
24 |
msgstr ""
|
25 |
|
26 |
-
#: admin.inc.php:
|
27 |
msgid "Options saved successfully."
|
28 |
msgstr "Configuraciones guardadas con éxito"
|
29 |
|
30 |
-
#: admin.inc.php:
|
31 |
msgid "Options set to Default."
|
32 |
msgstr "Los parametros se configuran de manera predeterminada"
|
33 |
|
34 |
-
#: admin.inc.php:
|
35 |
msgid "Top 10 popular posts reset"
|
36 |
msgstr "Reiniciar el Top de los 10 posts más populares"
|
37 |
|
38 |
-
#: admin.inc.php:
|
39 |
msgid "Top 10 daily popular posts reset"
|
40 |
msgstr "Reiniciar el Top de los 10 posts diarios más populares"
|
41 |
|
42 |
-
#: admin.inc.php:
|
43 |
msgid "Duplicate rows cleaned from tables"
|
44 |
msgstr ""
|
45 |
|
46 |
-
#: admin.inc.php:
|
47 |
msgid "General options"
|
48 |
msgstr ""
|
49 |
|
50 |
-
#: admin.inc.php:
|
51 |
msgid "Enable Overall stats"
|
52 |
msgstr ""
|
53 |
|
54 |
-
#: admin.inc.php:
|
55 |
msgid "Enable Daily stats"
|
56 |
msgstr ""
|
57 |
|
58 |
-
#: admin.inc.php:
|
59 |
msgid "W3 Total Cache fix:"
|
60 |
msgstr ""
|
61 |
|
62 |
-
#: admin.inc.php:
|
63 |
msgid ""
|
64 |
"This will try to prevent W3 Total Cache from caching the addcount script of "
|
65 |
"the plugin. Try toggling this option in case you find that our posts are not "
|
66 |
"tracked."
|
67 |
msgstr ""
|
68 |
|
69 |
-
#: admin.inc.php:
|
70 |
msgid "Number of popular posts to display: "
|
71 |
msgstr "Mostrar el número de posts más populares"
|
72 |
|
73 |
-
#: admin.inc.php:
|
74 |
msgid "Daily Popular should contain views of how many days? "
|
75 |
msgstr ""
|
76 |
"Los post diarios más populares deben contener el número de visitas al día"
|
77 |
|
78 |
-
#: admin.inc.php:
|
79 |
msgid "Post types to include in results (including custom post types)"
|
80 |
msgstr ""
|
81 |
|
82 |
-
#: admin.inc.php:
|
83 |
msgid "List of post or page IDs to exclude from the results: "
|
84 |
msgstr ""
|
85 |
|
86 |
-
#: admin.inc.php:
|
87 |
msgid "Exclude Categories: "
|
88 |
msgstr "Excluir las Categorías"
|
89 |
|
90 |
-
#: admin.inc.php:
|
91 |
msgid ""
|
92 |
"Comma separated list of category slugs. The field above has an autocomplete "
|
93 |
"so simply start typing in the starting letters and it will prompt you with "
|
94 |
"options"
|
95 |
msgstr ""
|
96 |
|
97 |
-
#: admin.inc.php:
|
98 |
#, fuzzy
|
99 |
msgid "Display number of views on:"
|
100 |
msgstr "¿Mostrar la cantidad de audiencia de los posts?"
|
101 |
|
102 |
-
#: admin.inc.php:
|
103 |
msgid "Posts"
|
104 |
msgstr ""
|
105 |
|
106 |
-
#: admin.inc.php:
|
107 |
#, fuzzy
|
108 |
msgid "Pages"
|
109 |
msgstr "La página"
|
110 |
|
111 |
-
#: admin.inc.php:
|
112 |
msgid "Home page"
|
113 |
msgstr ""
|
114 |
|
115 |
-
#: admin.inc.php:
|
116 |
msgid "Feeds"
|
117 |
msgstr ""
|
118 |
|
119 |
-
#: admin.inc.php:
|
120 |
msgid "Category archives"
|
121 |
msgstr ""
|
122 |
|
123 |
-
#: admin.inc.php:
|
124 |
msgid "Tag archives"
|
125 |
msgstr ""
|
126 |
|
127 |
-
#: admin.inc.php:
|
128 |
msgid "Other archives"
|
129 |
msgstr ""
|
130 |
|
131 |
-
#: admin.inc.php:
|
132 |
msgid ""
|
133 |
"If you choose to disable this, please add <code><?php if(function_exists"
|
134 |
"('echo_ald_tptn')) echo_ald_tptn(); ?></code> to your template file where "
|
135 |
"you want it displayed"
|
136 |
msgstr ""
|
137 |
|
138 |
-
#: admin.inc.php:
|
139 |
msgid "Always display latest post count"
|
140 |
msgstr ""
|
141 |
|
142 |
-
#: admin.inc.php:
|
143 |
msgid ""
|
144 |
"This option uses JavaScript and will increase your page load time. Turn this "
|
145 |
"off if you are not using caching plugins or are OK with displaying older "
|
146 |
-
"cached counts"
|
|
|
147 |
msgstr ""
|
148 |
|
149 |
-
#: admin.inc.php:
|
150 |
msgid "Always display latest post count in the daily lists"
|
151 |
msgstr ""
|
152 |
|
153 |
-
#: admin.inc.php:
|
154 |
#, fuzzy
|
155 |
msgid "This option uses JavaScript and will increase your page load time"
|
156 |
msgstr ""
|
157 |
"¿Hacer la lista de los posts diarios más dinámica? Esta opción utiliza "
|
158 |
"JavaScript para cargar el post y también puede aumentar el tiempo de carga"
|
159 |
|
160 |
-
#: admin.inc.php:
|
161 |
msgid "Track visits of authors on their own posts?"
|
162 |
msgstr "¿Observar las visitas de los autores a sus propios posts?"
|
163 |
|
164 |
-
#: admin.inc.php:
|
165 |
#, fuzzy
|
166 |
msgid "Track visits of admins?"
|
167 |
msgstr "¿Observar las visitas de los autores a sus propios posts?"
|
168 |
|
169 |
-
#: admin.inc.php:
|
170 |
msgid "Display page views on Posts > All Posts in Admin"
|
171 |
msgstr ""
|
172 |
|
173 |
-
#: admin.inc.php:
|
174 |
msgid "Link to Top 10 plugin page"
|
175 |
msgstr ""
|
176 |
|
177 |
-
#: admin.inc.php:
|
178 |
#, fuzzy
|
179 |
msgid ""
|
180 |
"A link to the plugin is added as an extra list item to the list of popular "
|
@@ -184,16 +185,16 @@ msgstr ""
|
|
184 |
"elemento de una lista adicional. Esto no es obligatorio, pero le "
|
185 |
"agradeceríamos al hacerlo!"
|
186 |
|
187 |
-
#: admin.inc.php:
|
188 |
#, fuzzy
|
189 |
msgid "Output Options"
|
190 |
msgstr "Los Parámetros Resultantes"
|
191 |
|
192 |
-
#: admin.inc.php:
|
193 |
msgid "Format to display the count in: "
|
194 |
msgstr "El formato de visualización de la cuenta: "
|
195 |
|
196 |
-
#: admin.inc.php:
|
197 |
#, fuzzy
|
198 |
msgid ""
|
199 |
"Use <code>%totalcount%</code> to display the total count, <code>%dailycount"
|
@@ -205,153 +206,158 @@ msgstr ""
|
|
205 |
"%dailycount%</code> para mostrar el número al día. Por ejemplo, los ajustes "
|
206 |
"predeterminados se muestran<code> (Visitado 123 veces, 23 visitas hoy)</code>"
|
207 |
|
208 |
-
#: admin.inc.php:
|
209 |
msgid "Title of popular posts: "
|
210 |
msgstr "El título de los posts más populares"
|
211 |
|
212 |
-
#: admin.inc.php:
|
213 |
msgid "Title of daily popular posts: "
|
214 |
msgstr "El título de los posts diarios más populares"
|
215 |
|
216 |
-
#: admin.inc.php:
|
217 |
msgid "When there are no posts, what should be shown?"
|
218 |
msgstr ""
|
219 |
|
220 |
-
#: admin.inc.php:
|
221 |
msgid "Blank Output"
|
222 |
msgstr ""
|
223 |
|
224 |
-
#: admin.inc.php:
|
225 |
msgid "Display:"
|
226 |
msgstr ""
|
227 |
|
228 |
-
#: admin.inc.php:
|
229 |
msgid "Show post excerpt in list?"
|
230 |
msgstr "¿Mostrar un fragmento del post en la lista?"
|
231 |
|
232 |
-
#: admin.inc.php:
|
233 |
msgid "Length of excerpt (in words): "
|
234 |
msgstr "La longitud del fragmento(en palabras):"
|
235 |
|
236 |
-
#: admin.inc.php:
|
|
|
|
|
|
|
|
|
|
|
237 |
#, fuzzy
|
238 |
msgid "Show post date in list?"
|
239 |
msgstr "¿Mostrar un fragmento del post en la lista?"
|
240 |
|
241 |
-
#: admin.inc.php:
|
242 |
msgid "Limit post title length (in characters)"
|
243 |
msgstr ""
|
244 |
|
245 |
-
#: admin.inc.php:
|
246 |
msgid "Display number of page views in popular lists?"
|
247 |
msgstr ""
|
248 |
"¿Mostrar el número de visitas de la página en las listas más populares?"
|
249 |
|
250 |
-
#: admin.inc.php:
|
251 |
msgid "Open links in new window"
|
252 |
msgstr ""
|
253 |
|
254 |
-
#: admin.inc.php:
|
255 |
msgid "Add nofollow attribute to links in the list"
|
256 |
msgstr ""
|
257 |
|
258 |
-
#: admin.inc.php:
|
259 |
msgid "Exclude display of related posts on these posts / pages"
|
260 |
msgstr ""
|
261 |
|
262 |
-
#: admin.inc.php:
|
263 |
msgid "Enter comma separated list of IDs. e.g. 188,320,500"
|
264 |
msgstr ""
|
265 |
|
266 |
-
#: admin.inc.php:
|
267 |
msgid "Customize the output:"
|
268 |
msgstr "Personalizar el resultado:"
|
269 |
|
270 |
-
#: admin.inc.php:
|
271 |
msgid "HTML to display before the list of posts: "
|
272 |
msgstr "HTML mostrar antes de la lista de posts:"
|
273 |
|
274 |
-
#: admin.inc.php:
|
275 |
msgid "HTML to display before each list item: "
|
276 |
msgstr "HTML mostrar ante cada elemento de la lista:"
|
277 |
|
278 |
-
#: admin.inc.php:
|
279 |
msgid "HTML to display after each list item: "
|
280 |
msgstr "HTML mostrar después de cada elemento de la lista:"
|
281 |
|
282 |
-
#: admin.inc.php:
|
283 |
msgid "HTML to display after the list of posts: "
|
284 |
msgstr "HTML mostrar después de la lista de posts:"
|
285 |
|
286 |
-
#: admin.inc.php:
|
287 |
msgid "Post thumbnail options:"
|
288 |
msgstr "Los parámetros del thumbnail:"
|
289 |
|
290 |
-
#: admin.inc.php:
|
291 |
msgid "Location of post thumbnail:"
|
292 |
msgstr ""
|
293 |
|
294 |
-
#: admin.inc.php:
|
295 |
msgid "Display thumbnails inline with posts, before title"
|
296 |
msgstr "Mostrar el thumbnails en línea con los posts, antes del título"
|
297 |
|
298 |
-
#: admin.inc.php:
|
299 |
msgid "Display thumbnails inline with posts, after title"
|
300 |
msgstr "Mostrar el thumbnails en línea con los posts, después del título"
|
301 |
|
302 |
-
#: admin.inc.php:
|
303 |
msgid "Display only thumbnails, no text"
|
304 |
msgstr "Mostrar solamente thumbnails, no el texto"
|
305 |
|
306 |
-
#: admin.inc.php:
|
307 |
msgid "Do not display thumbnails, only text."
|
308 |
msgstr "No mostrar thumbnails, sólo el texto"
|
309 |
|
310 |
-
#: admin.inc.php:
|
311 |
msgid "Width of the thumbnail: "
|
312 |
msgstr ""
|
313 |
|
314 |
-
#: admin.inc.php:
|
315 |
msgid "Height of the thumbnail: "
|
316 |
msgstr ""
|
317 |
|
318 |
-
#: admin.inc.php:
|
319 |
msgid "Style attributes / Width and Height HTML attributes:"
|
320 |
msgstr ""
|
321 |
|
322 |
-
#: admin.inc.php:
|
323 |
msgid ""
|
324 |
"Style attributes are used for width and height. <code>style=\"max-width:"
|
325 |
msgstr ""
|
326 |
|
327 |
-
#: admin.inc.php:
|
328 |
msgid ""
|
329 |
"HTML width and height attributes are used for width and height. <code>width="
|
330 |
"\""
|
331 |
msgstr ""
|
332 |
|
333 |
-
#: admin.inc.php:
|
334 |
msgid "Use timthumb to generate thumbnails? "
|
335 |
msgstr ""
|
336 |
|
337 |
-
#: admin.inc.php:
|
338 |
msgid ""
|
339 |
"If checked, <a href=\"http://www.binarymoon.co.uk/projects/timthumb/"
|
340 |
"\">timthumb</a> will be used to generate thumbnails"
|
341 |
msgstr ""
|
342 |
|
343 |
-
#: admin.inc.php:
|
344 |
#, fuzzy
|
345 |
msgid "Post thumbnail meta field name: "
|
346 |
msgstr "Los parámetros del thumbnail:"
|
347 |
|
348 |
-
#: admin.inc.php:
|
349 |
msgid ""
|
350 |
"The value of this field should contain the image source and is set in the "
|
351 |
"<em>Add New Post</em> screen"
|
352 |
msgstr ""
|
353 |
|
354 |
-
#: admin.inc.php:
|
355 |
#, fuzzy
|
356 |
msgid ""
|
357 |
"If the postmeta is not set, then should the plugin extract the first image "
|
@@ -362,7 +368,7 @@ msgstr ""
|
|
362 |
"en caso que la primera imagen de los posts correspondientes es muy grande en "
|
363 |
"tamaño de archivo "
|
364 |
|
365 |
-
#: admin.inc.php:
|
366 |
#, fuzzy
|
367 |
msgid ""
|
368 |
"This could slow down the loading of your page if the first image in the "
|
@@ -373,11 +379,11 @@ msgstr ""
|
|
373 |
"en caso que la primera imagen de los posts correspondientes es muy grande en "
|
374 |
"tamaño de archivo "
|
375 |
|
376 |
-
#: admin.inc.php:
|
377 |
msgid "Use default thumbnail? "
|
378 |
msgstr ""
|
379 |
|
380 |
-
#: admin.inc.php:
|
381 |
msgid ""
|
382 |
"If checked, when no thumbnail is found, show a default one from the URL "
|
383 |
"below. If not checked and no thumbnail is found, no image will be shown."
|
@@ -387,109 +393,109 @@ msgstr ""
|
|
387 |
"verificado el post y tampoco está encontrada la imagen reducida, entonces no "
|
388 |
"hay que mostrarla."
|
389 |
|
390 |
-
#: admin.inc.php:
|
391 |
msgid "Default thumbnail: "
|
392 |
msgstr ""
|
393 |
|
394 |
-
#: admin.inc.php:
|
395 |
msgid ""
|
396 |
"The plugin will first check if the post contains a thumbnail. If it doesn't "
|
397 |
"then it will check the meta field. If this is not available, then it will "
|
398 |
"show the default image as specified above"
|
399 |
msgstr ""
|
400 |
|
401 |
-
#: admin.inc.php:
|
402 |
msgid "Custom Styles"
|
403 |
msgstr ""
|
404 |
|
405 |
-
#: admin.inc.php:
|
406 |
msgid "Custom CSS to add to header:"
|
407 |
msgstr ""
|
408 |
|
409 |
-
#: admin.inc.php:
|
410 |
msgid ""
|
411 |
"Do not include <code>style</code> tags. Check out the <a href=\"http://"
|
412 |
"wordpress.org/extend/plugins/top-10/faq/\" target=\"_blank\">FAQ</a> for "
|
413 |
"available CSS classes to style."
|
414 |
msgstr ""
|
415 |
|
416 |
-
#: admin.inc.php:
|
417 |
msgid "Maintenance"
|
418 |
msgstr ""
|
419 |
|
420 |
-
#: admin.inc.php:
|
421 |
msgid ""
|
422 |
"Over time the Daily Top 10 database grows in size, which reduces the "
|
423 |
"performance of the plugin. Cleaning the database at regular intervals could "
|
424 |
"improve performance, especially on high traffic blogs."
|
425 |
msgstr ""
|
426 |
|
427 |
-
#: admin.inc.php:
|
428 |
msgid ""
|
429 |
"Note: When scheduled maintenance is enabled, WordPress will run the cron job "
|
430 |
"everytime the job is rescheduled (i.e. you change the settings below). This "
|
431 |
"causes the daily posts table to reset."
|
432 |
msgstr ""
|
433 |
|
434 |
-
#: admin.inc.php:
|
435 |
msgid "Enable scheduled maintenance of daily tables:"
|
436 |
msgstr ""
|
437 |
|
438 |
-
#: admin.inc.php:
|
439 |
msgid "Time to run maintenance"
|
440 |
msgstr ""
|
441 |
|
442 |
-
#: admin.inc.php:
|
443 |
msgid "How often should the maintenance be run:"
|
444 |
msgstr ""
|
445 |
|
446 |
-
#: admin.inc.php:
|
447 |
msgid "Daily"
|
448 |
msgstr ""
|
449 |
|
450 |
-
#: admin.inc.php:
|
451 |
msgid "Weekly"
|
452 |
msgstr ""
|
453 |
|
454 |
-
#: admin.inc.php:
|
455 |
msgid "Fortnightly"
|
456 |
msgstr ""
|
457 |
|
458 |
-
#: admin.inc.php:
|
459 |
msgid "Monthly"
|
460 |
msgstr ""
|
461 |
|
462 |
-
#: admin.inc.php:
|
463 |
msgid "The cron job has been scheduled. Maintenance will run "
|
464 |
msgstr ""
|
465 |
|
466 |
-
#: admin.inc.php:
|
467 |
msgid "The cron job is missing. Please resave this page to add the job"
|
468 |
msgstr ""
|
469 |
|
470 |
-
#: admin.inc.php:
|
471 |
msgid "Maintenance is turned off"
|
472 |
msgstr ""
|
473 |
|
474 |
-
#: admin.inc.php:
|
475 |
#, fuzzy
|
476 |
msgid "Save Options"
|
477 |
msgstr "Los parametros"
|
478 |
|
479 |
-
#: admin.inc.php:
|
480 |
#, fuzzy
|
481 |
msgid "Default Options"
|
482 |
msgstr "Los Parámetros Resultantes"
|
483 |
|
484 |
-
#: admin.inc.php:
|
485 |
msgid "Do you want to set options to Default?"
|
486 |
msgstr "¿Quiere configurar las opciones de forma predeterminada?"
|
487 |
|
488 |
-
#: admin.inc.php:
|
489 |
msgid "Reset count"
|
490 |
msgstr "Reiniciar los ajustes"
|
491 |
|
492 |
-
#: admin.inc.php:
|
493 |
msgid ""
|
494 |
"This cannot be reversed. Make sure that your database has been backed up "
|
495 |
"before proceeding"
|
@@ -497,221 +503,250 @@ msgstr ""
|
|
497 |
"Esta operación no puede ser anulada. Antes de anular, asegúrese de que si ha "
|
498 |
"sido creada una copia de seguridad para su base de datos."
|
499 |
|
500 |
-
#: admin.inc.php:
|
501 |
#, fuzzy
|
502 |
msgid "Reset Popular Posts"
|
503 |
msgstr "Los posts más populares"
|
504 |
|
505 |
-
#: admin.inc.php:
|
506 |
msgid "Are you sure you want to reset the popular posts?"
|
507 |
msgstr "¿Está seguro de que desea reiniciar los posts más populares?"
|
508 |
|
509 |
-
#: admin.inc.php:
|
510 |
#, fuzzy
|
511 |
msgid "Reset Daily Popular Posts"
|
512 |
msgstr "Los posts diarios más populares"
|
513 |
|
514 |
-
#: admin.inc.php:
|
515 |
msgid "Are you sure you want to reset the daily popular posts?"
|
516 |
msgstr "¿Está seguro de que desea reiniciar los posts diarios más populares?"
|
517 |
|
518 |
-
#: admin.inc.php:
|
519 |
msgid "Clear duplicates"
|
520 |
msgstr ""
|
521 |
|
522 |
-
#: admin.inc.php:
|
523 |
msgid "This will delete the duplicate entries in the tables. Proceed?"
|
524 |
msgstr ""
|
525 |
"Esta acción eliminará las entradas duplicadas en las tablas. ¿Continuar?"
|
526 |
|
527 |
-
#: admin.inc.php:
|
528 |
msgid "Popular Posts"
|
529 |
msgstr "Los posts más populares"
|
530 |
|
531 |
-
#: admin.inc.php:
|
532 |
msgid "Daily Popular Posts"
|
533 |
msgstr "Los posts diarios más populares"
|
534 |
|
535 |
-
#: admin.inc.php:
|
536 |
msgid "Support the development"
|
537 |
msgstr "Apoyar al elaborador"
|
538 |
|
539 |
-
#: admin.inc.php:
|
540 |
msgid "Enter amount in USD: "
|
541 |
msgstr "Ingresar las cifras en USD"
|
542 |
|
543 |
-
#: admin.inc.php:
|
544 |
msgid "Send your donation to the author of"
|
545 |
msgstr "Enviar su subvención al autor"
|
546 |
|
547 |
-
#: admin.inc.php:
|
548 |
msgid "Follow us"
|
549 |
msgstr ""
|
550 |
|
551 |
-
#: admin.inc.php:
|
552 |
#, fuzzy
|
553 |
msgid "Quick Links"
|
554 |
msgstr "Enlaces rápidos"
|
555 |
|
556 |
-
#: admin.inc.php:
|
557 |
#, fuzzy
|
558 |
msgid "Top 10 plugin page"
|
559 |
msgstr "página plugin"
|
560 |
|
561 |
-
#: admin.inc.php:
|
562 |
msgid "Other plugins"
|
563 |
msgstr "Otros plugins"
|
564 |
|
565 |
-
#: admin.inc.php:
|
566 |
msgid "Ajay's blog"
|
567 |
msgstr "Blog de Ajay"
|
568 |
|
569 |
-
#: admin.inc.php:
|
570 |
msgid "Support"
|
571 |
msgstr "Apoyo"
|
572 |
|
573 |
-
#: admin.inc.php:
|
574 |
msgid "Recent developments"
|
575 |
msgstr "Evolución reciente"
|
576 |
|
577 |
-
#: admin.inc.php:
|
578 |
#, fuzzy
|
579 |
msgid "Top 10 Settings"
|
580 |
msgstr "Los ajustes"
|
581 |
|
582 |
-
#: admin.inc.php:
|
583 |
msgid "Top 10"
|
584 |
msgstr "Тоp 10"
|
585 |
|
586 |
-
#: admin.inc.php:
|
587 |
#, fuzzy
|
588 |
msgid "Overall Popular Posts"
|
589 |
msgstr "Ver los posts más populares"
|
590 |
|
591 |
-
#: admin.inc.php:
|
592 |
msgid "Results"
|
593 |
msgstr "Resultados"
|
594 |
|
595 |
-
#: admin.inc.php:
|
596 |
msgid "of"
|
597 |
msgstr "de, a "
|
598 |
|
599 |
-
#: admin.inc.php:
|
600 |
msgid "Page"
|
601 |
msgstr "La página"
|
602 |
|
603 |
-
#: admin.inc.php:
|
604 |
msgid "View Daily Popular Posts"
|
605 |
msgstr "Ver los posts diarios más populares"
|
606 |
|
607 |
-
#: admin.inc.php:
|
608 |
msgid "Results per-page:"
|
609 |
msgstr "Los resultados por página:"
|
610 |
|
611 |
-
#: admin.inc.php:
|
612 |
msgid "View Overall Popular Posts"
|
613 |
msgstr "Ver los posts más populares"
|
614 |
|
615 |
-
#: admin.inc.php:
|
616 |
msgid "Previous"
|
617 |
msgstr "Precedentes"
|
618 |
|
619 |
-
#: admin.inc.php:
|
620 |
msgid "Next"
|
621 |
msgstr "Siguientes"
|
622 |
|
623 |
-
#: admin.inc.php:
|
624 |
msgid "Daily Popular"
|
625 |
msgstr "Diario Populares"
|
626 |
|
627 |
-
#: admin.inc.php:
|
628 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
629 |
msgstr "Total/Visitas de hoy"
|
630 |
|
631 |
-
#: top-10.php:
|
|
|
|
|
|
|
|
|
632 |
msgid "Display the posts popular this week"
|
633 |
msgstr "Mostrar los posts populares de esta semana"
|
634 |
|
635 |
-
#: top-10.php:
|
636 |
msgid "Title"
|
637 |
msgstr ""
|
638 |
|
639 |
-
#: top-10.php:
|
640 |
msgid "No. of posts"
|
641 |
msgstr ""
|
642 |
|
643 |
-
#: top-10.php:
|
644 |
msgid "Overall"
|
645 |
msgstr ""
|
646 |
|
647 |
-
#: top-10.php:
|
648 |
msgid "Custom time period (Enter below)"
|
649 |
msgstr ""
|
650 |
|
651 |
-
#: top-10.php:
|
652 |
msgid "Range in number of days (applies only to custom option above)"
|
653 |
msgstr ""
|
654 |
|
655 |
-
#: top-10.php:
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
656 |
#, fuzzy
|
657 |
msgid "Thumbnail options"
|
658 |
msgstr "Los parámetros del thumbnail:"
|
659 |
|
660 |
-
#: top-10.php:
|
661 |
#, fuzzy
|
662 |
msgid "Thumbnails inline, before title"
|
663 |
msgstr "Mostrar el thumbnails en línea con los posts, antes del título"
|
664 |
|
665 |
-
#: top-10.php:
|
666 |
#, fuzzy
|
667 |
msgid "Thumbnails inline, after title"
|
668 |
msgstr "Mostrar el thumbnails en línea con los posts, después del título"
|
669 |
|
670 |
-
#: top-10.php:
|
671 |
#, fuzzy
|
672 |
msgid "Only thumbnails, no text"
|
673 |
msgstr "Mostrar solamente thumbnails, no el texto"
|
674 |
|
675 |
-
#: top-10.php:
|
676 |
#, fuzzy
|
677 |
msgid "No thumbnails, only text."
|
678 |
msgstr "No mostrar thumbnails, sólo el texto"
|
679 |
|
680 |
-
#: top-10.php:
|
681 |
#, fuzzy
|
682 |
-
msgid "
|
683 |
-
msgstr "
|
|
|
|
|
|
|
|
|
|
|
684 |
|
685 |
-
#: top-10.php:
|
686 |
msgid "<h3>Popular Posts</h3>"
|
687 |
msgstr "Los posts populares"
|
688 |
|
689 |
-
#: top-10.php:
|
690 |
msgid "<h3>Daily Popular</h3>"
|
691 |
msgstr "Diario Populares"
|
692 |
|
693 |
-
#: top-10.php:
|
694 |
#, fuzzy
|
695 |
msgid "No top posts yet"
|
696 |
msgstr "Reiniciar el Top de los 10 posts más populares"
|
697 |
|
698 |
-
#: top-10.php:
|
699 |
msgid "Once Weekly"
|
700 |
msgstr ""
|
701 |
|
702 |
-
#: top-10.php:
|
703 |
msgid "Once Fortnightly"
|
704 |
msgstr ""
|
705 |
|
706 |
-
#: top-10.php:
|
707 |
msgid "Once Monthly"
|
708 |
msgstr ""
|
709 |
|
710 |
-
#: top-10.php:
|
711 |
msgid "Settings"
|
712 |
msgstr "Los ajustes"
|
713 |
|
714 |
-
#: top-10.php:
|
715 |
msgid "Donate"
|
716 |
msgstr "Subvencionar"
|
717 |
|
2 |
msgstr ""
|
3 |
"Project-Id-Version: Top 10\n"
|
4 |
"Report-Msgid-Bugs-To: \n"
|
5 |
+
"POT-Creation-Date: 2013-09-01 12:50-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"
|
15 |
"X-Generator: Poedit 1.5.7\n"
|
16 |
"X-Poedit-SearchPath-0: .\n"
|
17 |
|
18 |
+
#: admin.inc.php:103
|
19 |
msgid "Scheduled maintenance enabled / modified"
|
20 |
msgstr ""
|
21 |
|
22 |
+
#: admin.inc.php:107
|
23 |
msgid "Scheduled maintenance disabled"
|
24 |
msgstr ""
|
25 |
|
26 |
+
#: admin.inc.php:124
|
27 |
msgid "Options saved successfully."
|
28 |
msgstr "Configuraciones guardadas con éxito"
|
29 |
|
30 |
+
#: admin.inc.php:133
|
31 |
msgid "Options set to Default."
|
32 |
msgstr "Los parametros se configuran de manera predeterminada"
|
33 |
|
34 |
+
#: admin.inc.php:139
|
35 |
msgid "Top 10 popular posts reset"
|
36 |
msgstr "Reiniciar el Top de los 10 posts más populares"
|
37 |
|
38 |
+
#: admin.inc.php:145
|
39 |
msgid "Top 10 daily popular posts reset"
|
40 |
msgstr "Reiniciar el Top de los 10 posts diarios más populares"
|
41 |
|
42 |
+
#: admin.inc.php:152
|
43 |
msgid "Duplicate rows cleaned from tables"
|
44 |
msgstr ""
|
45 |
|
46 |
+
#: admin.inc.php:173
|
47 |
msgid "General options"
|
48 |
msgstr ""
|
49 |
|
50 |
+
#: admin.inc.php:177
|
51 |
msgid "Enable Overall stats"
|
52 |
msgstr ""
|
53 |
|
54 |
+
#: admin.inc.php:182
|
55 |
msgid "Enable Daily stats"
|
56 |
msgstr ""
|
57 |
|
58 |
+
#: admin.inc.php:187
|
59 |
msgid "W3 Total Cache fix:"
|
60 |
msgstr ""
|
61 |
|
62 |
+
#: admin.inc.php:189
|
63 |
msgid ""
|
64 |
"This will try to prevent W3 Total Cache from caching the addcount script of "
|
65 |
"the plugin. Try toggling this option in case you find that our posts are not "
|
66 |
"tracked."
|
67 |
msgstr ""
|
68 |
|
69 |
+
#: admin.inc.php:193
|
70 |
msgid "Number of popular posts to display: "
|
71 |
msgstr "Mostrar el número de posts más populares"
|
72 |
|
73 |
+
#: admin.inc.php:197
|
74 |
msgid "Daily Popular should contain views of how many days? "
|
75 |
msgstr ""
|
76 |
"Los post diarios más populares deben contener el número de visitas al día"
|
77 |
|
78 |
+
#: admin.inc.php:200
|
79 |
msgid "Post types to include in results (including custom post types)"
|
80 |
msgstr ""
|
81 |
|
82 |
+
#: admin.inc.php:211
|
83 |
msgid "List of post or page IDs to exclude from the results: "
|
84 |
msgstr ""
|
85 |
|
86 |
+
#: admin.inc.php:215
|
87 |
msgid "Exclude Categories: "
|
88 |
msgstr "Excluir las Categorías"
|
89 |
|
90 |
+
#: admin.inc.php:230
|
91 |
msgid ""
|
92 |
"Comma separated list of category slugs. The field above has an autocomplete "
|
93 |
"so simply start typing in the starting letters and it will prompt you with "
|
94 |
"options"
|
95 |
msgstr ""
|
96 |
|
97 |
+
#: admin.inc.php:235
|
98 |
#, fuzzy
|
99 |
msgid "Display number of views on:"
|
100 |
msgstr "¿Mostrar la cantidad de audiencia de los posts?"
|
101 |
|
102 |
+
#: admin.inc.php:237
|
103 |
msgid "Posts"
|
104 |
msgstr ""
|
105 |
|
106 |
+
#: admin.inc.php:238
|
107 |
#, fuzzy
|
108 |
msgid "Pages"
|
109 |
msgstr "La página"
|
110 |
|
111 |
+
#: admin.inc.php:239
|
112 |
msgid "Home page"
|
113 |
msgstr ""
|
114 |
|
115 |
+
#: admin.inc.php:240
|
116 |
msgid "Feeds"
|
117 |
msgstr ""
|
118 |
|
119 |
+
#: admin.inc.php:241
|
120 |
msgid "Category archives"
|
121 |
msgstr ""
|
122 |
|
123 |
+
#: admin.inc.php:242
|
124 |
msgid "Tag archives"
|
125 |
msgstr ""
|
126 |
|
127 |
+
#: admin.inc.php:243
|
128 |
msgid "Other archives"
|
129 |
msgstr ""
|
130 |
|
131 |
+
#: admin.inc.php:244
|
132 |
msgid ""
|
133 |
"If you choose to disable this, please add <code><?php if(function_exists"
|
134 |
"('echo_ald_tptn')) echo_ald_tptn(); ?></code> to your template file where "
|
135 |
"you want it displayed"
|
136 |
msgstr ""
|
137 |
|
138 |
+
#: admin.inc.php:247
|
139 |
msgid "Always display latest post count"
|
140 |
msgstr ""
|
141 |
|
142 |
+
#: admin.inc.php:249
|
143 |
msgid ""
|
144 |
"This option uses JavaScript and will increase your page load time. Turn this "
|
145 |
"off if you are not using caching plugins or are OK with displaying older "
|
146 |
+
"cached counts. When you enable this option, the daily widget will not use "
|
147 |
+
"the options set there, but options will need to be set on this screen."
|
148 |
msgstr ""
|
149 |
|
150 |
+
#: admin.inc.php:252
|
151 |
msgid "Always display latest post count in the daily lists"
|
152 |
msgstr ""
|
153 |
|
154 |
+
#: admin.inc.php:254
|
155 |
#, fuzzy
|
156 |
msgid "This option uses JavaScript and will increase your page load time"
|
157 |
msgstr ""
|
158 |
"¿Hacer la lista de los posts diarios más dinámica? Esta opción utiliza "
|
159 |
"JavaScript para cargar el post y también puede aumentar el tiempo de carga"
|
160 |
|
161 |
+
#: admin.inc.php:257
|
162 |
msgid "Track visits of authors on their own posts?"
|
163 |
msgstr "¿Observar las visitas de los autores a sus propios posts?"
|
164 |
|
165 |
+
#: admin.inc.php:260
|
166 |
#, fuzzy
|
167 |
msgid "Track visits of admins?"
|
168 |
msgstr "¿Observar las visitas de los autores a sus propios posts?"
|
169 |
|
170 |
+
#: admin.inc.php:263
|
171 |
msgid "Display page views on Posts > All Posts in Admin"
|
172 |
msgstr ""
|
173 |
|
174 |
+
#: admin.inc.php:266
|
175 |
msgid "Link to Top 10 plugin page"
|
176 |
msgstr ""
|
177 |
|
178 |
+
#: admin.inc.php:268
|
179 |
#, fuzzy
|
180 |
msgid ""
|
181 |
"A link to the plugin is added as an extra list item to the list of popular "
|
185 |
"elemento de una lista adicional. Esto no es obligatorio, pero le "
|
186 |
"agradeceríamos al hacerlo!"
|
187 |
|
188 |
+
#: admin.inc.php:275
|
189 |
#, fuzzy
|
190 |
msgid "Output Options"
|
191 |
msgstr "Los Parámetros Resultantes"
|
192 |
|
193 |
+
#: admin.inc.php:278
|
194 |
msgid "Format to display the count in: "
|
195 |
msgstr "El formato de visualización de la cuenta: "
|
196 |
|
197 |
+
#: admin.inc.php:280
|
198 |
#, fuzzy
|
199 |
msgid ""
|
200 |
"Use <code>%totalcount%</code> to display the total count, <code>%dailycount"
|
206 |
"%dailycount%</code> para mostrar el número al día. Por ejemplo, los ajustes "
|
207 |
"predeterminados se muestran<code> (Visitado 123 veces, 23 visitas hoy)</code>"
|
208 |
|
209 |
+
#: admin.inc.php:283
|
210 |
msgid "Title of popular posts: "
|
211 |
msgstr "El título de los posts más populares"
|
212 |
|
213 |
+
#: admin.inc.php:286
|
214 |
msgid "Title of daily popular posts: "
|
215 |
msgstr "El título de los posts diarios más populares"
|
216 |
|
217 |
+
#: admin.inc.php:289
|
218 |
msgid "When there are no posts, what should be shown?"
|
219 |
msgstr ""
|
220 |
|
221 |
+
#: admin.inc.php:293
|
222 |
msgid "Blank Output"
|
223 |
msgstr ""
|
224 |
|
225 |
+
#: admin.inc.php:297
|
226 |
msgid "Display:"
|
227 |
msgstr ""
|
228 |
|
229 |
+
#: admin.inc.php:301
|
230 |
msgid "Show post excerpt in list?"
|
231 |
msgstr "¿Mostrar un fragmento del post en la lista?"
|
232 |
|
233 |
+
#: admin.inc.php:304
|
234 |
msgid "Length of excerpt (in words): "
|
235 |
msgstr "La longitud del fragmento(en palabras):"
|
236 |
|
237 |
+
#: admin.inc.php:307
|
238 |
+
#, fuzzy
|
239 |
+
msgid "Show post author in list?"
|
240 |
+
msgstr "¿Mostrar un fragmento del post en la lista?"
|
241 |
+
|
242 |
+
#: admin.inc.php:310
|
243 |
#, fuzzy
|
244 |
msgid "Show post date in list?"
|
245 |
msgstr "¿Mostrar un fragmento del post en la lista?"
|
246 |
|
247 |
+
#: admin.inc.php:313
|
248 |
msgid "Limit post title length (in characters)"
|
249 |
msgstr ""
|
250 |
|
251 |
+
#: admin.inc.php:316
|
252 |
msgid "Display number of page views in popular lists?"
|
253 |
msgstr ""
|
254 |
"¿Mostrar el número de visitas de la página en las listas más populares?"
|
255 |
|
256 |
+
#: admin.inc.php:319
|
257 |
msgid "Open links in new window"
|
258 |
msgstr ""
|
259 |
|
260 |
+
#: admin.inc.php:322
|
261 |
msgid "Add nofollow attribute to links in the list"
|
262 |
msgstr ""
|
263 |
|
264 |
+
#: admin.inc.php:325
|
265 |
msgid "Exclude display of related posts on these posts / pages"
|
266 |
msgstr ""
|
267 |
|
268 |
+
#: admin.inc.php:328
|
269 |
msgid "Enter comma separated list of IDs. e.g. 188,320,500"
|
270 |
msgstr ""
|
271 |
|
272 |
+
#: admin.inc.php:331
|
273 |
msgid "Customize the output:"
|
274 |
msgstr "Personalizar el resultado:"
|
275 |
|
276 |
+
#: admin.inc.php:333
|
277 |
msgid "HTML to display before the list of posts: "
|
278 |
msgstr "HTML mostrar antes de la lista de posts:"
|
279 |
|
280 |
+
#: admin.inc.php:336
|
281 |
msgid "HTML to display before each list item: "
|
282 |
msgstr "HTML mostrar ante cada elemento de la lista:"
|
283 |
|
284 |
+
#: admin.inc.php:339
|
285 |
msgid "HTML to display after each list item: "
|
286 |
msgstr "HTML mostrar después de cada elemento de la lista:"
|
287 |
|
288 |
+
#: admin.inc.php:342
|
289 |
msgid "HTML to display after the list of posts: "
|
290 |
msgstr "HTML mostrar después de la lista de posts:"
|
291 |
|
292 |
+
#: admin.inc.php:345
|
293 |
msgid "Post thumbnail options:"
|
294 |
msgstr "Los parámetros del thumbnail:"
|
295 |
|
296 |
+
#: admin.inc.php:347
|
297 |
msgid "Location of post thumbnail:"
|
298 |
msgstr ""
|
299 |
|
300 |
+
#: admin.inc.php:351
|
301 |
msgid "Display thumbnails inline with posts, before title"
|
302 |
msgstr "Mostrar el thumbnails en línea con los posts, antes del título"
|
303 |
|
304 |
+
#: admin.inc.php:355
|
305 |
msgid "Display thumbnails inline with posts, after title"
|
306 |
msgstr "Mostrar el thumbnails en línea con los posts, después del título"
|
307 |
|
308 |
+
#: admin.inc.php:359
|
309 |
msgid "Display only thumbnails, no text"
|
310 |
msgstr "Mostrar solamente thumbnails, no el texto"
|
311 |
|
312 |
+
#: admin.inc.php:363
|
313 |
msgid "Do not display thumbnails, only text."
|
314 |
msgstr "No mostrar thumbnails, sólo el texto"
|
315 |
|
316 |
+
#: admin.inc.php:367
|
317 |
msgid "Width of the thumbnail: "
|
318 |
msgstr ""
|
319 |
|
320 |
+
#: admin.inc.php:370
|
321 |
msgid "Height of the thumbnail: "
|
322 |
msgstr ""
|
323 |
|
324 |
+
#: admin.inc.php:373
|
325 |
msgid "Style attributes / Width and Height HTML attributes:"
|
326 |
msgstr ""
|
327 |
|
328 |
+
#: admin.inc.php:377
|
329 |
msgid ""
|
330 |
"Style attributes are used for width and height. <code>style=\"max-width:"
|
331 |
msgstr ""
|
332 |
|
333 |
+
#: admin.inc.php:381
|
334 |
msgid ""
|
335 |
"HTML width and height attributes are used for width and height. <code>width="
|
336 |
"\""
|
337 |
msgstr ""
|
338 |
|
339 |
+
#: admin.inc.php:385
|
340 |
msgid "Use timthumb to generate thumbnails? "
|
341 |
msgstr ""
|
342 |
|
343 |
+
#: admin.inc.php:386
|
344 |
msgid ""
|
345 |
"If checked, <a href=\"http://www.binarymoon.co.uk/projects/timthumb/"
|
346 |
"\">timthumb</a> will be used to generate thumbnails"
|
347 |
msgstr ""
|
348 |
|
349 |
+
#: admin.inc.php:388
|
350 |
#, fuzzy
|
351 |
msgid "Post thumbnail meta field name: "
|
352 |
msgstr "Los parámetros del thumbnail:"
|
353 |
|
354 |
+
#: admin.inc.php:389
|
355 |
msgid ""
|
356 |
"The value of this field should contain the image source and is set in the "
|
357 |
"<em>Add New Post</em> screen"
|
358 |
msgstr ""
|
359 |
|
360 |
+
#: admin.inc.php:391
|
361 |
#, fuzzy
|
362 |
msgid ""
|
363 |
"If the postmeta is not set, then should the plugin extract the first image "
|
368 |
"en caso que la primera imagen de los posts correspondientes es muy grande en "
|
369 |
"tamaño de archivo "
|
370 |
|
371 |
+
#: admin.inc.php:392
|
372 |
#, fuzzy
|
373 |
msgid ""
|
374 |
"This could slow down the loading of your page if the first image in the "
|
379 |
"en caso que la primera imagen de los posts correspondientes es muy grande en "
|
380 |
"tamaño de archivo "
|
381 |
|
382 |
+
#: admin.inc.php:394
|
383 |
msgid "Use default thumbnail? "
|
384 |
msgstr ""
|
385 |
|
386 |
+
#: admin.inc.php:395
|
387 |
msgid ""
|
388 |
"If checked, when no thumbnail is found, show a default one from the URL "
|
389 |
"below. If not checked and no thumbnail is found, no image will be shown."
|
393 |
"verificado el post y tampoco está encontrada la imagen reducida, entonces no "
|
394 |
"hay que mostrarla."
|
395 |
|
396 |
+
#: admin.inc.php:397
|
397 |
msgid "Default thumbnail: "
|
398 |
msgstr ""
|
399 |
|
400 |
+
#: admin.inc.php:398
|
401 |
msgid ""
|
402 |
"The plugin will first check if the post contains a thumbnail. If it doesn't "
|
403 |
"then it will check the meta field. If this is not available, then it will "
|
404 |
"show the default image as specified above"
|
405 |
msgstr ""
|
406 |
|
407 |
+
#: admin.inc.php:404
|
408 |
msgid "Custom Styles"
|
409 |
msgstr ""
|
410 |
|
411 |
+
#: admin.inc.php:407
|
412 |
msgid "Custom CSS to add to header:"
|
413 |
msgstr ""
|
414 |
|
415 |
+
#: admin.inc.php:410
|
416 |
msgid ""
|
417 |
"Do not include <code>style</code> tags. Check out the <a href=\"http://"
|
418 |
"wordpress.org/extend/plugins/top-10/faq/\" target=\"_blank\">FAQ</a> for "
|
419 |
"available CSS classes to style."
|
420 |
msgstr ""
|
421 |
|
422 |
+
#: admin.inc.php:417
|
423 |
msgid "Maintenance"
|
424 |
msgstr ""
|
425 |
|
426 |
+
#: admin.inc.php:421
|
427 |
msgid ""
|
428 |
"Over time the Daily Top 10 database grows in size, which reduces the "
|
429 |
"performance of the plugin. Cleaning the database at regular intervals could "
|
430 |
"improve performance, especially on high traffic blogs."
|
431 |
msgstr ""
|
432 |
|
433 |
+
#: admin.inc.php:422
|
434 |
msgid ""
|
435 |
"Note: When scheduled maintenance is enabled, WordPress will run the cron job "
|
436 |
"everytime the job is rescheduled (i.e. you change the settings below). This "
|
437 |
"causes the daily posts table to reset."
|
438 |
msgstr ""
|
439 |
|
440 |
+
#: admin.inc.php:425
|
441 |
msgid "Enable scheduled maintenance of daily tables:"
|
442 |
msgstr ""
|
443 |
|
444 |
+
#: admin.inc.php:429
|
445 |
msgid "Time to run maintenance"
|
446 |
msgstr ""
|
447 |
|
448 |
+
#: admin.inc.php:432
|
449 |
msgid "How often should the maintenance be run:"
|
450 |
msgstr ""
|
451 |
|
452 |
+
#: admin.inc.php:436
|
453 |
msgid "Daily"
|
454 |
msgstr ""
|
455 |
|
456 |
+
#: admin.inc.php:440
|
457 |
msgid "Weekly"
|
458 |
msgstr ""
|
459 |
|
460 |
+
#: admin.inc.php:444
|
461 |
msgid "Fortnightly"
|
462 |
msgstr ""
|
463 |
|
464 |
+
#: admin.inc.php:448
|
465 |
msgid "Monthly"
|
466 |
msgstr ""
|
467 |
|
468 |
+
#: admin.inc.php:457
|
469 |
msgid "The cron job has been scheduled. Maintenance will run "
|
470 |
msgstr ""
|
471 |
|
472 |
+
#: admin.inc.php:462
|
473 |
msgid "The cron job is missing. Please resave this page to add the job"
|
474 |
msgstr ""
|
475 |
|
476 |
+
#: admin.inc.php:467
|
477 |
msgid "Maintenance is turned off"
|
478 |
msgstr ""
|
479 |
|
480 |
+
#: admin.inc.php:475
|
481 |
#, fuzzy
|
482 |
msgid "Save Options"
|
483 |
msgstr "Los parametros"
|
484 |
|
485 |
+
#: admin.inc.php:476
|
486 |
#, fuzzy
|
487 |
msgid "Default Options"
|
488 |
msgstr "Los Parámetros Resultantes"
|
489 |
|
490 |
+
#: admin.inc.php:476
|
491 |
msgid "Do you want to set options to Default?"
|
492 |
msgstr "¿Quiere configurar las opciones de forma predeterminada?"
|
493 |
|
494 |
+
#: admin.inc.php:480
|
495 |
msgid "Reset count"
|
496 |
msgstr "Reiniciar los ajustes"
|
497 |
|
498 |
+
#: admin.inc.php:483
|
499 |
msgid ""
|
500 |
"This cannot be reversed. Make sure that your database has been backed up "
|
501 |
"before proceeding"
|
503 |
"Esta operación no puede ser anulada. Antes de anular, asegúrese de que si ha "
|
504 |
"sido creada una copia de seguridad para su base de datos."
|
505 |
|
506 |
+
#: admin.inc.php:486
|
507 |
#, fuzzy
|
508 |
msgid "Reset Popular Posts"
|
509 |
msgstr "Los posts más populares"
|
510 |
|
511 |
+
#: admin.inc.php:486
|
512 |
msgid "Are you sure you want to reset the popular posts?"
|
513 |
msgstr "¿Está seguro de que desea reiniciar los posts más populares?"
|
514 |
|
515 |
+
#: admin.inc.php:487
|
516 |
#, fuzzy
|
517 |
msgid "Reset Daily Popular Posts"
|
518 |
msgstr "Los posts diarios más populares"
|
519 |
|
520 |
+
#: admin.inc.php:487
|
521 |
msgid "Are you sure you want to reset the daily popular posts?"
|
522 |
msgstr "¿Está seguro de que desea reiniciar los posts diarios más populares?"
|
523 |
|
524 |
+
#: admin.inc.php:488
|
525 |
msgid "Clear duplicates"
|
526 |
msgstr ""
|
527 |
|
528 |
+
#: admin.inc.php:488
|
529 |
msgid "This will delete the duplicate entries in the tables. Proceed?"
|
530 |
msgstr ""
|
531 |
"Esta acción eliminará las entradas duplicadas en las tablas. ¿Continuar?"
|
532 |
|
533 |
+
#: admin.inc.php:531 admin.inc.php:906 top-10.php:476
|
534 |
msgid "Popular Posts"
|
535 |
msgstr "Los posts más populares"
|
536 |
|
537 |
+
#: admin.inc.php:531 admin.inc.php:618
|
538 |
msgid "Daily Popular Posts"
|
539 |
msgstr "Los posts diarios más populares"
|
540 |
|
541 |
+
#: admin.inc.php:559
|
542 |
msgid "Support the development"
|
543 |
msgstr "Apoyar al elaborador"
|
544 |
|
545 |
+
#: admin.inc.php:567
|
546 |
msgid "Enter amount in USD: "
|
547 |
msgstr "Ingresar las cifras en USD"
|
548 |
|
549 |
+
#: admin.inc.php:571
|
550 |
msgid "Send your donation to the author of"
|
551 |
msgstr "Enviar su subvención al autor"
|
552 |
|
553 |
+
#: admin.inc.php:577
|
554 |
msgid "Follow us"
|
555 |
msgstr ""
|
556 |
|
557 |
+
#: admin.inc.php:583
|
558 |
#, fuzzy
|
559 |
msgid "Quick Links"
|
560 |
msgstr "Enlaces rápidos"
|
561 |
|
562 |
+
#: admin.inc.php:585
|
563 |
#, fuzzy
|
564 |
msgid "Top 10 plugin page"
|
565 |
msgstr "página plugin"
|
566 |
|
567 |
+
#: admin.inc.php:586
|
568 |
msgid "Other plugins"
|
569 |
msgstr "Otros plugins"
|
570 |
|
571 |
+
#: admin.inc.php:587
|
572 |
msgid "Ajay's blog"
|
573 |
msgstr "Blog de Ajay"
|
574 |
|
575 |
+
#: admin.inc.php:588 top-10.php:1123
|
576 |
msgid "Support"
|
577 |
msgstr "Apoyo"
|
578 |
|
579 |
+
#: admin.inc.php:592
|
580 |
msgid "Recent developments"
|
581 |
msgstr "Evolución reciente"
|
582 |
|
583 |
+
#: admin.inc.php:609 admin.inc.php:612
|
584 |
#, fuzzy
|
585 |
msgid "Top 10 Settings"
|
586 |
msgstr "Los ajustes"
|
587 |
|
588 |
+
#: admin.inc.php:609
|
589 |
msgid "Top 10"
|
590 |
msgstr "Тоp 10"
|
591 |
|
592 |
+
#: admin.inc.php:615
|
593 |
#, fuzzy
|
594 |
msgid "Overall Popular Posts"
|
595 |
msgstr "Ver los posts más populares"
|
596 |
|
597 |
+
#: admin.inc.php:786
|
598 |
msgid "Results"
|
599 |
msgstr "Resultados"
|
600 |
|
601 |
+
#: admin.inc.php:788 admin.inc.php:794
|
602 |
msgid "of"
|
603 |
msgstr "de, a "
|
604 |
|
605 |
+
#: admin.inc.php:792
|
606 |
msgid "Page"
|
607 |
msgstr "La página"
|
608 |
|
609 |
+
#: admin.inc.php:806
|
610 |
msgid "View Daily Popular Posts"
|
611 |
msgstr "Ver los posts diarios más populares"
|
612 |
|
613 |
+
#: admin.inc.php:809 admin.inc.php:822
|
614 |
msgid "Results per-page:"
|
615 |
msgstr "Los resultados por página:"
|
616 |
|
617 |
+
#: admin.inc.php:819
|
618 |
msgid "View Overall Popular Posts"
|
619 |
msgstr "Ver los posts más populares"
|
620 |
|
621 |
+
#: admin.inc.php:848
|
622 |
msgid "Previous"
|
623 |
msgstr "Precedentes"
|
624 |
|
625 |
+
#: admin.inc.php:866
|
626 |
msgid "Next"
|
627 |
msgstr "Siguientes"
|
628 |
|
629 |
+
#: admin.inc.php:907
|
630 |
msgid "Daily Popular"
|
631 |
msgstr "Diario Populares"
|
632 |
|
633 |
+
#: admin.inc.php:923
|
634 |
+
#, fuzzy
|
635 |
+
msgid "Total Views"
|
636 |
+
msgstr "Total/Visitas de hoy"
|
637 |
+
|
638 |
+
#: admin.inc.php:924
|
639 |
+
#, fuzzy
|
640 |
+
msgid "Today's Views"
|
641 |
msgstr "Total/Visitas de hoy"
|
642 |
|
643 |
+
#: top-10.php:393
|
644 |
+
msgid " Posted by "
|
645 |
+
msgstr ""
|
646 |
+
|
647 |
+
#: top-10.php:475
|
648 |
msgid "Display the posts popular this week"
|
649 |
msgstr "Mostrar los posts populares de esta semana"
|
650 |
|
651 |
+
#: top-10.php:493
|
652 |
msgid "Title"
|
653 |
msgstr ""
|
654 |
|
655 |
+
#: top-10.php:498
|
656 |
msgid "No. of posts"
|
657 |
msgstr ""
|
658 |
|
659 |
+
#: top-10.php:503
|
660 |
msgid "Overall"
|
661 |
msgstr ""
|
662 |
|
663 |
+
#: top-10.php:504
|
664 |
msgid "Custom time period (Enter below)"
|
665 |
msgstr ""
|
666 |
|
667 |
+
#: top-10.php:509
|
668 |
msgid "Range in number of days (applies only to custom option above)"
|
669 |
msgstr ""
|
670 |
|
671 |
+
#: top-10.php:514
|
672 |
+
#, fuzzy
|
673 |
+
msgid " Show excerpt?"
|
674 |
+
msgstr "¿Mostrar un fragmento del post en la lista?"
|
675 |
+
|
676 |
+
#: top-10.php:519
|
677 |
+
msgid " Show author?"
|
678 |
+
msgstr ""
|
679 |
+
|
680 |
+
#: top-10.php:524
|
681 |
+
#, fuzzy
|
682 |
+
msgid " Show date?"
|
683 |
+
msgstr "¿Mostrar un fragmento del post en la lista?"
|
684 |
+
|
685 |
+
#: top-10.php:528
|
686 |
#, fuzzy
|
687 |
msgid "Thumbnail options"
|
688 |
msgstr "Los parámetros del thumbnail:"
|
689 |
|
690 |
+
#: top-10.php:530
|
691 |
#, fuzzy
|
692 |
msgid "Thumbnails inline, before title"
|
693 |
msgstr "Mostrar el thumbnails en línea con los posts, antes del título"
|
694 |
|
695 |
+
#: top-10.php:531
|
696 |
#, fuzzy
|
697 |
msgid "Thumbnails inline, after title"
|
698 |
msgstr "Mostrar el thumbnails en línea con los posts, después del título"
|
699 |
|
700 |
+
#: top-10.php:532
|
701 |
#, fuzzy
|
702 |
msgid "Only thumbnails, no text"
|
703 |
msgstr "Mostrar solamente thumbnails, no el texto"
|
704 |
|
705 |
+
#: top-10.php:533
|
706 |
#, fuzzy
|
707 |
msgid "No thumbnails, only text."
|
708 |
msgstr "No mostrar thumbnails, sólo el texto"
|
709 |
|
710 |
+
#: top-10.php:538
|
711 |
#, fuzzy
|
712 |
+
msgid "Thumbnail height"
|
713 |
+
msgstr "Los parámetros del thumbnail:"
|
714 |
+
|
715 |
+
#: top-10.php:543
|
716 |
+
#, fuzzy
|
717 |
+
msgid "Thumbnail width"
|
718 |
+
msgstr "Los parámetros del thumbnail:"
|
719 |
|
720 |
+
#: top-10.php:646
|
721 |
msgid "<h3>Popular Posts</h3>"
|
722 |
msgstr "Los posts populares"
|
723 |
|
724 |
+
#: top-10.php:647
|
725 |
msgid "<h3>Daily Popular</h3>"
|
726 |
msgstr "Diario Populares"
|
727 |
|
728 |
+
#: top-10.php:648
|
729 |
#, fuzzy
|
730 |
msgid "No top posts yet"
|
731 |
msgstr "Reiniciar el Top de los 10 posts más populares"
|
732 |
|
733 |
+
#: top-10.php:1089
|
734 |
msgid "Once Weekly"
|
735 |
msgstr ""
|
736 |
|
737 |
+
#: top-10.php:1090
|
738 |
msgid "Once Fortnightly"
|
739 |
msgstr ""
|
740 |
|
741 |
+
#: top-10.php:1091
|
742 |
msgid "Once Monthly"
|
743 |
msgstr ""
|
744 |
|
745 |
+
#: top-10.php:1111
|
746 |
msgid "Settings"
|
747 |
msgstr "Los ajustes"
|
748 |
|
749 |
+
#: top-10.php:1124
|
750 |
msgid "Donate"
|
751 |
msgstr "Subvencionar"
|
752 |
|
languages/tptn-fr_FR.mo
CHANGED
Binary file
|
languages/tptn-fr_FR.po
CHANGED
@@ -2,7 +2,7 @@ msgid ""
|
|
2 |
msgstr ""
|
3 |
"Project-Id-Version: Top 10\n"
|
4 |
"Report-Msgid-Bugs-To: \n"
|
5 |
-
"POT-Creation-Date: 2013-
|
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"
|
@@ -15,142 +15,143 @@ msgstr ""
|
|
15 |
"X-Generator: Poedit 1.5.7\n"
|
16 |
"X-Poedit-SearchPath-0: .\n"
|
17 |
|
18 |
-
#: admin.inc.php:
|
19 |
msgid "Scheduled maintenance enabled / modified"
|
20 |
msgstr ""
|
21 |
|
22 |
-
#: admin.inc.php:
|
23 |
msgid "Scheduled maintenance disabled"
|
24 |
msgstr ""
|
25 |
|
26 |
-
#: admin.inc.php:
|
27 |
msgid "Options saved successfully."
|
28 |
msgstr "Les options sont sauvegardées avec succès"
|
29 |
|
30 |
-
#: admin.inc.php:
|
31 |
msgid "Options set to Default."
|
32 |
msgstr "Options par défaut sont définies"
|
33 |
|
34 |
-
#: admin.inc.php:
|
35 |
msgid "Top 10 popular posts reset"
|
36 |
msgstr "Annuler le top 10 des enregistrements les plus populaires"
|
37 |
|
38 |
-
#: admin.inc.php:
|
39 |
msgid "Top 10 daily popular posts reset"
|
40 |
msgstr "Annuler le top 10 des messages les plus populaires journaliers"
|
41 |
|
42 |
-
#: admin.inc.php:
|
43 |
msgid "Duplicate rows cleaned from tables"
|
44 |
msgstr ""
|
45 |
|
46 |
-
#: admin.inc.php:
|
47 |
msgid "General options"
|
48 |
msgstr ""
|
49 |
|
50 |
-
#: admin.inc.php:
|
51 |
msgid "Enable Overall stats"
|
52 |
msgstr ""
|
53 |
|
54 |
-
#: admin.inc.php:
|
55 |
msgid "Enable Daily stats"
|
56 |
msgstr ""
|
57 |
|
58 |
-
#: admin.inc.php:
|
59 |
msgid "W3 Total Cache fix:"
|
60 |
msgstr ""
|
61 |
|
62 |
-
#: admin.inc.php:
|
63 |
msgid ""
|
64 |
"This will try to prevent W3 Total Cache from caching the addcount script of "
|
65 |
"the plugin. Try toggling this option in case you find that our posts are not "
|
66 |
"tracked."
|
67 |
msgstr ""
|
68 |
|
69 |
-
#: admin.inc.php:
|
70 |
msgid "Number of popular posts to display: "
|
71 |
msgstr "Le nombre de populaires sur le forum"
|
72 |
|
73 |
-
#: admin.inc.php:
|
74 |
msgid "Daily Popular should contain views of how many days? "
|
75 |
msgstr ""
|
76 |
"Le populaire journalier doit contenir l'information sur le nombre des jours"
|
77 |
|
78 |
-
#: admin.inc.php:
|
79 |
msgid "Post types to include in results (including custom post types)"
|
80 |
msgstr ""
|
81 |
|
82 |
-
#: admin.inc.php:
|
83 |
msgid "List of post or page IDs to exclude from the results: "
|
84 |
msgstr ""
|
85 |
|
86 |
-
#: admin.inc.php:
|
87 |
msgid "Exclude Categories: "
|
88 |
msgstr "Exclure les catégories:"
|
89 |
|
90 |
-
#: admin.inc.php:
|
91 |
msgid ""
|
92 |
"Comma separated list of category slugs. The field above has an autocomplete "
|
93 |
"so simply start typing in the starting letters and it will prompt you with "
|
94 |
"options"
|
95 |
msgstr ""
|
96 |
|
97 |
-
#: admin.inc.php:
|
98 |
#, fuzzy
|
99 |
msgid "Display number of views on:"
|
100 |
msgstr "Afficher le nombre des visionnages du message?"
|
101 |
|
102 |
-
#: admin.inc.php:
|
103 |
msgid "Posts"
|
104 |
msgstr ""
|
105 |
|
106 |
-
#: admin.inc.php:
|
107 |
#, fuzzy
|
108 |
msgid "Pages"
|
109 |
msgstr "Page"
|
110 |
|
111 |
-
#: admin.inc.php:
|
112 |
msgid "Home page"
|
113 |
msgstr ""
|
114 |
|
115 |
-
#: admin.inc.php:
|
116 |
msgid "Feeds"
|
117 |
msgstr ""
|
118 |
|
119 |
-
#: admin.inc.php:
|
120 |
msgid "Category archives"
|
121 |
msgstr ""
|
122 |
|
123 |
-
#: admin.inc.php:
|
124 |
msgid "Tag archives"
|
125 |
msgstr ""
|
126 |
|
127 |
-
#: admin.inc.php:
|
128 |
msgid "Other archives"
|
129 |
msgstr ""
|
130 |
|
131 |
-
#: admin.inc.php:
|
132 |
msgid ""
|
133 |
"If you choose to disable this, please add <code><?php if(function_exists"
|
134 |
"('echo_ald_tptn')) echo_ald_tptn(); ?></code> to your template file where "
|
135 |
"you want it displayed"
|
136 |
msgstr ""
|
137 |
|
138 |
-
#: admin.inc.php:
|
139 |
msgid "Always display latest post count"
|
140 |
msgstr ""
|
141 |
|
142 |
-
#: admin.inc.php:
|
143 |
msgid ""
|
144 |
"This option uses JavaScript and will increase your page load time. Turn this "
|
145 |
"off if you are not using caching plugins or are OK with displaying older "
|
146 |
-
"cached counts"
|
|
|
147 |
msgstr ""
|
148 |
|
149 |
-
#: admin.inc.php:
|
150 |
msgid "Always display latest post count in the daily lists"
|
151 |
msgstr ""
|
152 |
|
153 |
-
#: admin.inc.php:
|
154 |
#, fuzzy
|
155 |
msgid "This option uses JavaScript and will increase your page load time"
|
156 |
msgstr ""
|
@@ -158,24 +159,24 @@ msgstr ""
|
|
158 |
"JavaScript, le chargement du poste peut augmenter le temps du chargement de "
|
159 |
"la page"
|
160 |
|
161 |
-
#: admin.inc.php:
|
162 |
msgid "Track visits of authors on their own posts?"
|
163 |
msgstr "Suivre les visites des auteurs de leurs propres messages?"
|
164 |
|
165 |
-
#: admin.inc.php:
|
166 |
#, fuzzy
|
167 |
msgid "Track visits of admins?"
|
168 |
msgstr "Suivre les visites des auteurs de leurs propres messages?"
|
169 |
|
170 |
-
#: admin.inc.php:
|
171 |
msgid "Display page views on Posts > All Posts in Admin"
|
172 |
msgstr ""
|
173 |
|
174 |
-
#: admin.inc.php:
|
175 |
msgid "Link to Top 10 plugin page"
|
176 |
msgstr ""
|
177 |
|
178 |
-
#: admin.inc.php:
|
179 |
#, fuzzy
|
180 |
msgid ""
|
181 |
"A link to the plugin is added as an extra list item to the list of popular "
|
@@ -185,16 +186,16 @@ msgstr ""
|
|
185 |
"le répertoire des enregistrements populaires. Cela n'est pas obligatoire, "
|
186 |
"mais nous vous y remercions!"
|
187 |
|
188 |
-
#: admin.inc.php:
|
189 |
#, fuzzy
|
190 |
msgid "Output Options"
|
191 |
msgstr "Paramètres de sortie"
|
192 |
|
193 |
-
#: admin.inc.php:
|
194 |
msgid "Format to display the count in: "
|
195 |
msgstr "Format d’affichage de la quantité en:"
|
196 |
|
197 |
-
#: admin.inc.php:
|
198 |
#, fuzzy
|
199 |
msgid ""
|
200 |
"Use <code>%totalcount%</code> to display the total count, <code>%dailycount"
|
@@ -207,153 +208,158 @@ msgstr ""
|
|
207 |
"utiliser par exemple, les paramètres d'affichage par défaut <code>(Visited "
|
208 |
"123 times, 23 visits today)</code>"
|
209 |
|
210 |
-
#: admin.inc.php:
|
211 |
msgid "Title of popular posts: "
|
212 |
msgstr "Les en-têtes des messages populaires"
|
213 |
|
214 |
-
#: admin.inc.php:
|
215 |
msgid "Title of daily popular posts: "
|
216 |
msgstr "Les en-têtes des messages populaires journaliers"
|
217 |
|
218 |
-
#: admin.inc.php:
|
219 |
msgid "When there are no posts, what should be shown?"
|
220 |
msgstr ""
|
221 |
|
222 |
-
#: admin.inc.php:
|
223 |
msgid "Blank Output"
|
224 |
msgstr ""
|
225 |
|
226 |
-
#: admin.inc.php:
|
227 |
msgid "Display:"
|
228 |
msgstr ""
|
229 |
|
230 |
-
#: admin.inc.php:
|
231 |
msgid "Show post excerpt in list?"
|
232 |
msgstr "Afficher le fragment du message dans la liste?"
|
233 |
|
234 |
-
#: admin.inc.php:
|
235 |
msgid "Length of excerpt (in words): "
|
236 |
msgstr "Longueur du fragment (mots):"
|
237 |
|
238 |
-
#: admin.inc.php:
|
|
|
|
|
|
|
|
|
|
|
239 |
#, fuzzy
|
240 |
msgid "Show post date in list?"
|
241 |
msgstr "Afficher le fragment du message dans la liste?"
|
242 |
|
243 |
-
#: admin.inc.php:
|
244 |
msgid "Limit post title length (in characters)"
|
245 |
msgstr ""
|
246 |
|
247 |
-
#: admin.inc.php:
|
248 |
msgid "Display number of page views in popular lists?"
|
249 |
msgstr ""
|
250 |
"Afficher le nombre des visionnages des pages dans les listes de popularité?"
|
251 |
|
252 |
-
#: admin.inc.php:
|
253 |
msgid "Open links in new window"
|
254 |
msgstr ""
|
255 |
|
256 |
-
#: admin.inc.php:
|
257 |
msgid "Add nofollow attribute to links in the list"
|
258 |
msgstr ""
|
259 |
|
260 |
-
#: admin.inc.php:
|
261 |
msgid "Exclude display of related posts on these posts / pages"
|
262 |
msgstr ""
|
263 |
|
264 |
-
#: admin.inc.php:
|
265 |
msgid "Enter comma separated list of IDs. e.g. 188,320,500"
|
266 |
msgstr ""
|
267 |
|
268 |
-
#: admin.inc.php:
|
269 |
msgid "Customize the output:"
|
270 |
msgstr "Paramétrer la sortie:"
|
271 |
|
272 |
-
#: admin.inc.php:
|
273 |
msgid "HTML to display before the list of posts: "
|
274 |
msgstr "HTML d'affichage avant la liste des messages:"
|
275 |
|
276 |
-
#: admin.inc.php:
|
277 |
msgid "HTML to display before each list item: "
|
278 |
msgstr "HTML d'affichage avant chaque élément de la liste:"
|
279 |
|
280 |
-
#: admin.inc.php:
|
281 |
msgid "HTML to display after each list item: "
|
282 |
msgstr "HTML d'affichage après chaque élément de la liste:"
|
283 |
|
284 |
-
#: admin.inc.php:
|
285 |
msgid "HTML to display after the list of posts: "
|
286 |
msgstr "HTML d'affichage après la liste des messages:"
|
287 |
|
288 |
-
#: admin.inc.php:
|
289 |
msgid "Post thumbnail options:"
|
290 |
msgstr "Options thumbnail des messages:"
|
291 |
|
292 |
-
#: admin.inc.php:
|
293 |
msgid "Location of post thumbnail:"
|
294 |
msgstr ""
|
295 |
|
296 |
-
#: admin.inc.php:
|
297 |
msgid "Display thumbnails inline with posts, before title"
|
298 |
msgstr "Afficher le thumbnail encastré et les messages avant l'en-tête"
|
299 |
|
300 |
-
#: admin.inc.php:
|
301 |
msgid "Display thumbnails inline with posts, after title"
|
302 |
msgstr "Afficher le thumbnail encastré et les messages après l'en-tête"
|
303 |
|
304 |
-
#: admin.inc.php:
|
305 |
msgid "Display only thumbnails, no text"
|
306 |
msgstr "Afficher uniquement le thumbnail, sans le texte"
|
307 |
|
308 |
-
#: admin.inc.php:
|
309 |
msgid "Do not display thumbnails, only text."
|
310 |
msgstr "Ne pas afficher le thumbnail, uniquement le texte"
|
311 |
|
312 |
-
#: admin.inc.php:
|
313 |
msgid "Width of the thumbnail: "
|
314 |
msgstr ""
|
315 |
|
316 |
-
#: admin.inc.php:
|
317 |
msgid "Height of the thumbnail: "
|
318 |
msgstr ""
|
319 |
|
320 |
-
#: admin.inc.php:
|
321 |
msgid "Style attributes / Width and Height HTML attributes:"
|
322 |
msgstr ""
|
323 |
|
324 |
-
#: admin.inc.php:
|
325 |
msgid ""
|
326 |
"Style attributes are used for width and height. <code>style=\"max-width:"
|
327 |
msgstr ""
|
328 |
|
329 |
-
#: admin.inc.php:
|
330 |
msgid ""
|
331 |
"HTML width and height attributes are used for width and height. <code>width="
|
332 |
"\""
|
333 |
msgstr ""
|
334 |
|
335 |
-
#: admin.inc.php:
|
336 |
msgid "Use timthumb to generate thumbnails? "
|
337 |
msgstr ""
|
338 |
|
339 |
-
#: admin.inc.php:
|
340 |
msgid ""
|
341 |
"If checked, <a href=\"http://www.binarymoon.co.uk/projects/timthumb/"
|
342 |
"\">timthumb</a> will be used to generate thumbnails"
|
343 |
msgstr ""
|
344 |
|
345 |
-
#: admin.inc.php:
|
346 |
#, fuzzy
|
347 |
msgid "Post thumbnail meta field name: "
|
348 |
msgstr "Options thumbnail des messages:"
|
349 |
|
350 |
-
#: admin.inc.php:
|
351 |
msgid ""
|
352 |
"The value of this field should contain the image source and is set in the "
|
353 |
"<em>Add New Post</em> screen"
|
354 |
msgstr ""
|
355 |
|
356 |
-
#: admin.inc.php:
|
357 |
#, fuzzy
|
358 |
msgid ""
|
359 |
"If the postmeta is not set, then should the plugin extract the first image "
|
@@ -364,7 +370,7 @@ msgstr ""
|
|
364 |
"première image de la résolution correspondante du fichier est de taille "
|
365 |
"supérieure"
|
366 |
|
367 |
-
#: admin.inc.php:
|
368 |
#, fuzzy
|
369 |
msgid ""
|
370 |
"This could slow down the loading of your page if the first image in the "
|
@@ -375,11 +381,11 @@ msgstr ""
|
|
375 |
"première image de la résolution correspondante du fichier est de taille "
|
376 |
"supérieure"
|
377 |
|
378 |
-
#: admin.inc.php:
|
379 |
msgid "Use default thumbnail? "
|
380 |
msgstr ""
|
381 |
|
382 |
-
#: admin.inc.php:
|
383 |
msgid ""
|
384 |
"If checked, when no thumbnail is found, show a default one from the URL "
|
385 |
"below. If not checked and no thumbnail is found, no image will be shown."
|
@@ -388,109 +394,109 @@ msgstr ""
|
|
388 |
"Thumbnail par défaut. S'il n'a pas été déterminé, que le thumbnail n'a pas "
|
389 |
"été retrouvé, ne pas afficher l'image."
|
390 |
|
391 |
-
#: admin.inc.php:
|
392 |
msgid "Default thumbnail: "
|
393 |
msgstr ""
|
394 |
|
395 |
-
#: admin.inc.php:
|
396 |
msgid ""
|
397 |
"The plugin will first check if the post contains a thumbnail. If it doesn't "
|
398 |
"then it will check the meta field. If this is not available, then it will "
|
399 |
"show the default image as specified above"
|
400 |
msgstr ""
|
401 |
|
402 |
-
#: admin.inc.php:
|
403 |
msgid "Custom Styles"
|
404 |
msgstr ""
|
405 |
|
406 |
-
#: admin.inc.php:
|
407 |
msgid "Custom CSS to add to header:"
|
408 |
msgstr ""
|
409 |
|
410 |
-
#: admin.inc.php:
|
411 |
msgid ""
|
412 |
"Do not include <code>style</code> tags. Check out the <a href=\"http://"
|
413 |
"wordpress.org/extend/plugins/top-10/faq/\" target=\"_blank\">FAQ</a> for "
|
414 |
"available CSS classes to style."
|
415 |
msgstr ""
|
416 |
|
417 |
-
#: admin.inc.php:
|
418 |
msgid "Maintenance"
|
419 |
msgstr ""
|
420 |
|
421 |
-
#: admin.inc.php:
|
422 |
msgid ""
|
423 |
"Over time the Daily Top 10 database grows in size, which reduces the "
|
424 |
"performance of the plugin. Cleaning the database at regular intervals could "
|
425 |
"improve performance, especially on high traffic blogs."
|
426 |
msgstr ""
|
427 |
|
428 |
-
#: admin.inc.php:
|
429 |
msgid ""
|
430 |
"Note: When scheduled maintenance is enabled, WordPress will run the cron job "
|
431 |
"everytime the job is rescheduled (i.e. you change the settings below). This "
|
432 |
"causes the daily posts table to reset."
|
433 |
msgstr ""
|
434 |
|
435 |
-
#: admin.inc.php:
|
436 |
msgid "Enable scheduled maintenance of daily tables:"
|
437 |
msgstr ""
|
438 |
|
439 |
-
#: admin.inc.php:
|
440 |
msgid "Time to run maintenance"
|
441 |
msgstr ""
|
442 |
|
443 |
-
#: admin.inc.php:
|
444 |
msgid "How often should the maintenance be run:"
|
445 |
msgstr ""
|
446 |
|
447 |
-
#: admin.inc.php:
|
448 |
msgid "Daily"
|
449 |
msgstr ""
|
450 |
|
451 |
-
#: admin.inc.php:
|
452 |
msgid "Weekly"
|
453 |
msgstr ""
|
454 |
|
455 |
-
#: admin.inc.php:
|
456 |
msgid "Fortnightly"
|
457 |
msgstr ""
|
458 |
|
459 |
-
#: admin.inc.php:
|
460 |
msgid "Monthly"
|
461 |
msgstr ""
|
462 |
|
463 |
-
#: admin.inc.php:
|
464 |
msgid "The cron job has been scheduled. Maintenance will run "
|
465 |
msgstr ""
|
466 |
|
467 |
-
#: admin.inc.php:
|
468 |
msgid "The cron job is missing. Please resave this page to add the job"
|
469 |
msgstr ""
|
470 |
|
471 |
-
#: admin.inc.php:
|
472 |
msgid "Maintenance is turned off"
|
473 |
msgstr ""
|
474 |
|
475 |
-
#: admin.inc.php:
|
476 |
#, fuzzy
|
477 |
msgid "Save Options"
|
478 |
msgstr "Options:"
|
479 |
|
480 |
-
#: admin.inc.php:
|
481 |
#, fuzzy
|
482 |
msgid "Default Options"
|
483 |
msgstr "Paramètres de sortie"
|
484 |
|
485 |
-
#: admin.inc.php:
|
486 |
msgid "Do you want to set options to Default?"
|
487 |
msgstr "Définir les paramètres par défaut?"
|
488 |
|
489 |
-
#: admin.inc.php:
|
490 |
msgid "Reset count"
|
491 |
msgstr "Réinitialiser le compteur"
|
492 |
|
493 |
-
#: admin.inc.php:
|
494 |
msgid ""
|
495 |
"This cannot be reversed. Make sure that your database has been backed up "
|
496 |
"before proceeding"
|
@@ -498,221 +504,250 @@ msgstr ""
|
|
498 |
"Cette action ne peut être annulée. Assurez-vous que la base de données a été "
|
499 |
"sauvegardée avant de poursuivre."
|
500 |
|
501 |
-
#: admin.inc.php:
|
502 |
#, fuzzy
|
503 |
msgid "Reset Popular Posts"
|
504 |
msgstr "Postes populaires"
|
505 |
|
506 |
-
#: admin.inc.php:
|
507 |
msgid "Are you sure you want to reset the popular posts?"
|
508 |
msgstr "Êtes-vous sûr de vouloir annuler les postes populaires?"
|
509 |
|
510 |
-
#: admin.inc.php:
|
511 |
#, fuzzy
|
512 |
msgid "Reset Daily Popular Posts"
|
513 |
msgstr "Postes populaires journaliers"
|
514 |
|
515 |
-
#: admin.inc.php:
|
516 |
msgid "Are you sure you want to reset the daily popular posts?"
|
517 |
msgstr "Êtes-vous sûr de vouloir annuler les postes populaires journaliers?"
|
518 |
|
519 |
-
#: admin.inc.php:
|
520 |
msgid "Clear duplicates"
|
521 |
msgstr ""
|
522 |
|
523 |
-
#: admin.inc.php:
|
524 |
msgid "This will delete the duplicate entries in the tables. Proceed?"
|
525 |
msgstr ""
|
526 |
"Cela supprimera les doubles des enregistrements dans les tableaux. Continuer?"
|
527 |
|
528 |
-
#: admin.inc.php:
|
529 |
msgid "Popular Posts"
|
530 |
msgstr "Postes populaires"
|
531 |
|
532 |
-
#: admin.inc.php:
|
533 |
msgid "Daily Popular Posts"
|
534 |
msgstr "Postes populaires journaliers"
|
535 |
|
536 |
-
#: admin.inc.php:
|
537 |
msgid "Support the development"
|
538 |
msgstr "Soutenir le projet"
|
539 |
|
540 |
-
#: admin.inc.php:
|
541 |
msgid "Enter amount in USD: "
|
542 |
msgstr "Saisir le montant en dollars US"
|
543 |
|
544 |
-
#: admin.inc.php:
|
545 |
msgid "Send your donation to the author of"
|
546 |
msgstr "Envoyer sa dotation à l'auteur"
|
547 |
|
548 |
-
#: admin.inc.php:
|
549 |
msgid "Follow us"
|
550 |
msgstr ""
|
551 |
|
552 |
-
#: admin.inc.php:
|
553 |
#, fuzzy
|
554 |
msgid "Quick Links"
|
555 |
msgstr "Liens rapides"
|
556 |
|
557 |
-
#: admin.inc.php:
|
558 |
#, fuzzy
|
559 |
msgid "Top 10 plugin page"
|
560 |
msgstr "Page de plugin"
|
561 |
|
562 |
-
#: admin.inc.php:
|
563 |
msgid "Other plugins"
|
564 |
msgstr "Autres plugins"
|
565 |
|
566 |
-
#: admin.inc.php:
|
567 |
msgid "Ajay's blog"
|
568 |
msgstr "Blog Ajay"
|
569 |
|
570 |
-
#: admin.inc.php:
|
571 |
msgid "Support"
|
572 |
msgstr "Service d'assistance"
|
573 |
|
574 |
-
#: admin.inc.php:
|
575 |
msgid "Recent developments"
|
576 |
msgstr "Les derniers projets"
|
577 |
|
578 |
-
#: admin.inc.php:
|
579 |
#, fuzzy
|
580 |
msgid "Top 10 Settings"
|
581 |
msgstr "Paramètres"
|
582 |
|
583 |
-
#: admin.inc.php:
|
584 |
msgid "Top 10"
|
585 |
msgstr "Тоp 10"
|
586 |
|
587 |
-
#: admin.inc.php:
|
588 |
#, fuzzy
|
589 |
msgid "Overall Popular Posts"
|
590 |
msgstr "Voir tous les postes populaires"
|
591 |
|
592 |
-
#: admin.inc.php:
|
593 |
msgid "Results"
|
594 |
msgstr "Résultats"
|
595 |
|
596 |
-
#: admin.inc.php:
|
597 |
msgid "of"
|
598 |
msgstr "de, du, de la, des"
|
599 |
|
600 |
-
#: admin.inc.php:
|
601 |
msgid "Page"
|
602 |
msgstr "Page"
|
603 |
|
604 |
-
#: admin.inc.php:
|
605 |
msgid "View Daily Popular Posts"
|
606 |
msgstr "Voir les postes populaires journaliers"
|
607 |
|
608 |
-
#: admin.inc.php:
|
609 |
msgid "Results per-page:"
|
610 |
msgstr "Résultats par page:"
|
611 |
|
612 |
-
#: admin.inc.php:
|
613 |
msgid "View Overall Popular Posts"
|
614 |
msgstr "Voir tous les postes populaires"
|
615 |
|
616 |
-
#: admin.inc.php:
|
617 |
msgid "Previous"
|
618 |
msgstr "Précédente"
|
619 |
|
620 |
-
#: admin.inc.php:
|
621 |
msgid "Next"
|
622 |
msgstr "Suivante"
|
623 |
|
624 |
-
#: admin.inc.php:
|
625 |
msgid "Daily Popular"
|
626 |
msgstr "Populaires journaliers"
|
627 |
|
628 |
-
#: admin.inc.php:
|
629 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
630 |
msgstr "Total/aujourd'hui visionnages"
|
631 |
|
632 |
-
#: top-10.php:
|
|
|
|
|
|
|
|
|
633 |
msgid "Display the posts popular this week"
|
634 |
msgstr "Afficher les postes populaires de la semaine"
|
635 |
|
636 |
-
#: top-10.php:
|
637 |
msgid "Title"
|
638 |
msgstr ""
|
639 |
|
640 |
-
#: top-10.php:
|
641 |
msgid "No. of posts"
|
642 |
msgstr ""
|
643 |
|
644 |
-
#: top-10.php:
|
645 |
msgid "Overall"
|
646 |
msgstr ""
|
647 |
|
648 |
-
#: top-10.php:
|
649 |
msgid "Custom time period (Enter below)"
|
650 |
msgstr ""
|
651 |
|
652 |
-
#: top-10.php:
|
653 |
msgid "Range in number of days (applies only to custom option above)"
|
654 |
msgstr ""
|
655 |
|
656 |
-
#: top-10.php:
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
657 |
#, fuzzy
|
658 |
msgid "Thumbnail options"
|
659 |
msgstr "Options thumbnail des messages:"
|
660 |
|
661 |
-
#: top-10.php:
|
662 |
#, fuzzy
|
663 |
msgid "Thumbnails inline, before title"
|
664 |
msgstr "Afficher le thumbnail encastré et les messages avant l'en-tête"
|
665 |
|
666 |
-
#: top-10.php:
|
667 |
#, fuzzy
|
668 |
msgid "Thumbnails inline, after title"
|
669 |
msgstr "Afficher le thumbnail encastré et les messages après l'en-tête"
|
670 |
|
671 |
-
#: top-10.php:
|
672 |
#, fuzzy
|
673 |
msgid "Only thumbnails, no text"
|
674 |
msgstr "Afficher uniquement le thumbnail, sans le texte"
|
675 |
|
676 |
-
#: top-10.php:
|
677 |
#, fuzzy
|
678 |
msgid "No thumbnails, only text."
|
679 |
msgstr "Ne pas afficher le thumbnail, uniquement le texte"
|
680 |
|
681 |
-
#: top-10.php:
|
682 |
#, fuzzy
|
683 |
-
msgid "
|
684 |
-
msgstr "
|
|
|
|
|
|
|
|
|
|
|
685 |
|
686 |
-
#: top-10.php:
|
687 |
msgid "<h3>Popular Posts</h3>"
|
688 |
msgstr "<h3>Postes populaires</h3>"
|
689 |
|
690 |
-
#: top-10.php:
|
691 |
msgid "<h3>Daily Popular</h3>"
|
692 |
msgstr "<h3>Populaires Journaliers</h3>"
|
693 |
|
694 |
-
#: top-10.php:
|
695 |
#, fuzzy
|
696 |
msgid "No top posts yet"
|
697 |
msgstr "Annuler le top 10 des enregistrements les plus populaires"
|
698 |
|
699 |
-
#: top-10.php:
|
700 |
msgid "Once Weekly"
|
701 |
msgstr ""
|
702 |
|
703 |
-
#: top-10.php:
|
704 |
msgid "Once Fortnightly"
|
705 |
msgstr ""
|
706 |
|
707 |
-
#: top-10.php:
|
708 |
msgid "Once Monthly"
|
709 |
msgstr ""
|
710 |
|
711 |
-
#: top-10.php:
|
712 |
msgid "Settings"
|
713 |
msgstr "Paramètres"
|
714 |
|
715 |
-
#: top-10.php:
|
716 |
msgid "Donate"
|
717 |
msgstr "Conribuer"
|
718 |
|
2 |
msgstr ""
|
3 |
"Project-Id-Version: Top 10\n"
|
4 |
"Report-Msgid-Bugs-To: \n"
|
5 |
+
"POT-Creation-Date: 2013-09-01 12:50-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"
|
15 |
"X-Generator: Poedit 1.5.7\n"
|
16 |
"X-Poedit-SearchPath-0: .\n"
|
17 |
|
18 |
+
#: admin.inc.php:103
|
19 |
msgid "Scheduled maintenance enabled / modified"
|
20 |
msgstr ""
|
21 |
|
22 |
+
#: admin.inc.php:107
|
23 |
msgid "Scheduled maintenance disabled"
|
24 |
msgstr ""
|
25 |
|
26 |
+
#: admin.inc.php:124
|
27 |
msgid "Options saved successfully."
|
28 |
msgstr "Les options sont sauvegardées avec succès"
|
29 |
|
30 |
+
#: admin.inc.php:133
|
31 |
msgid "Options set to Default."
|
32 |
msgstr "Options par défaut sont définies"
|
33 |
|
34 |
+
#: admin.inc.php:139
|
35 |
msgid "Top 10 popular posts reset"
|
36 |
msgstr "Annuler le top 10 des enregistrements les plus populaires"
|
37 |
|
38 |
+
#: admin.inc.php:145
|
39 |
msgid "Top 10 daily popular posts reset"
|
40 |
msgstr "Annuler le top 10 des messages les plus populaires journaliers"
|
41 |
|
42 |
+
#: admin.inc.php:152
|
43 |
msgid "Duplicate rows cleaned from tables"
|
44 |
msgstr ""
|
45 |
|
46 |
+
#: admin.inc.php:173
|
47 |
msgid "General options"
|
48 |
msgstr ""
|
49 |
|
50 |
+
#: admin.inc.php:177
|
51 |
msgid "Enable Overall stats"
|
52 |
msgstr ""
|
53 |
|
54 |
+
#: admin.inc.php:182
|
55 |
msgid "Enable Daily stats"
|
56 |
msgstr ""
|
57 |
|
58 |
+
#: admin.inc.php:187
|
59 |
msgid "W3 Total Cache fix:"
|
60 |
msgstr ""
|
61 |
|
62 |
+
#: admin.inc.php:189
|
63 |
msgid ""
|
64 |
"This will try to prevent W3 Total Cache from caching the addcount script of "
|
65 |
"the plugin. Try toggling this option in case you find that our posts are not "
|
66 |
"tracked."
|
67 |
msgstr ""
|
68 |
|
69 |
+
#: admin.inc.php:193
|
70 |
msgid "Number of popular posts to display: "
|
71 |
msgstr "Le nombre de populaires sur le forum"
|
72 |
|
73 |
+
#: admin.inc.php:197
|
74 |
msgid "Daily Popular should contain views of how many days? "
|
75 |
msgstr ""
|
76 |
"Le populaire journalier doit contenir l'information sur le nombre des jours"
|
77 |
|
78 |
+
#: admin.inc.php:200
|
79 |
msgid "Post types to include in results (including custom post types)"
|
80 |
msgstr ""
|
81 |
|
82 |
+
#: admin.inc.php:211
|
83 |
msgid "List of post or page IDs to exclude from the results: "
|
84 |
msgstr ""
|
85 |
|
86 |
+
#: admin.inc.php:215
|
87 |
msgid "Exclude Categories: "
|
88 |
msgstr "Exclure les catégories:"
|
89 |
|
90 |
+
#: admin.inc.php:230
|
91 |
msgid ""
|
92 |
"Comma separated list of category slugs. The field above has an autocomplete "
|
93 |
"so simply start typing in the starting letters and it will prompt you with "
|
94 |
"options"
|
95 |
msgstr ""
|
96 |
|
97 |
+
#: admin.inc.php:235
|
98 |
#, fuzzy
|
99 |
msgid "Display number of views on:"
|
100 |
msgstr "Afficher le nombre des visionnages du message?"
|
101 |
|
102 |
+
#: admin.inc.php:237
|
103 |
msgid "Posts"
|
104 |
msgstr ""
|
105 |
|
106 |
+
#: admin.inc.php:238
|
107 |
#, fuzzy
|
108 |
msgid "Pages"
|
109 |
msgstr "Page"
|
110 |
|
111 |
+
#: admin.inc.php:239
|
112 |
msgid "Home page"
|
113 |
msgstr ""
|
114 |
|
115 |
+
#: admin.inc.php:240
|
116 |
msgid "Feeds"
|
117 |
msgstr ""
|
118 |
|
119 |
+
#: admin.inc.php:241
|
120 |
msgid "Category archives"
|
121 |
msgstr ""
|
122 |
|
123 |
+
#: admin.inc.php:242
|
124 |
msgid "Tag archives"
|
125 |
msgstr ""
|
126 |
|
127 |
+
#: admin.inc.php:243
|
128 |
msgid "Other archives"
|
129 |
msgstr ""
|
130 |
|
131 |
+
#: admin.inc.php:244
|
132 |
msgid ""
|
133 |
"If you choose to disable this, please add <code><?php if(function_exists"
|
134 |
"('echo_ald_tptn')) echo_ald_tptn(); ?></code> to your template file where "
|
135 |
"you want it displayed"
|
136 |
msgstr ""
|
137 |
|
138 |
+
#: admin.inc.php:247
|
139 |
msgid "Always display latest post count"
|
140 |
msgstr ""
|
141 |
|
142 |
+
#: admin.inc.php:249
|
143 |
msgid ""
|
144 |
"This option uses JavaScript and will increase your page load time. Turn this "
|
145 |
"off if you are not using caching plugins or are OK with displaying older "
|
146 |
+
"cached counts. When you enable this option, the daily widget will not use "
|
147 |
+
"the options set there, but options will need to be set on this screen."
|
148 |
msgstr ""
|
149 |
|
150 |
+
#: admin.inc.php:252
|
151 |
msgid "Always display latest post count in the daily lists"
|
152 |
msgstr ""
|
153 |
|
154 |
+
#: admin.inc.php:254
|
155 |
#, fuzzy
|
156 |
msgid "This option uses JavaScript and will increase your page load time"
|
157 |
msgstr ""
|
159 |
"JavaScript, le chargement du poste peut augmenter le temps du chargement de "
|
160 |
"la page"
|
161 |
|
162 |
+
#: admin.inc.php:257
|
163 |
msgid "Track visits of authors on their own posts?"
|
164 |
msgstr "Suivre les visites des auteurs de leurs propres messages?"
|
165 |
|
166 |
+
#: admin.inc.php:260
|
167 |
#, fuzzy
|
168 |
msgid "Track visits of admins?"
|
169 |
msgstr "Suivre les visites des auteurs de leurs propres messages?"
|
170 |
|
171 |
+
#: admin.inc.php:263
|
172 |
msgid "Display page views on Posts > All Posts in Admin"
|
173 |
msgstr ""
|
174 |
|
175 |
+
#: admin.inc.php:266
|
176 |
msgid "Link to Top 10 plugin page"
|
177 |
msgstr ""
|
178 |
|
179 |
+
#: admin.inc.php:268
|
180 |
#, fuzzy
|
181 |
msgid ""
|
182 |
"A link to the plugin is added as an extra list item to the list of popular "
|
186 |
"le répertoire des enregistrements populaires. Cela n'est pas obligatoire, "
|
187 |
"mais nous vous y remercions!"
|
188 |
|
189 |
+
#: admin.inc.php:275
|
190 |
#, fuzzy
|
191 |
msgid "Output Options"
|
192 |
msgstr "Paramètres de sortie"
|
193 |
|
194 |
+
#: admin.inc.php:278
|
195 |
msgid "Format to display the count in: "
|
196 |
msgstr "Format d’affichage de la quantité en:"
|
197 |
|
198 |
+
#: admin.inc.php:280
|
199 |
#, fuzzy
|
200 |
msgid ""
|
201 |
"Use <code>%totalcount%</code> to display the total count, <code>%dailycount"
|
208 |
"utiliser par exemple, les paramètres d'affichage par défaut <code>(Visited "
|
209 |
"123 times, 23 visits today)</code>"
|
210 |
|
211 |
+
#: admin.inc.php:283
|
212 |
msgid "Title of popular posts: "
|
213 |
msgstr "Les en-têtes des messages populaires"
|
214 |
|
215 |
+
#: admin.inc.php:286
|
216 |
msgid "Title of daily popular posts: "
|
217 |
msgstr "Les en-têtes des messages populaires journaliers"
|
218 |
|
219 |
+
#: admin.inc.php:289
|
220 |
msgid "When there are no posts, what should be shown?"
|
221 |
msgstr ""
|
222 |
|
223 |
+
#: admin.inc.php:293
|
224 |
msgid "Blank Output"
|
225 |
msgstr ""
|
226 |
|
227 |
+
#: admin.inc.php:297
|
228 |
msgid "Display:"
|
229 |
msgstr ""
|
230 |
|
231 |
+
#: admin.inc.php:301
|
232 |
msgid "Show post excerpt in list?"
|
233 |
msgstr "Afficher le fragment du message dans la liste?"
|
234 |
|
235 |
+
#: admin.inc.php:304
|
236 |
msgid "Length of excerpt (in words): "
|
237 |
msgstr "Longueur du fragment (mots):"
|
238 |
|
239 |
+
#: admin.inc.php:307
|
240 |
+
#, fuzzy
|
241 |
+
msgid "Show post author in list?"
|
242 |
+
msgstr "Afficher le fragment du message dans la liste?"
|
243 |
+
|
244 |
+
#: admin.inc.php:310
|
245 |
#, fuzzy
|
246 |
msgid "Show post date in list?"
|
247 |
msgstr "Afficher le fragment du message dans la liste?"
|
248 |
|
249 |
+
#: admin.inc.php:313
|
250 |
msgid "Limit post title length (in characters)"
|
251 |
msgstr ""
|
252 |
|
253 |
+
#: admin.inc.php:316
|
254 |
msgid "Display number of page views in popular lists?"
|
255 |
msgstr ""
|
256 |
"Afficher le nombre des visionnages des pages dans les listes de popularité?"
|
257 |
|
258 |
+
#: admin.inc.php:319
|
259 |
msgid "Open links in new window"
|
260 |
msgstr ""
|
261 |
|
262 |
+
#: admin.inc.php:322
|
263 |
msgid "Add nofollow attribute to links in the list"
|
264 |
msgstr ""
|
265 |
|
266 |
+
#: admin.inc.php:325
|
267 |
msgid "Exclude display of related posts on these posts / pages"
|
268 |
msgstr ""
|
269 |
|
270 |
+
#: admin.inc.php:328
|
271 |
msgid "Enter comma separated list of IDs. e.g. 188,320,500"
|
272 |
msgstr ""
|
273 |
|
274 |
+
#: admin.inc.php:331
|
275 |
msgid "Customize the output:"
|
276 |
msgstr "Paramétrer la sortie:"
|
277 |
|
278 |
+
#: admin.inc.php:333
|
279 |
msgid "HTML to display before the list of posts: "
|
280 |
msgstr "HTML d'affichage avant la liste des messages:"
|
281 |
|
282 |
+
#: admin.inc.php:336
|
283 |
msgid "HTML to display before each list item: "
|
284 |
msgstr "HTML d'affichage avant chaque élément de la liste:"
|
285 |
|
286 |
+
#: admin.inc.php:339
|
287 |
msgid "HTML to display after each list item: "
|
288 |
msgstr "HTML d'affichage après chaque élément de la liste:"
|
289 |
|
290 |
+
#: admin.inc.php:342
|
291 |
msgid "HTML to display after the list of posts: "
|
292 |
msgstr "HTML d'affichage après la liste des messages:"
|
293 |
|
294 |
+
#: admin.inc.php:345
|
295 |
msgid "Post thumbnail options:"
|
296 |
msgstr "Options thumbnail des messages:"
|
297 |
|
298 |
+
#: admin.inc.php:347
|
299 |
msgid "Location of post thumbnail:"
|
300 |
msgstr ""
|
301 |
|
302 |
+
#: admin.inc.php:351
|
303 |
msgid "Display thumbnails inline with posts, before title"
|
304 |
msgstr "Afficher le thumbnail encastré et les messages avant l'en-tête"
|
305 |
|
306 |
+
#: admin.inc.php:355
|
307 |
msgid "Display thumbnails inline with posts, after title"
|
308 |
msgstr "Afficher le thumbnail encastré et les messages après l'en-tête"
|
309 |
|
310 |
+
#: admin.inc.php:359
|
311 |
msgid "Display only thumbnails, no text"
|
312 |
msgstr "Afficher uniquement le thumbnail, sans le texte"
|
313 |
|
314 |
+
#: admin.inc.php:363
|
315 |
msgid "Do not display thumbnails, only text."
|
316 |
msgstr "Ne pas afficher le thumbnail, uniquement le texte"
|
317 |
|
318 |
+
#: admin.inc.php:367
|
319 |
msgid "Width of the thumbnail: "
|
320 |
msgstr ""
|
321 |
|
322 |
+
#: admin.inc.php:370
|
323 |
msgid "Height of the thumbnail: "
|
324 |
msgstr ""
|
325 |
|
326 |
+
#: admin.inc.php:373
|
327 |
msgid "Style attributes / Width and Height HTML attributes:"
|
328 |
msgstr ""
|
329 |
|
330 |
+
#: admin.inc.php:377
|
331 |
msgid ""
|
332 |
"Style attributes are used for width and height. <code>style=\"max-width:"
|
333 |
msgstr ""
|
334 |
|
335 |
+
#: admin.inc.php:381
|
336 |
msgid ""
|
337 |
"HTML width and height attributes are used for width and height. <code>width="
|
338 |
"\""
|
339 |
msgstr ""
|
340 |
|
341 |
+
#: admin.inc.php:385
|
342 |
msgid "Use timthumb to generate thumbnails? "
|
343 |
msgstr ""
|
344 |
|
345 |
+
#: admin.inc.php:386
|
346 |
msgid ""
|
347 |
"If checked, <a href=\"http://www.binarymoon.co.uk/projects/timthumb/"
|
348 |
"\">timthumb</a> will be used to generate thumbnails"
|
349 |
msgstr ""
|
350 |
|
351 |
+
#: admin.inc.php:388
|
352 |
#, fuzzy
|
353 |
msgid "Post thumbnail meta field name: "
|
354 |
msgstr "Options thumbnail des messages:"
|
355 |
|
356 |
+
#: admin.inc.php:389
|
357 |
msgid ""
|
358 |
"The value of this field should contain the image source and is set in the "
|
359 |
"<em>Add New Post</em> screen"
|
360 |
msgstr ""
|
361 |
|
362 |
+
#: admin.inc.php:391
|
363 |
#, fuzzy
|
364 |
msgid ""
|
365 |
"If the postmeta is not set, then should the plugin extract the first image "
|
370 |
"première image de la résolution correspondante du fichier est de taille "
|
371 |
"supérieure"
|
372 |
|
373 |
+
#: admin.inc.php:392
|
374 |
#, fuzzy
|
375 |
msgid ""
|
376 |
"This could slow down the loading of your page if the first image in the "
|
381 |
"première image de la résolution correspondante du fichier est de taille "
|
382 |
"supérieure"
|
383 |
|
384 |
+
#: admin.inc.php:394
|
385 |
msgid "Use default thumbnail? "
|
386 |
msgstr ""
|
387 |
|
388 |
+
#: admin.inc.php:395
|
389 |
msgid ""
|
390 |
"If checked, when no thumbnail is found, show a default one from the URL "
|
391 |
"below. If not checked and no thumbnail is found, no image will be shown."
|
394 |
"Thumbnail par défaut. S'il n'a pas été déterminé, que le thumbnail n'a pas "
|
395 |
"été retrouvé, ne pas afficher l'image."
|
396 |
|
397 |
+
#: admin.inc.php:397
|
398 |
msgid "Default thumbnail: "
|
399 |
msgstr ""
|
400 |
|
401 |
+
#: admin.inc.php:398
|
402 |
msgid ""
|
403 |
"The plugin will first check if the post contains a thumbnail. If it doesn't "
|
404 |
"then it will check the meta field. If this is not available, then it will "
|
405 |
"show the default image as specified above"
|
406 |
msgstr ""
|
407 |
|
408 |
+
#: admin.inc.php:404
|
409 |
msgid "Custom Styles"
|
410 |
msgstr ""
|
411 |
|
412 |
+
#: admin.inc.php:407
|
413 |
msgid "Custom CSS to add to header:"
|
414 |
msgstr ""
|
415 |
|
416 |
+
#: admin.inc.php:410
|
417 |
msgid ""
|
418 |
"Do not include <code>style</code> tags. Check out the <a href=\"http://"
|
419 |
"wordpress.org/extend/plugins/top-10/faq/\" target=\"_blank\">FAQ</a> for "
|
420 |
"available CSS classes to style."
|
421 |
msgstr ""
|
422 |
|
423 |
+
#: admin.inc.php:417
|
424 |
msgid "Maintenance"
|
425 |
msgstr ""
|
426 |
|
427 |
+
#: admin.inc.php:421
|
428 |
msgid ""
|
429 |
"Over time the Daily Top 10 database grows in size, which reduces the "
|
430 |
"performance of the plugin. Cleaning the database at regular intervals could "
|
431 |
"improve performance, especially on high traffic blogs."
|
432 |
msgstr ""
|
433 |
|
434 |
+
#: admin.inc.php:422
|
435 |
msgid ""
|
436 |
"Note: When scheduled maintenance is enabled, WordPress will run the cron job "
|
437 |
"everytime the job is rescheduled (i.e. you change the settings below). This "
|
438 |
"causes the daily posts table to reset."
|
439 |
msgstr ""
|
440 |
|
441 |
+
#: admin.inc.php:425
|
442 |
msgid "Enable scheduled maintenance of daily tables:"
|
443 |
msgstr ""
|
444 |
|
445 |
+
#: admin.inc.php:429
|
446 |
msgid "Time to run maintenance"
|
447 |
msgstr ""
|
448 |
|
449 |
+
#: admin.inc.php:432
|
450 |
msgid "How often should the maintenance be run:"
|
451 |
msgstr ""
|
452 |
|
453 |
+
#: admin.inc.php:436
|
454 |
msgid "Daily"
|
455 |
msgstr ""
|
456 |
|
457 |
+
#: admin.inc.php:440
|
458 |
msgid "Weekly"
|
459 |
msgstr ""
|
460 |
|
461 |
+
#: admin.inc.php:444
|
462 |
msgid "Fortnightly"
|
463 |
msgstr ""
|
464 |
|
465 |
+
#: admin.inc.php:448
|
466 |
msgid "Monthly"
|
467 |
msgstr ""
|
468 |
|
469 |
+
#: admin.inc.php:457
|
470 |
msgid "The cron job has been scheduled. Maintenance will run "
|
471 |
msgstr ""
|
472 |
|
473 |
+
#: admin.inc.php:462
|
474 |
msgid "The cron job is missing. Please resave this page to add the job"
|
475 |
msgstr ""
|
476 |
|
477 |
+
#: admin.inc.php:467
|
478 |
msgid "Maintenance is turned off"
|
479 |
msgstr ""
|
480 |
|
481 |
+
#: admin.inc.php:475
|
482 |
#, fuzzy
|
483 |
msgid "Save Options"
|
484 |
msgstr "Options:"
|
485 |
|
486 |
+
#: admin.inc.php:476
|
487 |
#, fuzzy
|
488 |
msgid "Default Options"
|
489 |
msgstr "Paramètres de sortie"
|
490 |
|
491 |
+
#: admin.inc.php:476
|
492 |
msgid "Do you want to set options to Default?"
|
493 |
msgstr "Définir les paramètres par défaut?"
|
494 |
|
495 |
+
#: admin.inc.php:480
|
496 |
msgid "Reset count"
|
497 |
msgstr "Réinitialiser le compteur"
|
498 |
|
499 |
+
#: admin.inc.php:483
|
500 |
msgid ""
|
501 |
"This cannot be reversed. Make sure that your database has been backed up "
|
502 |
"before proceeding"
|
504 |
"Cette action ne peut être annulée. Assurez-vous que la base de données a été "
|
505 |
"sauvegardée avant de poursuivre."
|
506 |
|
507 |
+
#: admin.inc.php:486
|
508 |
#, fuzzy
|
509 |
msgid "Reset Popular Posts"
|
510 |
msgstr "Postes populaires"
|
511 |
|
512 |
+
#: admin.inc.php:486
|
513 |
msgid "Are you sure you want to reset the popular posts?"
|
514 |
msgstr "Êtes-vous sûr de vouloir annuler les postes populaires?"
|
515 |
|
516 |
+
#: admin.inc.php:487
|
517 |
#, fuzzy
|
518 |
msgid "Reset Daily Popular Posts"
|
519 |
msgstr "Postes populaires journaliers"
|
520 |
|
521 |
+
#: admin.inc.php:487
|
522 |
msgid "Are you sure you want to reset the daily popular posts?"
|
523 |
msgstr "Êtes-vous sûr de vouloir annuler les postes populaires journaliers?"
|
524 |
|
525 |
+
#: admin.inc.php:488
|
526 |
msgid "Clear duplicates"
|
527 |
msgstr ""
|
528 |
|
529 |
+
#: admin.inc.php:488
|
530 |
msgid "This will delete the duplicate entries in the tables. Proceed?"
|
531 |
msgstr ""
|
532 |
"Cela supprimera les doubles des enregistrements dans les tableaux. Continuer?"
|
533 |
|
534 |
+
#: admin.inc.php:531 admin.inc.php:906 top-10.php:476
|
535 |
msgid "Popular Posts"
|
536 |
msgstr "Postes populaires"
|
537 |
|
538 |
+
#: admin.inc.php:531 admin.inc.php:618
|
539 |
msgid "Daily Popular Posts"
|
540 |
msgstr "Postes populaires journaliers"
|
541 |
|
542 |
+
#: admin.inc.php:559
|
543 |
msgid "Support the development"
|
544 |
msgstr "Soutenir le projet"
|
545 |
|
546 |
+
#: admin.inc.php:567
|
547 |
msgid "Enter amount in USD: "
|
548 |
msgstr "Saisir le montant en dollars US"
|
549 |
|
550 |
+
#: admin.inc.php:571
|
551 |
msgid "Send your donation to the author of"
|
552 |
msgstr "Envoyer sa dotation à l'auteur"
|
553 |
|
554 |
+
#: admin.inc.php:577
|
555 |
msgid "Follow us"
|
556 |
msgstr ""
|
557 |
|
558 |
+
#: admin.inc.php:583
|
559 |
#, fuzzy
|
560 |
msgid "Quick Links"
|
561 |
msgstr "Liens rapides"
|
562 |
|
563 |
+
#: admin.inc.php:585
|
564 |
#, fuzzy
|
565 |
msgid "Top 10 plugin page"
|
566 |
msgstr "Page de plugin"
|
567 |
|
568 |
+
#: admin.inc.php:586
|
569 |
msgid "Other plugins"
|
570 |
msgstr "Autres plugins"
|
571 |
|
572 |
+
#: admin.inc.php:587
|
573 |
msgid "Ajay's blog"
|
574 |
msgstr "Blog Ajay"
|
575 |
|
576 |
+
#: admin.inc.php:588 top-10.php:1123
|
577 |
msgid "Support"
|
578 |
msgstr "Service d'assistance"
|
579 |
|
580 |
+
#: admin.inc.php:592
|
581 |
msgid "Recent developments"
|
582 |
msgstr "Les derniers projets"
|
583 |
|
584 |
+
#: admin.inc.php:609 admin.inc.php:612
|
585 |
#, fuzzy
|
586 |
msgid "Top 10 Settings"
|
587 |
msgstr "Paramètres"
|
588 |
|
589 |
+
#: admin.inc.php:609
|
590 |
msgid "Top 10"
|
591 |
msgstr "Тоp 10"
|
592 |
|
593 |
+
#: admin.inc.php:615
|
594 |
#, fuzzy
|
595 |
msgid "Overall Popular Posts"
|
596 |
msgstr "Voir tous les postes populaires"
|
597 |
|
598 |
+
#: admin.inc.php:786
|
599 |
msgid "Results"
|
600 |
msgstr "Résultats"
|
601 |
|
602 |
+
#: admin.inc.php:788 admin.inc.php:794
|
603 |
msgid "of"
|
604 |
msgstr "de, du, de la, des"
|
605 |
|
606 |
+
#: admin.inc.php:792
|
607 |
msgid "Page"
|
608 |
msgstr "Page"
|
609 |
|
610 |
+
#: admin.inc.php:806
|
611 |
msgid "View Daily Popular Posts"
|
612 |
msgstr "Voir les postes populaires journaliers"
|
613 |
|
614 |
+
#: admin.inc.php:809 admin.inc.php:822
|
615 |
msgid "Results per-page:"
|
616 |
msgstr "Résultats par page:"
|
617 |
|
618 |
+
#: admin.inc.php:819
|
619 |
msgid "View Overall Popular Posts"
|
620 |
msgstr "Voir tous les postes populaires"
|
621 |
|
622 |
+
#: admin.inc.php:848
|
623 |
msgid "Previous"
|
624 |
msgstr "Précédente"
|
625 |
|
626 |
+
#: admin.inc.php:866
|
627 |
msgid "Next"
|
628 |
msgstr "Suivante"
|
629 |
|
630 |
+
#: admin.inc.php:907
|
631 |
msgid "Daily Popular"
|
632 |
msgstr "Populaires journaliers"
|
633 |
|
634 |
+
#: admin.inc.php:923
|
635 |
+
#, fuzzy
|
636 |
+
msgid "Total Views"
|
637 |
+
msgstr "Total/aujourd'hui visionnages"
|
638 |
+
|
639 |
+
#: admin.inc.php:924
|
640 |
+
#, fuzzy
|
641 |
+
msgid "Today's Views"
|
642 |
msgstr "Total/aujourd'hui visionnages"
|
643 |
|
644 |
+
#: top-10.php:393
|
645 |
+
msgid " Posted by "
|
646 |
+
msgstr ""
|
647 |
+
|
648 |
+
#: top-10.php:475
|
649 |
msgid "Display the posts popular this week"
|
650 |
msgstr "Afficher les postes populaires de la semaine"
|
651 |
|
652 |
+
#: top-10.php:493
|
653 |
msgid "Title"
|
654 |
msgstr ""
|
655 |
|
656 |
+
#: top-10.php:498
|
657 |
msgid "No. of posts"
|
658 |
msgstr ""
|
659 |
|
660 |
+
#: top-10.php:503
|
661 |
msgid "Overall"
|
662 |
msgstr ""
|
663 |
|
664 |
+
#: top-10.php:504
|
665 |
msgid "Custom time period (Enter below)"
|
666 |
msgstr ""
|
667 |
|
668 |
+
#: top-10.php:509
|
669 |
msgid "Range in number of days (applies only to custom option above)"
|
670 |
msgstr ""
|
671 |
|
672 |
+
#: top-10.php:514
|
673 |
+
#, fuzzy
|
674 |
+
msgid " Show excerpt?"
|
675 |
+
msgstr "Afficher le fragment du message dans la liste?"
|
676 |
+
|
677 |
+
#: top-10.php:519
|
678 |
+
msgid " Show author?"
|
679 |
+
msgstr ""
|
680 |
+
|
681 |
+
#: top-10.php:524
|
682 |
+
#, fuzzy
|
683 |
+
msgid " Show date?"
|
684 |
+
msgstr "Afficher le fragment du message dans la liste?"
|
685 |
+
|
686 |
+
#: top-10.php:528
|
687 |
#, fuzzy
|
688 |
msgid "Thumbnail options"
|
689 |
msgstr "Options thumbnail des messages:"
|
690 |
|
691 |
+
#: top-10.php:530
|
692 |
#, fuzzy
|
693 |
msgid "Thumbnails inline, before title"
|
694 |
msgstr "Afficher le thumbnail encastré et les messages avant l'en-tête"
|
695 |
|
696 |
+
#: top-10.php:531
|
697 |
#, fuzzy
|
698 |
msgid "Thumbnails inline, after title"
|
699 |
msgstr "Afficher le thumbnail encastré et les messages après l'en-tête"
|
700 |
|
701 |
+
#: top-10.php:532
|
702 |
#, fuzzy
|
703 |
msgid "Only thumbnails, no text"
|
704 |
msgstr "Afficher uniquement le thumbnail, sans le texte"
|
705 |
|
706 |
+
#: top-10.php:533
|
707 |
#, fuzzy
|
708 |
msgid "No thumbnails, only text."
|
709 |
msgstr "Ne pas afficher le thumbnail, uniquement le texte"
|
710 |
|
711 |
+
#: top-10.php:538
|
712 |
#, fuzzy
|
713 |
+
msgid "Thumbnail height"
|
714 |
+
msgstr "Options thumbnail des messages:"
|
715 |
+
|
716 |
+
#: top-10.php:543
|
717 |
+
#, fuzzy
|
718 |
+
msgid "Thumbnail width"
|
719 |
+
msgstr "Options thumbnail des messages:"
|
720 |
|
721 |
+
#: top-10.php:646
|
722 |
msgid "<h3>Popular Posts</h3>"
|
723 |
msgstr "<h3>Postes populaires</h3>"
|
724 |
|
725 |
+
#: top-10.php:647
|
726 |
msgid "<h3>Daily Popular</h3>"
|
727 |
msgstr "<h3>Populaires Journaliers</h3>"
|
728 |
|
729 |
+
#: top-10.php:648
|
730 |
#, fuzzy
|
731 |
msgid "No top posts yet"
|
732 |
msgstr "Annuler le top 10 des enregistrements les plus populaires"
|
733 |
|
734 |
+
#: top-10.php:1089
|
735 |
msgid "Once Weekly"
|
736 |
msgstr ""
|
737 |
|
738 |
+
#: top-10.php:1090
|
739 |
msgid "Once Fortnightly"
|
740 |
msgstr ""
|
741 |
|
742 |
+
#: top-10.php:1091
|
743 |
msgid "Once Monthly"
|
744 |
msgstr ""
|
745 |
|
746 |
+
#: top-10.php:1111
|
747 |
msgid "Settings"
|
748 |
msgstr "Paramètres"
|
749 |
|
750 |
+
#: top-10.php:1124
|
751 |
msgid "Donate"
|
752 |
msgstr "Conribuer"
|
753 |
|
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: 2013-
|
6 |
"PO-Revision-Date: \n"
|
7 |
"Last-Translator: Ajay D'Souza <me@ajaydsouza.com>\n"
|
8 |
"Language-Team: Lets Be Famous <ray.s@letsbefamous.com>\n"
|
@@ -15,143 +15,144 @@ msgstr ""
|
|
15 |
"X-Generator: Poedit 1.5.7\n"
|
16 |
"X-Poedit-SearchPath-0: .\n"
|
17 |
|
18 |
-
#: admin.inc.php:
|
19 |
msgid "Scheduled maintenance enabled / modified"
|
20 |
msgstr ""
|
21 |
|
22 |
-
#: admin.inc.php:
|
23 |
msgid "Scheduled maintenance disabled"
|
24 |
msgstr ""
|
25 |
|
26 |
-
#: admin.inc.php:
|
27 |
msgid "Options saved successfully."
|
28 |
msgstr "Roghanna shábháil go rathúil."
|
29 |
|
30 |
-
#: admin.inc.php:
|
31 |
msgid "Options set to Default."
|
32 |
msgstr "Roghanna leagtha chun Réamhshocrú."
|
33 |
|
34 |
-
#: admin.inc.php:
|
35 |
#, fuzzy
|
36 |
msgid "Top 10 popular posts reset"
|
37 |
msgstr "Teideal an post tóir:"
|
38 |
|
39 |
-
#: admin.inc.php:
|
40 |
#, fuzzy
|
41 |
msgid "Top 10 daily popular posts reset"
|
42 |
msgstr "Teideal ar tóir an bpost:"
|
43 |
|
44 |
-
#: admin.inc.php:
|
45 |
msgid "Duplicate rows cleaned from tables"
|
46 |
msgstr ""
|
47 |
|
48 |
-
#: admin.inc.php:
|
49 |
msgid "General options"
|
50 |
msgstr ""
|
51 |
|
52 |
-
#: admin.inc.php:
|
53 |
msgid "Enable Overall stats"
|
54 |
msgstr ""
|
55 |
|
56 |
-
#: admin.inc.php:
|
57 |
msgid "Enable Daily stats"
|
58 |
msgstr ""
|
59 |
|
60 |
-
#: admin.inc.php:
|
61 |
msgid "W3 Total Cache fix:"
|
62 |
msgstr ""
|
63 |
|
64 |
-
#: admin.inc.php:
|
65 |
msgid ""
|
66 |
"This will try to prevent W3 Total Cache from caching the addcount script of "
|
67 |
"the plugin. Try toggling this option in case you find that our posts are not "
|
68 |
"tracked."
|
69 |
msgstr ""
|
70 |
|
71 |
-
#: admin.inc.php:
|
72 |
msgid "Number of popular posts to display: "
|
73 |
msgstr "An líon post tóir a thaispeáint:"
|
74 |
|
75 |
-
#: admin.inc.php:
|
76 |
msgid "Daily Popular should contain views of how many days? "
|
77 |
msgstr "Ba chóir go laethúil Coitianta bhfuil tuairimí cé mhéad lá?"
|
78 |
|
79 |
-
#: admin.inc.php:
|
80 |
msgid "Post types to include in results (including custom post types)"
|
81 |
msgstr ""
|
82 |
|
83 |
-
#: admin.inc.php:
|
84 |
msgid "List of post or page IDs to exclude from the results: "
|
85 |
msgstr ""
|
86 |
|
87 |
-
#: admin.inc.php:
|
88 |
msgid "Exclude Categories: "
|
89 |
msgstr ""
|
90 |
|
91 |
-
#: admin.inc.php:
|
92 |
msgid ""
|
93 |
"Comma separated list of category slugs. The field above has an autocomplete "
|
94 |
"so simply start typing in the starting letters and it will prompt you with "
|
95 |
"options"
|
96 |
msgstr ""
|
97 |
|
98 |
-
#: admin.inc.php:
|
99 |
#, fuzzy
|
100 |
msgid "Display number of views on:"
|
101 |
msgstr "Taispeáin líon na dtuairimí ar phoist?"
|
102 |
|
103 |
-
#: admin.inc.php:
|
104 |
msgid "Posts"
|
105 |
msgstr ""
|
106 |
|
107 |
-
#: admin.inc.php:
|
108 |
#, fuzzy
|
109 |
msgid "Pages"
|
110 |
msgstr "Leathanach"
|
111 |
|
112 |
-
#: admin.inc.php:
|
113 |
msgid "Home page"
|
114 |
msgstr ""
|
115 |
|
116 |
-
#: admin.inc.php:
|
117 |
msgid "Feeds"
|
118 |
msgstr ""
|
119 |
|
120 |
-
#: admin.inc.php:
|
121 |
msgid "Category archives"
|
122 |
msgstr ""
|
123 |
|
124 |
-
#: admin.inc.php:
|
125 |
msgid "Tag archives"
|
126 |
msgstr ""
|
127 |
|
128 |
-
#: admin.inc.php:
|
129 |
msgid "Other archives"
|
130 |
msgstr ""
|
131 |
|
132 |
-
#: admin.inc.php:
|
133 |
msgid ""
|
134 |
"If you choose to disable this, please add <code><?php if(function_exists"
|
135 |
"('echo_ald_tptn')) echo_ald_tptn(); ?></code> to your template file where "
|
136 |
"you want it displayed"
|
137 |
msgstr ""
|
138 |
|
139 |
-
#: admin.inc.php:
|
140 |
msgid "Always display latest post count"
|
141 |
msgstr ""
|
142 |
|
143 |
-
#: admin.inc.php:
|
144 |
msgid ""
|
145 |
"This option uses JavaScript and will increase your page load time. Turn this "
|
146 |
"off if you are not using caching plugins or are OK with displaying older "
|
147 |
-
"cached counts"
|
|
|
148 |
msgstr ""
|
149 |
|
150 |
-
#: admin.inc.php:
|
151 |
msgid "Always display latest post count in the daily lists"
|
152 |
msgstr ""
|
153 |
|
154 |
-
#: admin.inc.php:
|
155 |
#, fuzzy
|
156 |
msgid "This option uses JavaScript and will increase your page load time"
|
157 |
msgstr ""
|
@@ -159,24 +160,24 @@ msgstr ""
|
|
159 |
"JavaScript a luchtú ar an bpost agus is féidir a mhéadú do chuid ama a "
|
160 |
"luchtú leathanach"
|
161 |
|
162 |
-
#: admin.inc.php:
|
163 |
msgid "Track visits of authors on their own posts?"
|
164 |
msgstr "Track cuairteanna ar údair ar a gcuid post féin?"
|
165 |
|
166 |
-
#: admin.inc.php:
|
167 |
#, fuzzy
|
168 |
msgid "Track visits of admins?"
|
169 |
msgstr "Track cuairteanna ar údair ar a gcuid post féin?"
|
170 |
|
171 |
-
#: admin.inc.php:
|
172 |
msgid "Display page views on Posts > All Posts in Admin"
|
173 |
msgstr ""
|
174 |
|
175 |
-
#: admin.inc.php:
|
176 |
msgid "Link to Top 10 plugin page"
|
177 |
msgstr ""
|
178 |
|
179 |
-
#: admin.inc.php:
|
180 |
#, fuzzy
|
181 |
msgid ""
|
182 |
"A link to the plugin is added as an extra list item to the list of popular "
|
@@ -185,16 +186,16 @@ msgstr ""
|
|
185 |
"Tá nasc chuig an breiseán seo a leanas mar mhír liosta breise le liosta "
|
186 |
"de phoist tóir. Gan éigeantach, ach a bhuíochas má dhéanann tú é!"
|
187 |
|
188 |
-
#: admin.inc.php:
|
189 |
#, fuzzy
|
190 |
msgid "Output Options"
|
191 |
msgstr "roghanna"
|
192 |
|
193 |
-
#: admin.inc.php:
|
194 |
msgid "Format to display the count in: "
|
195 |
msgstr "Formáid a thaispeáint ar an comhaireamh i:"
|
196 |
|
197 |
-
#: admin.inc.php:
|
198 |
#, fuzzy
|
199 |
msgid ""
|
200 |
"Use <code>%totalcount%</code> to display the total count, <code>%dailycount"
|
@@ -207,499 +208,529 @@ msgstr ""
|
|
207 |
"laethúil. e.g. na roghanna réamhshocraithe taispeántais <code> (Cuairt "
|
208 |
"123 amanna, 23 cuairt inniu) </ cód>"
|
209 |
|
210 |
-
#: admin.inc.php:
|
211 |
msgid "Title of popular posts: "
|
212 |
msgstr "Teideal an post tóir:"
|
213 |
|
214 |
-
#: admin.inc.php:
|
215 |
msgid "Title of daily popular posts: "
|
216 |
msgstr "Teideal ar tóir an bpost:"
|
217 |
|
218 |
-
#: admin.inc.php:
|
219 |
msgid "When there are no posts, what should be shown?"
|
220 |
msgstr ""
|
221 |
|
222 |
-
#: admin.inc.php:
|
223 |
msgid "Blank Output"
|
224 |
msgstr ""
|
225 |
|
226 |
-
#: admin.inc.php:
|
227 |
msgid "Display:"
|
228 |
msgstr ""
|
229 |
|
230 |
-
#: admin.inc.php:
|
231 |
msgid "Show post excerpt in list?"
|
232 |
msgstr ""
|
233 |
|
234 |
-
#: admin.inc.php:
|
235 |
msgid "Length of excerpt (in words): "
|
236 |
msgstr ""
|
237 |
|
238 |
-
#: admin.inc.php:
|
|
|
|
|
|
|
|
|
239 |
msgid "Show post date in list?"
|
240 |
msgstr ""
|
241 |
|
242 |
-
#: admin.inc.php:
|
243 |
msgid "Limit post title length (in characters)"
|
244 |
msgstr ""
|
245 |
|
246 |
-
#: admin.inc.php:
|
247 |
msgid "Display number of page views in popular lists?"
|
248 |
msgstr "Taispeáin líon na radhairc leathanaigh i liostaí tóir?"
|
249 |
|
250 |
-
#: admin.inc.php:
|
251 |
msgid "Open links in new window"
|
252 |
msgstr ""
|
253 |
|
254 |
-
#: admin.inc.php:
|
255 |
msgid "Add nofollow attribute to links in the list"
|
256 |
msgstr ""
|
257 |
|
258 |
-
#: admin.inc.php:
|
259 |
msgid "Exclude display of related posts on these posts / pages"
|
260 |
msgstr ""
|
261 |
|
262 |
-
#: admin.inc.php:
|
263 |
msgid "Enter comma separated list of IDs. e.g. 188,320,500"
|
264 |
msgstr ""
|
265 |
|
266 |
-
#: admin.inc.php:
|
267 |
msgid "Customize the output:"
|
268 |
msgstr ""
|
269 |
|
270 |
-
#: admin.inc.php:
|
271 |
#, fuzzy
|
272 |
msgid "HTML to display before the list of posts: "
|
273 |
msgstr "Formáid a thaispeáint ar an comhaireamh i:"
|
274 |
|
275 |
-
#: admin.inc.php:
|
276 |
#, fuzzy
|
277 |
msgid "HTML to display before each list item: "
|
278 |
msgstr "Formáid a thaispeáint ar an comhaireamh i:"
|
279 |
|
280 |
-
#: admin.inc.php:
|
281 |
#, fuzzy
|
282 |
msgid "HTML to display after each list item: "
|
283 |
msgstr "Formáid a thaispeáint ar an comhaireamh i:"
|
284 |
|
285 |
-
#: admin.inc.php:
|
286 |
#, fuzzy
|
287 |
msgid "HTML to display after the list of posts: "
|
288 |
msgstr "Formáid a thaispeáint ar an comhaireamh i:"
|
289 |
|
290 |
-
#: admin.inc.php:
|
291 |
msgid "Post thumbnail options:"
|
292 |
msgstr ""
|
293 |
|
294 |
-
#: admin.inc.php:
|
295 |
msgid "Location of post thumbnail:"
|
296 |
msgstr ""
|
297 |
|
298 |
-
#: admin.inc.php:
|
299 |
#, fuzzy
|
300 |
msgid "Display thumbnails inline with posts, before title"
|
301 |
msgstr "Taispeáin líon na dtuairimí ar phoist?"
|
302 |
|
303 |
-
#: admin.inc.php:
|
304 |
#, fuzzy
|
305 |
msgid "Display thumbnails inline with posts, after title"
|
306 |
msgstr "Taispeáin líon na dtuairimí ar phoist?"
|
307 |
|
308 |
-
#: admin.inc.php:
|
309 |
#, fuzzy
|
310 |
msgid "Display only thumbnails, no text"
|
311 |
msgstr "Taispeáin líon na dtuairimí ar phoist?"
|
312 |
|
313 |
-
#: admin.inc.php:
|
314 |
#, fuzzy
|
315 |
msgid "Do not display thumbnails, only text."
|
316 |
msgstr "Taispeáin líon na dtuairimí ar phoist?"
|
317 |
|
318 |
-
#: admin.inc.php:
|
319 |
msgid "Width of the thumbnail: "
|
320 |
msgstr ""
|
321 |
|
322 |
-
#: admin.inc.php:
|
323 |
msgid "Height of the thumbnail: "
|
324 |
msgstr ""
|
325 |
|
326 |
-
#: admin.inc.php:
|
327 |
msgid "Style attributes / Width and Height HTML attributes:"
|
328 |
msgstr ""
|
329 |
|
330 |
-
#: admin.inc.php:
|
331 |
msgid ""
|
332 |
"Style attributes are used for width and height. <code>style=\"max-width:"
|
333 |
msgstr ""
|
334 |
|
335 |
-
#: admin.inc.php:
|
336 |
msgid ""
|
337 |
"HTML width and height attributes are used for width and height. <code>width="
|
338 |
"\""
|
339 |
msgstr ""
|
340 |
|
341 |
-
#: admin.inc.php:
|
342 |
msgid "Use timthumb to generate thumbnails? "
|
343 |
msgstr ""
|
344 |
|
345 |
-
#: admin.inc.php:
|
346 |
msgid ""
|
347 |
"If checked, <a href=\"http://www.binarymoon.co.uk/projects/timthumb/"
|
348 |
"\">timthumb</a> will be used to generate thumbnails"
|
349 |
msgstr ""
|
350 |
|
351 |
-
#: admin.inc.php:
|
352 |
msgid "Post thumbnail meta field name: "
|
353 |
msgstr ""
|
354 |
|
355 |
-
#: admin.inc.php:
|
356 |
msgid ""
|
357 |
"The value of this field should contain the image source and is set in the "
|
358 |
"<em>Add New Post</em> screen"
|
359 |
msgstr ""
|
360 |
|
361 |
-
#: admin.inc.php:
|
362 |
msgid ""
|
363 |
"If the postmeta is not set, then should the plugin extract the first image "
|
364 |
"from the post?"
|
365 |
msgstr ""
|
366 |
|
367 |
-
#: admin.inc.php:
|
368 |
msgid ""
|
369 |
"This could slow down the loading of your page if the first image in the "
|
370 |
"related posts is large in file-size"
|
371 |
msgstr ""
|
372 |
|
373 |
-
#: admin.inc.php:
|
374 |
msgid "Use default thumbnail? "
|
375 |
msgstr ""
|
376 |
|
377 |
-
#: admin.inc.php:
|
378 |
msgid ""
|
379 |
"If checked, when no thumbnail is found, show a default one from the URL "
|
380 |
"below. If not checked and no thumbnail is found, no image will be shown."
|
381 |
msgstr ""
|
382 |
|
383 |
-
#: admin.inc.php:
|
384 |
msgid "Default thumbnail: "
|
385 |
msgstr ""
|
386 |
|
387 |
-
#: admin.inc.php:
|
388 |
msgid ""
|
389 |
"The plugin will first check if the post contains a thumbnail. If it doesn't "
|
390 |
"then it will check the meta field. If this is not available, then it will "
|
391 |
"show the default image as specified above"
|
392 |
msgstr ""
|
393 |
|
394 |
-
#: admin.inc.php:
|
395 |
msgid "Custom Styles"
|
396 |
msgstr ""
|
397 |
|
398 |
-
#: admin.inc.php:
|
399 |
msgid "Custom CSS to add to header:"
|
400 |
msgstr ""
|
401 |
|
402 |
-
#: admin.inc.php:
|
403 |
msgid ""
|
404 |
"Do not include <code>style</code> tags. Check out the <a href=\"http://"
|
405 |
"wordpress.org/extend/plugins/top-10/faq/\" target=\"_blank\">FAQ</a> for "
|
406 |
"available CSS classes to style."
|
407 |
msgstr ""
|
408 |
|
409 |
-
#: admin.inc.php:
|
410 |
msgid "Maintenance"
|
411 |
msgstr ""
|
412 |
|
413 |
-
#: admin.inc.php:
|
414 |
msgid ""
|
415 |
"Over time the Daily Top 10 database grows in size, which reduces the "
|
416 |
"performance of the plugin. Cleaning the database at regular intervals could "
|
417 |
"improve performance, especially on high traffic blogs."
|
418 |
msgstr ""
|
419 |
|
420 |
-
#: admin.inc.php:
|
421 |
msgid ""
|
422 |
"Note: When scheduled maintenance is enabled, WordPress will run the cron job "
|
423 |
"everytime the job is rescheduled (i.e. you change the settings below). This "
|
424 |
"causes the daily posts table to reset."
|
425 |
msgstr ""
|
426 |
|
427 |
-
#: admin.inc.php:
|
428 |
msgid "Enable scheduled maintenance of daily tables:"
|
429 |
msgstr ""
|
430 |
|
431 |
-
#: admin.inc.php:
|
432 |
msgid "Time to run maintenance"
|
433 |
msgstr ""
|
434 |
|
435 |
-
#: admin.inc.php:
|
436 |
msgid "How often should the maintenance be run:"
|
437 |
msgstr ""
|
438 |
|
439 |
-
#: admin.inc.php:
|
440 |
msgid "Daily"
|
441 |
msgstr ""
|
442 |
|
443 |
-
#: admin.inc.php:
|
444 |
msgid "Weekly"
|
445 |
msgstr ""
|
446 |
|
447 |
-
#: admin.inc.php:
|
448 |
msgid "Fortnightly"
|
449 |
msgstr ""
|
450 |
|
451 |
-
#: admin.inc.php:
|
452 |
msgid "Monthly"
|
453 |
msgstr ""
|
454 |
|
455 |
-
#: admin.inc.php:
|
456 |
msgid "The cron job has been scheduled. Maintenance will run "
|
457 |
msgstr ""
|
458 |
|
459 |
-
#: admin.inc.php:
|
460 |
msgid "The cron job is missing. Please resave this page to add the job"
|
461 |
msgstr ""
|
462 |
|
463 |
-
#: admin.inc.php:
|
464 |
msgid "Maintenance is turned off"
|
465 |
msgstr ""
|
466 |
|
467 |
-
#: admin.inc.php:
|
468 |
#, fuzzy
|
469 |
msgid "Save Options"
|
470 |
msgstr "roghanna"
|
471 |
|
472 |
-
#: admin.inc.php:
|
473 |
#, fuzzy
|
474 |
msgid "Default Options"
|
475 |
msgstr "roghanna"
|
476 |
|
477 |
-
#: admin.inc.php:
|
478 |
msgid "Do you want to set options to Default?"
|
479 |
msgstr "Ar mhaith leat roghanna atá leagtha chun Réamhshocrú?"
|
480 |
|
481 |
-
#: admin.inc.php:
|
482 |
msgid "Reset count"
|
483 |
msgstr ""
|
484 |
|
485 |
-
#: admin.inc.php:
|
486 |
msgid ""
|
487 |
"This cannot be reversed. Make sure that your database has been backed up "
|
488 |
"before proceeding"
|
489 |
msgstr ""
|
490 |
|
491 |
-
#: admin.inc.php:
|
492 |
#, fuzzy
|
493 |
msgid "Reset Popular Posts"
|
494 |
msgstr "Poist Coitianta"
|
495 |
|
496 |
-
#: admin.inc.php:
|
497 |
msgid "Are you sure you want to reset the popular posts?"
|
498 |
msgstr ""
|
499 |
|
500 |
-
#: admin.inc.php:
|
501 |
#, fuzzy
|
502 |
msgid "Reset Daily Popular Posts"
|
503 |
msgstr "Poist Coitianta Laethúil"
|
504 |
|
505 |
-
#: admin.inc.php:
|
506 |
msgid "Are you sure you want to reset the daily popular posts?"
|
507 |
msgstr ""
|
508 |
|
509 |
-
#: admin.inc.php:
|
510 |
msgid "Clear duplicates"
|
511 |
msgstr ""
|
512 |
|
513 |
-
#: admin.inc.php:
|
514 |
msgid "This will delete the duplicate entries in the tables. Proceed?"
|
515 |
msgstr ""
|
516 |
|
517 |
-
#: admin.inc.php:
|
518 |
msgid "Popular Posts"
|
519 |
msgstr "Poist Coitianta"
|
520 |
|
521 |
-
#: admin.inc.php:
|
522 |
msgid "Daily Popular Posts"
|
523 |
msgstr "Poist Coitianta Laethúil"
|
524 |
|
525 |
-
#: admin.inc.php:
|
526 |
#, fuzzy
|
527 |
msgid "Support the development"
|
528 |
msgstr "Tacú le Forbairt"
|
529 |
|
530 |
-
#: admin.inc.php:
|
531 |
msgid "Enter amount in USD: "
|
532 |
msgstr ""
|
533 |
|
534 |
-
#: admin.inc.php:
|
535 |
msgid "Send your donation to the author of"
|
536 |
msgstr ""
|
537 |
|
538 |
-
#: admin.inc.php:
|
539 |
msgid "Follow us"
|
540 |
msgstr ""
|
541 |
|
542 |
-
#: admin.inc.php:
|
543 |
msgid "Quick Links"
|
544 |
msgstr ""
|
545 |
|
546 |
-
#: admin.inc.php:
|
547 |
msgid "Top 10 plugin page"
|
548 |
msgstr ""
|
549 |
|
550 |
-
#: admin.inc.php:
|
551 |
msgid "Other plugins"
|
552 |
msgstr ""
|
553 |
|
554 |
-
#: admin.inc.php:
|
555 |
msgid "Ajay's blog"
|
556 |
msgstr ""
|
557 |
|
558 |
-
#: admin.inc.php:
|
559 |
msgid "Support"
|
560 |
msgstr ""
|
561 |
|
562 |
-
#: admin.inc.php:
|
563 |
#, fuzzy
|
564 |
msgid "Recent developments"
|
565 |
msgstr "Tacú le Forbairt"
|
566 |
|
567 |
-
#: admin.inc.php:
|
568 |
#, fuzzy
|
569 |
msgid "Top 10 Settings"
|
570 |
msgstr "Top 10"
|
571 |
|
572 |
-
#: admin.inc.php:
|
573 |
msgid "Top 10"
|
574 |
msgstr "Top 10"
|
575 |
|
576 |
-
#: admin.inc.php:
|
577 |
#, fuzzy
|
578 |
msgid "Overall Popular Posts"
|
579 |
msgstr "Féach ar Poist Coitianta Foriomlán"
|
580 |
|
581 |
-
#: admin.inc.php:
|
582 |
msgid "Results"
|
583 |
msgstr "torthaí"
|
584 |
|
585 |
-
#: admin.inc.php:
|
586 |
msgid "of"
|
587 |
msgstr "de"
|
588 |
|
589 |
-
#: admin.inc.php:
|
590 |
msgid "Page"
|
591 |
msgstr "Leathanach"
|
592 |
|
593 |
-
#: admin.inc.php:
|
594 |
msgid "View Daily Popular Posts"
|
595 |
msgstr "Féach ar Poist sa lá Coitianta"
|
596 |
|
597 |
-
#: admin.inc.php:
|
598 |
msgid "Results per-page:"
|
599 |
msgstr "Torthaí in aghaidh an-leathanach:"
|
600 |
|
601 |
-
#: admin.inc.php:
|
602 |
msgid "View Overall Popular Posts"
|
603 |
msgstr "Féach ar Poist Coitianta Foriomlán"
|
604 |
|
605 |
-
#: admin.inc.php:
|
606 |
msgid "Previous"
|
607 |
msgstr "roimhe Seo"
|
608 |
|
609 |
-
#: admin.inc.php:
|
610 |
msgid "Next"
|
611 |
msgstr "Ar Aghaidh"
|
612 |
|
613 |
-
#: admin.inc.php:
|
614 |
msgid "Daily Popular"
|
615 |
msgstr "laethúil Coitianta"
|
616 |
|
617 |
-
#: admin.inc.php:
|
618 |
-
|
|
|
619 |
msgstr "laethúil Coitianta"
|
620 |
|
621 |
-
#:
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
622 |
msgid "Display the posts popular this week"
|
623 |
msgstr ""
|
624 |
|
625 |
-
#: top-10.php:
|
626 |
msgid "Title"
|
627 |
msgstr ""
|
628 |
|
629 |
-
#: top-10.php:
|
630 |
msgid "No. of posts"
|
631 |
msgstr ""
|
632 |
|
633 |
-
#: top-10.php:
|
634 |
msgid "Overall"
|
635 |
msgstr ""
|
636 |
|
637 |
-
#: top-10.php:
|
638 |
msgid "Custom time period (Enter below)"
|
639 |
msgstr ""
|
640 |
|
641 |
-
#: top-10.php:
|
642 |
msgid "Range in number of days (applies only to custom option above)"
|
643 |
msgstr ""
|
644 |
|
645 |
-
#: top-10.php:
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
646 |
msgid "Thumbnail options"
|
647 |
msgstr ""
|
648 |
|
649 |
-
#: top-10.php:
|
650 |
#, fuzzy
|
651 |
msgid "Thumbnails inline, before title"
|
652 |
msgstr "Taispeáin líon na dtuairimí ar phoist?"
|
653 |
|
654 |
-
#: top-10.php:
|
655 |
#, fuzzy
|
656 |
msgid "Thumbnails inline, after title"
|
657 |
msgstr "Taispeáin líon na dtuairimí ar phoist?"
|
658 |
|
659 |
-
#: top-10.php:
|
660 |
#, fuzzy
|
661 |
msgid "Only thumbnails, no text"
|
662 |
msgstr "Taispeáin líon na dtuairimí ar phoist?"
|
663 |
|
664 |
-
#: top-10.php:
|
665 |
#, fuzzy
|
666 |
msgid "No thumbnails, only text."
|
667 |
msgstr "Taispeáin líon na dtuairimí ar phoist?"
|
668 |
|
669 |
-
#: top-10.php:
|
670 |
-
msgid "
|
|
|
|
|
|
|
|
|
671 |
msgstr ""
|
672 |
|
673 |
-
#: top-10.php:
|
674 |
msgid "<h3>Popular Posts</h3>"
|
675 |
msgstr "<h3>Poist Coitianta </ h3>"
|
676 |
|
677 |
-
#: top-10.php:
|
678 |
msgid "<h3>Daily Popular</h3>"
|
679 |
msgstr "<h3> laethúil Coitianta </ h3>"
|
680 |
|
681 |
-
#: top-10.php:
|
682 |
#, fuzzy
|
683 |
msgid "No top posts yet"
|
684 |
msgstr "Teideal an post tóir:"
|
685 |
|
686 |
-
#: top-10.php:
|
687 |
msgid "Once Weekly"
|
688 |
msgstr ""
|
689 |
|
690 |
-
#: top-10.php:
|
691 |
msgid "Once Fortnightly"
|
692 |
msgstr ""
|
693 |
|
694 |
-
#: top-10.php:
|
695 |
msgid "Once Monthly"
|
696 |
msgstr ""
|
697 |
|
698 |
-
#: top-10.php:
|
699 |
msgid "Settings"
|
700 |
msgstr ""
|
701 |
|
702 |
-
#: top-10.php:
|
703 |
msgid "Donate"
|
704 |
msgstr ""
|
705 |
|
2 |
msgstr ""
|
3 |
"Project-Id-Version: Топ 10\n"
|
4 |
"Report-Msgid-Bugs-To: \n"
|
5 |
+
"POT-Creation-Date: 2013-09-01 12:50-0000\n"
|
6 |
"PO-Revision-Date: \n"
|
7 |
"Last-Translator: Ajay D'Souza <me@ajaydsouza.com>\n"
|
8 |
"Language-Team: Lets Be Famous <ray.s@letsbefamous.com>\n"
|
15 |
"X-Generator: Poedit 1.5.7\n"
|
16 |
"X-Poedit-SearchPath-0: .\n"
|
17 |
|
18 |
+
#: admin.inc.php:103
|
19 |
msgid "Scheduled maintenance enabled / modified"
|
20 |
msgstr ""
|
21 |
|
22 |
+
#: admin.inc.php:107
|
23 |
msgid "Scheduled maintenance disabled"
|
24 |
msgstr ""
|
25 |
|
26 |
+
#: admin.inc.php:124
|
27 |
msgid "Options saved successfully."
|
28 |
msgstr "Roghanna shábháil go rathúil."
|
29 |
|
30 |
+
#: admin.inc.php:133
|
31 |
msgid "Options set to Default."
|
32 |
msgstr "Roghanna leagtha chun Réamhshocrú."
|
33 |
|
34 |
+
#: admin.inc.php:139
|
35 |
#, fuzzy
|
36 |
msgid "Top 10 popular posts reset"
|
37 |
msgstr "Teideal an post tóir:"
|
38 |
|
39 |
+
#: admin.inc.php:145
|
40 |
#, fuzzy
|
41 |
msgid "Top 10 daily popular posts reset"
|
42 |
msgstr "Teideal ar tóir an bpost:"
|
43 |
|
44 |
+
#: admin.inc.php:152
|
45 |
msgid "Duplicate rows cleaned from tables"
|
46 |
msgstr ""
|
47 |
|
48 |
+
#: admin.inc.php:173
|
49 |
msgid "General options"
|
50 |
msgstr ""
|
51 |
|
52 |
+
#: admin.inc.php:177
|
53 |
msgid "Enable Overall stats"
|
54 |
msgstr ""
|
55 |
|
56 |
+
#: admin.inc.php:182
|
57 |
msgid "Enable Daily stats"
|
58 |
msgstr ""
|
59 |
|
60 |
+
#: admin.inc.php:187
|
61 |
msgid "W3 Total Cache fix:"
|
62 |
msgstr ""
|
63 |
|
64 |
+
#: admin.inc.php:189
|
65 |
msgid ""
|
66 |
"This will try to prevent W3 Total Cache from caching the addcount script of "
|
67 |
"the plugin. Try toggling this option in case you find that our posts are not "
|
68 |
"tracked."
|
69 |
msgstr ""
|
70 |
|
71 |
+
#: admin.inc.php:193
|
72 |
msgid "Number of popular posts to display: "
|
73 |
msgstr "An líon post tóir a thaispeáint:"
|
74 |
|
75 |
+
#: admin.inc.php:197
|
76 |
msgid "Daily Popular should contain views of how many days? "
|
77 |
msgstr "Ba chóir go laethúil Coitianta bhfuil tuairimí cé mhéad lá?"
|
78 |
|
79 |
+
#: admin.inc.php:200
|
80 |
msgid "Post types to include in results (including custom post types)"
|
81 |
msgstr ""
|
82 |
|
83 |
+
#: admin.inc.php:211
|
84 |
msgid "List of post or page IDs to exclude from the results: "
|
85 |
msgstr ""
|
86 |
|
87 |
+
#: admin.inc.php:215
|
88 |
msgid "Exclude Categories: "
|
89 |
msgstr ""
|
90 |
|
91 |
+
#: admin.inc.php:230
|
92 |
msgid ""
|
93 |
"Comma separated list of category slugs. The field above has an autocomplete "
|
94 |
"so simply start typing in the starting letters and it will prompt you with "
|
95 |
"options"
|
96 |
msgstr ""
|
97 |
|
98 |
+
#: admin.inc.php:235
|
99 |
#, fuzzy
|
100 |
msgid "Display number of views on:"
|
101 |
msgstr "Taispeáin líon na dtuairimí ar phoist?"
|
102 |
|
103 |
+
#: admin.inc.php:237
|
104 |
msgid "Posts"
|
105 |
msgstr ""
|
106 |
|
107 |
+
#: admin.inc.php:238
|
108 |
#, fuzzy
|
109 |
msgid "Pages"
|
110 |
msgstr "Leathanach"
|
111 |
|
112 |
+
#: admin.inc.php:239
|
113 |
msgid "Home page"
|
114 |
msgstr ""
|
115 |
|
116 |
+
#: admin.inc.php:240
|
117 |
msgid "Feeds"
|
118 |
msgstr ""
|
119 |
|
120 |
+
#: admin.inc.php:241
|
121 |
msgid "Category archives"
|
122 |
msgstr ""
|
123 |
|
124 |
+
#: admin.inc.php:242
|
125 |
msgid "Tag archives"
|
126 |
msgstr ""
|
127 |
|
128 |
+
#: admin.inc.php:243
|
129 |
msgid "Other archives"
|
130 |
msgstr ""
|
131 |
|
132 |
+
#: admin.inc.php:244
|
133 |
msgid ""
|
134 |
"If you choose to disable this, please add <code><?php if(function_exists"
|
135 |
"('echo_ald_tptn')) echo_ald_tptn(); ?></code> to your template file where "
|
136 |
"you want it displayed"
|
137 |
msgstr ""
|
138 |
|
139 |
+
#: admin.inc.php:247
|
140 |
msgid "Always display latest post count"
|
141 |
msgstr ""
|
142 |
|
143 |
+
#: admin.inc.php:249
|
144 |
msgid ""
|
145 |
"This option uses JavaScript and will increase your page load time. Turn this "
|
146 |
"off if you are not using caching plugins or are OK with displaying older "
|
147 |
+
"cached counts. When you enable this option, the daily widget will not use "
|
148 |
+
"the options set there, but options will need to be set on this screen."
|
149 |
msgstr ""
|
150 |
|
151 |
+
#: admin.inc.php:252
|
152 |
msgid "Always display latest post count in the daily lists"
|
153 |
msgstr ""
|
154 |
|
155 |
+
#: admin.inc.php:254
|
156 |
#, fuzzy
|
157 |
msgid "This option uses JavaScript and will increase your page load time"
|
158 |
msgstr ""
|
160 |
"JavaScript a luchtú ar an bpost agus is féidir a mhéadú do chuid ama a "
|
161 |
"luchtú leathanach"
|
162 |
|
163 |
+
#: admin.inc.php:257
|
164 |
msgid "Track visits of authors on their own posts?"
|
165 |
msgstr "Track cuairteanna ar údair ar a gcuid post féin?"
|
166 |
|
167 |
+
#: admin.inc.php:260
|
168 |
#, fuzzy
|
169 |
msgid "Track visits of admins?"
|
170 |
msgstr "Track cuairteanna ar údair ar a gcuid post féin?"
|
171 |
|
172 |
+
#: admin.inc.php:263
|
173 |
msgid "Display page views on Posts > All Posts in Admin"
|
174 |
msgstr ""
|
175 |
|
176 |
+
#: admin.inc.php:266
|
177 |
msgid "Link to Top 10 plugin page"
|
178 |
msgstr ""
|
179 |
|
180 |
+
#: admin.inc.php:268
|
181 |
#, fuzzy
|
182 |
msgid ""
|
183 |
"A link to the plugin is added as an extra list item to the list of popular "
|
186 |
"Tá nasc chuig an breiseán seo a leanas mar mhír liosta breise le liosta "
|
187 |
"de phoist tóir. Gan éigeantach, ach a bhuíochas má dhéanann tú é!"
|
188 |
|
189 |
+
#: admin.inc.php:275
|
190 |
#, fuzzy
|
191 |
msgid "Output Options"
|
192 |
msgstr "roghanna"
|
193 |
|
194 |
+
#: admin.inc.php:278
|
195 |
msgid "Format to display the count in: "
|
196 |
msgstr "Formáid a thaispeáint ar an comhaireamh i:"
|
197 |
|
198 |
+
#: admin.inc.php:280
|
199 |
#, fuzzy
|
200 |
msgid ""
|
201 |
"Use <code>%totalcount%</code> to display the total count, <code>%dailycount"
|
208 |
"laethúil. e.g. na roghanna réamhshocraithe taispeántais <code> (Cuairt "
|
209 |
"123 amanna, 23 cuairt inniu) </ cód>"
|
210 |
|
211 |
+
#: admin.inc.php:283
|
212 |
msgid "Title of popular posts: "
|
213 |
msgstr "Teideal an post tóir:"
|
214 |
|
215 |
+
#: admin.inc.php:286
|
216 |
msgid "Title of daily popular posts: "
|
217 |
msgstr "Teideal ar tóir an bpost:"
|
218 |
|
219 |
+
#: admin.inc.php:289
|
220 |
msgid "When there are no posts, what should be shown?"
|
221 |
msgstr ""
|
222 |
|
223 |
+
#: admin.inc.php:293
|
224 |
msgid "Blank Output"
|
225 |
msgstr ""
|
226 |
|
227 |
+
#: admin.inc.php:297
|
228 |
msgid "Display:"
|
229 |
msgstr ""
|
230 |
|
231 |
+
#: admin.inc.php:301
|
232 |
msgid "Show post excerpt in list?"
|
233 |
msgstr ""
|
234 |
|
235 |
+
#: admin.inc.php:304
|
236 |
msgid "Length of excerpt (in words): "
|
237 |
msgstr ""
|
238 |
|
239 |
+
#: admin.inc.php:307
|
240 |
+
msgid "Show post author in list?"
|
241 |
+
msgstr ""
|
242 |
+
|
243 |
+
#: admin.inc.php:310
|
244 |
msgid "Show post date in list?"
|
245 |
msgstr ""
|
246 |
|
247 |
+
#: admin.inc.php:313
|
248 |
msgid "Limit post title length (in characters)"
|
249 |
msgstr ""
|
250 |
|
251 |
+
#: admin.inc.php:316
|
252 |
msgid "Display number of page views in popular lists?"
|
253 |
msgstr "Taispeáin líon na radhairc leathanaigh i liostaí tóir?"
|
254 |
|
255 |
+
#: admin.inc.php:319
|
256 |
msgid "Open links in new window"
|
257 |
msgstr ""
|
258 |
|
259 |
+
#: admin.inc.php:322
|
260 |
msgid "Add nofollow attribute to links in the list"
|
261 |
msgstr ""
|
262 |
|
263 |
+
#: admin.inc.php:325
|
264 |
msgid "Exclude display of related posts on these posts / pages"
|
265 |
msgstr ""
|
266 |
|
267 |
+
#: admin.inc.php:328
|
268 |
msgid "Enter comma separated list of IDs. e.g. 188,320,500"
|
269 |
msgstr ""
|
270 |
|
271 |
+
#: admin.inc.php:331
|
272 |
msgid "Customize the output:"
|
273 |
msgstr ""
|
274 |
|
275 |
+
#: admin.inc.php:333
|
276 |
#, fuzzy
|
277 |
msgid "HTML to display before the list of posts: "
|
278 |
msgstr "Formáid a thaispeáint ar an comhaireamh i:"
|
279 |
|
280 |
+
#: admin.inc.php:336
|
281 |
#, fuzzy
|
282 |
msgid "HTML to display before each list item: "
|
283 |
msgstr "Formáid a thaispeáint ar an comhaireamh i:"
|
284 |
|
285 |
+
#: admin.inc.php:339
|
286 |
#, fuzzy
|
287 |
msgid "HTML to display after each list item: "
|
288 |
msgstr "Formáid a thaispeáint ar an comhaireamh i:"
|
289 |
|
290 |
+
#: admin.inc.php:342
|
291 |
#, fuzzy
|
292 |
msgid "HTML to display after the list of posts: "
|
293 |
msgstr "Formáid a thaispeáint ar an comhaireamh i:"
|
294 |
|
295 |
+
#: admin.inc.php:345
|
296 |
msgid "Post thumbnail options:"
|
297 |
msgstr ""
|
298 |
|
299 |
+
#: admin.inc.php:347
|
300 |
msgid "Location of post thumbnail:"
|
301 |
msgstr ""
|
302 |
|
303 |
+
#: admin.inc.php:351
|
304 |
#, fuzzy
|
305 |
msgid "Display thumbnails inline with posts, before title"
|
306 |
msgstr "Taispeáin líon na dtuairimí ar phoist?"
|
307 |
|
308 |
+
#: admin.inc.php:355
|
309 |
#, fuzzy
|
310 |
msgid "Display thumbnails inline with posts, after title"
|
311 |
msgstr "Taispeáin líon na dtuairimí ar phoist?"
|
312 |
|
313 |
+
#: admin.inc.php:359
|
314 |
#, fuzzy
|
315 |
msgid "Display only thumbnails, no text"
|
316 |
msgstr "Taispeáin líon na dtuairimí ar phoist?"
|
317 |
|
318 |
+
#: admin.inc.php:363
|
319 |
#, fuzzy
|
320 |
msgid "Do not display thumbnails, only text."
|
321 |
msgstr "Taispeáin líon na dtuairimí ar phoist?"
|
322 |
|
323 |
+
#: admin.inc.php:367
|
324 |
msgid "Width of the thumbnail: "
|
325 |
msgstr ""
|
326 |
|
327 |
+
#: admin.inc.php:370
|
328 |
msgid "Height of the thumbnail: "
|
329 |
msgstr ""
|
330 |
|
331 |
+
#: admin.inc.php:373
|
332 |
msgid "Style attributes / Width and Height HTML attributes:"
|
333 |
msgstr ""
|
334 |
|
335 |
+
#: admin.inc.php:377
|
336 |
msgid ""
|
337 |
"Style attributes are used for width and height. <code>style=\"max-width:"
|
338 |
msgstr ""
|
339 |
|
340 |
+
#: admin.inc.php:381
|
341 |
msgid ""
|
342 |
"HTML width and height attributes are used for width and height. <code>width="
|
343 |
"\""
|
344 |
msgstr ""
|
345 |
|
346 |
+
#: admin.inc.php:385
|
347 |
msgid "Use timthumb to generate thumbnails? "
|
348 |
msgstr ""
|
349 |
|
350 |
+
#: admin.inc.php:386
|
351 |
msgid ""
|
352 |
"If checked, <a href=\"http://www.binarymoon.co.uk/projects/timthumb/"
|
353 |
"\">timthumb</a> will be used to generate thumbnails"
|
354 |
msgstr ""
|
355 |
|
356 |
+
#: admin.inc.php:388
|
357 |
msgid "Post thumbnail meta field name: "
|
358 |
msgstr ""
|
359 |
|
360 |
+
#: admin.inc.php:389
|
361 |
msgid ""
|
362 |
"The value of this field should contain the image source and is set in the "
|
363 |
"<em>Add New Post</em> screen"
|
364 |
msgstr ""
|
365 |
|
366 |
+
#: admin.inc.php:391
|
367 |
msgid ""
|
368 |
"If the postmeta is not set, then should the plugin extract the first image "
|
369 |
"from the post?"
|
370 |
msgstr ""
|
371 |
|
372 |
+
#: admin.inc.php:392
|
373 |
msgid ""
|
374 |
"This could slow down the loading of your page if the first image in the "
|
375 |
"related posts is large in file-size"
|
376 |
msgstr ""
|
377 |
|
378 |
+
#: admin.inc.php:394
|
379 |
msgid "Use default thumbnail? "
|
380 |
msgstr ""
|
381 |
|
382 |
+
#: admin.inc.php:395
|
383 |
msgid ""
|
384 |
"If checked, when no thumbnail is found, show a default one from the URL "
|
385 |
"below. If not checked and no thumbnail is found, no image will be shown."
|
386 |
msgstr ""
|
387 |
|
388 |
+
#: admin.inc.php:397
|
389 |
msgid "Default thumbnail: "
|
390 |
msgstr ""
|
391 |
|
392 |
+
#: admin.inc.php:398
|
393 |
msgid ""
|
394 |
"The plugin will first check if the post contains a thumbnail. If it doesn't "
|
395 |
"then it will check the meta field. If this is not available, then it will "
|
396 |
"show the default image as specified above"
|
397 |
msgstr ""
|
398 |
|
399 |
+
#: admin.inc.php:404
|
400 |
msgid "Custom Styles"
|
401 |
msgstr ""
|
402 |
|
403 |
+
#: admin.inc.php:407
|
404 |
msgid "Custom CSS to add to header:"
|
405 |
msgstr ""
|
406 |
|
407 |
+
#: admin.inc.php:410
|
408 |
msgid ""
|
409 |
"Do not include <code>style</code> tags. Check out the <a href=\"http://"
|
410 |
"wordpress.org/extend/plugins/top-10/faq/\" target=\"_blank\">FAQ</a> for "
|
411 |
"available CSS classes to style."
|
412 |
msgstr ""
|
413 |
|
414 |
+
#: admin.inc.php:417
|
415 |
msgid "Maintenance"
|
416 |
msgstr ""
|
417 |
|
418 |
+
#: admin.inc.php:421
|
419 |
msgid ""
|
420 |
"Over time the Daily Top 10 database grows in size, which reduces the "
|
421 |
"performance of the plugin. Cleaning the database at regular intervals could "
|
422 |
"improve performance, especially on high traffic blogs."
|
423 |
msgstr ""
|
424 |
|
425 |
+
#: admin.inc.php:422
|
426 |
msgid ""
|
427 |
"Note: When scheduled maintenance is enabled, WordPress will run the cron job "
|
428 |
"everytime the job is rescheduled (i.e. you change the settings below). This "
|
429 |
"causes the daily posts table to reset."
|
430 |
msgstr ""
|
431 |
|
432 |
+
#: admin.inc.php:425
|
433 |
msgid "Enable scheduled maintenance of daily tables:"
|
434 |
msgstr ""
|
435 |
|
436 |
+
#: admin.inc.php:429
|
437 |
msgid "Time to run maintenance"
|
438 |
msgstr ""
|
439 |
|
440 |
+
#: admin.inc.php:432
|
441 |
msgid "How often should the maintenance be run:"
|
442 |
msgstr ""
|
443 |
|
444 |
+
#: admin.inc.php:436
|
445 |
msgid "Daily"
|
446 |
msgstr ""
|
447 |
|
448 |
+
#: admin.inc.php:440
|
449 |
msgid "Weekly"
|
450 |
msgstr ""
|
451 |
|
452 |
+
#: admin.inc.php:444
|
453 |
msgid "Fortnightly"
|
454 |
msgstr ""
|
455 |
|
456 |
+
#: admin.inc.php:448
|
457 |
msgid "Monthly"
|
458 |
msgstr ""
|
459 |
|
460 |
+
#: admin.inc.php:457
|
461 |
msgid "The cron job has been scheduled. Maintenance will run "
|
462 |
msgstr ""
|
463 |
|
464 |
+
#: admin.inc.php:462
|
465 |
msgid "The cron job is missing. Please resave this page to add the job"
|
466 |
msgstr ""
|
467 |
|
468 |
+
#: admin.inc.php:467
|
469 |
msgid "Maintenance is turned off"
|
470 |
msgstr ""
|
471 |
|
472 |
+
#: admin.inc.php:475
|
473 |
#, fuzzy
|
474 |
msgid "Save Options"
|
475 |
msgstr "roghanna"
|
476 |
|
477 |
+
#: admin.inc.php:476
|
478 |
#, fuzzy
|
479 |
msgid "Default Options"
|
480 |
msgstr "roghanna"
|
481 |
|
482 |
+
#: admin.inc.php:476
|
483 |
msgid "Do you want to set options to Default?"
|
484 |
msgstr "Ar mhaith leat roghanna atá leagtha chun Réamhshocrú?"
|
485 |
|
486 |
+
#: admin.inc.php:480
|
487 |
msgid "Reset count"
|
488 |
msgstr ""
|
489 |
|
490 |
+
#: admin.inc.php:483
|
491 |
msgid ""
|
492 |
"This cannot be reversed. Make sure that your database has been backed up "
|
493 |
"before proceeding"
|
494 |
msgstr ""
|
495 |
|
496 |
+
#: admin.inc.php:486
|
497 |
#, fuzzy
|
498 |
msgid "Reset Popular Posts"
|
499 |
msgstr "Poist Coitianta"
|
500 |
|
501 |
+
#: admin.inc.php:486
|
502 |
msgid "Are you sure you want to reset the popular posts?"
|
503 |
msgstr ""
|
504 |
|
505 |
+
#: admin.inc.php:487
|
506 |
#, fuzzy
|
507 |
msgid "Reset Daily Popular Posts"
|
508 |
msgstr "Poist Coitianta Laethúil"
|
509 |
|
510 |
+
#: admin.inc.php:487
|
511 |
msgid "Are you sure you want to reset the daily popular posts?"
|
512 |
msgstr ""
|
513 |
|
514 |
+
#: admin.inc.php:488
|
515 |
msgid "Clear duplicates"
|
516 |
msgstr ""
|
517 |
|
518 |
+
#: admin.inc.php:488
|
519 |
msgid "This will delete the duplicate entries in the tables. Proceed?"
|
520 |
msgstr ""
|
521 |
|
522 |
+
#: admin.inc.php:531 admin.inc.php:906 top-10.php:476
|
523 |
msgid "Popular Posts"
|
524 |
msgstr "Poist Coitianta"
|
525 |
|
526 |
+
#: admin.inc.php:531 admin.inc.php:618
|
527 |
msgid "Daily Popular Posts"
|
528 |
msgstr "Poist Coitianta Laethúil"
|
529 |
|
530 |
+
#: admin.inc.php:559
|
531 |
#, fuzzy
|
532 |
msgid "Support the development"
|
533 |
msgstr "Tacú le Forbairt"
|
534 |
|
535 |
+
#: admin.inc.php:567
|
536 |
msgid "Enter amount in USD: "
|
537 |
msgstr ""
|
538 |
|
539 |
+
#: admin.inc.php:571
|
540 |
msgid "Send your donation to the author of"
|
541 |
msgstr ""
|
542 |
|
543 |
+
#: admin.inc.php:577
|
544 |
msgid "Follow us"
|
545 |
msgstr ""
|
546 |
|
547 |
+
#: admin.inc.php:583
|
548 |
msgid "Quick Links"
|
549 |
msgstr ""
|
550 |
|
551 |
+
#: admin.inc.php:585
|
552 |
msgid "Top 10 plugin page"
|
553 |
msgstr ""
|
554 |
|
555 |
+
#: admin.inc.php:586
|
556 |
msgid "Other plugins"
|
557 |
msgstr ""
|
558 |
|
559 |
+
#: admin.inc.php:587
|
560 |
msgid "Ajay's blog"
|
561 |
msgstr ""
|
562 |
|
563 |
+
#: admin.inc.php:588 top-10.php:1123
|
564 |
msgid "Support"
|
565 |
msgstr ""
|
566 |
|
567 |
+
#: admin.inc.php:592
|
568 |
#, fuzzy
|
569 |
msgid "Recent developments"
|
570 |
msgstr "Tacú le Forbairt"
|
571 |
|
572 |
+
#: admin.inc.php:609 admin.inc.php:612
|
573 |
#, fuzzy
|
574 |
msgid "Top 10 Settings"
|
575 |
msgstr "Top 10"
|
576 |
|
577 |
+
#: admin.inc.php:609
|
578 |
msgid "Top 10"
|
579 |
msgstr "Top 10"
|
580 |
|
581 |
+
#: admin.inc.php:615
|
582 |
#, fuzzy
|
583 |
msgid "Overall Popular Posts"
|
584 |
msgstr "Féach ar Poist Coitianta Foriomlán"
|
585 |
|
586 |
+
#: admin.inc.php:786
|
587 |
msgid "Results"
|
588 |
msgstr "torthaí"
|
589 |
|
590 |
+
#: admin.inc.php:788 admin.inc.php:794
|
591 |
msgid "of"
|
592 |
msgstr "de"
|
593 |
|
594 |
+
#: admin.inc.php:792
|
595 |
msgid "Page"
|
596 |
msgstr "Leathanach"
|
597 |
|
598 |
+
#: admin.inc.php:806
|
599 |
msgid "View Daily Popular Posts"
|
600 |
msgstr "Féach ar Poist sa lá Coitianta"
|
601 |
|
602 |
+
#: admin.inc.php:809 admin.inc.php:822
|
603 |
msgid "Results per-page:"
|
604 |
msgstr "Torthaí in aghaidh an-leathanach:"
|
605 |
|
606 |
+
#: admin.inc.php:819
|
607 |
msgid "View Overall Popular Posts"
|
608 |
msgstr "Féach ar Poist Coitianta Foriomlán"
|
609 |
|
610 |
+
#: admin.inc.php:848
|
611 |
msgid "Previous"
|
612 |
msgstr "roimhe Seo"
|
613 |
|
614 |
+
#: admin.inc.php:866
|
615 |
msgid "Next"
|
616 |
msgstr "Ar Aghaidh"
|
617 |
|
618 |
+
#: admin.inc.php:907
|
619 |
msgid "Daily Popular"
|
620 |
msgstr "laethúil Coitianta"
|
621 |
|
622 |
+
#: admin.inc.php:923
|
623 |
+
#, fuzzy
|
624 |
+
msgid "Total Views"
|
625 |
msgstr "laethúil Coitianta"
|
626 |
|
627 |
+
#: admin.inc.php:924
|
628 |
+
#, fuzzy
|
629 |
+
msgid "Today's Views"
|
630 |
+
msgstr "laethúil Coitianta"
|
631 |
+
|
632 |
+
#: top-10.php:393
|
633 |
+
msgid " Posted by "
|
634 |
+
msgstr ""
|
635 |
+
|
636 |
+
#: top-10.php:475
|
637 |
msgid "Display the posts popular this week"
|
638 |
msgstr ""
|
639 |
|
640 |
+
#: top-10.php:493
|
641 |
msgid "Title"
|
642 |
msgstr ""
|
643 |
|
644 |
+
#: top-10.php:498
|
645 |
msgid "No. of posts"
|
646 |
msgstr ""
|
647 |
|
648 |
+
#: top-10.php:503
|
649 |
msgid "Overall"
|
650 |
msgstr ""
|
651 |
|
652 |
+
#: top-10.php:504
|
653 |
msgid "Custom time period (Enter below)"
|
654 |
msgstr ""
|
655 |
|
656 |
+
#: top-10.php:509
|
657 |
msgid "Range in number of days (applies only to custom option above)"
|
658 |
msgstr ""
|
659 |
|
660 |
+
#: top-10.php:514
|
661 |
+
msgid " Show excerpt?"
|
662 |
+
msgstr ""
|
663 |
+
|
664 |
+
#: top-10.php:519
|
665 |
+
msgid " Show author?"
|
666 |
+
msgstr ""
|
667 |
+
|
668 |
+
#: top-10.php:524
|
669 |
+
msgid " Show date?"
|
670 |
+
msgstr ""
|
671 |
+
|
672 |
+
#: top-10.php:528
|
673 |
msgid "Thumbnail options"
|
674 |
msgstr ""
|
675 |
|
676 |
+
#: top-10.php:530
|
677 |
#, fuzzy
|
678 |
msgid "Thumbnails inline, before title"
|
679 |
msgstr "Taispeáin líon na dtuairimí ar phoist?"
|
680 |
|
681 |
+
#: top-10.php:531
|
682 |
#, fuzzy
|
683 |
msgid "Thumbnails inline, after title"
|
684 |
msgstr "Taispeáin líon na dtuairimí ar phoist?"
|
685 |
|
686 |
+
#: top-10.php:532
|
687 |
#, fuzzy
|
688 |
msgid "Only thumbnails, no text"
|
689 |
msgstr "Taispeáin líon na dtuairimí ar phoist?"
|
690 |
|
691 |
+
#: top-10.php:533
|
692 |
#, fuzzy
|
693 |
msgid "No thumbnails, only text."
|
694 |
msgstr "Taispeáin líon na dtuairimí ar phoist?"
|
695 |
|
696 |
+
#: top-10.php:538
|
697 |
+
msgid "Thumbnail height"
|
698 |
+
msgstr ""
|
699 |
+
|
700 |
+
#: top-10.php:543
|
701 |
+
msgid "Thumbnail width"
|
702 |
msgstr ""
|
703 |
|
704 |
+
#: top-10.php:646
|
705 |
msgid "<h3>Popular Posts</h3>"
|
706 |
msgstr "<h3>Poist Coitianta </ h3>"
|
707 |
|
708 |
+
#: top-10.php:647
|
709 |
msgid "<h3>Daily Popular</h3>"
|
710 |
msgstr "<h3> laethúil Coitianta </ h3>"
|
711 |
|
712 |
+
#: top-10.php:648
|
713 |
#, fuzzy
|
714 |
msgid "No top posts yet"
|
715 |
msgstr "Teideal an post tóir:"
|
716 |
|
717 |
+
#: top-10.php:1089
|
718 |
msgid "Once Weekly"
|
719 |
msgstr ""
|
720 |
|
721 |
+
#: top-10.php:1090
|
722 |
msgid "Once Fortnightly"
|
723 |
msgstr ""
|
724 |
|
725 |
+
#: top-10.php:1091
|
726 |
msgid "Once Monthly"
|
727 |
msgstr ""
|
728 |
|
729 |
+
#: top-10.php:1111
|
730 |
msgid "Settings"
|
731 |
msgstr ""
|
732 |
|
733 |
+
#: top-10.php:1124
|
734 |
msgid "Donate"
|
735 |
msgstr ""
|
736 |
|
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: 2013-
|
6 |
"PO-Revision-Date: \n"
|
7 |
"Last-Translator: Ajay D'Souza <me@ajaydsouza.com>\n"
|
8 |
"Language-Team: Outshine Solutions <ashish@outshinesolutions.com>\n"
|
@@ -16,167 +16,168 @@ msgstr ""
|
|
16 |
"X-Generator: Poedit 1.5.7\n"
|
17 |
"X-Poedit-SearchPath-0: .\n"
|
18 |
|
19 |
-
#: admin.inc.php:
|
20 |
msgid "Scheduled maintenance enabled / modified"
|
21 |
msgstr ""
|
22 |
|
23 |
-
#: admin.inc.php:
|
24 |
msgid "Scheduled maintenance disabled"
|
25 |
msgstr ""
|
26 |
|
27 |
-
#: admin.inc.php:
|
28 |
msgid "Options saved successfully."
|
29 |
msgstr "विकल्प सफलतापूर्वक बचाया."
|
30 |
|
31 |
-
#: admin.inc.php:
|
32 |
msgid "Options set to Default."
|
33 |
msgstr "विकल्प डिफ़ॉल्ट से तैयार है."
|
34 |
|
35 |
-
#: admin.inc.php:
|
36 |
#, fuzzy
|
37 |
msgid "Top 10 popular posts reset"
|
38 |
msgstr "लोकप्रिय पदों का शीर्षक:"
|
39 |
|
40 |
-
#: admin.inc.php:
|
41 |
#, fuzzy
|
42 |
msgid "Top 10 daily popular posts reset"
|
43 |
msgstr "दैनिक लोकप्रिय पदों का शीर्षक:"
|
44 |
|
45 |
-
#: admin.inc.php:
|
46 |
msgid "Duplicate rows cleaned from tables"
|
47 |
msgstr ""
|
48 |
|
49 |
-
#: admin.inc.php:
|
50 |
msgid "General options"
|
51 |
msgstr ""
|
52 |
|
53 |
-
#: admin.inc.php:
|
54 |
msgid "Enable Overall stats"
|
55 |
msgstr ""
|
56 |
|
57 |
-
#: admin.inc.php:
|
58 |
msgid "Enable Daily stats"
|
59 |
msgstr ""
|
60 |
|
61 |
-
#: admin.inc.php:
|
62 |
msgid "W3 Total Cache fix:"
|
63 |
msgstr ""
|
64 |
|
65 |
-
#: admin.inc.php:
|
66 |
msgid ""
|
67 |
"This will try to prevent W3 Total Cache from caching the addcount script of "
|
68 |
"the plugin. Try toggling this option in case you find that our posts are not "
|
69 |
"tracked."
|
70 |
msgstr ""
|
71 |
|
72 |
-
#: admin.inc.php:
|
73 |
msgid "Number of popular posts to display: "
|
74 |
msgstr "लोकप्रिय पदों की संख्या प्रदर्शित करने के लिए:"
|
75 |
|
76 |
-
#: admin.inc.php:
|
77 |
msgid "Daily Popular should contain views of how many days? "
|
78 |
msgstr "दैनिक लोकप्रिय कितने दिनों के विचारों को शामिल करना चाहिए?"
|
79 |
|
80 |
-
#: admin.inc.php:
|
81 |
msgid "Post types to include in results (including custom post types)"
|
82 |
msgstr ""
|
83 |
|
84 |
-
#: admin.inc.php:
|
85 |
msgid "List of post or page IDs to exclude from the results: "
|
86 |
msgstr ""
|
87 |
|
88 |
-
#: admin.inc.php:
|
89 |
msgid "Exclude Categories: "
|
90 |
msgstr ""
|
91 |
|
92 |
-
#: admin.inc.php:
|
93 |
msgid ""
|
94 |
"Comma separated list of category slugs. The field above has an autocomplete "
|
95 |
"so simply start typing in the starting letters and it will prompt you with "
|
96 |
"options"
|
97 |
msgstr ""
|
98 |
|
99 |
-
#: admin.inc.php:
|
100 |
#, fuzzy
|
101 |
msgid "Display number of views on:"
|
102 |
msgstr "पदों पर विचारों के प्रदर्शन की संख्या?"
|
103 |
|
104 |
-
#: admin.inc.php:
|
105 |
msgid "Posts"
|
106 |
msgstr ""
|
107 |
|
108 |
-
#: admin.inc.php:
|
109 |
#, fuzzy
|
110 |
msgid "Pages"
|
111 |
msgstr "पृष्ठ"
|
112 |
|
113 |
-
#: admin.inc.php:
|
114 |
msgid "Home page"
|
115 |
msgstr ""
|
116 |
|
117 |
-
#: admin.inc.php:
|
118 |
msgid "Feeds"
|
119 |
msgstr ""
|
120 |
|
121 |
-
#: admin.inc.php:
|
122 |
msgid "Category archives"
|
123 |
msgstr ""
|
124 |
|
125 |
-
#: admin.inc.php:
|
126 |
msgid "Tag archives"
|
127 |
msgstr ""
|
128 |
|
129 |
-
#: admin.inc.php:
|
130 |
msgid "Other archives"
|
131 |
msgstr ""
|
132 |
|
133 |
-
#: admin.inc.php:
|
134 |
msgid ""
|
135 |
"If you choose to disable this, please add <code><?php if(function_exists"
|
136 |
"('echo_ald_tptn')) echo_ald_tptn(); ?></code> to your template file where "
|
137 |
"you want it displayed"
|
138 |
msgstr ""
|
139 |
|
140 |
-
#: admin.inc.php:
|
141 |
msgid "Always display latest post count"
|
142 |
msgstr ""
|
143 |
|
144 |
-
#: admin.inc.php:
|
145 |
msgid ""
|
146 |
"This option uses JavaScript and will increase your page load time. Turn this "
|
147 |
"off if you are not using caching plugins or are OK with displaying older "
|
148 |
-
"cached counts"
|
|
|
149 |
msgstr ""
|
150 |
|
151 |
-
#: admin.inc.php:
|
152 |
msgid "Always display latest post count in the daily lists"
|
153 |
msgstr ""
|
154 |
|
155 |
-
#: admin.inc.php:
|
156 |
#, fuzzy
|
157 |
msgid "This option uses JavaScript and will increase your page load time"
|
158 |
msgstr ""
|
159 |
"सेना दैनिक 'पदों की सूची गतिशील हो? इस विकल्प को पद भार जावास्क्रिप्ट का उपयोग करता "
|
160 |
"है और अपने पृष्ठ लोड समय बढ़ा सकते हैं"
|
161 |
|
162 |
-
#: admin.inc.php:
|
163 |
msgid "Track visits of authors on their own posts?"
|
164 |
msgstr "ट्रैक लेखक के अपने पदों पर यात्रा?"
|
165 |
|
166 |
-
#: admin.inc.php:
|
167 |
#, fuzzy
|
168 |
msgid "Track visits of admins?"
|
169 |
msgstr "ट्रैक लेखक के अपने पदों पर यात्रा?"
|
170 |
|
171 |
-
#: admin.inc.php:
|
172 |
msgid "Display page views on Posts > All Posts in Admin"
|
173 |
msgstr ""
|
174 |
|
175 |
-
#: admin.inc.php:
|
176 |
msgid "Link to Top 10 plugin page"
|
177 |
msgstr ""
|
178 |
|
179 |
-
#: admin.inc.php:
|
180 |
#, fuzzy
|
181 |
msgid ""
|
182 |
"A link to the plugin is added as an extra list item to the list of popular "
|
@@ -185,16 +186,16 @@ msgstr ""
|
|
185 |
"प्लगइन के लिए एक कड़ी लोकप्रिय पदों की सूची के लिए एक अतिरिक्त सूची आइटम के रूप में जोड़ा "
|
186 |
"है. नहीं अनिवार्य है, लेकिन धन्यवाद यदि तुम इसे करो!"
|
187 |
|
188 |
-
#: admin.inc.php:
|
189 |
#, fuzzy
|
190 |
msgid "Output Options"
|
191 |
msgstr "विकल्प हैं:"
|
192 |
|
193 |
-
#: admin.inc.php:
|
194 |
msgid "Format to display the count in: "
|
195 |
msgstr "प्रारूप में गिनती प्रदर्शित करने के लिए:"
|
196 |
|
197 |
-
#: admin.inc.php:
|
198 |
#, fuzzy
|
199 |
msgid ""
|
200 |
"Use <code>%totalcount%</code> to display the total count, <code>%dailycount"
|
@@ -206,491 +207,521 @@ msgstr ""
|
|
206 |
"dailycount% </ कोड> को दैनिक गणना प्रदर्शन. उदाहरण डिफ़ॉल्ट विकल्प प्रदर्शित <code> "
|
207 |
"(दौरा 123 बार, 23 का दौरा आज) </ कोड>"
|
208 |
|
209 |
-
#: admin.inc.php:
|
210 |
msgid "Title of popular posts: "
|
211 |
msgstr "लोकप्रिय पदों का शीर्षक:"
|
212 |
|
213 |
-
#: admin.inc.php:
|
214 |
msgid "Title of daily popular posts: "
|
215 |
msgstr "दैनिक लोकप्रिय पदों का शीर्षक:"
|
216 |
|
217 |
-
#: admin.inc.php:
|
218 |
msgid "When there are no posts, what should be shown?"
|
219 |
msgstr ""
|
220 |
|
221 |
-
#: admin.inc.php:
|
222 |
msgid "Blank Output"
|
223 |
msgstr ""
|
224 |
|
225 |
-
#: admin.inc.php:
|
226 |
msgid "Display:"
|
227 |
msgstr ""
|
228 |
|
229 |
-
#: admin.inc.php:
|
230 |
msgid "Show post excerpt in list?"
|
231 |
msgstr ""
|
232 |
|
233 |
-
#: admin.inc.php:
|
234 |
msgid "Length of excerpt (in words): "
|
235 |
msgstr ""
|
236 |
|
237 |
-
#: admin.inc.php:
|
|
|
|
|
|
|
|
|
238 |
msgid "Show post date in list?"
|
239 |
msgstr ""
|
240 |
|
241 |
-
#: admin.inc.php:
|
242 |
msgid "Limit post title length (in characters)"
|
243 |
msgstr ""
|
244 |
|
245 |
-
#: admin.inc.php:
|
246 |
msgid "Display number of page views in popular lists?"
|
247 |
msgstr "लोकप्रिय सूची में पृष्ठ विचारों का प्रदर्शन नंबर?"
|
248 |
|
249 |
-
#: admin.inc.php:
|
250 |
msgid "Open links in new window"
|
251 |
msgstr ""
|
252 |
|
253 |
-
#: admin.inc.php:
|
254 |
msgid "Add nofollow attribute to links in the list"
|
255 |
msgstr ""
|
256 |
|
257 |
-
#: admin.inc.php:
|
258 |
msgid "Exclude display of related posts on these posts / pages"
|
259 |
msgstr ""
|
260 |
|
261 |
-
#: admin.inc.php:
|
262 |
msgid "Enter comma separated list of IDs. e.g. 188,320,500"
|
263 |
msgstr ""
|
264 |
|
265 |
-
#: admin.inc.php:
|
266 |
msgid "Customize the output:"
|
267 |
msgstr ""
|
268 |
|
269 |
-
#: admin.inc.php:
|
270 |
msgid "HTML to display before the list of posts: "
|
271 |
msgstr ""
|
272 |
|
273 |
-
#: admin.inc.php:
|
274 |
msgid "HTML to display before each list item: "
|
275 |
msgstr ""
|
276 |
|
277 |
-
#: admin.inc.php:
|
278 |
#, fuzzy
|
279 |
msgid "HTML to display after each list item: "
|
280 |
msgstr "प्रारूप में गिनती प्रदर्शित करने के लिए:"
|
281 |
|
282 |
-
#: admin.inc.php:
|
283 |
msgid "HTML to display after the list of posts: "
|
284 |
msgstr ""
|
285 |
|
286 |
-
#: admin.inc.php:
|
287 |
msgid "Post thumbnail options:"
|
288 |
msgstr ""
|
289 |
|
290 |
-
#: admin.inc.php:
|
291 |
msgid "Location of post thumbnail:"
|
292 |
msgstr ""
|
293 |
|
294 |
-
#: admin.inc.php:
|
295 |
#, fuzzy
|
296 |
msgid "Display thumbnails inline with posts, before title"
|
297 |
msgstr "पदों पर विचारों के प्रदर्शन की संख्या?"
|
298 |
|
299 |
-
#: admin.inc.php:
|
300 |
#, fuzzy
|
301 |
msgid "Display thumbnails inline with posts, after title"
|
302 |
msgstr "पदों पर विचारों के प्रदर्शन की संख्या?"
|
303 |
|
304 |
-
#: admin.inc.php:
|
305 |
msgid "Display only thumbnails, no text"
|
306 |
msgstr ""
|
307 |
|
308 |
-
#: admin.inc.php:
|
309 |
msgid "Do not display thumbnails, only text."
|
310 |
msgstr ""
|
311 |
|
312 |
-
#: admin.inc.php:
|
313 |
msgid "Width of the thumbnail: "
|
314 |
msgstr ""
|
315 |
|
316 |
-
#: admin.inc.php:
|
317 |
msgid "Height of the thumbnail: "
|
318 |
msgstr ""
|
319 |
|
320 |
-
#: admin.inc.php:
|
321 |
msgid "Style attributes / Width and Height HTML attributes:"
|
322 |
msgstr ""
|
323 |
|
324 |
-
#: admin.inc.php:
|
325 |
msgid ""
|
326 |
"Style attributes are used for width and height. <code>style=\"max-width:"
|
327 |
msgstr ""
|
328 |
|
329 |
-
#: admin.inc.php:
|
330 |
msgid ""
|
331 |
"HTML width and height attributes are used for width and height. <code>width="
|
332 |
"\""
|
333 |
msgstr ""
|
334 |
|
335 |
-
#: admin.inc.php:
|
336 |
msgid "Use timthumb to generate thumbnails? "
|
337 |
msgstr ""
|
338 |
|
339 |
-
#: admin.inc.php:
|
340 |
msgid ""
|
341 |
"If checked, <a href=\"http://www.binarymoon.co.uk/projects/timthumb/"
|
342 |
"\">timthumb</a> will be used to generate thumbnails"
|
343 |
msgstr ""
|
344 |
|
345 |
-
#: admin.inc.php:
|
346 |
msgid "Post thumbnail meta field name: "
|
347 |
msgstr ""
|
348 |
|
349 |
-
#: admin.inc.php:
|
350 |
msgid ""
|
351 |
"The value of this field should contain the image source and is set in the "
|
352 |
"<em>Add New Post</em> screen"
|
353 |
msgstr ""
|
354 |
|
355 |
-
#: admin.inc.php:
|
356 |
msgid ""
|
357 |
"If the postmeta is not set, then should the plugin extract the first image "
|
358 |
"from the post?"
|
359 |
msgstr ""
|
360 |
|
361 |
-
#: admin.inc.php:
|
362 |
msgid ""
|
363 |
"This could slow down the loading of your page if the first image in the "
|
364 |
"related posts is large in file-size"
|
365 |
msgstr ""
|
366 |
|
367 |
-
#: admin.inc.php:
|
368 |
msgid "Use default thumbnail? "
|
369 |
msgstr ""
|
370 |
|
371 |
-
#: admin.inc.php:
|
372 |
msgid ""
|
373 |
"If checked, when no thumbnail is found, show a default one from the URL "
|
374 |
"below. If not checked and no thumbnail is found, no image will be shown."
|
375 |
msgstr ""
|
376 |
|
377 |
-
#: admin.inc.php:
|
378 |
msgid "Default thumbnail: "
|
379 |
msgstr ""
|
380 |
|
381 |
-
#: admin.inc.php:
|
382 |
msgid ""
|
383 |
"The plugin will first check if the post contains a thumbnail. If it doesn't "
|
384 |
"then it will check the meta field. If this is not available, then it will "
|
385 |
"show the default image as specified above"
|
386 |
msgstr ""
|
387 |
|
388 |
-
#: admin.inc.php:
|
389 |
msgid "Custom Styles"
|
390 |
msgstr ""
|
391 |
|
392 |
-
#: admin.inc.php:
|
393 |
msgid "Custom CSS to add to header:"
|
394 |
msgstr ""
|
395 |
|
396 |
-
#: admin.inc.php:
|
397 |
msgid ""
|
398 |
"Do not include <code>style</code> tags. Check out the <a href=\"http://"
|
399 |
"wordpress.org/extend/plugins/top-10/faq/\" target=\"_blank\">FAQ</a> for "
|
400 |
"available CSS classes to style."
|
401 |
msgstr ""
|
402 |
|
403 |
-
#: admin.inc.php:
|
404 |
msgid "Maintenance"
|
405 |
msgstr ""
|
406 |
|
407 |
-
#: admin.inc.php:
|
408 |
msgid ""
|
409 |
"Over time the Daily Top 10 database grows in size, which reduces the "
|
410 |
"performance of the plugin. Cleaning the database at regular intervals could "
|
411 |
"improve performance, especially on high traffic blogs."
|
412 |
msgstr ""
|
413 |
|
414 |
-
#: admin.inc.php:
|
415 |
msgid ""
|
416 |
"Note: When scheduled maintenance is enabled, WordPress will run the cron job "
|
417 |
"everytime the job is rescheduled (i.e. you change the settings below). This "
|
418 |
"causes the daily posts table to reset."
|
419 |
msgstr ""
|
420 |
|
421 |
-
#: admin.inc.php:
|
422 |
msgid "Enable scheduled maintenance of daily tables:"
|
423 |
msgstr ""
|
424 |
|
425 |
-
#: admin.inc.php:
|
426 |
msgid "Time to run maintenance"
|
427 |
msgstr ""
|
428 |
|
429 |
-
#: admin.inc.php:
|
430 |
msgid "How often should the maintenance be run:"
|
431 |
msgstr ""
|
432 |
|
433 |
-
#: admin.inc.php:
|
434 |
msgid "Daily"
|
435 |
msgstr ""
|
436 |
|
437 |
-
#: admin.inc.php:
|
438 |
msgid "Weekly"
|
439 |
msgstr ""
|
440 |
|
441 |
-
#: admin.inc.php:
|
442 |
msgid "Fortnightly"
|
443 |
msgstr ""
|
444 |
|
445 |
-
#: admin.inc.php:
|
446 |
msgid "Monthly"
|
447 |
msgstr ""
|
448 |
|
449 |
-
#: admin.inc.php:
|
450 |
msgid "The cron job has been scheduled. Maintenance will run "
|
451 |
msgstr ""
|
452 |
|
453 |
-
#: admin.inc.php:
|
454 |
msgid "The cron job is missing. Please resave this page to add the job"
|
455 |
msgstr ""
|
456 |
|
457 |
-
#: admin.inc.php:
|
458 |
msgid "Maintenance is turned off"
|
459 |
msgstr ""
|
460 |
|
461 |
-
#: admin.inc.php:
|
462 |
#, fuzzy
|
463 |
msgid "Save Options"
|
464 |
msgstr "विकल्प हैं:"
|
465 |
|
466 |
-
#: admin.inc.php:
|
467 |
#, fuzzy
|
468 |
msgid "Default Options"
|
469 |
msgstr "विकल्प हैं:"
|
470 |
|
471 |
-
#: admin.inc.php:
|
472 |
msgid "Do you want to set options to Default?"
|
473 |
msgstr "क्या आप डिफ़ॉल्ट विकल्प सेट करना चाहते हैं?"
|
474 |
|
475 |
-
#: admin.inc.php:
|
476 |
msgid "Reset count"
|
477 |
msgstr ""
|
478 |
|
479 |
-
#: admin.inc.php:
|
480 |
msgid ""
|
481 |
"This cannot be reversed. Make sure that your database has been backed up "
|
482 |
"before proceeding"
|
483 |
msgstr ""
|
484 |
|
485 |
-
#: admin.inc.php:
|
486 |
#, fuzzy
|
487 |
msgid "Reset Popular Posts"
|
488 |
msgstr "लोकप्रिय पोस्ट्स "
|
489 |
|
490 |
-
#: admin.inc.php:
|
491 |
msgid "Are you sure you want to reset the popular posts?"
|
492 |
msgstr ""
|
493 |
|
494 |
-
#: admin.inc.php:
|
495 |
#, fuzzy
|
496 |
msgid "Reset Daily Popular Posts"
|
497 |
msgstr "दैनिक लोकप्रिय पोस्ट्स "
|
498 |
|
499 |
-
#: admin.inc.php:
|
500 |
msgid "Are you sure you want to reset the daily popular posts?"
|
501 |
msgstr ""
|
502 |
|
503 |
-
#: admin.inc.php:
|
504 |
msgid "Clear duplicates"
|
505 |
msgstr ""
|
506 |
|
507 |
-
#: admin.inc.php:
|
508 |
msgid "This will delete the duplicate entries in the tables. Proceed?"
|
509 |
msgstr ""
|
510 |
|
511 |
-
#: admin.inc.php:
|
512 |
msgid "Popular Posts"
|
513 |
msgstr "लोकप्रिय पोस्ट्स "
|
514 |
|
515 |
-
#: admin.inc.php:
|
516 |
msgid "Daily Popular Posts"
|
517 |
msgstr "दैनिक लोकप्रिय पोस्ट्स "
|
518 |
|
519 |
-
#: admin.inc.php:
|
520 |
#, fuzzy
|
521 |
msgid "Support the development"
|
522 |
msgstr "समर्थन विकास"
|
523 |
|
524 |
-
#: admin.inc.php:
|
525 |
msgid "Enter amount in USD: "
|
526 |
msgstr ""
|
527 |
|
528 |
-
#: admin.inc.php:
|
529 |
msgid "Send your donation to the author of"
|
530 |
msgstr ""
|
531 |
|
532 |
-
#: admin.inc.php:
|
533 |
msgid "Follow us"
|
534 |
msgstr ""
|
535 |
|
536 |
-
#: admin.inc.php:
|
537 |
msgid "Quick Links"
|
538 |
msgstr ""
|
539 |
|
540 |
-
#: admin.inc.php:
|
541 |
msgid "Top 10 plugin page"
|
542 |
msgstr ""
|
543 |
|
544 |
-
#: admin.inc.php:
|
545 |
msgid "Other plugins"
|
546 |
msgstr ""
|
547 |
|
548 |
-
#: admin.inc.php:
|
549 |
msgid "Ajay's blog"
|
550 |
msgstr ""
|
551 |
|
552 |
-
#: admin.inc.php:
|
553 |
msgid "Support"
|
554 |
msgstr ""
|
555 |
|
556 |
-
#: admin.inc.php:
|
557 |
msgid "Recent developments"
|
558 |
msgstr ""
|
559 |
|
560 |
-
#: admin.inc.php:
|
561 |
#, fuzzy
|
562 |
msgid "Top 10 Settings"
|
563 |
msgstr "शीर्ष 10"
|
564 |
|
565 |
-
#: admin.inc.php:
|
566 |
msgid "Top 10"
|
567 |
msgstr "शीर्ष 10"
|
568 |
|
569 |
-
#: admin.inc.php:
|
570 |
#, fuzzy
|
571 |
msgid "Overall Popular Posts"
|
572 |
msgstr "देखें दैनिक लोकप्रिय पोस्ट्स "
|
573 |
|
574 |
-
#: admin.inc.php:
|
575 |
msgid "Results"
|
576 |
msgstr "परिणाम"
|
577 |
|
578 |
-
#: admin.inc.php:
|
579 |
msgid "of"
|
580 |
msgstr "का"
|
581 |
|
582 |
-
#: admin.inc.php:
|
583 |
msgid "Page"
|
584 |
msgstr "पृष्ठ"
|
585 |
|
586 |
-
#: admin.inc.php:
|
587 |
msgid "View Daily Popular Posts"
|
588 |
msgstr "देखें दैनिक लोकप्रिय पोस्ट्स "
|
589 |
|
590 |
-
#: admin.inc.php:
|
591 |
msgid "Results per-page:"
|
592 |
msgstr "प्रति परिणाम पृष्ठ:"
|
593 |
|
594 |
-
#: admin.inc.php:
|
595 |
msgid "View Overall Popular Posts"
|
596 |
msgstr "देखें दैनिक लोकप्रिय पोस्ट्स "
|
597 |
|
598 |
-
#: admin.inc.php:
|
599 |
msgid "Previous"
|
600 |
msgstr "पिछला"
|
601 |
|
602 |
-
#: admin.inc.php:
|
603 |
msgid "Next"
|
604 |
msgstr "अगला"
|
605 |
|
606 |
-
#: admin.inc.php:
|
607 |
msgid "Daily Popular"
|
608 |
msgstr "दैनिक लोकप्रिय"
|
609 |
|
610 |
-
#: admin.inc.php:
|
611 |
-
|
|
|
612 |
msgstr "कुल / आज दर्शाव"
|
613 |
|
614 |
-
#:
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
615 |
msgid "Display the posts popular this week"
|
616 |
msgstr ""
|
617 |
|
618 |
-
#: top-10.php:
|
619 |
msgid "Title"
|
620 |
msgstr ""
|
621 |
|
622 |
-
#: top-10.php:
|
623 |
msgid "No. of posts"
|
624 |
msgstr ""
|
625 |
|
626 |
-
#: top-10.php:
|
627 |
msgid "Overall"
|
628 |
msgstr ""
|
629 |
|
630 |
-
#: top-10.php:
|
631 |
msgid "Custom time period (Enter below)"
|
632 |
msgstr ""
|
633 |
|
634 |
-
#: top-10.php:
|
635 |
msgid "Range in number of days (applies only to custom option above)"
|
636 |
msgstr ""
|
637 |
|
638 |
-
#: top-10.php:
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
639 |
msgid "Thumbnail options"
|
640 |
msgstr ""
|
641 |
|
642 |
-
#: top-10.php:
|
643 |
#, fuzzy
|
644 |
msgid "Thumbnails inline, before title"
|
645 |
msgstr "पदों पर विचारों के प्रदर्शन की संख्या?"
|
646 |
|
647 |
-
#: top-10.php:
|
648 |
#, fuzzy
|
649 |
msgid "Thumbnails inline, after title"
|
650 |
msgstr "पदों पर विचारों के प्रदर्शन की संख्या?"
|
651 |
|
652 |
-
#: top-10.php:
|
653 |
msgid "Only thumbnails, no text"
|
654 |
msgstr ""
|
655 |
|
656 |
-
#: top-10.php:
|
657 |
msgid "No thumbnails, only text."
|
658 |
msgstr ""
|
659 |
|
660 |
-
#: top-10.php:
|
661 |
-
msgid "
|
|
|
|
|
|
|
|
|
662 |
msgstr ""
|
663 |
|
664 |
-
#: top-10.php:
|
665 |
msgid "<h3>Popular Posts</h3>"
|
666 |
msgstr "<h3> लोकप्रिय पोस्ट्स </ h3>"
|
667 |
|
668 |
-
#: top-10.php:
|
669 |
msgid "<h3>Daily Popular</h3>"
|
670 |
msgstr "<h3> दैनिक लोकप्रिय </ h3>"
|
671 |
|
672 |
-
#: top-10.php:
|
673 |
#, fuzzy
|
674 |
msgid "No top posts yet"
|
675 |
msgstr "लोकप्रिय पदों का शीर्षक:"
|
676 |
|
677 |
-
#: top-10.php:
|
678 |
msgid "Once Weekly"
|
679 |
msgstr ""
|
680 |
|
681 |
-
#: top-10.php:
|
682 |
msgid "Once Fortnightly"
|
683 |
msgstr ""
|
684 |
|
685 |
-
#: top-10.php:
|
686 |
msgid "Once Monthly"
|
687 |
msgstr ""
|
688 |
|
689 |
-
#: top-10.php:
|
690 |
msgid "Settings"
|
691 |
msgstr ""
|
692 |
|
693 |
-
#: top-10.php:
|
694 |
msgid "Donate"
|
695 |
msgstr ""
|
696 |
|
2 |
msgstr ""
|
3 |
"Project-Id-Version: Топ 10\n"
|
4 |
"Report-Msgid-Bugs-To: \n"
|
5 |
+
"POT-Creation-Date: 2013-09-01 12:50-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"
|
16 |
"X-Generator: Poedit 1.5.7\n"
|
17 |
"X-Poedit-SearchPath-0: .\n"
|
18 |
|
19 |
+
#: admin.inc.php:103
|
20 |
msgid "Scheduled maintenance enabled / modified"
|
21 |
msgstr ""
|
22 |
|
23 |
+
#: admin.inc.php:107
|
24 |
msgid "Scheduled maintenance disabled"
|
25 |
msgstr ""
|
26 |
|
27 |
+
#: admin.inc.php:124
|
28 |
msgid "Options saved successfully."
|
29 |
msgstr "विकल्प सफलतापूर्वक बचाया."
|
30 |
|
31 |
+
#: admin.inc.php:133
|
32 |
msgid "Options set to Default."
|
33 |
msgstr "विकल्प डिफ़ॉल्ट से तैयार है."
|
34 |
|
35 |
+
#: admin.inc.php:139
|
36 |
#, fuzzy
|
37 |
msgid "Top 10 popular posts reset"
|
38 |
msgstr "लोकप्रिय पदों का शीर्षक:"
|
39 |
|
40 |
+
#: admin.inc.php:145
|
41 |
#, fuzzy
|
42 |
msgid "Top 10 daily popular posts reset"
|
43 |
msgstr "दैनिक लोकप्रिय पदों का शीर्षक:"
|
44 |
|
45 |
+
#: admin.inc.php:152
|
46 |
msgid "Duplicate rows cleaned from tables"
|
47 |
msgstr ""
|
48 |
|
49 |
+
#: admin.inc.php:173
|
50 |
msgid "General options"
|
51 |
msgstr ""
|
52 |
|
53 |
+
#: admin.inc.php:177
|
54 |
msgid "Enable Overall stats"
|
55 |
msgstr ""
|
56 |
|
57 |
+
#: admin.inc.php:182
|
58 |
msgid "Enable Daily stats"
|
59 |
msgstr ""
|
60 |
|
61 |
+
#: admin.inc.php:187
|
62 |
msgid "W3 Total Cache fix:"
|
63 |
msgstr ""
|
64 |
|
65 |
+
#: admin.inc.php:189
|
66 |
msgid ""
|
67 |
"This will try to prevent W3 Total Cache from caching the addcount script of "
|
68 |
"the plugin. Try toggling this option in case you find that our posts are not "
|
69 |
"tracked."
|
70 |
msgstr ""
|
71 |
|
72 |
+
#: admin.inc.php:193
|
73 |
msgid "Number of popular posts to display: "
|
74 |
msgstr "लोकप्रिय पदों की संख्या प्रदर्शित करने के लिए:"
|
75 |
|
76 |
+
#: admin.inc.php:197
|
77 |
msgid "Daily Popular should contain views of how many days? "
|
78 |
msgstr "दैनिक लोकप्रिय कितने दिनों के विचारों को शामिल करना चाहिए?"
|
79 |
|
80 |
+
#: admin.inc.php:200
|
81 |
msgid "Post types to include in results (including custom post types)"
|
82 |
msgstr ""
|
83 |
|
84 |
+
#: admin.inc.php:211
|
85 |
msgid "List of post or page IDs to exclude from the results: "
|
86 |
msgstr ""
|
87 |
|
88 |
+
#: admin.inc.php:215
|
89 |
msgid "Exclude Categories: "
|
90 |
msgstr ""
|
91 |
|
92 |
+
#: admin.inc.php:230
|
93 |
msgid ""
|
94 |
"Comma separated list of category slugs. The field above has an autocomplete "
|
95 |
"so simply start typing in the starting letters and it will prompt you with "
|
96 |
"options"
|
97 |
msgstr ""
|
98 |
|
99 |
+
#: admin.inc.php:235
|
100 |
#, fuzzy
|
101 |
msgid "Display number of views on:"
|
102 |
msgstr "पदों पर विचारों के प्रदर्शन की संख्या?"
|
103 |
|
104 |
+
#: admin.inc.php:237
|
105 |
msgid "Posts"
|
106 |
msgstr ""
|
107 |
|
108 |
+
#: admin.inc.php:238
|
109 |
#, fuzzy
|
110 |
msgid "Pages"
|
111 |
msgstr "पृष्ठ"
|
112 |
|
113 |
+
#: admin.inc.php:239
|
114 |
msgid "Home page"
|
115 |
msgstr ""
|
116 |
|
117 |
+
#: admin.inc.php:240
|
118 |
msgid "Feeds"
|
119 |
msgstr ""
|
120 |
|
121 |
+
#: admin.inc.php:241
|
122 |
msgid "Category archives"
|
123 |
msgstr ""
|
124 |
|
125 |
+
#: admin.inc.php:242
|
126 |
msgid "Tag archives"
|
127 |
msgstr ""
|
128 |
|
129 |
+
#: admin.inc.php:243
|
130 |
msgid "Other archives"
|
131 |
msgstr ""
|
132 |
|
133 |
+
#: admin.inc.php:244
|
134 |
msgid ""
|
135 |
"If you choose to disable this, please add <code><?php if(function_exists"
|
136 |
"('echo_ald_tptn')) echo_ald_tptn(); ?></code> to your template file where "
|
137 |
"you want it displayed"
|
138 |
msgstr ""
|
139 |
|
140 |
+
#: admin.inc.php:247
|
141 |
msgid "Always display latest post count"
|
142 |
msgstr ""
|
143 |
|
144 |
+
#: admin.inc.php:249
|
145 |
msgid ""
|
146 |
"This option uses JavaScript and will increase your page load time. Turn this "
|
147 |
"off if you are not using caching plugins or are OK with displaying older "
|
148 |
+
"cached counts. When you enable this option, the daily widget will not use "
|
149 |
+
"the options set there, but options will need to be set on this screen."
|
150 |
msgstr ""
|
151 |
|
152 |
+
#: admin.inc.php:252
|
153 |
msgid "Always display latest post count in the daily lists"
|
154 |
msgstr ""
|
155 |
|
156 |
+
#: admin.inc.php:254
|
157 |
#, fuzzy
|
158 |
msgid "This option uses JavaScript and will increase your page load time"
|
159 |
msgstr ""
|
160 |
"सेना दैनिक 'पदों की सूची गतिशील हो? इस विकल्प को पद भार जावास्क्रिप्ट का उपयोग करता "
|
161 |
"है और अपने पृष्ठ लोड समय बढ़ा सकते हैं"
|
162 |
|
163 |
+
#: admin.inc.php:257
|
164 |
msgid "Track visits of authors on their own posts?"
|
165 |
msgstr "ट्रैक लेखक के अपने पदों पर यात्रा?"
|
166 |
|
167 |
+
#: admin.inc.php:260
|
168 |
#, fuzzy
|
169 |
msgid "Track visits of admins?"
|
170 |
msgstr "ट्रैक लेखक के अपने पदों पर यात्रा?"
|
171 |
|
172 |
+
#: admin.inc.php:263
|
173 |
msgid "Display page views on Posts > All Posts in Admin"
|
174 |
msgstr ""
|
175 |
|
176 |
+
#: admin.inc.php:266
|
177 |
msgid "Link to Top 10 plugin page"
|
178 |
msgstr ""
|
179 |
|
180 |
+
#: admin.inc.php:268
|
181 |
#, fuzzy
|
182 |
msgid ""
|
183 |
"A link to the plugin is added as an extra list item to the list of popular "
|
186 |
"प्लगइन के लिए एक कड़ी लोकप्रिय पदों की सूची के लिए एक अतिरिक्त सूची आइटम के रूप में जोड़ा "
|
187 |
"है. नहीं अनिवार्य है, लेकिन धन्यवाद यदि तुम इसे करो!"
|
188 |
|
189 |
+
#: admin.inc.php:275
|
190 |
#, fuzzy
|
191 |
msgid "Output Options"
|
192 |
msgstr "विकल्प हैं:"
|
193 |
|
194 |
+
#: admin.inc.php:278
|
195 |
msgid "Format to display the count in: "
|
196 |
msgstr "प्रारूप में गिनती प्रदर्शित करने के लिए:"
|
197 |
|
198 |
+
#: admin.inc.php:280
|
199 |
#, fuzzy
|
200 |
msgid ""
|
201 |
"Use <code>%totalcount%</code> to display the total count, <code>%dailycount"
|
207 |
"dailycount% </ कोड> को दैनिक गणना प्रदर्शन. उदाहरण डिफ़ॉल्ट विकल्प प्रदर्शित <code> "
|
208 |
"(दौरा 123 बार, 23 का दौरा आज) </ कोड>"
|
209 |
|
210 |
+
#: admin.inc.php:283
|
211 |
msgid "Title of popular posts: "
|
212 |
msgstr "लोकप्रिय पदों का शीर्षक:"
|
213 |
|
214 |
+
#: admin.inc.php:286
|
215 |
msgid "Title of daily popular posts: "
|
216 |
msgstr "दैनिक लोकप्रिय पदों का शीर्षक:"
|
217 |
|
218 |
+
#: admin.inc.php:289
|
219 |
msgid "When there are no posts, what should be shown?"
|
220 |
msgstr ""
|
221 |
|
222 |
+
#: admin.inc.php:293
|
223 |
msgid "Blank Output"
|
224 |
msgstr ""
|
225 |
|
226 |
+
#: admin.inc.php:297
|
227 |
msgid "Display:"
|
228 |
msgstr ""
|
229 |
|
230 |
+
#: admin.inc.php:301
|
231 |
msgid "Show post excerpt in list?"
|
232 |
msgstr ""
|
233 |
|
234 |
+
#: admin.inc.php:304
|
235 |
msgid "Length of excerpt (in words): "
|
236 |
msgstr ""
|
237 |
|
238 |
+
#: admin.inc.php:307
|
239 |
+
msgid "Show post author in list?"
|
240 |
+
msgstr ""
|
241 |
+
|
242 |
+
#: admin.inc.php:310
|
243 |
msgid "Show post date in list?"
|
244 |
msgstr ""
|
245 |
|
246 |
+
#: admin.inc.php:313
|
247 |
msgid "Limit post title length (in characters)"
|
248 |
msgstr ""
|
249 |
|
250 |
+
#: admin.inc.php:316
|
251 |
msgid "Display number of page views in popular lists?"
|
252 |
msgstr "लोकप्रिय सूची में पृष्ठ विचारों का प्रदर्शन नंबर?"
|
253 |
|
254 |
+
#: admin.inc.php:319
|
255 |
msgid "Open links in new window"
|
256 |
msgstr ""
|
257 |
|
258 |
+
#: admin.inc.php:322
|
259 |
msgid "Add nofollow attribute to links in the list"
|
260 |
msgstr ""
|
261 |
|
262 |
+
#: admin.inc.php:325
|
263 |
msgid "Exclude display of related posts on these posts / pages"
|
264 |
msgstr ""
|
265 |
|
266 |
+
#: admin.inc.php:328
|
267 |
msgid "Enter comma separated list of IDs. e.g. 188,320,500"
|
268 |
msgstr ""
|
269 |
|
270 |
+
#: admin.inc.php:331
|
271 |
msgid "Customize the output:"
|
272 |
msgstr ""
|
273 |
|
274 |
+
#: admin.inc.php:333
|
275 |
msgid "HTML to display before the list of posts: "
|
276 |
msgstr ""
|
277 |
|
278 |
+
#: admin.inc.php:336
|
279 |
msgid "HTML to display before each list item: "
|
280 |
msgstr ""
|
281 |
|
282 |
+
#: admin.inc.php:339
|
283 |
#, fuzzy
|
284 |
msgid "HTML to display after each list item: "
|
285 |
msgstr "प्रारूप में गिनती प्रदर्शित करने के लिए:"
|
286 |
|
287 |
+
#: admin.inc.php:342
|
288 |
msgid "HTML to display after the list of posts: "
|
289 |
msgstr ""
|
290 |
|
291 |
+
#: admin.inc.php:345
|
292 |
msgid "Post thumbnail options:"
|
293 |
msgstr ""
|
294 |
|
295 |
+
#: admin.inc.php:347
|
296 |
msgid "Location of post thumbnail:"
|
297 |
msgstr ""
|
298 |
|
299 |
+
#: admin.inc.php:351
|
300 |
#, fuzzy
|
301 |
msgid "Display thumbnails inline with posts, before title"
|
302 |
msgstr "पदों पर विचारों के प्रदर्शन की संख्या?"
|
303 |
|
304 |
+
#: admin.inc.php:355
|
305 |
#, fuzzy
|
306 |
msgid "Display thumbnails inline with posts, after title"
|
307 |
msgstr "पदों पर विचारों के प्रदर्शन की संख्या?"
|
308 |
|
309 |
+
#: admin.inc.php:359
|
310 |
msgid "Display only thumbnails, no text"
|
311 |
msgstr ""
|
312 |
|
313 |
+
#: admin.inc.php:363
|
314 |
msgid "Do not display thumbnails, only text."
|
315 |
msgstr ""
|
316 |
|
317 |
+
#: admin.inc.php:367
|
318 |
msgid "Width of the thumbnail: "
|
319 |
msgstr ""
|
320 |
|
321 |
+
#: admin.inc.php:370
|
322 |
msgid "Height of the thumbnail: "
|
323 |
msgstr ""
|
324 |
|
325 |
+
#: admin.inc.php:373
|
326 |
msgid "Style attributes / Width and Height HTML attributes:"
|
327 |
msgstr ""
|
328 |
|
329 |
+
#: admin.inc.php:377
|
330 |
msgid ""
|
331 |
"Style attributes are used for width and height. <code>style=\"max-width:"
|
332 |
msgstr ""
|
333 |
|
334 |
+
#: admin.inc.php:381
|
335 |
msgid ""
|
336 |
"HTML width and height attributes are used for width and height. <code>width="
|
337 |
"\""
|
338 |
msgstr ""
|
339 |
|
340 |
+
#: admin.inc.php:385
|
341 |
msgid "Use timthumb to generate thumbnails? "
|
342 |
msgstr ""
|
343 |
|
344 |
+
#: admin.inc.php:386
|
345 |
msgid ""
|
346 |
"If checked, <a href=\"http://www.binarymoon.co.uk/projects/timthumb/"
|
347 |
"\">timthumb</a> will be used to generate thumbnails"
|
348 |
msgstr ""
|
349 |
|
350 |
+
#: admin.inc.php:388
|
351 |
msgid "Post thumbnail meta field name: "
|
352 |
msgstr ""
|
353 |
|
354 |
+
#: admin.inc.php:389
|
355 |
msgid ""
|
356 |
"The value of this field should contain the image source and is set in the "
|
357 |
"<em>Add New Post</em> screen"
|
358 |
msgstr ""
|
359 |
|
360 |
+
#: admin.inc.php:391
|
361 |
msgid ""
|
362 |
"If the postmeta is not set, then should the plugin extract the first image "
|
363 |
"from the post?"
|
364 |
msgstr ""
|
365 |
|
366 |
+
#: admin.inc.php:392
|
367 |
msgid ""
|
368 |
"This could slow down the loading of your page if the first image in the "
|
369 |
"related posts is large in file-size"
|
370 |
msgstr ""
|
371 |
|
372 |
+
#: admin.inc.php:394
|
373 |
msgid "Use default thumbnail? "
|
374 |
msgstr ""
|
375 |
|
376 |
+
#: admin.inc.php:395
|
377 |
msgid ""
|
378 |
"If checked, when no thumbnail is found, show a default one from the URL "
|
379 |
"below. If not checked and no thumbnail is found, no image will be shown."
|
380 |
msgstr ""
|
381 |
|
382 |
+
#: admin.inc.php:397
|
383 |
msgid "Default thumbnail: "
|
384 |
msgstr ""
|
385 |
|
386 |
+
#: admin.inc.php:398
|
387 |
msgid ""
|
388 |
"The plugin will first check if the post contains a thumbnail. If it doesn't "
|
389 |
"then it will check the meta field. If this is not available, then it will "
|
390 |
"show the default image as specified above"
|
391 |
msgstr ""
|
392 |
|
393 |
+
#: admin.inc.php:404
|
394 |
msgid "Custom Styles"
|
395 |
msgstr ""
|
396 |
|
397 |
+
#: admin.inc.php:407
|
398 |
msgid "Custom CSS to add to header:"
|
399 |
msgstr ""
|
400 |
|
401 |
+
#: admin.inc.php:410
|
402 |
msgid ""
|
403 |
"Do not include <code>style</code> tags. Check out the <a href=\"http://"
|
404 |
"wordpress.org/extend/plugins/top-10/faq/\" target=\"_blank\">FAQ</a> for "
|
405 |
"available CSS classes to style."
|
406 |
msgstr ""
|
407 |
|
408 |
+
#: admin.inc.php:417
|
409 |
msgid "Maintenance"
|
410 |
msgstr ""
|
411 |
|
412 |
+
#: admin.inc.php:421
|
413 |
msgid ""
|
414 |
"Over time the Daily Top 10 database grows in size, which reduces the "
|
415 |
"performance of the plugin. Cleaning the database at regular intervals could "
|
416 |
"improve performance, especially on high traffic blogs."
|
417 |
msgstr ""
|
418 |
|
419 |
+
#: admin.inc.php:422
|
420 |
msgid ""
|
421 |
"Note: When scheduled maintenance is enabled, WordPress will run the cron job "
|
422 |
"everytime the job is rescheduled (i.e. you change the settings below). This "
|
423 |
"causes the daily posts table to reset."
|
424 |
msgstr ""
|
425 |
|
426 |
+
#: admin.inc.php:425
|
427 |
msgid "Enable scheduled maintenance of daily tables:"
|
428 |
msgstr ""
|
429 |
|
430 |
+
#: admin.inc.php:429
|
431 |
msgid "Time to run maintenance"
|
432 |
msgstr ""
|
433 |
|
434 |
+
#: admin.inc.php:432
|
435 |
msgid "How often should the maintenance be run:"
|
436 |
msgstr ""
|
437 |
|
438 |
+
#: admin.inc.php:436
|
439 |
msgid "Daily"
|
440 |
msgstr ""
|
441 |
|
442 |
+
#: admin.inc.php:440
|
443 |
msgid "Weekly"
|
444 |
msgstr ""
|
445 |
|
446 |
+
#: admin.inc.php:444
|
447 |
msgid "Fortnightly"
|
448 |
msgstr ""
|
449 |
|
450 |
+
#: admin.inc.php:448
|
451 |
msgid "Monthly"
|
452 |
msgstr ""
|
453 |
|
454 |
+
#: admin.inc.php:457
|
455 |
msgid "The cron job has been scheduled. Maintenance will run "
|
456 |
msgstr ""
|
457 |
|
458 |
+
#: admin.inc.php:462
|
459 |
msgid "The cron job is missing. Please resave this page to add the job"
|
460 |
msgstr ""
|
461 |
|
462 |
+
#: admin.inc.php:467
|
463 |
msgid "Maintenance is turned off"
|
464 |
msgstr ""
|
465 |
|
466 |
+
#: admin.inc.php:475
|
467 |
#, fuzzy
|
468 |
msgid "Save Options"
|
469 |
msgstr "विकल्प हैं:"
|
470 |
|
471 |
+
#: admin.inc.php:476
|
472 |
#, fuzzy
|
473 |
msgid "Default Options"
|
474 |
msgstr "विकल्प हैं:"
|
475 |
|
476 |
+
#: admin.inc.php:476
|
477 |
msgid "Do you want to set options to Default?"
|
478 |
msgstr "क्या आप डिफ़ॉल्ट विकल्प सेट करना चाहते हैं?"
|
479 |
|
480 |
+
#: admin.inc.php:480
|
481 |
msgid "Reset count"
|
482 |
msgstr ""
|
483 |
|
484 |
+
#: admin.inc.php:483
|
485 |
msgid ""
|
486 |
"This cannot be reversed. Make sure that your database has been backed up "
|
487 |
"before proceeding"
|
488 |
msgstr ""
|
489 |
|
490 |
+
#: admin.inc.php:486
|
491 |
#, fuzzy
|
492 |
msgid "Reset Popular Posts"
|
493 |
msgstr "लोकप्रिय पोस्ट्स "
|
494 |
|
495 |
+
#: admin.inc.php:486
|
496 |
msgid "Are you sure you want to reset the popular posts?"
|
497 |
msgstr ""
|
498 |
|
499 |
+
#: admin.inc.php:487
|
500 |
#, fuzzy
|
501 |
msgid "Reset Daily Popular Posts"
|
502 |
msgstr "दैनिक लोकप्रिय पोस्ट्स "
|
503 |
|
504 |
+
#: admin.inc.php:487
|
505 |
msgid "Are you sure you want to reset the daily popular posts?"
|
506 |
msgstr ""
|
507 |
|
508 |
+
#: admin.inc.php:488
|
509 |
msgid "Clear duplicates"
|
510 |
msgstr ""
|
511 |
|
512 |
+
#: admin.inc.php:488
|
513 |
msgid "This will delete the duplicate entries in the tables. Proceed?"
|
514 |
msgstr ""
|
515 |
|
516 |
+
#: admin.inc.php:531 admin.inc.php:906 top-10.php:476
|
517 |
msgid "Popular Posts"
|
518 |
msgstr "लोकप्रिय पोस्ट्स "
|
519 |
|
520 |
+
#: admin.inc.php:531 admin.inc.php:618
|
521 |
msgid "Daily Popular Posts"
|
522 |
msgstr "दैनिक लोकप्रिय पोस्ट्स "
|
523 |
|
524 |
+
#: admin.inc.php:559
|
525 |
#, fuzzy
|
526 |
msgid "Support the development"
|
527 |
msgstr "समर्थन विकास"
|
528 |
|
529 |
+
#: admin.inc.php:567
|
530 |
msgid "Enter amount in USD: "
|
531 |
msgstr ""
|
532 |
|
533 |
+
#: admin.inc.php:571
|
534 |
msgid "Send your donation to the author of"
|
535 |
msgstr ""
|
536 |
|
537 |
+
#: admin.inc.php:577
|
538 |
msgid "Follow us"
|
539 |
msgstr ""
|
540 |
|
541 |
+
#: admin.inc.php:583
|
542 |
msgid "Quick Links"
|
543 |
msgstr ""
|
544 |
|
545 |
+
#: admin.inc.php:585
|
546 |
msgid "Top 10 plugin page"
|
547 |
msgstr ""
|
548 |
|
549 |
+
#: admin.inc.php:586
|
550 |
msgid "Other plugins"
|
551 |
msgstr ""
|
552 |
|
553 |
+
#: admin.inc.php:587
|
554 |
msgid "Ajay's blog"
|
555 |
msgstr ""
|
556 |
|
557 |
+
#: admin.inc.php:588 top-10.php:1123
|
558 |
msgid "Support"
|
559 |
msgstr ""
|
560 |
|
561 |
+
#: admin.inc.php:592
|
562 |
msgid "Recent developments"
|
563 |
msgstr ""
|
564 |
|
565 |
+
#: admin.inc.php:609 admin.inc.php:612
|
566 |
#, fuzzy
|
567 |
msgid "Top 10 Settings"
|
568 |
msgstr "शीर्ष 10"
|
569 |
|
570 |
+
#: admin.inc.php:609
|
571 |
msgid "Top 10"
|
572 |
msgstr "शीर्ष 10"
|
573 |
|
574 |
+
#: admin.inc.php:615
|
575 |
#, fuzzy
|
576 |
msgid "Overall Popular Posts"
|
577 |
msgstr "देखें दैनिक लोकप्रिय पोस्ट्स "
|
578 |
|
579 |
+
#: admin.inc.php:786
|
580 |
msgid "Results"
|
581 |
msgstr "परिणाम"
|
582 |
|
583 |
+
#: admin.inc.php:788 admin.inc.php:794
|
584 |
msgid "of"
|
585 |
msgstr "का"
|
586 |
|
587 |
+
#: admin.inc.php:792
|
588 |
msgid "Page"
|
589 |
msgstr "पृष्ठ"
|
590 |
|
591 |
+
#: admin.inc.php:806
|
592 |
msgid "View Daily Popular Posts"
|
593 |
msgstr "देखें दैनिक लोकप्रिय पोस्ट्स "
|
594 |
|
595 |
+
#: admin.inc.php:809 admin.inc.php:822
|
596 |
msgid "Results per-page:"
|
597 |
msgstr "प्रति परिणाम पृष्ठ:"
|
598 |
|
599 |
+
#: admin.inc.php:819
|
600 |
msgid "View Overall Popular Posts"
|
601 |
msgstr "देखें दैनिक लोकप्रिय पोस्ट्स "
|
602 |
|
603 |
+
#: admin.inc.php:848
|
604 |
msgid "Previous"
|
605 |
msgstr "पिछला"
|
606 |
|
607 |
+
#: admin.inc.php:866
|
608 |
msgid "Next"
|
609 |
msgstr "अगला"
|
610 |
|
611 |
+
#: admin.inc.php:907
|
612 |
msgid "Daily Popular"
|
613 |
msgstr "दैनिक लोकप्रिय"
|
614 |
|
615 |
+
#: admin.inc.php:923
|
616 |
+
#, fuzzy
|
617 |
+
msgid "Total Views"
|
618 |
msgstr "कुल / आज दर्शाव"
|
619 |
|
620 |
+
#: admin.inc.php:924
|
621 |
+
#, fuzzy
|
622 |
+
msgid "Today's Views"
|
623 |
+
msgstr "कुल / आज दर्शाव"
|
624 |
+
|
625 |
+
#: top-10.php:393
|
626 |
+
msgid " Posted by "
|
627 |
+
msgstr ""
|
628 |
+
|
629 |
+
#: top-10.php:475
|
630 |
msgid "Display the posts popular this week"
|
631 |
msgstr ""
|
632 |
|
633 |
+
#: top-10.php:493
|
634 |
msgid "Title"
|
635 |
msgstr ""
|
636 |
|
637 |
+
#: top-10.php:498
|
638 |
msgid "No. of posts"
|
639 |
msgstr ""
|
640 |
|
641 |
+
#: top-10.php:503
|
642 |
msgid "Overall"
|
643 |
msgstr ""
|
644 |
|
645 |
+
#: top-10.php:504
|
646 |
msgid "Custom time period (Enter below)"
|
647 |
msgstr ""
|
648 |
|
649 |
+
#: top-10.php:509
|
650 |
msgid "Range in number of days (applies only to custom option above)"
|
651 |
msgstr ""
|
652 |
|
653 |
+
#: top-10.php:514
|
654 |
+
msgid " Show excerpt?"
|
655 |
+
msgstr ""
|
656 |
+
|
657 |
+
#: top-10.php:519
|
658 |
+
msgid " Show author?"
|
659 |
+
msgstr ""
|
660 |
+
|
661 |
+
#: top-10.php:524
|
662 |
+
msgid " Show date?"
|
663 |
+
msgstr ""
|
664 |
+
|
665 |
+
#: top-10.php:528
|
666 |
msgid "Thumbnail options"
|
667 |
msgstr ""
|
668 |
|
669 |
+
#: top-10.php:530
|
670 |
#, fuzzy
|
671 |
msgid "Thumbnails inline, before title"
|
672 |
msgstr "पदों पर विचारों के प्रदर्शन की संख्या?"
|
673 |
|
674 |
+
#: top-10.php:531
|
675 |
#, fuzzy
|
676 |
msgid "Thumbnails inline, after title"
|
677 |
msgstr "पदों पर विचारों के प्रदर्शन की संख्या?"
|
678 |
|
679 |
+
#: top-10.php:532
|
680 |
msgid "Only thumbnails, no text"
|
681 |
msgstr ""
|
682 |
|
683 |
+
#: top-10.php:533
|
684 |
msgid "No thumbnails, only text."
|
685 |
msgstr ""
|
686 |
|
687 |
+
#: top-10.php:538
|
688 |
+
msgid "Thumbnail height"
|
689 |
+
msgstr ""
|
690 |
+
|
691 |
+
#: top-10.php:543
|
692 |
+
msgid "Thumbnail width"
|
693 |
msgstr ""
|
694 |
|
695 |
+
#: top-10.php:646
|
696 |
msgid "<h3>Popular Posts</h3>"
|
697 |
msgstr "<h3> लोकप्रिय पोस्ट्स </ h3>"
|
698 |
|
699 |
+
#: top-10.php:647
|
700 |
msgid "<h3>Daily Popular</h3>"
|
701 |
msgstr "<h3> दैनिक लोकप्रिय </ h3>"
|
702 |
|
703 |
+
#: top-10.php:648
|
704 |
#, fuzzy
|
705 |
msgid "No top posts yet"
|
706 |
msgstr "लोकप्रिय पदों का शीर्षक:"
|
707 |
|
708 |
+
#: top-10.php:1089
|
709 |
msgid "Once Weekly"
|
710 |
msgstr ""
|
711 |
|
712 |
+
#: top-10.php:1090
|
713 |
msgid "Once Fortnightly"
|
714 |
msgstr ""
|
715 |
|
716 |
+
#: top-10.php:1091
|
717 |
msgid "Once Monthly"
|
718 |
msgstr ""
|
719 |
|
720 |
+
#: top-10.php:1111
|
721 |
msgid "Settings"
|
722 |
msgstr ""
|
723 |
|
724 |
+
#: top-10.php:1124
|
725 |
msgid "Donate"
|
726 |
msgstr ""
|
727 |
|
languages/tptn-it_IT.mo
CHANGED
Binary file
|
languages/tptn-it_IT.po
CHANGED
@@ -2,7 +2,7 @@ msgid ""
|
|
2 |
msgstr ""
|
3 |
"Project-Id-Version: Top 10 in italiano\n"
|
4 |
"Report-Msgid-Bugs-To: \n"
|
5 |
-
"POT-Creation-Date: 2013-
|
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"
|
@@ -15,143 +15,144 @@ msgstr ""
|
|
15 |
"X-Generator: Poedit 1.5.7\n"
|
16 |
"X-Poedit-SearchPath-0: .\n"
|
17 |
|
18 |
-
#: admin.inc.php:
|
19 |
msgid "Scheduled maintenance enabled / modified"
|
20 |
msgstr ""
|
21 |
|
22 |
-
#: admin.inc.php:
|
23 |
msgid "Scheduled maintenance disabled"
|
24 |
msgstr ""
|
25 |
|
26 |
-
#: admin.inc.php:
|
27 |
msgid "Options saved successfully."
|
28 |
msgstr "Le opzioni sono state salvate con successo."
|
29 |
|
30 |
-
#: admin.inc.php:
|
31 |
msgid "Options set to Default."
|
32 |
msgstr "Opzioni impostate alle predefinite."
|
33 |
|
34 |
-
#: admin.inc.php:
|
35 |
msgid "Top 10 popular posts reset"
|
36 |
msgstr "Ripristino 10 articoli più popolari"
|
37 |
|
38 |
-
#: admin.inc.php:
|
39 |
msgid "Top 10 daily popular posts reset"
|
40 |
msgstr "Ripristino 10 articoli più popolari del giorno"
|
41 |
|
42 |
-
#: admin.inc.php:
|
43 |
msgid "Duplicate rows cleaned from tables"
|
44 |
msgstr ""
|
45 |
|
46 |
-
#: admin.inc.php:
|
47 |
msgid "General options"
|
48 |
msgstr ""
|
49 |
|
50 |
-
#: admin.inc.php:
|
51 |
msgid "Enable Overall stats"
|
52 |
msgstr ""
|
53 |
|
54 |
-
#: admin.inc.php:
|
55 |
msgid "Enable Daily stats"
|
56 |
msgstr ""
|
57 |
|
58 |
-
#: admin.inc.php:
|
59 |
msgid "W3 Total Cache fix:"
|
60 |
msgstr ""
|
61 |
|
62 |
-
#: admin.inc.php:
|
63 |
msgid ""
|
64 |
"This will try to prevent W3 Total Cache from caching the addcount script of "
|
65 |
"the plugin. Try toggling this option in case you find that our posts are not "
|
66 |
"tracked."
|
67 |
msgstr ""
|
68 |
|
69 |
-
#: admin.inc.php:
|
70 |
msgid "Number of popular posts to display: "
|
71 |
msgstr "Numero degli articoli più popolari da mostrare:"
|
72 |
|
73 |
-
#: admin.inc.php:
|
74 |
msgid "Daily Popular should contain views of how many days? "
|
75 |
msgstr ""
|
76 |
"Quanti giorni desideri siano considerati per il computo delle "
|
77 |
"visualizzazioni per articoli più popolari del giorno?"
|
78 |
|
79 |
-
#: admin.inc.php:
|
80 |
msgid "Post types to include in results (including custom post types)"
|
81 |
msgstr ""
|
82 |
|
83 |
-
#: admin.inc.php:
|
84 |
msgid "List of post or page IDs to exclude from the results: "
|
85 |
msgstr ""
|
86 |
|
87 |
-
#: admin.inc.php:
|
88 |
msgid "Exclude Categories: "
|
89 |
msgstr "Escludi categorie:"
|
90 |
|
91 |
-
#: admin.inc.php:
|
92 |
msgid ""
|
93 |
"Comma separated list of category slugs. The field above has an autocomplete "
|
94 |
"so simply start typing in the starting letters and it will prompt you with "
|
95 |
"options"
|
96 |
msgstr ""
|
97 |
|
98 |
-
#: admin.inc.php:
|
99 |
#, fuzzy
|
100 |
msgid "Display number of views on:"
|
101 |
msgstr "Desideri mostrare il numero delle visualizzazioni negli articoli?"
|
102 |
|
103 |
-
#: admin.inc.php:
|
104 |
msgid "Posts"
|
105 |
msgstr ""
|
106 |
|
107 |
-
#: admin.inc.php:
|
108 |
#, fuzzy
|
109 |
msgid "Pages"
|
110 |
msgstr "Pagina"
|
111 |
|
112 |
-
#: admin.inc.php:
|
113 |
msgid "Home page"
|
114 |
msgstr ""
|
115 |
|
116 |
-
#: admin.inc.php:
|
117 |
msgid "Feeds"
|
118 |
msgstr ""
|
119 |
|
120 |
-
#: admin.inc.php:
|
121 |
msgid "Category archives"
|
122 |
msgstr ""
|
123 |
|
124 |
-
#: admin.inc.php:
|
125 |
msgid "Tag archives"
|
126 |
msgstr ""
|
127 |
|
128 |
-
#: admin.inc.php:
|
129 |
msgid "Other archives"
|
130 |
msgstr ""
|
131 |
|
132 |
-
#: admin.inc.php:
|
133 |
msgid ""
|
134 |
"If you choose to disable this, please add <code><?php if(function_exists"
|
135 |
"('echo_ald_tptn')) echo_ald_tptn(); ?></code> to your template file where "
|
136 |
"you want it displayed"
|
137 |
msgstr ""
|
138 |
|
139 |
-
#: admin.inc.php:
|
140 |
msgid "Always display latest post count"
|
141 |
msgstr ""
|
142 |
|
143 |
-
#: admin.inc.php:
|
144 |
msgid ""
|
145 |
"This option uses JavaScript and will increase your page load time. Turn this "
|
146 |
"off if you are not using caching plugins or are OK with displaying older "
|
147 |
-
"cached counts"
|
|
|
148 |
msgstr ""
|
149 |
|
150 |
-
#: admin.inc.php:
|
151 |
msgid "Always display latest post count in the daily lists"
|
152 |
msgstr ""
|
153 |
|
154 |
-
#: admin.inc.php:
|
155 |
#, fuzzy
|
156 |
msgid "This option uses JavaScript and will increase your page load time"
|
157 |
msgstr ""
|
@@ -159,28 +160,28 @@ msgstr ""
|
|
159 |
"utilizza un JavaScript per il caricamento dell'articolo e di conseguenza "
|
160 |
"potrà fare aumentare i tempi di caricamento della stessa pagina"
|
161 |
|
162 |
-
#: admin.inc.php:
|
163 |
msgid "Track visits of authors on their own posts?"
|
164 |
msgstr ""
|
165 |
"Desideri che vengano conteggiate anche le visite da parte dell'amministatore "
|
166 |
"del sito?"
|
167 |
|
168 |
-
#: admin.inc.php:
|
169 |
#, fuzzy
|
170 |
msgid "Track visits of admins?"
|
171 |
msgstr ""
|
172 |
"Desideri che vengano conteggiate anche le visite da parte dell'amministatore "
|
173 |
"del sito?"
|
174 |
|
175 |
-
#: admin.inc.php:
|
176 |
msgid "Display page views on Posts > All Posts in Admin"
|
177 |
msgstr ""
|
178 |
|
179 |
-
#: admin.inc.php:
|
180 |
msgid "Link to Top 10 plugin page"
|
181 |
msgstr ""
|
182 |
|
183 |
-
#: admin.inc.php:
|
184 |
#, fuzzy
|
185 |
msgid ""
|
186 |
"A link to the plugin is added as an extra list item to the list of popular "
|
@@ -190,16 +191,16 @@ msgstr ""
|
|
190 |
"pagina del plugin. Ti sarei molto grato qualora non disattivassi questa "
|
191 |
"opzione!"
|
192 |
|
193 |
-
#: admin.inc.php:
|
194 |
#, fuzzy
|
195 |
msgid "Output Options"
|
196 |
msgstr "Opzioni output:"
|
197 |
|
198 |
-
#: admin.inc.php:
|
199 |
msgid "Format to display the count in: "
|
200 |
msgstr "Formato per il conteggio:"
|
201 |
|
202 |
-
#: admin.inc.php:
|
203 |
#, fuzzy
|
204 |
msgid ""
|
205 |
"Use <code>%totalcount%</code> to display the total count, <code>%dailycount"
|
@@ -212,154 +213,159 @@ msgstr ""
|
|
212 |
"esempio, le opzioni predefinite verranno mostrate online con un <code>(letto "
|
213 |
"123 volte, 23 visite odierne)</code>"
|
214 |
|
215 |
-
#: admin.inc.php:
|
216 |
msgid "Title of popular posts: "
|
217 |
msgstr "Titolo per gli articoli più popolari:"
|
218 |
|
219 |
-
#: admin.inc.php:
|
220 |
msgid "Title of daily popular posts: "
|
221 |
msgstr "Titolo per gli articoli più popolari del giorno:"
|
222 |
|
223 |
-
#: admin.inc.php:
|
224 |
msgid "When there are no posts, what should be shown?"
|
225 |
msgstr ""
|
226 |
|
227 |
-
#: admin.inc.php:
|
228 |
msgid "Blank Output"
|
229 |
msgstr ""
|
230 |
|
231 |
-
#: admin.inc.php:
|
232 |
msgid "Display:"
|
233 |
msgstr ""
|
234 |
|
235 |
-
#: admin.inc.php:
|
236 |
msgid "Show post excerpt in list?"
|
237 |
msgstr "Desideri mostrare gli estratti?"
|
238 |
|
239 |
-
#: admin.inc.php:
|
240 |
msgid "Length of excerpt (in words): "
|
241 |
msgstr "Lunghezza estratto (in parole):"
|
242 |
|
243 |
-
#: admin.inc.php:
|
|
|
|
|
|
|
|
|
|
|
244 |
#, fuzzy
|
245 |
msgid "Show post date in list?"
|
246 |
msgstr "Desideri mostrare gli estratti?"
|
247 |
|
248 |
-
#: admin.inc.php:
|
249 |
msgid "Limit post title length (in characters)"
|
250 |
msgstr ""
|
251 |
|
252 |
-
#: admin.inc.php:
|
253 |
msgid "Display number of page views in popular lists?"
|
254 |
msgstr ""
|
255 |
"Desideri mostrare il numero delle visualizzazioni per pagina nella lista dei "
|
256 |
"più popolari?"
|
257 |
|
258 |
-
#: admin.inc.php:
|
259 |
msgid "Open links in new window"
|
260 |
msgstr ""
|
261 |
|
262 |
-
#: admin.inc.php:
|
263 |
msgid "Add nofollow attribute to links in the list"
|
264 |
msgstr ""
|
265 |
|
266 |
-
#: admin.inc.php:
|
267 |
msgid "Exclude display of related posts on these posts / pages"
|
268 |
msgstr ""
|
269 |
|
270 |
-
#: admin.inc.php:
|
271 |
msgid "Enter comma separated list of IDs. e.g. 188,320,500"
|
272 |
msgstr ""
|
273 |
|
274 |
-
#: admin.inc.php:
|
275 |
msgid "Customize the output:"
|
276 |
msgstr "Personalizzazione output:"
|
277 |
|
278 |
-
#: admin.inc.php:
|
279 |
msgid "HTML to display before the list of posts: "
|
280 |
msgstr "HTML da mostrare davanti alla lista degli articoli:"
|
281 |
|
282 |
-
#: admin.inc.php:
|
283 |
msgid "HTML to display before each list item: "
|
284 |
msgstr "HTML da mostrare davanti ad ogni singola lista:"
|
285 |
|
286 |
-
#: admin.inc.php:
|
287 |
msgid "HTML to display after each list item: "
|
288 |
msgstr "HTML da mostrare dopo ogni lista:"
|
289 |
|
290 |
-
#: admin.inc.php:
|
291 |
msgid "HTML to display after the list of posts: "
|
292 |
msgstr "HTML da mostrare dopo la lista degli articoli:"
|
293 |
|
294 |
-
#: admin.inc.php:
|
295 |
msgid "Post thumbnail options:"
|
296 |
msgstr "Opzioni miniature articolo:"
|
297 |
|
298 |
-
#: admin.inc.php:
|
299 |
msgid "Location of post thumbnail:"
|
300 |
msgstr ""
|
301 |
|
302 |
-
#: admin.inc.php:
|
303 |
msgid "Display thumbnails inline with posts, before title"
|
304 |
msgstr "Mostra gli articoli con le miniature inline prima del titolo"
|
305 |
|
306 |
-
#: admin.inc.php:
|
307 |
msgid "Display thumbnails inline with posts, after title"
|
308 |
msgstr "Mostra gli articoli con le miniature inline dopo il titolo"
|
309 |
|
310 |
-
#: admin.inc.php:
|
311 |
msgid "Display only thumbnails, no text"
|
312 |
msgstr "Mostra le sole miniature, nessun testo"
|
313 |
|
314 |
-
#: admin.inc.php:
|
315 |
msgid "Do not display thumbnails, only text."
|
316 |
msgstr "Non mostrare le miniature, solo testo."
|
317 |
|
318 |
-
#: admin.inc.php:
|
319 |
msgid "Width of the thumbnail: "
|
320 |
msgstr ""
|
321 |
|
322 |
-
#: admin.inc.php:
|
323 |
msgid "Height of the thumbnail: "
|
324 |
msgstr ""
|
325 |
|
326 |
-
#: admin.inc.php:
|
327 |
msgid "Style attributes / Width and Height HTML attributes:"
|
328 |
msgstr ""
|
329 |
|
330 |
-
#: admin.inc.php:
|
331 |
msgid ""
|
332 |
"Style attributes are used for width and height. <code>style=\"max-width:"
|
333 |
msgstr ""
|
334 |
|
335 |
-
#: admin.inc.php:
|
336 |
msgid ""
|
337 |
"HTML width and height attributes are used for width and height. <code>width="
|
338 |
"\""
|
339 |
msgstr ""
|
340 |
|
341 |
-
#: admin.inc.php:
|
342 |
msgid "Use timthumb to generate thumbnails? "
|
343 |
msgstr ""
|
344 |
|
345 |
-
#: admin.inc.php:
|
346 |
msgid ""
|
347 |
"If checked, <a href=\"http://www.binarymoon.co.uk/projects/timthumb/"
|
348 |
"\">timthumb</a> will be used to generate thumbnails"
|
349 |
msgstr ""
|
350 |
|
351 |
-
#: admin.inc.php:
|
352 |
#, fuzzy
|
353 |
msgid "Post thumbnail meta field name: "
|
354 |
msgstr "Opzioni miniature articolo:"
|
355 |
|
356 |
-
#: admin.inc.php:
|
357 |
msgid ""
|
358 |
"The value of this field should contain the image source and is set in the "
|
359 |
"<em>Add New Post</em> screen"
|
360 |
msgstr ""
|
361 |
|
362 |
-
#: admin.inc.php:
|
363 |
#, fuzzy
|
364 |
msgid ""
|
365 |
"If the postmeta is not set, then should the plugin extract the first image "
|
@@ -370,7 +376,7 @@ msgstr ""
|
|
370 |
"tuo articolo nel caso in cui la prima immagine corelata fosse di grandi "
|
371 |
"dimensioni"
|
372 |
|
373 |
-
#: admin.inc.php:
|
374 |
#, fuzzy
|
375 |
msgid ""
|
376 |
"This could slow down the loading of your page if the first image in the "
|
@@ -381,11 +387,11 @@ msgstr ""
|
|
381 |
"tuo articolo nel caso in cui la prima immagine corelata fosse di grandi "
|
382 |
"dimensioni"
|
383 |
|
384 |
-
#: admin.inc.php:
|
385 |
msgid "Use default thumbnail? "
|
386 |
msgstr ""
|
387 |
|
388 |
-
#: admin.inc.php:
|
389 |
msgid ""
|
390 |
"If checked, when no thumbnail is found, show a default one from the URL "
|
391 |
"below. If not checked and no thumbnail is found, no image will be shown."
|
@@ -393,11 +399,11 @@ msgstr ""
|
|
393 |
"Se attiva, in assenza di miniatura ne mostrerà una predefinita da URL qui "
|
394 |
"sotto. Se inattiva e senza miniatura, non verrà mostrata nessuna immagine."
|
395 |
|
396 |
-
#: admin.inc.php:
|
397 |
msgid "Default thumbnail: "
|
398 |
msgstr ""
|
399 |
|
400 |
-
#: admin.inc.php:
|
401 |
#, fuzzy
|
402 |
msgid ""
|
403 |
"The plugin will first check if the post contains a thumbnail. If it doesn't "
|
@@ -409,98 +415,98 @@ msgstr ""
|
|
409 |
"meta. Qualora non fosse disponibile, mostrerà l'immagine predefinita come "
|
410 |
"specificato qui sotto:"
|
411 |
|
412 |
-
#: admin.inc.php:
|
413 |
msgid "Custom Styles"
|
414 |
msgstr ""
|
415 |
|
416 |
-
#: admin.inc.php:
|
417 |
msgid "Custom CSS to add to header:"
|
418 |
msgstr ""
|
419 |
|
420 |
-
#: admin.inc.php:
|
421 |
msgid ""
|
422 |
"Do not include <code>style</code> tags. Check out the <a href=\"http://"
|
423 |
"wordpress.org/extend/plugins/top-10/faq/\" target=\"_blank\">FAQ</a> for "
|
424 |
"available CSS classes to style."
|
425 |
msgstr ""
|
426 |
|
427 |
-
#: admin.inc.php:
|
428 |
msgid "Maintenance"
|
429 |
msgstr ""
|
430 |
|
431 |
-
#: admin.inc.php:
|
432 |
msgid ""
|
433 |
"Over time the Daily Top 10 database grows in size, which reduces the "
|
434 |
"performance of the plugin. Cleaning the database at regular intervals could "
|
435 |
"improve performance, especially on high traffic blogs."
|
436 |
msgstr ""
|
437 |
|
438 |
-
#: admin.inc.php:
|
439 |
msgid ""
|
440 |
"Note: When scheduled maintenance is enabled, WordPress will run the cron job "
|
441 |
"everytime the job is rescheduled (i.e. you change the settings below). This "
|
442 |
"causes the daily posts table to reset."
|
443 |
msgstr ""
|
444 |
|
445 |
-
#: admin.inc.php:
|
446 |
msgid "Enable scheduled maintenance of daily tables:"
|
447 |
msgstr ""
|
448 |
|
449 |
-
#: admin.inc.php:
|
450 |
msgid "Time to run maintenance"
|
451 |
msgstr ""
|
452 |
|
453 |
-
#: admin.inc.php:
|
454 |
msgid "How often should the maintenance be run:"
|
455 |
msgstr ""
|
456 |
|
457 |
-
#: admin.inc.php:
|
458 |
msgid "Daily"
|
459 |
msgstr ""
|
460 |
|
461 |
-
#: admin.inc.php:
|
462 |
msgid "Weekly"
|
463 |
msgstr ""
|
464 |
|
465 |
-
#: admin.inc.php:
|
466 |
msgid "Fortnightly"
|
467 |
msgstr ""
|
468 |
|
469 |
-
#: admin.inc.php:
|
470 |
msgid "Monthly"
|
471 |
msgstr ""
|
472 |
|
473 |
-
#: admin.inc.php:
|
474 |
msgid "The cron job has been scheduled. Maintenance will run "
|
475 |
msgstr ""
|
476 |
|
477 |
-
#: admin.inc.php:
|
478 |
msgid "The cron job is missing. Please resave this page to add the job"
|
479 |
msgstr ""
|
480 |
|
481 |
-
#: admin.inc.php:
|
482 |
msgid "Maintenance is turned off"
|
483 |
msgstr ""
|
484 |
|
485 |
-
#: admin.inc.php:
|
486 |
#, fuzzy
|
487 |
msgid "Save Options"
|
488 |
msgstr "Opzioni:"
|
489 |
|
490 |
-
#: admin.inc.php:
|
491 |
#, fuzzy
|
492 |
msgid "Default Options"
|
493 |
msgstr "Opzioni output:"
|
494 |
|
495 |
-
#: admin.inc.php:
|
496 |
msgid "Do you want to set options to Default?"
|
497 |
msgstr "Desideri ripristinare alle predefinite?"
|
498 |
|
499 |
-
#: admin.inc.php:
|
500 |
msgid "Reset count"
|
501 |
msgstr "Ripristino conteggio"
|
502 |
|
503 |
-
#: admin.inc.php:
|
504 |
msgid ""
|
505 |
"This cannot be reversed. Make sure that your database has been backed up "
|
506 |
"before proceeding"
|
@@ -508,220 +514,249 @@ msgstr ""
|
|
508 |
"Questa operazione non é reversibile. Effettua il backup del database prima "
|
509 |
"di procedere"
|
510 |
|
511 |
-
#: admin.inc.php:
|
512 |
#, fuzzy
|
513 |
msgid "Reset Popular Posts"
|
514 |
msgstr "Gli articoli più popolari"
|
515 |
|
516 |
-
#: admin.inc.php:
|
517 |
msgid "Are you sure you want to reset the popular posts?"
|
518 |
msgstr "Sei certo di volere ripristinare gli articoli più popolari?"
|
519 |
|
520 |
-
#: admin.inc.php:
|
521 |
#, fuzzy
|
522 |
msgid "Reset Daily Popular Posts"
|
523 |
msgstr "Gli articoli più popolari di oggi"
|
524 |
|
525 |
-
#: admin.inc.php:
|
526 |
msgid "Are you sure you want to reset the daily popular posts?"
|
527 |
msgstr "Sei certo di volere ripristinare gli articoli più popolari del giorno?"
|
528 |
|
529 |
-
#: admin.inc.php:
|
530 |
msgid "Clear duplicates"
|
531 |
msgstr ""
|
532 |
|
533 |
-
#: admin.inc.php:
|
534 |
msgid "This will delete the duplicate entries in the tables. Proceed?"
|
535 |
msgstr "Questa operazione cancelerà i duplicati dalle tabelle. Procedi?"
|
536 |
|
537 |
-
#: admin.inc.php:
|
538 |
msgid "Popular Posts"
|
539 |
msgstr "Gli articoli più popolari"
|
540 |
|
541 |
-
#: admin.inc.php:
|
542 |
msgid "Daily Popular Posts"
|
543 |
msgstr "Gli articoli più popolari di oggi"
|
544 |
|
545 |
-
#: admin.inc.php:
|
546 |
msgid "Support the development"
|
547 |
msgstr "Sostieni lo sviluppo"
|
548 |
|
549 |
-
#: admin.inc.php:
|
550 |
msgid "Enter amount in USD: "
|
551 |
msgstr "Inserisci la cifra in USD: "
|
552 |
|
553 |
-
#: admin.inc.php:
|
554 |
msgid "Send your donation to the author of"
|
555 |
msgstr "Invia la tua donazione all'autore di"
|
556 |
|
557 |
-
#: admin.inc.php:
|
558 |
msgid "Follow us"
|
559 |
msgstr ""
|
560 |
|
561 |
-
#: admin.inc.php:
|
562 |
#, fuzzy
|
563 |
msgid "Quick Links"
|
564 |
msgstr "Collegamenti veloci"
|
565 |
|
566 |
-
#: admin.inc.php:
|
567 |
#, fuzzy
|
568 |
msgid "Top 10 plugin page"
|
569 |
msgstr "pagina plugin"
|
570 |
|
571 |
-
#: admin.inc.php:
|
572 |
msgid "Other plugins"
|
573 |
msgstr "Altri plugin"
|
574 |
|
575 |
-
#: admin.inc.php:
|
576 |
msgid "Ajay's blog"
|
577 |
msgstr "Il blog di Ajay"
|
578 |
|
579 |
-
#: admin.inc.php:
|
580 |
msgid "Support"
|
581 |
msgstr "Supporto"
|
582 |
|
583 |
-
#: admin.inc.php:
|
584 |
msgid "Recent developments"
|
585 |
msgstr "Sviluppi recenti"
|
586 |
|
587 |
-
#: admin.inc.php:
|
588 |
#, fuzzy
|
589 |
msgid "Top 10 Settings"
|
590 |
msgstr "Impostazioni"
|
591 |
|
592 |
-
#: admin.inc.php:
|
593 |
msgid "Top 10"
|
594 |
msgstr "Top 10"
|
595 |
|
596 |
-
#: admin.inc.php:
|
597 |
#, fuzzy
|
598 |
msgid "Overall Popular Posts"
|
599 |
msgstr "Visualizza panoramica articoli più popolari"
|
600 |
|
601 |
-
#: admin.inc.php:
|
602 |
msgid "Results"
|
603 |
msgstr "Risultati"
|
604 |
|
605 |
-
#: admin.inc.php:
|
606 |
msgid "of"
|
607 |
msgstr "di"
|
608 |
|
609 |
-
#: admin.inc.php:
|
610 |
msgid "Page"
|
611 |
msgstr "Pagina"
|
612 |
|
613 |
-
#: admin.inc.php:
|
614 |
msgid "View Daily Popular Posts"
|
615 |
msgstr "Visualizza gli articoli più letti di oggi"
|
616 |
|
617 |
-
#: admin.inc.php:
|
618 |
msgid "Results per-page:"
|
619 |
msgstr "Risultati per pagina:"
|
620 |
|
621 |
-
#: admin.inc.php:
|
622 |
msgid "View Overall Popular Posts"
|
623 |
msgstr "Visualizza panoramica articoli più popolari"
|
624 |
|
625 |
-
#: admin.inc.php:
|
626 |
msgid "Previous"
|
627 |
msgstr "Precedente"
|
628 |
|
629 |
-
#: admin.inc.php:
|
630 |
msgid "Next"
|
631 |
msgstr "Successiva"
|
632 |
|
633 |
-
#: admin.inc.php:
|
634 |
msgid "Daily Popular"
|
635 |
msgstr "I più letti di oggi"
|
636 |
|
637 |
-
#: admin.inc.php:
|
638 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
639 |
msgstr "Totale / Visualizzazioni odierne"
|
640 |
|
641 |
-
#: top-10.php:
|
|
|
|
|
|
|
|
|
642 |
msgid "Display the posts popular this week"
|
643 |
msgstr "Mostra articoli più popolari settimana in corso"
|
644 |
|
645 |
-
#: top-10.php:
|
646 |
msgid "Title"
|
647 |
msgstr ""
|
648 |
|
649 |
-
#: top-10.php:
|
650 |
msgid "No. of posts"
|
651 |
msgstr ""
|
652 |
|
653 |
-
#: top-10.php:
|
654 |
msgid "Overall"
|
655 |
msgstr ""
|
656 |
|
657 |
-
#: top-10.php:
|
658 |
msgid "Custom time period (Enter below)"
|
659 |
msgstr ""
|
660 |
|
661 |
-
#: top-10.php:
|
662 |
msgid "Range in number of days (applies only to custom option above)"
|
663 |
msgstr ""
|
664 |
|
665 |
-
#: top-10.php:
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
666 |
#, fuzzy
|
667 |
msgid "Thumbnail options"
|
668 |
msgstr "Opzioni miniature articolo:"
|
669 |
|
670 |
-
#: top-10.php:
|
671 |
#, fuzzy
|
672 |
msgid "Thumbnails inline, before title"
|
673 |
msgstr "Mostra gli articoli con le miniature inline prima del titolo"
|
674 |
|
675 |
-
#: top-10.php:
|
676 |
#, fuzzy
|
677 |
msgid "Thumbnails inline, after title"
|
678 |
msgstr "Mostra gli articoli con le miniature inline dopo il titolo"
|
679 |
|
680 |
-
#: top-10.php:
|
681 |
#, fuzzy
|
682 |
msgid "Only thumbnails, no text"
|
683 |
msgstr "Mostra le sole miniature, nessun testo"
|
684 |
|
685 |
-
#: top-10.php:
|
686 |
#, fuzzy
|
687 |
msgid "No thumbnails, only text."
|
688 |
msgstr "Non mostrare le miniature, solo testo."
|
689 |
|
690 |
-
#: top-10.php:
|
691 |
#, fuzzy
|
692 |
-
msgid "
|
693 |
-
msgstr "
|
|
|
|
|
|
|
|
|
|
|
694 |
|
695 |
-
#: top-10.php:
|
696 |
msgid "<h3>Popular Posts</h3>"
|
697 |
msgstr "<h3>Articoli più letti</h3>"
|
698 |
|
699 |
-
#: top-10.php:
|
700 |
msgid "<h3>Daily Popular</h3>"
|
701 |
msgstr "<h3>I più letti di oggi</h3>"
|
702 |
|
703 |
-
#: top-10.php:
|
704 |
#, fuzzy
|
705 |
msgid "No top posts yet"
|
706 |
msgstr "Ripristino 10 articoli più popolari"
|
707 |
|
708 |
-
#: top-10.php:
|
709 |
msgid "Once Weekly"
|
710 |
msgstr ""
|
711 |
|
712 |
-
#: top-10.php:
|
713 |
msgid "Once Fortnightly"
|
714 |
msgstr ""
|
715 |
|
716 |
-
#: top-10.php:
|
717 |
msgid "Once Monthly"
|
718 |
msgstr ""
|
719 |
|
720 |
-
#: top-10.php:
|
721 |
msgid "Settings"
|
722 |
msgstr "Impostazioni"
|
723 |
|
724 |
-
#: top-10.php:
|
725 |
msgid "Donate"
|
726 |
msgstr "Donazione"
|
727 |
|
2 |
msgstr ""
|
3 |
"Project-Id-Version: Top 10 in italiano\n"
|
4 |
"Report-Msgid-Bugs-To: \n"
|
5 |
+
"POT-Creation-Date: 2013-09-01 12:50-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"
|
15 |
"X-Generator: Poedit 1.5.7\n"
|
16 |
"X-Poedit-SearchPath-0: .\n"
|
17 |
|
18 |
+
#: admin.inc.php:103
|
19 |
msgid "Scheduled maintenance enabled / modified"
|
20 |
msgstr ""
|
21 |
|
22 |
+
#: admin.inc.php:107
|
23 |
msgid "Scheduled maintenance disabled"
|
24 |
msgstr ""
|
25 |
|
26 |
+
#: admin.inc.php:124
|
27 |
msgid "Options saved successfully."
|
28 |
msgstr "Le opzioni sono state salvate con successo."
|
29 |
|
30 |
+
#: admin.inc.php:133
|
31 |
msgid "Options set to Default."
|
32 |
msgstr "Opzioni impostate alle predefinite."
|
33 |
|
34 |
+
#: admin.inc.php:139
|
35 |
msgid "Top 10 popular posts reset"
|
36 |
msgstr "Ripristino 10 articoli più popolari"
|
37 |
|
38 |
+
#: admin.inc.php:145
|
39 |
msgid "Top 10 daily popular posts reset"
|
40 |
msgstr "Ripristino 10 articoli più popolari del giorno"
|
41 |
|
42 |
+
#: admin.inc.php:152
|
43 |
msgid "Duplicate rows cleaned from tables"
|
44 |
msgstr ""
|
45 |
|
46 |
+
#: admin.inc.php:173
|
47 |
msgid "General options"
|
48 |
msgstr ""
|
49 |
|
50 |
+
#: admin.inc.php:177
|
51 |
msgid "Enable Overall stats"
|
52 |
msgstr ""
|
53 |
|
54 |
+
#: admin.inc.php:182
|
55 |
msgid "Enable Daily stats"
|
56 |
msgstr ""
|
57 |
|
58 |
+
#: admin.inc.php:187
|
59 |
msgid "W3 Total Cache fix:"
|
60 |
msgstr ""
|
61 |
|
62 |
+
#: admin.inc.php:189
|
63 |
msgid ""
|
64 |
"This will try to prevent W3 Total Cache from caching the addcount script of "
|
65 |
"the plugin. Try toggling this option in case you find that our posts are not "
|
66 |
"tracked."
|
67 |
msgstr ""
|
68 |
|
69 |
+
#: admin.inc.php:193
|
70 |
msgid "Number of popular posts to display: "
|
71 |
msgstr "Numero degli articoli più popolari da mostrare:"
|
72 |
|
73 |
+
#: admin.inc.php:197
|
74 |
msgid "Daily Popular should contain views of how many days? "
|
75 |
msgstr ""
|
76 |
"Quanti giorni desideri siano considerati per il computo delle "
|
77 |
"visualizzazioni per articoli più popolari del giorno?"
|
78 |
|
79 |
+
#: admin.inc.php:200
|
80 |
msgid "Post types to include in results (including custom post types)"
|
81 |
msgstr ""
|
82 |
|
83 |
+
#: admin.inc.php:211
|
84 |
msgid "List of post or page IDs to exclude from the results: "
|
85 |
msgstr ""
|
86 |
|
87 |
+
#: admin.inc.php:215
|
88 |
msgid "Exclude Categories: "
|
89 |
msgstr "Escludi categorie:"
|
90 |
|
91 |
+
#: admin.inc.php:230
|
92 |
msgid ""
|
93 |
"Comma separated list of category slugs. The field above has an autocomplete "
|
94 |
"so simply start typing in the starting letters and it will prompt you with "
|
95 |
"options"
|
96 |
msgstr ""
|
97 |
|
98 |
+
#: admin.inc.php:235
|
99 |
#, fuzzy
|
100 |
msgid "Display number of views on:"
|
101 |
msgstr "Desideri mostrare il numero delle visualizzazioni negli articoli?"
|
102 |
|
103 |
+
#: admin.inc.php:237
|
104 |
msgid "Posts"
|
105 |
msgstr ""
|
106 |
|
107 |
+
#: admin.inc.php:238
|
108 |
#, fuzzy
|
109 |
msgid "Pages"
|
110 |
msgstr "Pagina"
|
111 |
|
112 |
+
#: admin.inc.php:239
|
113 |
msgid "Home page"
|
114 |
msgstr ""
|
115 |
|
116 |
+
#: admin.inc.php:240
|
117 |
msgid "Feeds"
|
118 |
msgstr ""
|
119 |
|
120 |
+
#: admin.inc.php:241
|
121 |
msgid "Category archives"
|
122 |
msgstr ""
|
123 |
|
124 |
+
#: admin.inc.php:242
|
125 |
msgid "Tag archives"
|
126 |
msgstr ""
|
127 |
|
128 |
+
#: admin.inc.php:243
|
129 |
msgid "Other archives"
|
130 |
msgstr ""
|
131 |
|
132 |
+
#: admin.inc.php:244
|
133 |
msgid ""
|
134 |
"If you choose to disable this, please add <code><?php if(function_exists"
|
135 |
"('echo_ald_tptn')) echo_ald_tptn(); ?></code> to your template file where "
|
136 |
"you want it displayed"
|
137 |
msgstr ""
|
138 |
|
139 |
+
#: admin.inc.php:247
|
140 |
msgid "Always display latest post count"
|
141 |
msgstr ""
|
142 |
|
143 |
+
#: admin.inc.php:249
|
144 |
msgid ""
|
145 |
"This option uses JavaScript and will increase your page load time. Turn this "
|
146 |
"off if you are not using caching plugins or are OK with displaying older "
|
147 |
+
"cached counts. When you enable this option, the daily widget will not use "
|
148 |
+
"the options set there, but options will need to be set on this screen."
|
149 |
msgstr ""
|
150 |
|
151 |
+
#: admin.inc.php:252
|
152 |
msgid "Always display latest post count in the daily lists"
|
153 |
msgstr ""
|
154 |
|
155 |
+
#: admin.inc.php:254
|
156 |
#, fuzzy
|
157 |
msgid "This option uses JavaScript and will increase your page load time"
|
158 |
msgstr ""
|
160 |
"utilizza un JavaScript per il caricamento dell'articolo e di conseguenza "
|
161 |
"potrà fare aumentare i tempi di caricamento della stessa pagina"
|
162 |
|
163 |
+
#: admin.inc.php:257
|
164 |
msgid "Track visits of authors on their own posts?"
|
165 |
msgstr ""
|
166 |
"Desideri che vengano conteggiate anche le visite da parte dell'amministatore "
|
167 |
"del sito?"
|
168 |
|
169 |
+
#: admin.inc.php:260
|
170 |
#, fuzzy
|
171 |
msgid "Track visits of admins?"
|
172 |
msgstr ""
|
173 |
"Desideri che vengano conteggiate anche le visite da parte dell'amministatore "
|
174 |
"del sito?"
|
175 |
|
176 |
+
#: admin.inc.php:263
|
177 |
msgid "Display page views on Posts > All Posts in Admin"
|
178 |
msgstr ""
|
179 |
|
180 |
+
#: admin.inc.php:266
|
181 |
msgid "Link to Top 10 plugin page"
|
182 |
msgstr ""
|
183 |
|
184 |
+
#: admin.inc.php:268
|
185 |
#, fuzzy
|
186 |
msgid ""
|
187 |
"A link to the plugin is added as an extra list item to the list of popular "
|
191 |
"pagina del plugin. Ti sarei molto grato qualora non disattivassi questa "
|
192 |
"opzione!"
|
193 |
|
194 |
+
#: admin.inc.php:275
|
195 |
#, fuzzy
|
196 |
msgid "Output Options"
|
197 |
msgstr "Opzioni output:"
|
198 |
|
199 |
+
#: admin.inc.php:278
|
200 |
msgid "Format to display the count in: "
|
201 |
msgstr "Formato per il conteggio:"
|
202 |
|
203 |
+
#: admin.inc.php:280
|
204 |
#, fuzzy
|
205 |
msgid ""
|
206 |
"Use <code>%totalcount%</code> to display the total count, <code>%dailycount"
|
213 |
"esempio, le opzioni predefinite verranno mostrate online con un <code>(letto "
|
214 |
"123 volte, 23 visite odierne)</code>"
|
215 |
|
216 |
+
#: admin.inc.php:283
|
217 |
msgid "Title of popular posts: "
|
218 |
msgstr "Titolo per gli articoli più popolari:"
|
219 |
|
220 |
+
#: admin.inc.php:286
|
221 |
msgid "Title of daily popular posts: "
|
222 |
msgstr "Titolo per gli articoli più popolari del giorno:"
|
223 |
|
224 |
+
#: admin.inc.php:289
|
225 |
msgid "When there are no posts, what should be shown?"
|
226 |
msgstr ""
|
227 |
|
228 |
+
#: admin.inc.php:293
|
229 |
msgid "Blank Output"
|
230 |
msgstr ""
|
231 |
|
232 |
+
#: admin.inc.php:297
|
233 |
msgid "Display:"
|
234 |
msgstr ""
|
235 |
|
236 |
+
#: admin.inc.php:301
|
237 |
msgid "Show post excerpt in list?"
|
238 |
msgstr "Desideri mostrare gli estratti?"
|
239 |
|
240 |
+
#: admin.inc.php:304
|
241 |
msgid "Length of excerpt (in words): "
|
242 |
msgstr "Lunghezza estratto (in parole):"
|
243 |
|
244 |
+
#: admin.inc.php:307
|
245 |
+
#, fuzzy
|
246 |
+
msgid "Show post author in list?"
|
247 |
+
msgstr "Desideri mostrare gli estratti?"
|
248 |
+
|
249 |
+
#: admin.inc.php:310
|
250 |
#, fuzzy
|
251 |
msgid "Show post date in list?"
|
252 |
msgstr "Desideri mostrare gli estratti?"
|
253 |
|
254 |
+
#: admin.inc.php:313
|
255 |
msgid "Limit post title length (in characters)"
|
256 |
msgstr ""
|
257 |
|
258 |
+
#: admin.inc.php:316
|
259 |
msgid "Display number of page views in popular lists?"
|
260 |
msgstr ""
|
261 |
"Desideri mostrare il numero delle visualizzazioni per pagina nella lista dei "
|
262 |
"più popolari?"
|
263 |
|
264 |
+
#: admin.inc.php:319
|
265 |
msgid "Open links in new window"
|
266 |
msgstr ""
|
267 |
|
268 |
+
#: admin.inc.php:322
|
269 |
msgid "Add nofollow attribute to links in the list"
|
270 |
msgstr ""
|
271 |
|
272 |
+
#: admin.inc.php:325
|
273 |
msgid "Exclude display of related posts on these posts / pages"
|
274 |
msgstr ""
|
275 |
|
276 |
+
#: admin.inc.php:328
|
277 |
msgid "Enter comma separated list of IDs. e.g. 188,320,500"
|
278 |
msgstr ""
|
279 |
|
280 |
+
#: admin.inc.php:331
|
281 |
msgid "Customize the output:"
|
282 |
msgstr "Personalizzazione output:"
|
283 |
|
284 |
+
#: admin.inc.php:333
|
285 |
msgid "HTML to display before the list of posts: "
|
286 |
msgstr "HTML da mostrare davanti alla lista degli articoli:"
|
287 |
|
288 |
+
#: admin.inc.php:336
|
289 |
msgid "HTML to display before each list item: "
|
290 |
msgstr "HTML da mostrare davanti ad ogni singola lista:"
|
291 |
|
292 |
+
#: admin.inc.php:339
|
293 |
msgid "HTML to display after each list item: "
|
294 |
msgstr "HTML da mostrare dopo ogni lista:"
|
295 |
|
296 |
+
#: admin.inc.php:342
|
297 |
msgid "HTML to display after the list of posts: "
|
298 |
msgstr "HTML da mostrare dopo la lista degli articoli:"
|
299 |
|
300 |
+
#: admin.inc.php:345
|
301 |
msgid "Post thumbnail options:"
|
302 |
msgstr "Opzioni miniature articolo:"
|
303 |
|
304 |
+
#: admin.inc.php:347
|
305 |
msgid "Location of post thumbnail:"
|
306 |
msgstr ""
|
307 |
|
308 |
+
#: admin.inc.php:351
|
309 |
msgid "Display thumbnails inline with posts, before title"
|
310 |
msgstr "Mostra gli articoli con le miniature inline prima del titolo"
|
311 |
|
312 |
+
#: admin.inc.php:355
|
313 |
msgid "Display thumbnails inline with posts, after title"
|
314 |
msgstr "Mostra gli articoli con le miniature inline dopo il titolo"
|
315 |
|
316 |
+
#: admin.inc.php:359
|
317 |
msgid "Display only thumbnails, no text"
|
318 |
msgstr "Mostra le sole miniature, nessun testo"
|
319 |
|
320 |
+
#: admin.inc.php:363
|
321 |
msgid "Do not display thumbnails, only text."
|
322 |
msgstr "Non mostrare le miniature, solo testo."
|
323 |
|
324 |
+
#: admin.inc.php:367
|
325 |
msgid "Width of the thumbnail: "
|
326 |
msgstr ""
|
327 |
|
328 |
+
#: admin.inc.php:370
|
329 |
msgid "Height of the thumbnail: "
|
330 |
msgstr ""
|
331 |
|
332 |
+
#: admin.inc.php:373
|
333 |
msgid "Style attributes / Width and Height HTML attributes:"
|
334 |
msgstr ""
|
335 |
|
336 |
+
#: admin.inc.php:377
|
337 |
msgid ""
|
338 |
"Style attributes are used for width and height. <code>style=\"max-width:"
|
339 |
msgstr ""
|
340 |
|
341 |
+
#: admin.inc.php:381
|
342 |
msgid ""
|
343 |
"HTML width and height attributes are used for width and height. <code>width="
|
344 |
"\""
|
345 |
msgstr ""
|
346 |
|
347 |
+
#: admin.inc.php:385
|
348 |
msgid "Use timthumb to generate thumbnails? "
|
349 |
msgstr ""
|
350 |
|
351 |
+
#: admin.inc.php:386
|
352 |
msgid ""
|
353 |
"If checked, <a href=\"http://www.binarymoon.co.uk/projects/timthumb/"
|
354 |
"\">timthumb</a> will be used to generate thumbnails"
|
355 |
msgstr ""
|
356 |
|
357 |
+
#: admin.inc.php:388
|
358 |
#, fuzzy
|
359 |
msgid "Post thumbnail meta field name: "
|
360 |
msgstr "Opzioni miniature articolo:"
|
361 |
|
362 |
+
#: admin.inc.php:389
|
363 |
msgid ""
|
364 |
"The value of this field should contain the image source and is set in the "
|
365 |
"<em>Add New Post</em> screen"
|
366 |
msgstr ""
|
367 |
|
368 |
+
#: admin.inc.php:391
|
369 |
#, fuzzy
|
370 |
msgid ""
|
371 |
"If the postmeta is not set, then should the plugin extract the first image "
|
376 |
"tuo articolo nel caso in cui la prima immagine corelata fosse di grandi "
|
377 |
"dimensioni"
|
378 |
|
379 |
+
#: admin.inc.php:392
|
380 |
#, fuzzy
|
381 |
msgid ""
|
382 |
"This could slow down the loading of your page if the first image in the "
|
387 |
"tuo articolo nel caso in cui la prima immagine corelata fosse di grandi "
|
388 |
"dimensioni"
|
389 |
|
390 |
+
#: admin.inc.php:394
|
391 |
msgid "Use default thumbnail? "
|
392 |
msgstr ""
|
393 |
|
394 |
+
#: admin.inc.php:395
|
395 |
msgid ""
|
396 |
"If checked, when no thumbnail is found, show a default one from the URL "
|
397 |
"below. If not checked and no thumbnail is found, no image will be shown."
|
399 |
"Se attiva, in assenza di miniatura ne mostrerà una predefinita da URL qui "
|
400 |
"sotto. Se inattiva e senza miniatura, non verrà mostrata nessuna immagine."
|
401 |
|
402 |
+
#: admin.inc.php:397
|
403 |
msgid "Default thumbnail: "
|
404 |
msgstr ""
|
405 |
|
406 |
+
#: admin.inc.php:398
|
407 |
#, fuzzy
|
408 |
msgid ""
|
409 |
"The plugin will first check if the post contains a thumbnail. If it doesn't "
|
415 |
"meta. Qualora non fosse disponibile, mostrerà l'immagine predefinita come "
|
416 |
"specificato qui sotto:"
|
417 |
|
418 |
+
#: admin.inc.php:404
|
419 |
msgid "Custom Styles"
|
420 |
msgstr ""
|
421 |
|
422 |
+
#: admin.inc.php:407
|
423 |
msgid "Custom CSS to add to header:"
|
424 |
msgstr ""
|
425 |
|
426 |
+
#: admin.inc.php:410
|
427 |
msgid ""
|
428 |
"Do not include <code>style</code> tags. Check out the <a href=\"http://"
|
429 |
"wordpress.org/extend/plugins/top-10/faq/\" target=\"_blank\">FAQ</a> for "
|
430 |
"available CSS classes to style."
|
431 |
msgstr ""
|
432 |
|
433 |
+
#: admin.inc.php:417
|
434 |
msgid "Maintenance"
|
435 |
msgstr ""
|
436 |
|
437 |
+
#: admin.inc.php:421
|
438 |
msgid ""
|
439 |
"Over time the Daily Top 10 database grows in size, which reduces the "
|
440 |
"performance of the plugin. Cleaning the database at regular intervals could "
|
441 |
"improve performance, especially on high traffic blogs."
|
442 |
msgstr ""
|
443 |
|
444 |
+
#: admin.inc.php:422
|
445 |
msgid ""
|
446 |
"Note: When scheduled maintenance is enabled, WordPress will run the cron job "
|
447 |
"everytime the job is rescheduled (i.e. you change the settings below). This "
|
448 |
"causes the daily posts table to reset."
|
449 |
msgstr ""
|
450 |
|
451 |
+
#: admin.inc.php:425
|
452 |
msgid "Enable scheduled maintenance of daily tables:"
|
453 |
msgstr ""
|
454 |
|
455 |
+
#: admin.inc.php:429
|
456 |
msgid "Time to run maintenance"
|
457 |
msgstr ""
|
458 |
|
459 |
+
#: admin.inc.php:432
|
460 |
msgid "How often should the maintenance be run:"
|
461 |
msgstr ""
|
462 |
|
463 |
+
#: admin.inc.php:436
|
464 |
msgid "Daily"
|
465 |
msgstr ""
|
466 |
|
467 |
+
#: admin.inc.php:440
|
468 |
msgid "Weekly"
|
469 |
msgstr ""
|
470 |
|
471 |
+
#: admin.inc.php:444
|
472 |
msgid "Fortnightly"
|
473 |
msgstr ""
|
474 |
|
475 |
+
#: admin.inc.php:448
|
476 |
msgid "Monthly"
|
477 |
msgstr ""
|
478 |
|
479 |
+
#: admin.inc.php:457
|
480 |
msgid "The cron job has been scheduled. Maintenance will run "
|
481 |
msgstr ""
|
482 |
|
483 |
+
#: admin.inc.php:462
|
484 |
msgid "The cron job is missing. Please resave this page to add the job"
|
485 |
msgstr ""
|
486 |
|
487 |
+
#: admin.inc.php:467
|
488 |
msgid "Maintenance is turned off"
|
489 |
msgstr ""
|
490 |
|
491 |
+
#: admin.inc.php:475
|
492 |
#, fuzzy
|
493 |
msgid "Save Options"
|
494 |
msgstr "Opzioni:"
|
495 |
|
496 |
+
#: admin.inc.php:476
|
497 |
#, fuzzy
|
498 |
msgid "Default Options"
|
499 |
msgstr "Opzioni output:"
|
500 |
|
501 |
+
#: admin.inc.php:476
|
502 |
msgid "Do you want to set options to Default?"
|
503 |
msgstr "Desideri ripristinare alle predefinite?"
|
504 |
|
505 |
+
#: admin.inc.php:480
|
506 |
msgid "Reset count"
|
507 |
msgstr "Ripristino conteggio"
|
508 |
|
509 |
+
#: admin.inc.php:483
|
510 |
msgid ""
|
511 |
"This cannot be reversed. Make sure that your database has been backed up "
|
512 |
"before proceeding"
|
514 |
"Questa operazione non é reversibile. Effettua il backup del database prima "
|
515 |
"di procedere"
|
516 |
|
517 |
+
#: admin.inc.php:486
|
518 |
#, fuzzy
|
519 |
msgid "Reset Popular Posts"
|
520 |
msgstr "Gli articoli più popolari"
|
521 |
|
522 |
+
#: admin.inc.php:486
|
523 |
msgid "Are you sure you want to reset the popular posts?"
|
524 |
msgstr "Sei certo di volere ripristinare gli articoli più popolari?"
|
525 |
|
526 |
+
#: admin.inc.php:487
|
527 |
#, fuzzy
|
528 |
msgid "Reset Daily Popular Posts"
|
529 |
msgstr "Gli articoli più popolari di oggi"
|
530 |
|
531 |
+
#: admin.inc.php:487
|
532 |
msgid "Are you sure you want to reset the daily popular posts?"
|
533 |
msgstr "Sei certo di volere ripristinare gli articoli più popolari del giorno?"
|
534 |
|
535 |
+
#: admin.inc.php:488
|
536 |
msgid "Clear duplicates"
|
537 |
msgstr ""
|
538 |
|
539 |
+
#: admin.inc.php:488
|
540 |
msgid "This will delete the duplicate entries in the tables. Proceed?"
|
541 |
msgstr "Questa operazione cancelerà i duplicati dalle tabelle. Procedi?"
|
542 |
|
543 |
+
#: admin.inc.php:531 admin.inc.php:906 top-10.php:476
|
544 |
msgid "Popular Posts"
|
545 |
msgstr "Gli articoli più popolari"
|
546 |
|
547 |
+
#: admin.inc.php:531 admin.inc.php:618
|
548 |
msgid "Daily Popular Posts"
|
549 |
msgstr "Gli articoli più popolari di oggi"
|
550 |
|
551 |
+
#: admin.inc.php:559
|
552 |
msgid "Support the development"
|
553 |
msgstr "Sostieni lo sviluppo"
|
554 |
|
555 |
+
#: admin.inc.php:567
|
556 |
msgid "Enter amount in USD: "
|
557 |
msgstr "Inserisci la cifra in USD: "
|
558 |
|
559 |
+
#: admin.inc.php:571
|
560 |
msgid "Send your donation to the author of"
|
561 |
msgstr "Invia la tua donazione all'autore di"
|
562 |
|
563 |
+
#: admin.inc.php:577
|
564 |
msgid "Follow us"
|
565 |
msgstr ""
|
566 |
|
567 |
+
#: admin.inc.php:583
|
568 |
#, fuzzy
|
569 |
msgid "Quick Links"
|
570 |
msgstr "Collegamenti veloci"
|
571 |
|
572 |
+
#: admin.inc.php:585
|
573 |
#, fuzzy
|
574 |
msgid "Top 10 plugin page"
|
575 |
msgstr "pagina plugin"
|
576 |
|
577 |
+
#: admin.inc.php:586
|
578 |
msgid "Other plugins"
|
579 |
msgstr "Altri plugin"
|
580 |
|
581 |
+
#: admin.inc.php:587
|
582 |
msgid "Ajay's blog"
|
583 |
msgstr "Il blog di Ajay"
|
584 |
|
585 |
+
#: admin.inc.php:588 top-10.php:1123
|
586 |
msgid "Support"
|
587 |
msgstr "Supporto"
|
588 |
|
589 |
+
#: admin.inc.php:592
|
590 |
msgid "Recent developments"
|
591 |
msgstr "Sviluppi recenti"
|
592 |
|
593 |
+
#: admin.inc.php:609 admin.inc.php:612
|
594 |
#, fuzzy
|
595 |
msgid "Top 10 Settings"
|
596 |
msgstr "Impostazioni"
|
597 |
|
598 |
+
#: admin.inc.php:609
|
599 |
msgid "Top 10"
|
600 |
msgstr "Top 10"
|
601 |
|
602 |
+
#: admin.inc.php:615
|
603 |
#, fuzzy
|
604 |
msgid "Overall Popular Posts"
|
605 |
msgstr "Visualizza panoramica articoli più popolari"
|
606 |
|
607 |
+
#: admin.inc.php:786
|
608 |
msgid "Results"
|
609 |
msgstr "Risultati"
|
610 |
|
611 |
+
#: admin.inc.php:788 admin.inc.php:794
|
612 |
msgid "of"
|
613 |
msgstr "di"
|
614 |
|
615 |
+
#: admin.inc.php:792
|
616 |
msgid "Page"
|
617 |
msgstr "Pagina"
|
618 |
|
619 |
+
#: admin.inc.php:806
|
620 |
msgid "View Daily Popular Posts"
|
621 |
msgstr "Visualizza gli articoli più letti di oggi"
|
622 |
|
623 |
+
#: admin.inc.php:809 admin.inc.php:822
|
624 |
msgid "Results per-page:"
|
625 |
msgstr "Risultati per pagina:"
|
626 |
|
627 |
+
#: admin.inc.php:819
|
628 |
msgid "View Overall Popular Posts"
|
629 |
msgstr "Visualizza panoramica articoli più popolari"
|
630 |
|
631 |
+
#: admin.inc.php:848
|
632 |
msgid "Previous"
|
633 |
msgstr "Precedente"
|
634 |
|
635 |
+
#: admin.inc.php:866
|
636 |
msgid "Next"
|
637 |
msgstr "Successiva"
|
638 |
|
639 |
+
#: admin.inc.php:907
|
640 |
msgid "Daily Popular"
|
641 |
msgstr "I più letti di oggi"
|
642 |
|
643 |
+
#: admin.inc.php:923
|
644 |
+
#, fuzzy
|
645 |
+
msgid "Total Views"
|
646 |
+
msgstr "Totale / Visualizzazioni odierne"
|
647 |
+
|
648 |
+
#: admin.inc.php:924
|
649 |
+
#, fuzzy
|
650 |
+
msgid "Today's Views"
|
651 |
msgstr "Totale / Visualizzazioni odierne"
|
652 |
|
653 |
+
#: top-10.php:393
|
654 |
+
msgid " Posted by "
|
655 |
+
msgstr ""
|
656 |
+
|
657 |
+
#: top-10.php:475
|
658 |
msgid "Display the posts popular this week"
|
659 |
msgstr "Mostra articoli più popolari settimana in corso"
|
660 |
|
661 |
+
#: top-10.php:493
|
662 |
msgid "Title"
|
663 |
msgstr ""
|
664 |
|
665 |
+
#: top-10.php:498
|
666 |
msgid "No. of posts"
|
667 |
msgstr ""
|
668 |
|
669 |
+
#: top-10.php:503
|
670 |
msgid "Overall"
|
671 |
msgstr ""
|
672 |
|
673 |
+
#: top-10.php:504
|
674 |
msgid "Custom time period (Enter below)"
|
675 |
msgstr ""
|
676 |
|
677 |
+
#: top-10.php:509
|
678 |
msgid "Range in number of days (applies only to custom option above)"
|
679 |
msgstr ""
|
680 |
|
681 |
+
#: top-10.php:514
|
682 |
+
#, fuzzy
|
683 |
+
msgid " Show excerpt?"
|
684 |
+
msgstr "Desideri mostrare gli estratti?"
|
685 |
+
|
686 |
+
#: top-10.php:519
|
687 |
+
msgid " Show author?"
|
688 |
+
msgstr ""
|
689 |
+
|
690 |
+
#: top-10.php:524
|
691 |
+
#, fuzzy
|
692 |
+
msgid " Show date?"
|
693 |
+
msgstr "Desideri mostrare gli estratti?"
|
694 |
+
|
695 |
+
#: top-10.php:528
|
696 |
#, fuzzy
|
697 |
msgid "Thumbnail options"
|
698 |
msgstr "Opzioni miniature articolo:"
|
699 |
|
700 |
+
#: top-10.php:530
|
701 |
#, fuzzy
|
702 |
msgid "Thumbnails inline, before title"
|
703 |
msgstr "Mostra gli articoli con le miniature inline prima del titolo"
|
704 |
|
705 |
+
#: top-10.php:531
|
706 |
#, fuzzy
|
707 |
msgid "Thumbnails inline, after title"
|
708 |
msgstr "Mostra gli articoli con le miniature inline dopo il titolo"
|
709 |
|
710 |
+
#: top-10.php:532
|
711 |
#, fuzzy
|
712 |
msgid "Only thumbnails, no text"
|
713 |
msgstr "Mostra le sole miniature, nessun testo"
|
714 |
|
715 |
+
#: top-10.php:533
|
716 |
#, fuzzy
|
717 |
msgid "No thumbnails, only text."
|
718 |
msgstr "Non mostrare le miniature, solo testo."
|
719 |
|
720 |
+
#: top-10.php:538
|
721 |
#, fuzzy
|
722 |
+
msgid "Thumbnail height"
|
723 |
+
msgstr "Opzioni miniature articolo:"
|
724 |
+
|
725 |
+
#: top-10.php:543
|
726 |
+
#, fuzzy
|
727 |
+
msgid "Thumbnail width"
|
728 |
+
msgstr "Opzioni miniature articolo:"
|
729 |
|
730 |
+
#: top-10.php:646
|
731 |
msgid "<h3>Popular Posts</h3>"
|
732 |
msgstr "<h3>Articoli più letti</h3>"
|
733 |
|
734 |
+
#: top-10.php:647
|
735 |
msgid "<h3>Daily Popular</h3>"
|
736 |
msgstr "<h3>I più letti di oggi</h3>"
|
737 |
|
738 |
+
#: top-10.php:648
|
739 |
#, fuzzy
|
740 |
msgid "No top posts yet"
|
741 |
msgstr "Ripristino 10 articoli più popolari"
|
742 |
|
743 |
+
#: top-10.php:1089
|
744 |
msgid "Once Weekly"
|
745 |
msgstr ""
|
746 |
|
747 |
+
#: top-10.php:1090
|
748 |
msgid "Once Fortnightly"
|
749 |
msgstr ""
|
750 |
|
751 |
+
#: top-10.php:1091
|
752 |
msgid "Once Monthly"
|
753 |
msgstr ""
|
754 |
|
755 |
+
#: top-10.php:1111
|
756 |
msgid "Settings"
|
757 |
msgstr "Impostazioni"
|
758 |
|
759 |
+
#: top-10.php:1124
|
760 |
msgid "Donate"
|
761 |
msgstr "Donazione"
|
762 |
|
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: 2013-
|
6 |
"PO-Revision-Date: \n"
|
7 |
"Last-Translator: Ajay D'Souza <me@ajaydsouza.com>\n"
|
8 |
"Language-Team: WPPG.me <info@wppg.me>\n"
|
@@ -17,165 +17,166 @@ msgstr ""
|
|
17 |
"X-Generator: Poedit 1.5.7\n"
|
18 |
"X-Poedit-SearchPath-0: .\n"
|
19 |
|
20 |
-
#: admin.inc.php:
|
21 |
msgid "Scheduled maintenance enabled / modified"
|
22 |
msgstr ""
|
23 |
|
24 |
-
#: admin.inc.php:
|
25 |
msgid "Scheduled maintenance disabled"
|
26 |
msgstr ""
|
27 |
|
28 |
-
#: admin.inc.php:
|
29 |
msgid "Options saved successfully."
|
30 |
msgstr "Opties succesvol opgeslagen."
|
31 |
|
32 |
-
#: admin.inc.php:
|
33 |
msgid "Options set to Default."
|
34 |
msgstr "Opties ingesteld op Standaard."
|
35 |
|
36 |
-
#: admin.inc.php:
|
37 |
msgid "Top 10 popular posts reset"
|
38 |
msgstr "Reset Top 10 populaire berichten"
|
39 |
|
40 |
-
#: admin.inc.php:
|
41 |
msgid "Top 10 daily popular posts reset"
|
42 |
msgstr "Reset Top 10 dagelijkse populaire berichten"
|
43 |
|
44 |
-
#: admin.inc.php:
|
45 |
msgid "Duplicate rows cleaned from tables"
|
46 |
msgstr ""
|
47 |
|
48 |
-
#: admin.inc.php:
|
49 |
msgid "General options"
|
50 |
msgstr ""
|
51 |
|
52 |
-
#: admin.inc.php:
|
53 |
msgid "Enable Overall stats"
|
54 |
msgstr ""
|
55 |
|
56 |
-
#: admin.inc.php:
|
57 |
msgid "Enable Daily stats"
|
58 |
msgstr ""
|
59 |
|
60 |
-
#: admin.inc.php:
|
61 |
msgid "W3 Total Cache fix:"
|
62 |
msgstr ""
|
63 |
|
64 |
-
#: admin.inc.php:
|
65 |
msgid ""
|
66 |
"This will try to prevent W3 Total Cache from caching the addcount script of "
|
67 |
"the plugin. Try toggling this option in case you find that our posts are not "
|
68 |
"tracked."
|
69 |
msgstr ""
|
70 |
|
71 |
-
#: admin.inc.php:
|
72 |
msgid "Number of popular posts to display: "
|
73 |
msgstr "Aantal populaire berichten om weer te geven:"
|
74 |
|
75 |
-
#: admin.inc.php:
|
76 |
msgid "Daily Popular should contain views of how many days? "
|
77 |
msgstr "Van hoeveel dagen moet Dagelijks Populair weergaves bevatten ?"
|
78 |
|
79 |
-
#: admin.inc.php:
|
80 |
msgid "Post types to include in results (including custom post types)"
|
81 |
msgstr ""
|
82 |
|
83 |
-
#: admin.inc.php:
|
84 |
msgid "List of post or page IDs to exclude from the results: "
|
85 |
msgstr ""
|
86 |
|
87 |
-
#: admin.inc.php:
|
88 |
msgid "Exclude Categories: "
|
89 |
msgstr ""
|
90 |
|
91 |
-
#: admin.inc.php:
|
92 |
msgid ""
|
93 |
"Comma separated list of category slugs. The field above has an autocomplete "
|
94 |
"so simply start typing in the starting letters and it will prompt you with "
|
95 |
"options"
|
96 |
msgstr ""
|
97 |
|
98 |
-
#: admin.inc.php:
|
99 |
#, fuzzy
|
100 |
msgid "Display number of views on:"
|
101 |
msgstr "Geef het aantal berichtweergaves weer?"
|
102 |
|
103 |
-
#: admin.inc.php:
|
104 |
msgid "Posts"
|
105 |
msgstr ""
|
106 |
|
107 |
-
#: admin.inc.php:
|
108 |
#, fuzzy
|
109 |
msgid "Pages"
|
110 |
msgstr "Pagina"
|
111 |
|
112 |
-
#: admin.inc.php:
|
113 |
msgid "Home page"
|
114 |
msgstr ""
|
115 |
|
116 |
-
#: admin.inc.php:
|
117 |
msgid "Feeds"
|
118 |
msgstr ""
|
119 |
|
120 |
-
#: admin.inc.php:
|
121 |
msgid "Category archives"
|
122 |
msgstr ""
|
123 |
|
124 |
-
#: admin.inc.php:
|
125 |
msgid "Tag archives"
|
126 |
msgstr ""
|
127 |
|
128 |
-
#: admin.inc.php:
|
129 |
msgid "Other archives"
|
130 |
msgstr ""
|
131 |
|
132 |
-
#: admin.inc.php:
|
133 |
msgid ""
|
134 |
"If you choose to disable this, please add <code><?php if(function_exists"
|
135 |
"('echo_ald_tptn')) echo_ald_tptn(); ?></code> to your template file where "
|
136 |
"you want it displayed"
|
137 |
msgstr ""
|
138 |
|
139 |
-
#: admin.inc.php:
|
140 |
msgid "Always display latest post count"
|
141 |
msgstr ""
|
142 |
|
143 |
-
#: admin.inc.php:
|
144 |
msgid ""
|
145 |
"This option uses JavaScript and will increase your page load time. Turn this "
|
146 |
"off if you are not using caching plugins or are OK with displaying older "
|
147 |
-
"cached counts"
|
|
|
148 |
msgstr ""
|
149 |
|
150 |
-
#: admin.inc.php:
|
151 |
msgid "Always display latest post count in the daily lists"
|
152 |
msgstr ""
|
153 |
|
154 |
-
#: admin.inc.php:
|
155 |
#, fuzzy
|
156 |
msgid "This option uses JavaScript and will increase your page load time"
|
157 |
msgstr ""
|
158 |
"Forceer de dagelijkse berichtenlijst dynamisch te zijn. Deze optie gebruikt "
|
159 |
"JavaScript om het bericht te laden en kan de laadtijd van de pagina verhogen"
|
160 |
|
161 |
-
#: admin.inc.php:
|
162 |
msgid "Track visits of authors on their own posts?"
|
163 |
msgstr "Registreer bezoeken van auteurs aan hun eigen berichten?"
|
164 |
|
165 |
-
#: admin.inc.php:
|
166 |
#, fuzzy
|
167 |
msgid "Track visits of admins?"
|
168 |
msgstr "Registreer bezoeken van auteurs aan hun eigen berichten?"
|
169 |
|
170 |
-
#: admin.inc.php:
|
171 |
msgid "Display page views on Posts > All Posts in Admin"
|
172 |
msgstr ""
|
173 |
|
174 |
-
#: admin.inc.php:
|
175 |
msgid "Link to Top 10 plugin page"
|
176 |
msgstr ""
|
177 |
|
178 |
-
#: admin.inc.php:
|
179 |
#, fuzzy
|
180 |
msgid ""
|
181 |
"A link to the plugin is added as an extra list item to the list of popular "
|
@@ -185,16 +186,16 @@ msgstr ""
|
|
185 |
"populaire berichten. Het is niet verplicht, maar wordt ten zeerste "
|
186 |
"gewaardeerd!"
|
187 |
|
188 |
-
#: admin.inc.php:
|
189 |
#, fuzzy
|
190 |
msgid "Output Options"
|
191 |
msgstr "Output Opties:"
|
192 |
|
193 |
-
#: admin.inc.php:
|
194 |
msgid "Format to display the count in: "
|
195 |
msgstr "Formaat om de optelling te laten zien:"
|
196 |
|
197 |
-
#: admin.inc.php:
|
198 |
#, fuzzy
|
199 |
msgid ""
|
200 |
"Use <code>%totalcount%</code> to display the total count, <code>%dailycount"
|
@@ -206,154 +207,159 @@ msgstr ""
|
|
206 |
"%</ code> om de dagelijkse telling te laten zien. De standaardopties geven "
|
207 |
"bijvoorbeeld <code>(123 keer bezocht, 23 bezoeken vandaag)</ code> weer."
|
208 |
|
209 |
-
#: admin.inc.php:
|
210 |
msgid "Title of popular posts: "
|
211 |
msgstr "Titel van populaire berichten:"
|
212 |
|
213 |
-
#: admin.inc.php:
|
214 |
msgid "Title of daily popular posts: "
|
215 |
msgstr "Titel van dagelijkse populaire berichten:"
|
216 |
|
217 |
-
#: admin.inc.php:
|
218 |
msgid "When there are no posts, what should be shown?"
|
219 |
msgstr ""
|
220 |
|
221 |
-
#: admin.inc.php:
|
222 |
msgid "Blank Output"
|
223 |
msgstr ""
|
224 |
|
225 |
-
#: admin.inc.php:
|
226 |
msgid "Display:"
|
227 |
msgstr ""
|
228 |
|
229 |
-
#: admin.inc.php:
|
230 |
msgid "Show post excerpt in list?"
|
231 |
msgstr "Laat bericht samenvatting zien in lijst?"
|
232 |
|
233 |
-
#: admin.inc.php:
|
234 |
msgid "Length of excerpt (in words): "
|
235 |
msgstr "Lengte van de samenvatting (in woorden):"
|
236 |
|
237 |
-
#: admin.inc.php:
|
|
|
|
|
|
|
|
|
|
|
238 |
#, fuzzy
|
239 |
msgid "Show post date in list?"
|
240 |
msgstr "Laat bericht samenvatting zien in lijst?"
|
241 |
|
242 |
-
#: admin.inc.php:
|
243 |
msgid "Limit post title length (in characters)"
|
244 |
msgstr ""
|
245 |
|
246 |
-
#: admin.inc.php:
|
247 |
msgid "Display number of page views in popular lists?"
|
248 |
msgstr "Laat het aantal paginaweergaves zien in populaire lijsten?"
|
249 |
|
250 |
-
#: admin.inc.php:
|
251 |
msgid "Open links in new window"
|
252 |
msgstr ""
|
253 |
|
254 |
-
#: admin.inc.php:
|
255 |
msgid "Add nofollow attribute to links in the list"
|
256 |
msgstr ""
|
257 |
|
258 |
-
#: admin.inc.php:
|
259 |
msgid "Exclude display of related posts on these posts / pages"
|
260 |
msgstr ""
|
261 |
|
262 |
-
#: admin.inc.php:
|
263 |
msgid "Enter comma separated list of IDs. e.g. 188,320,500"
|
264 |
msgstr ""
|
265 |
|
266 |
-
#: admin.inc.php:
|
267 |
msgid "Customize the output:"
|
268 |
msgstr "Aanpassen van de output:"
|
269 |
|
270 |
-
#: admin.inc.php:
|
271 |
msgid "HTML to display before the list of posts: "
|
272 |
msgstr "Te weergeven HTML voor de lijst met berichten:"
|
273 |
|
274 |
-
#: admin.inc.php:
|
275 |
msgid "HTML to display before each list item: "
|
276 |
msgstr "Te weergeven HTML voor elk lijst item:"
|
277 |
|
278 |
-
#: admin.inc.php:
|
279 |
msgid "HTML to display after each list item: "
|
280 |
msgstr "Te weergeven HTML na elk lijst item:"
|
281 |
|
282 |
-
#: admin.inc.php:
|
283 |
msgid "HTML to display after the list of posts: "
|
284 |
msgstr "Te weergeven HTML na de lijst met berichten:"
|
285 |
|
286 |
-
#: admin.inc.php:
|
287 |
msgid "Post thumbnail options:"
|
288 |
msgstr "Bericht miniatuurafbeelding opties:"
|
289 |
|
290 |
-
#: admin.inc.php:
|
291 |
msgid "Location of post thumbnail:"
|
292 |
msgstr ""
|
293 |
|
294 |
-
#: admin.inc.php:
|
295 |
#, fuzzy
|
296 |
msgid "Display thumbnails inline with posts, before title"
|
297 |
msgstr "Laat miniatuurafbeeldingen in lijn zien met berichten"
|
298 |
|
299 |
-
#: admin.inc.php:
|
300 |
#, fuzzy
|
301 |
msgid "Display thumbnails inline with posts, after title"
|
302 |
msgstr "Laat miniatuurafbeeldingen in lijn zien met berichten"
|
303 |
|
304 |
-
#: admin.inc.php:
|
305 |
msgid "Display only thumbnails, no text"
|
306 |
msgstr "Geef alleen miniatuurafbeeldingen weer, geen text"
|
307 |
|
308 |
-
#: admin.inc.php:
|
309 |
msgid "Do not display thumbnails, only text."
|
310 |
msgstr "Geef geen miniatuurafbeeldingen weer, alleen text"
|
311 |
|
312 |
-
#: admin.inc.php:
|
313 |
msgid "Width of the thumbnail: "
|
314 |
msgstr ""
|
315 |
|
316 |
-
#: admin.inc.php:
|
317 |
msgid "Height of the thumbnail: "
|
318 |
msgstr ""
|
319 |
|
320 |
-
#: admin.inc.php:
|
321 |
msgid "Style attributes / Width and Height HTML attributes:"
|
322 |
msgstr ""
|
323 |
|
324 |
-
#: admin.inc.php:
|
325 |
msgid ""
|
326 |
"Style attributes are used for width and height. <code>style=\"max-width:"
|
327 |
msgstr ""
|
328 |
|
329 |
-
#: admin.inc.php:
|
330 |
msgid ""
|
331 |
"HTML width and height attributes are used for width and height. <code>width="
|
332 |
"\""
|
333 |
msgstr ""
|
334 |
|
335 |
-
#: admin.inc.php:
|
336 |
msgid "Use timthumb to generate thumbnails? "
|
337 |
msgstr ""
|
338 |
|
339 |
-
#: admin.inc.php:
|
340 |
msgid ""
|
341 |
"If checked, <a href=\"http://www.binarymoon.co.uk/projects/timthumb/"
|
342 |
"\">timthumb</a> will be used to generate thumbnails"
|
343 |
msgstr ""
|
344 |
|
345 |
-
#: admin.inc.php:
|
346 |
#, fuzzy
|
347 |
msgid "Post thumbnail meta field name: "
|
348 |
msgstr "Bericht miniatuurafbeelding opties:"
|
349 |
|
350 |
-
#: admin.inc.php:
|
351 |
msgid ""
|
352 |
"The value of this field should contain the image source and is set in the "
|
353 |
"<em>Add New Post</em> screen"
|
354 |
msgstr ""
|
355 |
|
356 |
-
#: admin.inc.php:
|
357 |
#, fuzzy
|
358 |
msgid ""
|
359 |
"If the postmeta is not set, then should the plugin extract the first image "
|
@@ -364,7 +370,7 @@ msgstr ""
|
|
364 |
"vertragen wanneer de eerste afbeelding in de gerelateerde berichten groot is "
|
365 |
"qua bestandsgrootte"
|
366 |
|
367 |
-
#: admin.inc.php:
|
368 |
#, fuzzy
|
369 |
msgid ""
|
370 |
"This could slow down the loading of your page if the first image in the "
|
@@ -375,21 +381,21 @@ msgstr ""
|
|
375 |
"vertragen wanneer de eerste afbeelding in de gerelateerde berichten groot is "
|
376 |
"qua bestandsgrootte"
|
377 |
|
378 |
-
#: admin.inc.php:
|
379 |
msgid "Use default thumbnail? "
|
380 |
msgstr ""
|
381 |
|
382 |
-
#: admin.inc.php:
|
383 |
msgid ""
|
384 |
"If checked, when no thumbnail is found, show a default one from the URL "
|
385 |
"below. If not checked and no thumbnail is found, no image will be shown."
|
386 |
msgstr ""
|
387 |
|
388 |
-
#: admin.inc.php:
|
389 |
msgid "Default thumbnail: "
|
390 |
msgstr ""
|
391 |
|
392 |
-
#: admin.inc.php:
|
393 |
#, fuzzy
|
394 |
msgid ""
|
395 |
"The plugin will first check if the post contains a thumbnail. If it doesn't "
|
@@ -401,98 +407,98 @@ msgstr ""
|
|
401 |
"veld controleren. Als dit veld niet beschikbaar is toont de plugin de "
|
402 |
"standaard afbeelding zoals hieronder aangegeven:"
|
403 |
|
404 |
-
#: admin.inc.php:
|
405 |
msgid "Custom Styles"
|
406 |
msgstr ""
|
407 |
|
408 |
-
#: admin.inc.php:
|
409 |
msgid "Custom CSS to add to header:"
|
410 |
msgstr ""
|
411 |
|
412 |
-
#: admin.inc.php:
|
413 |
msgid ""
|
414 |
"Do not include <code>style</code> tags. Check out the <a href=\"http://"
|
415 |
"wordpress.org/extend/plugins/top-10/faq/\" target=\"_blank\">FAQ</a> for "
|
416 |
"available CSS classes to style."
|
417 |
msgstr ""
|
418 |
|
419 |
-
#: admin.inc.php:
|
420 |
msgid "Maintenance"
|
421 |
msgstr ""
|
422 |
|
423 |
-
#: admin.inc.php:
|
424 |
msgid ""
|
425 |
"Over time the Daily Top 10 database grows in size, which reduces the "
|
426 |
"performance of the plugin. Cleaning the database at regular intervals could "
|
427 |
"improve performance, especially on high traffic blogs."
|
428 |
msgstr ""
|
429 |
|
430 |
-
#: admin.inc.php:
|
431 |
msgid ""
|
432 |
"Note: When scheduled maintenance is enabled, WordPress will run the cron job "
|
433 |
"everytime the job is rescheduled (i.e. you change the settings below). This "
|
434 |
"causes the daily posts table to reset."
|
435 |
msgstr ""
|
436 |
|
437 |
-
#: admin.inc.php:
|
438 |
msgid "Enable scheduled maintenance of daily tables:"
|
439 |
msgstr ""
|
440 |
|
441 |
-
#: admin.inc.php:
|
442 |
msgid "Time to run maintenance"
|
443 |
msgstr ""
|
444 |
|
445 |
-
#: admin.inc.php:
|
446 |
msgid "How often should the maintenance be run:"
|
447 |
msgstr ""
|
448 |
|
449 |
-
#: admin.inc.php:
|
450 |
msgid "Daily"
|
451 |
msgstr ""
|
452 |
|
453 |
-
#: admin.inc.php:
|
454 |
msgid "Weekly"
|
455 |
msgstr ""
|
456 |
|
457 |
-
#: admin.inc.php:
|
458 |
msgid "Fortnightly"
|
459 |
msgstr ""
|
460 |
|
461 |
-
#: admin.inc.php:
|
462 |
msgid "Monthly"
|
463 |
msgstr ""
|
464 |
|
465 |
-
#: admin.inc.php:
|
466 |
msgid "The cron job has been scheduled. Maintenance will run "
|
467 |
msgstr ""
|
468 |
|
469 |
-
#: admin.inc.php:
|
470 |
msgid "The cron job is missing. Please resave this page to add the job"
|
471 |
msgstr ""
|
472 |
|
473 |
-
#: admin.inc.php:
|
474 |
msgid "Maintenance is turned off"
|
475 |
msgstr ""
|
476 |
|
477 |
-
#: admin.inc.php:
|
478 |
#, fuzzy
|
479 |
msgid "Save Options"
|
480 |
msgstr "Opties:"
|
481 |
|
482 |
-
#: admin.inc.php:
|
483 |
#, fuzzy
|
484 |
msgid "Default Options"
|
485 |
msgstr "Output Opties:"
|
486 |
|
487 |
-
#: admin.inc.php:
|
488 |
msgid "Do you want to set options to Default?"
|
489 |
msgstr "Wil je de opties terugzetten naar standaard?"
|
490 |
|
491 |
-
#: admin.inc.php:
|
492 |
msgid "Reset count"
|
493 |
msgstr "Reset telling"
|
494 |
|
495 |
-
#: admin.inc.php:
|
496 |
msgid ""
|
497 |
"This cannot be reversed. Make sure that your database has been backed up "
|
498 |
"before proceeding"
|
@@ -500,221 +506,250 @@ msgstr ""
|
|
500 |
"Dit kan niet ongedaan worden gemaakt. Zorg ervoor dat je een backup van je "
|
501 |
"database gemaakt hebt voordat je verder gaat"
|
502 |
|
503 |
-
#: admin.inc.php:
|
504 |
#, fuzzy
|
505 |
msgid "Reset Popular Posts"
|
506 |
msgstr "Populaire Berichten"
|
507 |
|
508 |
-
#: admin.inc.php:
|
509 |
msgid "Are you sure you want to reset the popular posts?"
|
510 |
msgstr "Ben je er zeker van dat je de populaire berichten wilt resetten?"
|
511 |
|
512 |
-
#: admin.inc.php:
|
513 |
#, fuzzy
|
514 |
msgid "Reset Daily Popular Posts"
|
515 |
msgstr "Dagelijkse Populaire Berichten"
|
516 |
|
517 |
-
#: admin.inc.php:
|
518 |
msgid "Are you sure you want to reset the daily popular posts?"
|
519 |
msgstr ""
|
520 |
"Ben je er zeker van dat je de dagelijkse populaire berichten wilt resetten?"
|
521 |
|
522 |
-
#: admin.inc.php:
|
523 |
msgid "Clear duplicates"
|
524 |
msgstr ""
|
525 |
|
526 |
-
#: admin.inc.php:
|
527 |
msgid "This will delete the duplicate entries in the tables. Proceed?"
|
528 |
msgstr "Hiermee verwijdert u de dubbele vermeldingen in de tabellen. Doorgaan?"
|
529 |
|
530 |
-
#: admin.inc.php:
|
531 |
msgid "Popular Posts"
|
532 |
msgstr "Populaire Berichten"
|
533 |
|
534 |
-
#: admin.inc.php:
|
535 |
msgid "Daily Popular Posts"
|
536 |
msgstr "Dagelijkse Populaire Berichten"
|
537 |
|
538 |
-
#: admin.inc.php:
|
539 |
msgid "Support the development"
|
540 |
msgstr "Ondersteun de ontwikkeling"
|
541 |
|
542 |
-
#: admin.inc.php:
|
543 |
msgid "Enter amount in USD: "
|
544 |
msgstr "Voer het bedrag in in USD:"
|
545 |
|
546 |
-
#: admin.inc.php:
|
547 |
msgid "Send your donation to the author of"
|
548 |
msgstr "Zend je donatie naar de auteur van "
|
549 |
|
550 |
-
#: admin.inc.php:
|
551 |
msgid "Follow us"
|
552 |
msgstr ""
|
553 |
|
554 |
-
#: admin.inc.php:
|
555 |
#, fuzzy
|
556 |
msgid "Quick Links"
|
557 |
msgstr "Quick links"
|
558 |
|
559 |
-
#: admin.inc.php:
|
560 |
#, fuzzy
|
561 |
msgid "Top 10 plugin page"
|
562 |
msgstr "plugin pagina"
|
563 |
|
564 |
-
#: admin.inc.php:
|
565 |
msgid "Other plugins"
|
566 |
msgstr "Andere plugins"
|
567 |
|
568 |
-
#: admin.inc.php:
|
569 |
msgid "Ajay's blog"
|
570 |
msgstr "De blog van Ajay"
|
571 |
|
572 |
-
#: admin.inc.php:
|
573 |
msgid "Support"
|
574 |
msgstr "Ondersteuning"
|
575 |
|
576 |
-
#: admin.inc.php:
|
577 |
msgid "Recent developments"
|
578 |
msgstr "Recente ontwikkelingen"
|
579 |
|
580 |
-
#: admin.inc.php:
|
581 |
#, fuzzy
|
582 |
msgid "Top 10 Settings"
|
583 |
msgstr "Instellingen"
|
584 |
|
585 |
-
#: admin.inc.php:
|
586 |
msgid "Top 10"
|
587 |
msgstr "Top 10"
|
588 |
|
589 |
-
#: admin.inc.php:
|
590 |
#, fuzzy
|
591 |
msgid "Overall Popular Posts"
|
592 |
msgstr "Bekijk het Totaal Populaire Berichten"
|
593 |
|
594 |
-
#: admin.inc.php:
|
595 |
msgid "Results"
|
596 |
msgstr "Resultaten"
|
597 |
|
598 |
-
#: admin.inc.php:
|
599 |
msgid "of"
|
600 |
msgstr "van"
|
601 |
|
602 |
-
#: admin.inc.php:
|
603 |
msgid "Page"
|
604 |
msgstr "Pagina"
|
605 |
|
606 |
-
#: admin.inc.php:
|
607 |
msgid "View Daily Popular Posts"
|
608 |
msgstr "Bekijk de Dagelijkse Populaire Berichten"
|
609 |
|
610 |
-
#: admin.inc.php:
|
611 |
msgid "Results per-page:"
|
612 |
msgstr "Resultaten per pagina:"
|
613 |
|
614 |
-
#: admin.inc.php:
|
615 |
msgid "View Overall Popular Posts"
|
616 |
msgstr "Bekijk het Totaal Populaire Berichten"
|
617 |
|
618 |
-
#: admin.inc.php:
|
619 |
msgid "Previous"
|
620 |
msgstr "Vorige"
|
621 |
|
622 |
-
#: admin.inc.php:
|
623 |
msgid "Next"
|
624 |
msgstr "Volgende"
|
625 |
|
626 |
-
#: admin.inc.php:
|
627 |
msgid "Daily Popular"
|
628 |
msgstr "Dagelijks Populair"
|
629 |
|
630 |
-
#: admin.inc.php:
|
631 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
632 |
msgstr "Totale Weergaves / Weergaves van Vandaag"
|
633 |
|
634 |
-
#: top-10.php:
|
|
|
|
|
|
|
|
|
635 |
msgid "Display the posts popular this week"
|
636 |
msgstr ""
|
637 |
|
638 |
-
#: top-10.php:
|
639 |
msgid "Title"
|
640 |
msgstr ""
|
641 |
|
642 |
-
#: top-10.php:
|
643 |
msgid "No. of posts"
|
644 |
msgstr ""
|
645 |
|
646 |
-
#: top-10.php:
|
647 |
msgid "Overall"
|
648 |
msgstr ""
|
649 |
|
650 |
-
#: top-10.php:
|
651 |
msgid "Custom time period (Enter below)"
|
652 |
msgstr ""
|
653 |
|
654 |
-
#: top-10.php:
|
655 |
msgid "Range in number of days (applies only to custom option above)"
|
656 |
msgstr ""
|
657 |
|
658 |
-
#: top-10.php:
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
659 |
#, fuzzy
|
660 |
msgid "Thumbnail options"
|
661 |
msgstr "Bericht miniatuurafbeelding opties:"
|
662 |
|
663 |
-
#: top-10.php:
|
664 |
#, fuzzy
|
665 |
msgid "Thumbnails inline, before title"
|
666 |
msgstr "Laat miniatuurafbeeldingen in lijn zien met berichten"
|
667 |
|
668 |
-
#: top-10.php:
|
669 |
#, fuzzy
|
670 |
msgid "Thumbnails inline, after title"
|
671 |
msgstr "Laat miniatuurafbeeldingen in lijn zien met berichten"
|
672 |
|
673 |
-
#: top-10.php:
|
674 |
#, fuzzy
|
675 |
msgid "Only thumbnails, no text"
|
676 |
msgstr "Geef alleen miniatuurafbeeldingen weer, geen text"
|
677 |
|
678 |
-
#: top-10.php:
|
679 |
#, fuzzy
|
680 |
msgid "No thumbnails, only text."
|
681 |
msgstr "Geef geen miniatuurafbeeldingen weer, alleen text"
|
682 |
|
683 |
-
#: top-10.php:
|
684 |
#, fuzzy
|
685 |
-
msgid "
|
686 |
-
msgstr "
|
|
|
|
|
|
|
|
|
|
|
687 |
|
688 |
-
#: top-10.php:
|
689 |
msgid "<h3>Popular Posts</h3>"
|
690 |
msgstr "<h3>Populaire Berichten</h3>"
|
691 |
|
692 |
-
#: top-10.php:
|
693 |
msgid "<h3>Daily Popular</h3>"
|
694 |
msgstr "<h3>Dagelijks Populair</h3>"
|
695 |
|
696 |
-
#: top-10.php:
|
697 |
#, fuzzy
|
698 |
msgid "No top posts yet"
|
699 |
msgstr "Reset Top 10 populaire berichten"
|
700 |
|
701 |
-
#: top-10.php:
|
702 |
msgid "Once Weekly"
|
703 |
msgstr ""
|
704 |
|
705 |
-
#: top-10.php:
|
706 |
msgid "Once Fortnightly"
|
707 |
msgstr ""
|
708 |
|
709 |
-
#: top-10.php:
|
710 |
msgid "Once Monthly"
|
711 |
msgstr ""
|
712 |
|
713 |
-
#: top-10.php:
|
714 |
msgid "Settings"
|
715 |
msgstr "Instellingen"
|
716 |
|
717 |
-
#: top-10.php:
|
718 |
msgid "Donate"
|
719 |
msgstr "Doneer"
|
720 |
|
2 |
msgstr ""
|
3 |
"Project-Id-Version: Top 10 v1.6.2\n"
|
4 |
"Report-Msgid-Bugs-To: \n"
|
5 |
+
"POT-Creation-Date: 2013-09-01 12:50-0000\n"
|
6 |
"PO-Revision-Date: \n"
|
7 |
"Last-Translator: Ajay D'Souza <me@ajaydsouza.com>\n"
|
8 |
"Language-Team: WPPG.me <info@wppg.me>\n"
|
17 |
"X-Generator: Poedit 1.5.7\n"
|
18 |
"X-Poedit-SearchPath-0: .\n"
|
19 |
|
20 |
+
#: admin.inc.php:103
|
21 |
msgid "Scheduled maintenance enabled / modified"
|
22 |
msgstr ""
|
23 |
|
24 |
+
#: admin.inc.php:107
|
25 |
msgid "Scheduled maintenance disabled"
|
26 |
msgstr ""
|
27 |
|
28 |
+
#: admin.inc.php:124
|
29 |
msgid "Options saved successfully."
|
30 |
msgstr "Opties succesvol opgeslagen."
|
31 |
|
32 |
+
#: admin.inc.php:133
|
33 |
msgid "Options set to Default."
|
34 |
msgstr "Opties ingesteld op Standaard."
|
35 |
|
36 |
+
#: admin.inc.php:139
|
37 |
msgid "Top 10 popular posts reset"
|
38 |
msgstr "Reset Top 10 populaire berichten"
|
39 |
|
40 |
+
#: admin.inc.php:145
|
41 |
msgid "Top 10 daily popular posts reset"
|
42 |
msgstr "Reset Top 10 dagelijkse populaire berichten"
|
43 |
|
44 |
+
#: admin.inc.php:152
|
45 |
msgid "Duplicate rows cleaned from tables"
|
46 |
msgstr ""
|
47 |
|
48 |
+
#: admin.inc.php:173
|
49 |
msgid "General options"
|
50 |
msgstr ""
|
51 |
|
52 |
+
#: admin.inc.php:177
|
53 |
msgid "Enable Overall stats"
|
54 |
msgstr ""
|
55 |
|
56 |
+
#: admin.inc.php:182
|
57 |
msgid "Enable Daily stats"
|
58 |
msgstr ""
|
59 |
|
60 |
+
#: admin.inc.php:187
|
61 |
msgid "W3 Total Cache fix:"
|
62 |
msgstr ""
|
63 |
|
64 |
+
#: admin.inc.php:189
|
65 |
msgid ""
|
66 |
"This will try to prevent W3 Total Cache from caching the addcount script of "
|
67 |
"the plugin. Try toggling this option in case you find that our posts are not "
|
68 |
"tracked."
|
69 |
msgstr ""
|
70 |
|
71 |
+
#: admin.inc.php:193
|
72 |
msgid "Number of popular posts to display: "
|
73 |
msgstr "Aantal populaire berichten om weer te geven:"
|
74 |
|
75 |
+
#: admin.inc.php:197
|
76 |
msgid "Daily Popular should contain views of how many days? "
|
77 |
msgstr "Van hoeveel dagen moet Dagelijks Populair weergaves bevatten ?"
|
78 |
|
79 |
+
#: admin.inc.php:200
|
80 |
msgid "Post types to include in results (including custom post types)"
|
81 |
msgstr ""
|
82 |
|
83 |
+
#: admin.inc.php:211
|
84 |
msgid "List of post or page IDs to exclude from the results: "
|
85 |
msgstr ""
|
86 |
|
87 |
+
#: admin.inc.php:215
|
88 |
msgid "Exclude Categories: "
|
89 |
msgstr ""
|
90 |
|
91 |
+
#: admin.inc.php:230
|
92 |
msgid ""
|
93 |
"Comma separated list of category slugs. The field above has an autocomplete "
|
94 |
"so simply start typing in the starting letters and it will prompt you with "
|
95 |
"options"
|
96 |
msgstr ""
|
97 |
|
98 |
+
#: admin.inc.php:235
|
99 |
#, fuzzy
|
100 |
msgid "Display number of views on:"
|
101 |
msgstr "Geef het aantal berichtweergaves weer?"
|
102 |
|
103 |
+
#: admin.inc.php:237
|
104 |
msgid "Posts"
|
105 |
msgstr ""
|
106 |
|
107 |
+
#: admin.inc.php:238
|
108 |
#, fuzzy
|
109 |
msgid "Pages"
|
110 |
msgstr "Pagina"
|
111 |
|
112 |
+
#: admin.inc.php:239
|
113 |
msgid "Home page"
|
114 |
msgstr ""
|
115 |
|
116 |
+
#: admin.inc.php:240
|
117 |
msgid "Feeds"
|
118 |
msgstr ""
|
119 |
|
120 |
+
#: admin.inc.php:241
|
121 |
msgid "Category archives"
|
122 |
msgstr ""
|
123 |
|
124 |
+
#: admin.inc.php:242
|
125 |
msgid "Tag archives"
|
126 |
msgstr ""
|
127 |
|
128 |
+
#: admin.inc.php:243
|
129 |
msgid "Other archives"
|
130 |
msgstr ""
|
131 |
|
132 |
+
#: admin.inc.php:244
|
133 |
msgid ""
|
134 |
"If you choose to disable this, please add <code><?php if(function_exists"
|
135 |
"('echo_ald_tptn')) echo_ald_tptn(); ?></code> to your template file where "
|
136 |
"you want it displayed"
|
137 |
msgstr ""
|
138 |
|
139 |
+
#: admin.inc.php:247
|
140 |
msgid "Always display latest post count"
|
141 |
msgstr ""
|
142 |
|
143 |
+
#: admin.inc.php:249
|
144 |
msgid ""
|
145 |
"This option uses JavaScript and will increase your page load time. Turn this "
|
146 |
"off if you are not using caching plugins or are OK with displaying older "
|
147 |
+
"cached counts. When you enable this option, the daily widget will not use "
|
148 |
+
"the options set there, but options will need to be set on this screen."
|
149 |
msgstr ""
|
150 |
|
151 |
+
#: admin.inc.php:252
|
152 |
msgid "Always display latest post count in the daily lists"
|
153 |
msgstr ""
|
154 |
|
155 |
+
#: admin.inc.php:254
|
156 |
#, fuzzy
|
157 |
msgid "This option uses JavaScript and will increase your page load time"
|
158 |
msgstr ""
|
159 |
"Forceer de dagelijkse berichtenlijst dynamisch te zijn. Deze optie gebruikt "
|
160 |
"JavaScript om het bericht te laden en kan de laadtijd van de pagina verhogen"
|
161 |
|
162 |
+
#: admin.inc.php:257
|
163 |
msgid "Track visits of authors on their own posts?"
|
164 |
msgstr "Registreer bezoeken van auteurs aan hun eigen berichten?"
|
165 |
|
166 |
+
#: admin.inc.php:260
|
167 |
#, fuzzy
|
168 |
msgid "Track visits of admins?"
|
169 |
msgstr "Registreer bezoeken van auteurs aan hun eigen berichten?"
|
170 |
|
171 |
+
#: admin.inc.php:263
|
172 |
msgid "Display page views on Posts > All Posts in Admin"
|
173 |
msgstr ""
|
174 |
|
175 |
+
#: admin.inc.php:266
|
176 |
msgid "Link to Top 10 plugin page"
|
177 |
msgstr ""
|
178 |
|
179 |
+
#: admin.inc.php:268
|
180 |
#, fuzzy
|
181 |
msgid ""
|
182 |
"A link to the plugin is added as an extra list item to the list of popular "
|
186 |
"populaire berichten. Het is niet verplicht, maar wordt ten zeerste "
|
187 |
"gewaardeerd!"
|
188 |
|
189 |
+
#: admin.inc.php:275
|
190 |
#, fuzzy
|
191 |
msgid "Output Options"
|
192 |
msgstr "Output Opties:"
|
193 |
|
194 |
+
#: admin.inc.php:278
|
195 |
msgid "Format to display the count in: "
|
196 |
msgstr "Formaat om de optelling te laten zien:"
|
197 |
|
198 |
+
#: admin.inc.php:280
|
199 |
#, fuzzy
|
200 |
msgid ""
|
201 |
"Use <code>%totalcount%</code> to display the total count, <code>%dailycount"
|
207 |
"%</ code> om de dagelijkse telling te laten zien. De standaardopties geven "
|
208 |
"bijvoorbeeld <code>(123 keer bezocht, 23 bezoeken vandaag)</ code> weer."
|
209 |
|
210 |
+
#: admin.inc.php:283
|
211 |
msgid "Title of popular posts: "
|
212 |
msgstr "Titel van populaire berichten:"
|
213 |
|
214 |
+
#: admin.inc.php:286
|
215 |
msgid "Title of daily popular posts: "
|
216 |
msgstr "Titel van dagelijkse populaire berichten:"
|
217 |
|
218 |
+
#: admin.inc.php:289
|
219 |
msgid "When there are no posts, what should be shown?"
|
220 |
msgstr ""
|
221 |
|
222 |
+
#: admin.inc.php:293
|
223 |
msgid "Blank Output"
|
224 |
msgstr ""
|
225 |
|
226 |
+
#: admin.inc.php:297
|
227 |
msgid "Display:"
|
228 |
msgstr ""
|
229 |
|
230 |
+
#: admin.inc.php:301
|
231 |
msgid "Show post excerpt in list?"
|
232 |
msgstr "Laat bericht samenvatting zien in lijst?"
|
233 |
|
234 |
+
#: admin.inc.php:304
|
235 |
msgid "Length of excerpt (in words): "
|
236 |
msgstr "Lengte van de samenvatting (in woorden):"
|
237 |
|
238 |
+
#: admin.inc.php:307
|
239 |
+
#, fuzzy
|
240 |
+
msgid "Show post author in list?"
|
241 |
+
msgstr "Laat bericht samenvatting zien in lijst?"
|
242 |
+
|
243 |
+
#: admin.inc.php:310
|
244 |
#, fuzzy
|
245 |
msgid "Show post date in list?"
|
246 |
msgstr "Laat bericht samenvatting zien in lijst?"
|
247 |
|
248 |
+
#: admin.inc.php:313
|
249 |
msgid "Limit post title length (in characters)"
|
250 |
msgstr ""
|
251 |
|
252 |
+
#: admin.inc.php:316
|
253 |
msgid "Display number of page views in popular lists?"
|
254 |
msgstr "Laat het aantal paginaweergaves zien in populaire lijsten?"
|
255 |
|
256 |
+
#: admin.inc.php:319
|
257 |
msgid "Open links in new window"
|
258 |
msgstr ""
|
259 |
|
260 |
+
#: admin.inc.php:322
|
261 |
msgid "Add nofollow attribute to links in the list"
|
262 |
msgstr ""
|
263 |
|
264 |
+
#: admin.inc.php:325
|
265 |
msgid "Exclude display of related posts on these posts / pages"
|
266 |
msgstr ""
|
267 |
|
268 |
+
#: admin.inc.php:328
|
269 |
msgid "Enter comma separated list of IDs. e.g. 188,320,500"
|
270 |
msgstr ""
|
271 |
|
272 |
+
#: admin.inc.php:331
|
273 |
msgid "Customize the output:"
|
274 |
msgstr "Aanpassen van de output:"
|
275 |
|
276 |
+
#: admin.inc.php:333
|
277 |
msgid "HTML to display before the list of posts: "
|
278 |
msgstr "Te weergeven HTML voor de lijst met berichten:"
|
279 |
|
280 |
+
#: admin.inc.php:336
|
281 |
msgid "HTML to display before each list item: "
|
282 |
msgstr "Te weergeven HTML voor elk lijst item:"
|
283 |
|
284 |
+
#: admin.inc.php:339
|
285 |
msgid "HTML to display after each list item: "
|
286 |
msgstr "Te weergeven HTML na elk lijst item:"
|
287 |
|
288 |
+
#: admin.inc.php:342
|
289 |
msgid "HTML to display after the list of posts: "
|
290 |
msgstr "Te weergeven HTML na de lijst met berichten:"
|
291 |
|
292 |
+
#: admin.inc.php:345
|
293 |
msgid "Post thumbnail options:"
|
294 |
msgstr "Bericht miniatuurafbeelding opties:"
|
295 |
|
296 |
+
#: admin.inc.php:347
|
297 |
msgid "Location of post thumbnail:"
|
298 |
msgstr ""
|
299 |
|
300 |
+
#: admin.inc.php:351
|
301 |
#, fuzzy
|
302 |
msgid "Display thumbnails inline with posts, before title"
|
303 |
msgstr "Laat miniatuurafbeeldingen in lijn zien met berichten"
|
304 |
|
305 |
+
#: admin.inc.php:355
|
306 |
#, fuzzy
|
307 |
msgid "Display thumbnails inline with posts, after title"
|
308 |
msgstr "Laat miniatuurafbeeldingen in lijn zien met berichten"
|
309 |
|
310 |
+
#: admin.inc.php:359
|
311 |
msgid "Display only thumbnails, no text"
|
312 |
msgstr "Geef alleen miniatuurafbeeldingen weer, geen text"
|
313 |
|
314 |
+
#: admin.inc.php:363
|
315 |
msgid "Do not display thumbnails, only text."
|
316 |
msgstr "Geef geen miniatuurafbeeldingen weer, alleen text"
|
317 |
|
318 |
+
#: admin.inc.php:367
|
319 |
msgid "Width of the thumbnail: "
|
320 |
msgstr ""
|
321 |
|
322 |
+
#: admin.inc.php:370
|
323 |
msgid "Height of the thumbnail: "
|
324 |
msgstr ""
|
325 |
|
326 |
+
#: admin.inc.php:373
|
327 |
msgid "Style attributes / Width and Height HTML attributes:"
|
328 |
msgstr ""
|
329 |
|
330 |
+
#: admin.inc.php:377
|
331 |
msgid ""
|
332 |
"Style attributes are used for width and height. <code>style=\"max-width:"
|
333 |
msgstr ""
|
334 |
|
335 |
+
#: admin.inc.php:381
|
336 |
msgid ""
|
337 |
"HTML width and height attributes are used for width and height. <code>width="
|
338 |
"\""
|
339 |
msgstr ""
|
340 |
|
341 |
+
#: admin.inc.php:385
|
342 |
msgid "Use timthumb to generate thumbnails? "
|
343 |
msgstr ""
|
344 |
|
345 |
+
#: admin.inc.php:386
|
346 |
msgid ""
|
347 |
"If checked, <a href=\"http://www.binarymoon.co.uk/projects/timthumb/"
|
348 |
"\">timthumb</a> will be used to generate thumbnails"
|
349 |
msgstr ""
|
350 |
|
351 |
+
#: admin.inc.php:388
|
352 |
#, fuzzy
|
353 |
msgid "Post thumbnail meta field name: "
|
354 |
msgstr "Bericht miniatuurafbeelding opties:"
|
355 |
|
356 |
+
#: admin.inc.php:389
|
357 |
msgid ""
|
358 |
"The value of this field should contain the image source and is set in the "
|
359 |
"<em>Add New Post</em> screen"
|
360 |
msgstr ""
|
361 |
|
362 |
+
#: admin.inc.php:391
|
363 |
#, fuzzy
|
364 |
msgid ""
|
365 |
"If the postmeta is not set, then should the plugin extract the first image "
|
370 |
"vertragen wanneer de eerste afbeelding in de gerelateerde berichten groot is "
|
371 |
"qua bestandsgrootte"
|
372 |
|
373 |
+
#: admin.inc.php:392
|
374 |
#, fuzzy
|
375 |
msgid ""
|
376 |
"This could slow down the loading of your page if the first image in the "
|
381 |
"vertragen wanneer de eerste afbeelding in de gerelateerde berichten groot is "
|
382 |
"qua bestandsgrootte"
|
383 |
|
384 |
+
#: admin.inc.php:394
|
385 |
msgid "Use default thumbnail? "
|
386 |
msgstr ""
|
387 |
|
388 |
+
#: admin.inc.php:395
|
389 |
msgid ""
|
390 |
"If checked, when no thumbnail is found, show a default one from the URL "
|
391 |
"below. If not checked and no thumbnail is found, no image will be shown."
|
392 |
msgstr ""
|
393 |
|
394 |
+
#: admin.inc.php:397
|
395 |
msgid "Default thumbnail: "
|
396 |
msgstr ""
|
397 |
|
398 |
+
#: admin.inc.php:398
|
399 |
#, fuzzy
|
400 |
msgid ""
|
401 |
"The plugin will first check if the post contains a thumbnail. If it doesn't "
|
407 |
"veld controleren. Als dit veld niet beschikbaar is toont de plugin de "
|
408 |
"standaard afbeelding zoals hieronder aangegeven:"
|
409 |
|
410 |
+
#: admin.inc.php:404
|
411 |
msgid "Custom Styles"
|
412 |
msgstr ""
|
413 |
|
414 |
+
#: admin.inc.php:407
|
415 |
msgid "Custom CSS to add to header:"
|
416 |
msgstr ""
|
417 |
|
418 |
+
#: admin.inc.php:410
|
419 |
msgid ""
|
420 |
"Do not include <code>style</code> tags. Check out the <a href=\"http://"
|
421 |
"wordpress.org/extend/plugins/top-10/faq/\" target=\"_blank\">FAQ</a> for "
|
422 |
"available CSS classes to style."
|
423 |
msgstr ""
|
424 |
|
425 |
+
#: admin.inc.php:417
|
426 |
msgid "Maintenance"
|
427 |
msgstr ""
|
428 |
|
429 |
+
#: admin.inc.php:421
|
430 |
msgid ""
|
431 |
"Over time the Daily Top 10 database grows in size, which reduces the "
|
432 |
"performance of the plugin. Cleaning the database at regular intervals could "
|
433 |
"improve performance, especially on high traffic blogs."
|
434 |
msgstr ""
|
435 |
|
436 |
+
#: admin.inc.php:422
|
437 |
msgid ""
|
438 |
"Note: When scheduled maintenance is enabled, WordPress will run the cron job "
|
439 |
"everytime the job is rescheduled (i.e. you change the settings below). This "
|
440 |
"causes the daily posts table to reset."
|
441 |
msgstr ""
|
442 |
|
443 |
+
#: admin.inc.php:425
|
444 |
msgid "Enable scheduled maintenance of daily tables:"
|
445 |
msgstr ""
|
446 |
|
447 |
+
#: admin.inc.php:429
|
448 |
msgid "Time to run maintenance"
|
449 |
msgstr ""
|
450 |
|
451 |
+
#: admin.inc.php:432
|
452 |
msgid "How often should the maintenance be run:"
|
453 |
msgstr ""
|
454 |
|
455 |
+
#: admin.inc.php:436
|
456 |
msgid "Daily"
|
457 |
msgstr ""
|
458 |
|
459 |
+
#: admin.inc.php:440
|
460 |
msgid "Weekly"
|
461 |
msgstr ""
|
462 |
|
463 |
+
#: admin.inc.php:444
|
464 |
msgid "Fortnightly"
|
465 |
msgstr ""
|
466 |
|
467 |
+
#: admin.inc.php:448
|
468 |
msgid "Monthly"
|
469 |
msgstr ""
|
470 |
|
471 |
+
#: admin.inc.php:457
|
472 |
msgid "The cron job has been scheduled. Maintenance will run "
|
473 |
msgstr ""
|
474 |
|
475 |
+
#: admin.inc.php:462
|
476 |
msgid "The cron job is missing. Please resave this page to add the job"
|
477 |
msgstr ""
|
478 |
|
479 |
+
#: admin.inc.php:467
|
480 |
msgid "Maintenance is turned off"
|
481 |
msgstr ""
|
482 |
|
483 |
+
#: admin.inc.php:475
|
484 |
#, fuzzy
|
485 |
msgid "Save Options"
|
486 |
msgstr "Opties:"
|
487 |
|
488 |
+
#: admin.inc.php:476
|
489 |
#, fuzzy
|
490 |
msgid "Default Options"
|
491 |
msgstr "Output Opties:"
|
492 |
|
493 |
+
#: admin.inc.php:476
|
494 |
msgid "Do you want to set options to Default?"
|
495 |
msgstr "Wil je de opties terugzetten naar standaard?"
|
496 |
|
497 |
+
#: admin.inc.php:480
|
498 |
msgid "Reset count"
|
499 |
msgstr "Reset telling"
|
500 |
|
501 |
+
#: admin.inc.php:483
|
502 |
msgid ""
|
503 |
"This cannot be reversed. Make sure that your database has been backed up "
|
504 |
"before proceeding"
|
506 |
"Dit kan niet ongedaan worden gemaakt. Zorg ervoor dat je een backup van je "
|
507 |
"database gemaakt hebt voordat je verder gaat"
|
508 |
|
509 |
+
#: admin.inc.php:486
|
510 |
#, fuzzy
|
511 |
msgid "Reset Popular Posts"
|
512 |
msgstr "Populaire Berichten"
|
513 |
|
514 |
+
#: admin.inc.php:486
|
515 |
msgid "Are you sure you want to reset the popular posts?"
|
516 |
msgstr "Ben je er zeker van dat je de populaire berichten wilt resetten?"
|
517 |
|
518 |
+
#: admin.inc.php:487
|
519 |
#, fuzzy
|
520 |
msgid "Reset Daily Popular Posts"
|
521 |
msgstr "Dagelijkse Populaire Berichten"
|
522 |
|
523 |
+
#: admin.inc.php:487
|
524 |
msgid "Are you sure you want to reset the daily popular posts?"
|
525 |
msgstr ""
|
526 |
"Ben je er zeker van dat je de dagelijkse populaire berichten wilt resetten?"
|
527 |
|
528 |
+
#: admin.inc.php:488
|
529 |
msgid "Clear duplicates"
|
530 |
msgstr ""
|
531 |
|
532 |
+
#: admin.inc.php:488
|
533 |
msgid "This will delete the duplicate entries in the tables. Proceed?"
|
534 |
msgstr "Hiermee verwijdert u de dubbele vermeldingen in de tabellen. Doorgaan?"
|
535 |
|
536 |
+
#: admin.inc.php:531 admin.inc.php:906 top-10.php:476
|
537 |
msgid "Popular Posts"
|
538 |
msgstr "Populaire Berichten"
|
539 |
|
540 |
+
#: admin.inc.php:531 admin.inc.php:618
|
541 |
msgid "Daily Popular Posts"
|
542 |
msgstr "Dagelijkse Populaire Berichten"
|
543 |
|
544 |
+
#: admin.inc.php:559
|
545 |
msgid "Support the development"
|
546 |
msgstr "Ondersteun de ontwikkeling"
|
547 |
|
548 |
+
#: admin.inc.php:567
|
549 |
msgid "Enter amount in USD: "
|
550 |
msgstr "Voer het bedrag in in USD:"
|
551 |
|
552 |
+
#: admin.inc.php:571
|
553 |
msgid "Send your donation to the author of"
|
554 |
msgstr "Zend je donatie naar de auteur van "
|
555 |
|
556 |
+
#: admin.inc.php:577
|
557 |
msgid "Follow us"
|
558 |
msgstr ""
|
559 |
|
560 |
+
#: admin.inc.php:583
|
561 |
#, fuzzy
|
562 |
msgid "Quick Links"
|
563 |
msgstr "Quick links"
|
564 |
|
565 |
+
#: admin.inc.php:585
|
566 |
#, fuzzy
|
567 |
msgid "Top 10 plugin page"
|
568 |
msgstr "plugin pagina"
|
569 |
|
570 |
+
#: admin.inc.php:586
|
571 |
msgid "Other plugins"
|
572 |
msgstr "Andere plugins"
|
573 |
|
574 |
+
#: admin.inc.php:587
|
575 |
msgid "Ajay's blog"
|
576 |
msgstr "De blog van Ajay"
|
577 |
|
578 |
+
#: admin.inc.php:588 top-10.php:1123
|
579 |
msgid "Support"
|
580 |
msgstr "Ondersteuning"
|
581 |
|
582 |
+
#: admin.inc.php:592
|
583 |
msgid "Recent developments"
|
584 |
msgstr "Recente ontwikkelingen"
|
585 |
|
586 |
+
#: admin.inc.php:609 admin.inc.php:612
|
587 |
#, fuzzy
|
588 |
msgid "Top 10 Settings"
|
589 |
msgstr "Instellingen"
|
590 |
|
591 |
+
#: admin.inc.php:609
|
592 |
msgid "Top 10"
|
593 |
msgstr "Top 10"
|
594 |
|
595 |
+
#: admin.inc.php:615
|
596 |
#, fuzzy
|
597 |
msgid "Overall Popular Posts"
|
598 |
msgstr "Bekijk het Totaal Populaire Berichten"
|
599 |
|
600 |
+
#: admin.inc.php:786
|
601 |
msgid "Results"
|
602 |
msgstr "Resultaten"
|
603 |
|
604 |
+
#: admin.inc.php:788 admin.inc.php:794
|
605 |
msgid "of"
|
606 |
msgstr "van"
|
607 |
|
608 |
+
#: admin.inc.php:792
|
609 |
msgid "Page"
|
610 |
msgstr "Pagina"
|
611 |
|
612 |
+
#: admin.inc.php:806
|
613 |
msgid "View Daily Popular Posts"
|
614 |
msgstr "Bekijk de Dagelijkse Populaire Berichten"
|
615 |
|
616 |
+
#: admin.inc.php:809 admin.inc.php:822
|
617 |
msgid "Results per-page:"
|
618 |
msgstr "Resultaten per pagina:"
|
619 |
|
620 |
+
#: admin.inc.php:819
|
621 |
msgid "View Overall Popular Posts"
|
622 |
msgstr "Bekijk het Totaal Populaire Berichten"
|
623 |
|
624 |
+
#: admin.inc.php:848
|
625 |
msgid "Previous"
|
626 |
msgstr "Vorige"
|
627 |
|
628 |
+
#: admin.inc.php:866
|
629 |
msgid "Next"
|
630 |
msgstr "Volgende"
|
631 |
|
632 |
+
#: admin.inc.php:907
|
633 |
msgid "Daily Popular"
|
634 |
msgstr "Dagelijks Populair"
|
635 |
|
636 |
+
#: admin.inc.php:923
|
637 |
+
#, fuzzy
|
638 |
+
msgid "Total Views"
|
639 |
+
msgstr "Totale Weergaves / Weergaves van Vandaag"
|
640 |
+
|
641 |
+
#: admin.inc.php:924
|
642 |
+
#, fuzzy
|
643 |
+
msgid "Today's Views"
|
644 |
msgstr "Totale Weergaves / Weergaves van Vandaag"
|
645 |
|
646 |
+
#: top-10.php:393
|
647 |
+
msgid " Posted by "
|
648 |
+
msgstr ""
|
649 |
+
|
650 |
+
#: top-10.php:475
|
651 |
msgid "Display the posts popular this week"
|
652 |
msgstr ""
|
653 |
|
654 |
+
#: top-10.php:493
|
655 |
msgid "Title"
|
656 |
msgstr ""
|
657 |
|
658 |
+
#: top-10.php:498
|
659 |
msgid "No. of posts"
|
660 |
msgstr ""
|
661 |
|
662 |
+
#: top-10.php:503
|
663 |
msgid "Overall"
|
664 |
msgstr ""
|
665 |
|
666 |
+
#: top-10.php:504
|
667 |
msgid "Custom time period (Enter below)"
|
668 |
msgstr ""
|
669 |
|
670 |
+
#: top-10.php:509
|
671 |
msgid "Range in number of days (applies only to custom option above)"
|
672 |
msgstr ""
|
673 |
|
674 |
+
#: top-10.php:514
|
675 |
+
#, fuzzy
|
676 |
+
msgid " Show excerpt?"
|
677 |
+
msgstr "Laat bericht samenvatting zien in lijst?"
|
678 |
+
|
679 |
+
#: top-10.php:519
|
680 |
+
msgid " Show author?"
|
681 |
+
msgstr ""
|
682 |
+
|
683 |
+
#: top-10.php:524
|
684 |
+
#, fuzzy
|
685 |
+
msgid " Show date?"
|
686 |
+
msgstr "Laat bericht samenvatting zien in lijst?"
|
687 |
+
|
688 |
+
#: top-10.php:528
|
689 |
#, fuzzy
|
690 |
msgid "Thumbnail options"
|
691 |
msgstr "Bericht miniatuurafbeelding opties:"
|
692 |
|
693 |
+
#: top-10.php:530
|
694 |
#, fuzzy
|
695 |
msgid "Thumbnails inline, before title"
|
696 |
msgstr "Laat miniatuurafbeeldingen in lijn zien met berichten"
|
697 |
|
698 |
+
#: top-10.php:531
|
699 |
#, fuzzy
|
700 |
msgid "Thumbnails inline, after title"
|
701 |
msgstr "Laat miniatuurafbeeldingen in lijn zien met berichten"
|
702 |
|
703 |
+
#: top-10.php:532
|
704 |
#, fuzzy
|
705 |
msgid "Only thumbnails, no text"
|
706 |
msgstr "Geef alleen miniatuurafbeeldingen weer, geen text"
|
707 |
|
708 |
+
#: top-10.php:533
|
709 |
#, fuzzy
|
710 |
msgid "No thumbnails, only text."
|
711 |
msgstr "Geef geen miniatuurafbeeldingen weer, alleen text"
|
712 |
|
713 |
+
#: top-10.php:538
|
714 |
#, fuzzy
|
715 |
+
msgid "Thumbnail height"
|
716 |
+
msgstr "Bericht miniatuurafbeelding opties:"
|
717 |
+
|
718 |
+
#: top-10.php:543
|
719 |
+
#, fuzzy
|
720 |
+
msgid "Thumbnail width"
|
721 |
+
msgstr "Bericht miniatuurafbeelding opties:"
|
722 |
|
723 |
+
#: top-10.php:646
|
724 |
msgid "<h3>Popular Posts</h3>"
|
725 |
msgstr "<h3>Populaire Berichten</h3>"
|
726 |
|
727 |
+
#: top-10.php:647
|
728 |
msgid "<h3>Daily Popular</h3>"
|
729 |
msgstr "<h3>Dagelijks Populair</h3>"
|
730 |
|
731 |
+
#: top-10.php:648
|
732 |
#, fuzzy
|
733 |
msgid "No top posts yet"
|
734 |
msgstr "Reset Top 10 populaire berichten"
|
735 |
|
736 |
+
#: top-10.php:1089
|
737 |
msgid "Once Weekly"
|
738 |
msgstr ""
|
739 |
|
740 |
+
#: top-10.php:1090
|
741 |
msgid "Once Fortnightly"
|
742 |
msgstr ""
|
743 |
|
744 |
+
#: top-10.php:1091
|
745 |
msgid "Once Monthly"
|
746 |
msgstr ""
|
747 |
|
748 |
+
#: top-10.php:1111
|
749 |
msgid "Settings"
|
750 |
msgstr "Instellingen"
|
751 |
|
752 |
+
#: top-10.php:1124
|
753 |
msgid "Donate"
|
754 |
msgstr "Doneer"
|
755 |
|
languages/tptn-ro_RO.mo
CHANGED
Binary file
|
languages/tptn-ro_RO.po
CHANGED
@@ -2,7 +2,7 @@ msgid ""
|
|
2 |
msgstr ""
|
3 |
"Project-Id-Version: Top 10\n"
|
4 |
"Report-Msgid-Bugs-To: \n"
|
5 |
-
"POT-Creation-Date: 2013-
|
6 |
"PO-Revision-Date: \n"
|
7 |
"Last-Translator: Ajay D'Souza <me@ajaydsouza.com>\n"
|
8 |
"Language-Team: Web Geeks\n"
|
@@ -15,141 +15,142 @@ msgstr ""
|
|
15 |
"X-Generator: Poedit 1.5.7\n"
|
16 |
"X-Poedit-SearchPath-0: .\n"
|
17 |
|
18 |
-
#: admin.inc.php:
|
19 |
msgid "Scheduled maintenance enabled / modified"
|
20 |
msgstr ""
|
21 |
|
22 |
-
#: admin.inc.php:
|
23 |
msgid "Scheduled maintenance disabled"
|
24 |
msgstr ""
|
25 |
|
26 |
-
#: admin.inc.php:
|
27 |
msgid "Options saved successfully."
|
28 |
msgstr "Opţiuni salvat cu succes."
|
29 |
|
30 |
-
#: admin.inc.php:
|
31 |
msgid "Options set to Default."
|
32 |
msgstr "Opţiunile setate la valorile implicite."
|
33 |
|
34 |
-
#: admin.inc.php:
|
35 |
msgid "Top 10 popular posts reset"
|
36 |
msgstr "Top 10 populare posturi Resetare"
|
37 |
|
38 |
-
#: admin.inc.php:
|
39 |
msgid "Top 10 daily popular posts reset"
|
40 |
msgstr "Top 10 posturi populare daily Reiniţializare"
|
41 |
|
42 |
-
#: admin.inc.php:
|
43 |
msgid "Duplicate rows cleaned from tables"
|
44 |
msgstr ""
|
45 |
|
46 |
-
#: admin.inc.php:
|
47 |
msgid "General options"
|
48 |
msgstr ""
|
49 |
|
50 |
-
#: admin.inc.php:
|
51 |
msgid "Enable Overall stats"
|
52 |
msgstr ""
|
53 |
|
54 |
-
#: admin.inc.php:
|
55 |
msgid "Enable Daily stats"
|
56 |
msgstr ""
|
57 |
|
58 |
-
#: admin.inc.php:
|
59 |
msgid "W3 Total Cache fix:"
|
60 |
msgstr ""
|
61 |
|
62 |
-
#: admin.inc.php:
|
63 |
msgid ""
|
64 |
"This will try to prevent W3 Total Cache from caching the addcount script of "
|
65 |
"the plugin. Try toggling this option in case you find that our posts are not "
|
66 |
"tracked."
|
67 |
msgstr ""
|
68 |
|
69 |
-
#: admin.inc.php:
|
70 |
msgid "Number of popular posts to display: "
|
71 |
msgstr "Numărul de posturi populare pentru a afişa: "
|
72 |
|
73 |
-
#: admin.inc.php:
|
74 |
msgid "Daily Popular should contain views of how many days? "
|
75 |
msgstr "Popular de zi cu zi ar trebui să conțină vizualizări de câte zile? "
|
76 |
|
77 |
-
#: admin.inc.php:
|
78 |
msgid "Post types to include in results (including custom post types)"
|
79 |
msgstr ""
|
80 |
|
81 |
-
#: admin.inc.php:
|
82 |
msgid "List of post or page IDs to exclude from the results: "
|
83 |
msgstr ""
|
84 |
|
85 |
-
#: admin.inc.php:
|
86 |
msgid "Exclude Categories: "
|
87 |
msgstr "Excludeţi categorii: "
|
88 |
|
89 |
-
#: admin.inc.php:
|
90 |
msgid ""
|
91 |
"Comma separated list of category slugs. The field above has an autocomplete "
|
92 |
"so simply start typing in the starting letters and it will prompt you with "
|
93 |
"options"
|
94 |
msgstr ""
|
95 |
|
96 |
-
#: admin.inc.php:
|
97 |
#, fuzzy
|
98 |
msgid "Display number of views on:"
|
99 |
msgstr "Afişează numărul de vizualizări pe posturi?"
|
100 |
|
101 |
-
#: admin.inc.php:
|
102 |
msgid "Posts"
|
103 |
msgstr ""
|
104 |
|
105 |
-
#: admin.inc.php:
|
106 |
#, fuzzy
|
107 |
msgid "Pages"
|
108 |
msgstr "Pagină"
|
109 |
|
110 |
-
#: admin.inc.php:
|
111 |
msgid "Home page"
|
112 |
msgstr ""
|
113 |
|
114 |
-
#: admin.inc.php:
|
115 |
msgid "Feeds"
|
116 |
msgstr ""
|
117 |
|
118 |
-
#: admin.inc.php:
|
119 |
msgid "Category archives"
|
120 |
msgstr ""
|
121 |
|
122 |
-
#: admin.inc.php:
|
123 |
msgid "Tag archives"
|
124 |
msgstr ""
|
125 |
|
126 |
-
#: admin.inc.php:
|
127 |
msgid "Other archives"
|
128 |
msgstr ""
|
129 |
|
130 |
-
#: admin.inc.php:
|
131 |
msgid ""
|
132 |
"If you choose to disable this, please add <code><?php if(function_exists"
|
133 |
"('echo_ald_tptn')) echo_ald_tptn(); ?></code> to your template file where "
|
134 |
"you want it displayed"
|
135 |
msgstr ""
|
136 |
|
137 |
-
#: admin.inc.php:
|
138 |
msgid "Always display latest post count"
|
139 |
msgstr ""
|
140 |
|
141 |
-
#: admin.inc.php:
|
142 |
msgid ""
|
143 |
"This option uses JavaScript and will increase your page load time. Turn this "
|
144 |
"off if you are not using caching plugins or are OK with displaying older "
|
145 |
-
"cached counts"
|
|
|
146 |
msgstr ""
|
147 |
|
148 |
-
#: admin.inc.php:
|
149 |
msgid "Always display latest post count in the daily lists"
|
150 |
msgstr ""
|
151 |
|
152 |
-
#: admin.inc.php:
|
153 |
#, fuzzy
|
154 |
msgid "This option uses JavaScript and will increase your page load time"
|
155 |
msgstr ""
|
@@ -157,24 +158,24 @@ msgstr ""
|
|
157 |
"utilizează JavaScript pentru a încărca post şi poate creşte timpul încărcare "
|
158 |
"pagină"
|
159 |
|
160 |
-
#: admin.inc.php:
|
161 |
msgid "Track visits of authors on their own posts?"
|
162 |
msgstr "Track vizite de autori pe posturile lor proprii?"
|
163 |
|
164 |
-
#: admin.inc.php:
|
165 |
#, fuzzy
|
166 |
msgid "Track visits of admins?"
|
167 |
msgstr "Track vizite de autori pe posturile lor proprii?"
|
168 |
|
169 |
-
#: admin.inc.php:
|
170 |
msgid "Display page views on Posts > All Posts in Admin"
|
171 |
msgstr ""
|
172 |
|
173 |
-
#: admin.inc.php:
|
174 |
msgid "Link to Top 10 plugin page"
|
175 |
msgstr ""
|
176 |
|
177 |
-
#: admin.inc.php:
|
178 |
#, fuzzy
|
179 |
msgid ""
|
180 |
"A link to the plugin is added as an extra list item to the list of popular "
|
@@ -183,16 +184,16 @@ msgstr ""
|
|
183 |
"Un link pentru a plugin-ul se adaugă ca un element suplimentar lista la "
|
184 |
"lista de posturi populare. Nu obligatoriu, dar Multumesc dacă tu a face it!"
|
185 |
|
186 |
-
#: admin.inc.php:
|
187 |
#, fuzzy
|
188 |
msgid "Output Options"
|
189 |
msgstr "Opţiuni de ieşire:"
|
190 |
|
191 |
-
#: admin.inc.php:
|
192 |
msgid "Format to display the count in: "
|
193 |
msgstr "Format pentru a afişa numărul în: "
|
194 |
|
195 |
-
#: admin.inc.php:
|
196 |
#, fuzzy
|
197 |
msgid ""
|
198 |
"Use <code>%totalcount%</code> to display the total count, <code>%dailycount"
|
@@ -204,152 +205,157 @@ msgstr ""
|
|
204 |
"% dailycount %</code> pentru a afişa numărul de zi cu zi. exemplu afişează "
|
205 |
"opţiunile implicite <code>(vizitat 123 ori, 23 vizite azi)</code>"
|
206 |
|
207 |
-
#: admin.inc.php:
|
208 |
msgid "Title of popular posts: "
|
209 |
msgstr "Titlul de posturi populare: "
|
210 |
|
211 |
-
#: admin.inc.php:
|
212 |
msgid "Title of daily popular posts: "
|
213 |
msgstr "Titlul de zi cu zi de posturi populare: "
|
214 |
|
215 |
-
#: admin.inc.php:
|
216 |
msgid "When there are no posts, what should be shown?"
|
217 |
msgstr ""
|
218 |
|
219 |
-
#: admin.inc.php:
|
220 |
msgid "Blank Output"
|
221 |
msgstr ""
|
222 |
|
223 |
-
#: admin.inc.php:
|
224 |
msgid "Display:"
|
225 |
msgstr ""
|
226 |
|
227 |
-
#: admin.inc.php:
|
228 |
msgid "Show post excerpt in list?"
|
229 |
msgstr "Afişează post extras din lista?"
|
230 |
|
231 |
-
#: admin.inc.php:
|
232 |
msgid "Length of excerpt (in words): "
|
233 |
msgstr "Lungimea extras (în cuvinte): "
|
234 |
|
235 |
-
#: admin.inc.php:
|
|
|
|
|
|
|
|
|
|
|
236 |
#, fuzzy
|
237 |
msgid "Show post date in list?"
|
238 |
msgstr "Afişează post extras din lista?"
|
239 |
|
240 |
-
#: admin.inc.php:
|
241 |
msgid "Limit post title length (in characters)"
|
242 |
msgstr ""
|
243 |
|
244 |
-
#: admin.inc.php:
|
245 |
msgid "Display number of page views in popular lists?"
|
246 |
msgstr "Afişează numărul de vizualizări de pagini în listele popular?"
|
247 |
|
248 |
-
#: admin.inc.php:
|
249 |
msgid "Open links in new window"
|
250 |
msgstr ""
|
251 |
|
252 |
-
#: admin.inc.php:
|
253 |
msgid "Add nofollow attribute to links in the list"
|
254 |
msgstr ""
|
255 |
|
256 |
-
#: admin.inc.php:
|
257 |
msgid "Exclude display of related posts on these posts / pages"
|
258 |
msgstr ""
|
259 |
|
260 |
-
#: admin.inc.php:
|
261 |
msgid "Enter comma separated list of IDs. e.g. 188,320,500"
|
262 |
msgstr ""
|
263 |
|
264 |
-
#: admin.inc.php:
|
265 |
msgid "Customize the output:"
|
266 |
msgstr "Personaliza ieşire:"
|
267 |
|
268 |
-
#: admin.inc.php:
|
269 |
msgid "HTML to display before the list of posts: "
|
270 |
msgstr "HTML pentru a afişa înainte de lista de posturi: "
|
271 |
|
272 |
-
#: admin.inc.php:
|
273 |
msgid "HTML to display before each list item: "
|
274 |
msgstr "HTML pentru a afişa înainte de fiecare element din listă: "
|
275 |
|
276 |
-
#: admin.inc.php:
|
277 |
msgid "HTML to display after each list item: "
|
278 |
msgstr "HTML pentru a afişa după fiecare element din listă: "
|
279 |
|
280 |
-
#: admin.inc.php:
|
281 |
msgid "HTML to display after the list of posts: "
|
282 |
msgstr "HTML pentru a afişa după lista de posturi: "
|
283 |
|
284 |
-
#: admin.inc.php:
|
285 |
msgid "Post thumbnail options:"
|
286 |
msgstr "Post Opţiuni pictograme:"
|
287 |
|
288 |
-
#: admin.inc.php:
|
289 |
msgid "Location of post thumbnail:"
|
290 |
msgstr ""
|
291 |
|
292 |
-
#: admin.inc.php:
|
293 |
msgid "Display thumbnails inline with posts, before title"
|
294 |
msgstr "Afişare miniaturi inline cu posturi, înainte de titlu"
|
295 |
|
296 |
-
#: admin.inc.php:
|
297 |
msgid "Display thumbnails inline with posts, after title"
|
298 |
msgstr "Afişare miniaturi inline cu posturi, după titlul"
|
299 |
|
300 |
-
#: admin.inc.php:
|
301 |
msgid "Display only thumbnails, no text"
|
302 |
msgstr "Afişa numai miniaturi, nici un text"
|
303 |
|
304 |
-
#: admin.inc.php:
|
305 |
msgid "Do not display thumbnails, only text."
|
306 |
msgstr "Nu se afişează miniaturi, numai textul."
|
307 |
|
308 |
-
#: admin.inc.php:
|
309 |
msgid "Width of the thumbnail: "
|
310 |
msgstr ""
|
311 |
|
312 |
-
#: admin.inc.php:
|
313 |
msgid "Height of the thumbnail: "
|
314 |
msgstr ""
|
315 |
|
316 |
-
#: admin.inc.php:
|
317 |
msgid "Style attributes / Width and Height HTML attributes:"
|
318 |
msgstr ""
|
319 |
|
320 |
-
#: admin.inc.php:
|
321 |
msgid ""
|
322 |
"Style attributes are used for width and height. <code>style=\"max-width:"
|
323 |
msgstr ""
|
324 |
|
325 |
-
#: admin.inc.php:
|
326 |
msgid ""
|
327 |
"HTML width and height attributes are used for width and height. <code>width="
|
328 |
"\""
|
329 |
msgstr ""
|
330 |
|
331 |
-
#: admin.inc.php:
|
332 |
msgid "Use timthumb to generate thumbnails? "
|
333 |
msgstr ""
|
334 |
|
335 |
-
#: admin.inc.php:
|
336 |
msgid ""
|
337 |
"If checked, <a href=\"http://www.binarymoon.co.uk/projects/timthumb/"
|
338 |
"\">timthumb</a> will be used to generate thumbnails"
|
339 |
msgstr ""
|
340 |
|
341 |
-
#: admin.inc.php:
|
342 |
#, fuzzy
|
343 |
msgid "Post thumbnail meta field name: "
|
344 |
msgstr "Post Opţiuni pictograme:"
|
345 |
|
346 |
-
#: admin.inc.php:
|
347 |
msgid ""
|
348 |
"The value of this field should contain the image source and is set in the "
|
349 |
"<em>Add New Post</em> screen"
|
350 |
msgstr ""
|
351 |
|
352 |
-
#: admin.inc.php:
|
353 |
#, fuzzy
|
354 |
msgid ""
|
355 |
"If the postmeta is not set, then should the plugin extract the first image "
|
@@ -360,7 +366,7 @@ msgstr ""
|
|
360 |
"dumneavoastră dacă prima imagine în legate de posturi este mare în mărime "
|
361 |
"fişier"
|
362 |
|
363 |
-
#: admin.inc.php:
|
364 |
#, fuzzy
|
365 |
msgid ""
|
366 |
"This could slow down the loading of your page if the first image in the "
|
@@ -371,11 +377,11 @@ msgstr ""
|
|
371 |
"dumneavoastră dacă prima imagine în legate de posturi este mare în mărime "
|
372 |
"fişier"
|
373 |
|
374 |
-
#: admin.inc.php:
|
375 |
msgid "Use default thumbnail? "
|
376 |
msgstr ""
|
377 |
|
378 |
-
#: admin.inc.php:
|
379 |
msgid ""
|
380 |
"If checked, when no thumbnail is found, show a default one from the URL "
|
381 |
"below. If not checked and no thumbnail is found, no image will be shown."
|
@@ -384,109 +390,109 @@ msgstr ""
|
|
384 |
"la URL-ul de mai jos. În cazul în care nu a verificat şi este găsit nici un "
|
385 |
"thumbnail, imaginea nu va fi indicat."
|
386 |
|
387 |
-
#: admin.inc.php:
|
388 |
msgid "Default thumbnail: "
|
389 |
msgstr ""
|
390 |
|
391 |
-
#: admin.inc.php:
|
392 |
msgid ""
|
393 |
"The plugin will first check if the post contains a thumbnail. If it doesn't "
|
394 |
"then it will check the meta field. If this is not available, then it will "
|
395 |
"show the default image as specified above"
|
396 |
msgstr ""
|
397 |
|
398 |
-
#: admin.inc.php:
|
399 |
msgid "Custom Styles"
|
400 |
msgstr ""
|
401 |
|
402 |
-
#: admin.inc.php:
|
403 |
msgid "Custom CSS to add to header:"
|
404 |
msgstr ""
|
405 |
|
406 |
-
#: admin.inc.php:
|
407 |
msgid ""
|
408 |
"Do not include <code>style</code> tags. Check out the <a href=\"http://"
|
409 |
"wordpress.org/extend/plugins/top-10/faq/\" target=\"_blank\">FAQ</a> for "
|
410 |
"available CSS classes to style."
|
411 |
msgstr ""
|
412 |
|
413 |
-
#: admin.inc.php:
|
414 |
msgid "Maintenance"
|
415 |
msgstr ""
|
416 |
|
417 |
-
#: admin.inc.php:
|
418 |
msgid ""
|
419 |
"Over time the Daily Top 10 database grows in size, which reduces the "
|
420 |
"performance of the plugin. Cleaning the database at regular intervals could "
|
421 |
"improve performance, especially on high traffic blogs."
|
422 |
msgstr ""
|
423 |
|
424 |
-
#: admin.inc.php:
|
425 |
msgid ""
|
426 |
"Note: When scheduled maintenance is enabled, WordPress will run the cron job "
|
427 |
"everytime the job is rescheduled (i.e. you change the settings below). This "
|
428 |
"causes the daily posts table to reset."
|
429 |
msgstr ""
|
430 |
|
431 |
-
#: admin.inc.php:
|
432 |
msgid "Enable scheduled maintenance of daily tables:"
|
433 |
msgstr ""
|
434 |
|
435 |
-
#: admin.inc.php:
|
436 |
msgid "Time to run maintenance"
|
437 |
msgstr ""
|
438 |
|
439 |
-
#: admin.inc.php:
|
440 |
msgid "How often should the maintenance be run:"
|
441 |
msgstr ""
|
442 |
|
443 |
-
#: admin.inc.php:
|
444 |
msgid "Daily"
|
445 |
msgstr ""
|
446 |
|
447 |
-
#: admin.inc.php:
|
448 |
msgid "Weekly"
|
449 |
msgstr ""
|
450 |
|
451 |
-
#: admin.inc.php:
|
452 |
msgid "Fortnightly"
|
453 |
msgstr ""
|
454 |
|
455 |
-
#: admin.inc.php:
|
456 |
msgid "Monthly"
|
457 |
msgstr ""
|
458 |
|
459 |
-
#: admin.inc.php:
|
460 |
msgid "The cron job has been scheduled. Maintenance will run "
|
461 |
msgstr ""
|
462 |
|
463 |
-
#: admin.inc.php:
|
464 |
msgid "The cron job is missing. Please resave this page to add the job"
|
465 |
msgstr ""
|
466 |
|
467 |
-
#: admin.inc.php:
|
468 |
msgid "Maintenance is turned off"
|
469 |
msgstr ""
|
470 |
|
471 |
-
#: admin.inc.php:
|
472 |
#, fuzzy
|
473 |
msgid "Save Options"
|
474 |
msgstr "Opţiuni:"
|
475 |
|
476 |
-
#: admin.inc.php:
|
477 |
#, fuzzy
|
478 |
msgid "Default Options"
|
479 |
msgstr "Opţiuni de ieşire:"
|
480 |
|
481 |
-
#: admin.inc.php:
|
482 |
msgid "Do you want to set options to Default?"
|
483 |
msgstr "Doriţi să setaţi opţiunile la valorile implicite?"
|
484 |
|
485 |
-
#: admin.inc.php:
|
486 |
msgid "Reset count"
|
487 |
msgstr "Reiniţializare count"
|
488 |
|
489 |
-
#: admin.inc.php:
|
490 |
msgid ""
|
491 |
"This cannot be reversed. Make sure that your database has been backed up "
|
492 |
"before proceeding"
|
@@ -494,220 +500,249 @@ msgstr ""
|
|
494 |
"Acest lucru poate fi inversat. Asiguraţi-vă că baza de date a fost sprijinit "
|
495 |
"înainte de a continua"
|
496 |
|
497 |
-
#: admin.inc.php:
|
498 |
#, fuzzy
|
499 |
msgid "Reset Popular Posts"
|
500 |
msgstr "Posturi populare"
|
501 |
|
502 |
-
#: admin.inc.php:
|
503 |
msgid "Are you sure you want to reset the popular posts?"
|
504 |
msgstr "Sigur reiniţializaţi posturi populare?"
|
505 |
|
506 |
-
#: admin.inc.php:
|
507 |
#, fuzzy
|
508 |
msgid "Reset Daily Popular Posts"
|
509 |
msgstr "Posturi populare de zi cu zi"
|
510 |
|
511 |
-
#: admin.inc.php:
|
512 |
msgid "Are you sure you want to reset the daily popular posts?"
|
513 |
msgstr "Sigur reiniţializaţi posturi populare zilnic?"
|
514 |
|
515 |
-
#: admin.inc.php:
|
516 |
msgid "Clear duplicates"
|
517 |
msgstr ""
|
518 |
|
519 |
-
#: admin.inc.php:
|
520 |
msgid "This will delete the duplicate entries in the tables. Proceed?"
|
521 |
msgstr "Aceasta va şterge intrările dublate în tabele. Continuaţi?"
|
522 |
|
523 |
-
#: admin.inc.php:
|
524 |
msgid "Popular Posts"
|
525 |
msgstr "Posturi populare"
|
526 |
|
527 |
-
#: admin.inc.php:
|
528 |
msgid "Daily Popular Posts"
|
529 |
msgstr "Posturi populare de zi cu zi"
|
530 |
|
531 |
-
#: admin.inc.php:
|
532 |
msgid "Support the development"
|
533 |
msgstr "Sprijinirea dezvoltării"
|
534 |
|
535 |
-
#: admin.inc.php:
|
536 |
msgid "Enter amount in USD: "
|
537 |
msgstr "Introduceţi valoarea în USD: "
|
538 |
|
539 |
-
#: admin.inc.php:
|
540 |
msgid "Send your donation to the author of"
|
541 |
msgstr "Trimite donatie autorului"
|
542 |
|
543 |
-
#: admin.inc.php:
|
544 |
msgid "Follow us"
|
545 |
msgstr ""
|
546 |
|
547 |
-
#: admin.inc.php:
|
548 |
#, fuzzy
|
549 |
msgid "Quick Links"
|
550 |
msgstr "Legături rapide pentru"
|
551 |
|
552 |
-
#: admin.inc.php:
|
553 |
#, fuzzy
|
554 |
msgid "Top 10 plugin page"
|
555 |
msgstr "plug-in pagina"
|
556 |
|
557 |
-
#: admin.inc.php:
|
558 |
msgid "Other plugins"
|
559 |
msgstr "Alte plugin-uri"
|
560 |
|
561 |
-
#: admin.inc.php:
|
562 |
msgid "Ajay's blog"
|
563 |
msgstr "Ajay's blog"
|
564 |
|
565 |
-
#: admin.inc.php:
|
566 |
msgid "Support"
|
567 |
msgstr "Suport"
|
568 |
|
569 |
-
#: admin.inc.php:
|
570 |
msgid "Recent developments"
|
571 |
msgstr "Evoluţiile recente"
|
572 |
|
573 |
-
#: admin.inc.php:
|
574 |
#, fuzzy
|
575 |
msgid "Top 10 Settings"
|
576 |
msgstr "Setări"
|
577 |
|
578 |
-
#: admin.inc.php:
|
579 |
msgid "Top 10"
|
580 |
msgstr "Top 10"
|
581 |
|
582 |
-
#: admin.inc.php:
|
583 |
#, fuzzy
|
584 |
msgid "Overall Popular Posts"
|
585 |
msgstr "Vedere de ansamblu posturi populare"
|
586 |
|
587 |
-
#: admin.inc.php:
|
588 |
msgid "Results"
|
589 |
msgstr "Rezultatele"
|
590 |
|
591 |
-
#: admin.inc.php:
|
592 |
msgid "of"
|
593 |
msgstr "de"
|
594 |
|
595 |
-
#: admin.inc.php:
|
596 |
msgid "Page"
|
597 |
msgstr "Pagină"
|
598 |
|
599 |
-
#: admin.inc.php:
|
600 |
msgid "View Daily Popular Posts"
|
601 |
msgstr "Vizualizare zi posturi populare"
|
602 |
|
603 |
-
#: admin.inc.php:
|
604 |
msgid "Results per-page:"
|
605 |
msgstr "Rezultate pe pagină:"
|
606 |
|
607 |
-
#: admin.inc.php:
|
608 |
msgid "View Overall Popular Posts"
|
609 |
msgstr "Vedere de ansamblu posturi populare"
|
610 |
|
611 |
-
#: admin.inc.php:
|
612 |
msgid "Previous"
|
613 |
msgstr "Anterioară"
|
614 |
|
615 |
-
#: admin.inc.php:
|
616 |
msgid "Next"
|
617 |
msgstr "Următorul"
|
618 |
|
619 |
-
#: admin.inc.php:
|
620 |
msgid "Daily Popular"
|
621 |
msgstr "Daily populare"
|
622 |
|
623 |
-
#: admin.inc.php:
|
624 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
625 |
msgstr "Total / astăzi lui vizitări"
|
626 |
|
627 |
-
#: top-10.php:
|
|
|
|
|
|
|
|
|
628 |
msgid "Display the posts popular this week"
|
629 |
msgstr "Afişa posturi populare în această săptămână"
|
630 |
|
631 |
-
#: top-10.php:
|
632 |
msgid "Title"
|
633 |
msgstr ""
|
634 |
|
635 |
-
#: top-10.php:
|
636 |
msgid "No. of posts"
|
637 |
msgstr ""
|
638 |
|
639 |
-
#: top-10.php:
|
640 |
msgid "Overall"
|
641 |
msgstr ""
|
642 |
|
643 |
-
#: top-10.php:
|
644 |
msgid "Custom time period (Enter below)"
|
645 |
msgstr ""
|
646 |
|
647 |
-
#: top-10.php:
|
648 |
msgid "Range in number of days (applies only to custom option above)"
|
649 |
msgstr ""
|
650 |
|
651 |
-
#: top-10.php:
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
652 |
#, fuzzy
|
653 |
msgid "Thumbnail options"
|
654 |
msgstr "Post Opţiuni pictograme:"
|
655 |
|
656 |
-
#: top-10.php:
|
657 |
#, fuzzy
|
658 |
msgid "Thumbnails inline, before title"
|
659 |
msgstr "Afişare miniaturi inline cu posturi, înainte de titlu"
|
660 |
|
661 |
-
#: top-10.php:
|
662 |
#, fuzzy
|
663 |
msgid "Thumbnails inline, after title"
|
664 |
msgstr "Afişare miniaturi inline cu posturi, după titlul"
|
665 |
|
666 |
-
#: top-10.php:
|
667 |
#, fuzzy
|
668 |
msgid "Only thumbnails, no text"
|
669 |
msgstr "Afişa numai miniaturi, nici un text"
|
670 |
|
671 |
-
#: top-10.php:
|
672 |
#, fuzzy
|
673 |
msgid "No thumbnails, only text."
|
674 |
msgstr "Nu se afişează miniaturi, numai textul."
|
675 |
|
676 |
-
#: top-10.php:
|
677 |
#, fuzzy
|
678 |
-
msgid "
|
679 |
-
msgstr "
|
|
|
|
|
|
|
|
|
|
|
680 |
|
681 |
-
#: top-10.php:
|
682 |
msgid "<h3>Popular Posts</h3>"
|
683 |
msgstr "<h3>Posturi populare</h3>"
|
684 |
|
685 |
-
#: top-10.php:
|
686 |
msgid "<h3>Daily Popular</h3>"
|
687 |
msgstr "<h3>Daily populare</h3>"
|
688 |
|
689 |
-
#: top-10.php:
|
690 |
#, fuzzy
|
691 |
msgid "No top posts yet"
|
692 |
msgstr "Top 10 populare posturi Resetare"
|
693 |
|
694 |
-
#: top-10.php:
|
695 |
msgid "Once Weekly"
|
696 |
msgstr ""
|
697 |
|
698 |
-
#: top-10.php:
|
699 |
msgid "Once Fortnightly"
|
700 |
msgstr ""
|
701 |
|
702 |
-
#: top-10.php:
|
703 |
msgid "Once Monthly"
|
704 |
msgstr ""
|
705 |
|
706 |
-
#: top-10.php:
|
707 |
msgid "Settings"
|
708 |
msgstr "Setări"
|
709 |
|
710 |
-
#: top-10.php:
|
711 |
msgid "Donate"
|
712 |
msgstr "Dona"
|
713 |
|
2 |
msgstr ""
|
3 |
"Project-Id-Version: Top 10\n"
|
4 |
"Report-Msgid-Bugs-To: \n"
|
5 |
+
"POT-Creation-Date: 2013-09-01 12:51-0000\n"
|
6 |
"PO-Revision-Date: \n"
|
7 |
"Last-Translator: Ajay D'Souza <me@ajaydsouza.com>\n"
|
8 |
"Language-Team: Web Geeks\n"
|
15 |
"X-Generator: Poedit 1.5.7\n"
|
16 |
"X-Poedit-SearchPath-0: .\n"
|
17 |
|
18 |
+
#: admin.inc.php:103
|
19 |
msgid "Scheduled maintenance enabled / modified"
|
20 |
msgstr ""
|
21 |
|
22 |
+
#: admin.inc.php:107
|
23 |
msgid "Scheduled maintenance disabled"
|
24 |
msgstr ""
|
25 |
|
26 |
+
#: admin.inc.php:124
|
27 |
msgid "Options saved successfully."
|
28 |
msgstr "Opţiuni salvat cu succes."
|
29 |
|
30 |
+
#: admin.inc.php:133
|
31 |
msgid "Options set to Default."
|
32 |
msgstr "Opţiunile setate la valorile implicite."
|
33 |
|
34 |
+
#: admin.inc.php:139
|
35 |
msgid "Top 10 popular posts reset"
|
36 |
msgstr "Top 10 populare posturi Resetare"
|
37 |
|
38 |
+
#: admin.inc.php:145
|
39 |
msgid "Top 10 daily popular posts reset"
|
40 |
msgstr "Top 10 posturi populare daily Reiniţializare"
|
41 |
|
42 |
+
#: admin.inc.php:152
|
43 |
msgid "Duplicate rows cleaned from tables"
|
44 |
msgstr ""
|
45 |
|
46 |
+
#: admin.inc.php:173
|
47 |
msgid "General options"
|
48 |
msgstr ""
|
49 |
|
50 |
+
#: admin.inc.php:177
|
51 |
msgid "Enable Overall stats"
|
52 |
msgstr ""
|
53 |
|
54 |
+
#: admin.inc.php:182
|
55 |
msgid "Enable Daily stats"
|
56 |
msgstr ""
|
57 |
|
58 |
+
#: admin.inc.php:187
|
59 |
msgid "W3 Total Cache fix:"
|
60 |
msgstr ""
|
61 |
|
62 |
+
#: admin.inc.php:189
|
63 |
msgid ""
|
64 |
"This will try to prevent W3 Total Cache from caching the addcount script of "
|
65 |
"the plugin. Try toggling this option in case you find that our posts are not "
|
66 |
"tracked."
|
67 |
msgstr ""
|
68 |
|
69 |
+
#: admin.inc.php:193
|
70 |
msgid "Number of popular posts to display: "
|
71 |
msgstr "Numărul de posturi populare pentru a afişa: "
|
72 |
|
73 |
+
#: admin.inc.php:197
|
74 |
msgid "Daily Popular should contain views of how many days? "
|
75 |
msgstr "Popular de zi cu zi ar trebui să conțină vizualizări de câte zile? "
|
76 |
|
77 |
+
#: admin.inc.php:200
|
78 |
msgid "Post types to include in results (including custom post types)"
|
79 |
msgstr ""
|
80 |
|
81 |
+
#: admin.inc.php:211
|
82 |
msgid "List of post or page IDs to exclude from the results: "
|
83 |
msgstr ""
|
84 |
|
85 |
+
#: admin.inc.php:215
|
86 |
msgid "Exclude Categories: "
|
87 |
msgstr "Excludeţi categorii: "
|
88 |
|
89 |
+
#: admin.inc.php:230
|
90 |
msgid ""
|
91 |
"Comma separated list of category slugs. The field above has an autocomplete "
|
92 |
"so simply start typing in the starting letters and it will prompt you with "
|
93 |
"options"
|
94 |
msgstr ""
|
95 |
|
96 |
+
#: admin.inc.php:235
|
97 |
#, fuzzy
|
98 |
msgid "Display number of views on:"
|
99 |
msgstr "Afişează numărul de vizualizări pe posturi?"
|
100 |
|
101 |
+
#: admin.inc.php:237
|
102 |
msgid "Posts"
|
103 |
msgstr ""
|
104 |
|
105 |
+
#: admin.inc.php:238
|
106 |
#, fuzzy
|
107 |
msgid "Pages"
|
108 |
msgstr "Pagină"
|
109 |
|
110 |
+
#: admin.inc.php:239
|
111 |
msgid "Home page"
|
112 |
msgstr ""
|
113 |
|
114 |
+
#: admin.inc.php:240
|
115 |
msgid "Feeds"
|
116 |
msgstr ""
|
117 |
|
118 |
+
#: admin.inc.php:241
|
119 |
msgid "Category archives"
|
120 |
msgstr ""
|
121 |
|
122 |
+
#: admin.inc.php:242
|
123 |
msgid "Tag archives"
|
124 |
msgstr ""
|
125 |
|
126 |
+
#: admin.inc.php:243
|
127 |
msgid "Other archives"
|
128 |
msgstr ""
|
129 |
|
130 |
+
#: admin.inc.php:244
|
131 |
msgid ""
|
132 |
"If you choose to disable this, please add <code><?php if(function_exists"
|
133 |
"('echo_ald_tptn')) echo_ald_tptn(); ?></code> to your template file where "
|
134 |
"you want it displayed"
|
135 |
msgstr ""
|
136 |
|
137 |
+
#: admin.inc.php:247
|
138 |
msgid "Always display latest post count"
|
139 |
msgstr ""
|
140 |
|
141 |
+
#: admin.inc.php:249
|
142 |
msgid ""
|
143 |
"This option uses JavaScript and will increase your page load time. Turn this "
|
144 |
"off if you are not using caching plugins or are OK with displaying older "
|
145 |
+
"cached counts. When you enable this option, the daily widget will not use "
|
146 |
+
"the options set there, but options will need to be set on this screen."
|
147 |
msgstr ""
|
148 |
|
149 |
+
#: admin.inc.php:252
|
150 |
msgid "Always display latest post count in the daily lists"
|
151 |
msgstr ""
|
152 |
|
153 |
+
#: admin.inc.php:254
|
154 |
#, fuzzy
|
155 |
msgid "This option uses JavaScript and will increase your page load time"
|
156 |
msgstr ""
|
158 |
"utilizează JavaScript pentru a încărca post şi poate creşte timpul încărcare "
|
159 |
"pagină"
|
160 |
|
161 |
+
#: admin.inc.php:257
|
162 |
msgid "Track visits of authors on their own posts?"
|
163 |
msgstr "Track vizite de autori pe posturile lor proprii?"
|
164 |
|
165 |
+
#: admin.inc.php:260
|
166 |
#, fuzzy
|
167 |
msgid "Track visits of admins?"
|
168 |
msgstr "Track vizite de autori pe posturile lor proprii?"
|
169 |
|
170 |
+
#: admin.inc.php:263
|
171 |
msgid "Display page views on Posts > All Posts in Admin"
|
172 |
msgstr ""
|
173 |
|
174 |
+
#: admin.inc.php:266
|
175 |
msgid "Link to Top 10 plugin page"
|
176 |
msgstr ""
|
177 |
|
178 |
+
#: admin.inc.php:268
|
179 |
#, fuzzy
|
180 |
msgid ""
|
181 |
"A link to the plugin is added as an extra list item to the list of popular "
|
184 |
"Un link pentru a plugin-ul se adaugă ca un element suplimentar lista la "
|
185 |
"lista de posturi populare. Nu obligatoriu, dar Multumesc dacă tu a face it!"
|
186 |
|
187 |
+
#: admin.inc.php:275
|
188 |
#, fuzzy
|
189 |
msgid "Output Options"
|
190 |
msgstr "Opţiuni de ieşire:"
|
191 |
|
192 |
+
#: admin.inc.php:278
|
193 |
msgid "Format to display the count in: "
|
194 |
msgstr "Format pentru a afişa numărul în: "
|
195 |
|
196 |
+
#: admin.inc.php:280
|
197 |
#, fuzzy
|
198 |
msgid ""
|
199 |
"Use <code>%totalcount%</code> to display the total count, <code>%dailycount"
|
205 |
"% dailycount %</code> pentru a afişa numărul de zi cu zi. exemplu afişează "
|
206 |
"opţiunile implicite <code>(vizitat 123 ori, 23 vizite azi)</code>"
|
207 |
|
208 |
+
#: admin.inc.php:283
|
209 |
msgid "Title of popular posts: "
|
210 |
msgstr "Titlul de posturi populare: "
|
211 |
|
212 |
+
#: admin.inc.php:286
|
213 |
msgid "Title of daily popular posts: "
|
214 |
msgstr "Titlul de zi cu zi de posturi populare: "
|
215 |
|
216 |
+
#: admin.inc.php:289
|
217 |
msgid "When there are no posts, what should be shown?"
|
218 |
msgstr ""
|
219 |
|
220 |
+
#: admin.inc.php:293
|
221 |
msgid "Blank Output"
|
222 |
msgstr ""
|
223 |
|
224 |
+
#: admin.inc.php:297
|
225 |
msgid "Display:"
|
226 |
msgstr ""
|
227 |
|
228 |
+
#: admin.inc.php:301
|
229 |
msgid "Show post excerpt in list?"
|
230 |
msgstr "Afişează post extras din lista?"
|
231 |
|
232 |
+
#: admin.inc.php:304
|
233 |
msgid "Length of excerpt (in words): "
|
234 |
msgstr "Lungimea extras (în cuvinte): "
|
235 |
|
236 |
+
#: admin.inc.php:307
|
237 |
+
#, fuzzy
|
238 |
+
msgid "Show post author in list?"
|
239 |
+
msgstr "Afişează post extras din lista?"
|
240 |
+
|
241 |
+
#: admin.inc.php:310
|
242 |
#, fuzzy
|
243 |
msgid "Show post date in list?"
|
244 |
msgstr "Afişează post extras din lista?"
|
245 |
|
246 |
+
#: admin.inc.php:313
|
247 |
msgid "Limit post title length (in characters)"
|
248 |
msgstr ""
|
249 |
|
250 |
+
#: admin.inc.php:316
|
251 |
msgid "Display number of page views in popular lists?"
|
252 |
msgstr "Afişează numărul de vizualizări de pagini în listele popular?"
|
253 |
|
254 |
+
#: admin.inc.php:319
|
255 |
msgid "Open links in new window"
|
256 |
msgstr ""
|
257 |
|
258 |
+
#: admin.inc.php:322
|
259 |
msgid "Add nofollow attribute to links in the list"
|
260 |
msgstr ""
|
261 |
|
262 |
+
#: admin.inc.php:325
|
263 |
msgid "Exclude display of related posts on these posts / pages"
|
264 |
msgstr ""
|
265 |
|
266 |
+
#: admin.inc.php:328
|
267 |
msgid "Enter comma separated list of IDs. e.g. 188,320,500"
|
268 |
msgstr ""
|
269 |
|
270 |
+
#: admin.inc.php:331
|
271 |
msgid "Customize the output:"
|
272 |
msgstr "Personaliza ieşire:"
|
273 |
|
274 |
+
#: admin.inc.php:333
|
275 |
msgid "HTML to display before the list of posts: "
|
276 |
msgstr "HTML pentru a afişa înainte de lista de posturi: "
|
277 |
|
278 |
+
#: admin.inc.php:336
|
279 |
msgid "HTML to display before each list item: "
|
280 |
msgstr "HTML pentru a afişa înainte de fiecare element din listă: "
|
281 |
|
282 |
+
#: admin.inc.php:339
|
283 |
msgid "HTML to display after each list item: "
|
284 |
msgstr "HTML pentru a afişa după fiecare element din listă: "
|
285 |
|
286 |
+
#: admin.inc.php:342
|
287 |
msgid "HTML to display after the list of posts: "
|
288 |
msgstr "HTML pentru a afişa după lista de posturi: "
|
289 |
|
290 |
+
#: admin.inc.php:345
|
291 |
msgid "Post thumbnail options:"
|
292 |
msgstr "Post Opţiuni pictograme:"
|
293 |
|
294 |
+
#: admin.inc.php:347
|
295 |
msgid "Location of post thumbnail:"
|
296 |
msgstr ""
|
297 |
|
298 |
+
#: admin.inc.php:351
|
299 |
msgid "Display thumbnails inline with posts, before title"
|
300 |
msgstr "Afişare miniaturi inline cu posturi, înainte de titlu"
|
301 |
|
302 |
+
#: admin.inc.php:355
|
303 |
msgid "Display thumbnails inline with posts, after title"
|
304 |
msgstr "Afişare miniaturi inline cu posturi, după titlul"
|
305 |
|
306 |
+
#: admin.inc.php:359
|
307 |
msgid "Display only thumbnails, no text"
|
308 |
msgstr "Afişa numai miniaturi, nici un text"
|
309 |
|
310 |
+
#: admin.inc.php:363
|
311 |
msgid "Do not display thumbnails, only text."
|
312 |
msgstr "Nu se afişează miniaturi, numai textul."
|
313 |
|
314 |
+
#: admin.inc.php:367
|
315 |
msgid "Width of the thumbnail: "
|
316 |
msgstr ""
|
317 |
|
318 |
+
#: admin.inc.php:370
|
319 |
msgid "Height of the thumbnail: "
|
320 |
msgstr ""
|
321 |
|
322 |
+
#: admin.inc.php:373
|
323 |
msgid "Style attributes / Width and Height HTML attributes:"
|
324 |
msgstr ""
|
325 |
|
326 |
+
#: admin.inc.php:377
|
327 |
msgid ""
|
328 |
"Style attributes are used for width and height. <code>style=\"max-width:"
|
329 |
msgstr ""
|
330 |
|
331 |
+
#: admin.inc.php:381
|
332 |
msgid ""
|
333 |
"HTML width and height attributes are used for width and height. <code>width="
|
334 |
"\""
|
335 |
msgstr ""
|
336 |
|
337 |
+
#: admin.inc.php:385
|
338 |
msgid "Use timthumb to generate thumbnails? "
|
339 |
msgstr ""
|
340 |
|
341 |
+
#: admin.inc.php:386
|
342 |
msgid ""
|
343 |
"If checked, <a href=\"http://www.binarymoon.co.uk/projects/timthumb/"
|
344 |
"\">timthumb</a> will be used to generate thumbnails"
|
345 |
msgstr ""
|
346 |
|
347 |
+
#: admin.inc.php:388
|
348 |
#, fuzzy
|
349 |
msgid "Post thumbnail meta field name: "
|
350 |
msgstr "Post Opţiuni pictograme:"
|
351 |
|
352 |
+
#: admin.inc.php:389
|
353 |
msgid ""
|
354 |
"The value of this field should contain the image source and is set in the "
|
355 |
"<em>Add New Post</em> screen"
|
356 |
msgstr ""
|
357 |
|
358 |
+
#: admin.inc.php:391
|
359 |
#, fuzzy
|
360 |
msgid ""
|
361 |
"If the postmeta is not set, then should the plugin extract the first image "
|
366 |
"dumneavoastră dacă prima imagine în legate de posturi este mare în mărime "
|
367 |
"fişier"
|
368 |
|
369 |
+
#: admin.inc.php:392
|
370 |
#, fuzzy
|
371 |
msgid ""
|
372 |
"This could slow down the loading of your page if the first image in the "
|
377 |
"dumneavoastră dacă prima imagine în legate de posturi este mare în mărime "
|
378 |
"fişier"
|
379 |
|
380 |
+
#: admin.inc.php:394
|
381 |
msgid "Use default thumbnail? "
|
382 |
msgstr ""
|
383 |
|
384 |
+
#: admin.inc.php:395
|
385 |
msgid ""
|
386 |
"If checked, when no thumbnail is found, show a default one from the URL "
|
387 |
"below. If not checked and no thumbnail is found, no image will be shown."
|
390 |
"la URL-ul de mai jos. În cazul în care nu a verificat şi este găsit nici un "
|
391 |
"thumbnail, imaginea nu va fi indicat."
|
392 |
|
393 |
+
#: admin.inc.php:397
|
394 |
msgid "Default thumbnail: "
|
395 |
msgstr ""
|
396 |
|
397 |
+
#: admin.inc.php:398
|
398 |
msgid ""
|
399 |
"The plugin will first check if the post contains a thumbnail. If it doesn't "
|
400 |
"then it will check the meta field. If this is not available, then it will "
|
401 |
"show the default image as specified above"
|
402 |
msgstr ""
|
403 |
|
404 |
+
#: admin.inc.php:404
|
405 |
msgid "Custom Styles"
|
406 |
msgstr ""
|
407 |
|
408 |
+
#: admin.inc.php:407
|
409 |
msgid "Custom CSS to add to header:"
|
410 |
msgstr ""
|
411 |
|
412 |
+
#: admin.inc.php:410
|
413 |
msgid ""
|
414 |
"Do not include <code>style</code> tags. Check out the <a href=\"http://"
|
415 |
"wordpress.org/extend/plugins/top-10/faq/\" target=\"_blank\">FAQ</a> for "
|
416 |
"available CSS classes to style."
|
417 |
msgstr ""
|
418 |
|
419 |
+
#: admin.inc.php:417
|
420 |
msgid "Maintenance"
|
421 |
msgstr ""
|
422 |
|
423 |
+
#: admin.inc.php:421
|
424 |
msgid ""
|
425 |
"Over time the Daily Top 10 database grows in size, which reduces the "
|
426 |
"performance of the plugin. Cleaning the database at regular intervals could "
|
427 |
"improve performance, especially on high traffic blogs."
|
428 |
msgstr ""
|
429 |
|
430 |
+
#: admin.inc.php:422
|
431 |
msgid ""
|
432 |
"Note: When scheduled maintenance is enabled, WordPress will run the cron job "
|
433 |
"everytime the job is rescheduled (i.e. you change the settings below). This "
|
434 |
"causes the daily posts table to reset."
|
435 |
msgstr ""
|
436 |
|
437 |
+
#: admin.inc.php:425
|
438 |
msgid "Enable scheduled maintenance of daily tables:"
|
439 |
msgstr ""
|
440 |
|
441 |
+
#: admin.inc.php:429
|
442 |
msgid "Time to run maintenance"
|
443 |
msgstr ""
|
444 |
|
445 |
+
#: admin.inc.php:432
|
446 |
msgid "How often should the maintenance be run:"
|
447 |
msgstr ""
|
448 |
|
449 |
+
#: admin.inc.php:436
|
450 |
msgid "Daily"
|
451 |
msgstr ""
|
452 |
|
453 |
+
#: admin.inc.php:440
|
454 |
msgid "Weekly"
|
455 |
msgstr ""
|
456 |
|
457 |
+
#: admin.inc.php:444
|
458 |
msgid "Fortnightly"
|
459 |
msgstr ""
|
460 |
|
461 |
+
#: admin.inc.php:448
|
462 |
msgid "Monthly"
|
463 |
msgstr ""
|
464 |
|
465 |
+
#: admin.inc.php:457
|
466 |
msgid "The cron job has been scheduled. Maintenance will run "
|
467 |
msgstr ""
|
468 |
|
469 |
+
#: admin.inc.php:462
|
470 |
msgid "The cron job is missing. Please resave this page to add the job"
|
471 |
msgstr ""
|
472 |
|
473 |
+
#: admin.inc.php:467
|
474 |
msgid "Maintenance is turned off"
|
475 |
msgstr ""
|
476 |
|
477 |
+
#: admin.inc.php:475
|
478 |
#, fuzzy
|
479 |
msgid "Save Options"
|
480 |
msgstr "Opţiuni:"
|
481 |
|
482 |
+
#: admin.inc.php:476
|
483 |
#, fuzzy
|
484 |
msgid "Default Options"
|
485 |
msgstr "Opţiuni de ieşire:"
|
486 |
|
487 |
+
#: admin.inc.php:476
|
488 |
msgid "Do you want to set options to Default?"
|
489 |
msgstr "Doriţi să setaţi opţiunile la valorile implicite?"
|
490 |
|
491 |
+
#: admin.inc.php:480
|
492 |
msgid "Reset count"
|
493 |
msgstr "Reiniţializare count"
|
494 |
|
495 |
+
#: admin.inc.php:483
|
496 |
msgid ""
|
497 |
"This cannot be reversed. Make sure that your database has been backed up "
|
498 |
"before proceeding"
|
500 |
"Acest lucru poate fi inversat. Asiguraţi-vă că baza de date a fost sprijinit "
|
501 |
"înainte de a continua"
|
502 |
|
503 |
+
#: admin.inc.php:486
|
504 |
#, fuzzy
|
505 |
msgid "Reset Popular Posts"
|
506 |
msgstr "Posturi populare"
|
507 |
|
508 |
+
#: admin.inc.php:486
|
509 |
msgid "Are you sure you want to reset the popular posts?"
|
510 |
msgstr "Sigur reiniţializaţi posturi populare?"
|
511 |
|
512 |
+
#: admin.inc.php:487
|
513 |
#, fuzzy
|
514 |
msgid "Reset Daily Popular Posts"
|
515 |
msgstr "Posturi populare de zi cu zi"
|
516 |
|
517 |
+
#: admin.inc.php:487
|
518 |
msgid "Are you sure you want to reset the daily popular posts?"
|
519 |
msgstr "Sigur reiniţializaţi posturi populare zilnic?"
|
520 |
|
521 |
+
#: admin.inc.php:488
|
522 |
msgid "Clear duplicates"
|
523 |
msgstr ""
|
524 |
|
525 |
+
#: admin.inc.php:488
|
526 |
msgid "This will delete the duplicate entries in the tables. Proceed?"
|
527 |
msgstr "Aceasta va şterge intrările dublate în tabele. Continuaţi?"
|
528 |
|
529 |
+
#: admin.inc.php:531 admin.inc.php:906 top-10.php:476
|
530 |
msgid "Popular Posts"
|
531 |
msgstr "Posturi populare"
|
532 |
|
533 |
+
#: admin.inc.php:531 admin.inc.php:618
|
534 |
msgid "Daily Popular Posts"
|
535 |
msgstr "Posturi populare de zi cu zi"
|
536 |
|
537 |
+
#: admin.inc.php:559
|
538 |
msgid "Support the development"
|
539 |
msgstr "Sprijinirea dezvoltării"
|
540 |
|
541 |
+
#: admin.inc.php:567
|
542 |
msgid "Enter amount in USD: "
|
543 |
msgstr "Introduceţi valoarea în USD: "
|
544 |
|
545 |
+
#: admin.inc.php:571
|
546 |
msgid "Send your donation to the author of"
|
547 |
msgstr "Trimite donatie autorului"
|
548 |
|
549 |
+
#: admin.inc.php:577
|
550 |
msgid "Follow us"
|
551 |
msgstr ""
|
552 |
|
553 |
+
#: admin.inc.php:583
|
554 |
#, fuzzy
|
555 |
msgid "Quick Links"
|
556 |
msgstr "Legături rapide pentru"
|
557 |
|
558 |
+
#: admin.inc.php:585
|
559 |
#, fuzzy
|
560 |
msgid "Top 10 plugin page"
|
561 |
msgstr "plug-in pagina"
|
562 |
|
563 |
+
#: admin.inc.php:586
|
564 |
msgid "Other plugins"
|
565 |
msgstr "Alte plugin-uri"
|
566 |
|
567 |
+
#: admin.inc.php:587
|
568 |
msgid "Ajay's blog"
|
569 |
msgstr "Ajay's blog"
|
570 |
|
571 |
+
#: admin.inc.php:588 top-10.php:1123
|
572 |
msgid "Support"
|
573 |
msgstr "Suport"
|
574 |
|
575 |
+
#: admin.inc.php:592
|
576 |
msgid "Recent developments"
|
577 |
msgstr "Evoluţiile recente"
|
578 |
|
579 |
+
#: admin.inc.php:609 admin.inc.php:612
|
580 |
#, fuzzy
|
581 |
msgid "Top 10 Settings"
|
582 |
msgstr "Setări"
|
583 |
|
584 |
+
#: admin.inc.php:609
|
585 |
msgid "Top 10"
|
586 |
msgstr "Top 10"
|
587 |
|
588 |
+
#: admin.inc.php:615
|
589 |
#, fuzzy
|
590 |
msgid "Overall Popular Posts"
|
591 |
msgstr "Vedere de ansamblu posturi populare"
|
592 |
|
593 |
+
#: admin.inc.php:786
|
594 |
msgid "Results"
|
595 |
msgstr "Rezultatele"
|
596 |
|
597 |
+
#: admin.inc.php:788 admin.inc.php:794
|
598 |
msgid "of"
|
599 |
msgstr "de"
|
600 |
|
601 |
+
#: admin.inc.php:792
|
602 |
msgid "Page"
|
603 |
msgstr "Pagină"
|
604 |
|
605 |
+
#: admin.inc.php:806
|
606 |
msgid "View Daily Popular Posts"
|
607 |
msgstr "Vizualizare zi posturi populare"
|
608 |
|
609 |
+
#: admin.inc.php:809 admin.inc.php:822
|
610 |
msgid "Results per-page:"
|
611 |
msgstr "Rezultate pe pagină:"
|
612 |
|
613 |
+
#: admin.inc.php:819
|
614 |
msgid "View Overall Popular Posts"
|
615 |
msgstr "Vedere de ansamblu posturi populare"
|
616 |
|
617 |
+
#: admin.inc.php:848
|
618 |
msgid "Previous"
|
619 |
msgstr "Anterioară"
|
620 |
|
621 |
+
#: admin.inc.php:866
|
622 |
msgid "Next"
|
623 |
msgstr "Următorul"
|
624 |
|
625 |
+
#: admin.inc.php:907
|
626 |
msgid "Daily Popular"
|
627 |
msgstr "Daily populare"
|
628 |
|
629 |
+
#: admin.inc.php:923
|
630 |
+
#, fuzzy
|
631 |
+
msgid "Total Views"
|
632 |
+
msgstr "Total / astăzi lui vizitări"
|
633 |
+
|
634 |
+
#: admin.inc.php:924
|
635 |
+
#, fuzzy
|
636 |
+
msgid "Today's Views"
|
637 |
msgstr "Total / astăzi lui vizitări"
|
638 |
|
639 |
+
#: top-10.php:393
|
640 |
+
msgid " Posted by "
|
641 |
+
msgstr ""
|
642 |
+
|
643 |
+
#: top-10.php:475
|
644 |
msgid "Display the posts popular this week"
|
645 |
msgstr "Afişa posturi populare în această săptămână"
|
646 |
|
647 |
+
#: top-10.php:493
|
648 |
msgid "Title"
|
649 |
msgstr ""
|
650 |
|
651 |
+
#: top-10.php:498
|
652 |
msgid "No. of posts"
|
653 |
msgstr ""
|
654 |
|
655 |
+
#: top-10.php:503
|
656 |
msgid "Overall"
|
657 |
msgstr ""
|
658 |
|
659 |
+
#: top-10.php:504
|
660 |
msgid "Custom time period (Enter below)"
|
661 |
msgstr ""
|
662 |
|
663 |
+
#: top-10.php:509
|
664 |
msgid "Range in number of days (applies only to custom option above)"
|
665 |
msgstr ""
|
666 |
|
667 |
+
#: top-10.php:514
|
668 |
+
#, fuzzy
|
669 |
+
msgid " Show excerpt?"
|
670 |
+
msgstr "Afişează post extras din lista?"
|
671 |
+
|
672 |
+
#: top-10.php:519
|
673 |
+
msgid " Show author?"
|
674 |
+
msgstr ""
|
675 |
+
|
676 |
+
#: top-10.php:524
|
677 |
+
#, fuzzy
|
678 |
+
msgid " Show date?"
|
679 |
+
msgstr "Afişează post extras din lista?"
|
680 |
+
|
681 |
+
#: top-10.php:528
|
682 |
#, fuzzy
|
683 |
msgid "Thumbnail options"
|
684 |
msgstr "Post Opţiuni pictograme:"
|
685 |
|
686 |
+
#: top-10.php:530
|
687 |
#, fuzzy
|
688 |
msgid "Thumbnails inline, before title"
|
689 |
msgstr "Afişare miniaturi inline cu posturi, înainte de titlu"
|
690 |
|
691 |
+
#: top-10.php:531
|
692 |
#, fuzzy
|
693 |
msgid "Thumbnails inline, after title"
|
694 |
msgstr "Afişare miniaturi inline cu posturi, după titlul"
|
695 |
|
696 |
+
#: top-10.php:532
|
697 |
#, fuzzy
|
698 |
msgid "Only thumbnails, no text"
|
699 |
msgstr "Afişa numai miniaturi, nici un text"
|
700 |
|
701 |
+
#: top-10.php:533
|
702 |
#, fuzzy
|
703 |
msgid "No thumbnails, only text."
|
704 |
msgstr "Nu se afişează miniaturi, numai textul."
|
705 |
|
706 |
+
#: top-10.php:538
|
707 |
#, fuzzy
|
708 |
+
msgid "Thumbnail height"
|
709 |
+
msgstr "Post Opţiuni pictograme:"
|
710 |
+
|
711 |
+
#: top-10.php:543
|
712 |
+
#, fuzzy
|
713 |
+
msgid "Thumbnail width"
|
714 |
+
msgstr "Post Opţiuni pictograme:"
|
715 |
|
716 |
+
#: top-10.php:646
|
717 |
msgid "<h3>Popular Posts</h3>"
|
718 |
msgstr "<h3>Posturi populare</h3>"
|
719 |
|
720 |
+
#: top-10.php:647
|
721 |
msgid "<h3>Daily Popular</h3>"
|
722 |
msgstr "<h3>Daily populare</h3>"
|
723 |
|
724 |
+
#: top-10.php:648
|
725 |
#, fuzzy
|
726 |
msgid "No top posts yet"
|
727 |
msgstr "Top 10 populare posturi Resetare"
|
728 |
|
729 |
+
#: top-10.php:1089
|
730 |
msgid "Once Weekly"
|
731 |
msgstr ""
|
732 |
|
733 |
+
#: top-10.php:1090
|
734 |
msgid "Once Fortnightly"
|
735 |
msgstr ""
|
736 |
|
737 |
+
#: top-10.php:1091
|
738 |
msgid "Once Monthly"
|
739 |
msgstr ""
|
740 |
|
741 |
+
#: top-10.php:1111
|
742 |
msgid "Settings"
|
743 |
msgstr "Setări"
|
744 |
|
745 |
+
#: top-10.php:1124
|
746 |
msgid "Donate"
|
747 |
msgstr "Dona"
|
748 |
|
languages/tptn-ru_RU.mo
CHANGED
Binary file
|
languages/tptn-ru_RU.po
CHANGED
@@ -2,7 +2,7 @@ msgid ""
|
|
2 |
msgstr ""
|
3 |
"Project-Id-Version: Топ 10\n"
|
4 |
"Report-Msgid-Bugs-To: \n"
|
5 |
-
"POT-Creation-Date: 2013-
|
6 |
"PO-Revision-Date: \n"
|
7 |
"Last-Translator: Ajay D'Souza <me@ajaydsouza.com>\n"
|
8 |
"Language-Team: Elvis (fweb.org.ru) <kopper@rkmail.ru>\n"
|
@@ -15,166 +15,167 @@ msgstr ""
|
|
15 |
"X-Generator: Poedit 1.5.7\n"
|
16 |
"X-Poedit-SearchPath-0: .\n"
|
17 |
|
18 |
-
#: admin.inc.php:
|
19 |
msgid "Scheduled maintenance enabled / modified"
|
20 |
msgstr ""
|
21 |
|
22 |
-
#: admin.inc.php:
|
23 |
msgid "Scheduled maintenance disabled"
|
24 |
msgstr ""
|
25 |
|
26 |
-
#: admin.inc.php:
|
27 |
msgid "Options saved successfully."
|
28 |
msgstr "Настройки сохранены."
|
29 |
|
30 |
-
#: admin.inc.php:
|
31 |
msgid "Options set to Default."
|
32 |
msgstr "Настройки сброшены."
|
33 |
|
34 |
-
#: admin.inc.php:
|
35 |
msgid "Top 10 popular posts reset"
|
36 |
msgstr "Сбросить статистику популярных записей"
|
37 |
|
38 |
-
#: admin.inc.php:
|
39 |
msgid "Top 10 daily popular posts reset"
|
40 |
msgstr "Сбросить статистику популярных записей за сегодня"
|
41 |
|
42 |
-
#: admin.inc.php:
|
43 |
msgid "Duplicate rows cleaned from tables"
|
44 |
msgstr ""
|
45 |
|
46 |
-
#: admin.inc.php:
|
47 |
msgid "General options"
|
48 |
msgstr ""
|
49 |
|
50 |
-
#: admin.inc.php:
|
51 |
msgid "Enable Overall stats"
|
52 |
msgstr ""
|
53 |
|
54 |
-
#: admin.inc.php:
|
55 |
msgid "Enable Daily stats"
|
56 |
msgstr ""
|
57 |
|
58 |
-
#: admin.inc.php:
|
59 |
msgid "W3 Total Cache fix:"
|
60 |
msgstr ""
|
61 |
|
62 |
-
#: admin.inc.php:
|
63 |
msgid ""
|
64 |
"This will try to prevent W3 Total Cache from caching the addcount script of "
|
65 |
"the plugin. Try toggling this option in case you find that our posts are not "
|
66 |
"tracked."
|
67 |
msgstr ""
|
68 |
|
69 |
-
#: admin.inc.php:
|
70 |
msgid "Number of popular posts to display: "
|
71 |
msgstr "Количество Популярных записей в списке:"
|
72 |
|
73 |
-
#: admin.inc.php:
|
74 |
msgid "Daily Popular should contain views of how many days? "
|
75 |
msgstr ""
|
76 |
"За сколько дней считать просмотры для списка Популярных сегодня записей?"
|
77 |
|
78 |
-
#: admin.inc.php:
|
79 |
msgid "Post types to include in results (including custom post types)"
|
80 |
msgstr ""
|
81 |
|
82 |
-
#: admin.inc.php:
|
83 |
msgid "List of post or page IDs to exclude from the results: "
|
84 |
msgstr ""
|
85 |
|
86 |
-
#: admin.inc.php:
|
87 |
msgid "Exclude Categories: "
|
88 |
msgstr "Исключить рубрики:"
|
89 |
|
90 |
-
#: admin.inc.php:
|
91 |
msgid ""
|
92 |
"Comma separated list of category slugs. The field above has an autocomplete "
|
93 |
"so simply start typing in the starting letters and it will prompt you with "
|
94 |
"options"
|
95 |
msgstr ""
|
96 |
|
97 |
-
#: admin.inc.php:
|
98 |
#, fuzzy
|
99 |
msgid "Display number of views on:"
|
100 |
msgstr "Показывать количество просмотров записи в ее \"теле\"?"
|
101 |
|
102 |
-
#: admin.inc.php:
|
103 |
msgid "Posts"
|
104 |
msgstr ""
|
105 |
|
106 |
-
#: admin.inc.php:
|
107 |
#, fuzzy
|
108 |
msgid "Pages"
|
109 |
msgstr "Страница"
|
110 |
|
111 |
-
#: admin.inc.php:
|
112 |
msgid "Home page"
|
113 |
msgstr ""
|
114 |
|
115 |
-
#: admin.inc.php:
|
116 |
msgid "Feeds"
|
117 |
msgstr ""
|
118 |
|
119 |
-
#: admin.inc.php:
|
120 |
msgid "Category archives"
|
121 |
msgstr ""
|
122 |
|
123 |
-
#: admin.inc.php:
|
124 |
msgid "Tag archives"
|
125 |
msgstr ""
|
126 |
|
127 |
-
#: admin.inc.php:
|
128 |
msgid "Other archives"
|
129 |
msgstr ""
|
130 |
|
131 |
-
#: admin.inc.php:
|
132 |
msgid ""
|
133 |
"If you choose to disable this, please add <code><?php if(function_exists"
|
134 |
"('echo_ald_tptn')) echo_ald_tptn(); ?></code> to your template file where "
|
135 |
"you want it displayed"
|
136 |
msgstr ""
|
137 |
|
138 |
-
#: admin.inc.php:
|
139 |
msgid "Always display latest post count"
|
140 |
msgstr ""
|
141 |
|
142 |
-
#: admin.inc.php:
|
143 |
msgid ""
|
144 |
"This option uses JavaScript and will increase your page load time. Turn this "
|
145 |
"off if you are not using caching plugins or are OK with displaying older "
|
146 |
-
"cached counts"
|
|
|
147 |
msgstr ""
|
148 |
|
149 |
-
#: admin.inc.php:
|
150 |
msgid "Always display latest post count in the daily lists"
|
151 |
msgstr ""
|
152 |
|
153 |
-
#: admin.inc.php:
|
154 |
#, fuzzy
|
155 |
msgid "This option uses JavaScript and will increase your page load time"
|
156 |
msgstr ""
|
157 |
"Сделать список Популярных записей динамичным? Опция использует JavaScript , "
|
158 |
"и это может увеличить время загрузки страниц"
|
159 |
|
160 |
-
#: admin.inc.php:
|
161 |
msgid "Track visits of authors on their own posts?"
|
162 |
msgstr "Учитывать просмотры записей, сделанные их же авторами?"
|
163 |
|
164 |
-
#: admin.inc.php:
|
165 |
#, fuzzy
|
166 |
msgid "Track visits of admins?"
|
167 |
msgstr "Учитывать просмотры записей, сделанные их же авторами?"
|
168 |
|
169 |
-
#: admin.inc.php:
|
170 |
msgid "Display page views on Posts > All Posts in Admin"
|
171 |
msgstr ""
|
172 |
|
173 |
-
#: admin.inc.php:
|
174 |
msgid "Link to Top 10 plugin page"
|
175 |
msgstr ""
|
176 |
|
177 |
-
#: admin.inc.php:
|
178 |
#, fuzzy
|
179 |
msgid ""
|
180 |
"A link to the plugin is added as an extra list item to the list of popular "
|
@@ -183,18 +184,18 @@ msgstr ""
|
|
183 |
"Оставить ссылку на плагин под списками Популярных записей? Автор плагина был "
|
184 |
"бы очень благодарен Вам, если Вы ее все же оставите!"
|
185 |
|
186 |
-
#: admin.inc.php:
|
187 |
#, fuzzy
|
188 |
msgid "Output Options"
|
189 |
msgstr "Настройки плагина:"
|
190 |
|
191 |
-
#: admin.inc.php:
|
192 |
msgid "Format to display the count in: "
|
193 |
msgstr ""
|
194 |
"В поле ниже вы можете настроить формат отображения количества просмотров за "
|
195 |
"день, за все время для записей/страниц:"
|
196 |
|
197 |
-
#: admin.inc.php:
|
198 |
#, fuzzy
|
199 |
msgid ""
|
200 |
"Use <code>%totalcount%</code> to display the total count, <code>%dailycount"
|
@@ -206,153 +207,158 @@ msgstr ""
|
|
206 |
"а <code>%dailycount%</code> - просмотры за сутки. Например: <code>(Запись "
|
207 |
"просмотрена 123 раза, сегодня просмотров было 23)</code>."
|
208 |
|
209 |
-
#: admin.inc.php:
|
210 |
msgid "Title of popular posts: "
|
211 |
msgstr "Заголовок списка Популярных записей:"
|
212 |
|
213 |
-
#: admin.inc.php:
|
214 |
msgid "Title of daily popular posts: "
|
215 |
msgstr "Заголовок списка Популярных сегодня записей:"
|
216 |
|
217 |
-
#: admin.inc.php:
|
218 |
msgid "When there are no posts, what should be shown?"
|
219 |
msgstr ""
|
220 |
|
221 |
-
#: admin.inc.php:
|
222 |
msgid "Blank Output"
|
223 |
msgstr ""
|
224 |
|
225 |
-
#: admin.inc.php:
|
226 |
msgid "Display:"
|
227 |
msgstr ""
|
228 |
|
229 |
-
#: admin.inc.php:
|
230 |
msgid "Show post excerpt in list?"
|
231 |
msgstr "Показывать текст записи в списке?"
|
232 |
|
233 |
-
#: admin.inc.php:
|
234 |
msgid "Length of excerpt (in words): "
|
235 |
msgstr "Длина выводимого текста (в словах):"
|
236 |
|
237 |
-
#: admin.inc.php:
|
|
|
|
|
|
|
|
|
|
|
238 |
#, fuzzy
|
239 |
msgid "Show post date in list?"
|
240 |
msgstr "Показывать текст записи в списке?"
|
241 |
|
242 |
-
#: admin.inc.php:
|
243 |
msgid "Limit post title length (in characters)"
|
244 |
msgstr ""
|
245 |
|
246 |
-
#: admin.inc.php:
|
247 |
msgid "Display number of page views in popular lists?"
|
248 |
msgstr ""
|
249 |
"Показывать количество просмотров записей/страниц в списке Популярных записей?"
|
250 |
|
251 |
-
#: admin.inc.php:
|
252 |
msgid "Open links in new window"
|
253 |
msgstr ""
|
254 |
|
255 |
-
#: admin.inc.php:
|
256 |
msgid "Add nofollow attribute to links in the list"
|
257 |
msgstr ""
|
258 |
|
259 |
-
#: admin.inc.php:
|
260 |
msgid "Exclude display of related posts on these posts / pages"
|
261 |
msgstr ""
|
262 |
|
263 |
-
#: admin.inc.php:
|
264 |
msgid "Enter comma separated list of IDs. e.g. 188,320,500"
|
265 |
msgstr ""
|
266 |
|
267 |
-
#: admin.inc.php:
|
268 |
msgid "Customize the output:"
|
269 |
msgstr "Настройки оформления списка:"
|
270 |
|
271 |
-
#: admin.inc.php:
|
272 |
msgid "HTML to display before the list of posts: "
|
273 |
msgstr "HTML-тег, используемый перед списком:"
|
274 |
|
275 |
-
#: admin.inc.php:
|
276 |
msgid "HTML to display before each list item: "
|
277 |
msgstr "HTML-тег, используемый перед каждым пунктом в списке:"
|
278 |
|
279 |
-
#: admin.inc.php:
|
280 |
msgid "HTML to display after each list item: "
|
281 |
msgstr "HTML-тег, используемый после каждого пункта в списке:"
|
282 |
|
283 |
-
#: admin.inc.php:
|
284 |
msgid "HTML to display after the list of posts: "
|
285 |
msgstr "HTML-тег, используемый после списка:"
|
286 |
|
287 |
-
#: admin.inc.php:
|
288 |
msgid "Post thumbnail options:"
|
289 |
msgstr "Настройки превью к записям:"
|
290 |
|
291 |
-
#: admin.inc.php:
|
292 |
msgid "Location of post thumbnail:"
|
293 |
msgstr ""
|
294 |
|
295 |
-
#: admin.inc.php:
|
296 |
msgid "Display thumbnails inline with posts, before title"
|
297 |
msgstr "Отображать превью к записи сразу перед заголовком"
|
298 |
|
299 |
-
#: admin.inc.php:
|
300 |
msgid "Display thumbnails inline with posts, after title"
|
301 |
msgstr "Отображать превью к записи сразу после заголовка"
|
302 |
|
303 |
-
#: admin.inc.php:
|
304 |
msgid "Display only thumbnails, no text"
|
305 |
msgstr "Отображать только превью, без текста"
|
306 |
|
307 |
-
#: admin.inc.php:
|
308 |
msgid "Do not display thumbnails, only text."
|
309 |
msgstr "Отображать только текст, без превью"
|
310 |
|
311 |
-
#: admin.inc.php:
|
312 |
msgid "Width of the thumbnail: "
|
313 |
msgstr ""
|
314 |
|
315 |
-
#: admin.inc.php:
|
316 |
msgid "Height of the thumbnail: "
|
317 |
msgstr ""
|
318 |
|
319 |
-
#: admin.inc.php:
|
320 |
msgid "Style attributes / Width and Height HTML attributes:"
|
321 |
msgstr ""
|
322 |
|
323 |
-
#: admin.inc.php:
|
324 |
msgid ""
|
325 |
"Style attributes are used for width and height. <code>style=\"max-width:"
|
326 |
msgstr ""
|
327 |
|
328 |
-
#: admin.inc.php:
|
329 |
msgid ""
|
330 |
"HTML width and height attributes are used for width and height. <code>width="
|
331 |
"\""
|
332 |
msgstr ""
|
333 |
|
334 |
-
#: admin.inc.php:
|
335 |
msgid "Use timthumb to generate thumbnails? "
|
336 |
msgstr ""
|
337 |
|
338 |
-
#: admin.inc.php:
|
339 |
msgid ""
|
340 |
"If checked, <a href=\"http://www.binarymoon.co.uk/projects/timthumb/"
|
341 |
"\">timthumb</a> will be used to generate thumbnails"
|
342 |
msgstr ""
|
343 |
|
344 |
-
#: admin.inc.php:
|
345 |
#, fuzzy
|
346 |
msgid "Post thumbnail meta field name: "
|
347 |
msgstr "Настройки превью к записям:"
|
348 |
|
349 |
-
#: admin.inc.php:
|
350 |
msgid ""
|
351 |
"The value of this field should contain the image source and is set in the "
|
352 |
"<em>Add New Post</em> screen"
|
353 |
msgstr ""
|
354 |
|
355 |
-
#: admin.inc.php:
|
356 |
#, fuzzy
|
357 |
msgid ""
|
358 |
"If the postmeta is not set, then should the plugin extract the first image "
|
@@ -362,7 +368,7 @@ msgstr ""
|
|
362 |
"изображение из записи. Это может слегка увеличить загрузку в первый раз, так "
|
363 |
"как будет создаваться уменьшенная копия изображения"
|
364 |
|
365 |
-
#: admin.inc.php:
|
366 |
#, fuzzy
|
367 |
msgid ""
|
368 |
"This could slow down the loading of your page if the first image in the "
|
@@ -372,11 +378,11 @@ msgstr ""
|
|
372 |
"изображение из записи. Это может слегка увеличить загрузку в первый раз, так "
|
373 |
"как будет создаваться уменьшенная копия изображения"
|
374 |
|
375 |
-
#: admin.inc.php:
|
376 |
msgid "Use default thumbnail? "
|
377 |
msgstr ""
|
378 |
|
379 |
-
#: admin.inc.php:
|
380 |
msgid ""
|
381 |
"If checked, when no thumbnail is found, show a default one from the URL "
|
382 |
"below. If not checked and no thumbnail is found, no image will be shown."
|
@@ -385,11 +391,11 @@ msgstr ""
|
|
385 |
"добавлено стандартное изображение. Если превью задано к записи - будет "
|
386 |
"отображаться только оно."
|
387 |
|
388 |
-
#: admin.inc.php:
|
389 |
msgid "Default thumbnail: "
|
390 |
msgstr ""
|
391 |
|
392 |
-
#: admin.inc.php:
|
393 |
#, fuzzy
|
394 |
msgid ""
|
395 |
"The plugin will first check if the post contains a thumbnail. If it doesn't "
|
@@ -400,98 +406,98 @@ msgstr ""
|
|
400 |
"заданному ранее произвольному мета-полю). Если же превью нет - будет "
|
401 |
"выводиться картинка по-умолчанию:"
|
402 |
|
403 |
-
#: admin.inc.php:
|
404 |
msgid "Custom Styles"
|
405 |
msgstr ""
|
406 |
|
407 |
-
#: admin.inc.php:
|
408 |
msgid "Custom CSS to add to header:"
|
409 |
msgstr ""
|
410 |
|
411 |
-
#: admin.inc.php:
|
412 |
msgid ""
|
413 |
"Do not include <code>style</code> tags. Check out the <a href=\"http://"
|
414 |
"wordpress.org/extend/plugins/top-10/faq/\" target=\"_blank\">FAQ</a> for "
|
415 |
"available CSS classes to style."
|
416 |
msgstr ""
|
417 |
|
418 |
-
#: admin.inc.php:
|
419 |
msgid "Maintenance"
|
420 |
msgstr ""
|
421 |
|
422 |
-
#: admin.inc.php:
|
423 |
msgid ""
|
424 |
"Over time the Daily Top 10 database grows in size, which reduces the "
|
425 |
"performance of the plugin. Cleaning the database at regular intervals could "
|
426 |
"improve performance, especially on high traffic blogs."
|
427 |
msgstr ""
|
428 |
|
429 |
-
#: admin.inc.php:
|
430 |
msgid ""
|
431 |
"Note: When scheduled maintenance is enabled, WordPress will run the cron job "
|
432 |
"everytime the job is rescheduled (i.e. you change the settings below). This "
|
433 |
"causes the daily posts table to reset."
|
434 |
msgstr ""
|
435 |
|
436 |
-
#: admin.inc.php:
|
437 |
msgid "Enable scheduled maintenance of daily tables:"
|
438 |
msgstr ""
|
439 |
|
440 |
-
#: admin.inc.php:
|
441 |
msgid "Time to run maintenance"
|
442 |
msgstr ""
|
443 |
|
444 |
-
#: admin.inc.php:
|
445 |
msgid "How often should the maintenance be run:"
|
446 |
msgstr ""
|
447 |
|
448 |
-
#: admin.inc.php:
|
449 |
msgid "Daily"
|
450 |
msgstr ""
|
451 |
|
452 |
-
#: admin.inc.php:
|
453 |
msgid "Weekly"
|
454 |
msgstr ""
|
455 |
|
456 |
-
#: admin.inc.php:
|
457 |
msgid "Fortnightly"
|
458 |
msgstr ""
|
459 |
|
460 |
-
#: admin.inc.php:
|
461 |
msgid "Monthly"
|
462 |
msgstr ""
|
463 |
|
464 |
-
#: admin.inc.php:
|
465 |
msgid "The cron job has been scheduled. Maintenance will run "
|
466 |
msgstr ""
|
467 |
|
468 |
-
#: admin.inc.php:
|
469 |
msgid "The cron job is missing. Please resave this page to add the job"
|
470 |
msgstr ""
|
471 |
|
472 |
-
#: admin.inc.php:
|
473 |
msgid "Maintenance is turned off"
|
474 |
msgstr ""
|
475 |
|
476 |
-
#: admin.inc.php:
|
477 |
#, fuzzy
|
478 |
msgid "Save Options"
|
479 |
msgstr "Настройки плагина:"
|
480 |
|
481 |
-
#: admin.inc.php:
|
482 |
#, fuzzy
|
483 |
msgid "Default Options"
|
484 |
msgstr "Настройки плагина:"
|
485 |
|
486 |
-
#: admin.inc.php:
|
487 |
msgid "Do you want to set options to Default?"
|
488 |
msgstr "Сбросить настройки плагина?"
|
489 |
|
490 |
-
#: admin.inc.php:
|
491 |
msgid "Reset count"
|
492 |
msgstr "Сбросить статистику"
|
493 |
|
494 |
-
#: admin.inc.php:
|
495 |
msgid ""
|
496 |
"This cannot be reversed. Make sure that your database has been backed up "
|
497 |
"before proceeding"
|
@@ -499,222 +505,251 @@ msgstr ""
|
|
499 |
"Сброс статистики не может быть обращен. Перед тем, как сбрасывать все, "
|
500 |
"убедитесь, что у вас есть копия вашей базы данных!"
|
501 |
|
502 |
-
#: admin.inc.php:
|
503 |
#, fuzzy
|
504 |
msgid "Reset Popular Posts"
|
505 |
msgstr "Популярные записи"
|
506 |
|
507 |
-
#: admin.inc.php:
|
508 |
msgid "Are you sure you want to reset the popular posts?"
|
509 |
msgstr "Вы уверены, что хотите сбросить статистику для Популярных записей?"
|
510 |
|
511 |
-
#: admin.inc.php:
|
512 |
#, fuzzy
|
513 |
msgid "Reset Daily Popular Posts"
|
514 |
msgstr "Популярные сегодня записи"
|
515 |
|
516 |
-
#: admin.inc.php:
|
517 |
msgid "Are you sure you want to reset the daily popular posts?"
|
518 |
msgstr ""
|
519 |
"Вы уверены, что хотите сбросить статистику для Популярных сегодня записей?"
|
520 |
|
521 |
-
#: admin.inc.php:
|
522 |
msgid "Clear duplicates"
|
523 |
msgstr ""
|
524 |
|
525 |
-
#: admin.inc.php:
|
526 |
msgid "This will delete the duplicate entries in the tables. Proceed?"
|
527 |
msgstr ""
|
528 |
"Будет произведено удаление дублирующихся щаписей из статистики. Продолжить?"
|
529 |
|
530 |
-
#: admin.inc.php:
|
531 |
msgid "Popular Posts"
|
532 |
msgstr "Популярные записи"
|
533 |
|
534 |
-
#: admin.inc.php:
|
535 |
msgid "Daily Popular Posts"
|
536 |
msgstr "Популярные сегодня записи"
|
537 |
|
538 |
-
#: admin.inc.php:
|
539 |
msgid "Support the development"
|
540 |
msgstr "Поддержать автора плагина"
|
541 |
|
542 |
-
#: admin.inc.php:
|
543 |
msgid "Enter amount in USD: "
|
544 |
msgstr "Сколько вы готовы пожертвовать (в USD):"
|
545 |
|
546 |
-
#: admin.inc.php:
|
547 |
msgid "Send your donation to the author of"
|
548 |
msgstr "Отправьте пожертвование автору"
|
549 |
|
550 |
-
#: admin.inc.php:
|
551 |
msgid "Follow us"
|
552 |
msgstr ""
|
553 |
|
554 |
-
#: admin.inc.php:
|
555 |
#, fuzzy
|
556 |
msgid "Quick Links"
|
557 |
msgstr "Полезные ссылки"
|
558 |
|
559 |
-
#: admin.inc.php:
|
560 |
#, fuzzy
|
561 |
msgid "Top 10 plugin page"
|
562 |
msgstr "страница плагина"
|
563 |
|
564 |
-
#: admin.inc.php:
|
565 |
msgid "Other plugins"
|
566 |
msgstr "Другие плагины автора"
|
567 |
|
568 |
-
#: admin.inc.php:
|
569 |
msgid "Ajay's blog"
|
570 |
msgstr "Блог Ajay"
|
571 |
|
572 |
-
#: admin.inc.php:
|
573 |
msgid "Support"
|
574 |
msgstr "Поддержка (англ.)"
|
575 |
|
576 |
-
#: admin.inc.php:
|
577 |
msgid "Recent developments"
|
578 |
msgstr "Последние разработки"
|
579 |
|
580 |
-
#: admin.inc.php:
|
581 |
#, fuzzy
|
582 |
msgid "Top 10 Settings"
|
583 |
msgstr "Настроки плагина"
|
584 |
|
585 |
-
#: admin.inc.php:
|
586 |
msgid "Top 10"
|
587 |
msgstr "Топ 10 записей"
|
588 |
|
589 |
-
#: admin.inc.php:
|
590 |
#, fuzzy
|
591 |
msgid "Overall Popular Posts"
|
592 |
msgstr "Посмотреть все Популярные записи"
|
593 |
|
594 |
-
#: admin.inc.php:
|
595 |
msgid "Results"
|
596 |
msgstr "Результаты"
|
597 |
|
598 |
-
#: admin.inc.php:
|
599 |
msgid "of"
|
600 |
msgstr "из"
|
601 |
|
602 |
-
#: admin.inc.php:
|
603 |
msgid "Page"
|
604 |
msgstr "Страница"
|
605 |
|
606 |
-
#: admin.inc.php:
|
607 |
msgid "View Daily Popular Posts"
|
608 |
msgstr "Посмотреть все Популярные сегодня записи"
|
609 |
|
610 |
-
#: admin.inc.php:
|
611 |
msgid "Results per-page:"
|
612 |
msgstr "Результатов на страницу:"
|
613 |
|
614 |
-
#: admin.inc.php:
|
615 |
msgid "View Overall Popular Posts"
|
616 |
msgstr "Посмотреть все Популярные записи"
|
617 |
|
618 |
-
#: admin.inc.php:
|
619 |
msgid "Previous"
|
620 |
msgstr "Предыдущая страница"
|
621 |
|
622 |
-
#: admin.inc.php:
|
623 |
msgid "Next"
|
624 |
msgstr "Следующая страница"
|
625 |
|
626 |
-
#: admin.inc.php:
|
627 |
msgid "Daily Popular"
|
628 |
msgstr "Популярные сегодня записи"
|
629 |
|
630 |
-
#: admin.inc.php:
|
631 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
632 |
msgstr "Всего/Сегодня"
|
633 |
|
634 |
-
#: top-10.php:
|
|
|
|
|
|
|
|
|
635 |
msgid "Display the posts popular this week"
|
636 |
msgstr "Отображать списки популярных записей за неделю"
|
637 |
|
638 |
-
#: top-10.php:
|
639 |
msgid "Title"
|
640 |
msgstr ""
|
641 |
|
642 |
-
#: top-10.php:
|
643 |
msgid "No. of posts"
|
644 |
msgstr ""
|
645 |
|
646 |
-
#: top-10.php:
|
647 |
msgid "Overall"
|
648 |
msgstr ""
|
649 |
|
650 |
-
#: top-10.php:
|
651 |
msgid "Custom time period (Enter below)"
|
652 |
msgstr ""
|
653 |
|
654 |
-
#: top-10.php:
|
655 |
msgid "Range in number of days (applies only to custom option above)"
|
656 |
msgstr ""
|
657 |
|
658 |
-
#: top-10.php:
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
659 |
#, fuzzy
|
660 |
msgid "Thumbnail options"
|
661 |
msgstr "Настройки превью к записям:"
|
662 |
|
663 |
-
#: top-10.php:
|
664 |
#, fuzzy
|
665 |
msgid "Thumbnails inline, before title"
|
666 |
msgstr "Отображать превью к записи сразу перед заголовком"
|
667 |
|
668 |
-
#: top-10.php:
|
669 |
#, fuzzy
|
670 |
msgid "Thumbnails inline, after title"
|
671 |
msgstr "Отображать превью к записи сразу после заголовка"
|
672 |
|
673 |
-
#: top-10.php:
|
674 |
#, fuzzy
|
675 |
msgid "Only thumbnails, no text"
|
676 |
msgstr "Отображать только превью, без текста"
|
677 |
|
678 |
-
#: top-10.php:
|
679 |
#, fuzzy
|
680 |
msgid "No thumbnails, only text."
|
681 |
msgstr "Отображать только текст, без превью"
|
682 |
|
683 |
-
#: top-10.php:
|
684 |
#, fuzzy
|
685 |
-
msgid "
|
686 |
-
msgstr "
|
|
|
|
|
|
|
|
|
|
|
687 |
|
688 |
-
#: top-10.php:
|
689 |
msgid "<h3>Popular Posts</h3>"
|
690 |
msgstr "<h3>Популярные записи</h3>"
|
691 |
|
692 |
-
#: top-10.php:
|
693 |
msgid "<h3>Daily Popular</h3>"
|
694 |
msgstr "<h3>Популярные сегодня записи</h3>"
|
695 |
|
696 |
-
#: top-10.php:
|
697 |
#, fuzzy
|
698 |
msgid "No top posts yet"
|
699 |
msgstr "Сбросить статистику популярных записей"
|
700 |
|
701 |
-
#: top-10.php:
|
702 |
msgid "Once Weekly"
|
703 |
msgstr ""
|
704 |
|
705 |
-
#: top-10.php:
|
706 |
msgid "Once Fortnightly"
|
707 |
msgstr ""
|
708 |
|
709 |
-
#: top-10.php:
|
710 |
msgid "Once Monthly"
|
711 |
msgstr ""
|
712 |
|
713 |
-
#: top-10.php:
|
714 |
msgid "Settings"
|
715 |
msgstr "Настроки плагина"
|
716 |
|
717 |
-
#: top-10.php:
|
718 |
msgid "Donate"
|
719 |
msgstr "Сделать пожертвование"
|
720 |
|
2 |
msgstr ""
|
3 |
"Project-Id-Version: Топ 10\n"
|
4 |
"Report-Msgid-Bugs-To: \n"
|
5 |
+
"POT-Creation-Date: 2013-09-01 12:51-0000\n"
|
6 |
"PO-Revision-Date: \n"
|
7 |
"Last-Translator: Ajay D'Souza <me@ajaydsouza.com>\n"
|
8 |
"Language-Team: Elvis (fweb.org.ru) <kopper@rkmail.ru>\n"
|
15 |
"X-Generator: Poedit 1.5.7\n"
|
16 |
"X-Poedit-SearchPath-0: .\n"
|
17 |
|
18 |
+
#: admin.inc.php:103
|
19 |
msgid "Scheduled maintenance enabled / modified"
|
20 |
msgstr ""
|
21 |
|
22 |
+
#: admin.inc.php:107
|
23 |
msgid "Scheduled maintenance disabled"
|
24 |
msgstr ""
|
25 |
|
26 |
+
#: admin.inc.php:124
|
27 |
msgid "Options saved successfully."
|
28 |
msgstr "Настройки сохранены."
|
29 |
|
30 |
+
#: admin.inc.php:133
|
31 |
msgid "Options set to Default."
|
32 |
msgstr "Настройки сброшены."
|
33 |
|
34 |
+
#: admin.inc.php:139
|
35 |
msgid "Top 10 popular posts reset"
|
36 |
msgstr "Сбросить статистику популярных записей"
|
37 |
|
38 |
+
#: admin.inc.php:145
|
39 |
msgid "Top 10 daily popular posts reset"
|
40 |
msgstr "Сбросить статистику популярных записей за сегодня"
|
41 |
|
42 |
+
#: admin.inc.php:152
|
43 |
msgid "Duplicate rows cleaned from tables"
|
44 |
msgstr ""
|
45 |
|
46 |
+
#: admin.inc.php:173
|
47 |
msgid "General options"
|
48 |
msgstr ""
|
49 |
|
50 |
+
#: admin.inc.php:177
|
51 |
msgid "Enable Overall stats"
|
52 |
msgstr ""
|
53 |
|
54 |
+
#: admin.inc.php:182
|
55 |
msgid "Enable Daily stats"
|
56 |
msgstr ""
|
57 |
|
58 |
+
#: admin.inc.php:187
|
59 |
msgid "W3 Total Cache fix:"
|
60 |
msgstr ""
|
61 |
|
62 |
+
#: admin.inc.php:189
|
63 |
msgid ""
|
64 |
"This will try to prevent W3 Total Cache from caching the addcount script of "
|
65 |
"the plugin. Try toggling this option in case you find that our posts are not "
|
66 |
"tracked."
|
67 |
msgstr ""
|
68 |
|
69 |
+
#: admin.inc.php:193
|
70 |
msgid "Number of popular posts to display: "
|
71 |
msgstr "Количество Популярных записей в списке:"
|
72 |
|
73 |
+
#: admin.inc.php:197
|
74 |
msgid "Daily Popular should contain views of how many days? "
|
75 |
msgstr ""
|
76 |
"За сколько дней считать просмотры для списка Популярных сегодня записей?"
|
77 |
|
78 |
+
#: admin.inc.php:200
|
79 |
msgid "Post types to include in results (including custom post types)"
|
80 |
msgstr ""
|
81 |
|
82 |
+
#: admin.inc.php:211
|
83 |
msgid "List of post or page IDs to exclude from the results: "
|
84 |
msgstr ""
|
85 |
|
86 |
+
#: admin.inc.php:215
|
87 |
msgid "Exclude Categories: "
|
88 |
msgstr "Исключить рубрики:"
|
89 |
|
90 |
+
#: admin.inc.php:230
|
91 |
msgid ""
|
92 |
"Comma separated list of category slugs. The field above has an autocomplete "
|
93 |
"so simply start typing in the starting letters and it will prompt you with "
|
94 |
"options"
|
95 |
msgstr ""
|
96 |
|
97 |
+
#: admin.inc.php:235
|
98 |
#, fuzzy
|
99 |
msgid "Display number of views on:"
|
100 |
msgstr "Показывать количество просмотров записи в ее \"теле\"?"
|
101 |
|
102 |
+
#: admin.inc.php:237
|
103 |
msgid "Posts"
|
104 |
msgstr ""
|
105 |
|
106 |
+
#: admin.inc.php:238
|
107 |
#, fuzzy
|
108 |
msgid "Pages"
|
109 |
msgstr "Страница"
|
110 |
|
111 |
+
#: admin.inc.php:239
|
112 |
msgid "Home page"
|
113 |
msgstr ""
|
114 |
|
115 |
+
#: admin.inc.php:240
|
116 |
msgid "Feeds"
|
117 |
msgstr ""
|
118 |
|
119 |
+
#: admin.inc.php:241
|
120 |
msgid "Category archives"
|
121 |
msgstr ""
|
122 |
|
123 |
+
#: admin.inc.php:242
|
124 |
msgid "Tag archives"
|
125 |
msgstr ""
|
126 |
|
127 |
+
#: admin.inc.php:243
|
128 |
msgid "Other archives"
|
129 |
msgstr ""
|
130 |
|
131 |
+
#: admin.inc.php:244
|
132 |
msgid ""
|
133 |
"If you choose to disable this, please add <code><?php if(function_exists"
|
134 |
"('echo_ald_tptn')) echo_ald_tptn(); ?></code> to your template file where "
|
135 |
"you want it displayed"
|
136 |
msgstr ""
|
137 |
|
138 |
+
#: admin.inc.php:247
|
139 |
msgid "Always display latest post count"
|
140 |
msgstr ""
|
141 |
|
142 |
+
#: admin.inc.php:249
|
143 |
msgid ""
|
144 |
"This option uses JavaScript and will increase your page load time. Turn this "
|
145 |
"off if you are not using caching plugins or are OK with displaying older "
|
146 |
+
"cached counts. When you enable this option, the daily widget will not use "
|
147 |
+
"the options set there, but options will need to be set on this screen."
|
148 |
msgstr ""
|
149 |
|
150 |
+
#: admin.inc.php:252
|
151 |
msgid "Always display latest post count in the daily lists"
|
152 |
msgstr ""
|
153 |
|
154 |
+
#: admin.inc.php:254
|
155 |
#, fuzzy
|
156 |
msgid "This option uses JavaScript and will increase your page load time"
|
157 |
msgstr ""
|
158 |
"Сделать список Популярных записей динамичным? Опция использует JavaScript , "
|
159 |
"и это может увеличить время загрузки страниц"
|
160 |
|
161 |
+
#: admin.inc.php:257
|
162 |
msgid "Track visits of authors on their own posts?"
|
163 |
msgstr "Учитывать просмотры записей, сделанные их же авторами?"
|
164 |
|
165 |
+
#: admin.inc.php:260
|
166 |
#, fuzzy
|
167 |
msgid "Track visits of admins?"
|
168 |
msgstr "Учитывать просмотры записей, сделанные их же авторами?"
|
169 |
|
170 |
+
#: admin.inc.php:263
|
171 |
msgid "Display page views on Posts > All Posts in Admin"
|
172 |
msgstr ""
|
173 |
|
174 |
+
#: admin.inc.php:266
|
175 |
msgid "Link to Top 10 plugin page"
|
176 |
msgstr ""
|
177 |
|
178 |
+
#: admin.inc.php:268
|
179 |
#, fuzzy
|
180 |
msgid ""
|
181 |
"A link to the plugin is added as an extra list item to the list of popular "
|
184 |
"Оставить ссылку на плагин под списками Популярных записей? Автор плагина был "
|
185 |
"бы очень благодарен Вам, если Вы ее все же оставите!"
|
186 |
|
187 |
+
#: admin.inc.php:275
|
188 |
#, fuzzy
|
189 |
msgid "Output Options"
|
190 |
msgstr "Настройки плагина:"
|
191 |
|
192 |
+
#: admin.inc.php:278
|
193 |
msgid "Format to display the count in: "
|
194 |
msgstr ""
|
195 |
"В поле ниже вы можете настроить формат отображения количества просмотров за "
|
196 |
"день, за все время для записей/страниц:"
|
197 |
|
198 |
+
#: admin.inc.php:280
|
199 |
#, fuzzy
|
200 |
msgid ""
|
201 |
"Use <code>%totalcount%</code> to display the total count, <code>%dailycount"
|
207 |
"а <code>%dailycount%</code> - просмотры за сутки. Например: <code>(Запись "
|
208 |
"просмотрена 123 раза, сегодня просмотров было 23)</code>."
|
209 |
|
210 |
+
#: admin.inc.php:283
|
211 |
msgid "Title of popular posts: "
|
212 |
msgstr "Заголовок списка Популярных записей:"
|
213 |
|
214 |
+
#: admin.inc.php:286
|
215 |
msgid "Title of daily popular posts: "
|
216 |
msgstr "Заголовок списка Популярных сегодня записей:"
|
217 |
|
218 |
+
#: admin.inc.php:289
|
219 |
msgid "When there are no posts, what should be shown?"
|
220 |
msgstr ""
|
221 |
|
222 |
+
#: admin.inc.php:293
|
223 |
msgid "Blank Output"
|
224 |
msgstr ""
|
225 |
|
226 |
+
#: admin.inc.php:297
|
227 |
msgid "Display:"
|
228 |
msgstr ""
|
229 |
|
230 |
+
#: admin.inc.php:301
|
231 |
msgid "Show post excerpt in list?"
|
232 |
msgstr "Показывать текст записи в списке?"
|
233 |
|
234 |
+
#: admin.inc.php:304
|
235 |
msgid "Length of excerpt (in words): "
|
236 |
msgstr "Длина выводимого текста (в словах):"
|
237 |
|
238 |
+
#: admin.inc.php:307
|
239 |
+
#, fuzzy
|
240 |
+
msgid "Show post author in list?"
|
241 |
+
msgstr "Показывать текст записи в списке?"
|
242 |
+
|
243 |
+
#: admin.inc.php:310
|
244 |
#, fuzzy
|
245 |
msgid "Show post date in list?"
|
246 |
msgstr "Показывать текст записи в списке?"
|
247 |
|
248 |
+
#: admin.inc.php:313
|
249 |
msgid "Limit post title length (in characters)"
|
250 |
msgstr ""
|
251 |
|
252 |
+
#: admin.inc.php:316
|
253 |
msgid "Display number of page views in popular lists?"
|
254 |
msgstr ""
|
255 |
"Показывать количество просмотров записей/страниц в списке Популярных записей?"
|
256 |
|
257 |
+
#: admin.inc.php:319
|
258 |
msgid "Open links in new window"
|
259 |
msgstr ""
|
260 |
|
261 |
+
#: admin.inc.php:322
|
262 |
msgid "Add nofollow attribute to links in the list"
|
263 |
msgstr ""
|
264 |
|
265 |
+
#: admin.inc.php:325
|
266 |
msgid "Exclude display of related posts on these posts / pages"
|
267 |
msgstr ""
|
268 |
|
269 |
+
#: admin.inc.php:328
|
270 |
msgid "Enter comma separated list of IDs. e.g. 188,320,500"
|
271 |
msgstr ""
|
272 |
|
273 |
+
#: admin.inc.php:331
|
274 |
msgid "Customize the output:"
|
275 |
msgstr "Настройки оформления списка:"
|
276 |
|
277 |
+
#: admin.inc.php:333
|
278 |
msgid "HTML to display before the list of posts: "
|
279 |
msgstr "HTML-тег, используемый перед списком:"
|
280 |
|
281 |
+
#: admin.inc.php:336
|
282 |
msgid "HTML to display before each list item: "
|
283 |
msgstr "HTML-тег, используемый перед каждым пунктом в списке:"
|
284 |
|
285 |
+
#: admin.inc.php:339
|
286 |
msgid "HTML to display after each list item: "
|
287 |
msgstr "HTML-тег, используемый после каждого пункта в списке:"
|
288 |
|
289 |
+
#: admin.inc.php:342
|
290 |
msgid "HTML to display after the list of posts: "
|
291 |
msgstr "HTML-тег, используемый после списка:"
|
292 |
|
293 |
+
#: admin.inc.php:345
|
294 |
msgid "Post thumbnail options:"
|
295 |
msgstr "Настройки превью к записям:"
|
296 |
|
297 |
+
#: admin.inc.php:347
|
298 |
msgid "Location of post thumbnail:"
|
299 |
msgstr ""
|
300 |
|
301 |
+
#: admin.inc.php:351
|
302 |
msgid "Display thumbnails inline with posts, before title"
|
303 |
msgstr "Отображать превью к записи сразу перед заголовком"
|
304 |
|
305 |
+
#: admin.inc.php:355
|
306 |
msgid "Display thumbnails inline with posts, after title"
|
307 |
msgstr "Отображать превью к записи сразу после заголовка"
|
308 |
|
309 |
+
#: admin.inc.php:359
|
310 |
msgid "Display only thumbnails, no text"
|
311 |
msgstr "Отображать только превью, без текста"
|
312 |
|
313 |
+
#: admin.inc.php:363
|
314 |
msgid "Do not display thumbnails, only text."
|
315 |
msgstr "Отображать только текст, без превью"
|
316 |
|
317 |
+
#: admin.inc.php:367
|
318 |
msgid "Width of the thumbnail: "
|
319 |
msgstr ""
|
320 |
|
321 |
+
#: admin.inc.php:370
|
322 |
msgid "Height of the thumbnail: "
|
323 |
msgstr ""
|
324 |
|
325 |
+
#: admin.inc.php:373
|
326 |
msgid "Style attributes / Width and Height HTML attributes:"
|
327 |
msgstr ""
|
328 |
|
329 |
+
#: admin.inc.php:377
|
330 |
msgid ""
|
331 |
"Style attributes are used for width and height. <code>style=\"max-width:"
|
332 |
msgstr ""
|
333 |
|
334 |
+
#: admin.inc.php:381
|
335 |
msgid ""
|
336 |
"HTML width and height attributes are used for width and height. <code>width="
|
337 |
"\""
|
338 |
msgstr ""
|
339 |
|
340 |
+
#: admin.inc.php:385
|
341 |
msgid "Use timthumb to generate thumbnails? "
|
342 |
msgstr ""
|
343 |
|
344 |
+
#: admin.inc.php:386
|
345 |
msgid ""
|
346 |
"If checked, <a href=\"http://www.binarymoon.co.uk/projects/timthumb/"
|
347 |
"\">timthumb</a> will be used to generate thumbnails"
|
348 |
msgstr ""
|
349 |
|
350 |
+
#: admin.inc.php:388
|
351 |
#, fuzzy
|
352 |
msgid "Post thumbnail meta field name: "
|
353 |
msgstr "Настройки превью к записям:"
|
354 |
|
355 |
+
#: admin.inc.php:389
|
356 |
msgid ""
|
357 |
"The value of this field should contain the image source and is set in the "
|
358 |
"<em>Add New Post</em> screen"
|
359 |
msgstr ""
|
360 |
|
361 |
+
#: admin.inc.php:391
|
362 |
#, fuzzy
|
363 |
msgid ""
|
364 |
"If the postmeta is not set, then should the plugin extract the first image "
|
368 |
"изображение из записи. Это может слегка увеличить загрузку в первый раз, так "
|
369 |
"как будет создаваться уменьшенная копия изображения"
|
370 |
|
371 |
+
#: admin.inc.php:392
|
372 |
#, fuzzy
|
373 |
msgid ""
|
374 |
"This could slow down the loading of your page if the first image in the "
|
378 |
"изображение из записи. Это может слегка увеличить загрузку в первый раз, так "
|
379 |
"как будет создаваться уменьшенная копия изображения"
|
380 |
|
381 |
+
#: admin.inc.php:394
|
382 |
msgid "Use default thumbnail? "
|
383 |
msgstr ""
|
384 |
|
385 |
+
#: admin.inc.php:395
|
386 |
msgid ""
|
387 |
"If checked, when no thumbnail is found, show a default one from the URL "
|
388 |
"below. If not checked and no thumbnail is found, no image will be shown."
|
391 |
"добавлено стандартное изображение. Если превью задано к записи - будет "
|
392 |
"отображаться только оно."
|
393 |
|
394 |
+
#: admin.inc.php:397
|
395 |
msgid "Default thumbnail: "
|
396 |
msgstr ""
|
397 |
|
398 |
+
#: admin.inc.php:398
|
399 |
#, fuzzy
|
400 |
msgid ""
|
401 |
"The plugin will first check if the post contains a thumbnail. If it doesn't "
|
406 |
"заданному ранее произвольному мета-полю). Если же превью нет - будет "
|
407 |
"выводиться картинка по-умолчанию:"
|
408 |
|
409 |
+
#: admin.inc.php:404
|
410 |
msgid "Custom Styles"
|
411 |
msgstr ""
|
412 |
|
413 |
+
#: admin.inc.php:407
|
414 |
msgid "Custom CSS to add to header:"
|
415 |
msgstr ""
|
416 |
|
417 |
+
#: admin.inc.php:410
|
418 |
msgid ""
|
419 |
"Do not include <code>style</code> tags. Check out the <a href=\"http://"
|
420 |
"wordpress.org/extend/plugins/top-10/faq/\" target=\"_blank\">FAQ</a> for "
|
421 |
"available CSS classes to style."
|
422 |
msgstr ""
|
423 |
|
424 |
+
#: admin.inc.php:417
|
425 |
msgid "Maintenance"
|
426 |
msgstr ""
|
427 |
|
428 |
+
#: admin.inc.php:421
|
429 |
msgid ""
|
430 |
"Over time the Daily Top 10 database grows in size, which reduces the "
|
431 |
"performance of the plugin. Cleaning the database at regular intervals could "
|
432 |
"improve performance, especially on high traffic blogs."
|
433 |
msgstr ""
|
434 |
|
435 |
+
#: admin.inc.php:422
|
436 |
msgid ""
|
437 |
"Note: When scheduled maintenance is enabled, WordPress will run the cron job "
|
438 |
"everytime the job is rescheduled (i.e. you change the settings below). This "
|
439 |
"causes the daily posts table to reset."
|
440 |
msgstr ""
|
441 |
|
442 |
+
#: admin.inc.php:425
|
443 |
msgid "Enable scheduled maintenance of daily tables:"
|
444 |
msgstr ""
|
445 |
|
446 |
+
#: admin.inc.php:429
|
447 |
msgid "Time to run maintenance"
|
448 |
msgstr ""
|
449 |
|
450 |
+
#: admin.inc.php:432
|
451 |
msgid "How often should the maintenance be run:"
|
452 |
msgstr ""
|
453 |
|
454 |
+
#: admin.inc.php:436
|
455 |
msgid "Daily"
|
456 |
msgstr ""
|
457 |
|
458 |
+
#: admin.inc.php:440
|
459 |
msgid "Weekly"
|
460 |
msgstr ""
|
461 |
|
462 |
+
#: admin.inc.php:444
|
463 |
msgid "Fortnightly"
|
464 |
msgstr ""
|
465 |
|
466 |
+
#: admin.inc.php:448
|
467 |
msgid "Monthly"
|
468 |
msgstr ""
|
469 |
|
470 |
+
#: admin.inc.php:457
|
471 |
msgid "The cron job has been scheduled. Maintenance will run "
|
472 |
msgstr ""
|
473 |
|
474 |
+
#: admin.inc.php:462
|
475 |
msgid "The cron job is missing. Please resave this page to add the job"
|
476 |
msgstr ""
|
477 |
|
478 |
+
#: admin.inc.php:467
|
479 |
msgid "Maintenance is turned off"
|
480 |
msgstr ""
|
481 |
|
482 |
+
#: admin.inc.php:475
|
483 |
#, fuzzy
|
484 |
msgid "Save Options"
|
485 |
msgstr "Настройки плагина:"
|
486 |
|
487 |
+
#: admin.inc.php:476
|
488 |
#, fuzzy
|
489 |
msgid "Default Options"
|
490 |
msgstr "Настройки плагина:"
|
491 |
|
492 |
+
#: admin.inc.php:476
|
493 |
msgid "Do you want to set options to Default?"
|
494 |
msgstr "Сбросить настройки плагина?"
|
495 |
|
496 |
+
#: admin.inc.php:480
|
497 |
msgid "Reset count"
|
498 |
msgstr "Сбросить статистику"
|
499 |
|
500 |
+
#: admin.inc.php:483
|
501 |
msgid ""
|
502 |
"This cannot be reversed. Make sure that your database has been backed up "
|
503 |
"before proceeding"
|
505 |
"Сброс статистики не может быть обращен. Перед тем, как сбрасывать все, "
|
506 |
"убедитесь, что у вас есть копия вашей базы данных!"
|
507 |
|
508 |
+
#: admin.inc.php:486
|
509 |
#, fuzzy
|
510 |
msgid "Reset Popular Posts"
|
511 |
msgstr "Популярные записи"
|
512 |
|
513 |
+
#: admin.inc.php:486
|
514 |
msgid "Are you sure you want to reset the popular posts?"
|
515 |
msgstr "Вы уверены, что хотите сбросить статистику для Популярных записей?"
|
516 |
|
517 |
+
#: admin.inc.php:487
|
518 |
#, fuzzy
|
519 |
msgid "Reset Daily Popular Posts"
|
520 |
msgstr "Популярные сегодня записи"
|
521 |
|
522 |
+
#: admin.inc.php:487
|
523 |
msgid "Are you sure you want to reset the daily popular posts?"
|
524 |
msgstr ""
|
525 |
"Вы уверены, что хотите сбросить статистику для Популярных сегодня записей?"
|
526 |
|
527 |
+
#: admin.inc.php:488
|
528 |
msgid "Clear duplicates"
|
529 |
msgstr ""
|
530 |
|
531 |
+
#: admin.inc.php:488
|
532 |
msgid "This will delete the duplicate entries in the tables. Proceed?"
|
533 |
msgstr ""
|
534 |
"Будет произведено удаление дублирующихся щаписей из статистики. Продолжить?"
|
535 |
|
536 |
+
#: admin.inc.php:531 admin.inc.php:906 top-10.php:476
|
537 |
msgid "Popular Posts"
|
538 |
msgstr "Популярные записи"
|
539 |
|
540 |
+
#: admin.inc.php:531 admin.inc.php:618
|
541 |
msgid "Daily Popular Posts"
|
542 |
msgstr "Популярные сегодня записи"
|
543 |
|
544 |
+
#: admin.inc.php:559
|
545 |
msgid "Support the development"
|
546 |
msgstr "Поддержать автора плагина"
|
547 |
|
548 |
+
#: admin.inc.php:567
|
549 |
msgid "Enter amount in USD: "
|
550 |
msgstr "Сколько вы готовы пожертвовать (в USD):"
|
551 |
|
552 |
+
#: admin.inc.php:571
|
553 |
msgid "Send your donation to the author of"
|
554 |
msgstr "Отправьте пожертвование автору"
|
555 |
|
556 |
+
#: admin.inc.php:577
|
557 |
msgid "Follow us"
|
558 |
msgstr ""
|
559 |
|
560 |
+
#: admin.inc.php:583
|
561 |
#, fuzzy
|
562 |
msgid "Quick Links"
|
563 |
msgstr "Полезные ссылки"
|
564 |
|
565 |
+
#: admin.inc.php:585
|
566 |
#, fuzzy
|
567 |
msgid "Top 10 plugin page"
|
568 |
msgstr "страница плагина"
|
569 |
|
570 |
+
#: admin.inc.php:586
|
571 |
msgid "Other plugins"
|
572 |
msgstr "Другие плагины автора"
|
573 |
|
574 |
+
#: admin.inc.php:587
|
575 |
msgid "Ajay's blog"
|
576 |
msgstr "Блог Ajay"
|
577 |
|
578 |
+
#: admin.inc.php:588 top-10.php:1123
|
579 |
msgid "Support"
|
580 |
msgstr "Поддержка (англ.)"
|
581 |
|
582 |
+
#: admin.inc.php:592
|
583 |
msgid "Recent developments"
|
584 |
msgstr "Последние разработки"
|
585 |
|
586 |
+
#: admin.inc.php:609 admin.inc.php:612
|
587 |
#, fuzzy
|
588 |
msgid "Top 10 Settings"
|
589 |
msgstr "Настроки плагина"
|
590 |
|
591 |
+
#: admin.inc.php:609
|
592 |
msgid "Top 10"
|
593 |
msgstr "Топ 10 записей"
|
594 |
|
595 |
+
#: admin.inc.php:615
|
596 |
#, fuzzy
|
597 |
msgid "Overall Popular Posts"
|
598 |
msgstr "Посмотреть все Популярные записи"
|
599 |
|
600 |
+
#: admin.inc.php:786
|
601 |
msgid "Results"
|
602 |
msgstr "Результаты"
|
603 |
|
604 |
+
#: admin.inc.php:788 admin.inc.php:794
|
605 |
msgid "of"
|
606 |
msgstr "из"
|
607 |
|
608 |
+
#: admin.inc.php:792
|
609 |
msgid "Page"
|
610 |
msgstr "Страница"
|
611 |
|
612 |
+
#: admin.inc.php:806
|
613 |
msgid "View Daily Popular Posts"
|
614 |
msgstr "Посмотреть все Популярные сегодня записи"
|
615 |
|
616 |
+
#: admin.inc.php:809 admin.inc.php:822
|
617 |
msgid "Results per-page:"
|
618 |
msgstr "Результатов на страницу:"
|
619 |
|
620 |
+
#: admin.inc.php:819
|
621 |
msgid "View Overall Popular Posts"
|
622 |
msgstr "Посмотреть все Популярные записи"
|
623 |
|
624 |
+
#: admin.inc.php:848
|
625 |
msgid "Previous"
|
626 |
msgstr "Предыдущая страница"
|
627 |
|
628 |
+
#: admin.inc.php:866
|
629 |
msgid "Next"
|
630 |
msgstr "Следующая страница"
|
631 |
|
632 |
+
#: admin.inc.php:907
|
633 |
msgid "Daily Popular"
|
634 |
msgstr "Популярные сегодня записи"
|
635 |
|
636 |
+
#: admin.inc.php:923
|
637 |
+
#, fuzzy
|
638 |
+
msgid "Total Views"
|
639 |
+
msgstr "Всего/Сегодня"
|
640 |
+
|
641 |
+
#: admin.inc.php:924
|
642 |
+
#, fuzzy
|
643 |
+
msgid "Today's Views"
|
644 |
msgstr "Всего/Сегодня"
|
645 |
|
646 |
+
#: top-10.php:393
|
647 |
+
msgid " Posted by "
|
648 |
+
msgstr ""
|
649 |
+
|
650 |
+
#: top-10.php:475
|
651 |
msgid "Display the posts popular this week"
|
652 |
msgstr "Отображать списки популярных записей за неделю"
|
653 |
|
654 |
+
#: top-10.php:493
|
655 |
msgid "Title"
|
656 |
msgstr ""
|
657 |
|
658 |
+
#: top-10.php:498
|
659 |
msgid "No. of posts"
|
660 |
msgstr ""
|
661 |
|
662 |
+
#: top-10.php:503
|
663 |
msgid "Overall"
|
664 |
msgstr ""
|
665 |
|
666 |
+
#: top-10.php:504
|
667 |
msgid "Custom time period (Enter below)"
|
668 |
msgstr ""
|
669 |
|
670 |
+
#: top-10.php:509
|
671 |
msgid "Range in number of days (applies only to custom option above)"
|
672 |
msgstr ""
|
673 |
|
674 |
+
#: top-10.php:514
|
675 |
+
#, fuzzy
|
676 |
+
msgid " Show excerpt?"
|
677 |
+
msgstr "Показывать текст записи в списке?"
|
678 |
+
|
679 |
+
#: top-10.php:519
|
680 |
+
msgid " Show author?"
|
681 |
+
msgstr ""
|
682 |
+
|
683 |
+
#: top-10.php:524
|
684 |
+
#, fuzzy
|
685 |
+
msgid " Show date?"
|
686 |
+
msgstr "Показывать текст записи в списке?"
|
687 |
+
|
688 |
+
#: top-10.php:528
|
689 |
#, fuzzy
|
690 |
msgid "Thumbnail options"
|
691 |
msgstr "Настройки превью к записям:"
|
692 |
|
693 |
+
#: top-10.php:530
|
694 |
#, fuzzy
|
695 |
msgid "Thumbnails inline, before title"
|
696 |
msgstr "Отображать превью к записи сразу перед заголовком"
|
697 |
|
698 |
+
#: top-10.php:531
|
699 |
#, fuzzy
|
700 |
msgid "Thumbnails inline, after title"
|
701 |
msgstr "Отображать превью к записи сразу после заголовка"
|
702 |
|
703 |
+
#: top-10.php:532
|
704 |
#, fuzzy
|
705 |
msgid "Only thumbnails, no text"
|
706 |
msgstr "Отображать только превью, без текста"
|
707 |
|
708 |
+
#: top-10.php:533
|
709 |
#, fuzzy
|
710 |
msgid "No thumbnails, only text."
|
711 |
msgstr "Отображать только текст, без превью"
|
712 |
|
713 |
+
#: top-10.php:538
|
714 |
#, fuzzy
|
715 |
+
msgid "Thumbnail height"
|
716 |
+
msgstr "Настройки превью к записям:"
|
717 |
+
|
718 |
+
#: top-10.php:543
|
719 |
+
#, fuzzy
|
720 |
+
msgid "Thumbnail width"
|
721 |
+
msgstr "Настройки превью к записям:"
|
722 |
|
723 |
+
#: top-10.php:646
|
724 |
msgid "<h3>Popular Posts</h3>"
|
725 |
msgstr "<h3>Популярные записи</h3>"
|
726 |
|
727 |
+
#: top-10.php:647
|
728 |
msgid "<h3>Daily Popular</h3>"
|
729 |
msgstr "<h3>Популярные сегодня записи</h3>"
|
730 |
|
731 |
+
#: top-10.php:648
|
732 |
#, fuzzy
|
733 |
msgid "No top posts yet"
|
734 |
msgstr "Сбросить статистику популярных записей"
|
735 |
|
736 |
+
#: top-10.php:1089
|
737 |
msgid "Once Weekly"
|
738 |
msgstr ""
|
739 |
|
740 |
+
#: top-10.php:1090
|
741 |
msgid "Once Fortnightly"
|
742 |
msgstr ""
|
743 |
|
744 |
+
#: top-10.php:1091
|
745 |
msgid "Once Monthly"
|
746 |
msgstr ""
|
747 |
|
748 |
+
#: top-10.php:1111
|
749 |
msgid "Settings"
|
750 |
msgstr "Настроки плагина"
|
751 |
|
752 |
+
#: top-10.php:1124
|
753 |
msgid "Donate"
|
754 |
msgstr "Сделать пожертвование"
|
755 |
|
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: 2013-
|
6 |
"PO-Revision-Date: \n"
|
7 |
"Last-Translator: Ajay D'Souza <me@ajaydsouza.com>\n"
|
8 |
"Language-Team: Alyona Lompar <alyona.lompar@aol.com>\n"
|
@@ -15,166 +15,167 @@ msgstr ""
|
|
15 |
"X-Generator: Poedit 1.5.7\n"
|
16 |
"X-Poedit-SearchPath-0: .\n"
|
17 |
|
18 |
-
#: admin.inc.php:
|
19 |
msgid "Scheduled maintenance enabled / modified"
|
20 |
msgstr ""
|
21 |
|
22 |
-
#: admin.inc.php:
|
23 |
msgid "Scheduled maintenance disabled"
|
24 |
msgstr ""
|
25 |
|
26 |
-
#: admin.inc.php:
|
27 |
msgid "Options saved successfully."
|
28 |
msgstr "Установки збережені."
|
29 |
|
30 |
-
#: admin.inc.php:
|
31 |
msgid "Options set to Default."
|
32 |
msgstr "Установки скинуті."
|
33 |
|
34 |
-
#: admin.inc.php:
|
35 |
msgid "Top 10 popular posts reset"
|
36 |
msgstr "Скинути статистику найпопулярніших записів"
|
37 |
|
38 |
-
#: admin.inc.php:
|
39 |
msgid "Top 10 daily popular posts reset"
|
40 |
msgstr "Скинути статистику найпопулярніших записів за сьогодні"
|
41 |
|
42 |
-
#: admin.inc.php:
|
43 |
msgid "Duplicate rows cleaned from tables"
|
44 |
msgstr ""
|
45 |
|
46 |
-
#: admin.inc.php:
|
47 |
msgid "General options"
|
48 |
msgstr ""
|
49 |
|
50 |
-
#: admin.inc.php:
|
51 |
msgid "Enable Overall stats"
|
52 |
msgstr ""
|
53 |
|
54 |
-
#: admin.inc.php:
|
55 |
msgid "Enable Daily stats"
|
56 |
msgstr ""
|
57 |
|
58 |
-
#: admin.inc.php:
|
59 |
msgid "W3 Total Cache fix:"
|
60 |
msgstr ""
|
61 |
|
62 |
-
#: admin.inc.php:
|
63 |
msgid ""
|
64 |
"This will try to prevent W3 Total Cache from caching the addcount script of "
|
65 |
"the plugin. Try toggling this option in case you find that our posts are not "
|
66 |
"tracked."
|
67 |
msgstr ""
|
68 |
|
69 |
-
#: admin.inc.php:
|
70 |
msgid "Number of popular posts to display: "
|
71 |
msgstr "Кількість Популярних записів у списку:"
|
72 |
|
73 |
-
#: admin.inc.php:
|
74 |
msgid "Daily Popular should contain views of how many days? "
|
75 |
msgstr ""
|
76 |
"За скільки днів вважати перегляди для списку Популярних сьогодні записів?"
|
77 |
|
78 |
-
#: admin.inc.php:
|
79 |
msgid "Post types to include in results (including custom post types)"
|
80 |
msgstr ""
|
81 |
|
82 |
-
#: admin.inc.php:
|
83 |
msgid "List of post or page IDs to exclude from the results: "
|
84 |
msgstr ""
|
85 |
|
86 |
-
#: admin.inc.php:
|
87 |
msgid "Exclude Categories: "
|
88 |
msgstr "Виключити Категорії:"
|
89 |
|
90 |
-
#: admin.inc.php:
|
91 |
msgid ""
|
92 |
"Comma separated list of category slugs. The field above has an autocomplete "
|
93 |
"so simply start typing in the starting letters and it will prompt you with "
|
94 |
"options"
|
95 |
msgstr ""
|
96 |
|
97 |
-
#: admin.inc.php:
|
98 |
#, fuzzy
|
99 |
msgid "Display number of views on:"
|
100 |
msgstr "Показувати кількість переглядів запису?"
|
101 |
|
102 |
-
#: admin.inc.php:
|
103 |
msgid "Posts"
|
104 |
msgstr ""
|
105 |
|
106 |
-
#: admin.inc.php:
|
107 |
#, fuzzy
|
108 |
msgid "Pages"
|
109 |
msgstr "Сторінка"
|
110 |
|
111 |
-
#: admin.inc.php:
|
112 |
msgid "Home page"
|
113 |
msgstr ""
|
114 |
|
115 |
-
#: admin.inc.php:
|
116 |
msgid "Feeds"
|
117 |
msgstr ""
|
118 |
|
119 |
-
#: admin.inc.php:
|
120 |
msgid "Category archives"
|
121 |
msgstr ""
|
122 |
|
123 |
-
#: admin.inc.php:
|
124 |
msgid "Tag archives"
|
125 |
msgstr ""
|
126 |
|
127 |
-
#: admin.inc.php:
|
128 |
msgid "Other archives"
|
129 |
msgstr ""
|
130 |
|
131 |
-
#: admin.inc.php:
|
132 |
msgid ""
|
133 |
"If you choose to disable this, please add <code><?php if(function_exists"
|
134 |
"('echo_ald_tptn')) echo_ald_tptn(); ?></code> to your template file where "
|
135 |
"you want it displayed"
|
136 |
msgstr ""
|
137 |
|
138 |
-
#: admin.inc.php:
|
139 |
msgid "Always display latest post count"
|
140 |
msgstr ""
|
141 |
|
142 |
-
#: admin.inc.php:
|
143 |
msgid ""
|
144 |
"This option uses JavaScript and will increase your page load time. Turn this "
|
145 |
"off if you are not using caching plugins or are OK with displaying older "
|
146 |
-
"cached counts"
|
|
|
147 |
msgstr ""
|
148 |
|
149 |
-
#: admin.inc.php:
|
150 |
msgid "Always display latest post count in the daily lists"
|
151 |
msgstr ""
|
152 |
|
153 |
-
#: admin.inc.php:
|
154 |
#, fuzzy
|
155 |
msgid "This option uses JavaScript and will increase your page load time"
|
156 |
msgstr ""
|
157 |
"Зробити список Популярних записів динамічним? Опція використовує JavaScript, "
|
158 |
"і це може збільшити час завантаження сторінок"
|
159 |
|
160 |
-
#: admin.inc.php:
|
161 |
msgid "Track visits of authors on their own posts?"
|
162 |
msgstr "Враховувати перегляди записів, зроблені їхніми ж авторами?"
|
163 |
|
164 |
-
#: admin.inc.php:
|
165 |
#, fuzzy
|
166 |
msgid "Track visits of admins?"
|
167 |
msgstr "Враховувати перегляди записів, зроблені їхніми ж авторами?"
|
168 |
|
169 |
-
#: admin.inc.php:
|
170 |
msgid "Display page views on Posts > All Posts in Admin"
|
171 |
msgstr ""
|
172 |
|
173 |
-
#: admin.inc.php:
|
174 |
msgid "Link to Top 10 plugin page"
|
175 |
msgstr ""
|
176 |
|
177 |
-
#: admin.inc.php:
|
178 |
#, fuzzy
|
179 |
msgid ""
|
180 |
"A link to the plugin is added as an extra list item to the list of popular "
|
@@ -183,18 +184,18 @@ msgstr ""
|
|
183 |
"Залишити посилання на плагін під списками Популярних записів? Автор плагіна "
|
184 |
"був би дуже вдячний Вам, якщо Ви її все ж залишите!"
|
185 |
|
186 |
-
#: admin.inc.php:
|
187 |
#, fuzzy
|
188 |
msgid "Output Options"
|
189 |
msgstr "Установки плагіна:"
|
190 |
|
191 |
-
#: admin.inc.php:
|
192 |
msgid "Format to display the count in: "
|
193 |
msgstr ""
|
194 |
"У полі нижче ви можете налаштувати формат відображення кількості переглядів "
|
195 |
"за день, за весь час для записів/сторінок:"
|
196 |
|
197 |
-
#: admin.inc.php:
|
198 |
#, fuzzy
|
199 |
msgid ""
|
200 |
"Use <code>%totalcount%</code> to display the total count, <code>%dailycount"
|
@@ -206,155 +207,160 @@ msgstr ""
|
|
206 |
"переглядів, а <code>%dailycount%</code> - перегляди за добу. Наприклад: "
|
207 |
"<code>(Запис переглянуто 123 рази, сьогодні переглядів - 23)</code>."
|
208 |
|
209 |
-
#: admin.inc.php:
|
210 |
msgid "Title of popular posts: "
|
211 |
msgstr "Заголовок списку Популярних записів:"
|
212 |
|
213 |
-
#: admin.inc.php:
|
214 |
msgid "Title of daily popular posts: "
|
215 |
msgstr "Заголовок списку Популярних сьогодні записів:"
|
216 |
|
217 |
-
#: admin.inc.php:
|
218 |
msgid "When there are no posts, what should be shown?"
|
219 |
msgstr ""
|
220 |
|
221 |
-
#: admin.inc.php:
|
222 |
msgid "Blank Output"
|
223 |
msgstr ""
|
224 |
|
225 |
-
#: admin.inc.php:
|
226 |
msgid "Display:"
|
227 |
msgstr ""
|
228 |
|
229 |
-
#: admin.inc.php:
|
230 |
msgid "Show post excerpt in list?"
|
231 |
msgstr "Показувати текст запису в списку?"
|
232 |
|
233 |
-
#: admin.inc.php:
|
234 |
msgid "Length of excerpt (in words): "
|
235 |
msgstr "Довжина виведеного тексту (в словах):"
|
236 |
|
237 |
-
#: admin.inc.php:
|
|
|
|
|
|
|
|
|
|
|
238 |
#, fuzzy
|
239 |
msgid "Show post date in list?"
|
240 |
msgstr "Показувати текст запису в списку?"
|
241 |
|
242 |
-
#: admin.inc.php:
|
243 |
msgid "Limit post title length (in characters)"
|
244 |
msgstr ""
|
245 |
|
246 |
-
#: admin.inc.php:
|
247 |
msgid "Display number of page views in popular lists?"
|
248 |
msgstr ""
|
249 |
"Показувати кількість переглядів записів/сторінок в списку Популярних записів?"
|
250 |
|
251 |
-
#: admin.inc.php:
|
252 |
msgid "Open links in new window"
|
253 |
msgstr ""
|
254 |
|
255 |
-
#: admin.inc.php:
|
256 |
msgid "Add nofollow attribute to links in the list"
|
257 |
msgstr ""
|
258 |
|
259 |
-
#: admin.inc.php:
|
260 |
msgid "Exclude display of related posts on these posts / pages"
|
261 |
msgstr ""
|
262 |
|
263 |
-
#: admin.inc.php:
|
264 |
msgid "Enter comma separated list of IDs. e.g. 188,320,500"
|
265 |
msgstr ""
|
266 |
|
267 |
-
#: admin.inc.php:
|
268 |
msgid "Customize the output:"
|
269 |
msgstr "Установки оформлення списку:"
|
270 |
|
271 |
-
#: admin.inc.php:
|
272 |
msgid "HTML to display before the list of posts: "
|
273 |
msgstr "HTML-тег, який використовується перед списком:"
|
274 |
|
275 |
-
#: admin.inc.php:
|
276 |
msgid "HTML to display before each list item: "
|
277 |
msgstr "HTML-тег, який використовується перед кожним пунктом у списку:"
|
278 |
|
279 |
-
#: admin.inc.php:
|
280 |
msgid "HTML to display after each list item: "
|
281 |
msgstr "HTML-тег, який використовується після кожного пункту в списку:"
|
282 |
|
283 |
-
#: admin.inc.php:
|
284 |
msgid "HTML to display after the list of posts: "
|
285 |
msgstr "HTML-тег, який використовується після списку:"
|
286 |
|
287 |
-
#: admin.inc.php:
|
288 |
msgid "Post thumbnail options:"
|
289 |
msgstr "Установки превью до записів:"
|
290 |
|
291 |
-
#: admin.inc.php:
|
292 |
msgid "Location of post thumbnail:"
|
293 |
msgstr ""
|
294 |
|
295 |
-
#: admin.inc.php:
|
296 |
#, fuzzy
|
297 |
msgid "Display thumbnails inline with posts, before title"
|
298 |
msgstr "Відображати і превью, і текст"
|
299 |
|
300 |
-
#: admin.inc.php:
|
301 |
#, fuzzy
|
302 |
msgid "Display thumbnails inline with posts, after title"
|
303 |
msgstr "Відображати і превью, і текст"
|
304 |
|
305 |
-
#: admin.inc.php:
|
306 |
msgid "Display only thumbnails, no text"
|
307 |
msgstr "Показувати тільки превью, без тексту"
|
308 |
|
309 |
-
#: admin.inc.php:
|
310 |
msgid "Do not display thumbnails, only text."
|
311 |
msgstr "Показувати лише текст, без превью"
|
312 |
|
313 |
-
#: admin.inc.php:
|
314 |
msgid "Width of the thumbnail: "
|
315 |
msgstr ""
|
316 |
|
317 |
-
#: admin.inc.php:
|
318 |
msgid "Height of the thumbnail: "
|
319 |
msgstr ""
|
320 |
|
321 |
-
#: admin.inc.php:
|
322 |
msgid "Style attributes / Width and Height HTML attributes:"
|
323 |
msgstr ""
|
324 |
|
325 |
-
#: admin.inc.php:
|
326 |
msgid ""
|
327 |
"Style attributes are used for width and height. <code>style=\"max-width:"
|
328 |
msgstr ""
|
329 |
|
330 |
-
#: admin.inc.php:
|
331 |
msgid ""
|
332 |
"HTML width and height attributes are used for width and height. <code>width="
|
333 |
"\""
|
334 |
msgstr ""
|
335 |
|
336 |
-
#: admin.inc.php:
|
337 |
msgid "Use timthumb to generate thumbnails? "
|
338 |
msgstr ""
|
339 |
|
340 |
-
#: admin.inc.php:
|
341 |
msgid ""
|
342 |
"If checked, <a href=\"http://www.binarymoon.co.uk/projects/timthumb/"
|
343 |
"\">timthumb</a> will be used to generate thumbnails"
|
344 |
msgstr ""
|
345 |
|
346 |
-
#: admin.inc.php:
|
347 |
#, fuzzy
|
348 |
msgid "Post thumbnail meta field name: "
|
349 |
msgstr "Установки превью до записів:"
|
350 |
|
351 |
-
#: admin.inc.php:
|
352 |
msgid ""
|
353 |
"The value of this field should contain the image source and is set in the "
|
354 |
"<em>Add New Post</em> screen"
|
355 |
msgstr ""
|
356 |
|
357 |
-
#: admin.inc.php:
|
358 |
#, fuzzy
|
359 |
msgid ""
|
360 |
"If the postmeta is not set, then should the plugin extract the first image "
|
@@ -364,7 +370,7 @@ msgstr ""
|
|
364 |
"зображення із запису. Це може злегка збільшити завантаження в перший раз, "
|
365 |
"так як буде створюватися зменшена копія зображення"
|
366 |
|
367 |
-
#: admin.inc.php:
|
368 |
#, fuzzy
|
369 |
msgid ""
|
370 |
"This could slow down the loading of your page if the first image in the "
|
@@ -374,21 +380,21 @@ msgstr ""
|
|
374 |
"зображення із запису. Це може злегка збільшити завантаження в перший раз, "
|
375 |
"так як буде створюватися зменшена копія зображення"
|
376 |
|
377 |
-
#: admin.inc.php:
|
378 |
msgid "Use default thumbnail? "
|
379 |
msgstr ""
|
380 |
|
381 |
-
#: admin.inc.php:
|
382 |
msgid ""
|
383 |
"If checked, when no thumbnail is found, show a default one from the URL "
|
384 |
"below. If not checked and no thumbnail is found, no image will be shown."
|
385 |
msgstr ""
|
386 |
|
387 |
-
#: admin.inc.php:
|
388 |
msgid "Default thumbnail: "
|
389 |
msgstr ""
|
390 |
|
391 |
-
#: admin.inc.php:
|
392 |
#, fuzzy
|
393 |
msgid ""
|
394 |
"The plugin will first check if the post contains a thumbnail. If it doesn't "
|
@@ -399,98 +405,98 @@ msgstr ""
|
|
399 |
"заданому раніше мета-полю). Якщо ж превью нема - буде виводитися картинка за "
|
400 |
"замовчунням:"
|
401 |
|
402 |
-
#: admin.inc.php:
|
403 |
msgid "Custom Styles"
|
404 |
msgstr ""
|
405 |
|
406 |
-
#: admin.inc.php:
|
407 |
msgid "Custom CSS to add to header:"
|
408 |
msgstr ""
|
409 |
|
410 |
-
#: admin.inc.php:
|
411 |
msgid ""
|
412 |
"Do not include <code>style</code> tags. Check out the <a href=\"http://"
|
413 |
"wordpress.org/extend/plugins/top-10/faq/\" target=\"_blank\">FAQ</a> for "
|
414 |
"available CSS classes to style."
|
415 |
msgstr ""
|
416 |
|
417 |
-
#: admin.inc.php:
|
418 |
msgid "Maintenance"
|
419 |
msgstr ""
|
420 |
|
421 |
-
#: admin.inc.php:
|
422 |
msgid ""
|
423 |
"Over time the Daily Top 10 database grows in size, which reduces the "
|
424 |
"performance of the plugin. Cleaning the database at regular intervals could "
|
425 |
"improve performance, especially on high traffic blogs."
|
426 |
msgstr ""
|
427 |
|
428 |
-
#: admin.inc.php:
|
429 |
msgid ""
|
430 |
"Note: When scheduled maintenance is enabled, WordPress will run the cron job "
|
431 |
"everytime the job is rescheduled (i.e. you change the settings below). This "
|
432 |
"causes the daily posts table to reset."
|
433 |
msgstr ""
|
434 |
|
435 |
-
#: admin.inc.php:
|
436 |
msgid "Enable scheduled maintenance of daily tables:"
|
437 |
msgstr ""
|
438 |
|
439 |
-
#: admin.inc.php:
|
440 |
msgid "Time to run maintenance"
|
441 |
msgstr ""
|
442 |
|
443 |
-
#: admin.inc.php:
|
444 |
msgid "How often should the maintenance be run:"
|
445 |
msgstr ""
|
446 |
|
447 |
-
#: admin.inc.php:
|
448 |
msgid "Daily"
|
449 |
msgstr ""
|
450 |
|
451 |
-
#: admin.inc.php:
|
452 |
msgid "Weekly"
|
453 |
msgstr ""
|
454 |
|
455 |
-
#: admin.inc.php:
|
456 |
msgid "Fortnightly"
|
457 |
msgstr ""
|
458 |
|
459 |
-
#: admin.inc.php:
|
460 |
msgid "Monthly"
|
461 |
msgstr ""
|
462 |
|
463 |
-
#: admin.inc.php:
|
464 |
msgid "The cron job has been scheduled. Maintenance will run "
|
465 |
msgstr ""
|
466 |
|
467 |
-
#: admin.inc.php:
|
468 |
msgid "The cron job is missing. Please resave this page to add the job"
|
469 |
msgstr ""
|
470 |
|
471 |
-
#: admin.inc.php:
|
472 |
msgid "Maintenance is turned off"
|
473 |
msgstr ""
|
474 |
|
475 |
-
#: admin.inc.php:
|
476 |
#, fuzzy
|
477 |
msgid "Save Options"
|
478 |
msgstr "Установки плагіна:"
|
479 |
|
480 |
-
#: admin.inc.php:
|
481 |
#, fuzzy
|
482 |
msgid "Default Options"
|
483 |
msgstr "Установки плагіна:"
|
484 |
|
485 |
-
#: admin.inc.php:
|
486 |
msgid "Do you want to set options to Default?"
|
487 |
msgstr "Скинути налаштування плагіна?"
|
488 |
|
489 |
-
#: admin.inc.php:
|
490 |
msgid "Reset count"
|
491 |
msgstr "Скинути статистику"
|
492 |
|
493 |
-
#: admin.inc.php:
|
494 |
msgid ""
|
495 |
"This cannot be reversed. Make sure that your database has been backed up "
|
496 |
"before proceeding"
|
@@ -498,221 +504,250 @@ msgstr ""
|
|
498 |
"Скидання статистики не може бути обернена. Перед тим, як скидати все, "
|
499 |
"переконайтесь, що у вас є копія вашої бази даних!"
|
500 |
|
501 |
-
#: admin.inc.php:
|
502 |
#, fuzzy
|
503 |
msgid "Reset Popular Posts"
|
504 |
msgstr "Популярні записи"
|
505 |
|
506 |
-
#: admin.inc.php:
|
507 |
msgid "Are you sure you want to reset the popular posts?"
|
508 |
msgstr "Ви впевнені, що хочете скинути статистику для Популярних записів?"
|
509 |
|
510 |
-
#: admin.inc.php:
|
511 |
#, fuzzy
|
512 |
msgid "Reset Daily Popular Posts"
|
513 |
msgstr "Популярні сьогодні записи"
|
514 |
|
515 |
-
#: admin.inc.php:
|
516 |
msgid "Are you sure you want to reset the daily popular posts?"
|
517 |
msgstr ""
|
518 |
"Ви впевнені, що хочете скинути статистику для Популярних сьогодні записів?"
|
519 |
|
520 |
-
#: admin.inc.php:
|
521 |
msgid "Clear duplicates"
|
522 |
msgstr ""
|
523 |
|
524 |
-
#: admin.inc.php:
|
525 |
msgid "This will delete the duplicate entries in the tables. Proceed?"
|
526 |
msgstr "Буде проведено видалення дубльованих запісів з статистики. Продовжити?"
|
527 |
|
528 |
-
#: admin.inc.php:
|
529 |
msgid "Popular Posts"
|
530 |
msgstr "Популярні записи"
|
531 |
|
532 |
-
#: admin.inc.php:
|
533 |
msgid "Daily Popular Posts"
|
534 |
msgstr "Популярні сьогодні записи"
|
535 |
|
536 |
-
#: admin.inc.php:
|
537 |
msgid "Support the development"
|
538 |
msgstr "Підтримати автора плагіна"
|
539 |
|
540 |
-
#: admin.inc.php:
|
541 |
msgid "Enter amount in USD: "
|
542 |
msgstr "Скільки ви готові пожертвувати (в USD):"
|
543 |
|
544 |
-
#: admin.inc.php:
|
545 |
msgid "Send your donation to the author of"
|
546 |
msgstr "Відправте пожертву автору"
|
547 |
|
548 |
-
#: admin.inc.php:
|
549 |
msgid "Follow us"
|
550 |
msgstr ""
|
551 |
|
552 |
-
#: admin.inc.php:
|
553 |
#, fuzzy
|
554 |
msgid "Quick Links"
|
555 |
msgstr "Корисні посилання"
|
556 |
|
557 |
-
#: admin.inc.php:
|
558 |
#, fuzzy
|
559 |
msgid "Top 10 plugin page"
|
560 |
msgstr "Сторінка плагіна"
|
561 |
|
562 |
-
#: admin.inc.php:
|
563 |
msgid "Other plugins"
|
564 |
msgstr "Інші плагіни автора"
|
565 |
|
566 |
-
#: admin.inc.php:
|
567 |
msgid "Ajay's blog"
|
568 |
msgstr "Блог Ajay"
|
569 |
|
570 |
-
#: admin.inc.php:
|
571 |
msgid "Support"
|
572 |
msgstr "Підтримка (англ.)"
|
573 |
|
574 |
-
#: admin.inc.php:
|
575 |
msgid "Recent developments"
|
576 |
msgstr "Останні розробки"
|
577 |
|
578 |
-
#: admin.inc.php:
|
579 |
#, fuzzy
|
580 |
msgid "Top 10 Settings"
|
581 |
msgstr "Налаштування плагіна"
|
582 |
|
583 |
-
#: admin.inc.php:
|
584 |
msgid "Top 10"
|
585 |
msgstr "Топ 10 записів"
|
586 |
|
587 |
-
#: admin.inc.php:
|
588 |
#, fuzzy
|
589 |
msgid "Overall Popular Posts"
|
590 |
msgstr "Подивитися всі Популярні записи"
|
591 |
|
592 |
-
#: admin.inc.php:
|
593 |
msgid "Results"
|
594 |
msgstr "Результати"
|
595 |
|
596 |
-
#: admin.inc.php:
|
597 |
msgid "of"
|
598 |
msgstr "з"
|
599 |
|
600 |
-
#: admin.inc.php:
|
601 |
msgid "Page"
|
602 |
msgstr "Сторінка"
|
603 |
|
604 |
-
#: admin.inc.php:
|
605 |
msgid "View Daily Popular Posts"
|
606 |
msgstr "Подивитися всі Популярні сьогодні записи"
|
607 |
|
608 |
-
#: admin.inc.php:
|
609 |
msgid "Results per-page:"
|
610 |
msgstr "Результатів на сторінку:"
|
611 |
|
612 |
-
#: admin.inc.php:
|
613 |
msgid "View Overall Popular Posts"
|
614 |
msgstr "Подивитися всі Популярні записи"
|
615 |
|
616 |
-
#: admin.inc.php:
|
617 |
msgid "Previous"
|
618 |
msgstr "Попередня сторінка"
|
619 |
|
620 |
-
#: admin.inc.php:
|
621 |
msgid "Next"
|
622 |
msgstr "Наступна сторінка"
|
623 |
|
624 |
-
#: admin.inc.php:
|
625 |
msgid "Daily Popular"
|
626 |
msgstr "Популярні сьогодні записи"
|
627 |
|
628 |
-
#: admin.inc.php:
|
629 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
630 |
msgstr "Всього/Сьогодні"
|
631 |
|
632 |
-
#: top-10.php:
|
|
|
|
|
|
|
|
|
633 |
msgid "Display the posts popular this week"
|
634 |
msgstr ""
|
635 |
|
636 |
-
#: top-10.php:
|
637 |
msgid "Title"
|
638 |
msgstr ""
|
639 |
|
640 |
-
#: top-10.php:
|
641 |
msgid "No. of posts"
|
642 |
msgstr ""
|
643 |
|
644 |
-
#: top-10.php:
|
645 |
msgid "Overall"
|
646 |
msgstr ""
|
647 |
|
648 |
-
#: top-10.php:
|
649 |
msgid "Custom time period (Enter below)"
|
650 |
msgstr ""
|
651 |
|
652 |
-
#: top-10.php:
|
653 |
msgid "Range in number of days (applies only to custom option above)"
|
654 |
msgstr ""
|
655 |
|
656 |
-
#: top-10.php:
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
657 |
#, fuzzy
|
658 |
msgid "Thumbnail options"
|
659 |
msgstr "Установки превью до записів:"
|
660 |
|
661 |
-
#: top-10.php:
|
662 |
#, fuzzy
|
663 |
msgid "Thumbnails inline, before title"
|
664 |
msgstr "Відображати і превью, і текст"
|
665 |
|
666 |
-
#: top-10.php:
|
667 |
#, fuzzy
|
668 |
msgid "Thumbnails inline, after title"
|
669 |
msgstr "Відображати і превью, і текст"
|
670 |
|
671 |
-
#: top-10.php:
|
672 |
#, fuzzy
|
673 |
msgid "Only thumbnails, no text"
|
674 |
msgstr "Показувати тільки превью, без тексту"
|
675 |
|
676 |
-
#: top-10.php:
|
677 |
#, fuzzy
|
678 |
msgid "No thumbnails, only text."
|
679 |
msgstr "Показувати лише текст, без превью"
|
680 |
|
681 |
-
#: top-10.php:
|
682 |
#, fuzzy
|
683 |
-
msgid "
|
684 |
-
msgstr "
|
|
|
|
|
|
|
|
|
|
|
685 |
|
686 |
-
#: top-10.php:
|
687 |
msgid "<h3>Popular Posts</h3>"
|
688 |
msgstr "<h3>Популярні записи</h3>"
|
689 |
|
690 |
-
#: top-10.php:
|
691 |
msgid "<h3>Daily Popular</h3>"
|
692 |
msgstr "<h3>Популярні сьогодні записи</h3>"
|
693 |
|
694 |
-
#: top-10.php:
|
695 |
#, fuzzy
|
696 |
msgid "No top posts yet"
|
697 |
msgstr "Скинути статистику найпопулярніших записів"
|
698 |
|
699 |
-
#: top-10.php:
|
700 |
msgid "Once Weekly"
|
701 |
msgstr ""
|
702 |
|
703 |
-
#: top-10.php:
|
704 |
msgid "Once Fortnightly"
|
705 |
msgstr ""
|
706 |
|
707 |
-
#: top-10.php:
|
708 |
msgid "Once Monthly"
|
709 |
msgstr ""
|
710 |
|
711 |
-
#: top-10.php:
|
712 |
msgid "Settings"
|
713 |
msgstr "Налаштування плагіна"
|
714 |
|
715 |
-
#: top-10.php:
|
716 |
msgid "Donate"
|
717 |
msgstr "Зробити внесок"
|
718 |
|
2 |
msgstr ""
|
3 |
"Project-Id-Version: Top 10\n"
|
4 |
"Report-Msgid-Bugs-To: \n"
|
5 |
+
"POT-Creation-Date: 2013-09-01 12:51-0000\n"
|
6 |
"PO-Revision-Date: \n"
|
7 |
"Last-Translator: Ajay D'Souza <me@ajaydsouza.com>\n"
|
8 |
"Language-Team: Alyona Lompar <alyona.lompar@aol.com>\n"
|
15 |
"X-Generator: Poedit 1.5.7\n"
|
16 |
"X-Poedit-SearchPath-0: .\n"
|
17 |
|
18 |
+
#: admin.inc.php:103
|
19 |
msgid "Scheduled maintenance enabled / modified"
|
20 |
msgstr ""
|
21 |
|
22 |
+
#: admin.inc.php:107
|
23 |
msgid "Scheduled maintenance disabled"
|
24 |
msgstr ""
|
25 |
|
26 |
+
#: admin.inc.php:124
|
27 |
msgid "Options saved successfully."
|
28 |
msgstr "Установки збережені."
|
29 |
|
30 |
+
#: admin.inc.php:133
|
31 |
msgid "Options set to Default."
|
32 |
msgstr "Установки скинуті."
|
33 |
|
34 |
+
#: admin.inc.php:139
|
35 |
msgid "Top 10 popular posts reset"
|
36 |
msgstr "Скинути статистику найпопулярніших записів"
|
37 |
|
38 |
+
#: admin.inc.php:145
|
39 |
msgid "Top 10 daily popular posts reset"
|
40 |
msgstr "Скинути статистику найпопулярніших записів за сьогодні"
|
41 |
|
42 |
+
#: admin.inc.php:152
|
43 |
msgid "Duplicate rows cleaned from tables"
|
44 |
msgstr ""
|
45 |
|
46 |
+
#: admin.inc.php:173
|
47 |
msgid "General options"
|
48 |
msgstr ""
|
49 |
|
50 |
+
#: admin.inc.php:177
|
51 |
msgid "Enable Overall stats"
|
52 |
msgstr ""
|
53 |
|
54 |
+
#: admin.inc.php:182
|
55 |
msgid "Enable Daily stats"
|
56 |
msgstr ""
|
57 |
|
58 |
+
#: admin.inc.php:187
|
59 |
msgid "W3 Total Cache fix:"
|
60 |
msgstr ""
|
61 |
|
62 |
+
#: admin.inc.php:189
|
63 |
msgid ""
|
64 |
"This will try to prevent W3 Total Cache from caching the addcount script of "
|
65 |
"the plugin. Try toggling this option in case you find that our posts are not "
|
66 |
"tracked."
|
67 |
msgstr ""
|
68 |
|
69 |
+
#: admin.inc.php:193
|
70 |
msgid "Number of popular posts to display: "
|
71 |
msgstr "Кількість Популярних записів у списку:"
|
72 |
|
73 |
+
#: admin.inc.php:197
|
74 |
msgid "Daily Popular should contain views of how many days? "
|
75 |
msgstr ""
|
76 |
"За скільки днів вважати перегляди для списку Популярних сьогодні записів?"
|
77 |
|
78 |
+
#: admin.inc.php:200
|
79 |
msgid "Post types to include in results (including custom post types)"
|
80 |
msgstr ""
|
81 |
|
82 |
+
#: admin.inc.php:211
|
83 |
msgid "List of post or page IDs to exclude from the results: "
|
84 |
msgstr ""
|
85 |
|
86 |
+
#: admin.inc.php:215
|
87 |
msgid "Exclude Categories: "
|
88 |
msgstr "Виключити Категорії:"
|
89 |
|
90 |
+
#: admin.inc.php:230
|
91 |
msgid ""
|
92 |
"Comma separated list of category slugs. The field above has an autocomplete "
|
93 |
"so simply start typing in the starting letters and it will prompt you with "
|
94 |
"options"
|
95 |
msgstr ""
|
96 |
|
97 |
+
#: admin.inc.php:235
|
98 |
#, fuzzy
|
99 |
msgid "Display number of views on:"
|
100 |
msgstr "Показувати кількість переглядів запису?"
|
101 |
|
102 |
+
#: admin.inc.php:237
|
103 |
msgid "Posts"
|
104 |
msgstr ""
|
105 |
|
106 |
+
#: admin.inc.php:238
|
107 |
#, fuzzy
|
108 |
msgid "Pages"
|
109 |
msgstr "Сторінка"
|
110 |
|
111 |
+
#: admin.inc.php:239
|
112 |
msgid "Home page"
|
113 |
msgstr ""
|
114 |
|
115 |
+
#: admin.inc.php:240
|
116 |
msgid "Feeds"
|
117 |
msgstr ""
|
118 |
|
119 |
+
#: admin.inc.php:241
|
120 |
msgid "Category archives"
|
121 |
msgstr ""
|
122 |
|
123 |
+
#: admin.inc.php:242
|
124 |
msgid "Tag archives"
|
125 |
msgstr ""
|
126 |
|
127 |
+
#: admin.inc.php:243
|
128 |
msgid "Other archives"
|
129 |
msgstr ""
|
130 |
|
131 |
+
#: admin.inc.php:244
|
132 |
msgid ""
|
133 |
"If you choose to disable this, please add <code><?php if(function_exists"
|
134 |
"('echo_ald_tptn')) echo_ald_tptn(); ?></code> to your template file where "
|
135 |
"you want it displayed"
|
136 |
msgstr ""
|
137 |
|
138 |
+
#: admin.inc.php:247
|
139 |
msgid "Always display latest post count"
|
140 |
msgstr ""
|
141 |
|
142 |
+
#: admin.inc.php:249
|
143 |
msgid ""
|
144 |
"This option uses JavaScript and will increase your page load time. Turn this "
|
145 |
"off if you are not using caching plugins or are OK with displaying older "
|
146 |
+
"cached counts. When you enable this option, the daily widget will not use "
|
147 |
+
"the options set there, but options will need to be set on this screen."
|
148 |
msgstr ""
|
149 |
|
150 |
+
#: admin.inc.php:252
|
151 |
msgid "Always display latest post count in the daily lists"
|
152 |
msgstr ""
|
153 |
|
154 |
+
#: admin.inc.php:254
|
155 |
#, fuzzy
|
156 |
msgid "This option uses JavaScript and will increase your page load time"
|
157 |
msgstr ""
|
158 |
"Зробити список Популярних записів динамічним? Опція використовує JavaScript, "
|
159 |
"і це може збільшити час завантаження сторінок"
|
160 |
|
161 |
+
#: admin.inc.php:257
|
162 |
msgid "Track visits of authors on their own posts?"
|
163 |
msgstr "Враховувати перегляди записів, зроблені їхніми ж авторами?"
|
164 |
|
165 |
+
#: admin.inc.php:260
|
166 |
#, fuzzy
|
167 |
msgid "Track visits of admins?"
|
168 |
msgstr "Враховувати перегляди записів, зроблені їхніми ж авторами?"
|
169 |
|
170 |
+
#: admin.inc.php:263
|
171 |
msgid "Display page views on Posts > All Posts in Admin"
|
172 |
msgstr ""
|
173 |
|
174 |
+
#: admin.inc.php:266
|
175 |
msgid "Link to Top 10 plugin page"
|
176 |
msgstr ""
|
177 |
|
178 |
+
#: admin.inc.php:268
|
179 |
#, fuzzy
|
180 |
msgid ""
|
181 |
"A link to the plugin is added as an extra list item to the list of popular "
|
184 |
"Залишити посилання на плагін під списками Популярних записів? Автор плагіна "
|
185 |
"був би дуже вдячний Вам, якщо Ви її все ж залишите!"
|
186 |
|
187 |
+
#: admin.inc.php:275
|
188 |
#, fuzzy
|
189 |
msgid "Output Options"
|
190 |
msgstr "Установки плагіна:"
|
191 |
|
192 |
+
#: admin.inc.php:278
|
193 |
msgid "Format to display the count in: "
|
194 |
msgstr ""
|
195 |
"У полі нижче ви можете налаштувати формат відображення кількості переглядів "
|
196 |
"за день, за весь час для записів/сторінок:"
|
197 |
|
198 |
+
#: admin.inc.php:280
|
199 |
#, fuzzy
|
200 |
msgid ""
|
201 |
"Use <code>%totalcount%</code> to display the total count, <code>%dailycount"
|
207 |
"переглядів, а <code>%dailycount%</code> - перегляди за добу. Наприклад: "
|
208 |
"<code>(Запис переглянуто 123 рази, сьогодні переглядів - 23)</code>."
|
209 |
|
210 |
+
#: admin.inc.php:283
|
211 |
msgid "Title of popular posts: "
|
212 |
msgstr "Заголовок списку Популярних записів:"
|
213 |
|
214 |
+
#: admin.inc.php:286
|
215 |
msgid "Title of daily popular posts: "
|
216 |
msgstr "Заголовок списку Популярних сьогодні записів:"
|
217 |
|
218 |
+
#: admin.inc.php:289
|
219 |
msgid "When there are no posts, what should be shown?"
|
220 |
msgstr ""
|
221 |
|
222 |
+
#: admin.inc.php:293
|
223 |
msgid "Blank Output"
|
224 |
msgstr ""
|
225 |
|
226 |
+
#: admin.inc.php:297
|
227 |
msgid "Display:"
|
228 |
msgstr ""
|
229 |
|
230 |
+
#: admin.inc.php:301
|
231 |
msgid "Show post excerpt in list?"
|
232 |
msgstr "Показувати текст запису в списку?"
|
233 |
|
234 |
+
#: admin.inc.php:304
|
235 |
msgid "Length of excerpt (in words): "
|
236 |
msgstr "Довжина виведеного тексту (в словах):"
|
237 |
|
238 |
+
#: admin.inc.php:307
|
239 |
+
#, fuzzy
|
240 |
+
msgid "Show post author in list?"
|
241 |
+
msgstr "Показувати текст запису в списку?"
|
242 |
+
|
243 |
+
#: admin.inc.php:310
|
244 |
#, fuzzy
|
245 |
msgid "Show post date in list?"
|
246 |
msgstr "Показувати текст запису в списку?"
|
247 |
|
248 |
+
#: admin.inc.php:313
|
249 |
msgid "Limit post title length (in characters)"
|
250 |
msgstr ""
|
251 |
|
252 |
+
#: admin.inc.php:316
|
253 |
msgid "Display number of page views in popular lists?"
|
254 |
msgstr ""
|
255 |
"Показувати кількість переглядів записів/сторінок в списку Популярних записів?"
|
256 |
|
257 |
+
#: admin.inc.php:319
|
258 |
msgid "Open links in new window"
|
259 |
msgstr ""
|
260 |
|
261 |
+
#: admin.inc.php:322
|
262 |
msgid "Add nofollow attribute to links in the list"
|
263 |
msgstr ""
|
264 |
|
265 |
+
#: admin.inc.php:325
|
266 |
msgid "Exclude display of related posts on these posts / pages"
|
267 |
msgstr ""
|
268 |
|
269 |
+
#: admin.inc.php:328
|
270 |
msgid "Enter comma separated list of IDs. e.g. 188,320,500"
|
271 |
msgstr ""
|
272 |
|
273 |
+
#: admin.inc.php:331
|
274 |
msgid "Customize the output:"
|
275 |
msgstr "Установки оформлення списку:"
|
276 |
|
277 |
+
#: admin.inc.php:333
|
278 |
msgid "HTML to display before the list of posts: "
|
279 |
msgstr "HTML-тег, який використовується перед списком:"
|
280 |
|
281 |
+
#: admin.inc.php:336
|
282 |
msgid "HTML to display before each list item: "
|
283 |
msgstr "HTML-тег, який використовується перед кожним пунктом у списку:"
|
284 |
|
285 |
+
#: admin.inc.php:339
|
286 |
msgid "HTML to display after each list item: "
|
287 |
msgstr "HTML-тег, який використовується після кожного пункту в списку:"
|
288 |
|
289 |
+
#: admin.inc.php:342
|
290 |
msgid "HTML to display after the list of posts: "
|
291 |
msgstr "HTML-тег, який використовується після списку:"
|
292 |
|
293 |
+
#: admin.inc.php:345
|
294 |
msgid "Post thumbnail options:"
|
295 |
msgstr "Установки превью до записів:"
|
296 |
|
297 |
+
#: admin.inc.php:347
|
298 |
msgid "Location of post thumbnail:"
|
299 |
msgstr ""
|
300 |
|
301 |
+
#: admin.inc.php:351
|
302 |
#, fuzzy
|
303 |
msgid "Display thumbnails inline with posts, before title"
|
304 |
msgstr "Відображати і превью, і текст"
|
305 |
|
306 |
+
#: admin.inc.php:355
|
307 |
#, fuzzy
|
308 |
msgid "Display thumbnails inline with posts, after title"
|
309 |
msgstr "Відображати і превью, і текст"
|
310 |
|
311 |
+
#: admin.inc.php:359
|
312 |
msgid "Display only thumbnails, no text"
|
313 |
msgstr "Показувати тільки превью, без тексту"
|
314 |
|
315 |
+
#: admin.inc.php:363
|
316 |
msgid "Do not display thumbnails, only text."
|
317 |
msgstr "Показувати лише текст, без превью"
|
318 |
|
319 |
+
#: admin.inc.php:367
|
320 |
msgid "Width of the thumbnail: "
|
321 |
msgstr ""
|
322 |
|
323 |
+
#: admin.inc.php:370
|
324 |
msgid "Height of the thumbnail: "
|
325 |
msgstr ""
|
326 |
|
327 |
+
#: admin.inc.php:373
|
328 |
msgid "Style attributes / Width and Height HTML attributes:"
|
329 |
msgstr ""
|
330 |
|
331 |
+
#: admin.inc.php:377
|
332 |
msgid ""
|
333 |
"Style attributes are used for width and height. <code>style=\"max-width:"
|
334 |
msgstr ""
|
335 |
|
336 |
+
#: admin.inc.php:381
|
337 |
msgid ""
|
338 |
"HTML width and height attributes are used for width and height. <code>width="
|
339 |
"\""
|
340 |
msgstr ""
|
341 |
|
342 |
+
#: admin.inc.php:385
|
343 |
msgid "Use timthumb to generate thumbnails? "
|
344 |
msgstr ""
|
345 |
|
346 |
+
#: admin.inc.php:386
|
347 |
msgid ""
|
348 |
"If checked, <a href=\"http://www.binarymoon.co.uk/projects/timthumb/"
|
349 |
"\">timthumb</a> will be used to generate thumbnails"
|
350 |
msgstr ""
|
351 |
|
352 |
+
#: admin.inc.php:388
|
353 |
#, fuzzy
|
354 |
msgid "Post thumbnail meta field name: "
|
355 |
msgstr "Установки превью до записів:"
|
356 |
|
357 |
+
#: admin.inc.php:389
|
358 |
msgid ""
|
359 |
"The value of this field should contain the image source and is set in the "
|
360 |
"<em>Add New Post</em> screen"
|
361 |
msgstr ""
|
362 |
|
363 |
+
#: admin.inc.php:391
|
364 |
#, fuzzy
|
365 |
msgid ""
|
366 |
"If the postmeta is not set, then should the plugin extract the first image "
|
370 |
"зображення із запису. Це може злегка збільшити завантаження в перший раз, "
|
371 |
"так як буде створюватися зменшена копія зображення"
|
372 |
|
373 |
+
#: admin.inc.php:392
|
374 |
#, fuzzy
|
375 |
msgid ""
|
376 |
"This could slow down the loading of your page if the first image in the "
|
380 |
"зображення із запису. Це може злегка збільшити завантаження в перший раз, "
|
381 |
"так як буде створюватися зменшена копія зображення"
|
382 |
|
383 |
+
#: admin.inc.php:394
|
384 |
msgid "Use default thumbnail? "
|
385 |
msgstr ""
|
386 |
|
387 |
+
#: admin.inc.php:395
|
388 |
msgid ""
|
389 |
"If checked, when no thumbnail is found, show a default one from the URL "
|
390 |
"below. If not checked and no thumbnail is found, no image will be shown."
|
391 |
msgstr ""
|
392 |
|
393 |
+
#: admin.inc.php:397
|
394 |
msgid "Default thumbnail: "
|
395 |
msgstr ""
|
396 |
|
397 |
+
#: admin.inc.php:398
|
398 |
#, fuzzy
|
399 |
msgid ""
|
400 |
"The plugin will first check if the post contains a thumbnail. If it doesn't "
|
405 |
"заданому раніше мета-полю). Якщо ж превью нема - буде виводитися картинка за "
|
406 |
"замовчунням:"
|
407 |
|
408 |
+
#: admin.inc.php:404
|
409 |
msgid "Custom Styles"
|
410 |
msgstr ""
|
411 |
|
412 |
+
#: admin.inc.php:407
|
413 |
msgid "Custom CSS to add to header:"
|
414 |
msgstr ""
|
415 |
|
416 |
+
#: admin.inc.php:410
|
417 |
msgid ""
|
418 |
"Do not include <code>style</code> tags. Check out the <a href=\"http://"
|
419 |
"wordpress.org/extend/plugins/top-10/faq/\" target=\"_blank\">FAQ</a> for "
|
420 |
"available CSS classes to style."
|
421 |
msgstr ""
|
422 |
|
423 |
+
#: admin.inc.php:417
|
424 |
msgid "Maintenance"
|
425 |
msgstr ""
|
426 |
|
427 |
+
#: admin.inc.php:421
|
428 |
msgid ""
|
429 |
"Over time the Daily Top 10 database grows in size, which reduces the "
|
430 |
"performance of the plugin. Cleaning the database at regular intervals could "
|
431 |
"improve performance, especially on high traffic blogs."
|
432 |
msgstr ""
|
433 |
|
434 |
+
#: admin.inc.php:422
|
435 |
msgid ""
|
436 |
"Note: When scheduled maintenance is enabled, WordPress will run the cron job "
|
437 |
"everytime the job is rescheduled (i.e. you change the settings below). This "
|
438 |
"causes the daily posts table to reset."
|
439 |
msgstr ""
|
440 |
|
441 |
+
#: admin.inc.php:425
|
442 |
msgid "Enable scheduled maintenance of daily tables:"
|
443 |
msgstr ""
|
444 |
|
445 |
+
#: admin.inc.php:429
|
446 |
msgid "Time to run maintenance"
|
447 |
msgstr ""
|
448 |
|
449 |
+
#: admin.inc.php:432
|
450 |
msgid "How often should the maintenance be run:"
|
451 |
msgstr ""
|
452 |
|
453 |
+
#: admin.inc.php:436
|
454 |
msgid "Daily"
|
455 |
msgstr ""
|
456 |
|
457 |
+
#: admin.inc.php:440
|
458 |
msgid "Weekly"
|
459 |
msgstr ""
|
460 |
|
461 |
+
#: admin.inc.php:444
|
462 |
msgid "Fortnightly"
|
463 |
msgstr ""
|
464 |
|
465 |
+
#: admin.inc.php:448
|
466 |
msgid "Monthly"
|
467 |
msgstr ""
|
468 |
|
469 |
+
#: admin.inc.php:457
|
470 |
msgid "The cron job has been scheduled. Maintenance will run "
|
471 |
msgstr ""
|
472 |
|
473 |
+
#: admin.inc.php:462
|
474 |
msgid "The cron job is missing. Please resave this page to add the job"
|
475 |
msgstr ""
|
476 |
|
477 |
+
#: admin.inc.php:467
|
478 |
msgid "Maintenance is turned off"
|
479 |
msgstr ""
|
480 |
|
481 |
+
#: admin.inc.php:475
|
482 |
#, fuzzy
|
483 |
msgid "Save Options"
|
484 |
msgstr "Установки плагіна:"
|
485 |
|
486 |
+
#: admin.inc.php:476
|
487 |
#, fuzzy
|
488 |
msgid "Default Options"
|
489 |
msgstr "Установки плагіна:"
|
490 |
|
491 |
+
#: admin.inc.php:476
|
492 |
msgid "Do you want to set options to Default?"
|
493 |
msgstr "Скинути налаштування плагіна?"
|
494 |
|
495 |
+
#: admin.inc.php:480
|
496 |
msgid "Reset count"
|
497 |
msgstr "Скинути статистику"
|
498 |
|
499 |
+
#: admin.inc.php:483
|
500 |
msgid ""
|
501 |
"This cannot be reversed. Make sure that your database has been backed up "
|
502 |
"before proceeding"
|
504 |
"Скидання статистики не може бути обернена. Перед тим, як скидати все, "
|
505 |
"переконайтесь, що у вас є копія вашої бази даних!"
|
506 |
|
507 |
+
#: admin.inc.php:486
|
508 |
#, fuzzy
|
509 |
msgid "Reset Popular Posts"
|
510 |
msgstr "Популярні записи"
|
511 |
|
512 |
+
#: admin.inc.php:486
|
513 |
msgid "Are you sure you want to reset the popular posts?"
|
514 |
msgstr "Ви впевнені, що хочете скинути статистику для Популярних записів?"
|
515 |
|
516 |
+
#: admin.inc.php:487
|
517 |
#, fuzzy
|
518 |
msgid "Reset Daily Popular Posts"
|
519 |
msgstr "Популярні сьогодні записи"
|
520 |
|
521 |
+
#: admin.inc.php:487
|
522 |
msgid "Are you sure you want to reset the daily popular posts?"
|
523 |
msgstr ""
|
524 |
"Ви впевнені, що хочете скинути статистику для Популярних сьогодні записів?"
|
525 |
|
526 |
+
#: admin.inc.php:488
|
527 |
msgid "Clear duplicates"
|
528 |
msgstr ""
|
529 |
|
530 |
+
#: admin.inc.php:488
|
531 |
msgid "This will delete the duplicate entries in the tables. Proceed?"
|
532 |
msgstr "Буде проведено видалення дубльованих запісів з статистики. Продовжити?"
|
533 |
|
534 |
+
#: admin.inc.php:531 admin.inc.php:906 top-10.php:476
|
535 |
msgid "Popular Posts"
|
536 |
msgstr "Популярні записи"
|
537 |
|
538 |
+
#: admin.inc.php:531 admin.inc.php:618
|
539 |
msgid "Daily Popular Posts"
|
540 |
msgstr "Популярні сьогодні записи"
|
541 |
|
542 |
+
#: admin.inc.php:559
|
543 |
msgid "Support the development"
|
544 |
msgstr "Підтримати автора плагіна"
|
545 |
|
546 |
+
#: admin.inc.php:567
|
547 |
msgid "Enter amount in USD: "
|
548 |
msgstr "Скільки ви готові пожертвувати (в USD):"
|
549 |
|
550 |
+
#: admin.inc.php:571
|
551 |
msgid "Send your donation to the author of"
|
552 |
msgstr "Відправте пожертву автору"
|
553 |
|
554 |
+
#: admin.inc.php:577
|
555 |
msgid "Follow us"
|
556 |
msgstr ""
|
557 |
|
558 |
+
#: admin.inc.php:583
|
559 |
#, fuzzy
|
560 |
msgid "Quick Links"
|
561 |
msgstr "Корисні посилання"
|
562 |
|
563 |
+
#: admin.inc.php:585
|
564 |
#, fuzzy
|
565 |
msgid "Top 10 plugin page"
|
566 |
msgstr "Сторінка плагіна"
|
567 |
|
568 |
+
#: admin.inc.php:586
|
569 |
msgid "Other plugins"
|
570 |
msgstr "Інші плагіни автора"
|
571 |
|
572 |
+
#: admin.inc.php:587
|
573 |
msgid "Ajay's blog"
|
574 |
msgstr "Блог Ajay"
|
575 |
|
576 |
+
#: admin.inc.php:588 top-10.php:1123
|
577 |
msgid "Support"
|
578 |
msgstr "Підтримка (англ.)"
|
579 |
|
580 |
+
#: admin.inc.php:592
|
581 |
msgid "Recent developments"
|
582 |
msgstr "Останні розробки"
|
583 |
|
584 |
+
#: admin.inc.php:609 admin.inc.php:612
|
585 |
#, fuzzy
|
586 |
msgid "Top 10 Settings"
|
587 |
msgstr "Налаштування плагіна"
|
588 |
|
589 |
+
#: admin.inc.php:609
|
590 |
msgid "Top 10"
|
591 |
msgstr "Топ 10 записів"
|
592 |
|
593 |
+
#: admin.inc.php:615
|
594 |
#, fuzzy
|
595 |
msgid "Overall Popular Posts"
|
596 |
msgstr "Подивитися всі Популярні записи"
|
597 |
|
598 |
+
#: admin.inc.php:786
|
599 |
msgid "Results"
|
600 |
msgstr "Результати"
|
601 |
|
602 |
+
#: admin.inc.php:788 admin.inc.php:794
|
603 |
msgid "of"
|
604 |
msgstr "з"
|
605 |
|
606 |
+
#: admin.inc.php:792
|
607 |
msgid "Page"
|
608 |
msgstr "Сторінка"
|
609 |
|
610 |
+
#: admin.inc.php:806
|
611 |
msgid "View Daily Popular Posts"
|
612 |
msgstr "Подивитися всі Популярні сьогодні записи"
|
613 |
|
614 |
+
#: admin.inc.php:809 admin.inc.php:822
|
615 |
msgid "Results per-page:"
|
616 |
msgstr "Результатів на сторінку:"
|
617 |
|
618 |
+
#: admin.inc.php:819
|
619 |
msgid "View Overall Popular Posts"
|
620 |
msgstr "Подивитися всі Популярні записи"
|
621 |
|
622 |
+
#: admin.inc.php:848
|
623 |
msgid "Previous"
|
624 |
msgstr "Попередня сторінка"
|
625 |
|
626 |
+
#: admin.inc.php:866
|
627 |
msgid "Next"
|
628 |
msgstr "Наступна сторінка"
|
629 |
|
630 |
+
#: admin.inc.php:907
|
631 |
msgid "Daily Popular"
|
632 |
msgstr "Популярні сьогодні записи"
|
633 |
|
634 |
+
#: admin.inc.php:923
|
635 |
+
#, fuzzy
|
636 |
+
msgid "Total Views"
|
637 |
+
msgstr "Всього/Сьогодні"
|
638 |
+
|
639 |
+
#: admin.inc.php:924
|
640 |
+
#, fuzzy
|
641 |
+
msgid "Today's Views"
|
642 |
msgstr "Всього/Сьогодні"
|
643 |
|
644 |
+
#: top-10.php:393
|
645 |
+
msgid " Posted by "
|
646 |
+
msgstr ""
|
647 |
+
|
648 |
+
#: top-10.php:475
|
649 |
msgid "Display the posts popular this week"
|
650 |
msgstr ""
|
651 |
|
652 |
+
#: top-10.php:493
|
653 |
msgid "Title"
|
654 |
msgstr ""
|
655 |
|
656 |
+
#: top-10.php:498
|
657 |
msgid "No. of posts"
|
658 |
msgstr ""
|
659 |
|
660 |
+
#: top-10.php:503
|
661 |
msgid "Overall"
|
662 |
msgstr ""
|
663 |
|
664 |
+
#: top-10.php:504
|
665 |
msgid "Custom time period (Enter below)"
|
666 |
msgstr ""
|
667 |
|
668 |
+
#: top-10.php:509
|
669 |
msgid "Range in number of days (applies only to custom option above)"
|
670 |
msgstr ""
|
671 |
|
672 |
+
#: top-10.php:514
|
673 |
+
#, fuzzy
|
674 |
+
msgid " Show excerpt?"
|
675 |
+
msgstr "Показувати текст запису в списку?"
|
676 |
+
|
677 |
+
#: top-10.php:519
|
678 |
+
msgid " Show author?"
|
679 |
+
msgstr ""
|
680 |
+
|
681 |
+
#: top-10.php:524
|
682 |
+
#, fuzzy
|
683 |
+
msgid " Show date?"
|
684 |
+
msgstr "Показувати текст запису в списку?"
|
685 |
+
|
686 |
+
#: top-10.php:528
|
687 |
#, fuzzy
|
688 |
msgid "Thumbnail options"
|
689 |
msgstr "Установки превью до записів:"
|
690 |
|
691 |
+
#: top-10.php:530
|
692 |
#, fuzzy
|
693 |
msgid "Thumbnails inline, before title"
|
694 |
msgstr "Відображати і превью, і текст"
|
695 |
|
696 |
+
#: top-10.php:531
|
697 |
#, fuzzy
|
698 |
msgid "Thumbnails inline, after title"
|
699 |
msgstr "Відображати і превью, і текст"
|
700 |
|
701 |
+
#: top-10.php:532
|
702 |
#, fuzzy
|
703 |
msgid "Only thumbnails, no text"
|
704 |
msgstr "Показувати тільки превью, без тексту"
|
705 |
|
706 |
+
#: top-10.php:533
|
707 |
#, fuzzy
|
708 |
msgid "No thumbnails, only text."
|
709 |
msgstr "Показувати лише текст, без превью"
|
710 |
|
711 |
+
#: top-10.php:538
|
712 |
#, fuzzy
|
713 |
+
msgid "Thumbnail height"
|
714 |
+
msgstr "Установки превью до записів:"
|
715 |
+
|
716 |
+
#: top-10.php:543
|
717 |
+
#, fuzzy
|
718 |
+
msgid "Thumbnail width"
|
719 |
+
msgstr "Установки превью до записів:"
|
720 |
|
721 |
+
#: top-10.php:646
|
722 |
msgid "<h3>Popular Posts</h3>"
|
723 |
msgstr "<h3>Популярні записи</h3>"
|
724 |
|
725 |
+
#: top-10.php:647
|
726 |
msgid "<h3>Daily Popular</h3>"
|
727 |
msgstr "<h3>Популярні сьогодні записи</h3>"
|
728 |
|
729 |
+
#: top-10.php:648
|
730 |
#, fuzzy
|
731 |
msgid "No top posts yet"
|
732 |
msgstr "Скинути статистику найпопулярніших записів"
|
733 |
|
734 |
+
#: top-10.php:1089
|
735 |
msgid "Once Weekly"
|
736 |
msgstr ""
|
737 |
|
738 |
+
#: top-10.php:1090
|
739 |
msgid "Once Fortnightly"
|
740 |
msgstr ""
|
741 |
|
742 |
+
#: top-10.php:1091
|
743 |
msgid "Once Monthly"
|
744 |
msgstr ""
|
745 |
|
746 |
+
#: top-10.php:1111
|
747 |
msgid "Settings"
|
748 |
msgstr "Налаштування плагіна"
|
749 |
|
750 |
+
#: top-10.php:1124
|
751 |
msgid "Donate"
|
752 |
msgstr "Зробити внесок"
|
753 |
|
readme.txt
CHANGED
@@ -30,7 +30,7 @@ Includes a sidebar widget to display the popular posts. And, all settings can be
|
|
30 |
* View list of daily and/or overall popular posts from within the dashboard
|
31 |
* Output wrapped in CSS classes that allows you to style the list. You can enter your custom CSS styles from within WordPress Admin area
|
32 |
* Customise which HTML tags to use for displaying the output in case you don't prefer the default `list` format
|
33 |
-
* Clean uninstall if you choose to delete the plugin from within WP-Admin
|
34 |
* Works with caching plugins like WP-Super-Cache, W3 Total Cache or Quick Cache
|
35 |
|
36 |
|
@@ -45,13 +45,21 @@ Includes a sidebar widget to display the popular posts. And, all settings can be
|
|
45 |
|
46 |
== Upgrade Notice ==
|
47 |
|
48 |
-
= 1.9.8.
|
49 |
-
New:
|
50 |
-
Check the Changelog for more
|
51 |
-
|
52 |
|
53 |
== Changelog ==
|
54 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
55 |
= 1.9.8.1 =
|
56 |
* Fixed: Correct numbers of posts were not being fetched
|
57 |
|
@@ -214,6 +222,7 @@ Check the Changelog for more information
|
|
214 |
|
215 |
6. Go to **Top 10 » Overall Popular Posts** and **Top 10 » Daily Popular Posts** to view the list of popular posts
|
216 |
|
|
|
217 |
|
218 |
|
219 |
== Frequently Asked Questions ==
|
30 |
* View list of daily and/or overall popular posts from within the dashboard
|
31 |
* Output wrapped in CSS classes that allows you to style the list. You can enter your custom CSS styles from within WordPress Admin area
|
32 |
* Customise which HTML tags to use for displaying the output in case you don't prefer the default `list` format
|
33 |
+
* Clean uninstall if you choose to delete the plugin from within WP-Admin, but why would you?
|
34 |
* Works with caching plugins like WP-Super-Cache, W3 Total Cache or Quick Cache
|
35 |
|
36 |
|
45 |
|
46 |
== Upgrade Notice ==
|
47 |
|
48 |
+
= 1.9.8.2 =
|
49 |
+
New: Option to add author; shortcodes are stripped from excerpts; bug fixes;
|
50 |
+
Check the Changelog for more details
|
|
|
51 |
|
52 |
== Changelog ==
|
53 |
|
54 |
+
= 1.9.8.2 =
|
55 |
+
* New: Option to add author
|
56 |
+
* New: More options for the Widgets to configure the post lists
|
57 |
+
* Modified: Shortcodes are now stripped from excerpts
|
58 |
+
* New: Added *s3.amazonaws.com* to list of allowed sites that timthumb can fetch images from
|
59 |
+
* Fixed: Counter was not always displayed on posts
|
60 |
+
* New: All Posts / All Pages have separate *sortable* columns for total and daily counts
|
61 |
+
* Fixed: Warning messages with WP_DEBUG mode ON
|
62 |
+
|
63 |
= 1.9.8.1 =
|
64 |
* Fixed: Correct numbers of posts were not being fetched
|
65 |
|
222 |
|
223 |
6. Go to **Top 10 » Overall Popular Posts** and **Top 10 » Daily Popular Posts** to view the list of popular posts
|
224 |
|
225 |
+
Alternatively, search for **Top 10** from Plugins » Top 10 within your WordPress admin.
|
226 |
|
227 |
|
228 |
== Frequently Asked Questions ==
|
screenshot-1.png
CHANGED
Binary file
|
screenshot-2.png
CHANGED
Binary file
|
timthumb/timthumb.php
CHANGED
@@ -136,6 +136,7 @@ if(! isset($ALLOWED_SITES)){
|
|
136 |
'wordpress.com',
|
137 |
'wordpress.org',
|
138 |
'wp.com',
|
|
|
139 |
);
|
140 |
}
|
141 |
// -------------------------------------------------------------
|
136 |
'wordpress.com',
|
137 |
'wordpress.org',
|
138 |
'wp.com',
|
139 |
+
's3.amazonaws.com',
|
140 |
);
|
141 |
}
|
142 |
// -------------------------------------------------------------
|
top-10-counter.js.php
CHANGED
@@ -17,10 +17,7 @@ require( $wp_config_filename );
|
|
17 |
// Include the now instantiated global $wpdb Class for use
|
18 |
global $wpdb;
|
19 |
|
20 |
-
$nonce=$_REQUEST['_wpnonce'];
|
21 |
$id = intval($_GET['top_ten_id']);
|
22 |
-
$nonce_action = 'tptn-nonce-'.$id;
|
23 |
-
if (! wp_verify_nonce($nonce, $nonce_action) ) die("Security check");
|
24 |
|
25 |
// Display counter using Ajax
|
26 |
function tptn_disp_count() {
|
17 |
// Include the now instantiated global $wpdb Class for use
|
18 |
global $wpdb;
|
19 |
|
|
|
20 |
$id = intval($_GET['top_ten_id']);
|
|
|
|
|
21 |
|
22 |
// Display counter using Ajax
|
23 |
function tptn_disp_count() {
|
top-10-daily.js.php
CHANGED
@@ -15,7 +15,7 @@ if (!function_exists('add_action')) {
|
|
15 |
function tptn_daily_lists() {
|
16 |
global $wpdb, $siteurl, $tableposts, $id;
|
17 |
|
18 |
-
$is_widget = intval($_GET['
|
19 |
|
20 |
if($is_widget) {
|
21 |
$output = tptn_pop_posts('daily=1&is_widget=1');
|
15 |
function tptn_daily_lists() {
|
16 |
global $wpdb, $siteurl, $tableposts, $id;
|
17 |
|
18 |
+
$is_widget = intval($_GET['is_widget']);
|
19 |
|
20 |
if($is_widget) {
|
21 |
$output = tptn_pop_posts('daily=1&is_widget=1');
|
top-10.php
CHANGED
@@ -1,7 +1,7 @@
|
|
1 |
<?php
|
2 |
/*
|
3 |
Plugin Name: Top 10
|
4 |
-
Version: 1.9.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
|
@@ -214,7 +214,7 @@ function get_tptn_post_count($id) {
|
|
214 |
|
215 |
// Now process daily count
|
216 |
if (strpos($count_disp_form, "%dailycount%") !== false) {
|
217 |
-
$daily_range = $tptn_settings['daily_range'];
|
218 |
$current_time = gmdate( 'Y-m-d', ( time() + ( get_option( 'gmt_offset' ) * 3600 ) ) );
|
219 |
$current_date = strtotime ( '-'.$daily_range. ' DAY' , strtotime ( $current_time ) );
|
220 |
$current_date = date ( 'Y-m-j' , $current_date );
|
@@ -251,6 +251,7 @@ function tptn_pop_posts( $args ) {
|
|
251 |
'is_widget' => FALSE,
|
252 |
'daily' => FALSE,
|
253 |
'echo' => FALSE,
|
|
|
254 |
);
|
255 |
$defaults = array_merge($defaults, tptn_read_options());
|
256 |
|
@@ -260,7 +261,7 @@ function tptn_pop_posts( $args ) {
|
|
260 |
// OPTIONAL: Declare each item in $args as its own variable i.e. $type, $before.
|
261 |
extract( $args, EXTR_SKIP );
|
262 |
|
263 |
-
if ($echo) {
|
264 |
echo get_tptn_pop_posts($daily, $is_widget, $limit, $show_excerpt, $post_thumb_op, $daily_range);
|
265 |
} else {
|
266 |
return get_tptn_pop_posts($daily, $is_widget, $limit, $show_excerpt, $post_thumb_op, $daily_range);
|
@@ -272,39 +273,41 @@ function tptn_pop_posts( $args ) {
|
|
272 |
*
|
273 |
* @access public
|
274 |
* @param bool $daily (default: false)
|
275 |
-
* @param bool $
|
276 |
* @param string $limit (default: '10')
|
277 |
* @param bool $show_excerpt (default: false)
|
278 |
* @param string $post_thumb_op (default: 'text_only')
|
279 |
* @param string $daily_range (default: '1')
|
280 |
* @return string Output of posts
|
281 |
*/
|
282 |
-
function get_tptn_pop_posts( $daily = false , $
|
283 |
global $wpdb, $siteurl, $tableposts, $id;
|
|
|
|
|
284 |
if ($daily) $table_name = $wpdb->prefix . "top_ten_daily";
|
285 |
else $table_name = $wpdb->prefix . "top_ten";
|
286 |
-
global $tptn_settings;
|
287 |
|
288 |
-
if (empty($limit)) $limit = stripslashes($tptn_settings['limit']);
|
289 |
$limit = ($strict_limit) ? $limit : ($limit*5);
|
290 |
|
291 |
-
|
292 |
-
|
293 |
-
|
294 |
|
295 |
-
$exclude_categories = explode(',',$
|
296 |
|
297 |
-
$target_attribute = (
|
298 |
-
$rel_attribute = (
|
299 |
-
|
|
|
300 |
|
301 |
-
parse_str($
|
302 |
|
303 |
if (!$daily) {
|
304 |
$sql = "SELECT postnumber, cntaccess as sumCount, ID, post_type, post_status ";
|
305 |
$sql .= "FROM $table_name INNER JOIN ". $wpdb->posts ." ON postnumber=ID " ;
|
306 |
$sql .= "AND post_status = 'publish' ";
|
307 |
-
if ($
|
308 |
$sql .= "AND ( ";
|
309 |
$multiple = false;
|
310 |
foreach ($post_types as $post_type) {
|
@@ -315,15 +318,20 @@ function get_tptn_pop_posts( $daily = false , $widget = false, $limit = false, $
|
|
315 |
$sql .=" ) ";
|
316 |
$sql .= "ORDER BY sumCount DESC LIMIT $limit";
|
317 |
} else {
|
318 |
-
$daily_range = $daily_range - 1;
|
319 |
-
$current_time = gmdate( 'Y-m-d', ( time() + ( get_option( 'gmt_offset' ) * 3600 ) ) );
|
320 |
-
$current_date = strtotime ( '-'.$daily_range. ' DAY' , strtotime ( $current_time ) );
|
321 |
-
$current_date = date ( 'Y-m-j' , $current_date );
|
|
|
|
|
|
|
|
|
|
|
322 |
|
323 |
$sql = "SELECT postnumber, SUM(cntaccess) as sumCount, dp_date, ID, post_type, post_status ";
|
324 |
$sql .= "FROM $table_name INNER JOIN ". $wpdb->posts ." ON postnumber=ID " ;
|
325 |
$sql .= "AND post_status = 'publish' AND dp_date >= '$current_date' ";
|
326 |
-
if ($
|
327 |
$sql .= "AND ( ";
|
328 |
$multiple = false;
|
329 |
foreach ($post_types as $post_type) {
|
@@ -340,11 +348,11 @@ function get_tptn_pop_posts( $daily = false , $widget = false, $limit = false, $
|
|
340 |
|
341 |
$output = '';
|
342 |
|
343 |
-
if (!$
|
344 |
if (!$daily) {
|
345 |
-
$output .= '<div id="tptn_related" class="tptn_posts">'.apply_filters('tptn_heading_title',$
|
346 |
} else {
|
347 |
-
$output .= '<div id="tptn_related_daily" class="tptn_posts_daily">'.apply_filters('tptn_heading_title',$
|
348 |
}
|
349 |
} else {
|
350 |
if (!$daily) {
|
@@ -355,7 +363,7 @@ function get_tptn_pop_posts( $daily = false , $widget = false, $limit = false, $
|
|
355 |
}
|
356 |
|
357 |
if ($results) {
|
358 |
-
$output .= $
|
359 |
foreach ($results as $result) {
|
360 |
$sumcount = $result->sumCount;
|
361 |
$result = get_post($result->ID); // Let's get the Post using the ID
|
@@ -368,39 +376,46 @@ function get_tptn_pop_posts( $daily = false , $widget = false, $limit = false, $
|
|
368 |
}
|
369 |
|
370 |
//$title = trim(stripslashes(get_the_title($result->ID)));
|
371 |
-
$title = tptn_max_formatted_content(get_the_title($result->ID),$
|
372 |
|
373 |
if (!$p_in_c) {
|
374 |
-
$output .= $
|
375 |
|
376 |
$output .= '<a href="'.get_permalink($result->ID).'" rel="bookmark'.$rel_attribute.'" '.$target_attribute.'class="tptn_link">'; // Add beginning of link
|
377 |
if ($post_thumb_op=='after') {
|
378 |
$output .= '<span class="tptn_title">' . $title . '</span>'; // Add title if post thumbnail is to be displayed after
|
379 |
}
|
380 |
if ($post_thumb_op=='inline' || $post_thumb_op=='after' || $post_thumb_op=='thumbs_only') {
|
381 |
-
$output .= tptn_get_the_post_thumbnail('postid='.$result->ID.'&thumb_height='.$
|
382 |
}
|
383 |
if ($post_thumb_op=='inline' || $post_thumb_op=='text_only') {
|
384 |
$output .= '<span class="tptn_title">' . $title . '</span>'; // Add title when required by settings
|
385 |
}
|
386 |
$output .= '</a>'; // Close the link
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
387 |
if ($show_date) {
|
388 |
$output .= '<span class="tptn_date"> '.mysql2date(get_option('date_format','d/m/y'), $result->post_date).'</span> ';
|
389 |
}
|
390 |
if ($show_excerpt) {
|
391 |
-
$output .= '<span class="tptn_excerpt"> '.tptn_excerpt($result->ID,$
|
392 |
}
|
393 |
-
if ($
|
394 |
|
395 |
-
$output .= $
|
396 |
$counter++;
|
397 |
}
|
398 |
if ($counter == $limit/5) break; // End loop when related posts limit is reached
|
399 |
}
|
400 |
-
if ($
|
401 |
-
$output .= $
|
402 |
} else {
|
403 |
-
$output .= ($
|
404 |
}
|
405 |
$output .= '</div>';
|
406 |
|
@@ -414,8 +429,8 @@ function get_tptn_pop_posts( $daily = false , $widget = false, $limit = false, $
|
|
414 |
* @access public
|
415 |
* @return void
|
416 |
*/
|
417 |
-
function tptn_show_pop_posts() {
|
418 |
-
echo tptn_pop_posts(
|
419 |
}
|
420 |
|
421 |
|
@@ -469,47 +484,71 @@ class WidgetTopTen extends WP_Widget
|
|
469 |
}
|
470 |
|
471 |
function form($instance) {
|
472 |
-
$title = esc_attr($instance['title']);
|
473 |
-
$limit = esc_attr($instance['limit']);
|
474 |
-
$show_excerpt = esc_attr($instance['show_excerpt']);
|
475 |
-
$
|
476 |
-
$
|
477 |
-
$
|
|
|
|
|
|
|
|
|
478 |
?>
|
479 |
<p>
|
480 |
-
|
481 |
-
|
482 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
483 |
</p>
|
484 |
<p>
|
485 |
-
|
486 |
-
|
487 |
-
|
488 |
</p>
|
489 |
<p>
|
490 |
-
|
491 |
-
|
492 |
-
|
493 |
-
</select>
|
494 |
</p>
|
495 |
<p>
|
496 |
-
|
497 |
-
|
498 |
-
|
499 |
</p>
|
500 |
<p>
|
501 |
-
|
502 |
-
|
503 |
-
|
504 |
-
<option value="after" <?php if ($post_thumb_op=='after') echo 'selected="selected"' ?>><?php _e('Thumbnails inline, after title',TPTN_LOCAL_NAME); ?></option>
|
505 |
-
<option value="thumbs_only" <?php if ($post_thumb_op=='thumbs_only') echo 'selected="selected"' ?>><?php _e('Only thumbnails, no text',TPTN_LOCAL_NAME); ?></option>
|
506 |
-
<option value="text_only" <?php if ($post_thumb_op=='text_only') echo 'selected="selected"' ?>><?php _e('No thumbnails, only text.',TPTN_LOCAL_NAME); ?></option>
|
507 |
-
</select>
|
508 |
</p>
|
509 |
<p>
|
510 |
-
|
511 |
-
|
512 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
513 |
</p>
|
514 |
<?php
|
515 |
} //ending form creation
|
@@ -520,7 +559,11 @@ class WidgetTopTen extends WP_Widget
|
|
520 |
$instance['daily'] = ($new_instance['daily']);
|
521 |
$instance['daily_range'] = strip_tags($new_instance['daily_range']);
|
522 |
$instance['show_excerpt'] = ($new_instance['show_excerpt']);
|
|
|
|
|
523 |
$instance['post_thumb_op'] = ($new_instance['post_thumb_op']);
|
|
|
|
|
524 |
return $instance;
|
525 |
} //ending update
|
526 |
function widget($args, $instance) {
|
@@ -532,13 +575,11 @@ class WidgetTopTen extends WP_Widget
|
|
532 |
|
533 |
$title = apply_filters('widget_title', empty($instance['title']) ? strip_tags($tptn_settings['title']) : $instance['title']);
|
534 |
$limit = $instance['limit'];
|
535 |
-
$show_excerpt = $instance['show_excerpt'];
|
536 |
-
$post_thumb_op = $instance['post_thumb_op'];
|
537 |
if (empty($limit)) $limit = $tptn_settings['limit'];
|
538 |
-
|
539 |
-
|
540 |
-
|
541 |
-
$daily = (
|
542 |
|
543 |
$output = $before_widget;
|
544 |
$output .= $before_title . $title . $after_title;
|
@@ -547,10 +588,36 @@ class WidgetTopTen extends WP_Widget
|
|
547 |
if ($tptn_settings['d_use_js']) {
|
548 |
$output .= '<script type="text/javascript" src="'.$tptn_url.'/top-10-daily.js.php?widget=1"></script>';
|
549 |
} else {
|
550 |
-
$output .= tptn_pop_posts('daily=1&is_widget=1&limit='.$limit.'&show_excerpt='.$show_excerpt.'&post_thumb_op='.$post_thumb_op.'&daily_range='.$daily_range);
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
551 |
}
|
552 |
} else {
|
553 |
-
$output .= tptn_pop_posts('daily=0&is_widget=1&limit='.$limit.'&show_excerpt='.$show_excerpt.'&post_thumb_op='.$post_thumb_op.'&daily_range='.$daily_range);
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
554 |
}
|
555 |
|
556 |
$output .= $after_widget;
|
@@ -632,6 +699,7 @@ function tptn_default_options() {
|
|
632 |
'scan_images' => true, // Scan post for images
|
633 |
'show_excerpt' => false, // Show description in list item
|
634 |
'show_date' => false, // Show date in list item
|
|
|
635 |
'excerpt_length' => '10', // Length of characters
|
636 |
'title_length' => '60', // Limit length of post title
|
637 |
'exclude_categories' => '', // Exclude these categories
|
@@ -921,7 +989,7 @@ function tptn_get_first_image( $postID ) {
|
|
921 |
function tptn_excerpt($postid,$excerpt_length){
|
922 |
$content = get_post($postid)->post_excerpt;
|
923 |
if ($content=='') $content = get_post($postid)->post_content;
|
924 |
-
$out = strip_tags($content);
|
925 |
$blah = explode(' ',$out);
|
926 |
if (!$excerpt_length) $excerpt_length = 10;
|
927 |
if(count($blah) > $excerpt_length){
|
1 |
<?php
|
2 |
/*
|
3 |
Plugin Name: Top 10
|
4 |
+
Version: 1.9.8.2
|
5 |
Plugin URI: http://ajaydsouza.com/wordpress/plugins/top-10/
|
6 |
Description: Count daily and total visits per post and display the most popular posts based on the number of views. Based on the plugin by <a href="http://weblogtoolscollection.com">Mark Ghosh</a>
|
7 |
Author: Ajay D'Souza
|
214 |
|
215 |
// Now process daily count
|
216 |
if (strpos($count_disp_form, "%dailycount%") !== false) {
|
217 |
+
$daily_range = $tptn_settings['daily_range']-1;
|
218 |
$current_time = gmdate( 'Y-m-d', ( time() + ( get_option( 'gmt_offset' ) * 3600 ) ) );
|
219 |
$current_date = strtotime ( '-'.$daily_range. ' DAY' , strtotime ( $current_time ) );
|
220 |
$current_date = date ( 'Y-m-j' , $current_date );
|
251 |
'is_widget' => FALSE,
|
252 |
'daily' => FALSE,
|
253 |
'echo' => FALSE,
|
254 |
+
'strict_limit' => FALSE,
|
255 |
);
|
256 |
$defaults = array_merge($defaults, tptn_read_options());
|
257 |
|
261 |
// OPTIONAL: Declare each item in $args as its own variable i.e. $type, $before.
|
262 |
extract( $args, EXTR_SKIP );
|
263 |
|
264 |
+
/* if ($echo) {
|
265 |
echo get_tptn_pop_posts($daily, $is_widget, $limit, $show_excerpt, $post_thumb_op, $daily_range);
|
266 |
} else {
|
267 |
return get_tptn_pop_posts($daily, $is_widget, $limit, $show_excerpt, $post_thumb_op, $daily_range);
|
273 |
*
|
274 |
* @access public
|
275 |
* @param bool $daily (default: false)
|
276 |
+
* @param bool $is_widget (default: false)
|
277 |
* @param string $limit (default: '10')
|
278 |
* @param bool $show_excerpt (default: false)
|
279 |
* @param string $post_thumb_op (default: 'text_only')
|
280 |
* @param string $daily_range (default: '1')
|
281 |
* @return string Output of posts
|
282 |
*/
|
283 |
+
// function get_tptn_pop_posts( $daily = false , $is_widget = false, $limit = false, $show_excerpt = false, $post_thumb_op = false, $daily_range = false, $strict_limit = false ) {
|
284 |
global $wpdb, $siteurl, $tableposts, $id;
|
285 |
+
global $tptn_settings;
|
286 |
+
|
287 |
if ($daily) $table_name = $wpdb->prefix . "top_ten_daily";
|
288 |
else $table_name = $wpdb->prefix . "top_ten";
|
|
|
289 |
|
290 |
+
//if (empty($limit)) $limit = stripslashes($tptn_settings['limit']);
|
291 |
$limit = ($strict_limit) ? $limit : ($limit*5);
|
292 |
|
293 |
+
//$show_excerpt = empty($show_excerpt) ? $tptn_settings['show_excerpt'] : $show_excerpt;
|
294 |
+
//$post_thumb_op = empty($post_thumb_op) ? $tptn_settings['post_thumb_op'] : $post_thumb_op;
|
295 |
+
//$daily_range = empty($daily_range) ? $tptn_settings['daily_range'] : $daily_range;
|
296 |
|
297 |
+
$exclude_categories = explode(',',$exclude_categories);
|
298 |
|
299 |
+
$target_attribute = ($link_new_window) ? ' target="_blank" ' : ' ';
|
300 |
+
$rel_attribute = ($link_nofollow) ? ' nofollow' : '';
|
301 |
+
//$show_date = $tptn_settings['show_date'];
|
302 |
+
//$show_author = $tptn_settings['show_author'];
|
303 |
|
304 |
+
parse_str($post_types,$post_types); // Save post types in $post_types variable
|
305 |
|
306 |
if (!$daily) {
|
307 |
$sql = "SELECT postnumber, cntaccess as sumCount, ID, post_type, post_status ";
|
308 |
$sql .= "FROM $table_name INNER JOIN ". $wpdb->posts ." ON postnumber=ID " ;
|
309 |
$sql .= "AND post_status = 'publish' ";
|
310 |
+
if ($exclude_post_ids!='') $sql .= "AND ID NOT IN (".$exclude_post_ids.") ";
|
311 |
$sql .= "AND ( ";
|
312 |
$multiple = false;
|
313 |
foreach ($post_types as $post_type) {
|
318 |
$sql .=" ) ";
|
319 |
$sql .= "ORDER BY sumCount DESC LIMIT $limit";
|
320 |
} else {
|
321 |
+
// $daily_range = $daily_range - 1;
|
322 |
+
// $current_time = gmdate( 'Y-m-d', ( time() + ( get_option( 'gmt_offset' ) * 3600 ) ) );
|
323 |
+
// $current_date = strtotime ( '-'.$daily_range. ' DAY' , strtotime ( $current_time ) );
|
324 |
+
// $current_date = date ( 'Y-m-j' , $current_date );
|
325 |
+
|
326 |
+
$current_time = current_time( 'timestamp', 0 );
|
327 |
+
$current_time = $current_time - $daily_range * 3600 * 24;
|
328 |
+
$current_date = date( 'Y-m-j', $current_time );
|
329 |
+
|
330 |
|
331 |
$sql = "SELECT postnumber, SUM(cntaccess) as sumCount, dp_date, ID, post_type, post_status ";
|
332 |
$sql .= "FROM $table_name INNER JOIN ". $wpdb->posts ." ON postnumber=ID " ;
|
333 |
$sql .= "AND post_status = 'publish' AND dp_date >= '$current_date' ";
|
334 |
+
if ($exclude_post_ids!='') $sql .= "AND ID NOT IN (".$exclude_post_ids.") ";
|
335 |
$sql .= "AND ( ";
|
336 |
$multiple = false;
|
337 |
foreach ($post_types as $post_type) {
|
348 |
|
349 |
$output = '';
|
350 |
|
351 |
+
if (!$is_widget) {
|
352 |
if (!$daily) {
|
353 |
+
$output .= '<div id="tptn_related" class="tptn_posts">'.apply_filters('tptn_heading_title',$title);
|
354 |
} else {
|
355 |
+
$output .= '<div id="tptn_related_daily" class="tptn_posts_daily">'.apply_filters('tptn_heading_title',$title_daily);
|
356 |
}
|
357 |
} else {
|
358 |
if (!$daily) {
|
363 |
}
|
364 |
|
365 |
if ($results) {
|
366 |
+
$output .= $before_list;
|
367 |
foreach ($results as $result) {
|
368 |
$sumcount = $result->sumCount;
|
369 |
$result = get_post($result->ID); // Let's get the Post using the ID
|
376 |
}
|
377 |
|
378 |
//$title = trim(stripslashes(get_the_title($result->ID)));
|
379 |
+
$title = tptn_max_formatted_content(get_the_title($result->ID),$title_length);
|
380 |
|
381 |
if (!$p_in_c) {
|
382 |
+
$output .= $before_list_item;
|
383 |
|
384 |
$output .= '<a href="'.get_permalink($result->ID).'" rel="bookmark'.$rel_attribute.'" '.$target_attribute.'class="tptn_link">'; // Add beginning of link
|
385 |
if ($post_thumb_op=='after') {
|
386 |
$output .= '<span class="tptn_title">' . $title . '</span>'; // Add title if post thumbnail is to be displayed after
|
387 |
}
|
388 |
if ($post_thumb_op=='inline' || $post_thumb_op=='after' || $post_thumb_op=='thumbs_only') {
|
389 |
+
$output .= tptn_get_the_post_thumbnail('postid='.$result->ID.'&thumb_height='.$thumb_height.'&thumb_width='.$thumb_width.'&thumb_meta='.$thumb_meta.'&thumb_html='.$thumb_html.'&thumb_default='.$thumb_default.'&thumb_default_show='.$thumb_default_show.'&thumb_timthumb='.$thumb_timthumb.'&scan_images='.$scan_images.'&class=tptn_thumb&filter=tptn_postimage');
|
390 |
}
|
391 |
if ($post_thumb_op=='inline' || $post_thumb_op=='text_only') {
|
392 |
$output .= '<span class="tptn_title">' . $title . '</span>'; // Add title when required by settings
|
393 |
}
|
394 |
$output .= '</a>'; // Close the link
|
395 |
+
if ($show_author) {
|
396 |
+
$author_info = get_userdata($result->post_author);
|
397 |
+
$author_name = ucwords(trim(stripslashes($author_info->user_nicename)));
|
398 |
+
$author_link = get_author_posts_url( $author_info->ID );
|
399 |
+
|
400 |
+
$output .= '<span class="tptn_author"> '.__(' Posted by ', TPTN_LOCAL_NAME ).'<a href="'.$author_link.'">'.$author_name.'</a></span> ';
|
401 |
+
}
|
402 |
if ($show_date) {
|
403 |
$output .= '<span class="tptn_date"> '.mysql2date(get_option('date_format','d/m/y'), $result->post_date).'</span> ';
|
404 |
}
|
405 |
if ($show_excerpt) {
|
406 |
+
$output .= '<span class="tptn_excerpt"> '.tptn_excerpt($result->ID,$excerpt_length).'</span>';
|
407 |
}
|
408 |
+
if ($disp_list_count) $output .= ' <span class="tptn_list_count">('.number_format_i18n($sumcount).')</span>';
|
409 |
|
410 |
+
$output .= $after_list_item;
|
411 |
$counter++;
|
412 |
}
|
413 |
if ($counter == $limit/5) break; // End loop when related posts limit is reached
|
414 |
}
|
415 |
+
if ($show_credit) $output .= $before_list_item.'Popular posts by <a href="http://ajaydsouza.com/wordpress/plugins/top-10/" rel="nofollow">Top 10 plugin</a>'.$after_list_item;
|
416 |
+
$output .= $after_list;
|
417 |
} else {
|
418 |
+
$output .= ($blank_output) ? '' : $blank_output_text;
|
419 |
}
|
420 |
$output .= '</div>';
|
421 |
|
429 |
* @access public
|
430 |
* @return void
|
431 |
*/
|
432 |
+
function tptn_show_pop_posts( $args = NULL ) {
|
433 |
+
echo tptn_pop_posts( $args );
|
434 |
}
|
435 |
|
436 |
|
484 |
}
|
485 |
|
486 |
function form($instance) {
|
487 |
+
$title = isset($instance['title']) ? esc_attr($instance['title']) : '';
|
488 |
+
$limit = isset($instance['limit']) ? esc_attr($instance['limit']) : '';
|
489 |
+
$show_excerpt = isset($instance['show_excerpt']) ? esc_attr($instance['show_excerpt']) : '';
|
490 |
+
$show_author = isset($instance['show_author']) ? esc_attr($instance['show_author']) : '';
|
491 |
+
$show_date = isset($instance['show_date']) ? esc_attr($instance['show_date']) : '';
|
492 |
+
$post_thumb_op = isset($instance['post_thumb_op']) ? esc_attr($instance['post_thumb_op']) : '';
|
493 |
+
$thumb_height = isset($instance['thumb_height']) ? esc_attr($instance['thumb_height']) : '';
|
494 |
+
$thumb_width = isset($instance['thumb_width']) ? esc_attr($instance['thumb_width']) : '';
|
495 |
+
$daily = isset($instance['daily']) ? esc_attr($instance['daily']) : '';
|
496 |
+
$daily_range = isset($instance['daily_range']) ? esc_attr($instance['daily_range']) : '';
|
497 |
?>
|
498 |
<p>
|
499 |
+
<label for="<?php echo $this->get_field_id('title'); ?>">
|
500 |
+
<?php _e('Title', TPTN_LOCAL_NAME); ?>: <input class="widefat" id="<?php echo $this->get_field_id('title'); ?>" name="<?php echo $this->get_field_name('title'); ?>" type="text" value="<?php echo esc_attr($title); ?>" />
|
501 |
+
</label>
|
502 |
+
</p>
|
503 |
+
<p>
|
504 |
+
<label for="<?php echo $this->get_field_id('limit'); ?>">
|
505 |
+
<?php _e('No. of posts', TPTN_LOCAL_NAME); ?>: <input class="widefat" id="<?php echo $this->get_field_id('limit'); ?>" name="<?php echo $this->get_field_name('limit'); ?>" type="text" value="<?php echo esc_attr($limit); ?>" />
|
506 |
+
</label>
|
507 |
+
</p>
|
508 |
+
<p>
|
509 |
+
<select class="widefat" id="<?php echo $this->get_field_id('daily'); ?>" name="<?php echo $this->get_field_name('daily'); ?>">
|
510 |
+
<option value="overall" <?php if ($daily=='overall') echo 'selected="selected"' ?>><?php _e('Overall', TPTN_LOCAL_NAME); ?></option>
|
511 |
+
<option value="daily" <?php if ($daily=='daily') echo 'selected="selected"' ?>><?php _e('Custom time period (Enter below)', TPTN_LOCAL_NAME); ?></option>
|
512 |
+
</select>
|
513 |
</p>
|
514 |
<p>
|
515 |
+
<label for="<?php echo $this->get_field_id('daily_range'); ?>">
|
516 |
+
<?php _e('Range in number of days (applies only to custom option above)', TPTN_LOCAL_NAME); ?>: <input class="widefat" id="<?php echo $this->get_field_id('daily_range'); ?>" name="<?php echo $this->get_field_name('daily_range'); ?>" type="text" value="<?php echo esc_attr($daily_range); ?>" />
|
517 |
+
</label>
|
518 |
</p>
|
519 |
<p>
|
520 |
+
<label for="<?php echo $this->get_field_id('show_excerpt'); ?>">
|
521 |
+
<input id="<?php echo $this->get_field_id('show_excerpt'); ?>" name="<?php echo $this->get_field_name('show_excerpt'); ?>" type="checkbox" <?php if ($show_excerpt) echo 'checked="checked"' ?> /> <?php _e(' Show excerpt?', TPTN_LOCAL_NAME); ?>
|
522 |
+
</label>
|
|
|
523 |
</p>
|
524 |
<p>
|
525 |
+
<label for="<?php echo $this->get_field_id('show_author'); ?>">
|
526 |
+
<input id="<?php echo $this->get_field_id('show_author'); ?>" name="<?php echo $this->get_field_name('show_author'); ?>" type="checkbox" <?php if ($show_author) echo 'checked="checked"' ?> /> <?php _e(' Show author?', TPTN_LOCAL_NAME); ?>
|
527 |
+
</label>
|
528 |
</p>
|
529 |
<p>
|
530 |
+
<label for="<?php echo $this->get_field_id('show_date'); ?>">
|
531 |
+
<input id="<?php echo $this->get_field_id('show_date'); ?>" name="<?php echo $this->get_field_name('show_date'); ?>" type="checkbox" <?php if ($show_date) echo 'checked="checked"' ?> /> <?php _e(' Show date?', TPTN_LOCAL_NAME); ?>
|
532 |
+
</label>
|
|
|
|
|
|
|
|
|
533 |
</p>
|
534 |
<p>
|
535 |
+
<?php _e('Thumbnail options', TPTN_LOCAL_NAME); ?>: <br />
|
536 |
+
<select class="widefat" id="<?php echo $this->get_field_id('post_thumb_op'); ?>" name="<?php echo $this->get_field_name('post_thumb_op'); ?>">
|
537 |
+
<option value="inline" <?php if ($post_thumb_op=='inline') echo 'selected="selected"' ?>><?php _e('Thumbnails inline, before title',TPTN_LOCAL_NAME); ?></option>
|
538 |
+
<option value="after" <?php if ($post_thumb_op=='after') echo 'selected="selected"' ?>><?php _e('Thumbnails inline, after title',TPTN_LOCAL_NAME); ?></option>
|
539 |
+
<option value="thumbs_only" <?php if ($post_thumb_op=='thumbs_only') echo 'selected="selected"' ?>><?php _e('Only thumbnails, no text',TPTN_LOCAL_NAME); ?></option>
|
540 |
+
<option value="text_only" <?php if ($post_thumb_op=='text_only') echo 'selected="selected"' ?>><?php _e('No thumbnails, only text.',TPTN_LOCAL_NAME); ?></option>
|
541 |
+
</select>
|
542 |
+
</p>
|
543 |
+
<p>
|
544 |
+
<label for="<?php echo $this->get_field_id('thumb_height'); ?>">
|
545 |
+
<?php _e('Thumbnail height', TPTN_LOCAL_NAME); ?>: <input class="widefat" id="<?php echo $this->get_field_id('thumb_height'); ?>" name="<?php echo $this->get_field_name('thumb_height'); ?>" type="text" value="<?php echo esc_attr($thumb_height); ?>" />
|
546 |
+
</label>
|
547 |
+
</p>
|
548 |
+
<p>
|
549 |
+
<label for="<?php echo $this->get_field_id('thumb_width'); ?>">
|
550 |
+
<?php _e('Thumbnail width', TPTN_LOCAL_NAME); ?>: <input class="widefat" id="<?php echo $this->get_field_id('thumb_width'); ?>" name="<?php echo $this->get_field_name('thumb_width'); ?>" type="text" value="<?php echo esc_attr($thumb_width); ?>" />
|
551 |
+
</label>
|
552 |
</p>
|
553 |
<?php
|
554 |
} //ending form creation
|
559 |
$instance['daily'] = ($new_instance['daily']);
|
560 |
$instance['daily_range'] = strip_tags($new_instance['daily_range']);
|
561 |
$instance['show_excerpt'] = ($new_instance['show_excerpt']);
|
562 |
+
$instance['show_author'] = ($new_instance['show_author']);
|
563 |
+
$instance['show_date'] = ($new_instance['show_date']);
|
564 |
$instance['post_thumb_op'] = ($new_instance['post_thumb_op']);
|
565 |
+
$instance['thumb_height'] = ($new_instance['thumb_height']);
|
566 |
+
$instance['thumb_width'] = ($new_instance['thumb_width']);
|
567 |
return $instance;
|
568 |
} //ending update
|
569 |
function widget($args, $instance) {
|
575 |
|
576 |
$title = apply_filters('widget_title', empty($instance['title']) ? strip_tags($tptn_settings['title']) : $instance['title']);
|
577 |
$limit = $instance['limit'];
|
|
|
|
|
578 |
if (empty($limit)) $limit = $tptn_settings['limit'];
|
579 |
+
|
580 |
+
$daily_range = (empty($instance['daily_range'])) ? $tptn_settings['daily_range'] : $instance['daily_range'];
|
581 |
+
|
582 |
+
$daily = ($instance['daily']=="daily") ? true : false;
|
583 |
|
584 |
$output = $before_widget;
|
585 |
$output .= $before_title . $title . $after_title;
|
588 |
if ($tptn_settings['d_use_js']) {
|
589 |
$output .= '<script type="text/javascript" src="'.$tptn_url.'/top-10-daily.js.php?widget=1"></script>';
|
590 |
} else {
|
591 |
+
// $output .= tptn_pop_posts('daily=1&is_widget=1&limit='.$limit.'&show_excerpt='.$show_excerpt.'&post_thumb_op='.$post_thumb_op.'&daily_range='.$daily_range);
|
592 |
+
$output .= tptn_pop_posts( array(
|
593 |
+
'is_widget' => 1,
|
594 |
+
'limit' => $limit,
|
595 |
+
'daily' => 1,
|
596 |
+
'daily_range' => $instance['daily_range'],
|
597 |
+
'show_excerpt' => $instance['show_excerpt'],
|
598 |
+
'show_author' => $instance['show_author'],
|
599 |
+
'show_date' => $instance['show_date'],
|
600 |
+
'post_thumb_op' => $instance['post_thumb_op'],
|
601 |
+
'thumb_height' => $instance['thumb_height'],
|
602 |
+
'thumb_width' => $instance['thumb_width'],
|
603 |
+
) );
|
604 |
+
|
605 |
}
|
606 |
} else {
|
607 |
+
// $output .= tptn_pop_posts('daily=0&is_widget=1&limit='.$limit.'&show_excerpt='.$show_excerpt.'&post_thumb_op='.$post_thumb_op.'&daily_range='.$daily_range);
|
608 |
+
$output .= tptn_pop_posts( array(
|
609 |
+
'is_widget' => 1,
|
610 |
+
'limit' => $limit,
|
611 |
+
'daily' => 0,
|
612 |
+
'daily_range' => $daily_range,
|
613 |
+
'show_excerpt' => $instance['show_excerpt'],
|
614 |
+
'show_author' => $instance['show_author'],
|
615 |
+
'show_date' => $instance['show_date'],
|
616 |
+
'post_thumb_op' => $instance['post_thumb_op'],
|
617 |
+
'thumb_height' => $instance['thumb_height'],
|
618 |
+
'thumb_width' => $instance['thumb_width'],
|
619 |
+
) );
|
620 |
+
|
621 |
}
|
622 |
|
623 |
$output .= $after_widget;
|
699 |
'scan_images' => true, // Scan post for images
|
700 |
'show_excerpt' => false, // Show description in list item
|
701 |
'show_date' => false, // Show date in list item
|
702 |
+
'show_author' => false, // Show author in list item
|
703 |
'excerpt_length' => '10', // Length of characters
|
704 |
'title_length' => '60', // Limit length of post title
|
705 |
'exclude_categories' => '', // Exclude these categories
|
989 |
function tptn_excerpt($postid,$excerpt_length){
|
990 |
$content = get_post($postid)->post_excerpt;
|
991 |
if ($content=='') $content = get_post($postid)->post_content;
|
992 |
+
$out = strip_tags(strip_shortcodes($content));
|
993 |
$blah = explode(' ',$out);
|
994 |
if (!$excerpt_length) $excerpt_length = 10;
|
995 |
if(count($blah) > $excerpt_length){
|