Top 10 – Popular posts plugin for WordPress - Version 2.0.2

Version Description

  • New: Option to display the daily posts count from midnight. This is enabled by default and mimics the original behaviour of the counter

=

Download this release

Release Info

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

Code changes from version 2.0.0 to 2.0.2

admin/admin-columns.php CHANGED
@@ -69,9 +69,15 @@ function tptn_value( $column_name, $id ) {
69
  $daily_range = $tptn_settings['daily_range'];
70
  $hour_range = $tptn_settings['hour_range'];
71
 
72
- $current_time = current_time( 'timestamp', 1 );
73
- $from_date = $current_time - ( $daily_range * DAY_IN_SECONDS + $hour_range * HOUR_IN_SECONDS );
74
- $from_date = gmdate( 'Y-m-d H' , $from_date );
 
 
 
 
 
 
75
 
76
  $resultscount = $wpdb->get_row( $wpdb->prepare( "SELECT postnumber, SUM(cntaccess) as sumCount FROM {$table_name} WHERE postnumber = %d AND dp_date >= '%s' GROUP BY postnumber ", $id, $from_date ) );
77
  $cntaccess = number_format_i18n( ( ( $resultscount ) ? $resultscount->sumCount : 0 ) );
@@ -91,9 +97,15 @@ function tptn_value( $column_name, $id ) {
91
  $daily_range = $tptn_settings['daily_range'];
92
  $hour_range = $tptn_settings['hour_range'];
93
 
94
- $current_time = current_time( 'timestamp', 1 );
95
- $from_date = $current_time - ( $daily_range * DAY_IN_SECONDS + $hour_range * HOUR_IN_SECONDS );
96
- $from_date = gmdate( 'Y-m-d H' , $from_date );
 
 
 
 
 
 
97
 
98
  $resultscount = $wpdb->get_row( $wpdb->prepare( "SELECT postnumber, SUM(cntaccess) as sumCount FROM {$table_name} WHERE postnumber = %d AND dp_date >= '%s' GROUP BY postnumber ", $id, $from_date ) );
99
  $cntaccess .= ' / '.number_format_i18n( ( ( $resultscount ) ? $resultscount->sumCount : 0 ) );
@@ -155,9 +167,15 @@ function tptn_column_clauses( $clauses, $wp_query ) {
155
  $daily_range = $tptn_settings['daily_range'];
156
  $hour_range = $tptn_settings['hour_range'];
157
 
158
- $current_time = current_time( 'timestamp', 1 );
159
- $from_date = $current_time - ( $daily_range * DAY_IN_SECONDS + $hour_range * HOUR_IN_SECONDS );
160
- $from_date = gmdate( 'Y-m-d H' , $from_date );
 
 
 
 
 
 
161
 
162
  $clauses['join'] .= "LEFT OUTER JOIN {$table_name} ON {$wpdb->posts}.ID={$table_name}.postnumber";
163
  $clauses['where'] .= " AND {$table_name}.dp_date >= '$from_date' ";
69
  $daily_range = $tptn_settings['daily_range'];
70
  $hour_range = $tptn_settings['hour_range'];
71
 
72
+ if ( $tptn_settings['daily_midnight'] ) {
73
+ $current_time = current_time( 'timestamp', 0 );
74
+ $from_date = $current_time - ( max( 0, ( $daily_range - 1 ) ) * DAY_IN_SECONDS );
75
+ $from_date = gmdate( 'Y-m-d 0' , $from_date );
76
+ } else {
77
+ $current_time = current_time( 'timestamp', 0 );
78
+ $from_date = $current_time - ( $daily_range * DAY_IN_SECONDS + $hour_range * HOUR_IN_SECONDS );
79
+ $from_date = gmdate( 'Y-m-d H' , $from_date );
80
+ }
81
 
82
  $resultscount = $wpdb->get_row( $wpdb->prepare( "SELECT postnumber, SUM(cntaccess) as sumCount FROM {$table_name} WHERE postnumber = %d AND dp_date >= '%s' GROUP BY postnumber ", $id, $from_date ) );
83
  $cntaccess = number_format_i18n( ( ( $resultscount ) ? $resultscount->sumCount : 0 ) );
97
  $daily_range = $tptn_settings['daily_range'];
98
  $hour_range = $tptn_settings['hour_range'];
99
 
100
+ if ( $tptn_settings['daily_midnight'] ) {
101
+ $current_time = current_time( 'timestamp', 0 );
102
+ $from_date = $current_time - ( max( 0, ( $daily_range - 1 ) ) * DAY_IN_SECONDS );
103
+ $from_date = gmdate( 'Y-m-d 0' , $from_date );
104
+ } else {
105
+ $current_time = current_time( 'timestamp', 0 );
106
+ $from_date = $current_time - ( $daily_range * DAY_IN_SECONDS + $hour_range * HOUR_IN_SECONDS );
107
+ $from_date = gmdate( 'Y-m-d H' , $from_date );
108
+ }
109
 
110
  $resultscount = $wpdb->get_row( $wpdb->prepare( "SELECT postnumber, SUM(cntaccess) as sumCount FROM {$table_name} WHERE postnumber = %d AND dp_date >= '%s' GROUP BY postnumber ", $id, $from_date ) );
111
  $cntaccess .= ' / '.number_format_i18n( ( ( $resultscount ) ? $resultscount->sumCount : 0 ) );
167
  $daily_range = $tptn_settings['daily_range'];
168
  $hour_range = $tptn_settings['hour_range'];
169
 
170
+ if ( $tptn_settings['daily_midnight'] ) {
171
+ $current_time = current_time( 'timestamp', 0 );
172
+ $from_date = $current_time - ( max( 0, ( $daily_range - 1 ) ) * DAY_IN_SECONDS );
173
+ $from_date = gmdate( 'Y-m-d 0' , $from_date );
174
+ } else {
175
+ $current_time = current_time( 'timestamp', 0 );
176
+ $from_date = $current_time - ( $daily_range * DAY_IN_SECONDS + $hour_range * HOUR_IN_SECONDS );
177
+ $from_date = gmdate( 'Y-m-d H' , $from_date );
178
+ }
179
 
180
  $clauses['join'] .= "LEFT OUTER JOIN {$table_name} ON {$wpdb->posts}.ID={$table_name}.postnumber";
181
  $clauses['where'] .= " AND {$table_name}.dp_date >= '$from_date' ";
admin/admin.php CHANGED
@@ -41,6 +41,9 @@ function tptn_options() {
41
  $tptn_settings['activate_overall'] = isset( $_POST['activate_overall']) ? true : false;
42
  $tptn_settings['activate_daily'] = isset( $_POST['activate_daily']) ? true : false;
43
  $tptn_settings['cache_fix'] = isset( $_POST['cache_fix'] ) ? true : false;
 
 
 
44
  $tptn_settings['show_credit'] = isset( $_POST['show_credit'] ) ? true : false;
45
 
46
  /* Counter and tracker options */
@@ -65,8 +68,6 @@ function tptn_options() {
65
 
66
  /* Popular post list options */
67
  $tptn_settings['limit'] = intval( $_POST['limit'] );
68
- $tptn_settings['daily_range'] = intval( $_POST['daily_range'] );
69
- $tptn_settings['hour_range'] = intval( $_POST['hour_range'] );
70
 
71
  // Process post types to be selected
72
  $wp_post_types = get_post_types( array(
@@ -130,7 +131,7 @@ function tptn_options() {
130
  $tptn_settings['thumb_meta'] = '' == $_POST['thumb_meta'] ? 'post-image' : $_POST['thumb_meta'];
131
  $tptn_settings['scan_images'] = isset( $_POST['scan_images'] ) ? true : false;
132
  $tptn_settings['thumb_default_show'] = isset( $_POST['thumb_default_show'] ) ? true : false;
133
- $tptn_settings['thumb_default'] = ( '' != $_POST['thumb_default'] ) ? $_POST['thumb_default'] : $tptn_url . '/default.png';
134
 
135
  /* Custom styles */
136
  $tptn_settings['custom_CSS'] = wp_kses_post( $_POST['custom_CSS'] );
@@ -157,7 +158,7 @@ function tptn_options() {
157
  $posts_types_inc = array_intersect( $wp_post_types, $post_types );
158
 
159
  /* Echo a success message */
160
- $str = '<div id="message" class="updated fade"><p>'. __( 'Options saved successfully.', TPTN_LOCAL_NAME ) .'</p></div>';
161
  echo $str;
162
  }
163
 
@@ -342,6 +343,21 @@ function tptn_options() {
342
  <p class="description"><?php _e( 'This will try to prevent W3 Total Cache and other caching plugins from caching the tracker script of the plugin. Try toggling this option in case you find that your posts are not tracked.', TPTN_LOCAL_NAME ); ?></p>
343
  </td>
344
  </tr>
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
345
  <tr>
346
  <th scope="row"><label for="show_credit"><?php _e( 'Link to Top 10 plugin page', TPTN_LOCAL_NAME ); ?></label></th>
347
  <td>
@@ -497,14 +513,6 @@ function tptn_options() {
497
  <p class="description"><?php _e( "Maximum number of posts that will be displayed in the list. This option is used if you don't specify the number of posts in the widget or shortcodes", TPTN_LOCAL_NAME ); ?></p>
498
  </td>
499
  </tr>
500
- <tr>
501
- <th scope="row"><label for="daily_range"><?php _e( 'Daily popular contains top posts over:', TPTN_LOCAL_NAME ); ?></label></th>
502
- <td>
503
- <input type="textbox" name="daily_range" id="daily_range" size="3" value="<?php echo stripslashes( $tptn_settings['daily_range'] ); ?>"> <?php _e( 'day(s)', TPTN_LOCAL_NAME ); ?>
504
- <input type="textbox" name="hour_range" id="hour_range" size="3" value="<?php echo stripslashes( $tptn_settings['hour_range'] ); ?>"> <?php _e( 'hour(s)', TPTN_LOCAL_NAME ); ?>
505
- <p class="description"><?php _e( "Think of Daily Popular has a custom date range applied as a global setting. Instead of displaying popular posts from the past day, this setting lets you display posts for as many days or as few hours as you want. This can be overridden in the widget.", TPTN_LOCAL_NAME ); ?></p>
506
- </td>
507
- </tr>
508
  <tr>
509
  <th scope="row"><?php _e( 'Post types to include in results (including custom post types)', TPTN_LOCAL_NAME ); ?></th>
510
  <td>
41
  $tptn_settings['activate_overall'] = isset( $_POST['activate_overall']) ? true : false;
42
  $tptn_settings['activate_daily'] = isset( $_POST['activate_daily']) ? true : false;
43
  $tptn_settings['cache_fix'] = isset( $_POST['cache_fix'] ) ? true : false;
44
+ $tptn_settings['daily_midnight'] = isset( $_POST['daily_midnight'] ) ? true : false;
45
+ $tptn_settings['daily_range'] = intval( $_POST['daily_range'] );
46
+ $tptn_settings['hour_range'] = intval( $_POST['hour_range'] );
47
  $tptn_settings['show_credit'] = isset( $_POST['show_credit'] ) ? true : false;
48
 
49
  /* Counter and tracker options */
68
 
69
  /* Popular post list options */
70
  $tptn_settings['limit'] = intval( $_POST['limit'] );
 
 
71
 
72
  // Process post types to be selected
73
  $wp_post_types = get_post_types( array(
131
  $tptn_settings['thumb_meta'] = '' == $_POST['thumb_meta'] ? 'post-image' : $_POST['thumb_meta'];
132
  $tptn_settings['scan_images'] = isset( $_POST['scan_images'] ) ? true : false;
133
  $tptn_settings['thumb_default_show'] = isset( $_POST['thumb_default_show'] ) ? true : false;
134
+ $tptn_settings['thumb_default'] = ( ( '' == $_POST['thumb_default'] ) || ( '\/default.png' == $_POST['thumb_default'] ) ) ? $_POST['thumb_default'] : $tptn_url . '/default.png';
135
 
136
  /* Custom styles */
137
  $tptn_settings['custom_CSS'] = wp_kses_post( $_POST['custom_CSS'] );
158
  $posts_types_inc = array_intersect( $wp_post_types, $post_types );
159
 
160
  /* Echo a success message */
161
+ $str = '<div id="message" class="updated fade"><p>'. __( 'Options saved successfully.', TPTN_LOCAL_NAME ) . '</p></div>';
162
  echo $str;
163
  }
164
 
343
  <p class="description"><?php _e( 'This will try to prevent W3 Total Cache and other caching plugins from caching the tracker script of the plugin. Try toggling this option in case you find that your posts are not tracked.', TPTN_LOCAL_NAME ); ?></p>
344
  </td>
345
  </tr>
346
+ <tr>
347
+ <th scope="row"><label for="daily_midnight"><?php _e( 'Start daily counts from midnight:', TPTN_LOCAL_NAME ); ?></label></th>
348
+ <td>
349
+ <input type="checkbox" name="daily_midnight" id="daily_midnight" <?php if ( $tptn_settings['daily_midnight'] ) echo 'checked="checked"' ?> />
350
+ <p class="description"><?php _e( 'Daily counter will display number of visits from midnight. This option is checked by default and mimics the way most normal counters work. Turning this off will allow you to use the hourly setting in the next option.', TPTN_LOCAL_NAME ); ?></p>
351
+ </td>
352
+ </tr>
353
+ <tr>
354
+ <th scope="row"><label for="daily_range"><?php _e( 'Daily popular contains top posts over:', TPTN_LOCAL_NAME ); ?></label></th>
355
+ <td>
356
+ <input type="textbox" name="daily_range" id="daily_range" size="3" value="<?php echo stripslashes( $tptn_settings['daily_range'] ); ?>"> <?php _e( 'day(s)', TPTN_LOCAL_NAME ); ?>
357
+ <input type="textbox" name="hour_range" id="hour_range" size="3" value="<?php echo stripslashes( $tptn_settings['hour_range'] ); ?>"> <?php _e( 'hour(s)', TPTN_LOCAL_NAME ); ?>
358
+ <p class="description"><?php _e( "Think of Daily Popular has a custom date range applied as a global setting. Instead of displaying popular posts from the past day, this setting lets you display posts for as many days or as few hours as you want. This can be overridden in the widget.", TPTN_LOCAL_NAME ); ?></p>
359
+ </td>
360
+ </tr>
361
  <tr>
362
  <th scope="row"><label for="show_credit"><?php _e( 'Link to Top 10 plugin page', TPTN_LOCAL_NAME ); ?></label></th>
363
  <td>
513
  <p class="description"><?php _e( "Maximum number of posts that will be displayed in the list. This option is used if you don't specify the number of posts in the widget or shortcodes", TPTN_LOCAL_NAME ); ?></p>
514
  </td>
515
  </tr>
 
 
 
 
 
 
 
 
516
  <tr>
517
  <th scope="row"><?php _e( 'Post types to include in results (including custom post types)', TPTN_LOCAL_NAME ); ?></th>
518
  <td>
includes/top-10-addcount.js.php CHANGED
@@ -14,7 +14,7 @@ Header( "content-type: application/x-javascript" );
14
  define( 'SHORTINIT', true );
15
 
16
  // Build the wp-config.php path from a plugin/theme
17
- $wp_config_path = dirname( dirname( dirname( __FILE__ ) ) );
18
  $wp_config_filename = '/wp-load.php';
19
 
20
  // Check if the file exists in the root or one level up
14
  define( 'SHORTINIT', true );
15
 
16
  // Build the wp-config.php path from a plugin/theme
17
+ $wp_config_path = dirname( dirname( dirname( dirname( __FILE__ ) ) ) );
18
  $wp_config_filename = '/wp-load.php';
19
 
20
  // Check if the file exists in the root or one level up
includes/top-10-counter.js.php CHANGED
@@ -11,7 +11,7 @@
11
  Header( "content-type: application/x-javascript" );
12
 
13
  // Build the wp-config.php path from a plugin/theme
14
- $wp_config_path = dirname( dirname( dirname( __FILE__ ) ) );
15
  $wp_config_filename = '/wp-load.php';
16
 
17
  // Check if the file exists in the root or one level up
11
  Header( "content-type: application/x-javascript" );
12
 
13
  // Build the wp-config.php path from a plugin/theme
14
+ $wp_config_path = dirname( dirname( dirname( dirname( __FILE__ ) ) ) );
15
  $wp_config_filename = '/wp-load.php';
16
 
17
  // Check if the file exists in the root or one level up
includes/top-10-daily.js.php CHANGED
@@ -11,7 +11,7 @@
11
  Header( "content-type: application/x-javascript" );
12
 
13
  if ( ! function_exists('add_action') ) {
14
- $wp_root = '../../..';
15
  if ( file_exists($wp_root.'/wp-load.php') ) {
16
  require_once( $wp_root . '/wp-load.php' );
17
  } else {
11
  Header( "content-type: application/x-javascript" );
12
 
13
  if ( ! function_exists('add_action') ) {
14
+ $wp_root = '../../../..';
15
  if ( file_exists($wp_root.'/wp-load.php') ) {
16
  require_once( $wp_root . '/wp-load.php' );
17
  } else {
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: 2014-12-28 01:00-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"
@@ -61,7 +61,7 @@ msgstr "Əvvəlki"
61
  msgid "Next"
62
  msgstr "Sonrakı"
63
 
64
- #: admin/admin-dashboard.php:200 admin/admin.php:1145
65
  msgid "Popular Posts"
66
  msgstr "Populyar yazılar"
67
 
@@ -69,7 +69,7 @@ msgstr "Populyar yazılar"
69
  msgid "Daily Popular"
70
  msgstr "Gündəlik Populyar"
71
 
72
- #: admin/admin-metabox.php:38 admin/admin.php:1234
73
  msgid "Top 10"
74
  msgstr "Top 10 yazılar"
75
 
@@ -99,106 +99,137 @@ msgstr ""
99
  msgid "The URL above is saved in the meta field: "
100
  msgstr ""
101
 
102
- #: admin/admin.php:160
103
  msgid "Options saved successfully."
104
  msgstr "Opsiyalar müvəffəqiyyətlə yaddaşda saxlanılıb."
105
 
106
- #: admin/admin.php:170
107
  msgid "Options set to Default."
108
  msgstr "Opsiyalalr standard opsiyasına qaytarılıb."
109
 
110
- #: admin/admin.php:176
111
  msgid "Top 10 popular posts reset"
112
  msgstr "10 populyar yazı statisticasını pozmaq"
113
 
114
- #: admin/admin.php:182
115
  msgid "Top 10 daily popular posts reset"
116
  msgstr "10 gündəlik populyar yazı statisticasını pozmaq"
117
 
118
- #: admin/admin.php:189
119
  msgid "Duplicate rows cleaned from tables"
120
  msgstr ""
121
 
122
- #: admin/admin.php:201
123
  msgid "Scheduled maintenance enabled / modified"
124
  msgstr ""
125
 
126
- #: admin/admin.php:205
127
  msgid "Scheduled maintenance disabled"
128
  msgstr ""
129
 
130
- #: admin/admin.php:244
131
  msgid "Counts from selected sites have been imported."
132
  msgstr ""
133
 
134
- #: admin/admin.php:269
135
  msgid ""
136
  "Selected tables have been deleted. Note that only imported tables have been "
137
  "deleted."
138
  msgstr ""
139
 
140
- #: admin/admin.php:277 admin/admin.php:1234 admin/admin.php:1237
141
  #, fuzzy
142
  msgid "Top 10 Settings"
143
  msgstr "Kökləmələr"
144
 
145
- #: admin/admin.php:289 admin/admin.php:311
146
  msgid "General options"
147
  msgstr ""
148
 
149
- #: admin/admin.php:290 admin/admin.php:373
150
  msgid "Counter and tracker options"
151
  msgstr ""
152
 
153
- #: admin/admin.php:291 admin/admin.php:478
154
  msgid "Popular post list options"
155
  msgstr ""
156
 
157
- #: admin/admin.php:292 admin/admin.php:681
158
  #: includes/class-top-10-widget.php:103
159
  #, fuzzy
160
  msgid "Thumbnail options"
161
  msgstr "Yazılışlara əvvəlcədən baxma kökləmələri:"
162
 
163
- #: admin/admin.php:293
164
  msgid "Custom styles"
165
  msgstr ""
166
 
167
- #: admin/admin.php:294 admin/admin.php:912
168
  msgid "Maintenance"
169
  msgstr ""
170
 
171
- #: admin/admin.php:310 admin/admin.php:372 admin/admin.php:477
172
- #: admin/admin.php:680 admin/admin.php:843 admin/admin.php:911
173
- #: admin/admin.php:975 admin/admin.php:996 admin/admin.php:1176
174
- #: admin/admin.php:1196 admin/admin.php:1206
175
  msgid "Click to toggle"
176
  msgstr ""
177
 
178
- #: admin/admin.php:327
179
  msgid "Enable Overall stats"
180
  msgstr ""
181
 
182
- #: admin/admin.php:333
183
  msgid "Enable Daily stats"
184
  msgstr ""
185
 
186
- #: admin/admin.php:339
187
  msgid "Cache fix:"
188
  msgstr ""
189
 
190
- #: admin/admin.php:342
191
  msgid ""
192
  "This will try to prevent W3 Total Cache and other caching plugins from "
193
  "caching the tracker script of the plugin. Try toggling this option in case "
194
  "you find that your posts are not tracked."
195
  msgstr ""
196
 
197
- #: admin/admin.php:346
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
198
  msgid "Link to Top 10 plugin page"
199
  msgstr ""
200
 
201
- #: admin/admin.php:349
202
  #, fuzzy
203
  msgid ""
204
  "A link to the plugin is added as an extra list item to the list of popular "
@@ -207,59 +238,59 @@ msgstr ""
207
  "Popyulyar siyahının altnda ssılkanı qoymaq lazımdır? Plaginin müəllifi Siz "
208
  "onu qoyduğunuz halda Sizə çox minnətdar olardı!"
209
 
210
- #: admin/admin.php:354 admin/admin.php:459 admin/admin.php:662
211
- #: admin/admin.php:825 admin/admin.php:891 admin/admin.php:968
212
  #, fuzzy
213
  msgid "Save Options"
214
  msgstr "Opsiyalar:"
215
 
216
- #: admin/admin.php:389
217
  #, fuzzy
218
  msgid "Display number of views on:"
219
  msgstr "Posta baxılmasının miqdarını göstərmək lazımdır?"
220
 
221
- #: admin/admin.php:391
222
  msgid "Posts"
223
  msgstr ""
224
 
225
- #: admin/admin.php:392
226
  #, fuzzy
227
  msgid "Pages"
228
  msgstr "Səhifə"
229
 
230
- #: admin/admin.php:393
231
  msgid "Home page"
232
  msgstr ""
233
 
234
- #: admin/admin.php:394
235
  msgid "Feeds"
236
  msgstr ""
237
 
238
- #: admin/admin.php:395
239
  msgid "Category archives"
240
  msgstr ""
241
 
242
- #: admin/admin.php:396
243
  msgid "Tag archives"
244
  msgstr ""
245
 
246
- #: admin/admin.php:397
247
  msgid "Other archives"
248
  msgstr ""
249
 
250
- #: admin/admin.php:398
251
  msgid ""
252
  "If you choose to disable this, please add <code>&lt;?php if "
253
  "( function_exists ( 'echo_tptn_post_count' ) ) echo_tptn_post_count(); ?&gt;"
254
  "</code> to your template file where you want it displayed"
255
  msgstr ""
256
 
257
- #: admin/admin.php:402
258
  #, fuzzy
259
  msgid "Format to display the post views:"
260
  msgstr "Miqdarı göstərən format:"
261
 
262
- #: admin/admin.php:405
263
  msgid ""
264
  "Use <code>%totalcount%</code> to display the total count, <code>%dailycount"
265
  "%</code> to display the daily count and <code>%overallcount%</code> to "
@@ -267,11 +298,11 @@ msgid ""
267
  "options displays <code>[Visited 123 times, 23 visits today]</code>"
268
  msgstr ""
269
 
270
- #: admin/admin.php:409
271
  msgid "What do display when there are no visits?"
272
  msgstr ""
273
 
274
- #: admin/admin.php:412
275
  msgid ""
276
  "This text applies only when there are 0 hits for the post and it isn't a "
277
  "single page. e.g. if you display post views on the homepage or archives then "
@@ -279,253 +310,233 @@ msgid ""
279
  "option."
280
  msgstr ""
281
 
282
- #: admin/admin.php:416
283
  msgid "Always display latest post count"
284
  msgstr ""
285
 
286
- #: admin/admin.php:419
287
  msgid ""
288
  "This option uses JavaScript and will increase your page load time. Turn this "
289
  "off if you are not using caching plugins or are OK with displaying older "
290
  "cached counts."
291
  msgstr ""
292
 
293
- #: admin/admin.php:423
294
  msgid "Track visits of authors on their own posts?"
295
  msgstr "Müəllif tərəfindən edilmiş yazıları nəzərə almaq lazımdır?"
296
 
297
- #: admin/admin.php:426
298
  msgid ""
299
  "Disabling this option will stop authors visits tracked on their own posts"
300
  msgstr ""
301
 
302
- #: admin/admin.php:430
303
  #, fuzzy
304
  msgid "Track visits of admins?"
305
  msgstr "Müəllif tərəfindən edilmiş yazıları nəzərə almaq lazımdır?"
306
 
307
- #: admin/admin.php:433
308
  msgid "Disabling this option will stop admin visits being tracked."
309
  msgstr ""
310
 
311
- #: admin/admin.php:437
312
  #, fuzzy
313
  msgid "Track visits of Editors?"
314
  msgstr "Müəllif tərəfindən edilmiş yazıları nəzərə almaq lazımdır?"
315
 
316
- #: admin/admin.php:440
317
  msgid "Disabling this option will stop editor visits being tracked."
318
  msgstr ""
319
 
320
- #: admin/admin.php:444
321
  msgid "Display page views on Posts and Pages in Admin"
322
  msgstr ""
323
 
324
- #: admin/admin.php:447
325
  msgid ""
326
  "Adds three columns called Total Views, Today's Views and Views to All Posts "
327
  "and All Pages"
328
  msgstr ""
329
 
330
- #: admin/admin.php:451
331
  #, fuzzy
332
  msgid "Show number of views to non-admins"
333
  msgstr "Səhifədə baxılmasının miqdarını göstərmək lazımdır?"
334
 
335
- #: admin/admin.php:454
336
  msgid ""
337
  "If you disable this then non-admins won't see the above columns or view the "
338
  "independent pages with the top posts"
339
  msgstr ""
340
 
341
- #: admin/admin.php:494
342
  msgid "Number of popular posts to display: "
343
  msgstr "Populyar postların miqdarının nümayişi:"
344
 
345
- #: admin/admin.php:497
346
  msgid ""
347
  "Maximum number of posts that will be displayed in the list. This option is "
348
  "used if you don't specify the number of posts in the widget or shortcodes"
349
  msgstr ""
350
 
351
- #: admin/admin.php:501
352
- msgid "Daily popular contains top posts over:"
353
- msgstr ""
354
-
355
- #: admin/admin.php:503
356
- msgid "day(s)"
357
- msgstr ""
358
-
359
- #: admin/admin.php:504
360
- msgid "hour(s)"
361
- msgstr ""
362
-
363
- #: admin/admin.php:505
364
- msgid ""
365
- "Think of Daily Popular has a custom date range applied as a global setting. "
366
- "Instead of displaying popular posts from the past day, this setting lets you "
367
- "display posts for as many days or as few hours as you want. This can be "
368
- "overridden in the widget."
369
- msgstr ""
370
-
371
- #: admin/admin.php:509
372
  msgid "Post types to include in results (including custom post types)"
373
  msgstr ""
374
 
375
- #: admin/admin.php:521
376
  msgid "List of post or page IDs to exclude from the results: "
377
  msgstr ""
378
 
379
- #: admin/admin.php:523 admin/admin.php:630
380
  msgid "Enter comma separated list of IDs. e.g. 188,320,500"
381
  msgstr ""
382
 
383
- #: admin/admin.php:527
384
  msgid "Exclude Categories: "
385
  msgstr ""
386
 
387
- #: admin/admin.php:542
388
  msgid ""
389
  "Comma separated list of category slugs. The field above has an autocomplete "
390
  "so simply start typing in the starting letters and it will prompt you with "
391
  "options"
392
  msgstr ""
393
 
394
- #: admin/admin.php:547
395
  msgid "Title of popular posts: "
396
  msgstr "Populyar yazılarının başlığı:"
397
 
398
- #: admin/admin.php:553
399
  msgid "Title of daily popular posts: "
400
  msgstr "Gündəlik populyual yazılışların başlığı:"
401
 
402
- #: admin/admin.php:559
403
  msgid "When there are no posts, what should be shown?"
404
  msgstr ""
405
 
406
- #: admin/admin.php:563
407
  msgid "Blank Output"
408
  msgstr ""
409
 
410
- #: admin/admin.php:567
411
  msgid "Display:"
412
  msgstr ""
413
 
414
- #: admin/admin.php:572
415
  msgid "Show post excerpt in list?"
416
  msgstr "Yazılış mətnini siyahıda göstərmək lazımdır?"
417
 
418
- #: admin/admin.php:578
419
  msgid "Length of excerpt (in words): "
420
  msgstr "Çıxardılmış mətnin uzunluğu (söz ilə):"
421
 
422
- #: admin/admin.php:584
423
  #, fuzzy
424
  msgid "Show post author in list?"
425
  msgstr "Yazılış mətnini siyahıda göstərmək lazımdır?"
426
 
427
- #: admin/admin.php:590
428
  #, fuzzy
429
  msgid "Show post date in list?"
430
  msgstr "Yazılış mətnini siyahıda göstərmək lazımdır?"
431
 
432
- #: admin/admin.php:596
433
  msgid "Limit post title length (in characters)"
434
  msgstr ""
435
 
436
- #: admin/admin.php:602
437
  #, fuzzy
438
  msgid "Show view count in list?"
439
  msgstr "Yazılış mətnini siyahıda göstərmək lazımdır?"
440
 
441
- #: admin/admin.php:608
442
  msgid "Always display latest post count in the daily lists?"
443
  msgstr ""
444
 
445
- #: admin/admin.php:611
446
  msgid ""
447
  "This option uses JavaScript and will increase your page load time. When you "
448
  "enable this option, the daily widget will not use the options set there, but "
449
  "options will need to be set on this screen."
450
  msgstr ""
451
 
452
- #: admin/admin.php:615
453
  msgid "Open links in new window"
454
  msgstr ""
455
 
456
- #: admin/admin.php:621
457
  msgid "Add nofollow attribute to links in the list"
458
  msgstr ""
459
 
460
- #: admin/admin.php:627
461
  msgid "Exclude display of related posts on these posts / pages"
462
  msgstr ""
463
 
464
- #: admin/admin.php:634
465
  #, fuzzy
466
  msgid "Customise the list HTML"
467
  msgstr "Suiyahı formasının kökləmələri:"
468
 
469
- #: admin/admin.php:637
470
  msgid "HTML to display before the list of posts: "
471
  msgstr "Siyahıdan qabaq istifadə edilən HTML-teqi:"
472
 
473
- #: admin/admin.php:643
474
  msgid "HTML to display before each list item: "
475
  msgstr "Siyahıda hər maddənin qabağında istifadə edilən HTML-teqi:"
476
 
477
- #: admin/admin.php:649
478
  msgid "HTML to display after each list item: "
479
  msgstr "Siyahıda hər maddədən sonra istifadə edilən HTML-teqi: "
480
 
481
- #: admin/admin.php:655
482
  msgid "HTML to display after the list of posts: "
483
  msgstr "Siyahıdan sonra istifadə edilən HTML-teqi:"
484
 
485
- #: admin/admin.php:696
486
  msgid "Location of post thumbnail:"
487
  msgstr ""
488
 
489
- #: admin/admin.php:700
490
  #, fuzzy
491
  msgid "Display thumbnails inline with posts, before title"
492
  msgstr "Mətni və əvvəlcədən baxışı göstərmək"
493
 
494
- #: admin/admin.php:705
495
  #, fuzzy
496
  msgid "Display thumbnails inline with posts, after title"
497
  msgstr "Mətni və əvvəlcədən baxışı göstərmək"
498
 
499
- #: admin/admin.php:710
500
  msgid "Display only thumbnails, no text"
501
  msgstr "Yalnız əvvəlcədən baxışı göstərmək, mətnsiz"
502
 
503
- #: admin/admin.php:715
504
  msgid "Do not display thumbnails, only text."
505
  msgstr "Yalnız mətini göstərmək, əvəlcədən baxışsız"
506
 
507
- #: admin/admin.php:719
508
  msgid "Thumbnail size:"
509
  msgstr ""
510
 
511
- #: admin/admin.php:743
512
  msgid "Custom size"
513
  msgstr ""
514
 
515
- #: admin/admin.php:746
516
  msgid ""
517
  "You can choose from existing image sizes above or create a custom size. If "
518
  "you have chosen Custom size above, then enter the width, height and crop "
519
  "settings below. For best results, use a cropped image."
520
  msgstr ""
521
 
522
- #: admin/admin.php:747
523
  msgid ""
524
  "If you change the width and/or height below, existing images will not be "
525
  "automatically resized."
526
  msgstr ""
527
 
528
- #: admin/admin.php:748
529
  #, php-format
530
  msgid ""
531
  "I recommend using <a href='%s' target='_blank'>Force Regenerate Thumbnails</"
@@ -533,79 +544,79 @@ msgid ""
533
  "regenerate all image sizes."
534
  msgstr ""
535
 
536
- #: admin/admin.php:751
537
  msgid "Width of custom thumbnail:"
538
  msgstr ""
539
 
540
- #: admin/admin.php:756
541
  msgid "Height of custom thumbnail"
542
  msgstr ""
543
 
544
- #: admin/admin.php:761
545
  msgid "Crop mode:"
546
  msgstr ""
547
 
548
- #: admin/admin.php:765
549
  msgid ""
550
  "By default, thumbnails will be proportionately cropped. Check this box to "
551
  "hard crop the thumbnails."
552
  msgstr ""
553
 
554
- #: admin/admin.php:766
555
  #, php-format
556
  msgid "<a href='%s' target='_blank'>Difference between soft and hard crop</a>"
557
  msgstr ""
558
 
559
- #: admin/admin.php:768
560
  msgid ""
561
  "Since you're using the default styles set under the Custom Styles section, "
562
  "the width and height is fixed at 65px and crop mode is enabled."
563
  msgstr ""
564
 
565
- #: admin/admin.php:773
566
  msgid "Style attributes / Width and Height HTML attributes:"
567
  msgstr ""
568
 
569
- #: admin/admin.php:777
570
  msgid "Style attributes are used for width and height."
571
  msgstr ""
572
 
573
- #: admin/admin.php:782
574
  msgid "HTML width and height attributes are used for width and height."
575
  msgstr ""
576
 
577
- #: admin/admin.php:786
578
  msgid "Use timthumb to generate thumbnails? "
579
  msgstr ""
580
 
581
- #: admin/admin.php:789
582
  msgid ""
583
  "If checked, <a href=\"http://www.binarymoon.co.uk/projects/timthumb/\" "
584
  "target=\"_blank\">timthumb</a> will be used to generate thumbnails"
585
  msgstr ""
586
 
587
- #: admin/admin.php:792
588
  msgid "Quality of thumbnails generated by timthumb:"
589
  msgstr ""
590
 
591
- #: admin/admin.php:795
592
  msgid ""
593
  "Enter values between 0 and 100 only. 100 is highest quality and the highest "
594
  "file size. Suggested maximum value is 95. Default is 75."
595
  msgstr ""
596
 
597
- #: admin/admin.php:798
598
  #, fuzzy
599
  msgid "Post thumbnail meta field name: "
600
  msgstr "Yazılışlara əvvəlcədən baxma kökləmələri:"
601
 
602
- #: admin/admin.php:801
603
  msgid ""
604
  "The value of this field should contain the image source and is set in the "
605
  "<em>Add New Post</em> screen"
606
  msgstr ""
607
 
608
- #: admin/admin.php:804
609
  #, fuzzy
610
  msgid ""
611
  "If the postmeta is not set, then should the plugin extract the first image "
@@ -615,7 +626,7 @@ msgstr ""
615
  "şəkilil çıxardacaq. Balaca kopyasını yaradılması ilə əlaqədar olaraq bu "
616
  "birinci dəfə şəkilin yükləməsini bir az uzada bilər. "
617
 
618
- #: admin/admin.php:807
619
  #, fuzzy
620
  msgid ""
621
  "This could slow down the loading of your page if the first image in the "
@@ -625,21 +636,21 @@ msgstr ""
625
  "şəkilil çıxardacaq. Balaca kopyasını yaradılması ilə əlaqədar olaraq bu "
626
  "birinci dəfə şəkilin yükləməsini bir az uzada bilər. "
627
 
628
- #: admin/admin.php:810
629
  msgid "Use default thumbnail? "
630
  msgstr ""
631
 
632
- #: admin/admin.php:813
633
  msgid ""
634
  "If checked, when no thumbnail is found, show a default one from the URL "
635
  "below. If not checked and no thumbnail is found, no image will be shown."
636
  msgstr ""
637
 
638
- #: admin/admin.php:816
639
  msgid "Default thumbnail: "
640
  msgstr ""
641
 
642
- #: admin/admin.php:820
643
  #, fuzzy
644
  msgid ""
645
  "The plugin will first check if the post contains a thumbnail. If it doesn't "
@@ -650,54 +661,54 @@ msgstr ""
650
  "əvvəlcədən verilmiş sərbəst meta-sahə üzrə). Agər əvvəlcədən baxış yoxdursan "
651
  "onda standard şəkil çıxarılacaq:"
652
 
653
- #: admin/admin.php:844
654
  msgid "Custom CSS"
655
  msgstr ""
656
 
657
- #: admin/admin.php:859
658
  msgid "Use default style included in the plugin?"
659
  msgstr ""
660
 
661
- #: admin/admin.php:862
662
  msgid ""
663
  "Top 10 includes a default style that makes your popular posts list to look "
664
  "beautiful. Check the box above if you want to use this."
665
  msgstr ""
666
 
667
- #: admin/admin.php:863
668
  msgid ""
669
  "Enabling this option will turn on the thumbnails and set their width and "
670
  "height to 65px. It will also turn off the display of the author, excerpt and "
671
  "date if already enabled. Disabling this option will not revert any settings."
672
  msgstr ""
673
 
674
- #: admin/admin.php:864
675
  #, php-format
676
  msgid ""
677
  "You can view the default style at <a href=\"%1$s\" target=\"_blank\">%1$s</a>"
678
  msgstr ""
679
 
680
- #: admin/admin.php:867
681
  msgid "Custom CSS to add to header:"
682
  msgstr ""
683
 
684
- #: admin/admin.php:872
685
  msgid ""
686
  "Do not include <code>style</code> tags. Check out the <a href=\"http://"
687
  "wordpress.org/extend/plugins/top-10/faq/\" target=\"_blank\">FAQ</a> for "
688
  "available CSS classes to style."
689
  msgstr ""
690
 
691
- #: admin/admin.php:892
692
  #, fuzzy
693
  msgid "Default Options"
694
  msgstr "Plaginin kökləmələri:"
695
 
696
- #: admin/admin.php:892
697
  msgid "Do you want to set options to Default?"
698
  msgstr "Siz plaginin kökləmələrin standard etmək lazımdır?"
699
 
700
- #: admin/admin.php:916
701
  msgid ""
702
  "Over time the Daily Top 10 database grows in size, which reduces the "
703
  "performance of the plugin. Cleaning the database at regular intervals could "
@@ -705,65 +716,65 @@ msgid ""
705
  "will automatically delete entries older than 90 days."
706
  msgstr ""
707
 
708
- #: admin/admin.php:917
709
  msgid ""
710
  "Note: When scheduled maintenance is enabled, WordPress will run the cron job "
711
  "everytime the job is rescheduled (i.e. you change the settings below)."
712
  msgstr ""
713
 
714
- #: admin/admin.php:920
715
  msgid "Enable scheduled maintenance of daily tables:"
716
  msgstr ""
717
 
718
- #: admin/admin.php:924
719
  msgid "Time to run maintenance"
720
  msgstr ""
721
 
722
- #: admin/admin.php:925
723
  msgid "hrs"
724
  msgstr ""
725
 
726
- #: admin/admin.php:925
727
  msgid "min"
728
  msgstr ""
729
 
730
- #: admin/admin.php:927
731
  msgid "How often should the maintenance be run:"
732
  msgstr ""
733
 
734
- #: admin/admin.php:931
735
  msgid "Daily"
736
  msgstr ""
737
 
738
- #: admin/admin.php:935
739
  msgid "Weekly"
740
  msgstr ""
741
 
742
- #: admin/admin.php:939
743
  msgid "Fortnightly"
744
  msgstr ""
745
 
746
- #: admin/admin.php:943
747
  msgid "Monthly"
748
  msgstr ""
749
 
750
- #: admin/admin.php:952
751
  msgid "The cron job has been scheduled. Maintenance will run "
752
  msgstr ""
753
 
754
- #: admin/admin.php:957
755
  msgid "The cron job is missing. Please resave this page to add the job"
756
  msgstr ""
757
 
758
- #: admin/admin.php:962
759
  msgid "Maintenance is turned off"
760
  msgstr ""
761
 
762
- #: admin/admin.php:976
763
  msgid "Reset count"
764
  msgstr "Statistikanı sbros etmək"
765
 
766
- #: admin/admin.php:979
767
  msgid ""
768
  "This cannot be reversed. Make sure that your database has been backed up "
769
  "before proceeding"
@@ -771,160 +782,170 @@ msgstr ""
771
  "Statistikanın sbrosu geriya qaytarmaq olmaz. Sbros etməkdən qabaq əmin olun "
772
  "ki, Sizin məlumat bazasının kopiyası var!"
773
 
774
- #: admin/admin.php:982
775
  #, fuzzy
776
  msgid "Reset Popular Posts"
777
  msgstr "Populyar yazılar"
778
 
779
- #: admin/admin.php:982
780
  msgid "Are you sure you want to reset the popular posts?"
781
  msgstr ""
782
  "Siz əminsiniz ki, Populyar yazıları statistikanı sbros etmək istəyirsiniz?"
783
 
784
- #: admin/admin.php:983
785
  #, fuzzy
786
  msgid "Reset Daily Popular Posts"
787
  msgstr "Gündəlik Populyar Yazılar"
788
 
789
- #: admin/admin.php:983
790
  msgid "Are you sure you want to reset the daily popular posts?"
791
  msgstr ""
792
  "Siz əminsiniz ki, gündəlik populyar yazıları statistikanı sbros etmək "
793
  "istəyirsiniz?"
794
 
795
- #: admin/admin.php:984
796
  msgid "Clear duplicates"
797
  msgstr ""
798
 
799
- #: admin/admin.php:984
800
  msgid "This will delete the duplicate entries in the tables. Proceed?"
801
  msgstr "Cədvəldəki dublikat yazılar silinəcəklər. Davam edək?"
802
 
803
- #: admin/admin.php:997
804
  msgid "WordPress Multisite: Migrate Top 10 v1.x counts to 2.x"
805
  msgstr ""
806
 
807
- #: admin/admin.php:1000
808
  msgid ""
809
  "If you've been using Top 10 v1.x on multisite, you would have needed to "
810
  "activate the plugin independently for each site. This would have resulted in "
811
- "two tables being created for each site in the network. Top 10 v2.x onwards "
812
- "uses only a single table to record the count, keeping your database clean. "
813
- "You can use this tool to import the recorded counts from v1.x tables to the "
814
- "new v2.x table format."
815
  msgstr ""
816
 
817
- #: admin/admin.php:1003
 
 
 
 
 
 
 
818
  msgid ""
819
  "If you do not see any tables below, then it means that either all data has "
820
  "already been imported or no relevant information has been found."
821
  msgstr ""
822
 
823
- #: admin/admin.php:1037
 
 
 
 
 
 
824
  msgid "Blog ID"
825
  msgstr ""
826
 
827
- #: admin/admin.php:1040
828
  msgid "Status"
829
  msgstr ""
830
 
831
- #: admin/admin.php:1043
832
  msgid "Select to import"
833
  msgstr ""
834
 
835
- #: admin/admin.php:1053
836
  msgid "Blog #"
837
  msgstr ""
838
 
839
- #: admin/admin.php:1063
840
  msgid "Not imported"
841
  msgstr ""
842
 
843
- #: admin/admin.php:1067
844
  msgid "Imported"
845
  msgstr ""
846
 
847
- #: admin/admin.php:1088
848
  msgid "Begin import"
849
  msgstr ""
850
 
851
- #: admin/admin.php:1089
852
  msgid "Delete selected tables"
853
  msgstr ""
854
 
855
- #: admin/admin.php:1090
856
  msgid "Delete all imported tables"
857
  msgstr ""
858
 
859
- #: admin/admin.php:1147 admin/admin.php:1243
860
  msgid "Daily Popular Posts"
861
  msgstr "Gündəlik Populyar Yazılar"
862
 
863
- #: admin/admin.php:1177
864
  msgid "Support the development"
865
  msgstr "İnkişafı dəstək vermək"
866
 
867
- #: admin/admin.php:1184
868
  msgid "Donation for Top 10"
869
  msgstr ""
870
 
871
- #: admin/admin.php:1186
872
  msgid "Enter amount in USD: "
873
  msgstr "Miiqdarı USD ilə daxil et:"
874
 
875
- #: admin/admin.php:1190
876
  #, fuzzy
877
  msgid "Send your donation to the author of Top 10"
878
  msgstr "Müəlifə ianə göndərin "
879
 
880
- #: admin/admin.php:1197
881
  msgid "Follow me"
882
  msgstr ""
883
 
884
- #: admin/admin.php:1207
885
  #, fuzzy
886
  msgid "Quick links"
887
  msgstr "Faydalı istenadlar"
888
 
889
- #: admin/admin.php:1211
890
  #, fuzzy
891
  msgid "Top 10 plugin page"
892
  msgstr "plaginin səhifəsi"
893
 
894
- #: admin/admin.php:1212
895
  msgid "Top 10 Github page"
896
  msgstr ""
897
 
898
- #: admin/admin.php:1213
899
  msgid "Other plugins"
900
  msgstr "Digər plaginlər"
901
 
902
- #: admin/admin.php:1214
903
  msgid "Ajay's blog"
904
  msgstr "Ajay-in blogu"
905
 
906
- #: admin/admin.php:1215
907
  msgid "FAQ"
908
  msgstr ""
909
 
910
- #: admin/admin.php:1216 admin/admin.php:1374
911
  msgid "Support"
912
  msgstr "Dəstək"
913
 
914
- #: admin/admin.php:1217
915
  msgid "Reviews"
916
  msgstr ""
917
 
918
- #: admin/admin.php:1240
919
  #, fuzzy
920
  msgid "Overall Popular Posts"
921
  msgstr "Bütün Populyar Yazılara Baxmaq"
922
 
923
- #: admin/admin.php:1351
924
  msgid "Settings"
925
  msgstr "Kökləmələr"
926
 
927
- #: admin/admin.php:1375
928
  msgid "Donate"
929
  msgstr "İanə etmək"
930
 
@@ -1016,41 +1037,41 @@ msgstr "Yazılışlara əvvəlcədən baxma kökləmələri:"
1016
  msgid "Thumbnail width"
1017
  msgstr "Yazılışlara əvvəlcədən baxma kökləmələri:"
1018
 
1019
- #: top-10.php:866
1020
  msgid " by "
1021
  msgstr ""
1022
 
1023
- #: top-10.php:917
1024
  #, php-format
1025
  msgid "Popular posts by <a href=\"%s\" rel=\"nofollow\" %s>Top 10 plugin</a>"
1026
  msgstr ""
1027
 
1028
- #: top-10.php:1016
1029
  msgid "<h3>Popular Posts</h3>"
1030
  msgstr "<h3>Populyar yazılar</h3>"
1031
 
1032
- #: top-10.php:1017
1033
  msgid "<h3>Daily Popular</h3>"
1034
  msgstr "<h3>Gündəlik Populyar</h3>"
1035
 
1036
- #: top-10.php:1018
1037
  #, fuzzy
1038
  msgid "No top posts yet"
1039
  msgstr "10 populyar yazı statisticasını pozmaq"
1040
 
1041
- #: top-10.php:1668
1042
  msgid "Once Weekly"
1043
  msgstr ""
1044
 
1045
- #: top-10.php:1672
1046
  msgid "Once Fortnightly"
1047
  msgstr ""
1048
 
1049
- #: top-10.php:1676
1050
  msgid "Once Monthly"
1051
  msgstr ""
1052
 
1053
- #: top-10.php:1680
1054
  msgid "Once quarterly"
1055
  msgstr ""
1056
 
2
  msgstr ""
3
  "Project-Id-Version: Топ 10\n"
4
  "Report-Msgid-Bugs-To: \n"
5
+ "POT-Creation-Date: 2015-01-01 21:54-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"
61
  msgid "Next"
62
  msgstr "Sonrakı"
63
 
64
+ #: admin/admin-dashboard.php:200 admin/admin.php:1157
65
  msgid "Popular Posts"
66
  msgstr "Populyar yazılar"
67
 
69
  msgid "Daily Popular"
70
  msgstr "Gündəlik Populyar"
71
 
72
+ #: admin/admin-metabox.php:38 admin/admin.php:1246
73
  msgid "Top 10"
74
  msgstr "Top 10 yazılar"
75
 
99
  msgid "The URL above is saved in the meta field: "
100
  msgstr ""
101
 
102
+ #: admin/admin.php:161
103
  msgid "Options saved successfully."
104
  msgstr "Opsiyalar müvəffəqiyyətlə yaddaşda saxlanılıb."
105
 
106
+ #: admin/admin.php:171
107
  msgid "Options set to Default."
108
  msgstr "Opsiyalalr standard opsiyasına qaytarılıb."
109
 
110
+ #: admin/admin.php:177
111
  msgid "Top 10 popular posts reset"
112
  msgstr "10 populyar yazı statisticasını pozmaq"
113
 
114
+ #: admin/admin.php:183
115
  msgid "Top 10 daily popular posts reset"
116
  msgstr "10 gündəlik populyar yazı statisticasını pozmaq"
117
 
118
+ #: admin/admin.php:190
119
  msgid "Duplicate rows cleaned from tables"
120
  msgstr ""
121
 
122
+ #: admin/admin.php:202
123
  msgid "Scheduled maintenance enabled / modified"
124
  msgstr ""
125
 
126
+ #: admin/admin.php:206
127
  msgid "Scheduled maintenance disabled"
128
  msgstr ""
129
 
130
+ #: admin/admin.php:245
131
  msgid "Counts from selected sites have been imported."
132
  msgstr ""
133
 
134
+ #: admin/admin.php:270
135
  msgid ""
136
  "Selected tables have been deleted. Note that only imported tables have been "
137
  "deleted."
138
  msgstr ""
139
 
140
+ #: admin/admin.php:278 admin/admin.php:1246 admin/admin.php:1249
141
  #, fuzzy
142
  msgid "Top 10 Settings"
143
  msgstr "Kökləmələr"
144
 
145
+ #: admin/admin.php:290 admin/admin.php:312
146
  msgid "General options"
147
  msgstr ""
148
 
149
+ #: admin/admin.php:291 admin/admin.php:389
150
  msgid "Counter and tracker options"
151
  msgstr ""
152
 
153
+ #: admin/admin.php:292 admin/admin.php:494
154
  msgid "Popular post list options"
155
  msgstr ""
156
 
157
+ #: admin/admin.php:293 admin/admin.php:689
158
  #: includes/class-top-10-widget.php:103
159
  #, fuzzy
160
  msgid "Thumbnail options"
161
  msgstr "Yazılışlara əvvəlcədən baxma kökləmələri:"
162
 
163
+ #: admin/admin.php:294
164
  msgid "Custom styles"
165
  msgstr ""
166
 
167
+ #: admin/admin.php:295 admin/admin.php:920
168
  msgid "Maintenance"
169
  msgstr ""
170
 
171
+ #: admin/admin.php:311 admin/admin.php:388 admin/admin.php:493
172
+ #: admin/admin.php:688 admin/admin.php:851 admin/admin.php:919
173
+ #: admin/admin.php:983 admin/admin.php:1004 admin/admin.php:1188
174
+ #: admin/admin.php:1208 admin/admin.php:1218
175
  msgid "Click to toggle"
176
  msgstr ""
177
 
178
+ #: admin/admin.php:328
179
  msgid "Enable Overall stats"
180
  msgstr ""
181
 
182
+ #: admin/admin.php:334
183
  msgid "Enable Daily stats"
184
  msgstr ""
185
 
186
+ #: admin/admin.php:340
187
  msgid "Cache fix:"
188
  msgstr ""
189
 
190
+ #: admin/admin.php:343
191
  msgid ""
192
  "This will try to prevent W3 Total Cache and other caching plugins from "
193
  "caching the tracker script of the plugin. Try toggling this option in case "
194
  "you find that your posts are not tracked."
195
  msgstr ""
196
 
197
+ #: admin/admin.php:347
198
+ msgid "Start daily counts from midnight:"
199
+ msgstr ""
200
+
201
+ #: admin/admin.php:350
202
+ msgid ""
203
+ "Daily counter will display number of visits from midnight. This option is "
204
+ "checked by default and mimics the way most normal counters work. Turning "
205
+ "this off will allow you to use the hourly setting in the next option."
206
+ msgstr ""
207
+
208
+ #: admin/admin.php:354
209
+ msgid "Daily popular contains top posts over:"
210
+ msgstr ""
211
+
212
+ #: admin/admin.php:356
213
+ msgid "day(s)"
214
+ msgstr ""
215
+
216
+ #: admin/admin.php:357
217
+ msgid "hour(s)"
218
+ msgstr ""
219
+
220
+ #: admin/admin.php:358
221
+ msgid ""
222
+ "Think of Daily Popular has a custom date range applied as a global setting. "
223
+ "Instead of displaying popular posts from the past day, this setting lets you "
224
+ "display posts for as many days or as few hours as you want. This can be "
225
+ "overridden in the widget."
226
+ msgstr ""
227
+
228
+ #: admin/admin.php:362
229
  msgid "Link to Top 10 plugin page"
230
  msgstr ""
231
 
232
+ #: admin/admin.php:365
233
  #, fuzzy
234
  msgid ""
235
  "A link to the plugin is added as an extra list item to the list of popular "
238
  "Popyulyar siyahının altnda ssılkanı qoymaq lazımdır? Plaginin müəllifi Siz "
239
  "onu qoyduğunuz halda Sizə çox minnətdar olardı!"
240
 
241
+ #: admin/admin.php:370 admin/admin.php:475 admin/admin.php:670
242
+ #: admin/admin.php:833 admin/admin.php:899 admin/admin.php:976
243
  #, fuzzy
244
  msgid "Save Options"
245
  msgstr "Opsiyalar:"
246
 
247
+ #: admin/admin.php:405
248
  #, fuzzy
249
  msgid "Display number of views on:"
250
  msgstr "Posta baxılmasının miqdarını göstərmək lazımdır?"
251
 
252
+ #: admin/admin.php:407
253
  msgid "Posts"
254
  msgstr ""
255
 
256
+ #: admin/admin.php:408
257
  #, fuzzy
258
  msgid "Pages"
259
  msgstr "Səhifə"
260
 
261
+ #: admin/admin.php:409
262
  msgid "Home page"
263
  msgstr ""
264
 
265
+ #: admin/admin.php:410
266
  msgid "Feeds"
267
  msgstr ""
268
 
269
+ #: admin/admin.php:411
270
  msgid "Category archives"
271
  msgstr ""
272
 
273
+ #: admin/admin.php:412
274
  msgid "Tag archives"
275
  msgstr ""
276
 
277
+ #: admin/admin.php:413
278
  msgid "Other archives"
279
  msgstr ""
280
 
281
+ #: admin/admin.php:414
282
  msgid ""
283
  "If you choose to disable this, please add <code>&lt;?php if "
284
  "( function_exists ( 'echo_tptn_post_count' ) ) echo_tptn_post_count(); ?&gt;"
285
  "</code> to your template file where you want it displayed"
286
  msgstr ""
287
 
288
+ #: admin/admin.php:418
289
  #, fuzzy
290
  msgid "Format to display the post views:"
291
  msgstr "Miqdarı göstərən format:"
292
 
293
+ #: admin/admin.php:421
294
  msgid ""
295
  "Use <code>%totalcount%</code> to display the total count, <code>%dailycount"
296
  "%</code> to display the daily count and <code>%overallcount%</code> to "
298
  "options displays <code>[Visited 123 times, 23 visits today]</code>"
299
  msgstr ""
300
 
301
+ #: admin/admin.php:425
302
  msgid "What do display when there are no visits?"
303
  msgstr ""
304
 
305
+ #: admin/admin.php:428
306
  msgid ""
307
  "This text applies only when there are 0 hits for the post and it isn't a "
308
  "single page. e.g. if you display post views on the homepage or archives then "
310
  "option."
311
  msgstr ""
312
 
313
+ #: admin/admin.php:432
314
  msgid "Always display latest post count"
315
  msgstr ""
316
 
317
+ #: admin/admin.php:435
318
  msgid ""
319
  "This option uses JavaScript and will increase your page load time. Turn this "
320
  "off if you are not using caching plugins or are OK with displaying older "
321
  "cached counts."
322
  msgstr ""
323
 
324
+ #: admin/admin.php:439
325
  msgid "Track visits of authors on their own posts?"
326
  msgstr "Müəllif tərəfindən edilmiş yazıları nəzərə almaq lazımdır?"
327
 
328
+ #: admin/admin.php:442
329
  msgid ""
330
  "Disabling this option will stop authors visits tracked on their own posts"
331
  msgstr ""
332
 
333
+ #: admin/admin.php:446
334
  #, fuzzy
335
  msgid "Track visits of admins?"
336
  msgstr "Müəllif tərəfindən edilmiş yazıları nəzərə almaq lazımdır?"
337
 
338
+ #: admin/admin.php:449
339
  msgid "Disabling this option will stop admin visits being tracked."
340
  msgstr ""
341
 
342
+ #: admin/admin.php:453
343
  #, fuzzy
344
  msgid "Track visits of Editors?"
345
  msgstr "Müəllif tərəfindən edilmiş yazıları nəzərə almaq lazımdır?"
346
 
347
+ #: admin/admin.php:456
348
  msgid "Disabling this option will stop editor visits being tracked."
349
  msgstr ""
350
 
351
+ #: admin/admin.php:460
352
  msgid "Display page views on Posts and Pages in Admin"
353
  msgstr ""
354
 
355
+ #: admin/admin.php:463
356
  msgid ""
357
  "Adds three columns called Total Views, Today's Views and Views to All Posts "
358
  "and All Pages"
359
  msgstr ""
360
 
361
+ #: admin/admin.php:467
362
  #, fuzzy
363
  msgid "Show number of views to non-admins"
364
  msgstr "Səhifədə baxılmasının miqdarını göstərmək lazımdır?"
365
 
366
+ #: admin/admin.php:470
367
  msgid ""
368
  "If you disable this then non-admins won't see the above columns or view the "
369
  "independent pages with the top posts"
370
  msgstr ""
371
 
372
+ #: admin/admin.php:510
373
  msgid "Number of popular posts to display: "
374
  msgstr "Populyar postların miqdarının nümayişi:"
375
 
376
+ #: admin/admin.php:513
377
  msgid ""
378
  "Maximum number of posts that will be displayed in the list. This option is "
379
  "used if you don't specify the number of posts in the widget or shortcodes"
380
  msgstr ""
381
 
382
+ #: admin/admin.php:517
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
383
  msgid "Post types to include in results (including custom post types)"
384
  msgstr ""
385
 
386
+ #: admin/admin.php:529
387
  msgid "List of post or page IDs to exclude from the results: "
388
  msgstr ""
389
 
390
+ #: admin/admin.php:531 admin/admin.php:638
391
  msgid "Enter comma separated list of IDs. e.g. 188,320,500"
392
  msgstr ""
393
 
394
+ #: admin/admin.php:535
395
  msgid "Exclude Categories: "
396
  msgstr ""
397
 
398
+ #: admin/admin.php:550
399
  msgid ""
400
  "Comma separated list of category slugs. The field above has an autocomplete "
401
  "so simply start typing in the starting letters and it will prompt you with "
402
  "options"
403
  msgstr ""
404
 
405
+ #: admin/admin.php:555
406
  msgid "Title of popular posts: "
407
  msgstr "Populyar yazılarının başlığı:"
408
 
409
+ #: admin/admin.php:561
410
  msgid "Title of daily popular posts: "
411
  msgstr "Gündəlik populyual yazılışların başlığı:"
412
 
413
+ #: admin/admin.php:567
414
  msgid "When there are no posts, what should be shown?"
415
  msgstr ""
416
 
417
+ #: admin/admin.php:571
418
  msgid "Blank Output"
419
  msgstr ""
420
 
421
+ #: admin/admin.php:575
422
  msgid "Display:"
423
  msgstr ""
424
 
425
+ #: admin/admin.php:580
426
  msgid "Show post excerpt in list?"
427
  msgstr "Yazılış mətnini siyahıda göstərmək lazımdır?"
428
 
429
+ #: admin/admin.php:586
430
  msgid "Length of excerpt (in words): "
431
  msgstr "Çıxardılmış mətnin uzunluğu (söz ilə):"
432
 
433
+ #: admin/admin.php:592
434
  #, fuzzy
435
  msgid "Show post author in list?"
436
  msgstr "Yazılış mətnini siyahıda göstərmək lazımdır?"
437
 
438
+ #: admin/admin.php:598
439
  #, fuzzy
440
  msgid "Show post date in list?"
441
  msgstr "Yazılış mətnini siyahıda göstərmək lazımdır?"
442
 
443
+ #: admin/admin.php:604
444
  msgid "Limit post title length (in characters)"
445
  msgstr ""
446
 
447
+ #: admin/admin.php:610
448
  #, fuzzy
449
  msgid "Show view count in list?"
450
  msgstr "Yazılış mətnini siyahıda göstərmək lazımdır?"
451
 
452
+ #: admin/admin.php:616
453
  msgid "Always display latest post count in the daily lists?"
454
  msgstr ""
455
 
456
+ #: admin/admin.php:619
457
  msgid ""
458
  "This option uses JavaScript and will increase your page load time. When you "
459
  "enable this option, the daily widget will not use the options set there, but "
460
  "options will need to be set on this screen."
461
  msgstr ""
462
 
463
+ #: admin/admin.php:623
464
  msgid "Open links in new window"
465
  msgstr ""
466
 
467
+ #: admin/admin.php:629
468
  msgid "Add nofollow attribute to links in the list"
469
  msgstr ""
470
 
471
+ #: admin/admin.php:635
472
  msgid "Exclude display of related posts on these posts / pages"
473
  msgstr ""
474
 
475
+ #: admin/admin.php:642
476
  #, fuzzy
477
  msgid "Customise the list HTML"
478
  msgstr "Suiyahı formasının kökləmələri:"
479
 
480
+ #: admin/admin.php:645
481
  msgid "HTML to display before the list of posts: "
482
  msgstr "Siyahıdan qabaq istifadə edilən HTML-teqi:"
483
 
484
+ #: admin/admin.php:651
485
  msgid "HTML to display before each list item: "
486
  msgstr "Siyahıda hər maddənin qabağında istifadə edilən HTML-teqi:"
487
 
488
+ #: admin/admin.php:657
489
  msgid "HTML to display after each list item: "
490
  msgstr "Siyahıda hər maddədən sonra istifadə edilən HTML-teqi: "
491
 
492
+ #: admin/admin.php:663
493
  msgid "HTML to display after the list of posts: "
494
  msgstr "Siyahıdan sonra istifadə edilən HTML-teqi:"
495
 
496
+ #: admin/admin.php:704
497
  msgid "Location of post thumbnail:"
498
  msgstr ""
499
 
500
+ #: admin/admin.php:708
501
  #, fuzzy
502
  msgid "Display thumbnails inline with posts, before title"
503
  msgstr "Mətni və əvvəlcədən baxışı göstərmək"
504
 
505
+ #: admin/admin.php:713
506
  #, fuzzy
507
  msgid "Display thumbnails inline with posts, after title"
508
  msgstr "Mətni və əvvəlcədən baxışı göstərmək"
509
 
510
+ #: admin/admin.php:718
511
  msgid "Display only thumbnails, no text"
512
  msgstr "Yalnız əvvəlcədən baxışı göstərmək, mətnsiz"
513
 
514
+ #: admin/admin.php:723
515
  msgid "Do not display thumbnails, only text."
516
  msgstr "Yalnız mətini göstərmək, əvəlcədən baxışsız"
517
 
518
+ #: admin/admin.php:727
519
  msgid "Thumbnail size:"
520
  msgstr ""
521
 
522
+ #: admin/admin.php:751
523
  msgid "Custom size"
524
  msgstr ""
525
 
526
+ #: admin/admin.php:754
527
  msgid ""
528
  "You can choose from existing image sizes above or create a custom size. If "
529
  "you have chosen Custom size above, then enter the width, height and crop "
530
  "settings below. For best results, use a cropped image."
531
  msgstr ""
532
 
533
+ #: admin/admin.php:755
534
  msgid ""
535
  "If you change the width and/or height below, existing images will not be "
536
  "automatically resized."
537
  msgstr ""
538
 
539
+ #: admin/admin.php:756
540
  #, php-format
541
  msgid ""
542
  "I recommend using <a href='%s' target='_blank'>Force Regenerate Thumbnails</"
544
  "regenerate all image sizes."
545
  msgstr ""
546
 
547
+ #: admin/admin.php:759
548
  msgid "Width of custom thumbnail:"
549
  msgstr ""
550
 
551
+ #: admin/admin.php:764
552
  msgid "Height of custom thumbnail"
553
  msgstr ""
554
 
555
+ #: admin/admin.php:769
556
  msgid "Crop mode:"
557
  msgstr ""
558
 
559
+ #: admin/admin.php:773
560
  msgid ""
561
  "By default, thumbnails will be proportionately cropped. Check this box to "
562
  "hard crop the thumbnails."
563
  msgstr ""
564
 
565
+ #: admin/admin.php:774
566
  #, php-format
567
  msgid "<a href='%s' target='_blank'>Difference between soft and hard crop</a>"
568
  msgstr ""
569
 
570
+ #: admin/admin.php:776
571
  msgid ""
572
  "Since you're using the default styles set under the Custom Styles section, "
573
  "the width and height is fixed at 65px and crop mode is enabled."
574
  msgstr ""
575
 
576
+ #: admin/admin.php:781
577
  msgid "Style attributes / Width and Height HTML attributes:"
578
  msgstr ""
579
 
580
+ #: admin/admin.php:785
581
  msgid "Style attributes are used for width and height."
582
  msgstr ""
583
 
584
+ #: admin/admin.php:790
585
  msgid "HTML width and height attributes are used for width and height."
586
  msgstr ""
587
 
588
+ #: admin/admin.php:794
589
  msgid "Use timthumb to generate thumbnails? "
590
  msgstr ""
591
 
592
+ #: admin/admin.php:797
593
  msgid ""
594
  "If checked, <a href=\"http://www.binarymoon.co.uk/projects/timthumb/\" "
595
  "target=\"_blank\">timthumb</a> will be used to generate thumbnails"
596
  msgstr ""
597
 
598
+ #: admin/admin.php:800
599
  msgid "Quality of thumbnails generated by timthumb:"
600
  msgstr ""
601
 
602
+ #: admin/admin.php:803
603
  msgid ""
604
  "Enter values between 0 and 100 only. 100 is highest quality and the highest "
605
  "file size. Suggested maximum value is 95. Default is 75."
606
  msgstr ""
607
 
608
+ #: admin/admin.php:806
609
  #, fuzzy
610
  msgid "Post thumbnail meta field name: "
611
  msgstr "Yazılışlara əvvəlcədən baxma kökləmələri:"
612
 
613
+ #: admin/admin.php:809
614
  msgid ""
615
  "The value of this field should contain the image source and is set in the "
616
  "<em>Add New Post</em> screen"
617
  msgstr ""
618
 
619
+ #: admin/admin.php:812
620
  #, fuzzy
621
  msgid ""
622
  "If the postmeta is not set, then should the plugin extract the first image "
626
  "şəkilil çıxardacaq. Balaca kopyasını yaradılması ilə əlaqədar olaraq bu "
627
  "birinci dəfə şəkilin yükləməsini bir az uzada bilər. "
628
 
629
+ #: admin/admin.php:815
630
  #, fuzzy
631
  msgid ""
632
  "This could slow down the loading of your page if the first image in the "
636
  "şəkilil çıxardacaq. Balaca kopyasını yaradılması ilə əlaqədar olaraq bu "
637
  "birinci dəfə şəkilin yükləməsini bir az uzada bilər. "
638
 
639
+ #: admin/admin.php:818
640
  msgid "Use default thumbnail? "
641
  msgstr ""
642
 
643
+ #: admin/admin.php:821
644
  msgid ""
645
  "If checked, when no thumbnail is found, show a default one from the URL "
646
  "below. If not checked and no thumbnail is found, no image will be shown."
647
  msgstr ""
648
 
649
+ #: admin/admin.php:824
650
  msgid "Default thumbnail: "
651
  msgstr ""
652
 
653
+ #: admin/admin.php:828
654
  #, fuzzy
655
  msgid ""
656
  "The plugin will first check if the post contains a thumbnail. If it doesn't "
661
  "əvvəlcədən verilmiş sərbəst meta-sahə üzrə). Agər əvvəlcədən baxış yoxdursan "
662
  "onda standard şəkil çıxarılacaq:"
663
 
664
+ #: admin/admin.php:852
665
  msgid "Custom CSS"
666
  msgstr ""
667
 
668
+ #: admin/admin.php:867
669
  msgid "Use default style included in the plugin?"
670
  msgstr ""
671
 
672
+ #: admin/admin.php:870
673
  msgid ""
674
  "Top 10 includes a default style that makes your popular posts list to look "
675
  "beautiful. Check the box above if you want to use this."
676
  msgstr ""
677
 
678
+ #: admin/admin.php:871
679
  msgid ""
680
  "Enabling this option will turn on the thumbnails and set their width and "
681
  "height to 65px. It will also turn off the display of the author, excerpt and "
682
  "date if already enabled. Disabling this option will not revert any settings."
683
  msgstr ""
684
 
685
+ #: admin/admin.php:872
686
  #, php-format
687
  msgid ""
688
  "You can view the default style at <a href=\"%1$s\" target=\"_blank\">%1$s</a>"
689
  msgstr ""
690
 
691
+ #: admin/admin.php:875
692
  msgid "Custom CSS to add to header:"
693
  msgstr ""
694
 
695
+ #: admin/admin.php:880
696
  msgid ""
697
  "Do not include <code>style</code> tags. Check out the <a href=\"http://"
698
  "wordpress.org/extend/plugins/top-10/faq/\" target=\"_blank\">FAQ</a> for "
699
  "available CSS classes to style."
700
  msgstr ""
701
 
702
+ #: admin/admin.php:900
703
  #, fuzzy
704
  msgid "Default Options"
705
  msgstr "Plaginin kökləmələri:"
706
 
707
+ #: admin/admin.php:900
708
  msgid "Do you want to set options to Default?"
709
  msgstr "Siz plaginin kökləmələrin standard etmək lazımdır?"
710
 
711
+ #: admin/admin.php:924
712
  msgid ""
713
  "Over time the Daily Top 10 database grows in size, which reduces the "
714
  "performance of the plugin. Cleaning the database at regular intervals could "
716
  "will automatically delete entries older than 90 days."
717
  msgstr ""
718
 
719
+ #: admin/admin.php:925
720
  msgid ""
721
  "Note: When scheduled maintenance is enabled, WordPress will run the cron job "
722
  "everytime the job is rescheduled (i.e. you change the settings below)."
723
  msgstr ""
724
 
725
+ #: admin/admin.php:928
726
  msgid "Enable scheduled maintenance of daily tables:"
727
  msgstr ""
728
 
729
+ #: admin/admin.php:932
730
  msgid "Time to run maintenance"
731
  msgstr ""
732
 
733
+ #: admin/admin.php:933
734
  msgid "hrs"
735
  msgstr ""
736
 
737
+ #: admin/admin.php:933
738
  msgid "min"
739
  msgstr ""
740
 
741
+ #: admin/admin.php:935
742
  msgid "How often should the maintenance be run:"
743
  msgstr ""
744
 
745
+ #: admin/admin.php:939
746
  msgid "Daily"
747
  msgstr ""
748
 
749
+ #: admin/admin.php:943
750
  msgid "Weekly"
751
  msgstr ""
752
 
753
+ #: admin/admin.php:947
754
  msgid "Fortnightly"
755
  msgstr ""
756
 
757
+ #: admin/admin.php:951
758
  msgid "Monthly"
759
  msgstr ""
760
 
761
+ #: admin/admin.php:960
762
  msgid "The cron job has been scheduled. Maintenance will run "
763
  msgstr ""
764
 
765
+ #: admin/admin.php:965
766
  msgid "The cron job is missing. Please resave this page to add the job"
767
  msgstr ""
768
 
769
+ #: admin/admin.php:970
770
  msgid "Maintenance is turned off"
771
  msgstr ""
772
 
773
+ #: admin/admin.php:984
774
  msgid "Reset count"
775
  msgstr "Statistikanı sbros etmək"
776
 
777
+ #: admin/admin.php:987
778
  msgid ""
779
  "This cannot be reversed. Make sure that your database has been backed up "
780
  "before proceeding"
782
  "Statistikanın sbrosu geriya qaytarmaq olmaz. Sbros etməkdən qabaq əmin olun "
783
  "ki, Sizin məlumat bazasının kopiyası var!"
784
 
785
+ #: admin/admin.php:990
786
  #, fuzzy
787
  msgid "Reset Popular Posts"
788
  msgstr "Populyar yazılar"
789
 
790
+ #: admin/admin.php:990
791
  msgid "Are you sure you want to reset the popular posts?"
792
  msgstr ""
793
  "Siz əminsiniz ki, Populyar yazıları statistikanı sbros etmək istəyirsiniz?"
794
 
795
+ #: admin/admin.php:991
796
  #, fuzzy
797
  msgid "Reset Daily Popular Posts"
798
  msgstr "Gündəlik Populyar Yazılar"
799
 
800
+ #: admin/admin.php:991
801
  msgid "Are you sure you want to reset the daily popular posts?"
802
  msgstr ""
803
  "Siz əminsiniz ki, gündəlik populyar yazıları statistikanı sbros etmək "
804
  "istəyirsiniz?"
805
 
806
+ #: admin/admin.php:992
807
  msgid "Clear duplicates"
808
  msgstr ""
809
 
810
+ #: admin/admin.php:992
811
  msgid "This will delete the duplicate entries in the tables. Proceed?"
812
  msgstr "Cədvəldəki dublikat yazılar silinəcəklər. Davam edək?"
813
 
814
+ #: admin/admin.php:1005
815
  msgid "WordPress Multisite: Migrate Top 10 v1.x counts to 2.x"
816
  msgstr ""
817
 
818
+ #: admin/admin.php:1008
819
  msgid ""
820
  "If you've been using Top 10 v1.x on multisite, you would have needed to "
821
  "activate the plugin independently for each site. This would have resulted in "
822
+ "two tables being created for each site in the network."
 
 
 
823
  msgstr ""
824
 
825
+ #: admin/admin.php:1009
826
+ msgid ""
827
+ "Top 10 v2.x onwards uses only a single table to record the count, keeping "
828
+ "your database clean. You can use this tool to import the recorded counts "
829
+ "from v1.x tables to the new v2.x table format."
830
+ msgstr ""
831
+
832
+ #: admin/admin.php:1012
833
  msgid ""
834
  "If you do not see any tables below, then it means that either all data has "
835
  "already been imported or no relevant information has been found."
836
  msgstr ""
837
 
838
+ #: admin/admin.php:1015
839
+ msgid ""
840
+ "After running the importer, please verify that all the counts have been "
841
+ "successfully imported. Only then should you delete any old tables!"
842
+ msgstr ""
843
+
844
+ #: admin/admin.php:1049
845
  msgid "Blog ID"
846
  msgstr ""
847
 
848
+ #: admin/admin.php:1052
849
  msgid "Status"
850
  msgstr ""
851
 
852
+ #: admin/admin.php:1055
853
  msgid "Select to import"
854
  msgstr ""
855
 
856
+ #: admin/admin.php:1065
857
  msgid "Blog #"
858
  msgstr ""
859
 
860
+ #: admin/admin.php:1075
861
  msgid "Not imported"
862
  msgstr ""
863
 
864
+ #: admin/admin.php:1079
865
  msgid "Imported"
866
  msgstr ""
867
 
868
+ #: admin/admin.php:1100
869
  msgid "Begin import"
870
  msgstr ""
871
 
872
+ #: admin/admin.php:1101
873
  msgid "Delete selected tables"
874
  msgstr ""
875
 
876
+ #: admin/admin.php:1102
877
  msgid "Delete all imported tables"
878
  msgstr ""
879
 
880
+ #: admin/admin.php:1159 admin/admin.php:1255
881
  msgid "Daily Popular Posts"
882
  msgstr "Gündəlik Populyar Yazılar"
883
 
884
+ #: admin/admin.php:1189
885
  msgid "Support the development"
886
  msgstr "İnkişafı dəstək vermək"
887
 
888
+ #: admin/admin.php:1196
889
  msgid "Donation for Top 10"
890
  msgstr ""
891
 
892
+ #: admin/admin.php:1198
893
  msgid "Enter amount in USD: "
894
  msgstr "Miiqdarı USD ilə daxil et:"
895
 
896
+ #: admin/admin.php:1202
897
  #, fuzzy
898
  msgid "Send your donation to the author of Top 10"
899
  msgstr "Müəlifə ianə göndərin "
900
 
901
+ #: admin/admin.php:1209
902
  msgid "Follow me"
903
  msgstr ""
904
 
905
+ #: admin/admin.php:1219
906
  #, fuzzy
907
  msgid "Quick links"
908
  msgstr "Faydalı istenadlar"
909
 
910
+ #: admin/admin.php:1223
911
  #, fuzzy
912
  msgid "Top 10 plugin page"
913
  msgstr "plaginin səhifəsi"
914
 
915
+ #: admin/admin.php:1224
916
  msgid "Top 10 Github page"
917
  msgstr ""
918
 
919
+ #: admin/admin.php:1225
920
  msgid "Other plugins"
921
  msgstr "Digər plaginlər"
922
 
923
+ #: admin/admin.php:1226
924
  msgid "Ajay's blog"
925
  msgstr "Ajay-in blogu"
926
 
927
+ #: admin/admin.php:1227
928
  msgid "FAQ"
929
  msgstr ""
930
 
931
+ #: admin/admin.php:1228 admin/admin.php:1386
932
  msgid "Support"
933
  msgstr "Dəstək"
934
 
935
+ #: admin/admin.php:1229
936
  msgid "Reviews"
937
  msgstr ""
938
 
939
+ #: admin/admin.php:1252
940
  #, fuzzy
941
  msgid "Overall Popular Posts"
942
  msgstr "Bütün Populyar Yazılara Baxmaq"
943
 
944
+ #: admin/admin.php:1363
945
  msgid "Settings"
946
  msgstr "Kökləmələr"
947
 
948
+ #: admin/admin.php:1387
949
  msgid "Donate"
950
  msgstr "İanə etmək"
951
 
1037
  msgid "Thumbnail width"
1038
  msgstr "Yazılışlara əvvəlcədən baxma kökləmələri:"
1039
 
1040
+ #: top-10.php:879
1041
  msgid " by "
1042
  msgstr ""
1043
 
1044
+ #: top-10.php:930
1045
  #, php-format
1046
  msgid "Popular posts by <a href=\"%s\" rel=\"nofollow\" %s>Top 10 plugin</a>"
1047
  msgstr ""
1048
 
1049
+ #: top-10.php:1029
1050
  msgid "<h3>Popular Posts</h3>"
1051
  msgstr "<h3>Populyar yazılar</h3>"
1052
 
1053
+ #: top-10.php:1030
1054
  msgid "<h3>Daily Popular</h3>"
1055
  msgstr "<h3>Gündəlik Populyar</h3>"
1056
 
1057
+ #: top-10.php:1031
1058
  #, fuzzy
1059
  msgid "No top posts yet"
1060
  msgstr "10 populyar yazı statisticasını pozmaq"
1061
 
1062
+ #: top-10.php:1676
1063
  msgid "Once Weekly"
1064
  msgstr ""
1065
 
1066
+ #: top-10.php:1680
1067
  msgid "Once Fortnightly"
1068
  msgstr ""
1069
 
1070
+ #: top-10.php:1684
1071
  msgid "Once Monthly"
1072
  msgstr ""
1073
 
1074
+ #: top-10.php:1688
1075
  msgid "Once quarterly"
1076
  msgstr ""
1077
 
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: 2014-12-28 01:00-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"
@@ -61,7 +61,7 @@ msgstr "Папярэдняя старонка"
61
  msgid "Next"
62
  msgstr "Наступная старонка"
63
 
64
- #: admin/admin-dashboard.php:200 admin/admin.php:1145
65
  msgid "Popular Posts"
66
  msgstr "Папулярныя запісы"
67
 
@@ -69,7 +69,7 @@ msgstr "Папулярныя запісы"
69
  msgid "Daily Popular"
70
  msgstr "Папулярныя сёння запісы"
71
 
72
- #: admin/admin-metabox.php:38 admin/admin.php:1234
73
  msgid "Top 10"
74
  msgstr "Топ 10 запісаў"
75
 
@@ -98,107 +98,138 @@ msgstr ""
98
  msgid "The URL above is saved in the meta field: "
99
  msgstr ""
100
 
101
- #: admin/admin.php:160
102
  msgid "Options saved successfully."
103
  msgstr "Налады захаваны."
104
 
105
- #: admin/admin.php:170
106
  msgid "Options set to Default."
107
  msgstr "Налады скінуты."
108
 
109
- #: admin/admin.php:176
110
  #, fuzzy
111
  msgid "Top 10 popular posts reset"
112
  msgstr "Загаловак блока Папулярных запісаў:"
113
 
114
- #: admin/admin.php:182
115
  #, fuzzy
116
  msgid "Top 10 daily popular posts reset"
117
  msgstr "Загаловак блока Папулярных сёння запісаў:"
118
 
119
- #: admin/admin.php:189
120
  msgid "Duplicate rows cleaned from tables"
121
  msgstr ""
122
 
123
- #: admin/admin.php:201
124
  msgid "Scheduled maintenance enabled / modified"
125
  msgstr ""
126
 
127
- #: admin/admin.php:205
128
  msgid "Scheduled maintenance disabled"
129
  msgstr ""
130
 
131
- #: admin/admin.php:244
132
  msgid "Counts from selected sites have been imported."
133
  msgstr ""
134
 
135
- #: admin/admin.php:269
136
  msgid ""
137
  "Selected tables have been deleted. Note that only imported tables have been "
138
  "deleted."
139
  msgstr ""
140
 
141
- #: admin/admin.php:277 admin/admin.php:1234 admin/admin.php:1237
142
  #, fuzzy
143
  msgid "Top 10 Settings"
144
  msgstr "Топ 10 запісаў"
145
 
146
- #: admin/admin.php:289 admin/admin.php:311
147
  msgid "General options"
148
  msgstr ""
149
 
150
- #: admin/admin.php:290 admin/admin.php:373
151
  msgid "Counter and tracker options"
152
  msgstr ""
153
 
154
- #: admin/admin.php:291 admin/admin.php:478
155
  msgid "Popular post list options"
156
  msgstr ""
157
 
158
- #: admin/admin.php:292 admin/admin.php:681
159
  #: includes/class-top-10-widget.php:103
160
  msgid "Thumbnail options"
161
  msgstr ""
162
 
163
- #: admin/admin.php:293
164
  msgid "Custom styles"
165
  msgstr ""
166
 
167
- #: admin/admin.php:294 admin/admin.php:912
168
  msgid "Maintenance"
169
  msgstr ""
170
 
171
- #: admin/admin.php:310 admin/admin.php:372 admin/admin.php:477
172
- #: admin/admin.php:680 admin/admin.php:843 admin/admin.php:911
173
- #: admin/admin.php:975 admin/admin.php:996 admin/admin.php:1176
174
- #: admin/admin.php:1196 admin/admin.php:1206
175
  msgid "Click to toggle"
176
  msgstr ""
177
 
178
- #: admin/admin.php:327
179
  msgid "Enable Overall stats"
180
  msgstr ""
181
 
182
- #: admin/admin.php:333
183
  msgid "Enable Daily stats"
184
  msgstr ""
185
 
186
- #: admin/admin.php:339
187
  msgid "Cache fix:"
188
  msgstr ""
189
 
190
- #: admin/admin.php:342
191
  msgid ""
192
  "This will try to prevent W3 Total Cache and other caching plugins from "
193
  "caching the tracker script of the plugin. Try toggling this option in case "
194
  "you find that your posts are not tracked."
195
  msgstr ""
196
 
197
- #: admin/admin.php:346
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
198
  msgid "Link to Top 10 plugin page"
199
  msgstr ""
200
 
201
- #: admin/admin.php:349
202
  #, fuzzy
203
  msgid ""
204
  "A link to the plugin is added as an extra list item to the list of popular "
@@ -207,59 +238,59 @@ msgstr ""
207
  "Спасылка на ўбудову будзе дададзена да спісаў Папулярных запісаў. Мы будзем "
208
  "удзячныя Вам, калі Вы яе ўсё ж пакінеце!"
209
 
210
- #: admin/admin.php:354 admin/admin.php:459 admin/admin.php:662
211
- #: admin/admin.php:825 admin/admin.php:891 admin/admin.php:968
212
  #, fuzzy
213
  msgid "Save Options"
214
  msgstr "Налады ўбудовы:"
215
 
216
- #: admin/admin.php:389
217
  #, fuzzy
218
  msgid "Display number of views on:"
219
  msgstr "Паказваць колькасць праглядаў запісу ў яе \"целе\"?"
220
 
221
- #: admin/admin.php:391
222
  msgid "Posts"
223
  msgstr ""
224
 
225
- #: admin/admin.php:392
226
  #, fuzzy
227
  msgid "Pages"
228
  msgstr "Старонка"
229
 
230
- #: admin/admin.php:393
231
  msgid "Home page"
232
  msgstr ""
233
 
234
- #: admin/admin.php:394
235
  msgid "Feeds"
236
  msgstr ""
237
 
238
- #: admin/admin.php:395
239
  msgid "Category archives"
240
  msgstr ""
241
 
242
- #: admin/admin.php:396
243
  msgid "Tag archives"
244
  msgstr ""
245
 
246
- #: admin/admin.php:397
247
  msgid "Other archives"
248
  msgstr ""
249
 
250
- #: admin/admin.php:398
251
  msgid ""
252
  "If you choose to disable this, please add <code>&lt;?php if "
253
  "( function_exists ( 'echo_tptn_post_count' ) ) echo_tptn_post_count(); ?&gt;"
254
  "</code> to your template file where you want it displayed"
255
  msgstr ""
256
 
257
- #: admin/admin.php:402
258
  #, fuzzy
259
  msgid "Format to display the post views:"
260
  msgstr "Фармат адлюстравання колькасці праглядаў:"
261
 
262
- #: admin/admin.php:405
263
  msgid ""
264
  "Use <code>%totalcount%</code> to display the total count, <code>%dailycount"
265
  "%</code> to display the daily count and <code>%overallcount%</code> to "
@@ -267,11 +298,11 @@ msgid ""
267
  "options displays <code>[Visited 123 times, 23 visits today]</code>"
268
  msgstr ""
269
 
270
- #: admin/admin.php:409
271
  msgid "What do display when there are no visits?"
272
  msgstr ""
273
 
274
- #: admin/admin.php:412
275
  msgid ""
276
  "This text applies only when there are 0 hits for the post and it isn't a "
277
  "single page. e.g. if you display post views on the homepage or archives then "
@@ -279,250 +310,230 @@ msgid ""
279
  "option."
280
  msgstr ""
281
 
282
- #: admin/admin.php:416
283
  msgid "Always display latest post count"
284
  msgstr ""
285
 
286
- #: admin/admin.php:419
287
  msgid ""
288
  "This option uses JavaScript and will increase your page load time. Turn this "
289
  "off if you are not using caching plugins or are OK with displaying older "
290
  "cached counts."
291
  msgstr ""
292
 
293
- #: admin/admin.php:423
294
  msgid "Track visits of authors on their own posts?"
295
  msgstr "Улічваць прагляды запісаў, зробленыя іх жа аўтарамі?"
296
 
297
- #: admin/admin.php:426
298
  msgid ""
299
  "Disabling this option will stop authors visits tracked on their own posts"
300
  msgstr ""
301
 
302
- #: admin/admin.php:430
303
  #, fuzzy
304
  msgid "Track visits of admins?"
305
  msgstr "Улічваць прагляды запісаў, зробленыя іх жа аўтарамі?"
306
 
307
- #: admin/admin.php:433
308
  msgid "Disabling this option will stop admin visits being tracked."
309
  msgstr ""
310
 
311
- #: admin/admin.php:437
312
  #, fuzzy
313
  msgid "Track visits of Editors?"
314
  msgstr "Улічваць прагляды запісаў, зробленыя іх жа аўтарамі?"
315
 
316
- #: admin/admin.php:440
317
  msgid "Disabling this option will stop editor visits being tracked."
318
  msgstr ""
319
 
320
- #: admin/admin.php:444
321
  msgid "Display page views on Posts and Pages in Admin"
322
  msgstr ""
323
 
324
- #: admin/admin.php:447
325
  msgid ""
326
  "Adds three columns called Total Views, Today's Views and Views to All Posts "
327
  "and All Pages"
328
  msgstr ""
329
 
330
- #: admin/admin.php:451
331
  #, fuzzy
332
  msgid "Show number of views to non-admins"
333
  msgstr "Паказваць колькасць праглядаў старонкі ў яе \"целе\"?"
334
 
335
- #: admin/admin.php:454
336
  msgid ""
337
  "If you disable this then non-admins won't see the above columns or view the "
338
  "independent pages with the top posts"
339
  msgstr ""
340
 
341
- #: admin/admin.php:494
342
  msgid "Number of popular posts to display: "
343
  msgstr "Колькасць Папулярных запісаў у спісе:"
344
 
345
- #: admin/admin.php:497
346
  msgid ""
347
  "Maximum number of posts that will be displayed in the list. This option is "
348
  "used if you don't specify the number of posts in the widget or shortcodes"
349
  msgstr ""
350
 
351
- #: admin/admin.php:501
352
- msgid "Daily popular contains top posts over:"
353
- msgstr ""
354
-
355
- #: admin/admin.php:503
356
- msgid "day(s)"
357
- msgstr ""
358
-
359
- #: admin/admin.php:504
360
- msgid "hour(s)"
361
- msgstr ""
362
-
363
- #: admin/admin.php:505
364
- msgid ""
365
- "Think of Daily Popular has a custom date range applied as a global setting. "
366
- "Instead of displaying popular posts from the past day, this setting lets you "
367
- "display posts for as many days or as few hours as you want. This can be "
368
- "overridden in the widget."
369
- msgstr ""
370
-
371
- #: admin/admin.php:509
372
  msgid "Post types to include in results (including custom post types)"
373
  msgstr ""
374
 
375
- #: admin/admin.php:521
376
  msgid "List of post or page IDs to exclude from the results: "
377
  msgstr ""
378
 
379
- #: admin/admin.php:523 admin/admin.php:630
380
  msgid "Enter comma separated list of IDs. e.g. 188,320,500"
381
  msgstr ""
382
 
383
- #: admin/admin.php:527
384
  msgid "Exclude Categories: "
385
  msgstr ""
386
 
387
- #: admin/admin.php:542
388
  msgid ""
389
  "Comma separated list of category slugs. The field above has an autocomplete "
390
  "so simply start typing in the starting letters and it will prompt you with "
391
  "options"
392
  msgstr ""
393
 
394
- #: admin/admin.php:547
395
  msgid "Title of popular posts: "
396
  msgstr "Загаловак блока Папулярных запісаў:"
397
 
398
- #: admin/admin.php:553
399
  msgid "Title of daily popular posts: "
400
  msgstr "Загаловак блока Папулярных сёння запісаў:"
401
 
402
- #: admin/admin.php:559
403
  msgid "When there are no posts, what should be shown?"
404
  msgstr ""
405
 
406
- #: admin/admin.php:563
407
  msgid "Blank Output"
408
  msgstr ""
409
 
410
- #: admin/admin.php:567
411
  msgid "Display:"
412
  msgstr ""
413
 
414
- #: admin/admin.php:572
415
  msgid "Show post excerpt in list?"
416
  msgstr ""
417
 
418
- #: admin/admin.php:578
419
  msgid "Length of excerpt (in words): "
420
  msgstr ""
421
 
422
- #: admin/admin.php:584
423
  msgid "Show post author in list?"
424
  msgstr ""
425
 
426
- #: admin/admin.php:590
427
  msgid "Show post date in list?"
428
  msgstr ""
429
 
430
- #: admin/admin.php:596
431
  msgid "Limit post title length (in characters)"
432
  msgstr ""
433
 
434
- #: admin/admin.php:602
435
  msgid "Show view count in list?"
436
  msgstr ""
437
 
438
- #: admin/admin.php:608
439
  msgid "Always display latest post count in the daily lists?"
440
  msgstr ""
441
 
442
- #: admin/admin.php:611
443
  msgid ""
444
  "This option uses JavaScript and will increase your page load time. When you "
445
  "enable this option, the daily widget will not use the options set there, but "
446
  "options will need to be set on this screen."
447
  msgstr ""
448
 
449
- #: admin/admin.php:615
450
  msgid "Open links in new window"
451
  msgstr ""
452
 
453
- #: admin/admin.php:621
454
  msgid "Add nofollow attribute to links in the list"
455
  msgstr ""
456
 
457
- #: admin/admin.php:627
458
  msgid "Exclude display of related posts on these posts / pages"
459
  msgstr ""
460
 
461
- #: admin/admin.php:634
462
  msgid "Customise the list HTML"
463
  msgstr ""
464
 
465
- #: admin/admin.php:637
466
  msgid "HTML to display before the list of posts: "
467
  msgstr ""
468
 
469
- #: admin/admin.php:643
470
  msgid "HTML to display before each list item: "
471
  msgstr ""
472
 
473
- #: admin/admin.php:649
474
  #, fuzzy
475
  msgid "HTML to display after each list item: "
476
  msgstr "Фармат адлюстравання колькасці праглядаў:"
477
 
478
- #: admin/admin.php:655
479
  msgid "HTML to display after the list of posts: "
480
  msgstr ""
481
 
482
- #: admin/admin.php:696
483
  msgid "Location of post thumbnail:"
484
  msgstr ""
485
 
486
- #: admin/admin.php:700
487
  #, fuzzy
488
  msgid "Display thumbnails inline with posts, before title"
489
  msgstr "Паказваць колькасць праглядаў запісу ў яе \"целе\"?"
490
 
491
- #: admin/admin.php:705
492
  #, fuzzy
493
  msgid "Display thumbnails inline with posts, after title"
494
  msgstr "Паказваць колькасць праглядаў запісу ў яе \"целе\"?"
495
 
496
- #: admin/admin.php:710
497
  msgid "Display only thumbnails, no text"
498
  msgstr ""
499
 
500
- #: admin/admin.php:715
501
  msgid "Do not display thumbnails, only text."
502
  msgstr ""
503
 
504
- #: admin/admin.php:719
505
  msgid "Thumbnail size:"
506
  msgstr ""
507
 
508
- #: admin/admin.php:743
509
  msgid "Custom size"
510
  msgstr ""
511
 
512
- #: admin/admin.php:746
513
  msgid ""
514
  "You can choose from existing image sizes above or create a custom size. If "
515
  "you have chosen Custom size above, then enter the width, height and crop "
516
  "settings below. For best results, use a cropped image."
517
  msgstr ""
518
 
519
- #: admin/admin.php:747
520
  msgid ""
521
  "If you change the width and/or height below, existing images will not be "
522
  "automatically resized."
523
  msgstr ""
524
 
525
- #: admin/admin.php:748
526
  #, php-format
527
  msgid ""
528
  "I recommend using <a href='%s' target='_blank'>Force Regenerate Thumbnails</"
@@ -530,158 +541,158 @@ msgid ""
530
  "regenerate all image sizes."
531
  msgstr ""
532
 
533
- #: admin/admin.php:751
534
  msgid "Width of custom thumbnail:"
535
  msgstr ""
536
 
537
- #: admin/admin.php:756
538
  msgid "Height of custom thumbnail"
539
  msgstr ""
540
 
541
- #: admin/admin.php:761
542
  msgid "Crop mode:"
543
  msgstr ""
544
 
545
- #: admin/admin.php:765
546
  msgid ""
547
  "By default, thumbnails will be proportionately cropped. Check this box to "
548
  "hard crop the thumbnails."
549
  msgstr ""
550
 
551
- #: admin/admin.php:766
552
  #, php-format
553
  msgid "<a href='%s' target='_blank'>Difference between soft and hard crop</a>"
554
  msgstr ""
555
 
556
- #: admin/admin.php:768
557
  msgid ""
558
  "Since you're using the default styles set under the Custom Styles section, "
559
  "the width and height is fixed at 65px and crop mode is enabled."
560
  msgstr ""
561
 
562
- #: admin/admin.php:773
563
  msgid "Style attributes / Width and Height HTML attributes:"
564
  msgstr ""
565
 
566
- #: admin/admin.php:777
567
  msgid "Style attributes are used for width and height."
568
  msgstr ""
569
 
570
- #: admin/admin.php:782
571
  msgid "HTML width and height attributes are used for width and height."
572
  msgstr ""
573
 
574
- #: admin/admin.php:786
575
  msgid "Use timthumb to generate thumbnails? "
576
  msgstr ""
577
 
578
- #: admin/admin.php:789
579
  msgid ""
580
  "If checked, <a href=\"http://www.binarymoon.co.uk/projects/timthumb/\" "
581
  "target=\"_blank\">timthumb</a> will be used to generate thumbnails"
582
  msgstr ""
583
 
584
- #: admin/admin.php:792
585
  msgid "Quality of thumbnails generated by timthumb:"
586
  msgstr ""
587
 
588
- #: admin/admin.php:795
589
  msgid ""
590
  "Enter values between 0 and 100 only. 100 is highest quality and the highest "
591
  "file size. Suggested maximum value is 95. Default is 75."
592
  msgstr ""
593
 
594
- #: admin/admin.php:798
595
  msgid "Post thumbnail meta field name: "
596
  msgstr ""
597
 
598
- #: admin/admin.php:801
599
  msgid ""
600
  "The value of this field should contain the image source and is set in the "
601
  "<em>Add New Post</em> screen"
602
  msgstr ""
603
 
604
- #: admin/admin.php:804
605
  msgid ""
606
  "If the postmeta is not set, then should the plugin extract the first image "
607
  "from the post?"
608
  msgstr ""
609
 
610
- #: admin/admin.php:807
611
  msgid ""
612
  "This could slow down the loading of your page if the first image in the "
613
  "related posts is large in file-size"
614
  msgstr ""
615
 
616
- #: admin/admin.php:810
617
  msgid "Use default thumbnail? "
618
  msgstr ""
619
 
620
- #: admin/admin.php:813
621
  msgid ""
622
  "If checked, when no thumbnail is found, show a default one from the URL "
623
  "below. If not checked and no thumbnail is found, no image will be shown."
624
  msgstr ""
625
 
626
- #: admin/admin.php:816
627
  msgid "Default thumbnail: "
628
  msgstr ""
629
 
630
- #: admin/admin.php:820
631
  msgid ""
632
  "The plugin will first check if the post contains a thumbnail. If it doesn't "
633
  "then it will check the meta field. If this is not available, then it will "
634
  "show the default image as specified above"
635
  msgstr ""
636
 
637
- #: admin/admin.php:844
638
  msgid "Custom CSS"
639
  msgstr ""
640
 
641
- #: admin/admin.php:859
642
  msgid "Use default style included in the plugin?"
643
  msgstr ""
644
 
645
- #: admin/admin.php:862
646
  msgid ""
647
  "Top 10 includes a default style that makes your popular posts list to look "
648
  "beautiful. Check the box above if you want to use this."
649
  msgstr ""
650
 
651
- #: admin/admin.php:863
652
  msgid ""
653
  "Enabling this option will turn on the thumbnails and set their width and "
654
  "height to 65px. It will also turn off the display of the author, excerpt and "
655
  "date if already enabled. Disabling this option will not revert any settings."
656
  msgstr ""
657
 
658
- #: admin/admin.php:864
659
  #, php-format
660
  msgid ""
661
  "You can view the default style at <a href=\"%1$s\" target=\"_blank\">%1$s</a>"
662
  msgstr ""
663
 
664
- #: admin/admin.php:867
665
  msgid "Custom CSS to add to header:"
666
  msgstr ""
667
 
668
- #: admin/admin.php:872
669
  msgid ""
670
  "Do not include <code>style</code> tags. Check out the <a href=\"http://"
671
  "wordpress.org/extend/plugins/top-10/faq/\" target=\"_blank\">FAQ</a> for "
672
  "available CSS classes to style."
673
  msgstr ""
674
 
675
- #: admin/admin.php:892
676
  #, fuzzy
677
  msgid "Default Options"
678
  msgstr "Налады ўбудовы:"
679
 
680
- #: admin/admin.php:892
681
  msgid "Do you want to set options to Default?"
682
  msgstr "Скінуць налады ўбудовы?"
683
 
684
- #: admin/admin.php:916
685
  msgid ""
686
  "Over time the Daily Top 10 database grows in size, which reduces the "
687
  "performance of the plugin. Cleaning the database at regular intervals could "
@@ -689,219 +700,229 @@ msgid ""
689
  "will automatically delete entries older than 90 days."
690
  msgstr ""
691
 
692
- #: admin/admin.php:917
693
  msgid ""
694
  "Note: When scheduled maintenance is enabled, WordPress will run the cron job "
695
  "everytime the job is rescheduled (i.e. you change the settings below)."
696
  msgstr ""
697
 
698
- #: admin/admin.php:920
699
  msgid "Enable scheduled maintenance of daily tables:"
700
  msgstr ""
701
 
702
- #: admin/admin.php:924
703
  msgid "Time to run maintenance"
704
  msgstr ""
705
 
706
- #: admin/admin.php:925
707
  msgid "hrs"
708
  msgstr ""
709
 
710
- #: admin/admin.php:925
711
  msgid "min"
712
  msgstr ""
713
 
714
- #: admin/admin.php:927
715
  msgid "How often should the maintenance be run:"
716
  msgstr ""
717
 
718
- #: admin/admin.php:931
719
  msgid "Daily"
720
  msgstr ""
721
 
722
- #: admin/admin.php:935
723
  msgid "Weekly"
724
  msgstr ""
725
 
726
- #: admin/admin.php:939
727
  msgid "Fortnightly"
728
  msgstr ""
729
 
730
- #: admin/admin.php:943
731
  msgid "Monthly"
732
  msgstr ""
733
 
734
- #: admin/admin.php:952
735
  msgid "The cron job has been scheduled. Maintenance will run "
736
  msgstr ""
737
 
738
- #: admin/admin.php:957
739
  msgid "The cron job is missing. Please resave this page to add the job"
740
  msgstr ""
741
 
742
- #: admin/admin.php:962
743
  msgid "Maintenance is turned off"
744
  msgstr ""
745
 
746
- #: admin/admin.php:976
747
  msgid "Reset count"
748
  msgstr ""
749
 
750
- #: admin/admin.php:979
751
  msgid ""
752
  "This cannot be reversed. Make sure that your database has been backed up "
753
  "before proceeding"
754
  msgstr ""
755
 
756
- #: admin/admin.php:982
757
  #, fuzzy
758
  msgid "Reset Popular Posts"
759
  msgstr "Папулярныя запісы"
760
 
761
- #: admin/admin.php:982
762
  msgid "Are you sure you want to reset the popular posts?"
763
  msgstr ""
764
 
765
- #: admin/admin.php:983
766
  #, fuzzy
767
  msgid "Reset Daily Popular Posts"
768
  msgstr "Папулярныя сёння запісы"
769
 
770
- #: admin/admin.php:983
771
  msgid "Are you sure you want to reset the daily popular posts?"
772
  msgstr ""
773
 
774
- #: admin/admin.php:984
775
  msgid "Clear duplicates"
776
  msgstr ""
777
 
778
- #: admin/admin.php:984
779
  msgid "This will delete the duplicate entries in the tables. Proceed?"
780
  msgstr ""
781
 
782
- #: admin/admin.php:997
783
  msgid "WordPress Multisite: Migrate Top 10 v1.x counts to 2.x"
784
  msgstr ""
785
 
786
- #: admin/admin.php:1000
787
  msgid ""
788
  "If you've been using Top 10 v1.x on multisite, you would have needed to "
789
  "activate the plugin independently for each site. This would have resulted in "
790
- "two tables being created for each site in the network. Top 10 v2.x onwards "
791
- "uses only a single table to record the count, keeping your database clean. "
792
- "You can use this tool to import the recorded counts from v1.x tables to the "
793
- "new v2.x table format."
794
  msgstr ""
795
 
796
- #: admin/admin.php:1003
 
 
 
 
 
 
 
797
  msgid ""
798
  "If you do not see any tables below, then it means that either all data has "
799
  "already been imported or no relevant information has been found."
800
  msgstr ""
801
 
802
- #: admin/admin.php:1037
 
 
 
 
 
 
803
  msgid "Blog ID"
804
  msgstr ""
805
 
806
- #: admin/admin.php:1040
807
  msgid "Status"
808
  msgstr ""
809
 
810
- #: admin/admin.php:1043
811
  msgid "Select to import"
812
  msgstr ""
813
 
814
- #: admin/admin.php:1053
815
  msgid "Blog #"
816
  msgstr ""
817
 
818
- #: admin/admin.php:1063
819
  msgid "Not imported"
820
  msgstr ""
821
 
822
- #: admin/admin.php:1067
823
  msgid "Imported"
824
  msgstr ""
825
 
826
- #: admin/admin.php:1088
827
  msgid "Begin import"
828
  msgstr ""
829
 
830
- #: admin/admin.php:1089
831
  msgid "Delete selected tables"
832
  msgstr ""
833
 
834
- #: admin/admin.php:1090
835
  msgid "Delete all imported tables"
836
  msgstr ""
837
 
838
- #: admin/admin.php:1147 admin/admin.php:1243
839
  msgid "Daily Popular Posts"
840
  msgstr "Папулярныя сёння запісы"
841
 
842
- #: admin/admin.php:1177
843
  #, fuzzy
844
  msgid "Support the development"
845
  msgstr "Падтрымаеце стваральніка ўбудовы"
846
 
847
- #: admin/admin.php:1184
848
  msgid "Donation for Top 10"
849
  msgstr ""
850
 
851
- #: admin/admin.php:1186
852
  msgid "Enter amount in USD: "
853
  msgstr ""
854
 
855
- #: admin/admin.php:1190
856
  msgid "Send your donation to the author of Top 10"
857
  msgstr ""
858
 
859
- #: admin/admin.php:1197
860
  msgid "Follow me"
861
  msgstr ""
862
 
863
- #: admin/admin.php:1207
864
  msgid "Quick links"
865
  msgstr ""
866
 
867
- #: admin/admin.php:1211
868
  msgid "Top 10 plugin page"
869
  msgstr ""
870
 
871
- #: admin/admin.php:1212
872
  msgid "Top 10 Github page"
873
  msgstr ""
874
 
875
- #: admin/admin.php:1213
876
  msgid "Other plugins"
877
  msgstr ""
878
 
879
- #: admin/admin.php:1214
880
  msgid "Ajay's blog"
881
  msgstr ""
882
 
883
- #: admin/admin.php:1215
884
  msgid "FAQ"
885
  msgstr ""
886
 
887
- #: admin/admin.php:1216 admin/admin.php:1374
888
  msgid "Support"
889
  msgstr ""
890
 
891
- #: admin/admin.php:1217
892
  msgid "Reviews"
893
  msgstr ""
894
 
895
- #: admin/admin.php:1240
896
  #, fuzzy
897
  msgid "Overall Popular Posts"
898
  msgstr "Паглядзець усе Папулярныя запісы"
899
 
900
- #: admin/admin.php:1351
901
  msgid "Settings"
902
  msgstr ""
903
 
904
- #: admin/admin.php:1375
905
  msgid "Donate"
906
  msgstr ""
907
 
@@ -985,41 +1006,41 @@ msgstr ""
985
  msgid "Thumbnail width"
986
  msgstr ""
987
 
988
- #: top-10.php:866
989
  msgid " by "
990
  msgstr ""
991
 
992
- #: top-10.php:917
993
  #, php-format
994
  msgid "Popular posts by <a href=\"%s\" rel=\"nofollow\" %s>Top 10 plugin</a>"
995
  msgstr ""
996
 
997
- #: top-10.php:1016
998
  msgid "<h3>Popular Posts</h3>"
999
  msgstr "<h3>Папулярныя запісы</h3>"
1000
 
1001
- #: top-10.php:1017
1002
  msgid "<h3>Daily Popular</h3>"
1003
  msgstr "<h3>Папулярныя сёння запісы</h3>"
1004
 
1005
- #: top-10.php:1018
1006
  #, fuzzy
1007
  msgid "No top posts yet"
1008
  msgstr "Загаловак блока Папулярных запісаў:"
1009
 
1010
- #: top-10.php:1668
1011
  msgid "Once Weekly"
1012
  msgstr ""
1013
 
1014
- #: top-10.php:1672
1015
  msgid "Once Fortnightly"
1016
  msgstr ""
1017
 
1018
- #: top-10.php:1676
1019
  msgid "Once Monthly"
1020
  msgstr ""
1021
 
1022
- #: top-10.php:1680
1023
  msgid "Once quarterly"
1024
  msgstr ""
1025
 
2
  msgstr ""
3
  "Project-Id-Version: Топ 10\n"
4
  "Report-Msgid-Bugs-To: \n"
5
+ "POT-Creation-Date: 2015-01-01 21:53-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"
61
  msgid "Next"
62
  msgstr "Наступная старонка"
63
 
64
+ #: admin/admin-dashboard.php:200 admin/admin.php:1157
65
  msgid "Popular Posts"
66
  msgstr "Папулярныя запісы"
67
 
69
  msgid "Daily Popular"
70
  msgstr "Папулярныя сёння запісы"
71
 
72
+ #: admin/admin-metabox.php:38 admin/admin.php:1246
73
  msgid "Top 10"
74
  msgstr "Топ 10 запісаў"
75
 
98
  msgid "The URL above is saved in the meta field: "
99
  msgstr ""
100
 
101
+ #: admin/admin.php:161
102
  msgid "Options saved successfully."
103
  msgstr "Налады захаваны."
104
 
105
+ #: admin/admin.php:171
106
  msgid "Options set to Default."
107
  msgstr "Налады скінуты."
108
 
109
+ #: admin/admin.php:177
110
  #, fuzzy
111
  msgid "Top 10 popular posts reset"
112
  msgstr "Загаловак блока Папулярных запісаў:"
113
 
114
+ #: admin/admin.php:183
115
  #, fuzzy
116
  msgid "Top 10 daily popular posts reset"
117
  msgstr "Загаловак блока Папулярных сёння запісаў:"
118
 
119
+ #: admin/admin.php:190
120
  msgid "Duplicate rows cleaned from tables"
121
  msgstr ""
122
 
123
+ #: admin/admin.php:202
124
  msgid "Scheduled maintenance enabled / modified"
125
  msgstr ""
126
 
127
+ #: admin/admin.php:206
128
  msgid "Scheduled maintenance disabled"
129
  msgstr ""
130
 
131
+ #: admin/admin.php:245
132
  msgid "Counts from selected sites have been imported."
133
  msgstr ""
134
 
135
+ #: admin/admin.php:270
136
  msgid ""
137
  "Selected tables have been deleted. Note that only imported tables have been "
138
  "deleted."
139
  msgstr ""
140
 
141
+ #: admin/admin.php:278 admin/admin.php:1246 admin/admin.php:1249
142
  #, fuzzy
143
  msgid "Top 10 Settings"
144
  msgstr "Топ 10 запісаў"
145
 
146
+ #: admin/admin.php:290 admin/admin.php:312
147
  msgid "General options"
148
  msgstr ""
149
 
150
+ #: admin/admin.php:291 admin/admin.php:389
151
  msgid "Counter and tracker options"
152
  msgstr ""
153
 
154
+ #: admin/admin.php:292 admin/admin.php:494
155
  msgid "Popular post list options"
156
  msgstr ""
157
 
158
+ #: admin/admin.php:293 admin/admin.php:689
159
  #: includes/class-top-10-widget.php:103
160
  msgid "Thumbnail options"
161
  msgstr ""
162
 
163
+ #: admin/admin.php:294
164
  msgid "Custom styles"
165
  msgstr ""
166
 
167
+ #: admin/admin.php:295 admin/admin.php:920
168
  msgid "Maintenance"
169
  msgstr ""
170
 
171
+ #: admin/admin.php:311 admin/admin.php:388 admin/admin.php:493
172
+ #: admin/admin.php:688 admin/admin.php:851 admin/admin.php:919
173
+ #: admin/admin.php:983 admin/admin.php:1004 admin/admin.php:1188
174
+ #: admin/admin.php:1208 admin/admin.php:1218
175
  msgid "Click to toggle"
176
  msgstr ""
177
 
178
+ #: admin/admin.php:328
179
  msgid "Enable Overall stats"
180
  msgstr ""
181
 
182
+ #: admin/admin.php:334
183
  msgid "Enable Daily stats"
184
  msgstr ""
185
 
186
+ #: admin/admin.php:340
187
  msgid "Cache fix:"
188
  msgstr ""
189
 
190
+ #: admin/admin.php:343
191
  msgid ""
192
  "This will try to prevent W3 Total Cache and other caching plugins from "
193
  "caching the tracker script of the plugin. Try toggling this option in case "
194
  "you find that your posts are not tracked."
195
  msgstr ""
196
 
197
+ #: admin/admin.php:347
198
+ msgid "Start daily counts from midnight:"
199
+ msgstr ""
200
+
201
+ #: admin/admin.php:350
202
+ msgid ""
203
+ "Daily counter will display number of visits from midnight. This option is "
204
+ "checked by default and mimics the way most normal counters work. Turning "
205
+ "this off will allow you to use the hourly setting in the next option."
206
+ msgstr ""
207
+
208
+ #: admin/admin.php:354
209
+ msgid "Daily popular contains top posts over:"
210
+ msgstr ""
211
+
212
+ #: admin/admin.php:356
213
+ msgid "day(s)"
214
+ msgstr ""
215
+
216
+ #: admin/admin.php:357
217
+ msgid "hour(s)"
218
+ msgstr ""
219
+
220
+ #: admin/admin.php:358
221
+ msgid ""
222
+ "Think of Daily Popular has a custom date range applied as a global setting. "
223
+ "Instead of displaying popular posts from the past day, this setting lets you "
224
+ "display posts for as many days or as few hours as you want. This can be "
225
+ "overridden in the widget."
226
+ msgstr ""
227
+
228
+ #: admin/admin.php:362
229
  msgid "Link to Top 10 plugin page"
230
  msgstr ""
231
 
232
+ #: admin/admin.php:365
233
  #, fuzzy
234
  msgid ""
235
  "A link to the plugin is added as an extra list item to the list of popular "
238
  "Спасылка на ўбудову будзе дададзена да спісаў Папулярных запісаў. Мы будзем "
239
  "удзячныя Вам, калі Вы яе ўсё ж пакінеце!"
240
 
241
+ #: admin/admin.php:370 admin/admin.php:475 admin/admin.php:670
242
+ #: admin/admin.php:833 admin/admin.php:899 admin/admin.php:976
243
  #, fuzzy
244
  msgid "Save Options"
245
  msgstr "Налады ўбудовы:"
246
 
247
+ #: admin/admin.php:405
248
  #, fuzzy
249
  msgid "Display number of views on:"
250
  msgstr "Паказваць колькасць праглядаў запісу ў яе \"целе\"?"
251
 
252
+ #: admin/admin.php:407
253
  msgid "Posts"
254
  msgstr ""
255
 
256
+ #: admin/admin.php:408
257
  #, fuzzy
258
  msgid "Pages"
259
  msgstr "Старонка"
260
 
261
+ #: admin/admin.php:409
262
  msgid "Home page"
263
  msgstr ""
264
 
265
+ #: admin/admin.php:410
266
  msgid "Feeds"
267
  msgstr ""
268
 
269
+ #: admin/admin.php:411
270
  msgid "Category archives"
271
  msgstr ""
272
 
273
+ #: admin/admin.php:412
274
  msgid "Tag archives"
275
  msgstr ""
276
 
277
+ #: admin/admin.php:413
278
  msgid "Other archives"
279
  msgstr ""
280
 
281
+ #: admin/admin.php:414
282
  msgid ""
283
  "If you choose to disable this, please add <code>&lt;?php if "
284
  "( function_exists ( 'echo_tptn_post_count' ) ) echo_tptn_post_count(); ?&gt;"
285
  "</code> to your template file where you want it displayed"
286
  msgstr ""
287
 
288
+ #: admin/admin.php:418
289
  #, fuzzy
290
  msgid "Format to display the post views:"
291
  msgstr "Фармат адлюстравання колькасці праглядаў:"
292
 
293
+ #: admin/admin.php:421
294
  msgid ""
295
  "Use <code>%totalcount%</code> to display the total count, <code>%dailycount"
296
  "%</code> to display the daily count and <code>%overallcount%</code> to "
298
  "options displays <code>[Visited 123 times, 23 visits today]</code>"
299
  msgstr ""
300
 
301
+ #: admin/admin.php:425
302
  msgid "What do display when there are no visits?"
303
  msgstr ""
304
 
305
+ #: admin/admin.php:428
306
  msgid ""
307
  "This text applies only when there are 0 hits for the post and it isn't a "
308
  "single page. e.g. if you display post views on the homepage or archives then "
310
  "option."
311
  msgstr ""
312
 
313
+ #: admin/admin.php:432
314
  msgid "Always display latest post count"
315
  msgstr ""
316
 
317
+ #: admin/admin.php:435
318
  msgid ""
319
  "This option uses JavaScript and will increase your page load time. Turn this "
320
  "off if you are not using caching plugins or are OK with displaying older "
321
  "cached counts."
322
  msgstr ""
323
 
324
+ #: admin/admin.php:439
325
  msgid "Track visits of authors on their own posts?"
326
  msgstr "Улічваць прагляды запісаў, зробленыя іх жа аўтарамі?"
327
 
328
+ #: admin/admin.php:442
329
  msgid ""
330
  "Disabling this option will stop authors visits tracked on their own posts"
331
  msgstr ""
332
 
333
+ #: admin/admin.php:446
334
  #, fuzzy
335
  msgid "Track visits of admins?"
336
  msgstr "Улічваць прагляды запісаў, зробленыя іх жа аўтарамі?"
337
 
338
+ #: admin/admin.php:449
339
  msgid "Disabling this option will stop admin visits being tracked."
340
  msgstr ""
341
 
342
+ #: admin/admin.php:453
343
  #, fuzzy
344
  msgid "Track visits of Editors?"
345
  msgstr "Улічваць прагляды запісаў, зробленыя іх жа аўтарамі?"
346
 
347
+ #: admin/admin.php:456
348
  msgid "Disabling this option will stop editor visits being tracked."
349
  msgstr ""
350
 
351
+ #: admin/admin.php:460
352
  msgid "Display page views on Posts and Pages in Admin"
353
  msgstr ""
354
 
355
+ #: admin/admin.php:463
356
  msgid ""
357
  "Adds three columns called Total Views, Today's Views and Views to All Posts "
358
  "and All Pages"
359
  msgstr ""
360
 
361
+ #: admin/admin.php:467
362
  #, fuzzy
363
  msgid "Show number of views to non-admins"
364
  msgstr "Паказваць колькасць праглядаў старонкі ў яе \"целе\"?"
365
 
366
+ #: admin/admin.php:470
367
  msgid ""
368
  "If you disable this then non-admins won't see the above columns or view the "
369
  "independent pages with the top posts"
370
  msgstr ""
371
 
372
+ #: admin/admin.php:510
373
  msgid "Number of popular posts to display: "
374
  msgstr "Колькасць Папулярных запісаў у спісе:"
375
 
376
+ #: admin/admin.php:513
377
  msgid ""
378
  "Maximum number of posts that will be displayed in the list. This option is "
379
  "used if you don't specify the number of posts in the widget or shortcodes"
380
  msgstr ""
381
 
382
+ #: admin/admin.php:517
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
383
  msgid "Post types to include in results (including custom post types)"
384
  msgstr ""
385
 
386
+ #: admin/admin.php:529
387
  msgid "List of post or page IDs to exclude from the results: "
388
  msgstr ""
389
 
390
+ #: admin/admin.php:531 admin/admin.php:638
391
  msgid "Enter comma separated list of IDs. e.g. 188,320,500"
392
  msgstr ""
393
 
394
+ #: admin/admin.php:535
395
  msgid "Exclude Categories: "
396
  msgstr ""
397
 
398
+ #: admin/admin.php:550
399
  msgid ""
400
  "Comma separated list of category slugs. The field above has an autocomplete "
401
  "so simply start typing in the starting letters and it will prompt you with "
402
  "options"
403
  msgstr ""
404
 
405
+ #: admin/admin.php:555
406
  msgid "Title of popular posts: "
407
  msgstr "Загаловак блока Папулярных запісаў:"
408
 
409
+ #: admin/admin.php:561
410
  msgid "Title of daily popular posts: "
411
  msgstr "Загаловак блока Папулярных сёння запісаў:"
412
 
413
+ #: admin/admin.php:567
414
  msgid "When there are no posts, what should be shown?"
415
  msgstr ""
416
 
417
+ #: admin/admin.php:571
418
  msgid "Blank Output"
419
  msgstr ""
420
 
421
+ #: admin/admin.php:575
422
  msgid "Display:"
423
  msgstr ""
424
 
425
+ #: admin/admin.php:580
426
  msgid "Show post excerpt in list?"
427
  msgstr ""
428
 
429
+ #: admin/admin.php:586
430
  msgid "Length of excerpt (in words): "
431
  msgstr ""
432
 
433
+ #: admin/admin.php:592
434
  msgid "Show post author in list?"
435
  msgstr ""
436
 
437
+ #: admin/admin.php:598
438
  msgid "Show post date in list?"
439
  msgstr ""
440
 
441
+ #: admin/admin.php:604
442
  msgid "Limit post title length (in characters)"
443
  msgstr ""
444
 
445
+ #: admin/admin.php:610
446
  msgid "Show view count in list?"
447
  msgstr ""
448
 
449
+ #: admin/admin.php:616
450
  msgid "Always display latest post count in the daily lists?"
451
  msgstr ""
452
 
453
+ #: admin/admin.php:619
454
  msgid ""
455
  "This option uses JavaScript and will increase your page load time. When you "
456
  "enable this option, the daily widget will not use the options set there, but "
457
  "options will need to be set on this screen."
458
  msgstr ""
459
 
460
+ #: admin/admin.php:623
461
  msgid "Open links in new window"
462
  msgstr ""
463
 
464
+ #: admin/admin.php:629
465
  msgid "Add nofollow attribute to links in the list"
466
  msgstr ""
467
 
468
+ #: admin/admin.php:635
469
  msgid "Exclude display of related posts on these posts / pages"
470
  msgstr ""
471
 
472
+ #: admin/admin.php:642
473
  msgid "Customise the list HTML"
474
  msgstr ""
475
 
476
+ #: admin/admin.php:645
477
  msgid "HTML to display before the list of posts: "
478
  msgstr ""
479
 
480
+ #: admin/admin.php:651
481
  msgid "HTML to display before each list item: "
482
  msgstr ""
483
 
484
+ #: admin/admin.php:657
485
  #, fuzzy
486
  msgid "HTML to display after each list item: "
487
  msgstr "Фармат адлюстравання колькасці праглядаў:"
488
 
489
+ #: admin/admin.php:663
490
  msgid "HTML to display after the list of posts: "
491
  msgstr ""
492
 
493
+ #: admin/admin.php:704
494
  msgid "Location of post thumbnail:"
495
  msgstr ""
496
 
497
+ #: admin/admin.php:708
498
  #, fuzzy
499
  msgid "Display thumbnails inline with posts, before title"
500
  msgstr "Паказваць колькасць праглядаў запісу ў яе \"целе\"?"
501
 
502
+ #: admin/admin.php:713
503
  #, fuzzy
504
  msgid "Display thumbnails inline with posts, after title"
505
  msgstr "Паказваць колькасць праглядаў запісу ў яе \"целе\"?"
506
 
507
+ #: admin/admin.php:718
508
  msgid "Display only thumbnails, no text"
509
  msgstr ""
510
 
511
+ #: admin/admin.php:723
512
  msgid "Do not display thumbnails, only text."
513
  msgstr ""
514
 
515
+ #: admin/admin.php:727
516
  msgid "Thumbnail size:"
517
  msgstr ""
518
 
519
+ #: admin/admin.php:751
520
  msgid "Custom size"
521
  msgstr ""
522
 
523
+ #: admin/admin.php:754
524
  msgid ""
525
  "You can choose from existing image sizes above or create a custom size. If "
526
  "you have chosen Custom size above, then enter the width, height and crop "
527
  "settings below. For best results, use a cropped image."
528
  msgstr ""
529
 
530
+ #: admin/admin.php:755
531
  msgid ""
532
  "If you change the width and/or height below, existing images will not be "
533
  "automatically resized."
534
  msgstr ""
535
 
536
+ #: admin/admin.php:756
537
  #, php-format
538
  msgid ""
539
  "I recommend using <a href='%s' target='_blank'>Force Regenerate Thumbnails</"
541
  "regenerate all image sizes."
542
  msgstr ""
543
 
544
+ #: admin/admin.php:759
545
  msgid "Width of custom thumbnail:"
546
  msgstr ""
547
 
548
+ #: admin/admin.php:764
549
  msgid "Height of custom thumbnail"
550
  msgstr ""
551
 
552
+ #: admin/admin.php:769
553
  msgid "Crop mode:"
554
  msgstr ""
555
 
556
+ #: admin/admin.php:773
557
  msgid ""
558
  "By default, thumbnails will be proportionately cropped. Check this box to "
559
  "hard crop the thumbnails."
560
  msgstr ""
561
 
562
+ #: admin/admin.php:774
563
  #, php-format
564
  msgid "<a href='%s' target='_blank'>Difference between soft and hard crop</a>"
565
  msgstr ""
566
 
567
+ #: admin/admin.php:776
568
  msgid ""
569
  "Since you're using the default styles set under the Custom Styles section, "
570
  "the width and height is fixed at 65px and crop mode is enabled."
571
  msgstr ""
572
 
573
+ #: admin/admin.php:781
574
  msgid "Style attributes / Width and Height HTML attributes:"
575
  msgstr ""
576
 
577
+ #: admin/admin.php:785
578
  msgid "Style attributes are used for width and height."
579
  msgstr ""
580
 
581
+ #: admin/admin.php:790
582
  msgid "HTML width and height attributes are used for width and height."
583
  msgstr ""
584
 
585
+ #: admin/admin.php:794
586
  msgid "Use timthumb to generate thumbnails? "
587
  msgstr ""
588
 
589
+ #: admin/admin.php:797
590
  msgid ""
591
  "If checked, <a href=\"http://www.binarymoon.co.uk/projects/timthumb/\" "
592
  "target=\"_blank\">timthumb</a> will be used to generate thumbnails"
593
  msgstr ""
594
 
595
+ #: admin/admin.php:800
596
  msgid "Quality of thumbnails generated by timthumb:"
597
  msgstr ""
598
 
599
+ #: admin/admin.php:803
600
  msgid ""
601
  "Enter values between 0 and 100 only. 100 is highest quality and the highest "
602
  "file size. Suggested maximum value is 95. Default is 75."
603
  msgstr ""
604
 
605
+ #: admin/admin.php:806
606
  msgid "Post thumbnail meta field name: "
607
  msgstr ""
608
 
609
+ #: admin/admin.php:809
610
  msgid ""
611
  "The value of this field should contain the image source and is set in the "
612
  "<em>Add New Post</em> screen"
613
  msgstr ""
614
 
615
+ #: admin/admin.php:812
616
  msgid ""
617
  "If the postmeta is not set, then should the plugin extract the first image "
618
  "from the post?"
619
  msgstr ""
620
 
621
+ #: admin/admin.php:815
622
  msgid ""
623
  "This could slow down the loading of your page if the first image in the "
624
  "related posts is large in file-size"
625
  msgstr ""
626
 
627
+ #: admin/admin.php:818
628
  msgid "Use default thumbnail? "
629
  msgstr ""
630
 
631
+ #: admin/admin.php:821
632
  msgid ""
633
  "If checked, when no thumbnail is found, show a default one from the URL "
634
  "below. If not checked and no thumbnail is found, no image will be shown."
635
  msgstr ""
636
 
637
+ #: admin/admin.php:824
638
  msgid "Default thumbnail: "
639
  msgstr ""
640
 
641
+ #: admin/admin.php:828
642
  msgid ""
643
  "The plugin will first check if the post contains a thumbnail. If it doesn't "
644
  "then it will check the meta field. If this is not available, then it will "
645
  "show the default image as specified above"
646
  msgstr ""
647
 
648
+ #: admin/admin.php:852
649
  msgid "Custom CSS"
650
  msgstr ""
651
 
652
+ #: admin/admin.php:867
653
  msgid "Use default style included in the plugin?"
654
  msgstr ""
655
 
656
+ #: admin/admin.php:870
657
  msgid ""
658
  "Top 10 includes a default style that makes your popular posts list to look "
659
  "beautiful. Check the box above if you want to use this."
660
  msgstr ""
661
 
662
+ #: admin/admin.php:871
663
  msgid ""
664
  "Enabling this option will turn on the thumbnails and set their width and "
665
  "height to 65px. It will also turn off the display of the author, excerpt and "
666
  "date if already enabled. Disabling this option will not revert any settings."
667
  msgstr ""
668
 
669
+ #: admin/admin.php:872
670
  #, php-format
671
  msgid ""
672
  "You can view the default style at <a href=\"%1$s\" target=\"_blank\">%1$s</a>"
673
  msgstr ""
674
 
675
+ #: admin/admin.php:875
676
  msgid "Custom CSS to add to header:"
677
  msgstr ""
678
 
679
+ #: admin/admin.php:880
680
  msgid ""
681
  "Do not include <code>style</code> tags. Check out the <a href=\"http://"
682
  "wordpress.org/extend/plugins/top-10/faq/\" target=\"_blank\">FAQ</a> for "
683
  "available CSS classes to style."
684
  msgstr ""
685
 
686
+ #: admin/admin.php:900
687
  #, fuzzy
688
  msgid "Default Options"
689
  msgstr "Налады ўбудовы:"
690
 
691
+ #: admin/admin.php:900
692
  msgid "Do you want to set options to Default?"
693
  msgstr "Скінуць налады ўбудовы?"
694
 
695
+ #: admin/admin.php:924
696
  msgid ""
697
  "Over time the Daily Top 10 database grows in size, which reduces the "
698
  "performance of the plugin. Cleaning the database at regular intervals could "
700
  "will automatically delete entries older than 90 days."
701
  msgstr ""
702
 
703
+ #: admin/admin.php:925
704
  msgid ""
705
  "Note: When scheduled maintenance is enabled, WordPress will run the cron job "
706
  "everytime the job is rescheduled (i.e. you change the settings below)."
707
  msgstr ""
708
 
709
+ #: admin/admin.php:928
710
  msgid "Enable scheduled maintenance of daily tables:"
711
  msgstr ""
712
 
713
+ #: admin/admin.php:932
714
  msgid "Time to run maintenance"
715
  msgstr ""
716
 
717
+ #: admin/admin.php:933
718
  msgid "hrs"
719
  msgstr ""
720
 
721
+ #: admin/admin.php:933
722
  msgid "min"
723
  msgstr ""
724
 
725
+ #: admin/admin.php:935
726
  msgid "How often should the maintenance be run:"
727
  msgstr ""
728
 
729
+ #: admin/admin.php:939
730
  msgid "Daily"
731
  msgstr ""
732
 
733
+ #: admin/admin.php:943
734
  msgid "Weekly"
735
  msgstr ""
736
 
737
+ #: admin/admin.php:947
738
  msgid "Fortnightly"
739
  msgstr ""
740
 
741
+ #: admin/admin.php:951
742
  msgid "Monthly"
743
  msgstr ""
744
 
745
+ #: admin/admin.php:960
746
  msgid "The cron job has been scheduled. Maintenance will run "
747
  msgstr ""
748
 
749
+ #: admin/admin.php:965
750
  msgid "The cron job is missing. Please resave this page to add the job"
751
  msgstr ""
752
 
753
+ #: admin/admin.php:970
754
  msgid "Maintenance is turned off"
755
  msgstr ""
756
 
757
+ #: admin/admin.php:984
758
  msgid "Reset count"
759
  msgstr ""
760
 
761
+ #: admin/admin.php:987
762
  msgid ""
763
  "This cannot be reversed. Make sure that your database has been backed up "
764
  "before proceeding"
765
  msgstr ""
766
 
767
+ #: admin/admin.php:990
768
  #, fuzzy
769
  msgid "Reset Popular Posts"
770
  msgstr "Папулярныя запісы"
771
 
772
+ #: admin/admin.php:990
773
  msgid "Are you sure you want to reset the popular posts?"
774
  msgstr ""
775
 
776
+ #: admin/admin.php:991
777
  #, fuzzy
778
  msgid "Reset Daily Popular Posts"
779
  msgstr "Папулярныя сёння запісы"
780
 
781
+ #: admin/admin.php:991
782
  msgid "Are you sure you want to reset the daily popular posts?"
783
  msgstr ""
784
 
785
+ #: admin/admin.php:992
786
  msgid "Clear duplicates"
787
  msgstr ""
788
 
789
+ #: admin/admin.php:992
790
  msgid "This will delete the duplicate entries in the tables. Proceed?"
791
  msgstr ""
792
 
793
+ #: admin/admin.php:1005
794
  msgid "WordPress Multisite: Migrate Top 10 v1.x counts to 2.x"
795
  msgstr ""
796
 
797
+ #: admin/admin.php:1008
798
  msgid ""
799
  "If you've been using Top 10 v1.x on multisite, you would have needed to "
800
  "activate the plugin independently for each site. This would have resulted in "
801
+ "two tables being created for each site in the network."
 
 
 
802
  msgstr ""
803
 
804
+ #: admin/admin.php:1009
805
+ msgid ""
806
+ "Top 10 v2.x onwards uses only a single table to record the count, keeping "
807
+ "your database clean. You can use this tool to import the recorded counts "
808
+ "from v1.x tables to the new v2.x table format."
809
+ msgstr ""
810
+
811
+ #: admin/admin.php:1012
812
  msgid ""
813
  "If you do not see any tables below, then it means that either all data has "
814
  "already been imported or no relevant information has been found."
815
  msgstr ""
816
 
817
+ #: admin/admin.php:1015
818
+ msgid ""
819
+ "After running the importer, please verify that all the counts have been "
820
+ "successfully imported. Only then should you delete any old tables!"
821
+ msgstr ""
822
+
823
+ #: admin/admin.php:1049
824
  msgid "Blog ID"
825
  msgstr ""
826
 
827
+ #: admin/admin.php:1052
828
  msgid "Status"
829
  msgstr ""
830
 
831
+ #: admin/admin.php:1055
832
  msgid "Select to import"
833
  msgstr ""
834
 
835
+ #: admin/admin.php:1065
836
  msgid "Blog #"
837
  msgstr ""
838
 
839
+ #: admin/admin.php:1075
840
  msgid "Not imported"
841
  msgstr ""
842
 
843
+ #: admin/admin.php:1079
844
  msgid "Imported"
845
  msgstr ""
846
 
847
+ #: admin/admin.php:1100
848
  msgid "Begin import"
849
  msgstr ""
850
 
851
+ #: admin/admin.php:1101
852
  msgid "Delete selected tables"
853
  msgstr ""
854
 
855
+ #: admin/admin.php:1102
856
  msgid "Delete all imported tables"
857
  msgstr ""
858
 
859
+ #: admin/admin.php:1159 admin/admin.php:1255
860
  msgid "Daily Popular Posts"
861
  msgstr "Папулярныя сёння запісы"
862
 
863
+ #: admin/admin.php:1189
864
  #, fuzzy
865
  msgid "Support the development"
866
  msgstr "Падтрымаеце стваральніка ўбудовы"
867
 
868
+ #: admin/admin.php:1196
869
  msgid "Donation for Top 10"
870
  msgstr ""
871
 
872
+ #: admin/admin.php:1198
873
  msgid "Enter amount in USD: "
874
  msgstr ""
875
 
876
+ #: admin/admin.php:1202
877
  msgid "Send your donation to the author of Top 10"
878
  msgstr ""
879
 
880
+ #: admin/admin.php:1209
881
  msgid "Follow me"
882
  msgstr ""
883
 
884
+ #: admin/admin.php:1219
885
  msgid "Quick links"
886
  msgstr ""
887
 
888
+ #: admin/admin.php:1223
889
  msgid "Top 10 plugin page"
890
  msgstr ""
891
 
892
+ #: admin/admin.php:1224
893
  msgid "Top 10 Github page"
894
  msgstr ""
895
 
896
+ #: admin/admin.php:1225
897
  msgid "Other plugins"
898
  msgstr ""
899
 
900
+ #: admin/admin.php:1226
901
  msgid "Ajay's blog"
902
  msgstr ""
903
 
904
+ #: admin/admin.php:1227
905
  msgid "FAQ"
906
  msgstr ""
907
 
908
+ #: admin/admin.php:1228 admin/admin.php:1386
909
  msgid "Support"
910
  msgstr ""
911
 
912
+ #: admin/admin.php:1229
913
  msgid "Reviews"
914
  msgstr ""
915
 
916
+ #: admin/admin.php:1252
917
  #, fuzzy
918
  msgid "Overall Popular Posts"
919
  msgstr "Паглядзець усе Папулярныя запісы"
920
 
921
+ #: admin/admin.php:1363
922
  msgid "Settings"
923
  msgstr ""
924
 
925
+ #: admin/admin.php:1387
926
  msgid "Donate"
927
  msgstr ""
928
 
1006
  msgid "Thumbnail width"
1007
  msgstr ""
1008
 
1009
+ #: top-10.php:879
1010
  msgid " by "
1011
  msgstr ""
1012
 
1013
+ #: top-10.php:930
1014
  #, php-format
1015
  msgid "Popular posts by <a href=\"%s\" rel=\"nofollow\" %s>Top 10 plugin</a>"
1016
  msgstr ""
1017
 
1018
+ #: top-10.php:1029
1019
  msgid "<h3>Popular Posts</h3>"
1020
  msgstr "<h3>Папулярныя запісы</h3>"
1021
 
1022
+ #: top-10.php:1030
1023
  msgid "<h3>Daily Popular</h3>"
1024
  msgstr "<h3>Папулярныя сёння запісы</h3>"
1025
 
1026
+ #: top-10.php:1031
1027
  #, fuzzy
1028
  msgid "No top posts yet"
1029
  msgstr "Загаловак блока Папулярных запісаў:"
1030
 
1031
+ #: top-10.php:1676
1032
  msgid "Once Weekly"
1033
  msgstr ""
1034
 
1035
+ #: top-10.php:1680
1036
  msgid "Once Fortnightly"
1037
  msgstr ""
1038
 
1039
+ #: top-10.php:1684
1040
  msgid "Once Monthly"
1041
  msgstr ""
1042
 
1043
+ #: top-10.php:1688
1044
  msgid "Once quarterly"
1045
  msgstr ""
1046
 
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: 2014-12-28 00:52-0000\n"
6
  "PO-Revision-Date: \n"
7
  "Last-Translator: Ajay D'Souza <me@ajaydsouza.com>\n"
8
  "Language-Team: Ajay DSouza <me@ajaydsouza.com>\n"
@@ -59,7 +59,7 @@ msgstr ""
59
  msgid "Next"
60
  msgstr ""
61
 
62
- #: admin/admin-dashboard.php:200 admin/admin.php:1145
63
  msgid "Popular Posts"
64
  msgstr ""
65
 
@@ -67,7 +67,7 @@ msgstr ""
67
  msgid "Daily Popular"
68
  msgstr ""
69
 
70
- #: admin/admin-metabox.php:38 admin/admin.php:1234
71
  msgid "Top 10"
72
  msgstr ""
73
 
@@ -96,158 +96,189 @@ msgstr ""
96
  msgid "The URL above is saved in the meta field: "
97
  msgstr ""
98
 
99
- #: admin/admin.php:160
100
  msgid "Options saved successfully."
101
  msgstr ""
102
 
103
- #: admin/admin.php:170
104
  msgid "Options set to Default."
105
  msgstr ""
106
 
107
- #: admin/admin.php:176
108
  msgid "Top 10 popular posts reset"
109
  msgstr ""
110
 
111
- #: admin/admin.php:182
112
  msgid "Top 10 daily popular posts reset"
113
  msgstr ""
114
 
115
- #: admin/admin.php:189
116
  msgid "Duplicate rows cleaned from tables"
117
  msgstr ""
118
 
119
- #: admin/admin.php:201
120
  msgid "Scheduled maintenance enabled / modified"
121
  msgstr ""
122
 
123
- #: admin/admin.php:205
124
  msgid "Scheduled maintenance disabled"
125
  msgstr ""
126
 
127
- #: admin/admin.php:244
128
  msgid "Counts from selected sites have been imported."
129
  msgstr ""
130
 
131
- #: admin/admin.php:269
132
  msgid ""
133
  "Selected tables have been deleted. Note that only imported tables have been "
134
  "deleted."
135
  msgstr ""
136
 
137
- #: admin/admin.php:277 admin/admin.php:1234 admin/admin.php:1237
138
  msgid "Top 10 Settings"
139
  msgstr ""
140
 
141
- #: admin/admin.php:289 admin/admin.php:311
142
  msgid "General options"
143
  msgstr ""
144
 
145
- #: admin/admin.php:290 admin/admin.php:373
146
  msgid "Counter and tracker options"
147
  msgstr ""
148
 
149
- #: admin/admin.php:291 admin/admin.php:478
150
  msgid "Popular post list options"
151
  msgstr ""
152
 
153
- #: admin/admin.php:292 admin/admin.php:681
154
  #: includes/class-top-10-widget.php:103
155
  msgid "Thumbnail options"
156
  msgstr ""
157
 
158
- #: admin/admin.php:293
159
  msgid "Custom styles"
160
  msgstr ""
161
 
162
- #: admin/admin.php:294 admin/admin.php:912
163
  msgid "Maintenance"
164
  msgstr ""
165
 
166
- #: admin/admin.php:310 admin/admin.php:372 admin/admin.php:477
167
- #: admin/admin.php:680 admin/admin.php:843 admin/admin.php:911
168
- #: admin/admin.php:975 admin/admin.php:996 admin/admin.php:1176
169
- #: admin/admin.php:1196 admin/admin.php:1206
170
  msgid "Click to toggle"
171
  msgstr ""
172
 
173
- #: admin/admin.php:327
174
  msgid "Enable Overall stats"
175
  msgstr ""
176
 
177
- #: admin/admin.php:333
178
  msgid "Enable Daily stats"
179
  msgstr ""
180
 
181
- #: admin/admin.php:339
182
  msgid "Cache fix:"
183
  msgstr ""
184
 
185
- #: admin/admin.php:342
186
  msgid ""
187
  "This will try to prevent W3 Total Cache and other caching plugins from "
188
  "caching the tracker script of the plugin. Try toggling this option in case "
189
  "you find that your posts are not tracked."
190
  msgstr ""
191
 
192
- #: admin/admin.php:346
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
193
  msgid "Link to Top 10 plugin page"
194
  msgstr ""
195
 
196
- #: admin/admin.php:349
197
  msgid ""
198
  "A link to the plugin is added as an extra list item to the list of popular "
199
  "posts"
200
  msgstr ""
201
 
202
- #: admin/admin.php:354 admin/admin.php:459 admin/admin.php:662
203
- #: admin/admin.php:825 admin/admin.php:891 admin/admin.php:968
204
  msgid "Save Options"
205
  msgstr ""
206
 
207
- #: admin/admin.php:389
208
  msgid "Display number of views on:"
209
  msgstr ""
210
 
211
- #: admin/admin.php:391
212
  msgid "Posts"
213
  msgstr ""
214
 
215
- #: admin/admin.php:392
216
  msgid "Pages"
217
  msgstr ""
218
 
219
- #: admin/admin.php:393
220
  msgid "Home page"
221
  msgstr ""
222
 
223
- #: admin/admin.php:394
224
  msgid "Feeds"
225
  msgstr ""
226
 
227
- #: admin/admin.php:395
228
  msgid "Category archives"
229
  msgstr ""
230
 
231
- #: admin/admin.php:396
232
  msgid "Tag archives"
233
  msgstr ""
234
 
235
- #: admin/admin.php:397
236
  msgid "Other archives"
237
  msgstr ""
238
 
239
- #: admin/admin.php:398
240
  msgid ""
241
  "If you choose to disable this, please add <code>&lt;?php if "
242
  "( function_exists ( 'echo_tptn_post_count' ) ) echo_tptn_post_count(); ?&gt;"
243
  "</code> to your template file where you want it displayed"
244
  msgstr ""
245
 
246
- #: admin/admin.php:402
247
  msgid "Format to display the post views:"
248
  msgstr ""
249
 
250
- #: admin/admin.php:405
251
  msgid ""
252
  "Use <code>%totalcount%</code> to display the total count, <code>%dailycount"
253
  "%</code> to display the daily count and <code>%overallcount%</code> to "
@@ -255,11 +286,11 @@ msgid ""
255
  "options displays <code>[Visited 123 times, 23 visits today]</code>"
256
  msgstr ""
257
 
258
- #: admin/admin.php:409
259
  msgid "What do display when there are no visits?"
260
  msgstr ""
261
 
262
- #: admin/admin.php:412
263
  msgid ""
264
  "This text applies only when there are 0 hits for the post and it isn't a "
265
  "single page. e.g. if you display post views on the homepage or archives then "
@@ -267,244 +298,224 @@ msgid ""
267
  "option."
268
  msgstr ""
269
 
270
- #: admin/admin.php:416
271
  msgid "Always display latest post count"
272
  msgstr ""
273
 
274
- #: admin/admin.php:419
275
  msgid ""
276
  "This option uses JavaScript and will increase your page load time. Turn this "
277
  "off if you are not using caching plugins or are OK with displaying older "
278
  "cached counts."
279
  msgstr ""
280
 
281
- #: admin/admin.php:423
282
  msgid "Track visits of authors on their own posts?"
283
  msgstr ""
284
 
285
- #: admin/admin.php:426
286
  msgid ""
287
  "Disabling this option will stop authors visits tracked on their own posts"
288
  msgstr ""
289
 
290
- #: admin/admin.php:430
291
  msgid "Track visits of admins?"
292
  msgstr ""
293
 
294
- #: admin/admin.php:433
295
  msgid "Disabling this option will stop admin visits being tracked."
296
  msgstr ""
297
 
298
- #: admin/admin.php:437
299
  msgid "Track visits of Editors?"
300
  msgstr ""
301
 
302
- #: admin/admin.php:440
303
  msgid "Disabling this option will stop editor visits being tracked."
304
  msgstr ""
305
 
306
- #: admin/admin.php:444
307
  msgid "Display page views on Posts and Pages in Admin"
308
  msgstr ""
309
 
310
- #: admin/admin.php:447
311
  msgid ""
312
  "Adds three columns called Total Views, Today's Views and Views to All Posts "
313
  "and All Pages"
314
  msgstr ""
315
 
316
- #: admin/admin.php:451
317
  msgid "Show number of views to non-admins"
318
  msgstr ""
319
 
320
- #: admin/admin.php:454
321
  msgid ""
322
  "If you disable this then non-admins won't see the above columns or view the "
323
  "independent pages with the top posts"
324
  msgstr ""
325
 
326
- #: admin/admin.php:494
327
  msgid "Number of popular posts to display: "
328
  msgstr ""
329
 
330
- #: admin/admin.php:497
331
  msgid ""
332
  "Maximum number of posts that will be displayed in the list. This option is "
333
  "used if you don't specify the number of posts in the widget or shortcodes"
334
  msgstr ""
335
 
336
- #: admin/admin.php:501
337
- msgid "Daily popular contains top posts over:"
338
- msgstr ""
339
-
340
- #: admin/admin.php:503
341
- msgid "day(s)"
342
- msgstr ""
343
-
344
- #: admin/admin.php:504
345
- msgid "hour(s)"
346
- msgstr ""
347
-
348
- #: admin/admin.php:505
349
- msgid ""
350
- "Think of Daily Popular has a custom date range applied as a global setting. "
351
- "Instead of displaying popular posts from the past day, this setting lets you "
352
- "display posts for as many days or as few hours as you want. This can be "
353
- "overridden in the widget."
354
- msgstr ""
355
-
356
- #: admin/admin.php:509
357
  msgid "Post types to include in results (including custom post types)"
358
  msgstr ""
359
 
360
- #: admin/admin.php:521
361
  msgid "List of post or page IDs to exclude from the results: "
362
  msgstr ""
363
 
364
- #: admin/admin.php:523 admin/admin.php:630
365
  msgid "Enter comma separated list of IDs. e.g. 188,320,500"
366
  msgstr ""
367
 
368
- #: admin/admin.php:527
369
  msgid "Exclude Categories: "
370
  msgstr ""
371
 
372
- #: admin/admin.php:542
373
  msgid ""
374
  "Comma separated list of category slugs. The field above has an autocomplete "
375
  "so simply start typing in the starting letters and it will prompt you with "
376
  "options"
377
  msgstr ""
378
 
379
- #: admin/admin.php:547
380
  msgid "Title of popular posts: "
381
  msgstr ""
382
 
383
- #: admin/admin.php:553
384
  msgid "Title of daily popular posts: "
385
  msgstr ""
386
 
387
- #: admin/admin.php:559
388
  msgid "When there are no posts, what should be shown?"
389
  msgstr ""
390
 
391
- #: admin/admin.php:563
392
  msgid "Blank Output"
393
  msgstr ""
394
 
395
- #: admin/admin.php:567
396
  msgid "Display:"
397
  msgstr ""
398
 
399
- #: admin/admin.php:572
400
  msgid "Show post excerpt in list?"
401
  msgstr ""
402
 
403
- #: admin/admin.php:578
404
  msgid "Length of excerpt (in words): "
405
  msgstr ""
406
 
407
- #: admin/admin.php:584
408
  msgid "Show post author in list?"
409
  msgstr ""
410
 
411
- #: admin/admin.php:590
412
  msgid "Show post date in list?"
413
  msgstr ""
414
 
415
- #: admin/admin.php:596
416
  msgid "Limit post title length (in characters)"
417
  msgstr ""
418
 
419
- #: admin/admin.php:602
420
  msgid "Show view count in list?"
421
  msgstr ""
422
 
423
- #: admin/admin.php:608
424
  msgid "Always display latest post count in the daily lists?"
425
  msgstr ""
426
 
427
- #: admin/admin.php:611
428
  msgid ""
429
  "This option uses JavaScript and will increase your page load time. When you "
430
  "enable this option, the daily widget will not use the options set there, but "
431
  "options will need to be set on this screen."
432
  msgstr ""
433
 
434
- #: admin/admin.php:615
435
  msgid "Open links in new window"
436
  msgstr ""
437
 
438
- #: admin/admin.php:621
439
  msgid "Add nofollow attribute to links in the list"
440
  msgstr ""
441
 
442
- #: admin/admin.php:627
443
  msgid "Exclude display of related posts on these posts / pages"
444
  msgstr ""
445
 
446
- #: admin/admin.php:634
447
  msgid "Customise the list HTML"
448
  msgstr ""
449
 
450
- #: admin/admin.php:637
451
  msgid "HTML to display before the list of posts: "
452
  msgstr ""
453
 
454
- #: admin/admin.php:643
455
  msgid "HTML to display before each list item: "
456
  msgstr ""
457
 
458
- #: admin/admin.php:649
459
  msgid "HTML to display after each list item: "
460
  msgstr ""
461
 
462
- #: admin/admin.php:655
463
  msgid "HTML to display after the list of posts: "
464
  msgstr ""
465
 
466
- #: admin/admin.php:696
467
  msgid "Location of post thumbnail:"
468
  msgstr ""
469
 
470
- #: admin/admin.php:700
471
  msgid "Display thumbnails inline with posts, before title"
472
  msgstr ""
473
 
474
- #: admin/admin.php:705
475
  msgid "Display thumbnails inline with posts, after title"
476
  msgstr ""
477
 
478
- #: admin/admin.php:710
479
  msgid "Display only thumbnails, no text"
480
  msgstr ""
481
 
482
- #: admin/admin.php:715
483
  msgid "Do not display thumbnails, only text."
484
  msgstr ""
485
 
486
- #: admin/admin.php:719
487
  msgid "Thumbnail size:"
488
  msgstr ""
489
 
490
- #: admin/admin.php:743
491
  msgid "Custom size"
492
  msgstr ""
493
 
494
- #: admin/admin.php:746
495
  msgid ""
496
  "You can choose from existing image sizes above or create a custom size. If "
497
  "you have chosen Custom size above, then enter the width, height and crop "
498
  "settings below. For best results, use a cropped image."
499
  msgstr ""
500
 
501
- #: admin/admin.php:747
502
  msgid ""
503
  "If you change the width and/or height below, existing images will not be "
504
  "automatically resized."
505
  msgstr ""
506
 
507
- #: admin/admin.php:748
508
  #, php-format
509
  msgid ""
510
  "I recommend using <a href='%s' target='_blank'>Force Regenerate Thumbnails</"
@@ -512,157 +523,157 @@ msgid ""
512
  "regenerate all image sizes."
513
  msgstr ""
514
 
515
- #: admin/admin.php:751
516
  msgid "Width of custom thumbnail:"
517
  msgstr ""
518
 
519
- #: admin/admin.php:756
520
  msgid "Height of custom thumbnail"
521
  msgstr ""
522
 
523
- #: admin/admin.php:761
524
  msgid "Crop mode:"
525
  msgstr ""
526
 
527
- #: admin/admin.php:765
528
  msgid ""
529
  "By default, thumbnails will be proportionately cropped. Check this box to "
530
  "hard crop the thumbnails."
531
  msgstr ""
532
 
533
- #: admin/admin.php:766
534
  #, php-format
535
  msgid "<a href='%s' target='_blank'>Difference between soft and hard crop</a>"
536
  msgstr ""
537
 
538
- #: admin/admin.php:768
539
  msgid ""
540
  "Since you're using the default styles set under the Custom Styles section, "
541
  "the width and height is fixed at 65px and crop mode is enabled."
542
  msgstr ""
543
 
544
- #: admin/admin.php:773
545
  msgid "Style attributes / Width and Height HTML attributes:"
546
  msgstr ""
547
 
548
- #: admin/admin.php:777
549
  msgid "Style attributes are used for width and height."
550
  msgstr ""
551
 
552
- #: admin/admin.php:782
553
  msgid "HTML width and height attributes are used for width and height."
554
  msgstr ""
555
 
556
- #: admin/admin.php:786
557
  msgid "Use timthumb to generate thumbnails? "
558
  msgstr ""
559
 
560
- #: admin/admin.php:789
561
  msgid ""
562
  "If checked, <a href=\"http://www.binarymoon.co.uk/projects/timthumb/\" "
563
  "target=\"_blank\">timthumb</a> will be used to generate thumbnails"
564
  msgstr ""
565
 
566
- #: admin/admin.php:792
567
  msgid "Quality of thumbnails generated by timthumb:"
568
  msgstr ""
569
 
570
- #: admin/admin.php:795
571
  msgid ""
572
  "Enter values between 0 and 100 only. 100 is highest quality and the highest "
573
  "file size. Suggested maximum value is 95. Default is 75."
574
  msgstr ""
575
 
576
- #: admin/admin.php:798
577
  msgid "Post thumbnail meta field name: "
578
  msgstr ""
579
 
580
- #: admin/admin.php:801
581
  msgid ""
582
  "The value of this field should contain the image source and is set in the "
583
  "<em>Add New Post</em> screen"
584
  msgstr ""
585
 
586
- #: admin/admin.php:804
587
  msgid ""
588
  "If the postmeta is not set, then should the plugin extract the first image "
589
  "from the post?"
590
  msgstr ""
591
 
592
- #: admin/admin.php:807
593
  msgid ""
594
  "This could slow down the loading of your page if the first image in the "
595
  "related posts is large in file-size"
596
  msgstr ""
597
 
598
- #: admin/admin.php:810
599
  msgid "Use default thumbnail? "
600
  msgstr ""
601
 
602
- #: admin/admin.php:813
603
  msgid ""
604
  "If checked, when no thumbnail is found, show a default one from the URL "
605
  "below. If not checked and no thumbnail is found, no image will be shown."
606
  msgstr ""
607
 
608
- #: admin/admin.php:816
609
  msgid "Default thumbnail: "
610
  msgstr ""
611
 
612
- #: admin/admin.php:820
613
  msgid ""
614
  "The plugin will first check if the post contains a thumbnail. If it doesn't "
615
  "then it will check the meta field. If this is not available, then it will "
616
  "show the default image as specified above"
617
  msgstr ""
618
 
619
- #: admin/admin.php:844
620
  msgid "Custom CSS"
621
  msgstr ""
622
 
623
- #: admin/admin.php:859
624
  msgid "Use default style included in the plugin?"
625
  msgstr ""
626
 
627
- #: admin/admin.php:862
628
  msgid ""
629
  "Top 10 includes a default style that makes your popular posts list to look "
630
  "beautiful. Check the box above if you want to use this."
631
  msgstr ""
632
 
633
- #: admin/admin.php:863
634
  msgid ""
635
  "Enabling this option will turn on the thumbnails and set their width and "
636
  "height to 65px. It will also turn off the display of the author, excerpt and "
637
  "date if already enabled. Disabling this option will not revert any settings."
638
  msgstr ""
639
 
640
- #: admin/admin.php:864
641
  #, php-format
642
  msgid ""
643
  "You can view the default style at <a href=\"%1$s\" target=\"_blank\">%1$s</a>"
644
  msgstr ""
645
 
646
- #: admin/admin.php:867
647
  msgid "Custom CSS to add to header:"
648
  msgstr ""
649
 
650
- #: admin/admin.php:872
651
  msgid ""
652
  "Do not include <code>style</code> tags. Check out the <a href=\"http://"
653
  "wordpress.org/extend/plugins/top-10/faq/\" target=\"_blank\">FAQ</a> for "
654
  "available CSS classes to style."
655
  msgstr ""
656
 
657
- #: admin/admin.php:892
658
  msgid "Default Options"
659
  msgstr ""
660
 
661
- #: admin/admin.php:892
662
  msgid "Do you want to set options to Default?"
663
  msgstr ""
664
 
665
- #: admin/admin.php:916
666
  msgid ""
667
  "Over time the Daily Top 10 database grows in size, which reduces the "
668
  "performance of the plugin. Cleaning the database at regular intervals could "
@@ -670,215 +681,225 @@ msgid ""
670
  "will automatically delete entries older than 90 days."
671
  msgstr ""
672
 
673
- #: admin/admin.php:917
674
  msgid ""
675
  "Note: When scheduled maintenance is enabled, WordPress will run the cron job "
676
  "everytime the job is rescheduled (i.e. you change the settings below)."
677
  msgstr ""
678
 
679
- #: admin/admin.php:920
680
  msgid "Enable scheduled maintenance of daily tables:"
681
  msgstr ""
682
 
683
- #: admin/admin.php:924
684
  msgid "Time to run maintenance"
685
  msgstr ""
686
 
687
- #: admin/admin.php:925
688
  msgid "hrs"
689
  msgstr ""
690
 
691
- #: admin/admin.php:925
692
  msgid "min"
693
  msgstr ""
694
 
695
- #: admin/admin.php:927
696
  msgid "How often should the maintenance be run:"
697
  msgstr ""
698
 
699
- #: admin/admin.php:931
700
  msgid "Daily"
701
  msgstr ""
702
 
703
- #: admin/admin.php:935
704
  msgid "Weekly"
705
  msgstr ""
706
 
707
- #: admin/admin.php:939
708
  msgid "Fortnightly"
709
  msgstr ""
710
 
711
- #: admin/admin.php:943
712
  msgid "Monthly"
713
  msgstr ""
714
 
715
- #: admin/admin.php:952
716
  msgid "The cron job has been scheduled. Maintenance will run "
717
  msgstr ""
718
 
719
- #: admin/admin.php:957
720
  msgid "The cron job is missing. Please resave this page to add the job"
721
  msgstr ""
722
 
723
- #: admin/admin.php:962
724
  msgid "Maintenance is turned off"
725
  msgstr ""
726
 
727
- #: admin/admin.php:976
728
  msgid "Reset count"
729
  msgstr ""
730
 
731
- #: admin/admin.php:979
732
  msgid ""
733
  "This cannot be reversed. Make sure that your database has been backed up "
734
  "before proceeding"
735
  msgstr ""
736
 
737
- #: admin/admin.php:982
738
  msgid "Reset Popular Posts"
739
  msgstr ""
740
 
741
- #: admin/admin.php:982
742
  msgid "Are you sure you want to reset the popular posts?"
743
  msgstr ""
744
 
745
- #: admin/admin.php:983
746
  msgid "Reset Daily Popular Posts"
747
  msgstr ""
748
 
749
- #: admin/admin.php:983
750
  msgid "Are you sure you want to reset the daily popular posts?"
751
  msgstr ""
752
 
753
- #: admin/admin.php:984
754
  msgid "Clear duplicates"
755
  msgstr ""
756
 
757
- #: admin/admin.php:984
758
  msgid "This will delete the duplicate entries in the tables. Proceed?"
759
  msgstr ""
760
 
761
- #: admin/admin.php:997
762
  msgid "WordPress Multisite: Migrate Top 10 v1.x counts to 2.x"
763
  msgstr ""
764
 
765
- #: admin/admin.php:1000
766
  msgid ""
767
  "If you've been using Top 10 v1.x on multisite, you would have needed to "
768
  "activate the plugin independently for each site. This would have resulted in "
769
- "two tables being created for each site in the network. Top 10 v2.x onwards "
770
- "uses only a single table to record the count, keeping your database clean. "
771
- "You can use this tool to import the recorded counts from v1.x tables to the "
772
- "new v2.x table format."
773
  msgstr ""
774
 
775
- #: admin/admin.php:1003
 
 
 
 
 
 
 
776
  msgid ""
777
  "If you do not see any tables below, then it means that either all data has "
778
  "already been imported or no relevant information has been found."
779
  msgstr ""
780
 
781
- #: admin/admin.php:1037
 
 
 
 
 
 
782
  msgid "Blog ID"
783
  msgstr ""
784
 
785
- #: admin/admin.php:1040
786
  msgid "Status"
787
  msgstr ""
788
 
789
- #: admin/admin.php:1043
790
  msgid "Select to import"
791
  msgstr ""
792
 
793
- #: admin/admin.php:1053
794
  msgid "Blog #"
795
  msgstr ""
796
 
797
- #: admin/admin.php:1063
798
  msgid "Not imported"
799
  msgstr ""
800
 
801
- #: admin/admin.php:1067
802
  msgid "Imported"
803
  msgstr ""
804
 
805
- #: admin/admin.php:1088
806
  msgid "Begin import"
807
  msgstr ""
808
 
809
- #: admin/admin.php:1089
810
  msgid "Delete selected tables"
811
  msgstr ""
812
 
813
- #: admin/admin.php:1090
814
  msgid "Delete all imported tables"
815
  msgstr ""
816
 
817
- #: admin/admin.php:1147 admin/admin.php:1243
818
  msgid "Daily Popular Posts"
819
  msgstr ""
820
 
821
- #: admin/admin.php:1177
822
  msgid "Support the development"
823
  msgstr ""
824
 
825
- #: admin/admin.php:1184
826
  msgid "Donation for Top 10"
827
  msgstr ""
828
 
829
- #: admin/admin.php:1186
830
  msgid "Enter amount in USD: "
831
  msgstr ""
832
 
833
- #: admin/admin.php:1190
834
  msgid "Send your donation to the author of Top 10"
835
  msgstr ""
836
 
837
- #: admin/admin.php:1197
838
  msgid "Follow me"
839
  msgstr ""
840
 
841
- #: admin/admin.php:1207
842
  msgid "Quick links"
843
  msgstr ""
844
 
845
- #: admin/admin.php:1211
846
  msgid "Top 10 plugin page"
847
  msgstr ""
848
 
849
- #: admin/admin.php:1212
850
  msgid "Top 10 Github page"
851
  msgstr ""
852
 
853
- #: admin/admin.php:1213
854
  msgid "Other plugins"
855
  msgstr ""
856
 
857
- #: admin/admin.php:1214
858
  msgid "Ajay's blog"
859
  msgstr ""
860
 
861
- #: admin/admin.php:1215
862
  msgid "FAQ"
863
  msgstr ""
864
 
865
- #: admin/admin.php:1216 admin/admin.php:1374
866
  msgid "Support"
867
  msgstr ""
868
 
869
- #: admin/admin.php:1217
870
  msgid "Reviews"
871
  msgstr ""
872
 
873
- #: admin/admin.php:1240
874
  msgid "Overall Popular Posts"
875
  msgstr ""
876
 
877
- #: admin/admin.php:1351
878
  msgid "Settings"
879
  msgstr ""
880
 
881
- #: admin/admin.php:1375
882
  msgid "Donate"
883
  msgstr ""
884
 
@@ -958,39 +979,39 @@ msgstr ""
958
  msgid "Thumbnail width"
959
  msgstr ""
960
 
961
- #: top-10.php:866
962
  msgid " by "
963
  msgstr ""
964
 
965
- #: top-10.php:917
966
  #, php-format
967
  msgid "Popular posts by <a href=\"%s\" rel=\"nofollow\" %s>Top 10 plugin</a>"
968
  msgstr ""
969
 
970
- #: top-10.php:1016
971
  msgid "<h3>Popular Posts</h3>"
972
  msgstr ""
973
 
974
- #: top-10.php:1017
975
  msgid "<h3>Daily Popular</h3>"
976
  msgstr ""
977
 
978
- #: top-10.php:1018
979
  msgid "No top posts yet"
980
  msgstr ""
981
 
982
- #: top-10.php:1668
983
  msgid "Once Weekly"
984
  msgstr ""
985
 
986
- #: top-10.php:1672
987
  msgid "Once Fortnightly"
988
  msgstr ""
989
 
990
- #: top-10.php:1676
991
  msgid "Once Monthly"
992
  msgstr ""
993
 
994
- #: top-10.php:1680
995
  msgid "Once quarterly"
996
  msgstr ""
2
  msgstr ""
3
  "Project-Id-Version: Top 10\n"
4
  "Report-Msgid-Bugs-To: \n"
5
+ "POT-Creation-Date: 2015-01-01 21:52-0000\n"
6
  "PO-Revision-Date: \n"
7
  "Last-Translator: Ajay D'Souza <me@ajaydsouza.com>\n"
8
  "Language-Team: Ajay DSouza <me@ajaydsouza.com>\n"
59
  msgid "Next"
60
  msgstr ""
61
 
62
+ #: admin/admin-dashboard.php:200 admin/admin.php:1157
63
  msgid "Popular Posts"
64
  msgstr ""
65
 
67
  msgid "Daily Popular"
68
  msgstr ""
69
 
70
+ #: admin/admin-metabox.php:38 admin/admin.php:1246
71
  msgid "Top 10"
72
  msgstr ""
73
 
96
  msgid "The URL above is saved in the meta field: "
97
  msgstr ""
98
 
99
+ #: admin/admin.php:161
100
  msgid "Options saved successfully."
101
  msgstr ""
102
 
103
+ #: admin/admin.php:171
104
  msgid "Options set to Default."
105
  msgstr ""
106
 
107
+ #: admin/admin.php:177
108
  msgid "Top 10 popular posts reset"
109
  msgstr ""
110
 
111
+ #: admin/admin.php:183
112
  msgid "Top 10 daily popular posts reset"
113
  msgstr ""
114
 
115
+ #: admin/admin.php:190
116
  msgid "Duplicate rows cleaned from tables"
117
  msgstr ""
118
 
119
+ #: admin/admin.php:202
120
  msgid "Scheduled maintenance enabled / modified"
121
  msgstr ""
122
 
123
+ #: admin/admin.php:206
124
  msgid "Scheduled maintenance disabled"
125
  msgstr ""
126
 
127
+ #: admin/admin.php:245
128
  msgid "Counts from selected sites have been imported."
129
  msgstr ""
130
 
131
+ #: admin/admin.php:270
132
  msgid ""
133
  "Selected tables have been deleted. Note that only imported tables have been "
134
  "deleted."
135
  msgstr ""
136
 
137
+ #: admin/admin.php:278 admin/admin.php:1246 admin/admin.php:1249
138
  msgid "Top 10 Settings"
139
  msgstr ""
140
 
141
+ #: admin/admin.php:290 admin/admin.php:312
142
  msgid "General options"
143
  msgstr ""
144
 
145
+ #: admin/admin.php:291 admin/admin.php:389
146
  msgid "Counter and tracker options"
147
  msgstr ""
148
 
149
+ #: admin/admin.php:292 admin/admin.php:494
150
  msgid "Popular post list options"
151
  msgstr ""
152
 
153
+ #: admin/admin.php:293 admin/admin.php:689
154
  #: includes/class-top-10-widget.php:103
155
  msgid "Thumbnail options"
156
  msgstr ""
157
 
158
+ #: admin/admin.php:294
159
  msgid "Custom styles"
160
  msgstr ""
161
 
162
+ #: admin/admin.php:295 admin/admin.php:920
163
  msgid "Maintenance"
164
  msgstr ""
165
 
166
+ #: admin/admin.php:311 admin/admin.php:388 admin/admin.php:493
167
+ #: admin/admin.php:688 admin/admin.php:851 admin/admin.php:919
168
+ #: admin/admin.php:983 admin/admin.php:1004 admin/admin.php:1188
169
+ #: admin/admin.php:1208 admin/admin.php:1218
170
  msgid "Click to toggle"
171
  msgstr ""
172
 
173
+ #: admin/admin.php:328
174
  msgid "Enable Overall stats"
175
  msgstr ""
176
 
177
+ #: admin/admin.php:334
178
  msgid "Enable Daily stats"
179
  msgstr ""
180
 
181
+ #: admin/admin.php:340
182
  msgid "Cache fix:"
183
  msgstr ""
184
 
185
+ #: admin/admin.php:343
186
  msgid ""
187
  "This will try to prevent W3 Total Cache and other caching plugins from "
188
  "caching the tracker script of the plugin. Try toggling this option in case "
189
  "you find that your posts are not tracked."
190
  msgstr ""
191
 
192
+ #: admin/admin.php:347
193
+ msgid "Start daily counts from midnight:"
194
+ msgstr ""
195
+
196
+ #: admin/admin.php:350
197
+ msgid ""
198
+ "Daily counter will display number of visits from midnight. This option is "
199
+ "checked by default and mimics the way most normal counters work. Turning "
200
+ "this off will allow you to use the hourly setting in the next option."
201
+ msgstr ""
202
+
203
+ #: admin/admin.php:354
204
+ msgid "Daily popular contains top posts over:"
205
+ msgstr ""
206
+
207
+ #: admin/admin.php:356
208
+ msgid "day(s)"
209
+ msgstr ""
210
+
211
+ #: admin/admin.php:357
212
+ msgid "hour(s)"
213
+ msgstr ""
214
+
215
+ #: admin/admin.php:358
216
+ msgid ""
217
+ "Think of Daily Popular has a custom date range applied as a global setting. "
218
+ "Instead of displaying popular posts from the past day, this setting lets you "
219
+ "display posts for as many days or as few hours as you want. This can be "
220
+ "overridden in the widget."
221
+ msgstr ""
222
+
223
+ #: admin/admin.php:362
224
  msgid "Link to Top 10 plugin page"
225
  msgstr ""
226
 
227
+ #: admin/admin.php:365
228
  msgid ""
229
  "A link to the plugin is added as an extra list item to the list of popular "
230
  "posts"
231
  msgstr ""
232
 
233
+ #: admin/admin.php:370 admin/admin.php:475 admin/admin.php:670
234
+ #: admin/admin.php:833 admin/admin.php:899 admin/admin.php:976
235
  msgid "Save Options"
236
  msgstr ""
237
 
238
+ #: admin/admin.php:405
239
  msgid "Display number of views on:"
240
  msgstr ""
241
 
242
+ #: admin/admin.php:407
243
  msgid "Posts"
244
  msgstr ""
245
 
246
+ #: admin/admin.php:408
247
  msgid "Pages"
248
  msgstr ""
249
 
250
+ #: admin/admin.php:409
251
  msgid "Home page"
252
  msgstr ""
253
 
254
+ #: admin/admin.php:410
255
  msgid "Feeds"
256
  msgstr ""
257
 
258
+ #: admin/admin.php:411
259
  msgid "Category archives"
260
  msgstr ""
261
 
262
+ #: admin/admin.php:412
263
  msgid "Tag archives"
264
  msgstr ""
265
 
266
+ #: admin/admin.php:413
267
  msgid "Other archives"
268
  msgstr ""
269
 
270
+ #: admin/admin.php:414
271
  msgid ""
272
  "If you choose to disable this, please add <code>&lt;?php if "
273
  "( function_exists ( 'echo_tptn_post_count' ) ) echo_tptn_post_count(); ?&gt;"
274
  "</code> to your template file where you want it displayed"
275
  msgstr ""
276
 
277
+ #: admin/admin.php:418
278
  msgid "Format to display the post views:"
279
  msgstr ""
280
 
281
+ #: admin/admin.php:421
282
  msgid ""
283
  "Use <code>%totalcount%</code> to display the total count, <code>%dailycount"
284
  "%</code> to display the daily count and <code>%overallcount%</code> to "
286
  "options displays <code>[Visited 123 times, 23 visits today]</code>"
287
  msgstr ""
288
 
289
+ #: admin/admin.php:425
290
  msgid "What do display when there are no visits?"
291
  msgstr ""
292
 
293
+ #: admin/admin.php:428
294
  msgid ""
295
  "This text applies only when there are 0 hits for the post and it isn't a "
296
  "single page. e.g. if you display post views on the homepage or archives then "
298
  "option."
299
  msgstr ""
300
 
301
+ #: admin/admin.php:432
302
  msgid "Always display latest post count"
303
  msgstr ""
304
 
305
+ #: admin/admin.php:435
306
  msgid ""
307
  "This option uses JavaScript and will increase your page load time. Turn this "
308
  "off if you are not using caching plugins or are OK with displaying older "
309
  "cached counts."
310
  msgstr ""
311
 
312
+ #: admin/admin.php:439
313
  msgid "Track visits of authors on their own posts?"
314
  msgstr ""
315
 
316
+ #: admin/admin.php:442
317
  msgid ""
318
  "Disabling this option will stop authors visits tracked on their own posts"
319
  msgstr ""
320
 
321
+ #: admin/admin.php:446
322
  msgid "Track visits of admins?"
323
  msgstr ""
324
 
325
+ #: admin/admin.php:449
326
  msgid "Disabling this option will stop admin visits being tracked."
327
  msgstr ""
328
 
329
+ #: admin/admin.php:453
330
  msgid "Track visits of Editors?"
331
  msgstr ""
332
 
333
+ #: admin/admin.php:456
334
  msgid "Disabling this option will stop editor visits being tracked."
335
  msgstr ""
336
 
337
+ #: admin/admin.php:460
338
  msgid "Display page views on Posts and Pages in Admin"
339
  msgstr ""
340
 
341
+ #: admin/admin.php:463
342
  msgid ""
343
  "Adds three columns called Total Views, Today's Views and Views to All Posts "
344
  "and All Pages"
345
  msgstr ""
346
 
347
+ #: admin/admin.php:467
348
  msgid "Show number of views to non-admins"
349
  msgstr ""
350
 
351
+ #: admin/admin.php:470
352
  msgid ""
353
  "If you disable this then non-admins won't see the above columns or view the "
354
  "independent pages with the top posts"
355
  msgstr ""
356
 
357
+ #: admin/admin.php:510
358
  msgid "Number of popular posts to display: "
359
  msgstr ""
360
 
361
+ #: admin/admin.php:513
362
  msgid ""
363
  "Maximum number of posts that will be displayed in the list. This option is "
364
  "used if you don't specify the number of posts in the widget or shortcodes"
365
  msgstr ""
366
 
367
+ #: admin/admin.php:517
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
368
  msgid "Post types to include in results (including custom post types)"
369
  msgstr ""
370
 
371
+ #: admin/admin.php:529
372
  msgid "List of post or page IDs to exclude from the results: "
373
  msgstr ""
374
 
375
+ #: admin/admin.php:531 admin/admin.php:638
376
  msgid "Enter comma separated list of IDs. e.g. 188,320,500"
377
  msgstr ""
378
 
379
+ #: admin/admin.php:535
380
  msgid "Exclude Categories: "
381
  msgstr ""
382
 
383
+ #: admin/admin.php:550
384
  msgid ""
385
  "Comma separated list of category slugs. The field above has an autocomplete "
386
  "so simply start typing in the starting letters and it will prompt you with "
387
  "options"
388
  msgstr ""
389
 
390
+ #: admin/admin.php:555
391
  msgid "Title of popular posts: "
392
  msgstr ""
393
 
394
+ #: admin/admin.php:561
395
  msgid "Title of daily popular posts: "
396
  msgstr ""
397
 
398
+ #: admin/admin.php:567
399
  msgid "When there are no posts, what should be shown?"
400
  msgstr ""
401
 
402
+ #: admin/admin.php:571
403
  msgid "Blank Output"
404
  msgstr ""
405
 
406
+ #: admin/admin.php:575
407
  msgid "Display:"
408
  msgstr ""
409
 
410
+ #: admin/admin.php:580
411
  msgid "Show post excerpt in list?"
412
  msgstr ""
413
 
414
+ #: admin/admin.php:586
415
  msgid "Length of excerpt (in words): "
416
  msgstr ""
417
 
418
+ #: admin/admin.php:592
419
  msgid "Show post author in list?"
420
  msgstr ""
421
 
422
+ #: admin/admin.php:598
423
  msgid "Show post date in list?"
424
  msgstr ""
425
 
426
+ #: admin/admin.php:604
427
  msgid "Limit post title length (in characters)"
428
  msgstr ""
429
 
430
+ #: admin/admin.php:610
431
  msgid "Show view count in list?"
432
  msgstr ""
433
 
434
+ #: admin/admin.php:616
435
  msgid "Always display latest post count in the daily lists?"
436
  msgstr ""
437
 
438
+ #: admin/admin.php:619
439
  msgid ""
440
  "This option uses JavaScript and will increase your page load time. When you "
441
  "enable this option, the daily widget will not use the options set there, but "
442
  "options will need to be set on this screen."
443
  msgstr ""
444
 
445
+ #: admin/admin.php:623
446
  msgid "Open links in new window"
447
  msgstr ""
448
 
449
+ #: admin/admin.php:629
450
  msgid "Add nofollow attribute to links in the list"
451
  msgstr ""
452
 
453
+ #: admin/admin.php:635
454
  msgid "Exclude display of related posts on these posts / pages"
455
  msgstr ""
456
 
457
+ #: admin/admin.php:642
458
  msgid "Customise the list HTML"
459
  msgstr ""
460
 
461
+ #: admin/admin.php:645
462
  msgid "HTML to display before the list of posts: "
463
  msgstr ""
464
 
465
+ #: admin/admin.php:651
466
  msgid "HTML to display before each list item: "
467
  msgstr ""
468
 
469
+ #: admin/admin.php:657
470
  msgid "HTML to display after each list item: "
471
  msgstr ""
472
 
473
+ #: admin/admin.php:663
474
  msgid "HTML to display after the list of posts: "
475
  msgstr ""
476
 
477
+ #: admin/admin.php:704
478
  msgid "Location of post thumbnail:"
479
  msgstr ""
480
 
481
+ #: admin/admin.php:708
482
  msgid "Display thumbnails inline with posts, before title"
483
  msgstr ""
484
 
485
+ #: admin/admin.php:713
486
  msgid "Display thumbnails inline with posts, after title"
487
  msgstr ""
488
 
489
+ #: admin/admin.php:718
490
  msgid "Display only thumbnails, no text"
491
  msgstr ""
492
 
493
+ #: admin/admin.php:723
494
  msgid "Do not display thumbnails, only text."
495
  msgstr ""
496
 
497
+ #: admin/admin.php:727
498
  msgid "Thumbnail size:"
499
  msgstr ""
500
 
501
+ #: admin/admin.php:751
502
  msgid "Custom size"
503
  msgstr ""
504
 
505
+ #: admin/admin.php:754
506
  msgid ""
507
  "You can choose from existing image sizes above or create a custom size. If "
508
  "you have chosen Custom size above, then enter the width, height and crop "
509
  "settings below. For best results, use a cropped image."
510
  msgstr ""
511
 
512
+ #: admin/admin.php:755
513
  msgid ""
514
  "If you change the width and/or height below, existing images will not be "
515
  "automatically resized."
516
  msgstr ""
517
 
518
+ #: admin/admin.php:756
519
  #, php-format
520
  msgid ""
521
  "I recommend using <a href='%s' target='_blank'>Force Regenerate Thumbnails</"
523
  "regenerate all image sizes."
524
  msgstr ""
525
 
526
+ #: admin/admin.php:759
527
  msgid "Width of custom thumbnail:"
528
  msgstr ""
529
 
530
+ #: admin/admin.php:764
531
  msgid "Height of custom thumbnail"
532
  msgstr ""
533
 
534
+ #: admin/admin.php:769
535
  msgid "Crop mode:"
536
  msgstr ""
537
 
538
+ #: admin/admin.php:773
539
  msgid ""
540
  "By default, thumbnails will be proportionately cropped. Check this box to "
541
  "hard crop the thumbnails."
542
  msgstr ""
543
 
544
+ #: admin/admin.php:774
545
  #, php-format
546
  msgid "<a href='%s' target='_blank'>Difference between soft and hard crop</a>"
547
  msgstr ""
548
 
549
+ #: admin/admin.php:776
550
  msgid ""
551
  "Since you're using the default styles set under the Custom Styles section, "
552
  "the width and height is fixed at 65px and crop mode is enabled."
553
  msgstr ""
554
 
555
+ #: admin/admin.php:781
556
  msgid "Style attributes / Width and Height HTML attributes:"
557
  msgstr ""
558
 
559
+ #: admin/admin.php:785
560
  msgid "Style attributes are used for width and height."
561
  msgstr ""
562
 
563
+ #: admin/admin.php:790
564
  msgid "HTML width and height attributes are used for width and height."
565
  msgstr ""
566
 
567
+ #: admin/admin.php:794
568
  msgid "Use timthumb to generate thumbnails? "
569
  msgstr ""
570
 
571
+ #: admin/admin.php:797
572
  msgid ""
573
  "If checked, <a href=\"http://www.binarymoon.co.uk/projects/timthumb/\" "
574
  "target=\"_blank\">timthumb</a> will be used to generate thumbnails"
575
  msgstr ""
576
 
577
+ #: admin/admin.php:800
578
  msgid "Quality of thumbnails generated by timthumb:"
579
  msgstr ""
580
 
581
+ #: admin/admin.php:803
582
  msgid ""
583
  "Enter values between 0 and 100 only. 100 is highest quality and the highest "
584
  "file size. Suggested maximum value is 95. Default is 75."
585
  msgstr ""
586
 
587
+ #: admin/admin.php:806
588
  msgid "Post thumbnail meta field name: "
589
  msgstr ""
590
 
591
+ #: admin/admin.php:809
592
  msgid ""
593
  "The value of this field should contain the image source and is set in the "
594
  "<em>Add New Post</em> screen"
595
  msgstr ""
596
 
597
+ #: admin/admin.php:812
598
  msgid ""
599
  "If the postmeta is not set, then should the plugin extract the first image "
600
  "from the post?"
601
  msgstr ""
602
 
603
+ #: admin/admin.php:815
604
  msgid ""
605
  "This could slow down the loading of your page if the first image in the "
606
  "related posts is large in file-size"
607
  msgstr ""
608
 
609
+ #: admin/admin.php:818
610
  msgid "Use default thumbnail? "
611
  msgstr ""
612
 
613
+ #: admin/admin.php:821
614
  msgid ""
615
  "If checked, when no thumbnail is found, show a default one from the URL "
616
  "below. If not checked and no thumbnail is found, no image will be shown."
617
  msgstr ""
618
 
619
+ #: admin/admin.php:824
620
  msgid "Default thumbnail: "
621
  msgstr ""
622
 
623
+ #: admin/admin.php:828
624
  msgid ""
625
  "The plugin will first check if the post contains a thumbnail. If it doesn't "
626
  "then it will check the meta field. If this is not available, then it will "
627
  "show the default image as specified above"
628
  msgstr ""
629
 
630
+ #: admin/admin.php:852
631
  msgid "Custom CSS"
632
  msgstr ""
633
 
634
+ #: admin/admin.php:867
635
  msgid "Use default style included in the plugin?"
636
  msgstr ""
637
 
638
+ #: admin/admin.php:870
639
  msgid ""
640
  "Top 10 includes a default style that makes your popular posts list to look "
641
  "beautiful. Check the box above if you want to use this."
642
  msgstr ""
643
 
644
+ #: admin/admin.php:871
645
  msgid ""
646
  "Enabling this option will turn on the thumbnails and set their width and "
647
  "height to 65px. It will also turn off the display of the author, excerpt and "
648
  "date if already enabled. Disabling this option will not revert any settings."
649
  msgstr ""
650
 
651
+ #: admin/admin.php:872
652
  #, php-format
653
  msgid ""
654
  "You can view the default style at <a href=\"%1$s\" target=\"_blank\">%1$s</a>"
655
  msgstr ""
656
 
657
+ #: admin/admin.php:875
658
  msgid "Custom CSS to add to header:"
659
  msgstr ""
660
 
661
+ #: admin/admin.php:880
662
  msgid ""
663
  "Do not include <code>style</code> tags. Check out the <a href=\"http://"
664
  "wordpress.org/extend/plugins/top-10/faq/\" target=\"_blank\">FAQ</a> for "
665
  "available CSS classes to style."
666
  msgstr ""
667
 
668
+ #: admin/admin.php:900
669
  msgid "Default Options"
670
  msgstr ""
671
 
672
+ #: admin/admin.php:900
673
  msgid "Do you want to set options to Default?"
674
  msgstr ""
675
 
676
+ #: admin/admin.php:924
677
  msgid ""
678
  "Over time the Daily Top 10 database grows in size, which reduces the "
679
  "performance of the plugin. Cleaning the database at regular intervals could "
681
  "will automatically delete entries older than 90 days."
682
  msgstr ""
683
 
684
+ #: admin/admin.php:925
685
  msgid ""
686
  "Note: When scheduled maintenance is enabled, WordPress will run the cron job "
687
  "everytime the job is rescheduled (i.e. you change the settings below)."
688
  msgstr ""
689
 
690
+ #: admin/admin.php:928
691
  msgid "Enable scheduled maintenance of daily tables:"
692
  msgstr ""
693
 
694
+ #: admin/admin.php:932
695
  msgid "Time to run maintenance"
696
  msgstr ""
697
 
698
+ #: admin/admin.php:933
699
  msgid "hrs"
700
  msgstr ""
701
 
702
+ #: admin/admin.php:933
703
  msgid "min"
704
  msgstr ""
705
 
706
+ #: admin/admin.php:935
707
  msgid "How often should the maintenance be run:"
708
  msgstr ""
709
 
710
+ #: admin/admin.php:939
711
  msgid "Daily"
712
  msgstr ""
713
 
714
+ #: admin/admin.php:943
715
  msgid "Weekly"
716
  msgstr ""
717
 
718
+ #: admin/admin.php:947
719
  msgid "Fortnightly"
720
  msgstr ""
721
 
722
+ #: admin/admin.php:951
723
  msgid "Monthly"
724
  msgstr ""
725
 
726
+ #: admin/admin.php:960
727
  msgid "The cron job has been scheduled. Maintenance will run "
728
  msgstr ""
729
 
730
+ #: admin/admin.php:965
731
  msgid "The cron job is missing. Please resave this page to add the job"
732
  msgstr ""
733
 
734
+ #: admin/admin.php:970
735
  msgid "Maintenance is turned off"
736
  msgstr ""
737
 
738
+ #: admin/admin.php:984
739
  msgid "Reset count"
740
  msgstr ""
741
 
742
+ #: admin/admin.php:987
743
  msgid ""
744
  "This cannot be reversed. Make sure that your database has been backed up "
745
  "before proceeding"
746
  msgstr ""
747
 
748
+ #: admin/admin.php:990
749
  msgid "Reset Popular Posts"
750
  msgstr ""
751
 
752
+ #: admin/admin.php:990
753
  msgid "Are you sure you want to reset the popular posts?"
754
  msgstr ""
755
 
756
+ #: admin/admin.php:991
757
  msgid "Reset Daily Popular Posts"
758
  msgstr ""
759
 
760
+ #: admin/admin.php:991
761
  msgid "Are you sure you want to reset the daily popular posts?"
762
  msgstr ""
763
 
764
+ #: admin/admin.php:992
765
  msgid "Clear duplicates"
766
  msgstr ""
767
 
768
+ #: admin/admin.php:992
769
  msgid "This will delete the duplicate entries in the tables. Proceed?"
770
  msgstr ""
771
 
772
+ #: admin/admin.php:1005
773
  msgid "WordPress Multisite: Migrate Top 10 v1.x counts to 2.x"
774
  msgstr ""
775
 
776
+ #: admin/admin.php:1008
777
  msgid ""
778
  "If you've been using Top 10 v1.x on multisite, you would have needed to "
779
  "activate the plugin independently for each site. This would have resulted in "
780
+ "two tables being created for each site in the network."
 
 
 
781
  msgstr ""
782
 
783
+ #: admin/admin.php:1009
784
+ msgid ""
785
+ "Top 10 v2.x onwards uses only a single table to record the count, keeping "
786
+ "your database clean. You can use this tool to import the recorded counts "
787
+ "from v1.x tables to the new v2.x table format."
788
+ msgstr ""
789
+
790
+ #: admin/admin.php:1012
791
  msgid ""
792
  "If you do not see any tables below, then it means that either all data has "
793
  "already been imported or no relevant information has been found."
794
  msgstr ""
795
 
796
+ #: admin/admin.php:1015
797
+ msgid ""
798
+ "After running the importer, please verify that all the counts have been "
799
+ "successfully imported. Only then should you delete any old tables!"
800
+ msgstr ""
801
+
802
+ #: admin/admin.php:1049
803
  msgid "Blog ID"
804
  msgstr ""
805
 
806
+ #: admin/admin.php:1052
807
  msgid "Status"
808
  msgstr ""
809
 
810
+ #: admin/admin.php:1055
811
  msgid "Select to import"
812
  msgstr ""
813
 
814
+ #: admin/admin.php:1065
815
  msgid "Blog #"
816
  msgstr ""
817
 
818
+ #: admin/admin.php:1075
819
  msgid "Not imported"
820
  msgstr ""
821
 
822
+ #: admin/admin.php:1079
823
  msgid "Imported"
824
  msgstr ""
825
 
826
+ #: admin/admin.php:1100
827
  msgid "Begin import"
828
  msgstr ""
829
 
830
+ #: admin/admin.php:1101
831
  msgid "Delete selected tables"
832
  msgstr ""
833
 
834
+ #: admin/admin.php:1102
835
  msgid "Delete all imported tables"
836
  msgstr ""
837
 
838
+ #: admin/admin.php:1159 admin/admin.php:1255
839
  msgid "Daily Popular Posts"
840
  msgstr ""
841
 
842
+ #: admin/admin.php:1189
843
  msgid "Support the development"
844
  msgstr ""
845
 
846
+ #: admin/admin.php:1196
847
  msgid "Donation for Top 10"
848
  msgstr ""
849
 
850
+ #: admin/admin.php:1198
851
  msgid "Enter amount in USD: "
852
  msgstr ""
853
 
854
+ #: admin/admin.php:1202
855
  msgid "Send your donation to the author of Top 10"
856
  msgstr ""
857
 
858
+ #: admin/admin.php:1209
859
  msgid "Follow me"
860
  msgstr ""
861
 
862
+ #: admin/admin.php:1219
863
  msgid "Quick links"
864
  msgstr ""
865
 
866
+ #: admin/admin.php:1223
867
  msgid "Top 10 plugin page"
868
  msgstr ""
869
 
870
+ #: admin/admin.php:1224
871
  msgid "Top 10 Github page"
872
  msgstr ""
873
 
874
+ #: admin/admin.php:1225
875
  msgid "Other plugins"
876
  msgstr ""
877
 
878
+ #: admin/admin.php:1226
879
  msgid "Ajay's blog"
880
  msgstr ""
881
 
882
+ #: admin/admin.php:1227
883
  msgid "FAQ"
884
  msgstr ""
885
 
886
+ #: admin/admin.php:1228 admin/admin.php:1386
887
  msgid "Support"
888
  msgstr ""
889
 
890
+ #: admin/admin.php:1229
891
  msgid "Reviews"
892
  msgstr ""
893
 
894
+ #: admin/admin.php:1252
895
  msgid "Overall Popular Posts"
896
  msgstr ""
897
 
898
+ #: admin/admin.php:1363
899
  msgid "Settings"
900
  msgstr ""
901
 
902
+ #: admin/admin.php:1387
903
  msgid "Donate"
904
  msgstr ""
905
 
979
  msgid "Thumbnail width"
980
  msgstr ""
981
 
982
+ #: top-10.php:879
983
  msgid " by "
984
  msgstr ""
985
 
986
+ #: top-10.php:930
987
  #, php-format
988
  msgid "Popular posts by <a href=\"%s\" rel=\"nofollow\" %s>Top 10 plugin</a>"
989
  msgstr ""
990
 
991
+ #: top-10.php:1029
992
  msgid "<h3>Popular Posts</h3>"
993
  msgstr ""
994
 
995
+ #: top-10.php:1030
996
  msgid "<h3>Daily Popular</h3>"
997
  msgstr ""
998
 
999
+ #: top-10.php:1031
1000
  msgid "No top posts yet"
1001
  msgstr ""
1002
 
1003
+ #: top-10.php:1676
1004
  msgid "Once Weekly"
1005
  msgstr ""
1006
 
1007
+ #: top-10.php:1680
1008
  msgid "Once Fortnightly"
1009
  msgstr ""
1010
 
1011
+ #: top-10.php:1684
1012
  msgid "Once Monthly"
1013
  msgstr ""
1014
 
1015
+ #: top-10.php:1688
1016
  msgid "Once quarterly"
1017
  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: 2014-12-28 00:52-0000\n"
6
  "PO-Revision-Date: \n"
7
  "Last-Translator: Ajay D'Souza <me@ajaydsouza.com>\n"
8
  "Language-Team: Ajay DSouza <me@ajaydsouza.com>\n"
@@ -59,7 +59,7 @@ msgstr ""
59
  msgid "Next"
60
  msgstr ""
61
 
62
- #: admin/admin-dashboard.php:200 admin/admin.php:1145
63
  msgid "Popular Posts"
64
  msgstr ""
65
 
@@ -67,7 +67,7 @@ msgstr ""
67
  msgid "Daily Popular"
68
  msgstr ""
69
 
70
- #: admin/admin-metabox.php:38 admin/admin.php:1234
71
  msgid "Top 10"
72
  msgstr ""
73
 
@@ -96,158 +96,189 @@ msgstr ""
96
  msgid "The URL above is saved in the meta field: "
97
  msgstr ""
98
 
99
- #: admin/admin.php:160
100
  msgid "Options saved successfully."
101
  msgstr ""
102
 
103
- #: admin/admin.php:170
104
  msgid "Options set to Default."
105
  msgstr ""
106
 
107
- #: admin/admin.php:176
108
  msgid "Top 10 popular posts reset"
109
  msgstr ""
110
 
111
- #: admin/admin.php:182
112
  msgid "Top 10 daily popular posts reset"
113
  msgstr ""
114
 
115
- #: admin/admin.php:189
116
  msgid "Duplicate rows cleaned from tables"
117
  msgstr ""
118
 
119
- #: admin/admin.php:201
120
  msgid "Scheduled maintenance enabled / modified"
121
  msgstr ""
122
 
123
- #: admin/admin.php:205
124
  msgid "Scheduled maintenance disabled"
125
  msgstr ""
126
 
127
- #: admin/admin.php:244
128
  msgid "Counts from selected sites have been imported."
129
  msgstr ""
130
 
131
- #: admin/admin.php:269
132
  msgid ""
133
  "Selected tables have been deleted. Note that only imported tables have been "
134
  "deleted."
135
  msgstr ""
136
 
137
- #: admin/admin.php:277 admin/admin.php:1234 admin/admin.php:1237
138
  msgid "Top 10 Settings"
139
  msgstr ""
140
 
141
- #: admin/admin.php:289 admin/admin.php:311
142
  msgid "General options"
143
  msgstr ""
144
 
145
- #: admin/admin.php:290 admin/admin.php:373
146
  msgid "Counter and tracker options"
147
  msgstr ""
148
 
149
- #: admin/admin.php:291 admin/admin.php:478
150
  msgid "Popular post list options"
151
  msgstr ""
152
 
153
- #: admin/admin.php:292 admin/admin.php:681
154
  #: includes/class-top-10-widget.php:103
155
  msgid "Thumbnail options"
156
  msgstr ""
157
 
158
- #: admin/admin.php:293
159
  msgid "Custom styles"
160
  msgstr ""
161
 
162
- #: admin/admin.php:294 admin/admin.php:912
163
  msgid "Maintenance"
164
  msgstr ""
165
 
166
- #: admin/admin.php:310 admin/admin.php:372 admin/admin.php:477
167
- #: admin/admin.php:680 admin/admin.php:843 admin/admin.php:911
168
- #: admin/admin.php:975 admin/admin.php:996 admin/admin.php:1176
169
- #: admin/admin.php:1196 admin/admin.php:1206
170
  msgid "Click to toggle"
171
  msgstr ""
172
 
173
- #: admin/admin.php:327
174
  msgid "Enable Overall stats"
175
  msgstr ""
176
 
177
- #: admin/admin.php:333
178
  msgid "Enable Daily stats"
179
  msgstr ""
180
 
181
- #: admin/admin.php:339
182
  msgid "Cache fix:"
183
  msgstr ""
184
 
185
- #: admin/admin.php:342
186
  msgid ""
187
  "This will try to prevent W3 Total Cache and other caching plugins from "
188
  "caching the tracker script of the plugin. Try toggling this option in case "
189
  "you find that your posts are not tracked."
190
  msgstr ""
191
 
192
- #: admin/admin.php:346
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
193
  msgid "Link to Top 10 plugin page"
194
  msgstr ""
195
 
196
- #: admin/admin.php:349
197
  msgid ""
198
  "A link to the plugin is added as an extra list item to the list of popular "
199
  "posts"
200
  msgstr ""
201
 
202
- #: admin/admin.php:354 admin/admin.php:459 admin/admin.php:662
203
- #: admin/admin.php:825 admin/admin.php:891 admin/admin.php:968
204
  msgid "Save Options"
205
  msgstr ""
206
 
207
- #: admin/admin.php:389
208
  msgid "Display number of views on:"
209
  msgstr ""
210
 
211
- #: admin/admin.php:391
212
  msgid "Posts"
213
  msgstr ""
214
 
215
- #: admin/admin.php:392
216
  msgid "Pages"
217
  msgstr ""
218
 
219
- #: admin/admin.php:393
220
  msgid "Home page"
221
  msgstr ""
222
 
223
- #: admin/admin.php:394
224
  msgid "Feeds"
225
  msgstr ""
226
 
227
- #: admin/admin.php:395
228
  msgid "Category archives"
229
  msgstr ""
230
 
231
- #: admin/admin.php:396
232
  msgid "Tag archives"
233
  msgstr ""
234
 
235
- #: admin/admin.php:397
236
  msgid "Other archives"
237
  msgstr ""
238
 
239
- #: admin/admin.php:398
240
  msgid ""
241
  "If you choose to disable this, please add <code>&lt;?php if "
242
  "( function_exists ( 'echo_tptn_post_count' ) ) echo_tptn_post_count(); ?&gt;"
243
  "</code> to your template file where you want it displayed"
244
  msgstr ""
245
 
246
- #: admin/admin.php:402
247
  msgid "Format to display the post views:"
248
  msgstr ""
249
 
250
- #: admin/admin.php:405
251
  msgid ""
252
  "Use <code>%totalcount%</code> to display the total count, <code>%dailycount"
253
  "%</code> to display the daily count and <code>%overallcount%</code> to "
@@ -255,11 +286,11 @@ msgid ""
255
  "options displays <code>[Visited 123 times, 23 visits today]</code>"
256
  msgstr ""
257
 
258
- #: admin/admin.php:409
259
  msgid "What do display when there are no visits?"
260
  msgstr ""
261
 
262
- #: admin/admin.php:412
263
  msgid ""
264
  "This text applies only when there are 0 hits for the post and it isn't a "
265
  "single page. e.g. if you display post views on the homepage or archives then "
@@ -267,244 +298,224 @@ msgid ""
267
  "option."
268
  msgstr ""
269
 
270
- #: admin/admin.php:416
271
  msgid "Always display latest post count"
272
  msgstr ""
273
 
274
- #: admin/admin.php:419
275
  msgid ""
276
  "This option uses JavaScript and will increase your page load time. Turn this "
277
  "off if you are not using caching plugins or are OK with displaying older "
278
  "cached counts."
279
  msgstr ""
280
 
281
- #: admin/admin.php:423
282
  msgid "Track visits of authors on their own posts?"
283
  msgstr ""
284
 
285
- #: admin/admin.php:426
286
  msgid ""
287
  "Disabling this option will stop authors visits tracked on their own posts"
288
  msgstr ""
289
 
290
- #: admin/admin.php:430
291
  msgid "Track visits of admins?"
292
  msgstr ""
293
 
294
- #: admin/admin.php:433
295
  msgid "Disabling this option will stop admin visits being tracked."
296
  msgstr ""
297
 
298
- #: admin/admin.php:437
299
  msgid "Track visits of Editors?"
300
  msgstr ""
301
 
302
- #: admin/admin.php:440
303
  msgid "Disabling this option will stop editor visits being tracked."
304
  msgstr ""
305
 
306
- #: admin/admin.php:444
307
  msgid "Display page views on Posts and Pages in Admin"
308
  msgstr ""
309
 
310
- #: admin/admin.php:447
311
  msgid ""
312
  "Adds three columns called Total Views, Today's Views and Views to All Posts "
313
  "and All Pages"
314
  msgstr ""
315
 
316
- #: admin/admin.php:451
317
  msgid "Show number of views to non-admins"
318
  msgstr ""
319
 
320
- #: admin/admin.php:454
321
  msgid ""
322
  "If you disable this then non-admins won't see the above columns or view the "
323
  "independent pages with the top posts"
324
  msgstr ""
325
 
326
- #: admin/admin.php:494
327
  msgid "Number of popular posts to display: "
328
  msgstr ""
329
 
330
- #: admin/admin.php:497
331
  msgid ""
332
  "Maximum number of posts that will be displayed in the list. This option is "
333
  "used if you don't specify the number of posts in the widget or shortcodes"
334
  msgstr ""
335
 
336
- #: admin/admin.php:501
337
- msgid "Daily popular contains top posts over:"
338
- msgstr ""
339
-
340
- #: admin/admin.php:503
341
- msgid "day(s)"
342
- msgstr ""
343
-
344
- #: admin/admin.php:504
345
- msgid "hour(s)"
346
- msgstr ""
347
-
348
- #: admin/admin.php:505
349
- msgid ""
350
- "Think of Daily Popular has a custom date range applied as a global setting. "
351
- "Instead of displaying popular posts from the past day, this setting lets you "
352
- "display posts for as many days or as few hours as you want. This can be "
353
- "overridden in the widget."
354
- msgstr ""
355
-
356
- #: admin/admin.php:509
357
  msgid "Post types to include in results (including custom post types)"
358
  msgstr ""
359
 
360
- #: admin/admin.php:521
361
  msgid "List of post or page IDs to exclude from the results: "
362
  msgstr ""
363
 
364
- #: admin/admin.php:523 admin/admin.php:630
365
  msgid "Enter comma separated list of IDs. e.g. 188,320,500"
366
  msgstr ""
367
 
368
- #: admin/admin.php:527
369
  msgid "Exclude Categories: "
370
  msgstr ""
371
 
372
- #: admin/admin.php:542
373
  msgid ""
374
  "Comma separated list of category slugs. The field above has an autocomplete "
375
  "so simply start typing in the starting letters and it will prompt you with "
376
  "options"
377
  msgstr ""
378
 
379
- #: admin/admin.php:547
380
  msgid "Title of popular posts: "
381
  msgstr ""
382
 
383
- #: admin/admin.php:553
384
  msgid "Title of daily popular posts: "
385
  msgstr ""
386
 
387
- #: admin/admin.php:559
388
  msgid "When there are no posts, what should be shown?"
389
  msgstr ""
390
 
391
- #: admin/admin.php:563
392
  msgid "Blank Output"
393
  msgstr ""
394
 
395
- #: admin/admin.php:567
396
  msgid "Display:"
397
  msgstr ""
398
 
399
- #: admin/admin.php:572
400
  msgid "Show post excerpt in list?"
401
  msgstr ""
402
 
403
- #: admin/admin.php:578
404
  msgid "Length of excerpt (in words): "
405
  msgstr ""
406
 
407
- #: admin/admin.php:584
408
  msgid "Show post author in list?"
409
  msgstr ""
410
 
411
- #: admin/admin.php:590
412
  msgid "Show post date in list?"
413
  msgstr ""
414
 
415
- #: admin/admin.php:596
416
  msgid "Limit post title length (in characters)"
417
  msgstr ""
418
 
419
- #: admin/admin.php:602
420
  msgid "Show view count in list?"
421
  msgstr ""
422
 
423
- #: admin/admin.php:608
424
  msgid "Always display latest post count in the daily lists?"
425
  msgstr ""
426
 
427
- #: admin/admin.php:611
428
  msgid ""
429
  "This option uses JavaScript and will increase your page load time. When you "
430
  "enable this option, the daily widget will not use the options set there, but "
431
  "options will need to be set on this screen."
432
  msgstr ""
433
 
434
- #: admin/admin.php:615
435
  msgid "Open links in new window"
436
  msgstr ""
437
 
438
- #: admin/admin.php:621
439
  msgid "Add nofollow attribute to links in the list"
440
  msgstr ""
441
 
442
- #: admin/admin.php:627
443
  msgid "Exclude display of related posts on these posts / pages"
444
  msgstr ""
445
 
446
- #: admin/admin.php:634
447
  msgid "Customise the list HTML"
448
  msgstr ""
449
 
450
- #: admin/admin.php:637
451
  msgid "HTML to display before the list of posts: "
452
  msgstr ""
453
 
454
- #: admin/admin.php:643
455
  msgid "HTML to display before each list item: "
456
  msgstr ""
457
 
458
- #: admin/admin.php:649
459
  msgid "HTML to display after each list item: "
460
  msgstr ""
461
 
462
- #: admin/admin.php:655
463
  msgid "HTML to display after the list of posts: "
464
  msgstr ""
465
 
466
- #: admin/admin.php:696
467
  msgid "Location of post thumbnail:"
468
  msgstr ""
469
 
470
- #: admin/admin.php:700
471
  msgid "Display thumbnails inline with posts, before title"
472
  msgstr ""
473
 
474
- #: admin/admin.php:705
475
  msgid "Display thumbnails inline with posts, after title"
476
  msgstr ""
477
 
478
- #: admin/admin.php:710
479
  msgid "Display only thumbnails, no text"
480
  msgstr ""
481
 
482
- #: admin/admin.php:715
483
  msgid "Do not display thumbnails, only text."
484
  msgstr ""
485
 
486
- #: admin/admin.php:719
487
  msgid "Thumbnail size:"
488
  msgstr ""
489
 
490
- #: admin/admin.php:743
491
  msgid "Custom size"
492
  msgstr ""
493
 
494
- #: admin/admin.php:746
495
  msgid ""
496
  "You can choose from existing image sizes above or create a custom size. If "
497
  "you have chosen Custom size above, then enter the width, height and crop "
498
  "settings below. For best results, use a cropped image."
499
  msgstr ""
500
 
501
- #: admin/admin.php:747
502
  msgid ""
503
  "If you change the width and/or height below, existing images will not be "
504
  "automatically resized."
505
  msgstr ""
506
 
507
- #: admin/admin.php:748
508
  #, php-format
509
  msgid ""
510
  "I recommend using <a href='%s' target='_blank'>Force Regenerate Thumbnails</"
@@ -512,157 +523,157 @@ msgid ""
512
  "regenerate all image sizes."
513
  msgstr ""
514
 
515
- #: admin/admin.php:751
516
  msgid "Width of custom thumbnail:"
517
  msgstr ""
518
 
519
- #: admin/admin.php:756
520
  msgid "Height of custom thumbnail"
521
  msgstr ""
522
 
523
- #: admin/admin.php:761
524
  msgid "Crop mode:"
525
  msgstr ""
526
 
527
- #: admin/admin.php:765
528
  msgid ""
529
  "By default, thumbnails will be proportionately cropped. Check this box to "
530
  "hard crop the thumbnails."
531
  msgstr ""
532
 
533
- #: admin/admin.php:766
534
  #, php-format
535
  msgid "<a href='%s' target='_blank'>Difference between soft and hard crop</a>"
536
  msgstr ""
537
 
538
- #: admin/admin.php:768
539
  msgid ""
540
  "Since you're using the default styles set under the Custom Styles section, "
541
  "the width and height is fixed at 65px and crop mode is enabled."
542
  msgstr ""
543
 
544
- #: admin/admin.php:773
545
  msgid "Style attributes / Width and Height HTML attributes:"
546
  msgstr ""
547
 
548
- #: admin/admin.php:777
549
  msgid "Style attributes are used for width and height."
550
  msgstr ""
551
 
552
- #: admin/admin.php:782
553
  msgid "HTML width and height attributes are used for width and height."
554
  msgstr ""
555
 
556
- #: admin/admin.php:786
557
  msgid "Use timthumb to generate thumbnails? "
558
  msgstr ""
559
 
560
- #: admin/admin.php:789
561
  msgid ""
562
  "If checked, <a href=\"http://www.binarymoon.co.uk/projects/timthumb/\" "
563
  "target=\"_blank\">timthumb</a> will be used to generate thumbnails"
564
  msgstr ""
565
 
566
- #: admin/admin.php:792
567
  msgid "Quality of thumbnails generated by timthumb:"
568
  msgstr ""
569
 
570
- #: admin/admin.php:795
571
  msgid ""
572
  "Enter values between 0 and 100 only. 100 is highest quality and the highest "
573
  "file size. Suggested maximum value is 95. Default is 75."
574
  msgstr ""
575
 
576
- #: admin/admin.php:798
577
  msgid "Post thumbnail meta field name: "
578
  msgstr ""
579
 
580
- #: admin/admin.php:801
581
  msgid ""
582
  "The value of this field should contain the image source and is set in the "
583
  "<em>Add New Post</em> screen"
584
  msgstr ""
585
 
586
- #: admin/admin.php:804
587
  msgid ""
588
  "If the postmeta is not set, then should the plugin extract the first image "
589
  "from the post?"
590
  msgstr ""
591
 
592
- #: admin/admin.php:807
593
  msgid ""
594
  "This could slow down the loading of your page if the first image in the "
595
  "related posts is large in file-size"
596
  msgstr ""
597
 
598
- #: admin/admin.php:810
599
  msgid "Use default thumbnail? "
600
  msgstr ""
601
 
602
- #: admin/admin.php:813
603
  msgid ""
604
  "If checked, when no thumbnail is found, show a default one from the URL "
605
  "below. If not checked and no thumbnail is found, no image will be shown."
606
  msgstr ""
607
 
608
- #: admin/admin.php:816
609
  msgid "Default thumbnail: "
610
  msgstr ""
611
 
612
- #: admin/admin.php:820
613
  msgid ""
614
  "The plugin will first check if the post contains a thumbnail. If it doesn't "
615
  "then it will check the meta field. If this is not available, then it will "
616
  "show the default image as specified above"
617
  msgstr ""
618
 
619
- #: admin/admin.php:844
620
  msgid "Custom CSS"
621
  msgstr ""
622
 
623
- #: admin/admin.php:859
624
  msgid "Use default style included in the plugin?"
625
  msgstr ""
626
 
627
- #: admin/admin.php:862
628
  msgid ""
629
  "Top 10 includes a default style that makes your popular posts list to look "
630
  "beautiful. Check the box above if you want to use this."
631
  msgstr ""
632
 
633
- #: admin/admin.php:863
634
  msgid ""
635
  "Enabling this option will turn on the thumbnails and set their width and "
636
  "height to 65px. It will also turn off the display of the author, excerpt and "
637
  "date if already enabled. Disabling this option will not revert any settings."
638
  msgstr ""
639
 
640
- #: admin/admin.php:864
641
  #, php-format
642
  msgid ""
643
  "You can view the default style at <a href=\"%1$s\" target=\"_blank\">%1$s</a>"
644
  msgstr ""
645
 
646
- #: admin/admin.php:867
647
  msgid "Custom CSS to add to header:"
648
  msgstr ""
649
 
650
- #: admin/admin.php:872
651
  msgid ""
652
  "Do not include <code>style</code> tags. Check out the <a href=\"http://"
653
  "wordpress.org/extend/plugins/top-10/faq/\" target=\"_blank\">FAQ</a> for "
654
  "available CSS classes to style."
655
  msgstr ""
656
 
657
- #: admin/admin.php:892
658
  msgid "Default Options"
659
  msgstr ""
660
 
661
- #: admin/admin.php:892
662
  msgid "Do you want to set options to Default?"
663
  msgstr ""
664
 
665
- #: admin/admin.php:916
666
  msgid ""
667
  "Over time the Daily Top 10 database grows in size, which reduces the "
668
  "performance of the plugin. Cleaning the database at regular intervals could "
@@ -670,215 +681,225 @@ msgid ""
670
  "will automatically delete entries older than 90 days."
671
  msgstr ""
672
 
673
- #: admin/admin.php:917
674
  msgid ""
675
  "Note: When scheduled maintenance is enabled, WordPress will run the cron job "
676
  "everytime the job is rescheduled (i.e. you change the settings below)."
677
  msgstr ""
678
 
679
- #: admin/admin.php:920
680
  msgid "Enable scheduled maintenance of daily tables:"
681
  msgstr ""
682
 
683
- #: admin/admin.php:924
684
  msgid "Time to run maintenance"
685
  msgstr ""
686
 
687
- #: admin/admin.php:925
688
  msgid "hrs"
689
  msgstr ""
690
 
691
- #: admin/admin.php:925
692
  msgid "min"
693
  msgstr ""
694
 
695
- #: admin/admin.php:927
696
  msgid "How often should the maintenance be run:"
697
  msgstr ""
698
 
699
- #: admin/admin.php:931
700
  msgid "Daily"
701
  msgstr ""
702
 
703
- #: admin/admin.php:935
704
  msgid "Weekly"
705
  msgstr ""
706
 
707
- #: admin/admin.php:939
708
  msgid "Fortnightly"
709
  msgstr ""
710
 
711
- #: admin/admin.php:943
712
  msgid "Monthly"
713
  msgstr ""
714
 
715
- #: admin/admin.php:952
716
  msgid "The cron job has been scheduled. Maintenance will run "
717
  msgstr ""
718
 
719
- #: admin/admin.php:957
720
  msgid "The cron job is missing. Please resave this page to add the job"
721
  msgstr ""
722
 
723
- #: admin/admin.php:962
724
  msgid "Maintenance is turned off"
725
  msgstr ""
726
 
727
- #: admin/admin.php:976
728
  msgid "Reset count"
729
  msgstr ""
730
 
731
- #: admin/admin.php:979
732
  msgid ""
733
  "This cannot be reversed. Make sure that your database has been backed up "
734
  "before proceeding"
735
  msgstr ""
736
 
737
- #: admin/admin.php:982
738
  msgid "Reset Popular Posts"
739
  msgstr ""
740
 
741
- #: admin/admin.php:982
742
  msgid "Are you sure you want to reset the popular posts?"
743
  msgstr ""
744
 
745
- #: admin/admin.php:983
746
  msgid "Reset Daily Popular Posts"
747
  msgstr ""
748
 
749
- #: admin/admin.php:983
750
  msgid "Are you sure you want to reset the daily popular posts?"
751
  msgstr ""
752
 
753
- #: admin/admin.php:984
754
  msgid "Clear duplicates"
755
  msgstr ""
756
 
757
- #: admin/admin.php:984
758
  msgid "This will delete the duplicate entries in the tables. Proceed?"
759
  msgstr ""
760
 
761
- #: admin/admin.php:997
762
  msgid "WordPress Multisite: Migrate Top 10 v1.x counts to 2.x"
763
  msgstr ""
764
 
765
- #: admin/admin.php:1000
766
  msgid ""
767
  "If you've been using Top 10 v1.x on multisite, you would have needed to "
768
  "activate the plugin independently for each site. This would have resulted in "
769
- "two tables being created for each site in the network. Top 10 v2.x onwards "
770
- "uses only a single table to record the count, keeping your database clean. "
771
- "You can use this tool to import the recorded counts from v1.x tables to the "
772
- "new v2.x table format."
773
  msgstr ""
774
 
775
- #: admin/admin.php:1003
 
 
 
 
 
 
 
776
  msgid ""
777
  "If you do not see any tables below, then it means that either all data has "
778
  "already been imported or no relevant information has been found."
779
  msgstr ""
780
 
781
- #: admin/admin.php:1037
 
 
 
 
 
 
782
  msgid "Blog ID"
783
  msgstr ""
784
 
785
- #: admin/admin.php:1040
786
  msgid "Status"
787
  msgstr ""
788
 
789
- #: admin/admin.php:1043
790
  msgid "Select to import"
791
  msgstr ""
792
 
793
- #: admin/admin.php:1053
794
  msgid "Blog #"
795
  msgstr ""
796
 
797
- #: admin/admin.php:1063
798
  msgid "Not imported"
799
  msgstr ""
800
 
801
- #: admin/admin.php:1067
802
  msgid "Imported"
803
  msgstr ""
804
 
805
- #: admin/admin.php:1088
806
  msgid "Begin import"
807
  msgstr ""
808
 
809
- #: admin/admin.php:1089
810
  msgid "Delete selected tables"
811
  msgstr ""
812
 
813
- #: admin/admin.php:1090
814
  msgid "Delete all imported tables"
815
  msgstr ""
816
 
817
- #: admin/admin.php:1147 admin/admin.php:1243
818
  msgid "Daily Popular Posts"
819
  msgstr ""
820
 
821
- #: admin/admin.php:1177
822
  msgid "Support the development"
823
  msgstr ""
824
 
825
- #: admin/admin.php:1184
826
  msgid "Donation for Top 10"
827
  msgstr ""
828
 
829
- #: admin/admin.php:1186
830
  msgid "Enter amount in USD: "
831
  msgstr ""
832
 
833
- #: admin/admin.php:1190
834
  msgid "Send your donation to the author of Top 10"
835
  msgstr ""
836
 
837
- #: admin/admin.php:1197
838
  msgid "Follow me"
839
  msgstr ""
840
 
841
- #: admin/admin.php:1207
842
  msgid "Quick links"
843
  msgstr ""
844
 
845
- #: admin/admin.php:1211
846
  msgid "Top 10 plugin page"
847
  msgstr ""
848
 
849
- #: admin/admin.php:1212
850
  msgid "Top 10 Github page"
851
  msgstr ""
852
 
853
- #: admin/admin.php:1213
854
  msgid "Other plugins"
855
  msgstr ""
856
 
857
- #: admin/admin.php:1214
858
  msgid "Ajay's blog"
859
  msgstr ""
860
 
861
- #: admin/admin.php:1215
862
  msgid "FAQ"
863
  msgstr ""
864
 
865
- #: admin/admin.php:1216 admin/admin.php:1374
866
  msgid "Support"
867
  msgstr ""
868
 
869
- #: admin/admin.php:1217
870
  msgid "Reviews"
871
  msgstr ""
872
 
873
- #: admin/admin.php:1240
874
  msgid "Overall Popular Posts"
875
  msgstr ""
876
 
877
- #: admin/admin.php:1351
878
  msgid "Settings"
879
  msgstr ""
880
 
881
- #: admin/admin.php:1375
882
  msgid "Donate"
883
  msgstr ""
884
 
@@ -958,39 +979,39 @@ msgstr ""
958
  msgid "Thumbnail width"
959
  msgstr ""
960
 
961
- #: top-10.php:866
962
  msgid " by "
963
  msgstr ""
964
 
965
- #: top-10.php:917
966
  #, php-format
967
  msgid "Popular posts by <a href=\"%s\" rel=\"nofollow\" %s>Top 10 plugin</a>"
968
  msgstr ""
969
 
970
- #: top-10.php:1016
971
  msgid "<h3>Popular Posts</h3>"
972
  msgstr ""
973
 
974
- #: top-10.php:1017
975
  msgid "<h3>Daily Popular</h3>"
976
  msgstr ""
977
 
978
- #: top-10.php:1018
979
  msgid "No top posts yet"
980
  msgstr ""
981
 
982
- #: top-10.php:1668
983
  msgid "Once Weekly"
984
  msgstr ""
985
 
986
- #: top-10.php:1672
987
  msgid "Once Fortnightly"
988
  msgstr ""
989
 
990
- #: top-10.php:1676
991
  msgid "Once Monthly"
992
  msgstr ""
993
 
994
- #: top-10.php:1680
995
  msgid "Once quarterly"
996
  msgstr ""
2
  msgstr ""
3
  "Project-Id-Version: Top 10\n"
4
  "Report-Msgid-Bugs-To: \n"
5
+ "POT-Creation-Date: 2015-01-01 21:52-0000\n"
6
  "PO-Revision-Date: \n"
7
  "Last-Translator: Ajay D'Souza <me@ajaydsouza.com>\n"
8
  "Language-Team: Ajay DSouza <me@ajaydsouza.com>\n"
59
  msgid "Next"
60
  msgstr ""
61
 
62
+ #: admin/admin-dashboard.php:200 admin/admin.php:1157
63
  msgid "Popular Posts"
64
  msgstr ""
65
 
67
  msgid "Daily Popular"
68
  msgstr ""
69
 
70
+ #: admin/admin-metabox.php:38 admin/admin.php:1246
71
  msgid "Top 10"
72
  msgstr ""
73
 
96
  msgid "The URL above is saved in the meta field: "
97
  msgstr ""
98
 
99
+ #: admin/admin.php:161
100
  msgid "Options saved successfully."
101
  msgstr ""
102
 
103
+ #: admin/admin.php:171
104
  msgid "Options set to Default."
105
  msgstr ""
106
 
107
+ #: admin/admin.php:177
108
  msgid "Top 10 popular posts reset"
109
  msgstr ""
110
 
111
+ #: admin/admin.php:183
112
  msgid "Top 10 daily popular posts reset"
113
  msgstr ""
114
 
115
+ #: admin/admin.php:190
116
  msgid "Duplicate rows cleaned from tables"
117
  msgstr ""
118
 
119
+ #: admin/admin.php:202
120
  msgid "Scheduled maintenance enabled / modified"
121
  msgstr ""
122
 
123
+ #: admin/admin.php:206
124
  msgid "Scheduled maintenance disabled"
125
  msgstr ""
126
 
127
+ #: admin/admin.php:245
128
  msgid "Counts from selected sites have been imported."
129
  msgstr ""
130
 
131
+ #: admin/admin.php:270
132
  msgid ""
133
  "Selected tables have been deleted. Note that only imported tables have been "
134
  "deleted."
135
  msgstr ""
136
 
137
+ #: admin/admin.php:278 admin/admin.php:1246 admin/admin.php:1249
138
  msgid "Top 10 Settings"
139
  msgstr ""
140
 
141
+ #: admin/admin.php:290 admin/admin.php:312
142
  msgid "General options"
143
  msgstr ""
144
 
145
+ #: admin/admin.php:291 admin/admin.php:389
146
  msgid "Counter and tracker options"
147
  msgstr ""
148
 
149
+ #: admin/admin.php:292 admin/admin.php:494
150
  msgid "Popular post list options"
151
  msgstr ""
152
 
153
+ #: admin/admin.php:293 admin/admin.php:689
154
  #: includes/class-top-10-widget.php:103
155
  msgid "Thumbnail options"
156
  msgstr ""
157
 
158
+ #: admin/admin.php:294
159
  msgid "Custom styles"
160
  msgstr ""
161
 
162
+ #: admin/admin.php:295 admin/admin.php:920
163
  msgid "Maintenance"
164
  msgstr ""
165
 
166
+ #: admin/admin.php:311 admin/admin.php:388 admin/admin.php:493
167
+ #: admin/admin.php:688 admin/admin.php:851 admin/admin.php:919
168
+ #: admin/admin.php:983 admin/admin.php:1004 admin/admin.php:1188
169
+ #: admin/admin.php:1208 admin/admin.php:1218
170
  msgid "Click to toggle"
171
  msgstr ""
172
 
173
+ #: admin/admin.php:328
174
  msgid "Enable Overall stats"
175
  msgstr ""
176
 
177
+ #: admin/admin.php:334
178
  msgid "Enable Daily stats"
179
  msgstr ""
180
 
181
+ #: admin/admin.php:340
182
  msgid "Cache fix:"
183
  msgstr ""
184
 
185
+ #: admin/admin.php:343
186
  msgid ""
187
  "This will try to prevent W3 Total Cache and other caching plugins from "
188
  "caching the tracker script of the plugin. Try toggling this option in case "
189
  "you find that your posts are not tracked."
190
  msgstr ""
191
 
192
+ #: admin/admin.php:347
193
+ msgid "Start daily counts from midnight:"
194
+ msgstr ""
195
+
196
+ #: admin/admin.php:350
197
+ msgid ""
198
+ "Daily counter will display number of visits from midnight. This option is "
199
+ "checked by default and mimics the way most normal counters work. Turning "
200
+ "this off will allow you to use the hourly setting in the next option."
201
+ msgstr ""
202
+
203
+ #: admin/admin.php:354
204
+ msgid "Daily popular contains top posts over:"
205
+ msgstr ""
206
+
207
+ #: admin/admin.php:356
208
+ msgid "day(s)"
209
+ msgstr ""
210
+
211
+ #: admin/admin.php:357
212
+ msgid "hour(s)"
213
+ msgstr ""
214
+
215
+ #: admin/admin.php:358
216
+ msgid ""
217
+ "Think of Daily Popular has a custom date range applied as a global setting. "
218
+ "Instead of displaying popular posts from the past day, this setting lets you "
219
+ "display posts for as many days or as few hours as you want. This can be "
220
+ "overridden in the widget."
221
+ msgstr ""
222
+
223
+ #: admin/admin.php:362
224
  msgid "Link to Top 10 plugin page"
225
  msgstr ""
226
 
227
+ #: admin/admin.php:365
228
  msgid ""
229
  "A link to the plugin is added as an extra list item to the list of popular "
230
  "posts"
231
  msgstr ""
232
 
233
+ #: admin/admin.php:370 admin/admin.php:475 admin/admin.php:670
234
+ #: admin/admin.php:833 admin/admin.php:899 admin/admin.php:976
235
  msgid "Save Options"
236
  msgstr ""
237
 
238
+ #: admin/admin.php:405
239
  msgid "Display number of views on:"
240
  msgstr ""
241
 
242
+ #: admin/admin.php:407
243
  msgid "Posts"
244
  msgstr ""
245
 
246
+ #: admin/admin.php:408
247
  msgid "Pages"
248
  msgstr ""
249
 
250
+ #: admin/admin.php:409
251
  msgid "Home page"
252
  msgstr ""
253
 
254
+ #: admin/admin.php:410
255
  msgid "Feeds"
256
  msgstr ""
257
 
258
+ #: admin/admin.php:411
259
  msgid "Category archives"
260
  msgstr ""
261
 
262
+ #: admin/admin.php:412
263
  msgid "Tag archives"
264
  msgstr ""
265
 
266
+ #: admin/admin.php:413
267
  msgid "Other archives"
268
  msgstr ""
269
 
270
+ #: admin/admin.php:414
271
  msgid ""
272
  "If you choose to disable this, please add <code>&lt;?php if "
273
  "( function_exists ( 'echo_tptn_post_count' ) ) echo_tptn_post_count(); ?&gt;"
274
  "</code> to your template file where you want it displayed"
275
  msgstr ""
276
 
277
+ #: admin/admin.php:418
278
  msgid "Format to display the post views:"
279
  msgstr ""
280
 
281
+ #: admin/admin.php:421
282
  msgid ""
283
  "Use <code>%totalcount%</code> to display the total count, <code>%dailycount"
284
  "%</code> to display the daily count and <code>%overallcount%</code> to "
286
  "options displays <code>[Visited 123 times, 23 visits today]</code>"
287
  msgstr ""
288
 
289
+ #: admin/admin.php:425
290
  msgid "What do display when there are no visits?"
291
  msgstr ""
292
 
293
+ #: admin/admin.php:428
294
  msgid ""
295
  "This text applies only when there are 0 hits for the post and it isn't a "
296
  "single page. e.g. if you display post views on the homepage or archives then "
298
  "option."
299
  msgstr ""
300
 
301
+ #: admin/admin.php:432
302
  msgid "Always display latest post count"
303
  msgstr ""
304
 
305
+ #: admin/admin.php:435
306
  msgid ""
307
  "This option uses JavaScript and will increase your page load time. Turn this "
308
  "off if you are not using caching plugins or are OK with displaying older "
309
  "cached counts."
310
  msgstr ""
311
 
312
+ #: admin/admin.php:439
313
  msgid "Track visits of authors on their own posts?"
314
  msgstr ""
315
 
316
+ #: admin/admin.php:442
317
  msgid ""
318
  "Disabling this option will stop authors visits tracked on their own posts"
319
  msgstr ""
320
 
321
+ #: admin/admin.php:446
322
  msgid "Track visits of admins?"
323
  msgstr ""
324
 
325
+ #: admin/admin.php:449
326
  msgid "Disabling this option will stop admin visits being tracked."
327
  msgstr ""
328
 
329
+ #: admin/admin.php:453
330
  msgid "Track visits of Editors?"
331
  msgstr ""
332
 
333
+ #: admin/admin.php:456
334
  msgid "Disabling this option will stop editor visits being tracked."
335
  msgstr ""
336
 
337
+ #: admin/admin.php:460
338
  msgid "Display page views on Posts and Pages in Admin"
339
  msgstr ""
340
 
341
+ #: admin/admin.php:463
342
  msgid ""
343
  "Adds three columns called Total Views, Today's Views and Views to All Posts "
344
  "and All Pages"
345
  msgstr ""
346
 
347
+ #: admin/admin.php:467
348
  msgid "Show number of views to non-admins"
349
  msgstr ""
350
 
351
+ #: admin/admin.php:470
352
  msgid ""
353
  "If you disable this then non-admins won't see the above columns or view the "
354
  "independent pages with the top posts"
355
  msgstr ""
356
 
357
+ #: admin/admin.php:510
358
  msgid "Number of popular posts to display: "
359
  msgstr ""
360
 
361
+ #: admin/admin.php:513
362
  msgid ""
363
  "Maximum number of posts that will be displayed in the list. This option is "
364
  "used if you don't specify the number of posts in the widget or shortcodes"
365
  msgstr ""
366
 
367
+ #: admin/admin.php:517
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
368
  msgid "Post types to include in results (including custom post types)"
369
  msgstr ""
370
 
371
+ #: admin/admin.php:529
372
  msgid "List of post or page IDs to exclude from the results: "
373
  msgstr ""
374
 
375
+ #: admin/admin.php:531 admin/admin.php:638
376
  msgid "Enter comma separated list of IDs. e.g. 188,320,500"
377
  msgstr ""
378
 
379
+ #: admin/admin.php:535
380
  msgid "Exclude Categories: "
381
  msgstr ""
382
 
383
+ #: admin/admin.php:550
384
  msgid ""
385
  "Comma separated list of category slugs. The field above has an autocomplete "
386
  "so simply start typing in the starting letters and it will prompt you with "
387
  "options"
388
  msgstr ""
389
 
390
+ #: admin/admin.php:555
391
  msgid "Title of popular posts: "
392
  msgstr ""
393
 
394
+ #: admin/admin.php:561
395
  msgid "Title of daily popular posts: "
396
  msgstr ""
397
 
398
+ #: admin/admin.php:567
399
  msgid "When there are no posts, what should be shown?"
400
  msgstr ""
401
 
402
+ #: admin/admin.php:571
403
  msgid "Blank Output"
404
  msgstr ""
405
 
406
+ #: admin/admin.php:575
407
  msgid "Display:"
408
  msgstr ""
409
 
410
+ #: admin/admin.php:580
411
  msgid "Show post excerpt in list?"
412
  msgstr ""
413
 
414
+ #: admin/admin.php:586
415
  msgid "Length of excerpt (in words): "
416
  msgstr ""
417
 
418
+ #: admin/admin.php:592
419
  msgid "Show post author in list?"
420
  msgstr ""
421
 
422
+ #: admin/admin.php:598
423
  msgid "Show post date in list?"
424
  msgstr ""
425
 
426
+ #: admin/admin.php:604
427
  msgid "Limit post title length (in characters)"
428
  msgstr ""
429
 
430
+ #: admin/admin.php:610
431
  msgid "Show view count in list?"
432
  msgstr ""
433
 
434
+ #: admin/admin.php:616
435
  msgid "Always display latest post count in the daily lists?"
436
  msgstr ""
437
 
438
+ #: admin/admin.php:619
439
  msgid ""
440
  "This option uses JavaScript and will increase your page load time. When you "
441
  "enable this option, the daily widget will not use the options set there, but "
442
  "options will need to be set on this screen."
443
  msgstr ""
444
 
445
+ #: admin/admin.php:623
446
  msgid "Open links in new window"
447
  msgstr ""
448
 
449
+ #: admin/admin.php:629
450
  msgid "Add nofollow attribute to links in the list"
451
  msgstr ""
452
 
453
+ #: admin/admin.php:635
454
  msgid "Exclude display of related posts on these posts / pages"
455
  msgstr ""
456
 
457
+ #: admin/admin.php:642
458
  msgid "Customise the list HTML"
459
  msgstr ""
460
 
461
+ #: admin/admin.php:645
462
  msgid "HTML to display before the list of posts: "
463
  msgstr ""
464
 
465
+ #: admin/admin.php:651
466
  msgid "HTML to display before each list item: "
467
  msgstr ""
468
 
469
+ #: admin/admin.php:657
470
  msgid "HTML to display after each list item: "
471
  msgstr ""
472
 
473
+ #: admin/admin.php:663
474
  msgid "HTML to display after the list of posts: "
475
  msgstr ""
476
 
477
+ #: admin/admin.php:704
478
  msgid "Location of post thumbnail:"
479
  msgstr ""
480
 
481
+ #: admin/admin.php:708
482
  msgid "Display thumbnails inline with posts, before title"
483
  msgstr ""
484
 
485
+ #: admin/admin.php:713
486
  msgid "Display thumbnails inline with posts, after title"
487
  msgstr ""
488
 
489
+ #: admin/admin.php:718
490
  msgid "Display only thumbnails, no text"
491
  msgstr ""
492
 
493
+ #: admin/admin.php:723
494
  msgid "Do not display thumbnails, only text."
495
  msgstr ""
496
 
497
+ #: admin/admin.php:727
498
  msgid "Thumbnail size:"
499
  msgstr ""
500
 
501
+ #: admin/admin.php:751
502
  msgid "Custom size"
503
  msgstr ""
504
 
505
+ #: admin/admin.php:754
506
  msgid ""
507
  "You can choose from existing image sizes above or create a custom size. If "
508
  "you have chosen Custom size above, then enter the width, height and crop "
509
  "settings below. For best results, use a cropped image."
510
  msgstr ""
511
 
512
+ #: admin/admin.php:755
513
  msgid ""
514
  "If you change the width and/or height below, existing images will not be "
515
  "automatically resized."
516
  msgstr ""
517
 
518
+ #: admin/admin.php:756
519
  #, php-format
520
  msgid ""
521
  "I recommend using <a href='%s' target='_blank'>Force Regenerate Thumbnails</"
523
  "regenerate all image sizes."
524
  msgstr ""
525
 
526
+ #: admin/admin.php:759
527
  msgid "Width of custom thumbnail:"
528
  msgstr ""
529
 
530
+ #: admin/admin.php:764
531
  msgid "Height of custom thumbnail"
532
  msgstr ""
533
 
534
+ #: admin/admin.php:769
535
  msgid "Crop mode:"
536
  msgstr ""
537
 
538
+ #: admin/admin.php:773
539
  msgid ""
540
  "By default, thumbnails will be proportionately cropped. Check this box to "
541
  "hard crop the thumbnails."
542
  msgstr ""
543
 
544
+ #: admin/admin.php:774
545
  #, php-format
546
  msgid "<a href='%s' target='_blank'>Difference between soft and hard crop</a>"
547
  msgstr ""
548
 
549
+ #: admin/admin.php:776
550
  msgid ""
551
  "Since you're using the default styles set under the Custom Styles section, "
552
  "the width and height is fixed at 65px and crop mode is enabled."
553
  msgstr ""
554
 
555
+ #: admin/admin.php:781
556
  msgid "Style attributes / Width and Height HTML attributes:"
557
  msgstr ""
558
 
559
+ #: admin/admin.php:785
560
  msgid "Style attributes are used for width and height."
561
  msgstr ""
562
 
563
+ #: admin/admin.php:790
564
  msgid "HTML width and height attributes are used for width and height."
565
  msgstr ""
566
 
567
+ #: admin/admin.php:794
568
  msgid "Use timthumb to generate thumbnails? "
569
  msgstr ""
570
 
571
+ #: admin/admin.php:797
572
  msgid ""
573
  "If checked, <a href=\"http://www.binarymoon.co.uk/projects/timthumb/\" "
574
  "target=\"_blank\">timthumb</a> will be used to generate thumbnails"
575
  msgstr ""
576
 
577
+ #: admin/admin.php:800
578
  msgid "Quality of thumbnails generated by timthumb:"
579
  msgstr ""
580
 
581
+ #: admin/admin.php:803
582
  msgid ""
583
  "Enter values between 0 and 100 only. 100 is highest quality and the highest "
584
  "file size. Suggested maximum value is 95. Default is 75."
585
  msgstr ""
586
 
587
+ #: admin/admin.php:806
588
  msgid "Post thumbnail meta field name: "
589
  msgstr ""
590
 
591
+ #: admin/admin.php:809
592
  msgid ""
593
  "The value of this field should contain the image source and is set in the "
594
  "<em>Add New Post</em> screen"
595
  msgstr ""
596
 
597
+ #: admin/admin.php:812
598
  msgid ""
599
  "If the postmeta is not set, then should the plugin extract the first image "
600
  "from the post?"
601
  msgstr ""
602
 
603
+ #: admin/admin.php:815
604
  msgid ""
605
  "This could slow down the loading of your page if the first image in the "
606
  "related posts is large in file-size"
607
  msgstr ""
608
 
609
+ #: admin/admin.php:818
610
  msgid "Use default thumbnail? "
611
  msgstr ""
612
 
613
+ #: admin/admin.php:821
614
  msgid ""
615
  "If checked, when no thumbnail is found, show a default one from the URL "
616
  "below. If not checked and no thumbnail is found, no image will be shown."
617
  msgstr ""
618
 
619
+ #: admin/admin.php:824
620
  msgid "Default thumbnail: "
621
  msgstr ""
622
 
623
+ #: admin/admin.php:828
624
  msgid ""
625
  "The plugin will first check if the post contains a thumbnail. If it doesn't "
626
  "then it will check the meta field. If this is not available, then it will "
627
  "show the default image as specified above"
628
  msgstr ""
629
 
630
+ #: admin/admin.php:852
631
  msgid "Custom CSS"
632
  msgstr ""
633
 
634
+ #: admin/admin.php:867
635
  msgid "Use default style included in the plugin?"
636
  msgstr ""
637
 
638
+ #: admin/admin.php:870
639
  msgid ""
640
  "Top 10 includes a default style that makes your popular posts list to look "
641
  "beautiful. Check the box above if you want to use this."
642
  msgstr ""
643
 
644
+ #: admin/admin.php:871
645
  msgid ""
646
  "Enabling this option will turn on the thumbnails and set their width and "
647
  "height to 65px. It will also turn off the display of the author, excerpt and "
648
  "date if already enabled. Disabling this option will not revert any settings."
649
  msgstr ""
650
 
651
+ #: admin/admin.php:872
652
  #, php-format
653
  msgid ""
654
  "You can view the default style at <a href=\"%1$s\" target=\"_blank\">%1$s</a>"
655
  msgstr ""
656
 
657
+ #: admin/admin.php:875
658
  msgid "Custom CSS to add to header:"
659
  msgstr ""
660
 
661
+ #: admin/admin.php:880
662
  msgid ""
663
  "Do not include <code>style</code> tags. Check out the <a href=\"http://"
664
  "wordpress.org/extend/plugins/top-10/faq/\" target=\"_blank\">FAQ</a> for "
665
  "available CSS classes to style."
666
  msgstr ""
667
 
668
+ #: admin/admin.php:900
669
  msgid "Default Options"
670
  msgstr ""
671
 
672
+ #: admin/admin.php:900
673
  msgid "Do you want to set options to Default?"
674
  msgstr ""
675
 
676
+ #: admin/admin.php:924
677
  msgid ""
678
  "Over time the Daily Top 10 database grows in size, which reduces the "
679
  "performance of the plugin. Cleaning the database at regular intervals could "
681
  "will automatically delete entries older than 90 days."
682
  msgstr ""
683
 
684
+ #: admin/admin.php:925
685
  msgid ""
686
  "Note: When scheduled maintenance is enabled, WordPress will run the cron job "
687
  "everytime the job is rescheduled (i.e. you change the settings below)."
688
  msgstr ""
689
 
690
+ #: admin/admin.php:928
691
  msgid "Enable scheduled maintenance of daily tables:"
692
  msgstr ""
693
 
694
+ #: admin/admin.php:932
695
  msgid "Time to run maintenance"
696
  msgstr ""
697
 
698
+ #: admin/admin.php:933
699
  msgid "hrs"
700
  msgstr ""
701
 
702
+ #: admin/admin.php:933
703
  msgid "min"
704
  msgstr ""
705
 
706
+ #: admin/admin.php:935
707
  msgid "How often should the maintenance be run:"
708
  msgstr ""
709
 
710
+ #: admin/admin.php:939
711
  msgid "Daily"
712
  msgstr ""
713
 
714
+ #: admin/admin.php:943
715
  msgid "Weekly"
716
  msgstr ""
717
 
718
+ #: admin/admin.php:947
719
  msgid "Fortnightly"
720
  msgstr ""
721
 
722
+ #: admin/admin.php:951
723
  msgid "Monthly"
724
  msgstr ""
725
 
726
+ #: admin/admin.php:960
727
  msgid "The cron job has been scheduled. Maintenance will run "
728
  msgstr ""
729
 
730
+ #: admin/admin.php:965
731
  msgid "The cron job is missing. Please resave this page to add the job"
732
  msgstr ""
733
 
734
+ #: admin/admin.php:970
735
  msgid "Maintenance is turned off"
736
  msgstr ""
737
 
738
+ #: admin/admin.php:984
739
  msgid "Reset count"
740
  msgstr ""
741
 
742
+ #: admin/admin.php:987
743
  msgid ""
744
  "This cannot be reversed. Make sure that your database has been backed up "
745
  "before proceeding"
746
  msgstr ""
747
 
748
+ #: admin/admin.php:990
749
  msgid "Reset Popular Posts"
750
  msgstr ""
751
 
752
+ #: admin/admin.php:990
753
  msgid "Are you sure you want to reset the popular posts?"
754
  msgstr ""
755
 
756
+ #: admin/admin.php:991
757
  msgid "Reset Daily Popular Posts"
758
  msgstr ""
759
 
760
+ #: admin/admin.php:991
761
  msgid "Are you sure you want to reset the daily popular posts?"
762
  msgstr ""
763
 
764
+ #: admin/admin.php:992
765
  msgid "Clear duplicates"
766
  msgstr ""
767
 
768
+ #: admin/admin.php:992
769
  msgid "This will delete the duplicate entries in the tables. Proceed?"
770
  msgstr ""
771
 
772
+ #: admin/admin.php:1005
773
  msgid "WordPress Multisite: Migrate Top 10 v1.x counts to 2.x"
774
  msgstr ""
775
 
776
+ #: admin/admin.php:1008
777
  msgid ""
778
  "If you've been using Top 10 v1.x on multisite, you would have needed to "
779
  "activate the plugin independently for each site. This would have resulted in "
780
+ "two tables being created for each site in the network."
 
 
 
781
  msgstr ""
782
 
783
+ #: admin/admin.php:1009
784
+ msgid ""
785
+ "Top 10 v2.x onwards uses only a single table to record the count, keeping "
786
+ "your database clean. You can use this tool to import the recorded counts "
787
+ "from v1.x tables to the new v2.x table format."
788
+ msgstr ""
789
+
790
+ #: admin/admin.php:1012
791
  msgid ""
792
  "If you do not see any tables below, then it means that either all data has "
793
  "already been imported or no relevant information has been found."
794
  msgstr ""
795
 
796
+ #: admin/admin.php:1015
797
+ msgid ""
798
+ "After running the importer, please verify that all the counts have been "
799
+ "successfully imported. Only then should you delete any old tables!"
800
+ msgstr ""
801
+
802
+ #: admin/admin.php:1049
803
  msgid "Blog ID"
804
  msgstr ""
805
 
806
+ #: admin/admin.php:1052
807
  msgid "Status"
808
  msgstr ""
809
 
810
+ #: admin/admin.php:1055
811
  msgid "Select to import"
812
  msgstr ""
813
 
814
+ #: admin/admin.php:1065
815
  msgid "Blog #"
816
  msgstr ""
817
 
818
+ #: admin/admin.php:1075
819
  msgid "Not imported"
820
  msgstr ""
821
 
822
+ #: admin/admin.php:1079
823
  msgid "Imported"
824
  msgstr ""
825
 
826
+ #: admin/admin.php:1100
827
  msgid "Begin import"
828
  msgstr ""
829
 
830
+ #: admin/admin.php:1101
831
  msgid "Delete selected tables"
832
  msgstr ""
833
 
834
+ #: admin/admin.php:1102
835
  msgid "Delete all imported tables"
836
  msgstr ""
837
 
838
+ #: admin/admin.php:1159 admin/admin.php:1255
839
  msgid "Daily Popular Posts"
840
  msgstr ""
841
 
842
+ #: admin/admin.php:1189
843
  msgid "Support the development"
844
  msgstr ""
845
 
846
+ #: admin/admin.php:1196
847
  msgid "Donation for Top 10"
848
  msgstr ""
849
 
850
+ #: admin/admin.php:1198
851
  msgid "Enter amount in USD: "
852
  msgstr ""
853
 
854
+ #: admin/admin.php:1202
855
  msgid "Send your donation to the author of Top 10"
856
  msgstr ""
857
 
858
+ #: admin/admin.php:1209
859
  msgid "Follow me"
860
  msgstr ""
861
 
862
+ #: admin/admin.php:1219
863
  msgid "Quick links"
864
  msgstr ""
865
 
866
+ #: admin/admin.php:1223
867
  msgid "Top 10 plugin page"
868
  msgstr ""
869
 
870
+ #: admin/admin.php:1224
871
  msgid "Top 10 Github page"
872
  msgstr ""
873
 
874
+ #: admin/admin.php:1225
875
  msgid "Other plugins"
876
  msgstr ""
877
 
878
+ #: admin/admin.php:1226
879
  msgid "Ajay's blog"
880
  msgstr ""
881
 
882
+ #: admin/admin.php:1227
883
  msgid "FAQ"
884
  msgstr ""
885
 
886
+ #: admin/admin.php:1228 admin/admin.php:1386
887
  msgid "Support"
888
  msgstr ""
889
 
890
+ #: admin/admin.php:1229
891
  msgid "Reviews"
892
  msgstr ""
893
 
894
+ #: admin/admin.php:1252
895
  msgid "Overall Popular Posts"
896
  msgstr ""
897
 
898
+ #: admin/admin.php:1363
899
  msgid "Settings"
900
  msgstr ""
901
 
902
+ #: admin/admin.php:1387
903
  msgid "Donate"
904
  msgstr ""
905
 
979
  msgid "Thumbnail width"
980
  msgstr ""
981
 
982
+ #: top-10.php:879
983
  msgid " by "
984
  msgstr ""
985
 
986
+ #: top-10.php:930
987
  #, php-format
988
  msgid "Popular posts by <a href=\"%s\" rel=\"nofollow\" %s>Top 10 plugin</a>"
989
  msgstr ""
990
 
991
+ #: top-10.php:1029
992
  msgid "<h3>Popular Posts</h3>"
993
  msgstr ""
994
 
995
+ #: top-10.php:1030
996
  msgid "<h3>Daily Popular</h3>"
997
  msgstr ""
998
 
999
+ #: top-10.php:1031
1000
  msgid "No top posts yet"
1001
  msgstr ""
1002
 
1003
+ #: top-10.php:1676
1004
  msgid "Once Weekly"
1005
  msgstr ""
1006
 
1007
+ #: top-10.php:1680
1008
  msgid "Once Fortnightly"
1009
  msgstr ""
1010
 
1011
+ #: top-10.php:1684
1012
  msgid "Once Monthly"
1013
  msgstr ""
1014
 
1015
+ #: top-10.php:1688
1016
  msgid "Once quarterly"
1017
  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: 2014-05-21 21:29-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"
@@ -17,422 +17,606 @@ msgstr ""
17
  "X-Poedit-SourceCharset: UTF-8\n"
18
  "X-Poedit-SearchPath-0: .\n"
19
 
20
- #: admin.inc.php:115
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
21
  msgid "Options saved successfully."
22
  msgstr "Configuraciones guardadas con éxito"
23
 
24
- #: admin.inc.php:125
25
  msgid "Options set to Default."
26
  msgstr "Los parametros se configuran de manera predeterminada"
27
 
28
- #: admin.inc.php:131
29
  msgid "Top 10 popular posts reset"
30
  msgstr "Reiniciar el Top de los 10 posts más populares"
31
 
32
- #: admin.inc.php:137
33
  msgid "Top 10 daily popular posts reset"
34
  msgstr "Reiniciar el Top de los 10 posts diarios más populares"
35
 
36
- #: admin.inc.php:144
37
  msgid "Duplicate rows cleaned from tables"
38
  msgstr ""
39
 
40
- #: admin.inc.php:156
41
  msgid "Scheduled maintenance enabled / modified"
42
  msgstr ""
43
 
44
- #: admin.inc.php:160
45
  msgid "Scheduled maintenance disabled"
46
  msgstr ""
47
 
48
- #: admin.inc.php:175 admin.inc.php:297 admin.inc.php:458 admin.inc.php:487
49
- #: admin.inc.php:551 admin.inc.php:644 admin.inc.php:664 admin.inc.php:674
50
- msgid "Click to toggle"
51
  msgstr ""
52
 
53
- #: admin.inc.php:176
 
 
 
 
 
 
 
 
 
 
 
54
  msgid "General options"
55
  msgstr ""
56
 
57
- #: admin.inc.php:180
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
58
  msgid "Enable Overall stats"
59
  msgstr ""
60
 
61
- #: admin.inc.php:185
62
  msgid "Enable Daily stats"
63
  msgstr ""
64
 
65
- #: admin.inc.php:190
66
- msgid "W3 Total Cache fix:"
67
  msgstr ""
68
 
69
- #: admin.inc.php:192
70
  msgid ""
71
- "This will try to prevent W3 Total Cache from caching the addcount script of "
72
- "the plugin. Try toggling this option in case you find that our posts are not "
73
- "tracked."
74
  msgstr ""
75
 
76
- #: admin.inc.php:196
77
- msgid "Number of popular posts to display: "
78
- msgstr "Mostrar el número de posts más populares"
79
 
80
- #: admin.inc.php:198
81
  msgid ""
82
- "Maximum number of posts that will be displayed in the list. This option is "
83
- "used if you don't specify the number of posts in the widget or shortcodes"
 
84
  msgstr ""
85
 
86
- #: admin.inc.php:202
87
- msgid "Daily Popular should contain views of how many days? "
88
  msgstr ""
89
- "Los post diarios más populares deben contener el número de visitas al día"
90
 
91
- #: admin.inc.php:204
92
- msgid ""
93
- "Instead of displaying popular posts fromt he past day, this setting lets you "
94
- "display posts for as many days as you want. This can be overridden in the "
95
- "widget."
96
  msgstr ""
97
 
98
- #: admin.inc.php:207
99
- msgid "Post types to include in results (including custom post types)"
100
  msgstr ""
101
 
102
- #: admin.inc.php:218
103
- msgid "List of post or page IDs to exclude from the results: "
 
 
 
 
104
  msgstr ""
105
 
106
- #: admin.inc.php:220 admin.inc.php:361
107
- msgid "Enter comma separated list of IDs. e.g. 188,320,500"
108
  msgstr ""
109
 
110
- #: admin.inc.php:224
111
- msgid "Exclude Categories: "
112
- msgstr "Excluir las Categorías"
113
-
114
- #: admin.inc.php:239
115
  msgid ""
116
- "Comma separated list of category slugs. The field above has an autocomplete "
117
- "so simply start typing in the starting letters and it will prompt you with "
118
- "options"
119
  msgstr ""
 
 
 
120
 
121
- #: admin.inc.php:244
 
 
 
 
 
 
122
  #, fuzzy
123
  msgid "Display number of views on:"
124
  msgstr "¿Mostrar la cantidad de audiencia de los posts?"
125
 
126
- #: admin.inc.php:246
127
  msgid "Posts"
128
  msgstr ""
129
 
130
- #: admin.inc.php:247
131
  #, fuzzy
132
  msgid "Pages"
133
  msgstr "La página"
134
 
135
- #: admin.inc.php:248
136
  msgid "Home page"
137
  msgstr ""
138
 
139
- #: admin.inc.php:249
140
  msgid "Feeds"
141
  msgstr ""
142
 
143
- #: admin.inc.php:250
144
  msgid "Category archives"
145
  msgstr ""
146
 
147
- #: admin.inc.php:251
148
  msgid "Tag archives"
149
  msgstr ""
150
 
151
- #: admin.inc.php:252
152
  msgid "Other archives"
153
  msgstr ""
154
 
155
- #: admin.inc.php:253
156
  msgid ""
157
  "If you choose to disable this, please add <code>&lt;?php if "
158
  "( function_exists ( 'echo_tptn_post_count' ) ) echo_tptn_post_count(); ?&gt;"
159
  "</code> to your template file where you want it displayed"
160
  msgstr ""
161
 
162
- #: admin.inc.php:256
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
163
  msgid "Always display latest post count"
164
  msgstr ""
165
 
166
- #: admin.inc.php:258
167
  msgid ""
168
  "This option uses JavaScript and will increase your page load time. Turn this "
169
  "off if you are not using caching plugins or are OK with displaying older "
170
  "cached counts."
171
  msgstr ""
172
 
173
- #: admin.inc.php:261
174
  msgid "Track visits of authors on their own posts?"
175
  msgstr "¿Observar las visitas de los autores a sus propios posts?"
176
 
177
- #: admin.inc.php:263
178
  msgid ""
179
  "Disabling this option will stop authors visits tracked on their own posts"
180
  msgstr ""
181
 
182
- #: admin.inc.php:266
183
  #, fuzzy
184
  msgid "Track visits of admins?"
185
  msgstr "¿Observar las visitas de los autores a sus propios posts?"
186
 
187
- #: admin.inc.php:268
188
  msgid "Disabling this option will stop admin visits being tracked."
189
  msgstr ""
190
 
191
- #: admin.inc.php:271
192
  #, fuzzy
193
  msgid "Track visits of Editors?"
194
  msgstr "¿Observar las visitas de los autores a sus propios posts?"
195
 
196
- #: admin.inc.php:273
197
  msgid "Disabling this option will stop editor visits being tracked."
198
  msgstr ""
199
 
200
- #: admin.inc.php:276
201
  msgid "Display page views on Posts and Pages in Admin"
202
  msgstr ""
203
 
204
- #: admin.inc.php:279
205
  msgid ""
206
  "Adds three columns called Total Views, Today's Views and Views to All Posts "
207
  "and All Pages"
208
  msgstr ""
209
 
210
- #: admin.inc.php:282
211
  #, fuzzy
212
  msgid "Show number of views to non-admins"
213
  msgstr "¿Mostrar el número de accesos a las páginas?"
214
 
215
- #: admin.inc.php:285
216
  msgid ""
217
  "If you disable this then non-admins won't see the above columns or view the "
218
  "independent pages with the top posts"
219
  msgstr ""
220
 
221
- #: admin.inc.php:288
222
- msgid "Link to Top 10 plugin page"
223
- msgstr ""
224
 
225
- #: admin.inc.php:291
226
- #, fuzzy
227
  msgid ""
228
- "A link to the plugin is added as an extra list item to the list of popular "
229
- "posts"
230
  msgstr ""
231
- "Un enlace al plugin se agrega al cuadro de los posts más populares, como un "
232
- "elemento de una lista adicional. Esto no es obligatorio, pero le "
233
- "agradeceríamos al hacerlo!"
234
 
235
- #: admin.inc.php:298
236
- #, fuzzy
237
- msgid "Output options"
238
- msgstr "Los Parámetros Resultantes"
239
-
240
- #: admin.inc.php:301
241
- #, fuzzy
242
- msgid "Format to display the post views:"
243
- msgstr "El formato de visualización de la cuenta: "
244
 
245
- #: admin.inc.php:303
246
- #, fuzzy
247
- msgid ""
248
- "Use <code>%totalcount%</code> to display the total count, <code>%dailycount"
249
- "%</code> to display the daily count and <code>%overallcount%</code> to "
250
- "display the overall count across all posts on the blog. e.g. the default "
251
- "options displays <code>(Visited 123 times, 23 visits today)</code>"
252
  msgstr ""
253
- "Utilizar <code>%totalcount%</code> para mostrar el número total y <code>"
254
- "%dailycount%</code> para mostrar el número al día. Por ejemplo, los ajustes "
255
- "predeterminados se muestran<code> (Visitado 123 veces, 23 visitas hoy)</code>"
256
 
257
- #: admin.inc.php:306
258
- msgid "What do display when there are no visits?"
259
  msgstr ""
260
 
261
- #: admin.inc.php:308
 
 
 
 
262
  msgid ""
263
- "This text applies only when there are 0 hits for the post and it isn't a "
264
- "single page. e.g. if you display post views on the homepage or archives then "
265
- "this text will be used. To override this, just enter the same text as above "
266
- "option."
267
  msgstr ""
268
 
269
- #: admin.inc.php:311
270
  msgid "Title of popular posts: "
271
  msgstr "El título de los posts más populares"
272
 
273
- #: admin.inc.php:314
274
  msgid "Title of daily popular posts: "
275
  msgstr "El título de los posts diarios más populares"
276
 
277
- #: admin.inc.php:317
278
  msgid "When there are no posts, what should be shown?"
279
  msgstr ""
280
 
281
- #: admin.inc.php:321
282
  msgid "Blank Output"
283
  msgstr ""
284
 
285
- #: admin.inc.php:325
286
  msgid "Display:"
287
  msgstr ""
288
 
289
- #: admin.inc.php:329
290
  msgid "Show post excerpt in list?"
291
  msgstr "¿Mostrar un fragmento del post en la lista?"
292
 
293
- #: admin.inc.php:332
294
  msgid "Length of excerpt (in words): "
295
  msgstr "La longitud del fragmento(en palabras):"
296
 
297
- #: admin.inc.php:335
298
  #, fuzzy
299
  msgid "Show post author in list?"
300
  msgstr "¿Mostrar un fragmento del post en la lista?"
301
 
302
- #: admin.inc.php:338
303
  #, fuzzy
304
  msgid "Show post date in list?"
305
  msgstr "¿Mostrar un fragmento del post en la lista?"
306
 
307
- #: admin.inc.php:341
308
  msgid "Limit post title length (in characters)"
309
  msgstr ""
310
 
311
- #: admin.inc.php:344
312
  #, fuzzy
313
  msgid "Show view count in list?"
314
  msgstr "¿Mostrar un fragmento del post en la lista?"
315
 
316
- #: admin.inc.php:347
317
  msgid "Always display latest post count in the daily lists?"
318
  msgstr ""
319
 
320
- #: admin.inc.php:349
321
  msgid ""
322
  "This option uses JavaScript and will increase your page load time. When you "
323
  "enable this option, the daily widget will not use the options set there, but "
324
  "options will need to be set on this screen."
325
  msgstr ""
326
 
327
- #: admin.inc.php:352
328
  msgid "Open links in new window"
329
  msgstr ""
330
 
331
- #: admin.inc.php:355
332
  msgid "Add nofollow attribute to links in the list"
333
  msgstr ""
334
 
335
- #: admin.inc.php:358
336
  msgid "Exclude display of related posts on these posts / pages"
337
  msgstr ""
338
 
339
- #: admin.inc.php:364
340
  #, fuzzy
341
  msgid "Customise the list HTML"
342
  msgstr "Personalizar el resultado:"
343
 
344
- #: admin.inc.php:366
345
  msgid "HTML to display before the list of posts: "
346
  msgstr "HTML mostrar antes de la lista de posts:"
347
 
348
- #: admin.inc.php:369
349
  msgid "HTML to display before each list item: "
350
  msgstr "HTML mostrar ante cada elemento de la lista:"
351
 
352
- #: admin.inc.php:372
353
  msgid "HTML to display after each list item: "
354
  msgstr "HTML mostrar después de cada elemento de la lista:"
355
 
356
- #: admin.inc.php:375
357
  msgid "HTML to display after the list of posts: "
358
  msgstr "HTML mostrar después de la lista de posts:"
359
 
360
- #: admin.inc.php:378
361
- msgid "Post thumbnail options:"
362
- msgstr "Los parámetros del thumbnail:"
363
-
364
- #: admin.inc.php:380
365
  msgid "Location of post thumbnail:"
366
  msgstr ""
367
 
368
- #: admin.inc.php:384
369
  msgid "Display thumbnails inline with posts, before title"
370
  msgstr "Mostrar el thumbnails en línea con los posts, antes del título"
371
 
372
- #: admin.inc.php:388
373
  msgid "Display thumbnails inline with posts, after title"
374
  msgstr "Mostrar el thumbnails en línea con los posts, después del título"
375
 
376
- #: admin.inc.php:392
377
  msgid "Display only thumbnails, no text"
378
  msgstr "Mostrar solamente thumbnails, no el texto"
379
 
380
- #: admin.inc.php:396
381
  msgid "Do not display thumbnails, only text."
382
  msgstr "No mostrar thumbnails, sólo el texto"
383
 
384
- #: admin.inc.php:400
385
- msgid "Width of the thumbnail: "
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
386
  msgstr ""
387
 
388
- #: admin.inc.php:403
389
- msgid "Height of the thumbnail: "
 
 
390
  msgstr ""
391
 
392
- #: admin.inc.php:406
393
  msgid "Style attributes / Width and Height HTML attributes:"
394
  msgstr ""
395
 
396
- #: admin.inc.php:410
397
  msgid "Style attributes are used for width and height."
398
  msgstr ""
399
 
400
- #: admin.inc.php:414
401
  msgid "HTML width and height attributes are used for width and height."
402
  msgstr ""
403
 
404
- #: admin.inc.php:418
405
  msgid "Use timthumb to generate thumbnails? "
406
  msgstr ""
407
 
408
- #: admin.inc.php:421
409
  msgid ""
410
  "If checked, <a href=\"http://www.binarymoon.co.uk/projects/timthumb/\" "
411
  "target=\"_blank\">timthumb</a> will be used to generate thumbnails"
412
  msgstr ""
413
 
414
- #: admin.inc.php:424
415
  msgid "Quality of thumbnails generated by timthumb:"
416
  msgstr ""
417
 
418
- #: admin.inc.php:427
419
  msgid ""
420
  "Enter values between 0 and 100 only. 100 is highest quality and the highest "
421
  "file size. Suggested maximum value is 95. Default is 75."
422
  msgstr ""
423
 
424
- #: admin.inc.php:430
425
  #, fuzzy
426
  msgid "Post thumbnail meta field name: "
427
  msgstr "Los parámetros del thumbnail:"
428
 
429
- #: admin.inc.php:433
430
  msgid ""
431
  "The value of this field should contain the image source and is set in the "
432
  "<em>Add New Post</em> screen"
433
  msgstr ""
434
 
435
- #: admin.inc.php:436
436
  #, fuzzy
437
  msgid ""
438
  "If the postmeta is not set, then should the plugin extract the first image "
@@ -443,7 +627,7 @@ msgstr ""
443
  "en caso que la primera imagen de los posts correspondientes es muy grande en "
444
  "tamaño de archivo "
445
 
446
- #: admin.inc.php:439
447
  #, fuzzy
448
  msgid ""
449
  "This could slow down the loading of your page if the first image in the "
@@ -454,11 +638,11 @@ msgstr ""
454
  "en caso que la primera imagen de los posts correspondientes es muy grande en "
455
  "tamaño de archivo "
456
 
457
- #: admin.inc.php:442
458
  msgid "Use default thumbnail? "
459
  msgstr ""
460
 
461
- #: admin.inc.php:445
462
  msgid ""
463
  "If checked, when no thumbnail is found, show a default one from the URL "
464
  "below. If not checked and no thumbnail is found, no image will be shown."
@@ -468,63 +652,65 @@ msgstr ""
468
  "verificado el post y tampoco está encontrada la imagen reducida, entonces no "
469
  "hay que mostrarla."
470
 
471
- #: admin.inc.php:448
472
  msgid "Default thumbnail: "
473
  msgstr ""
474
 
475
- #: admin.inc.php:452
476
  msgid ""
477
  "The plugin will first check if the post contains a thumbnail. If it doesn't "
478
  "then it will check the meta field. If this is not available, then it will "
479
  "show the default image as specified above"
480
  msgstr ""
481
 
482
- #: admin.inc.php:459
483
  msgid "Custom CSS"
484
  msgstr ""
485
 
486
- #: admin.inc.php:462
487
  msgid "Use default style included in the plugin?"
488
  msgstr ""
489
 
490
- #: admin.inc.php:465
491
  msgid ""
492
  "Top 10 includes a default style that makes your popular posts list to look "
493
- "pretty. Check the box above if you want to use this. You will need to select "
494
- "<strong>Thumbnails inline, before title</strong> in Output Options or in the "
495
- "Widget."
 
 
 
 
 
 
 
 
 
 
 
496
  msgstr ""
497
 
498
- #: admin.inc.php:468
499
  msgid "Custom CSS to add to header:"
500
  msgstr ""
501
 
502
- #: admin.inc.php:471
503
  msgid ""
504
  "Do not include <code>style</code> tags. Check out the <a href=\"http://"
505
  "wordpress.org/extend/plugins/top-10/faq/\" target=\"_blank\">FAQ</a> for "
506
  "available CSS classes to style."
507
  msgstr ""
508
 
509
- #: admin.inc.php:478 admin.inc.php:544
510
- #, fuzzy
511
- msgid "Save Options"
512
- msgstr "Los parametros"
513
-
514
- #: admin.inc.php:479
515
  #, fuzzy
516
  msgid "Default Options"
517
  msgstr "Los Parámetros Resultantes"
518
 
519
- #: admin.inc.php:479
520
  msgid "Do you want to set options to Default?"
521
  msgstr "¿Quiere configurar las opciones de forma predeterminada?"
522
 
523
- #: admin.inc.php:488
524
- msgid "Maintenance"
525
- msgstr ""
526
-
527
- #: admin.inc.php:492
528
  msgid ""
529
  "Over time the Daily Top 10 database grows in size, which reduces the "
530
  "performance of the plugin. Cleaning the database at regular intervals could "
@@ -532,65 +718,65 @@ msgid ""
532
  "will automatically delete entries older than 90 days."
533
  msgstr ""
534
 
535
- #: admin.inc.php:493
536
  msgid ""
537
  "Note: When scheduled maintenance is enabled, WordPress will run the cron job "
538
  "everytime the job is rescheduled (i.e. you change the settings below)."
539
  msgstr ""
540
 
541
- #: admin.inc.php:496
542
  msgid "Enable scheduled maintenance of daily tables:"
543
  msgstr ""
544
 
545
- #: admin.inc.php:500
546
  msgid "Time to run maintenance"
547
  msgstr ""
548
 
549
- #: admin.inc.php:501
550
  msgid "hrs"
551
  msgstr ""
552
 
553
- #: admin.inc.php:501
554
  msgid "min"
555
  msgstr ""
556
 
557
- #: admin.inc.php:503
558
  msgid "How often should the maintenance be run:"
559
  msgstr ""
560
 
561
- #: admin.inc.php:507
562
  msgid "Daily"
563
  msgstr ""
564
 
565
- #: admin.inc.php:511
566
  msgid "Weekly"
567
  msgstr ""
568
 
569
- #: admin.inc.php:515
570
  msgid "Fortnightly"
571
  msgstr ""
572
 
573
- #: admin.inc.php:519
574
  msgid "Monthly"
575
  msgstr ""
576
 
577
- #: admin.inc.php:528
578
  msgid "The cron job has been scheduled. Maintenance will run "
579
  msgstr ""
580
 
581
- #: admin.inc.php:533
582
  msgid "The cron job is missing. Please resave this page to add the job"
583
  msgstr ""
584
 
585
- #: admin.inc.php:538
586
  msgid "Maintenance is turned off"
587
  msgstr ""
588
 
589
- #: admin.inc.php:552
590
  msgid "Reset count"
591
  msgstr "Reiniciar los ajustes"
592
 
593
- #: admin.inc.php:555
594
  msgid ""
595
  "This cannot be reversed. Make sure that your database has been backed up "
596
  "before proceeding"
@@ -598,302 +784,319 @@ msgstr ""
598
  "Esta operación no puede ser anulada. Antes de anular, asegúrese de que si ha "
599
  "sido creada una copia de seguridad para su base de datos."
600
 
601
- #: admin.inc.php:558
602
  #, fuzzy
603
  msgid "Reset Popular Posts"
604
  msgstr "Los posts más populares"
605
 
606
- #: admin.inc.php:558
607
  msgid "Are you sure you want to reset the popular posts?"
608
  msgstr "¿Está seguro de que desea reiniciar los posts más populares?"
609
 
610
- #: admin.inc.php:559
611
  #, fuzzy
612
  msgid "Reset Daily Popular Posts"
613
  msgstr "Los posts diarios más populares"
614
 
615
- #: admin.inc.php:559
616
  msgid "Are you sure you want to reset the daily popular posts?"
617
  msgstr "¿Está seguro de que desea reiniciar los posts diarios más populares?"
618
 
619
- #: admin.inc.php:560
620
  msgid "Clear duplicates"
621
  msgstr ""
622
 
623
- #: admin.inc.php:560
624
  msgid "This will delete the duplicate entries in the tables. Proceed?"
625
  msgstr ""
626
  "Esta acción eliminará las entradas duplicadas en las tablas. ¿Continuar?"
627
 
628
- #: admin.inc.php:612 admin.inc.php:1010
629
- msgid "Popular Posts"
630
- msgstr "Los posts más populares"
631
 
632
- #: admin.inc.php:614 admin.inc.php:713
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
633
  msgid "Daily Popular Posts"
634
  msgstr "Los posts diarios más populares"
635
 
636
- #: admin.inc.php:645
637
  msgid "Support the development"
638
  msgstr "Apoyar al elaborador"
639
 
640
- #: admin.inc.php:652
641
  msgid "Donation for Top 10"
642
  msgstr ""
643
 
644
- #: admin.inc.php:654
645
  msgid "Enter amount in USD: "
646
  msgstr "Ingresar las cifras en USD"
647
 
648
- #: admin.inc.php:658
649
  #, fuzzy
650
  msgid "Send your donation to the author of Top 10"
651
  msgstr "Enviar su subvención al autor"
652
 
653
- #: admin.inc.php:665
654
  msgid "Follow me"
655
  msgstr ""
656
 
657
- #: admin.inc.php:675
658
  #, fuzzy
659
  msgid "Quick links"
660
  msgstr "Enlaces rápidos"
661
 
662
- #: admin.inc.php:679
663
  #, fuzzy
664
  msgid "Top 10 plugin page"
665
  msgstr "página plugin"
666
 
667
- #: admin.inc.php:680
 
 
 
 
668
  msgid "Other plugins"
669
  msgstr "Otros plugins"
670
 
671
- #: admin.inc.php:681
672
  msgid "Ajay's blog"
673
  msgstr "Blog de Ajay"
674
 
675
- #: admin.inc.php:682
676
  msgid "FAQ"
677
  msgstr ""
678
 
679
- #: admin.inc.php:683 top-10.php:1345
680
  msgid "Support"
681
  msgstr "Apoyo"
682
 
683
- #: admin.inc.php:684
684
  msgid "Reviews"
685
  msgstr ""
686
 
687
- #: admin.inc.php:704 admin.inc.php:707
688
- #, fuzzy
689
- msgid "Top 10 Settings"
690
- msgstr "Los ajustes"
691
-
692
- #: admin.inc.php:704 admin.inc.php:1183
693
- msgid "Top 10"
694
- msgstr "Тоp 10"
695
-
696
- #: admin.inc.php:710
697
  #, fuzzy
698
  msgid "Overall Popular Posts"
699
  msgstr "Ver los posts más populares"
700
 
701
- #: admin.inc.php:882
702
- #, php-format
703
- msgid "Results %1$s to %2$s of %3$s"
704
- msgstr ""
705
-
706
- #: admin.inc.php:886
707
- #, php-format
708
- msgid "Page %s of %s"
709
- msgstr ""
710
-
711
- #: admin.inc.php:898
712
- msgid "View Daily Popular Posts"
713
- msgstr "Ver los posts diarios más populares"
714
-
715
- #: admin.inc.php:901 admin.inc.php:914
716
- msgid "Results per-page:"
717
- msgstr "Los resultados por página:"
718
-
719
- #: admin.inc.php:911
720
- msgid "View Overall Popular Posts"
721
- msgstr "Ver los posts más populares"
722
-
723
- #: admin.inc.php:940
724
- msgid "Previous"
725
- msgstr "Precedentes"
726
-
727
- #: admin.inc.php:968
728
- msgid "Next"
729
- msgstr "Siguientes"
730
-
731
- #: admin.inc.php:1011
732
- msgid "Daily Popular"
733
- msgstr "Diario Populares"
734
-
735
- #: admin.inc.php:1029
736
- #, fuzzy
737
- msgid "Total Views"
738
- msgstr "Total/Visitas de hoy"
739
-
740
- #: admin.inc.php:1030
741
- #, fuzzy
742
- msgid "Today's Views"
743
- msgstr "Total/Visitas de hoy"
744
-
745
- #: admin.inc.php:1031
746
- #, fuzzy
747
- msgid "Views"
748
- msgstr "Total/Visitas de hoy"
749
-
750
- #: admin.inc.php:1217
751
- #, fuzzy
752
- msgid "Visit count:"
753
- msgstr "Reiniciar los ajustes"
754
-
755
- #: admin.inc.php:1219
756
- msgid ""
757
- "Enter a number above to update the visit count. Leaving the above box blank "
758
- "will set the count to zero"
759
- msgstr ""
760
-
761
- #: admin.inc.php:1229
762
- msgid "Location of thumbnail:"
763
- msgstr ""
764
-
765
- #: admin.inc.php:1231
766
- msgid ""
767
- "Enter the full URL to the image (JPG, PNG or GIF) you'd like to use. This "
768
- "image will be used for the post. It will be resized to the thumbnail size "
769
- "set under Settings &raquo; Related Posts &raquo; Output Options"
770
- msgstr ""
771
-
772
- #: admin.inc.php:1232
773
- msgid "The URL above is saved in the meta field: "
774
- msgstr ""
775
 
776
- #: top-10.php:456
777
- msgid " by "
778
- msgstr ""
779
 
780
- #: top-10.php:550
781
  #, fuzzy
782
  msgid "Popular Posts [Top 10]"
783
  msgstr "Los posts más populares"
784
 
785
- #: top-10.php:551
786
  #, fuzzy
787
  msgid "Display popular posts"
788
  msgstr "Los posts diarios más populares"
789
 
790
- #: top-10.php:577
791
  msgid "Title"
792
  msgstr ""
793
 
794
- #: top-10.php:582
795
  msgid "No. of posts"
796
  msgstr ""
797
 
798
- #: top-10.php:587
799
  msgid "Overall"
800
  msgstr ""
801
 
802
- #: top-10.php:588
803
  msgid "Custom time period (Enter below)"
804
  msgstr ""
805
 
806
- #: top-10.php:593
807
- msgid "Range in number of days (applies only to custom option above)"
808
  msgstr ""
809
 
810
- #: top-10.php:598
 
 
 
 
 
 
 
 
811
  #, fuzzy
812
  msgid "Show count?"
813
  msgstr "¿Mostrar un fragmento del post en la lista?"
814
 
815
- #: top-10.php:603
816
  #, fuzzy
817
  msgid "Show excerpt?"
818
  msgstr "¿Mostrar un fragmento del post en la lista?"
819
 
820
- #: top-10.php:608
821
  #, fuzzy
822
  msgid "Show author?"
823
  msgstr "¿Mostrar un fragmento del post en la lista?"
824
 
825
- #: top-10.php:613
826
  #, fuzzy
827
  msgid "Show date?"
828
  msgstr "¿Mostrar un fragmento del post en la lista?"
829
 
830
- #: top-10.php:617
831
- #, fuzzy
832
- msgid "Thumbnail options"
833
- msgstr "Los parámetros del thumbnail:"
834
-
835
- #: top-10.php:619
836
  #, fuzzy
837
  msgid "Thumbnails inline, before title"
838
  msgstr "Mostrar el thumbnails en línea con los posts, antes del título"
839
 
840
- #: top-10.php:620
841
  #, fuzzy
842
  msgid "Thumbnails inline, after title"
843
  msgstr "Mostrar el thumbnails en línea con los posts, después del título"
844
 
845
- #: top-10.php:621
846
  #, fuzzy
847
  msgid "Only thumbnails, no text"
848
  msgstr "Mostrar solamente thumbnails, no el texto"
849
 
850
- #: top-10.php:622
851
  #, fuzzy
852
  msgid "No thumbnails, only text."
853
  msgstr "No mostrar thumbnails, sólo el texto"
854
 
855
- #: top-10.php:627
856
  #, fuzzy
857
  msgid "Thumbnail height"
858
  msgstr "Los parámetros del thumbnail:"
859
 
860
- #: top-10.php:632
861
  #, fuzzy
862
  msgid "Thumbnail width"
863
  msgstr "Los parámetros del thumbnail:"
864
 
865
- #: top-10.php:772
 
 
 
 
 
 
 
 
 
866
  msgid "<h3>Popular Posts</h3>"
867
  msgstr "Los posts populares"
868
 
869
- #: top-10.php:773
870
  msgid "<h3>Daily Popular</h3>"
871
  msgstr "Diario Populares"
872
 
873
- #: top-10.php:774
874
  #, fuzzy
875
  msgid "No top posts yet"
876
  msgstr "Reiniciar el Top de los 10 posts más populares"
877
 
878
- #: top-10.php:1245
879
  msgid "Once Weekly"
880
  msgstr ""
881
 
882
- #: top-10.php:1249
883
  msgid "Once Fortnightly"
884
  msgstr ""
885
 
886
- #: top-10.php:1253
887
  msgid "Once Monthly"
888
  msgstr ""
889
 
890
- #: top-10.php:1323
891
- msgid "Settings"
892
- msgstr "Los ajustes"
893
 
894
- #: top-10.php:1346
895
- msgid "Donate"
896
- msgstr "Subvencionar"
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
897
 
898
  #~ msgid "Display the posts popular this week"
899
  #~ msgstr "Mostrar los posts populares de esta semana"
2
  msgstr ""
3
  "Project-Id-Version: Top 10\n"
4
  "Report-Msgid-Bugs-To: \n"
5
+ "POT-Creation-Date: 2015-01-01 21:53-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"
17
  "X-Poedit-SourceCharset: UTF-8\n"
18
  "X-Poedit-SearchPath-0: .\n"
19
 
20
+ #: admin/admin-columns.php:30
21
+ #, fuzzy
22
+ msgid "Total Views"
23
+ msgstr "Total/Visitas de hoy"
24
+
25
+ #: admin/admin-columns.php:33
26
+ #, fuzzy
27
+ msgid "Today's Views"
28
+ msgstr "Total/Visitas de hoy"
29
+
30
+ #: admin/admin-columns.php:36
31
+ #, fuzzy
32
+ msgid "Views"
33
+ msgstr "Total/Visitas de hoy"
34
+
35
+ #: admin/admin-dashboard.php:72
36
+ #, php-format
37
+ msgid "Results %1$s to %2$s of %3$s"
38
+ msgstr ""
39
+
40
+ #: admin/admin-dashboard.php:76
41
+ #, php-format
42
+ msgid "Page %s of %s"
43
+ msgstr ""
44
+
45
+ #: admin/admin-dashboard.php:88
46
+ msgid "View Daily Popular Posts"
47
+ msgstr "Ver los posts diarios más populares"
48
+
49
+ #: admin/admin-dashboard.php:91 admin/admin-dashboard.php:104
50
+ msgid "Results per-page:"
51
+ msgstr "Los resultados por página:"
52
+
53
+ #: admin/admin-dashboard.php:101
54
+ msgid "View Overall Popular Posts"
55
+ msgstr "Ver los posts más populares"
56
+
57
+ #: admin/admin-dashboard.php:130
58
+ msgid "Previous"
59
+ msgstr "Precedentes"
60
+
61
+ #: admin/admin-dashboard.php:158
62
+ msgid "Next"
63
+ msgstr "Siguientes"
64
+
65
+ #: admin/admin-dashboard.php:200 admin/admin.php:1157
66
+ msgid "Popular Posts"
67
+ msgstr "Los posts más populares"
68
+
69
+ #: admin/admin-dashboard.php:205
70
+ msgid "Daily Popular"
71
+ msgstr "Diario Populares"
72
+
73
+ #: admin/admin-metabox.php:38 admin/admin.php:1246
74
+ msgid "Top 10"
75
+ msgstr "Тоp 10"
76
+
77
+ #: admin/admin-metabox.php:71
78
+ #, fuzzy
79
+ msgid "Visit count:"
80
+ msgstr "Reiniciar los ajustes"
81
+
82
+ #: admin/admin-metabox.php:73
83
+ msgid ""
84
+ "Enter a number above to update the visit count. Leaving the above box blank "
85
+ "will set the count to zero"
86
+ msgstr ""
87
+
88
+ #: admin/admin-metabox.php:83
89
+ msgid "Location of thumbnail:"
90
+ msgstr ""
91
+
92
+ #: admin/admin-metabox.php:85
93
+ msgid ""
94
+ "Enter the full URL to the image (JPG, PNG or GIF) you'd like to use. This "
95
+ "image will be used for the post. It will be resized to the thumbnail size "
96
+ "set under Settings &raquo; Related Posts &raquo; Output Options"
97
+ msgstr ""
98
+
99
+ #: admin/admin-metabox.php:86
100
+ msgid "The URL above is saved in the meta field: "
101
+ msgstr ""
102
+
103
+ #: admin/admin.php:161
104
  msgid "Options saved successfully."
105
  msgstr "Configuraciones guardadas con éxito"
106
 
107
+ #: admin/admin.php:171
108
  msgid "Options set to Default."
109
  msgstr "Los parametros se configuran de manera predeterminada"
110
 
111
+ #: admin/admin.php:177
112
  msgid "Top 10 popular posts reset"
113
  msgstr "Reiniciar el Top de los 10 posts más populares"
114
 
115
+ #: admin/admin.php:183
116
  msgid "Top 10 daily popular posts reset"
117
  msgstr "Reiniciar el Top de los 10 posts diarios más populares"
118
 
119
+ #: admin/admin.php:190
120
  msgid "Duplicate rows cleaned from tables"
121
  msgstr ""
122
 
123
+ #: admin/admin.php:202
124
  msgid "Scheduled maintenance enabled / modified"
125
  msgstr ""
126
 
127
+ #: admin/admin.php:206
128
  msgid "Scheduled maintenance disabled"
129
  msgstr ""
130
 
131
+ #: admin/admin.php:245
132
+ msgid "Counts from selected sites have been imported."
 
133
  msgstr ""
134
 
135
+ #: admin/admin.php:270
136
+ msgid ""
137
+ "Selected tables have been deleted. Note that only imported tables have been "
138
+ "deleted."
139
+ msgstr ""
140
+
141
+ #: admin/admin.php:278 admin/admin.php:1246 admin/admin.php:1249
142
+ #, fuzzy
143
+ msgid "Top 10 Settings"
144
+ msgstr "Los ajustes"
145
+
146
+ #: admin/admin.php:290 admin/admin.php:312
147
  msgid "General options"
148
  msgstr ""
149
 
150
+ #: admin/admin.php:291 admin/admin.php:389
151
+ msgid "Counter and tracker options"
152
+ msgstr ""
153
+
154
+ #: admin/admin.php:292 admin/admin.php:494
155
+ msgid "Popular post list options"
156
+ msgstr ""
157
+
158
+ #: admin/admin.php:293 admin/admin.php:689
159
+ #: includes/class-top-10-widget.php:103
160
+ #, fuzzy
161
+ msgid "Thumbnail options"
162
+ msgstr "Los parámetros del thumbnail:"
163
+
164
+ #: admin/admin.php:294
165
+ msgid "Custom styles"
166
+ msgstr ""
167
+
168
+ #: admin/admin.php:295 admin/admin.php:920
169
+ msgid "Maintenance"
170
+ msgstr ""
171
+
172
+ #: admin/admin.php:311 admin/admin.php:388 admin/admin.php:493
173
+ #: admin/admin.php:688 admin/admin.php:851 admin/admin.php:919
174
+ #: admin/admin.php:983 admin/admin.php:1004 admin/admin.php:1188
175
+ #: admin/admin.php:1208 admin/admin.php:1218
176
+ msgid "Click to toggle"
177
+ msgstr ""
178
+
179
+ #: admin/admin.php:328
180
  msgid "Enable Overall stats"
181
  msgstr ""
182
 
183
+ #: admin/admin.php:334
184
  msgid "Enable Daily stats"
185
  msgstr ""
186
 
187
+ #: admin/admin.php:340
188
+ msgid "Cache fix:"
189
  msgstr ""
190
 
191
+ #: admin/admin.php:343
192
  msgid ""
193
+ "This will try to prevent W3 Total Cache and other caching plugins from "
194
+ "caching the tracker script of the plugin. Try toggling this option in case "
195
+ "you find that your posts are not tracked."
196
  msgstr ""
197
 
198
+ #: admin/admin.php:347
199
+ msgid "Start daily counts from midnight:"
200
+ msgstr ""
201
 
202
+ #: admin/admin.php:350
203
  msgid ""
204
+ "Daily counter will display number of visits from midnight. This option is "
205
+ "checked by default and mimics the way most normal counters work. Turning "
206
+ "this off will allow you to use the hourly setting in the next option."
207
  msgstr ""
208
 
209
+ #: admin/admin.php:354
210
+ msgid "Daily popular contains top posts over:"
211
  msgstr ""
 
212
 
213
+ #: admin/admin.php:356
214
+ msgid "day(s)"
 
 
 
215
  msgstr ""
216
 
217
+ #: admin/admin.php:357
218
+ msgid "hour(s)"
219
  msgstr ""
220
 
221
+ #: admin/admin.php:358
222
+ msgid ""
223
+ "Think of Daily Popular has a custom date range applied as a global setting. "
224
+ "Instead of displaying popular posts from the past day, this setting lets you "
225
+ "display posts for as many days or as few hours as you want. This can be "
226
+ "overridden in the widget."
227
  msgstr ""
228
 
229
+ #: admin/admin.php:362
230
+ msgid "Link to Top 10 plugin page"
231
  msgstr ""
232
 
233
+ #: admin/admin.php:365
234
+ #, fuzzy
 
 
 
235
  msgid ""
236
+ "A link to the plugin is added as an extra list item to the list of popular "
237
+ "posts"
 
238
  msgstr ""
239
+ "Un enlace al plugin se agrega al cuadro de los posts más populares, como un "
240
+ "elemento de una lista adicional. Esto no es obligatorio, pero le "
241
+ "agradeceríamos al hacerlo!"
242
 
243
+ #: admin/admin.php:370 admin/admin.php:475 admin/admin.php:670
244
+ #: admin/admin.php:833 admin/admin.php:899 admin/admin.php:976
245
+ #, fuzzy
246
+ msgid "Save Options"
247
+ msgstr "Los parametros"
248
+
249
+ #: admin/admin.php:405
250
  #, fuzzy
251
  msgid "Display number of views on:"
252
  msgstr "¿Mostrar la cantidad de audiencia de los posts?"
253
 
254
+ #: admin/admin.php:407
255
  msgid "Posts"
256
  msgstr ""
257
 
258
+ #: admin/admin.php:408
259
  #, fuzzy
260
  msgid "Pages"
261
  msgstr "La página"
262
 
263
+ #: admin/admin.php:409
264
  msgid "Home page"
265
  msgstr ""
266
 
267
+ #: admin/admin.php:410
268
  msgid "Feeds"
269
  msgstr ""
270
 
271
+ #: admin/admin.php:411
272
  msgid "Category archives"
273
  msgstr ""
274
 
275
+ #: admin/admin.php:412
276
  msgid "Tag archives"
277
  msgstr ""
278
 
279
+ #: admin/admin.php:413
280
  msgid "Other archives"
281
  msgstr ""
282
 
283
+ #: admin/admin.php:414
284
  msgid ""
285
  "If you choose to disable this, please add <code>&lt;?php if "
286
  "( function_exists ( 'echo_tptn_post_count' ) ) echo_tptn_post_count(); ?&gt;"
287
  "</code> to your template file where you want it displayed"
288
  msgstr ""
289
 
290
+ #: admin/admin.php:418
291
+ #, fuzzy
292
+ msgid "Format to display the post views:"
293
+ msgstr "El formato de visualización de la cuenta: "
294
+
295
+ #: admin/admin.php:421
296
+ msgid ""
297
+ "Use <code>%totalcount%</code> to display the total count, <code>%dailycount"
298
+ "%</code> to display the daily count and <code>%overallcount%</code> to "
299
+ "display the overall count across all posts on the blog. e.g. the default "
300
+ "options displays <code>[Visited 123 times, 23 visits today]</code>"
301
+ msgstr ""
302
+
303
+ #: admin/admin.php:425
304
+ msgid "What do display when there are no visits?"
305
+ msgstr ""
306
+
307
+ #: admin/admin.php:428
308
+ msgid ""
309
+ "This text applies only when there are 0 hits for the post and it isn't a "
310
+ "single page. e.g. if you display post views on the homepage or archives then "
311
+ "this text will be used. To override this, just enter the same text as above "
312
+ "option."
313
+ msgstr ""
314
+
315
+ #: admin/admin.php:432
316
  msgid "Always display latest post count"
317
  msgstr ""
318
 
319
+ #: admin/admin.php:435
320
  msgid ""
321
  "This option uses JavaScript and will increase your page load time. Turn this "
322
  "off if you are not using caching plugins or are OK with displaying older "
323
  "cached counts."
324
  msgstr ""
325
 
326
+ #: admin/admin.php:439
327
  msgid "Track visits of authors on their own posts?"
328
  msgstr "¿Observar las visitas de los autores a sus propios posts?"
329
 
330
+ #: admin/admin.php:442
331
  msgid ""
332
  "Disabling this option will stop authors visits tracked on their own posts"
333
  msgstr ""
334
 
335
+ #: admin/admin.php:446
336
  #, fuzzy
337
  msgid "Track visits of admins?"
338
  msgstr "¿Observar las visitas de los autores a sus propios posts?"
339
 
340
+ #: admin/admin.php:449
341
  msgid "Disabling this option will stop admin visits being tracked."
342
  msgstr ""
343
 
344
+ #: admin/admin.php:453
345
  #, fuzzy
346
  msgid "Track visits of Editors?"
347
  msgstr "¿Observar las visitas de los autores a sus propios posts?"
348
 
349
+ #: admin/admin.php:456
350
  msgid "Disabling this option will stop editor visits being tracked."
351
  msgstr ""
352
 
353
+ #: admin/admin.php:460
354
  msgid "Display page views on Posts and Pages in Admin"
355
  msgstr ""
356
 
357
+ #: admin/admin.php:463
358
  msgid ""
359
  "Adds three columns called Total Views, Today's Views and Views to All Posts "
360
  "and All Pages"
361
  msgstr ""
362
 
363
+ #: admin/admin.php:467
364
  #, fuzzy
365
  msgid "Show number of views to non-admins"
366
  msgstr "¿Mostrar el número de accesos a las páginas?"
367
 
368
+ #: admin/admin.php:470
369
  msgid ""
370
  "If you disable this then non-admins won't see the above columns or view the "
371
  "independent pages with the top posts"
372
  msgstr ""
373
 
374
+ #: admin/admin.php:510
375
+ msgid "Number of popular posts to display: "
376
+ msgstr "Mostrar el número de posts más populares"
377
 
378
+ #: admin/admin.php:513
 
379
  msgid ""
380
+ "Maximum number of posts that will be displayed in the list. This option is "
381
+ "used if you don't specify the number of posts in the widget or shortcodes"
382
  msgstr ""
 
 
 
383
 
384
+ #: admin/admin.php:517
385
+ msgid "Post types to include in results (including custom post types)"
386
+ msgstr ""
 
 
 
 
 
 
387
 
388
+ #: admin/admin.php:529
389
+ msgid "List of post or page IDs to exclude from the results: "
 
 
 
 
 
390
  msgstr ""
 
 
 
391
 
392
+ #: admin/admin.php:531 admin/admin.php:638
393
+ msgid "Enter comma separated list of IDs. e.g. 188,320,500"
394
  msgstr ""
395
 
396
+ #: admin/admin.php:535
397
+ msgid "Exclude Categories: "
398
+ msgstr "Excluir las Categorías"
399
+
400
+ #: admin/admin.php:550
401
  msgid ""
402
+ "Comma separated list of category slugs. The field above has an autocomplete "
403
+ "so simply start typing in the starting letters and it will prompt you with "
404
+ "options"
 
405
  msgstr ""
406
 
407
+ #: admin/admin.php:555
408
  msgid "Title of popular posts: "
409
  msgstr "El título de los posts más populares"
410
 
411
+ #: admin/admin.php:561
412
  msgid "Title of daily popular posts: "
413
  msgstr "El título de los posts diarios más populares"
414
 
415
+ #: admin/admin.php:567
416
  msgid "When there are no posts, what should be shown?"
417
  msgstr ""
418
 
419
+ #: admin/admin.php:571
420
  msgid "Blank Output"
421
  msgstr ""
422
 
423
+ #: admin/admin.php:575
424
  msgid "Display:"
425
  msgstr ""
426
 
427
+ #: admin/admin.php:580
428
  msgid "Show post excerpt in list?"
429
  msgstr "¿Mostrar un fragmento del post en la lista?"
430
 
431
+ #: admin/admin.php:586
432
  msgid "Length of excerpt (in words): "
433
  msgstr "La longitud del fragmento(en palabras):"
434
 
435
+ #: admin/admin.php:592
436
  #, fuzzy
437
  msgid "Show post author in list?"
438
  msgstr "¿Mostrar un fragmento del post en la lista?"
439
 
440
+ #: admin/admin.php:598
441
  #, fuzzy
442
  msgid "Show post date in list?"
443
  msgstr "¿Mostrar un fragmento del post en la lista?"
444
 
445
+ #: admin/admin.php:604
446
  msgid "Limit post title length (in characters)"
447
  msgstr ""
448
 
449
+ #: admin/admin.php:610
450
  #, fuzzy
451
  msgid "Show view count in list?"
452
  msgstr "¿Mostrar un fragmento del post en la lista?"
453
 
454
+ #: admin/admin.php:616
455
  msgid "Always display latest post count in the daily lists?"
456
  msgstr ""
457
 
458
+ #: admin/admin.php:619
459
  msgid ""
460
  "This option uses JavaScript and will increase your page load time. When you "
461
  "enable this option, the daily widget will not use the options set there, but "
462
  "options will need to be set on this screen."
463
  msgstr ""
464
 
465
+ #: admin/admin.php:623
466
  msgid "Open links in new window"
467
  msgstr ""
468
 
469
+ #: admin/admin.php:629
470
  msgid "Add nofollow attribute to links in the list"
471
  msgstr ""
472
 
473
+ #: admin/admin.php:635
474
  msgid "Exclude display of related posts on these posts / pages"
475
  msgstr ""
476
 
477
+ #: admin/admin.php:642
478
  #, fuzzy
479
  msgid "Customise the list HTML"
480
  msgstr "Personalizar el resultado:"
481
 
482
+ #: admin/admin.php:645
483
  msgid "HTML to display before the list of posts: "
484
  msgstr "HTML mostrar antes de la lista de posts:"
485
 
486
+ #: admin/admin.php:651
487
  msgid "HTML to display before each list item: "
488
  msgstr "HTML mostrar ante cada elemento de la lista:"
489
 
490
+ #: admin/admin.php:657
491
  msgid "HTML to display after each list item: "
492
  msgstr "HTML mostrar después de cada elemento de la lista:"
493
 
494
+ #: admin/admin.php:663
495
  msgid "HTML to display after the list of posts: "
496
  msgstr "HTML mostrar después de la lista de posts:"
497
 
498
+ #: admin/admin.php:704
 
 
 
 
499
  msgid "Location of post thumbnail:"
500
  msgstr ""
501
 
502
+ #: admin/admin.php:708
503
  msgid "Display thumbnails inline with posts, before title"
504
  msgstr "Mostrar el thumbnails en línea con los posts, antes del título"
505
 
506
+ #: admin/admin.php:713
507
  msgid "Display thumbnails inline with posts, after title"
508
  msgstr "Mostrar el thumbnails en línea con los posts, después del título"
509
 
510
+ #: admin/admin.php:718
511
  msgid "Display only thumbnails, no text"
512
  msgstr "Mostrar solamente thumbnails, no el texto"
513
 
514
+ #: admin/admin.php:723
515
  msgid "Do not display thumbnails, only text."
516
  msgstr "No mostrar thumbnails, sólo el texto"
517
 
518
+ #: admin/admin.php:727
519
+ msgid "Thumbnail size:"
520
+ msgstr ""
521
+
522
+ #: admin/admin.php:751
523
+ msgid "Custom size"
524
+ msgstr ""
525
+
526
+ #: admin/admin.php:754
527
+ msgid ""
528
+ "You can choose from existing image sizes above or create a custom size. If "
529
+ "you have chosen Custom size above, then enter the width, height and crop "
530
+ "settings below. For best results, use a cropped image."
531
+ msgstr ""
532
+
533
+ #: admin/admin.php:755
534
+ msgid ""
535
+ "If you change the width and/or height below, existing images will not be "
536
+ "automatically resized."
537
+ msgstr ""
538
+
539
+ #: admin/admin.php:756
540
+ #, php-format
541
+ msgid ""
542
+ "I recommend using <a href='%s' target='_blank'>Force Regenerate Thumbnails</"
543
+ "a> or <a href='%s' target='_blank'>Force Regenerate Thumbnails</a> to "
544
+ "regenerate all image sizes."
545
+ msgstr ""
546
+
547
+ #: admin/admin.php:759
548
+ msgid "Width of custom thumbnail:"
549
+ msgstr ""
550
+
551
+ #: admin/admin.php:764
552
+ msgid "Height of custom thumbnail"
553
+ msgstr ""
554
+
555
+ #: admin/admin.php:769
556
+ msgid "Crop mode:"
557
+ msgstr ""
558
+
559
+ #: admin/admin.php:773
560
+ msgid ""
561
+ "By default, thumbnails will be proportionately cropped. Check this box to "
562
+ "hard crop the thumbnails."
563
+ msgstr ""
564
+
565
+ #: admin/admin.php:774
566
+ #, php-format
567
+ msgid "<a href='%s' target='_blank'>Difference between soft and hard crop</a>"
568
  msgstr ""
569
 
570
+ #: admin/admin.php:776
571
+ msgid ""
572
+ "Since you're using the default styles set under the Custom Styles section, "
573
+ "the width and height is fixed at 65px and crop mode is enabled."
574
  msgstr ""
575
 
576
+ #: admin/admin.php:781
577
  msgid "Style attributes / Width and Height HTML attributes:"
578
  msgstr ""
579
 
580
+ #: admin/admin.php:785
581
  msgid "Style attributes are used for width and height."
582
  msgstr ""
583
 
584
+ #: admin/admin.php:790
585
  msgid "HTML width and height attributes are used for width and height."
586
  msgstr ""
587
 
588
+ #: admin/admin.php:794
589
  msgid "Use timthumb to generate thumbnails? "
590
  msgstr ""
591
 
592
+ #: admin/admin.php:797
593
  msgid ""
594
  "If checked, <a href=\"http://www.binarymoon.co.uk/projects/timthumb/\" "
595
  "target=\"_blank\">timthumb</a> will be used to generate thumbnails"
596
  msgstr ""
597
 
598
+ #: admin/admin.php:800
599
  msgid "Quality of thumbnails generated by timthumb:"
600
  msgstr ""
601
 
602
+ #: admin/admin.php:803
603
  msgid ""
604
  "Enter values between 0 and 100 only. 100 is highest quality and the highest "
605
  "file size. Suggested maximum value is 95. Default is 75."
606
  msgstr ""
607
 
608
+ #: admin/admin.php:806
609
  #, fuzzy
610
  msgid "Post thumbnail meta field name: "
611
  msgstr "Los parámetros del thumbnail:"
612
 
613
+ #: admin/admin.php:809
614
  msgid ""
615
  "The value of this field should contain the image source and is set in the "
616
  "<em>Add New Post</em> screen"
617
  msgstr ""
618
 
619
+ #: admin/admin.php:812
620
  #, fuzzy
621
  msgid ""
622
  "If the postmeta is not set, then should the plugin extract the first image "
627
  "en caso que la primera imagen de los posts correspondientes es muy grande en "
628
  "tamaño de archivo "
629
 
630
+ #: admin/admin.php:815
631
  #, fuzzy
632
  msgid ""
633
  "This could slow down the loading of your page if the first image in the "
638
  "en caso que la primera imagen de los posts correspondientes es muy grande en "
639
  "tamaño de archivo "
640
 
641
+ #: admin/admin.php:818
642
  msgid "Use default thumbnail? "
643
  msgstr ""
644
 
645
+ #: admin/admin.php:821
646
  msgid ""
647
  "If checked, when no thumbnail is found, show a default one from the URL "
648
  "below. If not checked and no thumbnail is found, no image will be shown."
652
  "verificado el post y tampoco está encontrada la imagen reducida, entonces no "
653
  "hay que mostrarla."
654
 
655
+ #: admin/admin.php:824
656
  msgid "Default thumbnail: "
657
  msgstr ""
658
 
659
+ #: admin/admin.php:828
660
  msgid ""
661
  "The plugin will first check if the post contains a thumbnail. If it doesn't "
662
  "then it will check the meta field. If this is not available, then it will "
663
  "show the default image as specified above"
664
  msgstr ""
665
 
666
+ #: admin/admin.php:852
667
  msgid "Custom CSS"
668
  msgstr ""
669
 
670
+ #: admin/admin.php:867
671
  msgid "Use default style included in the plugin?"
672
  msgstr ""
673
 
674
+ #: admin/admin.php:870
675
  msgid ""
676
  "Top 10 includes a default style that makes your popular posts list to look "
677
+ "beautiful. Check the box above if you want to use this."
678
+ msgstr ""
679
+
680
+ #: admin/admin.php:871
681
+ msgid ""
682
+ "Enabling this option will turn on the thumbnails and set their width and "
683
+ "height to 65px. It will also turn off the display of the author, excerpt and "
684
+ "date if already enabled. Disabling this option will not revert any settings."
685
+ msgstr ""
686
+
687
+ #: admin/admin.php:872
688
+ #, php-format
689
+ msgid ""
690
+ "You can view the default style at <a href=\"%1$s\" target=\"_blank\">%1$s</a>"
691
  msgstr ""
692
 
693
+ #: admin/admin.php:875
694
  msgid "Custom CSS to add to header:"
695
  msgstr ""
696
 
697
+ #: admin/admin.php:880
698
  msgid ""
699
  "Do not include <code>style</code> tags. Check out the <a href=\"http://"
700
  "wordpress.org/extend/plugins/top-10/faq/\" target=\"_blank\">FAQ</a> for "
701
  "available CSS classes to style."
702
  msgstr ""
703
 
704
+ #: admin/admin.php:900
 
 
 
 
 
705
  #, fuzzy
706
  msgid "Default Options"
707
  msgstr "Los Parámetros Resultantes"
708
 
709
+ #: admin/admin.php:900
710
  msgid "Do you want to set options to Default?"
711
  msgstr "¿Quiere configurar las opciones de forma predeterminada?"
712
 
713
+ #: admin/admin.php:924
 
 
 
 
714
  msgid ""
715
  "Over time the Daily Top 10 database grows in size, which reduces the "
716
  "performance of the plugin. Cleaning the database at regular intervals could "
718
  "will automatically delete entries older than 90 days."
719
  msgstr ""
720
 
721
+ #: admin/admin.php:925
722
  msgid ""
723
  "Note: When scheduled maintenance is enabled, WordPress will run the cron job "
724
  "everytime the job is rescheduled (i.e. you change the settings below)."
725
  msgstr ""
726
 
727
+ #: admin/admin.php:928
728
  msgid "Enable scheduled maintenance of daily tables:"
729
  msgstr ""
730
 
731
+ #: admin/admin.php:932
732
  msgid "Time to run maintenance"
733
  msgstr ""
734
 
735
+ #: admin/admin.php:933
736
  msgid "hrs"
737
  msgstr ""
738
 
739
+ #: admin/admin.php:933
740
  msgid "min"
741
  msgstr ""
742
 
743
+ #: admin/admin.php:935
744
  msgid "How often should the maintenance be run:"
745
  msgstr ""
746
 
747
+ #: admin/admin.php:939
748
  msgid "Daily"
749
  msgstr ""
750
 
751
+ #: admin/admin.php:943
752
  msgid "Weekly"
753
  msgstr ""
754
 
755
+ #: admin/admin.php:947
756
  msgid "Fortnightly"
757
  msgstr ""
758
 
759
+ #: admin/admin.php:951
760
  msgid "Monthly"
761
  msgstr ""
762
 
763
+ #: admin/admin.php:960
764
  msgid "The cron job has been scheduled. Maintenance will run "
765
  msgstr ""
766
 
767
+ #: admin/admin.php:965
768
  msgid "The cron job is missing. Please resave this page to add the job"
769
  msgstr ""
770
 
771
+ #: admin/admin.php:970
772
  msgid "Maintenance is turned off"
773
  msgstr ""
774
 
775
+ #: admin/admin.php:984
776
  msgid "Reset count"
777
  msgstr "Reiniciar los ajustes"
778
 
779
+ #: admin/admin.php:987
780
  msgid ""
781
  "This cannot be reversed. Make sure that your database has been backed up "
782
  "before proceeding"
784
  "Esta operación no puede ser anulada. Antes de anular, asegúrese de que si ha "
785
  "sido creada una copia de seguridad para su base de datos."
786
 
787
+ #: admin/admin.php:990
788
  #, fuzzy
789
  msgid "Reset Popular Posts"
790
  msgstr "Los posts más populares"
791
 
792
+ #: admin/admin.php:990
793
  msgid "Are you sure you want to reset the popular posts?"
794
  msgstr "¿Está seguro de que desea reiniciar los posts más populares?"
795
 
796
+ #: admin/admin.php:991
797
  #, fuzzy
798
  msgid "Reset Daily Popular Posts"
799
  msgstr "Los posts diarios más populares"
800
 
801
+ #: admin/admin.php:991
802
  msgid "Are you sure you want to reset the daily popular posts?"
803
  msgstr "¿Está seguro de que desea reiniciar los posts diarios más populares?"
804
 
805
+ #: admin/admin.php:992
806
  msgid "Clear duplicates"
807
  msgstr ""
808
 
809
+ #: admin/admin.php:992
810
  msgid "This will delete the duplicate entries in the tables. Proceed?"
811
  msgstr ""
812
  "Esta acción eliminará las entradas duplicadas en las tablas. ¿Continuar?"
813
 
814
+ #: admin/admin.php:1005
815
+ msgid "WordPress Multisite: Migrate Top 10 v1.x counts to 2.x"
816
+ msgstr ""
817
 
818
+ #: admin/admin.php:1008
819
+ msgid ""
820
+ "If you've been using Top 10 v1.x on multisite, you would have needed to "
821
+ "activate the plugin independently for each site. This would have resulted in "
822
+ "two tables being created for each site in the network."
823
+ msgstr ""
824
+
825
+ #: admin/admin.php:1009
826
+ msgid ""
827
+ "Top 10 v2.x onwards uses only a single table to record the count, keeping "
828
+ "your database clean. You can use this tool to import the recorded counts "
829
+ "from v1.x tables to the new v2.x table format."
830
+ msgstr ""
831
+
832
+ #: admin/admin.php:1012
833
+ msgid ""
834
+ "If you do not see any tables below, then it means that either all data has "
835
+ "already been imported or no relevant information has been found."
836
+ msgstr ""
837
+
838
+ #: admin/admin.php:1015
839
+ msgid ""
840
+ "After running the importer, please verify that all the counts have been "
841
+ "successfully imported. Only then should you delete any old tables!"
842
+ msgstr ""
843
+
844
+ #: admin/admin.php:1049
845
+ msgid "Blog ID"
846
+ msgstr ""
847
+
848
+ #: admin/admin.php:1052
849
+ msgid "Status"
850
+ msgstr ""
851
+
852
+ #: admin/admin.php:1055
853
+ msgid "Select to import"
854
+ msgstr ""
855
+
856
+ #: admin/admin.php:1065
857
+ msgid "Blog #"
858
+ msgstr ""
859
+
860
+ #: admin/admin.php:1075
861
+ msgid "Not imported"
862
+ msgstr ""
863
+
864
+ #: admin/admin.php:1079
865
+ msgid "Imported"
866
+ msgstr ""
867
+
868
+ #: admin/admin.php:1100
869
+ msgid "Begin import"
870
+ msgstr ""
871
+
872
+ #: admin/admin.php:1101
873
+ msgid "Delete selected tables"
874
+ msgstr ""
875
+
876
+ #: admin/admin.php:1102
877
+ msgid "Delete all imported tables"
878
+ msgstr ""
879
+
880
+ #: admin/admin.php:1159 admin/admin.php:1255
881
  msgid "Daily Popular Posts"
882
  msgstr "Los posts diarios más populares"
883
 
884
+ #: admin/admin.php:1189
885
  msgid "Support the development"
886
  msgstr "Apoyar al elaborador"
887
 
888
+ #: admin/admin.php:1196
889
  msgid "Donation for Top 10"
890
  msgstr ""
891
 
892
+ #: admin/admin.php:1198
893
  msgid "Enter amount in USD: "
894
  msgstr "Ingresar las cifras en USD"
895
 
896
+ #: admin/admin.php:1202
897
  #, fuzzy
898
  msgid "Send your donation to the author of Top 10"
899
  msgstr "Enviar su subvención al autor"
900
 
901
+ #: admin/admin.php:1209
902
  msgid "Follow me"
903
  msgstr ""
904
 
905
+ #: admin/admin.php:1219
906
  #, fuzzy
907
  msgid "Quick links"
908
  msgstr "Enlaces rápidos"
909
 
910
+ #: admin/admin.php:1223
911
  #, fuzzy
912
  msgid "Top 10 plugin page"
913
  msgstr "página plugin"
914
 
915
+ #: admin/admin.php:1224
916
+ msgid "Top 10 Github page"
917
+ msgstr ""
918
+
919
+ #: admin/admin.php:1225
920
  msgid "Other plugins"
921
  msgstr "Otros plugins"
922
 
923
+ #: admin/admin.php:1226
924
  msgid "Ajay's blog"
925
  msgstr "Blog de Ajay"
926
 
927
+ #: admin/admin.php:1227
928
  msgid "FAQ"
929
  msgstr ""
930
 
931
+ #: admin/admin.php:1228 admin/admin.php:1386
932
  msgid "Support"
933
  msgstr "Apoyo"
934
 
935
+ #: admin/admin.php:1229
936
  msgid "Reviews"
937
  msgstr ""
938
 
939
+ #: admin/admin.php:1252
 
 
 
 
 
 
 
 
 
940
  #, fuzzy
941
  msgid "Overall Popular Posts"
942
  msgstr "Ver los posts más populares"
943
 
944
+ #: admin/admin.php:1363
945
+ msgid "Settings"
946
+ msgstr "Los ajustes"
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
947
 
948
+ #: admin/admin.php:1387
949
+ msgid "Donate"
950
+ msgstr "Subvencionar"
951
 
952
+ #: includes/class-top-10-widget.php:31
953
  #, fuzzy
954
  msgid "Popular Posts [Top 10]"
955
  msgstr "Los posts más populares"
956
 
957
+ #: includes/class-top-10-widget.php:32
958
  #, fuzzy
959
  msgid "Display popular posts"
960
  msgstr "Los posts diarios más populares"
961
 
962
+ #: includes/class-top-10-widget.php:59
963
  msgid "Title"
964
  msgstr ""
965
 
966
+ #: includes/class-top-10-widget.php:64
967
  msgid "No. of posts"
968
  msgstr ""
969
 
970
+ #: includes/class-top-10-widget.php:69
971
  msgid "Overall"
972
  msgstr ""
973
 
974
+ #: includes/class-top-10-widget.php:70
975
  msgid "Custom time period (Enter below)"
976
  msgstr ""
977
 
978
+ #: includes/class-top-10-widget.php:74
979
+ msgid "In days and hours (applies only to custom option above)"
980
  msgstr ""
981
 
982
+ #: includes/class-top-10-widget.php:76
983
+ msgid "days"
984
+ msgstr ""
985
+
986
+ #: includes/class-top-10-widget.php:79
987
+ msgid "hours"
988
+ msgstr ""
989
+
990
+ #: includes/class-top-10-widget.php:84
991
  #, fuzzy
992
  msgid "Show count?"
993
  msgstr "¿Mostrar un fragmento del post en la lista?"
994
 
995
+ #: includes/class-top-10-widget.php:89
996
  #, fuzzy
997
  msgid "Show excerpt?"
998
  msgstr "¿Mostrar un fragmento del post en la lista?"
999
 
1000
+ #: includes/class-top-10-widget.php:94
1001
  #, fuzzy
1002
  msgid "Show author?"
1003
  msgstr "¿Mostrar un fragmento del post en la lista?"
1004
 
1005
+ #: includes/class-top-10-widget.php:99
1006
  #, fuzzy
1007
  msgid "Show date?"
1008
  msgstr "¿Mostrar un fragmento del post en la lista?"
1009
 
1010
+ #: includes/class-top-10-widget.php:105
 
 
 
 
 
1011
  #, fuzzy
1012
  msgid "Thumbnails inline, before title"
1013
  msgstr "Mostrar el thumbnails en línea con los posts, antes del título"
1014
 
1015
+ #: includes/class-top-10-widget.php:106
1016
  #, fuzzy
1017
  msgid "Thumbnails inline, after title"
1018
  msgstr "Mostrar el thumbnails en línea con los posts, después del título"
1019
 
1020
+ #: includes/class-top-10-widget.php:107
1021
  #, fuzzy
1022
  msgid "Only thumbnails, no text"
1023
  msgstr "Mostrar solamente thumbnails, no el texto"
1024
 
1025
+ #: includes/class-top-10-widget.php:108
1026
  #, fuzzy
1027
  msgid "No thumbnails, only text."
1028
  msgstr "No mostrar thumbnails, sólo el texto"
1029
 
1030
+ #: includes/class-top-10-widget.php:113
1031
  #, fuzzy
1032
  msgid "Thumbnail height"
1033
  msgstr "Los parámetros del thumbnail:"
1034
 
1035
+ #: includes/class-top-10-widget.php:118
1036
  #, fuzzy
1037
  msgid "Thumbnail width"
1038
  msgstr "Los parámetros del thumbnail:"
1039
 
1040
+ #: top-10.php:879
1041
+ msgid " by "
1042
+ msgstr ""
1043
+
1044
+ #: top-10.php:930
1045
+ #, php-format
1046
+ msgid "Popular posts by <a href=\"%s\" rel=\"nofollow\" %s>Top 10 plugin</a>"
1047
+ msgstr ""
1048
+
1049
+ #: top-10.php:1029
1050
  msgid "<h3>Popular Posts</h3>"
1051
  msgstr "Los posts populares"
1052
 
1053
+ #: top-10.php:1030
1054
  msgid "<h3>Daily Popular</h3>"
1055
  msgstr "Diario Populares"
1056
 
1057
+ #: top-10.php:1031
1058
  #, fuzzy
1059
  msgid "No top posts yet"
1060
  msgstr "Reiniciar el Top de los 10 posts más populares"
1061
 
1062
+ #: top-10.php:1676
1063
  msgid "Once Weekly"
1064
  msgstr ""
1065
 
1066
+ #: top-10.php:1680
1067
  msgid "Once Fortnightly"
1068
  msgstr ""
1069
 
1070
+ #: top-10.php:1684
1071
  msgid "Once Monthly"
1072
  msgstr ""
1073
 
1074
+ #: top-10.php:1688
1075
+ msgid "Once quarterly"
1076
+ msgstr ""
1077
 
1078
+ #~ msgid "Daily Popular should contain views of how many days? "
1079
+ #~ msgstr ""
1080
+ #~ "Los post diarios más populares deben contener el número de visitas al día"
1081
+
1082
+ #, fuzzy
1083
+ #~ msgid "Output options"
1084
+ #~ msgstr "Los Parámetros Resultantes"
1085
+
1086
+ #, fuzzy
1087
+ #~ msgid ""
1088
+ #~ "Use <code>%totalcount%</code> to display the total count, <code>"
1089
+ #~ "%dailycount%</code> to display the daily count and <code>%overallcount%</"
1090
+ #~ "code> to display the overall count across all posts on the blog. e.g. the "
1091
+ #~ "default options displays <code>(Visited 123 times, 23 visits today)</code>"
1092
+ #~ msgstr ""
1093
+ #~ "Utilizar <code>%totalcount%</code> para mostrar el número total y <code>"
1094
+ #~ "%dailycount%</code> para mostrar el número al día. Por ejemplo, los "
1095
+ #~ "ajustes predeterminados se muestran<code> (Visitado 123 veces, 23 visitas "
1096
+ #~ "hoy)</code>"
1097
+
1098
+ #~ msgid "Post thumbnail options:"
1099
+ #~ msgstr "Los parámetros del thumbnail:"
1100
 
1101
  #~ msgid "Display the posts popular this week"
1102
  #~ msgstr "Mostrar los posts populares de esta semana"
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: 2014-12-28 00:59-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"
@@ -62,7 +62,7 @@ msgstr "Précédente"
62
  msgid "Next"
63
  msgstr "Suivante"
64
 
65
- #: admin/admin-dashboard.php:200 admin/admin.php:1145
66
  msgid "Popular Posts"
67
  msgstr "Postes populaires"
68
 
@@ -70,7 +70,7 @@ msgstr "Postes populaires"
70
  msgid "Daily Popular"
71
  msgstr "Populaires journaliers"
72
 
73
- #: admin/admin-metabox.php:38 admin/admin.php:1234
74
  msgid "Top 10"
75
  msgstr "Тоp 10"
76
 
@@ -100,106 +100,137 @@ msgstr ""
100
  msgid "The URL above is saved in the meta field: "
101
  msgstr ""
102
 
103
- #: admin/admin.php:160
104
  msgid "Options saved successfully."
105
  msgstr "Les options sont sauvegardées avec succès"
106
 
107
- #: admin/admin.php:170
108
  msgid "Options set to Default."
109
  msgstr "Options par défaut sont définies"
110
 
111
- #: admin/admin.php:176
112
  msgid "Top 10 popular posts reset"
113
  msgstr "Annuler le top 10 des enregistrements les plus populaires"
114
 
115
- #: admin/admin.php:182
116
  msgid "Top 10 daily popular posts reset"
117
  msgstr "Annuler le top 10 des messages les plus populaires journaliers"
118
 
119
- #: admin/admin.php:189
120
  msgid "Duplicate rows cleaned from tables"
121
  msgstr ""
122
 
123
- #: admin/admin.php:201
124
  msgid "Scheduled maintenance enabled / modified"
125
  msgstr ""
126
 
127
- #: admin/admin.php:205
128
  msgid "Scheduled maintenance disabled"
129
  msgstr ""
130
 
131
- #: admin/admin.php:244
132
  msgid "Counts from selected sites have been imported."
133
  msgstr ""
134
 
135
- #: admin/admin.php:269
136
  msgid ""
137
  "Selected tables have been deleted. Note that only imported tables have been "
138
  "deleted."
139
  msgstr ""
140
 
141
- #: admin/admin.php:277 admin/admin.php:1234 admin/admin.php:1237
142
  #, fuzzy
143
  msgid "Top 10 Settings"
144
  msgstr "Paramètres"
145
 
146
- #: admin/admin.php:289 admin/admin.php:311
147
  msgid "General options"
148
  msgstr ""
149
 
150
- #: admin/admin.php:290 admin/admin.php:373
151
  msgid "Counter and tracker options"
152
  msgstr ""
153
 
154
- #: admin/admin.php:291 admin/admin.php:478
155
  msgid "Popular post list options"
156
  msgstr ""
157
 
158
- #: admin/admin.php:292 admin/admin.php:681
159
  #: includes/class-top-10-widget.php:103
160
  #, fuzzy
161
  msgid "Thumbnail options"
162
  msgstr "Options thumbnail des messages:"
163
 
164
- #: admin/admin.php:293
165
  msgid "Custom styles"
166
  msgstr ""
167
 
168
- #: admin/admin.php:294 admin/admin.php:912
169
  msgid "Maintenance"
170
  msgstr ""
171
 
172
- #: admin/admin.php:310 admin/admin.php:372 admin/admin.php:477
173
- #: admin/admin.php:680 admin/admin.php:843 admin/admin.php:911
174
- #: admin/admin.php:975 admin/admin.php:996 admin/admin.php:1176
175
- #: admin/admin.php:1196 admin/admin.php:1206
176
  msgid "Click to toggle"
177
  msgstr ""
178
 
179
- #: admin/admin.php:327
180
  msgid "Enable Overall stats"
181
  msgstr ""
182
 
183
- #: admin/admin.php:333
184
  msgid "Enable Daily stats"
185
  msgstr ""
186
 
187
- #: admin/admin.php:339
188
  msgid "Cache fix:"
189
  msgstr ""
190
 
191
- #: admin/admin.php:342
192
  msgid ""
193
  "This will try to prevent W3 Total Cache and other caching plugins from "
194
  "caching the tracker script of the plugin. Try toggling this option in case "
195
  "you find that your posts are not tracked."
196
  msgstr ""
197
 
198
- #: admin/admin.php:346
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
199
  msgid "Link to Top 10 plugin page"
200
  msgstr ""
201
 
202
- #: admin/admin.php:349
203
  #, fuzzy
204
  msgid ""
205
  "A link to the plugin is added as an extra list item to the list of popular "
@@ -209,59 +240,59 @@ msgstr ""
209
  "le répertoire des enregistrements populaires. Cela n'est pas obligatoire, "
210
  "mais nous vous y remercions!"
211
 
212
- #: admin/admin.php:354 admin/admin.php:459 admin/admin.php:662
213
- #: admin/admin.php:825 admin/admin.php:891 admin/admin.php:968
214
  #, fuzzy
215
  msgid "Save Options"
216
  msgstr "Options:"
217
 
218
- #: admin/admin.php:389
219
  #, fuzzy
220
  msgid "Display number of views on:"
221
  msgstr "Afficher le nombre des visionnages du message?"
222
 
223
- #: admin/admin.php:391
224
  msgid "Posts"
225
  msgstr ""
226
 
227
- #: admin/admin.php:392
228
  #, fuzzy
229
  msgid "Pages"
230
  msgstr "Page"
231
 
232
- #: admin/admin.php:393
233
  msgid "Home page"
234
  msgstr ""
235
 
236
- #: admin/admin.php:394
237
  msgid "Feeds"
238
  msgstr ""
239
 
240
- #: admin/admin.php:395
241
  msgid "Category archives"
242
  msgstr ""
243
 
244
- #: admin/admin.php:396
245
  msgid "Tag archives"
246
  msgstr ""
247
 
248
- #: admin/admin.php:397
249
  msgid "Other archives"
250
  msgstr ""
251
 
252
- #: admin/admin.php:398
253
  msgid ""
254
  "If you choose to disable this, please add <code>&lt;?php if "
255
  "( function_exists ( 'echo_tptn_post_count' ) ) echo_tptn_post_count(); ?&gt;"
256
  "</code> to your template file where you want it displayed"
257
  msgstr ""
258
 
259
- #: admin/admin.php:402
260
  #, fuzzy
261
  msgid "Format to display the post views:"
262
  msgstr "Format d’affichage de la quantité en:"
263
 
264
- #: admin/admin.php:405
265
  msgid ""
266
  "Use <code>%totalcount%</code> to display the total count, <code>%dailycount"
267
  "%</code> to display the daily count and <code>%overallcount%</code> to "
@@ -269,11 +300,11 @@ msgid ""
269
  "options displays <code>[Visited 123 times, 23 visits today]</code>"
270
  msgstr ""
271
 
272
- #: admin/admin.php:409
273
  msgid "What do display when there are no visits?"
274
  msgstr ""
275
 
276
- #: admin/admin.php:412
277
  msgid ""
278
  "This text applies only when there are 0 hits for the post and it isn't a "
279
  "single page. e.g. if you display post views on the homepage or archives then "
@@ -281,251 +312,231 @@ msgid ""
281
  "option."
282
  msgstr ""
283
 
284
- #: admin/admin.php:416
285
  msgid "Always display latest post count"
286
  msgstr ""
287
 
288
- #: admin/admin.php:419
289
  msgid ""
290
  "This option uses JavaScript and will increase your page load time. Turn this "
291
  "off if you are not using caching plugins or are OK with displaying older "
292
  "cached counts."
293
  msgstr ""
294
 
295
- #: admin/admin.php:423
296
  msgid "Track visits of authors on their own posts?"
297
  msgstr "Suivre les visites des auteurs de leurs propres messages?"
298
 
299
- #: admin/admin.php:426
300
  msgid ""
301
  "Disabling this option will stop authors visits tracked on their own posts"
302
  msgstr ""
303
 
304
- #: admin/admin.php:430
305
  #, fuzzy
306
  msgid "Track visits of admins?"
307
  msgstr "Suivre les visites des auteurs de leurs propres messages?"
308
 
309
- #: admin/admin.php:433
310
  msgid "Disabling this option will stop admin visits being tracked."
311
  msgstr ""
312
 
313
- #: admin/admin.php:437
314
  #, fuzzy
315
  msgid "Track visits of Editors?"
316
  msgstr "Suivre les visites des auteurs de leurs propres messages?"
317
 
318
- #: admin/admin.php:440
319
  msgid "Disabling this option will stop editor visits being tracked."
320
  msgstr ""
321
 
322
- #: admin/admin.php:444
323
  msgid "Display page views on Posts and Pages in Admin"
324
  msgstr ""
325
 
326
- #: admin/admin.php:447
327
  msgid ""
328
  "Adds three columns called Total Views, Today's Views and Views to All Posts "
329
  "and All Pages"
330
  msgstr ""
331
 
332
- #: admin/admin.php:451
333
  #, fuzzy
334
  msgid "Show number of views to non-admins"
335
  msgstr "Afficher le nombre des visionnages sur les pages?"
336
 
337
- #: admin/admin.php:454
338
  msgid ""
339
  "If you disable this then non-admins won't see the above columns or view the "
340
  "independent pages with the top posts"
341
  msgstr ""
342
 
343
- #: admin/admin.php:494
344
  msgid "Number of popular posts to display: "
345
  msgstr "Le nombre de populaires sur le forum"
346
 
347
- #: admin/admin.php:497
348
  msgid ""
349
  "Maximum number of posts that will be displayed in the list. This option is "
350
  "used if you don't specify the number of posts in the widget or shortcodes"
351
  msgstr ""
352
 
353
- #: admin/admin.php:501
354
- msgid "Daily popular contains top posts over:"
355
- msgstr ""
356
-
357
- #: admin/admin.php:503
358
- msgid "day(s)"
359
- msgstr ""
360
-
361
- #: admin/admin.php:504
362
- msgid "hour(s)"
363
- msgstr ""
364
-
365
- #: admin/admin.php:505
366
- msgid ""
367
- "Think of Daily Popular has a custom date range applied as a global setting. "
368
- "Instead of displaying popular posts from the past day, this setting lets you "
369
- "display posts for as many days or as few hours as you want. This can be "
370
- "overridden in the widget."
371
- msgstr ""
372
-
373
- #: admin/admin.php:509
374
  msgid "Post types to include in results (including custom post types)"
375
  msgstr ""
376
 
377
- #: admin/admin.php:521
378
  msgid "List of post or page IDs to exclude from the results: "
379
  msgstr ""
380
 
381
- #: admin/admin.php:523 admin/admin.php:630
382
  msgid "Enter comma separated list of IDs. e.g. 188,320,500"
383
  msgstr ""
384
 
385
- #: admin/admin.php:527
386
  msgid "Exclude Categories: "
387
  msgstr "Exclure les catégories:"
388
 
389
- #: admin/admin.php:542
390
  msgid ""
391
  "Comma separated list of category slugs. The field above has an autocomplete "
392
  "so simply start typing in the starting letters and it will prompt you with "
393
  "options"
394
  msgstr ""
395
 
396
- #: admin/admin.php:547
397
  msgid "Title of popular posts: "
398
  msgstr "Les en-têtes des messages populaires"
399
 
400
- #: admin/admin.php:553
401
  msgid "Title of daily popular posts: "
402
  msgstr "Les en-têtes des messages populaires journaliers"
403
 
404
- #: admin/admin.php:559
405
  msgid "When there are no posts, what should be shown?"
406
  msgstr ""
407
 
408
- #: admin/admin.php:563
409
  msgid "Blank Output"
410
  msgstr ""
411
 
412
- #: admin/admin.php:567
413
  msgid "Display:"
414
  msgstr ""
415
 
416
- #: admin/admin.php:572
417
  msgid "Show post excerpt in list?"
418
  msgstr "Afficher le fragment du message dans la liste?"
419
 
420
- #: admin/admin.php:578
421
  msgid "Length of excerpt (in words): "
422
  msgstr "Longueur du fragment (mots):"
423
 
424
- #: admin/admin.php:584
425
  #, fuzzy
426
  msgid "Show post author in list?"
427
  msgstr "Afficher le fragment du message dans la liste?"
428
 
429
- #: admin/admin.php:590
430
  #, fuzzy
431
  msgid "Show post date in list?"
432
  msgstr "Afficher le fragment du message dans la liste?"
433
 
434
- #: admin/admin.php:596
435
  msgid "Limit post title length (in characters)"
436
  msgstr ""
437
 
438
- #: admin/admin.php:602
439
  #, fuzzy
440
  msgid "Show view count in list?"
441
  msgstr "Afficher le fragment du message dans la liste?"
442
 
443
- #: admin/admin.php:608
444
  msgid "Always display latest post count in the daily lists?"
445
  msgstr ""
446
 
447
- #: admin/admin.php:611
448
  msgid ""
449
  "This option uses JavaScript and will increase your page load time. When you "
450
  "enable this option, the daily widget will not use the options set there, but "
451
  "options will need to be set on this screen."
452
  msgstr ""
453
 
454
- #: admin/admin.php:615
455
  msgid "Open links in new window"
456
  msgstr ""
457
 
458
- #: admin/admin.php:621
459
  msgid "Add nofollow attribute to links in the list"
460
  msgstr ""
461
 
462
- #: admin/admin.php:627
463
  msgid "Exclude display of related posts on these posts / pages"
464
  msgstr ""
465
 
466
- #: admin/admin.php:634
467
  #, fuzzy
468
  msgid "Customise the list HTML"
469
  msgstr "Paramétrer la sortie:"
470
 
471
- #: admin/admin.php:637
472
  msgid "HTML to display before the list of posts: "
473
  msgstr "HTML d'affichage avant la liste des messages:"
474
 
475
- #: admin/admin.php:643
476
  msgid "HTML to display before each list item: "
477
  msgstr "HTML d'affichage avant chaque élément de la liste:"
478
 
479
- #: admin/admin.php:649
480
  msgid "HTML to display after each list item: "
481
  msgstr "HTML d'affichage après chaque élément de la liste:"
482
 
483
- #: admin/admin.php:655
484
  msgid "HTML to display after the list of posts: "
485
  msgstr "HTML d'affichage après la liste des messages:"
486
 
487
- #: admin/admin.php:696
488
  msgid "Location of post thumbnail:"
489
  msgstr ""
490
 
491
- #: admin/admin.php:700
492
  msgid "Display thumbnails inline with posts, before title"
493
  msgstr "Afficher le thumbnail encastré et les messages avant l'en-tête"
494
 
495
- #: admin/admin.php:705
496
  msgid "Display thumbnails inline with posts, after title"
497
  msgstr "Afficher le thumbnail encastré et les messages après l'en-tête"
498
 
499
- #: admin/admin.php:710
500
  msgid "Display only thumbnails, no text"
501
  msgstr "Afficher uniquement le thumbnail, sans le texte"
502
 
503
- #: admin/admin.php:715
504
  msgid "Do not display thumbnails, only text."
505
  msgstr "Ne pas afficher le thumbnail, uniquement le texte"
506
 
507
- #: admin/admin.php:719
508
  msgid "Thumbnail size:"
509
  msgstr ""
510
 
511
- #: admin/admin.php:743
512
  msgid "Custom size"
513
  msgstr ""
514
 
515
- #: admin/admin.php:746
516
  msgid ""
517
  "You can choose from existing image sizes above or create a custom size. If "
518
  "you have chosen Custom size above, then enter the width, height and crop "
519
  "settings below. For best results, use a cropped image."
520
  msgstr ""
521
 
522
- #: admin/admin.php:747
523
  msgid ""
524
  "If you change the width and/or height below, existing images will not be "
525
  "automatically resized."
526
  msgstr ""
527
 
528
- #: admin/admin.php:748
529
  #, php-format
530
  msgid ""
531
  "I recommend using <a href='%s' target='_blank'>Force Regenerate Thumbnails</"
@@ -533,79 +544,79 @@ msgid ""
533
  "regenerate all image sizes."
534
  msgstr ""
535
 
536
- #: admin/admin.php:751
537
  msgid "Width of custom thumbnail:"
538
  msgstr ""
539
 
540
- #: admin/admin.php:756
541
  msgid "Height of custom thumbnail"
542
  msgstr ""
543
 
544
- #: admin/admin.php:761
545
  msgid "Crop mode:"
546
  msgstr ""
547
 
548
- #: admin/admin.php:765
549
  msgid ""
550
  "By default, thumbnails will be proportionately cropped. Check this box to "
551
  "hard crop the thumbnails."
552
  msgstr ""
553
 
554
- #: admin/admin.php:766
555
  #, php-format
556
  msgid "<a href='%s' target='_blank'>Difference between soft and hard crop</a>"
557
  msgstr ""
558
 
559
- #: admin/admin.php:768
560
  msgid ""
561
  "Since you're using the default styles set under the Custom Styles section, "
562
  "the width and height is fixed at 65px and crop mode is enabled."
563
  msgstr ""
564
 
565
- #: admin/admin.php:773
566
  msgid "Style attributes / Width and Height HTML attributes:"
567
  msgstr ""
568
 
569
- #: admin/admin.php:777
570
  msgid "Style attributes are used for width and height."
571
  msgstr ""
572
 
573
- #: admin/admin.php:782
574
  msgid "HTML width and height attributes are used for width and height."
575
  msgstr ""
576
 
577
- #: admin/admin.php:786
578
  msgid "Use timthumb to generate thumbnails? "
579
  msgstr ""
580
 
581
- #: admin/admin.php:789
582
  msgid ""
583
  "If checked, <a href=\"http://www.binarymoon.co.uk/projects/timthumb/\" "
584
  "target=\"_blank\">timthumb</a> will be used to generate thumbnails"
585
  msgstr ""
586
 
587
- #: admin/admin.php:792
588
  msgid "Quality of thumbnails generated by timthumb:"
589
  msgstr ""
590
 
591
- #: admin/admin.php:795
592
  msgid ""
593
  "Enter values between 0 and 100 only. 100 is highest quality and the highest "
594
  "file size. Suggested maximum value is 95. Default is 75."
595
  msgstr ""
596
 
597
- #: admin/admin.php:798
598
  #, fuzzy
599
  msgid "Post thumbnail meta field name: "
600
  msgstr "Options thumbnail des messages:"
601
 
602
- #: admin/admin.php:801
603
  msgid ""
604
  "The value of this field should contain the image source and is set in the "
605
  "<em>Add New Post</em> screen"
606
  msgstr ""
607
 
608
- #: admin/admin.php:804
609
  #, fuzzy
610
  msgid ""
611
  "If the postmeta is not set, then should the plugin extract the first image "
@@ -616,7 +627,7 @@ msgstr ""
616
  "première image de la résolution correspondante du fichier est de taille "
617
  "supérieure"
618
 
619
- #: admin/admin.php:807
620
  #, fuzzy
621
  msgid ""
622
  "This could slow down the loading of your page if the first image in the "
@@ -627,11 +638,11 @@ msgstr ""
627
  "première image de la résolution correspondante du fichier est de taille "
628
  "supérieure"
629
 
630
- #: admin/admin.php:810
631
  msgid "Use default thumbnail? "
632
  msgstr ""
633
 
634
- #: admin/admin.php:813
635
  msgid ""
636
  "If checked, when no thumbnail is found, show a default one from the URL "
637
  "below. If not checked and no thumbnail is found, no image will be shown."
@@ -640,65 +651,65 @@ msgstr ""
640
  "Thumbnail par défaut. S'il n'a pas été déterminé, que le thumbnail n'a pas "
641
  "été retrouvé, ne pas afficher l'image."
642
 
643
- #: admin/admin.php:816
644
  msgid "Default thumbnail: "
645
  msgstr ""
646
 
647
- #: admin/admin.php:820
648
  msgid ""
649
  "The plugin will first check if the post contains a thumbnail. If it doesn't "
650
  "then it will check the meta field. If this is not available, then it will "
651
  "show the default image as specified above"
652
  msgstr ""
653
 
654
- #: admin/admin.php:844
655
  msgid "Custom CSS"
656
  msgstr ""
657
 
658
- #: admin/admin.php:859
659
  msgid "Use default style included in the plugin?"
660
  msgstr ""
661
 
662
- #: admin/admin.php:862
663
  msgid ""
664
  "Top 10 includes a default style that makes your popular posts list to look "
665
  "beautiful. Check the box above if you want to use this."
666
  msgstr ""
667
 
668
- #: admin/admin.php:863
669
  msgid ""
670
  "Enabling this option will turn on the thumbnails and set their width and "
671
  "height to 65px. It will also turn off the display of the author, excerpt and "
672
  "date if already enabled. Disabling this option will not revert any settings."
673
  msgstr ""
674
 
675
- #: admin/admin.php:864
676
  #, php-format
677
  msgid ""
678
  "You can view the default style at <a href=\"%1$s\" target=\"_blank\">%1$s</a>"
679
  msgstr ""
680
 
681
- #: admin/admin.php:867
682
  msgid "Custom CSS to add to header:"
683
  msgstr ""
684
 
685
- #: admin/admin.php:872
686
  msgid ""
687
  "Do not include <code>style</code> tags. Check out the <a href=\"http://"
688
  "wordpress.org/extend/plugins/top-10/faq/\" target=\"_blank\">FAQ</a> for "
689
  "available CSS classes to style."
690
  msgstr ""
691
 
692
- #: admin/admin.php:892
693
  #, fuzzy
694
  msgid "Default Options"
695
  msgstr "Paramètres de sortie"
696
 
697
- #: admin/admin.php:892
698
  msgid "Do you want to set options to Default?"
699
  msgstr "Définir les paramètres par défaut?"
700
 
701
- #: admin/admin.php:916
702
  msgid ""
703
  "Over time the Daily Top 10 database grows in size, which reduces the "
704
  "performance of the plugin. Cleaning the database at regular intervals could "
@@ -706,65 +717,65 @@ msgid ""
706
  "will automatically delete entries older than 90 days."
707
  msgstr ""
708
 
709
- #: admin/admin.php:917
710
  msgid ""
711
  "Note: When scheduled maintenance is enabled, WordPress will run the cron job "
712
  "everytime the job is rescheduled (i.e. you change the settings below)."
713
  msgstr ""
714
 
715
- #: admin/admin.php:920
716
  msgid "Enable scheduled maintenance of daily tables:"
717
  msgstr ""
718
 
719
- #: admin/admin.php:924
720
  msgid "Time to run maintenance"
721
  msgstr ""
722
 
723
- #: admin/admin.php:925
724
  msgid "hrs"
725
  msgstr ""
726
 
727
- #: admin/admin.php:925
728
  msgid "min"
729
  msgstr ""
730
 
731
- #: admin/admin.php:927
732
  msgid "How often should the maintenance be run:"
733
  msgstr ""
734
 
735
- #: admin/admin.php:931
736
  msgid "Daily"
737
  msgstr ""
738
 
739
- #: admin/admin.php:935
740
  msgid "Weekly"
741
  msgstr ""
742
 
743
- #: admin/admin.php:939
744
  msgid "Fortnightly"
745
  msgstr ""
746
 
747
- #: admin/admin.php:943
748
  msgid "Monthly"
749
  msgstr ""
750
 
751
- #: admin/admin.php:952
752
  msgid "The cron job has been scheduled. Maintenance will run "
753
  msgstr ""
754
 
755
- #: admin/admin.php:957
756
  msgid "The cron job is missing. Please resave this page to add the job"
757
  msgstr ""
758
 
759
- #: admin/admin.php:962
760
  msgid "Maintenance is turned off"
761
  msgstr ""
762
 
763
- #: admin/admin.php:976
764
  msgid "Reset count"
765
  msgstr "Réinitialiser le compteur"
766
 
767
- #: admin/admin.php:979
768
  msgid ""
769
  "This cannot be reversed. Make sure that your database has been backed up "
770
  "before proceeding"
@@ -772,158 +783,168 @@ msgstr ""
772
  "Cette action ne peut être annulée. Assurez-vous que la base de données a été "
773
  "sauvegardée avant de poursuivre."
774
 
775
- #: admin/admin.php:982
776
  #, fuzzy
777
  msgid "Reset Popular Posts"
778
  msgstr "Postes populaires"
779
 
780
- #: admin/admin.php:982
781
  msgid "Are you sure you want to reset the popular posts?"
782
  msgstr "Êtes-vous sûr de vouloir annuler les postes populaires?"
783
 
784
- #: admin/admin.php:983
785
  #, fuzzy
786
  msgid "Reset Daily Popular Posts"
787
  msgstr "Postes populaires journaliers"
788
 
789
- #: admin/admin.php:983
790
  msgid "Are you sure you want to reset the daily popular posts?"
791
  msgstr "Êtes-vous sûr de vouloir annuler les postes populaires journaliers?"
792
 
793
- #: admin/admin.php:984
794
  msgid "Clear duplicates"
795
  msgstr ""
796
 
797
- #: admin/admin.php:984
798
  msgid "This will delete the duplicate entries in the tables. Proceed?"
799
  msgstr ""
800
  "Cela supprimera les doubles des enregistrements dans les tableaux. Continuer?"
801
 
802
- #: admin/admin.php:997
803
  msgid "WordPress Multisite: Migrate Top 10 v1.x counts to 2.x"
804
  msgstr ""
805
 
806
- #: admin/admin.php:1000
807
  msgid ""
808
  "If you've been using Top 10 v1.x on multisite, you would have needed to "
809
  "activate the plugin independently for each site. This would have resulted in "
810
- "two tables being created for each site in the network. Top 10 v2.x onwards "
811
- "uses only a single table to record the count, keeping your database clean. "
812
- "You can use this tool to import the recorded counts from v1.x tables to the "
813
- "new v2.x table format."
814
  msgstr ""
815
 
816
- #: admin/admin.php:1003
 
 
 
 
 
 
 
817
  msgid ""
818
  "If you do not see any tables below, then it means that either all data has "
819
  "already been imported or no relevant information has been found."
820
  msgstr ""
821
 
822
- #: admin/admin.php:1037
 
 
 
 
 
 
823
  msgid "Blog ID"
824
  msgstr ""
825
 
826
- #: admin/admin.php:1040
827
  msgid "Status"
828
  msgstr ""
829
 
830
- #: admin/admin.php:1043
831
  msgid "Select to import"
832
  msgstr ""
833
 
834
- #: admin/admin.php:1053
835
  msgid "Blog #"
836
  msgstr ""
837
 
838
- #: admin/admin.php:1063
839
  msgid "Not imported"
840
  msgstr ""
841
 
842
- #: admin/admin.php:1067
843
  msgid "Imported"
844
  msgstr ""
845
 
846
- #: admin/admin.php:1088
847
  msgid "Begin import"
848
  msgstr ""
849
 
850
- #: admin/admin.php:1089
851
  msgid "Delete selected tables"
852
  msgstr ""
853
 
854
- #: admin/admin.php:1090
855
  msgid "Delete all imported tables"
856
  msgstr ""
857
 
858
- #: admin/admin.php:1147 admin/admin.php:1243
859
  msgid "Daily Popular Posts"
860
  msgstr "Postes populaires journaliers"
861
 
862
- #: admin/admin.php:1177
863
  msgid "Support the development"
864
  msgstr "Soutenir le projet"
865
 
866
- #: admin/admin.php:1184
867
  msgid "Donation for Top 10"
868
  msgstr ""
869
 
870
- #: admin/admin.php:1186
871
  msgid "Enter amount in USD: "
872
  msgstr "Saisir le montant en dollars US"
873
 
874
- #: admin/admin.php:1190
875
  #, fuzzy
876
  msgid "Send your donation to the author of Top 10"
877
  msgstr "Envoyer sa dotation à l'auteur"
878
 
879
- #: admin/admin.php:1197
880
  msgid "Follow me"
881
  msgstr ""
882
 
883
- #: admin/admin.php:1207
884
  #, fuzzy
885
  msgid "Quick links"
886
  msgstr "Liens rapides"
887
 
888
- #: admin/admin.php:1211
889
  #, fuzzy
890
  msgid "Top 10 plugin page"
891
  msgstr "Page de plugin"
892
 
893
- #: admin/admin.php:1212
894
  msgid "Top 10 Github page"
895
  msgstr ""
896
 
897
- #: admin/admin.php:1213
898
  msgid "Other plugins"
899
  msgstr "Autres plugins"
900
 
901
- #: admin/admin.php:1214
902
  msgid "Ajay's blog"
903
  msgstr "Blog Ajay"
904
 
905
- #: admin/admin.php:1215
906
  msgid "FAQ"
907
  msgstr ""
908
 
909
- #: admin/admin.php:1216 admin/admin.php:1374
910
  msgid "Support"
911
  msgstr "Service d'assistance"
912
 
913
- #: admin/admin.php:1217
914
  msgid "Reviews"
915
  msgstr ""
916
 
917
- #: admin/admin.php:1240
918
  #, fuzzy
919
  msgid "Overall Popular Posts"
920
  msgstr "Voir tous les postes populaires"
921
 
922
- #: admin/admin.php:1351
923
  msgid "Settings"
924
  msgstr "Paramètres"
925
 
926
- #: admin/admin.php:1375
927
  msgid "Donate"
928
  msgstr "Conribuer"
929
 
@@ -1015,41 +1036,41 @@ msgstr "Options thumbnail des messages:"
1015
  msgid "Thumbnail width"
1016
  msgstr "Options thumbnail des messages:"
1017
 
1018
- #: top-10.php:866
1019
  msgid " by "
1020
  msgstr ""
1021
 
1022
- #: top-10.php:917
1023
  #, php-format
1024
  msgid "Popular posts by <a href=\"%s\" rel=\"nofollow\" %s>Top 10 plugin</a>"
1025
  msgstr ""
1026
 
1027
- #: top-10.php:1016
1028
  msgid "<h3>Popular Posts</h3>"
1029
  msgstr "<h3>Postes populaires</h3>"
1030
 
1031
- #: top-10.php:1017
1032
  msgid "<h3>Daily Popular</h3>"
1033
  msgstr "<h3>Populaires Journaliers</h3>"
1034
 
1035
- #: top-10.php:1018
1036
  #, fuzzy
1037
  msgid "No top posts yet"
1038
  msgstr "Annuler le top 10 des enregistrements les plus populaires"
1039
 
1040
- #: top-10.php:1668
1041
  msgid "Once Weekly"
1042
  msgstr ""
1043
 
1044
- #: top-10.php:1672
1045
  msgid "Once Fortnightly"
1046
  msgstr ""
1047
 
1048
- #: top-10.php:1676
1049
  msgid "Once Monthly"
1050
  msgstr ""
1051
 
1052
- #: top-10.php:1680
1053
  msgid "Once quarterly"
1054
  msgstr ""
1055
 
2
  msgstr ""
3
  "Project-Id-Version: Top 10\n"
4
  "Report-Msgid-Bugs-To: \n"
5
+ "POT-Creation-Date: 2015-01-01 21:53-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"
62
  msgid "Next"
63
  msgstr "Suivante"
64
 
65
+ #: admin/admin-dashboard.php:200 admin/admin.php:1157
66
  msgid "Popular Posts"
67
  msgstr "Postes populaires"
68
 
70
  msgid "Daily Popular"
71
  msgstr "Populaires journaliers"
72
 
73
+ #: admin/admin-metabox.php:38 admin/admin.php:1246
74
  msgid "Top 10"
75
  msgstr "Тоp 10"
76
 
100
  msgid "The URL above is saved in the meta field: "
101
  msgstr ""
102
 
103
+ #: admin/admin.php:161
104
  msgid "Options saved successfully."
105
  msgstr "Les options sont sauvegardées avec succès"
106
 
107
+ #: admin/admin.php:171
108
  msgid "Options set to Default."
109
  msgstr "Options par défaut sont définies"
110
 
111
+ #: admin/admin.php:177
112
  msgid "Top 10 popular posts reset"
113
  msgstr "Annuler le top 10 des enregistrements les plus populaires"
114
 
115
+ #: admin/admin.php:183
116
  msgid "Top 10 daily popular posts reset"
117
  msgstr "Annuler le top 10 des messages les plus populaires journaliers"
118
 
119
+ #: admin/admin.php:190
120
  msgid "Duplicate rows cleaned from tables"
121
  msgstr ""
122
 
123
+ #: admin/admin.php:202
124
  msgid "Scheduled maintenance enabled / modified"
125
  msgstr ""
126
 
127
+ #: admin/admin.php:206
128
  msgid "Scheduled maintenance disabled"
129
  msgstr ""
130
 
131
+ #: admin/admin.php:245
132
  msgid "Counts from selected sites have been imported."
133
  msgstr ""
134
 
135
+ #: admin/admin.php:270
136
  msgid ""
137
  "Selected tables have been deleted. Note that only imported tables have been "
138
  "deleted."
139
  msgstr ""
140
 
141
+ #: admin/admin.php:278 admin/admin.php:1246 admin/admin.php:1249
142
  #, fuzzy
143
  msgid "Top 10 Settings"
144
  msgstr "Paramètres"
145
 
146
+ #: admin/admin.php:290 admin/admin.php:312
147
  msgid "General options"
148
  msgstr ""
149
 
150
+ #: admin/admin.php:291 admin/admin.php:389
151
  msgid "Counter and tracker options"
152
  msgstr ""
153
 
154
+ #: admin/admin.php:292 admin/admin.php:494
155
  msgid "Popular post list options"
156
  msgstr ""
157
 
158
+ #: admin/admin.php:293 admin/admin.php:689
159
  #: includes/class-top-10-widget.php:103
160
  #, fuzzy
161
  msgid "Thumbnail options"
162
  msgstr "Options thumbnail des messages:"
163
 
164
+ #: admin/admin.php:294
165
  msgid "Custom styles"
166
  msgstr ""
167
 
168
+ #: admin/admin.php:295 admin/admin.php:920
169
  msgid "Maintenance"
170
  msgstr ""
171
 
172
+ #: admin/admin.php:311 admin/admin.php:388 admin/admin.php:493
173
+ #: admin/admin.php:688 admin/admin.php:851 admin/admin.php:919
174
+ #: admin/admin.php:983 admin/admin.php:1004 admin/admin.php:1188
175
+ #: admin/admin.php:1208 admin/admin.php:1218
176
  msgid "Click to toggle"
177
  msgstr ""
178
 
179
+ #: admin/admin.php:328
180
  msgid "Enable Overall stats"
181
  msgstr ""
182
 
183
+ #: admin/admin.php:334
184
  msgid "Enable Daily stats"
185
  msgstr ""
186
 
187
+ #: admin/admin.php:340
188
  msgid "Cache fix:"
189
  msgstr ""
190
 
191
+ #: admin/admin.php:343
192
  msgid ""
193
  "This will try to prevent W3 Total Cache and other caching plugins from "
194
  "caching the tracker script of the plugin. Try toggling this option in case "
195
  "you find that your posts are not tracked."
196
  msgstr ""
197
 
198
+ #: admin/admin.php:347
199
+ msgid "Start daily counts from midnight:"
200
+ msgstr ""
201
+
202
+ #: admin/admin.php:350
203
+ msgid ""
204
+ "Daily counter will display number of visits from midnight. This option is "
205
+ "checked by default and mimics the way most normal counters work. Turning "
206
+ "this off will allow you to use the hourly setting in the next option."
207
+ msgstr ""
208
+
209
+ #: admin/admin.php:354
210
+ msgid "Daily popular contains top posts over:"
211
+ msgstr ""
212
+
213
+ #: admin/admin.php:356
214
+ msgid "day(s)"
215
+ msgstr ""
216
+
217
+ #: admin/admin.php:357
218
+ msgid "hour(s)"
219
+ msgstr ""
220
+
221
+ #: admin/admin.php:358
222
+ msgid ""
223
+ "Think of Daily Popular has a custom date range applied as a global setting. "
224
+ "Instead of displaying popular posts from the past day, this setting lets you "
225
+ "display posts for as many days or as few hours as you want. This can be "
226
+ "overridden in the widget."
227
+ msgstr ""
228
+
229
+ #: admin/admin.php:362
230
  msgid "Link to Top 10 plugin page"
231
  msgstr ""
232
 
233
+ #: admin/admin.php:365
234
  #, fuzzy
235
  msgid ""
236
  "A link to the plugin is added as an extra list item to the list of popular "
240
  "le répertoire des enregistrements populaires. Cela n'est pas obligatoire, "
241
  "mais nous vous y remercions!"
242
 
243
+ #: admin/admin.php:370 admin/admin.php:475 admin/admin.php:670
244
+ #: admin/admin.php:833 admin/admin.php:899 admin/admin.php:976
245
  #, fuzzy
246
  msgid "Save Options"
247
  msgstr "Options:"
248
 
249
+ #: admin/admin.php:405
250
  #, fuzzy
251
  msgid "Display number of views on:"
252
  msgstr "Afficher le nombre des visionnages du message?"
253
 
254
+ #: admin/admin.php:407
255
  msgid "Posts"
256
  msgstr ""
257
 
258
+ #: admin/admin.php:408
259
  #, fuzzy
260
  msgid "Pages"
261
  msgstr "Page"
262
 
263
+ #: admin/admin.php:409
264
  msgid "Home page"
265
  msgstr ""
266
 
267
+ #: admin/admin.php:410
268
  msgid "Feeds"
269
  msgstr ""
270
 
271
+ #: admin/admin.php:411
272
  msgid "Category archives"
273
  msgstr ""
274
 
275
+ #: admin/admin.php:412
276
  msgid "Tag archives"
277
  msgstr ""
278
 
279
+ #: admin/admin.php:413
280
  msgid "Other archives"
281
  msgstr ""
282
 
283
+ #: admin/admin.php:414
284
  msgid ""
285
  "If you choose to disable this, please add <code>&lt;?php if "
286
  "( function_exists ( 'echo_tptn_post_count' ) ) echo_tptn_post_count(); ?&gt;"
287
  "</code> to your template file where you want it displayed"
288
  msgstr ""
289
 
290
+ #: admin/admin.php:418
291
  #, fuzzy
292
  msgid "Format to display the post views:"
293
  msgstr "Format d’affichage de la quantité en:"
294
 
295
+ #: admin/admin.php:421
296
  msgid ""
297
  "Use <code>%totalcount%</code> to display the total count, <code>%dailycount"
298
  "%</code> to display the daily count and <code>%overallcount%</code> to "
300
  "options displays <code>[Visited 123 times, 23 visits today]</code>"
301
  msgstr ""
302
 
303
+ #: admin/admin.php:425
304
  msgid "What do display when there are no visits?"
305
  msgstr ""
306
 
307
+ #: admin/admin.php:428
308
  msgid ""
309
  "This text applies only when there are 0 hits for the post and it isn't a "
310
  "single page. e.g. if you display post views on the homepage or archives then "
312
  "option."
313
  msgstr ""
314
 
315
+ #: admin/admin.php:432
316
  msgid "Always display latest post count"
317
  msgstr ""
318
 
319
+ #: admin/admin.php:435
320
  msgid ""
321
  "This option uses JavaScript and will increase your page load time. Turn this "
322
  "off if you are not using caching plugins or are OK with displaying older "
323
  "cached counts."
324
  msgstr ""
325
 
326
+ #: admin/admin.php:439
327
  msgid "Track visits of authors on their own posts?"
328
  msgstr "Suivre les visites des auteurs de leurs propres messages?"
329
 
330
+ #: admin/admin.php:442
331
  msgid ""
332
  "Disabling this option will stop authors visits tracked on their own posts"
333
  msgstr ""
334
 
335
+ #: admin/admin.php:446
336
  #, fuzzy
337
  msgid "Track visits of admins?"
338
  msgstr "Suivre les visites des auteurs de leurs propres messages?"
339
 
340
+ #: admin/admin.php:449
341
  msgid "Disabling this option will stop admin visits being tracked."
342
  msgstr ""
343
 
344
+ #: admin/admin.php:453
345
  #, fuzzy
346
  msgid "Track visits of Editors?"
347
  msgstr "Suivre les visites des auteurs de leurs propres messages?"
348
 
349
+ #: admin/admin.php:456
350
  msgid "Disabling this option will stop editor visits being tracked."
351
  msgstr ""
352
 
353
+ #: admin/admin.php:460
354
  msgid "Display page views on Posts and Pages in Admin"
355
  msgstr ""
356
 
357
+ #: admin/admin.php:463
358
  msgid ""
359
  "Adds three columns called Total Views, Today's Views and Views to All Posts "
360
  "and All Pages"
361
  msgstr ""
362
 
363
+ #: admin/admin.php:467
364
  #, fuzzy
365
  msgid "Show number of views to non-admins"
366
  msgstr "Afficher le nombre des visionnages sur les pages?"
367
 
368
+ #: admin/admin.php:470
369
  msgid ""
370
  "If you disable this then non-admins won't see the above columns or view the "
371
  "independent pages with the top posts"
372
  msgstr ""
373
 
374
+ #: admin/admin.php:510
375
  msgid "Number of popular posts to display: "
376
  msgstr "Le nombre de populaires sur le forum"
377
 
378
+ #: admin/admin.php:513
379
  msgid ""
380
  "Maximum number of posts that will be displayed in the list. This option is "
381
  "used if you don't specify the number of posts in the widget or shortcodes"
382
  msgstr ""
383
 
384
+ #: admin/admin.php:517
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
385
  msgid "Post types to include in results (including custom post types)"
386
  msgstr ""
387
 
388
+ #: admin/admin.php:529
389
  msgid "List of post or page IDs to exclude from the results: "
390
  msgstr ""
391
 
392
+ #: admin/admin.php:531 admin/admin.php:638
393
  msgid "Enter comma separated list of IDs. e.g. 188,320,500"
394
  msgstr ""
395
 
396
+ #: admin/admin.php:535
397
  msgid "Exclude Categories: "
398
  msgstr "Exclure les catégories:"
399
 
400
+ #: admin/admin.php:550
401
  msgid ""
402
  "Comma separated list of category slugs. The field above has an autocomplete "
403
  "so simply start typing in the starting letters and it will prompt you with "
404
  "options"
405
  msgstr ""
406
 
407
+ #: admin/admin.php:555
408
  msgid "Title of popular posts: "
409
  msgstr "Les en-têtes des messages populaires"
410
 
411
+ #: admin/admin.php:561
412
  msgid "Title of daily popular posts: "
413
  msgstr "Les en-têtes des messages populaires journaliers"
414
 
415
+ #: admin/admin.php:567
416
  msgid "When there are no posts, what should be shown?"
417
  msgstr ""
418
 
419
+ #: admin/admin.php:571
420
  msgid "Blank Output"
421
  msgstr ""
422
 
423
+ #: admin/admin.php:575
424
  msgid "Display:"
425
  msgstr ""
426
 
427
+ #: admin/admin.php:580
428
  msgid "Show post excerpt in list?"
429
  msgstr "Afficher le fragment du message dans la liste?"
430
 
431
+ #: admin/admin.php:586
432
  msgid "Length of excerpt (in words): "
433
  msgstr "Longueur du fragment (mots):"
434
 
435
+ #: admin/admin.php:592
436
  #, fuzzy
437
  msgid "Show post author in list?"
438
  msgstr "Afficher le fragment du message dans la liste?"
439
 
440
+ #: admin/admin.php:598
441
  #, fuzzy
442
  msgid "Show post date in list?"
443
  msgstr "Afficher le fragment du message dans la liste?"
444
 
445
+ #: admin/admin.php:604
446
  msgid "Limit post title length (in characters)"
447
  msgstr ""
448
 
449
+ #: admin/admin.php:610
450
  #, fuzzy
451
  msgid "Show view count in list?"
452
  msgstr "Afficher le fragment du message dans la liste?"
453
 
454
+ #: admin/admin.php:616
455
  msgid "Always display latest post count in the daily lists?"
456
  msgstr ""
457
 
458
+ #: admin/admin.php:619
459
  msgid ""
460
  "This option uses JavaScript and will increase your page load time. When you "
461
  "enable this option, the daily widget will not use the options set there, but "
462
  "options will need to be set on this screen."
463
  msgstr ""
464
 
465
+ #: admin/admin.php:623
466
  msgid "Open links in new window"
467
  msgstr ""
468
 
469
+ #: admin/admin.php:629
470
  msgid "Add nofollow attribute to links in the list"
471
  msgstr ""
472
 
473
+ #: admin/admin.php:635
474
  msgid "Exclude display of related posts on these posts / pages"
475
  msgstr ""
476
 
477
+ #: admin/admin.php:642
478
  #, fuzzy
479
  msgid "Customise the list HTML"
480
  msgstr "Paramétrer la sortie:"
481
 
482
+ #: admin/admin.php:645
483
  msgid "HTML to display before the list of posts: "
484
  msgstr "HTML d'affichage avant la liste des messages:"
485
 
486
+ #: admin/admin.php:651
487
  msgid "HTML to display before each list item: "
488
  msgstr "HTML d'affichage avant chaque élément de la liste:"
489
 
490
+ #: admin/admin.php:657
491
  msgid "HTML to display after each list item: "
492
  msgstr "HTML d'affichage après chaque élément de la liste:"
493
 
494
+ #: admin/admin.php:663
495
  msgid "HTML to display after the list of posts: "
496
  msgstr "HTML d'affichage après la liste des messages:"
497
 
498
+ #: admin/admin.php:704
499
  msgid "Location of post thumbnail:"
500
  msgstr ""
501
 
502
+ #: admin/admin.php:708
503
  msgid "Display thumbnails inline with posts, before title"
504
  msgstr "Afficher le thumbnail encastré et les messages avant l'en-tête"
505
 
506
+ #: admin/admin.php:713
507
  msgid "Display thumbnails inline with posts, after title"
508
  msgstr "Afficher le thumbnail encastré et les messages après l'en-tête"
509
 
510
+ #: admin/admin.php:718
511
  msgid "Display only thumbnails, no text"
512
  msgstr "Afficher uniquement le thumbnail, sans le texte"
513
 
514
+ #: admin/admin.php:723
515
  msgid "Do not display thumbnails, only text."
516
  msgstr "Ne pas afficher le thumbnail, uniquement le texte"
517
 
518
+ #: admin/admin.php:727
519
  msgid "Thumbnail size:"
520
  msgstr ""
521
 
522
+ #: admin/admin.php:751
523
  msgid "Custom size"
524
  msgstr ""
525
 
526
+ #: admin/admin.php:754
527
  msgid ""
528
  "You can choose from existing image sizes above or create a custom size. If "
529
  "you have chosen Custom size above, then enter the width, height and crop "
530
  "settings below. For best results, use a cropped image."
531
  msgstr ""
532
 
533
+ #: admin/admin.php:755
534
  msgid ""
535
  "If you change the width and/or height below, existing images will not be "
536
  "automatically resized."
537
  msgstr ""
538
 
539
+ #: admin/admin.php:756
540
  #, php-format
541
  msgid ""
542
  "I recommend using <a href='%s' target='_blank'>Force Regenerate Thumbnails</"
544
  "regenerate all image sizes."
545
  msgstr ""
546
 
547
+ #: admin/admin.php:759
548
  msgid "Width of custom thumbnail:"
549
  msgstr ""
550
 
551
+ #: admin/admin.php:764
552
  msgid "Height of custom thumbnail"
553
  msgstr ""
554
 
555
+ #: admin/admin.php:769
556
  msgid "Crop mode:"
557
  msgstr ""
558
 
559
+ #: admin/admin.php:773
560
  msgid ""
561
  "By default, thumbnails will be proportionately cropped. Check this box to "
562
  "hard crop the thumbnails."
563
  msgstr ""
564
 
565
+ #: admin/admin.php:774
566
  #, php-format
567
  msgid "<a href='%s' target='_blank'>Difference between soft and hard crop</a>"
568
  msgstr ""
569
 
570
+ #: admin/admin.php:776
571
  msgid ""
572
  "Since you're using the default styles set under the Custom Styles section, "
573
  "the width and height is fixed at 65px and crop mode is enabled."
574
  msgstr ""
575
 
576
+ #: admin/admin.php:781
577
  msgid "Style attributes / Width and Height HTML attributes:"
578
  msgstr ""
579
 
580
+ #: admin/admin.php:785
581
  msgid "Style attributes are used for width and height."
582
  msgstr ""
583
 
584
+ #: admin/admin.php:790
585
  msgid "HTML width and height attributes are used for width and height."
586
  msgstr ""
587
 
588
+ #: admin/admin.php:794
589
  msgid "Use timthumb to generate thumbnails? "
590
  msgstr ""
591
 
592
+ #: admin/admin.php:797
593
  msgid ""
594
  "If checked, <a href=\"http://www.binarymoon.co.uk/projects/timthumb/\" "
595
  "target=\"_blank\">timthumb</a> will be used to generate thumbnails"
596
  msgstr ""
597
 
598
+ #: admin/admin.php:800
599
  msgid "Quality of thumbnails generated by timthumb:"
600
  msgstr ""
601
 
602
+ #: admin/admin.php:803
603
  msgid ""
604
  "Enter values between 0 and 100 only. 100 is highest quality and the highest "
605
  "file size. Suggested maximum value is 95. Default is 75."
606
  msgstr ""
607
 
608
+ #: admin/admin.php:806
609
  #, fuzzy
610
  msgid "Post thumbnail meta field name: "
611
  msgstr "Options thumbnail des messages:"
612
 
613
+ #: admin/admin.php:809
614
  msgid ""
615
  "The value of this field should contain the image source and is set in the "
616
  "<em>Add New Post</em> screen"
617
  msgstr ""
618
 
619
+ #: admin/admin.php:812
620
  #, fuzzy
621
  msgid ""
622
  "If the postmeta is not set, then should the plugin extract the first image "
627
  "première image de la résolution correspondante du fichier est de taille "
628
  "supérieure"
629
 
630
+ #: admin/admin.php:815
631
  #, fuzzy
632
  msgid ""
633
  "This could slow down the loading of your page if the first image in the "
638
  "première image de la résolution correspondante du fichier est de taille "
639
  "supérieure"
640
 
641
+ #: admin/admin.php:818
642
  msgid "Use default thumbnail? "
643
  msgstr ""
644
 
645
+ #: admin/admin.php:821
646
  msgid ""
647
  "If checked, when no thumbnail is found, show a default one from the URL "
648
  "below. If not checked and no thumbnail is found, no image will be shown."
651
  "Thumbnail par défaut. S'il n'a pas été déterminé, que le thumbnail n'a pas "
652
  "été retrouvé, ne pas afficher l'image."
653
 
654
+ #: admin/admin.php:824
655
  msgid "Default thumbnail: "
656
  msgstr ""
657
 
658
+ #: admin/admin.php:828
659
  msgid ""
660
  "The plugin will first check if the post contains a thumbnail. If it doesn't "
661
  "then it will check the meta field. If this is not available, then it will "
662
  "show the default image as specified above"
663
  msgstr ""
664
 
665
+ #: admin/admin.php:852
666
  msgid "Custom CSS"
667
  msgstr ""
668
 
669
+ #: admin/admin.php:867
670
  msgid "Use default style included in the plugin?"
671
  msgstr ""
672
 
673
+ #: admin/admin.php:870
674
  msgid ""
675
  "Top 10 includes a default style that makes your popular posts list to look "
676
  "beautiful. Check the box above if you want to use this."
677
  msgstr ""
678
 
679
+ #: admin/admin.php:871
680
  msgid ""
681
  "Enabling this option will turn on the thumbnails and set their width and "
682
  "height to 65px. It will also turn off the display of the author, excerpt and "
683
  "date if already enabled. Disabling this option will not revert any settings."
684
  msgstr ""
685
 
686
+ #: admin/admin.php:872
687
  #, php-format
688
  msgid ""
689
  "You can view the default style at <a href=\"%1$s\" target=\"_blank\">%1$s</a>"
690
  msgstr ""
691
 
692
+ #: admin/admin.php:875
693
  msgid "Custom CSS to add to header:"
694
  msgstr ""
695
 
696
+ #: admin/admin.php:880
697
  msgid ""
698
  "Do not include <code>style</code> tags. Check out the <a href=\"http://"
699
  "wordpress.org/extend/plugins/top-10/faq/\" target=\"_blank\">FAQ</a> for "
700
  "available CSS classes to style."
701
  msgstr ""
702
 
703
+ #: admin/admin.php:900
704
  #, fuzzy
705
  msgid "Default Options"
706
  msgstr "Paramètres de sortie"
707
 
708
+ #: admin/admin.php:900
709
  msgid "Do you want to set options to Default?"
710
  msgstr "Définir les paramètres par défaut?"
711
 
712
+ #: admin/admin.php:924
713
  msgid ""
714
  "Over time the Daily Top 10 database grows in size, which reduces the "
715
  "performance of the plugin. Cleaning the database at regular intervals could "
717
  "will automatically delete entries older than 90 days."
718
  msgstr ""
719
 
720
+ #: admin/admin.php:925
721
  msgid ""
722
  "Note: When scheduled maintenance is enabled, WordPress will run the cron job "
723
  "everytime the job is rescheduled (i.e. you change the settings below)."
724
  msgstr ""
725
 
726
+ #: admin/admin.php:928
727
  msgid "Enable scheduled maintenance of daily tables:"
728
  msgstr ""
729
 
730
+ #: admin/admin.php:932
731
  msgid "Time to run maintenance"
732
  msgstr ""
733
 
734
+ #: admin/admin.php:933
735
  msgid "hrs"
736
  msgstr ""
737
 
738
+ #: admin/admin.php:933
739
  msgid "min"
740
  msgstr ""
741
 
742
+ #: admin/admin.php:935
743
  msgid "How often should the maintenance be run:"
744
  msgstr ""
745
 
746
+ #: admin/admin.php:939
747
  msgid "Daily"
748
  msgstr ""
749
 
750
+ #: admin/admin.php:943
751
  msgid "Weekly"
752
  msgstr ""
753
 
754
+ #: admin/admin.php:947
755
  msgid "Fortnightly"
756
  msgstr ""
757
 
758
+ #: admin/admin.php:951
759
  msgid "Monthly"
760
  msgstr ""
761
 
762
+ #: admin/admin.php:960
763
  msgid "The cron job has been scheduled. Maintenance will run "
764
  msgstr ""
765
 
766
+ #: admin/admin.php:965
767
  msgid "The cron job is missing. Please resave this page to add the job"
768
  msgstr ""
769
 
770
+ #: admin/admin.php:970
771
  msgid "Maintenance is turned off"
772
  msgstr ""
773
 
774
+ #: admin/admin.php:984
775
  msgid "Reset count"
776
  msgstr "Réinitialiser le compteur"
777
 
778
+ #: admin/admin.php:987
779
  msgid ""
780
  "This cannot be reversed. Make sure that your database has been backed up "
781
  "before proceeding"
783
  "Cette action ne peut être annulée. Assurez-vous que la base de données a été "
784
  "sauvegardée avant de poursuivre."
785
 
786
+ #: admin/admin.php:990
787
  #, fuzzy
788
  msgid "Reset Popular Posts"
789
  msgstr "Postes populaires"
790
 
791
+ #: admin/admin.php:990
792
  msgid "Are you sure you want to reset the popular posts?"
793
  msgstr "Êtes-vous sûr de vouloir annuler les postes populaires?"
794
 
795
+ #: admin/admin.php:991
796
  #, fuzzy
797
  msgid "Reset Daily Popular Posts"
798
  msgstr "Postes populaires journaliers"
799
 
800
+ #: admin/admin.php:991
801
  msgid "Are you sure you want to reset the daily popular posts?"
802
  msgstr "Êtes-vous sûr de vouloir annuler les postes populaires journaliers?"
803
 
804
+ #: admin/admin.php:992
805
  msgid "Clear duplicates"
806
  msgstr ""
807
 
808
+ #: admin/admin.php:992
809
  msgid "This will delete the duplicate entries in the tables. Proceed?"
810
  msgstr ""
811
  "Cela supprimera les doubles des enregistrements dans les tableaux. Continuer?"
812
 
813
+ #: admin/admin.php:1005
814
  msgid "WordPress Multisite: Migrate Top 10 v1.x counts to 2.x"
815
  msgstr ""
816
 
817
+ #: admin/admin.php:1008
818
  msgid ""
819
  "If you've been using Top 10 v1.x on multisite, you would have needed to "
820
  "activate the plugin independently for each site. This would have resulted in "
821
+ "two tables being created for each site in the network."
 
 
 
822
  msgstr ""
823
 
824
+ #: admin/admin.php:1009
825
+ msgid ""
826
+ "Top 10 v2.x onwards uses only a single table to record the count, keeping "
827
+ "your database clean. You can use this tool to import the recorded counts "
828
+ "from v1.x tables to the new v2.x table format."
829
+ msgstr ""
830
+
831
+ #: admin/admin.php:1012
832
  msgid ""
833
  "If you do not see any tables below, then it means that either all data has "
834
  "already been imported or no relevant information has been found."
835
  msgstr ""
836
 
837
+ #: admin/admin.php:1015
838
+ msgid ""
839
+ "After running the importer, please verify that all the counts have been "
840
+ "successfully imported. Only then should you delete any old tables!"
841
+ msgstr ""
842
+
843
+ #: admin/admin.php:1049
844
  msgid "Blog ID"
845
  msgstr ""
846
 
847
+ #: admin/admin.php:1052
848
  msgid "Status"
849
  msgstr ""
850
 
851
+ #: admin/admin.php:1055
852
  msgid "Select to import"
853
  msgstr ""
854
 
855
+ #: admin/admin.php:1065
856
  msgid "Blog #"
857
  msgstr ""
858
 
859
+ #: admin/admin.php:1075
860
  msgid "Not imported"
861
  msgstr ""
862
 
863
+ #: admin/admin.php:1079
864
  msgid "Imported"
865
  msgstr ""
866
 
867
+ #: admin/admin.php:1100
868
  msgid "Begin import"
869
  msgstr ""
870
 
871
+ #: admin/admin.php:1101
872
  msgid "Delete selected tables"
873
  msgstr ""
874
 
875
+ #: admin/admin.php:1102
876
  msgid "Delete all imported tables"
877
  msgstr ""
878
 
879
+ #: admin/admin.php:1159 admin/admin.php:1255
880
  msgid "Daily Popular Posts"
881
  msgstr "Postes populaires journaliers"
882
 
883
+ #: admin/admin.php:1189
884
  msgid "Support the development"
885
  msgstr "Soutenir le projet"
886
 
887
+ #: admin/admin.php:1196
888
  msgid "Donation for Top 10"
889
  msgstr ""
890
 
891
+ #: admin/admin.php:1198
892
  msgid "Enter amount in USD: "
893
  msgstr "Saisir le montant en dollars US"
894
 
895
+ #: admin/admin.php:1202
896
  #, fuzzy
897
  msgid "Send your donation to the author of Top 10"
898
  msgstr "Envoyer sa dotation à l'auteur"
899
 
900
+ #: admin/admin.php:1209
901
  msgid "Follow me"
902
  msgstr ""
903
 
904
+ #: admin/admin.php:1219
905
  #, fuzzy
906
  msgid "Quick links"
907
  msgstr "Liens rapides"
908
 
909
+ #: admin/admin.php:1223
910
  #, fuzzy
911
  msgid "Top 10 plugin page"
912
  msgstr "Page de plugin"
913
 
914
+ #: admin/admin.php:1224
915
  msgid "Top 10 Github page"
916
  msgstr ""
917
 
918
+ #: admin/admin.php:1225
919
  msgid "Other plugins"
920
  msgstr "Autres plugins"
921
 
922
+ #: admin/admin.php:1226
923
  msgid "Ajay's blog"
924
  msgstr "Blog Ajay"
925
 
926
+ #: admin/admin.php:1227
927
  msgid "FAQ"
928
  msgstr ""
929
 
930
+ #: admin/admin.php:1228 admin/admin.php:1386
931
  msgid "Support"
932
  msgstr "Service d'assistance"
933
 
934
+ #: admin/admin.php:1229
935
  msgid "Reviews"
936
  msgstr ""
937
 
938
+ #: admin/admin.php:1252
939
  #, fuzzy
940
  msgid "Overall Popular Posts"
941
  msgstr "Voir tous les postes populaires"
942
 
943
+ #: admin/admin.php:1363
944
  msgid "Settings"
945
  msgstr "Paramètres"
946
 
947
+ #: admin/admin.php:1387
948
  msgid "Donate"
949
  msgstr "Conribuer"
950
 
1036
  msgid "Thumbnail width"
1037
  msgstr "Options thumbnail des messages:"
1038
 
1039
+ #: top-10.php:879
1040
  msgid " by "
1041
  msgstr ""
1042
 
1043
+ #: top-10.php:930
1044
  #, php-format
1045
  msgid "Popular posts by <a href=\"%s\" rel=\"nofollow\" %s>Top 10 plugin</a>"
1046
  msgstr ""
1047
 
1048
+ #: top-10.php:1029
1049
  msgid "<h3>Popular Posts</h3>"
1050
  msgstr "<h3>Postes populaires</h3>"
1051
 
1052
+ #: top-10.php:1030
1053
  msgid "<h3>Daily Popular</h3>"
1054
  msgstr "<h3>Populaires Journaliers</h3>"
1055
 
1056
+ #: top-10.php:1031
1057
  #, fuzzy
1058
  msgid "No top posts yet"
1059
  msgstr "Annuler le top 10 des enregistrements les plus populaires"
1060
 
1061
+ #: top-10.php:1676
1062
  msgid "Once Weekly"
1063
  msgstr ""
1064
 
1065
+ #: top-10.php:1680
1066
  msgid "Once Fortnightly"
1067
  msgstr ""
1068
 
1069
+ #: top-10.php:1684
1070
  msgid "Once Monthly"
1071
  msgstr ""
1072
 
1073
+ #: top-10.php:1688
1074
  msgid "Once quarterly"
1075
  msgstr ""
1076
 
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: Тоp 10\n"
4
  "Report-Msgid-Bugs-To: \n"
5
- "POT-Creation-Date: 2014-12-28 00:59-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"
@@ -61,7 +61,7 @@ msgstr "roimhe Seo"
61
  msgid "Next"
62
  msgstr "Ar Aghaidh"
63
 
64
- #: admin/admin-dashboard.php:200 admin/admin.php:1145
65
  msgid "Popular Posts"
66
  msgstr "Poist Coitianta"
67
 
@@ -69,7 +69,7 @@ msgstr "Poist Coitianta"
69
  msgid "Daily Popular"
70
  msgstr "laethúil Coitianta"
71
 
72
- #: admin/admin-metabox.php:38 admin/admin.php:1234
73
  msgid "Top 10"
74
  msgstr "Top 10"
75
 
@@ -98,107 +98,138 @@ msgstr ""
98
  msgid "The URL above is saved in the meta field: "
99
  msgstr ""
100
 
101
- #: admin/admin.php:160
102
  msgid "Options saved successfully."
103
  msgstr "Roghanna shábháil go rathúil."
104
 
105
- #: admin/admin.php:170
106
  msgid "Options set to Default."
107
  msgstr "Roghanna leagtha chun Réamhshocrú."
108
 
109
- #: admin/admin.php:176
110
  #, fuzzy
111
  msgid "Top 10 popular posts reset"
112
  msgstr "Teideal an post tóir:"
113
 
114
- #: admin/admin.php:182
115
  #, fuzzy
116
  msgid "Top 10 daily popular posts reset"
117
  msgstr "Teideal ar tóir an bpost:"
118
 
119
- #: admin/admin.php:189
120
  msgid "Duplicate rows cleaned from tables"
121
  msgstr ""
122
 
123
- #: admin/admin.php:201
124
  msgid "Scheduled maintenance enabled / modified"
125
  msgstr ""
126
 
127
- #: admin/admin.php:205
128
  msgid "Scheduled maintenance disabled"
129
  msgstr ""
130
 
131
- #: admin/admin.php:244
132
  msgid "Counts from selected sites have been imported."
133
  msgstr ""
134
 
135
- #: admin/admin.php:269
136
  msgid ""
137
  "Selected tables have been deleted. Note that only imported tables have been "
138
  "deleted."
139
  msgstr ""
140
 
141
- #: admin/admin.php:277 admin/admin.php:1234 admin/admin.php:1237
142
  #, fuzzy
143
  msgid "Top 10 Settings"
144
  msgstr "Top 10"
145
 
146
- #: admin/admin.php:289 admin/admin.php:311
147
  msgid "General options"
148
  msgstr ""
149
 
150
- #: admin/admin.php:290 admin/admin.php:373
151
  msgid "Counter and tracker options"
152
  msgstr ""
153
 
154
- #: admin/admin.php:291 admin/admin.php:478
155
  msgid "Popular post list options"
156
  msgstr ""
157
 
158
- #: admin/admin.php:292 admin/admin.php:681
159
  #: includes/class-top-10-widget.php:103
160
  msgid "Thumbnail options"
161
  msgstr ""
162
 
163
- #: admin/admin.php:293
164
  msgid "Custom styles"
165
  msgstr ""
166
 
167
- #: admin/admin.php:294 admin/admin.php:912
168
  msgid "Maintenance"
169
  msgstr ""
170
 
171
- #: admin/admin.php:310 admin/admin.php:372 admin/admin.php:477
172
- #: admin/admin.php:680 admin/admin.php:843 admin/admin.php:911
173
- #: admin/admin.php:975 admin/admin.php:996 admin/admin.php:1176
174
- #: admin/admin.php:1196 admin/admin.php:1206
175
  msgid "Click to toggle"
176
  msgstr ""
177
 
178
- #: admin/admin.php:327
179
  msgid "Enable Overall stats"
180
  msgstr ""
181
 
182
- #: admin/admin.php:333
183
  msgid "Enable Daily stats"
184
  msgstr ""
185
 
186
- #: admin/admin.php:339
187
  msgid "Cache fix:"
188
  msgstr ""
189
 
190
- #: admin/admin.php:342
191
  msgid ""
192
  "This will try to prevent W3 Total Cache and other caching plugins from "
193
  "caching the tracker script of the plugin. Try toggling this option in case "
194
  "you find that your posts are not tracked."
195
  msgstr ""
196
 
197
- #: admin/admin.php:346
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
198
  msgid "Link to Top 10 plugin page"
199
  msgstr ""
200
 
201
- #: admin/admin.php:349
202
  #, fuzzy
203
  msgid ""
204
  "A link to the plugin is added as an extra list item to the list of popular "
@@ -207,59 +238,59 @@ msgstr ""
207
  "Tá nasc chuig an breiseán seo a leanas mar mhír liosta breise le liosta "
208
  "de phoist tóir. Gan éigeantach, ach a bhuíochas má dhéanann tú é!"
209
 
210
- #: admin/admin.php:354 admin/admin.php:459 admin/admin.php:662
211
- #: admin/admin.php:825 admin/admin.php:891 admin/admin.php:968
212
  #, fuzzy
213
  msgid "Save Options"
214
  msgstr "roghanna"
215
 
216
- #: admin/admin.php:389
217
  #, fuzzy
218
  msgid "Display number of views on:"
219
  msgstr "Taispeáin líon na dtuairimí ar phoist?"
220
 
221
- #: admin/admin.php:391
222
  msgid "Posts"
223
  msgstr ""
224
 
225
- #: admin/admin.php:392
226
  #, fuzzy
227
  msgid "Pages"
228
  msgstr "Leathanach"
229
 
230
- #: admin/admin.php:393
231
  msgid "Home page"
232
  msgstr ""
233
 
234
- #: admin/admin.php:394
235
  msgid "Feeds"
236
  msgstr ""
237
 
238
- #: admin/admin.php:395
239
  msgid "Category archives"
240
  msgstr ""
241
 
242
- #: admin/admin.php:396
243
  msgid "Tag archives"
244
  msgstr ""
245
 
246
- #: admin/admin.php:397
247
  msgid "Other archives"
248
  msgstr ""
249
 
250
- #: admin/admin.php:398
251
  msgid ""
252
  "If you choose to disable this, please add <code>&lt;?php if "
253
  "( function_exists ( 'echo_tptn_post_count' ) ) echo_tptn_post_count(); ?&gt;"
254
  "</code> to your template file where you want it displayed"
255
  msgstr ""
256
 
257
- #: admin/admin.php:402
258
  #, fuzzy
259
  msgid "Format to display the post views:"
260
  msgstr "Formáid a thaispeáint ar an comhaireamh i:"
261
 
262
- #: admin/admin.php:405
263
  msgid ""
264
  "Use <code>%totalcount%</code> to display the total count, <code>%dailycount"
265
  "%</code> to display the daily count and <code>%overallcount%</code> to "
@@ -267,11 +298,11 @@ msgid ""
267
  "options displays <code>[Visited 123 times, 23 visits today]</code>"
268
  msgstr ""
269
 
270
- #: admin/admin.php:409
271
  msgid "What do display when there are no visits?"
272
  msgstr ""
273
 
274
- #: admin/admin.php:412
275
  msgid ""
276
  "This text applies only when there are 0 hits for the post and it isn't a "
277
  "single page. e.g. if you display post views on the homepage or archives then "
@@ -279,255 +310,235 @@ msgid ""
279
  "option."
280
  msgstr ""
281
 
282
- #: admin/admin.php:416
283
  msgid "Always display latest post count"
284
  msgstr ""
285
 
286
- #: admin/admin.php:419
287
  msgid ""
288
  "This option uses JavaScript and will increase your page load time. Turn this "
289
  "off if you are not using caching plugins or are OK with displaying older "
290
  "cached counts."
291
  msgstr ""
292
 
293
- #: admin/admin.php:423
294
  msgid "Track visits of authors on their own posts?"
295
  msgstr "Track cuairteanna ar údair ar a gcuid post féin?"
296
 
297
- #: admin/admin.php:426
298
  msgid ""
299
  "Disabling this option will stop authors visits tracked on their own posts"
300
  msgstr ""
301
 
302
- #: admin/admin.php:430
303
  #, fuzzy
304
  msgid "Track visits of admins?"
305
  msgstr "Track cuairteanna ar údair ar a gcuid post féin?"
306
 
307
- #: admin/admin.php:433
308
  msgid "Disabling this option will stop admin visits being tracked."
309
  msgstr ""
310
 
311
- #: admin/admin.php:437
312
  #, fuzzy
313
  msgid "Track visits of Editors?"
314
  msgstr "Track cuairteanna ar údair ar a gcuid post féin?"
315
 
316
- #: admin/admin.php:440
317
  msgid "Disabling this option will stop editor visits being tracked."
318
  msgstr ""
319
 
320
- #: admin/admin.php:444
321
  msgid "Display page views on Posts and Pages in Admin"
322
  msgstr ""
323
 
324
- #: admin/admin.php:447
325
  msgid ""
326
  "Adds three columns called Total Views, Today's Views and Views to All Posts "
327
  "and All Pages"
328
  msgstr ""
329
 
330
- #: admin/admin.php:451
331
  #, fuzzy
332
  msgid "Show number of views to non-admins"
333
  msgstr "Taispeáin líon na dtuairimí ar leathanaigh?"
334
 
335
- #: admin/admin.php:454
336
  msgid ""
337
  "If you disable this then non-admins won't see the above columns or view the "
338
  "independent pages with the top posts"
339
  msgstr ""
340
 
341
- #: admin/admin.php:494
342
  msgid "Number of popular posts to display: "
343
  msgstr "An líon post tóir a thaispeáint:"
344
 
345
- #: admin/admin.php:497
346
  msgid ""
347
  "Maximum number of posts that will be displayed in the list. This option is "
348
  "used if you don't specify the number of posts in the widget or shortcodes"
349
  msgstr ""
350
 
351
- #: admin/admin.php:501
352
- msgid "Daily popular contains top posts over:"
353
- msgstr ""
354
-
355
- #: admin/admin.php:503
356
- msgid "day(s)"
357
- msgstr ""
358
-
359
- #: admin/admin.php:504
360
- msgid "hour(s)"
361
- msgstr ""
362
-
363
- #: admin/admin.php:505
364
- msgid ""
365
- "Think of Daily Popular has a custom date range applied as a global setting. "
366
- "Instead of displaying popular posts from the past day, this setting lets you "
367
- "display posts for as many days or as few hours as you want. This can be "
368
- "overridden in the widget."
369
- msgstr ""
370
-
371
- #: admin/admin.php:509
372
  msgid "Post types to include in results (including custom post types)"
373
  msgstr ""
374
 
375
- #: admin/admin.php:521
376
  msgid "List of post or page IDs to exclude from the results: "
377
  msgstr ""
378
 
379
- #: admin/admin.php:523 admin/admin.php:630
380
  msgid "Enter comma separated list of IDs. e.g. 188,320,500"
381
  msgstr ""
382
 
383
- #: admin/admin.php:527
384
  msgid "Exclude Categories: "
385
  msgstr ""
386
 
387
- #: admin/admin.php:542
388
  msgid ""
389
  "Comma separated list of category slugs. The field above has an autocomplete "
390
  "so simply start typing in the starting letters and it will prompt you with "
391
  "options"
392
  msgstr ""
393
 
394
- #: admin/admin.php:547
395
  msgid "Title of popular posts: "
396
  msgstr "Teideal an post tóir:"
397
 
398
- #: admin/admin.php:553
399
  msgid "Title of daily popular posts: "
400
  msgstr "Teideal ar tóir an bpost:"
401
 
402
- #: admin/admin.php:559
403
  msgid "When there are no posts, what should be shown?"
404
  msgstr ""
405
 
406
- #: admin/admin.php:563
407
  msgid "Blank Output"
408
  msgstr ""
409
 
410
- #: admin/admin.php:567
411
  msgid "Display:"
412
  msgstr ""
413
 
414
- #: admin/admin.php:572
415
  msgid "Show post excerpt in list?"
416
  msgstr ""
417
 
418
- #: admin/admin.php:578
419
  msgid "Length of excerpt (in words): "
420
  msgstr ""
421
 
422
- #: admin/admin.php:584
423
  msgid "Show post author in list?"
424
  msgstr ""
425
 
426
- #: admin/admin.php:590
427
  msgid "Show post date in list?"
428
  msgstr ""
429
 
430
- #: admin/admin.php:596
431
  msgid "Limit post title length (in characters)"
432
  msgstr ""
433
 
434
- #: admin/admin.php:602
435
  msgid "Show view count in list?"
436
  msgstr ""
437
 
438
- #: admin/admin.php:608
439
  msgid "Always display latest post count in the daily lists?"
440
  msgstr ""
441
 
442
- #: admin/admin.php:611
443
  msgid ""
444
  "This option uses JavaScript and will increase your page load time. When you "
445
  "enable this option, the daily widget will not use the options set there, but "
446
  "options will need to be set on this screen."
447
  msgstr ""
448
 
449
- #: admin/admin.php:615
450
  msgid "Open links in new window"
451
  msgstr ""
452
 
453
- #: admin/admin.php:621
454
  msgid "Add nofollow attribute to links in the list"
455
  msgstr ""
456
 
457
- #: admin/admin.php:627
458
  msgid "Exclude display of related posts on these posts / pages"
459
  msgstr ""
460
 
461
- #: admin/admin.php:634
462
  msgid "Customise the list HTML"
463
  msgstr ""
464
 
465
- #: admin/admin.php:637
466
  #, fuzzy
467
  msgid "HTML to display before the list of posts: "
468
  msgstr "Formáid a thaispeáint ar an comhaireamh i:"
469
 
470
- #: admin/admin.php:643
471
  #, fuzzy
472
  msgid "HTML to display before each list item: "
473
  msgstr "Formáid a thaispeáint ar an comhaireamh i:"
474
 
475
- #: admin/admin.php:649
476
  #, fuzzy
477
  msgid "HTML to display after each list item: "
478
  msgstr "Formáid a thaispeáint ar an comhaireamh i:"
479
 
480
- #: admin/admin.php:655
481
  #, fuzzy
482
  msgid "HTML to display after the list of posts: "
483
  msgstr "Formáid a thaispeáint ar an comhaireamh i:"
484
 
485
- #: admin/admin.php:696
486
  msgid "Location of post thumbnail:"
487
  msgstr ""
488
 
489
- #: admin/admin.php:700
490
  #, fuzzy
491
  msgid "Display thumbnails inline with posts, before title"
492
  msgstr "Taispeáin líon na dtuairimí ar phoist?"
493
 
494
- #: admin/admin.php:705
495
  #, fuzzy
496
  msgid "Display thumbnails inline with posts, after title"
497
  msgstr "Taispeáin líon na dtuairimí ar phoist?"
498
 
499
- #: admin/admin.php:710
500
  #, fuzzy
501
  msgid "Display only thumbnails, no text"
502
  msgstr "Taispeáin líon na dtuairimí ar phoist?"
503
 
504
- #: admin/admin.php:715
505
  #, fuzzy
506
  msgid "Do not display thumbnails, only text."
507
  msgstr "Taispeáin líon na dtuairimí ar phoist?"
508
 
509
- #: admin/admin.php:719
510
  msgid "Thumbnail size:"
511
  msgstr ""
512
 
513
- #: admin/admin.php:743
514
  msgid "Custom size"
515
  msgstr ""
516
 
517
- #: admin/admin.php:746
518
  msgid ""
519
  "You can choose from existing image sizes above or create a custom size. If "
520
  "you have chosen Custom size above, then enter the width, height and crop "
521
  "settings below. For best results, use a cropped image."
522
  msgstr ""
523
 
524
- #: admin/admin.php:747
525
  msgid ""
526
  "If you change the width and/or height below, existing images will not be "
527
  "automatically resized."
528
  msgstr ""
529
 
530
- #: admin/admin.php:748
531
  #, php-format
532
  msgid ""
533
  "I recommend using <a href='%s' target='_blank'>Force Regenerate Thumbnails</"
@@ -535,158 +546,158 @@ msgid ""
535
  "regenerate all image sizes."
536
  msgstr ""
537
 
538
- #: admin/admin.php:751
539
  msgid "Width of custom thumbnail:"
540
  msgstr ""
541
 
542
- #: admin/admin.php:756
543
  msgid "Height of custom thumbnail"
544
  msgstr ""
545
 
546
- #: admin/admin.php:761
547
  msgid "Crop mode:"
548
  msgstr ""
549
 
550
- #: admin/admin.php:765
551
  msgid ""
552
  "By default, thumbnails will be proportionately cropped. Check this box to "
553
  "hard crop the thumbnails."
554
  msgstr ""
555
 
556
- #: admin/admin.php:766
557
  #, php-format
558
  msgid "<a href='%s' target='_blank'>Difference between soft and hard crop</a>"
559
  msgstr ""
560
 
561
- #: admin/admin.php:768
562
  msgid ""
563
  "Since you're using the default styles set under the Custom Styles section, "
564
  "the width and height is fixed at 65px and crop mode is enabled."
565
  msgstr ""
566
 
567
- #: admin/admin.php:773
568
  msgid "Style attributes / Width and Height HTML attributes:"
569
  msgstr ""
570
 
571
- #: admin/admin.php:777
572
  msgid "Style attributes are used for width and height."
573
  msgstr ""
574
 
575
- #: admin/admin.php:782
576
  msgid "HTML width and height attributes are used for width and height."
577
  msgstr ""
578
 
579
- #: admin/admin.php:786
580
  msgid "Use timthumb to generate thumbnails? "
581
  msgstr ""
582
 
583
- #: admin/admin.php:789
584
  msgid ""
585
  "If checked, <a href=\"http://www.binarymoon.co.uk/projects/timthumb/\" "
586
  "target=\"_blank\">timthumb</a> will be used to generate thumbnails"
587
  msgstr ""
588
 
589
- #: admin/admin.php:792
590
  msgid "Quality of thumbnails generated by timthumb:"
591
  msgstr ""
592
 
593
- #: admin/admin.php:795
594
  msgid ""
595
  "Enter values between 0 and 100 only. 100 is highest quality and the highest "
596
  "file size. Suggested maximum value is 95. Default is 75."
597
  msgstr ""
598
 
599
- #: admin/admin.php:798
600
  msgid "Post thumbnail meta field name: "
601
  msgstr ""
602
 
603
- #: admin/admin.php:801
604
  msgid ""
605
  "The value of this field should contain the image source and is set in the "
606
  "<em>Add New Post</em> screen"
607
  msgstr ""
608
 
609
- #: admin/admin.php:804
610
  msgid ""
611
  "If the postmeta is not set, then should the plugin extract the first image "
612
  "from the post?"
613
  msgstr ""
614
 
615
- #: admin/admin.php:807
616
  msgid ""
617
  "This could slow down the loading of your page if the first image in the "
618
  "related posts is large in file-size"
619
  msgstr ""
620
 
621
- #: admin/admin.php:810
622
  msgid "Use default thumbnail? "
623
  msgstr ""
624
 
625
- #: admin/admin.php:813
626
  msgid ""
627
  "If checked, when no thumbnail is found, show a default one from the URL "
628
  "below. If not checked and no thumbnail is found, no image will be shown."
629
  msgstr ""
630
 
631
- #: admin/admin.php:816
632
  msgid "Default thumbnail: "
633
  msgstr ""
634
 
635
- #: admin/admin.php:820
636
  msgid ""
637
  "The plugin will first check if the post contains a thumbnail. If it doesn't "
638
  "then it will check the meta field. If this is not available, then it will "
639
  "show the default image as specified above"
640
  msgstr ""
641
 
642
- #: admin/admin.php:844
643
  msgid "Custom CSS"
644
  msgstr ""
645
 
646
- #: admin/admin.php:859
647
  msgid "Use default style included in the plugin?"
648
  msgstr ""
649
 
650
- #: admin/admin.php:862
651
  msgid ""
652
  "Top 10 includes a default style that makes your popular posts list to look "
653
  "beautiful. Check the box above if you want to use this."
654
  msgstr ""
655
 
656
- #: admin/admin.php:863
657
  msgid ""
658
  "Enabling this option will turn on the thumbnails and set their width and "
659
  "height to 65px. It will also turn off the display of the author, excerpt and "
660
  "date if already enabled. Disabling this option will not revert any settings."
661
  msgstr ""
662
 
663
- #: admin/admin.php:864
664
  #, php-format
665
  msgid ""
666
  "You can view the default style at <a href=\"%1$s\" target=\"_blank\">%1$s</a>"
667
  msgstr ""
668
 
669
- #: admin/admin.php:867
670
  msgid "Custom CSS to add to header:"
671
  msgstr ""
672
 
673
- #: admin/admin.php:872
674
  msgid ""
675
  "Do not include <code>style</code> tags. Check out the <a href=\"http://"
676
  "wordpress.org/extend/plugins/top-10/faq/\" target=\"_blank\">FAQ</a> for "
677
  "available CSS classes to style."
678
  msgstr ""
679
 
680
- #: admin/admin.php:892
681
  #, fuzzy
682
  msgid "Default Options"
683
  msgstr "roghanna"
684
 
685
- #: admin/admin.php:892
686
  msgid "Do you want to set options to Default?"
687
  msgstr "Ar mhaith leat roghanna atá leagtha chun Réamhshocrú?"
688
 
689
- #: admin/admin.php:916
690
  msgid ""
691
  "Over time the Daily Top 10 database grows in size, which reduces the "
692
  "performance of the plugin. Cleaning the database at regular intervals could "
@@ -694,219 +705,229 @@ msgid ""
694
  "will automatically delete entries older than 90 days."
695
  msgstr ""
696
 
697
- #: admin/admin.php:917
698
  msgid ""
699
  "Note: When scheduled maintenance is enabled, WordPress will run the cron job "
700
  "everytime the job is rescheduled (i.e. you change the settings below)."
701
  msgstr ""
702
 
703
- #: admin/admin.php:920
704
  msgid "Enable scheduled maintenance of daily tables:"
705
  msgstr ""
706
 
707
- #: admin/admin.php:924
708
  msgid "Time to run maintenance"
709
  msgstr ""
710
 
711
- #: admin/admin.php:925
712
  msgid "hrs"
713
  msgstr ""
714
 
715
- #: admin/admin.php:925
716
  msgid "min"
717
  msgstr ""
718
 
719
- #: admin/admin.php:927
720
  msgid "How often should the maintenance be run:"
721
  msgstr ""
722
 
723
- #: admin/admin.php:931
724
  msgid "Daily"
725
  msgstr ""
726
 
727
- #: admin/admin.php:935
728
  msgid "Weekly"
729
  msgstr ""
730
 
731
- #: admin/admin.php:939
732
  msgid "Fortnightly"
733
  msgstr ""
734
 
735
- #: admin/admin.php:943
736
  msgid "Monthly"
737
  msgstr ""
738
 
739
- #: admin/admin.php:952
740
  msgid "The cron job has been scheduled. Maintenance will run "
741
  msgstr ""
742
 
743
- #: admin/admin.php:957
744
  msgid "The cron job is missing. Please resave this page to add the job"
745
  msgstr ""
746
 
747
- #: admin/admin.php:962
748
  msgid "Maintenance is turned off"
749
  msgstr ""
750
 
751
- #: admin/admin.php:976
752
  msgid "Reset count"
753
  msgstr ""
754
 
755
- #: admin/admin.php:979
756
  msgid ""
757
  "This cannot be reversed. Make sure that your database has been backed up "
758
  "before proceeding"
759
  msgstr ""
760
 
761
- #: admin/admin.php:982
762
  #, fuzzy
763
  msgid "Reset Popular Posts"
764
  msgstr "Poist Coitianta"
765
 
766
- #: admin/admin.php:982
767
  msgid "Are you sure you want to reset the popular posts?"
768
  msgstr ""
769
 
770
- #: admin/admin.php:983
771
  #, fuzzy
772
  msgid "Reset Daily Popular Posts"
773
  msgstr "Poist Coitianta Laethúil"
774
 
775
- #: admin/admin.php:983
776
  msgid "Are you sure you want to reset the daily popular posts?"
777
  msgstr ""
778
 
779
- #: admin/admin.php:984
780
  msgid "Clear duplicates"
781
  msgstr ""
782
 
783
- #: admin/admin.php:984
784
  msgid "This will delete the duplicate entries in the tables. Proceed?"
785
  msgstr ""
786
 
787
- #: admin/admin.php:997
788
  msgid "WordPress Multisite: Migrate Top 10 v1.x counts to 2.x"
789
  msgstr ""
790
 
791
- #: admin/admin.php:1000
792
  msgid ""
793
  "If you've been using Top 10 v1.x on multisite, you would have needed to "
794
  "activate the plugin independently for each site. This would have resulted in "
795
- "two tables being created for each site in the network. Top 10 v2.x onwards "
796
- "uses only a single table to record the count, keeping your database clean. "
797
- "You can use this tool to import the recorded counts from v1.x tables to the "
798
- "new v2.x table format."
799
  msgstr ""
800
 
801
- #: admin/admin.php:1003
 
 
 
 
 
 
 
802
  msgid ""
803
  "If you do not see any tables below, then it means that either all data has "
804
  "already been imported or no relevant information has been found."
805
  msgstr ""
806
 
807
- #: admin/admin.php:1037
 
 
 
 
 
 
808
  msgid "Blog ID"
809
  msgstr ""
810
 
811
- #: admin/admin.php:1040
812
  msgid "Status"
813
  msgstr ""
814
 
815
- #: admin/admin.php:1043
816
  msgid "Select to import"
817
  msgstr ""
818
 
819
- #: admin/admin.php:1053
820
  msgid "Blog #"
821
  msgstr ""
822
 
823
- #: admin/admin.php:1063
824
  msgid "Not imported"
825
  msgstr ""
826
 
827
- #: admin/admin.php:1067
828
  msgid "Imported"
829
  msgstr ""
830
 
831
- #: admin/admin.php:1088
832
  msgid "Begin import"
833
  msgstr ""
834
 
835
- #: admin/admin.php:1089
836
  msgid "Delete selected tables"
837
  msgstr ""
838
 
839
- #: admin/admin.php:1090
840
  msgid "Delete all imported tables"
841
  msgstr ""
842
 
843
- #: admin/admin.php:1147 admin/admin.php:1243
844
  msgid "Daily Popular Posts"
845
  msgstr "Poist Coitianta Laethúil"
846
 
847
- #: admin/admin.php:1177
848
  #, fuzzy
849
  msgid "Support the development"
850
  msgstr "Tacú le Forbairt"
851
 
852
- #: admin/admin.php:1184
853
  msgid "Donation for Top 10"
854
  msgstr ""
855
 
856
- #: admin/admin.php:1186
857
  msgid "Enter amount in USD: "
858
  msgstr ""
859
 
860
- #: admin/admin.php:1190
861
  msgid "Send your donation to the author of Top 10"
862
  msgstr ""
863
 
864
- #: admin/admin.php:1197
865
  msgid "Follow me"
866
  msgstr ""
867
 
868
- #: admin/admin.php:1207
869
  msgid "Quick links"
870
  msgstr ""
871
 
872
- #: admin/admin.php:1211
873
  msgid "Top 10 plugin page"
874
  msgstr ""
875
 
876
- #: admin/admin.php:1212
877
  msgid "Top 10 Github page"
878
  msgstr ""
879
 
880
- #: admin/admin.php:1213
881
  msgid "Other plugins"
882
  msgstr ""
883
 
884
- #: admin/admin.php:1214
885
  msgid "Ajay's blog"
886
  msgstr ""
887
 
888
- #: admin/admin.php:1215
889
  msgid "FAQ"
890
  msgstr ""
891
 
892
- #: admin/admin.php:1216 admin/admin.php:1374
893
  msgid "Support"
894
  msgstr ""
895
 
896
- #: admin/admin.php:1217
897
  msgid "Reviews"
898
  msgstr ""
899
 
900
- #: admin/admin.php:1240
901
  #, fuzzy
902
  msgid "Overall Popular Posts"
903
  msgstr "Féach ar Poist Coitianta Foriomlán"
904
 
905
- #: admin/admin.php:1351
906
  msgid "Settings"
907
  msgstr ""
908
 
909
- #: admin/admin.php:1375
910
  msgid "Donate"
911
  msgstr ""
912
 
@@ -992,41 +1013,41 @@ msgstr ""
992
  msgid "Thumbnail width"
993
  msgstr ""
994
 
995
- #: top-10.php:866
996
  msgid " by "
997
  msgstr ""
998
 
999
- #: top-10.php:917
1000
  #, php-format
1001
  msgid "Popular posts by <a href=\"%s\" rel=\"nofollow\" %s>Top 10 plugin</a>"
1002
  msgstr ""
1003
 
1004
- #: top-10.php:1016
1005
  msgid "<h3>Popular Posts</h3>"
1006
  msgstr "<h3>Poist Coitianta </ h3>"
1007
 
1008
- #: top-10.php:1017
1009
  msgid "<h3>Daily Popular</h3>"
1010
  msgstr "<h3> laethúil Coitianta </ h3>"
1011
 
1012
- #: top-10.php:1018
1013
  #, fuzzy
1014
  msgid "No top posts yet"
1015
  msgstr "Teideal an post tóir:"
1016
 
1017
- #: top-10.php:1668
1018
  msgid "Once Weekly"
1019
  msgstr ""
1020
 
1021
- #: top-10.php:1672
1022
  msgid "Once Fortnightly"
1023
  msgstr ""
1024
 
1025
- #: top-10.php:1676
1026
  msgid "Once Monthly"
1027
  msgstr ""
1028
 
1029
- #: top-10.php:1680
1030
  msgid "Once quarterly"
1031
  msgstr ""
1032
 
2
  msgstr ""
3
  "Project-Id-Version: Тоp 10\n"
4
  "Report-Msgid-Bugs-To: \n"
5
+ "POT-Creation-Date: 2015-01-01 21:53-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"
61
  msgid "Next"
62
  msgstr "Ar Aghaidh"
63
 
64
+ #: admin/admin-dashboard.php:200 admin/admin.php:1157
65
  msgid "Popular Posts"
66
  msgstr "Poist Coitianta"
67
 
69
  msgid "Daily Popular"
70
  msgstr "laethúil Coitianta"
71
 
72
+ #: admin/admin-metabox.php:38 admin/admin.php:1246
73
  msgid "Top 10"
74
  msgstr "Top 10"
75
 
98
  msgid "The URL above is saved in the meta field: "
99
  msgstr ""
100
 
101
+ #: admin/admin.php:161
102
  msgid "Options saved successfully."
103
  msgstr "Roghanna shábháil go rathúil."
104
 
105
+ #: admin/admin.php:171
106
  msgid "Options set to Default."
107
  msgstr "Roghanna leagtha chun Réamhshocrú."
108
 
109
+ #: admin/admin.php:177
110
  #, fuzzy
111
  msgid "Top 10 popular posts reset"
112
  msgstr "Teideal an post tóir:"
113
 
114
+ #: admin/admin.php:183
115
  #, fuzzy
116
  msgid "Top 10 daily popular posts reset"
117
  msgstr "Teideal ar tóir an bpost:"
118
 
119
+ #: admin/admin.php:190
120
  msgid "Duplicate rows cleaned from tables"
121
  msgstr ""
122
 
123
+ #: admin/admin.php:202
124
  msgid "Scheduled maintenance enabled / modified"
125
  msgstr ""
126
 
127
+ #: admin/admin.php:206
128
  msgid "Scheduled maintenance disabled"
129
  msgstr ""
130
 
131
+ #: admin/admin.php:245
132
  msgid "Counts from selected sites have been imported."
133
  msgstr ""
134
 
135
+ #: admin/admin.php:270
136
  msgid ""
137
  "Selected tables have been deleted. Note that only imported tables have been "
138
  "deleted."
139
  msgstr ""
140
 
141
+ #: admin/admin.php:278 admin/admin.php:1246 admin/admin.php:1249
142
  #, fuzzy
143
  msgid "Top 10 Settings"
144
  msgstr "Top 10"
145
 
146
+ #: admin/admin.php:290 admin/admin.php:312
147
  msgid "General options"
148
  msgstr ""
149
 
150
+ #: admin/admin.php:291 admin/admin.php:389
151
  msgid "Counter and tracker options"
152
  msgstr ""
153
 
154
+ #: admin/admin.php:292 admin/admin.php:494
155
  msgid "Popular post list options"
156
  msgstr ""
157
 
158
+ #: admin/admin.php:293 admin/admin.php:689
159
  #: includes/class-top-10-widget.php:103
160
  msgid "Thumbnail options"
161
  msgstr ""
162
 
163
+ #: admin/admin.php:294
164
  msgid "Custom styles"
165
  msgstr ""
166
 
167
+ #: admin/admin.php:295 admin/admin.php:920
168
  msgid "Maintenance"
169
  msgstr ""
170
 
171
+ #: admin/admin.php:311 admin/admin.php:388 admin/admin.php:493
172
+ #: admin/admin.php:688 admin/admin.php:851 admin/admin.php:919
173
+ #: admin/admin.php:983 admin/admin.php:1004 admin/admin.php:1188
174
+ #: admin/admin.php:1208 admin/admin.php:1218
175
  msgid "Click to toggle"
176
  msgstr ""
177
 
178
+ #: admin/admin.php:328
179
  msgid "Enable Overall stats"
180
  msgstr ""
181
 
182
+ #: admin/admin.php:334
183
  msgid "Enable Daily stats"
184
  msgstr ""
185
 
186
+ #: admin/admin.php:340
187
  msgid "Cache fix:"
188
  msgstr ""
189
 
190
+ #: admin/admin.php:343
191
  msgid ""
192
  "This will try to prevent W3 Total Cache and other caching plugins from "
193
  "caching the tracker script of the plugin. Try toggling this option in case "
194
  "you find that your posts are not tracked."
195
  msgstr ""
196
 
197
+ #: admin/admin.php:347
198
+ msgid "Start daily counts from midnight:"
199
+ msgstr ""
200
+
201
+ #: admin/admin.php:350
202
+ msgid ""
203
+ "Daily counter will display number of visits from midnight. This option is "
204
+ "checked by default and mimics the way most normal counters work. Turning "
205
+ "this off will allow you to use the hourly setting in the next option."
206
+ msgstr ""
207
+
208
+ #: admin/admin.php:354
209
+ msgid "Daily popular contains top posts over:"
210
+ msgstr ""
211
+
212
+ #: admin/admin.php:356
213
+ msgid "day(s)"
214
+ msgstr ""
215
+
216
+ #: admin/admin.php:357
217
+ msgid "hour(s)"
218
+ msgstr ""
219
+
220
+ #: admin/admin.php:358
221
+ msgid ""
222
+ "Think of Daily Popular has a custom date range applied as a global setting. "
223
+ "Instead of displaying popular posts from the past day, this setting lets you "
224
+ "display posts for as many days or as few hours as you want. This can be "
225
+ "overridden in the widget."
226
+ msgstr ""
227
+
228
+ #: admin/admin.php:362
229
  msgid "Link to Top 10 plugin page"
230
  msgstr ""
231
 
232
+ #: admin/admin.php:365
233
  #, fuzzy
234
  msgid ""
235
  "A link to the plugin is added as an extra list item to the list of popular "
238
  "Tá nasc chuig an breiseán seo a leanas mar mhír liosta breise le liosta "
239
  "de phoist tóir. Gan éigeantach, ach a bhuíochas má dhéanann tú é!"
240
 
241
+ #: admin/admin.php:370 admin/admin.php:475 admin/admin.php:670
242
+ #: admin/admin.php:833 admin/admin.php:899 admin/admin.php:976
243
  #, fuzzy
244
  msgid "Save Options"
245
  msgstr "roghanna"
246
 
247
+ #: admin/admin.php:405
248
  #, fuzzy
249
  msgid "Display number of views on:"
250
  msgstr "Taispeáin líon na dtuairimí ar phoist?"
251
 
252
+ #: admin/admin.php:407
253
  msgid "Posts"
254
  msgstr ""
255
 
256
+ #: admin/admin.php:408
257
  #, fuzzy
258
  msgid "Pages"
259
  msgstr "Leathanach"
260
 
261
+ #: admin/admin.php:409
262
  msgid "Home page"
263
  msgstr ""
264
 
265
+ #: admin/admin.php:410
266
  msgid "Feeds"
267
  msgstr ""
268
 
269
+ #: admin/admin.php:411
270
  msgid "Category archives"
271
  msgstr ""
272
 
273
+ #: admin/admin.php:412
274
  msgid "Tag archives"
275
  msgstr ""
276
 
277
+ #: admin/admin.php:413
278
  msgid "Other archives"
279
  msgstr ""
280
 
281
+ #: admin/admin.php:414
282
  msgid ""
283
  "If you choose to disable this, please add <code>&lt;?php if "
284
  "( function_exists ( 'echo_tptn_post_count' ) ) echo_tptn_post_count(); ?&gt;"
285
  "</code> to your template file where you want it displayed"
286
  msgstr ""
287
 
288
+ #: admin/admin.php:418
289
  #, fuzzy
290
  msgid "Format to display the post views:"
291
  msgstr "Formáid a thaispeáint ar an comhaireamh i:"
292
 
293
+ #: admin/admin.php:421
294
  msgid ""
295
  "Use <code>%totalcount%</code> to display the total count, <code>%dailycount"
296
  "%</code> to display the daily count and <code>%overallcount%</code> to "
298
  "options displays <code>[Visited 123 times, 23 visits today]</code>"
299
  msgstr ""
300
 
301
+ #: admin/admin.php:425
302
  msgid "What do display when there are no visits?"
303
  msgstr ""
304
 
305
+ #: admin/admin.php:428
306
  msgid ""
307
  "This text applies only when there are 0 hits for the post and it isn't a "
308
  "single page. e.g. if you display post views on the homepage or archives then "
310
  "option."
311
  msgstr ""
312
 
313
+ #: admin/admin.php:432
314
  msgid "Always display latest post count"
315
  msgstr ""
316
 
317
+ #: admin/admin.php:435
318
  msgid ""
319
  "This option uses JavaScript and will increase your page load time. Turn this "
320
  "off if you are not using caching plugins or are OK with displaying older "
321
  "cached counts."
322
  msgstr ""
323
 
324
+ #: admin/admin.php:439
325
  msgid "Track visits of authors on their own posts?"
326
  msgstr "Track cuairteanna ar údair ar a gcuid post féin?"
327
 
328
+ #: admin/admin.php:442
329
  msgid ""
330
  "Disabling this option will stop authors visits tracked on their own posts"
331
  msgstr ""
332
 
333
+ #: admin/admin.php:446
334
  #, fuzzy
335
  msgid "Track visits of admins?"
336
  msgstr "Track cuairteanna ar údair ar a gcuid post féin?"
337
 
338
+ #: admin/admin.php:449
339
  msgid "Disabling this option will stop admin visits being tracked."
340
  msgstr ""
341
 
342
+ #: admin/admin.php:453
343
  #, fuzzy
344
  msgid "Track visits of Editors?"
345
  msgstr "Track cuairteanna ar údair ar a gcuid post féin?"
346
 
347
+ #: admin/admin.php:456
348
  msgid "Disabling this option will stop editor visits being tracked."
349
  msgstr ""
350
 
351
+ #: admin/admin.php:460
352
  msgid "Display page views on Posts and Pages in Admin"
353
  msgstr ""
354
 
355
+ #: admin/admin.php:463
356
  msgid ""
357
  "Adds three columns called Total Views, Today's Views and Views to All Posts "
358
  "and All Pages"
359
  msgstr ""
360
 
361
+ #: admin/admin.php:467
362
  #, fuzzy
363
  msgid "Show number of views to non-admins"
364
  msgstr "Taispeáin líon na dtuairimí ar leathanaigh?"
365
 
366
+ #: admin/admin.php:470
367
  msgid ""
368
  "If you disable this then non-admins won't see the above columns or view the "
369
  "independent pages with the top posts"
370
  msgstr ""
371
 
372
+ #: admin/admin.php:510
373
  msgid "Number of popular posts to display: "
374
  msgstr "An líon post tóir a thaispeáint:"
375
 
376
+ #: admin/admin.php:513
377
  msgid ""
378
  "Maximum number of posts that will be displayed in the list. This option is "
379
  "used if you don't specify the number of posts in the widget or shortcodes"
380
  msgstr ""
381
 
382
+ #: admin/admin.php:517
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
383
  msgid "Post types to include in results (including custom post types)"
384
  msgstr ""
385
 
386
+ #: admin/admin.php:529
387
  msgid "List of post or page IDs to exclude from the results: "
388
  msgstr ""
389
 
390
+ #: admin/admin.php:531 admin/admin.php:638
391
  msgid "Enter comma separated list of IDs. e.g. 188,320,500"
392
  msgstr ""
393
 
394
+ #: admin/admin.php:535
395
  msgid "Exclude Categories: "
396
  msgstr ""
397
 
398
+ #: admin/admin.php:550
399
  msgid ""
400
  "Comma separated list of category slugs. The field above has an autocomplete "
401
  "so simply start typing in the starting letters and it will prompt you with "
402
  "options"
403
  msgstr ""
404
 
405
+ #: admin/admin.php:555
406
  msgid "Title of popular posts: "
407
  msgstr "Teideal an post tóir:"
408
 
409
+ #: admin/admin.php:561
410
  msgid "Title of daily popular posts: "
411
  msgstr "Teideal ar tóir an bpost:"
412
 
413
+ #: admin/admin.php:567
414
  msgid "When there are no posts, what should be shown?"
415
  msgstr ""
416
 
417
+ #: admin/admin.php:571
418
  msgid "Blank Output"
419
  msgstr ""
420
 
421
+ #: admin/admin.php:575
422
  msgid "Display:"
423
  msgstr ""
424
 
425
+ #: admin/admin.php:580
426
  msgid "Show post excerpt in list?"
427
  msgstr ""
428
 
429
+ #: admin/admin.php:586
430
  msgid "Length of excerpt (in words): "
431
  msgstr ""
432
 
433
+ #: admin/admin.php:592
434
  msgid "Show post author in list?"
435
  msgstr ""
436
 
437
+ #: admin/admin.php:598
438
  msgid "Show post date in list?"
439
  msgstr ""
440
 
441
+ #: admin/admin.php:604
442
  msgid "Limit post title length (in characters)"
443
  msgstr ""
444
 
445
+ #: admin/admin.php:610
446
  msgid "Show view count in list?"
447
  msgstr ""
448
 
449
+ #: admin/admin.php:616
450
  msgid "Always display latest post count in the daily lists?"
451
  msgstr ""
452
 
453
+ #: admin/admin.php:619
454
  msgid ""
455
  "This option uses JavaScript and will increase your page load time. When you "
456
  "enable this option, the daily widget will not use the options set there, but "
457
  "options will need to be set on this screen."
458
  msgstr ""
459
 
460
+ #: admin/admin.php:623
461
  msgid "Open links in new window"
462
  msgstr ""
463
 
464
+ #: admin/admin.php:629
465
  msgid "Add nofollow attribute to links in the list"
466
  msgstr ""
467
 
468
+ #: admin/admin.php:635
469
  msgid "Exclude display of related posts on these posts / pages"
470
  msgstr ""
471
 
472
+ #: admin/admin.php:642
473
  msgid "Customise the list HTML"
474
  msgstr ""
475
 
476
+ #: admin/admin.php:645
477
  #, fuzzy
478
  msgid "HTML to display before the list of posts: "
479
  msgstr "Formáid a thaispeáint ar an comhaireamh i:"
480
 
481
+ #: admin/admin.php:651
482
  #, fuzzy
483
  msgid "HTML to display before each list item: "
484
  msgstr "Formáid a thaispeáint ar an comhaireamh i:"
485
 
486
+ #: admin/admin.php:657
487
  #, fuzzy
488
  msgid "HTML to display after each list item: "
489
  msgstr "Formáid a thaispeáint ar an comhaireamh i:"
490
 
491
+ #: admin/admin.php:663
492
  #, fuzzy
493
  msgid "HTML to display after the list of posts: "
494
  msgstr "Formáid a thaispeáint ar an comhaireamh i:"
495
 
496
+ #: admin/admin.php:704
497
  msgid "Location of post thumbnail:"
498
  msgstr ""
499
 
500
+ #: admin/admin.php:708
501
  #, fuzzy
502
  msgid "Display thumbnails inline with posts, before title"
503
  msgstr "Taispeáin líon na dtuairimí ar phoist?"
504
 
505
+ #: admin/admin.php:713
506
  #, fuzzy
507
  msgid "Display thumbnails inline with posts, after title"
508
  msgstr "Taispeáin líon na dtuairimí ar phoist?"
509
 
510
+ #: admin/admin.php:718
511
  #, fuzzy
512
  msgid "Display only thumbnails, no text"
513
  msgstr "Taispeáin líon na dtuairimí ar phoist?"
514
 
515
+ #: admin/admin.php:723
516
  #, fuzzy
517
  msgid "Do not display thumbnails, only text."
518
  msgstr "Taispeáin líon na dtuairimí ar phoist?"
519
 
520
+ #: admin/admin.php:727
521
  msgid "Thumbnail size:"
522
  msgstr ""
523
 
524
+ #: admin/admin.php:751
525
  msgid "Custom size"
526
  msgstr ""
527
 
528
+ #: admin/admin.php:754
529
  msgid ""
530
  "You can choose from existing image sizes above or create a custom size. If "
531
  "you have chosen Custom size above, then enter the width, height and crop "
532
  "settings below. For best results, use a cropped image."
533
  msgstr ""
534
 
535
+ #: admin/admin.php:755
536
  msgid ""
537
  "If you change the width and/or height below, existing images will not be "
538
  "automatically resized."
539
  msgstr ""
540
 
541
+ #: admin/admin.php:756
542
  #, php-format
543
  msgid ""
544
  "I recommend using <a href='%s' target='_blank'>Force Regenerate Thumbnails</"
546
  "regenerate all image sizes."
547
  msgstr ""
548
 
549
+ #: admin/admin.php:759
550
  msgid "Width of custom thumbnail:"
551
  msgstr ""
552
 
553
+ #: admin/admin.php:764
554
  msgid "Height of custom thumbnail"
555
  msgstr ""
556
 
557
+ #: admin/admin.php:769
558
  msgid "Crop mode:"
559
  msgstr ""
560
 
561
+ #: admin/admin.php:773
562
  msgid ""
563
  "By default, thumbnails will be proportionately cropped. Check this box to "
564
  "hard crop the thumbnails."
565
  msgstr ""
566
 
567
+ #: admin/admin.php:774
568
  #, php-format
569
  msgid "<a href='%s' target='_blank'>Difference between soft and hard crop</a>"
570
  msgstr ""
571
 
572
+ #: admin/admin.php:776
573
  msgid ""
574
  "Since you're using the default styles set under the Custom Styles section, "
575
  "the width and height is fixed at 65px and crop mode is enabled."
576
  msgstr ""
577
 
578
+ #: admin/admin.php:781
579
  msgid "Style attributes / Width and Height HTML attributes:"
580
  msgstr ""
581
 
582
+ #: admin/admin.php:785
583
  msgid "Style attributes are used for width and height."
584
  msgstr ""
585
 
586
+ #: admin/admin.php:790
587
  msgid "HTML width and height attributes are used for width and height."
588
  msgstr ""
589
 
590
+ #: admin/admin.php:794
591
  msgid "Use timthumb to generate thumbnails? "
592
  msgstr ""
593
 
594
+ #: admin/admin.php:797
595
  msgid ""
596
  "If checked, <a href=\"http://www.binarymoon.co.uk/projects/timthumb/\" "
597
  "target=\"_blank\">timthumb</a> will be used to generate thumbnails"
598
  msgstr ""
599
 
600
+ #: admin/admin.php:800
601
  msgid "Quality of thumbnails generated by timthumb:"
602
  msgstr ""
603
 
604
+ #: admin/admin.php:803
605
  msgid ""
606
  "Enter values between 0 and 100 only. 100 is highest quality and the highest "
607
  "file size. Suggested maximum value is 95. Default is 75."
608
  msgstr ""
609
 
610
+ #: admin/admin.php:806
611
  msgid "Post thumbnail meta field name: "
612
  msgstr ""
613
 
614
+ #: admin/admin.php:809
615
  msgid ""
616
  "The value of this field should contain the image source and is set in the "
617
  "<em>Add New Post</em> screen"
618
  msgstr ""
619
 
620
+ #: admin/admin.php:812
621
  msgid ""
622
  "If the postmeta is not set, then should the plugin extract the first image "
623
  "from the post?"
624
  msgstr ""
625
 
626
+ #: admin/admin.php:815
627
  msgid ""
628
  "This could slow down the loading of your page if the first image in the "
629
  "related posts is large in file-size"
630
  msgstr ""
631
 
632
+ #: admin/admin.php:818
633
  msgid "Use default thumbnail? "
634
  msgstr ""
635
 
636
+ #: admin/admin.php:821
637
  msgid ""
638
  "If checked, when no thumbnail is found, show a default one from the URL "
639
  "below. If not checked and no thumbnail is found, no image will be shown."
640
  msgstr ""
641
 
642
+ #: admin/admin.php:824
643
  msgid "Default thumbnail: "
644
  msgstr ""
645
 
646
+ #: admin/admin.php:828
647
  msgid ""
648
  "The plugin will first check if the post contains a thumbnail. If it doesn't "
649
  "then it will check the meta field. If this is not available, then it will "
650
  "show the default image as specified above"
651
  msgstr ""
652
 
653
+ #: admin/admin.php:852
654
  msgid "Custom CSS"
655
  msgstr ""
656
 
657
+ #: admin/admin.php:867
658
  msgid "Use default style included in the plugin?"
659
  msgstr ""
660
 
661
+ #: admin/admin.php:870
662
  msgid ""
663
  "Top 10 includes a default style that makes your popular posts list to look "
664
  "beautiful. Check the box above if you want to use this."
665
  msgstr ""
666
 
667
+ #: admin/admin.php:871
668
  msgid ""
669
  "Enabling this option will turn on the thumbnails and set their width and "
670
  "height to 65px. It will also turn off the display of the author, excerpt and "
671
  "date if already enabled. Disabling this option will not revert any settings."
672
  msgstr ""
673
 
674
+ #: admin/admin.php:872
675
  #, php-format
676
  msgid ""
677
  "You can view the default style at <a href=\"%1$s\" target=\"_blank\">%1$s</a>"
678
  msgstr ""
679
 
680
+ #: admin/admin.php:875
681
  msgid "Custom CSS to add to header:"
682
  msgstr ""
683
 
684
+ #: admin/admin.php:880
685
  msgid ""
686
  "Do not include <code>style</code> tags. Check out the <a href=\"http://"
687
  "wordpress.org/extend/plugins/top-10/faq/\" target=\"_blank\">FAQ</a> for "
688
  "available CSS classes to style."
689
  msgstr ""
690
 
691
+ #: admin/admin.php:900
692
  #, fuzzy
693
  msgid "Default Options"
694
  msgstr "roghanna"
695
 
696
+ #: admin/admin.php:900
697
  msgid "Do you want to set options to Default?"
698
  msgstr "Ar mhaith leat roghanna atá leagtha chun Réamhshocrú?"
699
 
700
+ #: admin/admin.php:924
701
  msgid ""
702
  "Over time the Daily Top 10 database grows in size, which reduces the "
703
  "performance of the plugin. Cleaning the database at regular intervals could "
705
  "will automatically delete entries older than 90 days."
706
  msgstr ""
707
 
708
+ #: admin/admin.php:925
709
  msgid ""
710
  "Note: When scheduled maintenance is enabled, WordPress will run the cron job "
711
  "everytime the job is rescheduled (i.e. you change the settings below)."
712
  msgstr ""
713
 
714
+ #: admin/admin.php:928
715
  msgid "Enable scheduled maintenance of daily tables:"
716
  msgstr ""
717
 
718
+ #: admin/admin.php:932
719
  msgid "Time to run maintenance"
720
  msgstr ""
721
 
722
+ #: admin/admin.php:933
723
  msgid "hrs"
724
  msgstr ""
725
 
726
+ #: admin/admin.php:933
727
  msgid "min"
728
  msgstr ""
729
 
730
+ #: admin/admin.php:935
731
  msgid "How often should the maintenance be run:"
732
  msgstr ""
733
 
734
+ #: admin/admin.php:939
735
  msgid "Daily"
736
  msgstr ""
737
 
738
+ #: admin/admin.php:943
739
  msgid "Weekly"
740
  msgstr ""
741
 
742
+ #: admin/admin.php:947
743
  msgid "Fortnightly"
744
  msgstr ""
745
 
746
+ #: admin/admin.php:951
747
  msgid "Monthly"
748
  msgstr ""
749
 
750
+ #: admin/admin.php:960
751
  msgid "The cron job has been scheduled. Maintenance will run "
752
  msgstr ""
753
 
754
+ #: admin/admin.php:965
755
  msgid "The cron job is missing. Please resave this page to add the job"
756
  msgstr ""
757
 
758
+ #: admin/admin.php:970
759
  msgid "Maintenance is turned off"
760
  msgstr ""
761
 
762
+ #: admin/admin.php:984
763
  msgid "Reset count"
764
  msgstr ""
765
 
766
+ #: admin/admin.php:987
767
  msgid ""
768
  "This cannot be reversed. Make sure that your database has been backed up "
769
  "before proceeding"
770
  msgstr ""
771
 
772
+ #: admin/admin.php:990
773
  #, fuzzy
774
  msgid "Reset Popular Posts"
775
  msgstr "Poist Coitianta"
776
 
777
+ #: admin/admin.php:990
778
  msgid "Are you sure you want to reset the popular posts?"
779
  msgstr ""
780
 
781
+ #: admin/admin.php:991
782
  #, fuzzy
783
  msgid "Reset Daily Popular Posts"
784
  msgstr "Poist Coitianta Laethúil"
785
 
786
+ #: admin/admin.php:991
787
  msgid "Are you sure you want to reset the daily popular posts?"
788
  msgstr ""
789
 
790
+ #: admin/admin.php:992
791
  msgid "Clear duplicates"
792
  msgstr ""
793
 
794
+ #: admin/admin.php:992
795
  msgid "This will delete the duplicate entries in the tables. Proceed?"
796
  msgstr ""
797
 
798
+ #: admin/admin.php:1005
799
  msgid "WordPress Multisite: Migrate Top 10 v1.x counts to 2.x"
800
  msgstr ""
801
 
802
+ #: admin/admin.php:1008
803
  msgid ""
804
  "If you've been using Top 10 v1.x on multisite, you would have needed to "
805
  "activate the plugin independently for each site. This would have resulted in "
806
+ "two tables being created for each site in the network."
 
 
 
807
  msgstr ""
808
 
809
+ #: admin/admin.php:1009
810
+ msgid ""
811
+ "Top 10 v2.x onwards uses only a single table to record the count, keeping "
812
+ "your database clean. You can use this tool to import the recorded counts "
813
+ "from v1.x tables to the new v2.x table format."
814
+ msgstr ""
815
+
816
+ #: admin/admin.php:1012
817
  msgid ""
818
  "If you do not see any tables below, then it means that either all data has "
819
  "already been imported or no relevant information has been found."
820
  msgstr ""
821
 
822
+ #: admin/admin.php:1015
823
+ msgid ""
824
+ "After running the importer, please verify that all the counts have been "
825
+ "successfully imported. Only then should you delete any old tables!"
826
+ msgstr ""
827
+
828
+ #: admin/admin.php:1049
829
  msgid "Blog ID"
830
  msgstr ""
831
 
832
+ #: admin/admin.php:1052
833
  msgid "Status"
834
  msgstr ""
835
 
836
+ #: admin/admin.php:1055
837
  msgid "Select to import"
838
  msgstr ""
839
 
840
+ #: admin/admin.php:1065
841
  msgid "Blog #"
842
  msgstr ""
843
 
844
+ #: admin/admin.php:1075
845
  msgid "Not imported"
846
  msgstr ""
847
 
848
+ #: admin/admin.php:1079
849
  msgid "Imported"
850
  msgstr ""
851
 
852
+ #: admin/admin.php:1100
853
  msgid "Begin import"
854
  msgstr ""
855
 
856
+ #: admin/admin.php:1101
857
  msgid "Delete selected tables"
858
  msgstr ""
859
 
860
+ #: admin/admin.php:1102
861
  msgid "Delete all imported tables"
862
  msgstr ""
863
 
864
+ #: admin/admin.php:1159 admin/admin.php:1255
865
  msgid "Daily Popular Posts"
866
  msgstr "Poist Coitianta Laethúil"
867
 
868
+ #: admin/admin.php:1189
869
  #, fuzzy
870
  msgid "Support the development"
871
  msgstr "Tacú le Forbairt"
872
 
873
+ #: admin/admin.php:1196
874
  msgid "Donation for Top 10"
875
  msgstr ""
876
 
877
+ #: admin/admin.php:1198
878
  msgid "Enter amount in USD: "
879
  msgstr ""
880
 
881
+ #: admin/admin.php:1202
882
  msgid "Send your donation to the author of Top 10"
883
  msgstr ""
884
 
885
+ #: admin/admin.php:1209
886
  msgid "Follow me"
887
  msgstr ""
888
 
889
+ #: admin/admin.php:1219
890
  msgid "Quick links"
891
  msgstr ""
892
 
893
+ #: admin/admin.php:1223
894
  msgid "Top 10 plugin page"
895
  msgstr ""
896
 
897
+ #: admin/admin.php:1224
898
  msgid "Top 10 Github page"
899
  msgstr ""
900
 
901
+ #: admin/admin.php:1225
902
  msgid "Other plugins"
903
  msgstr ""
904
 
905
+ #: admin/admin.php:1226
906
  msgid "Ajay's blog"
907
  msgstr ""
908
 
909
+ #: admin/admin.php:1227
910
  msgid "FAQ"
911
  msgstr ""
912
 
913
+ #: admin/admin.php:1228 admin/admin.php:1386
914
  msgid "Support"
915
  msgstr ""
916
 
917
+ #: admin/admin.php:1229
918
  msgid "Reviews"
919
  msgstr ""
920
 
921
+ #: admin/admin.php:1252
922
  #, fuzzy
923
  msgid "Overall Popular Posts"
924
  msgstr "Féach ar Poist Coitianta Foriomlán"
925
 
926
+ #: admin/admin.php:1363
927
  msgid "Settings"
928
  msgstr ""
929
 
930
+ #: admin/admin.php:1387
931
  msgid "Donate"
932
  msgstr ""
933
 
1013
  msgid "Thumbnail width"
1014
  msgstr ""
1015
 
1016
+ #: top-10.php:879
1017
  msgid " by "
1018
  msgstr ""
1019
 
1020
+ #: top-10.php:930
1021
  #, php-format
1022
  msgid "Popular posts by <a href=\"%s\" rel=\"nofollow\" %s>Top 10 plugin</a>"
1023
  msgstr ""
1024
 
1025
+ #: top-10.php:1029
1026
  msgid "<h3>Popular Posts</h3>"
1027
  msgstr "<h3>Poist Coitianta </ h3>"
1028
 
1029
+ #: top-10.php:1030
1030
  msgid "<h3>Daily Popular</h3>"
1031
  msgstr "<h3> laethúil Coitianta </ h3>"
1032
 
1033
+ #: top-10.php:1031
1034
  #, fuzzy
1035
  msgid "No top posts yet"
1036
  msgstr "Teideal an post tóir:"
1037
 
1038
+ #: top-10.php:1676
1039
  msgid "Once Weekly"
1040
  msgstr ""
1041
 
1042
+ #: top-10.php:1680
1043
  msgid "Once Fortnightly"
1044
  msgstr ""
1045
 
1046
+ #: top-10.php:1684
1047
  msgid "Once Monthly"
1048
  msgstr ""
1049
 
1050
+ #: top-10.php:1688
1051
  msgid "Once quarterly"
1052
  msgstr ""
1053
 
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: Тоp 10\n"
4
  "Report-Msgid-Bugs-To: \n"
5
- "POT-Creation-Date: 2014-12-28 00:59-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"
@@ -61,7 +61,7 @@ msgstr "पिछला"
61
  msgid "Next"
62
  msgstr "अगला"
63
 
64
- #: admin/admin-dashboard.php:200 admin/admin.php:1145
65
  msgid "Popular Posts"
66
  msgstr "लोकप्रिय पोस्ट्स "
67
 
@@ -69,7 +69,7 @@ msgstr "लोकप्रिय पोस्ट्स "
69
  msgid "Daily Popular"
70
  msgstr "दैनिक लोकप्रिय"
71
 
72
- #: admin/admin-metabox.php:38 admin/admin.php:1234
73
  msgid "Top 10"
74
  msgstr "शीर्ष 10"
75
 
@@ -98,162 +98,192 @@ msgstr ""
98
  msgid "The URL above is saved in the meta field: "
99
  msgstr ""
100
 
101
- #: admin/admin.php:160
102
  msgid "Options saved successfully."
103
  msgstr "विकल्प सफलतापूर्वक बचाया."
104
 
105
- #: admin/admin.php:170
106
  msgid "Options set to Default."
107
  msgstr "विकल्प डिफ़ॉल्ट से तैयार है."
108
 
109
- #: admin/admin.php:176
110
  #, fuzzy
111
  msgid "Top 10 popular posts reset"
112
  msgstr "लोकप्रिय पदों का शीर्षक:"
113
 
114
- #: admin/admin.php:182
115
  #, fuzzy
116
  msgid "Top 10 daily popular posts reset"
117
  msgstr "दैनिक लोकप्रिय पदों का शीर्षक:"
118
 
119
- #: admin/admin.php:189
120
  msgid "Duplicate rows cleaned from tables"
121
  msgstr ""
122
 
123
- #: admin/admin.php:201
124
  msgid "Scheduled maintenance enabled / modified"
125
  msgstr ""
126
 
127
- #: admin/admin.php:205
128
  msgid "Scheduled maintenance disabled"
129
  msgstr ""
130
 
131
- #: admin/admin.php:244
132
  msgid "Counts from selected sites have been imported."
133
  msgstr ""
134
 
135
- #: admin/admin.php:269
136
  msgid "Selected tables have been deleted. Note that only imported tables have been deleted."
137
  msgstr ""
138
 
139
- #: admin/admin.php:277 admin/admin.php:1234 admin/admin.php:1237
140
  #, fuzzy
141
  msgid "Top 10 Settings"
142
  msgstr "शीर्ष 10"
143
 
144
- #: admin/admin.php:289 admin/admin.php:311
145
  msgid "General options"
146
  msgstr ""
147
 
148
- #: admin/admin.php:290 admin/admin.php:373
149
  msgid "Counter and tracker options"
150
  msgstr ""
151
 
152
- #: admin/admin.php:291 admin/admin.php:478
153
  msgid "Popular post list options"
154
  msgstr ""
155
 
156
- #: admin/admin.php:292 admin/admin.php:681 includes/class-top-10-widget.php:103
157
  msgid "Thumbnail options"
158
  msgstr ""
159
 
160
- #: admin/admin.php:293
161
  msgid "Custom styles"
162
  msgstr ""
163
 
164
- #: admin/admin.php:294 admin/admin.php:912
165
  msgid "Maintenance"
166
  msgstr ""
167
 
168
- #: admin/admin.php:310 admin/admin.php:372 admin/admin.php:477 admin/admin.php:680
169
- #: admin/admin.php:843 admin/admin.php:911 admin/admin.php:975 admin/admin.php:996
170
- #: admin/admin.php:1176 admin/admin.php:1196 admin/admin.php:1206
171
  msgid "Click to toggle"
172
  msgstr ""
173
 
174
- #: admin/admin.php:327
175
  msgid "Enable Overall stats"
176
  msgstr ""
177
 
178
- #: admin/admin.php:333
179
  msgid "Enable Daily stats"
180
  msgstr ""
181
 
182
- #: admin/admin.php:339
183
  msgid "Cache fix:"
184
  msgstr ""
185
 
186
- #: admin/admin.php:342
187
  msgid ""
188
  "This will try to prevent W3 Total Cache and other caching plugins from caching the tracker "
189
  "script of the plugin. Try toggling this option in case you find that your posts are not "
190
  "tracked."
191
  msgstr ""
192
 
193
- #: admin/admin.php:346
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
194
  msgid "Link to Top 10 plugin page"
195
  msgstr ""
196
 
197
- #: admin/admin.php:349
198
  #, fuzzy
199
  msgid "A link to the plugin is added as an extra list item to the list of popular posts"
200
  msgstr ""
201
  "प्लगइन के लिए एक कड़ी लोकप्रिय पदों की सूची के लिए एक अतिरिक्त सूची आइटम के रूप में जोड़ा है. नहीं अनिवार्य "
202
  "है, लेकिन धन्यवाद यदि तुम इसे करो!"
203
 
204
- #: admin/admin.php:354 admin/admin.php:459 admin/admin.php:662 admin/admin.php:825
205
- #: admin/admin.php:891 admin/admin.php:968
206
  #, fuzzy
207
  msgid "Save Options"
208
  msgstr "विकल्प हैं:"
209
 
210
- #: admin/admin.php:389
211
  #, fuzzy
212
  msgid "Display number of views on:"
213
  msgstr "पदों पर विचारों के प्रदर्शन की संख्या?"
214
 
215
- #: admin/admin.php:391
216
  msgid "Posts"
217
  msgstr ""
218
 
219
- #: admin/admin.php:392
220
  #, fuzzy
221
  msgid "Pages"
222
  msgstr "पृष्ठ"
223
 
224
- #: admin/admin.php:393
225
  msgid "Home page"
226
  msgstr ""
227
 
228
- #: admin/admin.php:394
229
  msgid "Feeds"
230
  msgstr ""
231
 
232
- #: admin/admin.php:395
233
  msgid "Category archives"
234
  msgstr ""
235
 
236
- #: admin/admin.php:396
237
  msgid "Tag archives"
238
  msgstr ""
239
 
240
- #: admin/admin.php:397
241
  msgid "Other archives"
242
  msgstr ""
243
 
244
- #: admin/admin.php:398
245
  msgid ""
246
  "If you choose to disable this, please add <code>&lt;?php if ( function_exists "
247
  "( 'echo_tptn_post_count' ) ) echo_tptn_post_count(); ?&gt;</code> to your template file "
248
  "where you want it displayed"
249
  msgstr ""
250
 
251
- #: admin/admin.php:402
252
  #, fuzzy
253
  msgid "Format to display the post views:"
254
  msgstr "प्रारूप में गिनती प्रदर्शित करने के लिए:"
255
 
256
- #: admin/admin.php:405
257
  msgid ""
258
  "Use <code>%totalcount%</code> to display the total count, <code>%dailycount%</code> to "
259
  "display the daily count and <code>%overallcount%</code> to display the overall count "
@@ -261,411 +291,392 @@ msgid ""
261
  "23 visits today]</code>"
262
  msgstr ""
263
 
264
- #: admin/admin.php:409
265
  msgid "What do display when there are no visits?"
266
  msgstr ""
267
 
268
- #: admin/admin.php:412
269
  msgid ""
270
  "This text applies only when there are 0 hits for the post and it isn't a single page. e.g. "
271
  "if you display post views on the homepage or archives then this text will be used. To "
272
  "override this, just enter the same text as above option."
273
  msgstr ""
274
 
275
- #: admin/admin.php:416
276
  msgid "Always display latest post count"
277
  msgstr ""
278
 
279
- #: admin/admin.php:419
280
  msgid ""
281
  "This option uses JavaScript and will increase your page load time. Turn this off if you "
282
  "are not using caching plugins or are OK with displaying older cached counts."
283
  msgstr ""
284
 
285
- #: admin/admin.php:423
286
  msgid "Track visits of authors on their own posts?"
287
  msgstr "ट्रैक लेखक के अपने पदों पर यात्रा?"
288
 
289
- #: admin/admin.php:426
290
  msgid "Disabling this option will stop authors visits tracked on their own posts"
291
  msgstr ""
292
 
293
- #: admin/admin.php:430
294
  #, fuzzy
295
  msgid "Track visits of admins?"
296
  msgstr "ट्रैक लेखक के अपने पदों पर यात्रा?"
297
 
298
- #: admin/admin.php:433
299
  msgid "Disabling this option will stop admin visits being tracked."
300
  msgstr ""
301
 
302
- #: admin/admin.php:437
303
  #, fuzzy
304
  msgid "Track visits of Editors?"
305
  msgstr "ट्रैक लेखक के अपने पदों पर यात्रा?"
306
 
307
- #: admin/admin.php:440
308
  msgid "Disabling this option will stop editor visits being tracked."
309
  msgstr ""
310
 
311
- #: admin/admin.php:444
312
  msgid "Display page views on Posts and Pages in Admin"
313
  msgstr ""
314
 
315
- #: admin/admin.php:447
316
  msgid ""
317
  "Adds three columns called Total Views, Today's Views and Views to All Posts and All Pages"
318
  msgstr ""
319
 
320
- #: admin/admin.php:451
321
  #, fuzzy
322
  msgid "Show number of views to non-admins"
323
  msgstr "पन्नों पर विचार के प्रदर्शन की संख्या?"
324
 
325
- #: admin/admin.php:454
326
  msgid ""
327
  "If you disable this then non-admins won't see the above columns or view the independent "
328
  "pages with the top posts"
329
  msgstr ""
330
 
331
- #: admin/admin.php:494
332
  msgid "Number of popular posts to display: "
333
  msgstr "लोकप्रिय पदों की संख्या प्रदर्शित करने के लिए:"
334
 
335
- #: admin/admin.php:497
336
  msgid ""
337
  "Maximum number of posts that will be displayed in the list. This option is used if you "
338
  "don't specify the number of posts in the widget or shortcodes"
339
  msgstr ""
340
 
341
- #: admin/admin.php:501
342
- msgid "Daily popular contains top posts over:"
343
- msgstr ""
344
-
345
- #: admin/admin.php:503
346
- msgid "day(s)"
347
- msgstr ""
348
-
349
- #: admin/admin.php:504
350
- msgid "hour(s)"
351
- msgstr ""
352
-
353
- #: admin/admin.php:505
354
- msgid ""
355
- "Think of Daily Popular has a custom date range applied as a global setting. Instead of "
356
- "displaying popular posts from the past day, this setting lets you display posts for as "
357
- "many days or as few hours as you want. This can be overridden in the widget."
358
- msgstr ""
359
-
360
- #: admin/admin.php:509
361
  msgid "Post types to include in results (including custom post types)"
362
  msgstr ""
363
 
364
- #: admin/admin.php:521
365
  msgid "List of post or page IDs to exclude from the results: "
366
  msgstr ""
367
 
368
- #: admin/admin.php:523 admin/admin.php:630
369
  msgid "Enter comma separated list of IDs. e.g. 188,320,500"
370
  msgstr ""
371
 
372
- #: admin/admin.php:527
373
  msgid "Exclude Categories: "
374
  msgstr ""
375
 
376
- #: admin/admin.php:542
377
  msgid ""
378
  "Comma separated list of category slugs. The field above has an autocomplete so simply "
379
  "start typing in the starting letters and it will prompt you with options"
380
  msgstr ""
381
 
382
- #: admin/admin.php:547
383
  msgid "Title of popular posts: "
384
  msgstr "लोकप्रिय पदों का शीर्षक:"
385
 
386
- #: admin/admin.php:553
387
  msgid "Title of daily popular posts: "
388
  msgstr "दैनिक लोकप्रिय पदों का शीर्षक:"
389
 
390
- #: admin/admin.php:559
391
  msgid "When there are no posts, what should be shown?"
392
  msgstr ""
393
 
394
- #: admin/admin.php:563
395
  msgid "Blank Output"
396
  msgstr ""
397
 
398
- #: admin/admin.php:567
399
  msgid "Display:"
400
  msgstr ""
401
 
402
- #: admin/admin.php:572
403
  msgid "Show post excerpt in list?"
404
  msgstr ""
405
 
406
- #: admin/admin.php:578
407
  msgid "Length of excerpt (in words): "
408
  msgstr ""
409
 
410
- #: admin/admin.php:584
411
  msgid "Show post author in list?"
412
  msgstr ""
413
 
414
- #: admin/admin.php:590
415
  msgid "Show post date in list?"
416
  msgstr ""
417
 
418
- #: admin/admin.php:596
419
  msgid "Limit post title length (in characters)"
420
  msgstr ""
421
 
422
- #: admin/admin.php:602
423
  msgid "Show view count in list?"
424
  msgstr ""
425
 
426
- #: admin/admin.php:608
427
  msgid "Always display latest post count in the daily lists?"
428
  msgstr ""
429
 
430
- #: admin/admin.php:611
431
  msgid ""
432
  "This option uses JavaScript and will increase your page load time. When you enable this "
433
  "option, the daily widget will not use the options set there, but options will need to be "
434
  "set on this screen."
435
  msgstr ""
436
 
437
- #: admin/admin.php:615
438
  msgid "Open links in new window"
439
  msgstr ""
440
 
441
- #: admin/admin.php:621
442
  msgid "Add nofollow attribute to links in the list"
443
  msgstr ""
444
 
445
- #: admin/admin.php:627
446
  msgid "Exclude display of related posts on these posts / pages"
447
  msgstr ""
448
 
449
- #: admin/admin.php:634
450
  msgid "Customise the list HTML"
451
  msgstr ""
452
 
453
- #: admin/admin.php:637
454
  msgid "HTML to display before the list of posts: "
455
  msgstr ""
456
 
457
- #: admin/admin.php:643
458
  msgid "HTML to display before each list item: "
459
  msgstr ""
460
 
461
- #: admin/admin.php:649
462
  #, fuzzy
463
  msgid "HTML to display after each list item: "
464
  msgstr "प्रारूप में गिनती प्रदर्शित करने के लिए:"
465
 
466
- #: admin/admin.php:655
467
  msgid "HTML to display after the list of posts: "
468
  msgstr ""
469
 
470
- #: admin/admin.php:696
471
  msgid "Location of post thumbnail:"
472
  msgstr ""
473
 
474
- #: admin/admin.php:700
475
  #, fuzzy
476
  msgid "Display thumbnails inline with posts, before title"
477
  msgstr "पदों पर विचारों के प्रदर्शन की संख्या?"
478
 
479
- #: admin/admin.php:705
480
  #, fuzzy
481
  msgid "Display thumbnails inline with posts, after title"
482
  msgstr "पदों पर विचारों के प्रदर्शन की संख्या?"
483
 
484
- #: admin/admin.php:710
485
  msgid "Display only thumbnails, no text"
486
  msgstr ""
487
 
488
- #: admin/admin.php:715
489
  msgid "Do not display thumbnails, only text."
490
  msgstr ""
491
 
492
- #: admin/admin.php:719
493
  msgid "Thumbnail size:"
494
  msgstr ""
495
 
496
- #: admin/admin.php:743
497
  msgid "Custom size"
498
  msgstr ""
499
 
500
- #: admin/admin.php:746
501
  msgid ""
502
  "You can choose from existing image sizes above or create a custom size. If you have chosen "
503
  "Custom size above, then enter the width, height and crop settings below. For best results, "
504
  "use a cropped image."
505
  msgstr ""
506
 
507
- #: admin/admin.php:747
508
  msgid ""
509
  "If you change the width and/or height below, existing images will not be automatically "
510
  "resized."
511
  msgstr ""
512
 
513
- #: admin/admin.php:748
514
  #, php-format
515
  msgid ""
516
  "I recommend using <a href='%s' target='_blank'>Force Regenerate Thumbnails</a> or <a "
517
  "href='%s' target='_blank'>Force Regenerate Thumbnails</a> to regenerate all image sizes."
518
  msgstr ""
519
 
520
- #: admin/admin.php:751
521
  msgid "Width of custom thumbnail:"
522
  msgstr ""
523
 
524
- #: admin/admin.php:756
525
  msgid "Height of custom thumbnail"
526
  msgstr ""
527
 
528
- #: admin/admin.php:761
529
  msgid "Crop mode:"
530
  msgstr ""
531
 
532
- #: admin/admin.php:765
533
  msgid ""
534
  "By default, thumbnails will be proportionately cropped. Check this box to hard crop the "
535
  "thumbnails."
536
  msgstr ""
537
 
538
- #: admin/admin.php:766
539
  #, php-format
540
  msgid "<a href='%s' target='_blank'>Difference between soft and hard crop</a>"
541
  msgstr ""
542
 
543
- #: admin/admin.php:768
544
  msgid ""
545
  "Since you're using the default styles set under the Custom Styles section, the width and "
546
  "height is fixed at 65px and crop mode is enabled."
547
  msgstr ""
548
 
549
- #: admin/admin.php:773
550
  msgid "Style attributes / Width and Height HTML attributes:"
551
  msgstr ""
552
 
553
- #: admin/admin.php:777
554
  msgid "Style attributes are used for width and height."
555
  msgstr ""
556
 
557
- #: admin/admin.php:782
558
  msgid "HTML width and height attributes are used for width and height."
559
  msgstr ""
560
 
561
- #: admin/admin.php:786
562
  msgid "Use timthumb to generate thumbnails? "
563
  msgstr ""
564
 
565
- #: admin/admin.php:789
566
  msgid ""
567
  "If checked, <a href=\"http://www.binarymoon.co.uk/projects/timthumb/\" target=\"_blank"
568
  "\">timthumb</a> will be used to generate thumbnails"
569
  msgstr ""
570
 
571
- #: admin/admin.php:792
572
  msgid "Quality of thumbnails generated by timthumb:"
573
  msgstr ""
574
 
575
- #: admin/admin.php:795
576
  msgid ""
577
  "Enter values between 0 and 100 only. 100 is highest quality and the highest file size. "
578
  "Suggested maximum value is 95. Default is 75."
579
  msgstr ""
580
 
581
- #: admin/admin.php:798
582
  msgid "Post thumbnail meta field name: "
583
  msgstr ""
584
 
585
- #: admin/admin.php:801
586
  msgid ""
587
  "The value of this field should contain the image source and is set in the <em>Add New "
588
  "Post</em> screen"
589
  msgstr ""
590
 
591
- #: admin/admin.php:804
592
  msgid ""
593
  "If the postmeta is not set, then should the plugin extract the first image from the post?"
594
  msgstr ""
595
 
596
- #: admin/admin.php:807
597
  msgid ""
598
  "This could slow down the loading of your page if the first image in the related posts is "
599
  "large in file-size"
600
  msgstr ""
601
 
602
- #: admin/admin.php:810
603
  msgid "Use default thumbnail? "
604
  msgstr ""
605
 
606
- #: admin/admin.php:813
607
  msgid ""
608
  "If checked, when no thumbnail is found, show a default one from the URL below. If not "
609
  "checked and no thumbnail is found, no image will be shown."
610
  msgstr ""
611
 
612
- #: admin/admin.php:816
613
  msgid "Default thumbnail: "
614
  msgstr ""
615
 
616
- #: admin/admin.php:820
617
  msgid ""
618
  "The plugin will first check if the post contains a thumbnail. If it doesn't then it will "
619
  "check the meta field. If this is not available, then it will show the default image as "
620
  "specified above"
621
  msgstr ""
622
 
623
- #: admin/admin.php:844
624
  msgid "Custom CSS"
625
  msgstr ""
626
 
627
- #: admin/admin.php:859
628
  msgid "Use default style included in the plugin?"
629
  msgstr ""
630
 
631
- #: admin/admin.php:862
632
  msgid ""
633
  "Top 10 includes a default style that makes your popular posts list to look beautiful. "
634
  "Check the box above if you want to use this."
635
  msgstr ""
636
 
637
- #: admin/admin.php:863
638
  msgid ""
639
  "Enabling this option will turn on the thumbnails and set their width and height to 65px. "
640
  "It will also turn off the display of the author, excerpt and date if already enabled. "
641
  "Disabling this option will not revert any settings."
642
  msgstr ""
643
 
644
- #: admin/admin.php:864
645
  #, php-format
646
  msgid "You can view the default style at <a href=\"%1$s\" target=\"_blank\">%1$s</a>"
647
  msgstr ""
648
 
649
- #: admin/admin.php:867
650
  msgid "Custom CSS to add to header:"
651
  msgstr ""
652
 
653
- #: admin/admin.php:872
654
  msgid ""
655
  "Do not include <code>style</code> tags. Check out the <a href=\"http://wordpress.org/"
656
  "extend/plugins/top-10/faq/\" target=\"_blank\">FAQ</a> for available CSS classes to style."
657
  msgstr ""
658
 
659
- #: admin/admin.php:892
660
  #, fuzzy
661
  msgid "Default Options"
662
  msgstr "विकल्प हैं:"
663
 
664
- #: admin/admin.php:892
665
  msgid "Do you want to set options to Default?"
666
  msgstr "क्या आप डिफ़ॉल्ट विकल्प सेट करना चाहते हैं?"
667
 
668
- #: admin/admin.php:916
669
  msgid ""
670
  "Over time the Daily Top 10 database grows in size, which reduces the performance of the "
671
  "plugin. Cleaning the database at regular intervals could improve performance, especially "
@@ -673,217 +684,228 @@ msgid ""
673
  "90 days."
674
  msgstr ""
675
 
676
- #: admin/admin.php:917
677
  msgid ""
678
  "Note: When scheduled maintenance is enabled, WordPress will run the cron job everytime the "
679
  "job is rescheduled (i.e. you change the settings below)."
680
  msgstr ""
681
 
682
- #: admin/admin.php:920
683
  msgid "Enable scheduled maintenance of daily tables:"
684
  msgstr ""
685
 
686
- #: admin/admin.php:924
687
  msgid "Time to run maintenance"
688
  msgstr ""
689
 
690
- #: admin/admin.php:925
691
  msgid "hrs"
692
  msgstr ""
693
 
694
- #: admin/admin.php:925
695
  msgid "min"
696
  msgstr ""
697
 
698
- #: admin/admin.php:927
699
  msgid "How often should the maintenance be run:"
700
  msgstr ""
701
 
702
- #: admin/admin.php:931
703
  msgid "Daily"
704
  msgstr ""
705
 
706
- #: admin/admin.php:935
707
  msgid "Weekly"
708
  msgstr ""
709
 
710
- #: admin/admin.php:939
711
  msgid "Fortnightly"
712
  msgstr ""
713
 
714
- #: admin/admin.php:943
715
  msgid "Monthly"
716
  msgstr ""
717
 
718
- #: admin/admin.php:952
719
  msgid "The cron job has been scheduled. Maintenance will run "
720
  msgstr ""
721
 
722
- #: admin/admin.php:957
723
  msgid "The cron job is missing. Please resave this page to add the job"
724
  msgstr ""
725
 
726
- #: admin/admin.php:962
727
  msgid "Maintenance is turned off"
728
  msgstr ""
729
 
730
- #: admin/admin.php:976
731
  msgid "Reset count"
732
  msgstr ""
733
 
734
- #: admin/admin.php:979
735
  msgid ""
736
  "This cannot be reversed. Make sure that your database has been backed up before proceeding"
737
  msgstr ""
738
 
739
- #: admin/admin.php:982
740
  #, fuzzy
741
  msgid "Reset Popular Posts"
742
  msgstr "लोकप्रिय पोस्ट्स "
743
 
744
- #: admin/admin.php:982
745
  msgid "Are you sure you want to reset the popular posts?"
746
  msgstr ""
747
 
748
- #: admin/admin.php:983
749
  #, fuzzy
750
  msgid "Reset Daily Popular Posts"
751
  msgstr "दैनिक लोकप्रिय पोस्ट्स "
752
 
753
- #: admin/admin.php:983
754
  msgid "Are you sure you want to reset the daily popular posts?"
755
  msgstr ""
756
 
757
- #: admin/admin.php:984
758
  msgid "Clear duplicates"
759
  msgstr ""
760
 
761
- #: admin/admin.php:984
762
  msgid "This will delete the duplicate entries in the tables. Proceed?"
763
  msgstr ""
764
 
765
- #: admin/admin.php:997
766
  msgid "WordPress Multisite: Migrate Top 10 v1.x counts to 2.x"
767
  msgstr ""
768
 
769
- #: admin/admin.php:1000
770
  msgid ""
771
  "If you've been using Top 10 v1.x on multisite, you would have needed to activate the "
772
  "plugin independently for each site. This would have resulted in two tables being created "
773
- "for each site in the network. Top 10 v2.x onwards uses only a single table to record the "
774
- "count, keeping your database clean. You can use this tool to import the recorded counts "
775
- "from v1.x tables to the new v2.x table format."
776
  msgstr ""
777
 
778
- #: admin/admin.php:1003
 
 
 
 
 
 
 
779
  msgid ""
780
  "If you do not see any tables below, then it means that either all data has already been "
781
  "imported or no relevant information has been found."
782
  msgstr ""
783
 
784
- #: admin/admin.php:1037
 
 
 
 
 
 
785
  msgid "Blog ID"
786
  msgstr ""
787
 
788
- #: admin/admin.php:1040
789
  msgid "Status"
790
  msgstr ""
791
 
792
- #: admin/admin.php:1043
793
  msgid "Select to import"
794
  msgstr ""
795
 
796
- #: admin/admin.php:1053
797
  msgid "Blog #"
798
  msgstr ""
799
 
800
- #: admin/admin.php:1063
801
  msgid "Not imported"
802
  msgstr ""
803
 
804
- #: admin/admin.php:1067
805
  msgid "Imported"
806
  msgstr ""
807
 
808
- #: admin/admin.php:1088
809
  msgid "Begin import"
810
  msgstr ""
811
 
812
- #: admin/admin.php:1089
813
  msgid "Delete selected tables"
814
  msgstr ""
815
 
816
- #: admin/admin.php:1090
817
  msgid "Delete all imported tables"
818
  msgstr ""
819
 
820
- #: admin/admin.php:1147 admin/admin.php:1243
821
  msgid "Daily Popular Posts"
822
  msgstr "दैनिक लोकप्रिय पोस्ट्स "
823
 
824
- #: admin/admin.php:1177
825
  #, fuzzy
826
  msgid "Support the development"
827
  msgstr "समर्थन विकास"
828
 
829
- #: admin/admin.php:1184
830
  msgid "Donation for Top 10"
831
  msgstr ""
832
 
833
- #: admin/admin.php:1186
834
  msgid "Enter amount in USD: "
835
  msgstr ""
836
 
837
- #: admin/admin.php:1190
838
  msgid "Send your donation to the author of Top 10"
839
  msgstr ""
840
 
841
- #: admin/admin.php:1197
842
  msgid "Follow me"
843
  msgstr ""
844
 
845
- #: admin/admin.php:1207
846
  msgid "Quick links"
847
  msgstr ""
848
 
849
- #: admin/admin.php:1211
850
  msgid "Top 10 plugin page"
851
  msgstr ""
852
 
853
- #: admin/admin.php:1212
854
  msgid "Top 10 Github page"
855
  msgstr ""
856
 
857
- #: admin/admin.php:1213
858
  msgid "Other plugins"
859
  msgstr ""
860
 
861
- #: admin/admin.php:1214
862
  msgid "Ajay's blog"
863
  msgstr ""
864
 
865
- #: admin/admin.php:1215
866
  msgid "FAQ"
867
  msgstr ""
868
 
869
- #: admin/admin.php:1216 admin/admin.php:1374
870
  msgid "Support"
871
  msgstr ""
872
 
873
- #: admin/admin.php:1217
874
  msgid "Reviews"
875
  msgstr ""
876
 
877
- #: admin/admin.php:1240
878
  #, fuzzy
879
  msgid "Overall Popular Posts"
880
  msgstr "देखें दैनिक लोकप्रिय पोस्ट्स "
881
 
882
- #: admin/admin.php:1351
883
  msgid "Settings"
884
  msgstr ""
885
 
886
- #: admin/admin.php:1375
887
  msgid "Donate"
888
  msgstr ""
889
 
@@ -967,41 +989,41 @@ msgstr ""
967
  msgid "Thumbnail width"
968
  msgstr ""
969
 
970
- #: top-10.php:866
971
  msgid " by "
972
  msgstr ""
973
 
974
- #: top-10.php:917
975
  #, php-format
976
  msgid "Popular posts by <a href=\"%s\" rel=\"nofollow\" %s>Top 10 plugin</a>"
977
  msgstr ""
978
 
979
- #: top-10.php:1016
980
  msgid "<h3>Popular Posts</h3>"
981
  msgstr "<h3> लोकप्रिय पोस्ट्स </ h3>"
982
 
983
- #: top-10.php:1017
984
  msgid "<h3>Daily Popular</h3>"
985
  msgstr "<h3> दैनिक लोकप्रिय </ h3>"
986
 
987
- #: top-10.php:1018
988
  #, fuzzy
989
  msgid "No top posts yet"
990
  msgstr "लोकप्रिय पदों का शीर्षक:"
991
 
992
- #: top-10.php:1668
993
  msgid "Once Weekly"
994
  msgstr ""
995
 
996
- #: top-10.php:1672
997
  msgid "Once Fortnightly"
998
  msgstr ""
999
 
1000
- #: top-10.php:1676
1001
  msgid "Once Monthly"
1002
  msgstr ""
1003
 
1004
- #: top-10.php:1680
1005
  msgid "Once quarterly"
1006
  msgstr ""
1007
 
2
  msgstr ""
3
  "Project-Id-Version: Тоp 10\n"
4
  "Report-Msgid-Bugs-To: \n"
5
+ "POT-Creation-Date: 2015-01-01 21:53-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"
61
  msgid "Next"
62
  msgstr "अगला"
63
 
64
+ #: admin/admin-dashboard.php:200 admin/admin.php:1157
65
  msgid "Popular Posts"
66
  msgstr "लोकप्रिय पोस्ट्स "
67
 
69
  msgid "Daily Popular"
70
  msgstr "दैनिक लोकप्रिय"
71
 
72
+ #: admin/admin-metabox.php:38 admin/admin.php:1246
73
  msgid "Top 10"
74
  msgstr "शीर्ष 10"
75
 
98
  msgid "The URL above is saved in the meta field: "
99
  msgstr ""
100
 
101
+ #: admin/admin.php:161
102
  msgid "Options saved successfully."
103
  msgstr "विकल्प सफलतापूर्वक बचाया."
104
 
105
+ #: admin/admin.php:171
106
  msgid "Options set to Default."
107
  msgstr "विकल्प डिफ़ॉल्ट से तैयार है."
108
 
109
+ #: admin/admin.php:177
110
  #, fuzzy
111
  msgid "Top 10 popular posts reset"
112
  msgstr "लोकप्रिय पदों का शीर्षक:"
113
 
114
+ #: admin/admin.php:183
115
  #, fuzzy
116
  msgid "Top 10 daily popular posts reset"
117
  msgstr "दैनिक लोकप्रिय पदों का शीर्षक:"
118
 
119
+ #: admin/admin.php:190
120
  msgid "Duplicate rows cleaned from tables"
121
  msgstr ""
122
 
123
+ #: admin/admin.php:202
124
  msgid "Scheduled maintenance enabled / modified"
125
  msgstr ""
126
 
127
+ #: admin/admin.php:206
128
  msgid "Scheduled maintenance disabled"
129
  msgstr ""
130
 
131
+ #: admin/admin.php:245
132
  msgid "Counts from selected sites have been imported."
133
  msgstr ""
134
 
135
+ #: admin/admin.php:270
136
  msgid "Selected tables have been deleted. Note that only imported tables have been deleted."
137
  msgstr ""
138
 
139
+ #: admin/admin.php:278 admin/admin.php:1246 admin/admin.php:1249
140
  #, fuzzy
141
  msgid "Top 10 Settings"
142
  msgstr "शीर्ष 10"
143
 
144
+ #: admin/admin.php:290 admin/admin.php:312
145
  msgid "General options"
146
  msgstr ""
147
 
148
+ #: admin/admin.php:291 admin/admin.php:389
149
  msgid "Counter and tracker options"
150
  msgstr ""
151
 
152
+ #: admin/admin.php:292 admin/admin.php:494
153
  msgid "Popular post list options"
154
  msgstr ""
155
 
156
+ #: admin/admin.php:293 admin/admin.php:689 includes/class-top-10-widget.php:103
157
  msgid "Thumbnail options"
158
  msgstr ""
159
 
160
+ #: admin/admin.php:294
161
  msgid "Custom styles"
162
  msgstr ""
163
 
164
+ #: admin/admin.php:295 admin/admin.php:920
165
  msgid "Maintenance"
166
  msgstr ""
167
 
168
+ #: admin/admin.php:311 admin/admin.php:388 admin/admin.php:493 admin/admin.php:688
169
+ #: admin/admin.php:851 admin/admin.php:919 admin/admin.php:983 admin/admin.php:1004
170
+ #: admin/admin.php:1188 admin/admin.php:1208 admin/admin.php:1218
171
  msgid "Click to toggle"
172
  msgstr ""
173
 
174
+ #: admin/admin.php:328
175
  msgid "Enable Overall stats"
176
  msgstr ""
177
 
178
+ #: admin/admin.php:334
179
  msgid "Enable Daily stats"
180
  msgstr ""
181
 
182
+ #: admin/admin.php:340
183
  msgid "Cache fix:"
184
  msgstr ""
185
 
186
+ #: admin/admin.php:343
187
  msgid ""
188
  "This will try to prevent W3 Total Cache and other caching plugins from caching the tracker "
189
  "script of the plugin. Try toggling this option in case you find that your posts are not "
190
  "tracked."
191
  msgstr ""
192
 
193
+ #: admin/admin.php:347
194
+ msgid "Start daily counts from midnight:"
195
+ msgstr ""
196
+
197
+ #: admin/admin.php:350
198
+ msgid ""
199
+ "Daily counter will display number of visits from midnight. This option is checked by "
200
+ "default and mimics the way most normal counters work. Turning this off will allow you to "
201
+ "use the hourly setting in the next option."
202
+ msgstr ""
203
+
204
+ #: admin/admin.php:354
205
+ msgid "Daily popular contains top posts over:"
206
+ msgstr ""
207
+
208
+ #: admin/admin.php:356
209
+ msgid "day(s)"
210
+ msgstr ""
211
+
212
+ #: admin/admin.php:357
213
+ msgid "hour(s)"
214
+ msgstr ""
215
+
216
+ #: admin/admin.php:358
217
+ msgid ""
218
+ "Think of Daily Popular has a custom date range applied as a global setting. Instead of "
219
+ "displaying popular posts from the past day, this setting lets you display posts for as "
220
+ "many days or as few hours as you want. This can be overridden in the widget."
221
+ msgstr ""
222
+
223
+ #: admin/admin.php:362
224
  msgid "Link to Top 10 plugin page"
225
  msgstr ""
226
 
227
+ #: admin/admin.php:365
228
  #, fuzzy
229
  msgid "A link to the plugin is added as an extra list item to the list of popular posts"
230
  msgstr ""
231
  "प्लगइन के लिए एक कड़ी लोकप्रिय पदों की सूची के लिए एक अतिरिक्त सूची आइटम के रूप में जोड़ा है. नहीं अनिवार्य "
232
  "है, लेकिन धन्यवाद यदि तुम इसे करो!"
233
 
234
+ #: admin/admin.php:370 admin/admin.php:475 admin/admin.php:670 admin/admin.php:833
235
+ #: admin/admin.php:899 admin/admin.php:976
236
  #, fuzzy
237
  msgid "Save Options"
238
  msgstr "विकल्प हैं:"
239
 
240
+ #: admin/admin.php:405
241
  #, fuzzy
242
  msgid "Display number of views on:"
243
  msgstr "पदों पर विचारों के प्रदर्शन की संख्या?"
244
 
245
+ #: admin/admin.php:407
246
  msgid "Posts"
247
  msgstr ""
248
 
249
+ #: admin/admin.php:408
250
  #, fuzzy
251
  msgid "Pages"
252
  msgstr "पृष्ठ"
253
 
254
+ #: admin/admin.php:409
255
  msgid "Home page"
256
  msgstr ""
257
 
258
+ #: admin/admin.php:410
259
  msgid "Feeds"
260
  msgstr ""
261
 
262
+ #: admin/admin.php:411
263
  msgid "Category archives"
264
  msgstr ""
265
 
266
+ #: admin/admin.php:412
267
  msgid "Tag archives"
268
  msgstr ""
269
 
270
+ #: admin/admin.php:413
271
  msgid "Other archives"
272
  msgstr ""
273
 
274
+ #: admin/admin.php:414
275
  msgid ""
276
  "If you choose to disable this, please add <code>&lt;?php if ( function_exists "
277
  "( 'echo_tptn_post_count' ) ) echo_tptn_post_count(); ?&gt;</code> to your template file "
278
  "where you want it displayed"
279
  msgstr ""
280
 
281
+ #: admin/admin.php:418
282
  #, fuzzy
283
  msgid "Format to display the post views:"
284
  msgstr "प्रारूप में गिनती प्रदर्शित करने के लिए:"
285
 
286
+ #: admin/admin.php:421
287
  msgid ""
288
  "Use <code>%totalcount%</code> to display the total count, <code>%dailycount%</code> to "
289
  "display the daily count and <code>%overallcount%</code> to display the overall count "
291
  "23 visits today]</code>"
292
  msgstr ""
293
 
294
+ #: admin/admin.php:425
295
  msgid "What do display when there are no visits?"
296
  msgstr ""
297
 
298
+ #: admin/admin.php:428
299
  msgid ""
300
  "This text applies only when there are 0 hits for the post and it isn't a single page. e.g. "
301
  "if you display post views on the homepage or archives then this text will be used. To "
302
  "override this, just enter the same text as above option."
303
  msgstr ""
304
 
305
+ #: admin/admin.php:432
306
  msgid "Always display latest post count"
307
  msgstr ""
308
 
309
+ #: admin/admin.php:435
310
  msgid ""
311
  "This option uses JavaScript and will increase your page load time. Turn this off if you "
312
  "are not using caching plugins or are OK with displaying older cached counts."
313
  msgstr ""
314
 
315
+ #: admin/admin.php:439
316
  msgid "Track visits of authors on their own posts?"
317
  msgstr "ट्रैक लेखक के अपने पदों पर यात्रा?"
318
 
319
+ #: admin/admin.php:442
320
  msgid "Disabling this option will stop authors visits tracked on their own posts"
321
  msgstr ""
322
 
323
+ #: admin/admin.php:446
324
  #, fuzzy
325
  msgid "Track visits of admins?"
326
  msgstr "ट्रैक लेखक के अपने पदों पर यात्रा?"
327
 
328
+ #: admin/admin.php:449
329
  msgid "Disabling this option will stop admin visits being tracked."
330
  msgstr ""
331
 
332
+ #: admin/admin.php:453
333
  #, fuzzy
334
  msgid "Track visits of Editors?"
335
  msgstr "ट्रैक लेखक के अपने पदों पर यात्रा?"
336
 
337
+ #: admin/admin.php:456
338
  msgid "Disabling this option will stop editor visits being tracked."
339
  msgstr ""
340
 
341
+ #: admin/admin.php:460
342
  msgid "Display page views on Posts and Pages in Admin"
343
  msgstr ""
344
 
345
+ #: admin/admin.php:463
346
  msgid ""
347
  "Adds three columns called Total Views, Today's Views and Views to All Posts and All Pages"
348
  msgstr ""
349
 
350
+ #: admin/admin.php:467
351
  #, fuzzy
352
  msgid "Show number of views to non-admins"
353
  msgstr "पन्नों पर विचार के प्रदर्शन की संख्या?"
354
 
355
+ #: admin/admin.php:470
356
  msgid ""
357
  "If you disable this then non-admins won't see the above columns or view the independent "
358
  "pages with the top posts"
359
  msgstr ""
360
 
361
+ #: admin/admin.php:510
362
  msgid "Number of popular posts to display: "
363
  msgstr "लोकप्रिय पदों की संख्या प्रदर्शित करने के लिए:"
364
 
365
+ #: admin/admin.php:513
366
  msgid ""
367
  "Maximum number of posts that will be displayed in the list. This option is used if you "
368
  "don't specify the number of posts in the widget or shortcodes"
369
  msgstr ""
370
 
371
+ #: admin/admin.php:517
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
372
  msgid "Post types to include in results (including custom post types)"
373
  msgstr ""
374
 
375
+ #: admin/admin.php:529
376
  msgid "List of post or page IDs to exclude from the results: "
377
  msgstr ""
378
 
379
+ #: admin/admin.php:531 admin/admin.php:638
380
  msgid "Enter comma separated list of IDs. e.g. 188,320,500"
381
  msgstr ""
382
 
383
+ #: admin/admin.php:535
384
  msgid "Exclude Categories: "
385
  msgstr ""
386
 
387
+ #: admin/admin.php:550
388
  msgid ""
389
  "Comma separated list of category slugs. The field above has an autocomplete so simply "
390
  "start typing in the starting letters and it will prompt you with options"
391
  msgstr ""
392
 
393
+ #: admin/admin.php:555
394
  msgid "Title of popular posts: "
395
  msgstr "लोकप्रिय पदों का शीर्षक:"
396
 
397
+ #: admin/admin.php:561
398
  msgid "Title of daily popular posts: "
399
  msgstr "दैनिक लोकप्रिय पदों का शीर्षक:"
400
 
401
+ #: admin/admin.php:567
402
  msgid "When there are no posts, what should be shown?"
403
  msgstr ""
404
 
405
+ #: admin/admin.php:571
406
  msgid "Blank Output"
407
  msgstr ""
408
 
409
+ #: admin/admin.php:575
410
  msgid "Display:"
411
  msgstr ""
412
 
413
+ #: admin/admin.php:580
414
  msgid "Show post excerpt in list?"
415
  msgstr ""
416
 
417
+ #: admin/admin.php:586
418
  msgid "Length of excerpt (in words): "
419
  msgstr ""
420
 
421
+ #: admin/admin.php:592
422
  msgid "Show post author in list?"
423
  msgstr ""
424
 
425
+ #: admin/admin.php:598
426
  msgid "Show post date in list?"
427
  msgstr ""
428
 
429
+ #: admin/admin.php:604
430
  msgid "Limit post title length (in characters)"
431
  msgstr ""
432
 
433
+ #: admin/admin.php:610
434
  msgid "Show view count in list?"
435
  msgstr ""
436
 
437
+ #: admin/admin.php:616
438
  msgid "Always display latest post count in the daily lists?"
439
  msgstr ""
440
 
441
+ #: admin/admin.php:619
442
  msgid ""
443
  "This option uses JavaScript and will increase your page load time. When you enable this "
444
  "option, the daily widget will not use the options set there, but options will need to be "
445
  "set on this screen."
446
  msgstr ""
447
 
448
+ #: admin/admin.php:623
449
  msgid "Open links in new window"
450
  msgstr ""
451
 
452
+ #: admin/admin.php:629
453
  msgid "Add nofollow attribute to links in the list"
454
  msgstr ""
455
 
456
+ #: admin/admin.php:635
457
  msgid "Exclude display of related posts on these posts / pages"
458
  msgstr ""
459
 
460
+ #: admin/admin.php:642
461
  msgid "Customise the list HTML"
462
  msgstr ""
463
 
464
+ #: admin/admin.php:645
465
  msgid "HTML to display before the list of posts: "
466
  msgstr ""
467
 
468
+ #: admin/admin.php:651
469
  msgid "HTML to display before each list item: "
470
  msgstr ""
471
 
472
+ #: admin/admin.php:657
473
  #, fuzzy
474
  msgid "HTML to display after each list item: "
475
  msgstr "प्रारूप में गिनती प्रदर्शित करने के लिए:"
476
 
477
+ #: admin/admin.php:663
478
  msgid "HTML to display after the list of posts: "
479
  msgstr ""
480
 
481
+ #: admin/admin.php:704
482
  msgid "Location of post thumbnail:"
483
  msgstr ""
484
 
485
+ #: admin/admin.php:708
486
  #, fuzzy
487
  msgid "Display thumbnails inline with posts, before title"
488
  msgstr "पदों पर विचारों के प्रदर्शन की संख्या?"
489
 
490
+ #: admin/admin.php:713
491
  #, fuzzy
492
  msgid "Display thumbnails inline with posts, after title"
493
  msgstr "पदों पर विचारों के प्रदर्शन की संख्या?"
494
 
495
+ #: admin/admin.php:718
496
  msgid "Display only thumbnails, no text"
497
  msgstr ""
498
 
499
+ #: admin/admin.php:723
500
  msgid "Do not display thumbnails, only text."
501
  msgstr ""
502
 
503
+ #: admin/admin.php:727
504
  msgid "Thumbnail size:"
505
  msgstr ""
506
 
507
+ #: admin/admin.php:751
508
  msgid "Custom size"
509
  msgstr ""
510
 
511
+ #: admin/admin.php:754
512
  msgid ""
513
  "You can choose from existing image sizes above or create a custom size. If you have chosen "
514
  "Custom size above, then enter the width, height and crop settings below. For best results, "
515
  "use a cropped image."
516
  msgstr ""
517
 
518
+ #: admin/admin.php:755
519
  msgid ""
520
  "If you change the width and/or height below, existing images will not be automatically "
521
  "resized."
522
  msgstr ""
523
 
524
+ #: admin/admin.php:756
525
  #, php-format
526
  msgid ""
527
  "I recommend using <a href='%s' target='_blank'>Force Regenerate Thumbnails</a> or <a "
528
  "href='%s' target='_blank'>Force Regenerate Thumbnails</a> to regenerate all image sizes."
529
  msgstr ""
530
 
531
+ #: admin/admin.php:759
532
  msgid "Width of custom thumbnail:"
533
  msgstr ""
534
 
535
+ #: admin/admin.php:764
536
  msgid "Height of custom thumbnail"
537
  msgstr ""
538
 
539
+ #: admin/admin.php:769
540
  msgid "Crop mode:"
541
  msgstr ""
542
 
543
+ #: admin/admin.php:773
544
  msgid ""
545
  "By default, thumbnails will be proportionately cropped. Check this box to hard crop the "
546
  "thumbnails."
547
  msgstr ""
548
 
549
+ #: admin/admin.php:774
550
  #, php-format
551
  msgid "<a href='%s' target='_blank'>Difference between soft and hard crop</a>"
552
  msgstr ""
553
 
554
+ #: admin/admin.php:776
555
  msgid ""
556
  "Since you're using the default styles set under the Custom Styles section, the width and "
557
  "height is fixed at 65px and crop mode is enabled."
558
  msgstr ""
559
 
560
+ #: admin/admin.php:781
561
  msgid "Style attributes / Width and Height HTML attributes:"
562
  msgstr ""
563
 
564
+ #: admin/admin.php:785
565
  msgid "Style attributes are used for width and height."
566
  msgstr ""
567
 
568
+ #: admin/admin.php:790
569
  msgid "HTML width and height attributes are used for width and height."
570
  msgstr ""
571
 
572
+ #: admin/admin.php:794
573
  msgid "Use timthumb to generate thumbnails? "
574
  msgstr ""
575
 
576
+ #: admin/admin.php:797
577
  msgid ""
578
  "If checked, <a href=\"http://www.binarymoon.co.uk/projects/timthumb/\" target=\"_blank"
579
  "\">timthumb</a> will be used to generate thumbnails"
580
  msgstr ""
581
 
582
+ #: admin/admin.php:800
583
  msgid "Quality of thumbnails generated by timthumb:"
584
  msgstr ""
585
 
586
+ #: admin/admin.php:803
587
  msgid ""
588
  "Enter values between 0 and 100 only. 100 is highest quality and the highest file size. "
589
  "Suggested maximum value is 95. Default is 75."
590
  msgstr ""
591
 
592
+ #: admin/admin.php:806
593
  msgid "Post thumbnail meta field name: "
594
  msgstr ""
595
 
596
+ #: admin/admin.php:809
597
  msgid ""
598
  "The value of this field should contain the image source and is set in the <em>Add New "
599
  "Post</em> screen"
600
  msgstr ""
601
 
602
+ #: admin/admin.php:812
603
  msgid ""
604
  "If the postmeta is not set, then should the plugin extract the first image from the post?"
605
  msgstr ""
606
 
607
+ #: admin/admin.php:815
608
  msgid ""
609
  "This could slow down the loading of your page if the first image in the related posts is "
610
  "large in file-size"
611
  msgstr ""
612
 
613
+ #: admin/admin.php:818
614
  msgid "Use default thumbnail? "
615
  msgstr ""
616
 
617
+ #: admin/admin.php:821
618
  msgid ""
619
  "If checked, when no thumbnail is found, show a default one from the URL below. If not "
620
  "checked and no thumbnail is found, no image will be shown."
621
  msgstr ""
622
 
623
+ #: admin/admin.php:824
624
  msgid "Default thumbnail: "
625
  msgstr ""
626
 
627
+ #: admin/admin.php:828
628
  msgid ""
629
  "The plugin will first check if the post contains a thumbnail. If it doesn't then it will "
630
  "check the meta field. If this is not available, then it will show the default image as "
631
  "specified above"
632
  msgstr ""
633
 
634
+ #: admin/admin.php:852
635
  msgid "Custom CSS"
636
  msgstr ""
637
 
638
+ #: admin/admin.php:867
639
  msgid "Use default style included in the plugin?"
640
  msgstr ""
641
 
642
+ #: admin/admin.php:870
643
  msgid ""
644
  "Top 10 includes a default style that makes your popular posts list to look beautiful. "
645
  "Check the box above if you want to use this."
646
  msgstr ""
647
 
648
+ #: admin/admin.php:871
649
  msgid ""
650
  "Enabling this option will turn on the thumbnails and set their width and height to 65px. "
651
  "It will also turn off the display of the author, excerpt and date if already enabled. "
652
  "Disabling this option will not revert any settings."
653
  msgstr ""
654
 
655
+ #: admin/admin.php:872
656
  #, php-format
657
  msgid "You can view the default style at <a href=\"%1$s\" target=\"_blank\">%1$s</a>"
658
  msgstr ""
659
 
660
+ #: admin/admin.php:875
661
  msgid "Custom CSS to add to header:"
662
  msgstr ""
663
 
664
+ #: admin/admin.php:880
665
  msgid ""
666
  "Do not include <code>style</code> tags. Check out the <a href=\"http://wordpress.org/"
667
  "extend/plugins/top-10/faq/\" target=\"_blank\">FAQ</a> for available CSS classes to style."
668
  msgstr ""
669
 
670
+ #: admin/admin.php:900
671
  #, fuzzy
672
  msgid "Default Options"
673
  msgstr "विकल्प हैं:"
674
 
675
+ #: admin/admin.php:900
676
  msgid "Do you want to set options to Default?"
677
  msgstr "क्या आप डिफ़ॉल्ट विकल्प सेट करना चाहते हैं?"
678
 
679
+ #: admin/admin.php:924
680
  msgid ""
681
  "Over time the Daily Top 10 database grows in size, which reduces the performance of the "
682
  "plugin. Cleaning the database at regular intervals could improve performance, especially "
684
  "90 days."
685
  msgstr ""
686
 
687
+ #: admin/admin.php:925
688
  msgid ""
689
  "Note: When scheduled maintenance is enabled, WordPress will run the cron job everytime the "
690
  "job is rescheduled (i.e. you change the settings below)."
691
  msgstr ""
692
 
693
+ #: admin/admin.php:928
694
  msgid "Enable scheduled maintenance of daily tables:"
695
  msgstr ""
696
 
697
+ #: admin/admin.php:932
698
  msgid "Time to run maintenance"
699
  msgstr ""
700
 
701
+ #: admin/admin.php:933
702
  msgid "hrs"
703
  msgstr ""
704
 
705
+ #: admin/admin.php:933
706
  msgid "min"
707
  msgstr ""
708
 
709
+ #: admin/admin.php:935
710
  msgid "How often should the maintenance be run:"
711
  msgstr ""
712
 
713
+ #: admin/admin.php:939
714
  msgid "Daily"
715
  msgstr ""
716
 
717
+ #: admin/admin.php:943
718
  msgid "Weekly"
719
  msgstr ""
720
 
721
+ #: admin/admin.php:947
722
  msgid "Fortnightly"
723
  msgstr ""
724
 
725
+ #: admin/admin.php:951
726
  msgid "Monthly"
727
  msgstr ""
728
 
729
+ #: admin/admin.php:960
730
  msgid "The cron job has been scheduled. Maintenance will run "
731
  msgstr ""
732
 
733
+ #: admin/admin.php:965
734
  msgid "The cron job is missing. Please resave this page to add the job"
735
  msgstr ""
736
 
737
+ #: admin/admin.php:970
738
  msgid "Maintenance is turned off"
739
  msgstr ""
740
 
741
+ #: admin/admin.php:984
742
  msgid "Reset count"
743
  msgstr ""
744
 
745
+ #: admin/admin.php:987
746
  msgid ""
747
  "This cannot be reversed. Make sure that your database has been backed up before proceeding"
748
  msgstr ""
749
 
750
+ #: admin/admin.php:990
751
  #, fuzzy
752
  msgid "Reset Popular Posts"
753
  msgstr "लोकप्रिय पोस्ट्स "
754
 
755
+ #: admin/admin.php:990
756
  msgid "Are you sure you want to reset the popular posts?"
757
  msgstr ""
758
 
759
+ #: admin/admin.php:991
760
  #, fuzzy
761
  msgid "Reset Daily Popular Posts"
762
  msgstr "दैनिक लोकप्रिय पोस्ट्स "
763
 
764
+ #: admin/admin.php:991
765
  msgid "Are you sure you want to reset the daily popular posts?"
766
  msgstr ""
767
 
768
+ #: admin/admin.php:992
769
  msgid "Clear duplicates"
770
  msgstr ""
771
 
772
+ #: admin/admin.php:992
773
  msgid "This will delete the duplicate entries in the tables. Proceed?"
774
  msgstr ""
775
 
776
+ #: admin/admin.php:1005
777
  msgid "WordPress Multisite: Migrate Top 10 v1.x counts to 2.x"
778
  msgstr ""
779
 
780
+ #: admin/admin.php:1008
781
  msgid ""
782
  "If you've been using Top 10 v1.x on multisite, you would have needed to activate the "
783
  "plugin independently for each site. This would have resulted in two tables being created "
784
+ "for each site in the network."
 
 
785
  msgstr ""
786
 
787
+ #: admin/admin.php:1009
788
+ msgid ""
789
+ "Top 10 v2.x onwards uses only a single table to record the count, keeping your database "
790
+ "clean. You can use this tool to import the recorded counts from v1.x tables to the new v2."
791
+ "x table format."
792
+ msgstr ""
793
+
794
+ #: admin/admin.php:1012
795
  msgid ""
796
  "If you do not see any tables below, then it means that either all data has already been "
797
  "imported or no relevant information has been found."
798
  msgstr ""
799
 
800
+ #: admin/admin.php:1015
801
+ msgid ""
802
+ "After running the importer, please verify that all the counts have been successfully "
803
+ "imported. Only then should you delete any old tables!"
804
+ msgstr ""
805
+
806
+ #: admin/admin.php:1049
807
  msgid "Blog ID"
808
  msgstr ""
809
 
810
+ #: admin/admin.php:1052
811
  msgid "Status"
812
  msgstr ""
813
 
814
+ #: admin/admin.php:1055
815
  msgid "Select to import"
816
  msgstr ""
817
 
818
+ #: admin/admin.php:1065
819
  msgid "Blog #"
820
  msgstr ""
821
 
822
+ #: admin/admin.php:1075
823
  msgid "Not imported"
824
  msgstr ""
825
 
826
+ #: admin/admin.php:1079
827
  msgid "Imported"
828
  msgstr ""
829
 
830
+ #: admin/admin.php:1100
831
  msgid "Begin import"
832
  msgstr ""
833
 
834
+ #: admin/admin.php:1101
835
  msgid "Delete selected tables"
836
  msgstr ""
837
 
838
+ #: admin/admin.php:1102
839
  msgid "Delete all imported tables"
840
  msgstr ""
841
 
842
+ #: admin/admin.php:1159 admin/admin.php:1255
843
  msgid "Daily Popular Posts"
844
  msgstr "दैनिक लोकप्रिय पोस्ट्स "
845
 
846
+ #: admin/admin.php:1189
847
  #, fuzzy
848
  msgid "Support the development"
849
  msgstr "समर्थन विकास"
850
 
851
+ #: admin/admin.php:1196
852
  msgid "Donation for Top 10"
853
  msgstr ""
854
 
855
+ #: admin/admin.php:1198
856
  msgid "Enter amount in USD: "
857
  msgstr ""
858
 
859
+ #: admin/admin.php:1202
860
  msgid "Send your donation to the author of Top 10"
861
  msgstr ""
862
 
863
+ #: admin/admin.php:1209
864
  msgid "Follow me"
865
  msgstr ""
866
 
867
+ #: admin/admin.php:1219
868
  msgid "Quick links"
869
  msgstr ""
870
 
871
+ #: admin/admin.php:1223
872
  msgid "Top 10 plugin page"
873
  msgstr ""
874
 
875
+ #: admin/admin.php:1224
876
  msgid "Top 10 Github page"
877
  msgstr ""
878
 
879
+ #: admin/admin.php:1225
880
  msgid "Other plugins"
881
  msgstr ""
882
 
883
+ #: admin/admin.php:1226
884
  msgid "Ajay's blog"
885
  msgstr ""
886
 
887
+ #: admin/admin.php:1227
888
  msgid "FAQ"
889
  msgstr ""
890
 
891
+ #: admin/admin.php:1228 admin/admin.php:1386
892
  msgid "Support"
893
  msgstr ""
894
 
895
+ #: admin/admin.php:1229
896
  msgid "Reviews"
897
  msgstr ""
898
 
899
+ #: admin/admin.php:1252
900
  #, fuzzy
901
  msgid "Overall Popular Posts"
902
  msgstr "देखें दैनिक लोकप्रिय पोस्ट्स "
903
 
904
+ #: admin/admin.php:1363
905
  msgid "Settings"
906
  msgstr ""
907
 
908
+ #: admin/admin.php:1387
909
  msgid "Donate"
910
  msgstr ""
911
 
989
  msgid "Thumbnail width"
990
  msgstr ""
991
 
992
+ #: top-10.php:879
993
  msgid " by "
994
  msgstr ""
995
 
996
+ #: top-10.php:930
997
  #, php-format
998
  msgid "Popular posts by <a href=\"%s\" rel=\"nofollow\" %s>Top 10 plugin</a>"
999
  msgstr ""
1000
 
1001
+ #: top-10.php:1029
1002
  msgid "<h3>Popular Posts</h3>"
1003
  msgstr "<h3> लोकप्रिय पोस्ट्स </ h3>"
1004
 
1005
+ #: top-10.php:1030
1006
  msgid "<h3>Daily Popular</h3>"
1007
  msgstr "<h3> दैनिक लोकप्रिय </ h3>"
1008
 
1009
+ #: top-10.php:1031
1010
  #, fuzzy
1011
  msgid "No top posts yet"
1012
  msgstr "लोकप्रिय पदों का शीर्षक:"
1013
 
1014
+ #: top-10.php:1676
1015
  msgid "Once Weekly"
1016
  msgstr ""
1017
 
1018
+ #: top-10.php:1680
1019
  msgid "Once Fortnightly"
1020
  msgstr ""
1021
 
1022
+ #: top-10.php:1684
1023
  msgid "Once Monthly"
1024
  msgstr ""
1025
 
1026
+ #: top-10.php:1688
1027
  msgid "Once quarterly"
1028
  msgstr ""
1029
 
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: 2014-05-21 21:29-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"
@@ -16,430 +16,612 @@ msgstr ""
16
  "X-Poedit-SourceCharset: UTF-8\n"
17
  "X-Poedit-SearchPath-0: .\n"
18
 
19
- #: admin.inc.php:115
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
20
  msgid "Options saved successfully."
21
  msgstr "Le opzioni sono state salvate con successo."
22
 
23
- #: admin.inc.php:125
24
  msgid "Options set to Default."
25
  msgstr "Opzioni impostate alle predefinite."
26
 
27
- #: admin.inc.php:131
28
  msgid "Top 10 popular posts reset"
29
  msgstr "Ripristino 10 articoli più popolari"
30
 
31
- #: admin.inc.php:137
32
  msgid "Top 10 daily popular posts reset"
33
  msgstr "Ripristino 10 articoli più popolari del giorno"
34
 
35
- #: admin.inc.php:144
36
  msgid "Duplicate rows cleaned from tables"
37
  msgstr ""
38
 
39
- #: admin.inc.php:156
40
  msgid "Scheduled maintenance enabled / modified"
41
  msgstr ""
42
 
43
- #: admin.inc.php:160
44
  msgid "Scheduled maintenance disabled"
45
  msgstr ""
46
 
47
- #: admin.inc.php:175 admin.inc.php:297 admin.inc.php:458 admin.inc.php:487
48
- #: admin.inc.php:551 admin.inc.php:644 admin.inc.php:664 admin.inc.php:674
49
- msgid "Click to toggle"
50
  msgstr ""
51
 
52
- #: admin.inc.php:176
 
 
 
 
 
 
 
 
 
 
 
53
  msgid "General options"
54
  msgstr ""
55
 
56
- #: admin.inc.php:180
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
57
  msgid "Enable Overall stats"
58
  msgstr ""
59
 
60
- #: admin.inc.php:185
61
  msgid "Enable Daily stats"
62
  msgstr ""
63
 
64
- #: admin.inc.php:190
65
- msgid "W3 Total Cache fix:"
66
  msgstr ""
67
 
68
- #: admin.inc.php:192
69
  msgid ""
70
- "This will try to prevent W3 Total Cache from caching the addcount script of "
71
- "the plugin. Try toggling this option in case you find that our posts are not "
72
- "tracked."
73
  msgstr ""
74
 
75
- #: admin.inc.php:196
76
- msgid "Number of popular posts to display: "
77
- msgstr "Numero degli articoli più popolari da mostrare:"
78
 
79
- #: admin.inc.php:198
80
  msgid ""
81
- "Maximum number of posts that will be displayed in the list. This option is "
82
- "used if you don't specify the number of posts in the widget or shortcodes"
 
83
  msgstr ""
84
 
85
- #: admin.inc.php:202
86
- msgid "Daily Popular should contain views of how many days? "
87
  msgstr ""
88
- "Quanti giorni desideri siano considerati per il computo delle "
89
- "visualizzazioni per articoli più popolari del giorno?"
90
 
91
- #: admin.inc.php:204
92
- msgid ""
93
- "Instead of displaying popular posts fromt he past day, this setting lets you "
94
- "display posts for as many days as you want. This can be overridden in the "
95
- "widget."
96
  msgstr ""
97
 
98
- #: admin.inc.php:207
99
- msgid "Post types to include in results (including custom post types)"
100
  msgstr ""
101
 
102
- #: admin.inc.php:218
103
- msgid "List of post or page IDs to exclude from the results: "
 
 
 
 
104
  msgstr ""
105
 
106
- #: admin.inc.php:220 admin.inc.php:361
107
- msgid "Enter comma separated list of IDs. e.g. 188,320,500"
108
  msgstr ""
109
 
110
- #: admin.inc.php:224
111
- msgid "Exclude Categories: "
112
- msgstr "Escludi categorie:"
113
-
114
- #: admin.inc.php:239
115
  msgid ""
116
- "Comma separated list of category slugs. The field above has an autocomplete "
117
- "so simply start typing in the starting letters and it will prompt you with "
118
- "options"
119
  msgstr ""
 
 
 
120
 
121
- #: admin.inc.php:244
 
 
 
 
 
 
122
  #, fuzzy
123
  msgid "Display number of views on:"
124
  msgstr "Desideri mostrare il numero delle visualizzazioni negli articoli?"
125
 
126
- #: admin.inc.php:246
127
  msgid "Posts"
128
  msgstr ""
129
 
130
- #: admin.inc.php:247
131
  #, fuzzy
132
  msgid "Pages"
133
  msgstr "Pagina"
134
 
135
- #: admin.inc.php:248
136
  msgid "Home page"
137
  msgstr ""
138
 
139
- #: admin.inc.php:249
140
  msgid "Feeds"
141
  msgstr ""
142
 
143
- #: admin.inc.php:250
144
  msgid "Category archives"
145
  msgstr ""
146
 
147
- #: admin.inc.php:251
148
  msgid "Tag archives"
149
  msgstr ""
150
 
151
- #: admin.inc.php:252
152
  msgid "Other archives"
153
  msgstr ""
154
 
155
- #: admin.inc.php:253
156
  msgid ""
157
  "If you choose to disable this, please add <code>&lt;?php if "
158
  "( function_exists ( 'echo_tptn_post_count' ) ) echo_tptn_post_count(); ?&gt;"
159
  "</code> to your template file where you want it displayed"
160
  msgstr ""
161
 
162
- #: admin.inc.php:256
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
163
  msgid "Always display latest post count"
164
  msgstr ""
165
 
166
- #: admin.inc.php:258
167
  msgid ""
168
  "This option uses JavaScript and will increase your page load time. Turn this "
169
  "off if you are not using caching plugins or are OK with displaying older "
170
  "cached counts."
171
  msgstr ""
172
 
173
- #: admin.inc.php:261
174
  msgid "Track visits of authors on their own posts?"
175
  msgstr ""
176
  "Desideri che vengano conteggiate anche le visite da parte dell'amministatore "
177
  "del sito?"
178
 
179
- #: admin.inc.php:263
180
  msgid ""
181
  "Disabling this option will stop authors visits tracked on their own posts"
182
  msgstr ""
183
 
184
- #: admin.inc.php:266
185
  #, fuzzy
186
  msgid "Track visits of admins?"
187
  msgstr ""
188
  "Desideri che vengano conteggiate anche le visite da parte dell'amministatore "
189
  "del sito?"
190
 
191
- #: admin.inc.php:268
192
  msgid "Disabling this option will stop admin visits being tracked."
193
  msgstr ""
194
 
195
- #: admin.inc.php:271
196
  #, fuzzy
197
  msgid "Track visits of Editors?"
198
  msgstr ""
199
  "Desideri che vengano conteggiate anche le visite da parte dell'amministatore "
200
  "del sito?"
201
 
202
- #: admin.inc.php:273
203
  msgid "Disabling this option will stop editor visits being tracked."
204
  msgstr ""
205
 
206
- #: admin.inc.php:276
207
  msgid "Display page views on Posts and Pages in Admin"
208
  msgstr ""
209
 
210
- #: admin.inc.php:279
211
  msgid ""
212
  "Adds three columns called Total Views, Today's Views and Views to All Posts "
213
  "and All Pages"
214
  msgstr ""
215
 
216
- #: admin.inc.php:282
217
  #, fuzzy
218
  msgid "Show number of views to non-admins"
219
  msgstr "Desideri mostrare il numero delle visualizzazioni nelle pagine?"
220
 
221
- #: admin.inc.php:285
222
  msgid ""
223
  "If you disable this then non-admins won't see the above columns or view the "
224
  "independent pages with the top posts"
225
  msgstr ""
226
 
227
- #: admin.inc.php:288
228
- msgid "Link to Top 10 plugin page"
229
- msgstr ""
230
 
231
- #: admin.inc.php:291
232
- #, fuzzy
233
  msgid ""
234
- "A link to the plugin is added as an extra list item to the list of popular "
235
- "posts"
236
  msgstr ""
237
- "Nella lista dei tuoi articoli più popolari é stato aggiunto un link alla "
238
- "pagina del plugin. Ti sarei molto grato qualora non disattivassi questa "
239
- "opzione!"
240
 
241
- #: admin.inc.php:298
242
- #, fuzzy
243
- msgid "Output options"
244
- msgstr "Opzioni output:"
245
-
246
- #: admin.inc.php:301
247
- #, fuzzy
248
- msgid "Format to display the post views:"
249
- msgstr "Formato per il conteggio:"
250
 
251
- #: admin.inc.php:303
252
- #, fuzzy
253
- msgid ""
254
- "Use <code>%totalcount%</code> to display the total count, <code>%dailycount"
255
- "%</code> to display the daily count and <code>%overallcount%</code> to "
256
- "display the overall count across all posts on the blog. e.g. the default "
257
- "options displays <code>(Visited 123 times, 23 visits today)</code>"
258
  msgstr ""
259
- "Utilizza <code>%totalcount%</code> per potere mostrare il computo totale e "
260
- "<code>%dailycount%</code> per visualizzare quello del giorno corrente. Ad "
261
- "esempio, le opzioni predefinite verranno mostrate online con un <code>(letto "
262
- "123 volte, 23 visite odierne)</code>"
263
 
264
- #: admin.inc.php:306
265
- msgid "What do display when there are no visits?"
266
  msgstr ""
267
 
268
- #: admin.inc.php:308
 
 
 
 
269
  msgid ""
270
- "This text applies only when there are 0 hits for the post and it isn't a "
271
- "single page. e.g. if you display post views on the homepage or archives then "
272
- "this text will be used. To override this, just enter the same text as above "
273
- "option."
274
  msgstr ""
275
 
276
- #: admin.inc.php:311
277
  msgid "Title of popular posts: "
278
  msgstr "Titolo per gli articoli più popolari:"
279
 
280
- #: admin.inc.php:314
281
  msgid "Title of daily popular posts: "
282
  msgstr "Titolo per gli articoli più popolari del giorno:"
283
 
284
- #: admin.inc.php:317
285
  msgid "When there are no posts, what should be shown?"
286
  msgstr ""
287
 
288
- #: admin.inc.php:321
289
  msgid "Blank Output"
290
  msgstr ""
291
 
292
- #: admin.inc.php:325
293
  msgid "Display:"
294
  msgstr ""
295
 
296
- #: admin.inc.php:329
297
  msgid "Show post excerpt in list?"
298
  msgstr "Desideri mostrare gli estratti?"
299
 
300
- #: admin.inc.php:332
301
  msgid "Length of excerpt (in words): "
302
  msgstr "Lunghezza estratto (in parole):"
303
 
304
- #: admin.inc.php:335
305
  #, fuzzy
306
  msgid "Show post author in list?"
307
  msgstr "Desideri mostrare gli estratti?"
308
 
309
- #: admin.inc.php:338
310
  #, fuzzy
311
  msgid "Show post date in list?"
312
  msgstr "Desideri mostrare gli estratti?"
313
 
314
- #: admin.inc.php:341
315
  msgid "Limit post title length (in characters)"
316
  msgstr ""
317
 
318
- #: admin.inc.php:344
319
  #, fuzzy
320
  msgid "Show view count in list?"
321
  msgstr "Desideri mostrare gli estratti?"
322
 
323
- #: admin.inc.php:347
324
  msgid "Always display latest post count in the daily lists?"
325
  msgstr ""
326
 
327
- #: admin.inc.php:349
328
  msgid ""
329
  "This option uses JavaScript and will increase your page load time. When you "
330
  "enable this option, the daily widget will not use the options set there, but "
331
  "options will need to be set on this screen."
332
  msgstr ""
333
 
334
- #: admin.inc.php:352
335
  msgid "Open links in new window"
336
  msgstr ""
337
 
338
- #: admin.inc.php:355
339
  msgid "Add nofollow attribute to links in the list"
340
  msgstr ""
341
 
342
- #: admin.inc.php:358
343
  msgid "Exclude display of related posts on these posts / pages"
344
  msgstr ""
345
 
346
- #: admin.inc.php:364
347
  #, fuzzy
348
  msgid "Customise the list HTML"
349
  msgstr "Personalizzazione output:"
350
 
351
- #: admin.inc.php:366
352
  msgid "HTML to display before the list of posts: "
353
  msgstr "HTML da mostrare davanti alla lista degli articoli:"
354
 
355
- #: admin.inc.php:369
356
  msgid "HTML to display before each list item: "
357
  msgstr "HTML da mostrare davanti ad ogni singola lista:"
358
 
359
- #: admin.inc.php:372
360
  msgid "HTML to display after each list item: "
361
  msgstr "HTML da mostrare dopo ogni lista:"
362
 
363
- #: admin.inc.php:375
364
  msgid "HTML to display after the list of posts: "
365
  msgstr "HTML da mostrare dopo la lista degli articoli:"
366
 
367
- #: admin.inc.php:378
368
- msgid "Post thumbnail options:"
369
- msgstr "Opzioni miniature articolo:"
370
-
371
- #: admin.inc.php:380
372
  msgid "Location of post thumbnail:"
373
  msgstr ""
374
 
375
- #: admin.inc.php:384
376
  msgid "Display thumbnails inline with posts, before title"
377
  msgstr "Mostra gli articoli con le miniature inline prima del titolo"
378
 
379
- #: admin.inc.php:388
380
  msgid "Display thumbnails inline with posts, after title"
381
  msgstr "Mostra gli articoli con le miniature inline dopo il titolo"
382
 
383
- #: admin.inc.php:392
384
  msgid "Display only thumbnails, no text"
385
  msgstr "Mostra le sole miniature, nessun testo"
386
 
387
- #: admin.inc.php:396
388
  msgid "Do not display thumbnails, only text."
389
  msgstr "Non mostrare le miniature, solo testo."
390
 
391
- #: admin.inc.php:400
392
- msgid "Width of the thumbnail: "
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
393
  msgstr ""
394
 
395
- #: admin.inc.php:403
396
- msgid "Height of the thumbnail: "
 
 
397
  msgstr ""
398
 
399
- #: admin.inc.php:406
400
  msgid "Style attributes / Width and Height HTML attributes:"
401
  msgstr ""
402
 
403
- #: admin.inc.php:410
404
  msgid "Style attributes are used for width and height."
405
  msgstr ""
406
 
407
- #: admin.inc.php:414
408
  msgid "HTML width and height attributes are used for width and height."
409
  msgstr ""
410
 
411
- #: admin.inc.php:418
412
  msgid "Use timthumb to generate thumbnails? "
413
  msgstr ""
414
 
415
- #: admin.inc.php:421
416
  msgid ""
417
  "If checked, <a href=\"http://www.binarymoon.co.uk/projects/timthumb/\" "
418
  "target=\"_blank\">timthumb</a> will be used to generate thumbnails"
419
  msgstr ""
420
 
421
- #: admin.inc.php:424
422
  msgid "Quality of thumbnails generated by timthumb:"
423
  msgstr ""
424
 
425
- #: admin.inc.php:427
426
  msgid ""
427
  "Enter values between 0 and 100 only. 100 is highest quality and the highest "
428
  "file size. Suggested maximum value is 95. Default is 75."
429
  msgstr ""
430
 
431
- #: admin.inc.php:430
432
  #, fuzzy
433
  msgid "Post thumbnail meta field name: "
434
  msgstr "Opzioni miniature articolo:"
435
 
436
- #: admin.inc.php:433
437
  msgid ""
438
  "The value of this field should contain the image source and is set in the "
439
  "<em>Add New Post</em> screen"
440
  msgstr ""
441
 
442
- #: admin.inc.php:436
443
  #, fuzzy
444
  msgid ""
445
  "If the postmeta is not set, then should the plugin extract the first image "
@@ -450,7 +632,7 @@ msgstr ""
450
  "tuo articolo nel caso in cui la prima immagine corelata fosse di grandi "
451
  "dimensioni"
452
 
453
- #: admin.inc.php:439
454
  #, fuzzy
455
  msgid ""
456
  "This could slow down the loading of your page if the first image in the "
@@ -461,11 +643,11 @@ msgstr ""
461
  "tuo articolo nel caso in cui la prima immagine corelata fosse di grandi "
462
  "dimensioni"
463
 
464
- #: admin.inc.php:442
465
  msgid "Use default thumbnail? "
466
  msgstr ""
467
 
468
- #: admin.inc.php:445
469
  msgid ""
470
  "If checked, when no thumbnail is found, show a default one from the URL "
471
  "below. If not checked and no thumbnail is found, no image will be shown."
@@ -473,11 +655,11 @@ msgstr ""
473
  "Se attiva, in assenza di miniatura ne mostrerà una predefinita da URL qui "
474
  "sotto. Se inattiva e senza miniatura, non verrà mostrata nessuna immagine."
475
 
476
- #: admin.inc.php:448
477
  msgid "Default thumbnail: "
478
  msgstr ""
479
 
480
- #: admin.inc.php:452
481
  #, fuzzy
482
  msgid ""
483
  "The plugin will first check if the post contains a thumbnail. If it doesn't "
@@ -489,52 +671,54 @@ msgstr ""
489
  "meta. Qualora non fosse disponibile, mostrerà l'immagine predefinita come "
490
  "specificato qui sotto:"
491
 
492
- #: admin.inc.php:459
493
  msgid "Custom CSS"
494
  msgstr ""
495
 
496
- #: admin.inc.php:462
497
  msgid "Use default style included in the plugin?"
498
  msgstr ""
499
 
500
- #: admin.inc.php:465
501
  msgid ""
502
  "Top 10 includes a default style that makes your popular posts list to look "
503
- "pretty. Check the box above if you want to use this. You will need to select "
504
- "<strong>Thumbnails inline, before title</strong> in Output Options or in the "
505
- "Widget."
 
 
 
 
 
 
 
 
 
 
 
506
  msgstr ""
507
 
508
- #: admin.inc.php:468
509
  msgid "Custom CSS to add to header:"
510
  msgstr ""
511
 
512
- #: admin.inc.php:471
513
  msgid ""
514
  "Do not include <code>style</code> tags. Check out the <a href=\"http://"
515
  "wordpress.org/extend/plugins/top-10/faq/\" target=\"_blank\">FAQ</a> for "
516
  "available CSS classes to style."
517
  msgstr ""
518
 
519
- #: admin.inc.php:478 admin.inc.php:544
520
- #, fuzzy
521
- msgid "Save Options"
522
- msgstr "Opzioni:"
523
-
524
- #: admin.inc.php:479
525
  #, fuzzy
526
  msgid "Default Options"
527
  msgstr "Opzioni output:"
528
 
529
- #: admin.inc.php:479
530
  msgid "Do you want to set options to Default?"
531
  msgstr "Desideri ripristinare alle predefinite?"
532
 
533
- #: admin.inc.php:488
534
- msgid "Maintenance"
535
- msgstr ""
536
-
537
- #: admin.inc.php:492
538
  msgid ""
539
  "Over time the Daily Top 10 database grows in size, which reduces the "
540
  "performance of the plugin. Cleaning the database at regular intervals could "
@@ -542,65 +726,65 @@ msgid ""
542
  "will automatically delete entries older than 90 days."
543
  msgstr ""
544
 
545
- #: admin.inc.php:493
546
  msgid ""
547
  "Note: When scheduled maintenance is enabled, WordPress will run the cron job "
548
  "everytime the job is rescheduled (i.e. you change the settings below)."
549
  msgstr ""
550
 
551
- #: admin.inc.php:496
552
  msgid "Enable scheduled maintenance of daily tables:"
553
  msgstr ""
554
 
555
- #: admin.inc.php:500
556
  msgid "Time to run maintenance"
557
  msgstr ""
558
 
559
- #: admin.inc.php:501
560
  msgid "hrs"
561
  msgstr ""
562
 
563
- #: admin.inc.php:501
564
  msgid "min"
565
  msgstr ""
566
 
567
- #: admin.inc.php:503
568
  msgid "How often should the maintenance be run:"
569
  msgstr ""
570
 
571
- #: admin.inc.php:507
572
  msgid "Daily"
573
  msgstr ""
574
 
575
- #: admin.inc.php:511
576
  msgid "Weekly"
577
  msgstr ""
578
 
579
- #: admin.inc.php:515
580
  msgid "Fortnightly"
581
  msgstr ""
582
 
583
- #: admin.inc.php:519
584
  msgid "Monthly"
585
  msgstr ""
586
 
587
- #: admin.inc.php:528
588
  msgid "The cron job has been scheduled. Maintenance will run "
589
  msgstr ""
590
 
591
- #: admin.inc.php:533
592
  msgid "The cron job is missing. Please resave this page to add the job"
593
  msgstr ""
594
 
595
- #: admin.inc.php:538
596
  msgid "Maintenance is turned off"
597
  msgstr ""
598
 
599
- #: admin.inc.php:552
600
  msgid "Reset count"
601
  msgstr "Ripristino conteggio"
602
 
603
- #: admin.inc.php:555
604
  msgid ""
605
  "This cannot be reversed. Make sure that your database has been backed up "
606
  "before proceeding"
@@ -608,301 +792,319 @@ msgstr ""
608
  "Questa operazione non é reversibile. Effettua il backup del database prima "
609
  "di procedere"
610
 
611
- #: admin.inc.php:558
612
  #, fuzzy
613
  msgid "Reset Popular Posts"
614
  msgstr "Gli articoli più popolari"
615
 
616
- #: admin.inc.php:558
617
  msgid "Are you sure you want to reset the popular posts?"
618
  msgstr "Sei certo di volere ripristinare gli articoli più popolari?"
619
 
620
- #: admin.inc.php:559
621
  #, fuzzy
622
  msgid "Reset Daily Popular Posts"
623
  msgstr "Gli articoli più popolari di oggi"
624
 
625
- #: admin.inc.php:559
626
  msgid "Are you sure you want to reset the daily popular posts?"
627
  msgstr "Sei certo di volere ripristinare gli articoli più popolari del giorno?"
628
 
629
- #: admin.inc.php:560
630
  msgid "Clear duplicates"
631
  msgstr ""
632
 
633
- #: admin.inc.php:560
634
  msgid "This will delete the duplicate entries in the tables. Proceed?"
635
  msgstr "Questa operazione cancelerà i duplicati dalle tabelle. Procedi?"
636
 
637
- #: admin.inc.php:612 admin.inc.php:1010
638
- msgid "Popular Posts"
639
- msgstr "Gli articoli più popolari"
640
 
641
- #: admin.inc.php:614 admin.inc.php:713
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
642
  msgid "Daily Popular Posts"
643
  msgstr "Gli articoli più popolari di oggi"
644
 
645
- #: admin.inc.php:645
646
  msgid "Support the development"
647
  msgstr "Sostieni lo sviluppo"
648
 
649
- #: admin.inc.php:652
650
  msgid "Donation for Top 10"
651
  msgstr ""
652
 
653
- #: admin.inc.php:654
654
  msgid "Enter amount in USD: "
655
  msgstr "Inserisci la cifra in USD: "
656
 
657
- #: admin.inc.php:658
658
  #, fuzzy
659
  msgid "Send your donation to the author of Top 10"
660
  msgstr "Invia la tua donazione all'autore di"
661
 
662
- #: admin.inc.php:665
663
  msgid "Follow me"
664
  msgstr ""
665
 
666
- #: admin.inc.php:675
667
  #, fuzzy
668
  msgid "Quick links"
669
  msgstr "Collegamenti veloci"
670
 
671
- #: admin.inc.php:679
672
  #, fuzzy
673
  msgid "Top 10 plugin page"
674
  msgstr "pagina plugin"
675
 
676
- #: admin.inc.php:680
 
 
 
 
677
  msgid "Other plugins"
678
  msgstr "Altri plugin"
679
 
680
- #: admin.inc.php:681
681
  msgid "Ajay's blog"
682
  msgstr "Il blog di Ajay"
683
 
684
- #: admin.inc.php:682
685
  msgid "FAQ"
686
  msgstr ""
687
 
688
- #: admin.inc.php:683 top-10.php:1345
689
  msgid "Support"
690
  msgstr "Supporto"
691
 
692
- #: admin.inc.php:684
693
  msgid "Reviews"
694
  msgstr ""
695
 
696
- #: admin.inc.php:704 admin.inc.php:707
697
- #, fuzzy
698
- msgid "Top 10 Settings"
699
- msgstr "Impostazioni"
700
-
701
- #: admin.inc.php:704 admin.inc.php:1183
702
- msgid "Top 10"
703
- msgstr "Top 10"
704
-
705
- #: admin.inc.php:710
706
  #, fuzzy
707
  msgid "Overall Popular Posts"
708
  msgstr "Visualizza panoramica articoli più popolari"
709
 
710
- #: admin.inc.php:882
711
- #, php-format
712
- msgid "Results %1$s to %2$s of %3$s"
713
- msgstr ""
714
-
715
- #: admin.inc.php:886
716
- #, php-format
717
- msgid "Page %s of %s"
718
- msgstr ""
719
-
720
- #: admin.inc.php:898
721
- msgid "View Daily Popular Posts"
722
- msgstr "Visualizza gli articoli più letti di oggi"
723
-
724
- #: admin.inc.php:901 admin.inc.php:914
725
- msgid "Results per-page:"
726
- msgstr "Risultati per pagina:"
727
-
728
- #: admin.inc.php:911
729
- msgid "View Overall Popular Posts"
730
- msgstr "Visualizza panoramica articoli più popolari"
731
-
732
- #: admin.inc.php:940
733
- msgid "Previous"
734
- msgstr "Precedente"
735
-
736
- #: admin.inc.php:968
737
- msgid "Next"
738
- msgstr "Successiva"
739
-
740
- #: admin.inc.php:1011
741
- msgid "Daily Popular"
742
- msgstr "I più letti di oggi"
743
-
744
- #: admin.inc.php:1029
745
- #, fuzzy
746
- msgid "Total Views"
747
- msgstr "Totale / Visualizzazioni odierne"
748
-
749
- #: admin.inc.php:1030
750
- #, fuzzy
751
- msgid "Today's Views"
752
- msgstr "Totale / Visualizzazioni odierne"
753
-
754
- #: admin.inc.php:1031
755
- #, fuzzy
756
- msgid "Views"
757
- msgstr "Totale / Visualizzazioni odierne"
758
-
759
- #: admin.inc.php:1217
760
- #, fuzzy
761
- msgid "Visit count:"
762
- msgstr "Ripristino conteggio"
763
-
764
- #: admin.inc.php:1219
765
- msgid ""
766
- "Enter a number above to update the visit count. Leaving the above box blank "
767
- "will set the count to zero"
768
- msgstr ""
769
-
770
- #: admin.inc.php:1229
771
- msgid "Location of thumbnail:"
772
- msgstr ""
773
-
774
- #: admin.inc.php:1231
775
- msgid ""
776
- "Enter the full URL to the image (JPG, PNG or GIF) you'd like to use. This "
777
- "image will be used for the post. It will be resized to the thumbnail size "
778
- "set under Settings &raquo; Related Posts &raquo; Output Options"
779
- msgstr ""
780
-
781
- #: admin.inc.php:1232
782
- msgid "The URL above is saved in the meta field: "
783
- msgstr ""
784
 
785
- #: top-10.php:456
786
- msgid " by "
787
- msgstr ""
788
 
789
- #: top-10.php:550
790
  #, fuzzy
791
  msgid "Popular Posts [Top 10]"
792
  msgstr "Gli articoli più popolari"
793
 
794
- #: top-10.php:551
795
  #, fuzzy
796
  msgid "Display popular posts"
797
  msgstr "Gli articoli più popolari di oggi"
798
 
799
- #: top-10.php:577
800
  msgid "Title"
801
  msgstr ""
802
 
803
- #: top-10.php:582
804
  msgid "No. of posts"
805
  msgstr ""
806
 
807
- #: top-10.php:587
808
  msgid "Overall"
809
  msgstr ""
810
 
811
- #: top-10.php:588
812
  msgid "Custom time period (Enter below)"
813
  msgstr ""
814
 
815
- #: top-10.php:593
816
- msgid "Range in number of days (applies only to custom option above)"
817
  msgstr ""
818
 
819
- #: top-10.php:598
 
 
 
 
 
 
 
 
820
  #, fuzzy
821
  msgid "Show count?"
822
  msgstr "Desideri mostrare gli estratti?"
823
 
824
- #: top-10.php:603
825
  #, fuzzy
826
  msgid "Show excerpt?"
827
  msgstr "Desideri mostrare gli estratti?"
828
 
829
- #: top-10.php:608
830
  #, fuzzy
831
  msgid "Show author?"
832
  msgstr "Desideri mostrare gli estratti?"
833
 
834
- #: top-10.php:613
835
  #, fuzzy
836
  msgid "Show date?"
837
  msgstr "Desideri mostrare gli estratti?"
838
 
839
- #: top-10.php:617
840
- #, fuzzy
841
- msgid "Thumbnail options"
842
- msgstr "Opzioni miniature articolo:"
843
-
844
- #: top-10.php:619
845
  #, fuzzy
846
  msgid "Thumbnails inline, before title"
847
  msgstr "Mostra gli articoli con le miniature inline prima del titolo"
848
 
849
- #: top-10.php:620
850
  #, fuzzy
851
  msgid "Thumbnails inline, after title"
852
  msgstr "Mostra gli articoli con le miniature inline dopo il titolo"
853
 
854
- #: top-10.php:621
855
  #, fuzzy
856
  msgid "Only thumbnails, no text"
857
  msgstr "Mostra le sole miniature, nessun testo"
858
 
859
- #: top-10.php:622
860
  #, fuzzy
861
  msgid "No thumbnails, only text."
862
  msgstr "Non mostrare le miniature, solo testo."
863
 
864
- #: top-10.php:627
865
  #, fuzzy
866
  msgid "Thumbnail height"
867
  msgstr "Opzioni miniature articolo:"
868
 
869
- #: top-10.php:632
870
  #, fuzzy
871
  msgid "Thumbnail width"
872
  msgstr "Opzioni miniature articolo:"
873
 
874
- #: top-10.php:772
 
 
 
 
 
 
 
 
 
875
  msgid "<h3>Popular Posts</h3>"
876
  msgstr "<h3>Articoli più letti</h3>"
877
 
878
- #: top-10.php:773
879
  msgid "<h3>Daily Popular</h3>"
880
  msgstr "<h3>I più letti di oggi</h3>"
881
 
882
- #: top-10.php:774
883
  #, fuzzy
884
  msgid "No top posts yet"
885
  msgstr "Ripristino 10 articoli più popolari"
886
 
887
- #: top-10.php:1245
888
  msgid "Once Weekly"
889
  msgstr ""
890
 
891
- #: top-10.php:1249
892
  msgid "Once Fortnightly"
893
  msgstr ""
894
 
895
- #: top-10.php:1253
896
  msgid "Once Monthly"
897
  msgstr ""
898
 
899
- #: top-10.php:1323
900
- msgid "Settings"
901
- msgstr "Impostazioni"
902
 
903
- #: top-10.php:1346
904
- msgid "Donate"
905
- msgstr "Donazione"
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
906
 
907
  #~ msgid "Display the posts popular this week"
908
  #~ msgstr "Mostra articoli più popolari settimana in corso"
2
  msgstr ""
3
  "Project-Id-Version: Top 10 in italiano\n"
4
  "Report-Msgid-Bugs-To: \n"
5
+ "POT-Creation-Date: 2015-01-01 21:53-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"
16
  "X-Poedit-SourceCharset: UTF-8\n"
17
  "X-Poedit-SearchPath-0: .\n"
18
 
19
+ #: admin/admin-columns.php:30
20
+ #, fuzzy
21
+ msgid "Total Views"
22
+ msgstr "Totale / Visualizzazioni odierne"
23
+
24
+ #: admin/admin-columns.php:33
25
+ #, fuzzy
26
+ msgid "Today's Views"
27
+ msgstr "Totale / Visualizzazioni odierne"
28
+
29
+ #: admin/admin-columns.php:36
30
+ #, fuzzy
31
+ msgid "Views"
32
+ msgstr "Totale / Visualizzazioni odierne"
33
+
34
+ #: admin/admin-dashboard.php:72
35
+ #, php-format
36
+ msgid "Results %1$s to %2$s of %3$s"
37
+ msgstr ""
38
+
39
+ #: admin/admin-dashboard.php:76
40
+ #, php-format
41
+ msgid "Page %s of %s"
42
+ msgstr ""
43
+
44
+ #: admin/admin-dashboard.php:88
45
+ msgid "View Daily Popular Posts"
46
+ msgstr "Visualizza gli articoli più letti di oggi"
47
+
48
+ #: admin/admin-dashboard.php:91 admin/admin-dashboard.php:104
49
+ msgid "Results per-page:"
50
+ msgstr "Risultati per pagina:"
51
+
52
+ #: admin/admin-dashboard.php:101
53
+ msgid "View Overall Popular Posts"
54
+ msgstr "Visualizza panoramica articoli più popolari"
55
+
56
+ #: admin/admin-dashboard.php:130
57
+ msgid "Previous"
58
+ msgstr "Precedente"
59
+
60
+ #: admin/admin-dashboard.php:158
61
+ msgid "Next"
62
+ msgstr "Successiva"
63
+
64
+ #: admin/admin-dashboard.php:200 admin/admin.php:1157
65
+ msgid "Popular Posts"
66
+ msgstr "Gli articoli più popolari"
67
+
68
+ #: admin/admin-dashboard.php:205
69
+ msgid "Daily Popular"
70
+ msgstr "I più letti di oggi"
71
+
72
+ #: admin/admin-metabox.php:38 admin/admin.php:1246
73
+ msgid "Top 10"
74
+ msgstr "Top 10"
75
+
76
+ #: admin/admin-metabox.php:71
77
+ #, fuzzy
78
+ msgid "Visit count:"
79
+ msgstr "Ripristino conteggio"
80
+
81
+ #: admin/admin-metabox.php:73
82
+ msgid ""
83
+ "Enter a number above to update the visit count. Leaving the above box blank "
84
+ "will set the count to zero"
85
+ msgstr ""
86
+
87
+ #: admin/admin-metabox.php:83
88
+ msgid "Location of thumbnail:"
89
+ msgstr ""
90
+
91
+ #: admin/admin-metabox.php:85
92
+ msgid ""
93
+ "Enter the full URL to the image (JPG, PNG or GIF) you'd like to use. This "
94
+ "image will be used for the post. It will be resized to the thumbnail size "
95
+ "set under Settings &raquo; Related Posts &raquo; Output Options"
96
+ msgstr ""
97
+
98
+ #: admin/admin-metabox.php:86
99
+ msgid "The URL above is saved in the meta field: "
100
+ msgstr ""
101
+
102
+ #: admin/admin.php:161
103
  msgid "Options saved successfully."
104
  msgstr "Le opzioni sono state salvate con successo."
105
 
106
+ #: admin/admin.php:171
107
  msgid "Options set to Default."
108
  msgstr "Opzioni impostate alle predefinite."
109
 
110
+ #: admin/admin.php:177
111
  msgid "Top 10 popular posts reset"
112
  msgstr "Ripristino 10 articoli più popolari"
113
 
114
+ #: admin/admin.php:183
115
  msgid "Top 10 daily popular posts reset"
116
  msgstr "Ripristino 10 articoli più popolari del giorno"
117
 
118
+ #: admin/admin.php:190
119
  msgid "Duplicate rows cleaned from tables"
120
  msgstr ""
121
 
122
+ #: admin/admin.php:202
123
  msgid "Scheduled maintenance enabled / modified"
124
  msgstr ""
125
 
126
+ #: admin/admin.php:206
127
  msgid "Scheduled maintenance disabled"
128
  msgstr ""
129
 
130
+ #: admin/admin.php:245
131
+ msgid "Counts from selected sites have been imported."
 
132
  msgstr ""
133
 
134
+ #: admin/admin.php:270
135
+ msgid ""
136
+ "Selected tables have been deleted. Note that only imported tables have been "
137
+ "deleted."
138
+ msgstr ""
139
+
140
+ #: admin/admin.php:278 admin/admin.php:1246 admin/admin.php:1249
141
+ #, fuzzy
142
+ msgid "Top 10 Settings"
143
+ msgstr "Impostazioni"
144
+
145
+ #: admin/admin.php:290 admin/admin.php:312
146
  msgid "General options"
147
  msgstr ""
148
 
149
+ #: admin/admin.php:291 admin/admin.php:389
150
+ msgid "Counter and tracker options"
151
+ msgstr ""
152
+
153
+ #: admin/admin.php:292 admin/admin.php:494
154
+ msgid "Popular post list options"
155
+ msgstr ""
156
+
157
+ #: admin/admin.php:293 admin/admin.php:689
158
+ #: includes/class-top-10-widget.php:103
159
+ #, fuzzy
160
+ msgid "Thumbnail options"
161
+ msgstr "Opzioni miniature articolo:"
162
+
163
+ #: admin/admin.php:294
164
+ msgid "Custom styles"
165
+ msgstr ""
166
+
167
+ #: admin/admin.php:295 admin/admin.php:920
168
+ msgid "Maintenance"
169
+ msgstr ""
170
+
171
+ #: admin/admin.php:311 admin/admin.php:388 admin/admin.php:493
172
+ #: admin/admin.php:688 admin/admin.php:851 admin/admin.php:919
173
+ #: admin/admin.php:983 admin/admin.php:1004 admin/admin.php:1188
174
+ #: admin/admin.php:1208 admin/admin.php:1218
175
+ msgid "Click to toggle"
176
+ msgstr ""
177
+
178
+ #: admin/admin.php:328
179
  msgid "Enable Overall stats"
180
  msgstr ""
181
 
182
+ #: admin/admin.php:334
183
  msgid "Enable Daily stats"
184
  msgstr ""
185
 
186
+ #: admin/admin.php:340
187
+ msgid "Cache fix:"
188
  msgstr ""
189
 
190
+ #: admin/admin.php:343
191
  msgid ""
192
+ "This will try to prevent W3 Total Cache and other caching plugins from "
193
+ "caching the tracker script of the plugin. Try toggling this option in case "
194
+ "you find that your posts are not tracked."
195
  msgstr ""
196
 
197
+ #: admin/admin.php:347
198
+ msgid "Start daily counts from midnight:"
199
+ msgstr ""
200
 
201
+ #: admin/admin.php:350
202
  msgid ""
203
+ "Daily counter will display number of visits from midnight. This option is "
204
+ "checked by default and mimics the way most normal counters work. Turning "
205
+ "this off will allow you to use the hourly setting in the next option."
206
  msgstr ""
207
 
208
+ #: admin/admin.php:354
209
+ msgid "Daily popular contains top posts over:"
210
  msgstr ""
 
 
211
 
212
+ #: admin/admin.php:356
213
+ msgid "day(s)"
 
 
 
214
  msgstr ""
215
 
216
+ #: admin/admin.php:357
217
+ msgid "hour(s)"
218
  msgstr ""
219
 
220
+ #: admin/admin.php:358
221
+ msgid ""
222
+ "Think of Daily Popular has a custom date range applied as a global setting. "
223
+ "Instead of displaying popular posts from the past day, this setting lets you "
224
+ "display posts for as many days or as few hours as you want. This can be "
225
+ "overridden in the widget."
226
  msgstr ""
227
 
228
+ #: admin/admin.php:362
229
+ msgid "Link to Top 10 plugin page"
230
  msgstr ""
231
 
232
+ #: admin/admin.php:365
233
+ #, fuzzy
 
 
 
234
  msgid ""
235
+ "A link to the plugin is added as an extra list item to the list of popular "
236
+ "posts"
 
237
  msgstr ""
238
+ "Nella lista dei tuoi articoli più popolari é stato aggiunto un link alla "
239
+ "pagina del plugin. Ti sarei molto grato qualora non disattivassi questa "
240
+ "opzione!"
241
 
242
+ #: admin/admin.php:370 admin/admin.php:475 admin/admin.php:670
243
+ #: admin/admin.php:833 admin/admin.php:899 admin/admin.php:976
244
+ #, fuzzy
245
+ msgid "Save Options"
246
+ msgstr "Opzioni:"
247
+
248
+ #: admin/admin.php:405
249
  #, fuzzy
250
  msgid "Display number of views on:"
251
  msgstr "Desideri mostrare il numero delle visualizzazioni negli articoli?"
252
 
253
+ #: admin/admin.php:407
254
  msgid "Posts"
255
  msgstr ""
256
 
257
+ #: admin/admin.php:408
258
  #, fuzzy
259
  msgid "Pages"
260
  msgstr "Pagina"
261
 
262
+ #: admin/admin.php:409
263
  msgid "Home page"
264
  msgstr ""
265
 
266
+ #: admin/admin.php:410
267
  msgid "Feeds"
268
  msgstr ""
269
 
270
+ #: admin/admin.php:411
271
  msgid "Category archives"
272
  msgstr ""
273
 
274
+ #: admin/admin.php:412
275
  msgid "Tag archives"
276
  msgstr ""
277
 
278
+ #: admin/admin.php:413
279
  msgid "Other archives"
280
  msgstr ""
281
 
282
+ #: admin/admin.php:414
283
  msgid ""
284
  "If you choose to disable this, please add <code>&lt;?php if "
285
  "( function_exists ( 'echo_tptn_post_count' ) ) echo_tptn_post_count(); ?&gt;"
286
  "</code> to your template file where you want it displayed"
287
  msgstr ""
288
 
289
+ #: admin/admin.php:418
290
+ #, fuzzy
291
+ msgid "Format to display the post views:"
292
+ msgstr "Formato per il conteggio:"
293
+
294
+ #: admin/admin.php:421
295
+ msgid ""
296
+ "Use <code>%totalcount%</code> to display the total count, <code>%dailycount"
297
+ "%</code> to display the daily count and <code>%overallcount%</code> to "
298
+ "display the overall count across all posts on the blog. e.g. the default "
299
+ "options displays <code>[Visited 123 times, 23 visits today]</code>"
300
+ msgstr ""
301
+
302
+ #: admin/admin.php:425
303
+ msgid "What do display when there are no visits?"
304
+ msgstr ""
305
+
306
+ #: admin/admin.php:428
307
+ msgid ""
308
+ "This text applies only when there are 0 hits for the post and it isn't a "
309
+ "single page. e.g. if you display post views on the homepage or archives then "
310
+ "this text will be used. To override this, just enter the same text as above "
311
+ "option."
312
+ msgstr ""
313
+
314
+ #: admin/admin.php:432
315
  msgid "Always display latest post count"
316
  msgstr ""
317
 
318
+ #: admin/admin.php:435
319
  msgid ""
320
  "This option uses JavaScript and will increase your page load time. Turn this "
321
  "off if you are not using caching plugins or are OK with displaying older "
322
  "cached counts."
323
  msgstr ""
324
 
325
+ #: admin/admin.php:439
326
  msgid "Track visits of authors on their own posts?"
327
  msgstr ""
328
  "Desideri che vengano conteggiate anche le visite da parte dell'amministatore "
329
  "del sito?"
330
 
331
+ #: admin/admin.php:442
332
  msgid ""
333
  "Disabling this option will stop authors visits tracked on their own posts"
334
  msgstr ""
335
 
336
+ #: admin/admin.php:446
337
  #, fuzzy
338
  msgid "Track visits of admins?"
339
  msgstr ""
340
  "Desideri che vengano conteggiate anche le visite da parte dell'amministatore "
341
  "del sito?"
342
 
343
+ #: admin/admin.php:449
344
  msgid "Disabling this option will stop admin visits being tracked."
345
  msgstr ""
346
 
347
+ #: admin/admin.php:453
348
  #, fuzzy
349
  msgid "Track visits of Editors?"
350
  msgstr ""
351
  "Desideri che vengano conteggiate anche le visite da parte dell'amministatore "
352
  "del sito?"
353
 
354
+ #: admin/admin.php:456
355
  msgid "Disabling this option will stop editor visits being tracked."
356
  msgstr ""
357
 
358
+ #: admin/admin.php:460
359
  msgid "Display page views on Posts and Pages in Admin"
360
  msgstr ""
361
 
362
+ #: admin/admin.php:463
363
  msgid ""
364
  "Adds three columns called Total Views, Today's Views and Views to All Posts "
365
  "and All Pages"
366
  msgstr ""
367
 
368
+ #: admin/admin.php:467
369
  #, fuzzy
370
  msgid "Show number of views to non-admins"
371
  msgstr "Desideri mostrare il numero delle visualizzazioni nelle pagine?"
372
 
373
+ #: admin/admin.php:470
374
  msgid ""
375
  "If you disable this then non-admins won't see the above columns or view the "
376
  "independent pages with the top posts"
377
  msgstr ""
378
 
379
+ #: admin/admin.php:510
380
+ msgid "Number of popular posts to display: "
381
+ msgstr "Numero degli articoli più popolari da mostrare:"
382
 
383
+ #: admin/admin.php:513
 
384
  msgid ""
385
+ "Maximum number of posts that will be displayed in the list. This option is "
386
+ "used if you don't specify the number of posts in the widget or shortcodes"
387
  msgstr ""
 
 
 
388
 
389
+ #: admin/admin.php:517
390
+ msgid "Post types to include in results (including custom post types)"
391
+ msgstr ""
 
 
 
 
 
 
392
 
393
+ #: admin/admin.php:529
394
+ msgid "List of post or page IDs to exclude from the results: "
 
 
 
 
 
395
  msgstr ""
 
 
 
 
396
 
397
+ #: admin/admin.php:531 admin/admin.php:638
398
+ msgid "Enter comma separated list of IDs. e.g. 188,320,500"
399
  msgstr ""
400
 
401
+ #: admin/admin.php:535
402
+ msgid "Exclude Categories: "
403
+ msgstr "Escludi categorie:"
404
+
405
+ #: admin/admin.php:550
406
  msgid ""
407
+ "Comma separated list of category slugs. The field above has an autocomplete "
408
+ "so simply start typing in the starting letters and it will prompt you with "
409
+ "options"
 
410
  msgstr ""
411
 
412
+ #: admin/admin.php:555
413
  msgid "Title of popular posts: "
414
  msgstr "Titolo per gli articoli più popolari:"
415
 
416
+ #: admin/admin.php:561
417
  msgid "Title of daily popular posts: "
418
  msgstr "Titolo per gli articoli più popolari del giorno:"
419
 
420
+ #: admin/admin.php:567
421
  msgid "When there are no posts, what should be shown?"
422
  msgstr ""
423
 
424
+ #: admin/admin.php:571
425
  msgid "Blank Output"
426
  msgstr ""
427
 
428
+ #: admin/admin.php:575
429
  msgid "Display:"
430
  msgstr ""
431
 
432
+ #: admin/admin.php:580
433
  msgid "Show post excerpt in list?"
434
  msgstr "Desideri mostrare gli estratti?"
435
 
436
+ #: admin/admin.php:586
437
  msgid "Length of excerpt (in words): "
438
  msgstr "Lunghezza estratto (in parole):"
439
 
440
+ #: admin/admin.php:592
441
  #, fuzzy
442
  msgid "Show post author in list?"
443
  msgstr "Desideri mostrare gli estratti?"
444
 
445
+ #: admin/admin.php:598
446
  #, fuzzy
447
  msgid "Show post date in list?"
448
  msgstr "Desideri mostrare gli estratti?"
449
 
450
+ #: admin/admin.php:604
451
  msgid "Limit post title length (in characters)"
452
  msgstr ""
453
 
454
+ #: admin/admin.php:610
455
  #, fuzzy
456
  msgid "Show view count in list?"
457
  msgstr "Desideri mostrare gli estratti?"
458
 
459
+ #: admin/admin.php:616
460
  msgid "Always display latest post count in the daily lists?"
461
  msgstr ""
462
 
463
+ #: admin/admin.php:619
464
  msgid ""
465
  "This option uses JavaScript and will increase your page load time. When you "
466
  "enable this option, the daily widget will not use the options set there, but "
467
  "options will need to be set on this screen."
468
  msgstr ""
469
 
470
+ #: admin/admin.php:623
471
  msgid "Open links in new window"
472
  msgstr ""
473
 
474
+ #: admin/admin.php:629
475
  msgid "Add nofollow attribute to links in the list"
476
  msgstr ""
477
 
478
+ #: admin/admin.php:635
479
  msgid "Exclude display of related posts on these posts / pages"
480
  msgstr ""
481
 
482
+ #: admin/admin.php:642
483
  #, fuzzy
484
  msgid "Customise the list HTML"
485
  msgstr "Personalizzazione output:"
486
 
487
+ #: admin/admin.php:645
488
  msgid "HTML to display before the list of posts: "
489
  msgstr "HTML da mostrare davanti alla lista degli articoli:"
490
 
491
+ #: admin/admin.php:651
492
  msgid "HTML to display before each list item: "
493
  msgstr "HTML da mostrare davanti ad ogni singola lista:"
494
 
495
+ #: admin/admin.php:657
496
  msgid "HTML to display after each list item: "
497
  msgstr "HTML da mostrare dopo ogni lista:"
498
 
499
+ #: admin/admin.php:663
500
  msgid "HTML to display after the list of posts: "
501
  msgstr "HTML da mostrare dopo la lista degli articoli:"
502
 
503
+ #: admin/admin.php:704
 
 
 
 
504
  msgid "Location of post thumbnail:"
505
  msgstr ""
506
 
507
+ #: admin/admin.php:708
508
  msgid "Display thumbnails inline with posts, before title"
509
  msgstr "Mostra gli articoli con le miniature inline prima del titolo"
510
 
511
+ #: admin/admin.php:713
512
  msgid "Display thumbnails inline with posts, after title"
513
  msgstr "Mostra gli articoli con le miniature inline dopo il titolo"
514
 
515
+ #: admin/admin.php:718
516
  msgid "Display only thumbnails, no text"
517
  msgstr "Mostra le sole miniature, nessun testo"
518
 
519
+ #: admin/admin.php:723
520
  msgid "Do not display thumbnails, only text."
521
  msgstr "Non mostrare le miniature, solo testo."
522
 
523
+ #: admin/admin.php:727
524
+ msgid "Thumbnail size:"
525
+ msgstr ""
526
+
527
+ #: admin/admin.php:751
528
+ msgid "Custom size"
529
+ msgstr ""
530
+
531
+ #: admin/admin.php:754
532
+ msgid ""
533
+ "You can choose from existing image sizes above or create a custom size. If "
534
+ "you have chosen Custom size above, then enter the width, height and crop "
535
+ "settings below. For best results, use a cropped image."
536
+ msgstr ""
537
+
538
+ #: admin/admin.php:755
539
+ msgid ""
540
+ "If you change the width and/or height below, existing images will not be "
541
+ "automatically resized."
542
+ msgstr ""
543
+
544
+ #: admin/admin.php:756
545
+ #, php-format
546
+ msgid ""
547
+ "I recommend using <a href='%s' target='_blank'>Force Regenerate Thumbnails</"
548
+ "a> or <a href='%s' target='_blank'>Force Regenerate Thumbnails</a> to "
549
+ "regenerate all image sizes."
550
+ msgstr ""
551
+
552
+ #: admin/admin.php:759
553
+ msgid "Width of custom thumbnail:"
554
+ msgstr ""
555
+
556
+ #: admin/admin.php:764
557
+ msgid "Height of custom thumbnail"
558
+ msgstr ""
559
+
560
+ #: admin/admin.php:769
561
+ msgid "Crop mode:"
562
+ msgstr ""
563
+
564
+ #: admin/admin.php:773
565
+ msgid ""
566
+ "By default, thumbnails will be proportionately cropped. Check this box to "
567
+ "hard crop the thumbnails."
568
+ msgstr ""
569
+
570
+ #: admin/admin.php:774
571
+ #, php-format
572
+ msgid "<a href='%s' target='_blank'>Difference between soft and hard crop</a>"
573
  msgstr ""
574
 
575
+ #: admin/admin.php:776
576
+ msgid ""
577
+ "Since you're using the default styles set under the Custom Styles section, "
578
+ "the width and height is fixed at 65px and crop mode is enabled."
579
  msgstr ""
580
 
581
+ #: admin/admin.php:781
582
  msgid "Style attributes / Width and Height HTML attributes:"
583
  msgstr ""
584
 
585
+ #: admin/admin.php:785
586
  msgid "Style attributes are used for width and height."
587
  msgstr ""
588
 
589
+ #: admin/admin.php:790
590
  msgid "HTML width and height attributes are used for width and height."
591
  msgstr ""
592
 
593
+ #: admin/admin.php:794
594
  msgid "Use timthumb to generate thumbnails? "
595
  msgstr ""
596
 
597
+ #: admin/admin.php:797
598
  msgid ""
599
  "If checked, <a href=\"http://www.binarymoon.co.uk/projects/timthumb/\" "
600
  "target=\"_blank\">timthumb</a> will be used to generate thumbnails"
601
  msgstr ""
602
 
603
+ #: admin/admin.php:800
604
  msgid "Quality of thumbnails generated by timthumb:"
605
  msgstr ""
606
 
607
+ #: admin/admin.php:803
608
  msgid ""
609
  "Enter values between 0 and 100 only. 100 is highest quality and the highest "
610
  "file size. Suggested maximum value is 95. Default is 75."
611
  msgstr ""
612
 
613
+ #: admin/admin.php:806
614
  #, fuzzy
615
  msgid "Post thumbnail meta field name: "
616
  msgstr "Opzioni miniature articolo:"
617
 
618
+ #: admin/admin.php:809
619
  msgid ""
620
  "The value of this field should contain the image source and is set in the "
621
  "<em>Add New Post</em> screen"
622
  msgstr ""
623
 
624
+ #: admin/admin.php:812
625
  #, fuzzy
626
  msgid ""
627
  "If the postmeta is not set, then should the plugin extract the first image "
632
  "tuo articolo nel caso in cui la prima immagine corelata fosse di grandi "
633
  "dimensioni"
634
 
635
+ #: admin/admin.php:815
636
  #, fuzzy
637
  msgid ""
638
  "This could slow down the loading of your page if the first image in the "
643
  "tuo articolo nel caso in cui la prima immagine corelata fosse di grandi "
644
  "dimensioni"
645
 
646
+ #: admin/admin.php:818
647
  msgid "Use default thumbnail? "
648
  msgstr ""
649
 
650
+ #: admin/admin.php:821
651
  msgid ""
652
  "If checked, when no thumbnail is found, show a default one from the URL "
653
  "below. If not checked and no thumbnail is found, no image will be shown."
655
  "Se attiva, in assenza di miniatura ne mostrerà una predefinita da URL qui "
656
  "sotto. Se inattiva e senza miniatura, non verrà mostrata nessuna immagine."
657
 
658
+ #: admin/admin.php:824
659
  msgid "Default thumbnail: "
660
  msgstr ""
661
 
662
+ #: admin/admin.php:828
663
  #, fuzzy
664
  msgid ""
665
  "The plugin will first check if the post contains a thumbnail. If it doesn't "
671
  "meta. Qualora non fosse disponibile, mostrerà l'immagine predefinita come "
672
  "specificato qui sotto:"
673
 
674
+ #: admin/admin.php:852
675
  msgid "Custom CSS"
676
  msgstr ""
677
 
678
+ #: admin/admin.php:867
679
  msgid "Use default style included in the plugin?"
680
  msgstr ""
681
 
682
+ #: admin/admin.php:870
683
  msgid ""
684
  "Top 10 includes a default style that makes your popular posts list to look "
685
+ "beautiful. Check the box above if you want to use this."
686
+ msgstr ""
687
+
688
+ #: admin/admin.php:871
689
+ msgid ""
690
+ "Enabling this option will turn on the thumbnails and set their width and "
691
+ "height to 65px. It will also turn off the display of the author, excerpt and "
692
+ "date if already enabled. Disabling this option will not revert any settings."
693
+ msgstr ""
694
+
695
+ #: admin/admin.php:872
696
+ #, php-format
697
+ msgid ""
698
+ "You can view the default style at <a href=\"%1$s\" target=\"_blank\">%1$s</a>"
699
  msgstr ""
700
 
701
+ #: admin/admin.php:875
702
  msgid "Custom CSS to add to header:"
703
  msgstr ""
704
 
705
+ #: admin/admin.php:880
706
  msgid ""
707
  "Do not include <code>style</code> tags. Check out the <a href=\"http://"
708
  "wordpress.org/extend/plugins/top-10/faq/\" target=\"_blank\">FAQ</a> for "
709
  "available CSS classes to style."
710
  msgstr ""
711
 
712
+ #: admin/admin.php:900
 
 
 
 
 
713
  #, fuzzy
714
  msgid "Default Options"
715
  msgstr "Opzioni output:"
716
 
717
+ #: admin/admin.php:900
718
  msgid "Do you want to set options to Default?"
719
  msgstr "Desideri ripristinare alle predefinite?"
720
 
721
+ #: admin/admin.php:924
 
 
 
 
722
  msgid ""
723
  "Over time the Daily Top 10 database grows in size, which reduces the "
724
  "performance of the plugin. Cleaning the database at regular intervals could "
726
  "will automatically delete entries older than 90 days."
727
  msgstr ""
728
 
729
+ #: admin/admin.php:925
730
  msgid ""
731
  "Note: When scheduled maintenance is enabled, WordPress will run the cron job "
732
  "everytime the job is rescheduled (i.e. you change the settings below)."
733
  msgstr ""
734
 
735
+ #: admin/admin.php:928
736
  msgid "Enable scheduled maintenance of daily tables:"
737
  msgstr ""
738
 
739
+ #: admin/admin.php:932
740
  msgid "Time to run maintenance"
741
  msgstr ""
742
 
743
+ #: admin/admin.php:933
744
  msgid "hrs"
745
  msgstr ""
746
 
747
+ #: admin/admin.php:933
748
  msgid "min"
749
  msgstr ""
750
 
751
+ #: admin/admin.php:935
752
  msgid "How often should the maintenance be run:"
753
  msgstr ""
754
 
755
+ #: admin/admin.php:939
756
  msgid "Daily"
757
  msgstr ""
758
 
759
+ #: admin/admin.php:943
760
  msgid "Weekly"
761
  msgstr ""
762
 
763
+ #: admin/admin.php:947
764
  msgid "Fortnightly"
765
  msgstr ""
766
 
767
+ #: admin/admin.php:951
768
  msgid "Monthly"
769
  msgstr ""
770
 
771
+ #: admin/admin.php:960
772
  msgid "The cron job has been scheduled. Maintenance will run "
773
  msgstr ""
774
 
775
+ #: admin/admin.php:965
776
  msgid "The cron job is missing. Please resave this page to add the job"
777
  msgstr ""
778
 
779
+ #: admin/admin.php:970
780
  msgid "Maintenance is turned off"
781
  msgstr ""
782
 
783
+ #: admin/admin.php:984
784
  msgid "Reset count"
785
  msgstr "Ripristino conteggio"
786
 
787
+ #: admin/admin.php:987
788
  msgid ""
789
  "This cannot be reversed. Make sure that your database has been backed up "
790
  "before proceeding"
792
  "Questa operazione non é reversibile. Effettua il backup del database prima "
793
  "di procedere"
794
 
795
+ #: admin/admin.php:990
796
  #, fuzzy
797
  msgid "Reset Popular Posts"
798
  msgstr "Gli articoli più popolari"
799
 
800
+ #: admin/admin.php:990
801
  msgid "Are you sure you want to reset the popular posts?"
802
  msgstr "Sei certo di volere ripristinare gli articoli più popolari?"
803
 
804
+ #: admin/admin.php:991
805
  #, fuzzy
806
  msgid "Reset Daily Popular Posts"
807
  msgstr "Gli articoli più popolari di oggi"
808
 
809
+ #: admin/admin.php:991
810
  msgid "Are you sure you want to reset the daily popular posts?"
811
  msgstr "Sei certo di volere ripristinare gli articoli più popolari del giorno?"
812
 
813
+ #: admin/admin.php:992
814
  msgid "Clear duplicates"
815
  msgstr ""
816
 
817
+ #: admin/admin.php:992
818
  msgid "This will delete the duplicate entries in the tables. Proceed?"
819
  msgstr "Questa operazione cancelerà i duplicati dalle tabelle. Procedi?"
820
 
821
+ #: admin/admin.php:1005
822
+ msgid "WordPress Multisite: Migrate Top 10 v1.x counts to 2.x"
823
+ msgstr ""
824
 
825
+ #: admin/admin.php:1008
826
+ msgid ""
827
+ "If you've been using Top 10 v1.x on multisite, you would have needed to "
828
+ "activate the plugin independently for each site. This would have resulted in "
829
+ "two tables being created for each site in the network."
830
+ msgstr ""
831
+
832
+ #: admin/admin.php:1009
833
+ msgid ""
834
+ "Top 10 v2.x onwards uses only a single table to record the count, keeping "
835
+ "your database clean. You can use this tool to import the recorded counts "
836
+ "from v1.x tables to the new v2.x table format."
837
+ msgstr ""
838
+
839
+ #: admin/admin.php:1012
840
+ msgid ""
841
+ "If you do not see any tables below, then it means that either all data has "
842
+ "already been imported or no relevant information has been found."
843
+ msgstr ""
844
+
845
+ #: admin/admin.php:1015
846
+ msgid ""
847
+ "After running the importer, please verify that all the counts have been "
848
+ "successfully imported. Only then should you delete any old tables!"
849
+ msgstr ""
850
+
851
+ #: admin/admin.php:1049
852
+ msgid "Blog ID"
853
+ msgstr ""
854
+
855
+ #: admin/admin.php:1052
856
+ msgid "Status"
857
+ msgstr ""
858
+
859
+ #: admin/admin.php:1055
860
+ msgid "Select to import"
861
+ msgstr ""
862
+
863
+ #: admin/admin.php:1065
864
+ msgid "Blog #"
865
+ msgstr ""
866
+
867
+ #: admin/admin.php:1075
868
+ msgid "Not imported"
869
+ msgstr ""
870
+
871
+ #: admin/admin.php:1079
872
+ msgid "Imported"
873
+ msgstr ""
874
+
875
+ #: admin/admin.php:1100
876
+ msgid "Begin import"
877
+ msgstr ""
878
+
879
+ #: admin/admin.php:1101
880
+ msgid "Delete selected tables"
881
+ msgstr ""
882
+
883
+ #: admin/admin.php:1102
884
+ msgid "Delete all imported tables"
885
+ msgstr ""
886
+
887
+ #: admin/admin.php:1159 admin/admin.php:1255
888
  msgid "Daily Popular Posts"
889
  msgstr "Gli articoli più popolari di oggi"
890
 
891
+ #: admin/admin.php:1189
892
  msgid "Support the development"
893
  msgstr "Sostieni lo sviluppo"
894
 
895
+ #: admin/admin.php:1196
896
  msgid "Donation for Top 10"
897
  msgstr ""
898
 
899
+ #: admin/admin.php:1198
900
  msgid "Enter amount in USD: "
901
  msgstr "Inserisci la cifra in USD: "
902
 
903
+ #: admin/admin.php:1202
904
  #, fuzzy
905
  msgid "Send your donation to the author of Top 10"
906
  msgstr "Invia la tua donazione all'autore di"
907
 
908
+ #: admin/admin.php:1209
909
  msgid "Follow me"
910
  msgstr ""
911
 
912
+ #: admin/admin.php:1219
913
  #, fuzzy
914
  msgid "Quick links"
915
  msgstr "Collegamenti veloci"
916
 
917
+ #: admin/admin.php:1223
918
  #, fuzzy
919
  msgid "Top 10 plugin page"
920
  msgstr "pagina plugin"
921
 
922
+ #: admin/admin.php:1224
923
+ msgid "Top 10 Github page"
924
+ msgstr ""
925
+
926
+ #: admin/admin.php:1225
927
  msgid "Other plugins"
928
  msgstr "Altri plugin"
929
 
930
+ #: admin/admin.php:1226
931
  msgid "Ajay's blog"
932
  msgstr "Il blog di Ajay"
933
 
934
+ #: admin/admin.php:1227
935
  msgid "FAQ"
936
  msgstr ""
937
 
938
+ #: admin/admin.php:1228 admin/admin.php:1386
939
  msgid "Support"
940
  msgstr "Supporto"
941
 
942
+ #: admin/admin.php:1229
943
  msgid "Reviews"
944
  msgstr ""
945
 
946
+ #: admin/admin.php:1252
 
 
 
 
 
 
 
 
 
947
  #, fuzzy
948
  msgid "Overall Popular Posts"
949
  msgstr "Visualizza panoramica articoli più popolari"
950
 
951
+ #: admin/admin.php:1363
952
+ msgid "Settings"
953
+ msgstr "Impostazioni"
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
954
 
955
+ #: admin/admin.php:1387
956
+ msgid "Donate"
957
+ msgstr "Donazione"
958
 
959
+ #: includes/class-top-10-widget.php:31
960
  #, fuzzy
961
  msgid "Popular Posts [Top 10]"
962
  msgstr "Gli articoli più popolari"
963
 
964
+ #: includes/class-top-10-widget.php:32
965
  #, fuzzy
966
  msgid "Display popular posts"
967
  msgstr "Gli articoli più popolari di oggi"
968
 
969
+ #: includes/class-top-10-widget.php:59
970
  msgid "Title"
971
  msgstr ""
972
 
973
+ #: includes/class-top-10-widget.php:64
974
  msgid "No. of posts"
975
  msgstr ""
976
 
977
+ #: includes/class-top-10-widget.php:69
978
  msgid "Overall"
979
  msgstr ""
980
 
981
+ #: includes/class-top-10-widget.php:70
982
  msgid "Custom time period (Enter below)"
983
  msgstr ""
984
 
985
+ #: includes/class-top-10-widget.php:74
986
+ msgid "In days and hours (applies only to custom option above)"
987
  msgstr ""
988
 
989
+ #: includes/class-top-10-widget.php:76
990
+ msgid "days"
991
+ msgstr ""
992
+
993
+ #: includes/class-top-10-widget.php:79
994
+ msgid "hours"
995
+ msgstr ""
996
+
997
+ #: includes/class-top-10-widget.php:84
998
  #, fuzzy
999
  msgid "Show count?"
1000
  msgstr "Desideri mostrare gli estratti?"
1001
 
1002
+ #: includes/class-top-10-widget.php:89
1003
  #, fuzzy
1004
  msgid "Show excerpt?"
1005
  msgstr "Desideri mostrare gli estratti?"
1006
 
1007
+ #: includes/class-top-10-widget.php:94
1008
  #, fuzzy
1009
  msgid "Show author?"
1010
  msgstr "Desideri mostrare gli estratti?"
1011
 
1012
+ #: includes/class-top-10-widget.php:99
1013
  #, fuzzy
1014
  msgid "Show date?"
1015
  msgstr "Desideri mostrare gli estratti?"
1016
 
1017
+ #: includes/class-top-10-widget.php:105
 
 
 
 
 
1018
  #, fuzzy
1019
  msgid "Thumbnails inline, before title"
1020
  msgstr "Mostra gli articoli con le miniature inline prima del titolo"
1021
 
1022
+ #: includes/class-top-10-widget.php:106
1023
  #, fuzzy
1024
  msgid "Thumbnails inline, after title"
1025
  msgstr "Mostra gli articoli con le miniature inline dopo il titolo"
1026
 
1027
+ #: includes/class-top-10-widget.php:107
1028
  #, fuzzy
1029
  msgid "Only thumbnails, no text"
1030
  msgstr "Mostra le sole miniature, nessun testo"
1031
 
1032
+ #: includes/class-top-10-widget.php:108
1033
  #, fuzzy
1034
  msgid "No thumbnails, only text."
1035
  msgstr "Non mostrare le miniature, solo testo."
1036
 
1037
+ #: includes/class-top-10-widget.php:113
1038
  #, fuzzy
1039
  msgid "Thumbnail height"
1040
  msgstr "Opzioni miniature articolo:"
1041
 
1042
+ #: includes/class-top-10-widget.php:118
1043
  #, fuzzy
1044
  msgid "Thumbnail width"
1045
  msgstr "Opzioni miniature articolo:"
1046
 
1047
+ #: top-10.php:879
1048
+ msgid " by "
1049
+ msgstr ""
1050
+
1051
+ #: top-10.php:930
1052
+ #, php-format
1053
+ msgid "Popular posts by <a href=\"%s\" rel=\"nofollow\" %s>Top 10 plugin</a>"
1054
+ msgstr ""
1055
+
1056
+ #: top-10.php:1029
1057
  msgid "<h3>Popular Posts</h3>"
1058
  msgstr "<h3>Articoli più letti</h3>"
1059
 
1060
+ #: top-10.php:1030
1061
  msgid "<h3>Daily Popular</h3>"
1062
  msgstr "<h3>I più letti di oggi</h3>"
1063
 
1064
+ #: top-10.php:1031
1065
  #, fuzzy
1066
  msgid "No top posts yet"
1067
  msgstr "Ripristino 10 articoli più popolari"
1068
 
1069
+ #: top-10.php:1676
1070
  msgid "Once Weekly"
1071
  msgstr ""
1072
 
1073
+ #: top-10.php:1680
1074
  msgid "Once Fortnightly"
1075
  msgstr ""
1076
 
1077
+ #: top-10.php:1684
1078
  msgid "Once Monthly"
1079
  msgstr ""
1080
 
1081
+ #: top-10.php:1688
1082
+ msgid "Once quarterly"
1083
+ msgstr ""
1084
 
1085
+ #~ msgid "Daily Popular should contain views of how many days? "
1086
+ #~ msgstr ""
1087
+ #~ "Quanti giorni desideri siano considerati per il computo delle "
1088
+ #~ "visualizzazioni per articoli più popolari del giorno?"
1089
+
1090
+ #, fuzzy
1091
+ #~ msgid "Output options"
1092
+ #~ msgstr "Opzioni output:"
1093
+
1094
+ #, fuzzy
1095
+ #~ msgid ""
1096
+ #~ "Use <code>%totalcount%</code> to display the total count, <code>"
1097
+ #~ "%dailycount%</code> to display the daily count and <code>%overallcount%</"
1098
+ #~ "code> to display the overall count across all posts on the blog. e.g. the "
1099
+ #~ "default options displays <code>(Visited 123 times, 23 visits today)</code>"
1100
+ #~ msgstr ""
1101
+ #~ "Utilizza <code>%totalcount%</code> per potere mostrare il computo totale "
1102
+ #~ "e <code>%dailycount%</code> per visualizzare quello del giorno corrente. "
1103
+ #~ "Ad esempio, le opzioni predefinite verranno mostrate online con un "
1104
+ #~ "<code>(letto 123 volte, 23 visite odierne)</code>"
1105
+
1106
+ #~ msgid "Post thumbnail options:"
1107
+ #~ msgstr "Opzioni miniature articolo:"
1108
 
1109
  #~ msgid "Display the posts popular this week"
1110
  #~ msgstr "Mostra articoli più popolari settimana in corso"
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: 2014-12-28 00:58-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"
@@ -62,7 +62,7 @@ msgstr "Vorige"
62
  msgid "Next"
63
  msgstr "Volgende"
64
 
65
- #: admin/admin-dashboard.php:200 admin/admin.php:1145
66
  msgid "Popular Posts"
67
  msgstr "Populaire Berichten"
68
 
@@ -70,7 +70,7 @@ msgstr "Populaire Berichten"
70
  msgid "Daily Popular"
71
  msgstr "Dagelijks Populair"
72
 
73
- #: admin/admin-metabox.php:38 admin/admin.php:1234
74
  msgid "Top 10"
75
  msgstr "Top 10"
76
 
@@ -100,106 +100,137 @@ msgstr ""
100
  msgid "The URL above is saved in the meta field: "
101
  msgstr ""
102
 
103
- #: admin/admin.php:160
104
  msgid "Options saved successfully."
105
  msgstr "Opties succesvol opgeslagen."
106
 
107
- #: admin/admin.php:170
108
  msgid "Options set to Default."
109
  msgstr "Opties ingesteld op Standaard."
110
 
111
- #: admin/admin.php:176
112
  msgid "Top 10 popular posts reset"
113
  msgstr "Reset Top 10 populaire berichten"
114
 
115
- #: admin/admin.php:182
116
  msgid "Top 10 daily popular posts reset"
117
  msgstr "Reset Top 10 dagelijkse populaire berichten"
118
 
119
- #: admin/admin.php:189
120
  msgid "Duplicate rows cleaned from tables"
121
  msgstr ""
122
 
123
- #: admin/admin.php:201
124
  msgid "Scheduled maintenance enabled / modified"
125
  msgstr ""
126
 
127
- #: admin/admin.php:205
128
  msgid "Scheduled maintenance disabled"
129
  msgstr ""
130
 
131
- #: admin/admin.php:244
132
  msgid "Counts from selected sites have been imported."
133
  msgstr ""
134
 
135
- #: admin/admin.php:269
136
  msgid ""
137
  "Selected tables have been deleted. Note that only imported tables have been "
138
  "deleted."
139
  msgstr ""
140
 
141
- #: admin/admin.php:277 admin/admin.php:1234 admin/admin.php:1237
142
  #, fuzzy
143
  msgid "Top 10 Settings"
144
  msgstr "Instellingen"
145
 
146
- #: admin/admin.php:289 admin/admin.php:311
147
  msgid "General options"
148
  msgstr ""
149
 
150
- #: admin/admin.php:290 admin/admin.php:373
151
  msgid "Counter and tracker options"
152
  msgstr ""
153
 
154
- #: admin/admin.php:291 admin/admin.php:478
155
  msgid "Popular post list options"
156
  msgstr ""
157
 
158
- #: admin/admin.php:292 admin/admin.php:681
159
  #: includes/class-top-10-widget.php:103
160
  #, fuzzy
161
  msgid "Thumbnail options"
162
  msgstr "Bericht miniatuurafbeelding opties:"
163
 
164
- #: admin/admin.php:293
165
  msgid "Custom styles"
166
  msgstr ""
167
 
168
- #: admin/admin.php:294 admin/admin.php:912
169
  msgid "Maintenance"
170
  msgstr ""
171
 
172
- #: admin/admin.php:310 admin/admin.php:372 admin/admin.php:477
173
- #: admin/admin.php:680 admin/admin.php:843 admin/admin.php:911
174
- #: admin/admin.php:975 admin/admin.php:996 admin/admin.php:1176
175
- #: admin/admin.php:1196 admin/admin.php:1206
176
  msgid "Click to toggle"
177
  msgstr ""
178
 
179
- #: admin/admin.php:327
180
  msgid "Enable Overall stats"
181
  msgstr ""
182
 
183
- #: admin/admin.php:333
184
  msgid "Enable Daily stats"
185
  msgstr ""
186
 
187
- #: admin/admin.php:339
188
  msgid "Cache fix:"
189
  msgstr ""
190
 
191
- #: admin/admin.php:342
192
  msgid ""
193
  "This will try to prevent W3 Total Cache and other caching plugins from "
194
  "caching the tracker script of the plugin. Try toggling this option in case "
195
  "you find that your posts are not tracked."
196
  msgstr ""
197
 
198
- #: admin/admin.php:346
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
199
  msgid "Link to Top 10 plugin page"
200
  msgstr ""
201
 
202
- #: admin/admin.php:349
203
  #, fuzzy
204
  msgid ""
205
  "A link to the plugin is added as an extra list item to the list of popular "
@@ -209,59 +240,59 @@ msgstr ""
209
  "populaire berichten. Het is niet verplicht, maar wordt ten zeerste "
210
  "gewaardeerd!"
211
 
212
- #: admin/admin.php:354 admin/admin.php:459 admin/admin.php:662
213
- #: admin/admin.php:825 admin/admin.php:891 admin/admin.php:968
214
  #, fuzzy
215
  msgid "Save Options"
216
  msgstr "Opties:"
217
 
218
- #: admin/admin.php:389
219
  #, fuzzy
220
  msgid "Display number of views on:"
221
  msgstr "Geef het aantal berichtweergaves weer?"
222
 
223
- #: admin/admin.php:391
224
  msgid "Posts"
225
  msgstr ""
226
 
227
- #: admin/admin.php:392
228
  #, fuzzy
229
  msgid "Pages"
230
  msgstr "Pagina"
231
 
232
- #: admin/admin.php:393
233
  msgid "Home page"
234
  msgstr ""
235
 
236
- #: admin/admin.php:394
237
  msgid "Feeds"
238
  msgstr ""
239
 
240
- #: admin/admin.php:395
241
  msgid "Category archives"
242
  msgstr ""
243
 
244
- #: admin/admin.php:396
245
  msgid "Tag archives"
246
  msgstr ""
247
 
248
- #: admin/admin.php:397
249
  msgid "Other archives"
250
  msgstr ""
251
 
252
- #: admin/admin.php:398
253
  msgid ""
254
  "If you choose to disable this, please add <code>&lt;?php if "
255
  "( function_exists ( 'echo_tptn_post_count' ) ) echo_tptn_post_count(); ?&gt;"
256
  "</code> to your template file where you want it displayed"
257
  msgstr ""
258
 
259
- #: admin/admin.php:402
260
  #, fuzzy
261
  msgid "Format to display the post views:"
262
  msgstr "Formaat om de optelling te laten zien:"
263
 
264
- #: admin/admin.php:405
265
  msgid ""
266
  "Use <code>%totalcount%</code> to display the total count, <code>%dailycount"
267
  "%</code> to display the daily count and <code>%overallcount%</code> to "
@@ -269,11 +300,11 @@ msgid ""
269
  "options displays <code>[Visited 123 times, 23 visits today]</code>"
270
  msgstr ""
271
 
272
- #: admin/admin.php:409
273
  msgid "What do display when there are no visits?"
274
  msgstr ""
275
 
276
- #: admin/admin.php:412
277
  msgid ""
278
  "This text applies only when there are 0 hits for the post and it isn't a "
279
  "single page. e.g. if you display post views on the homepage or archives then "
@@ -281,253 +312,233 @@ msgid ""
281
  "option."
282
  msgstr ""
283
 
284
- #: admin/admin.php:416
285
  msgid "Always display latest post count"
286
  msgstr ""
287
 
288
- #: admin/admin.php:419
289
  msgid ""
290
  "This option uses JavaScript and will increase your page load time. Turn this "
291
  "off if you are not using caching plugins or are OK with displaying older "
292
  "cached counts."
293
  msgstr ""
294
 
295
- #: admin/admin.php:423
296
  msgid "Track visits of authors on their own posts?"
297
  msgstr "Registreer bezoeken van auteurs aan hun eigen berichten?"
298
 
299
- #: admin/admin.php:426
300
  msgid ""
301
  "Disabling this option will stop authors visits tracked on their own posts"
302
  msgstr ""
303
 
304
- #: admin/admin.php:430
305
  #, fuzzy
306
  msgid "Track visits of admins?"
307
  msgstr "Registreer bezoeken van auteurs aan hun eigen berichten?"
308
 
309
- #: admin/admin.php:433
310
  msgid "Disabling this option will stop admin visits being tracked."
311
  msgstr ""
312
 
313
- #: admin/admin.php:437
314
  #, fuzzy
315
  msgid "Track visits of Editors?"
316
  msgstr "Registreer bezoeken van auteurs aan hun eigen berichten?"
317
 
318
- #: admin/admin.php:440
319
  msgid "Disabling this option will stop editor visits being tracked."
320
  msgstr ""
321
 
322
- #: admin/admin.php:444
323
  msgid "Display page views on Posts and Pages in Admin"
324
  msgstr ""
325
 
326
- #: admin/admin.php:447
327
  msgid ""
328
  "Adds three columns called Total Views, Today's Views and Views to All Posts "
329
  "and All Pages"
330
  msgstr ""
331
 
332
- #: admin/admin.php:451
333
  #, fuzzy
334
  msgid "Show number of views to non-admins"
335
  msgstr "Geef het aantal paginaweergaves weer?"
336
 
337
- #: admin/admin.php:454
338
  msgid ""
339
  "If you disable this then non-admins won't see the above columns or view the "
340
  "independent pages with the top posts"
341
  msgstr ""
342
 
343
- #: admin/admin.php:494
344
  msgid "Number of popular posts to display: "
345
  msgstr "Aantal populaire berichten om weer te geven:"
346
 
347
- #: admin/admin.php:497
348
  msgid ""
349
  "Maximum number of posts that will be displayed in the list. This option is "
350
  "used if you don't specify the number of posts in the widget or shortcodes"
351
  msgstr ""
352
 
353
- #: admin/admin.php:501
354
- msgid "Daily popular contains top posts over:"
355
- msgstr ""
356
-
357
- #: admin/admin.php:503
358
- msgid "day(s)"
359
- msgstr ""
360
-
361
- #: admin/admin.php:504
362
- msgid "hour(s)"
363
- msgstr ""
364
-
365
- #: admin/admin.php:505
366
- msgid ""
367
- "Think of Daily Popular has a custom date range applied as a global setting. "
368
- "Instead of displaying popular posts from the past day, this setting lets you "
369
- "display posts for as many days or as few hours as you want. This can be "
370
- "overridden in the widget."
371
- msgstr ""
372
-
373
- #: admin/admin.php:509
374
  msgid "Post types to include in results (including custom post types)"
375
  msgstr ""
376
 
377
- #: admin/admin.php:521
378
  msgid "List of post or page IDs to exclude from the results: "
379
  msgstr ""
380
 
381
- #: admin/admin.php:523 admin/admin.php:630
382
  msgid "Enter comma separated list of IDs. e.g. 188,320,500"
383
  msgstr ""
384
 
385
- #: admin/admin.php:527
386
  msgid "Exclude Categories: "
387
  msgstr ""
388
 
389
- #: admin/admin.php:542
390
  msgid ""
391
  "Comma separated list of category slugs. The field above has an autocomplete "
392
  "so simply start typing in the starting letters and it will prompt you with "
393
  "options"
394
  msgstr ""
395
 
396
- #: admin/admin.php:547
397
  msgid "Title of popular posts: "
398
  msgstr "Titel van populaire berichten:"
399
 
400
- #: admin/admin.php:553
401
  msgid "Title of daily popular posts: "
402
  msgstr "Titel van dagelijkse populaire berichten:"
403
 
404
- #: admin/admin.php:559
405
  msgid "When there are no posts, what should be shown?"
406
  msgstr ""
407
 
408
- #: admin/admin.php:563
409
  msgid "Blank Output"
410
  msgstr ""
411
 
412
- #: admin/admin.php:567
413
  msgid "Display:"
414
  msgstr ""
415
 
416
- #: admin/admin.php:572
417
  msgid "Show post excerpt in list?"
418
  msgstr "Laat bericht samenvatting zien in lijst?"
419
 
420
- #: admin/admin.php:578
421
  msgid "Length of excerpt (in words): "
422
  msgstr "Lengte van de samenvatting (in woorden):"
423
 
424
- #: admin/admin.php:584
425
  #, fuzzy
426
  msgid "Show post author in list?"
427
  msgstr "Laat bericht samenvatting zien in lijst?"
428
 
429
- #: admin/admin.php:590
430
  #, fuzzy
431
  msgid "Show post date in list?"
432
  msgstr "Laat bericht samenvatting zien in lijst?"
433
 
434
- #: admin/admin.php:596
435
  msgid "Limit post title length (in characters)"
436
  msgstr ""
437
 
438
- #: admin/admin.php:602
439
  #, fuzzy
440
  msgid "Show view count in list?"
441
  msgstr "Laat bericht samenvatting zien in lijst?"
442
 
443
- #: admin/admin.php:608
444
  msgid "Always display latest post count in the daily lists?"
445
  msgstr ""
446
 
447
- #: admin/admin.php:611
448
  msgid ""
449
  "This option uses JavaScript and will increase your page load time. When you "
450
  "enable this option, the daily widget will not use the options set there, but "
451
  "options will need to be set on this screen."
452
  msgstr ""
453
 
454
- #: admin/admin.php:615
455
  msgid "Open links in new window"
456
  msgstr ""
457
 
458
- #: admin/admin.php:621
459
  msgid "Add nofollow attribute to links in the list"
460
  msgstr ""
461
 
462
- #: admin/admin.php:627
463
  msgid "Exclude display of related posts on these posts / pages"
464
  msgstr ""
465
 
466
- #: admin/admin.php:634
467
  #, fuzzy
468
  msgid "Customise the list HTML"
469
  msgstr "Aanpassen van de output:"
470
 
471
- #: admin/admin.php:637
472
  msgid "HTML to display before the list of posts: "
473
  msgstr "Te weergeven HTML voor de lijst met berichten:"
474
 
475
- #: admin/admin.php:643
476
  msgid "HTML to display before each list item: "
477
  msgstr "Te weergeven HTML voor elk lijst item:"
478
 
479
- #: admin/admin.php:649
480
  msgid "HTML to display after each list item: "
481
  msgstr "Te weergeven HTML na elk lijst item:"
482
 
483
- #: admin/admin.php:655
484
  msgid "HTML to display after the list of posts: "
485
  msgstr "Te weergeven HTML na de lijst met berichten:"
486
 
487
- #: admin/admin.php:696
488
  msgid "Location of post thumbnail:"
489
  msgstr ""
490
 
491
- #: admin/admin.php:700
492
  #, fuzzy
493
  msgid "Display thumbnails inline with posts, before title"
494
  msgstr "Laat miniatuurafbeeldingen in lijn zien met berichten"
495
 
496
- #: admin/admin.php:705
497
  #, fuzzy
498
  msgid "Display thumbnails inline with posts, after title"
499
  msgstr "Laat miniatuurafbeeldingen in lijn zien met berichten"
500
 
501
- #: admin/admin.php:710
502
  msgid "Display only thumbnails, no text"
503
  msgstr "Geef alleen miniatuurafbeeldingen weer, geen text"
504
 
505
- #: admin/admin.php:715
506
  msgid "Do not display thumbnails, only text."
507
  msgstr "Geef geen miniatuurafbeeldingen weer, alleen text"
508
 
509
- #: admin/admin.php:719
510
  msgid "Thumbnail size:"
511
  msgstr ""
512
 
513
- #: admin/admin.php:743
514
  msgid "Custom size"
515
  msgstr ""
516
 
517
- #: admin/admin.php:746
518
  msgid ""
519
  "You can choose from existing image sizes above or create a custom size. If "
520
  "you have chosen Custom size above, then enter the width, height and crop "
521
  "settings below. For best results, use a cropped image."
522
  msgstr ""
523
 
524
- #: admin/admin.php:747
525
  msgid ""
526
  "If you change the width and/or height below, existing images will not be "
527
  "automatically resized."
528
  msgstr ""
529
 
530
- #: admin/admin.php:748
531
  #, php-format
532
  msgid ""
533
  "I recommend using <a href='%s' target='_blank'>Force Regenerate Thumbnails</"
@@ -535,79 +546,79 @@ msgid ""
535
  "regenerate all image sizes."
536
  msgstr ""
537
 
538
- #: admin/admin.php:751
539
  msgid "Width of custom thumbnail:"
540
  msgstr ""
541
 
542
- #: admin/admin.php:756
543
  msgid "Height of custom thumbnail"
544
  msgstr ""
545
 
546
- #: admin/admin.php:761
547
  msgid "Crop mode:"
548
  msgstr ""
549
 
550
- #: admin/admin.php:765
551
  msgid ""
552
  "By default, thumbnails will be proportionately cropped. Check this box to "
553
  "hard crop the thumbnails."
554
  msgstr ""
555
 
556
- #: admin/admin.php:766
557
  #, php-format
558
  msgid "<a href='%s' target='_blank'>Difference between soft and hard crop</a>"
559
  msgstr ""
560
 
561
- #: admin/admin.php:768
562
  msgid ""
563
  "Since you're using the default styles set under the Custom Styles section, "
564
  "the width and height is fixed at 65px and crop mode is enabled."
565
  msgstr ""
566
 
567
- #: admin/admin.php:773
568
  msgid "Style attributes / Width and Height HTML attributes:"
569
  msgstr ""
570
 
571
- #: admin/admin.php:777
572
  msgid "Style attributes are used for width and height."
573
  msgstr ""
574
 
575
- #: admin/admin.php:782
576
  msgid "HTML width and height attributes are used for width and height."
577
  msgstr ""
578
 
579
- #: admin/admin.php:786
580
  msgid "Use timthumb to generate thumbnails? "
581
  msgstr ""
582
 
583
- #: admin/admin.php:789
584
  msgid ""
585
  "If checked, <a href=\"http://www.binarymoon.co.uk/projects/timthumb/\" "
586
  "target=\"_blank\">timthumb</a> will be used to generate thumbnails"
587
  msgstr ""
588
 
589
- #: admin/admin.php:792
590
  msgid "Quality of thumbnails generated by timthumb:"
591
  msgstr ""
592
 
593
- #: admin/admin.php:795
594
  msgid ""
595
  "Enter values between 0 and 100 only. 100 is highest quality and the highest "
596
  "file size. Suggested maximum value is 95. Default is 75."
597
  msgstr ""
598
 
599
- #: admin/admin.php:798
600
  #, fuzzy
601
  msgid "Post thumbnail meta field name: "
602
  msgstr "Bericht miniatuurafbeelding opties:"
603
 
604
- #: admin/admin.php:801
605
  msgid ""
606
  "The value of this field should contain the image source and is set in the "
607
  "<em>Add New Post</em> screen"
608
  msgstr ""
609
 
610
- #: admin/admin.php:804
611
  #, fuzzy
612
  msgid ""
613
  "If the postmeta is not set, then should the plugin extract the first image "
@@ -618,7 +629,7 @@ msgstr ""
618
  "vertragen wanneer de eerste afbeelding in de gerelateerde berichten groot is "
619
  "qua bestandsgrootte"
620
 
621
- #: admin/admin.php:807
622
  #, fuzzy
623
  msgid ""
624
  "This could slow down the loading of your page if the first image in the "
@@ -629,21 +640,21 @@ msgstr ""
629
  "vertragen wanneer de eerste afbeelding in de gerelateerde berichten groot is "
630
  "qua bestandsgrootte"
631
 
632
- #: admin/admin.php:810
633
  msgid "Use default thumbnail? "
634
  msgstr ""
635
 
636
- #: admin/admin.php:813
637
  msgid ""
638
  "If checked, when no thumbnail is found, show a default one from the URL "
639
  "below. If not checked and no thumbnail is found, no image will be shown."
640
  msgstr ""
641
 
642
- #: admin/admin.php:816
643
  msgid "Default thumbnail: "
644
  msgstr ""
645
 
646
- #: admin/admin.php:820
647
  #, fuzzy
648
  msgid ""
649
  "The plugin will first check if the post contains a thumbnail. If it doesn't "
@@ -655,54 +666,54 @@ msgstr ""
655
  "veld controleren. Als dit veld niet beschikbaar is toont de plugin de "
656
  "standaard afbeelding zoals hieronder aangegeven:"
657
 
658
- #: admin/admin.php:844
659
  msgid "Custom CSS"
660
  msgstr ""
661
 
662
- #: admin/admin.php:859
663
  msgid "Use default style included in the plugin?"
664
  msgstr ""
665
 
666
- #: admin/admin.php:862
667
  msgid ""
668
  "Top 10 includes a default style that makes your popular posts list to look "
669
  "beautiful. Check the box above if you want to use this."
670
  msgstr ""
671
 
672
- #: admin/admin.php:863
673
  msgid ""
674
  "Enabling this option will turn on the thumbnails and set their width and "
675
  "height to 65px. It will also turn off the display of the author, excerpt and "
676
  "date if already enabled. Disabling this option will not revert any settings."
677
  msgstr ""
678
 
679
- #: admin/admin.php:864
680
  #, php-format
681
  msgid ""
682
  "You can view the default style at <a href=\"%1$s\" target=\"_blank\">%1$s</a>"
683
  msgstr ""
684
 
685
- #: admin/admin.php:867
686
  msgid "Custom CSS to add to header:"
687
  msgstr ""
688
 
689
- #: admin/admin.php:872
690
  msgid ""
691
  "Do not include <code>style</code> tags. Check out the <a href=\"http://"
692
  "wordpress.org/extend/plugins/top-10/faq/\" target=\"_blank\">FAQ</a> for "
693
  "available CSS classes to style."
694
  msgstr ""
695
 
696
- #: admin/admin.php:892
697
  #, fuzzy
698
  msgid "Default Options"
699
  msgstr "Output Opties:"
700
 
701
- #: admin/admin.php:892
702
  msgid "Do you want to set options to Default?"
703
  msgstr "Wil je de opties terugzetten naar standaard?"
704
 
705
- #: admin/admin.php:916
706
  msgid ""
707
  "Over time the Daily Top 10 database grows in size, which reduces the "
708
  "performance of the plugin. Cleaning the database at regular intervals could "
@@ -710,65 +721,65 @@ msgid ""
710
  "will automatically delete entries older than 90 days."
711
  msgstr ""
712
 
713
- #: admin/admin.php:917
714
  msgid ""
715
  "Note: When scheduled maintenance is enabled, WordPress will run the cron job "
716
  "everytime the job is rescheduled (i.e. you change the settings below)."
717
  msgstr ""
718
 
719
- #: admin/admin.php:920
720
  msgid "Enable scheduled maintenance of daily tables:"
721
  msgstr ""
722
 
723
- #: admin/admin.php:924
724
  msgid "Time to run maintenance"
725
  msgstr ""
726
 
727
- #: admin/admin.php:925
728
  msgid "hrs"
729
  msgstr ""
730
 
731
- #: admin/admin.php:925
732
  msgid "min"
733
  msgstr ""
734
 
735
- #: admin/admin.php:927
736
  msgid "How often should the maintenance be run:"
737
  msgstr ""
738
 
739
- #: admin/admin.php:931
740
  msgid "Daily"
741
  msgstr ""
742
 
743
- #: admin/admin.php:935
744
  msgid "Weekly"
745
  msgstr ""
746
 
747
- #: admin/admin.php:939
748
  msgid "Fortnightly"
749
  msgstr ""
750
 
751
- #: admin/admin.php:943
752
  msgid "Monthly"
753
  msgstr ""
754
 
755
- #: admin/admin.php:952
756
  msgid "The cron job has been scheduled. Maintenance will run "
757
  msgstr ""
758
 
759
- #: admin/admin.php:957
760
  msgid "The cron job is missing. Please resave this page to add the job"
761
  msgstr ""
762
 
763
- #: admin/admin.php:962
764
  msgid "Maintenance is turned off"
765
  msgstr ""
766
 
767
- #: admin/admin.php:976
768
  msgid "Reset count"
769
  msgstr "Reset telling"
770
 
771
- #: admin/admin.php:979
772
  msgid ""
773
  "This cannot be reversed. Make sure that your database has been backed up "
774
  "before proceeding"
@@ -776,158 +787,168 @@ msgstr ""
776
  "Dit kan niet ongedaan worden gemaakt. Zorg ervoor dat je een backup van je "
777
  "database gemaakt hebt voordat je verder gaat"
778
 
779
- #: admin/admin.php:982
780
  #, fuzzy
781
  msgid "Reset Popular Posts"
782
  msgstr "Populaire Berichten"
783
 
784
- #: admin/admin.php:982
785
  msgid "Are you sure you want to reset the popular posts?"
786
  msgstr "Ben je er zeker van dat je de populaire berichten wilt resetten?"
787
 
788
- #: admin/admin.php:983
789
  #, fuzzy
790
  msgid "Reset Daily Popular Posts"
791
  msgstr "Dagelijkse Populaire Berichten"
792
 
793
- #: admin/admin.php:983
794
  msgid "Are you sure you want to reset the daily popular posts?"
795
  msgstr ""
796
  "Ben je er zeker van dat je de dagelijkse populaire berichten wilt resetten?"
797
 
798
- #: admin/admin.php:984
799
  msgid "Clear duplicates"
800
  msgstr ""
801
 
802
- #: admin/admin.php:984
803
  msgid "This will delete the duplicate entries in the tables. Proceed?"
804
  msgstr "Hiermee verwijdert u de dubbele vermeldingen in de tabellen. Doorgaan?"
805
 
806
- #: admin/admin.php:997
807
  msgid "WordPress Multisite: Migrate Top 10 v1.x counts to 2.x"
808
  msgstr ""
809
 
810
- #: admin/admin.php:1000
811
  msgid ""
812
  "If you've been using Top 10 v1.x on multisite, you would have needed to "
813
  "activate the plugin independently for each site. This would have resulted in "
814
- "two tables being created for each site in the network. Top 10 v2.x onwards "
815
- "uses only a single table to record the count, keeping your database clean. "
816
- "You can use this tool to import the recorded counts from v1.x tables to the "
817
- "new v2.x table format."
818
  msgstr ""
819
 
820
- #: admin/admin.php:1003
 
 
 
 
 
 
 
821
  msgid ""
822
  "If you do not see any tables below, then it means that either all data has "
823
  "already been imported or no relevant information has been found."
824
  msgstr ""
825
 
826
- #: admin/admin.php:1037
 
 
 
 
 
 
827
  msgid "Blog ID"
828
  msgstr ""
829
 
830
- #: admin/admin.php:1040
831
  msgid "Status"
832
  msgstr ""
833
 
834
- #: admin/admin.php:1043
835
  msgid "Select to import"
836
  msgstr ""
837
 
838
- #: admin/admin.php:1053
839
  msgid "Blog #"
840
  msgstr ""
841
 
842
- #: admin/admin.php:1063
843
  msgid "Not imported"
844
  msgstr ""
845
 
846
- #: admin/admin.php:1067
847
  msgid "Imported"
848
  msgstr ""
849
 
850
- #: admin/admin.php:1088
851
  msgid "Begin import"
852
  msgstr ""
853
 
854
- #: admin/admin.php:1089
855
  msgid "Delete selected tables"
856
  msgstr ""
857
 
858
- #: admin/admin.php:1090
859
  msgid "Delete all imported tables"
860
  msgstr ""
861
 
862
- #: admin/admin.php:1147 admin/admin.php:1243
863
  msgid "Daily Popular Posts"
864
  msgstr "Dagelijkse Populaire Berichten"
865
 
866
- #: admin/admin.php:1177
867
  msgid "Support the development"
868
  msgstr "Ondersteun de ontwikkeling"
869
 
870
- #: admin/admin.php:1184
871
  msgid "Donation for Top 10"
872
  msgstr ""
873
 
874
- #: admin/admin.php:1186
875
  msgid "Enter amount in USD: "
876
  msgstr "Voer het bedrag in in USD:"
877
 
878
- #: admin/admin.php:1190
879
  #, fuzzy
880
  msgid "Send your donation to the author of Top 10"
881
  msgstr "Zend je donatie naar de auteur van "
882
 
883
- #: admin/admin.php:1197
884
  msgid "Follow me"
885
  msgstr ""
886
 
887
- #: admin/admin.php:1207
888
  #, fuzzy
889
  msgid "Quick links"
890
  msgstr "Quick links"
891
 
892
- #: admin/admin.php:1211
893
  #, fuzzy
894
  msgid "Top 10 plugin page"
895
  msgstr "plugin pagina"
896
 
897
- #: admin/admin.php:1212
898
  msgid "Top 10 Github page"
899
  msgstr ""
900
 
901
- #: admin/admin.php:1213
902
  msgid "Other plugins"
903
  msgstr "Andere plugins"
904
 
905
- #: admin/admin.php:1214
906
  msgid "Ajay's blog"
907
  msgstr "De blog van Ajay"
908
 
909
- #: admin/admin.php:1215
910
  msgid "FAQ"
911
  msgstr ""
912
 
913
- #: admin/admin.php:1216 admin/admin.php:1374
914
  msgid "Support"
915
  msgstr "Ondersteuning"
916
 
917
- #: admin/admin.php:1217
918
  msgid "Reviews"
919
  msgstr ""
920
 
921
- #: admin/admin.php:1240
922
  #, fuzzy
923
  msgid "Overall Popular Posts"
924
  msgstr "Bekijk het Totaal Populaire Berichten"
925
 
926
- #: admin/admin.php:1351
927
  msgid "Settings"
928
  msgstr "Instellingen"
929
 
930
- #: admin/admin.php:1375
931
  msgid "Donate"
932
  msgstr "Doneer"
933
 
@@ -1019,41 +1040,41 @@ msgstr "Bericht miniatuurafbeelding opties:"
1019
  msgid "Thumbnail width"
1020
  msgstr "Bericht miniatuurafbeelding opties:"
1021
 
1022
- #: top-10.php:866
1023
  msgid " by "
1024
  msgstr ""
1025
 
1026
- #: top-10.php:917
1027
  #, php-format
1028
  msgid "Popular posts by <a href=\"%s\" rel=\"nofollow\" %s>Top 10 plugin</a>"
1029
  msgstr ""
1030
 
1031
- #: top-10.php:1016
1032
  msgid "<h3>Popular Posts</h3>"
1033
  msgstr "<h3>Populaire Berichten</h3>"
1034
 
1035
- #: top-10.php:1017
1036
  msgid "<h3>Daily Popular</h3>"
1037
  msgstr "<h3>Dagelijks Populair</h3>"
1038
 
1039
- #: top-10.php:1018
1040
  #, fuzzy
1041
  msgid "No top posts yet"
1042
  msgstr "Reset Top 10 populaire berichten"
1043
 
1044
- #: top-10.php:1668
1045
  msgid "Once Weekly"
1046
  msgstr ""
1047
 
1048
- #: top-10.php:1672
1049
  msgid "Once Fortnightly"
1050
  msgstr ""
1051
 
1052
- #: top-10.php:1676
1053
  msgid "Once Monthly"
1054
  msgstr ""
1055
 
1056
- #: top-10.php:1680
1057
  msgid "Once quarterly"
1058
  msgstr ""
1059
 
2
  msgstr ""
3
  "Project-Id-Version: Top 10 v1.6.2\n"
4
  "Report-Msgid-Bugs-To: \n"
5
+ "POT-Creation-Date: 2015-01-01 21:53-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"
62
  msgid "Next"
63
  msgstr "Volgende"
64
 
65
+ #: admin/admin-dashboard.php:200 admin/admin.php:1157
66
  msgid "Popular Posts"
67
  msgstr "Populaire Berichten"
68
 
70
  msgid "Daily Popular"
71
  msgstr "Dagelijks Populair"
72
 
73
+ #: admin/admin-metabox.php:38 admin/admin.php:1246
74
  msgid "Top 10"
75
  msgstr "Top 10"
76
 
100
  msgid "The URL above is saved in the meta field: "
101
  msgstr ""
102
 
103
+ #: admin/admin.php:161
104
  msgid "Options saved successfully."
105
  msgstr "Opties succesvol opgeslagen."
106
 
107
+ #: admin/admin.php:171
108
  msgid "Options set to Default."
109
  msgstr "Opties ingesteld op Standaard."
110
 
111
+ #: admin/admin.php:177
112
  msgid "Top 10 popular posts reset"
113
  msgstr "Reset Top 10 populaire berichten"
114
 
115
+ #: admin/admin.php:183
116
  msgid "Top 10 daily popular posts reset"
117
  msgstr "Reset Top 10 dagelijkse populaire berichten"
118
 
119
+ #: admin/admin.php:190
120
  msgid "Duplicate rows cleaned from tables"
121
  msgstr ""
122
 
123
+ #: admin/admin.php:202
124
  msgid "Scheduled maintenance enabled / modified"
125
  msgstr ""
126
 
127
+ #: admin/admin.php:206
128
  msgid "Scheduled maintenance disabled"
129
  msgstr ""
130
 
131
+ #: admin/admin.php:245
132
  msgid "Counts from selected sites have been imported."
133
  msgstr ""
134
 
135
+ #: admin/admin.php:270
136
  msgid ""
137
  "Selected tables have been deleted. Note that only imported tables have been "
138
  "deleted."
139
  msgstr ""
140
 
141
+ #: admin/admin.php:278 admin/admin.php:1246 admin/admin.php:1249
142
  #, fuzzy
143
  msgid "Top 10 Settings"
144
  msgstr "Instellingen"
145
 
146
+ #: admin/admin.php:290 admin/admin.php:312
147
  msgid "General options"
148
  msgstr ""
149
 
150
+ #: admin/admin.php:291 admin/admin.php:389
151
  msgid "Counter and tracker options"
152
  msgstr ""
153
 
154
+ #: admin/admin.php:292 admin/admin.php:494
155
  msgid "Popular post list options"
156
  msgstr ""
157
 
158
+ #: admin/admin.php:293 admin/admin.php:689
159
  #: includes/class-top-10-widget.php:103
160
  #, fuzzy
161
  msgid "Thumbnail options"
162
  msgstr "Bericht miniatuurafbeelding opties:"
163
 
164
+ #: admin/admin.php:294
165
  msgid "Custom styles"
166
  msgstr ""
167
 
168
+ #: admin/admin.php:295 admin/admin.php:920
169
  msgid "Maintenance"
170
  msgstr ""
171
 
172
+ #: admin/admin.php:311 admin/admin.php:388 admin/admin.php:493
173
+ #: admin/admin.php:688 admin/admin.php:851 admin/admin.php:919
174
+ #: admin/admin.php:983 admin/admin.php:1004 admin/admin.php:1188
175
+ #: admin/admin.php:1208 admin/admin.php:1218
176
  msgid "Click to toggle"
177
  msgstr ""
178
 
179
+ #: admin/admin.php:328
180
  msgid "Enable Overall stats"
181
  msgstr ""
182
 
183
+ #: admin/admin.php:334
184
  msgid "Enable Daily stats"
185
  msgstr ""
186
 
187
+ #: admin/admin.php:340
188
  msgid "Cache fix:"
189
  msgstr ""
190
 
191
+ #: admin/admin.php:343
192
  msgid ""
193
  "This will try to prevent W3 Total Cache and other caching plugins from "
194
  "caching the tracker script of the plugin. Try toggling this option in case "
195
  "you find that your posts are not tracked."
196
  msgstr ""
197
 
198
+ #: admin/admin.php:347
199
+ msgid "Start daily counts from midnight:"
200
+ msgstr ""
201
+
202
+ #: admin/admin.php:350
203
+ msgid ""
204
+ "Daily counter will display number of visits from midnight. This option is "
205
+ "checked by default and mimics the way most normal counters work. Turning "
206
+ "this off will allow you to use the hourly setting in the next option."
207
+ msgstr ""
208
+
209
+ #: admin/admin.php:354
210
+ msgid "Daily popular contains top posts over:"
211
+ msgstr ""
212
+
213
+ #: admin/admin.php:356
214
+ msgid "day(s)"
215
+ msgstr ""
216
+
217
+ #: admin/admin.php:357
218
+ msgid "hour(s)"
219
+ msgstr ""
220
+
221
+ #: admin/admin.php:358
222
+ msgid ""
223
+ "Think of Daily Popular has a custom date range applied as a global setting. "
224
+ "Instead of displaying popular posts from the past day, this setting lets you "
225
+ "display posts for as many days or as few hours as you want. This can be "
226
+ "overridden in the widget."
227
+ msgstr ""
228
+
229
+ #: admin/admin.php:362
230
  msgid "Link to Top 10 plugin page"
231
  msgstr ""
232
 
233
+ #: admin/admin.php:365
234
  #, fuzzy
235
  msgid ""
236
  "A link to the plugin is added as an extra list item to the list of popular "
240
  "populaire berichten. Het is niet verplicht, maar wordt ten zeerste "
241
  "gewaardeerd!"
242
 
243
+ #: admin/admin.php:370 admin/admin.php:475 admin/admin.php:670
244
+ #: admin/admin.php:833 admin/admin.php:899 admin/admin.php:976
245
  #, fuzzy
246
  msgid "Save Options"
247
  msgstr "Opties:"
248
 
249
+ #: admin/admin.php:405
250
  #, fuzzy
251
  msgid "Display number of views on:"
252
  msgstr "Geef het aantal berichtweergaves weer?"
253
 
254
+ #: admin/admin.php:407
255
  msgid "Posts"
256
  msgstr ""
257
 
258
+ #: admin/admin.php:408
259
  #, fuzzy
260
  msgid "Pages"
261
  msgstr "Pagina"
262
 
263
+ #: admin/admin.php:409
264
  msgid "Home page"
265
  msgstr ""
266
 
267
+ #: admin/admin.php:410
268
  msgid "Feeds"
269
  msgstr ""
270
 
271
+ #: admin/admin.php:411
272
  msgid "Category archives"
273
  msgstr ""
274
 
275
+ #: admin/admin.php:412
276
  msgid "Tag archives"
277
  msgstr ""
278
 
279
+ #: admin/admin.php:413
280
  msgid "Other archives"
281
  msgstr ""
282
 
283
+ #: admin/admin.php:414
284
  msgid ""
285
  "If you choose to disable this, please add <code>&lt;?php if "
286
  "( function_exists ( 'echo_tptn_post_count' ) ) echo_tptn_post_count(); ?&gt;"
287
  "</code> to your template file where you want it displayed"
288
  msgstr ""
289
 
290
+ #: admin/admin.php:418
291
  #, fuzzy
292
  msgid "Format to display the post views:"
293
  msgstr "Formaat om de optelling te laten zien:"
294
 
295
+ #: admin/admin.php:421
296
  msgid ""
297
  "Use <code>%totalcount%</code> to display the total count, <code>%dailycount"
298
  "%</code> to display the daily count and <code>%overallcount%</code> to "
300
  "options displays <code>[Visited 123 times, 23 visits today]</code>"
301
  msgstr ""
302
 
303
+ #: admin/admin.php:425
304
  msgid "What do display when there are no visits?"
305
  msgstr ""
306
 
307
+ #: admin/admin.php:428
308
  msgid ""
309
  "This text applies only when there are 0 hits for the post and it isn't a "
310
  "single page. e.g. if you display post views on the homepage or archives then "
312
  "option."
313
  msgstr ""
314
 
315
+ #: admin/admin.php:432
316
  msgid "Always display latest post count"
317
  msgstr ""
318
 
319
+ #: admin/admin.php:435
320
  msgid ""
321
  "This option uses JavaScript and will increase your page load time. Turn this "
322
  "off if you are not using caching plugins or are OK with displaying older "
323
  "cached counts."
324
  msgstr ""
325
 
326
+ #: admin/admin.php:439
327
  msgid "Track visits of authors on their own posts?"
328
  msgstr "Registreer bezoeken van auteurs aan hun eigen berichten?"
329
 
330
+ #: admin/admin.php:442
331
  msgid ""
332
  "Disabling this option will stop authors visits tracked on their own posts"
333
  msgstr ""
334
 
335
+ #: admin/admin.php:446
336
  #, fuzzy
337
  msgid "Track visits of admins?"
338
  msgstr "Registreer bezoeken van auteurs aan hun eigen berichten?"
339
 
340
+ #: admin/admin.php:449
341
  msgid "Disabling this option will stop admin visits being tracked."
342
  msgstr ""
343
 
344
+ #: admin/admin.php:453
345
  #, fuzzy
346
  msgid "Track visits of Editors?"
347
  msgstr "Registreer bezoeken van auteurs aan hun eigen berichten?"
348
 
349
+ #: admin/admin.php:456
350
  msgid "Disabling this option will stop editor visits being tracked."
351
  msgstr ""
352
 
353
+ #: admin/admin.php:460
354
  msgid "Display page views on Posts and Pages in Admin"
355
  msgstr ""
356
 
357
+ #: admin/admin.php:463
358
  msgid ""
359
  "Adds three columns called Total Views, Today's Views and Views to All Posts "
360
  "and All Pages"
361
  msgstr ""
362
 
363
+ #: admin/admin.php:467
364
  #, fuzzy
365
  msgid "Show number of views to non-admins"
366
  msgstr "Geef het aantal paginaweergaves weer?"
367
 
368
+ #: admin/admin.php:470
369
  msgid ""
370
  "If you disable this then non-admins won't see the above columns or view the "
371
  "independent pages with the top posts"
372
  msgstr ""
373
 
374
+ #: admin/admin.php:510
375
  msgid "Number of popular posts to display: "
376
  msgstr "Aantal populaire berichten om weer te geven:"
377
 
378
+ #: admin/admin.php:513
379
  msgid ""
380
  "Maximum number of posts that will be displayed in the list. This option is "
381
  "used if you don't specify the number of posts in the widget or shortcodes"
382
  msgstr ""
383
 
384
+ #: admin/admin.php:517
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
385
  msgid "Post types to include in results (including custom post types)"
386
  msgstr ""
387
 
388
+ #: admin/admin.php:529
389
  msgid "List of post or page IDs to exclude from the results: "
390
  msgstr ""
391
 
392
+ #: admin/admin.php:531 admin/admin.php:638
393
  msgid "Enter comma separated list of IDs. e.g. 188,320,500"
394
  msgstr ""
395
 
396
+ #: admin/admin.php:535
397
  msgid "Exclude Categories: "
398
  msgstr ""
399
 
400
+ #: admin/admin.php:550
401
  msgid ""
402
  "Comma separated list of category slugs. The field above has an autocomplete "
403
  "so simply start typing in the starting letters and it will prompt you with "
404
  "options"
405
  msgstr ""
406
 
407
+ #: admin/admin.php:555
408
  msgid "Title of popular posts: "
409
  msgstr "Titel van populaire berichten:"
410
 
411
+ #: admin/admin.php:561
412
  msgid "Title of daily popular posts: "
413
  msgstr "Titel van dagelijkse populaire berichten:"
414
 
415
+ #: admin/admin.php:567
416
  msgid "When there are no posts, what should be shown?"
417
  msgstr ""
418
 
419
+ #: admin/admin.php:571
420
  msgid "Blank Output"
421
  msgstr ""
422
 
423
+ #: admin/admin.php:575
424
  msgid "Display:"
425
  msgstr ""
426
 
427
+ #: admin/admin.php:580
428
  msgid "Show post excerpt in list?"
429
  msgstr "Laat bericht samenvatting zien in lijst?"
430
 
431
+ #: admin/admin.php:586
432
  msgid "Length of excerpt (in words): "
433
  msgstr "Lengte van de samenvatting (in woorden):"
434
 
435
+ #: admin/admin.php:592
436
  #, fuzzy
437
  msgid "Show post author in list?"
438
  msgstr "Laat bericht samenvatting zien in lijst?"
439
 
440
+ #: admin/admin.php:598
441
  #, fuzzy
442
  msgid "Show post date in list?"
443
  msgstr "Laat bericht samenvatting zien in lijst?"
444
 
445
+ #: admin/admin.php:604
446
  msgid "Limit post title length (in characters)"
447
  msgstr ""
448
 
449
+ #: admin/admin.php:610
450
  #, fuzzy
451
  msgid "Show view count in list?"
452
  msgstr "Laat bericht samenvatting zien in lijst?"
453
 
454
+ #: admin/admin.php:616
455
  msgid "Always display latest post count in the daily lists?"
456
  msgstr ""
457
 
458
+ #: admin/admin.php:619
459
  msgid ""
460
  "This option uses JavaScript and will increase your page load time. When you "
461
  "enable this option, the daily widget will not use the options set there, but "
462
  "options will need to be set on this screen."
463
  msgstr ""
464
 
465
+ #: admin/admin.php:623
466
  msgid "Open links in new window"
467
  msgstr ""
468
 
469
+ #: admin/admin.php:629
470
  msgid "Add nofollow attribute to links in the list"
471
  msgstr ""
472
 
473
+ #: admin/admin.php:635
474
  msgid "Exclude display of related posts on these posts / pages"
475
  msgstr ""
476
 
477
+ #: admin/admin.php:642
478
  #, fuzzy
479
  msgid "Customise the list HTML"
480
  msgstr "Aanpassen van de output:"
481
 
482
+ #: admin/admin.php:645
483
  msgid "HTML to display before the list of posts: "
484
  msgstr "Te weergeven HTML voor de lijst met berichten:"
485
 
486
+ #: admin/admin.php:651
487
  msgid "HTML to display before each list item: "
488
  msgstr "Te weergeven HTML voor elk lijst item:"
489
 
490
+ #: admin/admin.php:657
491
  msgid "HTML to display after each list item: "
492
  msgstr "Te weergeven HTML na elk lijst item:"
493
 
494
+ #: admin/admin.php:663
495
  msgid "HTML to display after the list of posts: "
496
  msgstr "Te weergeven HTML na de lijst met berichten:"
497
 
498
+ #: admin/admin.php:704
499
  msgid "Location of post thumbnail:"
500
  msgstr ""
501
 
502
+ #: admin/admin.php:708
503
  #, fuzzy
504
  msgid "Display thumbnails inline with posts, before title"
505
  msgstr "Laat miniatuurafbeeldingen in lijn zien met berichten"
506
 
507
+ #: admin/admin.php:713
508
  #, fuzzy
509
  msgid "Display thumbnails inline with posts, after title"
510
  msgstr "Laat miniatuurafbeeldingen in lijn zien met berichten"
511
 
512
+ #: admin/admin.php:718
513
  msgid "Display only thumbnails, no text"
514
  msgstr "Geef alleen miniatuurafbeeldingen weer, geen text"
515
 
516
+ #: admin/admin.php:723
517
  msgid "Do not display thumbnails, only text."
518
  msgstr "Geef geen miniatuurafbeeldingen weer, alleen text"
519
 
520
+ #: admin/admin.php:727
521
  msgid "Thumbnail size:"
522
  msgstr ""
523
 
524
+ #: admin/admin.php:751
525
  msgid "Custom size"
526
  msgstr ""
527
 
528
+ #: admin/admin.php:754
529
  msgid ""
530
  "You can choose from existing image sizes above or create a custom size. If "
531
  "you have chosen Custom size above, then enter the width, height and crop "
532
  "settings below. For best results, use a cropped image."
533
  msgstr ""
534
 
535
+ #: admin/admin.php:755
536
  msgid ""
537
  "If you change the width and/or height below, existing images will not be "
538
  "automatically resized."
539
  msgstr ""
540
 
541
+ #: admin/admin.php:756
542
  #, php-format
543
  msgid ""
544
  "I recommend using <a href='%s' target='_blank'>Force Regenerate Thumbnails</"
546
  "regenerate all image sizes."
547
  msgstr ""
548
 
549
+ #: admin/admin.php:759
550
  msgid "Width of custom thumbnail:"
551
  msgstr ""
552
 
553
+ #: admin/admin.php:764
554
  msgid "Height of custom thumbnail"
555
  msgstr ""
556
 
557
+ #: admin/admin.php:769
558
  msgid "Crop mode:"
559
  msgstr ""
560
 
561
+ #: admin/admin.php:773
562
  msgid ""
563
  "By default, thumbnails will be proportionately cropped. Check this box to "
564
  "hard crop the thumbnails."
565
  msgstr ""
566
 
567
+ #: admin/admin.php:774
568
  #, php-format
569
  msgid "<a href='%s' target='_blank'>Difference between soft and hard crop</a>"
570
  msgstr ""
571
 
572
+ #: admin/admin.php:776
573
  msgid ""
574
  "Since you're using the default styles set under the Custom Styles section, "
575
  "the width and height is fixed at 65px and crop mode is enabled."
576
  msgstr ""
577
 
578
+ #: admin/admin.php:781
579
  msgid "Style attributes / Width and Height HTML attributes:"
580
  msgstr ""
581
 
582
+ #: admin/admin.php:785
583
  msgid "Style attributes are used for width and height."
584
  msgstr ""
585
 
586
+ #: admin/admin.php:790
587
  msgid "HTML width and height attributes are used for width and height."
588
  msgstr ""
589
 
590
+ #: admin/admin.php:794
591
  msgid "Use timthumb to generate thumbnails? "
592
  msgstr ""
593
 
594
+ #: admin/admin.php:797
595
  msgid ""
596
  "If checked, <a href=\"http://www.binarymoon.co.uk/projects/timthumb/\" "
597
  "target=\"_blank\">timthumb</a> will be used to generate thumbnails"
598
  msgstr ""
599
 
600
+ #: admin/admin.php:800
601
  msgid "Quality of thumbnails generated by timthumb:"
602
  msgstr ""
603
 
604
+ #: admin/admin.php:803
605
  msgid ""
606
  "Enter values between 0 and 100 only. 100 is highest quality and the highest "
607
  "file size. Suggested maximum value is 95. Default is 75."
608
  msgstr ""
609
 
610
+ #: admin/admin.php:806
611
  #, fuzzy
612
  msgid "Post thumbnail meta field name: "
613
  msgstr "Bericht miniatuurafbeelding opties:"
614
 
615
+ #: admin/admin.php:809
616
  msgid ""
617
  "The value of this field should contain the image source and is set in the "
618
  "<em>Add New Post</em> screen"
619
  msgstr ""
620
 
621
+ #: admin/admin.php:812
622
  #, fuzzy
623
  msgid ""
624
  "If the postmeta is not set, then should the plugin extract the first image "
629
  "vertragen wanneer de eerste afbeelding in de gerelateerde berichten groot is "
630
  "qua bestandsgrootte"
631
 
632
+ #: admin/admin.php:815
633
  #, fuzzy
634
  msgid ""
635
  "This could slow down the loading of your page if the first image in the "
640
  "vertragen wanneer de eerste afbeelding in de gerelateerde berichten groot is "
641
  "qua bestandsgrootte"
642
 
643
+ #: admin/admin.php:818
644
  msgid "Use default thumbnail? "
645
  msgstr ""
646
 
647
+ #: admin/admin.php:821
648
  msgid ""
649
  "If checked, when no thumbnail is found, show a default one from the URL "
650
  "below. If not checked and no thumbnail is found, no image will be shown."
651
  msgstr ""
652
 
653
+ #: admin/admin.php:824
654
  msgid "Default thumbnail: "
655
  msgstr ""
656
 
657
+ #: admin/admin.php:828
658
  #, fuzzy
659
  msgid ""
660
  "The plugin will first check if the post contains a thumbnail. If it doesn't "
666
  "veld controleren. Als dit veld niet beschikbaar is toont de plugin de "
667
  "standaard afbeelding zoals hieronder aangegeven:"
668
 
669
+ #: admin/admin.php:852
670
  msgid "Custom CSS"
671
  msgstr ""
672
 
673
+ #: admin/admin.php:867
674
  msgid "Use default style included in the plugin?"
675
  msgstr ""
676
 
677
+ #: admin/admin.php:870
678
  msgid ""
679
  "Top 10 includes a default style that makes your popular posts list to look "
680
  "beautiful. Check the box above if you want to use this."
681
  msgstr ""
682
 
683
+ #: admin/admin.php:871
684
  msgid ""
685
  "Enabling this option will turn on the thumbnails and set their width and "
686
  "height to 65px. It will also turn off the display of the author, excerpt and "
687
  "date if already enabled. Disabling this option will not revert any settings."
688
  msgstr ""
689
 
690
+ #: admin/admin.php:872
691
  #, php-format
692
  msgid ""
693
  "You can view the default style at <a href=\"%1$s\" target=\"_blank\">%1$s</a>"
694
  msgstr ""
695
 
696
+ #: admin/admin.php:875
697
  msgid "Custom CSS to add to header:"
698
  msgstr ""
699
 
700
+ #: admin/admin.php:880
701
  msgid ""
702
  "Do not include <code>style</code> tags. Check out the <a href=\"http://"
703
  "wordpress.org/extend/plugins/top-10/faq/\" target=\"_blank\">FAQ</a> for "
704
  "available CSS classes to style."
705
  msgstr ""
706
 
707
+ #: admin/admin.php:900
708
  #, fuzzy
709
  msgid "Default Options"
710
  msgstr "Output Opties:"
711
 
712
+ #: admin/admin.php:900
713
  msgid "Do you want to set options to Default?"
714
  msgstr "Wil je de opties terugzetten naar standaard?"
715
 
716
+ #: admin/admin.php:924
717
  msgid ""
718
  "Over time the Daily Top 10 database grows in size, which reduces the "
719
  "performance of the plugin. Cleaning the database at regular intervals could "
721
  "will automatically delete entries older than 90 days."
722
  msgstr ""
723
 
724
+ #: admin/admin.php:925
725
  msgid ""
726
  "Note: When scheduled maintenance is enabled, WordPress will run the cron job "
727
  "everytime the job is rescheduled (i.e. you change the settings below)."
728
  msgstr ""
729
 
730
+ #: admin/admin.php:928
731
  msgid "Enable scheduled maintenance of daily tables:"
732
  msgstr ""
733
 
734
+ #: admin/admin.php:932
735
  msgid "Time to run maintenance"
736
  msgstr ""
737
 
738
+ #: admin/admin.php:933
739
  msgid "hrs"
740
  msgstr ""
741
 
742
+ #: admin/admin.php:933
743
  msgid "min"
744
  msgstr ""
745
 
746
+ #: admin/admin.php:935
747
  msgid "How often should the maintenance be run:"
748
  msgstr ""
749
 
750
+ #: admin/admin.php:939
751
  msgid "Daily"
752
  msgstr ""
753
 
754
+ #: admin/admin.php:943
755
  msgid "Weekly"
756
  msgstr ""
757
 
758
+ #: admin/admin.php:947
759
  msgid "Fortnightly"
760
  msgstr ""
761
 
762
+ #: admin/admin.php:951
763
  msgid "Monthly"
764
  msgstr ""
765
 
766
+ #: admin/admin.php:960
767
  msgid "The cron job has been scheduled. Maintenance will run "
768
  msgstr ""
769
 
770
+ #: admin/admin.php:965
771
  msgid "The cron job is missing. Please resave this page to add the job"
772
  msgstr ""
773
 
774
+ #: admin/admin.php:970
775
  msgid "Maintenance is turned off"
776
  msgstr ""
777
 
778
+ #: admin/admin.php:984
779
  msgid "Reset count"
780
  msgstr "Reset telling"
781
 
782
+ #: admin/admin.php:987
783
  msgid ""
784
  "This cannot be reversed. Make sure that your database has been backed up "
785
  "before proceeding"
787
  "Dit kan niet ongedaan worden gemaakt. Zorg ervoor dat je een backup van je "
788
  "database gemaakt hebt voordat je verder gaat"
789
 
790
+ #: admin/admin.php:990
791
  #, fuzzy
792
  msgid "Reset Popular Posts"
793
  msgstr "Populaire Berichten"
794
 
795
+ #: admin/admin.php:990
796
  msgid "Are you sure you want to reset the popular posts?"
797
  msgstr "Ben je er zeker van dat je de populaire berichten wilt resetten?"
798
 
799
+ #: admin/admin.php:991
800
  #, fuzzy
801
  msgid "Reset Daily Popular Posts"
802
  msgstr "Dagelijkse Populaire Berichten"
803
 
804
+ #: admin/admin.php:991
805
  msgid "Are you sure you want to reset the daily popular posts?"
806
  msgstr ""
807
  "Ben je er zeker van dat je de dagelijkse populaire berichten wilt resetten?"
808
 
809
+ #: admin/admin.php:992
810
  msgid "Clear duplicates"
811
  msgstr ""
812
 
813
+ #: admin/admin.php:992
814
  msgid "This will delete the duplicate entries in the tables. Proceed?"
815
  msgstr "Hiermee verwijdert u de dubbele vermeldingen in de tabellen. Doorgaan?"
816
 
817
+ #: admin/admin.php:1005
818
  msgid "WordPress Multisite: Migrate Top 10 v1.x counts to 2.x"
819
  msgstr ""
820
 
821
+ #: admin/admin.php:1008
822
  msgid ""
823
  "If you've been using Top 10 v1.x on multisite, you would have needed to "
824
  "activate the plugin independently for each site. This would have resulted in "
825
+ "two tables being created for each site in the network."
 
 
 
826
  msgstr ""
827
 
828
+ #: admin/admin.php:1009
829
+ msgid ""
830
+ "Top 10 v2.x onwards uses only a single table to record the count, keeping "
831
+ "your database clean. You can use this tool to import the recorded counts "
832
+ "from v1.x tables to the new v2.x table format."
833
+ msgstr ""
834
+
835
+ #: admin/admin.php:1012
836
  msgid ""
837
  "If you do not see any tables below, then it means that either all data has "
838
  "already been imported or no relevant information has been found."
839
  msgstr ""
840
 
841
+ #: admin/admin.php:1015
842
+ msgid ""
843
+ "After running the importer, please verify that all the counts have been "
844
+ "successfully imported. Only then should you delete any old tables!"
845
+ msgstr ""
846
+
847
+ #: admin/admin.php:1049
848
  msgid "Blog ID"
849
  msgstr ""
850
 
851
+ #: admin/admin.php:1052
852
  msgid "Status"
853
  msgstr ""
854
 
855
+ #: admin/admin.php:1055
856
  msgid "Select to import"
857
  msgstr ""
858
 
859
+ #: admin/admin.php:1065
860
  msgid "Blog #"
861
  msgstr ""
862
 
863
+ #: admin/admin.php:1075
864
  msgid "Not imported"
865
  msgstr ""
866
 
867
+ #: admin/admin.php:1079
868
  msgid "Imported"
869
  msgstr ""
870
 
871
+ #: admin/admin.php:1100
872
  msgid "Begin import"
873
  msgstr ""
874
 
875
+ #: admin/admin.php:1101
876
  msgid "Delete selected tables"
877
  msgstr ""
878
 
879
+ #: admin/admin.php:1102
880
  msgid "Delete all imported tables"
881
  msgstr ""
882
 
883
+ #: admin/admin.php:1159 admin/admin.php:1255
884
  msgid "Daily Popular Posts"
885
  msgstr "Dagelijkse Populaire Berichten"
886
 
887
+ #: admin/admin.php:1189
888
  msgid "Support the development"
889
  msgstr "Ondersteun de ontwikkeling"
890
 
891
+ #: admin/admin.php:1196
892
  msgid "Donation for Top 10"
893
  msgstr ""
894
 
895
+ #: admin/admin.php:1198
896
  msgid "Enter amount in USD: "
897
  msgstr "Voer het bedrag in in USD:"
898
 
899
+ #: admin/admin.php:1202
900
  #, fuzzy
901
  msgid "Send your donation to the author of Top 10"
902
  msgstr "Zend je donatie naar de auteur van "
903
 
904
+ #: admin/admin.php:1209
905
  msgid "Follow me"
906
  msgstr ""
907
 
908
+ #: admin/admin.php:1219
909
  #, fuzzy
910
  msgid "Quick links"
911
  msgstr "Quick links"
912
 
913
+ #: admin/admin.php:1223
914
  #, fuzzy
915
  msgid "Top 10 plugin page"
916
  msgstr "plugin pagina"
917
 
918
+ #: admin/admin.php:1224
919
  msgid "Top 10 Github page"
920
  msgstr ""
921
 
922
+ #: admin/admin.php:1225
923
  msgid "Other plugins"
924
  msgstr "Andere plugins"
925
 
926
+ #: admin/admin.php:1226
927
  msgid "Ajay's blog"
928
  msgstr "De blog van Ajay"
929
 
930
+ #: admin/admin.php:1227
931
  msgid "FAQ"
932
  msgstr ""
933
 
934
+ #: admin/admin.php:1228 admin/admin.php:1386
935
  msgid "Support"
936
  msgstr "Ondersteuning"
937
 
938
+ #: admin/admin.php:1229
939
  msgid "Reviews"
940
  msgstr ""
941
 
942
+ #: admin/admin.php:1252
943
  #, fuzzy
944
  msgid "Overall Popular Posts"
945
  msgstr "Bekijk het Totaal Populaire Berichten"
946
 
947
+ #: admin/admin.php:1363
948
  msgid "Settings"
949
  msgstr "Instellingen"
950
 
951
+ #: admin/admin.php:1387
952
  msgid "Donate"
953
  msgstr "Doneer"
954
 
1040
  msgid "Thumbnail width"
1041
  msgstr "Bericht miniatuurafbeelding opties:"
1042
 
1043
+ #: top-10.php:879
1044
  msgid " by "
1045
  msgstr ""
1046
 
1047
+ #: top-10.php:930
1048
  #, php-format
1049
  msgid "Popular posts by <a href=\"%s\" rel=\"nofollow\" %s>Top 10 plugin</a>"
1050
  msgstr ""
1051
 
1052
+ #: top-10.php:1029
1053
  msgid "<h3>Popular Posts</h3>"
1054
  msgstr "<h3>Populaire Berichten</h3>"
1055
 
1056
+ #: top-10.php:1030
1057
  msgid "<h3>Daily Popular</h3>"
1058
  msgstr "<h3>Dagelijks Populair</h3>"
1059
 
1060
+ #: top-10.php:1031
1061
  #, fuzzy
1062
  msgid "No top posts yet"
1063
  msgstr "Reset Top 10 populaire berichten"
1064
 
1065
+ #: top-10.php:1676
1066
  msgid "Once Weekly"
1067
  msgstr ""
1068
 
1069
+ #: top-10.php:1680
1070
  msgid "Once Fortnightly"
1071
  msgstr ""
1072
 
1073
+ #: top-10.php:1684
1074
  msgid "Once Monthly"
1075
  msgstr ""
1076
 
1077
+ #: top-10.php:1688
1078
  msgid "Once quarterly"
1079
  msgstr ""
1080
 
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: 2014-12-28 00:58-0000\n"
6
  "PO-Revision-Date: \n"
7
  "Last-Translator: Ajay D'Souza <me@ajaydsouza.com>\n"
8
  "Language-Team: Web Geeks\n"
@@ -61,7 +61,7 @@ msgstr "Anterioară"
61
  msgid "Next"
62
  msgstr "Următorul"
63
 
64
- #: admin/admin-dashboard.php:200 admin/admin.php:1145
65
  msgid "Popular Posts"
66
  msgstr "Posturi populare"
67
 
@@ -69,7 +69,7 @@ msgstr "Posturi populare"
69
  msgid "Daily Popular"
70
  msgstr "Daily populare"
71
 
72
- #: admin/admin-metabox.php:38 admin/admin.php:1234
73
  msgid "Top 10"
74
  msgstr "Top 10"
75
 
@@ -99,106 +99,137 @@ msgstr ""
99
  msgid "The URL above is saved in the meta field: "
100
  msgstr ""
101
 
102
- #: admin/admin.php:160
103
  msgid "Options saved successfully."
104
  msgstr "Opţiuni salvat cu succes."
105
 
106
- #: admin/admin.php:170
107
  msgid "Options set to Default."
108
  msgstr "Opţiunile setate la valorile implicite."
109
 
110
- #: admin/admin.php:176
111
  msgid "Top 10 popular posts reset"
112
  msgstr "Top 10 populare posturi Resetare"
113
 
114
- #: admin/admin.php:182
115
  msgid "Top 10 daily popular posts reset"
116
  msgstr "Top 10 posturi populare daily Reiniţializare"
117
 
118
- #: admin/admin.php:189
119
  msgid "Duplicate rows cleaned from tables"
120
  msgstr ""
121
 
122
- #: admin/admin.php:201
123
  msgid "Scheduled maintenance enabled / modified"
124
  msgstr ""
125
 
126
- #: admin/admin.php:205
127
  msgid "Scheduled maintenance disabled"
128
  msgstr ""
129
 
130
- #: admin/admin.php:244
131
  msgid "Counts from selected sites have been imported."
132
  msgstr ""
133
 
134
- #: admin/admin.php:269
135
  msgid ""
136
  "Selected tables have been deleted. Note that only imported tables have been "
137
  "deleted."
138
  msgstr ""
139
 
140
- #: admin/admin.php:277 admin/admin.php:1234 admin/admin.php:1237
141
  #, fuzzy
142
  msgid "Top 10 Settings"
143
  msgstr "Setări"
144
 
145
- #: admin/admin.php:289 admin/admin.php:311
146
  msgid "General options"
147
  msgstr ""
148
 
149
- #: admin/admin.php:290 admin/admin.php:373
150
  msgid "Counter and tracker options"
151
  msgstr ""
152
 
153
- #: admin/admin.php:291 admin/admin.php:478
154
  msgid "Popular post list options"
155
  msgstr ""
156
 
157
- #: admin/admin.php:292 admin/admin.php:681
158
  #: includes/class-top-10-widget.php:103
159
  #, fuzzy
160
  msgid "Thumbnail options"
161
  msgstr "Post Opţiuni pictograme:"
162
 
163
- #: admin/admin.php:293
164
  msgid "Custom styles"
165
  msgstr ""
166
 
167
- #: admin/admin.php:294 admin/admin.php:912
168
  msgid "Maintenance"
169
  msgstr ""
170
 
171
- #: admin/admin.php:310 admin/admin.php:372 admin/admin.php:477
172
- #: admin/admin.php:680 admin/admin.php:843 admin/admin.php:911
173
- #: admin/admin.php:975 admin/admin.php:996 admin/admin.php:1176
174
- #: admin/admin.php:1196 admin/admin.php:1206
175
  msgid "Click to toggle"
176
  msgstr ""
177
 
178
- #: admin/admin.php:327
179
  msgid "Enable Overall stats"
180
  msgstr ""
181
 
182
- #: admin/admin.php:333
183
  msgid "Enable Daily stats"
184
  msgstr ""
185
 
186
- #: admin/admin.php:339
187
  msgid "Cache fix:"
188
  msgstr ""
189
 
190
- #: admin/admin.php:342
191
  msgid ""
192
  "This will try to prevent W3 Total Cache and other caching plugins from "
193
  "caching the tracker script of the plugin. Try toggling this option in case "
194
  "you find that your posts are not tracked."
195
  msgstr ""
196
 
197
- #: admin/admin.php:346
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
198
  msgid "Link to Top 10 plugin page"
199
  msgstr ""
200
 
201
- #: admin/admin.php:349
202
  #, fuzzy
203
  msgid ""
204
  "A link to the plugin is added as an extra list item to the list of popular "
@@ -207,59 +238,59 @@ msgstr ""
207
  "Un link pentru a plugin-ul se adaugă ca un element suplimentar lista la "
208
  "lista de posturi populare. Nu obligatoriu, dar Multumesc dacă tu a face it!"
209
 
210
- #: admin/admin.php:354 admin/admin.php:459 admin/admin.php:662
211
- #: admin/admin.php:825 admin/admin.php:891 admin/admin.php:968
212
  #, fuzzy
213
  msgid "Save Options"
214
  msgstr "Opţiuni:"
215
 
216
- #: admin/admin.php:389
217
  #, fuzzy
218
  msgid "Display number of views on:"
219
  msgstr "Afişează numărul de vizualizări pe posturi?"
220
 
221
- #: admin/admin.php:391
222
  msgid "Posts"
223
  msgstr ""
224
 
225
- #: admin/admin.php:392
226
  #, fuzzy
227
  msgid "Pages"
228
  msgstr "Pagină"
229
 
230
- #: admin/admin.php:393
231
  msgid "Home page"
232
  msgstr ""
233
 
234
- #: admin/admin.php:394
235
  msgid "Feeds"
236
  msgstr ""
237
 
238
- #: admin/admin.php:395
239
  msgid "Category archives"
240
  msgstr ""
241
 
242
- #: admin/admin.php:396
243
  msgid "Tag archives"
244
  msgstr ""
245
 
246
- #: admin/admin.php:397
247
  msgid "Other archives"
248
  msgstr ""
249
 
250
- #: admin/admin.php:398
251
  msgid ""
252
  "If you choose to disable this, please add <code>&lt;?php if "
253
  "( function_exists ( 'echo_tptn_post_count' ) ) echo_tptn_post_count(); ?&gt;"
254
  "</code> to your template file where you want it displayed"
255
  msgstr ""
256
 
257
- #: admin/admin.php:402
258
  #, fuzzy
259
  msgid "Format to display the post views:"
260
  msgstr "Format pentru a afişa numărul în: "
261
 
262
- #: admin/admin.php:405
263
  msgid ""
264
  "Use <code>%totalcount%</code> to display the total count, <code>%dailycount"
265
  "%</code> to display the daily count and <code>%overallcount%</code> to "
@@ -267,11 +298,11 @@ msgid ""
267
  "options displays <code>[Visited 123 times, 23 visits today]</code>"
268
  msgstr ""
269
 
270
- #: admin/admin.php:409
271
  msgid "What do display when there are no visits?"
272
  msgstr ""
273
 
274
- #: admin/admin.php:412
275
  msgid ""
276
  "This text applies only when there are 0 hits for the post and it isn't a "
277
  "single page. e.g. if you display post views on the homepage or archives then "
@@ -279,251 +310,231 @@ msgid ""
279
  "option."
280
  msgstr ""
281
 
282
- #: admin/admin.php:416
283
  msgid "Always display latest post count"
284
  msgstr ""
285
 
286
- #: admin/admin.php:419
287
  msgid ""
288
  "This option uses JavaScript and will increase your page load time. Turn this "
289
  "off if you are not using caching plugins or are OK with displaying older "
290
  "cached counts."
291
  msgstr ""
292
 
293
- #: admin/admin.php:423
294
  msgid "Track visits of authors on their own posts?"
295
  msgstr "Track vizite de autori pe posturile lor proprii?"
296
 
297
- #: admin/admin.php:426
298
  msgid ""
299
  "Disabling this option will stop authors visits tracked on their own posts"
300
  msgstr ""
301
 
302
- #: admin/admin.php:430
303
  #, fuzzy
304
  msgid "Track visits of admins?"
305
  msgstr "Track vizite de autori pe posturile lor proprii?"
306
 
307
- #: admin/admin.php:433
308
  msgid "Disabling this option will stop admin visits being tracked."
309
  msgstr ""
310
 
311
- #: admin/admin.php:437
312
  #, fuzzy
313
  msgid "Track visits of Editors?"
314
  msgstr "Track vizite de autori pe posturile lor proprii?"
315
 
316
- #: admin/admin.php:440
317
  msgid "Disabling this option will stop editor visits being tracked."
318
  msgstr ""
319
 
320
- #: admin/admin.php:444
321
  msgid "Display page views on Posts and Pages in Admin"
322
  msgstr ""
323
 
324
- #: admin/admin.php:447
325
  msgid ""
326
  "Adds three columns called Total Views, Today's Views and Views to All Posts "
327
  "and All Pages"
328
  msgstr ""
329
 
330
- #: admin/admin.php:451
331
  #, fuzzy
332
  msgid "Show number of views to non-admins"
333
  msgstr "Afişează numărul de vizualizări pe pagini?"
334
 
335
- #: admin/admin.php:454
336
  msgid ""
337
  "If you disable this then non-admins won't see the above columns or view the "
338
  "independent pages with the top posts"
339
  msgstr ""
340
 
341
- #: admin/admin.php:494
342
  msgid "Number of popular posts to display: "
343
  msgstr "Numărul de posturi populare pentru a afişa: "
344
 
345
- #: admin/admin.php:497
346
  msgid ""
347
  "Maximum number of posts that will be displayed in the list. This option is "
348
  "used if you don't specify the number of posts in the widget or shortcodes"
349
  msgstr ""
350
 
351
- #: admin/admin.php:501
352
- msgid "Daily popular contains top posts over:"
353
- msgstr ""
354
-
355
- #: admin/admin.php:503
356
- msgid "day(s)"
357
- msgstr ""
358
-
359
- #: admin/admin.php:504
360
- msgid "hour(s)"
361
- msgstr ""
362
-
363
- #: admin/admin.php:505
364
- msgid ""
365
- "Think of Daily Popular has a custom date range applied as a global setting. "
366
- "Instead of displaying popular posts from the past day, this setting lets you "
367
- "display posts for as many days or as few hours as you want. This can be "
368
- "overridden in the widget."
369
- msgstr ""
370
-
371
- #: admin/admin.php:509
372
  msgid "Post types to include in results (including custom post types)"
373
  msgstr ""
374
 
375
- #: admin/admin.php:521
376
  msgid "List of post or page IDs to exclude from the results: "
377
  msgstr ""
378
 
379
- #: admin/admin.php:523 admin/admin.php:630
380
  msgid "Enter comma separated list of IDs. e.g. 188,320,500"
381
  msgstr ""
382
 
383
- #: admin/admin.php:527
384
  msgid "Exclude Categories: "
385
  msgstr "Excludeţi categorii: "
386
 
387
- #: admin/admin.php:542
388
  msgid ""
389
  "Comma separated list of category slugs. The field above has an autocomplete "
390
  "so simply start typing in the starting letters and it will prompt you with "
391
  "options"
392
  msgstr ""
393
 
394
- #: admin/admin.php:547
395
  msgid "Title of popular posts: "
396
  msgstr "Titlul de posturi populare: "
397
 
398
- #: admin/admin.php:553
399
  msgid "Title of daily popular posts: "
400
  msgstr "Titlul de zi cu zi de posturi populare: "
401
 
402
- #: admin/admin.php:559
403
  msgid "When there are no posts, what should be shown?"
404
  msgstr ""
405
 
406
- #: admin/admin.php:563
407
  msgid "Blank Output"
408
  msgstr ""
409
 
410
- #: admin/admin.php:567
411
  msgid "Display:"
412
  msgstr ""
413
 
414
- #: admin/admin.php:572
415
  msgid "Show post excerpt in list?"
416
  msgstr "Afişează post extras din lista?"
417
 
418
- #: admin/admin.php:578
419
  msgid "Length of excerpt (in words): "
420
  msgstr "Lungimea extras (în cuvinte): "
421
 
422
- #: admin/admin.php:584
423
  #, fuzzy
424
  msgid "Show post author in list?"
425
  msgstr "Afişează post extras din lista?"
426
 
427
- #: admin/admin.php:590
428
  #, fuzzy
429
  msgid "Show post date in list?"
430
  msgstr "Afişează post extras din lista?"
431
 
432
- #: admin/admin.php:596
433
  msgid "Limit post title length (in characters)"
434
  msgstr ""
435
 
436
- #: admin/admin.php:602
437
  #, fuzzy
438
  msgid "Show view count in list?"
439
  msgstr "Afişează post extras din lista?"
440
 
441
- #: admin/admin.php:608
442
  msgid "Always display latest post count in the daily lists?"
443
  msgstr ""
444
 
445
- #: admin/admin.php:611
446
  msgid ""
447
  "This option uses JavaScript and will increase your page load time. When you "
448
  "enable this option, the daily widget will not use the options set there, but "
449
  "options will need to be set on this screen."
450
  msgstr ""
451
 
452
- #: admin/admin.php:615
453
  msgid "Open links in new window"
454
  msgstr ""
455
 
456
- #: admin/admin.php:621
457
  msgid "Add nofollow attribute to links in the list"
458
  msgstr ""
459
 
460
- #: admin/admin.php:627
461
  msgid "Exclude display of related posts on these posts / pages"
462
  msgstr ""
463
 
464
- #: admin/admin.php:634
465
  #, fuzzy
466
  msgid "Customise the list HTML"
467
  msgstr "Personaliza ieşire:"
468
 
469
- #: admin/admin.php:637
470
  msgid "HTML to display before the list of posts: "
471
  msgstr "HTML pentru a afişa înainte de lista de posturi: "
472
 
473
- #: admin/admin.php:643
474
  msgid "HTML to display before each list item: "
475
  msgstr "HTML pentru a afişa înainte de fiecare element din listă: "
476
 
477
- #: admin/admin.php:649
478
  msgid "HTML to display after each list item: "
479
  msgstr "HTML pentru a afişa după fiecare element din listă: "
480
 
481
- #: admin/admin.php:655
482
  msgid "HTML to display after the list of posts: "
483
  msgstr "HTML pentru a afişa după lista de posturi: "
484
 
485
- #: admin/admin.php:696
486
  msgid "Location of post thumbnail:"
487
  msgstr ""
488
 
489
- #: admin/admin.php:700
490
  msgid "Display thumbnails inline with posts, before title"
491
  msgstr "Afişare miniaturi inline cu posturi, înainte de titlu"
492
 
493
- #: admin/admin.php:705
494
  msgid "Display thumbnails inline with posts, after title"
495
  msgstr "Afişare miniaturi inline cu posturi, după titlul"
496
 
497
- #: admin/admin.php:710
498
  msgid "Display only thumbnails, no text"
499
  msgstr "Afişa numai miniaturi, nici un text"
500
 
501
- #: admin/admin.php:715
502
  msgid "Do not display thumbnails, only text."
503
  msgstr "Nu se afişează miniaturi, numai textul."
504
 
505
- #: admin/admin.php:719
506
  msgid "Thumbnail size:"
507
  msgstr ""
508
 
509
- #: admin/admin.php:743
510
  msgid "Custom size"
511
  msgstr ""
512
 
513
- #: admin/admin.php:746
514
  msgid ""
515
  "You can choose from existing image sizes above or create a custom size. If "
516
  "you have chosen Custom size above, then enter the width, height and crop "
517
  "settings below. For best results, use a cropped image."
518
  msgstr ""
519
 
520
- #: admin/admin.php:747
521
  msgid ""
522
  "If you change the width and/or height below, existing images will not be "
523
  "automatically resized."
524
  msgstr ""
525
 
526
- #: admin/admin.php:748
527
  #, php-format
528
  msgid ""
529
  "I recommend using <a href='%s' target='_blank'>Force Regenerate Thumbnails</"
@@ -531,79 +542,79 @@ msgid ""
531
  "regenerate all image sizes."
532
  msgstr ""
533
 
534
- #: admin/admin.php:751
535
  msgid "Width of custom thumbnail:"
536
  msgstr ""
537
 
538
- #: admin/admin.php:756
539
  msgid "Height of custom thumbnail"
540
  msgstr ""
541
 
542
- #: admin/admin.php:761
543
  msgid "Crop mode:"
544
  msgstr ""
545
 
546
- #: admin/admin.php:765
547
  msgid ""
548
  "By default, thumbnails will be proportionately cropped. Check this box to "
549
  "hard crop the thumbnails."
550
  msgstr ""
551
 
552
- #: admin/admin.php:766
553
  #, php-format
554
  msgid "<a href='%s' target='_blank'>Difference between soft and hard crop</a>"
555
  msgstr ""
556
 
557
- #: admin/admin.php:768
558
  msgid ""
559
  "Since you're using the default styles set under the Custom Styles section, "
560
  "the width and height is fixed at 65px and crop mode is enabled."
561
  msgstr ""
562
 
563
- #: admin/admin.php:773
564
  msgid "Style attributes / Width and Height HTML attributes:"
565
  msgstr ""
566
 
567
- #: admin/admin.php:777
568
  msgid "Style attributes are used for width and height."
569
  msgstr ""
570
 
571
- #: admin/admin.php:782
572
  msgid "HTML width and height attributes are used for width and height."
573
  msgstr ""
574
 
575
- #: admin/admin.php:786
576
  msgid "Use timthumb to generate thumbnails? "
577
  msgstr ""
578
 
579
- #: admin/admin.php:789
580
  msgid ""
581
  "If checked, <a href=\"http://www.binarymoon.co.uk/projects/timthumb/\" "
582
  "target=\"_blank\">timthumb</a> will be used to generate thumbnails"
583
  msgstr ""
584
 
585
- #: admin/admin.php:792
586
  msgid "Quality of thumbnails generated by timthumb:"
587
  msgstr ""
588
 
589
- #: admin/admin.php:795
590
  msgid ""
591
  "Enter values between 0 and 100 only. 100 is highest quality and the highest "
592
  "file size. Suggested maximum value is 95. Default is 75."
593
  msgstr ""
594
 
595
- #: admin/admin.php:798
596
  #, fuzzy
597
  msgid "Post thumbnail meta field name: "
598
  msgstr "Post Opţiuni pictograme:"
599
 
600
- #: admin/admin.php:801
601
  msgid ""
602
  "The value of this field should contain the image source and is set in the "
603
  "<em>Add New Post</em> screen"
604
  msgstr ""
605
 
606
- #: admin/admin.php:804
607
  #, fuzzy
608
  msgid ""
609
  "If the postmeta is not set, then should the plugin extract the first image "
@@ -614,7 +625,7 @@ msgstr ""
614
  "dumneavoastră dacă prima imagine în legate de posturi este mare în mărime "
615
  "fişier"
616
 
617
- #: admin/admin.php:807
618
  #, fuzzy
619
  msgid ""
620
  "This could slow down the loading of your page if the first image in the "
@@ -625,11 +636,11 @@ msgstr ""
625
  "dumneavoastră dacă prima imagine în legate de posturi este mare în mărime "
626
  "fişier"
627
 
628
- #: admin/admin.php:810
629
  msgid "Use default thumbnail? "
630
  msgstr ""
631
 
632
- #: admin/admin.php:813
633
  msgid ""
634
  "If checked, when no thumbnail is found, show a default one from the URL "
635
  "below. If not checked and no thumbnail is found, no image will be shown."
@@ -638,65 +649,65 @@ msgstr ""
638
  "la URL-ul de mai jos. În cazul în care nu a verificat şi este găsit nici un "
639
  "thumbnail, imaginea nu va fi indicat."
640
 
641
- #: admin/admin.php:816
642
  msgid "Default thumbnail: "
643
  msgstr ""
644
 
645
- #: admin/admin.php:820
646
  msgid ""
647
  "The plugin will first check if the post contains a thumbnail. If it doesn't "
648
  "then it will check the meta field. If this is not available, then it will "
649
  "show the default image as specified above"
650
  msgstr ""
651
 
652
- #: admin/admin.php:844
653
  msgid "Custom CSS"
654
  msgstr ""
655
 
656
- #: admin/admin.php:859
657
  msgid "Use default style included in the plugin?"
658
  msgstr ""
659
 
660
- #: admin/admin.php:862
661
  msgid ""
662
  "Top 10 includes a default style that makes your popular posts list to look "
663
  "beautiful. Check the box above if you want to use this."
664
  msgstr ""
665
 
666
- #: admin/admin.php:863
667
  msgid ""
668
  "Enabling this option will turn on the thumbnails and set their width and "
669
  "height to 65px. It will also turn off the display of the author, excerpt and "
670
  "date if already enabled. Disabling this option will not revert any settings."
671
  msgstr ""
672
 
673
- #: admin/admin.php:864
674
  #, php-format
675
  msgid ""
676
  "You can view the default style at <a href=\"%1$s\" target=\"_blank\">%1$s</a>"
677
  msgstr ""
678
 
679
- #: admin/admin.php:867
680
  msgid "Custom CSS to add to header:"
681
  msgstr ""
682
 
683
- #: admin/admin.php:872
684
  msgid ""
685
  "Do not include <code>style</code> tags. Check out the <a href=\"http://"
686
  "wordpress.org/extend/plugins/top-10/faq/\" target=\"_blank\">FAQ</a> for "
687
  "available CSS classes to style."
688
  msgstr ""
689
 
690
- #: admin/admin.php:892
691
  #, fuzzy
692
  msgid "Default Options"
693
  msgstr "Opţiuni de ieşire:"
694
 
695
- #: admin/admin.php:892
696
  msgid "Do you want to set options to Default?"
697
  msgstr "Doriţi să setaţi opţiunile la valorile implicite?"
698
 
699
- #: admin/admin.php:916
700
  msgid ""
701
  "Over time the Daily Top 10 database grows in size, which reduces the "
702
  "performance of the plugin. Cleaning the database at regular intervals could "
@@ -704,65 +715,65 @@ msgid ""
704
  "will automatically delete entries older than 90 days."
705
  msgstr ""
706
 
707
- #: admin/admin.php:917
708
  msgid ""
709
  "Note: When scheduled maintenance is enabled, WordPress will run the cron job "
710
  "everytime the job is rescheduled (i.e. you change the settings below)."
711
  msgstr ""
712
 
713
- #: admin/admin.php:920
714
  msgid "Enable scheduled maintenance of daily tables:"
715
  msgstr ""
716
 
717
- #: admin/admin.php:924
718
  msgid "Time to run maintenance"
719
  msgstr ""
720
 
721
- #: admin/admin.php:925
722
  msgid "hrs"
723
  msgstr ""
724
 
725
- #: admin/admin.php:925
726
  msgid "min"
727
  msgstr ""
728
 
729
- #: admin/admin.php:927
730
  msgid "How often should the maintenance be run:"
731
  msgstr ""
732
 
733
- #: admin/admin.php:931
734
  msgid "Daily"
735
  msgstr ""
736
 
737
- #: admin/admin.php:935
738
  msgid "Weekly"
739
  msgstr ""
740
 
741
- #: admin/admin.php:939
742
  msgid "Fortnightly"
743
  msgstr ""
744
 
745
- #: admin/admin.php:943
746
  msgid "Monthly"
747
  msgstr ""
748
 
749
- #: admin/admin.php:952
750
  msgid "The cron job has been scheduled. Maintenance will run "
751
  msgstr ""
752
 
753
- #: admin/admin.php:957
754
  msgid "The cron job is missing. Please resave this page to add the job"
755
  msgstr ""
756
 
757
- #: admin/admin.php:962
758
  msgid "Maintenance is turned off"
759
  msgstr ""
760
 
761
- #: admin/admin.php:976
762
  msgid "Reset count"
763
  msgstr "Reiniţializare count"
764
 
765
- #: admin/admin.php:979
766
  msgid ""
767
  "This cannot be reversed. Make sure that your database has been backed up "
768
  "before proceeding"
@@ -770,157 +781,167 @@ msgstr ""
770
  "Acest lucru poate fi inversat. Asiguraţi-vă că baza de date a fost sprijinit "
771
  "înainte de a continua"
772
 
773
- #: admin/admin.php:982
774
  #, fuzzy
775
  msgid "Reset Popular Posts"
776
  msgstr "Posturi populare"
777
 
778
- #: admin/admin.php:982
779
  msgid "Are you sure you want to reset the popular posts?"
780
  msgstr "Sigur reiniţializaţi posturi populare?"
781
 
782
- #: admin/admin.php:983
783
  #, fuzzy
784
  msgid "Reset Daily Popular Posts"
785
  msgstr "Posturi populare de zi cu zi"
786
 
787
- #: admin/admin.php:983
788
  msgid "Are you sure you want to reset the daily popular posts?"
789
  msgstr "Sigur reiniţializaţi posturi populare zilnic?"
790
 
791
- #: admin/admin.php:984
792
  msgid "Clear duplicates"
793
  msgstr ""
794
 
795
- #: admin/admin.php:984
796
  msgid "This will delete the duplicate entries in the tables. Proceed?"
797
  msgstr "Aceasta va şterge intrările dublate în tabele. Continuaţi?"
798
 
799
- #: admin/admin.php:997
800
  msgid "WordPress Multisite: Migrate Top 10 v1.x counts to 2.x"
801
  msgstr ""
802
 
803
- #: admin/admin.php:1000
804
  msgid ""
805
  "If you've been using Top 10 v1.x on multisite, you would have needed to "
806
  "activate the plugin independently for each site. This would have resulted in "
807
- "two tables being created for each site in the network. Top 10 v2.x onwards "
808
- "uses only a single table to record the count, keeping your database clean. "
809
- "You can use this tool to import the recorded counts from v1.x tables to the "
810
- "new v2.x table format."
811
  msgstr ""
812
 
813
- #: admin/admin.php:1003
 
 
 
 
 
 
 
814
  msgid ""
815
  "If you do not see any tables below, then it means that either all data has "
816
  "already been imported or no relevant information has been found."
817
  msgstr ""
818
 
819
- #: admin/admin.php:1037
 
 
 
 
 
 
820
  msgid "Blog ID"
821
  msgstr ""
822
 
823
- #: admin/admin.php:1040
824
  msgid "Status"
825
  msgstr ""
826
 
827
- #: admin/admin.php:1043
828
  msgid "Select to import"
829
  msgstr ""
830
 
831
- #: admin/admin.php:1053
832
  msgid "Blog #"
833
  msgstr ""
834
 
835
- #: admin/admin.php:1063
836
  msgid "Not imported"
837
  msgstr ""
838
 
839
- #: admin/admin.php:1067
840
  msgid "Imported"
841
  msgstr ""
842
 
843
- #: admin/admin.php:1088
844
  msgid "Begin import"
845
  msgstr ""
846
 
847
- #: admin/admin.php:1089
848
  msgid "Delete selected tables"
849
  msgstr ""
850
 
851
- #: admin/admin.php:1090
852
  msgid "Delete all imported tables"
853
  msgstr ""
854
 
855
- #: admin/admin.php:1147 admin/admin.php:1243
856
  msgid "Daily Popular Posts"
857
  msgstr "Posturi populare de zi cu zi"
858
 
859
- #: admin/admin.php:1177
860
  msgid "Support the development"
861
  msgstr "Sprijinirea dezvoltării"
862
 
863
- #: admin/admin.php:1184
864
  msgid "Donation for Top 10"
865
  msgstr ""
866
 
867
- #: admin/admin.php:1186
868
  msgid "Enter amount in USD: "
869
  msgstr "Introduceţi valoarea în USD: "
870
 
871
- #: admin/admin.php:1190
872
  #, fuzzy
873
  msgid "Send your donation to the author of Top 10"
874
  msgstr "Trimite donatie autorului"
875
 
876
- #: admin/admin.php:1197
877
  msgid "Follow me"
878
  msgstr ""
879
 
880
- #: admin/admin.php:1207
881
  #, fuzzy
882
  msgid "Quick links"
883
  msgstr "Legături rapide pentru"
884
 
885
- #: admin/admin.php:1211
886
  #, fuzzy
887
  msgid "Top 10 plugin page"
888
  msgstr "plug-in pagina"
889
 
890
- #: admin/admin.php:1212
891
  msgid "Top 10 Github page"
892
  msgstr ""
893
 
894
- #: admin/admin.php:1213
895
  msgid "Other plugins"
896
  msgstr "Alte plugin-uri"
897
 
898
- #: admin/admin.php:1214
899
  msgid "Ajay's blog"
900
  msgstr "Ajay's blog"
901
 
902
- #: admin/admin.php:1215
903
  msgid "FAQ"
904
  msgstr ""
905
 
906
- #: admin/admin.php:1216 admin/admin.php:1374
907
  msgid "Support"
908
  msgstr "Suport"
909
 
910
- #: admin/admin.php:1217
911
  msgid "Reviews"
912
  msgstr ""
913
 
914
- #: admin/admin.php:1240
915
  #, fuzzy
916
  msgid "Overall Popular Posts"
917
  msgstr "Vedere de ansamblu posturi populare"
918
 
919
- #: admin/admin.php:1351
920
  msgid "Settings"
921
  msgstr "Setări"
922
 
923
- #: admin/admin.php:1375
924
  msgid "Donate"
925
  msgstr "Dona"
926
 
@@ -1012,41 +1033,41 @@ msgstr "Post Opţiuni pictograme:"
1012
  msgid "Thumbnail width"
1013
  msgstr "Post Opţiuni pictograme:"
1014
 
1015
- #: top-10.php:866
1016
  msgid " by "
1017
  msgstr ""
1018
 
1019
- #: top-10.php:917
1020
  #, php-format
1021
  msgid "Popular posts by <a href=\"%s\" rel=\"nofollow\" %s>Top 10 plugin</a>"
1022
  msgstr ""
1023
 
1024
- #: top-10.php:1016
1025
  msgid "<h3>Popular Posts</h3>"
1026
  msgstr "<h3>Posturi populare</h3>"
1027
 
1028
- #: top-10.php:1017
1029
  msgid "<h3>Daily Popular</h3>"
1030
  msgstr "<h3>Daily populare</h3>"
1031
 
1032
- #: top-10.php:1018
1033
  #, fuzzy
1034
  msgid "No top posts yet"
1035
  msgstr "Top 10 populare posturi Resetare"
1036
 
1037
- #: top-10.php:1668
1038
  msgid "Once Weekly"
1039
  msgstr ""
1040
 
1041
- #: top-10.php:1672
1042
  msgid "Once Fortnightly"
1043
  msgstr ""
1044
 
1045
- #: top-10.php:1676
1046
  msgid "Once Monthly"
1047
  msgstr ""
1048
 
1049
- #: top-10.php:1680
1050
  msgid "Once quarterly"
1051
  msgstr ""
1052
 
2
  msgstr ""
3
  "Project-Id-Version: Top 10\n"
4
  "Report-Msgid-Bugs-To: \n"
5
+ "POT-Creation-Date: 2015-01-01 21:53-0000\n"
6
  "PO-Revision-Date: \n"
7
  "Last-Translator: Ajay D'Souza <me@ajaydsouza.com>\n"
8
  "Language-Team: Web Geeks\n"
61
  msgid "Next"
62
  msgstr "Următorul"
63
 
64
+ #: admin/admin-dashboard.php:200 admin/admin.php:1157
65
  msgid "Popular Posts"
66
  msgstr "Posturi populare"
67
 
69
  msgid "Daily Popular"
70
  msgstr "Daily populare"
71
 
72
+ #: admin/admin-metabox.php:38 admin/admin.php:1246
73
  msgid "Top 10"
74
  msgstr "Top 10"
75
 
99
  msgid "The URL above is saved in the meta field: "
100
  msgstr ""
101
 
102
+ #: admin/admin.php:161
103
  msgid "Options saved successfully."
104
  msgstr "Opţiuni salvat cu succes."
105
 
106
+ #: admin/admin.php:171
107
  msgid "Options set to Default."
108
  msgstr "Opţiunile setate la valorile implicite."
109
 
110
+ #: admin/admin.php:177
111
  msgid "Top 10 popular posts reset"
112
  msgstr "Top 10 populare posturi Resetare"
113
 
114
+ #: admin/admin.php:183
115
  msgid "Top 10 daily popular posts reset"
116
  msgstr "Top 10 posturi populare daily Reiniţializare"
117
 
118
+ #: admin/admin.php:190
119
  msgid "Duplicate rows cleaned from tables"
120
  msgstr ""
121
 
122
+ #: admin/admin.php:202
123
  msgid "Scheduled maintenance enabled / modified"
124
  msgstr ""
125
 
126
+ #: admin/admin.php:206
127
  msgid "Scheduled maintenance disabled"
128
  msgstr ""
129
 
130
+ #: admin/admin.php:245
131
  msgid "Counts from selected sites have been imported."
132
  msgstr ""
133
 
134
+ #: admin/admin.php:270
135
  msgid ""
136
  "Selected tables have been deleted. Note that only imported tables have been "
137
  "deleted."
138
  msgstr ""
139
 
140
+ #: admin/admin.php:278 admin/admin.php:1246 admin/admin.php:1249
141
  #, fuzzy
142
  msgid "Top 10 Settings"
143
  msgstr "Setări"
144
 
145
+ #: admin/admin.php:290 admin/admin.php:312
146
  msgid "General options"
147
  msgstr ""
148
 
149
+ #: admin/admin.php:291 admin/admin.php:389
150
  msgid "Counter and tracker options"
151
  msgstr ""
152
 
153
+ #: admin/admin.php:292 admin/admin.php:494
154
  msgid "Popular post list options"
155
  msgstr ""
156
 
157
+ #: admin/admin.php:293 admin/admin.php:689
158
  #: includes/class-top-10-widget.php:103
159
  #, fuzzy
160
  msgid "Thumbnail options"
161
  msgstr "Post Opţiuni pictograme:"
162
 
163
+ #: admin/admin.php:294
164
  msgid "Custom styles"
165
  msgstr ""
166
 
167
+ #: admin/admin.php:295 admin/admin.php:920
168
  msgid "Maintenance"
169
  msgstr ""
170
 
171
+ #: admin/admin.php:311 admin/admin.php:388 admin/admin.php:493
172
+ #: admin/admin.php:688 admin/admin.php:851 admin/admin.php:919
173
+ #: admin/admin.php:983 admin/admin.php:1004 admin/admin.php:1188
174
+ #: admin/admin.php:1208 admin/admin.php:1218
175
  msgid "Click to toggle"
176
  msgstr ""
177
 
178
+ #: admin/admin.php:328
179
  msgid "Enable Overall stats"
180
  msgstr ""
181
 
182
+ #: admin/admin.php:334
183
  msgid "Enable Daily stats"
184
  msgstr ""
185
 
186
+ #: admin/admin.php:340
187
  msgid "Cache fix:"
188
  msgstr ""
189
 
190
+ #: admin/admin.php:343
191
  msgid ""
192
  "This will try to prevent W3 Total Cache and other caching plugins from "
193
  "caching the tracker script of the plugin. Try toggling this option in case "
194
  "you find that your posts are not tracked."
195
  msgstr ""
196
 
197
+ #: admin/admin.php:347
198
+ msgid "Start daily counts from midnight:"
199
+ msgstr ""
200
+
201
+ #: admin/admin.php:350
202
+ msgid ""
203
+ "Daily counter will display number of visits from midnight. This option is "
204
+ "checked by default and mimics the way most normal counters work. Turning "
205
+ "this off will allow you to use the hourly setting in the next option."
206
+ msgstr ""
207
+
208
+ #: admin/admin.php:354
209
+ msgid "Daily popular contains top posts over:"
210
+ msgstr ""
211
+
212
+ #: admin/admin.php:356
213
+ msgid "day(s)"
214
+ msgstr ""
215
+
216
+ #: admin/admin.php:357
217
+ msgid "hour(s)"
218
+ msgstr ""
219
+
220
+ #: admin/admin.php:358
221
+ msgid ""
222
+ "Think of Daily Popular has a custom date range applied as a global setting. "
223
+ "Instead of displaying popular posts from the past day, this setting lets you "
224
+ "display posts for as many days or as few hours as you want. This can be "
225
+ "overridden in the widget."
226
+ msgstr ""
227
+
228
+ #: admin/admin.php:362
229
  msgid "Link to Top 10 plugin page"
230
  msgstr ""
231
 
232
+ #: admin/admin.php:365
233
  #, fuzzy
234
  msgid ""
235
  "A link to the plugin is added as an extra list item to the list of popular "
238
  "Un link pentru a plugin-ul se adaugă ca un element suplimentar lista la "
239
  "lista de posturi populare. Nu obligatoriu, dar Multumesc dacă tu a face it!"
240
 
241
+ #: admin/admin.php:370 admin/admin.php:475 admin/admin.php:670
242
+ #: admin/admin.php:833 admin/admin.php:899 admin/admin.php:976
243
  #, fuzzy
244
  msgid "Save Options"
245
  msgstr "Opţiuni:"
246
 
247
+ #: admin/admin.php:405
248
  #, fuzzy
249
  msgid "Display number of views on:"
250
  msgstr "Afişează numărul de vizualizări pe posturi?"
251
 
252
+ #: admin/admin.php:407
253
  msgid "Posts"
254
  msgstr ""
255
 
256
+ #: admin/admin.php:408
257
  #, fuzzy
258
  msgid "Pages"
259
  msgstr "Pagină"
260
 
261
+ #: admin/admin.php:409
262
  msgid "Home page"
263
  msgstr ""
264
 
265
+ #: admin/admin.php:410
266
  msgid "Feeds"
267
  msgstr ""
268
 
269
+ #: admin/admin.php:411
270
  msgid "Category archives"
271
  msgstr ""
272
 
273
+ #: admin/admin.php:412
274
  msgid "Tag archives"
275
  msgstr ""
276
 
277
+ #: admin/admin.php:413
278
  msgid "Other archives"
279
  msgstr ""
280
 
281
+ #: admin/admin.php:414
282
  msgid ""
283
  "If you choose to disable this, please add <code>&lt;?php if "
284
  "( function_exists ( 'echo_tptn_post_count' ) ) echo_tptn_post_count(); ?&gt;"
285
  "</code> to your template file where you want it displayed"
286
  msgstr ""
287
 
288
+ #: admin/admin.php:418
289
  #, fuzzy
290
  msgid "Format to display the post views:"
291
  msgstr "Format pentru a afişa numărul în: "
292
 
293
+ #: admin/admin.php:421
294
  msgid ""
295
  "Use <code>%totalcount%</code> to display the total count, <code>%dailycount"
296
  "%</code> to display the daily count and <code>%overallcount%</code> to "
298
  "options displays <code>[Visited 123 times, 23 visits today]</code>"
299
  msgstr ""
300
 
301
+ #: admin/admin.php:425
302
  msgid "What do display when there are no visits?"
303
  msgstr ""
304
 
305
+ #: admin/admin.php:428
306
  msgid ""
307
  "This text applies only when there are 0 hits for the post and it isn't a "
308
  "single page. e.g. if you display post views on the homepage or archives then "
310
  "option."
311
  msgstr ""
312
 
313
+ #: admin/admin.php:432
314
  msgid "Always display latest post count"
315
  msgstr ""
316
 
317
+ #: admin/admin.php:435
318
  msgid ""
319
  "This option uses JavaScript and will increase your page load time. Turn this "
320
  "off if you are not using caching plugins or are OK with displaying older "
321
  "cached counts."
322
  msgstr ""
323
 
324
+ #: admin/admin.php:439
325
  msgid "Track visits of authors on their own posts?"
326
  msgstr "Track vizite de autori pe posturile lor proprii?"
327
 
328
+ #: admin/admin.php:442
329
  msgid ""
330
  "Disabling this option will stop authors visits tracked on their own posts"
331
  msgstr ""
332
 
333
+ #: admin/admin.php:446
334
  #, fuzzy
335
  msgid "Track visits of admins?"
336
  msgstr "Track vizite de autori pe posturile lor proprii?"
337
 
338
+ #: admin/admin.php:449
339
  msgid "Disabling this option will stop admin visits being tracked."
340
  msgstr ""
341
 
342
+ #: admin/admin.php:453
343
  #, fuzzy
344
  msgid "Track visits of Editors?"
345
  msgstr "Track vizite de autori pe posturile lor proprii?"
346
 
347
+ #: admin/admin.php:456
348
  msgid "Disabling this option will stop editor visits being tracked."
349
  msgstr ""
350
 
351
+ #: admin/admin.php:460
352
  msgid "Display page views on Posts and Pages in Admin"
353
  msgstr ""
354
 
355
+ #: admin/admin.php:463
356
  msgid ""
357
  "Adds three columns called Total Views, Today's Views and Views to All Posts "
358
  "and All Pages"
359
  msgstr ""
360
 
361
+ #: admin/admin.php:467
362
  #, fuzzy
363
  msgid "Show number of views to non-admins"
364
  msgstr "Afişează numărul de vizualizări pe pagini?"
365
 
366
+ #: admin/admin.php:470
367
  msgid ""
368
  "If you disable this then non-admins won't see the above columns or view the "
369
  "independent pages with the top posts"
370
  msgstr ""
371
 
372
+ #: admin/admin.php:510
373
  msgid "Number of popular posts to display: "
374
  msgstr "Numărul de posturi populare pentru a afişa: "
375
 
376
+ #: admin/admin.php:513
377
  msgid ""
378
  "Maximum number of posts that will be displayed in the list. This option is "
379
  "used if you don't specify the number of posts in the widget or shortcodes"
380
  msgstr ""
381
 
382
+ #: admin/admin.php:517
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
383
  msgid "Post types to include in results (including custom post types)"
384
  msgstr ""
385
 
386
+ #: admin/admin.php:529
387
  msgid "List of post or page IDs to exclude from the results: "
388
  msgstr ""
389
 
390
+ #: admin/admin.php:531 admin/admin.php:638
391
  msgid "Enter comma separated list of IDs. e.g. 188,320,500"
392
  msgstr ""
393
 
394
+ #: admin/admin.php:535
395
  msgid "Exclude Categories: "
396
  msgstr "Excludeţi categorii: "
397
 
398
+ #: admin/admin.php:550
399
  msgid ""
400
  "Comma separated list of category slugs. The field above has an autocomplete "
401
  "so simply start typing in the starting letters and it will prompt you with "
402
  "options"
403
  msgstr ""
404
 
405
+ #: admin/admin.php:555
406
  msgid "Title of popular posts: "
407
  msgstr "Titlul de posturi populare: "
408
 
409
+ #: admin/admin.php:561
410
  msgid "Title of daily popular posts: "
411
  msgstr "Titlul de zi cu zi de posturi populare: "
412
 
413
+ #: admin/admin.php:567
414
  msgid "When there are no posts, what should be shown?"
415
  msgstr ""
416
 
417
+ #: admin/admin.php:571
418
  msgid "Blank Output"
419
  msgstr ""
420
 
421
+ #: admin/admin.php:575
422
  msgid "Display:"
423
  msgstr ""
424
 
425
+ #: admin/admin.php:580
426
  msgid "Show post excerpt in list?"
427
  msgstr "Afişează post extras din lista?"
428
 
429
+ #: admin/admin.php:586
430
  msgid "Length of excerpt (in words): "
431
  msgstr "Lungimea extras (în cuvinte): "
432
 
433
+ #: admin/admin.php:592
434
  #, fuzzy
435
  msgid "Show post author in list?"
436
  msgstr "Afişează post extras din lista?"
437
 
438
+ #: admin/admin.php:598
439
  #, fuzzy
440
  msgid "Show post date in list?"
441
  msgstr "Afişează post extras din lista?"
442
 
443
+ #: admin/admin.php:604
444
  msgid "Limit post title length (in characters)"
445
  msgstr ""
446
 
447
+ #: admin/admin.php:610
448
  #, fuzzy
449
  msgid "Show view count in list?"
450
  msgstr "Afişează post extras din lista?"
451
 
452
+ #: admin/admin.php:616
453
  msgid "Always display latest post count in the daily lists?"
454
  msgstr ""
455
 
456
+ #: admin/admin.php:619
457
  msgid ""
458
  "This option uses JavaScript and will increase your page load time. When you "
459
  "enable this option, the daily widget will not use the options set there, but "
460
  "options will need to be set on this screen."
461
  msgstr ""
462
 
463
+ #: admin/admin.php:623
464
  msgid "Open links in new window"
465
  msgstr ""
466
 
467
+ #: admin/admin.php:629
468
  msgid "Add nofollow attribute to links in the list"
469
  msgstr ""
470
 
471
+ #: admin/admin.php:635
472
  msgid "Exclude display of related posts on these posts / pages"
473
  msgstr ""
474
 
475
+ #: admin/admin.php:642
476
  #, fuzzy
477
  msgid "Customise the list HTML"
478
  msgstr "Personaliza ieşire:"
479
 
480
+ #: admin/admin.php:645
481
  msgid "HTML to display before the list of posts: "
482
  msgstr "HTML pentru a afişa înainte de lista de posturi: "
483
 
484
+ #: admin/admin.php:651
485
  msgid "HTML to display before each list item: "
486
  msgstr "HTML pentru a afişa înainte de fiecare element din listă: "
487
 
488
+ #: admin/admin.php:657
489
  msgid "HTML to display after each list item: "
490
  msgstr "HTML pentru a afişa după fiecare element din listă: "
491
 
492
+ #: admin/admin.php:663
493
  msgid "HTML to display after the list of posts: "
494
  msgstr "HTML pentru a afişa după lista de posturi: "
495
 
496
+ #: admin/admin.php:704
497
  msgid "Location of post thumbnail:"
498
  msgstr ""
499
 
500
+ #: admin/admin.php:708
501
  msgid "Display thumbnails inline with posts, before title"
502
  msgstr "Afişare miniaturi inline cu posturi, înainte de titlu"
503
 
504
+ #: admin/admin.php:713
505
  msgid "Display thumbnails inline with posts, after title"
506
  msgstr "Afişare miniaturi inline cu posturi, după titlul"
507
 
508
+ #: admin/admin.php:718
509
  msgid "Display only thumbnails, no text"
510
  msgstr "Afişa numai miniaturi, nici un text"
511
 
512
+ #: admin/admin.php:723
513
  msgid "Do not display thumbnails, only text."
514
  msgstr "Nu se afişează miniaturi, numai textul."
515
 
516
+ #: admin/admin.php:727
517
  msgid "Thumbnail size:"
518
  msgstr ""
519
 
520
+ #: admin/admin.php:751
521
  msgid "Custom size"
522
  msgstr ""
523
 
524
+ #: admin/admin.php:754
525
  msgid ""
526
  "You can choose from existing image sizes above or create a custom size. If "
527
  "you have chosen Custom size above, then enter the width, height and crop "
528
  "settings below. For best results, use a cropped image."
529
  msgstr ""
530
 
531
+ #: admin/admin.php:755
532
  msgid ""
533
  "If you change the width and/or height below, existing images will not be "
534
  "automatically resized."
535
  msgstr ""
536
 
537
+ #: admin/admin.php:756
538
  #, php-format
539
  msgid ""
540
  "I recommend using <a href='%s' target='_blank'>Force Regenerate Thumbnails</"
542
  "regenerate all image sizes."
543
  msgstr ""
544
 
545
+ #: admin/admin.php:759
546
  msgid "Width of custom thumbnail:"
547
  msgstr ""
548
 
549
+ #: admin/admin.php:764
550
  msgid "Height of custom thumbnail"
551
  msgstr ""
552
 
553
+ #: admin/admin.php:769
554
  msgid "Crop mode:"
555
  msgstr ""
556
 
557
+ #: admin/admin.php:773
558
  msgid ""
559
  "By default, thumbnails will be proportionately cropped. Check this box to "
560
  "hard crop the thumbnails."
561
  msgstr ""
562
 
563
+ #: admin/admin.php:774
564
  #, php-format
565
  msgid "<a href='%s' target='_blank'>Difference between soft and hard crop</a>"
566
  msgstr ""
567
 
568
+ #: admin/admin.php:776
569
  msgid ""
570
  "Since you're using the default styles set under the Custom Styles section, "
571
  "the width and height is fixed at 65px and crop mode is enabled."
572
  msgstr ""
573
 
574
+ #: admin/admin.php:781
575
  msgid "Style attributes / Width and Height HTML attributes:"
576
  msgstr ""
577
 
578
+ #: admin/admin.php:785
579
  msgid "Style attributes are used for width and height."
580
  msgstr ""
581
 
582
+ #: admin/admin.php:790
583
  msgid "HTML width and height attributes are used for width and height."
584
  msgstr ""
585
 
586
+ #: admin/admin.php:794
587
  msgid "Use timthumb to generate thumbnails? "
588
  msgstr ""
589
 
590
+ #: admin/admin.php:797
591
  msgid ""
592
  "If checked, <a href=\"http://www.binarymoon.co.uk/projects/timthumb/\" "
593
  "target=\"_blank\">timthumb</a> will be used to generate thumbnails"
594
  msgstr ""
595
 
596
+ #: admin/admin.php:800
597
  msgid "Quality of thumbnails generated by timthumb:"
598
  msgstr ""
599
 
600
+ #: admin/admin.php:803
601
  msgid ""
602
  "Enter values between 0 and 100 only. 100 is highest quality and the highest "
603
  "file size. Suggested maximum value is 95. Default is 75."
604
  msgstr ""
605
 
606
+ #: admin/admin.php:806
607
  #, fuzzy
608
  msgid "Post thumbnail meta field name: "
609
  msgstr "Post Opţiuni pictograme:"
610
 
611
+ #: admin/admin.php:809
612
  msgid ""
613
  "The value of this field should contain the image source and is set in the "
614
  "<em>Add New Post</em> screen"
615
  msgstr ""
616
 
617
+ #: admin/admin.php:812
618
  #, fuzzy
619
  msgid ""
620
  "If the postmeta is not set, then should the plugin extract the first image "
625
  "dumneavoastră dacă prima imagine în legate de posturi este mare în mărime "
626
  "fişier"
627
 
628
+ #: admin/admin.php:815
629
  #, fuzzy
630
  msgid ""
631
  "This could slow down the loading of your page if the first image in the "
636
  "dumneavoastră dacă prima imagine în legate de posturi este mare în mărime "
637
  "fişier"
638
 
639
+ #: admin/admin.php:818
640
  msgid "Use default thumbnail? "
641
  msgstr ""
642
 
643
+ #: admin/admin.php:821
644
  msgid ""
645
  "If checked, when no thumbnail is found, show a default one from the URL "
646
  "below. If not checked and no thumbnail is found, no image will be shown."
649
  "la URL-ul de mai jos. În cazul în care nu a verificat şi este găsit nici un "
650
  "thumbnail, imaginea nu va fi indicat."
651
 
652
+ #: admin/admin.php:824
653
  msgid "Default thumbnail: "
654
  msgstr ""
655
 
656
+ #: admin/admin.php:828
657
  msgid ""
658
  "The plugin will first check if the post contains a thumbnail. If it doesn't "
659
  "then it will check the meta field. If this is not available, then it will "
660
  "show the default image as specified above"
661
  msgstr ""
662
 
663
+ #: admin/admin.php:852
664
  msgid "Custom CSS"
665
  msgstr ""
666
 
667
+ #: admin/admin.php:867
668
  msgid "Use default style included in the plugin?"
669
  msgstr ""
670
 
671
+ #: admin/admin.php:870
672
  msgid ""
673
  "Top 10 includes a default style that makes your popular posts list to look "
674
  "beautiful. Check the box above if you want to use this."
675
  msgstr ""
676
 
677
+ #: admin/admin.php:871
678
  msgid ""
679
  "Enabling this option will turn on the thumbnails and set their width and "
680
  "height to 65px. It will also turn off the display of the author, excerpt and "
681
  "date if already enabled. Disabling this option will not revert any settings."
682
  msgstr ""
683
 
684
+ #: admin/admin.php:872
685
  #, php-format
686
  msgid ""
687
  "You can view the default style at <a href=\"%1$s\" target=\"_blank\">%1$s</a>"
688
  msgstr ""
689
 
690
+ #: admin/admin.php:875
691
  msgid "Custom CSS to add to header:"
692
  msgstr ""
693
 
694
+ #: admin/admin.php:880
695
  msgid ""
696
  "Do not include <code>style</code> tags. Check out the <a href=\"http://"
697
  "wordpress.org/extend/plugins/top-10/faq/\" target=\"_blank\">FAQ</a> for "
698
  "available CSS classes to style."
699
  msgstr ""
700
 
701
+ #: admin/admin.php:900
702
  #, fuzzy
703
  msgid "Default Options"
704
  msgstr "Opţiuni de ieşire:"
705
 
706
+ #: admin/admin.php:900
707
  msgid "Do you want to set options to Default?"
708
  msgstr "Doriţi să setaţi opţiunile la valorile implicite?"
709
 
710
+ #: admin/admin.php:924
711
  msgid ""
712
  "Over time the Daily Top 10 database grows in size, which reduces the "
713
  "performance of the plugin. Cleaning the database at regular intervals could "
715
  "will automatically delete entries older than 90 days."
716
  msgstr ""
717
 
718
+ #: admin/admin.php:925
719
  msgid ""
720
  "Note: When scheduled maintenance is enabled, WordPress will run the cron job "
721
  "everytime the job is rescheduled (i.e. you change the settings below)."
722
  msgstr ""
723
 
724
+ #: admin/admin.php:928
725
  msgid "Enable scheduled maintenance of daily tables:"
726
  msgstr ""
727
 
728
+ #: admin/admin.php:932
729
  msgid "Time to run maintenance"
730
  msgstr ""
731
 
732
+ #: admin/admin.php:933
733
  msgid "hrs"
734
  msgstr ""
735
 
736
+ #: admin/admin.php:933
737
  msgid "min"
738
  msgstr ""
739
 
740
+ #: admin/admin.php:935
741
  msgid "How often should the maintenance be run:"
742
  msgstr ""
743
 
744
+ #: admin/admin.php:939
745
  msgid "Daily"
746
  msgstr ""
747
 
748
+ #: admin/admin.php:943
749
  msgid "Weekly"
750
  msgstr ""
751
 
752
+ #: admin/admin.php:947
753
  msgid "Fortnightly"
754
  msgstr ""
755
 
756
+ #: admin/admin.php:951
757
  msgid "Monthly"
758
  msgstr ""
759
 
760
+ #: admin/admin.php:960
761
  msgid "The cron job has been scheduled. Maintenance will run "
762
  msgstr ""
763
 
764
+ #: admin/admin.php:965
765
  msgid "The cron job is missing. Please resave this page to add the job"
766
  msgstr ""
767
 
768
+ #: admin/admin.php:970
769
  msgid "Maintenance is turned off"
770
  msgstr ""
771
 
772
+ #: admin/admin.php:984
773
  msgid "Reset count"
774
  msgstr "Reiniţializare count"
775
 
776
+ #: admin/admin.php:987
777
  msgid ""
778
  "This cannot be reversed. Make sure that your database has been backed up "
779
  "before proceeding"
781
  "Acest lucru poate fi inversat. Asiguraţi-vă că baza de date a fost sprijinit "
782
  "înainte de a continua"
783
 
784
+ #: admin/admin.php:990
785
  #, fuzzy
786
  msgid "Reset Popular Posts"
787
  msgstr "Posturi populare"
788
 
789
+ #: admin/admin.php:990
790
  msgid "Are you sure you want to reset the popular posts?"
791
  msgstr "Sigur reiniţializaţi posturi populare?"
792
 
793
+ #: admin/admin.php:991
794
  #, fuzzy
795
  msgid "Reset Daily Popular Posts"
796
  msgstr "Posturi populare de zi cu zi"
797
 
798
+ #: admin/admin.php:991
799
  msgid "Are you sure you want to reset the daily popular posts?"
800
  msgstr "Sigur reiniţializaţi posturi populare zilnic?"
801
 
802
+ #: admin/admin.php:992
803
  msgid "Clear duplicates"
804
  msgstr ""
805
 
806
+ #: admin/admin.php:992
807
  msgid "This will delete the duplicate entries in the tables. Proceed?"
808
  msgstr "Aceasta va şterge intrările dublate în tabele. Continuaţi?"
809
 
810
+ #: admin/admin.php:1005
811
  msgid "WordPress Multisite: Migrate Top 10 v1.x counts to 2.x"
812
  msgstr ""
813
 
814
+ #: admin/admin.php:1008
815
  msgid ""
816
  "If you've been using Top 10 v1.x on multisite, you would have needed to "
817
  "activate the plugin independently for each site. This would have resulted in "
818
+ "two tables being created for each site in the network."
 
 
 
819
  msgstr ""
820
 
821
+ #: admin/admin.php:1009
822
+ msgid ""
823
+ "Top 10 v2.x onwards uses only a single table to record the count, keeping "
824
+ "your database clean. You can use this tool to import the recorded counts "
825
+ "from v1.x tables to the new v2.x table format."
826
+ msgstr ""
827
+
828
+ #: admin/admin.php:1012
829
  msgid ""
830
  "If you do not see any tables below, then it means that either all data has "
831
  "already been imported or no relevant information has been found."
832
  msgstr ""
833
 
834
+ #: admin/admin.php:1015
835
+ msgid ""
836
+ "After running the importer, please verify that all the counts have been "
837
+ "successfully imported. Only then should you delete any old tables!"
838
+ msgstr ""
839
+
840
+ #: admin/admin.php:1049
841
  msgid "Blog ID"
842
  msgstr ""
843
 
844
+ #: admin/admin.php:1052
845
  msgid "Status"
846
  msgstr ""
847
 
848
+ #: admin/admin.php:1055
849
  msgid "Select to import"
850
  msgstr ""
851
 
852
+ #: admin/admin.php:1065
853
  msgid "Blog #"
854
  msgstr ""
855
 
856
+ #: admin/admin.php:1075
857
  msgid "Not imported"
858
  msgstr ""
859
 
860
+ #: admin/admin.php:1079
861
  msgid "Imported"
862
  msgstr ""
863
 
864
+ #: admin/admin.php:1100
865
  msgid "Begin import"
866
  msgstr ""
867
 
868
+ #: admin/admin.php:1101
869
  msgid "Delete selected tables"
870
  msgstr ""
871
 
872
+ #: admin/admin.php:1102
873
  msgid "Delete all imported tables"
874
  msgstr ""
875
 
876
+ #: admin/admin.php:1159 admin/admin.php:1255
877
  msgid "Daily Popular Posts"
878
  msgstr "Posturi populare de zi cu zi"
879
 
880
+ #: admin/admin.php:1189
881
  msgid "Support the development"
882
  msgstr "Sprijinirea dezvoltării"
883
 
884
+ #: admin/admin.php:1196
885
  msgid "Donation for Top 10"
886
  msgstr ""
887
 
888
+ #: admin/admin.php:1198
889
  msgid "Enter amount in USD: "
890
  msgstr "Introduceţi valoarea în USD: "
891
 
892
+ #: admin/admin.php:1202
893
  #, fuzzy
894
  msgid "Send your donation to the author of Top 10"
895
  msgstr "Trimite donatie autorului"
896
 
897
+ #: admin/admin.php:1209
898
  msgid "Follow me"
899
  msgstr ""
900
 
901
+ #: admin/admin.php:1219
902
  #, fuzzy
903
  msgid "Quick links"
904
  msgstr "Legături rapide pentru"
905
 
906
+ #: admin/admin.php:1223
907
  #, fuzzy
908
  msgid "Top 10 plugin page"
909
  msgstr "plug-in pagina"
910
 
911
+ #: admin/admin.php:1224
912
  msgid "Top 10 Github page"
913
  msgstr ""
914
 
915
+ #: admin/admin.php:1225
916
  msgid "Other plugins"
917
  msgstr "Alte plugin-uri"
918
 
919
+ #: admin/admin.php:1226
920
  msgid "Ajay's blog"
921
  msgstr "Ajay's blog"
922
 
923
+ #: admin/admin.php:1227
924
  msgid "FAQ"
925
  msgstr ""
926
 
927
+ #: admin/admin.php:1228 admin/admin.php:1386
928
  msgid "Support"
929
  msgstr "Suport"
930
 
931
+ #: admin/admin.php:1229
932
  msgid "Reviews"
933
  msgstr ""
934
 
935
+ #: admin/admin.php:1252
936
  #, fuzzy
937
  msgid "Overall Popular Posts"
938
  msgstr "Vedere de ansamblu posturi populare"
939
 
940
+ #: admin/admin.php:1363
941
  msgid "Settings"
942
  msgstr "Setări"
943
 
944
+ #: admin/admin.php:1387
945
  msgid "Donate"
946
  msgstr "Dona"
947
 
1033
  msgid "Thumbnail width"
1034
  msgstr "Post Opţiuni pictograme:"
1035
 
1036
+ #: top-10.php:879
1037
  msgid " by "
1038
  msgstr ""
1039
 
1040
+ #: top-10.php:930
1041
  #, php-format
1042
  msgid "Popular posts by <a href=\"%s\" rel=\"nofollow\" %s>Top 10 plugin</a>"
1043
  msgstr ""
1044
 
1045
+ #: top-10.php:1029
1046
  msgid "<h3>Popular Posts</h3>"
1047
  msgstr "<h3>Posturi populare</h3>"
1048
 
1049
+ #: top-10.php:1030
1050
  msgid "<h3>Daily Popular</h3>"
1051
  msgstr "<h3>Daily populare</h3>"
1052
 
1053
+ #: top-10.php:1031
1054
  #, fuzzy
1055
  msgid "No top posts yet"
1056
  msgstr "Top 10 populare posturi Resetare"
1057
 
1058
+ #: top-10.php:1676
1059
  msgid "Once Weekly"
1060
  msgstr ""
1061
 
1062
+ #: top-10.php:1680
1063
  msgid "Once Fortnightly"
1064
  msgstr ""
1065
 
1066
+ #: top-10.php:1684
1067
  msgid "Once Monthly"
1068
  msgstr ""
1069
 
1070
+ #: top-10.php:1688
1071
  msgid "Once quarterly"
1072
  msgstr ""
1073
 
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: 2014-12-28 00:57-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"
@@ -61,7 +61,7 @@ msgstr "Предыдущая страница"
61
  msgid "Next"
62
  msgstr "Следующая страница"
63
 
64
- #: admin/admin-dashboard.php:200 admin/admin.php:1145
65
  msgid "Popular Posts"
66
  msgstr "Популярные записи"
67
 
@@ -69,7 +69,7 @@ msgstr "Популярные записи"
69
  msgid "Daily Popular"
70
  msgstr "Популярные сегодня записи"
71
 
72
- #: admin/admin-metabox.php:38 admin/admin.php:1234
73
  msgid "Top 10"
74
  msgstr "Топ 10 записей"
75
 
@@ -99,106 +99,137 @@ msgstr ""
99
  msgid "The URL above is saved in the meta field: "
100
  msgstr ""
101
 
102
- #: admin/admin.php:160
103
  msgid "Options saved successfully."
104
  msgstr "Настройки сохранены."
105
 
106
- #: admin/admin.php:170
107
  msgid "Options set to Default."
108
  msgstr "Настройки сброшены."
109
 
110
- #: admin/admin.php:176
111
  msgid "Top 10 popular posts reset"
112
  msgstr "Сбросить статистику популярных записей"
113
 
114
- #: admin/admin.php:182
115
  msgid "Top 10 daily popular posts reset"
116
  msgstr "Сбросить статистику популярных записей за сегодня"
117
 
118
- #: admin/admin.php:189
119
  msgid "Duplicate rows cleaned from tables"
120
  msgstr ""
121
 
122
- #: admin/admin.php:201
123
  msgid "Scheduled maintenance enabled / modified"
124
  msgstr ""
125
 
126
- #: admin/admin.php:205
127
  msgid "Scheduled maintenance disabled"
128
  msgstr ""
129
 
130
- #: admin/admin.php:244
131
  msgid "Counts from selected sites have been imported."
132
  msgstr ""
133
 
134
- #: admin/admin.php:269
135
  msgid ""
136
  "Selected tables have been deleted. Note that only imported tables have been "
137
  "deleted."
138
  msgstr ""
139
 
140
- #: admin/admin.php:277 admin/admin.php:1234 admin/admin.php:1237
141
  #, fuzzy
142
  msgid "Top 10 Settings"
143
  msgstr "Настроки плагина"
144
 
145
- #: admin/admin.php:289 admin/admin.php:311
146
  msgid "General options"
147
  msgstr ""
148
 
149
- #: admin/admin.php:290 admin/admin.php:373
150
  msgid "Counter and tracker options"
151
  msgstr ""
152
 
153
- #: admin/admin.php:291 admin/admin.php:478
154
  msgid "Popular post list options"
155
  msgstr ""
156
 
157
- #: admin/admin.php:292 admin/admin.php:681
158
  #: includes/class-top-10-widget.php:103
159
  #, fuzzy
160
  msgid "Thumbnail options"
161
  msgstr "Настройки превью к записям:"
162
 
163
- #: admin/admin.php:293
164
  msgid "Custom styles"
165
  msgstr ""
166
 
167
- #: admin/admin.php:294 admin/admin.php:912
168
  msgid "Maintenance"
169
  msgstr ""
170
 
171
- #: admin/admin.php:310 admin/admin.php:372 admin/admin.php:477
172
- #: admin/admin.php:680 admin/admin.php:843 admin/admin.php:911
173
- #: admin/admin.php:975 admin/admin.php:996 admin/admin.php:1176
174
- #: admin/admin.php:1196 admin/admin.php:1206
175
  msgid "Click to toggle"
176
  msgstr ""
177
 
178
- #: admin/admin.php:327
179
  msgid "Enable Overall stats"
180
  msgstr ""
181
 
182
- #: admin/admin.php:333
183
  msgid "Enable Daily stats"
184
  msgstr ""
185
 
186
- #: admin/admin.php:339
187
  msgid "Cache fix:"
188
  msgstr ""
189
 
190
- #: admin/admin.php:342
191
  msgid ""
192
  "This will try to prevent W3 Total Cache and other caching plugins from "
193
  "caching the tracker script of the plugin. Try toggling this option in case "
194
  "you find that your posts are not tracked."
195
  msgstr ""
196
 
197
- #: admin/admin.php:346
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
198
  msgid "Link to Top 10 plugin page"
199
  msgstr ""
200
 
201
- #: admin/admin.php:349
202
  #, fuzzy
203
  msgid ""
204
  "A link to the plugin is added as an extra list item to the list of popular "
@@ -207,61 +238,61 @@ msgstr ""
207
  "Оставить ссылку на плагин под списками Популярных записей? Автор плагина был "
208
  "бы очень благодарен Вам, если Вы ее все же оставите!"
209
 
210
- #: admin/admin.php:354 admin/admin.php:459 admin/admin.php:662
211
- #: admin/admin.php:825 admin/admin.php:891 admin/admin.php:968
212
  #, fuzzy
213
  msgid "Save Options"
214
  msgstr "Настройки плагина:"
215
 
216
- #: admin/admin.php:389
217
  #, fuzzy
218
  msgid "Display number of views on:"
219
  msgstr "Показывать количество просмотров записи в ее \"теле\"?"
220
 
221
- #: admin/admin.php:391
222
  msgid "Posts"
223
  msgstr ""
224
 
225
- #: admin/admin.php:392
226
  #, fuzzy
227
  msgid "Pages"
228
  msgstr "Страница"
229
 
230
- #: admin/admin.php:393
231
  msgid "Home page"
232
  msgstr ""
233
 
234
- #: admin/admin.php:394
235
  msgid "Feeds"
236
  msgstr ""
237
 
238
- #: admin/admin.php:395
239
  msgid "Category archives"
240
  msgstr ""
241
 
242
- #: admin/admin.php:396
243
  msgid "Tag archives"
244
  msgstr ""
245
 
246
- #: admin/admin.php:397
247
  msgid "Other archives"
248
  msgstr ""
249
 
250
- #: admin/admin.php:398
251
  msgid ""
252
  "If you choose to disable this, please add <code>&lt;?php if "
253
  "( function_exists ( 'echo_tptn_post_count' ) ) echo_tptn_post_count(); ?&gt;"
254
  "</code> to your template file where you want it displayed"
255
  msgstr ""
256
 
257
- #: admin/admin.php:402
258
  #, fuzzy
259
  msgid "Format to display the post views:"
260
  msgstr ""
261
  "В поле ниже вы можете настроить формат отображения количества просмотров за "
262
  "день, за все время для записей/страниц:"
263
 
264
- #: admin/admin.php:405
265
  msgid ""
266
  "Use <code>%totalcount%</code> to display the total count, <code>%dailycount"
267
  "%</code> to display the daily count and <code>%overallcount%</code> to "
@@ -269,11 +300,11 @@ msgid ""
269
  "options displays <code>[Visited 123 times, 23 visits today]</code>"
270
  msgstr ""
271
 
272
- #: admin/admin.php:409
273
  msgid "What do display when there are no visits?"
274
  msgstr ""
275
 
276
- #: admin/admin.php:412
277
  msgid ""
278
  "This text applies only when there are 0 hits for the post and it isn't a "
279
  "single page. e.g. if you display post views on the homepage or archives then "
@@ -281,251 +312,231 @@ msgid ""
281
  "option."
282
  msgstr ""
283
 
284
- #: admin/admin.php:416
285
  msgid "Always display latest post count"
286
  msgstr ""
287
 
288
- #: admin/admin.php:419
289
  msgid ""
290
  "This option uses JavaScript and will increase your page load time. Turn this "
291
  "off if you are not using caching plugins or are OK with displaying older "
292
  "cached counts."
293
  msgstr ""
294
 
295
- #: admin/admin.php:423
296
  msgid "Track visits of authors on their own posts?"
297
  msgstr "Учитывать просмотры записей, сделанные их же авторами?"
298
 
299
- #: admin/admin.php:426
300
  msgid ""
301
  "Disabling this option will stop authors visits tracked on their own posts"
302
  msgstr ""
303
 
304
- #: admin/admin.php:430
305
  #, fuzzy
306
  msgid "Track visits of admins?"
307
  msgstr "Учитывать просмотры записей, сделанные их же авторами?"
308
 
309
- #: admin/admin.php:433
310
  msgid "Disabling this option will stop admin visits being tracked."
311
  msgstr ""
312
 
313
- #: admin/admin.php:437
314
  #, fuzzy
315
  msgid "Track visits of Editors?"
316
  msgstr "Учитывать просмотры записей, сделанные их же авторами?"
317
 
318
- #: admin/admin.php:440
319
  msgid "Disabling this option will stop editor visits being tracked."
320
  msgstr ""
321
 
322
- #: admin/admin.php:444
323
  msgid "Display page views on Posts and Pages in Admin"
324
  msgstr ""
325
 
326
- #: admin/admin.php:447
327
  msgid ""
328
  "Adds three columns called Total Views, Today's Views and Views to All Posts "
329
  "and All Pages"
330
  msgstr ""
331
 
332
- #: admin/admin.php:451
333
  #, fuzzy
334
  msgid "Show number of views to non-admins"
335
  msgstr "Показывать количество просмотров страницы в ее \"теле\"?"
336
 
337
- #: admin/admin.php:454
338
  msgid ""
339
  "If you disable this then non-admins won't see the above columns or view the "
340
  "independent pages with the top posts"
341
  msgstr ""
342
 
343
- #: admin/admin.php:494
344
  msgid "Number of popular posts to display: "
345
  msgstr "Количество Популярных записей в списке:"
346
 
347
- #: admin/admin.php:497
348
  msgid ""
349
  "Maximum number of posts that will be displayed in the list. This option is "
350
  "used if you don't specify the number of posts in the widget or shortcodes"
351
  msgstr ""
352
 
353
- #: admin/admin.php:501
354
- msgid "Daily popular contains top posts over:"
355
- msgstr ""
356
-
357
- #: admin/admin.php:503
358
- msgid "day(s)"
359
- msgstr ""
360
-
361
- #: admin/admin.php:504
362
- msgid "hour(s)"
363
- msgstr ""
364
-
365
- #: admin/admin.php:505
366
- msgid ""
367
- "Think of Daily Popular has a custom date range applied as a global setting. "
368
- "Instead of displaying popular posts from the past day, this setting lets you "
369
- "display posts for as many days or as few hours as you want. This can be "
370
- "overridden in the widget."
371
- msgstr ""
372
-
373
- #: admin/admin.php:509
374
  msgid "Post types to include in results (including custom post types)"
375
  msgstr ""
376
 
377
- #: admin/admin.php:521
378
  msgid "List of post or page IDs to exclude from the results: "
379
  msgstr ""
380
 
381
- #: admin/admin.php:523 admin/admin.php:630
382
  msgid "Enter comma separated list of IDs. e.g. 188,320,500"
383
  msgstr ""
384
 
385
- #: admin/admin.php:527
386
  msgid "Exclude Categories: "
387
  msgstr "Исключить рубрики:"
388
 
389
- #: admin/admin.php:542
390
  msgid ""
391
  "Comma separated list of category slugs. The field above has an autocomplete "
392
  "so simply start typing in the starting letters and it will prompt you with "
393
  "options"
394
  msgstr ""
395
 
396
- #: admin/admin.php:547
397
  msgid "Title of popular posts: "
398
  msgstr "Заголовок списка Популярных записей:"
399
 
400
- #: admin/admin.php:553
401
  msgid "Title of daily popular posts: "
402
  msgstr "Заголовок списка Популярных сегодня записей:"
403
 
404
- #: admin/admin.php:559
405
  msgid "When there are no posts, what should be shown?"
406
  msgstr ""
407
 
408
- #: admin/admin.php:563
409
  msgid "Blank Output"
410
  msgstr ""
411
 
412
- #: admin/admin.php:567
413
  msgid "Display:"
414
  msgstr ""
415
 
416
- #: admin/admin.php:572
417
  msgid "Show post excerpt in list?"
418
  msgstr "Показывать текст записи в списке?"
419
 
420
- #: admin/admin.php:578
421
  msgid "Length of excerpt (in words): "
422
  msgstr "Длина выводимого текста (в словах):"
423
 
424
- #: admin/admin.php:584
425
  #, fuzzy
426
  msgid "Show post author in list?"
427
  msgstr "Показывать текст записи в списке?"
428
 
429
- #: admin/admin.php:590
430
  #, fuzzy
431
  msgid "Show post date in list?"
432
  msgstr "Показывать текст записи в списке?"
433
 
434
- #: admin/admin.php:596
435
  msgid "Limit post title length (in characters)"
436
  msgstr ""
437
 
438
- #: admin/admin.php:602
439
  #, fuzzy
440
  msgid "Show view count in list?"
441
  msgstr "Показывать текст записи в списке?"
442
 
443
- #: admin/admin.php:608
444
  msgid "Always display latest post count in the daily lists?"
445
  msgstr ""
446
 
447
- #: admin/admin.php:611
448
  msgid ""
449
  "This option uses JavaScript and will increase your page load time. When you "
450
  "enable this option, the daily widget will not use the options set there, but "
451
  "options will need to be set on this screen."
452
  msgstr ""
453
 
454
- #: admin/admin.php:615
455
  msgid "Open links in new window"
456
  msgstr ""
457
 
458
- #: admin/admin.php:621
459
  msgid "Add nofollow attribute to links in the list"
460
  msgstr ""
461
 
462
- #: admin/admin.php:627
463
  msgid "Exclude display of related posts on these posts / pages"
464
  msgstr ""
465
 
466
- #: admin/admin.php:634
467
  #, fuzzy
468
  msgid "Customise the list HTML"
469
  msgstr "Настройки оформления списка:"
470
 
471
- #: admin/admin.php:637
472
  msgid "HTML to display before the list of posts: "
473
  msgstr "HTML-тег, используемый перед списком:"
474
 
475
- #: admin/admin.php:643
476
  msgid "HTML to display before each list item: "
477
  msgstr "HTML-тег, используемый перед каждым пунктом в списке:"
478
 
479
- #: admin/admin.php:649
480
  msgid "HTML to display after each list item: "
481
  msgstr "HTML-тег, используемый после каждого пункта в списке:"
482
 
483
- #: admin/admin.php:655
484
  msgid "HTML to display after the list of posts: "
485
  msgstr "HTML-тег, используемый после списка:"
486
 
487
- #: admin/admin.php:696
488
  msgid "Location of post thumbnail:"
489
  msgstr ""
490
 
491
- #: admin/admin.php:700
492
  msgid "Display thumbnails inline with posts, before title"
493
  msgstr "Отображать превью к записи сразу перед заголовком"
494
 
495
- #: admin/admin.php:705
496
  msgid "Display thumbnails inline with posts, after title"
497
  msgstr "Отображать превью к записи сразу после заголовка"
498
 
499
- #: admin/admin.php:710
500
  msgid "Display only thumbnails, no text"
501
  msgstr "Отображать только превью, без текста"
502
 
503
- #: admin/admin.php:715
504
  msgid "Do not display thumbnails, only text."
505
  msgstr "Отображать только текст, без превью"
506
 
507
- #: admin/admin.php:719
508
  msgid "Thumbnail size:"
509
  msgstr ""
510
 
511
- #: admin/admin.php:743
512
  msgid "Custom size"
513
  msgstr ""
514
 
515
- #: admin/admin.php:746
516
  msgid ""
517
  "You can choose from existing image sizes above or create a custom size. If "
518
  "you have chosen Custom size above, then enter the width, height and crop "
519
  "settings below. For best results, use a cropped image."
520
  msgstr ""
521
 
522
- #: admin/admin.php:747
523
  msgid ""
524
  "If you change the width and/or height below, existing images will not be "
525
  "automatically resized."
526
  msgstr ""
527
 
528
- #: admin/admin.php:748
529
  #, php-format
530
  msgid ""
531
  "I recommend using <a href='%s' target='_blank'>Force Regenerate Thumbnails</"
@@ -533,79 +544,79 @@ msgid ""
533
  "regenerate all image sizes."
534
  msgstr ""
535
 
536
- #: admin/admin.php:751
537
  msgid "Width of custom thumbnail:"
538
  msgstr ""
539
 
540
- #: admin/admin.php:756
541
  msgid "Height of custom thumbnail"
542
  msgstr ""
543
 
544
- #: admin/admin.php:761
545
  msgid "Crop mode:"
546
  msgstr ""
547
 
548
- #: admin/admin.php:765
549
  msgid ""
550
  "By default, thumbnails will be proportionately cropped. Check this box to "
551
  "hard crop the thumbnails."
552
  msgstr ""
553
 
554
- #: admin/admin.php:766
555
  #, php-format
556
  msgid "<a href='%s' target='_blank'>Difference between soft and hard crop</a>"
557
  msgstr ""
558
 
559
- #: admin/admin.php:768
560
  msgid ""
561
  "Since you're using the default styles set under the Custom Styles section, "
562
  "the width and height is fixed at 65px and crop mode is enabled."
563
  msgstr ""
564
 
565
- #: admin/admin.php:773
566
  msgid "Style attributes / Width and Height HTML attributes:"
567
  msgstr ""
568
 
569
- #: admin/admin.php:777
570
  msgid "Style attributes are used for width and height."
571
  msgstr ""
572
 
573
- #: admin/admin.php:782
574
  msgid "HTML width and height attributes are used for width and height."
575
  msgstr ""
576
 
577
- #: admin/admin.php:786
578
  msgid "Use timthumb to generate thumbnails? "
579
  msgstr ""
580
 
581
- #: admin/admin.php:789
582
  msgid ""
583
  "If checked, <a href=\"http://www.binarymoon.co.uk/projects/timthumb/\" "
584
  "target=\"_blank\">timthumb</a> will be used to generate thumbnails"
585
  msgstr ""
586
 
587
- #: admin/admin.php:792
588
  msgid "Quality of thumbnails generated by timthumb:"
589
  msgstr ""
590
 
591
- #: admin/admin.php:795
592
  msgid ""
593
  "Enter values between 0 and 100 only. 100 is highest quality and the highest "
594
  "file size. Suggested maximum value is 95. Default is 75."
595
  msgstr ""
596
 
597
- #: admin/admin.php:798
598
  #, fuzzy
599
  msgid "Post thumbnail meta field name: "
600
  msgstr "Настройки превью к записям:"
601
 
602
- #: admin/admin.php:801
603
  msgid ""
604
  "The value of this field should contain the image source and is set in the "
605
  "<em>Add New Post</em> screen"
606
  msgstr ""
607
 
608
- #: admin/admin.php:804
609
  #, fuzzy
610
  msgid ""
611
  "If the postmeta is not set, then should the plugin extract the first image "
@@ -615,7 +626,7 @@ msgstr ""
615
  "изображение из записи. Это может слегка увеличить загрузку в первый раз, так "
616
  "как будет создаваться уменьшенная копия изображения"
617
 
618
- #: admin/admin.php:807
619
  #, fuzzy
620
  msgid ""
621
  "This could slow down the loading of your page if the first image in the "
@@ -625,11 +636,11 @@ msgstr ""
625
  "изображение из записи. Это может слегка увеличить загрузку в первый раз, так "
626
  "как будет создаваться уменьшенная копия изображения"
627
 
628
- #: admin/admin.php:810
629
  msgid "Use default thumbnail? "
630
  msgstr ""
631
 
632
- #: admin/admin.php:813
633
  msgid ""
634
  "If checked, when no thumbnail is found, show a default one from the URL "
635
  "below. If not checked and no thumbnail is found, no image will be shown."
@@ -638,11 +649,11 @@ msgstr ""
638
  "добавлено стандартное изображение. Если превью задано к записи - будет "
639
  "отображаться только оно."
640
 
641
- #: admin/admin.php:816
642
  msgid "Default thumbnail: "
643
  msgstr ""
644
 
645
- #: admin/admin.php:820
646
  #, fuzzy
647
  msgid ""
648
  "The plugin will first check if the post contains a thumbnail. If it doesn't "
@@ -653,54 +664,54 @@ msgstr ""
653
  "заданному ранее произвольному мета-полю). Если же превью нет - будет "
654
  "выводиться картинка по-умолчанию:"
655
 
656
- #: admin/admin.php:844
657
  msgid "Custom CSS"
658
  msgstr ""
659
 
660
- #: admin/admin.php:859
661
  msgid "Use default style included in the plugin?"
662
  msgstr ""
663
 
664
- #: admin/admin.php:862
665
  msgid ""
666
  "Top 10 includes a default style that makes your popular posts list to look "
667
  "beautiful. Check the box above if you want to use this."
668
  msgstr ""
669
 
670
- #: admin/admin.php:863
671
  msgid ""
672
  "Enabling this option will turn on the thumbnails and set their width and "
673
  "height to 65px. It will also turn off the display of the author, excerpt and "
674
  "date if already enabled. Disabling this option will not revert any settings."
675
  msgstr ""
676
 
677
- #: admin/admin.php:864
678
  #, php-format
679
  msgid ""
680
  "You can view the default style at <a href=\"%1$s\" target=\"_blank\">%1$s</a>"
681
  msgstr ""
682
 
683
- #: admin/admin.php:867
684
  msgid "Custom CSS to add to header:"
685
  msgstr ""
686
 
687
- #: admin/admin.php:872
688
  msgid ""
689
  "Do not include <code>style</code> tags. Check out the <a href=\"http://"
690
  "wordpress.org/extend/plugins/top-10/faq/\" target=\"_blank\">FAQ</a> for "
691
  "available CSS classes to style."
692
  msgstr ""
693
 
694
- #: admin/admin.php:892
695
  #, fuzzy
696
  msgid "Default Options"
697
  msgstr "Настройки плагина:"
698
 
699
- #: admin/admin.php:892
700
  msgid "Do you want to set options to Default?"
701
  msgstr "Сбросить настройки плагина?"
702
 
703
- #: admin/admin.php:916
704
  msgid ""
705
  "Over time the Daily Top 10 database grows in size, which reduces the "
706
  "performance of the plugin. Cleaning the database at regular intervals could "
@@ -708,65 +719,65 @@ msgid ""
708
  "will automatically delete entries older than 90 days."
709
  msgstr ""
710
 
711
- #: admin/admin.php:917
712
  msgid ""
713
  "Note: When scheduled maintenance is enabled, WordPress will run the cron job "
714
  "everytime the job is rescheduled (i.e. you change the settings below)."
715
  msgstr ""
716
 
717
- #: admin/admin.php:920
718
  msgid "Enable scheduled maintenance of daily tables:"
719
  msgstr ""
720
 
721
- #: admin/admin.php:924
722
  msgid "Time to run maintenance"
723
  msgstr ""
724
 
725
- #: admin/admin.php:925
726
  msgid "hrs"
727
  msgstr ""
728
 
729
- #: admin/admin.php:925
730
  msgid "min"
731
  msgstr ""
732
 
733
- #: admin/admin.php:927
734
  msgid "How often should the maintenance be run:"
735
  msgstr ""
736
 
737
- #: admin/admin.php:931
738
  msgid "Daily"
739
  msgstr ""
740
 
741
- #: admin/admin.php:935
742
  msgid "Weekly"
743
  msgstr ""
744
 
745
- #: admin/admin.php:939
746
  msgid "Fortnightly"
747
  msgstr ""
748
 
749
- #: admin/admin.php:943
750
  msgid "Monthly"
751
  msgstr ""
752
 
753
- #: admin/admin.php:952
754
  msgid "The cron job has been scheduled. Maintenance will run "
755
  msgstr ""
756
 
757
- #: admin/admin.php:957
758
  msgid "The cron job is missing. Please resave this page to add the job"
759
  msgstr ""
760
 
761
- #: admin/admin.php:962
762
  msgid "Maintenance is turned off"
763
  msgstr ""
764
 
765
- #: admin/admin.php:976
766
  msgid "Reset count"
767
  msgstr "Сбросить статистику"
768
 
769
- #: admin/admin.php:979
770
  msgid ""
771
  "This cannot be reversed. Make sure that your database has been backed up "
772
  "before proceeding"
@@ -774,159 +785,169 @@ msgstr ""
774
  "Сброс статистики не может быть обращен. Перед тем, как сбрасывать все, "
775
  "убедитесь, что у вас есть копия вашей базы данных!"
776
 
777
- #: admin/admin.php:982
778
  #, fuzzy
779
  msgid "Reset Popular Posts"
780
  msgstr "Популярные записи"
781
 
782
- #: admin/admin.php:982
783
  msgid "Are you sure you want to reset the popular posts?"
784
  msgstr "Вы уверены, что хотите сбросить статистику для Популярных записей?"
785
 
786
- #: admin/admin.php:983
787
  #, fuzzy
788
  msgid "Reset Daily Popular Posts"
789
  msgstr "Популярные сегодня записи"
790
 
791
- #: admin/admin.php:983
792
  msgid "Are you sure you want to reset the daily popular posts?"
793
  msgstr ""
794
  "Вы уверены, что хотите сбросить статистику для Популярных сегодня записей?"
795
 
796
- #: admin/admin.php:984
797
  msgid "Clear duplicates"
798
  msgstr ""
799
 
800
- #: admin/admin.php:984
801
  msgid "This will delete the duplicate entries in the tables. Proceed?"
802
  msgstr ""
803
  "Будет произведено удаление дублирующихся щаписей из статистики. Продолжить?"
804
 
805
- #: admin/admin.php:997
806
  msgid "WordPress Multisite: Migrate Top 10 v1.x counts to 2.x"
807
  msgstr ""
808
 
809
- #: admin/admin.php:1000
810
  msgid ""
811
  "If you've been using Top 10 v1.x on multisite, you would have needed to "
812
  "activate the plugin independently for each site. This would have resulted in "
813
- "two tables being created for each site in the network. Top 10 v2.x onwards "
814
- "uses only a single table to record the count, keeping your database clean. "
815
- "You can use this tool to import the recorded counts from v1.x tables to the "
816
- "new v2.x table format."
817
  msgstr ""
818
 
819
- #: admin/admin.php:1003
 
 
 
 
 
 
 
820
  msgid ""
821
  "If you do not see any tables below, then it means that either all data has "
822
  "already been imported or no relevant information has been found."
823
  msgstr ""
824
 
825
- #: admin/admin.php:1037
 
 
 
 
 
 
826
  msgid "Blog ID"
827
  msgstr ""
828
 
829
- #: admin/admin.php:1040
830
  msgid "Status"
831
  msgstr ""
832
 
833
- #: admin/admin.php:1043
834
  msgid "Select to import"
835
  msgstr ""
836
 
837
- #: admin/admin.php:1053
838
  msgid "Blog #"
839
  msgstr ""
840
 
841
- #: admin/admin.php:1063
842
  msgid "Not imported"
843
  msgstr ""
844
 
845
- #: admin/admin.php:1067
846
  msgid "Imported"
847
  msgstr ""
848
 
849
- #: admin/admin.php:1088
850
  msgid "Begin import"
851
  msgstr ""
852
 
853
- #: admin/admin.php:1089
854
  msgid "Delete selected tables"
855
  msgstr ""
856
 
857
- #: admin/admin.php:1090
858
  msgid "Delete all imported tables"
859
  msgstr ""
860
 
861
- #: admin/admin.php:1147 admin/admin.php:1243
862
  msgid "Daily Popular Posts"
863
  msgstr "Популярные сегодня записи"
864
 
865
- #: admin/admin.php:1177
866
  msgid "Support the development"
867
  msgstr "Поддержать автора плагина"
868
 
869
- #: admin/admin.php:1184
870
  msgid "Donation for Top 10"
871
  msgstr ""
872
 
873
- #: admin/admin.php:1186
874
  msgid "Enter amount in USD: "
875
  msgstr "Сколько вы готовы пожертвовать (в USD):"
876
 
877
- #: admin/admin.php:1190
878
  #, fuzzy
879
  msgid "Send your donation to the author of Top 10"
880
  msgstr "Отправьте пожертвование автору"
881
 
882
- #: admin/admin.php:1197
883
  msgid "Follow me"
884
  msgstr ""
885
 
886
- #: admin/admin.php:1207
887
  #, fuzzy
888
  msgid "Quick links"
889
  msgstr "Полезные ссылки"
890
 
891
- #: admin/admin.php:1211
892
  #, fuzzy
893
  msgid "Top 10 plugin page"
894
  msgstr "страница плагина"
895
 
896
- #: admin/admin.php:1212
897
  msgid "Top 10 Github page"
898
  msgstr ""
899
 
900
- #: admin/admin.php:1213
901
  msgid "Other plugins"
902
  msgstr "Другие плагины автора"
903
 
904
- #: admin/admin.php:1214
905
  msgid "Ajay's blog"
906
  msgstr "Блог Ajay"
907
 
908
- #: admin/admin.php:1215
909
  msgid "FAQ"
910
  msgstr ""
911
 
912
- #: admin/admin.php:1216 admin/admin.php:1374
913
  msgid "Support"
914
  msgstr "Поддержка (англ.)"
915
 
916
- #: admin/admin.php:1217
917
  msgid "Reviews"
918
  msgstr ""
919
 
920
- #: admin/admin.php:1240
921
  #, fuzzy
922
  msgid "Overall Popular Posts"
923
  msgstr "Посмотреть все Популярные записи"
924
 
925
- #: admin/admin.php:1351
926
  msgid "Settings"
927
  msgstr "Настроки плагина"
928
 
929
- #: admin/admin.php:1375
930
  msgid "Donate"
931
  msgstr "Сделать пожертвование"
932
 
@@ -1018,41 +1039,41 @@ msgstr "Настройки превью к записям:"
1018
  msgid "Thumbnail width"
1019
  msgstr "Настройки превью к записям:"
1020
 
1021
- #: top-10.php:866
1022
  msgid " by "
1023
  msgstr ""
1024
 
1025
- #: top-10.php:917
1026
  #, php-format
1027
  msgid "Popular posts by <a href=\"%s\" rel=\"nofollow\" %s>Top 10 plugin</a>"
1028
  msgstr ""
1029
 
1030
- #: top-10.php:1016
1031
  msgid "<h3>Popular Posts</h3>"
1032
  msgstr "<h3>Популярные записи</h3>"
1033
 
1034
- #: top-10.php:1017
1035
  msgid "<h3>Daily Popular</h3>"
1036
  msgstr "<h3>Популярные сегодня записи</h3>"
1037
 
1038
- #: top-10.php:1018
1039
  #, fuzzy
1040
  msgid "No top posts yet"
1041
  msgstr "Сбросить статистику популярных записей"
1042
 
1043
- #: top-10.php:1668
1044
  msgid "Once Weekly"
1045
  msgstr ""
1046
 
1047
- #: top-10.php:1672
1048
  msgid "Once Fortnightly"
1049
  msgstr ""
1050
 
1051
- #: top-10.php:1676
1052
  msgid "Once Monthly"
1053
  msgstr ""
1054
 
1055
- #: top-10.php:1680
1056
  msgid "Once quarterly"
1057
  msgstr ""
1058
 
2
  msgstr ""
3
  "Project-Id-Version: Топ 10\n"
4
  "Report-Msgid-Bugs-To: \n"
5
+ "POT-Creation-Date: 2015-01-01 21:53-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"
61
  msgid "Next"
62
  msgstr "Следующая страница"
63
 
64
+ #: admin/admin-dashboard.php:200 admin/admin.php:1157
65
  msgid "Popular Posts"
66
  msgstr "Популярные записи"
67
 
69
  msgid "Daily Popular"
70
  msgstr "Популярные сегодня записи"
71
 
72
+ #: admin/admin-metabox.php:38 admin/admin.php:1246
73
  msgid "Top 10"
74
  msgstr "Топ 10 записей"
75
 
99
  msgid "The URL above is saved in the meta field: "
100
  msgstr ""
101
 
102
+ #: admin/admin.php:161
103
  msgid "Options saved successfully."
104
  msgstr "Настройки сохранены."
105
 
106
+ #: admin/admin.php:171
107
  msgid "Options set to Default."
108
  msgstr "Настройки сброшены."
109
 
110
+ #: admin/admin.php:177
111
  msgid "Top 10 popular posts reset"
112
  msgstr "Сбросить статистику популярных записей"
113
 
114
+ #: admin/admin.php:183
115
  msgid "Top 10 daily popular posts reset"
116
  msgstr "Сбросить статистику популярных записей за сегодня"
117
 
118
+ #: admin/admin.php:190
119
  msgid "Duplicate rows cleaned from tables"
120
  msgstr ""
121
 
122
+ #: admin/admin.php:202
123
  msgid "Scheduled maintenance enabled / modified"
124
  msgstr ""
125
 
126
+ #: admin/admin.php:206
127
  msgid "Scheduled maintenance disabled"
128
  msgstr ""
129
 
130
+ #: admin/admin.php:245
131
  msgid "Counts from selected sites have been imported."
132
  msgstr ""
133
 
134
+ #: admin/admin.php:270
135
  msgid ""
136
  "Selected tables have been deleted. Note that only imported tables have been "
137
  "deleted."
138
  msgstr ""
139
 
140
+ #: admin/admin.php:278 admin/admin.php:1246 admin/admin.php:1249
141
  #, fuzzy
142
  msgid "Top 10 Settings"
143
  msgstr "Настроки плагина"
144
 
145
+ #: admin/admin.php:290 admin/admin.php:312
146
  msgid "General options"
147
  msgstr ""
148
 
149
+ #: admin/admin.php:291 admin/admin.php:389
150
  msgid "Counter and tracker options"
151
  msgstr ""
152
 
153
+ #: admin/admin.php:292 admin/admin.php:494
154
  msgid "Popular post list options"
155
  msgstr ""
156
 
157
+ #: admin/admin.php:293 admin/admin.php:689
158
  #: includes/class-top-10-widget.php:103
159
  #, fuzzy
160
  msgid "Thumbnail options"
161
  msgstr "Настройки превью к записям:"
162
 
163
+ #: admin/admin.php:294
164
  msgid "Custom styles"
165
  msgstr ""
166
 
167
+ #: admin/admin.php:295 admin/admin.php:920
168
  msgid "Maintenance"
169
  msgstr ""
170
 
171
+ #: admin/admin.php:311 admin/admin.php:388 admin/admin.php:493
172
+ #: admin/admin.php:688 admin/admin.php:851 admin/admin.php:919
173
+ #: admin/admin.php:983 admin/admin.php:1004 admin/admin.php:1188
174
+ #: admin/admin.php:1208 admin/admin.php:1218
175
  msgid "Click to toggle"
176
  msgstr ""
177
 
178
+ #: admin/admin.php:328
179
  msgid "Enable Overall stats"
180
  msgstr ""
181
 
182
+ #: admin/admin.php:334
183
  msgid "Enable Daily stats"
184
  msgstr ""
185
 
186
+ #: admin/admin.php:340
187
  msgid "Cache fix:"
188
  msgstr ""
189
 
190
+ #: admin/admin.php:343
191
  msgid ""
192
  "This will try to prevent W3 Total Cache and other caching plugins from "
193
  "caching the tracker script of the plugin. Try toggling this option in case "
194
  "you find that your posts are not tracked."
195
  msgstr ""
196
 
197
+ #: admin/admin.php:347
198
+ msgid "Start daily counts from midnight:"
199
+ msgstr ""
200
+
201
+ #: admin/admin.php:350
202
+ msgid ""
203
+ "Daily counter will display number of visits from midnight. This option is "
204
+ "checked by default and mimics the way most normal counters work. Turning "
205
+ "this off will allow you to use the hourly setting in the next option."
206
+ msgstr ""
207
+
208
+ #: admin/admin.php:354
209
+ msgid "Daily popular contains top posts over:"
210
+ msgstr ""
211
+
212
+ #: admin/admin.php:356
213
+ msgid "day(s)"
214
+ msgstr ""
215
+
216
+ #: admin/admin.php:357
217
+ msgid "hour(s)"
218
+ msgstr ""
219
+
220
+ #: admin/admin.php:358
221
+ msgid ""
222
+ "Think of Daily Popular has a custom date range applied as a global setting. "
223
+ "Instead of displaying popular posts from the past day, this setting lets you "
224
+ "display posts for as many days or as few hours as you want. This can be "
225
+ "overridden in the widget."
226
+ msgstr ""
227
+
228
+ #: admin/admin.php:362
229
  msgid "Link to Top 10 plugin page"
230
  msgstr ""
231
 
232
+ #: admin/admin.php:365
233
  #, fuzzy
234
  msgid ""
235
  "A link to the plugin is added as an extra list item to the list of popular "
238
  "Оставить ссылку на плагин под списками Популярных записей? Автор плагина был "
239
  "бы очень благодарен Вам, если Вы ее все же оставите!"
240
 
241
+ #: admin/admin.php:370 admin/admin.php:475 admin/admin.php:670
242
+ #: admin/admin.php:833 admin/admin.php:899 admin/admin.php:976
243
  #, fuzzy
244
  msgid "Save Options"
245
  msgstr "Настройки плагина:"
246
 
247
+ #: admin/admin.php:405
248
  #, fuzzy
249
  msgid "Display number of views on:"
250
  msgstr "Показывать количество просмотров записи в ее \"теле\"?"
251
 
252
+ #: admin/admin.php:407
253
  msgid "Posts"
254
  msgstr ""
255
 
256
+ #: admin/admin.php:408
257
  #, fuzzy
258
  msgid "Pages"
259
  msgstr "Страница"
260
 
261
+ #: admin/admin.php:409
262
  msgid "Home page"
263
  msgstr ""
264
 
265
+ #: admin/admin.php:410
266
  msgid "Feeds"
267
  msgstr ""
268
 
269
+ #: admin/admin.php:411
270
  msgid "Category archives"
271
  msgstr ""
272
 
273
+ #: admin/admin.php:412
274
  msgid "Tag archives"
275
  msgstr ""
276
 
277
+ #: admin/admin.php:413
278
  msgid "Other archives"
279
  msgstr ""
280
 
281
+ #: admin/admin.php:414
282
  msgid ""
283
  "If you choose to disable this, please add <code>&lt;?php if "
284
  "( function_exists ( 'echo_tptn_post_count' ) ) echo_tptn_post_count(); ?&gt;"
285
  "</code> to your template file where you want it displayed"
286
  msgstr ""
287
 
288
+ #: admin/admin.php:418
289
  #, fuzzy
290
  msgid "Format to display the post views:"
291
  msgstr ""
292
  "В поле ниже вы можете настроить формат отображения количества просмотров за "
293
  "день, за все время для записей/страниц:"
294
 
295
+ #: admin/admin.php:421
296
  msgid ""
297
  "Use <code>%totalcount%</code> to display the total count, <code>%dailycount"
298
  "%</code> to display the daily count and <code>%overallcount%</code> to "
300
  "options displays <code>[Visited 123 times, 23 visits today]</code>"
301
  msgstr ""
302
 
303
+ #: admin/admin.php:425
304
  msgid "What do display when there are no visits?"
305
  msgstr ""
306
 
307
+ #: admin/admin.php:428
308
  msgid ""
309
  "This text applies only when there are 0 hits for the post and it isn't a "
310
  "single page. e.g. if you display post views on the homepage or archives then "
312
  "option."
313
  msgstr ""
314
 
315
+ #: admin/admin.php:432
316
  msgid "Always display latest post count"
317
  msgstr ""
318
 
319
+ #: admin/admin.php:435
320
  msgid ""
321
  "This option uses JavaScript and will increase your page load time. Turn this "
322
  "off if you are not using caching plugins or are OK with displaying older "
323
  "cached counts."
324
  msgstr ""
325
 
326
+ #: admin/admin.php:439
327
  msgid "Track visits of authors on their own posts?"
328
  msgstr "Учитывать просмотры записей, сделанные их же авторами?"
329
 
330
+ #: admin/admin.php:442
331
  msgid ""
332
  "Disabling this option will stop authors visits tracked on their own posts"
333
  msgstr ""
334
 
335
+ #: admin/admin.php:446
336
  #, fuzzy
337
  msgid "Track visits of admins?"
338
  msgstr "Учитывать просмотры записей, сделанные их же авторами?"
339
 
340
+ #: admin/admin.php:449
341
  msgid "Disabling this option will stop admin visits being tracked."
342
  msgstr ""
343
 
344
+ #: admin/admin.php:453
345
  #, fuzzy
346
  msgid "Track visits of Editors?"
347
  msgstr "Учитывать просмотры записей, сделанные их же авторами?"
348
 
349
+ #: admin/admin.php:456
350
  msgid "Disabling this option will stop editor visits being tracked."
351
  msgstr ""
352
 
353
+ #: admin/admin.php:460
354
  msgid "Display page views on Posts and Pages in Admin"
355
  msgstr ""
356
 
357
+ #: admin/admin.php:463
358
  msgid ""
359
  "Adds three columns called Total Views, Today's Views and Views to All Posts "
360
  "and All Pages"
361
  msgstr ""
362
 
363
+ #: admin/admin.php:467
364
  #, fuzzy
365
  msgid "Show number of views to non-admins"
366
  msgstr "Показывать количество просмотров страницы в ее \"теле\"?"
367
 
368
+ #: admin/admin.php:470
369
  msgid ""
370
  "If you disable this then non-admins won't see the above columns or view the "
371
  "independent pages with the top posts"
372
  msgstr ""
373
 
374
+ #: admin/admin.php:510
375
  msgid "Number of popular posts to display: "
376
  msgstr "Количество Популярных записей в списке:"
377
 
378
+ #: admin/admin.php:513
379
  msgid ""
380
  "Maximum number of posts that will be displayed in the list. This option is "
381
  "used if you don't specify the number of posts in the widget or shortcodes"
382
  msgstr ""
383
 
384
+ #: admin/admin.php:517
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
385
  msgid "Post types to include in results (including custom post types)"
386
  msgstr ""
387
 
388
+ #: admin/admin.php:529
389
  msgid "List of post or page IDs to exclude from the results: "
390
  msgstr ""
391
 
392
+ #: admin/admin.php:531 admin/admin.php:638
393
  msgid "Enter comma separated list of IDs. e.g. 188,320,500"
394
  msgstr ""
395
 
396
+ #: admin/admin.php:535
397
  msgid "Exclude Categories: "
398
  msgstr "Исключить рубрики:"
399
 
400
+ #: admin/admin.php:550
401
  msgid ""
402
  "Comma separated list of category slugs. The field above has an autocomplete "
403
  "so simply start typing in the starting letters and it will prompt you with "
404
  "options"
405
  msgstr ""
406
 
407
+ #: admin/admin.php:555
408
  msgid "Title of popular posts: "
409
  msgstr "Заголовок списка Популярных записей:"
410
 
411
+ #: admin/admin.php:561
412
  msgid "Title of daily popular posts: "
413
  msgstr "Заголовок списка Популярных сегодня записей:"
414
 
415
+ #: admin/admin.php:567
416
  msgid "When there are no posts, what should be shown?"
417
  msgstr ""
418
 
419
+ #: admin/admin.php:571
420
  msgid "Blank Output"
421
  msgstr ""
422
 
423
+ #: admin/admin.php:575
424
  msgid "Display:"
425
  msgstr ""
426
 
427
+ #: admin/admin.php:580
428
  msgid "Show post excerpt in list?"
429
  msgstr "Показывать текст записи в списке?"
430
 
431
+ #: admin/admin.php:586
432
  msgid "Length of excerpt (in words): "
433
  msgstr "Длина выводимого текста (в словах):"
434
 
435
+ #: admin/admin.php:592
436
  #, fuzzy
437
  msgid "Show post author in list?"
438
  msgstr "Показывать текст записи в списке?"
439
 
440
+ #: admin/admin.php:598
441
  #, fuzzy
442
  msgid "Show post date in list?"
443
  msgstr "Показывать текст записи в списке?"
444
 
445
+ #: admin/admin.php:604
446
  msgid "Limit post title length (in characters)"
447
  msgstr ""
448
 
449
+ #: admin/admin.php:610
450
  #, fuzzy
451
  msgid "Show view count in list?"
452
  msgstr "Показывать текст записи в списке?"
453
 
454
+ #: admin/admin.php:616
455
  msgid "Always display latest post count in the daily lists?"
456
  msgstr ""
457
 
458
+ #: admin/admin.php:619
459
  msgid ""
460
  "This option uses JavaScript and will increase your page load time. When you "
461
  "enable this option, the daily widget will not use the options set there, but "
462
  "options will need to be set on this screen."
463
  msgstr ""
464
 
465
+ #: admin/admin.php:623
466
  msgid "Open links in new window"
467
  msgstr ""
468
 
469
+ #: admin/admin.php:629
470
  msgid "Add nofollow attribute to links in the list"
471
  msgstr ""
472
 
473
+ #: admin/admin.php:635
474
  msgid "Exclude display of related posts on these posts / pages"
475
  msgstr ""
476
 
477
+ #: admin/admin.php:642
478
  #, fuzzy
479
  msgid "Customise the list HTML"
480
  msgstr "Настройки оформления списка:"
481
 
482
+ #: admin/admin.php:645
483
  msgid "HTML to display before the list of posts: "
484
  msgstr "HTML-тег, используемый перед списком:"
485
 
486
+ #: admin/admin.php:651
487
  msgid "HTML to display before each list item: "
488
  msgstr "HTML-тег, используемый перед каждым пунктом в списке:"
489
 
490
+ #: admin/admin.php:657
491
  msgid "HTML to display after each list item: "
492
  msgstr "HTML-тег, используемый после каждого пункта в списке:"
493
 
494
+ #: admin/admin.php:663
495
  msgid "HTML to display after the list of posts: "
496
  msgstr "HTML-тег, используемый после списка:"
497
 
498
+ #: admin/admin.php:704
499
  msgid "Location of post thumbnail:"
500
  msgstr ""
501
 
502
+ #: admin/admin.php:708
503
  msgid "Display thumbnails inline with posts, before title"
504
  msgstr "Отображать превью к записи сразу перед заголовком"
505
 
506
+ #: admin/admin.php:713
507
  msgid "Display thumbnails inline with posts, after title"
508
  msgstr "Отображать превью к записи сразу после заголовка"
509
 
510
+ #: admin/admin.php:718
511
  msgid "Display only thumbnails, no text"
512
  msgstr "Отображать только превью, без текста"
513
 
514
+ #: admin/admin.php:723
515
  msgid "Do not display thumbnails, only text."
516
  msgstr "Отображать только текст, без превью"
517
 
518
+ #: admin/admin.php:727
519
  msgid "Thumbnail size:"
520
  msgstr ""
521
 
522
+ #: admin/admin.php:751
523
  msgid "Custom size"
524
  msgstr ""
525
 
526
+ #: admin/admin.php:754
527
  msgid ""
528
  "You can choose from existing image sizes above or create a custom size. If "
529
  "you have chosen Custom size above, then enter the width, height and crop "
530
  "settings below. For best results, use a cropped image."
531
  msgstr ""
532
 
533
+ #: admin/admin.php:755
534
  msgid ""
535
  "If you change the width and/or height below, existing images will not be "
536
  "automatically resized."
537
  msgstr ""
538
 
539
+ #: admin/admin.php:756
540
  #, php-format
541
  msgid ""
542
  "I recommend using <a href='%s' target='_blank'>Force Regenerate Thumbnails</"
544
  "regenerate all image sizes."
545
  msgstr ""
546
 
547
+ #: admin/admin.php:759
548
  msgid "Width of custom thumbnail:"
549
  msgstr ""
550
 
551
+ #: admin/admin.php:764
552
  msgid "Height of custom thumbnail"
553
  msgstr ""
554
 
555
+ #: admin/admin.php:769
556
  msgid "Crop mode:"
557
  msgstr ""
558
 
559
+ #: admin/admin.php:773
560
  msgid ""
561
  "By default, thumbnails will be proportionately cropped. Check this box to "
562
  "hard crop the thumbnails."
563
  msgstr ""
564
 
565
+ #: admin/admin.php:774
566
  #, php-format
567
  msgid "<a href='%s' target='_blank'>Difference between soft and hard crop</a>"
568
  msgstr ""
569
 
570
+ #: admin/admin.php:776
571
  msgid ""
572
  "Since you're using the default styles set under the Custom Styles section, "
573
  "the width and height is fixed at 65px and crop mode is enabled."
574
  msgstr ""
575
 
576
+ #: admin/admin.php:781
577
  msgid "Style attributes / Width and Height HTML attributes:"
578
  msgstr ""
579
 
580
+ #: admin/admin.php:785
581
  msgid "Style attributes are used for width and height."
582
  msgstr ""
583
 
584
+ #: admin/admin.php:790
585
  msgid "HTML width and height attributes are used for width and height."
586
  msgstr ""
587
 
588
+ #: admin/admin.php:794
589
  msgid "Use timthumb to generate thumbnails? "
590
  msgstr ""
591
 
592
+ #: admin/admin.php:797
593
  msgid ""
594
  "If checked, <a href=\"http://www.binarymoon.co.uk/projects/timthumb/\" "
595
  "target=\"_blank\">timthumb</a> will be used to generate thumbnails"
596
  msgstr ""
597
 
598
+ #: admin/admin.php:800
599
  msgid "Quality of thumbnails generated by timthumb:"
600
  msgstr ""
601
 
602
+ #: admin/admin.php:803
603
  msgid ""
604
  "Enter values between 0 and 100 only. 100 is highest quality and the highest "
605
  "file size. Suggested maximum value is 95. Default is 75."
606
  msgstr ""
607
 
608
+ #: admin/admin.php:806
609
  #, fuzzy
610
  msgid "Post thumbnail meta field name: "
611
  msgstr "Настройки превью к записям:"
612
 
613
+ #: admin/admin.php:809
614
  msgid ""
615
  "The value of this field should contain the image source and is set in the "
616
  "<em>Add New Post</em> screen"
617
  msgstr ""
618
 
619
+ #: admin/admin.php:812
620
  #, fuzzy
621
  msgid ""
622
  "If the postmeta is not set, then should the plugin extract the first image "
626
  "изображение из записи. Это может слегка увеличить загрузку в первый раз, так "
627
  "как будет создаваться уменьшенная копия изображения"
628
 
629
+ #: admin/admin.php:815
630
  #, fuzzy
631
  msgid ""
632
  "This could slow down the loading of your page if the first image in the "
636
  "изображение из записи. Это может слегка увеличить загрузку в первый раз, так "
637
  "как будет создаваться уменьшенная копия изображения"
638
 
639
+ #: admin/admin.php:818
640
  msgid "Use default thumbnail? "
641
  msgstr ""
642
 
643
+ #: admin/admin.php:821
644
  msgid ""
645
  "If checked, when no thumbnail is found, show a default one from the URL "
646
  "below. If not checked and no thumbnail is found, no image will be shown."
649
  "добавлено стандартное изображение. Если превью задано к записи - будет "
650
  "отображаться только оно."
651
 
652
+ #: admin/admin.php:824
653
  msgid "Default thumbnail: "
654
  msgstr ""
655
 
656
+ #: admin/admin.php:828
657
  #, fuzzy
658
  msgid ""
659
  "The plugin will first check if the post contains a thumbnail. If it doesn't "
664
  "заданному ранее произвольному мета-полю). Если же превью нет - будет "
665
  "выводиться картинка по-умолчанию:"
666
 
667
+ #: admin/admin.php:852
668
  msgid "Custom CSS"
669
  msgstr ""
670
 
671
+ #: admin/admin.php:867
672
  msgid "Use default style included in the plugin?"
673
  msgstr ""
674
 
675
+ #: admin/admin.php:870
676
  msgid ""
677
  "Top 10 includes a default style that makes your popular posts list to look "
678
  "beautiful. Check the box above if you want to use this."
679
  msgstr ""
680
 
681
+ #: admin/admin.php:871
682
  msgid ""
683
  "Enabling this option will turn on the thumbnails and set their width and "
684
  "height to 65px. It will also turn off the display of the author, excerpt and "
685
  "date if already enabled. Disabling this option will not revert any settings."
686
  msgstr ""
687
 
688
+ #: admin/admin.php:872
689
  #, php-format
690
  msgid ""
691
  "You can view the default style at <a href=\"%1$s\" target=\"_blank\">%1$s</a>"
692
  msgstr ""
693
 
694
+ #: admin/admin.php:875
695
  msgid "Custom CSS to add to header:"
696
  msgstr ""
697
 
698
+ #: admin/admin.php:880
699
  msgid ""
700
  "Do not include <code>style</code> tags. Check out the <a href=\"http://"
701
  "wordpress.org/extend/plugins/top-10/faq/\" target=\"_blank\">FAQ</a> for "
702
  "available CSS classes to style."
703
  msgstr ""
704
 
705
+ #: admin/admin.php:900
706
  #, fuzzy
707
  msgid "Default Options"
708
  msgstr "Настройки плагина:"
709
 
710
+ #: admin/admin.php:900
711
  msgid "Do you want to set options to Default?"
712
  msgstr "Сбросить настройки плагина?"
713
 
714
+ #: admin/admin.php:924
715
  msgid ""
716
  "Over time the Daily Top 10 database grows in size, which reduces the "
717
  "performance of the plugin. Cleaning the database at regular intervals could "
719
  "will automatically delete entries older than 90 days."
720
  msgstr ""
721
 
722
+ #: admin/admin.php:925
723
  msgid ""
724
  "Note: When scheduled maintenance is enabled, WordPress will run the cron job "
725
  "everytime the job is rescheduled (i.e. you change the settings below)."
726
  msgstr ""
727
 
728
+ #: admin/admin.php:928
729
  msgid "Enable scheduled maintenance of daily tables:"
730
  msgstr ""
731
 
732
+ #: admin/admin.php:932
733
  msgid "Time to run maintenance"
734
  msgstr ""
735
 
736
+ #: admin/admin.php:933
737
  msgid "hrs"
738
  msgstr ""
739
 
740
+ #: admin/admin.php:933
741
  msgid "min"
742
  msgstr ""
743
 
744
+ #: admin/admin.php:935
745
  msgid "How often should the maintenance be run:"
746
  msgstr ""
747
 
748
+ #: admin/admin.php:939
749
  msgid "Daily"
750
  msgstr ""
751
 
752
+ #: admin/admin.php:943
753
  msgid "Weekly"
754
  msgstr ""
755
 
756
+ #: admin/admin.php:947
757
  msgid "Fortnightly"
758
  msgstr ""
759
 
760
+ #: admin/admin.php:951
761
  msgid "Monthly"
762
  msgstr ""
763
 
764
+ #: admin/admin.php:960
765
  msgid "The cron job has been scheduled. Maintenance will run "
766
  msgstr ""
767
 
768
+ #: admin/admin.php:965
769
  msgid "The cron job is missing. Please resave this page to add the job"
770
  msgstr ""
771
 
772
+ #: admin/admin.php:970
773
  msgid "Maintenance is turned off"
774
  msgstr ""
775
 
776
+ #: admin/admin.php:984
777
  msgid "Reset count"
778
  msgstr "Сбросить статистику"
779
 
780
+ #: admin/admin.php:987
781
  msgid ""
782
  "This cannot be reversed. Make sure that your database has been backed up "
783
  "before proceeding"
785
  "Сброс статистики не может быть обращен. Перед тем, как сбрасывать все, "
786
  "убедитесь, что у вас есть копия вашей базы данных!"
787
 
788
+ #: admin/admin.php:990
789
  #, fuzzy
790
  msgid "Reset Popular Posts"
791
  msgstr "Популярные записи"
792
 
793
+ #: admin/admin.php:990
794
  msgid "Are you sure you want to reset the popular posts?"
795
  msgstr "Вы уверены, что хотите сбросить статистику для Популярных записей?"
796
 
797
+ #: admin/admin.php:991
798
  #, fuzzy
799
  msgid "Reset Daily Popular Posts"
800
  msgstr "Популярные сегодня записи"
801
 
802
+ #: admin/admin.php:991
803
  msgid "Are you sure you want to reset the daily popular posts?"
804
  msgstr ""
805
  "Вы уверены, что хотите сбросить статистику для Популярных сегодня записей?"
806
 
807
+ #: admin/admin.php:992
808
  msgid "Clear duplicates"
809
  msgstr ""
810
 
811
+ #: admin/admin.php:992
812
  msgid "This will delete the duplicate entries in the tables. Proceed?"
813
  msgstr ""
814
  "Будет произведено удаление дублирующихся щаписей из статистики. Продолжить?"
815
 
816
+ #: admin/admin.php:1005
817
  msgid "WordPress Multisite: Migrate Top 10 v1.x counts to 2.x"
818
  msgstr ""
819
 
820
+ #: admin/admin.php:1008
821
  msgid ""
822
  "If you've been using Top 10 v1.x on multisite, you would have needed to "
823
  "activate the plugin independently for each site. This would have resulted in "
824
+ "two tables being created for each site in the network."
 
 
 
825
  msgstr ""
826
 
827
+ #: admin/admin.php:1009
828
+ msgid ""
829
+ "Top 10 v2.x onwards uses only a single table to record the count, keeping "
830
+ "your database clean. You can use this tool to import the recorded counts "
831
+ "from v1.x tables to the new v2.x table format."
832
+ msgstr ""
833
+
834
+ #: admin/admin.php:1012
835
  msgid ""
836
  "If you do not see any tables below, then it means that either all data has "
837
  "already been imported or no relevant information has been found."
838
  msgstr ""
839
 
840
+ #: admin/admin.php:1015
841
+ msgid ""
842
+ "After running the importer, please verify that all the counts have been "
843
+ "successfully imported. Only then should you delete any old tables!"
844
+ msgstr ""
845
+
846
+ #: admin/admin.php:1049
847
  msgid "Blog ID"
848
  msgstr ""
849
 
850
+ #: admin/admin.php:1052
851
  msgid "Status"
852
  msgstr ""
853
 
854
+ #: admin/admin.php:1055
855
  msgid "Select to import"
856
  msgstr ""
857
 
858
+ #: admin/admin.php:1065
859
  msgid "Blog #"
860
  msgstr ""
861
 
862
+ #: admin/admin.php:1075
863
  msgid "Not imported"
864
  msgstr ""
865
 
866
+ #: admin/admin.php:1079
867
  msgid "Imported"
868
  msgstr ""
869
 
870
+ #: admin/admin.php:1100
871
  msgid "Begin import"
872
  msgstr ""
873
 
874
+ #: admin/admin.php:1101
875
  msgid "Delete selected tables"
876
  msgstr ""
877
 
878
+ #: admin/admin.php:1102
879
  msgid "Delete all imported tables"
880
  msgstr ""
881
 
882
+ #: admin/admin.php:1159 admin/admin.php:1255
883
  msgid "Daily Popular Posts"
884
  msgstr "Популярные сегодня записи"
885
 
886
+ #: admin/admin.php:1189
887
  msgid "Support the development"
888
  msgstr "Поддержать автора плагина"
889
 
890
+ #: admin/admin.php:1196
891
  msgid "Donation for Top 10"
892
  msgstr ""
893
 
894
+ #: admin/admin.php:1198
895
  msgid "Enter amount in USD: "
896
  msgstr "Сколько вы готовы пожертвовать (в USD):"
897
 
898
+ #: admin/admin.php:1202
899
  #, fuzzy
900
  msgid "Send your donation to the author of Top 10"
901
  msgstr "Отправьте пожертвование автору"
902
 
903
+ #: admin/admin.php:1209
904
  msgid "Follow me"
905
  msgstr ""
906
 
907
+ #: admin/admin.php:1219
908
  #, fuzzy
909
  msgid "Quick links"
910
  msgstr "Полезные ссылки"
911
 
912
+ #: admin/admin.php:1223
913
  #, fuzzy
914
  msgid "Top 10 plugin page"
915
  msgstr "страница плагина"
916
 
917
+ #: admin/admin.php:1224
918
  msgid "Top 10 Github page"
919
  msgstr ""
920
 
921
+ #: admin/admin.php:1225
922
  msgid "Other plugins"
923
  msgstr "Другие плагины автора"
924
 
925
+ #: admin/admin.php:1226
926
  msgid "Ajay's blog"
927
  msgstr "Блог Ajay"
928
 
929
+ #: admin/admin.php:1227
930
  msgid "FAQ"
931
  msgstr ""
932
 
933
+ #: admin/admin.php:1228 admin/admin.php:1386
934
  msgid "Support"
935
  msgstr "Поддержка (англ.)"
936
 
937
+ #: admin/admin.php:1229
938
  msgid "Reviews"
939
  msgstr ""
940
 
941
+ #: admin/admin.php:1252
942
  #, fuzzy
943
  msgid "Overall Popular Posts"
944
  msgstr "Посмотреть все Популярные записи"
945
 
946
+ #: admin/admin.php:1363
947
  msgid "Settings"
948
  msgstr "Настроки плагина"
949
 
950
+ #: admin/admin.php:1387
951
  msgid "Donate"
952
  msgstr "Сделать пожертвование"
953
 
1039
  msgid "Thumbnail width"
1040
  msgstr "Настройки превью к записям:"
1041
 
1042
+ #: top-10.php:879
1043
  msgid " by "
1044
  msgstr ""
1045
 
1046
+ #: top-10.php:930
1047
  #, php-format
1048
  msgid "Popular posts by <a href=\"%s\" rel=\"nofollow\" %s>Top 10 plugin</a>"
1049
  msgstr ""
1050
 
1051
+ #: top-10.php:1029
1052
  msgid "<h3>Popular Posts</h3>"
1053
  msgstr "<h3>Популярные записи</h3>"
1054
 
1055
+ #: top-10.php:1030
1056
  msgid "<h3>Daily Popular</h3>"
1057
  msgstr "<h3>Популярные сегодня записи</h3>"
1058
 
1059
+ #: top-10.php:1031
1060
  #, fuzzy
1061
  msgid "No top posts yet"
1062
  msgstr "Сбросить статистику популярных записей"
1063
 
1064
+ #: top-10.php:1676
1065
  msgid "Once Weekly"
1066
  msgstr ""
1067
 
1068
+ #: top-10.php:1680
1069
  msgid "Once Fortnightly"
1070
  msgstr ""
1071
 
1072
+ #: top-10.php:1684
1073
  msgid "Once Monthly"
1074
  msgstr ""
1075
 
1076
+ #: top-10.php:1688
1077
  msgid "Once quarterly"
1078
  msgstr ""
1079
 
languages/tptn-sr_RS.mo CHANGED
Binary file
languages/tptn-sr_RS.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: 2014-12-28 00:57-0000\n"
6
  "PO-Revision-Date: \n"
7
  "Last-Translator: Ajay D'Souza <me@ajaydsouza.com>\n"
8
  "Language-Team: Ajay D'Souza <me@ajaydsouza.com>\n"
@@ -61,7 +61,7 @@ msgstr "Prethodni"
61
  msgid "Next"
62
  msgstr "Sledeći"
63
 
64
- #: admin/admin-dashboard.php:200 admin/admin.php:1145
65
  msgid "Popular Posts"
66
  msgstr "Popularni postovi"
67
 
@@ -69,7 +69,7 @@ msgstr "Popularni postovi"
69
  msgid "Daily Popular"
70
  msgstr "Dnevno popularno"
71
 
72
- #: admin/admin-metabox.php:38 admin/admin.php:1234
73
  msgid "Top 10"
74
  msgstr "Top 10"
75
 
@@ -100,106 +100,137 @@ msgstr ""
100
  msgid "The URL above is saved in the meta field: "
101
  msgstr ""
102
 
103
- #: admin/admin.php:160
104
  msgid "Options saved successfully."
105
  msgstr "Opcije uspešno sašuvane"
106
 
107
- #: admin/admin.php:170
108
  msgid "Options set to Default."
109
  msgstr "Opcije podešene po Default-u."
110
 
111
- #: admin/admin.php:176
112
  msgid "Top 10 popular posts reset"
113
  msgstr "Resetuj Top 10 popularnih postova"
114
 
115
- #: admin/admin.php:182
116
  msgid "Top 10 daily popular posts reset"
117
  msgstr "Resetuj Top 10 dnevnih popularnih postova"
118
 
119
- #: admin/admin.php:189
120
  msgid "Duplicate rows cleaned from tables"
121
  msgstr "Umnoži redove očišćene sa tabela"
122
 
123
- #: admin/admin.php:201
124
  msgid "Scheduled maintenance enabled / modified"
125
  msgstr "Raspored održavanja omogućen modifikovan"
126
 
127
- #: admin/admin.php:205
128
  msgid "Scheduled maintenance disabled"
129
  msgstr "Raspoed održavanja onemogućen"
130
 
131
- #: admin/admin.php:244
132
  msgid "Counts from selected sites have been imported."
133
  msgstr ""
134
 
135
- #: admin/admin.php:269
136
  msgid ""
137
  "Selected tables have been deleted. Note that only imported tables have been "
138
  "deleted."
139
  msgstr ""
140
 
141
- #: admin/admin.php:277 admin/admin.php:1234 admin/admin.php:1237
142
  #, fuzzy
143
  msgid "Top 10 Settings"
144
  msgstr "Paramètres"
145
 
146
- #: admin/admin.php:289 admin/admin.php:311
147
  msgid "General options"
148
  msgstr "Opšta pitanja"
149
 
150
- #: admin/admin.php:290 admin/admin.php:373
151
  msgid "Counter and tracker options"
152
  msgstr ""
153
 
154
- #: admin/admin.php:291 admin/admin.php:478
155
  msgid "Popular post list options"
156
  msgstr ""
157
 
158
- #: admin/admin.php:292 admin/admin.php:681
159
  #: includes/class-top-10-widget.php:103
160
  #, fuzzy
161
  msgid "Thumbnail options"
162
  msgstr "Options thumbnail des messages:"
163
 
164
- #: admin/admin.php:293
165
  msgid "Custom styles"
166
  msgstr ""
167
 
168
- #: admin/admin.php:294 admin/admin.php:912
169
  msgid "Maintenance"
170
  msgstr "Održavanje"
171
 
172
- #: admin/admin.php:310 admin/admin.php:372 admin/admin.php:477
173
- #: admin/admin.php:680 admin/admin.php:843 admin/admin.php:911
174
- #: admin/admin.php:975 admin/admin.php:996 admin/admin.php:1176
175
- #: admin/admin.php:1196 admin/admin.php:1206
176
  msgid "Click to toggle"
177
  msgstr ""
178
 
179
- #: admin/admin.php:327
180
  msgid "Enable Overall stats"
181
  msgstr "Omogući statistiku svega"
182
 
183
- #: admin/admin.php:333
184
  msgid "Enable Daily stats"
185
  msgstr "Omogući dnevne statistike"
186
 
187
- #: admin/admin.php:339
188
  msgid "Cache fix:"
189
  msgstr ""
190
 
191
- #: admin/admin.php:342
192
  msgid ""
193
  "This will try to prevent W3 Total Cache and other caching plugins from "
194
  "caching the tracker script of the plugin. Try toggling this option in case "
195
  "you find that your posts are not tracked."
196
  msgstr ""
197
 
198
- #: admin/admin.php:346
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
199
  msgid "Link to Top 10 plugin page"
200
  msgstr "Povežite se na Top 10 plugin stranicu"
201
 
202
- #: admin/admin.php:349
203
  #, fuzzy
204
  msgid ""
205
  "A link to the plugin is added as an extra list item to the list of popular "
@@ -209,47 +240,47 @@ msgstr ""
209
  "le répertoire des enregistrements populaires. Cela n'est pas obligatoire, "
210
  "mais nous vous y remercions!"
211
 
212
- #: admin/admin.php:354 admin/admin.php:459 admin/admin.php:662
213
- #: admin/admin.php:825 admin/admin.php:891 admin/admin.php:968
214
  #, fuzzy
215
  msgid "Save Options"
216
  msgstr "Options:"
217
 
218
- #: admin/admin.php:389
219
  #, fuzzy
220
  msgid "Display number of views on:"
221
  msgstr "Afficher le nombre des visionnages du message?"
222
 
223
- #: admin/admin.php:391
224
  msgid "Posts"
225
  msgstr "Postovi"
226
 
227
- #: admin/admin.php:392
228
  #, fuzzy
229
  msgid "Pages"
230
  msgstr "Page"
231
 
232
- #: admin/admin.php:393
233
  msgid "Home page"
234
  msgstr "Početna stranica"
235
 
236
- #: admin/admin.php:394
237
  msgid "Feeds"
238
  msgstr "Feeds"
239
 
240
- #: admin/admin.php:395
241
  msgid "Category archives"
242
  msgstr "Kategorija arhiva"
243
 
244
- #: admin/admin.php:396
245
  msgid "Tag archives"
246
  msgstr "Tag arhiva"
247
 
248
- #: admin/admin.php:397
249
  msgid "Other archives"
250
  msgstr "Druge arhive"
251
 
252
- #: admin/admin.php:398
253
  #, fuzzy
254
  msgid ""
255
  "If you choose to disable this, please add <code>&lt;?php if "
@@ -260,12 +291,12 @@ msgstr ""
260
  "if(function_exists('echo_ald_tptn')) echo_ald_tptn();?&gt;</code> vašem "
261
  "template fajlu gde želite da bude prikazano. "
262
 
263
- #: admin/admin.php:402
264
  #, fuzzy
265
  msgid "Format to display the post views:"
266
  msgstr "Format za prikaz brojanja u:"
267
 
268
- #: admin/admin.php:405
269
  msgid ""
270
  "Use <code>%totalcount%</code> to display the total count, <code>%dailycount"
271
  "%</code> to display the daily count and <code>%overallcount%</code> to "
@@ -273,11 +304,11 @@ msgid ""
273
  "options displays <code>[Visited 123 times, 23 visits today]</code>"
274
  msgstr ""
275
 
276
- #: admin/admin.php:409
277
  msgid "What do display when there are no visits?"
278
  msgstr ""
279
 
280
- #: admin/admin.php:412
281
  msgid ""
282
  "This text applies only when there are 0 hits for the post and it isn't a "
283
  "single page. e.g. if you display post views on the homepage or archives then "
@@ -285,11 +316,11 @@ msgid ""
285
  "option."
286
  msgstr ""
287
 
288
- #: admin/admin.php:416
289
  msgid "Always display latest post count"
290
  msgstr "Uvek prikaži posldenje brojanje posta"
291
 
292
- #: admin/admin.php:419
293
  #, fuzzy
294
  msgid ""
295
  "This option uses JavaScript and will increase your page load time. Turn this "
@@ -302,104 +333,84 @@ msgstr ""
302
  "widget neće koristiti opcije koje su nameštene tu, ali opcije će morati da "
303
  "se podese na ovom ekranu."
304
 
305
- #: admin/admin.php:423
306
  msgid "Track visits of authors on their own posts?"
307
  msgstr ""
308
  "Opcije koriste JavaScript i povećaće vreme učitavanja vaše stranicePratite "
309
  "posete autora na njihovim postovima?"
310
 
311
- #: admin/admin.php:426
312
  msgid ""
313
  "Disabling this option will stop authors visits tracked on their own posts"
314
  msgstr ""
315
 
316
- #: admin/admin.php:430
317
  #, fuzzy
318
  msgid "Track visits of admins?"
319
  msgstr "Suivre les visites des auteurs de leurs propres messages?"
320
 
321
- #: admin/admin.php:433
322
  msgid "Disabling this option will stop admin visits being tracked."
323
  msgstr ""
324
 
325
- #: admin/admin.php:437
326
  #, fuzzy
327
  msgid "Track visits of Editors?"
328
  msgstr "Suivre les visites des auteurs de leurs propres messages?"
329
 
330
- #: admin/admin.php:440
331
  msgid "Disabling this option will stop editor visits being tracked."
332
  msgstr ""
333
 
334
- #: admin/admin.php:444
335
  #, fuzzy
336
  msgid "Display page views on Posts and Pages in Admin"
337
  msgstr "Prikaži preglede stranice na Posts > All Posts u Admin"
338
 
339
- #: admin/admin.php:447
340
  msgid ""
341
  "Adds three columns called Total Views, Today's Views and Views to All Posts "
342
  "and All Pages"
343
  msgstr ""
344
 
345
- #: admin/admin.php:451
346
  #, fuzzy
347
  msgid "Show number of views to non-admins"
348
  msgstr "Afficher le nombre des visionnages sur les pages?"
349
 
350
- #: admin/admin.php:454
351
  msgid ""
352
  "If you disable this then non-admins won't see the above columns or view the "
353
  "independent pages with the top posts"
354
  msgstr ""
355
 
356
- #: admin/admin.php:494
357
  msgid "Number of popular posts to display: "
358
  msgstr "Broj popularnih postova za prikaz."
359
 
360
- #: admin/admin.php:497
361
  msgid ""
362
  "Maximum number of posts that will be displayed in the list. This option is "
363
  "used if you don't specify the number of posts in the widget or shortcodes"
364
  msgstr ""
365
 
366
- #: admin/admin.php:501
367
- msgid "Daily popular contains top posts over:"
368
- msgstr ""
369
-
370
- #: admin/admin.php:503
371
- msgid "day(s)"
372
- msgstr ""
373
-
374
- #: admin/admin.php:504
375
- msgid "hour(s)"
376
- msgstr ""
377
-
378
- #: admin/admin.php:505
379
- msgid ""
380
- "Think of Daily Popular has a custom date range applied as a global setting. "
381
- "Instead of displaying popular posts from the past day, this setting lets you "
382
- "display posts for as many days or as few hours as you want. This can be "
383
- "overridden in the widget."
384
- msgstr ""
385
-
386
- #: admin/admin.php:509
387
  msgid "Post types to include in results (including custom post types)"
388
  msgstr "Tipovi postova da uključe rezultate (uključujući i custom post tipove)"
389
 
390
- #: admin/admin.php:521
391
  msgid "List of post or page IDs to exclude from the results: "
392
  msgstr "Lista postova ili IDs stranice da budu isključeni iz rezultata"
393
 
394
- #: admin/admin.php:523 admin/admin.php:630
395
  msgid "Enter comma separated list of IDs. e.g. 188,320,500"
396
  msgstr "Unesite zarezom odvojenu listu IDa npr.188,320,500"
397
 
398
- #: admin/admin.php:527
399
  msgid "Exclude Categories: "
400
  msgstr "Isključene kategorije"
401
 
402
- #: admin/admin.php:542
403
  msgid ""
404
  "Comma separated list of category slugs. The field above has an autocomplete "
405
  "so simply start typing in the starting letters and it will prompt you with "
@@ -408,59 +419,59 @@ msgstr ""
408
  "Zarezima separatisana lista kategorije. Polje iznad je autokompletno tako da "
409
  "jednostavno samo počnite da kucate ključna slova i pokazaće vam se opcije"
410
 
411
- #: admin/admin.php:547
412
  msgid "Title of popular posts: "
413
  msgstr "Naslov popularnih postova:"
414
 
415
- #: admin/admin.php:553
416
  msgid "Title of daily popular posts: "
417
  msgstr "Naslov popularnih dnevnih postova:"
418
 
419
- #: admin/admin.php:559
420
  msgid "When there are no posts, what should be shown?"
421
  msgstr "Kada nema postova šta da prikažemo?"
422
 
423
- #: admin/admin.php:563
424
  msgid "Blank Output"
425
  msgstr "Prazan izlaz"
426
 
427
- #: admin/admin.php:567
428
  msgid "Display:"
429
  msgstr "Prikaz:"
430
 
431
- #: admin/admin.php:572
432
  msgid "Show post excerpt in list?"
433
  msgstr "Pokaži post izvoda na listi?"
434
 
435
- #: admin/admin.php:578
436
  msgid "Length of excerpt (in words): "
437
  msgstr "Dužina izvoda (u rečima):"
438
 
439
- #: admin/admin.php:584
440
  #, fuzzy
441
  msgid "Show post author in list?"
442
  msgstr "Afficher le fragment du message dans la liste?"
443
 
444
- #: admin/admin.php:590
445
  #, fuzzy
446
  msgid "Show post date in list?"
447
  msgstr "Afficher le fragment du message dans la liste?"
448
 
449
- #: admin/admin.php:596
450
  msgid "Limit post title length (in characters)"
451
  msgstr "Limit dužine postova naslova (u karakterima)"
452
 
453
- #: admin/admin.php:602
454
  #, fuzzy
455
  msgid "Show view count in list?"
456
  msgstr "Afficher le fragment du message dans la liste?"
457
 
458
- #: admin/admin.php:608
459
  #, fuzzy
460
  msgid "Always display latest post count in the daily lists?"
461
  msgstr "Uvek prikaži poslednje brojanje posta u dnevnoj listi"
462
 
463
- #: admin/admin.php:611
464
  #, fuzzy
465
  msgid ""
466
  "This option uses JavaScript and will increase your page load time. When you "
@@ -473,81 +484,81 @@ msgstr ""
473
  "widget neće koristiti opcije koje su nameštene tu, ali opcije će morati da "
474
  "se podese na ovom ekranu."
475
 
476
- #: admin/admin.php:615
477
  msgid "Open links in new window"
478
  msgstr "Otvori linkove u novim prozorima"
479
 
480
- #: admin/admin.php:621
481
  msgid "Add nofollow attribute to links in the list"
482
  msgstr "Dodaj nofollow atribut linkovima u listi"
483
 
484
- #: admin/admin.php:627
485
  msgid "Exclude display of related posts on these posts / pages"
486
  msgstr "Isključi pregled vezanih postova na ovim postovima-stranicama"
487
 
488
- #: admin/admin.php:634
489
  #, fuzzy
490
  msgid "Customise the list HTML"
491
  msgstr "Sredite output:"
492
 
493
- #: admin/admin.php:637
494
  msgid "HTML to display before the list of posts: "
495
  msgstr "HTML tza prikaz pre liste postova:"
496
 
497
- #: admin/admin.php:643
498
  msgid "HTML to display before each list item: "
499
  msgstr "HTML za prikaz svake stavke sa liste:"
500
 
501
- #: admin/admin.php:649
502
  msgid "HTML to display after each list item: "
503
  msgstr "HTML tza prikaz posle svake stavke sa liste:"
504
 
505
- #: admin/admin.php:655
506
  msgid "HTML to display after the list of posts: "
507
  msgstr "HTML za prikaz posle liste postova:"
508
 
509
- #: admin/admin.php:696
510
  msgid "Location of post thumbnail:"
511
  msgstr "Lokacija posta thumbnaila:"
512
 
513
- #: admin/admin.php:700
514
  msgid "Display thumbnails inline with posts, before title"
515
  msgstr "Prikaži thumbnails inline sa postovima pre naslova"
516
 
517
- #: admin/admin.php:705
518
  msgid "Display thumbnails inline with posts, after title"
519
  msgstr "Prikaži thumbnails inline sa postovima posle naslova"
520
 
521
- #: admin/admin.php:710
522
  msgid "Display only thumbnails, no text"
523
  msgstr "Prikaži samo thumbnails, bez teksta"
524
 
525
- #: admin/admin.php:715
526
  msgid "Do not display thumbnails, only text."
527
  msgstr "Ne prikazujte thumbnails, samo tekst"
528
 
529
- #: admin/admin.php:719
530
  msgid "Thumbnail size:"
531
  msgstr ""
532
 
533
- #: admin/admin.php:743
534
  msgid "Custom size"
535
  msgstr ""
536
 
537
- #: admin/admin.php:746
538
  msgid ""
539
  "You can choose from existing image sizes above or create a custom size. If "
540
  "you have chosen Custom size above, then enter the width, height and crop "
541
  "settings below. For best results, use a cropped image."
542
  msgstr ""
543
 
544
- #: admin/admin.php:747
545
  msgid ""
546
  "If you change the width and/or height below, existing images will not be "
547
  "automatically resized."
548
  msgstr ""
549
 
550
- #: admin/admin.php:748
551
  #, php-format
552
  msgid ""
553
  "I recommend using <a href='%s' target='_blank'>Force Regenerate Thumbnails</"
@@ -555,56 +566,56 @@ msgid ""
555
  "regenerate all image sizes."
556
  msgstr ""
557
 
558
- #: admin/admin.php:751
559
  msgid "Width of custom thumbnail:"
560
  msgstr ""
561
 
562
- #: admin/admin.php:756
563
  msgid "Height of custom thumbnail"
564
  msgstr ""
565
 
566
- #: admin/admin.php:761
567
  msgid "Crop mode:"
568
  msgstr ""
569
 
570
- #: admin/admin.php:765
571
  msgid ""
572
  "By default, thumbnails will be proportionately cropped. Check this box to "
573
  "hard crop the thumbnails."
574
  msgstr ""
575
 
576
- #: admin/admin.php:766
577
  #, php-format
578
  msgid "<a href='%s' target='_blank'>Difference between soft and hard crop</a>"
579
  msgstr ""
580
 
581
- #: admin/admin.php:768
582
  msgid ""
583
  "Since you're using the default styles set under the Custom Styles section, "
584
  "the width and height is fixed at 65px and crop mode is enabled."
585
  msgstr ""
586
 
587
- #: admin/admin.php:773
588
  msgid "Style attributes / Width and Height HTML attributes:"
589
  msgstr "Stil atributa /širina i visina HTML atributa:"
590
 
591
- #: admin/admin.php:777
592
  #, fuzzy
593
  msgid "Style attributes are used for width and height."
594
  msgstr ""
595
  "Stilovi atributa su korišćeni za čirinu i visinu. <code>style=\"max-width:"
596
 
597
- #: admin/admin.php:782
598
  #, fuzzy
599
  msgid "HTML width and height attributes are used for width and height."
600
  msgstr ""
601
  "HTML širina i visina atributa se koristi za širinu i visinu.<code>width=\""
602
 
603
- #: admin/admin.php:786
604
  msgid "Use timthumb to generate thumbnails? "
605
  msgstr "Upotreba timthumb za generisanja thumbnails?"
606
 
607
- #: admin/admin.php:789
608
  #, fuzzy
609
  msgid ""
610
  "If checked, <a href=\"http://www.binarymoon.co.uk/projects/timthumb/\" "
@@ -613,22 +624,22 @@ msgstr ""
613
  "Ak je čekirano, <a href=\"http://www.binarymoon.co.uk/projects/timthumb/"
614
  "\">timthumb</a> će se koristiti za generisanje thumbnails-a"
615
 
616
- #: admin/admin.php:792
617
  msgid "Quality of thumbnails generated by timthumb:"
618
  msgstr ""
619
 
620
- #: admin/admin.php:795
621
  msgid ""
622
  "Enter values between 0 and 100 only. 100 is highest quality and the highest "
623
  "file size. Suggested maximum value is 95. Default is 75."
624
  msgstr ""
625
 
626
- #: admin/admin.php:798
627
  #, fuzzy
628
  msgid "Post thumbnail meta field name: "
629
  msgstr "Options thumbnail des messages:"
630
 
631
- #: admin/admin.php:801
632
  msgid ""
633
  "The value of this field should contain the image source and is set in the "
634
  "<em>Add New Post</em> screen"
@@ -636,7 +647,7 @@ msgstr ""
636
  "Vrednost ovog polja bi trebala da sadrži source slike i njne postavke u "
637
  "<em>Add New Post</em> ekranu"
638
 
639
- #: admin/admin.php:804
640
  #, fuzzy
641
  msgid ""
642
  "If the postmeta is not set, then should the plugin extract the first image "
@@ -647,7 +658,7 @@ msgstr ""
647
  "première image de la résolution correspondante du fichier est de taille "
648
  "supérieure"
649
 
650
- #: admin/admin.php:807
651
  #, fuzzy
652
  msgid ""
653
  "This could slow down the loading of your page if the first image in the "
@@ -658,11 +669,11 @@ msgstr ""
658
  "première image de la résolution correspondante du fichier est de taille "
659
  "supérieure"
660
 
661
- #: admin/admin.php:810
662
  msgid "Use default thumbnail? "
663
  msgstr "Koristite default thumbnail?"
664
 
665
- #: admin/admin.php:813
666
  msgid ""
667
  "If checked, when no thumbnail is found, show a default one from the URL "
668
  "below. If not checked and no thumbnail is found, no image will be shown."
@@ -670,11 +681,11 @@ msgstr ""
670
  "Ako je čekirano, kada nijedna thumnail nije pronadjena prikaži default iz "
671
  "URLa ispod. Ako nije čekirano i nema thumbnaila, slika neće biti prikazana."
672
 
673
- #: admin/admin.php:816
674
  msgid "Default thumbnail: "
675
  msgstr "Default thumbnail:"
676
 
677
- #: admin/admin.php:820
678
  msgid ""
679
  "The plugin will first check if the post contains a thumbnail. If it doesn't "
680
  "then it will check the meta field. If this is not available, then it will "
@@ -684,39 +695,39 @@ msgstr ""
684
  "proveriti meta polje. Ako to nije dopstupno, onda će vam pokazati default "
685
  "sliku kao što je odredjeno iznad"
686
 
687
- #: admin/admin.php:844
688
  #, fuzzy
689
  msgid "Custom CSS"
690
  msgstr "Custom stilovi"
691
 
692
- #: admin/admin.php:859
693
  msgid "Use default style included in the plugin?"
694
  msgstr ""
695
 
696
- #: admin/admin.php:862
697
  msgid ""
698
  "Top 10 includes a default style that makes your popular posts list to look "
699
  "beautiful. Check the box above if you want to use this."
700
  msgstr ""
701
 
702
- #: admin/admin.php:863
703
  msgid ""
704
  "Enabling this option will turn on the thumbnails and set their width and "
705
  "height to 65px. It will also turn off the display of the author, excerpt and "
706
  "date if already enabled. Disabling this option will not revert any settings."
707
  msgstr ""
708
 
709
- #: admin/admin.php:864
710
  #, php-format
711
  msgid ""
712
  "You can view the default style at <a href=\"%1$s\" target=\"_blank\">%1$s</a>"
713
  msgstr ""
714
 
715
- #: admin/admin.php:867
716
  msgid "Custom CSS to add to header:"
717
  msgstr "Custom CSS je dodat header-u"
718
 
719
- #: admin/admin.php:872
720
  msgid ""
721
  "Do not include <code>style</code> tags. Check out the <a href=\"http://"
722
  "wordpress.org/extend/plugins/top-10/faq/\" target=\"_blank\">FAQ</a> for "
@@ -726,16 +737,16 @@ msgstr ""
726
  "wordpress.org/extend/plugins/top-10/faq/\" target=\"_blank\">FAQ</a> za "
727
  "dostupne CSS klase za stilizovanje."
728
 
729
- #: admin/admin.php:892
730
  #, fuzzy
731
  msgid "Default Options"
732
  msgstr "Paramètres de sortie"
733
 
734
- #: admin/admin.php:892
735
  msgid "Do you want to set options to Default?"
736
  msgstr "Da li želite da postavite opcije na Default?"
737
 
738
- #: admin/admin.php:916
739
  #, fuzzy
740
  msgid ""
741
  "Over time the Daily Top 10 database grows in size, which reduces the "
@@ -747,7 +758,7 @@ msgstr ""
747
  "plugina. Čišćenje baze podataka u regularnim intervalima može poboljšati "
748
  "performanse naročito na blogovima sa velikim saobraćajem."
749
 
750
- #: admin/admin.php:917
751
  #, fuzzy
752
  msgid ""
753
  "Note: When scheduled maintenance is enabled, WordPress will run the cron job "
@@ -757,61 +768,61 @@ msgstr ""
757
  "kroniranje svaki put kada se poslu promeni raspored (npr. ako promenite "
758
  "postavke ispod) Ovo prouzrokuje dnevne postove tabele za resetovanje."
759
 
760
- #: admin/admin.php:920
761
  msgid "Enable scheduled maintenance of daily tables:"
762
  msgstr "Omogući raspored održavanja u dnevnim tabelama"
763
 
764
- #: admin/admin.php:924
765
  msgid "Time to run maintenance"
766
  msgstr "Pokrenuti održavanje"
767
 
768
- #: admin/admin.php:925
769
  msgid "hrs"
770
  msgstr ""
771
 
772
- #: admin/admin.php:925
773
  msgid "min"
774
  msgstr ""
775
 
776
- #: admin/admin.php:927
777
  msgid "How often should the maintenance be run:"
778
  msgstr "Održavanje ne treba često da se pokreće"
779
 
780
- #: admin/admin.php:931
781
  msgid "Daily"
782
  msgstr "Dnevno"
783
 
784
- #: admin/admin.php:935
785
  msgid "Weekly"
786
  msgstr "Nedeljno"
787
 
788
- #: admin/admin.php:939
789
  msgid "Fortnightly"
790
  msgstr "Na dve nedelje"
791
 
792
- #: admin/admin.php:943
793
  msgid "Monthly"
794
  msgstr "Mesečno"
795
 
796
- #: admin/admin.php:952
797
  msgid "The cron job has been scheduled. Maintenance will run "
798
  msgstr "Kroniranje je zakazano. Održavanje će se pokrenuti"
799
 
800
- #: admin/admin.php:957
801
  msgid "The cron job is missing. Please resave this page to add the job"
802
  msgstr ""
803
  "Nedostaje kroniranje. Molim vas ponovo sašuvajte ovu stranicu da biste "
804
  "dodali posao"
805
 
806
- #: admin/admin.php:962
807
  msgid "Maintenance is turned off"
808
  msgstr "Održavanje je ugašeno"
809
 
810
- #: admin/admin.php:976
811
  msgid "Reset count"
812
  msgstr "Resetuj brojanje"
813
 
814
- #: admin/admin.php:979
815
  msgid ""
816
  "This cannot be reversed. Make sure that your database has been backed up "
817
  "before proceeding"
@@ -819,158 +830,168 @@ msgstr ""
819
  "Ovo ne možete da proništite. Proverite da li vam je baza podataka sačuvana u "
820
  "back up-u pre nego što nastavite"
821
 
822
- #: admin/admin.php:982
823
  #, fuzzy
824
  msgid "Reset Popular Posts"
825
  msgstr "Postes populaires"
826
 
827
- #: admin/admin.php:982
828
  msgid "Are you sure you want to reset the popular posts?"
829
  msgstr "Da li ste sigurni da želite da resetujete popularne postove?"
830
 
831
- #: admin/admin.php:983
832
  #, fuzzy
833
  msgid "Reset Daily Popular Posts"
834
  msgstr "Postes populaires journaliers"
835
 
836
- #: admin/admin.php:983
837
  msgid "Are you sure you want to reset the daily popular posts?"
838
  msgstr "Da li ste sigurni da želite da resetujete dnevne popularne postove?"
839
 
840
- #: admin/admin.php:984
841
  msgid "Clear duplicates"
842
  msgstr "Obrišite duplikate"
843
 
844
- #: admin/admin.php:984
845
  msgid "This will delete the duplicate entries in the tables. Proceed?"
846
  msgstr "Ovo će obrisati duple unose u tabelama. Nastaviti?"
847
 
848
- #: admin/admin.php:997
849
  msgid "WordPress Multisite: Migrate Top 10 v1.x counts to 2.x"
850
  msgstr ""
851
 
852
- #: admin/admin.php:1000
853
  msgid ""
854
  "If you've been using Top 10 v1.x on multisite, you would have needed to "
855
  "activate the plugin independently for each site. This would have resulted in "
856
- "two tables being created for each site in the network. Top 10 v2.x onwards "
857
- "uses only a single table to record the count, keeping your database clean. "
858
- "You can use this tool to import the recorded counts from v1.x tables to the "
859
- "new v2.x table format."
860
  msgstr ""
861
 
862
- #: admin/admin.php:1003
 
 
 
 
 
 
 
863
  msgid ""
864
  "If you do not see any tables below, then it means that either all data has "
865
  "already been imported or no relevant information has been found."
866
  msgstr ""
867
 
868
- #: admin/admin.php:1037
 
 
 
 
 
 
869
  msgid "Blog ID"
870
  msgstr ""
871
 
872
- #: admin/admin.php:1040
873
  msgid "Status"
874
  msgstr ""
875
 
876
- #: admin/admin.php:1043
877
  msgid "Select to import"
878
  msgstr ""
879
 
880
- #: admin/admin.php:1053
881
  msgid "Blog #"
882
  msgstr ""
883
 
884
- #: admin/admin.php:1063
885
  msgid "Not imported"
886
  msgstr ""
887
 
888
- #: admin/admin.php:1067
889
  msgid "Imported"
890
  msgstr ""
891
 
892
- #: admin/admin.php:1088
893
  msgid "Begin import"
894
  msgstr ""
895
 
896
- #: admin/admin.php:1089
897
  msgid "Delete selected tables"
898
  msgstr ""
899
 
900
- #: admin/admin.php:1090
901
  msgid "Delete all imported tables"
902
  msgstr ""
903
 
904
- #: admin/admin.php:1147 admin/admin.php:1243
905
  msgid "Daily Popular Posts"
906
  msgstr "Dnevni popularni postovi"
907
 
908
- #: admin/admin.php:1177
909
  msgid "Support the development"
910
  msgstr "Podrška razvoju"
911
 
912
- #: admin/admin.php:1184
913
  msgid "Donation for Top 10"
914
  msgstr ""
915
 
916
- #: admin/admin.php:1186
917
  msgid "Enter amount in USD: "
918
  msgstr "Unesite veličinu u USD:"
919
 
920
- #: admin/admin.php:1190
921
  #, fuzzy
922
  msgid "Send your donation to the author of Top 10"
923
  msgstr "Pošalji vašu donaciju autoru"
924
 
925
- #: admin/admin.php:1197
926
  #, fuzzy
927
  msgid "Follow me"
928
  msgstr "Pratite nas"
929
 
930
- #: admin/admin.php:1207
931
  #, fuzzy
932
  msgid "Quick links"
933
  msgstr "Liens rapides"
934
 
935
- #: admin/admin.php:1211
936
  #, fuzzy
937
  msgid "Top 10 plugin page"
938
  msgstr "Page de plugin"
939
 
940
- #: admin/admin.php:1212
941
  msgid "Top 10 Github page"
942
  msgstr ""
943
 
944
- #: admin/admin.php:1213
945
  msgid "Other plugins"
946
  msgstr "Brzi linkovi"
947
 
948
- #: admin/admin.php:1214
949
  msgid "Ajay's blog"
950
  msgstr "Ajayov blog"
951
 
952
- #: admin/admin.php:1215
953
  msgid "FAQ"
954
  msgstr ""
955
 
956
- #: admin/admin.php:1216 admin/admin.php:1374
957
  msgid "Support"
958
  msgstr "Podrška"
959
 
960
- #: admin/admin.php:1217
961
  msgid "Reviews"
962
  msgstr ""
963
 
964
- #: admin/admin.php:1240
965
  #, fuzzy
966
  msgid "Overall Popular Posts"
967
  msgstr "Voir tous les postes populaires"
968
 
969
- #: admin/admin.php:1351
970
  msgid "Settings"
971
  msgstr "Postavke"
972
 
973
- #: admin/admin.php:1375
974
  msgid "Donate"
975
  msgstr "Donirajte"
976
 
@@ -1062,41 +1083,41 @@ msgstr "Options thumbnail des messages:"
1062
  msgid "Thumbnail width"
1063
  msgstr "Options thumbnail des messages:"
1064
 
1065
- #: top-10.php:866
1066
  msgid " by "
1067
  msgstr ""
1068
 
1069
- #: top-10.php:917
1070
  #, php-format
1071
  msgid "Popular posts by <a href=\"%s\" rel=\"nofollow\" %s>Top 10 plugin</a>"
1072
  msgstr ""
1073
 
1074
- #: top-10.php:1016
1075
  msgid "<h3>Popular Posts</h3>"
1076
  msgstr "<h3>Popularni Postovi</h3>"
1077
 
1078
- #: top-10.php:1017
1079
  msgid "<h3>Daily Popular</h3>"
1080
  msgstr "<h3>Dnevni popularni</h3>"
1081
 
1082
- #: top-10.php:1018
1083
  #, fuzzy
1084
  msgid "No top posts yet"
1085
  msgstr "Annuler le top 10 des enregistrements les plus populaires"
1086
 
1087
- #: top-10.php:1668
1088
  msgid "Once Weekly"
1089
  msgstr "Jednom nedeljno"
1090
 
1091
- #: top-10.php:1672
1092
  msgid "Once Fortnightly"
1093
  msgstr "Jednom u dve nedelje"
1094
 
1095
- #: top-10.php:1676
1096
  msgid "Once Monthly"
1097
  msgstr "Jednom mesečno"
1098
 
1099
- #: top-10.php:1680
1100
  msgid "Once quarterly"
1101
  msgstr ""
1102
 
2
  msgstr ""
3
  "Project-Id-Version: Top 10\n"
4
  "Report-Msgid-Bugs-To: \n"
5
+ "POT-Creation-Date: 2015-01-01 21:53-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"
61
  msgid "Next"
62
  msgstr "Sledeći"
63
 
64
+ #: admin/admin-dashboard.php:200 admin/admin.php:1157
65
  msgid "Popular Posts"
66
  msgstr "Popularni postovi"
67
 
69
  msgid "Daily Popular"
70
  msgstr "Dnevno popularno"
71
 
72
+ #: admin/admin-metabox.php:38 admin/admin.php:1246
73
  msgid "Top 10"
74
  msgstr "Top 10"
75
 
100
  msgid "The URL above is saved in the meta field: "
101
  msgstr ""
102
 
103
+ #: admin/admin.php:161
104
  msgid "Options saved successfully."
105
  msgstr "Opcije uspešno sašuvane"
106
 
107
+ #: admin/admin.php:171
108
  msgid "Options set to Default."
109
  msgstr "Opcije podešene po Default-u."
110
 
111
+ #: admin/admin.php:177
112
  msgid "Top 10 popular posts reset"
113
  msgstr "Resetuj Top 10 popularnih postova"
114
 
115
+ #: admin/admin.php:183
116
  msgid "Top 10 daily popular posts reset"
117
  msgstr "Resetuj Top 10 dnevnih popularnih postova"
118
 
119
+ #: admin/admin.php:190
120
  msgid "Duplicate rows cleaned from tables"
121
  msgstr "Umnoži redove očišćene sa tabela"
122
 
123
+ #: admin/admin.php:202
124
  msgid "Scheduled maintenance enabled / modified"
125
  msgstr "Raspored održavanja omogućen modifikovan"
126
 
127
+ #: admin/admin.php:206
128
  msgid "Scheduled maintenance disabled"
129
  msgstr "Raspoed održavanja onemogućen"
130
 
131
+ #: admin/admin.php:245
132
  msgid "Counts from selected sites have been imported."
133
  msgstr ""
134
 
135
+ #: admin/admin.php:270
136
  msgid ""
137
  "Selected tables have been deleted. Note that only imported tables have been "
138
  "deleted."
139
  msgstr ""
140
 
141
+ #: admin/admin.php:278 admin/admin.php:1246 admin/admin.php:1249
142
  #, fuzzy
143
  msgid "Top 10 Settings"
144
  msgstr "Paramètres"
145
 
146
+ #: admin/admin.php:290 admin/admin.php:312
147
  msgid "General options"
148
  msgstr "Opšta pitanja"
149
 
150
+ #: admin/admin.php:291 admin/admin.php:389
151
  msgid "Counter and tracker options"
152
  msgstr ""
153
 
154
+ #: admin/admin.php:292 admin/admin.php:494
155
  msgid "Popular post list options"
156
  msgstr ""
157
 
158
+ #: admin/admin.php:293 admin/admin.php:689
159
  #: includes/class-top-10-widget.php:103
160
  #, fuzzy
161
  msgid "Thumbnail options"
162
  msgstr "Options thumbnail des messages:"
163
 
164
+ #: admin/admin.php:294
165
  msgid "Custom styles"
166
  msgstr ""
167
 
168
+ #: admin/admin.php:295 admin/admin.php:920
169
  msgid "Maintenance"
170
  msgstr "Održavanje"
171
 
172
+ #: admin/admin.php:311 admin/admin.php:388 admin/admin.php:493
173
+ #: admin/admin.php:688 admin/admin.php:851 admin/admin.php:919
174
+ #: admin/admin.php:983 admin/admin.php:1004 admin/admin.php:1188
175
+ #: admin/admin.php:1208 admin/admin.php:1218
176
  msgid "Click to toggle"
177
  msgstr ""
178
 
179
+ #: admin/admin.php:328
180
  msgid "Enable Overall stats"
181
  msgstr "Omogući statistiku svega"
182
 
183
+ #: admin/admin.php:334
184
  msgid "Enable Daily stats"
185
  msgstr "Omogući dnevne statistike"
186
 
187
+ #: admin/admin.php:340
188
  msgid "Cache fix:"
189
  msgstr ""
190
 
191
+ #: admin/admin.php:343
192
  msgid ""
193
  "This will try to prevent W3 Total Cache and other caching plugins from "
194
  "caching the tracker script of the plugin. Try toggling this option in case "
195
  "you find that your posts are not tracked."
196
  msgstr ""
197
 
198
+ #: admin/admin.php:347
199
+ msgid "Start daily counts from midnight:"
200
+ msgstr ""
201
+
202
+ #: admin/admin.php:350
203
+ msgid ""
204
+ "Daily counter will display number of visits from midnight. This option is "
205
+ "checked by default and mimics the way most normal counters work. Turning "
206
+ "this off will allow you to use the hourly setting in the next option."
207
+ msgstr ""
208
+
209
+ #: admin/admin.php:354
210
+ msgid "Daily popular contains top posts over:"
211
+ msgstr ""
212
+
213
+ #: admin/admin.php:356
214
+ msgid "day(s)"
215
+ msgstr ""
216
+
217
+ #: admin/admin.php:357
218
+ msgid "hour(s)"
219
+ msgstr ""
220
+
221
+ #: admin/admin.php:358
222
+ msgid ""
223
+ "Think of Daily Popular has a custom date range applied as a global setting. "
224
+ "Instead of displaying popular posts from the past day, this setting lets you "
225
+ "display posts for as many days or as few hours as you want. This can be "
226
+ "overridden in the widget."
227
+ msgstr ""
228
+
229
+ #: admin/admin.php:362
230
  msgid "Link to Top 10 plugin page"
231
  msgstr "Povežite se na Top 10 plugin stranicu"
232
 
233
+ #: admin/admin.php:365
234
  #, fuzzy
235
  msgid ""
236
  "A link to the plugin is added as an extra list item to the list of popular "
240
  "le répertoire des enregistrements populaires. Cela n'est pas obligatoire, "
241
  "mais nous vous y remercions!"
242
 
243
+ #: admin/admin.php:370 admin/admin.php:475 admin/admin.php:670
244
+ #: admin/admin.php:833 admin/admin.php:899 admin/admin.php:976
245
  #, fuzzy
246
  msgid "Save Options"
247
  msgstr "Options:"
248
 
249
+ #: admin/admin.php:405
250
  #, fuzzy
251
  msgid "Display number of views on:"
252
  msgstr "Afficher le nombre des visionnages du message?"
253
 
254
+ #: admin/admin.php:407
255
  msgid "Posts"
256
  msgstr "Postovi"
257
 
258
+ #: admin/admin.php:408
259
  #, fuzzy
260
  msgid "Pages"
261
  msgstr "Page"
262
 
263
+ #: admin/admin.php:409
264
  msgid "Home page"
265
  msgstr "Početna stranica"
266
 
267
+ #: admin/admin.php:410
268
  msgid "Feeds"
269
  msgstr "Feeds"
270
 
271
+ #: admin/admin.php:411
272
  msgid "Category archives"
273
  msgstr "Kategorija arhiva"
274
 
275
+ #: admin/admin.php:412
276
  msgid "Tag archives"
277
  msgstr "Tag arhiva"
278
 
279
+ #: admin/admin.php:413
280
  msgid "Other archives"
281
  msgstr "Druge arhive"
282
 
283
+ #: admin/admin.php:414
284
  #, fuzzy
285
  msgid ""
286
  "If you choose to disable this, please add <code>&lt;?php if "
291
  "if(function_exists('echo_ald_tptn')) echo_ald_tptn();?&gt;</code> vašem "
292
  "template fajlu gde želite da bude prikazano. "
293
 
294
+ #: admin/admin.php:418
295
  #, fuzzy
296
  msgid "Format to display the post views:"
297
  msgstr "Format za prikaz brojanja u:"
298
 
299
+ #: admin/admin.php:421
300
  msgid ""
301
  "Use <code>%totalcount%</code> to display the total count, <code>%dailycount"
302
  "%</code> to display the daily count and <code>%overallcount%</code> to "
304
  "options displays <code>[Visited 123 times, 23 visits today]</code>"
305
  msgstr ""
306
 
307
+ #: admin/admin.php:425
308
  msgid "What do display when there are no visits?"
309
  msgstr ""
310
 
311
+ #: admin/admin.php:428
312
  msgid ""
313
  "This text applies only when there are 0 hits for the post and it isn't a "
314
  "single page. e.g. if you display post views on the homepage or archives then "
316
  "option."
317
  msgstr ""
318
 
319
+ #: admin/admin.php:432
320
  msgid "Always display latest post count"
321
  msgstr "Uvek prikaži posldenje brojanje posta"
322
 
323
+ #: admin/admin.php:435
324
  #, fuzzy
325
  msgid ""
326
  "This option uses JavaScript and will increase your page load time. Turn this "
333
  "widget neće koristiti opcije koje su nameštene tu, ali opcije će morati da "
334
  "se podese na ovom ekranu."
335
 
336
+ #: admin/admin.php:439
337
  msgid "Track visits of authors on their own posts?"
338
  msgstr ""
339
  "Opcije koriste JavaScript i povećaće vreme učitavanja vaše stranicePratite "
340
  "posete autora na njihovim postovima?"
341
 
342
+ #: admin/admin.php:442
343
  msgid ""
344
  "Disabling this option will stop authors visits tracked on their own posts"
345
  msgstr ""
346
 
347
+ #: admin/admin.php:446
348
  #, fuzzy
349
  msgid "Track visits of admins?"
350
  msgstr "Suivre les visites des auteurs de leurs propres messages?"
351
 
352
+ #: admin/admin.php:449
353
  msgid "Disabling this option will stop admin visits being tracked."
354
  msgstr ""
355
 
356
+ #: admin/admin.php:453
357
  #, fuzzy
358
  msgid "Track visits of Editors?"
359
  msgstr "Suivre les visites des auteurs de leurs propres messages?"
360
 
361
+ #: admin/admin.php:456
362
  msgid "Disabling this option will stop editor visits being tracked."
363
  msgstr ""
364
 
365
+ #: admin/admin.php:460
366
  #, fuzzy
367
  msgid "Display page views on Posts and Pages in Admin"
368
  msgstr "Prikaži preglede stranice na Posts > All Posts u Admin"
369
 
370
+ #: admin/admin.php:463
371
  msgid ""
372
  "Adds three columns called Total Views, Today's Views and Views to All Posts "
373
  "and All Pages"
374
  msgstr ""
375
 
376
+ #: admin/admin.php:467
377
  #, fuzzy
378
  msgid "Show number of views to non-admins"
379
  msgstr "Afficher le nombre des visionnages sur les pages?"
380
 
381
+ #: admin/admin.php:470
382
  msgid ""
383
  "If you disable this then non-admins won't see the above columns or view the "
384
  "independent pages with the top posts"
385
  msgstr ""
386
 
387
+ #: admin/admin.php:510
388
  msgid "Number of popular posts to display: "
389
  msgstr "Broj popularnih postova za prikaz."
390
 
391
+ #: admin/admin.php:513
392
  msgid ""
393
  "Maximum number of posts that will be displayed in the list. This option is "
394
  "used if you don't specify the number of posts in the widget or shortcodes"
395
  msgstr ""
396
 
397
+ #: admin/admin.php:517
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
398
  msgid "Post types to include in results (including custom post types)"
399
  msgstr "Tipovi postova da uključe rezultate (uključujući i custom post tipove)"
400
 
401
+ #: admin/admin.php:529
402
  msgid "List of post or page IDs to exclude from the results: "
403
  msgstr "Lista postova ili IDs stranice da budu isključeni iz rezultata"
404
 
405
+ #: admin/admin.php:531 admin/admin.php:638
406
  msgid "Enter comma separated list of IDs. e.g. 188,320,500"
407
  msgstr "Unesite zarezom odvojenu listu IDa npr.188,320,500"
408
 
409
+ #: admin/admin.php:535
410
  msgid "Exclude Categories: "
411
  msgstr "Isključene kategorije"
412
 
413
+ #: admin/admin.php:550
414
  msgid ""
415
  "Comma separated list of category slugs. The field above has an autocomplete "
416
  "so simply start typing in the starting letters and it will prompt you with "
419
  "Zarezima separatisana lista kategorije. Polje iznad je autokompletno tako da "
420
  "jednostavno samo počnite da kucate ključna slova i pokazaće vam se opcije"
421
 
422
+ #: admin/admin.php:555
423
  msgid "Title of popular posts: "
424
  msgstr "Naslov popularnih postova:"
425
 
426
+ #: admin/admin.php:561
427
  msgid "Title of daily popular posts: "
428
  msgstr "Naslov popularnih dnevnih postova:"
429
 
430
+ #: admin/admin.php:567
431
  msgid "When there are no posts, what should be shown?"
432
  msgstr "Kada nema postova šta da prikažemo?"
433
 
434
+ #: admin/admin.php:571
435
  msgid "Blank Output"
436
  msgstr "Prazan izlaz"
437
 
438
+ #: admin/admin.php:575
439
  msgid "Display:"
440
  msgstr "Prikaz:"
441
 
442
+ #: admin/admin.php:580
443
  msgid "Show post excerpt in list?"
444
  msgstr "Pokaži post izvoda na listi?"
445
 
446
+ #: admin/admin.php:586
447
  msgid "Length of excerpt (in words): "
448
  msgstr "Dužina izvoda (u rečima):"
449
 
450
+ #: admin/admin.php:592
451
  #, fuzzy
452
  msgid "Show post author in list?"
453
  msgstr "Afficher le fragment du message dans la liste?"
454
 
455
+ #: admin/admin.php:598
456
  #, fuzzy
457
  msgid "Show post date in list?"
458
  msgstr "Afficher le fragment du message dans la liste?"
459
 
460
+ #: admin/admin.php:604
461
  msgid "Limit post title length (in characters)"
462
  msgstr "Limit dužine postova naslova (u karakterima)"
463
 
464
+ #: admin/admin.php:610
465
  #, fuzzy
466
  msgid "Show view count in list?"
467
  msgstr "Afficher le fragment du message dans la liste?"
468
 
469
+ #: admin/admin.php:616
470
  #, fuzzy
471
  msgid "Always display latest post count in the daily lists?"
472
  msgstr "Uvek prikaži poslednje brojanje posta u dnevnoj listi"
473
 
474
+ #: admin/admin.php:619
475
  #, fuzzy
476
  msgid ""
477
  "This option uses JavaScript and will increase your page load time. When you "
484
  "widget neće koristiti opcije koje su nameštene tu, ali opcije će morati da "
485
  "se podese na ovom ekranu."
486
 
487
+ #: admin/admin.php:623
488
  msgid "Open links in new window"
489
  msgstr "Otvori linkove u novim prozorima"
490
 
491
+ #: admin/admin.php:629
492
  msgid "Add nofollow attribute to links in the list"
493
  msgstr "Dodaj nofollow atribut linkovima u listi"
494
 
495
+ #: admin/admin.php:635
496
  msgid "Exclude display of related posts on these posts / pages"
497
  msgstr "Isključi pregled vezanih postova na ovim postovima-stranicama"
498
 
499
+ #: admin/admin.php:642
500
  #, fuzzy
501
  msgid "Customise the list HTML"
502
  msgstr "Sredite output:"
503
 
504
+ #: admin/admin.php:645
505
  msgid "HTML to display before the list of posts: "
506
  msgstr "HTML tza prikaz pre liste postova:"
507
 
508
+ #: admin/admin.php:651
509
  msgid "HTML to display before each list item: "
510
  msgstr "HTML za prikaz svake stavke sa liste:"
511
 
512
+ #: admin/admin.php:657
513
  msgid "HTML to display after each list item: "
514
  msgstr "HTML tza prikaz posle svake stavke sa liste:"
515
 
516
+ #: admin/admin.php:663
517
  msgid "HTML to display after the list of posts: "
518
  msgstr "HTML za prikaz posle liste postova:"
519
 
520
+ #: admin/admin.php:704
521
  msgid "Location of post thumbnail:"
522
  msgstr "Lokacija posta thumbnaila:"
523
 
524
+ #: admin/admin.php:708
525
  msgid "Display thumbnails inline with posts, before title"
526
  msgstr "Prikaži thumbnails inline sa postovima pre naslova"
527
 
528
+ #: admin/admin.php:713
529
  msgid "Display thumbnails inline with posts, after title"
530
  msgstr "Prikaži thumbnails inline sa postovima posle naslova"
531
 
532
+ #: admin/admin.php:718
533
  msgid "Display only thumbnails, no text"
534
  msgstr "Prikaži samo thumbnails, bez teksta"
535
 
536
+ #: admin/admin.php:723
537
  msgid "Do not display thumbnails, only text."
538
  msgstr "Ne prikazujte thumbnails, samo tekst"
539
 
540
+ #: admin/admin.php:727
541
  msgid "Thumbnail size:"
542
  msgstr ""
543
 
544
+ #: admin/admin.php:751
545
  msgid "Custom size"
546
  msgstr ""
547
 
548
+ #: admin/admin.php:754
549
  msgid ""
550
  "You can choose from existing image sizes above or create a custom size. If "
551
  "you have chosen Custom size above, then enter the width, height and crop "
552
  "settings below. For best results, use a cropped image."
553
  msgstr ""
554
 
555
+ #: admin/admin.php:755
556
  msgid ""
557
  "If you change the width and/or height below, existing images will not be "
558
  "automatically resized."
559
  msgstr ""
560
 
561
+ #: admin/admin.php:756
562
  #, php-format
563
  msgid ""
564
  "I recommend using <a href='%s' target='_blank'>Force Regenerate Thumbnails</"
566
  "regenerate all image sizes."
567
  msgstr ""
568
 
569
+ #: admin/admin.php:759
570
  msgid "Width of custom thumbnail:"
571
  msgstr ""
572
 
573
+ #: admin/admin.php:764
574
  msgid "Height of custom thumbnail"
575
  msgstr ""
576
 
577
+ #: admin/admin.php:769
578
  msgid "Crop mode:"
579
  msgstr ""
580
 
581
+ #: admin/admin.php:773
582
  msgid ""
583
  "By default, thumbnails will be proportionately cropped. Check this box to "
584
  "hard crop the thumbnails."
585
  msgstr ""
586
 
587
+ #: admin/admin.php:774
588
  #, php-format
589
  msgid "<a href='%s' target='_blank'>Difference between soft and hard crop</a>"
590
  msgstr ""
591
 
592
+ #: admin/admin.php:776
593
  msgid ""
594
  "Since you're using the default styles set under the Custom Styles section, "
595
  "the width and height is fixed at 65px and crop mode is enabled."
596
  msgstr ""
597
 
598
+ #: admin/admin.php:781
599
  msgid "Style attributes / Width and Height HTML attributes:"
600
  msgstr "Stil atributa /širina i visina HTML atributa:"
601
 
602
+ #: admin/admin.php:785
603
  #, fuzzy
604
  msgid "Style attributes are used for width and height."
605
  msgstr ""
606
  "Stilovi atributa su korišćeni za čirinu i visinu. <code>style=\"max-width:"
607
 
608
+ #: admin/admin.php:790
609
  #, fuzzy
610
  msgid "HTML width and height attributes are used for width and height."
611
  msgstr ""
612
  "HTML širina i visina atributa se koristi za širinu i visinu.<code>width=\""
613
 
614
+ #: admin/admin.php:794
615
  msgid "Use timthumb to generate thumbnails? "
616
  msgstr "Upotreba timthumb za generisanja thumbnails?"
617
 
618
+ #: admin/admin.php:797
619
  #, fuzzy
620
  msgid ""
621
  "If checked, <a href=\"http://www.binarymoon.co.uk/projects/timthumb/\" "
624
  "Ak je čekirano, <a href=\"http://www.binarymoon.co.uk/projects/timthumb/"
625
  "\">timthumb</a> će se koristiti za generisanje thumbnails-a"
626
 
627
+ #: admin/admin.php:800
628
  msgid "Quality of thumbnails generated by timthumb:"
629
  msgstr ""
630
 
631
+ #: admin/admin.php:803
632
  msgid ""
633
  "Enter values between 0 and 100 only. 100 is highest quality and the highest "
634
  "file size. Suggested maximum value is 95. Default is 75."
635
  msgstr ""
636
 
637
+ #: admin/admin.php:806
638
  #, fuzzy
639
  msgid "Post thumbnail meta field name: "
640
  msgstr "Options thumbnail des messages:"
641
 
642
+ #: admin/admin.php:809
643
  msgid ""
644
  "The value of this field should contain the image source and is set in the "
645
  "<em>Add New Post</em> screen"
647
  "Vrednost ovog polja bi trebala da sadrži source slike i njne postavke u "
648
  "<em>Add New Post</em> ekranu"
649
 
650
+ #: admin/admin.php:812
651
  #, fuzzy
652
  msgid ""
653
  "If the postmeta is not set, then should the plugin extract the first image "
658
  "première image de la résolution correspondante du fichier est de taille "
659
  "supérieure"
660
 
661
+ #: admin/admin.php:815
662
  #, fuzzy
663
  msgid ""
664
  "This could slow down the loading of your page if the first image in the "
669
  "première image de la résolution correspondante du fichier est de taille "
670
  "supérieure"
671
 
672
+ #: admin/admin.php:818
673
  msgid "Use default thumbnail? "
674
  msgstr "Koristite default thumbnail?"
675
 
676
+ #: admin/admin.php:821
677
  msgid ""
678
  "If checked, when no thumbnail is found, show a default one from the URL "
679
  "below. If not checked and no thumbnail is found, no image will be shown."
681
  "Ako je čekirano, kada nijedna thumnail nije pronadjena prikaži default iz "
682
  "URLa ispod. Ako nije čekirano i nema thumbnaila, slika neće biti prikazana."
683
 
684
+ #: admin/admin.php:824
685
  msgid "Default thumbnail: "
686
  msgstr "Default thumbnail:"
687
 
688
+ #: admin/admin.php:828
689
  msgid ""
690
  "The plugin will first check if the post contains a thumbnail. If it doesn't "
691
  "then it will check the meta field. If this is not available, then it will "
695
  "proveriti meta polje. Ako to nije dopstupno, onda će vam pokazati default "
696
  "sliku kao što je odredjeno iznad"
697
 
698
+ #: admin/admin.php:852
699
  #, fuzzy
700
  msgid "Custom CSS"
701
  msgstr "Custom stilovi"
702
 
703
+ #: admin/admin.php:867
704
  msgid "Use default style included in the plugin?"
705
  msgstr ""
706
 
707
+ #: admin/admin.php:870
708
  msgid ""
709
  "Top 10 includes a default style that makes your popular posts list to look "
710
  "beautiful. Check the box above if you want to use this."
711
  msgstr ""
712
 
713
+ #: admin/admin.php:871
714
  msgid ""
715
  "Enabling this option will turn on the thumbnails and set their width and "
716
  "height to 65px. It will also turn off the display of the author, excerpt and "
717
  "date if already enabled. Disabling this option will not revert any settings."
718
  msgstr ""
719
 
720
+ #: admin/admin.php:872
721
  #, php-format
722
  msgid ""
723
  "You can view the default style at <a href=\"%1$s\" target=\"_blank\">%1$s</a>"
724
  msgstr ""
725
 
726
+ #: admin/admin.php:875
727
  msgid "Custom CSS to add to header:"
728
  msgstr "Custom CSS je dodat header-u"
729
 
730
+ #: admin/admin.php:880
731
  msgid ""
732
  "Do not include <code>style</code> tags. Check out the <a href=\"http://"
733
  "wordpress.org/extend/plugins/top-10/faq/\" target=\"_blank\">FAQ</a> for "
737
  "wordpress.org/extend/plugins/top-10/faq/\" target=\"_blank\">FAQ</a> za "
738
  "dostupne CSS klase za stilizovanje."
739
 
740
+ #: admin/admin.php:900
741
  #, fuzzy
742
  msgid "Default Options"
743
  msgstr "Paramètres de sortie"
744
 
745
+ #: admin/admin.php:900
746
  msgid "Do you want to set options to Default?"
747
  msgstr "Da li želite da postavite opcije na Default?"
748
 
749
+ #: admin/admin.php:924
750
  #, fuzzy
751
  msgid ""
752
  "Over time the Daily Top 10 database grows in size, which reduces the "
758
  "plugina. Čišćenje baze podataka u regularnim intervalima može poboljšati "
759
  "performanse naročito na blogovima sa velikim saobraćajem."
760
 
761
+ #: admin/admin.php:925
762
  #, fuzzy
763
  msgid ""
764
  "Note: When scheduled maintenance is enabled, WordPress will run the cron job "
768
  "kroniranje svaki put kada se poslu promeni raspored (npr. ako promenite "
769
  "postavke ispod) Ovo prouzrokuje dnevne postove tabele za resetovanje."
770
 
771
+ #: admin/admin.php:928
772
  msgid "Enable scheduled maintenance of daily tables:"
773
  msgstr "Omogući raspored održavanja u dnevnim tabelama"
774
 
775
+ #: admin/admin.php:932
776
  msgid "Time to run maintenance"
777
  msgstr "Pokrenuti održavanje"
778
 
779
+ #: admin/admin.php:933
780
  msgid "hrs"
781
  msgstr ""
782
 
783
+ #: admin/admin.php:933
784
  msgid "min"
785
  msgstr ""
786
 
787
+ #: admin/admin.php:935
788
  msgid "How often should the maintenance be run:"
789
  msgstr "Održavanje ne treba često da se pokreće"
790
 
791
+ #: admin/admin.php:939
792
  msgid "Daily"
793
  msgstr "Dnevno"
794
 
795
+ #: admin/admin.php:943
796
  msgid "Weekly"
797
  msgstr "Nedeljno"
798
 
799
+ #: admin/admin.php:947
800
  msgid "Fortnightly"
801
  msgstr "Na dve nedelje"
802
 
803
+ #: admin/admin.php:951
804
  msgid "Monthly"
805
  msgstr "Mesečno"
806
 
807
+ #: admin/admin.php:960
808
  msgid "The cron job has been scheduled. Maintenance will run "
809
  msgstr "Kroniranje je zakazano. Održavanje će se pokrenuti"
810
 
811
+ #: admin/admin.php:965
812
  msgid "The cron job is missing. Please resave this page to add the job"
813
  msgstr ""
814
  "Nedostaje kroniranje. Molim vas ponovo sašuvajte ovu stranicu da biste "
815
  "dodali posao"
816
 
817
+ #: admin/admin.php:970
818
  msgid "Maintenance is turned off"
819
  msgstr "Održavanje je ugašeno"
820
 
821
+ #: admin/admin.php:984
822
  msgid "Reset count"
823
  msgstr "Resetuj brojanje"
824
 
825
+ #: admin/admin.php:987
826
  msgid ""
827
  "This cannot be reversed. Make sure that your database has been backed up "
828
  "before proceeding"
830
  "Ovo ne možete da proništite. Proverite da li vam je baza podataka sačuvana u "
831
  "back up-u pre nego što nastavite"
832
 
833
+ #: admin/admin.php:990
834
  #, fuzzy
835
  msgid "Reset Popular Posts"
836
  msgstr "Postes populaires"
837
 
838
+ #: admin/admin.php:990
839
  msgid "Are you sure you want to reset the popular posts?"
840
  msgstr "Da li ste sigurni da želite da resetujete popularne postove?"
841
 
842
+ #: admin/admin.php:991
843
  #, fuzzy
844
  msgid "Reset Daily Popular Posts"
845
  msgstr "Postes populaires journaliers"
846
 
847
+ #: admin/admin.php:991
848
  msgid "Are you sure you want to reset the daily popular posts?"
849
  msgstr "Da li ste sigurni da želite da resetujete dnevne popularne postove?"
850
 
851
+ #: admin/admin.php:992
852
  msgid "Clear duplicates"
853
  msgstr "Obrišite duplikate"
854
 
855
+ #: admin/admin.php:992
856
  msgid "This will delete the duplicate entries in the tables. Proceed?"
857
  msgstr "Ovo će obrisati duple unose u tabelama. Nastaviti?"
858
 
859
+ #: admin/admin.php:1005
860
  msgid "WordPress Multisite: Migrate Top 10 v1.x counts to 2.x"
861
  msgstr ""
862
 
863
+ #: admin/admin.php:1008
864
  msgid ""
865
  "If you've been using Top 10 v1.x on multisite, you would have needed to "
866
  "activate the plugin independently for each site. This would have resulted in "
867
+ "two tables being created for each site in the network."
 
 
 
868
  msgstr ""
869
 
870
+ #: admin/admin.php:1009
871
+ msgid ""
872
+ "Top 10 v2.x onwards uses only a single table to record the count, keeping "
873
+ "your database clean. You can use this tool to import the recorded counts "
874
+ "from v1.x tables to the new v2.x table format."
875
+ msgstr ""
876
+
877
+ #: admin/admin.php:1012
878
  msgid ""
879
  "If you do not see any tables below, then it means that either all data has "
880
  "already been imported or no relevant information has been found."
881
  msgstr ""
882
 
883
+ #: admin/admin.php:1015
884
+ msgid ""
885
+ "After running the importer, please verify that all the counts have been "
886
+ "successfully imported. Only then should you delete any old tables!"
887
+ msgstr ""
888
+
889
+ #: admin/admin.php:1049
890
  msgid "Blog ID"
891
  msgstr ""
892
 
893
+ #: admin/admin.php:1052
894
  msgid "Status"
895
  msgstr ""
896
 
897
+ #: admin/admin.php:1055
898
  msgid "Select to import"
899
  msgstr ""
900
 
901
+ #: admin/admin.php:1065
902
  msgid "Blog #"
903
  msgstr ""
904
 
905
+ #: admin/admin.php:1075
906
  msgid "Not imported"
907
  msgstr ""
908
 
909
+ #: admin/admin.php:1079
910
  msgid "Imported"
911
  msgstr ""
912
 
913
+ #: admin/admin.php:1100
914
  msgid "Begin import"
915
  msgstr ""
916
 
917
+ #: admin/admin.php:1101
918
  msgid "Delete selected tables"
919
  msgstr ""
920
 
921
+ #: admin/admin.php:1102
922
  msgid "Delete all imported tables"
923
  msgstr ""
924
 
925
+ #: admin/admin.php:1159 admin/admin.php:1255
926
  msgid "Daily Popular Posts"
927
  msgstr "Dnevni popularni postovi"
928
 
929
+ #: admin/admin.php:1189
930
  msgid "Support the development"
931
  msgstr "Podrška razvoju"
932
 
933
+ #: admin/admin.php:1196
934
  msgid "Donation for Top 10"
935
  msgstr ""
936
 
937
+ #: admin/admin.php:1198
938
  msgid "Enter amount in USD: "
939
  msgstr "Unesite veličinu u USD:"
940
 
941
+ #: admin/admin.php:1202
942
  #, fuzzy
943
  msgid "Send your donation to the author of Top 10"
944
  msgstr "Pošalji vašu donaciju autoru"
945
 
946
+ #: admin/admin.php:1209
947
  #, fuzzy
948
  msgid "Follow me"
949
  msgstr "Pratite nas"
950
 
951
+ #: admin/admin.php:1219
952
  #, fuzzy
953
  msgid "Quick links"
954
  msgstr "Liens rapides"
955
 
956
+ #: admin/admin.php:1223
957
  #, fuzzy
958
  msgid "Top 10 plugin page"
959
  msgstr "Page de plugin"
960
 
961
+ #: admin/admin.php:1224
962
  msgid "Top 10 Github page"
963
  msgstr ""
964
 
965
+ #: admin/admin.php:1225
966
  msgid "Other plugins"
967
  msgstr "Brzi linkovi"
968
 
969
+ #: admin/admin.php:1226
970
  msgid "Ajay's blog"
971
  msgstr "Ajayov blog"
972
 
973
+ #: admin/admin.php:1227
974
  msgid "FAQ"
975
  msgstr ""
976
 
977
+ #: admin/admin.php:1228 admin/admin.php:1386
978
  msgid "Support"
979
  msgstr "Podrška"
980
 
981
+ #: admin/admin.php:1229
982
  msgid "Reviews"
983
  msgstr ""
984
 
985
+ #: admin/admin.php:1252
986
  #, fuzzy
987
  msgid "Overall Popular Posts"
988
  msgstr "Voir tous les postes populaires"
989
 
990
+ #: admin/admin.php:1363
991
  msgid "Settings"
992
  msgstr "Postavke"
993
 
994
+ #: admin/admin.php:1387
995
  msgid "Donate"
996
  msgstr "Donirajte"
997
 
1083
  msgid "Thumbnail width"
1084
  msgstr "Options thumbnail des messages:"
1085
 
1086
+ #: top-10.php:879
1087
  msgid " by "
1088
  msgstr ""
1089
 
1090
+ #: top-10.php:930
1091
  #, php-format
1092
  msgid "Popular posts by <a href=\"%s\" rel=\"nofollow\" %s>Top 10 plugin</a>"
1093
  msgstr ""
1094
 
1095
+ #: top-10.php:1029
1096
  msgid "<h3>Popular Posts</h3>"
1097
  msgstr "<h3>Popularni Postovi</h3>"
1098
 
1099
+ #: top-10.php:1030
1100
  msgid "<h3>Daily Popular</h3>"
1101
  msgstr "<h3>Dnevni popularni</h3>"
1102
 
1103
+ #: top-10.php:1031
1104
  #, fuzzy
1105
  msgid "No top posts yet"
1106
  msgstr "Annuler le top 10 des enregistrements les plus populaires"
1107
 
1108
+ #: top-10.php:1676
1109
  msgid "Once Weekly"
1110
  msgstr "Jednom nedeljno"
1111
 
1112
+ #: top-10.php:1680
1113
  msgid "Once Fortnightly"
1114
  msgstr "Jednom u dve nedelje"
1115
 
1116
+ #: top-10.php:1684
1117
  msgid "Once Monthly"
1118
  msgstr "Jednom mesečno"
1119
 
1120
+ #: top-10.php:1688
1121
  msgid "Once quarterly"
1122
  msgstr ""
1123
 
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: 2014-12-28 00:57-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"
@@ -61,7 +61,7 @@ msgstr "Попередня сторінка"
61
  msgid "Next"
62
  msgstr "Наступна сторінка"
63
 
64
- #: admin/admin-dashboard.php:200 admin/admin.php:1145
65
  msgid "Popular Posts"
66
  msgstr "Популярні записи"
67
 
@@ -69,7 +69,7 @@ msgstr "Популярні записи"
69
  msgid "Daily Popular"
70
  msgstr "Популярні сьогодні записи"
71
 
72
- #: admin/admin-metabox.php:38 admin/admin.php:1234
73
  msgid "Top 10"
74
  msgstr "Топ 10 записів"
75
 
@@ -99,106 +99,137 @@ msgstr ""
99
  msgid "The URL above is saved in the meta field: "
100
  msgstr ""
101
 
102
- #: admin/admin.php:160
103
  msgid "Options saved successfully."
104
  msgstr "Установки збережені."
105
 
106
- #: admin/admin.php:170
107
  msgid "Options set to Default."
108
  msgstr "Установки скинуті."
109
 
110
- #: admin/admin.php:176
111
  msgid "Top 10 popular posts reset"
112
  msgstr "Скинути статистику найпопулярніших записів"
113
 
114
- #: admin/admin.php:182
115
  msgid "Top 10 daily popular posts reset"
116
  msgstr "Скинути статистику найпопулярніших записів за сьогодні"
117
 
118
- #: admin/admin.php:189
119
  msgid "Duplicate rows cleaned from tables"
120
  msgstr ""
121
 
122
- #: admin/admin.php:201
123
  msgid "Scheduled maintenance enabled / modified"
124
  msgstr ""
125
 
126
- #: admin/admin.php:205
127
  msgid "Scheduled maintenance disabled"
128
  msgstr ""
129
 
130
- #: admin/admin.php:244
131
  msgid "Counts from selected sites have been imported."
132
  msgstr ""
133
 
134
- #: admin/admin.php:269
135
  msgid ""
136
  "Selected tables have been deleted. Note that only imported tables have been "
137
  "deleted."
138
  msgstr ""
139
 
140
- #: admin/admin.php:277 admin/admin.php:1234 admin/admin.php:1237
141
  #, fuzzy
142
  msgid "Top 10 Settings"
143
  msgstr "Налаштування плагіна"
144
 
145
- #: admin/admin.php:289 admin/admin.php:311
146
  msgid "General options"
147
  msgstr ""
148
 
149
- #: admin/admin.php:290 admin/admin.php:373
150
  msgid "Counter and tracker options"
151
  msgstr ""
152
 
153
- #: admin/admin.php:291 admin/admin.php:478
154
  msgid "Popular post list options"
155
  msgstr ""
156
 
157
- #: admin/admin.php:292 admin/admin.php:681
158
  #: includes/class-top-10-widget.php:103
159
  #, fuzzy
160
  msgid "Thumbnail options"
161
  msgstr "Установки превью до записів:"
162
 
163
- #: admin/admin.php:293
164
  msgid "Custom styles"
165
  msgstr ""
166
 
167
- #: admin/admin.php:294 admin/admin.php:912
168
  msgid "Maintenance"
169
  msgstr ""
170
 
171
- #: admin/admin.php:310 admin/admin.php:372 admin/admin.php:477
172
- #: admin/admin.php:680 admin/admin.php:843 admin/admin.php:911
173
- #: admin/admin.php:975 admin/admin.php:996 admin/admin.php:1176
174
- #: admin/admin.php:1196 admin/admin.php:1206
175
  msgid "Click to toggle"
176
  msgstr ""
177
 
178
- #: admin/admin.php:327
179
  msgid "Enable Overall stats"
180
  msgstr ""
181
 
182
- #: admin/admin.php:333
183
  msgid "Enable Daily stats"
184
  msgstr ""
185
 
186
- #: admin/admin.php:339
187
  msgid "Cache fix:"
188
  msgstr ""
189
 
190
- #: admin/admin.php:342
191
  msgid ""
192
  "This will try to prevent W3 Total Cache and other caching plugins from "
193
  "caching the tracker script of the plugin. Try toggling this option in case "
194
  "you find that your posts are not tracked."
195
  msgstr ""
196
 
197
- #: admin/admin.php:346
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
198
  msgid "Link to Top 10 plugin page"
199
  msgstr ""
200
 
201
- #: admin/admin.php:349
202
  #, fuzzy
203
  msgid ""
204
  "A link to the plugin is added as an extra list item to the list of popular "
@@ -207,61 +238,61 @@ msgstr ""
207
  "Залишити посилання на плагін під списками Популярних записів? Автор плагіна "
208
  "був би дуже вдячний Вам, якщо Ви її все ж залишите!"
209
 
210
- #: admin/admin.php:354 admin/admin.php:459 admin/admin.php:662
211
- #: admin/admin.php:825 admin/admin.php:891 admin/admin.php:968
212
  #, fuzzy
213
  msgid "Save Options"
214
  msgstr "Установки плагіна:"
215
 
216
- #: admin/admin.php:389
217
  #, fuzzy
218
  msgid "Display number of views on:"
219
  msgstr "Показувати кількість переглядів запису?"
220
 
221
- #: admin/admin.php:391
222
  msgid "Posts"
223
  msgstr ""
224
 
225
- #: admin/admin.php:392
226
  #, fuzzy
227
  msgid "Pages"
228
  msgstr "Сторінка"
229
 
230
- #: admin/admin.php:393
231
  msgid "Home page"
232
  msgstr ""
233
 
234
- #: admin/admin.php:394
235
  msgid "Feeds"
236
  msgstr ""
237
 
238
- #: admin/admin.php:395
239
  msgid "Category archives"
240
  msgstr ""
241
 
242
- #: admin/admin.php:396
243
  msgid "Tag archives"
244
  msgstr ""
245
 
246
- #: admin/admin.php:397
247
  msgid "Other archives"
248
  msgstr ""
249
 
250
- #: admin/admin.php:398
251
  msgid ""
252
  "If you choose to disable this, please add <code>&lt;?php if "
253
  "( function_exists ( 'echo_tptn_post_count' ) ) echo_tptn_post_count(); ?&gt;"
254
  "</code> to your template file where you want it displayed"
255
  msgstr ""
256
 
257
- #: admin/admin.php:402
258
  #, fuzzy
259
  msgid "Format to display the post views:"
260
  msgstr ""
261
  "У полі нижче ви можете налаштувати формат відображення кількості переглядів "
262
  "за день, за весь час для записів/сторінок:"
263
 
264
- #: admin/admin.php:405
265
  msgid ""
266
  "Use <code>%totalcount%</code> to display the total count, <code>%dailycount"
267
  "%</code> to display the daily count and <code>%overallcount%</code> to "
@@ -269,11 +300,11 @@ msgid ""
269
  "options displays <code>[Visited 123 times, 23 visits today]</code>"
270
  msgstr ""
271
 
272
- #: admin/admin.php:409
273
  msgid "What do display when there are no visits?"
274
  msgstr ""
275
 
276
- #: admin/admin.php:412
277
  msgid ""
278
  "This text applies only when there are 0 hits for the post and it isn't a "
279
  "single page. e.g. if you display post views on the homepage or archives then "
@@ -281,253 +312,233 @@ msgid ""
281
  "option."
282
  msgstr ""
283
 
284
- #: admin/admin.php:416
285
  msgid "Always display latest post count"
286
  msgstr ""
287
 
288
- #: admin/admin.php:419
289
  msgid ""
290
  "This option uses JavaScript and will increase your page load time. Turn this "
291
  "off if you are not using caching plugins or are OK with displaying older "
292
  "cached counts."
293
  msgstr ""
294
 
295
- #: admin/admin.php:423
296
  msgid "Track visits of authors on their own posts?"
297
  msgstr "Враховувати перегляди записів, зроблені їхніми ж авторами?"
298
 
299
- #: admin/admin.php:426
300
  msgid ""
301
  "Disabling this option will stop authors visits tracked on their own posts"
302
  msgstr ""
303
 
304
- #: admin/admin.php:430
305
  #, fuzzy
306
  msgid "Track visits of admins?"
307
  msgstr "Враховувати перегляди записів, зроблені їхніми ж авторами?"
308
 
309
- #: admin/admin.php:433
310
  msgid "Disabling this option will stop admin visits being tracked."
311
  msgstr ""
312
 
313
- #: admin/admin.php:437
314
  #, fuzzy
315
  msgid "Track visits of Editors?"
316
  msgstr "Враховувати перегляди записів, зроблені їхніми ж авторами?"
317
 
318
- #: admin/admin.php:440
319
  msgid "Disabling this option will stop editor visits being tracked."
320
  msgstr ""
321
 
322
- #: admin/admin.php:444
323
  msgid "Display page views on Posts and Pages in Admin"
324
  msgstr ""
325
 
326
- #: admin/admin.php:447
327
  msgid ""
328
  "Adds three columns called Total Views, Today's Views and Views to All Posts "
329
  "and All Pages"
330
  msgstr ""
331
 
332
- #: admin/admin.php:451
333
  #, fuzzy
334
  msgid "Show number of views to non-admins"
335
  msgstr "Показувати кількість переглядів сторінки?"
336
 
337
- #: admin/admin.php:454
338
  msgid ""
339
  "If you disable this then non-admins won't see the above columns or view the "
340
  "independent pages with the top posts"
341
  msgstr ""
342
 
343
- #: admin/admin.php:494
344
  msgid "Number of popular posts to display: "
345
  msgstr "Кількість Популярних записів у списку:"
346
 
347
- #: admin/admin.php:497
348
  msgid ""
349
  "Maximum number of posts that will be displayed in the list. This option is "
350
  "used if you don't specify the number of posts in the widget or shortcodes"
351
  msgstr ""
352
 
353
- #: admin/admin.php:501
354
- msgid "Daily popular contains top posts over:"
355
- msgstr ""
356
-
357
- #: admin/admin.php:503
358
- msgid "day(s)"
359
- msgstr ""
360
-
361
- #: admin/admin.php:504
362
- msgid "hour(s)"
363
- msgstr ""
364
-
365
- #: admin/admin.php:505
366
- msgid ""
367
- "Think of Daily Popular has a custom date range applied as a global setting. "
368
- "Instead of displaying popular posts from the past day, this setting lets you "
369
- "display posts for as many days or as few hours as you want. This can be "
370
- "overridden in the widget."
371
- msgstr ""
372
-
373
- #: admin/admin.php:509
374
  msgid "Post types to include in results (including custom post types)"
375
  msgstr ""
376
 
377
- #: admin/admin.php:521
378
  msgid "List of post or page IDs to exclude from the results: "
379
  msgstr ""
380
 
381
- #: admin/admin.php:523 admin/admin.php:630
382
  msgid "Enter comma separated list of IDs. e.g. 188,320,500"
383
  msgstr ""
384
 
385
- #: admin/admin.php:527
386
  msgid "Exclude Categories: "
387
  msgstr "Виключити Категорії:"
388
 
389
- #: admin/admin.php:542
390
  msgid ""
391
  "Comma separated list of category slugs. The field above has an autocomplete "
392
  "so simply start typing in the starting letters and it will prompt you with "
393
  "options"
394
  msgstr ""
395
 
396
- #: admin/admin.php:547
397
  msgid "Title of popular posts: "
398
  msgstr "Заголовок списку Популярних записів:"
399
 
400
- #: admin/admin.php:553
401
  msgid "Title of daily popular posts: "
402
  msgstr "Заголовок списку Популярних сьогодні записів:"
403
 
404
- #: admin/admin.php:559
405
  msgid "When there are no posts, what should be shown?"
406
  msgstr ""
407
 
408
- #: admin/admin.php:563
409
  msgid "Blank Output"
410
  msgstr ""
411
 
412
- #: admin/admin.php:567
413
  msgid "Display:"
414
  msgstr ""
415
 
416
- #: admin/admin.php:572
417
  msgid "Show post excerpt in list?"
418
  msgstr "Показувати текст запису в списку?"
419
 
420
- #: admin/admin.php:578
421
  msgid "Length of excerpt (in words): "
422
  msgstr "Довжина виведеного тексту (в словах):"
423
 
424
- #: admin/admin.php:584
425
  #, fuzzy
426
  msgid "Show post author in list?"
427
  msgstr "Показувати текст запису в списку?"
428
 
429
- #: admin/admin.php:590
430
  #, fuzzy
431
  msgid "Show post date in list?"
432
  msgstr "Показувати текст запису в списку?"
433
 
434
- #: admin/admin.php:596
435
  msgid "Limit post title length (in characters)"
436
  msgstr ""
437
 
438
- #: admin/admin.php:602
439
  #, fuzzy
440
  msgid "Show view count in list?"
441
  msgstr "Показувати текст запису в списку?"
442
 
443
- #: admin/admin.php:608
444
  msgid "Always display latest post count in the daily lists?"
445
  msgstr ""
446
 
447
- #: admin/admin.php:611
448
  msgid ""
449
  "This option uses JavaScript and will increase your page load time. When you "
450
  "enable this option, the daily widget will not use the options set there, but "
451
  "options will need to be set on this screen."
452
  msgstr ""
453
 
454
- #: admin/admin.php:615
455
  msgid "Open links in new window"
456
  msgstr ""
457
 
458
- #: admin/admin.php:621
459
  msgid "Add nofollow attribute to links in the list"
460
  msgstr ""
461
 
462
- #: admin/admin.php:627
463
  msgid "Exclude display of related posts on these posts / pages"
464
  msgstr ""
465
 
466
- #: admin/admin.php:634
467
  #, fuzzy
468
  msgid "Customise the list HTML"
469
  msgstr "Установки оформлення списку:"
470
 
471
- #: admin/admin.php:637
472
  msgid "HTML to display before the list of posts: "
473
  msgstr "HTML-тег, який використовується перед списком:"
474
 
475
- #: admin/admin.php:643
476
  msgid "HTML to display before each list item: "
477
  msgstr "HTML-тег, який використовується перед кожним пунктом у списку:"
478
 
479
- #: admin/admin.php:649
480
  msgid "HTML to display after each list item: "
481
  msgstr "HTML-тег, який використовується після кожного пункту в списку:"
482
 
483
- #: admin/admin.php:655
484
  msgid "HTML to display after the list of posts: "
485
  msgstr "HTML-тег, який використовується після списку:"
486
 
487
- #: admin/admin.php:696
488
  msgid "Location of post thumbnail:"
489
  msgstr ""
490
 
491
- #: admin/admin.php:700
492
  #, fuzzy
493
  msgid "Display thumbnails inline with posts, before title"
494
  msgstr "Відображати і превью, і текст"
495
 
496
- #: admin/admin.php:705
497
  #, fuzzy
498
  msgid "Display thumbnails inline with posts, after title"
499
  msgstr "Відображати і превью, і текст"
500
 
501
- #: admin/admin.php:710
502
  msgid "Display only thumbnails, no text"
503
  msgstr "Показувати тільки превью, без тексту"
504
 
505
- #: admin/admin.php:715
506
  msgid "Do not display thumbnails, only text."
507
  msgstr "Показувати лише текст, без превью"
508
 
509
- #: admin/admin.php:719
510
  msgid "Thumbnail size:"
511
  msgstr ""
512
 
513
- #: admin/admin.php:743
514
  msgid "Custom size"
515
  msgstr ""
516
 
517
- #: admin/admin.php:746
518
  msgid ""
519
  "You can choose from existing image sizes above or create a custom size. If "
520
  "you have chosen Custom size above, then enter the width, height and crop "
521
  "settings below. For best results, use a cropped image."
522
  msgstr ""
523
 
524
- #: admin/admin.php:747
525
  msgid ""
526
  "If you change the width and/or height below, existing images will not be "
527
  "automatically resized."
528
  msgstr ""
529
 
530
- #: admin/admin.php:748
531
  #, php-format
532
  msgid ""
533
  "I recommend using <a href='%s' target='_blank'>Force Regenerate Thumbnails</"
@@ -535,79 +546,79 @@ msgid ""
535
  "regenerate all image sizes."
536
  msgstr ""
537
 
538
- #: admin/admin.php:751
539
  msgid "Width of custom thumbnail:"
540
  msgstr ""
541
 
542
- #: admin/admin.php:756
543
  msgid "Height of custom thumbnail"
544
  msgstr ""
545
 
546
- #: admin/admin.php:761
547
  msgid "Crop mode:"
548
  msgstr ""
549
 
550
- #: admin/admin.php:765
551
  msgid ""
552
  "By default, thumbnails will be proportionately cropped. Check this box to "
553
  "hard crop the thumbnails."
554
  msgstr ""
555
 
556
- #: admin/admin.php:766
557
  #, php-format
558
  msgid "<a href='%s' target='_blank'>Difference between soft and hard crop</a>"
559
  msgstr ""
560
 
561
- #: admin/admin.php:768
562
  msgid ""
563
  "Since you're using the default styles set under the Custom Styles section, "
564
  "the width and height is fixed at 65px and crop mode is enabled."
565
  msgstr ""
566
 
567
- #: admin/admin.php:773
568
  msgid "Style attributes / Width and Height HTML attributes:"
569
  msgstr ""
570
 
571
- #: admin/admin.php:777
572
  msgid "Style attributes are used for width and height."
573
  msgstr ""
574
 
575
- #: admin/admin.php:782
576
  msgid "HTML width and height attributes are used for width and height."
577
  msgstr ""
578
 
579
- #: admin/admin.php:786
580
  msgid "Use timthumb to generate thumbnails? "
581
  msgstr ""
582
 
583
- #: admin/admin.php:789
584
  msgid ""
585
  "If checked, <a href=\"http://www.binarymoon.co.uk/projects/timthumb/\" "
586
  "target=\"_blank\">timthumb</a> will be used to generate thumbnails"
587
  msgstr ""
588
 
589
- #: admin/admin.php:792
590
  msgid "Quality of thumbnails generated by timthumb:"
591
  msgstr ""
592
 
593
- #: admin/admin.php:795
594
  msgid ""
595
  "Enter values between 0 and 100 only. 100 is highest quality and the highest "
596
  "file size. Suggested maximum value is 95. Default is 75."
597
  msgstr ""
598
 
599
- #: admin/admin.php:798
600
  #, fuzzy
601
  msgid "Post thumbnail meta field name: "
602
  msgstr "Установки превью до записів:"
603
 
604
- #: admin/admin.php:801
605
  msgid ""
606
  "The value of this field should contain the image source and is set in the "
607
  "<em>Add New Post</em> screen"
608
  msgstr ""
609
 
610
- #: admin/admin.php:804
611
  #, fuzzy
612
  msgid ""
613
  "If the postmeta is not set, then should the plugin extract the first image "
@@ -617,7 +628,7 @@ msgstr ""
617
  "зображення із запису. Це може злегка збільшити завантаження в перший раз, "
618
  "так як буде створюватися зменшена копія зображення"
619
 
620
- #: admin/admin.php:807
621
  #, fuzzy
622
  msgid ""
623
  "This could slow down the loading of your page if the first image in the "
@@ -627,21 +638,21 @@ msgstr ""
627
  "зображення із запису. Це може злегка збільшити завантаження в перший раз, "
628
  "так як буде створюватися зменшена копія зображення"
629
 
630
- #: admin/admin.php:810
631
  msgid "Use default thumbnail? "
632
  msgstr ""
633
 
634
- #: admin/admin.php:813
635
  msgid ""
636
  "If checked, when no thumbnail is found, show a default one from the URL "
637
  "below. If not checked and no thumbnail is found, no image will be shown."
638
  msgstr ""
639
 
640
- #: admin/admin.php:816
641
  msgid "Default thumbnail: "
642
  msgstr ""
643
 
644
- #: admin/admin.php:820
645
  #, fuzzy
646
  msgid ""
647
  "The plugin will first check if the post contains a thumbnail. If it doesn't "
@@ -652,54 +663,54 @@ msgstr ""
652
  "заданому раніше мета-полю). Якщо ж превью нема - буде виводитися картинка за "
653
  "замовчунням:"
654
 
655
- #: admin/admin.php:844
656
  msgid "Custom CSS"
657
  msgstr ""
658
 
659
- #: admin/admin.php:859
660
  msgid "Use default style included in the plugin?"
661
  msgstr ""
662
 
663
- #: admin/admin.php:862
664
  msgid ""
665
  "Top 10 includes a default style that makes your popular posts list to look "
666
  "beautiful. Check the box above if you want to use this."
667
  msgstr ""
668
 
669
- #: admin/admin.php:863
670
  msgid ""
671
  "Enabling this option will turn on the thumbnails and set their width and "
672
  "height to 65px. It will also turn off the display of the author, excerpt and "
673
  "date if already enabled. Disabling this option will not revert any settings."
674
  msgstr ""
675
 
676
- #: admin/admin.php:864
677
  #, php-format
678
  msgid ""
679
  "You can view the default style at <a href=\"%1$s\" target=\"_blank\">%1$s</a>"
680
  msgstr ""
681
 
682
- #: admin/admin.php:867
683
  msgid "Custom CSS to add to header:"
684
  msgstr ""
685
 
686
- #: admin/admin.php:872
687
  msgid ""
688
  "Do not include <code>style</code> tags. Check out the <a href=\"http://"
689
  "wordpress.org/extend/plugins/top-10/faq/\" target=\"_blank\">FAQ</a> for "
690
  "available CSS classes to style."
691
  msgstr ""
692
 
693
- #: admin/admin.php:892
694
  #, fuzzy
695
  msgid "Default Options"
696
  msgstr "Установки плагіна:"
697
 
698
- #: admin/admin.php:892
699
  msgid "Do you want to set options to Default?"
700
  msgstr "Скинути налаштування плагіна?"
701
 
702
- #: admin/admin.php:916
703
  msgid ""
704
  "Over time the Daily Top 10 database grows in size, which reduces the "
705
  "performance of the plugin. Cleaning the database at regular intervals could "
@@ -707,65 +718,65 @@ msgid ""
707
  "will automatically delete entries older than 90 days."
708
  msgstr ""
709
 
710
- #: admin/admin.php:917
711
  msgid ""
712
  "Note: When scheduled maintenance is enabled, WordPress will run the cron job "
713
  "everytime the job is rescheduled (i.e. you change the settings below)."
714
  msgstr ""
715
 
716
- #: admin/admin.php:920
717
  msgid "Enable scheduled maintenance of daily tables:"
718
  msgstr ""
719
 
720
- #: admin/admin.php:924
721
  msgid "Time to run maintenance"
722
  msgstr ""
723
 
724
- #: admin/admin.php:925
725
  msgid "hrs"
726
  msgstr ""
727
 
728
- #: admin/admin.php:925
729
  msgid "min"
730
  msgstr ""
731
 
732
- #: admin/admin.php:927
733
  msgid "How often should the maintenance be run:"
734
  msgstr ""
735
 
736
- #: admin/admin.php:931
737
  msgid "Daily"
738
  msgstr ""
739
 
740
- #: admin/admin.php:935
741
  msgid "Weekly"
742
  msgstr ""
743
 
744
- #: admin/admin.php:939
745
  msgid "Fortnightly"
746
  msgstr ""
747
 
748
- #: admin/admin.php:943
749
  msgid "Monthly"
750
  msgstr ""
751
 
752
- #: admin/admin.php:952
753
  msgid "The cron job has been scheduled. Maintenance will run "
754
  msgstr ""
755
 
756
- #: admin/admin.php:957
757
  msgid "The cron job is missing. Please resave this page to add the job"
758
  msgstr ""
759
 
760
- #: admin/admin.php:962
761
  msgid "Maintenance is turned off"
762
  msgstr ""
763
 
764
- #: admin/admin.php:976
765
  msgid "Reset count"
766
  msgstr "Скинути статистику"
767
 
768
- #: admin/admin.php:979
769
  msgid ""
770
  "This cannot be reversed. Make sure that your database has been backed up "
771
  "before proceeding"
@@ -773,158 +784,168 @@ msgstr ""
773
  "Скидання статистики не може бути обернена. Перед тим, як скидати все, "
774
  "переконайтесь, що у вас є копія вашої бази даних!"
775
 
776
- #: admin/admin.php:982
777
  #, fuzzy
778
  msgid "Reset Popular Posts"
779
  msgstr "Популярні записи"
780
 
781
- #: admin/admin.php:982
782
  msgid "Are you sure you want to reset the popular posts?"
783
  msgstr "Ви впевнені, що хочете скинути статистику для Популярних записів?"
784
 
785
- #: admin/admin.php:983
786
  #, fuzzy
787
  msgid "Reset Daily Popular Posts"
788
  msgstr "Популярні сьогодні записи"
789
 
790
- #: admin/admin.php:983
791
  msgid "Are you sure you want to reset the daily popular posts?"
792
  msgstr ""
793
  "Ви впевнені, що хочете скинути статистику для Популярних сьогодні записів?"
794
 
795
- #: admin/admin.php:984
796
  msgid "Clear duplicates"
797
  msgstr ""
798
 
799
- #: admin/admin.php:984
800
  msgid "This will delete the duplicate entries in the tables. Proceed?"
801
  msgstr "Буде проведено видалення дубльованих запісів з статистики. Продовжити?"
802
 
803
- #: admin/admin.php:997
804
  msgid "WordPress Multisite: Migrate Top 10 v1.x counts to 2.x"
805
  msgstr ""
806
 
807
- #: admin/admin.php:1000
808
  msgid ""
809
  "If you've been using Top 10 v1.x on multisite, you would have needed to "
810
  "activate the plugin independently for each site. This would have resulted in "
811
- "two tables being created for each site in the network. Top 10 v2.x onwards "
812
- "uses only a single table to record the count, keeping your database clean. "
813
- "You can use this tool to import the recorded counts from v1.x tables to the "
814
- "new v2.x table format."
815
  msgstr ""
816
 
817
- #: admin/admin.php:1003
 
 
 
 
 
 
 
818
  msgid ""
819
  "If you do not see any tables below, then it means that either all data has "
820
  "already been imported or no relevant information has been found."
821
  msgstr ""
822
 
823
- #: admin/admin.php:1037
 
 
 
 
 
 
824
  msgid "Blog ID"
825
  msgstr ""
826
 
827
- #: admin/admin.php:1040
828
  msgid "Status"
829
  msgstr ""
830
 
831
- #: admin/admin.php:1043
832
  msgid "Select to import"
833
  msgstr ""
834
 
835
- #: admin/admin.php:1053
836
  msgid "Blog #"
837
  msgstr ""
838
 
839
- #: admin/admin.php:1063
840
  msgid "Not imported"
841
  msgstr ""
842
 
843
- #: admin/admin.php:1067
844
  msgid "Imported"
845
  msgstr ""
846
 
847
- #: admin/admin.php:1088
848
  msgid "Begin import"
849
  msgstr ""
850
 
851
- #: admin/admin.php:1089
852
  msgid "Delete selected tables"
853
  msgstr ""
854
 
855
- #: admin/admin.php:1090
856
  msgid "Delete all imported tables"
857
  msgstr ""
858
 
859
- #: admin/admin.php:1147 admin/admin.php:1243
860
  msgid "Daily Popular Posts"
861
  msgstr "Популярні сьогодні записи"
862
 
863
- #: admin/admin.php:1177
864
  msgid "Support the development"
865
  msgstr "Підтримати автора плагіна"
866
 
867
- #: admin/admin.php:1184
868
  msgid "Donation for Top 10"
869
  msgstr ""
870
 
871
- #: admin/admin.php:1186
872
  msgid "Enter amount in USD: "
873
  msgstr "Скільки ви готові пожертвувати (в USD):"
874
 
875
- #: admin/admin.php:1190
876
  #, fuzzy
877
  msgid "Send your donation to the author of Top 10"
878
  msgstr "Відправте пожертву автору"
879
 
880
- #: admin/admin.php:1197
881
  msgid "Follow me"
882
  msgstr ""
883
 
884
- #: admin/admin.php:1207
885
  #, fuzzy
886
  msgid "Quick links"
887
  msgstr "Корисні посилання"
888
 
889
- #: admin/admin.php:1211
890
  #, fuzzy
891
  msgid "Top 10 plugin page"
892
  msgstr "Сторінка плагіна"
893
 
894
- #: admin/admin.php:1212
895
  msgid "Top 10 Github page"
896
  msgstr ""
897
 
898
- #: admin/admin.php:1213
899
  msgid "Other plugins"
900
  msgstr "Інші плагіни автора"
901
 
902
- #: admin/admin.php:1214
903
  msgid "Ajay's blog"
904
  msgstr "Блог Ajay"
905
 
906
- #: admin/admin.php:1215
907
  msgid "FAQ"
908
  msgstr ""
909
 
910
- #: admin/admin.php:1216 admin/admin.php:1374
911
  msgid "Support"
912
  msgstr "Підтримка (англ.)"
913
 
914
- #: admin/admin.php:1217
915
  msgid "Reviews"
916
  msgstr ""
917
 
918
- #: admin/admin.php:1240
919
  #, fuzzy
920
  msgid "Overall Popular Posts"
921
  msgstr "Подивитися всі Популярні записи"
922
 
923
- #: admin/admin.php:1351
924
  msgid "Settings"
925
  msgstr "Налаштування плагіна"
926
 
927
- #: admin/admin.php:1375
928
  msgid "Donate"
929
  msgstr "Зробити внесок"
930
 
@@ -1016,41 +1037,41 @@ msgstr "Установки превью до записів:"
1016
  msgid "Thumbnail width"
1017
  msgstr "Установки превью до записів:"
1018
 
1019
- #: top-10.php:866
1020
  msgid " by "
1021
  msgstr ""
1022
 
1023
- #: top-10.php:917
1024
  #, php-format
1025
  msgid "Popular posts by <a href=\"%s\" rel=\"nofollow\" %s>Top 10 plugin</a>"
1026
  msgstr ""
1027
 
1028
- #: top-10.php:1016
1029
  msgid "<h3>Popular Posts</h3>"
1030
  msgstr "<h3>Популярні записи</h3>"
1031
 
1032
- #: top-10.php:1017
1033
  msgid "<h3>Daily Popular</h3>"
1034
  msgstr "<h3>Популярні сьогодні записи</h3>"
1035
 
1036
- #: top-10.php:1018
1037
  #, fuzzy
1038
  msgid "No top posts yet"
1039
  msgstr "Скинути статистику найпопулярніших записів"
1040
 
1041
- #: top-10.php:1668
1042
  msgid "Once Weekly"
1043
  msgstr ""
1044
 
1045
- #: top-10.php:1672
1046
  msgid "Once Fortnightly"
1047
  msgstr ""
1048
 
1049
- #: top-10.php:1676
1050
  msgid "Once Monthly"
1051
  msgstr ""
1052
 
1053
- #: top-10.php:1680
1054
  msgid "Once quarterly"
1055
  msgstr ""
1056
 
2
  msgstr ""
3
  "Project-Id-Version: Top 10\n"
4
  "Report-Msgid-Bugs-To: \n"
5
+ "POT-Creation-Date: 2015-01-01 21:53-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"
61
  msgid "Next"
62
  msgstr "Наступна сторінка"
63
 
64
+ #: admin/admin-dashboard.php:200 admin/admin.php:1157
65
  msgid "Popular Posts"
66
  msgstr "Популярні записи"
67
 
69
  msgid "Daily Popular"
70
  msgstr "Популярні сьогодні записи"
71
 
72
+ #: admin/admin-metabox.php:38 admin/admin.php:1246
73
  msgid "Top 10"
74
  msgstr "Топ 10 записів"
75
 
99
  msgid "The URL above is saved in the meta field: "
100
  msgstr ""
101
 
102
+ #: admin/admin.php:161
103
  msgid "Options saved successfully."
104
  msgstr "Установки збережені."
105
 
106
+ #: admin/admin.php:171
107
  msgid "Options set to Default."
108
  msgstr "Установки скинуті."
109
 
110
+ #: admin/admin.php:177
111
  msgid "Top 10 popular posts reset"
112
  msgstr "Скинути статистику найпопулярніших записів"
113
 
114
+ #: admin/admin.php:183
115
  msgid "Top 10 daily popular posts reset"
116
  msgstr "Скинути статистику найпопулярніших записів за сьогодні"
117
 
118
+ #: admin/admin.php:190
119
  msgid "Duplicate rows cleaned from tables"
120
  msgstr ""
121
 
122
+ #: admin/admin.php:202
123
  msgid "Scheduled maintenance enabled / modified"
124
  msgstr ""
125
 
126
+ #: admin/admin.php:206
127
  msgid "Scheduled maintenance disabled"
128
  msgstr ""
129
 
130
+ #: admin/admin.php:245
131
  msgid "Counts from selected sites have been imported."
132
  msgstr ""
133
 
134
+ #: admin/admin.php:270
135
  msgid ""
136
  "Selected tables have been deleted. Note that only imported tables have been "
137
  "deleted."
138
  msgstr ""
139
 
140
+ #: admin/admin.php:278 admin/admin.php:1246 admin/admin.php:1249
141
  #, fuzzy
142
  msgid "Top 10 Settings"
143
  msgstr "Налаштування плагіна"
144
 
145
+ #: admin/admin.php:290 admin/admin.php:312
146
  msgid "General options"
147
  msgstr ""
148
 
149
+ #: admin/admin.php:291 admin/admin.php:389
150
  msgid "Counter and tracker options"
151
  msgstr ""
152
 
153
+ #: admin/admin.php:292 admin/admin.php:494
154
  msgid "Popular post list options"
155
  msgstr ""
156
 
157
+ #: admin/admin.php:293 admin/admin.php:689
158
  #: includes/class-top-10-widget.php:103
159
  #, fuzzy
160
  msgid "Thumbnail options"
161
  msgstr "Установки превью до записів:"
162
 
163
+ #: admin/admin.php:294
164
  msgid "Custom styles"
165
  msgstr ""
166
 
167
+ #: admin/admin.php:295 admin/admin.php:920
168
  msgid "Maintenance"
169
  msgstr ""
170
 
171
+ #: admin/admin.php:311 admin/admin.php:388 admin/admin.php:493
172
+ #: admin/admin.php:688 admin/admin.php:851 admin/admin.php:919
173
+ #: admin/admin.php:983 admin/admin.php:1004 admin/admin.php:1188
174
+ #: admin/admin.php:1208 admin/admin.php:1218
175
  msgid "Click to toggle"
176
  msgstr ""
177
 
178
+ #: admin/admin.php:328
179
  msgid "Enable Overall stats"
180
  msgstr ""
181
 
182
+ #: admin/admin.php:334
183
  msgid "Enable Daily stats"
184
  msgstr ""
185
 
186
+ #: admin/admin.php:340
187
  msgid "Cache fix:"
188
  msgstr ""
189
 
190
+ #: admin/admin.php:343
191
  msgid ""
192
  "This will try to prevent W3 Total Cache and other caching plugins from "
193
  "caching the tracker script of the plugin. Try toggling this option in case "
194
  "you find that your posts are not tracked."
195
  msgstr ""
196
 
197
+ #: admin/admin.php:347
198
+ msgid "Start daily counts from midnight:"
199
+ msgstr ""
200
+
201
+ #: admin/admin.php:350
202
+ msgid ""
203
+ "Daily counter will display number of visits from midnight. This option is "
204
+ "checked by default and mimics the way most normal counters work. Turning "
205
+ "this off will allow you to use the hourly setting in the next option."
206
+ msgstr ""
207
+
208
+ #: admin/admin.php:354
209
+ msgid "Daily popular contains top posts over:"
210
+ msgstr ""
211
+
212
+ #: admin/admin.php:356
213
+ msgid "day(s)"
214
+ msgstr ""
215
+
216
+ #: admin/admin.php:357
217
+ msgid "hour(s)"
218
+ msgstr ""
219
+
220
+ #: admin/admin.php:358
221
+ msgid ""
222
+ "Think of Daily Popular has a custom date range applied as a global setting. "
223
+ "Instead of displaying popular posts from the past day, this setting lets you "
224
+ "display posts for as many days or as few hours as you want. This can be "
225
+ "overridden in the widget."
226
+ msgstr ""
227
+
228
+ #: admin/admin.php:362
229
  msgid "Link to Top 10 plugin page"
230
  msgstr ""
231
 
232
+ #: admin/admin.php:365
233
  #, fuzzy
234
  msgid ""
235
  "A link to the plugin is added as an extra list item to the list of popular "
238
  "Залишити посилання на плагін під списками Популярних записів? Автор плагіна "
239
  "був би дуже вдячний Вам, якщо Ви її все ж залишите!"
240
 
241
+ #: admin/admin.php:370 admin/admin.php:475 admin/admin.php:670
242
+ #: admin/admin.php:833 admin/admin.php:899 admin/admin.php:976
243
  #, fuzzy
244
  msgid "Save Options"
245
  msgstr "Установки плагіна:"
246
 
247
+ #: admin/admin.php:405
248
  #, fuzzy
249
  msgid "Display number of views on:"
250
  msgstr "Показувати кількість переглядів запису?"
251
 
252
+ #: admin/admin.php:407
253
  msgid "Posts"
254
  msgstr ""
255
 
256
+ #: admin/admin.php:408
257
  #, fuzzy
258
  msgid "Pages"
259
  msgstr "Сторінка"
260
 
261
+ #: admin/admin.php:409
262
  msgid "Home page"
263
  msgstr ""
264
 
265
+ #: admin/admin.php:410
266
  msgid "Feeds"
267
  msgstr ""
268
 
269
+ #: admin/admin.php:411
270
  msgid "Category archives"
271
  msgstr ""
272
 
273
+ #: admin/admin.php:412
274
  msgid "Tag archives"
275
  msgstr ""
276
 
277
+ #: admin/admin.php:413
278
  msgid "Other archives"
279
  msgstr ""
280
 
281
+ #: admin/admin.php:414
282
  msgid ""
283
  "If you choose to disable this, please add <code>&lt;?php if "
284
  "( function_exists ( 'echo_tptn_post_count' ) ) echo_tptn_post_count(); ?&gt;"
285
  "</code> to your template file where you want it displayed"
286
  msgstr ""
287
 
288
+ #: admin/admin.php:418
289
  #, fuzzy
290
  msgid "Format to display the post views:"
291
  msgstr ""
292
  "У полі нижче ви можете налаштувати формат відображення кількості переглядів "
293
  "за день, за весь час для записів/сторінок:"
294
 
295
+ #: admin/admin.php:421
296
  msgid ""
297
  "Use <code>%totalcount%</code> to display the total count, <code>%dailycount"
298
  "%</code> to display the daily count and <code>%overallcount%</code> to "
300
  "options displays <code>[Visited 123 times, 23 visits today]</code>"
301
  msgstr ""
302
 
303
+ #: admin/admin.php:425
304
  msgid "What do display when there are no visits?"
305
  msgstr ""
306
 
307
+ #: admin/admin.php:428
308
  msgid ""
309
  "This text applies only when there are 0 hits for the post and it isn't a "
310
  "single page. e.g. if you display post views on the homepage or archives then "
312
  "option."
313
  msgstr ""
314
 
315
+ #: admin/admin.php:432
316
  msgid "Always display latest post count"
317
  msgstr ""
318
 
319
+ #: admin/admin.php:435
320
  msgid ""
321
  "This option uses JavaScript and will increase your page load time. Turn this "
322
  "off if you are not using caching plugins or are OK with displaying older "
323
  "cached counts."
324
  msgstr ""
325
 
326
+ #: admin/admin.php:439
327
  msgid "Track visits of authors on their own posts?"
328
  msgstr "Враховувати перегляди записів, зроблені їхніми ж авторами?"
329
 
330
+ #: admin/admin.php:442
331
  msgid ""
332
  "Disabling this option will stop authors visits tracked on their own posts"
333
  msgstr ""
334
 
335
+ #: admin/admin.php:446
336
  #, fuzzy
337
  msgid "Track visits of admins?"
338
  msgstr "Враховувати перегляди записів, зроблені їхніми ж авторами?"
339
 
340
+ #: admin/admin.php:449
341
  msgid "Disabling this option will stop admin visits being tracked."
342
  msgstr ""
343
 
344
+ #: admin/admin.php:453
345
  #, fuzzy
346
  msgid "Track visits of Editors?"
347
  msgstr "Враховувати перегляди записів, зроблені їхніми ж авторами?"
348
 
349
+ #: admin/admin.php:456
350
  msgid "Disabling this option will stop editor visits being tracked."
351
  msgstr ""
352
 
353
+ #: admin/admin.php:460
354
  msgid "Display page views on Posts and Pages in Admin"
355
  msgstr ""
356
 
357
+ #: admin/admin.php:463
358
  msgid ""
359
  "Adds three columns called Total Views, Today's Views and Views to All Posts "
360
  "and All Pages"
361
  msgstr ""
362
 
363
+ #: admin/admin.php:467
364
  #, fuzzy
365
  msgid "Show number of views to non-admins"
366
  msgstr "Показувати кількість переглядів сторінки?"
367
 
368
+ #: admin/admin.php:470
369
  msgid ""
370
  "If you disable this then non-admins won't see the above columns or view the "
371
  "independent pages with the top posts"
372
  msgstr ""
373
 
374
+ #: admin/admin.php:510
375
  msgid "Number of popular posts to display: "
376
  msgstr "Кількість Популярних записів у списку:"
377
 
378
+ #: admin/admin.php:513
379
  msgid ""
380
  "Maximum number of posts that will be displayed in the list. This option is "
381
  "used if you don't specify the number of posts in the widget or shortcodes"
382
  msgstr ""
383
 
384
+ #: admin/admin.php:517
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
385
  msgid "Post types to include in results (including custom post types)"
386
  msgstr ""
387
 
388
+ #: admin/admin.php:529
389
  msgid "List of post or page IDs to exclude from the results: "
390
  msgstr ""
391
 
392
+ #: admin/admin.php:531 admin/admin.php:638
393
  msgid "Enter comma separated list of IDs. e.g. 188,320,500"
394
  msgstr ""
395
 
396
+ #: admin/admin.php:535
397
  msgid "Exclude Categories: "
398
  msgstr "Виключити Категорії:"
399
 
400
+ #: admin/admin.php:550
401
  msgid ""
402
  "Comma separated list of category slugs. The field above has an autocomplete "
403
  "so simply start typing in the starting letters and it will prompt you with "
404
  "options"
405
  msgstr ""
406
 
407
+ #: admin/admin.php:555
408
  msgid "Title of popular posts: "
409
  msgstr "Заголовок списку Популярних записів:"
410
 
411
+ #: admin/admin.php:561
412
  msgid "Title of daily popular posts: "
413
  msgstr "Заголовок списку Популярних сьогодні записів:"
414
 
415
+ #: admin/admin.php:567
416
  msgid "When there are no posts, what should be shown?"
417
  msgstr ""
418
 
419
+ #: admin/admin.php:571
420
  msgid "Blank Output"
421
  msgstr ""
422
 
423
+ #: admin/admin.php:575
424
  msgid "Display:"
425
  msgstr ""
426
 
427
+ #: admin/admin.php:580
428
  msgid "Show post excerpt in list?"
429
  msgstr "Показувати текст запису в списку?"
430
 
431
+ #: admin/admin.php:586
432
  msgid "Length of excerpt (in words): "
433
  msgstr "Довжина виведеного тексту (в словах):"
434
 
435
+ #: admin/admin.php:592
436
  #, fuzzy
437
  msgid "Show post author in list?"
438
  msgstr "Показувати текст запису в списку?"
439
 
440
+ #: admin/admin.php:598
441
  #, fuzzy
442
  msgid "Show post date in list?"
443
  msgstr "Показувати текст запису в списку?"
444
 
445
+ #: admin/admin.php:604
446
  msgid "Limit post title length (in characters)"
447
  msgstr ""
448
 
449
+ #: admin/admin.php:610
450
  #, fuzzy
451
  msgid "Show view count in list?"
452
  msgstr "Показувати текст запису в списку?"
453
 
454
+ #: admin/admin.php:616
455
  msgid "Always display latest post count in the daily lists?"
456
  msgstr ""
457
 
458
+ #: admin/admin.php:619
459
  msgid ""
460
  "This option uses JavaScript and will increase your page load time. When you "
461
  "enable this option, the daily widget will not use the options set there, but "
462
  "options will need to be set on this screen."
463
  msgstr ""
464
 
465
+ #: admin/admin.php:623
466
  msgid "Open links in new window"
467
  msgstr ""
468
 
469
+ #: admin/admin.php:629
470
  msgid "Add nofollow attribute to links in the list"
471
  msgstr ""
472
 
473
+ #: admin/admin.php:635
474
  msgid "Exclude display of related posts on these posts / pages"
475
  msgstr ""
476
 
477
+ #: admin/admin.php:642
478
  #, fuzzy
479
  msgid "Customise the list HTML"
480
  msgstr "Установки оформлення списку:"
481
 
482
+ #: admin/admin.php:645
483
  msgid "HTML to display before the list of posts: "
484
  msgstr "HTML-тег, який використовується перед списком:"
485
 
486
+ #: admin/admin.php:651
487
  msgid "HTML to display before each list item: "
488
  msgstr "HTML-тег, який використовується перед кожним пунктом у списку:"
489
 
490
+ #: admin/admin.php:657
491
  msgid "HTML to display after each list item: "
492
  msgstr "HTML-тег, який використовується після кожного пункту в списку:"
493
 
494
+ #: admin/admin.php:663
495
  msgid "HTML to display after the list of posts: "
496
  msgstr "HTML-тег, який використовується після списку:"
497
 
498
+ #: admin/admin.php:704
499
  msgid "Location of post thumbnail:"
500
  msgstr ""
501
 
502
+ #: admin/admin.php:708
503
  #, fuzzy
504
  msgid "Display thumbnails inline with posts, before title"
505
  msgstr "Відображати і превью, і текст"
506
 
507
+ #: admin/admin.php:713
508
  #, fuzzy
509
  msgid "Display thumbnails inline with posts, after title"
510
  msgstr "Відображати і превью, і текст"
511
 
512
+ #: admin/admin.php:718
513
  msgid "Display only thumbnails, no text"
514
  msgstr "Показувати тільки превью, без тексту"
515
 
516
+ #: admin/admin.php:723
517
  msgid "Do not display thumbnails, only text."
518
  msgstr "Показувати лише текст, без превью"
519
 
520
+ #: admin/admin.php:727
521
  msgid "Thumbnail size:"
522
  msgstr ""
523
 
524
+ #: admin/admin.php:751
525
  msgid "Custom size"
526
  msgstr ""
527
 
528
+ #: admin/admin.php:754
529
  msgid ""
530
  "You can choose from existing image sizes above or create a custom size. If "
531
  "you have chosen Custom size above, then enter the width, height and crop "
532
  "settings below. For best results, use a cropped image."
533
  msgstr ""
534
 
535
+ #: admin/admin.php:755
536
  msgid ""
537
  "If you change the width and/or height below, existing images will not be "
538
  "automatically resized."
539
  msgstr ""
540
 
541
+ #: admin/admin.php:756
542
  #, php-format
543
  msgid ""
544
  "I recommend using <a href='%s' target='_blank'>Force Regenerate Thumbnails</"
546
  "regenerate all image sizes."
547
  msgstr ""
548
 
549
+ #: admin/admin.php:759
550
  msgid "Width of custom thumbnail:"
551
  msgstr ""
552
 
553
+ #: admin/admin.php:764
554
  msgid "Height of custom thumbnail"
555
  msgstr ""
556
 
557
+ #: admin/admin.php:769
558
  msgid "Crop mode:"
559
  msgstr ""
560
 
561
+ #: admin/admin.php:773
562
  msgid ""
563
  "By default, thumbnails will be proportionately cropped. Check this box to "
564
  "hard crop the thumbnails."
565
  msgstr ""
566
 
567
+ #: admin/admin.php:774
568
  #, php-format
569
  msgid "<a href='%s' target='_blank'>Difference between soft and hard crop</a>"
570
  msgstr ""
571
 
572
+ #: admin/admin.php:776
573
  msgid ""
574
  "Since you're using the default styles set under the Custom Styles section, "
575
  "the width and height is fixed at 65px and crop mode is enabled."
576
  msgstr ""
577
 
578
+ #: admin/admin.php:781
579
  msgid "Style attributes / Width and Height HTML attributes:"
580
  msgstr ""
581
 
582
+ #: admin/admin.php:785
583
  msgid "Style attributes are used for width and height."
584
  msgstr ""
585
 
586
+ #: admin/admin.php:790
587
  msgid "HTML width and height attributes are used for width and height."
588
  msgstr ""
589
 
590
+ #: admin/admin.php:794
591
  msgid "Use timthumb to generate thumbnails? "
592
  msgstr ""
593
 
594
+ #: admin/admin.php:797
595
  msgid ""
596
  "If checked, <a href=\"http://www.binarymoon.co.uk/projects/timthumb/\" "
597
  "target=\"_blank\">timthumb</a> will be used to generate thumbnails"
598
  msgstr ""
599
 
600
+ #: admin/admin.php:800
601
  msgid "Quality of thumbnails generated by timthumb:"
602
  msgstr ""
603
 
604
+ #: admin/admin.php:803
605
  msgid ""
606
  "Enter values between 0 and 100 only. 100 is highest quality and the highest "
607
  "file size. Suggested maximum value is 95. Default is 75."
608
  msgstr ""
609
 
610
+ #: admin/admin.php:806
611
  #, fuzzy
612
  msgid "Post thumbnail meta field name: "
613
  msgstr "Установки превью до записів:"
614
 
615
+ #: admin/admin.php:809
616
  msgid ""
617
  "The value of this field should contain the image source and is set in the "
618
  "<em>Add New Post</em> screen"
619
  msgstr ""
620
 
621
+ #: admin/admin.php:812
622
  #, fuzzy
623
  msgid ""
624
  "If the postmeta is not set, then should the plugin extract the first image "
628
  "зображення із запису. Це може злегка збільшити завантаження в перший раз, "
629
  "так як буде створюватися зменшена копія зображення"
630
 
631
+ #: admin/admin.php:815
632
  #, fuzzy
633
  msgid ""
634
  "This could slow down the loading of your page if the first image in the "
638
  "зображення із запису. Це може злегка збільшити завантаження в перший раз, "
639
  "так як буде створюватися зменшена копія зображення"
640
 
641
+ #: admin/admin.php:818
642
  msgid "Use default thumbnail? "
643
  msgstr ""
644
 
645
+ #: admin/admin.php:821
646
  msgid ""
647
  "If checked, when no thumbnail is found, show a default one from the URL "
648
  "below. If not checked and no thumbnail is found, no image will be shown."
649
  msgstr ""
650
 
651
+ #: admin/admin.php:824
652
  msgid "Default thumbnail: "
653
  msgstr ""
654
 
655
+ #: admin/admin.php:828
656
  #, fuzzy
657
  msgid ""
658
  "The plugin will first check if the post contains a thumbnail. If it doesn't "
663
  "заданому раніше мета-полю). Якщо ж превью нема - буде виводитися картинка за "
664
  "замовчунням:"
665
 
666
+ #: admin/admin.php:852
667
  msgid "Custom CSS"
668
  msgstr ""
669
 
670
+ #: admin/admin.php:867
671
  msgid "Use default style included in the plugin?"
672
  msgstr ""
673
 
674
+ #: admin/admin.php:870
675
  msgid ""
676
  "Top 10 includes a default style that makes your popular posts list to look "
677
  "beautiful. Check the box above if you want to use this."
678
  msgstr ""
679
 
680
+ #: admin/admin.php:871
681
  msgid ""
682
  "Enabling this option will turn on the thumbnails and set their width and "
683
  "height to 65px. It will also turn off the display of the author, excerpt and "
684
  "date if already enabled. Disabling this option will not revert any settings."
685
  msgstr ""
686
 
687
+ #: admin/admin.php:872
688
  #, php-format
689
  msgid ""
690
  "You can view the default style at <a href=\"%1$s\" target=\"_blank\">%1$s</a>"
691
  msgstr ""
692
 
693
+ #: admin/admin.php:875
694
  msgid "Custom CSS to add to header:"
695
  msgstr ""
696
 
697
+ #: admin/admin.php:880
698
  msgid ""
699
  "Do not include <code>style</code> tags. Check out the <a href=\"http://"
700
  "wordpress.org/extend/plugins/top-10/faq/\" target=\"_blank\">FAQ</a> for "
701
  "available CSS classes to style."
702
  msgstr ""
703
 
704
+ #: admin/admin.php:900
705
  #, fuzzy
706
  msgid "Default Options"
707
  msgstr "Установки плагіна:"
708
 
709
+ #: admin/admin.php:900
710
  msgid "Do you want to set options to Default?"
711
  msgstr "Скинути налаштування плагіна?"
712
 
713
+ #: admin/admin.php:924
714
  msgid ""
715
  "Over time the Daily Top 10 database grows in size, which reduces the "
716
  "performance of the plugin. Cleaning the database at regular intervals could "
718
  "will automatically delete entries older than 90 days."
719
  msgstr ""
720
 
721
+ #: admin/admin.php:925
722
  msgid ""
723
  "Note: When scheduled maintenance is enabled, WordPress will run the cron job "
724
  "everytime the job is rescheduled (i.e. you change the settings below)."
725
  msgstr ""
726
 
727
+ #: admin/admin.php:928
728
  msgid "Enable scheduled maintenance of daily tables:"
729
  msgstr ""
730
 
731
+ #: admin/admin.php:932
732
  msgid "Time to run maintenance"
733
  msgstr ""
734
 
735
+ #: admin/admin.php:933
736
  msgid "hrs"
737
  msgstr ""
738
 
739
+ #: admin/admin.php:933
740
  msgid "min"
741
  msgstr ""
742
 
743
+ #: admin/admin.php:935
744
  msgid "How often should the maintenance be run:"
745
  msgstr ""
746
 
747
+ #: admin/admin.php:939
748
  msgid "Daily"
749
  msgstr ""
750
 
751
+ #: admin/admin.php:943
752
  msgid "Weekly"
753
  msgstr ""
754
 
755
+ #: admin/admin.php:947
756
  msgid "Fortnightly"
757
  msgstr ""
758
 
759
+ #: admin/admin.php:951
760
  msgid "Monthly"
761
  msgstr ""
762
 
763
+ #: admin/admin.php:960
764
  msgid "The cron job has been scheduled. Maintenance will run "
765
  msgstr ""
766
 
767
+ #: admin/admin.php:965
768
  msgid "The cron job is missing. Please resave this page to add the job"
769
  msgstr ""
770
 
771
+ #: admin/admin.php:970
772
  msgid "Maintenance is turned off"
773
  msgstr ""
774
 
775
+ #: admin/admin.php:984
776
  msgid "Reset count"
777
  msgstr "Скинути статистику"
778
 
779
+ #: admin/admin.php:987
780
  msgid ""
781
  "This cannot be reversed. Make sure that your database has been backed up "
782
  "before proceeding"
784
  "Скидання статистики не може бути обернена. Перед тим, як скидати все, "
785
  "переконайтесь, що у вас є копія вашої бази даних!"
786
 
787
+ #: admin/admin.php:990
788
  #, fuzzy
789
  msgid "Reset Popular Posts"
790
  msgstr "Популярні записи"
791
 
792
+ #: admin/admin.php:990
793
  msgid "Are you sure you want to reset the popular posts?"
794
  msgstr "Ви впевнені, що хочете скинути статистику для Популярних записів?"
795
 
796
+ #: admin/admin.php:991
797
  #, fuzzy
798
  msgid "Reset Daily Popular Posts"
799
  msgstr "Популярні сьогодні записи"
800
 
801
+ #: admin/admin.php:991
802
  msgid "Are you sure you want to reset the daily popular posts?"
803
  msgstr ""
804
  "Ви впевнені, що хочете скинути статистику для Популярних сьогодні записів?"
805
 
806
+ #: admin/admin.php:992
807
  msgid "Clear duplicates"
808
  msgstr ""
809
 
810
+ #: admin/admin.php:992
811
  msgid "This will delete the duplicate entries in the tables. Proceed?"
812
  msgstr "Буде проведено видалення дубльованих запісів з статистики. Продовжити?"
813
 
814
+ #: admin/admin.php:1005
815
  msgid "WordPress Multisite: Migrate Top 10 v1.x counts to 2.x"
816
  msgstr ""
817
 
818
+ #: admin/admin.php:1008
819
  msgid ""
820
  "If you've been using Top 10 v1.x on multisite, you would have needed to "
821
  "activate the plugin independently for each site. This would have resulted in "
822
+ "two tables being created for each site in the network."
 
 
 
823
  msgstr ""
824
 
825
+ #: admin/admin.php:1009
826
+ msgid ""
827
+ "Top 10 v2.x onwards uses only a single table to record the count, keeping "
828
+ "your database clean. You can use this tool to import the recorded counts "
829
+ "from v1.x tables to the new v2.x table format."
830
+ msgstr ""
831
+
832
+ #: admin/admin.php:1012
833
  msgid ""
834
  "If you do not see any tables below, then it means that either all data has "
835
  "already been imported or no relevant information has been found."
836
  msgstr ""
837
 
838
+ #: admin/admin.php:1015
839
+ msgid ""
840
+ "After running the importer, please verify that all the counts have been "
841
+ "successfully imported. Only then should you delete any old tables!"
842
+ msgstr ""
843
+
844
+ #: admin/admin.php:1049
845
  msgid "Blog ID"
846
  msgstr ""
847
 
848
+ #: admin/admin.php:1052
849
  msgid "Status"
850
  msgstr ""
851
 
852
+ #: admin/admin.php:1055
853
  msgid "Select to import"
854
  msgstr ""
855
 
856
+ #: admin/admin.php:1065
857
  msgid "Blog #"
858
  msgstr ""
859
 
860
+ #: admin/admin.php:1075
861
  msgid "Not imported"
862
  msgstr ""
863
 
864
+ #: admin/admin.php:1079
865
  msgid "Imported"
866
  msgstr ""
867
 
868
+ #: admin/admin.php:1100
869
  msgid "Begin import"
870
  msgstr ""
871
 
872
+ #: admin/admin.php:1101
873
  msgid "Delete selected tables"
874
  msgstr ""
875
 
876
+ #: admin/admin.php:1102
877
  msgid "Delete all imported tables"
878
  msgstr ""
879
 
880
+ #: admin/admin.php:1159 admin/admin.php:1255
881
  msgid "Daily Popular Posts"
882
  msgstr "Популярні сьогодні записи"
883
 
884
+ #: admin/admin.php:1189
885
  msgid "Support the development"
886
  msgstr "Підтримати автора плагіна"
887
 
888
+ #: admin/admin.php:1196
889
  msgid "Donation for Top 10"
890
  msgstr ""
891
 
892
+ #: admin/admin.php:1198
893
  msgid "Enter amount in USD: "
894
  msgstr "Скільки ви готові пожертвувати (в USD):"
895
 
896
+ #: admin/admin.php:1202
897
  #, fuzzy
898
  msgid "Send your donation to the author of Top 10"
899
  msgstr "Відправте пожертву автору"
900
 
901
+ #: admin/admin.php:1209
902
  msgid "Follow me"
903
  msgstr ""
904
 
905
+ #: admin/admin.php:1219
906
  #, fuzzy
907
  msgid "Quick links"
908
  msgstr "Корисні посилання"
909
 
910
+ #: admin/admin.php:1223
911
  #, fuzzy
912
  msgid "Top 10 plugin page"
913
  msgstr "Сторінка плагіна"
914
 
915
+ #: admin/admin.php:1224
916
  msgid "Top 10 Github page"
917
  msgstr ""
918
 
919
+ #: admin/admin.php:1225
920
  msgid "Other plugins"
921
  msgstr "Інші плагіни автора"
922
 
923
+ #: admin/admin.php:1226
924
  msgid "Ajay's blog"
925
  msgstr "Блог Ajay"
926
 
927
+ #: admin/admin.php:1227
928
  msgid "FAQ"
929
  msgstr ""
930
 
931
+ #: admin/admin.php:1228 admin/admin.php:1386
932
  msgid "Support"
933
  msgstr "Підтримка (англ.)"
934
 
935
+ #: admin/admin.php:1229
936
  msgid "Reviews"
937
  msgstr ""
938
 
939
+ #: admin/admin.php:1252
940
  #, fuzzy
941
  msgid "Overall Popular Posts"
942
  msgstr "Подивитися всі Популярні записи"
943
 
944
+ #: admin/admin.php:1363
945
  msgid "Settings"
946
  msgstr "Налаштування плагіна"
947
 
948
+ #: admin/admin.php:1387
949
  msgid "Donate"
950
  msgstr "Зробити внесок"
951
 
1037
  msgid "Thumbnail width"
1038
  msgstr "Установки превью до записів:"
1039
 
1040
+ #: top-10.php:879
1041
  msgid " by "
1042
  msgstr ""
1043
 
1044
+ #: top-10.php:930
1045
  #, php-format
1046
  msgid "Popular posts by <a href=\"%s\" rel=\"nofollow\" %s>Top 10 plugin</a>"
1047
  msgstr ""
1048
 
1049
+ #: top-10.php:1029
1050
  msgid "<h3>Popular Posts</h3>"
1051
  msgstr "<h3>Популярні записи</h3>"
1052
 
1053
+ #: top-10.php:1030
1054
  msgid "<h3>Daily Popular</h3>"
1055
  msgstr "<h3>Популярні сьогодні записи</h3>"
1056
 
1057
+ #: top-10.php:1031
1058
  #, fuzzy
1059
  msgid "No top posts yet"
1060
  msgstr "Скинути статистику найпопулярніших записів"
1061
 
1062
+ #: top-10.php:1676
1063
  msgid "Once Weekly"
1064
  msgstr ""
1065
 
1066
+ #: top-10.php:1680
1067
  msgid "Once Fortnightly"
1068
  msgstr ""
1069
 
1070
+ #: top-10.php:1684
1071
  msgid "Once Monthly"
1072
  msgstr ""
1073
 
1074
+ #: top-10.php:1688
1075
  msgid "Once quarterly"
1076
  msgstr ""
1077
 
readme.txt CHANGED
@@ -55,13 +55,20 @@ If you're looking for a plugin to display related, look no further than my other
55
 
56
  == Upgrade Notice ==
57
 
58
- = 2.0.0 =
59
- Major update: Multisite support; Better extensions support; Hourly tracking; bug fixes;
60
- View the Changelog for details;
61
 
62
 
63
  == Changelog ==
64
 
 
 
 
 
 
 
 
 
65
  = 2.0.0 =
66
  * New: Multisite support. If you're using multisite and have previously activated Top 10 on individual blogs in the network, then head over to **Top 10 Settings** and import the counts from the old Top 10 1.x tables to the new Top 10 v2.0 tables
67
  * New: Fully extendable lookup query for the top lists. Now you can create your own functions in functions.php or in addon plugins to modify the mySQL query
55
 
56
  == Upgrade Notice ==
57
 
58
+ = 2.0.2 =
59
+ * New: Option to display the daily posts count from midnight. This is enabled by default and mimics the original behaviour of the counter
 
60
 
61
 
62
  == Changelog ==
63
 
64
+ = 2.0.2 =
65
+ * New: Option to display the daily posts count from midnight. This is enabled by default and mimics the original behaviour of the counter in Top 10 v1.x
66
+ * Modified: Posts are tracked hourly based on the time of the blog and not GMT. This was also the default behaviour of the counter in Top 10 v1.x
67
+ * Fixed: Default thumbnail location saved correctly on the Settings page.
68
+
69
+ = 2.0.1 =
70
+ * Bug fix release: Fixes 500/503 errors caused by 2.0.0
71
+
72
  = 2.0.0 =
73
  * New: Multisite support. If you're using multisite and have previously activated Top 10 on individual blogs in the network, then head over to **Top 10 Settings** and import the counts from the old Top 10 1.x tables to the new Top 10 v2.0 tables
74
  * New: Fully extendable lookup query for the top lists. Now you can create your own functions in functions.php or in addon plugins to modify the mySQL query
timthumb/cache/index.html DELETED
File without changes
timthumb/cache/index.php ADDED
@@ -0,0 +1 @@
 
1
+ <?php // Silence is golden
timthumb/cache/timthumb_cacheLastCleanTime.touch DELETED
File without changes
timthumb/cache/timthumb_int_3c6dbefcc66cc6a760cd6873d4421132.timthumb.txt DELETED
Binary file
timthumb/cache/timthumb_int_ef86ac262092aa5f7d00ee8173dacad6.timthumb.txt DELETED
Binary file
top-10-addcount.js.php CHANGED
@@ -45,7 +45,7 @@ function tptn_inc_count() {
45
  $str .= ( $tt === FALSE ) ? 'tte' : 'tt' . $tt;
46
  }
47
  if ( ( 10 == $activate_counter ) || ( 11 == $activate_counter ) ) {
48
- $current_date = gmdate( 'Y-m-d H', current_time( 'timestamp', 1 ) );
49
 
50
  $ttd = $wpdb->query( $wpdb->prepare( "INSERT INTO {$top_ten_daily} (postnumber, cntaccess, dp_date) VALUES('%d', '1', '%s' ) ON DUPLICATE KEY UPDATE cntaccess= cntaccess+1 ", $id, $current_date ) );
51
  $str .= ($ttd === FALSE) ? ' ttde' : ' ttd' . $ttd;
45
  $str .= ( $tt === FALSE ) ? 'tte' : 'tt' . $tt;
46
  }
47
  if ( ( 10 == $activate_counter ) || ( 11 == $activate_counter ) ) {
48
+ $current_date = gmdate( 'Y-m-d H', current_time( 'timestamp', 0 ) );
49
 
50
  $ttd = $wpdb->query( $wpdb->prepare( "INSERT INTO {$top_ten_daily} (postnumber, cntaccess, dp_date) VALUES('%d', '1', '%s' ) ON DUPLICATE KEY UPDATE cntaccess= cntaccess+1 ", $id, $current_date ) );
51
  $str .= ($ttd === FALSE) ? ' ttde' : ' ttd' . $ttd;
top-10.php CHANGED
@@ -14,7 +14,7 @@
14
  * Plugin Name: Top 10
15
  * Plugin URI: http://ajaydsouza.com/wordpress/plugins/top-10/
16
  * Description: Count daily and total visits per post and display the most popular posts based on the number of views
17
- * Version: 2.0.0
18
  * Author: Ajay D'Souza
19
  * Author URI: http://ajaydsouza.com
20
  * Text Domain: tptn
@@ -245,7 +245,7 @@ function tptn_parse_request( $wp ) {
245
 
246
  if ( ( 10 == $activate_counter ) || ( 11 == $activate_counter ) ) {
247
 
248
- $current_date = gmdate( 'Y-m-d H', current_time( 'timestamp', 1 ) );
249
 
250
  $ttd = $wpdb->query( $wpdb->prepare( "INSERT INTO {$top_ten_daily} (postnumber, cntaccess, dp_date, blog_id) VALUES('%d', '1', '%s', '%d' ) ON DUPLICATE KEY UPDATE cntaccess= cntaccess+1 ", $id, $current_date, $blog_id ) );
251
 
@@ -478,9 +478,15 @@ function get_tptn_post_count_only( $id = FALSE, $count = 'total', $blog_id = FAL
478
  $daily_range = $tptn_settings['daily_range'];
479
  $hour_range = $tptn_settings['hour_range'];
480
 
481
- $current_time = current_time( 'timestamp', 1 );
482
- $from_date = $current_time - ( $daily_range * DAY_IN_SECONDS + $hour_range * HOUR_IN_SECONDS );
483
- $from_date = gmdate( 'Y-m-d H' , $from_date );
 
 
 
 
 
 
484
 
485
  $resultscount = $wpdb->get_row( $wpdb->prepare( "SELECT postnumber, SUM(cntaccess) as sumCount FROM {$table_name_daily} WHERE postnumber = %d AND blog_id = %d AND dp_date >= '%s' GROUP BY postnumber ", array( $id, $blog_id, $from_date ) ) );
486
  $cntaccess = number_format_i18n( ( ( $resultscount ) ? $resultscount->sumCount : 0 ) );
@@ -574,9 +580,16 @@ function tptn_pop_posts( $args ) {
574
 
575
  $blog_id = get_current_blog_id();
576
 
577
- $current_time = current_time( 'timestamp', 1 );
578
- $from_date = $current_time - ( $daily_range * DAY_IN_SECONDS + $hour_range * HOUR_IN_SECONDS );
579
- $from_date = gmdate( 'Y-m-d H' , $from_date );
 
 
 
 
 
 
 
580
 
581
  /**
582
  *
@@ -1032,7 +1045,10 @@ function tptn_default_options() {
1032
  /* General options */
1033
  'activate_daily' => true, // Activate the daily count
1034
  'activate_overall' => true, // activate overall count
1035
- 'cache_fix' => false, // Temporary fix for W3 Total Cache
 
 
 
1036
  'show_credit' => false, // Add link to plugin page of my blog in top posts list
1037
 
1038
  /* Counter and tracker options */
@@ -1056,8 +1072,6 @@ function tptn_default_options() {
1056
 
1057
  /* Popular post list options */
1058
  'limit' => '10', // How many posts to display?
1059
- 'daily_range' => '1', // Daily Popular will contain posts of how many days?
1060
- 'hour_range' => '0', // Daily Popular will contain posts of how many days?
1061
  'post_types' => $post_types, // WordPress custom post types
1062
  'exclude_categories' => '', // Exclude these categories
1063
  'exclude_cat_slugs' => '', // Exclude these categories (slugs)
@@ -1603,7 +1617,7 @@ function ald_tptn_cron() {
1603
 
1604
  $table_name_daily = $wpdb->base_prefix . "top_ten_daily";
1605
 
1606
- $current_time = current_time( 'timestamp', 1 );
1607
  $from_date = strtotime( '-90 DAY' , $current_time );
1608
  $from_date = gmdate( 'Y-m-d H' , $from_date );
1609
 
14
  * Plugin Name: Top 10
15
  * Plugin URI: http://ajaydsouza.com/wordpress/plugins/top-10/
16
  * Description: Count daily and total visits per post and display the most popular posts based on the number of views
17
+ * Version: 2.0.2
18
  * Author: Ajay D'Souza
19
  * Author URI: http://ajaydsouza.com
20
  * Text Domain: tptn
245
 
246
  if ( ( 10 == $activate_counter ) || ( 11 == $activate_counter ) ) {
247
 
248
+ $current_date = gmdate( 'Y-m-d H', current_time( 'timestamp', 0 ) );
249
 
250
  $ttd = $wpdb->query( $wpdb->prepare( "INSERT INTO {$top_ten_daily} (postnumber, cntaccess, dp_date, blog_id) VALUES('%d', '1', '%s', '%d' ) ON DUPLICATE KEY UPDATE cntaccess= cntaccess+1 ", $id, $current_date, $blog_id ) );
251
 
478
  $daily_range = $tptn_settings['daily_range'];
479
  $hour_range = $tptn_settings['hour_range'];
480
 
481
+ if ( $tptn_settings['daily_midnight'] ) {
482
+ $current_time = current_time( 'timestamp', 0 );
483
+ $from_date = $current_time - ( max( 0, ( $daily_range - 1 ) ) * DAY_IN_SECONDS );
484
+ $from_date = gmdate( 'Y-m-d 0' , $from_date );
485
+ } else {
486
+ $current_time = current_time( 'timestamp', 0 );
487
+ $from_date = $current_time - ( $daily_range * DAY_IN_SECONDS + $hour_range * HOUR_IN_SECONDS );
488
+ $from_date = gmdate( 'Y-m-d H' , $from_date );
489
+ }
490
 
491
  $resultscount = $wpdb->get_row( $wpdb->prepare( "SELECT postnumber, SUM(cntaccess) as sumCount FROM {$table_name_daily} WHERE postnumber = %d AND blog_id = %d AND dp_date >= '%s' GROUP BY postnumber ", array( $id, $blog_id, $from_date ) ) );
492
  $cntaccess = number_format_i18n( ( ( $resultscount ) ? $resultscount->sumCount : 0 ) );
580
 
581
  $blog_id = get_current_blog_id();
582
 
583
+
584
+ if ( $daily_midnight ) {
585
+ $current_time = current_time( 'timestamp', 0 );
586
+ $from_date = $current_time - ( max( 0, ( $daily_range - 1 ) ) * DAY_IN_SECONDS );
587
+ $from_date = gmdate( 'Y-m-d 0' , $from_date );
588
+ } else {
589
+ $current_time = current_time( 'timestamp', 0 );
590
+ $from_date = $current_time - ( $daily_range * DAY_IN_SECONDS + $hour_range * HOUR_IN_SECONDS );
591
+ $from_date = gmdate( 'Y-m-d H' , $from_date );
592
+ }
593
 
594
  /**
595
  *
1045
  /* General options */
1046
  'activate_daily' => true, // Activate the daily count
1047
  'activate_overall' => true, // activate overall count
1048
+ 'cache_fix' => true, // Temporary fix for W3 Total Cache - Uses Ajax
1049
+ 'daily_midnight' => true, // Start daily counts from midnight (default as old behaviour)
1050
+ 'daily_range' => '1', // Daily Popular will contain posts of how many days?
1051
+ 'hour_range' => '0', // Daily Popular will contain posts of how many days?
1052
  'show_credit' => false, // Add link to plugin page of my blog in top posts list
1053
 
1054
  /* Counter and tracker options */
1072
 
1073
  /* Popular post list options */
1074
  'limit' => '10', // How many posts to display?
 
 
1075
  'post_types' => $post_types, // WordPress custom post types
1076
  'exclude_categories' => '', // Exclude these categories
1077
  'exclude_cat_slugs' => '', // Exclude these categories (slugs)
1617
 
1618
  $table_name_daily = $wpdb->base_prefix . "top_ten_daily";
1619
 
1620
+ $current_time = current_time( 'timestamp', 0 );
1621
  $from_date = strtotime( '-90 DAY' , $current_time );
1622
  $from_date = gmdate( 'Y-m-d H' , $from_date );
1623