Top 10 – Popular posts plugin for WordPress - Version 2.0.3

Version Description

  • Fixed: Metabox update did not work properly in v2.0; New option to keep data on uninstall.

=

Download this release

Release Info

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

Code changes from version 2.0.2 to 2.0.3

admin/admin-columns.php CHANGED
@@ -6,7 +6,7 @@
6
  * @author Ajay D'Souza <me@ajaydsouza.com>
7
  * @license GPL-2.0+
8
  * @link http://ajaydsouza.com
9
- * @copyright 2008-2014 Ajay D'Souza
10
  */
11
 
12
  /**** If this file is called directly, abort. ****/
6
  * @author Ajay D'Souza <me@ajaydsouza.com>
7
  * @license GPL-2.0+
8
  * @link http://ajaydsouza.com
9
+ * @copyright 2008-2015 Ajay D'Souza
10
  */
11
 
12
  /**** If this file is called directly, abort. ****/
admin/admin-dashboard.php CHANGED
@@ -8,7 +8,7 @@
8
  * @author Ajay D'Souza <me@ajaydsouza.com>
9
  * @license GPL-2.0+
10
  * @link http://ajaydsouza.com
11
- * @copyright 2008-2014 Ajay D'Souza
12
  */
13
 
14
  /**** If this file is called directly, abort. ****/
8
  * @author Ajay D'Souza <me@ajaydsouza.com>
9
  * @license GPL-2.0+
10
  * @link http://ajaydsouza.com
11
+ * @copyright 2008-2015 Ajay D'Souza
12
  */
13
 
14
  /**** If this file is called directly, abort. ****/
admin/admin-metabox.php CHANGED
@@ -8,7 +8,7 @@
8
  * @author Ajay D'Souza <me@ajaydsouza.com>
9
  * @license GPL-2.0+
10
  * @link http://ajaydsouza.com
11
- * @copyright 2008-2014 Ajay D'Souza
12
  */
13
 
14
  /**** If this file is called directly, abort. ****/
@@ -60,8 +60,9 @@ function tptn_call_meta_box() {
60
  wp_nonce_field( 'tptn_meta_box', 'tptn_meta_box_nonce' );
61
 
62
  $resultscount = $wpdb->get_row( $wpdb->prepare(
63
- "SELECT postnumber, cntaccess FROM {$table_name} WHERE postnumber = %d" ,
64
- $post->ID
 
65
  ) );
66
  $total_count = $resultscount ? $resultscount->cntaccess : 0;
67
 
@@ -82,7 +83,7 @@ function tptn_call_meta_box() {
82
  <p>
83
  <label for="thumb_meta"><?php _e( "Location of thumbnail:", TPTN_LOCAL_NAME ); ?></label>
84
  <input type="text" id="thumb_meta" name="thumb_meta" value="<?php echo esc_url( $value ) ?>" style="width:100%" />
85
- <em><?php _e( "Enter the full URL to the image (JPG, PNG or GIF) you'd like to use. This image will be used for the post. It will be resized to the thumbnail size set under Settings &raquo; Related Posts &raquo; Output Options", TPTN_LOCAL_NAME ); ?></em>
86
  <em><?php _e( "The URL above is saved in the meta field: ", TPTN_LOCAL_NAME ); ?></em><strong><?php echo $tptn_settings['thumb_meta']; ?></strong>
87
  </p>
88
 
@@ -118,17 +119,22 @@ function tptn_save_meta_box( $post_id ) {
118
  // Update the posts view count
119
  if ( ( isset( $_POST['total_count'] ) ) && ( current_user_can( 'manage_options' ) ) ) {
120
  $total_count = intval( $_POST['total_count'] );
 
 
121
  if ( 0 <> $total_count ) {
 
122
  $tt = $wpdb->query( $wpdb->prepare(
123
- "INSERT INTO {$table_name} (postnumber, cntaccess) VALUES('%d', '%d') ON DUPLICATE KEY UPDATE cntaccess= %d ",
124
  $post_id,
125
  $total_count,
 
126
  $total_count
127
  ) );
128
  } else {
129
  $resultscount = $wpdb->query( $wpdb->prepare(
130
- "DELETE FROM {$table_name} WHERE postnumber = %d ",
131
- $post_id
 
132
  ) );
133
  }
134
  }
@@ -139,6 +145,7 @@ function tptn_save_meta_box( $post_id ) {
139
  }
140
 
141
  $tptn_post_meta = get_post_meta( $post_id, $tptn_settings['thumb_meta'], true );
 
142
  if ( $tptn_post_meta && '' != $tptn_post_meta ) {
143
  $gotmeta = true;
144
  } else {
8
  * @author Ajay D'Souza <me@ajaydsouza.com>
9
  * @license GPL-2.0+
10
  * @link http://ajaydsouza.com
11
+ * @copyright 2008-2015 Ajay D'Souza
12
  */
13
 
14
  /**** If this file is called directly, abort. ****/
60
  wp_nonce_field( 'tptn_meta_box', 'tptn_meta_box_nonce' );
61
 
62
  $resultscount = $wpdb->get_row( $wpdb->prepare(
63
+ "SELECT postnumber, cntaccess FROM {$table_name} WHERE postnumber = %d AND blog_id = %d " ,
64
+ $post->ID,
65
+ get_current_blog_id()
66
  ) );
67
  $total_count = $resultscount ? $resultscount->cntaccess : 0;
68
 
83
  <p>
84
  <label for="thumb_meta"><?php _e( "Location of thumbnail:", TPTN_LOCAL_NAME ); ?></label>
85
  <input type="text" id="thumb_meta" name="thumb_meta" value="<?php echo esc_url( $value ) ?>" style="width:100%" />
86
+ <em><?php _e( "Enter the full URL to the image (JPG, PNG or GIF) you'd like to use. This image will be used for the post. It will be resized to the thumbnail size set under Top 10 Settings &raquo; Thumbnail options.", TPTN_LOCAL_NAME ); ?></em>
87
  <em><?php _e( "The URL above is saved in the meta field: ", TPTN_LOCAL_NAME ); ?></em><strong><?php echo $tptn_settings['thumb_meta']; ?></strong>
88
  </p>
89
 
119
  // Update the posts view count
120
  if ( ( isset( $_POST['total_count'] ) ) && ( current_user_can( 'manage_options' ) ) ) {
121
  $total_count = intval( $_POST['total_count'] );
122
+ $blog_id = get_current_blog_id();
123
+
124
  if ( 0 <> $total_count ) {
125
+
126
  $tt = $wpdb->query( $wpdb->prepare(
127
+ "INSERT INTO {$table_name} (postnumber, cntaccess, blog_id) VALUES('%d', '%d', '%d') ON DUPLICATE KEY UPDATE cntaccess= %d ",
128
  $post_id,
129
  $total_count,
130
+ $blog_id,
131
  $total_count
132
  ) );
133
  } else {
134
  $resultscount = $wpdb->query( $wpdb->prepare(
135
+ "DELETE FROM {$table_name} WHERE postnumber = %d AND blog_id = %d",
136
+ $post_id,
137
+ $blog_id
138
  ) );
139
  }
140
  }
145
  }
146
 
147
  $tptn_post_meta = get_post_meta( $post_id, $tptn_settings['thumb_meta'], true );
148
+
149
  if ( $tptn_post_meta && '' != $tptn_post_meta ) {
150
  $gotmeta = true;
151
  } else {
admin/admin.php CHANGED
@@ -8,7 +8,7 @@
8
  * @author Ajay D'Souza <me@ajaydsouza.com>
9
  * @license GPL-2.0+
10
  * @link http://ajaydsouza.com
11
- * @copyright 2008-2014 Ajay D'Souza
12
  */
13
 
14
  /**** If this file is called directly, abort. ****/
@@ -44,6 +44,8 @@ function tptn_options() {
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 */
@@ -358,6 +360,21 @@ function tptn_options() {
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>
8
  * @author Ajay D'Souza <me@ajaydsouza.com>
9
  * @license GPL-2.0+
10
  * @link http://ajaydsouza.com
11
+ * @copyright 2008-2015 Ajay D'Souza
12
  */
13
 
14
  /**** If this file is called directly, abort. ****/
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['uninstall_clean_options'] = isset( $_POST['uninstall_clean_options'] ) ? true : false;
48
+ $tptn_settings['uninstall_clean_tables'] = isset( $_POST['uninstall_clean_tables'] ) ? true : false;
49
  $tptn_settings['show_credit'] = isset( $_POST['show_credit'] ) ? true : false;
50
 
51
  /* Counter and tracker options */
360
  <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>
361
  </td>
362
  </tr>
363
+ <tr>
364
+ <th scope="row"><label for="uninstall_clean_options"><?php _e( 'Delete options on uninstall', TPTN_LOCAL_NAME ); ?></label></th>
365
+ <td>
366
+ <input type="checkbox" name="uninstall_clean_options" id="uninstall_clean_options" <?php if ( $tptn_settings['uninstall_clean_options'] ) echo 'checked="checked"' ?> />
367
+ <p class="description"><?php _e( 'If this is checked, all settings related to Top 10 are removed from the database if you choose to uninstall/delete the plugin.', TPTN_LOCAL_NAME ); ?></p>
368
+ </td>
369
+ </tr>
370
+ <tr>
371
+ <th scope="row"><label for="uninstall_clean_tables"><?php _e( 'Delete counter data on uninstall', TPTN_LOCAL_NAME ); ?></label></th>
372
+ <td>
373
+ <input type="checkbox" name="uninstall_clean_tables" id="uninstall_clean_tables" <?php if ( $tptn_settings['uninstall_clean_tables'] ) echo 'checked="checked"' ?> />
374
+ <p class="description"><?php _e( 'If this is checked, the tables containing the counter statistics are removed from the database if you choose to uninstall/delete the plugin.', TPTN_LOCAL_NAME ); ?></p>
375
+ <p class="description"><?php _e( "Keep this unchecked if you choose to reinstall the plugin and don't want to lose your counter data.", TPTN_LOCAL_NAME ); ?></p>
376
+ </td>
377
+ </tr>
378
  <tr>
379
  <th scope="row"><label for="show_credit"><?php _e( 'Link to Top 10 plugin page', TPTN_LOCAL_NAME ); ?></label></th>
380
  <td>
includes/class-top-10-widget.php CHANGED
@@ -6,7 +6,7 @@
6
  * @author Ajay D'Souza <me@ajaydsouza.com>
7
  * @license GPL-2.0+
8
  * @link http://ajaydsouza.com
9
- * @copyright 2008-2014 Ajay D'Souza
10
  */
11
 
12
  // If this file is called directly, abort.
@@ -125,9 +125,9 @@ class Top_Ten_Widget extends WP_Widget {
125
  *
126
  * @since 2.0.0
127
  *
128
- * @param array $tptn_settings Top 10 settings array
129
  */
130
- do_action( 'tptn_widget_options_after', $tptn_settings );
131
  ?>
132
 
133
  <?php
6
  * @author Ajay D'Souza <me@ajaydsouza.com>
7
  * @license GPL-2.0+
8
  * @link http://ajaydsouza.com
9
+ * @copyright 2008-2015 Ajay D'Souza
10
  */
11
 
12
  // If this file is called directly, abort.
125
  *
126
  * @since 2.0.0
127
  *
128
+ * @param array $instance Widget options array
129
  */
130
+ do_action( 'tptn_widget_options_after', $instance );
131
  ?>
132
 
133
  <?php
includes/top-10-addcount.js.php CHANGED
@@ -1,12 +1,12 @@
1
  <?php
2
  /**
3
- * Add count to database.
4
  *
5
  * @package Top_Ten
6
  * @author Ajay D'Souza <me@ajaydsouza.com>
7
  * @license GPL-2.0+
8
  * @link http://ajaydsouza.com
9
- * @copyright 2008-2014 Ajay D'Souza
10
  */
11
  Header( "content-type: application/x-javascript" );
12
 
@@ -33,22 +33,23 @@ global $wpdb;
33
  tptn_inc_count();
34
  function tptn_inc_count() {
35
  global $wpdb;
36
- $table_name = $wpdb->prefix . "top_ten";
37
- $top_ten_daily = $wpdb->prefix . "top_ten_daily";
38
  $str = '';
39
 
40
  $id = intval( $_GET['top_ten_id'] );
 
41
  $activate_counter = intval( $_GET['activate_counter'] );
 
42
  if ( $id > 0 ) {
43
  if ( ( 1 == $activate_counter ) || ( 11 == $activate_counter ) ) {
44
- $tt = $wpdb->query( $wpdb->prepare( "INSERT INTO {$table_name} (postnumber, cntaccess) VALUES('%d', '1') ON DUPLICATE KEY UPDATE cntaccess= cntaccess+1 ", $id ) );
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;
52
  }
53
  }
54
  echo '<!-- ' . $str . ' -->';
1
  <?php
2
  /**
3
+ * Update counts to database.
4
  *
5
  * @package Top_Ten
6
  * @author Ajay D'Souza <me@ajaydsouza.com>
7
  * @license GPL-2.0+
8
  * @link http://ajaydsouza.com
9
+ * @copyright 2008-2015 Ajay D'Souza
10
  */
11
  Header( "content-type: application/x-javascript" );
12
 
33
  tptn_inc_count();
34
  function tptn_inc_count() {
35
  global $wpdb;
36
+ $table_name = $wpdb->base_prefix . "top_ten";
37
+ $top_ten_daily = $wpdb->base_prefix . "top_ten_daily";
38
  $str = '';
39
 
40
  $id = intval( $_GET['top_ten_id'] );
41
+ $blog_id = intval( $_GET['top_ten_blog_id'] );
42
  $activate_counter = intval( $_GET['activate_counter'] );
43
+
44
  if ( $id > 0 ) {
45
  if ( ( 1 == $activate_counter ) || ( 11 == $activate_counter ) ) {
46
+ $tt = $wpdb->query( $wpdb->prepare( "INSERT INTO {$table_name} (postnumber, cntaccess, blog_id) VALUES('%d', '1', '%d') ON DUPLICATE KEY UPDATE cntaccess= cntaccess+1 ", $id, $blog_id ) );
47
+ $str .= ( FALSE === $tt ) ? 'tte' : 'tt' . $tt;
48
  }
49
  if ( ( 10 == $activate_counter ) || ( 11 == $activate_counter ) ) {
50
  $current_date = gmdate( 'Y-m-d H', current_time( 'timestamp', 1 ) );
51
+ $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 ) );
52
+ $str .= ( FALSE === $ttd ) ? ' ttde' : ' ttd' . $ttd;
 
53
  }
54
  }
55
  echo '<!-- ' . $str . ' -->';
includes/top-10-counter.js.php CHANGED
@@ -6,7 +6,7 @@
6
  * @author Ajay D'Souza <me@ajaydsouza.com>
7
  * @license GPL-2.0+
8
  * @link http://ajaydsouza.com
9
- * @copyright 2008-2014 Ajay D'Souza
10
  */
11
  Header( "content-type: application/x-javascript" );
12
 
6
  * @author Ajay D'Souza <me@ajaydsouza.com>
7
  * @license GPL-2.0+
8
  * @link http://ajaydsouza.com
9
+ * @copyright 2008-2015 Ajay D'Souza
10
  */
11
  Header( "content-type: application/x-javascript" );
12
 
includes/top-10-daily.js.php CHANGED
@@ -6,7 +6,7 @@
6
  * @author Ajay D'Souza <me@ajaydsouza.com>
7
  * @license GPL-2.0+
8
  * @link http://ajaydsouza.com
9
- * @copyright 2008-2014 Ajay D'Souza
10
  */
11
  Header( "content-type: application/x-javascript" );
12
 
6
  * @author Ajay D'Souza <me@ajaydsouza.com>
7
  * @license GPL-2.0+
8
  * @link http://ajaydsouza.com
9
+ * @copyright 2008-2015 Ajay D'Souza
10
  */
11
  Header( "content-type: application/x-javascript" );
12
 
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: 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,7 +61,7 @@ msgstr "Əvvəlki"
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,155 +69,155 @@ msgstr "Populyar yazılar"
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
 
76
- #: admin/admin-metabox.php:71
77
  #, fuzzy
78
  msgid "Visit count:"
79
  msgstr "Statistikanı sbros etmək"
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 "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 "
@@ -225,11 +225,37 @@ msgid ""
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,59 +264,59 @@ msgstr ""
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,11 +324,11 @@ msgid ""
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,233 +336,233 @@ msgid ""
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,79 +570,79 @@ msgid ""
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,7 +652,7 @@ msgstr ""
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,21 +662,21 @@ msgstr ""
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,54 +687,54 @@ msgstr ""
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,65 +742,65 @@ msgid ""
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,170 +808,170 @@ msgstr ""
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
 
@@ -1059,19 +1085,19 @@ msgstr "<h3>Gündəlik Populyar</h3>"
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
 
2
  msgstr ""
3
  "Project-Id-Version: Топ 10\n"
4
  "Report-Msgid-Bugs-To: \n"
5
+ "POT-Creation-Date: 2015-01-03 01: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:1174
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:1263
73
  msgid "Top 10"
74
  msgstr "Top 10 yazılar"
75
 
76
+ #: admin/admin-metabox.php:72
77
  #, fuzzy
78
  msgid "Visit count:"
79
  msgstr "Statistikanı sbros etmək"
80
 
81
+ #: admin/admin-metabox.php:74
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:84
88
  msgid "Location of thumbnail:"
89
  msgstr ""
90
 
91
+ #: admin/admin-metabox.php:86
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 Top 10 Settings &raquo; Thumbnail options."
96
  msgstr ""
97
 
98
+ #: admin/admin-metabox.php:87
99
  msgid "The URL above is saved in the meta field: "
100
  msgstr ""
101
 
102
+ #: admin/admin.php:163
103
  msgid "Options saved successfully."
104
  msgstr "Opsiyalar müvəffəqiyyətlə yaddaşda saxlanılıb."
105
 
106
+ #: admin/admin.php:173
107
  msgid "Options set to Default."
108
  msgstr "Opsiyalalr standard opsiyasına qaytarılıb."
109
 
110
+ #: admin/admin.php:179
111
  msgid "Top 10 popular posts reset"
112
  msgstr "10 populyar yazı statisticasını pozmaq"
113
 
114
+ #: admin/admin.php:185
115
  msgid "Top 10 daily popular posts reset"
116
  msgstr "10 gündəlik populyar yazı statisticasını pozmaq"
117
 
118
+ #: admin/admin.php:192
119
  msgid "Duplicate rows cleaned from tables"
120
  msgstr ""
121
 
122
+ #: admin/admin.php:204
123
  msgid "Scheduled maintenance enabled / modified"
124
  msgstr ""
125
 
126
+ #: admin/admin.php:208
127
  msgid "Scheduled maintenance disabled"
128
  msgstr ""
129
 
130
+ #: admin/admin.php:247
131
  msgid "Counts from selected sites have been imported."
132
  msgstr ""
133
 
134
+ #: admin/admin.php:272
135
  msgid ""
136
  "Selected tables have been deleted. Note that only imported tables have been "
137
  "deleted."
138
  msgstr ""
139
 
140
+ #: admin/admin.php:280 admin/admin.php:1263 admin/admin.php:1266
141
  #, fuzzy
142
  msgid "Top 10 Settings"
143
  msgstr "Kökləmələr"
144
 
145
+ #: admin/admin.php:292 admin/admin.php:314
146
  msgid "General options"
147
  msgstr ""
148
 
149
+ #: admin/admin.php:293 admin/admin.php:406
150
  msgid "Counter and tracker options"
151
  msgstr ""
152
 
153
+ #: admin/admin.php:294 admin/admin.php:511
154
  msgid "Popular post list options"
155
  msgstr ""
156
 
157
+ #: admin/admin.php:295 admin/admin.php:706
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:296
164
  msgid "Custom styles"
165
  msgstr ""
166
 
167
+ #: admin/admin.php:297 admin/admin.php:937
168
  msgid "Maintenance"
169
  msgstr ""
170
 
171
+ #: admin/admin.php:313 admin/admin.php:405 admin/admin.php:510
172
+ #: admin/admin.php:705 admin/admin.php:868 admin/admin.php:936
173
+ #: admin/admin.php:1000 admin/admin.php:1021 admin/admin.php:1205
174
+ #: admin/admin.php:1225 admin/admin.php:1235
175
  msgid "Click to toggle"
176
  msgstr ""
177
 
178
+ #: admin/admin.php:330
179
  msgid "Enable Overall stats"
180
  msgstr ""
181
 
182
+ #: admin/admin.php:336
183
  msgid "Enable Daily stats"
184
  msgstr ""
185
 
186
+ #: admin/admin.php:342
187
  msgid "Cache fix:"
188
  msgstr ""
189
 
190
+ #: admin/admin.php:345
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:349
198
  msgid "Start daily counts from midnight:"
199
  msgstr ""
200
 
201
+ #: admin/admin.php:352
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:356
209
  msgid "Daily popular contains top posts over:"
210
  msgstr ""
211
 
212
+ #: admin/admin.php:358
213
  msgid "day(s)"
214
  msgstr ""
215
 
216
+ #: admin/admin.php:359
217
  msgid "hour(s)"
218
  msgstr ""
219
 
220
+ #: admin/admin.php:360
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 "
225
  "overridden in the widget."
226
  msgstr ""
227
 
228
+ #: admin/admin.php:364
229
+ msgid "Delete options on uninstall"
230
+ msgstr ""
231
+
232
+ #: admin/admin.php:367
233
+ msgid ""
234
+ "If this is checked, all settings related to Top 10 are removed from the "
235
+ "database if you choose to uninstall/delete the plugin."
236
+ msgstr ""
237
+
238
+ #: admin/admin.php:371
239
+ msgid "Delete counter data on uninstall"
240
+ msgstr ""
241
+
242
+ #: admin/admin.php:374
243
+ msgid ""
244
+ "If this is checked, the tables containing the counter statistics are removed "
245
+ "from the database if you choose to uninstall/delete the plugin."
246
+ msgstr ""
247
+
248
+ #: admin/admin.php:375
249
+ msgid ""
250
+ "Keep this unchecked if you choose to reinstall the plugin and don't want to "
251
+ "lose your counter data."
252
+ msgstr ""
253
+
254
+ #: admin/admin.php:379
255
  msgid "Link to Top 10 plugin page"
256
  msgstr ""
257
 
258
+ #: admin/admin.php:382
259
  #, fuzzy
260
  msgid ""
261
  "A link to the plugin is added as an extra list item to the list of popular "
264
  "Popyulyar siyahının altnda ssılkanı qoymaq lazımdır? Plaginin müəllifi Siz "
265
  "onu qoyduğunuz halda Sizə çox minnətdar olardı!"
266
 
267
+ #: admin/admin.php:387 admin/admin.php:492 admin/admin.php:687
268
+ #: admin/admin.php:850 admin/admin.php:916 admin/admin.php:993
269
  #, fuzzy
270
  msgid "Save Options"
271
  msgstr "Opsiyalar:"
272
 
273
+ #: admin/admin.php:422
274
  #, fuzzy
275
  msgid "Display number of views on:"
276
  msgstr "Posta baxılmasının miqdarını göstərmək lazımdır?"
277
 
278
+ #: admin/admin.php:424
279
  msgid "Posts"
280
  msgstr ""
281
 
282
+ #: admin/admin.php:425
283
  #, fuzzy
284
  msgid "Pages"
285
  msgstr "Səhifə"
286
 
287
+ #: admin/admin.php:426
288
  msgid "Home page"
289
  msgstr ""
290
 
291
+ #: admin/admin.php:427
292
  msgid "Feeds"
293
  msgstr ""
294
 
295
+ #: admin/admin.php:428
296
  msgid "Category archives"
297
  msgstr ""
298
 
299
+ #: admin/admin.php:429
300
  msgid "Tag archives"
301
  msgstr ""
302
 
303
+ #: admin/admin.php:430
304
  msgid "Other archives"
305
  msgstr ""
306
 
307
+ #: admin/admin.php:431
308
  msgid ""
309
  "If you choose to disable this, please add <code>&lt;?php if "
310
  "( function_exists ( 'echo_tptn_post_count' ) ) echo_tptn_post_count(); ?&gt;"
311
  "</code> to your template file where you want it displayed"
312
  msgstr ""
313
 
314
+ #: admin/admin.php:435
315
  #, fuzzy
316
  msgid "Format to display the post views:"
317
  msgstr "Miqdarı göstərən format:"
318
 
319
+ #: admin/admin.php:438
320
  msgid ""
321
  "Use <code>%totalcount%</code> to display the total count, <code>%dailycount"
322
  "%</code> to display the daily count and <code>%overallcount%</code> to "
324
  "options displays <code>[Visited 123 times, 23 visits today]</code>"
325
  msgstr ""
326
 
327
+ #: admin/admin.php:442
328
  msgid "What do display when there are no visits?"
329
  msgstr ""
330
 
331
+ #: admin/admin.php:445
332
  msgid ""
333
  "This text applies only when there are 0 hits for the post and it isn't a "
334
  "single page. e.g. if you display post views on the homepage or archives then "
336
  "option."
337
  msgstr ""
338
 
339
+ #: admin/admin.php:449
340
  msgid "Always display latest post count"
341
  msgstr ""
342
 
343
+ #: admin/admin.php:452
344
  msgid ""
345
  "This option uses JavaScript and will increase your page load time. Turn this "
346
  "off if you are not using caching plugins or are OK with displaying older "
347
  "cached counts."
348
  msgstr ""
349
 
350
+ #: admin/admin.php:456
351
  msgid "Track visits of authors on their own posts?"
352
  msgstr "Müəllif tərəfindən edilmiş yazıları nəzərə almaq lazımdır?"
353
 
354
+ #: admin/admin.php:459
355
  msgid ""
356
  "Disabling this option will stop authors visits tracked on their own posts"
357
  msgstr ""
358
 
359
+ #: admin/admin.php:463
360
  #, fuzzy
361
  msgid "Track visits of admins?"
362
  msgstr "Müəllif tərəfindən edilmiş yazıları nəzərə almaq lazımdır?"
363
 
364
+ #: admin/admin.php:466
365
  msgid "Disabling this option will stop admin visits being tracked."
366
  msgstr ""
367
 
368
+ #: admin/admin.php:470
369
  #, fuzzy
370
  msgid "Track visits of Editors?"
371
  msgstr "Müəllif tərəfindən edilmiş yazıları nəzərə almaq lazımdır?"
372
 
373
+ #: admin/admin.php:473
374
  msgid "Disabling this option will stop editor visits being tracked."
375
  msgstr ""
376
 
377
+ #: admin/admin.php:477
378
  msgid "Display page views on Posts and Pages in Admin"
379
  msgstr ""
380
 
381
+ #: admin/admin.php:480
382
  msgid ""
383
  "Adds three columns called Total Views, Today's Views and Views to All Posts "
384
  "and All Pages"
385
  msgstr ""
386
 
387
+ #: admin/admin.php:484
388
  #, fuzzy
389
  msgid "Show number of views to non-admins"
390
  msgstr "Səhifədə baxılmasının miqdarını göstərmək lazımdır?"
391
 
392
+ #: admin/admin.php:487
393
  msgid ""
394
  "If you disable this then non-admins won't see the above columns or view the "
395
  "independent pages with the top posts"
396
  msgstr ""
397
 
398
+ #: admin/admin.php:527
399
  msgid "Number of popular posts to display: "
400
  msgstr "Populyar postların miqdarının nümayişi:"
401
 
402
+ #: admin/admin.php:530
403
  msgid ""
404
  "Maximum number of posts that will be displayed in the list. This option is "
405
  "used if you don't specify the number of posts in the widget or shortcodes"
406
  msgstr ""
407
 
408
+ #: admin/admin.php:534
409
  msgid "Post types to include in results (including custom post types)"
410
  msgstr ""
411
 
412
+ #: admin/admin.php:546
413
  msgid "List of post or page IDs to exclude from the results: "
414
  msgstr ""
415
 
416
+ #: admin/admin.php:548 admin/admin.php:655
417
  msgid "Enter comma separated list of IDs. e.g. 188,320,500"
418
  msgstr ""
419
 
420
+ #: admin/admin.php:552
421
  msgid "Exclude Categories: "
422
  msgstr ""
423
 
424
+ #: admin/admin.php:567
425
  msgid ""
426
  "Comma separated list of category slugs. The field above has an autocomplete "
427
  "so simply start typing in the starting letters and it will prompt you with "
428
  "options"
429
  msgstr ""
430
 
431
+ #: admin/admin.php:572
432
  msgid "Title of popular posts: "
433
  msgstr "Populyar yazılarının başlığı:"
434
 
435
+ #: admin/admin.php:578
436
  msgid "Title of daily popular posts: "
437
  msgstr "Gündəlik populyual yazılışların başlığı:"
438
 
439
+ #: admin/admin.php:584
440
  msgid "When there are no posts, what should be shown?"
441
  msgstr ""
442
 
443
+ #: admin/admin.php:588
444
  msgid "Blank Output"
445
  msgstr ""
446
 
447
+ #: admin/admin.php:592
448
  msgid "Display:"
449
  msgstr ""
450
 
451
+ #: admin/admin.php:597
452
  msgid "Show post excerpt in list?"
453
  msgstr "Yazılış mətnini siyahıda göstərmək lazımdır?"
454
 
455
+ #: admin/admin.php:603
456
  msgid "Length of excerpt (in words): "
457
  msgstr "Çıxardılmış mətnin uzunluğu (söz ilə):"
458
 
459
+ #: admin/admin.php:609
460
  #, fuzzy
461
  msgid "Show post author in list?"
462
  msgstr "Yazılış mətnini siyahıda göstərmək lazımdır?"
463
 
464
+ #: admin/admin.php:615
465
  #, fuzzy
466
  msgid "Show post date in list?"
467
  msgstr "Yazılış mətnini siyahıda göstərmək lazımdır?"
468
 
469
+ #: admin/admin.php:621
470
  msgid "Limit post title length (in characters)"
471
  msgstr ""
472
 
473
+ #: admin/admin.php:627
474
  #, fuzzy
475
  msgid "Show view count in list?"
476
  msgstr "Yazılış mətnini siyahıda göstərmək lazımdır?"
477
 
478
+ #: admin/admin.php:633
479
  msgid "Always display latest post count in the daily lists?"
480
  msgstr ""
481
 
482
+ #: admin/admin.php:636
483
  msgid ""
484
  "This option uses JavaScript and will increase your page load time. When you "
485
  "enable this option, the daily widget will not use the options set there, but "
486
  "options will need to be set on this screen."
487
  msgstr ""
488
 
489
+ #: admin/admin.php:640
490
  msgid "Open links in new window"
491
  msgstr ""
492
 
493
+ #: admin/admin.php:646
494
  msgid "Add nofollow attribute to links in the list"
495
  msgstr ""
496
 
497
+ #: admin/admin.php:652
498
  msgid "Exclude display of related posts on these posts / pages"
499
  msgstr ""
500
 
501
+ #: admin/admin.php:659
502
  #, fuzzy
503
  msgid "Customise the list HTML"
504
  msgstr "Suiyahı formasının kökləmələri:"
505
 
506
+ #: admin/admin.php:662
507
  msgid "HTML to display before the list of posts: "
508
  msgstr "Siyahıdan qabaq istifadə edilən HTML-teqi:"
509
 
510
+ #: admin/admin.php:668
511
  msgid "HTML to display before each list item: "
512
  msgstr "Siyahıda hər maddənin qabağında istifadə edilən HTML-teqi:"
513
 
514
+ #: admin/admin.php:674
515
  msgid "HTML to display after each list item: "
516
  msgstr "Siyahıda hər maddədən sonra istifadə edilən HTML-teqi: "
517
 
518
+ #: admin/admin.php:680
519
  msgid "HTML to display after the list of posts: "
520
  msgstr "Siyahıdan sonra istifadə edilən HTML-teqi:"
521
 
522
+ #: admin/admin.php:721
523
  msgid "Location of post thumbnail:"
524
  msgstr ""
525
 
526
+ #: admin/admin.php:725
527
  #, fuzzy
528
  msgid "Display thumbnails inline with posts, before title"
529
  msgstr "Mətni və əvvəlcədən baxışı göstərmək"
530
 
531
+ #: admin/admin.php:730
532
  #, fuzzy
533
  msgid "Display thumbnails inline with posts, after title"
534
  msgstr "Mətni və əvvəlcədən baxışı göstərmək"
535
 
536
+ #: admin/admin.php:735
537
  msgid "Display only thumbnails, no text"
538
  msgstr "Yalnız əvvəlcədən baxışı göstərmək, mətnsiz"
539
 
540
+ #: admin/admin.php:740
541
  msgid "Do not display thumbnails, only text."
542
  msgstr "Yalnız mətini göstərmək, əvəlcədən baxışsız"
543
 
544
+ #: admin/admin.php:744
545
  msgid "Thumbnail size:"
546
  msgstr ""
547
 
548
+ #: admin/admin.php:768
549
  msgid "Custom size"
550
  msgstr ""
551
 
552
+ #: admin/admin.php:771
553
  msgid ""
554
  "You can choose from existing image sizes above or create a custom size. If "
555
  "you have chosen Custom size above, then enter the width, height and crop "
556
  "settings below. For best results, use a cropped image."
557
  msgstr ""
558
 
559
+ #: admin/admin.php:772
560
  msgid ""
561
  "If you change the width and/or height below, existing images will not be "
562
  "automatically resized."
563
  msgstr ""
564
 
565
+ #: admin/admin.php:773
566
  #, php-format
567
  msgid ""
568
  "I recommend using <a href='%s' target='_blank'>Force Regenerate Thumbnails</"
570
  "regenerate all image sizes."
571
  msgstr ""
572
 
573
+ #: admin/admin.php:776
574
  msgid "Width of custom thumbnail:"
575
  msgstr ""
576
 
577
+ #: admin/admin.php:781
578
  msgid "Height of custom thumbnail"
579
  msgstr ""
580
 
581
+ #: admin/admin.php:786
582
  msgid "Crop mode:"
583
  msgstr ""
584
 
585
+ #: admin/admin.php:790
586
  msgid ""
587
  "By default, thumbnails will be proportionately cropped. Check this box to "
588
  "hard crop the thumbnails."
589
  msgstr ""
590
 
591
+ #: admin/admin.php:791
592
  #, php-format
593
  msgid "<a href='%s' target='_blank'>Difference between soft and hard crop</a>"
594
  msgstr ""
595
 
596
+ #: admin/admin.php:793
597
  msgid ""
598
  "Since you're using the default styles set under the Custom Styles section, "
599
  "the width and height is fixed at 65px and crop mode is enabled."
600
  msgstr ""
601
 
602
+ #: admin/admin.php:798
603
  msgid "Style attributes / Width and Height HTML attributes:"
604
  msgstr ""
605
 
606
+ #: admin/admin.php:802
607
  msgid "Style attributes are used for width and height."
608
  msgstr ""
609
 
610
+ #: admin/admin.php:807
611
  msgid "HTML width and height attributes are used for width and height."
612
  msgstr ""
613
 
614
+ #: admin/admin.php:811
615
  msgid "Use timthumb to generate thumbnails? "
616
  msgstr ""
617
 
618
+ #: admin/admin.php:814
619
  msgid ""
620
  "If checked, <a href=\"http://www.binarymoon.co.uk/projects/timthumb/\" "
621
  "target=\"_blank\">timthumb</a> will be used to generate thumbnails"
622
  msgstr ""
623
 
624
+ #: admin/admin.php:817
625
  msgid "Quality of thumbnails generated by timthumb:"
626
  msgstr ""
627
 
628
+ #: admin/admin.php:820
629
  msgid ""
630
  "Enter values between 0 and 100 only. 100 is highest quality and the highest "
631
  "file size. Suggested maximum value is 95. Default is 75."
632
  msgstr ""
633
 
634
+ #: admin/admin.php:823
635
  #, fuzzy
636
  msgid "Post thumbnail meta field name: "
637
  msgstr "Yazılışlara əvvəlcədən baxma kökləmələri:"
638
 
639
+ #: admin/admin.php:826
640
  msgid ""
641
  "The value of this field should contain the image source and is set in the "
642
  "<em>Add New Post</em> screen"
643
  msgstr ""
644
 
645
+ #: admin/admin.php:829
646
  #, fuzzy
647
  msgid ""
648
  "If the postmeta is not set, then should the plugin extract the first image "
652
  "şəkilil çıxardacaq. Balaca kopyasını yaradılması ilə əlaqədar olaraq bu "
653
  "birinci dəfə şəkilin yükləməsini bir az uzada bilər. "
654
 
655
+ #: admin/admin.php:832
656
  #, fuzzy
657
  msgid ""
658
  "This could slow down the loading of your page if the first image in the "
662
  "şəkilil çıxardacaq. Balaca kopyasını yaradılması ilə əlaqədar olaraq bu "
663
  "birinci dəfə şəkilin yükləməsini bir az uzada bilər. "
664
 
665
+ #: admin/admin.php:835
666
  msgid "Use default thumbnail? "
667
  msgstr ""
668
 
669
+ #: admin/admin.php:838
670
  msgid ""
671
  "If checked, when no thumbnail is found, show a default one from the URL "
672
  "below. If not checked and no thumbnail is found, no image will be shown."
673
  msgstr ""
674
 
675
+ #: admin/admin.php:841
676
  msgid "Default thumbnail: "
677
  msgstr ""
678
 
679
+ #: admin/admin.php:845
680
  #, fuzzy
681
  msgid ""
682
  "The plugin will first check if the post contains a thumbnail. If it doesn't "
687
  "əvvəlcədən verilmiş sərbəst meta-sahə üzrə). Agər əvvəlcədən baxış yoxdursan "
688
  "onda standard şəkil çıxarılacaq:"
689
 
690
+ #: admin/admin.php:869
691
  msgid "Custom CSS"
692
  msgstr ""
693
 
694
+ #: admin/admin.php:884
695
  msgid "Use default style included in the plugin?"
696
  msgstr ""
697
 
698
+ #: admin/admin.php:887
699
  msgid ""
700
  "Top 10 includes a default style that makes your popular posts list to look "
701
  "beautiful. Check the box above if you want to use this."
702
  msgstr ""
703
 
704
+ #: admin/admin.php:888
705
  msgid ""
706
  "Enabling this option will turn on the thumbnails and set their width and "
707
  "height to 65px. It will also turn off the display of the author, excerpt and "
708
  "date if already enabled. Disabling this option will not revert any settings."
709
  msgstr ""
710
 
711
+ #: admin/admin.php:889
712
  #, php-format
713
  msgid ""
714
  "You can view the default style at <a href=\"%1$s\" target=\"_blank\">%1$s</a>"
715
  msgstr ""
716
 
717
+ #: admin/admin.php:892
718
  msgid "Custom CSS to add to header:"
719
  msgstr ""
720
 
721
+ #: admin/admin.php:897
722
  msgid ""
723
  "Do not include <code>style</code> tags. Check out the <a href=\"http://"
724
  "wordpress.org/extend/plugins/top-10/faq/\" target=\"_blank\">FAQ</a> for "
725
  "available CSS classes to style."
726
  msgstr ""
727
 
728
+ #: admin/admin.php:917
729
  #, fuzzy
730
  msgid "Default Options"
731
  msgstr "Plaginin kökləmələri:"
732
 
733
+ #: admin/admin.php:917
734
  msgid "Do you want to set options to Default?"
735
  msgstr "Siz plaginin kökləmələrin standard etmək lazımdır?"
736
 
737
+ #: admin/admin.php:941
738
  msgid ""
739
  "Over time the Daily Top 10 database grows in size, which reduces the "
740
  "performance of the plugin. Cleaning the database at regular intervals could "
742
  "will automatically delete entries older than 90 days."
743
  msgstr ""
744
 
745
+ #: admin/admin.php:942
746
  msgid ""
747
  "Note: When scheduled maintenance is enabled, WordPress will run the cron job "
748
  "everytime the job is rescheduled (i.e. you change the settings below)."
749
  msgstr ""
750
 
751
+ #: admin/admin.php:945
752
  msgid "Enable scheduled maintenance of daily tables:"
753
  msgstr ""
754
 
755
+ #: admin/admin.php:949
756
  msgid "Time to run maintenance"
757
  msgstr ""
758
 
759
+ #: admin/admin.php:950
760
  msgid "hrs"
761
  msgstr ""
762
 
763
+ #: admin/admin.php:950
764
  msgid "min"
765
  msgstr ""
766
 
767
+ #: admin/admin.php:952
768
  msgid "How often should the maintenance be run:"
769
  msgstr ""
770
 
771
+ #: admin/admin.php:956
772
  msgid "Daily"
773
  msgstr ""
774
 
775
+ #: admin/admin.php:960
776
  msgid "Weekly"
777
  msgstr ""
778
 
779
+ #: admin/admin.php:964
780
  msgid "Fortnightly"
781
  msgstr ""
782
 
783
+ #: admin/admin.php:968
784
  msgid "Monthly"
785
  msgstr ""
786
 
787
+ #: admin/admin.php:977
788
  msgid "The cron job has been scheduled. Maintenance will run "
789
  msgstr ""
790
 
791
+ #: admin/admin.php:982
792
  msgid "The cron job is missing. Please resave this page to add the job"
793
  msgstr ""
794
 
795
+ #: admin/admin.php:987
796
  msgid "Maintenance is turned off"
797
  msgstr ""
798
 
799
+ #: admin/admin.php:1001
800
  msgid "Reset count"
801
  msgstr "Statistikanı sbros etmək"
802
 
803
+ #: admin/admin.php:1004
804
  msgid ""
805
  "This cannot be reversed. Make sure that your database has been backed up "
806
  "before proceeding"
808
  "Statistikanın sbrosu geriya qaytarmaq olmaz. Sbros etməkdən qabaq əmin olun "
809
  "ki, Sizin məlumat bazasının kopiyası var!"
810
 
811
+ #: admin/admin.php:1007
812
  #, fuzzy
813
  msgid "Reset Popular Posts"
814
  msgstr "Populyar yazılar"
815
 
816
+ #: admin/admin.php:1007
817
  msgid "Are you sure you want to reset the popular posts?"
818
  msgstr ""
819
  "Siz əminsiniz ki, Populyar yazıları statistikanı sbros etmək istəyirsiniz?"
820
 
821
+ #: admin/admin.php:1008
822
  #, fuzzy
823
  msgid "Reset Daily Popular Posts"
824
  msgstr "Gündəlik Populyar Yazılar"
825
 
826
+ #: admin/admin.php:1008
827
  msgid "Are you sure you want to reset the daily popular posts?"
828
  msgstr ""
829
  "Siz əminsiniz ki, gündəlik populyar yazıları statistikanı sbros etmək "
830
  "istəyirsiniz?"
831
 
832
+ #: admin/admin.php:1009
833
  msgid "Clear duplicates"
834
  msgstr ""
835
 
836
+ #: admin/admin.php:1009
837
  msgid "This will delete the duplicate entries in the tables. Proceed?"
838
  msgstr "Cədvəldəki dublikat yazılar silinəcəklər. Davam edək?"
839
 
840
+ #: admin/admin.php:1022
841
  msgid "WordPress Multisite: Migrate Top 10 v1.x counts to 2.x"
842
  msgstr ""
843
 
844
+ #: admin/admin.php:1025
845
  msgid ""
846
  "If you've been using Top 10 v1.x on multisite, you would have needed to "
847
  "activate the plugin independently for each site. This would have resulted in "
848
  "two tables being created for each site in the network."
849
  msgstr ""
850
 
851
+ #: admin/admin.php:1026
852
  msgid ""
853
  "Top 10 v2.x onwards uses only a single table to record the count, keeping "
854
  "your database clean. You can use this tool to import the recorded counts "
855
  "from v1.x tables to the new v2.x table format."
856
  msgstr ""
857
 
858
+ #: admin/admin.php:1029
859
  msgid ""
860
  "If you do not see any tables below, then it means that either all data has "
861
  "already been imported or no relevant information has been found."
862
  msgstr ""
863
 
864
+ #: admin/admin.php:1032
865
  msgid ""
866
  "After running the importer, please verify that all the counts have been "
867
  "successfully imported. Only then should you delete any old tables!"
868
  msgstr ""
869
 
870
+ #: admin/admin.php:1066
871
  msgid "Blog ID"
872
  msgstr ""
873
 
874
+ #: admin/admin.php:1069
875
  msgid "Status"
876
  msgstr ""
877
 
878
+ #: admin/admin.php:1072
879
  msgid "Select to import"
880
  msgstr ""
881
 
882
+ #: admin/admin.php:1082
883
  msgid "Blog #"
884
  msgstr ""
885
 
886
+ #: admin/admin.php:1092
887
  msgid "Not imported"
888
  msgstr ""
889
 
890
+ #: admin/admin.php:1096
891
  msgid "Imported"
892
  msgstr ""
893
 
894
+ #: admin/admin.php:1117
895
  msgid "Begin import"
896
  msgstr ""
897
 
898
+ #: admin/admin.php:1118
899
  msgid "Delete selected tables"
900
  msgstr ""
901
 
902
+ #: admin/admin.php:1119
903
  msgid "Delete all imported tables"
904
  msgstr ""
905
 
906
+ #: admin/admin.php:1176 admin/admin.php:1272
907
  msgid "Daily Popular Posts"
908
  msgstr "Gündəlik Populyar Yazılar"
909
 
910
+ #: admin/admin.php:1206
911
  msgid "Support the development"
912
  msgstr "İnkişafı dəstək vermək"
913
 
914
+ #: admin/admin.php:1213
915
  msgid "Donation for Top 10"
916
  msgstr ""
917
 
918
+ #: admin/admin.php:1215
919
  msgid "Enter amount in USD: "
920
  msgstr "Miiqdarı USD ilə daxil et:"
921
 
922
+ #: admin/admin.php:1219
923
  #, fuzzy
924
  msgid "Send your donation to the author of Top 10"
925
  msgstr "Müəlifə ianə göndərin "
926
 
927
+ #: admin/admin.php:1226
928
  msgid "Follow me"
929
  msgstr ""
930
 
931
+ #: admin/admin.php:1236
932
  #, fuzzy
933
  msgid "Quick links"
934
  msgstr "Faydalı istenadlar"
935
 
936
+ #: admin/admin.php:1240
937
  #, fuzzy
938
  msgid "Top 10 plugin page"
939
  msgstr "plaginin səhifəsi"
940
 
941
+ #: admin/admin.php:1241
942
  msgid "Top 10 Github page"
943
  msgstr ""
944
 
945
+ #: admin/admin.php:1242
946
  msgid "Other plugins"
947
  msgstr "Digər plaginlər"
948
 
949
+ #: admin/admin.php:1243
950
  msgid "Ajay's blog"
951
  msgstr "Ajay-in blogu"
952
 
953
+ #: admin/admin.php:1244
954
  msgid "FAQ"
955
  msgstr ""
956
 
957
+ #: admin/admin.php:1245 admin/admin.php:1403
958
  msgid "Support"
959
  msgstr "Dəstək"
960
 
961
+ #: admin/admin.php:1246
962
  msgid "Reviews"
963
  msgstr ""
964
 
965
+ #: admin/admin.php:1269
966
  #, fuzzy
967
  msgid "Overall Popular Posts"
968
  msgstr "Bütün Populyar Yazılara Baxmaq"
969
 
970
+ #: admin/admin.php:1380
971
  msgid "Settings"
972
  msgstr "Kökləmələr"
973
 
974
+ #: admin/admin.php:1404
975
  msgid "Donate"
976
  msgstr "İanə etmək"
977
 
1085
  msgid "No top posts yet"
1086
  msgstr "10 populyar yazı statisticasını pozmaq"
1087
 
1088
+ #: top-10.php:1690
1089
  msgid "Once Weekly"
1090
  msgstr ""
1091
 
1092
+ #: top-10.php:1694
1093
  msgid "Once Fortnightly"
1094
  msgstr ""
1095
 
1096
+ #: top-10.php:1698
1097
  msgid "Once Monthly"
1098
  msgstr ""
1099
 
1100
+ #: top-10.php:1702
1101
  msgid "Once quarterly"
1102
  msgstr ""
1103
 
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: 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,7 +61,7 @@ msgstr "Папярэдняя старонка"
61
  msgid "Next"
62
  msgstr "Наступная старонка"
63
 
64
- #: admin/admin-dashboard.php:200 admin/admin.php:1157
65
  msgid "Popular Posts"
66
  msgstr "Папулярныя запісы"
67
 
@@ -69,155 +69,155 @@ msgstr "Папулярныя запісы"
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
 
76
- #: admin/admin-metabox.php:71
77
  msgid "Visit count:"
78
  msgstr ""
79
 
80
- #: admin/admin-metabox.php:73
81
  msgid ""
82
  "Enter a number above to update the visit count. Leaving the above box blank "
83
  "will set the count to zero"
84
  msgstr ""
85
 
86
- #: admin/admin-metabox.php:83
87
  msgid "Location of thumbnail:"
88
  msgstr ""
89
 
90
- #: admin/admin-metabox.php:85
91
  msgid ""
92
  "Enter the full URL to the image (JPG, PNG or GIF) you'd like to use. This "
93
  "image will be used for the post. It will be resized to the thumbnail size "
94
- "set under Settings &raquo; Related Posts &raquo; Output Options"
95
  msgstr ""
96
 
97
- #: admin/admin-metabox.php:86
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 "
@@ -225,11 +225,37 @@ msgid ""
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,59 +264,59 @@ msgstr ""
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,11 +324,11 @@ msgid ""
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,230 +336,230 @@ msgid ""
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,158 +567,158 @@ msgid ""
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,229 +726,229 @@ msgid ""
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
 
@@ -1028,19 +1054,19 @@ msgstr "<h3>Папулярныя сёння запісы</h3>"
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
 
2
  msgstr ""
3
  "Project-Id-Version: Топ 10\n"
4
  "Report-Msgid-Bugs-To: \n"
5
+ "POT-Creation-Date: 2015-01-03 01:54-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:1174
65
  msgid "Popular Posts"
66
  msgstr "Папулярныя запісы"
67
 
69
  msgid "Daily Popular"
70
  msgstr "Папулярныя сёння запісы"
71
 
72
+ #: admin/admin-metabox.php:38 admin/admin.php:1263
73
  msgid "Top 10"
74
  msgstr "Топ 10 запісаў"
75
 
76
+ #: admin/admin-metabox.php:72
77
  msgid "Visit count:"
78
  msgstr ""
79
 
80
+ #: admin/admin-metabox.php:74
81
  msgid ""
82
  "Enter a number above to update the visit count. Leaving the above box blank "
83
  "will set the count to zero"
84
  msgstr ""
85
 
86
+ #: admin/admin-metabox.php:84
87
  msgid "Location of thumbnail:"
88
  msgstr ""
89
 
90
+ #: admin/admin-metabox.php:86
91
  msgid ""
92
  "Enter the full URL to the image (JPG, PNG or GIF) you'd like to use. This "
93
  "image will be used for the post. It will be resized to the thumbnail size "
94
+ "set under Top 10 Settings &raquo; Thumbnail options."
95
  msgstr ""
96
 
97
+ #: admin/admin-metabox.php:87
98
  msgid "The URL above is saved in the meta field: "
99
  msgstr ""
100
 
101
+ #: admin/admin.php:163
102
  msgid "Options saved successfully."
103
  msgstr "Налады захаваны."
104
 
105
+ #: admin/admin.php:173
106
  msgid "Options set to Default."
107
  msgstr "Налады скінуты."
108
 
109
+ #: admin/admin.php:179
110
  #, fuzzy
111
  msgid "Top 10 popular posts reset"
112
  msgstr "Загаловак блока Папулярных запісаў:"
113
 
114
+ #: admin/admin.php:185
115
  #, fuzzy
116
  msgid "Top 10 daily popular posts reset"
117
  msgstr "Загаловак блока Папулярных сёння запісаў:"
118
 
119
+ #: admin/admin.php:192
120
  msgid "Duplicate rows cleaned from tables"
121
  msgstr ""
122
 
123
+ #: admin/admin.php:204
124
  msgid "Scheduled maintenance enabled / modified"
125
  msgstr ""
126
 
127
+ #: admin/admin.php:208
128
  msgid "Scheduled maintenance disabled"
129
  msgstr ""
130
 
131
+ #: admin/admin.php:247
132
  msgid "Counts from selected sites have been imported."
133
  msgstr ""
134
 
135
+ #: admin/admin.php:272
136
  msgid ""
137
  "Selected tables have been deleted. Note that only imported tables have been "
138
  "deleted."
139
  msgstr ""
140
 
141
+ #: admin/admin.php:280 admin/admin.php:1263 admin/admin.php:1266
142
  #, fuzzy
143
  msgid "Top 10 Settings"
144
  msgstr "Топ 10 запісаў"
145
 
146
+ #: admin/admin.php:292 admin/admin.php:314
147
  msgid "General options"
148
  msgstr ""
149
 
150
+ #: admin/admin.php:293 admin/admin.php:406
151
  msgid "Counter and tracker options"
152
  msgstr ""
153
 
154
+ #: admin/admin.php:294 admin/admin.php:511
155
  msgid "Popular post list options"
156
  msgstr ""
157
 
158
+ #: admin/admin.php:295 admin/admin.php:706
159
  #: includes/class-top-10-widget.php:103
160
  msgid "Thumbnail options"
161
  msgstr ""
162
 
163
+ #: admin/admin.php:296
164
  msgid "Custom styles"
165
  msgstr ""
166
 
167
+ #: admin/admin.php:297 admin/admin.php:937
168
  msgid "Maintenance"
169
  msgstr ""
170
 
171
+ #: admin/admin.php:313 admin/admin.php:405 admin/admin.php:510
172
+ #: admin/admin.php:705 admin/admin.php:868 admin/admin.php:936
173
+ #: admin/admin.php:1000 admin/admin.php:1021 admin/admin.php:1205
174
+ #: admin/admin.php:1225 admin/admin.php:1235
175
  msgid "Click to toggle"
176
  msgstr ""
177
 
178
+ #: admin/admin.php:330
179
  msgid "Enable Overall stats"
180
  msgstr ""
181
 
182
+ #: admin/admin.php:336
183
  msgid "Enable Daily stats"
184
  msgstr ""
185
 
186
+ #: admin/admin.php:342
187
  msgid "Cache fix:"
188
  msgstr ""
189
 
190
+ #: admin/admin.php:345
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:349
198
  msgid "Start daily counts from midnight:"
199
  msgstr ""
200
 
201
+ #: admin/admin.php:352
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:356
209
  msgid "Daily popular contains top posts over:"
210
  msgstr ""
211
 
212
+ #: admin/admin.php:358
213
  msgid "day(s)"
214
  msgstr ""
215
 
216
+ #: admin/admin.php:359
217
  msgid "hour(s)"
218
  msgstr ""
219
 
220
+ #: admin/admin.php:360
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 "
225
  "overridden in the widget."
226
  msgstr ""
227
 
228
+ #: admin/admin.php:364
229
+ msgid "Delete options on uninstall"
230
+ msgstr ""
231
+
232
+ #: admin/admin.php:367
233
+ msgid ""
234
+ "If this is checked, all settings related to Top 10 are removed from the "
235
+ "database if you choose to uninstall/delete the plugin."
236
+ msgstr ""
237
+
238
+ #: admin/admin.php:371
239
+ msgid "Delete counter data on uninstall"
240
+ msgstr ""
241
+
242
+ #: admin/admin.php:374
243
+ msgid ""
244
+ "If this is checked, the tables containing the counter statistics are removed "
245
+ "from the database if you choose to uninstall/delete the plugin."
246
+ msgstr ""
247
+
248
+ #: admin/admin.php:375
249
+ msgid ""
250
+ "Keep this unchecked if you choose to reinstall the plugin and don't want to "
251
+ "lose your counter data."
252
+ msgstr ""
253
+
254
+ #: admin/admin.php:379
255
  msgid "Link to Top 10 plugin page"
256
  msgstr ""
257
 
258
+ #: admin/admin.php:382
259
  #, fuzzy
260
  msgid ""
261
  "A link to the plugin is added as an extra list item to the list of popular "
264
  "Спасылка на ўбудову будзе дададзена да спісаў Папулярных запісаў. Мы будзем "
265
  "удзячныя Вам, калі Вы яе ўсё ж пакінеце!"
266
 
267
+ #: admin/admin.php:387 admin/admin.php:492 admin/admin.php:687
268
+ #: admin/admin.php:850 admin/admin.php:916 admin/admin.php:993
269
  #, fuzzy
270
  msgid "Save Options"
271
  msgstr "Налады ўбудовы:"
272
 
273
+ #: admin/admin.php:422
274
  #, fuzzy
275
  msgid "Display number of views on:"
276
  msgstr "Паказваць колькасць праглядаў запісу ў яе \"целе\"?"
277
 
278
+ #: admin/admin.php:424
279
  msgid "Posts"
280
  msgstr ""
281
 
282
+ #: admin/admin.php:425
283
  #, fuzzy
284
  msgid "Pages"
285
  msgstr "Старонка"
286
 
287
+ #: admin/admin.php:426
288
  msgid "Home page"
289
  msgstr ""
290
 
291
+ #: admin/admin.php:427
292
  msgid "Feeds"
293
  msgstr ""
294
 
295
+ #: admin/admin.php:428
296
  msgid "Category archives"
297
  msgstr ""
298
 
299
+ #: admin/admin.php:429
300
  msgid "Tag archives"
301
  msgstr ""
302
 
303
+ #: admin/admin.php:430
304
  msgid "Other archives"
305
  msgstr ""
306
 
307
+ #: admin/admin.php:431
308
  msgid ""
309
  "If you choose to disable this, please add <code>&lt;?php if "
310
  "( function_exists ( 'echo_tptn_post_count' ) ) echo_tptn_post_count(); ?&gt;"
311
  "</code> to your template file where you want it displayed"
312
  msgstr ""
313
 
314
+ #: admin/admin.php:435
315
  #, fuzzy
316
  msgid "Format to display the post views:"
317
  msgstr "Фармат адлюстравання колькасці праглядаў:"
318
 
319
+ #: admin/admin.php:438
320
  msgid ""
321
  "Use <code>%totalcount%</code> to display the total count, <code>%dailycount"
322
  "%</code> to display the daily count and <code>%overallcount%</code> to "
324
  "options displays <code>[Visited 123 times, 23 visits today]</code>"
325
  msgstr ""
326
 
327
+ #: admin/admin.php:442
328
  msgid "What do display when there are no visits?"
329
  msgstr ""
330
 
331
+ #: admin/admin.php:445
332
  msgid ""
333
  "This text applies only when there are 0 hits for the post and it isn't a "
334
  "single page. e.g. if you display post views on the homepage or archives then "
336
  "option."
337
  msgstr ""
338
 
339
+ #: admin/admin.php:449
340
  msgid "Always display latest post count"
341
  msgstr ""
342
 
343
+ #: admin/admin.php:452
344
  msgid ""
345
  "This option uses JavaScript and will increase your page load time. Turn this "
346
  "off if you are not using caching plugins or are OK with displaying older "
347
  "cached counts."
348
  msgstr ""
349
 
350
+ #: admin/admin.php:456
351
  msgid "Track visits of authors on their own posts?"
352
  msgstr "Улічваць прагляды запісаў, зробленыя іх жа аўтарамі?"
353
 
354
+ #: admin/admin.php:459
355
  msgid ""
356
  "Disabling this option will stop authors visits tracked on their own posts"
357
  msgstr ""
358
 
359
+ #: admin/admin.php:463
360
  #, fuzzy
361
  msgid "Track visits of admins?"
362
  msgstr "Улічваць прагляды запісаў, зробленыя іх жа аўтарамі?"
363
 
364
+ #: admin/admin.php:466
365
  msgid "Disabling this option will stop admin visits being tracked."
366
  msgstr ""
367
 
368
+ #: admin/admin.php:470
369
  #, fuzzy
370
  msgid "Track visits of Editors?"
371
  msgstr "Улічваць прагляды запісаў, зробленыя іх жа аўтарамі?"
372
 
373
+ #: admin/admin.php:473
374
  msgid "Disabling this option will stop editor visits being tracked."
375
  msgstr ""
376
 
377
+ #: admin/admin.php:477
378
  msgid "Display page views on Posts and Pages in Admin"
379
  msgstr ""
380
 
381
+ #: admin/admin.php:480
382
  msgid ""
383
  "Adds three columns called Total Views, Today's Views and Views to All Posts "
384
  "and All Pages"
385
  msgstr ""
386
 
387
+ #: admin/admin.php:484
388
  #, fuzzy
389
  msgid "Show number of views to non-admins"
390
  msgstr "Паказваць колькасць праглядаў старонкі ў яе \"целе\"?"
391
 
392
+ #: admin/admin.php:487
393
  msgid ""
394
  "If you disable this then non-admins won't see the above columns or view the "
395
  "independent pages with the top posts"
396
  msgstr ""
397
 
398
+ #: admin/admin.php:527
399
  msgid "Number of popular posts to display: "
400
  msgstr "Колькасць Папулярных запісаў у спісе:"
401
 
402
+ #: admin/admin.php:530
403
  msgid ""
404
  "Maximum number of posts that will be displayed in the list. This option is "
405
  "used if you don't specify the number of posts in the widget or shortcodes"
406
  msgstr ""
407
 
408
+ #: admin/admin.php:534
409
  msgid "Post types to include in results (including custom post types)"
410
  msgstr ""
411
 
412
+ #: admin/admin.php:546
413
  msgid "List of post or page IDs to exclude from the results: "
414
  msgstr ""
415
 
416
+ #: admin/admin.php:548 admin/admin.php:655
417
  msgid "Enter comma separated list of IDs. e.g. 188,320,500"
418
  msgstr ""
419
 
420
+ #: admin/admin.php:552
421
  msgid "Exclude Categories: "
422
  msgstr ""
423
 
424
+ #: admin/admin.php:567
425
  msgid ""
426
  "Comma separated list of category slugs. The field above has an autocomplete "
427
  "so simply start typing in the starting letters and it will prompt you with "
428
  "options"
429
  msgstr ""
430
 
431
+ #: admin/admin.php:572
432
  msgid "Title of popular posts: "
433
  msgstr "Загаловак блока Папулярных запісаў:"
434
 
435
+ #: admin/admin.php:578
436
  msgid "Title of daily popular posts: "
437
  msgstr "Загаловак блока Папулярных сёння запісаў:"
438
 
439
+ #: admin/admin.php:584
440
  msgid "When there are no posts, what should be shown?"
441
  msgstr ""
442
 
443
+ #: admin/admin.php:588
444
  msgid "Blank Output"
445
  msgstr ""
446
 
447
+ #: admin/admin.php:592
448
  msgid "Display:"
449
  msgstr ""
450
 
451
+ #: admin/admin.php:597
452
  msgid "Show post excerpt in list?"
453
  msgstr ""
454
 
455
+ #: admin/admin.php:603
456
  msgid "Length of excerpt (in words): "
457
  msgstr ""
458
 
459
+ #: admin/admin.php:609
460
  msgid "Show post author in list?"
461
  msgstr ""
462
 
463
+ #: admin/admin.php:615
464
  msgid "Show post date in list?"
465
  msgstr ""
466
 
467
+ #: admin/admin.php:621
468
  msgid "Limit post title length (in characters)"
469
  msgstr ""
470
 
471
+ #: admin/admin.php:627
472
  msgid "Show view count in list?"
473
  msgstr ""
474
 
475
+ #: admin/admin.php:633
476
  msgid "Always display latest post count in the daily lists?"
477
  msgstr ""
478
 
479
+ #: admin/admin.php:636
480
  msgid ""
481
  "This option uses JavaScript and will increase your page load time. When you "
482
  "enable this option, the daily widget will not use the options set there, but "
483
  "options will need to be set on this screen."
484
  msgstr ""
485
 
486
+ #: admin/admin.php:640
487
  msgid "Open links in new window"
488
  msgstr ""
489
 
490
+ #: admin/admin.php:646
491
  msgid "Add nofollow attribute to links in the list"
492
  msgstr ""
493
 
494
+ #: admin/admin.php:652
495
  msgid "Exclude display of related posts on these posts / pages"
496
  msgstr ""
497
 
498
+ #: admin/admin.php:659
499
  msgid "Customise the list HTML"
500
  msgstr ""
501
 
502
+ #: admin/admin.php:662
503
  msgid "HTML to display before the list of posts: "
504
  msgstr ""
505
 
506
+ #: admin/admin.php:668
507
  msgid "HTML to display before each list item: "
508
  msgstr ""
509
 
510
+ #: admin/admin.php:674
511
  #, fuzzy
512
  msgid "HTML to display after each list item: "
513
  msgstr "Фармат адлюстравання колькасці праглядаў:"
514
 
515
+ #: admin/admin.php:680
516
  msgid "HTML to display after the list of posts: "
517
  msgstr ""
518
 
519
+ #: admin/admin.php:721
520
  msgid "Location of post thumbnail:"
521
  msgstr ""
522
 
523
+ #: admin/admin.php:725
524
  #, fuzzy
525
  msgid "Display thumbnails inline with posts, before title"
526
  msgstr "Паказваць колькасць праглядаў запісу ў яе \"целе\"?"
527
 
528
+ #: admin/admin.php:730
529
  #, fuzzy
530
  msgid "Display thumbnails inline with posts, after title"
531
  msgstr "Паказваць колькасць праглядаў запісу ў яе \"целе\"?"
532
 
533
+ #: admin/admin.php:735
534
  msgid "Display only thumbnails, no text"
535
  msgstr ""
536
 
537
+ #: admin/admin.php:740
538
  msgid "Do not display thumbnails, only text."
539
  msgstr ""
540
 
541
+ #: admin/admin.php:744
542
  msgid "Thumbnail size:"
543
  msgstr ""
544
 
545
+ #: admin/admin.php:768
546
  msgid "Custom size"
547
  msgstr ""
548
 
549
+ #: admin/admin.php:771
550
  msgid ""
551
  "You can choose from existing image sizes above or create a custom size. If "
552
  "you have chosen Custom size above, then enter the width, height and crop "
553
  "settings below. For best results, use a cropped image."
554
  msgstr ""
555
 
556
+ #: admin/admin.php:772
557
  msgid ""
558
  "If you change the width and/or height below, existing images will not be "
559
  "automatically resized."
560
  msgstr ""
561
 
562
+ #: admin/admin.php:773
563
  #, php-format
564
  msgid ""
565
  "I recommend using <a href='%s' target='_blank'>Force Regenerate Thumbnails</"
567
  "regenerate all image sizes."
568
  msgstr ""
569
 
570
+ #: admin/admin.php:776
571
  msgid "Width of custom thumbnail:"
572
  msgstr ""
573
 
574
+ #: admin/admin.php:781
575
  msgid "Height of custom thumbnail"
576
  msgstr ""
577
 
578
+ #: admin/admin.php:786
579
  msgid "Crop mode:"
580
  msgstr ""
581
 
582
+ #: admin/admin.php:790
583
  msgid ""
584
  "By default, thumbnails will be proportionately cropped. Check this box to "
585
  "hard crop the thumbnails."
586
  msgstr ""
587
 
588
+ #: admin/admin.php:791
589
  #, php-format
590
  msgid "<a href='%s' target='_blank'>Difference between soft and hard crop</a>"
591
  msgstr ""
592
 
593
+ #: admin/admin.php:793
594
  msgid ""
595
  "Since you're using the default styles set under the Custom Styles section, "
596
  "the width and height is fixed at 65px and crop mode is enabled."
597
  msgstr ""
598
 
599
+ #: admin/admin.php:798
600
  msgid "Style attributes / Width and Height HTML attributes:"
601
  msgstr ""
602
 
603
+ #: admin/admin.php:802
604
  msgid "Style attributes are used for width and height."
605
  msgstr ""
606
 
607
+ #: admin/admin.php:807
608
  msgid "HTML width and height attributes are used for width and height."
609
  msgstr ""
610
 
611
+ #: admin/admin.php:811
612
  msgid "Use timthumb to generate thumbnails? "
613
  msgstr ""
614
 
615
+ #: admin/admin.php:814
616
  msgid ""
617
  "If checked, <a href=\"http://www.binarymoon.co.uk/projects/timthumb/\" "
618
  "target=\"_blank\">timthumb</a> will be used to generate thumbnails"
619
  msgstr ""
620
 
621
+ #: admin/admin.php:817
622
  msgid "Quality of thumbnails generated by timthumb:"
623
  msgstr ""
624
 
625
+ #: admin/admin.php:820
626
  msgid ""
627
  "Enter values between 0 and 100 only. 100 is highest quality and the highest "
628
  "file size. Suggested maximum value is 95. Default is 75."
629
  msgstr ""
630
 
631
+ #: admin/admin.php:823
632
  msgid "Post thumbnail meta field name: "
633
  msgstr ""
634
 
635
+ #: admin/admin.php:826
636
  msgid ""
637
  "The value of this field should contain the image source and is set in the "
638
  "<em>Add New Post</em> screen"
639
  msgstr ""
640
 
641
+ #: admin/admin.php:829
642
  msgid ""
643
  "If the postmeta is not set, then should the plugin extract the first image "
644
  "from the post?"
645
  msgstr ""
646
 
647
+ #: admin/admin.php:832
648
  msgid ""
649
  "This could slow down the loading of your page if the first image in the "
650
  "related posts is large in file-size"
651
  msgstr ""
652
 
653
+ #: admin/admin.php:835
654
  msgid "Use default thumbnail? "
655
  msgstr ""
656
 
657
+ #: admin/admin.php:838
658
  msgid ""
659
  "If checked, when no thumbnail is found, show a default one from the URL "
660
  "below. If not checked and no thumbnail is found, no image will be shown."
661
  msgstr ""
662
 
663
+ #: admin/admin.php:841
664
  msgid "Default thumbnail: "
665
  msgstr ""
666
 
667
+ #: admin/admin.php:845
668
  msgid ""
669
  "The plugin will first check if the post contains a thumbnail. If it doesn't "
670
  "then it will check the meta field. If this is not available, then it will "
671
  "show the default image as specified above"
672
  msgstr ""
673
 
674
+ #: admin/admin.php:869
675
  msgid "Custom CSS"
676
  msgstr ""
677
 
678
+ #: admin/admin.php:884
679
  msgid "Use default style included in the plugin?"
680
  msgstr ""
681
 
682
+ #: admin/admin.php:887
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:888
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:889
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:892
702
  msgid "Custom CSS to add to header:"
703
  msgstr ""
704
 
705
+ #: admin/admin.php:897
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:917
713
  #, fuzzy
714
  msgid "Default Options"
715
  msgstr "Налады ўбудовы:"
716
 
717
+ #: admin/admin.php:917
718
  msgid "Do you want to set options to Default?"
719
  msgstr "Скінуць налады ўбудовы?"
720
 
721
+ #: admin/admin.php:941
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:942
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:945
736
  msgid "Enable scheduled maintenance of daily tables:"
737
  msgstr ""
738
 
739
+ #: admin/admin.php:949
740
  msgid "Time to run maintenance"
741
  msgstr ""
742
 
743
+ #: admin/admin.php:950
744
  msgid "hrs"
745
  msgstr ""
746
 
747
+ #: admin/admin.php:950
748
  msgid "min"
749
  msgstr ""
750
 
751
+ #: admin/admin.php:952
752
  msgid "How often should the maintenance be run:"
753
  msgstr ""
754
 
755
+ #: admin/admin.php:956
756
  msgid "Daily"
757
  msgstr ""
758
 
759
+ #: admin/admin.php:960
760
  msgid "Weekly"
761
  msgstr ""
762
 
763
+ #: admin/admin.php:964
764
  msgid "Fortnightly"
765
  msgstr ""
766
 
767
+ #: admin/admin.php:968
768
  msgid "Monthly"
769
  msgstr ""
770
 
771
+ #: admin/admin.php:977
772
  msgid "The cron job has been scheduled. Maintenance will run "
773
  msgstr ""
774
 
775
+ #: admin/admin.php:982
776
  msgid "The cron job is missing. Please resave this page to add the job"
777
  msgstr ""
778
 
779
+ #: admin/admin.php:987
780
  msgid "Maintenance is turned off"
781
  msgstr ""
782
 
783
+ #: admin/admin.php:1001
784
  msgid "Reset count"
785
  msgstr ""
786
 
787
+ #: admin/admin.php:1004
788
  msgid ""
789
  "This cannot be reversed. Make sure that your database has been backed up "
790
  "before proceeding"
791
  msgstr ""
792
 
793
+ #: admin/admin.php:1007
794
  #, fuzzy
795
  msgid "Reset Popular Posts"
796
  msgstr "Папулярныя запісы"
797
 
798
+ #: admin/admin.php:1007
799
  msgid "Are you sure you want to reset the popular posts?"
800
  msgstr ""
801
 
802
+ #: admin/admin.php:1008
803
  #, fuzzy
804
  msgid "Reset Daily Popular Posts"
805
  msgstr "Папулярныя сёння запісы"
806
 
807
+ #: admin/admin.php:1008
808
  msgid "Are you sure you want to reset the daily popular posts?"
809
  msgstr ""
810
 
811
+ #: admin/admin.php:1009
812
  msgid "Clear duplicates"
813
  msgstr ""
814
 
815
+ #: admin/admin.php:1009
816
  msgid "This will delete the duplicate entries in the tables. Proceed?"
817
  msgstr ""
818
 
819
+ #: admin/admin.php:1022
820
  msgid "WordPress Multisite: Migrate Top 10 v1.x counts to 2.x"
821
  msgstr ""
822
 
823
+ #: admin/admin.php:1025
824
  msgid ""
825
  "If you've been using Top 10 v1.x on multisite, you would have needed to "
826
  "activate the plugin independently for each site. This would have resulted in "
827
  "two tables being created for each site in the network."
828
  msgstr ""
829
 
830
+ #: admin/admin.php:1026
831
  msgid ""
832
  "Top 10 v2.x onwards uses only a single table to record the count, keeping "
833
  "your database clean. You can use this tool to import the recorded counts "
834
  "from v1.x tables to the new v2.x table format."
835
  msgstr ""
836
 
837
+ #: admin/admin.php:1029
838
  msgid ""
839
  "If you do not see any tables below, then it means that either all data has "
840
  "already been imported or no relevant information has been found."
841
  msgstr ""
842
 
843
+ #: admin/admin.php:1032
844
  msgid ""
845
  "After running the importer, please verify that all the counts have been "
846
  "successfully imported. Only then should you delete any old tables!"
847
  msgstr ""
848
 
849
+ #: admin/admin.php:1066
850
  msgid "Blog ID"
851
  msgstr ""
852
 
853
+ #: admin/admin.php:1069
854
  msgid "Status"
855
  msgstr ""
856
 
857
+ #: admin/admin.php:1072
858
  msgid "Select to import"
859
  msgstr ""
860
 
861
+ #: admin/admin.php:1082
862
  msgid "Blog #"
863
  msgstr ""
864
 
865
+ #: admin/admin.php:1092
866
  msgid "Not imported"
867
  msgstr ""
868
 
869
+ #: admin/admin.php:1096
870
  msgid "Imported"
871
  msgstr ""
872
 
873
+ #: admin/admin.php:1117
874
  msgid "Begin import"
875
  msgstr ""
876
 
877
+ #: admin/admin.php:1118
878
  msgid "Delete selected tables"
879
  msgstr ""
880
 
881
+ #: admin/admin.php:1119
882
  msgid "Delete all imported tables"
883
  msgstr ""
884
 
885
+ #: admin/admin.php:1176 admin/admin.php:1272
886
  msgid "Daily Popular Posts"
887
  msgstr "Папулярныя сёння запісы"
888
 
889
+ #: admin/admin.php:1206
890
  #, fuzzy
891
  msgid "Support the development"
892
  msgstr "Падтрымаеце стваральніка ўбудовы"
893
 
894
+ #: admin/admin.php:1213
895
  msgid "Donation for Top 10"
896
  msgstr ""
897
 
898
+ #: admin/admin.php:1215
899
  msgid "Enter amount in USD: "
900
  msgstr ""
901
 
902
+ #: admin/admin.php:1219
903
  msgid "Send your donation to the author of Top 10"
904
  msgstr ""
905
 
906
+ #: admin/admin.php:1226
907
  msgid "Follow me"
908
  msgstr ""
909
 
910
+ #: admin/admin.php:1236
911
  msgid "Quick links"
912
  msgstr ""
913
 
914
+ #: admin/admin.php:1240
915
  msgid "Top 10 plugin page"
916
  msgstr ""
917
 
918
+ #: admin/admin.php:1241
919
  msgid "Top 10 Github page"
920
  msgstr ""
921
 
922
+ #: admin/admin.php:1242
923
  msgid "Other plugins"
924
  msgstr ""
925
 
926
+ #: admin/admin.php:1243
927
  msgid "Ajay's blog"
928
  msgstr ""
929
 
930
+ #: admin/admin.php:1244
931
  msgid "FAQ"
932
  msgstr ""
933
 
934
+ #: admin/admin.php:1245 admin/admin.php:1403
935
  msgid "Support"
936
  msgstr ""
937
 
938
+ #: admin/admin.php:1246
939
  msgid "Reviews"
940
  msgstr ""
941
 
942
+ #: admin/admin.php:1269
943
  #, fuzzy
944
  msgid "Overall Popular Posts"
945
  msgstr "Паглядзець усе Папулярныя запісы"
946
 
947
+ #: admin/admin.php:1380
948
  msgid "Settings"
949
  msgstr ""
950
 
951
+ #: admin/admin.php:1404
952
  msgid "Donate"
953
  msgstr ""
954
 
1054
  msgid "No top posts yet"
1055
  msgstr "Загаловак блока Папулярных запісаў:"
1056
 
1057
+ #: top-10.php:1690
1058
  msgid "Once Weekly"
1059
  msgstr ""
1060
 
1061
+ #: top-10.php:1694
1062
  msgid "Once Fortnightly"
1063
  msgstr ""
1064
 
1065
+ #: top-10.php:1698
1066
  msgid "Once Monthly"
1067
  msgstr ""
1068
 
1069
+ #: top-10.php:1702
1070
  msgid "Once quarterly"
1071
  msgstr ""
1072
 
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: 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,7 +59,7 @@ msgstr ""
59
  msgid "Next"
60
  msgstr ""
61
 
62
- #: admin/admin-dashboard.php:200 admin/admin.php:1157
63
  msgid "Popular Posts"
64
  msgstr ""
65
 
@@ -67,152 +67,152 @@ msgstr ""
67
  msgid "Daily Popular"
68
  msgstr ""
69
 
70
- #: admin/admin-metabox.php:38 admin/admin.php:1246
71
  msgid "Top 10"
72
  msgstr ""
73
 
74
- #: admin/admin-metabox.php:71
75
  msgid "Visit count:"
76
  msgstr ""
77
 
78
- #: admin/admin-metabox.php:73
79
  msgid ""
80
  "Enter a number above to update the visit count. Leaving the above box blank "
81
  "will set the count to zero"
82
  msgstr ""
83
 
84
- #: admin/admin-metabox.php:83
85
  msgid "Location of thumbnail:"
86
  msgstr ""
87
 
88
- #: admin/admin-metabox.php:85
89
  msgid ""
90
  "Enter the full URL to the image (JPG, PNG or GIF) you'd like to use. This "
91
  "image will be used for the post. It will be resized to the thumbnail size "
92
- "set under Settings &raquo; Related Posts &raquo; Output Options"
93
  msgstr ""
94
 
95
- #: admin/admin-metabox.php:86
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 "
@@ -220,65 +220,91 @@ msgid ""
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,11 +312,11 @@ msgid ""
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,224 +324,224 @@ msgid ""
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,157 +549,157 @@ msgid ""
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,225 +707,225 @@ msgid ""
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
 
@@ -1000,18 +1026,18 @@ msgstr ""
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 ""
2
  msgstr ""
3
  "Project-Id-Version: Top 10\n"
4
  "Report-Msgid-Bugs-To: \n"
5
+ "POT-Creation-Date: 2015-01-03 01:53-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:1174
63
  msgid "Popular Posts"
64
  msgstr ""
65
 
67
  msgid "Daily Popular"
68
  msgstr ""
69
 
70
+ #: admin/admin-metabox.php:38 admin/admin.php:1263
71
  msgid "Top 10"
72
  msgstr ""
73
 
74
+ #: admin/admin-metabox.php:72
75
  msgid "Visit count:"
76
  msgstr ""
77
 
78
+ #: admin/admin-metabox.php:74
79
  msgid ""
80
  "Enter a number above to update the visit count. Leaving the above box blank "
81
  "will set the count to zero"
82
  msgstr ""
83
 
84
+ #: admin/admin-metabox.php:84
85
  msgid "Location of thumbnail:"
86
  msgstr ""
87
 
88
+ #: admin/admin-metabox.php:86
89
  msgid ""
90
  "Enter the full URL to the image (JPG, PNG or GIF) you'd like to use. This "
91
  "image will be used for the post. It will be resized to the thumbnail size "
92
+ "set under Top 10 Settings &raquo; Thumbnail options."
93
  msgstr ""
94
 
95
+ #: admin/admin-metabox.php:87
96
  msgid "The URL above is saved in the meta field: "
97
  msgstr ""
98
 
99
+ #: admin/admin.php:163
100
  msgid "Options saved successfully."
101
  msgstr ""
102
 
103
+ #: admin/admin.php:173
104
  msgid "Options set to Default."
105
  msgstr ""
106
 
107
+ #: admin/admin.php:179
108
  msgid "Top 10 popular posts reset"
109
  msgstr ""
110
 
111
+ #: admin/admin.php:185
112
  msgid "Top 10 daily popular posts reset"
113
  msgstr ""
114
 
115
+ #: admin/admin.php:192
116
  msgid "Duplicate rows cleaned from tables"
117
  msgstr ""
118
 
119
+ #: admin/admin.php:204
120
  msgid "Scheduled maintenance enabled / modified"
121
  msgstr ""
122
 
123
+ #: admin/admin.php:208
124
  msgid "Scheduled maintenance disabled"
125
  msgstr ""
126
 
127
+ #: admin/admin.php:247
128
  msgid "Counts from selected sites have been imported."
129
  msgstr ""
130
 
131
+ #: admin/admin.php:272
132
  msgid ""
133
  "Selected tables have been deleted. Note that only imported tables have been "
134
  "deleted."
135
  msgstr ""
136
 
137
+ #: admin/admin.php:280 admin/admin.php:1263 admin/admin.php:1266
138
  msgid "Top 10 Settings"
139
  msgstr ""
140
 
141
+ #: admin/admin.php:292 admin/admin.php:314
142
  msgid "General options"
143
  msgstr ""
144
 
145
+ #: admin/admin.php:293 admin/admin.php:406
146
  msgid "Counter and tracker options"
147
  msgstr ""
148
 
149
+ #: admin/admin.php:294 admin/admin.php:511
150
  msgid "Popular post list options"
151
  msgstr ""
152
 
153
+ #: admin/admin.php:295 admin/admin.php:706
154
  #: includes/class-top-10-widget.php:103
155
  msgid "Thumbnail options"
156
  msgstr ""
157
 
158
+ #: admin/admin.php:296
159
  msgid "Custom styles"
160
  msgstr ""
161
 
162
+ #: admin/admin.php:297 admin/admin.php:937
163
  msgid "Maintenance"
164
  msgstr ""
165
 
166
+ #: admin/admin.php:313 admin/admin.php:405 admin/admin.php:510
167
+ #: admin/admin.php:705 admin/admin.php:868 admin/admin.php:936
168
+ #: admin/admin.php:1000 admin/admin.php:1021 admin/admin.php:1205
169
+ #: admin/admin.php:1225 admin/admin.php:1235
170
  msgid "Click to toggle"
171
  msgstr ""
172
 
173
+ #: admin/admin.php:330
174
  msgid "Enable Overall stats"
175
  msgstr ""
176
 
177
+ #: admin/admin.php:336
178
  msgid "Enable Daily stats"
179
  msgstr ""
180
 
181
+ #: admin/admin.php:342
182
  msgid "Cache fix:"
183
  msgstr ""
184
 
185
+ #: admin/admin.php:345
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:349
193
  msgid "Start daily counts from midnight:"
194
  msgstr ""
195
 
196
+ #: admin/admin.php:352
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:356
204
  msgid "Daily popular contains top posts over:"
205
  msgstr ""
206
 
207
+ #: admin/admin.php:358
208
  msgid "day(s)"
209
  msgstr ""
210
 
211
+ #: admin/admin.php:359
212
  msgid "hour(s)"
213
  msgstr ""
214
 
215
+ #: admin/admin.php:360
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 "
220
  "overridden in the widget."
221
  msgstr ""
222
 
223
+ #: admin/admin.php:364
224
+ msgid "Delete options on uninstall"
225
+ msgstr ""
226
+
227
+ #: admin/admin.php:367
228
+ msgid ""
229
+ "If this is checked, all settings related to Top 10 are removed from the "
230
+ "database if you choose to uninstall/delete the plugin."
231
+ msgstr ""
232
+
233
+ #: admin/admin.php:371
234
+ msgid "Delete counter data on uninstall"
235
+ msgstr ""
236
+
237
+ #: admin/admin.php:374
238
+ msgid ""
239
+ "If this is checked, the tables containing the counter statistics are removed "
240
+ "from the database if you choose to uninstall/delete the plugin."
241
+ msgstr ""
242
+
243
+ #: admin/admin.php:375
244
+ msgid ""
245
+ "Keep this unchecked if you choose to reinstall the plugin and don't want to "
246
+ "lose your counter data."
247
+ msgstr ""
248
+
249
+ #: admin/admin.php:379
250
  msgid "Link to Top 10 plugin page"
251
  msgstr ""
252
 
253
+ #: admin/admin.php:382
254
  msgid ""
255
  "A link to the plugin is added as an extra list item to the list of popular "
256
  "posts"
257
  msgstr ""
258
 
259
+ #: admin/admin.php:387 admin/admin.php:492 admin/admin.php:687
260
+ #: admin/admin.php:850 admin/admin.php:916 admin/admin.php:993
261
  msgid "Save Options"
262
  msgstr ""
263
 
264
+ #: admin/admin.php:422
265
  msgid "Display number of views on:"
266
  msgstr ""
267
 
268
+ #: admin/admin.php:424
269
  msgid "Posts"
270
  msgstr ""
271
 
272
+ #: admin/admin.php:425
273
  msgid "Pages"
274
  msgstr ""
275
 
276
+ #: admin/admin.php:426
277
  msgid "Home page"
278
  msgstr ""
279
 
280
+ #: admin/admin.php:427
281
  msgid "Feeds"
282
  msgstr ""
283
 
284
+ #: admin/admin.php:428
285
  msgid "Category archives"
286
  msgstr ""
287
 
288
+ #: admin/admin.php:429
289
  msgid "Tag archives"
290
  msgstr ""
291
 
292
+ #: admin/admin.php:430
293
  msgid "Other archives"
294
  msgstr ""
295
 
296
+ #: admin/admin.php:431
297
  msgid ""
298
  "If you choose to disable this, please add <code>&lt;?php if "
299
  "( function_exists ( 'echo_tptn_post_count' ) ) echo_tptn_post_count(); ?&gt;"
300
  "</code> to your template file where you want it displayed"
301
  msgstr ""
302
 
303
+ #: admin/admin.php:435
304
  msgid "Format to display the post views:"
305
  msgstr ""
306
 
307
+ #: admin/admin.php:438
308
  msgid ""
309
  "Use <code>%totalcount%</code> to display the total count, <code>%dailycount"
310
  "%</code> to display the daily count and <code>%overallcount%</code> to "
312
  "options displays <code>[Visited 123 times, 23 visits today]</code>"
313
  msgstr ""
314
 
315
+ #: admin/admin.php:442
316
  msgid "What do display when there are no visits?"
317
  msgstr ""
318
 
319
+ #: admin/admin.php:445
320
  msgid ""
321
  "This text applies only when there are 0 hits for the post and it isn't a "
322
  "single page. e.g. if you display post views on the homepage or archives then "
324
  "option."
325
  msgstr ""
326
 
327
+ #: admin/admin.php:449
328
  msgid "Always display latest post count"
329
  msgstr ""
330
 
331
+ #: admin/admin.php:452
332
  msgid ""
333
  "This option uses JavaScript and will increase your page load time. Turn this "
334
  "off if you are not using caching plugins or are OK with displaying older "
335
  "cached counts."
336
  msgstr ""
337
 
338
+ #: admin/admin.php:456
339
  msgid "Track visits of authors on their own posts?"
340
  msgstr ""
341
 
342
+ #: admin/admin.php:459
343
  msgid ""
344
  "Disabling this option will stop authors visits tracked on their own posts"
345
  msgstr ""
346
 
347
+ #: admin/admin.php:463
348
  msgid "Track visits of admins?"
349
  msgstr ""
350
 
351
+ #: admin/admin.php:466
352
  msgid "Disabling this option will stop admin visits being tracked."
353
  msgstr ""
354
 
355
+ #: admin/admin.php:470
356
  msgid "Track visits of Editors?"
357
  msgstr ""
358
 
359
+ #: admin/admin.php:473
360
  msgid "Disabling this option will stop editor visits being tracked."
361
  msgstr ""
362
 
363
+ #: admin/admin.php:477
364
  msgid "Display page views on Posts and Pages in Admin"
365
  msgstr ""
366
 
367
+ #: admin/admin.php:480
368
  msgid ""
369
  "Adds three columns called Total Views, Today's Views and Views to All Posts "
370
  "and All Pages"
371
  msgstr ""
372
 
373
+ #: admin/admin.php:484
374
  msgid "Show number of views to non-admins"
375
  msgstr ""
376
 
377
+ #: admin/admin.php:487
378
  msgid ""
379
  "If you disable this then non-admins won't see the above columns or view the "
380
  "independent pages with the top posts"
381
  msgstr ""
382
 
383
+ #: admin/admin.php:527
384
  msgid "Number of popular posts to display: "
385
  msgstr ""
386
 
387
+ #: admin/admin.php:530
388
  msgid ""
389
  "Maximum number of posts that will be displayed in the list. This option is "
390
  "used if you don't specify the number of posts in the widget or shortcodes"
391
  msgstr ""
392
 
393
+ #: admin/admin.php:534
394
  msgid "Post types to include in results (including custom post types)"
395
  msgstr ""
396
 
397
+ #: admin/admin.php:546
398
  msgid "List of post or page IDs to exclude from the results: "
399
  msgstr ""
400
 
401
+ #: admin/admin.php:548 admin/admin.php:655
402
  msgid "Enter comma separated list of IDs. e.g. 188,320,500"
403
  msgstr ""
404
 
405
+ #: admin/admin.php:552
406
  msgid "Exclude Categories: "
407
  msgstr ""
408
 
409
+ #: admin/admin.php:567
410
  msgid ""
411
  "Comma separated list of category slugs. The field above has an autocomplete "
412
  "so simply start typing in the starting letters and it will prompt you with "
413
  "options"
414
  msgstr ""
415
 
416
+ #: admin/admin.php:572
417
  msgid "Title of popular posts: "
418
  msgstr ""
419
 
420
+ #: admin/admin.php:578
421
  msgid "Title of daily popular posts: "
422
  msgstr ""
423
 
424
+ #: admin/admin.php:584
425
  msgid "When there are no posts, what should be shown?"
426
  msgstr ""
427
 
428
+ #: admin/admin.php:588
429
  msgid "Blank Output"
430
  msgstr ""
431
 
432
+ #: admin/admin.php:592
433
  msgid "Display:"
434
  msgstr ""
435
 
436
+ #: admin/admin.php:597
437
  msgid "Show post excerpt in list?"
438
  msgstr ""
439
 
440
+ #: admin/admin.php:603
441
  msgid "Length of excerpt (in words): "
442
  msgstr ""
443
 
444
+ #: admin/admin.php:609
445
  msgid "Show post author in list?"
446
  msgstr ""
447
 
448
+ #: admin/admin.php:615
449
  msgid "Show post date in list?"
450
  msgstr ""
451
 
452
+ #: admin/admin.php:621
453
  msgid "Limit post title length (in characters)"
454
  msgstr ""
455
 
456
+ #: admin/admin.php:627
457
  msgid "Show view count in list?"
458
  msgstr ""
459
 
460
+ #: admin/admin.php:633
461
  msgid "Always display latest post count in the daily lists?"
462
  msgstr ""
463
 
464
+ #: admin/admin.php:636
465
  msgid ""
466
  "This option uses JavaScript and will increase your page load time. When you "
467
  "enable this option, the daily widget will not use the options set there, but "
468
  "options will need to be set on this screen."
469
  msgstr ""
470
 
471
+ #: admin/admin.php:640
472
  msgid "Open links in new window"
473
  msgstr ""
474
 
475
+ #: admin/admin.php:646
476
  msgid "Add nofollow attribute to links in the list"
477
  msgstr ""
478
 
479
+ #: admin/admin.php:652
480
  msgid "Exclude display of related posts on these posts / pages"
481
  msgstr ""
482
 
483
+ #: admin/admin.php:659
484
  msgid "Customise the list HTML"
485
  msgstr ""
486
 
487
+ #: admin/admin.php:662
488
  msgid "HTML to display before the list of posts: "
489
  msgstr ""
490
 
491
+ #: admin/admin.php:668
492
  msgid "HTML to display before each list item: "
493
  msgstr ""
494
 
495
+ #: admin/admin.php:674
496
  msgid "HTML to display after each list item: "
497
  msgstr ""
498
 
499
+ #: admin/admin.php:680
500
  msgid "HTML to display after the list of posts: "
501
  msgstr ""
502
 
503
+ #: admin/admin.php:721
504
  msgid "Location of post thumbnail:"
505
  msgstr ""
506
 
507
+ #: admin/admin.php:725
508
  msgid "Display thumbnails inline with posts, before title"
509
  msgstr ""
510
 
511
+ #: admin/admin.php:730
512
  msgid "Display thumbnails inline with posts, after title"
513
  msgstr ""
514
 
515
+ #: admin/admin.php:735
516
  msgid "Display only thumbnails, no text"
517
  msgstr ""
518
 
519
+ #: admin/admin.php:740
520
  msgid "Do not display thumbnails, only text."
521
  msgstr ""
522
 
523
+ #: admin/admin.php:744
524
  msgid "Thumbnail size:"
525
  msgstr ""
526
 
527
+ #: admin/admin.php:768
528
  msgid "Custom size"
529
  msgstr ""
530
 
531
+ #: admin/admin.php:771
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:772
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:773
545
  #, php-format
546
  msgid ""
547
  "I recommend using <a href='%s' target='_blank'>Force Regenerate Thumbnails</"
549
  "regenerate all image sizes."
550
  msgstr ""
551
 
552
+ #: admin/admin.php:776
553
  msgid "Width of custom thumbnail:"
554
  msgstr ""
555
 
556
+ #: admin/admin.php:781
557
  msgid "Height of custom thumbnail"
558
  msgstr ""
559
 
560
+ #: admin/admin.php:786
561
  msgid "Crop mode:"
562
  msgstr ""
563
 
564
+ #: admin/admin.php:790
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:791
571
  #, php-format
572
  msgid "<a href='%s' target='_blank'>Difference between soft and hard crop</a>"
573
  msgstr ""
574
 
575
+ #: admin/admin.php:793
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:798
582
  msgid "Style attributes / Width and Height HTML attributes:"
583
  msgstr ""
584
 
585
+ #: admin/admin.php:802
586
  msgid "Style attributes are used for width and height."
587
  msgstr ""
588
 
589
+ #: admin/admin.php:807
590
  msgid "HTML width and height attributes are used for width and height."
591
  msgstr ""
592
 
593
+ #: admin/admin.php:811
594
  msgid "Use timthumb to generate thumbnails? "
595
  msgstr ""
596
 
597
+ #: admin/admin.php:814
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:817
604
  msgid "Quality of thumbnails generated by timthumb:"
605
  msgstr ""
606
 
607
+ #: admin/admin.php:820
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:823
614
  msgid "Post thumbnail meta field name: "
615
  msgstr ""
616
 
617
+ #: admin/admin.php:826
618
  msgid ""
619
  "The value of this field should contain the image source and is set in the "
620
  "<em>Add New Post</em> screen"
621
  msgstr ""
622
 
623
+ #: admin/admin.php:829
624
  msgid ""
625
  "If the postmeta is not set, then should the plugin extract the first image "
626
  "from the post?"
627
  msgstr ""
628
 
629
+ #: admin/admin.php:832
630
  msgid ""
631
  "This could slow down the loading of your page if the first image in the "
632
  "related posts is large in file-size"
633
  msgstr ""
634
 
635
+ #: admin/admin.php:835
636
  msgid "Use default thumbnail? "
637
  msgstr ""
638
 
639
+ #: admin/admin.php:838
640
  msgid ""
641
  "If checked, when no thumbnail is found, show a default one from the URL "
642
  "below. If not checked and no thumbnail is found, no image will be shown."
643
  msgstr ""
644
 
645
+ #: admin/admin.php:841
646
  msgid "Default thumbnail: "
647
  msgstr ""
648
 
649
+ #: admin/admin.php:845
650
  msgid ""
651
  "The plugin will first check if the post contains a thumbnail. If it doesn't "
652
  "then it will check the meta field. If this is not available, then it will "
653
  "show the default image as specified above"
654
  msgstr ""
655
 
656
+ #: admin/admin.php:869
657
  msgid "Custom CSS"
658
  msgstr ""
659
 
660
+ #: admin/admin.php:884
661
  msgid "Use default style included in the plugin?"
662
  msgstr ""
663
 
664
+ #: admin/admin.php:887
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:888
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:889
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:892
684
  msgid "Custom CSS to add to header:"
685
  msgstr ""
686
 
687
+ #: admin/admin.php:897
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:917
695
  msgid "Default Options"
696
  msgstr ""
697
 
698
+ #: admin/admin.php:917
699
  msgid "Do you want to set options to Default?"
700
  msgstr ""
701
 
702
+ #: admin/admin.php:941
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
  "will automatically delete entries older than 90 days."
708
  msgstr ""
709
 
710
+ #: admin/admin.php:942
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:945
717
  msgid "Enable scheduled maintenance of daily tables:"
718
  msgstr ""
719
 
720
+ #: admin/admin.php:949
721
  msgid "Time to run maintenance"
722
  msgstr ""
723
 
724
+ #: admin/admin.php:950
725
  msgid "hrs"
726
  msgstr ""
727
 
728
+ #: admin/admin.php:950
729
  msgid "min"
730
  msgstr ""
731
 
732
+ #: admin/admin.php:952
733
  msgid "How often should the maintenance be run:"
734
  msgstr ""
735
 
736
+ #: admin/admin.php:956
737
  msgid "Daily"
738
  msgstr ""
739
 
740
+ #: admin/admin.php:960
741
  msgid "Weekly"
742
  msgstr ""
743
 
744
+ #: admin/admin.php:964
745
  msgid "Fortnightly"
746
  msgstr ""
747
 
748
+ #: admin/admin.php:968
749
  msgid "Monthly"
750
  msgstr ""
751
 
752
+ #: admin/admin.php:977
753
  msgid "The cron job has been scheduled. Maintenance will run "
754
  msgstr ""
755
 
756
+ #: admin/admin.php:982
757
  msgid "The cron job is missing. Please resave this page to add the job"
758
  msgstr ""
759
 
760
+ #: admin/admin.php:987
761
  msgid "Maintenance is turned off"
762
  msgstr ""
763
 
764
+ #: admin/admin.php:1001
765
  msgid "Reset count"
766
  msgstr ""
767
 
768
+ #: admin/admin.php:1004
769
  msgid ""
770
  "This cannot be reversed. Make sure that your database has been backed up "
771
  "before proceeding"
772
  msgstr ""
773
 
774
+ #: admin/admin.php:1007
775
  msgid "Reset Popular Posts"
776
  msgstr ""
777
 
778
+ #: admin/admin.php:1007
779
  msgid "Are you sure you want to reset the popular posts?"
780
  msgstr ""
781
 
782
+ #: admin/admin.php:1008
783
  msgid "Reset Daily Popular Posts"
784
  msgstr ""
785
 
786
+ #: admin/admin.php:1008
787
  msgid "Are you sure you want to reset the daily popular posts?"
788
  msgstr ""
789
 
790
+ #: admin/admin.php:1009
791
  msgid "Clear duplicates"
792
  msgstr ""
793
 
794
+ #: admin/admin.php:1009
795
  msgid "This will delete the duplicate entries in the tables. Proceed?"
796
  msgstr ""
797
 
798
+ #: admin/admin.php:1022
799
  msgid "WordPress Multisite: Migrate Top 10 v1.x counts to 2.x"
800
  msgstr ""
801
 
802
+ #: admin/admin.php:1025
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:1026
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:1029
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:1032
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:1066
829
  msgid "Blog ID"
830
  msgstr ""
831
 
832
+ #: admin/admin.php:1069
833
  msgid "Status"
834
  msgstr ""
835
 
836
+ #: admin/admin.php:1072
837
  msgid "Select to import"
838
  msgstr ""
839
 
840
+ #: admin/admin.php:1082
841
  msgid "Blog #"
842
  msgstr ""
843
 
844
+ #: admin/admin.php:1092
845
  msgid "Not imported"
846
  msgstr ""
847
 
848
+ #: admin/admin.php:1096
849
  msgid "Imported"
850
  msgstr ""
851
 
852
+ #: admin/admin.php:1117
853
  msgid "Begin import"
854
  msgstr ""
855
 
856
+ #: admin/admin.php:1118
857
  msgid "Delete selected tables"
858
  msgstr ""
859
 
860
+ #: admin/admin.php:1119
861
  msgid "Delete all imported tables"
862
  msgstr ""
863
 
864
+ #: admin/admin.php:1176 admin/admin.php:1272
865
  msgid "Daily Popular Posts"
866
  msgstr ""
867
 
868
+ #: admin/admin.php:1206
869
  msgid "Support the development"
870
  msgstr ""
871
 
872
+ #: admin/admin.php:1213
873
  msgid "Donation for Top 10"
874
  msgstr ""
875
 
876
+ #: admin/admin.php:1215
877
  msgid "Enter amount in USD: "
878
  msgstr ""
879
 
880
+ #: admin/admin.php:1219
881
  msgid "Send your donation to the author of Top 10"
882
  msgstr ""
883
 
884
+ #: admin/admin.php:1226
885
  msgid "Follow me"
886
  msgstr ""
887
 
888
+ #: admin/admin.php:1236
889
  msgid "Quick links"
890
  msgstr ""
891
 
892
+ #: admin/admin.php:1240
893
  msgid "Top 10 plugin page"
894
  msgstr ""
895
 
896
+ #: admin/admin.php:1241
897
  msgid "Top 10 Github page"
898
  msgstr ""
899
 
900
+ #: admin/admin.php:1242
901
  msgid "Other plugins"
902
  msgstr ""
903
 
904
+ #: admin/admin.php:1243
905
  msgid "Ajay's blog"
906
  msgstr ""
907
 
908
+ #: admin/admin.php:1244
909
  msgid "FAQ"
910
  msgstr ""
911
 
912
+ #: admin/admin.php:1245 admin/admin.php:1403
913
  msgid "Support"
914
  msgstr ""
915
 
916
+ #: admin/admin.php:1246
917
  msgid "Reviews"
918
  msgstr ""
919
 
920
+ #: admin/admin.php:1269
921
  msgid "Overall Popular Posts"
922
  msgstr ""
923
 
924
+ #: admin/admin.php:1380
925
  msgid "Settings"
926
  msgstr ""
927
 
928
+ #: admin/admin.php:1404
929
  msgid "Donate"
930
  msgstr ""
931
 
1026
  msgid "No top posts yet"
1027
  msgstr ""
1028
 
1029
+ #: top-10.php:1690
1030
  msgid "Once Weekly"
1031
  msgstr ""
1032
 
1033
+ #: top-10.php:1694
1034
  msgid "Once Fortnightly"
1035
  msgstr ""
1036
 
1037
+ #: top-10.php:1698
1038
  msgid "Once Monthly"
1039
  msgstr ""
1040
 
1041
+ #: top-10.php:1702
1042
  msgid "Once quarterly"
1043
  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: 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,7 +59,7 @@ msgstr ""
59
  msgid "Next"
60
  msgstr ""
61
 
62
- #: admin/admin-dashboard.php:200 admin/admin.php:1157
63
  msgid "Popular Posts"
64
  msgstr ""
65
 
@@ -67,152 +67,152 @@ msgstr ""
67
  msgid "Daily Popular"
68
  msgstr ""
69
 
70
- #: admin/admin-metabox.php:38 admin/admin.php:1246
71
  msgid "Top 10"
72
  msgstr ""
73
 
74
- #: admin/admin-metabox.php:71
75
  msgid "Visit count:"
76
  msgstr ""
77
 
78
- #: admin/admin-metabox.php:73
79
  msgid ""
80
  "Enter a number above to update the visit count. Leaving the above box blank "
81
  "will set the count to zero"
82
  msgstr ""
83
 
84
- #: admin/admin-metabox.php:83
85
  msgid "Location of thumbnail:"
86
  msgstr ""
87
 
88
- #: admin/admin-metabox.php:85
89
  msgid ""
90
  "Enter the full URL to the image (JPG, PNG or GIF) you'd like to use. This "
91
  "image will be used for the post. It will be resized to the thumbnail size "
92
- "set under Settings &raquo; Related Posts &raquo; Output Options"
93
  msgstr ""
94
 
95
- #: admin/admin-metabox.php:86
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 "
@@ -220,65 +220,91 @@ msgid ""
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,11 +312,11 @@ msgid ""
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,224 +324,224 @@ msgid ""
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,157 +549,157 @@ msgid ""
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,225 +707,225 @@ msgid ""
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
 
@@ -1000,18 +1026,18 @@ msgstr ""
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 ""
2
  msgstr ""
3
  "Project-Id-Version: Top 10\n"
4
  "Report-Msgid-Bugs-To: \n"
5
+ "POT-Creation-Date: 2015-01-03 01:53-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:1174
63
  msgid "Popular Posts"
64
  msgstr ""
65
 
67
  msgid "Daily Popular"
68
  msgstr ""
69
 
70
+ #: admin/admin-metabox.php:38 admin/admin.php:1263
71
  msgid "Top 10"
72
  msgstr ""
73
 
74
+ #: admin/admin-metabox.php:72
75
  msgid "Visit count:"
76
  msgstr ""
77
 
78
+ #: admin/admin-metabox.php:74
79
  msgid ""
80
  "Enter a number above to update the visit count. Leaving the above box blank "
81
  "will set the count to zero"
82
  msgstr ""
83
 
84
+ #: admin/admin-metabox.php:84
85
  msgid "Location of thumbnail:"
86
  msgstr ""
87
 
88
+ #: admin/admin-metabox.php:86
89
  msgid ""
90
  "Enter the full URL to the image (JPG, PNG or GIF) you'd like to use. This "
91
  "image will be used for the post. It will be resized to the thumbnail size "
92
+ "set under Top 10 Settings &raquo; Thumbnail options."
93
  msgstr ""
94
 
95
+ #: admin/admin-metabox.php:87
96
  msgid "The URL above is saved in the meta field: "
97
  msgstr ""
98
 
99
+ #: admin/admin.php:163
100
  msgid "Options saved successfully."
101
  msgstr ""
102
 
103
+ #: admin/admin.php:173
104
  msgid "Options set to Default."
105
  msgstr ""
106
 
107
+ #: admin/admin.php:179
108
  msgid "Top 10 popular posts reset"
109
  msgstr ""
110
 
111
+ #: admin/admin.php:185
112
  msgid "Top 10 daily popular posts reset"
113
  msgstr ""
114
 
115
+ #: admin/admin.php:192
116
  msgid "Duplicate rows cleaned from tables"
117
  msgstr ""
118
 
119
+ #: admin/admin.php:204
120
  msgid "Scheduled maintenance enabled / modified"
121
  msgstr ""
122
 
123
+ #: admin/admin.php:208
124
  msgid "Scheduled maintenance disabled"
125
  msgstr ""
126
 
127
+ #: admin/admin.php:247
128
  msgid "Counts from selected sites have been imported."
129
  msgstr ""
130
 
131
+ #: admin/admin.php:272
132
  msgid ""
133
  "Selected tables have been deleted. Note that only imported tables have been "
134
  "deleted."
135
  msgstr ""
136
 
137
+ #: admin/admin.php:280 admin/admin.php:1263 admin/admin.php:1266
138
  msgid "Top 10 Settings"
139
  msgstr ""
140
 
141
+ #: admin/admin.php:292 admin/admin.php:314
142
  msgid "General options"
143
  msgstr ""
144
 
145
+ #: admin/admin.php:293 admin/admin.php:406
146
  msgid "Counter and tracker options"
147
  msgstr ""
148
 
149
+ #: admin/admin.php:294 admin/admin.php:511
150
  msgid "Popular post list options"
151
  msgstr ""
152
 
153
+ #: admin/admin.php:295 admin/admin.php:706
154
  #: includes/class-top-10-widget.php:103
155
  msgid "Thumbnail options"
156
  msgstr ""
157
 
158
+ #: admin/admin.php:296
159
  msgid "Custom styles"
160
  msgstr ""
161
 
162
+ #: admin/admin.php:297 admin/admin.php:937
163
  msgid "Maintenance"
164
  msgstr ""
165
 
166
+ #: admin/admin.php:313 admin/admin.php:405 admin/admin.php:510
167
+ #: admin/admin.php:705 admin/admin.php:868 admin/admin.php:936
168
+ #: admin/admin.php:1000 admin/admin.php:1021 admin/admin.php:1205
169
+ #: admin/admin.php:1225 admin/admin.php:1235
170
  msgid "Click to toggle"
171
  msgstr ""
172
 
173
+ #: admin/admin.php:330
174
  msgid "Enable Overall stats"
175
  msgstr ""
176
 
177
+ #: admin/admin.php:336
178
  msgid "Enable Daily stats"
179
  msgstr ""
180
 
181
+ #: admin/admin.php:342
182
  msgid "Cache fix:"
183
  msgstr ""
184
 
185
+ #: admin/admin.php:345
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:349
193
  msgid "Start daily counts from midnight:"
194
  msgstr ""
195
 
196
+ #: admin/admin.php:352
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:356
204
  msgid "Daily popular contains top posts over:"
205
  msgstr ""
206
 
207
+ #: admin/admin.php:358
208
  msgid "day(s)"
209
  msgstr ""
210
 
211
+ #: admin/admin.php:359
212
  msgid "hour(s)"
213
  msgstr ""
214
 
215
+ #: admin/admin.php:360
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 "
220
  "overridden in the widget."
221
  msgstr ""
222
 
223
+ #: admin/admin.php:364
224
+ msgid "Delete options on uninstall"
225
+ msgstr ""
226
+
227
+ #: admin/admin.php:367
228
+ msgid ""
229
+ "If this is checked, all settings related to Top 10 are removed from the "
230
+ "database if you choose to uninstall/delete the plugin."
231
+ msgstr ""
232
+
233
+ #: admin/admin.php:371
234
+ msgid "Delete counter data on uninstall"
235
+ msgstr ""
236
+
237
+ #: admin/admin.php:374
238
+ msgid ""
239
+ "If this is checked, the tables containing the counter statistics are removed "
240
+ "from the database if you choose to uninstall/delete the plugin."
241
+ msgstr ""
242
+
243
+ #: admin/admin.php:375
244
+ msgid ""
245
+ "Keep this unchecked if you choose to reinstall the plugin and don't want to "
246
+ "lose your counter data."
247
+ msgstr ""
248
+
249
+ #: admin/admin.php:379
250
  msgid "Link to Top 10 plugin page"
251
  msgstr ""
252
 
253
+ #: admin/admin.php:382
254
  msgid ""
255
  "A link to the plugin is added as an extra list item to the list of popular "
256
  "posts"
257
  msgstr ""
258
 
259
+ #: admin/admin.php:387 admin/admin.php:492 admin/admin.php:687
260
+ #: admin/admin.php:850 admin/admin.php:916 admin/admin.php:993
261
  msgid "Save Options"
262
  msgstr ""
263
 
264
+ #: admin/admin.php:422
265
  msgid "Display number of views on:"
266
  msgstr ""
267
 
268
+ #: admin/admin.php:424
269
  msgid "Posts"
270
  msgstr ""
271
 
272
+ #: admin/admin.php:425
273
  msgid "Pages"
274
  msgstr ""
275
 
276
+ #: admin/admin.php:426
277
  msgid "Home page"
278
  msgstr ""
279
 
280
+ #: admin/admin.php:427
281
  msgid "Feeds"
282
  msgstr ""
283
 
284
+ #: admin/admin.php:428
285
  msgid "Category archives"
286
  msgstr ""
287
 
288
+ #: admin/admin.php:429
289
  msgid "Tag archives"
290
  msgstr ""
291
 
292
+ #: admin/admin.php:430
293
  msgid "Other archives"
294
  msgstr ""
295
 
296
+ #: admin/admin.php:431
297
  msgid ""
298
  "If you choose to disable this, please add <code>&lt;?php if "
299
  "( function_exists ( 'echo_tptn_post_count' ) ) echo_tptn_post_count(); ?&gt;"
300
  "</code> to your template file where you want it displayed"
301
  msgstr ""
302
 
303
+ #: admin/admin.php:435
304
  msgid "Format to display the post views:"
305
  msgstr ""
306
 
307
+ #: admin/admin.php:438
308
  msgid ""
309
  "Use <code>%totalcount%</code> to display the total count, <code>%dailycount"
310
  "%</code> to display the daily count and <code>%overallcount%</code> to "
312
  "options displays <code>[Visited 123 times, 23 visits today]</code>"
313
  msgstr ""
314
 
315
+ #: admin/admin.php:442
316
  msgid "What do display when there are no visits?"
317
  msgstr ""
318
 
319
+ #: admin/admin.php:445
320
  msgid ""
321
  "This text applies only when there are 0 hits for the post and it isn't a "
322
  "single page. e.g. if you display post views on the homepage or archives then "
324
  "option."
325
  msgstr ""
326
 
327
+ #: admin/admin.php:449
328
  msgid "Always display latest post count"
329
  msgstr ""
330
 
331
+ #: admin/admin.php:452
332
  msgid ""
333
  "This option uses JavaScript and will increase your page load time. Turn this "
334
  "off if you are not using caching plugins or are OK with displaying older "
335
  "cached counts."
336
  msgstr ""
337
 
338
+ #: admin/admin.php:456
339
  msgid "Track visits of authors on their own posts?"
340
  msgstr ""
341
 
342
+ #: admin/admin.php:459
343
  msgid ""
344
  "Disabling this option will stop authors visits tracked on their own posts"
345
  msgstr ""
346
 
347
+ #: admin/admin.php:463
348
  msgid "Track visits of admins?"
349
  msgstr ""
350
 
351
+ #: admin/admin.php:466
352
  msgid "Disabling this option will stop admin visits being tracked."
353
  msgstr ""
354
 
355
+ #: admin/admin.php:470
356
  msgid "Track visits of Editors?"
357
  msgstr ""
358
 
359
+ #: admin/admin.php:473
360
  msgid "Disabling this option will stop editor visits being tracked."
361
  msgstr ""
362
 
363
+ #: admin/admin.php:477
364
  msgid "Display page views on Posts and Pages in Admin"
365
  msgstr ""
366
 
367
+ #: admin/admin.php:480
368
  msgid ""
369
  "Adds three columns called Total Views, Today's Views and Views to All Posts "
370
  "and All Pages"
371
  msgstr ""
372
 
373
+ #: admin/admin.php:484
374
  msgid "Show number of views to non-admins"
375
  msgstr ""
376
 
377
+ #: admin/admin.php:487
378
  msgid ""
379
  "If you disable this then non-admins won't see the above columns or view the "
380
  "independent pages with the top posts"
381
  msgstr ""
382
 
383
+ #: admin/admin.php:527
384
  msgid "Number of popular posts to display: "
385
  msgstr ""
386
 
387
+ #: admin/admin.php:530
388
  msgid ""
389
  "Maximum number of posts that will be displayed in the list. This option is "
390
  "used if you don't specify the number of posts in the widget or shortcodes"
391
  msgstr ""
392
 
393
+ #: admin/admin.php:534
394
  msgid "Post types to include in results (including custom post types)"
395
  msgstr ""
396
 
397
+ #: admin/admin.php:546
398
  msgid "List of post or page IDs to exclude from the results: "
399
  msgstr ""
400
 
401
+ #: admin/admin.php:548 admin/admin.php:655
402
  msgid "Enter comma separated list of IDs. e.g. 188,320,500"
403
  msgstr ""
404
 
405
+ #: admin/admin.php:552
406
  msgid "Exclude Categories: "
407
  msgstr ""
408
 
409
+ #: admin/admin.php:567
410
  msgid ""
411
  "Comma separated list of category slugs. The field above has an autocomplete "
412
  "so simply start typing in the starting letters and it will prompt you with "
413
  "options"
414
  msgstr ""
415
 
416
+ #: admin/admin.php:572
417
  msgid "Title of popular posts: "
418
  msgstr ""
419
 
420
+ #: admin/admin.php:578
421
  msgid "Title of daily popular posts: "
422
  msgstr ""
423
 
424
+ #: admin/admin.php:584
425
  msgid "When there are no posts, what should be shown?"
426
  msgstr ""
427
 
428
+ #: admin/admin.php:588
429
  msgid "Blank Output"
430
  msgstr ""
431
 
432
+ #: admin/admin.php:592
433
  msgid "Display:"
434
  msgstr ""
435
 
436
+ #: admin/admin.php:597
437
  msgid "Show post excerpt in list?"
438
  msgstr ""
439
 
440
+ #: admin/admin.php:603
441
  msgid "Length of excerpt (in words): "
442
  msgstr ""
443
 
444
+ #: admin/admin.php:609
445
  msgid "Show post author in list?"
446
  msgstr ""
447
 
448
+ #: admin/admin.php:615
449
  msgid "Show post date in list?"
450
  msgstr ""
451
 
452
+ #: admin/admin.php:621
453
  msgid "Limit post title length (in characters)"
454
  msgstr ""
455
 
456
+ #: admin/admin.php:627
457
  msgid "Show view count in list?"
458
  msgstr ""
459
 
460
+ #: admin/admin.php:633
461
  msgid "Always display latest post count in the daily lists?"
462
  msgstr ""
463
 
464
+ #: admin/admin.php:636
465
  msgid ""
466
  "This option uses JavaScript and will increase your page load time. When you "
467
  "enable this option, the daily widget will not use the options set there, but "
468
  "options will need to be set on this screen."
469
  msgstr ""
470
 
471
+ #: admin/admin.php:640
472
  msgid "Open links in new window"
473
  msgstr ""
474
 
475
+ #: admin/admin.php:646
476
  msgid "Add nofollow attribute to links in the list"
477
  msgstr ""
478
 
479
+ #: admin/admin.php:652
480
  msgid "Exclude display of related posts on these posts / pages"
481
  msgstr ""
482
 
483
+ #: admin/admin.php:659
484
  msgid "Customise the list HTML"
485
  msgstr ""
486
 
487
+ #: admin/admin.php:662
488
  msgid "HTML to display before the list of posts: "
489
  msgstr ""
490
 
491
+ #: admin/admin.php:668
492
  msgid "HTML to display before each list item: "
493
  msgstr ""
494
 
495
+ #: admin/admin.php:674
496
  msgid "HTML to display after each list item: "
497
  msgstr ""
498
 
499
+ #: admin/admin.php:680
500
  msgid "HTML to display after the list of posts: "
501
  msgstr ""
502
 
503
+ #: admin/admin.php:721
504
  msgid "Location of post thumbnail:"
505
  msgstr ""
506
 
507
+ #: admin/admin.php:725
508
  msgid "Display thumbnails inline with posts, before title"
509
  msgstr ""
510
 
511
+ #: admin/admin.php:730
512
  msgid "Display thumbnails inline with posts, after title"
513
  msgstr ""
514
 
515
+ #: admin/admin.php:735
516
  msgid "Display only thumbnails, no text"
517
  msgstr ""
518
 
519
+ #: admin/admin.php:740
520
  msgid "Do not display thumbnails, only text."
521
  msgstr ""
522
 
523
+ #: admin/admin.php:744
524
  msgid "Thumbnail size:"
525
  msgstr ""
526
 
527
+ #: admin/admin.php:768
528
  msgid "Custom size"
529
  msgstr ""
530
 
531
+ #: admin/admin.php:771
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:772
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:773
545
  #, php-format
546
  msgid ""
547
  "I recommend using <a href='%s' target='_blank'>Force Regenerate Thumbnails</"
549
  "regenerate all image sizes."
550
  msgstr ""
551
 
552
+ #: admin/admin.php:776
553
  msgid "Width of custom thumbnail:"
554
  msgstr ""
555
 
556
+ #: admin/admin.php:781
557
  msgid "Height of custom thumbnail"
558
  msgstr ""
559
 
560
+ #: admin/admin.php:786
561
  msgid "Crop mode:"
562
  msgstr ""
563
 
564
+ #: admin/admin.php:790
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:791
571
  #, php-format
572
  msgid "<a href='%s' target='_blank'>Difference between soft and hard crop</a>"
573
  msgstr ""
574
 
575
+ #: admin/admin.php:793
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:798
582
  msgid "Style attributes / Width and Height HTML attributes:"
583
  msgstr ""
584
 
585
+ #: admin/admin.php:802
586
  msgid "Style attributes are used for width and height."
587
  msgstr ""
588
 
589
+ #: admin/admin.php:807
590
  msgid "HTML width and height attributes are used for width and height."
591
  msgstr ""
592
 
593
+ #: admin/admin.php:811
594
  msgid "Use timthumb to generate thumbnails? "
595
  msgstr ""
596
 
597
+ #: admin/admin.php:814
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:817
604
  msgid "Quality of thumbnails generated by timthumb:"
605
  msgstr ""
606
 
607
+ #: admin/admin.php:820
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:823
614
  msgid "Post thumbnail meta field name: "
615
  msgstr ""
616
 
617
+ #: admin/admin.php:826
618
  msgid ""
619
  "The value of this field should contain the image source and is set in the "
620
  "<em>Add New Post</em> screen"
621
  msgstr ""
622
 
623
+ #: admin/admin.php:829
624
  msgid ""
625
  "If the postmeta is not set, then should the plugin extract the first image "
626
  "from the post?"
627
  msgstr ""
628
 
629
+ #: admin/admin.php:832
630
  msgid ""
631
  "This could slow down the loading of your page if the first image in the "
632
  "related posts is large in file-size"
633
  msgstr ""
634
 
635
+ #: admin/admin.php:835
636
  msgid "Use default thumbnail? "
637
  msgstr ""
638
 
639
+ #: admin/admin.php:838
640
  msgid ""
641
  "If checked, when no thumbnail is found, show a default one from the URL "
642
  "below. If not checked and no thumbnail is found, no image will be shown."
643
  msgstr ""
644
 
645
+ #: admin/admin.php:841
646
  msgid "Default thumbnail: "
647
  msgstr ""
648
 
649
+ #: admin/admin.php:845
650
  msgid ""
651
  "The plugin will first check if the post contains a thumbnail. If it doesn't "
652
  "then it will check the meta field. If this is not available, then it will "
653
  "show the default image as specified above"
654
  msgstr ""
655
 
656
+ #: admin/admin.php:869
657
  msgid "Custom CSS"
658
  msgstr ""
659
 
660
+ #: admin/admin.php:884
661
  msgid "Use default style included in the plugin?"
662
  msgstr ""
663
 
664
+ #: admin/admin.php:887
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:888
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:889
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:892
684
  msgid "Custom CSS to add to header:"
685
  msgstr ""
686
 
687
+ #: admin/admin.php:897
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:917
695
  msgid "Default Options"
696
  msgstr ""
697
 
698
+ #: admin/admin.php:917
699
  msgid "Do you want to set options to Default?"
700
  msgstr ""
701
 
702
+ #: admin/admin.php:941
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
  "will automatically delete entries older than 90 days."
708
  msgstr ""
709
 
710
+ #: admin/admin.php:942
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:945
717
  msgid "Enable scheduled maintenance of daily tables:"
718
  msgstr ""
719
 
720
+ #: admin/admin.php:949
721
  msgid "Time to run maintenance"
722
  msgstr ""
723
 
724
+ #: admin/admin.php:950
725
  msgid "hrs"
726
  msgstr ""
727
 
728
+ #: admin/admin.php:950
729
  msgid "min"
730
  msgstr ""
731
 
732
+ #: admin/admin.php:952
733
  msgid "How often should the maintenance be run:"
734
  msgstr ""
735
 
736
+ #: admin/admin.php:956
737
  msgid "Daily"
738
  msgstr ""
739
 
740
+ #: admin/admin.php:960
741
  msgid "Weekly"
742
  msgstr ""
743
 
744
+ #: admin/admin.php:964
745
  msgid "Fortnightly"
746
  msgstr ""
747
 
748
+ #: admin/admin.php:968
749
  msgid "Monthly"
750
  msgstr ""
751
 
752
+ #: admin/admin.php:977
753
  msgid "The cron job has been scheduled. Maintenance will run "
754
  msgstr ""
755
 
756
+ #: admin/admin.php:982
757
  msgid "The cron job is missing. Please resave this page to add the job"
758
  msgstr ""
759
 
760
+ #: admin/admin.php:987
761
  msgid "Maintenance is turned off"
762
  msgstr ""
763
 
764
+ #: admin/admin.php:1001
765
  msgid "Reset count"
766
  msgstr ""
767
 
768
+ #: admin/admin.php:1004
769
  msgid ""
770
  "This cannot be reversed. Make sure that your database has been backed up "
771
  "before proceeding"
772
  msgstr ""
773
 
774
+ #: admin/admin.php:1007
775
  msgid "Reset Popular Posts"
776
  msgstr ""
777
 
778
+ #: admin/admin.php:1007
779
  msgid "Are you sure you want to reset the popular posts?"
780
  msgstr ""
781
 
782
+ #: admin/admin.php:1008
783
  msgid "Reset Daily Popular Posts"
784
  msgstr ""
785
 
786
+ #: admin/admin.php:1008
787
  msgid "Are you sure you want to reset the daily popular posts?"
788
  msgstr ""
789
 
790
+ #: admin/admin.php:1009
791
  msgid "Clear duplicates"
792
  msgstr ""
793
 
794
+ #: admin/admin.php:1009
795
  msgid "This will delete the duplicate entries in the tables. Proceed?"
796
  msgstr ""
797
 
798
+ #: admin/admin.php:1022
799
  msgid "WordPress Multisite: Migrate Top 10 v1.x counts to 2.x"
800
  msgstr ""
801
 
802
+ #: admin/admin.php:1025
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:1026
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:1029
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:1032
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:1066
829
  msgid "Blog ID"
830
  msgstr ""
831
 
832
+ #: admin/admin.php:1069
833
  msgid "Status"
834
  msgstr ""
835
 
836
+ #: admin/admin.php:1072
837
  msgid "Select to import"
838
  msgstr ""
839
 
840
+ #: admin/admin.php:1082
841
  msgid "Blog #"
842
  msgstr ""
843
 
844
+ #: admin/admin.php:1092
845
  msgid "Not imported"
846
  msgstr ""
847
 
848
+ #: admin/admin.php:1096
849
  msgid "Imported"
850
  msgstr ""
851
 
852
+ #: admin/admin.php:1117
853
  msgid "Begin import"
854
  msgstr ""
855
 
856
+ #: admin/admin.php:1118
857
  msgid "Delete selected tables"
858
  msgstr ""
859
 
860
+ #: admin/admin.php:1119
861
  msgid "Delete all imported tables"
862
  msgstr ""
863
 
864
+ #: admin/admin.php:1176 admin/admin.php:1272
865
  msgid "Daily Popular Posts"
866
  msgstr ""
867
 
868
+ #: admin/admin.php:1206
869
  msgid "Support the development"
870
  msgstr ""
871
 
872
+ #: admin/admin.php:1213
873
  msgid "Donation for Top 10"
874
  msgstr ""
875
 
876
+ #: admin/admin.php:1215
877
  msgid "Enter amount in USD: "
878
  msgstr ""
879
 
880
+ #: admin/admin.php:1219
881
  msgid "Send your donation to the author of Top 10"
882
  msgstr ""
883
 
884
+ #: admin/admin.php:1226
885
  msgid "Follow me"
886
  msgstr ""
887
 
888
+ #: admin/admin.php:1236
889
  msgid "Quick links"
890
  msgstr ""
891
 
892
+ #: admin/admin.php:1240
893
  msgid "Top 10 plugin page"
894
  msgstr ""
895
 
896
+ #: admin/admin.php:1241
897
  msgid "Top 10 Github page"
898
  msgstr ""
899
 
900
+ #: admin/admin.php:1242
901
  msgid "Other plugins"
902
  msgstr ""
903
 
904
+ #: admin/admin.php:1243
905
  msgid "Ajay's blog"
906
  msgstr ""
907
 
908
+ #: admin/admin.php:1244
909
  msgid "FAQ"
910
  msgstr ""
911
 
912
+ #: admin/admin.php:1245 admin/admin.php:1403
913
  msgid "Support"
914
  msgstr ""
915
 
916
+ #: admin/admin.php:1246
917
  msgid "Reviews"
918
  msgstr ""
919
 
920
+ #: admin/admin.php:1269
921
  msgid "Overall Popular Posts"
922
  msgstr ""
923
 
924
+ #: admin/admin.php:1380
925
  msgid "Settings"
926
  msgstr ""
927
 
928
+ #: admin/admin.php:1404
929
  msgid "Donate"
930
  msgstr ""
931
 
1026
  msgid "No top posts yet"
1027
  msgstr ""
1028
 
1029
+ #: top-10.php:1690
1030
  msgid "Once Weekly"
1031
  msgstr ""
1032
 
1033
+ #: top-10.php:1694
1034
  msgid "Once Fortnightly"
1035
  msgstr ""
1036
 
1037
+ #: top-10.php:1698
1038
  msgid "Once Monthly"
1039
  msgstr ""
1040
 
1041
+ #: top-10.php:1702
1042
  msgid "Once quarterly"
1043
  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: 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,7 +62,7 @@ msgstr "Precedentes"
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
 
@@ -70,155 +70,155 @@ msgstr "Los posts más populares"
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 "
@@ -226,11 +226,37 @@ msgid ""
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,59 +266,59 @@ msgstr ""
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 "
@@ -300,11 +326,11 @@ msgid ""
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,231 +338,231 @@ msgid ""
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</"
@@ -544,79 +570,79 @@ msgid ""
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,7 +653,7 @@ msgstr ""
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,11 +664,11 @@ msgstr ""
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,65 +678,65 @@ msgstr ""
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,65 +744,65 @@ msgid ""
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,168 +810,168 @@ msgstr ""
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
 
@@ -1059,19 +1085,19 @@ msgstr "Diario Populares"
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
 
2
  msgstr ""
3
  "Project-Id-Version: Top 10\n"
4
  "Report-Msgid-Bugs-To: \n"
5
+ "POT-Creation-Date: 2015-01-03 01: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 "Siguientes"
64
 
65
+ #: admin/admin-dashboard.php:200 admin/admin.php:1174
66
  msgid "Popular Posts"
67
  msgstr "Los posts más populares"
68
 
70
  msgid "Daily Popular"
71
  msgstr "Diario Populares"
72
 
73
+ #: admin/admin-metabox.php:38 admin/admin.php:1263
74
  msgid "Top 10"
75
  msgstr "Тоp 10"
76
 
77
+ #: admin/admin-metabox.php:72
78
  #, fuzzy
79
  msgid "Visit count:"
80
  msgstr "Reiniciar los ajustes"
81
 
82
+ #: admin/admin-metabox.php:74
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:84
89
  msgid "Location of thumbnail:"
90
  msgstr ""
91
 
92
+ #: admin/admin-metabox.php:86
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 Top 10 Settings &raquo; Thumbnail options."
97
  msgstr ""
98
 
99
+ #: admin/admin-metabox.php:87
100
  msgid "The URL above is saved in the meta field: "
101
  msgstr ""
102
 
103
+ #: admin/admin.php:163
104
  msgid "Options saved successfully."
105
  msgstr "Configuraciones guardadas con éxito"
106
 
107
+ #: admin/admin.php:173
108
  msgid "Options set to Default."
109
  msgstr "Los parametros se configuran de manera predeterminada"
110
 
111
+ #: admin/admin.php:179
112
  msgid "Top 10 popular posts reset"
113
  msgstr "Reiniciar el Top de los 10 posts más populares"
114
 
115
+ #: admin/admin.php:185
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:192
120
  msgid "Duplicate rows cleaned from tables"
121
  msgstr ""
122
 
123
+ #: admin/admin.php:204
124
  msgid "Scheduled maintenance enabled / modified"
125
  msgstr ""
126
 
127
+ #: admin/admin.php:208
128
  msgid "Scheduled maintenance disabled"
129
  msgstr ""
130
 
131
+ #: admin/admin.php:247
132
  msgid "Counts from selected sites have been imported."
133
  msgstr ""
134
 
135
+ #: admin/admin.php:272
136
  msgid ""
137
  "Selected tables have been deleted. Note that only imported tables have been "
138
  "deleted."
139
  msgstr ""
140
 
141
+ #: admin/admin.php:280 admin/admin.php:1263 admin/admin.php:1266
142
  #, fuzzy
143
  msgid "Top 10 Settings"
144
  msgstr "Los ajustes"
145
 
146
+ #: admin/admin.php:292 admin/admin.php:314
147
  msgid "General options"
148
  msgstr ""
149
 
150
+ #: admin/admin.php:293 admin/admin.php:406
151
  msgid "Counter and tracker options"
152
  msgstr ""
153
 
154
+ #: admin/admin.php:294 admin/admin.php:511
155
  msgid "Popular post list options"
156
  msgstr ""
157
 
158
+ #: admin/admin.php:295 admin/admin.php:706
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:296
165
  msgid "Custom styles"
166
  msgstr ""
167
 
168
+ #: admin/admin.php:297 admin/admin.php:937
169
  msgid "Maintenance"
170
  msgstr ""
171
 
172
+ #: admin/admin.php:313 admin/admin.php:405 admin/admin.php:510
173
+ #: admin/admin.php:705 admin/admin.php:868 admin/admin.php:936
174
+ #: admin/admin.php:1000 admin/admin.php:1021 admin/admin.php:1205
175
+ #: admin/admin.php:1225 admin/admin.php:1235
176
  msgid "Click to toggle"
177
  msgstr ""
178
 
179
+ #: admin/admin.php:330
180
  msgid "Enable Overall stats"
181
  msgstr ""
182
 
183
+ #: admin/admin.php:336
184
  msgid "Enable Daily stats"
185
  msgstr ""
186
 
187
+ #: admin/admin.php:342
188
  msgid "Cache fix:"
189
  msgstr ""
190
 
191
+ #: admin/admin.php:345
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:349
199
  msgid "Start daily counts from midnight:"
200
  msgstr ""
201
 
202
+ #: admin/admin.php:352
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:356
210
  msgid "Daily popular contains top posts over:"
211
  msgstr ""
212
 
213
+ #: admin/admin.php:358
214
  msgid "day(s)"
215
  msgstr ""
216
 
217
+ #: admin/admin.php:359
218
  msgid "hour(s)"
219
  msgstr ""
220
 
221
+ #: admin/admin.php:360
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 "
226
  "overridden in the widget."
227
  msgstr ""
228
 
229
+ #: admin/admin.php:364
230
+ msgid "Delete options on uninstall"
231
+ msgstr ""
232
+
233
+ #: admin/admin.php:367
234
+ msgid ""
235
+ "If this is checked, all settings related to Top 10 are removed from the "
236
+ "database if you choose to uninstall/delete the plugin."
237
+ msgstr ""
238
+
239
+ #: admin/admin.php:371
240
+ msgid "Delete counter data on uninstall"
241
+ msgstr ""
242
+
243
+ #: admin/admin.php:374
244
+ msgid ""
245
+ "If this is checked, the tables containing the counter statistics are removed "
246
+ "from the database if you choose to uninstall/delete the plugin."
247
+ msgstr ""
248
+
249
+ #: admin/admin.php:375
250
+ msgid ""
251
+ "Keep this unchecked if you choose to reinstall the plugin and don't want to "
252
+ "lose your counter data."
253
+ msgstr ""
254
+
255
+ #: admin/admin.php:379
256
  msgid "Link to Top 10 plugin page"
257
  msgstr ""
258
 
259
+ #: admin/admin.php:382
260
  #, fuzzy
261
  msgid ""
262
  "A link to the plugin is added as an extra list item to the list of popular "
266
  "elemento de una lista adicional. Esto no es obligatorio, pero le "
267
  "agradeceríamos al hacerlo!"
268
 
269
+ #: admin/admin.php:387 admin/admin.php:492 admin/admin.php:687
270
+ #: admin/admin.php:850 admin/admin.php:916 admin/admin.php:993
271
  #, fuzzy
272
  msgid "Save Options"
273
  msgstr "Los parametros"
274
 
275
+ #: admin/admin.php:422
276
  #, fuzzy
277
  msgid "Display number of views on:"
278
  msgstr "¿Mostrar la cantidad de audiencia de los posts?"
279
 
280
+ #: admin/admin.php:424
281
  msgid "Posts"
282
  msgstr ""
283
 
284
+ #: admin/admin.php:425
285
  #, fuzzy
286
  msgid "Pages"
287
  msgstr "La página"
288
 
289
+ #: admin/admin.php:426
290
  msgid "Home page"
291
  msgstr ""
292
 
293
+ #: admin/admin.php:427
294
  msgid "Feeds"
295
  msgstr ""
296
 
297
+ #: admin/admin.php:428
298
  msgid "Category archives"
299
  msgstr ""
300
 
301
+ #: admin/admin.php:429
302
  msgid "Tag archives"
303
  msgstr ""
304
 
305
+ #: admin/admin.php:430
306
  msgid "Other archives"
307
  msgstr ""
308
 
309
+ #: admin/admin.php:431
310
  msgid ""
311
  "If you choose to disable this, please add <code>&lt;?php if "
312
  "( function_exists ( 'echo_tptn_post_count' ) ) echo_tptn_post_count(); ?&gt;"
313
  "</code> to your template file where you want it displayed"
314
  msgstr ""
315
 
316
+ #: admin/admin.php:435
317
  #, fuzzy
318
  msgid "Format to display the post views:"
319
  msgstr "El formato de visualización de la cuenta: "
320
 
321
+ #: admin/admin.php:438
322
  msgid ""
323
  "Use <code>%totalcount%</code> to display the total count, <code>%dailycount"
324
  "%</code> to display the daily count and <code>%overallcount%</code> to "
326
  "options displays <code>[Visited 123 times, 23 visits today]</code>"
327
  msgstr ""
328
 
329
+ #: admin/admin.php:442
330
  msgid "What do display when there are no visits?"
331
  msgstr ""
332
 
333
+ #: admin/admin.php:445
334
  msgid ""
335
  "This text applies only when there are 0 hits for the post and it isn't a "
336
  "single page. e.g. if you display post views on the homepage or archives then "
338
  "option."
339
  msgstr ""
340
 
341
+ #: admin/admin.php:449
342
  msgid "Always display latest post count"
343
  msgstr ""
344
 
345
+ #: admin/admin.php:452
346
  msgid ""
347
  "This option uses JavaScript and will increase your page load time. Turn this "
348
  "off if you are not using caching plugins or are OK with displaying older "
349
  "cached counts."
350
  msgstr ""
351
 
352
+ #: admin/admin.php:456
353
  msgid "Track visits of authors on their own posts?"
354
  msgstr "¿Observar las visitas de los autores a sus propios posts?"
355
 
356
+ #: admin/admin.php:459
357
  msgid ""
358
  "Disabling this option will stop authors visits tracked on their own posts"
359
  msgstr ""
360
 
361
+ #: admin/admin.php:463
362
  #, fuzzy
363
  msgid "Track visits of admins?"
364
  msgstr "¿Observar las visitas de los autores a sus propios posts?"
365
 
366
+ #: admin/admin.php:466
367
  msgid "Disabling this option will stop admin visits being tracked."
368
  msgstr ""
369
 
370
+ #: admin/admin.php:470
371
  #, fuzzy
372
  msgid "Track visits of Editors?"
373
  msgstr "¿Observar las visitas de los autores a sus propios posts?"
374
 
375
+ #: admin/admin.php:473
376
  msgid "Disabling this option will stop editor visits being tracked."
377
  msgstr ""
378
 
379
+ #: admin/admin.php:477
380
  msgid "Display page views on Posts and Pages in Admin"
381
  msgstr ""
382
 
383
+ #: admin/admin.php:480
384
  msgid ""
385
  "Adds three columns called Total Views, Today's Views and Views to All Posts "
386
  "and All Pages"
387
  msgstr ""
388
 
389
+ #: admin/admin.php:484
390
  #, fuzzy
391
  msgid "Show number of views to non-admins"
392
  msgstr "¿Mostrar el número de accesos a las páginas?"
393
 
394
+ #: admin/admin.php:487
395
  msgid ""
396
  "If you disable this then non-admins won't see the above columns or view the "
397
  "independent pages with the top posts"
398
  msgstr ""
399
 
400
+ #: admin/admin.php:527
401
  msgid "Number of popular posts to display: "
402
  msgstr "Mostrar el número de posts más populares"
403
 
404
+ #: admin/admin.php:530
405
  msgid ""
406
  "Maximum number of posts that will be displayed in the list. This option is "
407
  "used if you don't specify the number of posts in the widget or shortcodes"
408
  msgstr ""
409
 
410
+ #: admin/admin.php:534
411
  msgid "Post types to include in results (including custom post types)"
412
  msgstr ""
413
 
414
+ #: admin/admin.php:546
415
  msgid "List of post or page IDs to exclude from the results: "
416
  msgstr ""
417
 
418
+ #: admin/admin.php:548 admin/admin.php:655
419
  msgid "Enter comma separated list of IDs. e.g. 188,320,500"
420
  msgstr ""
421
 
422
+ #: admin/admin.php:552
423
  msgid "Exclude Categories: "
424
  msgstr "Excluir las Categorías"
425
 
426
+ #: admin/admin.php:567
427
  msgid ""
428
  "Comma separated list of category slugs. The field above has an autocomplete "
429
  "so simply start typing in the starting letters and it will prompt you with "
430
  "options"
431
  msgstr ""
432
 
433
+ #: admin/admin.php:572
434
  msgid "Title of popular posts: "
435
  msgstr "El título de los posts más populares"
436
 
437
+ #: admin/admin.php:578
438
  msgid "Title of daily popular posts: "
439
  msgstr "El título de los posts diarios más populares"
440
 
441
+ #: admin/admin.php:584
442
  msgid "When there are no posts, what should be shown?"
443
  msgstr ""
444
 
445
+ #: admin/admin.php:588
446
  msgid "Blank Output"
447
  msgstr ""
448
 
449
+ #: admin/admin.php:592
450
  msgid "Display:"
451
  msgstr ""
452
 
453
+ #: admin/admin.php:597
454
  msgid "Show post excerpt in list?"
455
  msgstr "¿Mostrar un fragmento del post en la lista?"
456
 
457
+ #: admin/admin.php:603
458
  msgid "Length of excerpt (in words): "
459
  msgstr "La longitud del fragmento(en palabras):"
460
 
461
+ #: admin/admin.php:609
462
  #, fuzzy
463
  msgid "Show post author in list?"
464
  msgstr "¿Mostrar un fragmento del post en la lista?"
465
 
466
+ #: admin/admin.php:615
467
  #, fuzzy
468
  msgid "Show post date in list?"
469
  msgstr "¿Mostrar un fragmento del post en la lista?"
470
 
471
+ #: admin/admin.php:621
472
  msgid "Limit post title length (in characters)"
473
  msgstr ""
474
 
475
+ #: admin/admin.php:627
476
  #, fuzzy
477
  msgid "Show view count in list?"
478
  msgstr "¿Mostrar un fragmento del post en la lista?"
479
 
480
+ #: admin/admin.php:633
481
  msgid "Always display latest post count in the daily lists?"
482
  msgstr ""
483
 
484
+ #: admin/admin.php:636
485
  msgid ""
486
  "This option uses JavaScript and will increase your page load time. When you "
487
  "enable this option, the daily widget will not use the options set there, but "
488
  "options will need to be set on this screen."
489
  msgstr ""
490
 
491
+ #: admin/admin.php:640
492
  msgid "Open links in new window"
493
  msgstr ""
494
 
495
+ #: admin/admin.php:646
496
  msgid "Add nofollow attribute to links in the list"
497
  msgstr ""
498
 
499
+ #: admin/admin.php:652
500
  msgid "Exclude display of related posts on these posts / pages"
501
  msgstr ""
502
 
503
+ #: admin/admin.php:659
504
  #, fuzzy
505
  msgid "Customise the list HTML"
506
  msgstr "Personalizar el resultado:"
507
 
508
+ #: admin/admin.php:662
509
  msgid "HTML to display before the list of posts: "
510
  msgstr "HTML mostrar antes de la lista de posts:"
511
 
512
+ #: admin/admin.php:668
513
  msgid "HTML to display before each list item: "
514
  msgstr "HTML mostrar ante cada elemento de la lista:"
515
 
516
+ #: admin/admin.php:674
517
  msgid "HTML to display after each list item: "
518
  msgstr "HTML mostrar después de cada elemento de la lista:"
519
 
520
+ #: admin/admin.php:680
521
  msgid "HTML to display after the list of posts: "
522
  msgstr "HTML mostrar después de la lista de posts:"
523
 
524
+ #: admin/admin.php:721
525
  msgid "Location of post thumbnail:"
526
  msgstr ""
527
 
528
+ #: admin/admin.php:725
529
  msgid "Display thumbnails inline with posts, before title"
530
  msgstr "Mostrar el thumbnails en línea con los posts, antes del título"
531
 
532
+ #: admin/admin.php:730
533
  msgid "Display thumbnails inline with posts, after title"
534
  msgstr "Mostrar el thumbnails en línea con los posts, después del título"
535
 
536
+ #: admin/admin.php:735
537
  msgid "Display only thumbnails, no text"
538
  msgstr "Mostrar solamente thumbnails, no el texto"
539
 
540
+ #: admin/admin.php:740
541
  msgid "Do not display thumbnails, only text."
542
  msgstr "No mostrar thumbnails, sólo el texto"
543
 
544
+ #: admin/admin.php:744
545
  msgid "Thumbnail size:"
546
  msgstr ""
547
 
548
+ #: admin/admin.php:768
549
  msgid "Custom size"
550
  msgstr ""
551
 
552
+ #: admin/admin.php:771
553
  msgid ""
554
  "You can choose from existing image sizes above or create a custom size. If "
555
  "you have chosen Custom size above, then enter the width, height and crop "
556
  "settings below. For best results, use a cropped image."
557
  msgstr ""
558
 
559
+ #: admin/admin.php:772
560
  msgid ""
561
  "If you change the width and/or height below, existing images will not be "
562
  "automatically resized."
563
  msgstr ""
564
 
565
+ #: admin/admin.php:773
566
  #, php-format
567
  msgid ""
568
  "I recommend using <a href='%s' target='_blank'>Force Regenerate Thumbnails</"
570
  "regenerate all image sizes."
571
  msgstr ""
572
 
573
+ #: admin/admin.php:776
574
  msgid "Width of custom thumbnail:"
575
  msgstr ""
576
 
577
+ #: admin/admin.php:781
578
  msgid "Height of custom thumbnail"
579
  msgstr ""
580
 
581
+ #: admin/admin.php:786
582
  msgid "Crop mode:"
583
  msgstr ""
584
 
585
+ #: admin/admin.php:790
586
  msgid ""
587
  "By default, thumbnails will be proportionately cropped. Check this box to "
588
  "hard crop the thumbnails."
589
  msgstr ""
590
 
591
+ #: admin/admin.php:791
592
  #, php-format
593
  msgid "<a href='%s' target='_blank'>Difference between soft and hard crop</a>"
594
  msgstr ""
595
 
596
+ #: admin/admin.php:793
597
  msgid ""
598
  "Since you're using the default styles set under the Custom Styles section, "
599
  "the width and height is fixed at 65px and crop mode is enabled."
600
  msgstr ""
601
 
602
+ #: admin/admin.php:798
603
  msgid "Style attributes / Width and Height HTML attributes:"
604
  msgstr ""
605
 
606
+ #: admin/admin.php:802
607
  msgid "Style attributes are used for width and height."
608
  msgstr ""
609
 
610
+ #: admin/admin.php:807
611
  msgid "HTML width and height attributes are used for width and height."
612
  msgstr ""
613
 
614
+ #: admin/admin.php:811
615
  msgid "Use timthumb to generate thumbnails? "
616
  msgstr ""
617
 
618
+ #: admin/admin.php:814
619
  msgid ""
620
  "If checked, <a href=\"http://www.binarymoon.co.uk/projects/timthumb/\" "
621
  "target=\"_blank\">timthumb</a> will be used to generate thumbnails"
622
  msgstr ""
623
 
624
+ #: admin/admin.php:817
625
  msgid "Quality of thumbnails generated by timthumb:"
626
  msgstr ""
627
 
628
+ #: admin/admin.php:820
629
  msgid ""
630
  "Enter values between 0 and 100 only. 100 is highest quality and the highest "
631
  "file size. Suggested maximum value is 95. Default is 75."
632
  msgstr ""
633
 
634
+ #: admin/admin.php:823
635
  #, fuzzy
636
  msgid "Post thumbnail meta field name: "
637
  msgstr "Los parámetros del thumbnail:"
638
 
639
+ #: admin/admin.php:826
640
  msgid ""
641
  "The value of this field should contain the image source and is set in the "
642
  "<em>Add New Post</em> screen"
643
  msgstr ""
644
 
645
+ #: admin/admin.php:829
646
  #, fuzzy
647
  msgid ""
648
  "If the postmeta is not set, then should the plugin extract the first image "
653
  "en caso que la primera imagen de los posts correspondientes es muy grande en "
654
  "tamaño de archivo "
655
 
656
+ #: admin/admin.php:832
657
  #, fuzzy
658
  msgid ""
659
  "This could slow down the loading of your page if the first image in the "
664
  "en caso que la primera imagen de los posts correspondientes es muy grande en "
665
  "tamaño de archivo "
666
 
667
+ #: admin/admin.php:835
668
  msgid "Use default thumbnail? "
669
  msgstr ""
670
 
671
+ #: admin/admin.php:838
672
  msgid ""
673
  "If checked, when no thumbnail is found, show a default one from the URL "
674
  "below. If not checked and no thumbnail is found, no image will be shown."
678
  "verificado el post y tampoco está encontrada la imagen reducida, entonces no "
679
  "hay que mostrarla."
680
 
681
+ #: admin/admin.php:841
682
  msgid "Default thumbnail: "
683
  msgstr ""
684
 
685
+ #: admin/admin.php:845
686
  msgid ""
687
  "The plugin will first check if the post contains a thumbnail. If it doesn't "
688
  "then it will check the meta field. If this is not available, then it will "
689
  "show the default image as specified above"
690
  msgstr ""
691
 
692
+ #: admin/admin.php:869
693
  msgid "Custom CSS"
694
  msgstr ""
695
 
696
+ #: admin/admin.php:884
697
  msgid "Use default style included in the plugin?"
698
  msgstr ""
699
 
700
+ #: admin/admin.php:887
701
  msgid ""
702
  "Top 10 includes a default style that makes your popular posts list to look "
703
  "beautiful. Check the box above if you want to use this."
704
  msgstr ""
705
 
706
+ #: admin/admin.php:888
707
  msgid ""
708
  "Enabling this option will turn on the thumbnails and set their width and "
709
  "height to 65px. It will also turn off the display of the author, excerpt and "
710
  "date if already enabled. Disabling this option will not revert any settings."
711
  msgstr ""
712
 
713
+ #: admin/admin.php:889
714
  #, php-format
715
  msgid ""
716
  "You can view the default style at <a href=\"%1$s\" target=\"_blank\">%1$s</a>"
717
  msgstr ""
718
 
719
+ #: admin/admin.php:892
720
  msgid "Custom CSS to add to header:"
721
  msgstr ""
722
 
723
+ #: admin/admin.php:897
724
  msgid ""
725
  "Do not include <code>style</code> tags. Check out the <a href=\"http://"
726
  "wordpress.org/extend/plugins/top-10/faq/\" target=\"_blank\">FAQ</a> for "
727
  "available CSS classes to style."
728
  msgstr ""
729
 
730
+ #: admin/admin.php:917
731
  #, fuzzy
732
  msgid "Default Options"
733
  msgstr "Los Parámetros Resultantes"
734
 
735
+ #: admin/admin.php:917
736
  msgid "Do you want to set options to Default?"
737
  msgstr "¿Quiere configurar las opciones de forma predeterminada?"
738
 
739
+ #: admin/admin.php:941
740
  msgid ""
741
  "Over time the Daily Top 10 database grows in size, which reduces the "
742
  "performance of the plugin. Cleaning the database at regular intervals could "
744
  "will automatically delete entries older than 90 days."
745
  msgstr ""
746
 
747
+ #: admin/admin.php:942
748
  msgid ""
749
  "Note: When scheduled maintenance is enabled, WordPress will run the cron job "
750
  "everytime the job is rescheduled (i.e. you change the settings below)."
751
  msgstr ""
752
 
753
+ #: admin/admin.php:945
754
  msgid "Enable scheduled maintenance of daily tables:"
755
  msgstr ""
756
 
757
+ #: admin/admin.php:949
758
  msgid "Time to run maintenance"
759
  msgstr ""
760
 
761
+ #: admin/admin.php:950
762
  msgid "hrs"
763
  msgstr ""
764
 
765
+ #: admin/admin.php:950
766
  msgid "min"
767
  msgstr ""
768
 
769
+ #: admin/admin.php:952
770
  msgid "How often should the maintenance be run:"
771
  msgstr ""
772
 
773
+ #: admin/admin.php:956
774
  msgid "Daily"
775
  msgstr ""
776
 
777
+ #: admin/admin.php:960
778
  msgid "Weekly"
779
  msgstr ""
780
 
781
+ #: admin/admin.php:964
782
  msgid "Fortnightly"
783
  msgstr ""
784
 
785
+ #: admin/admin.php:968
786
  msgid "Monthly"
787
  msgstr ""
788
 
789
+ #: admin/admin.php:977
790
  msgid "The cron job has been scheduled. Maintenance will run "
791
  msgstr ""
792
 
793
+ #: admin/admin.php:982
794
  msgid "The cron job is missing. Please resave this page to add the job"
795
  msgstr ""
796
 
797
+ #: admin/admin.php:987
798
  msgid "Maintenance is turned off"
799
  msgstr ""
800
 
801
+ #: admin/admin.php:1001
802
  msgid "Reset count"
803
  msgstr "Reiniciar los ajustes"
804
 
805
+ #: admin/admin.php:1004
806
  msgid ""
807
  "This cannot be reversed. Make sure that your database has been backed up "
808
  "before proceeding"
810
  "Esta operación no puede ser anulada. Antes de anular, asegúrese de que si ha "
811
  "sido creada una copia de seguridad para su base de datos."
812
 
813
+ #: admin/admin.php:1007
814
  #, fuzzy
815
  msgid "Reset Popular Posts"
816
  msgstr "Los posts más populares"
817
 
818
+ #: admin/admin.php:1007
819
  msgid "Are you sure you want to reset the popular posts?"
820
  msgstr "¿Está seguro de que desea reiniciar los posts más populares?"
821
 
822
+ #: admin/admin.php:1008
823
  #, fuzzy
824
  msgid "Reset Daily Popular Posts"
825
  msgstr "Los posts diarios más populares"
826
 
827
+ #: admin/admin.php:1008
828
  msgid "Are you sure you want to reset the daily popular posts?"
829
  msgstr "¿Está seguro de que desea reiniciar los posts diarios más populares?"
830
 
831
+ #: admin/admin.php:1009
832
  msgid "Clear duplicates"
833
  msgstr ""
834
 
835
+ #: admin/admin.php:1009
836
  msgid "This will delete the duplicate entries in the tables. Proceed?"
837
  msgstr ""
838
  "Esta acción eliminará las entradas duplicadas en las tablas. ¿Continuar?"
839
 
840
+ #: admin/admin.php:1022
841
  msgid "WordPress Multisite: Migrate Top 10 v1.x counts to 2.x"
842
  msgstr ""
843
 
844
+ #: admin/admin.php:1025
845
  msgid ""
846
  "If you've been using Top 10 v1.x on multisite, you would have needed to "
847
  "activate the plugin independently for each site. This would have resulted in "
848
  "two tables being created for each site in the network."
849
  msgstr ""
850
 
851
+ #: admin/admin.php:1026
852
  msgid ""
853
  "Top 10 v2.x onwards uses only a single table to record the count, keeping "
854
  "your database clean. You can use this tool to import the recorded counts "
855
  "from v1.x tables to the new v2.x table format."
856
  msgstr ""
857
 
858
+ #: admin/admin.php:1029
859
  msgid ""
860
  "If you do not see any tables below, then it means that either all data has "
861
  "already been imported or no relevant information has been found."
862
  msgstr ""
863
 
864
+ #: admin/admin.php:1032
865
  msgid ""
866
  "After running the importer, please verify that all the counts have been "
867
  "successfully imported. Only then should you delete any old tables!"
868
  msgstr ""
869
 
870
+ #: admin/admin.php:1066
871
  msgid "Blog ID"
872
  msgstr ""
873
 
874
+ #: admin/admin.php:1069
875
  msgid "Status"
876
  msgstr ""
877
 
878
+ #: admin/admin.php:1072
879
  msgid "Select to import"
880
  msgstr ""
881
 
882
+ #: admin/admin.php:1082
883
  msgid "Blog #"
884
  msgstr ""
885
 
886
+ #: admin/admin.php:1092
887
  msgid "Not imported"
888
  msgstr ""
889
 
890
+ #: admin/admin.php:1096
891
  msgid "Imported"
892
  msgstr ""
893
 
894
+ #: admin/admin.php:1117
895
  msgid "Begin import"
896
  msgstr ""
897
 
898
+ #: admin/admin.php:1118
899
  msgid "Delete selected tables"
900
  msgstr ""
901
 
902
+ #: admin/admin.php:1119
903
  msgid "Delete all imported tables"
904
  msgstr ""
905
 
906
+ #: admin/admin.php:1176 admin/admin.php:1272
907
  msgid "Daily Popular Posts"
908
  msgstr "Los posts diarios más populares"
909
 
910
+ #: admin/admin.php:1206
911
  msgid "Support the development"
912
  msgstr "Apoyar al elaborador"
913
 
914
+ #: admin/admin.php:1213
915
  msgid "Donation for Top 10"
916
  msgstr ""
917
 
918
+ #: admin/admin.php:1215
919
  msgid "Enter amount in USD: "
920
  msgstr "Ingresar las cifras en USD"
921
 
922
+ #: admin/admin.php:1219
923
  #, fuzzy
924
  msgid "Send your donation to the author of Top 10"
925
  msgstr "Enviar su subvención al autor"
926
 
927
+ #: admin/admin.php:1226
928
  msgid "Follow me"
929
  msgstr ""
930
 
931
+ #: admin/admin.php:1236
932
  #, fuzzy
933
  msgid "Quick links"
934
  msgstr "Enlaces rápidos"
935
 
936
+ #: admin/admin.php:1240
937
  #, fuzzy
938
  msgid "Top 10 plugin page"
939
  msgstr "página plugin"
940
 
941
+ #: admin/admin.php:1241
942
  msgid "Top 10 Github page"
943
  msgstr ""
944
 
945
+ #: admin/admin.php:1242
946
  msgid "Other plugins"
947
  msgstr "Otros plugins"
948
 
949
+ #: admin/admin.php:1243
950
  msgid "Ajay's blog"
951
  msgstr "Blog de Ajay"
952
 
953
+ #: admin/admin.php:1244
954
  msgid "FAQ"
955
  msgstr ""
956
 
957
+ #: admin/admin.php:1245 admin/admin.php:1403
958
  msgid "Support"
959
  msgstr "Apoyo"
960
 
961
+ #: admin/admin.php:1246
962
  msgid "Reviews"
963
  msgstr ""
964
 
965
+ #: admin/admin.php:1269
966
  #, fuzzy
967
  msgid "Overall Popular Posts"
968
  msgstr "Ver los posts más populares"
969
 
970
+ #: admin/admin.php:1380
971
  msgid "Settings"
972
  msgstr "Los ajustes"
973
 
974
+ #: admin/admin.php:1404
975
  msgid "Donate"
976
  msgstr "Subvencionar"
977
 
1085
  msgid "No top posts yet"
1086
  msgstr "Reiniciar el Top de los 10 posts más populares"
1087
 
1088
+ #: top-10.php:1690
1089
  msgid "Once Weekly"
1090
  msgstr ""
1091
 
1092
+ #: top-10.php:1694
1093
  msgid "Once Fortnightly"
1094
  msgstr ""
1095
 
1096
+ #: top-10.php:1698
1097
  msgid "Once Monthly"
1098
  msgstr ""
1099
 
1100
+ #: top-10.php:1702
1101
  msgid "Once quarterly"
1102
  msgstr ""
1103
 
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: 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,7 +62,7 @@ msgstr "Précédente"
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,155 +70,155 @@ msgstr "Postes populaires"
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
 
77
- #: admin/admin-metabox.php:71
78
  #, fuzzy
79
  msgid "Visit count:"
80
  msgstr "Réinitialiser le compteur"
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 "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 "
@@ -226,11 +226,37 @@ msgid ""
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,59 +266,59 @@ msgstr ""
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,11 +326,11 @@ msgid ""
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,231 +338,231 @@ msgid ""
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,79 +570,79 @@ msgid ""
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,7 +653,7 @@ msgstr ""
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,11 +664,11 @@ msgstr ""
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,65 +677,65 @@ msgstr ""
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,65 +743,65 @@ msgid ""
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,168 +809,168 @@ msgstr ""
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
 
@@ -1058,19 +1084,19 @@ msgstr "<h3>Populaires Journaliers</h3>"
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
 
2
  msgstr ""
3
  "Project-Id-Version: Top 10\n"
4
  "Report-Msgid-Bugs-To: \n"
5
+ "POT-Creation-Date: 2015-01-03 01: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:1174
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:1263
74
  msgid "Top 10"
75
  msgstr "Тоp 10"
76
 
77
+ #: admin/admin-metabox.php:72
78
  #, fuzzy
79
  msgid "Visit count:"
80
  msgstr "Réinitialiser le compteur"
81
 
82
+ #: admin/admin-metabox.php:74
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:84
89
  msgid "Location of thumbnail:"
90
  msgstr ""
91
 
92
+ #: admin/admin-metabox.php:86
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 Top 10 Settings &raquo; Thumbnail options."
97
  msgstr ""
98
 
99
+ #: admin/admin-metabox.php:87
100
  msgid "The URL above is saved in the meta field: "
101
  msgstr ""
102
 
103
+ #: admin/admin.php:163
104
  msgid "Options saved successfully."
105
  msgstr "Les options sont sauvegardées avec succès"
106
 
107
+ #: admin/admin.php:173
108
  msgid "Options set to Default."
109
  msgstr "Options par défaut sont définies"
110
 
111
+ #: admin/admin.php:179
112
  msgid "Top 10 popular posts reset"
113
  msgstr "Annuler le top 10 des enregistrements les plus populaires"
114
 
115
+ #: admin/admin.php:185
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:192
120
  msgid "Duplicate rows cleaned from tables"
121
  msgstr ""
122
 
123
+ #: admin/admin.php:204
124
  msgid "Scheduled maintenance enabled / modified"
125
  msgstr ""
126
 
127
+ #: admin/admin.php:208
128
  msgid "Scheduled maintenance disabled"
129
  msgstr ""
130
 
131
+ #: admin/admin.php:247
132
  msgid "Counts from selected sites have been imported."
133
  msgstr ""
134
 
135
+ #: admin/admin.php:272
136
  msgid ""
137
  "Selected tables have been deleted. Note that only imported tables have been "
138
  "deleted."
139
  msgstr ""
140
 
141
+ #: admin/admin.php:280 admin/admin.php:1263 admin/admin.php:1266
142
  #, fuzzy
143
  msgid "Top 10 Settings"
144
  msgstr "Paramètres"
145
 
146
+ #: admin/admin.php:292 admin/admin.php:314
147
  msgid "General options"
148
  msgstr ""
149
 
150
+ #: admin/admin.php:293 admin/admin.php:406
151
  msgid "Counter and tracker options"
152
  msgstr ""
153
 
154
+ #: admin/admin.php:294 admin/admin.php:511
155
  msgid "Popular post list options"
156
  msgstr ""
157
 
158
+ #: admin/admin.php:295 admin/admin.php:706
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:296
165
  msgid "Custom styles"
166
  msgstr ""
167
 
168
+ #: admin/admin.php:297 admin/admin.php:937
169
  msgid "Maintenance"
170
  msgstr ""
171
 
172
+ #: admin/admin.php:313 admin/admin.php:405 admin/admin.php:510
173
+ #: admin/admin.php:705 admin/admin.php:868 admin/admin.php:936
174
+ #: admin/admin.php:1000 admin/admin.php:1021 admin/admin.php:1205
175
+ #: admin/admin.php:1225 admin/admin.php:1235
176
  msgid "Click to toggle"
177
  msgstr ""
178
 
179
+ #: admin/admin.php:330
180
  msgid "Enable Overall stats"
181
  msgstr ""
182
 
183
+ #: admin/admin.php:336
184
  msgid "Enable Daily stats"
185
  msgstr ""
186
 
187
+ #: admin/admin.php:342
188
  msgid "Cache fix:"
189
  msgstr ""
190
 
191
+ #: admin/admin.php:345
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:349
199
  msgid "Start daily counts from midnight:"
200
  msgstr ""
201
 
202
+ #: admin/admin.php:352
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:356
210
  msgid "Daily popular contains top posts over:"
211
  msgstr ""
212
 
213
+ #: admin/admin.php:358
214
  msgid "day(s)"
215
  msgstr ""
216
 
217
+ #: admin/admin.php:359
218
  msgid "hour(s)"
219
  msgstr ""
220
 
221
+ #: admin/admin.php:360
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 "
226
  "overridden in the widget."
227
  msgstr ""
228
 
229
+ #: admin/admin.php:364
230
+ msgid "Delete options on uninstall"
231
+ msgstr ""
232
+
233
+ #: admin/admin.php:367
234
+ msgid ""
235
+ "If this is checked, all settings related to Top 10 are removed from the "
236
+ "database if you choose to uninstall/delete the plugin."
237
+ msgstr ""
238
+
239
+ #: admin/admin.php:371
240
+ msgid "Delete counter data on uninstall"
241
+ msgstr ""
242
+
243
+ #: admin/admin.php:374
244
+ msgid ""
245
+ "If this is checked, the tables containing the counter statistics are removed "
246
+ "from the database if you choose to uninstall/delete the plugin."
247
+ msgstr ""
248
+
249
+ #: admin/admin.php:375
250
+ msgid ""
251
+ "Keep this unchecked if you choose to reinstall the plugin and don't want to "
252
+ "lose your counter data."
253
+ msgstr ""
254
+
255
+ #: admin/admin.php:379
256
  msgid "Link to Top 10 plugin page"
257
  msgstr ""
258
 
259
+ #: admin/admin.php:382
260
  #, fuzzy
261
  msgid ""
262
  "A link to the plugin is added as an extra list item to the list of popular "
266
  "le répertoire des enregistrements populaires. Cela n'est pas obligatoire, "
267
  "mais nous vous y remercions!"
268
 
269
+ #: admin/admin.php:387 admin/admin.php:492 admin/admin.php:687
270
+ #: admin/admin.php:850 admin/admin.php:916 admin/admin.php:993
271
  #, fuzzy
272
  msgid "Save Options"
273
  msgstr "Options:"
274
 
275
+ #: admin/admin.php:422
276
  #, fuzzy
277
  msgid "Display number of views on:"
278
  msgstr "Afficher le nombre des visionnages du message?"
279
 
280
+ #: admin/admin.php:424
281
  msgid "Posts"
282
  msgstr ""
283
 
284
+ #: admin/admin.php:425
285
  #, fuzzy
286
  msgid "Pages"
287
  msgstr "Page"
288
 
289
+ #: admin/admin.php:426
290
  msgid "Home page"
291
  msgstr ""
292
 
293
+ #: admin/admin.php:427
294
  msgid "Feeds"
295
  msgstr ""
296
 
297
+ #: admin/admin.php:428
298
  msgid "Category archives"
299
  msgstr ""
300
 
301
+ #: admin/admin.php:429
302
  msgid "Tag archives"
303
  msgstr ""
304
 
305
+ #: admin/admin.php:430
306
  msgid "Other archives"
307
  msgstr ""
308
 
309
+ #: admin/admin.php:431
310
  msgid ""
311
  "If you choose to disable this, please add <code>&lt;?php if "
312
  "( function_exists ( 'echo_tptn_post_count' ) ) echo_tptn_post_count(); ?&gt;"
313
  "</code> to your template file where you want it displayed"
314
  msgstr ""
315
 
316
+ #: admin/admin.php:435
317
  #, fuzzy
318
  msgid "Format to display the post views:"
319
  msgstr "Format d’affichage de la quantité en:"
320
 
321
+ #: admin/admin.php:438
322
  msgid ""
323
  "Use <code>%totalcount%</code> to display the total count, <code>%dailycount"
324
  "%</code> to display the daily count and <code>%overallcount%</code> to "
326
  "options displays <code>[Visited 123 times, 23 visits today]</code>"
327
  msgstr ""
328
 
329
+ #: admin/admin.php:442
330
  msgid "What do display when there are no visits?"
331
  msgstr ""
332
 
333
+ #: admin/admin.php:445
334
  msgid ""
335
  "This text applies only when there are 0 hits for the post and it isn't a "
336
  "single page. e.g. if you display post views on the homepage or archives then "
338
  "option."
339
  msgstr ""
340
 
341
+ #: admin/admin.php:449
342
  msgid "Always display latest post count"
343
  msgstr ""
344
 
345
+ #: admin/admin.php:452
346
  msgid ""
347
  "This option uses JavaScript and will increase your page load time. Turn this "
348
  "off if you are not using caching plugins or are OK with displaying older "
349
  "cached counts."
350
  msgstr ""
351
 
352
+ #: admin/admin.php:456
353
  msgid "Track visits of authors on their own posts?"
354
  msgstr "Suivre les visites des auteurs de leurs propres messages?"
355
 
356
+ #: admin/admin.php:459
357
  msgid ""
358
  "Disabling this option will stop authors visits tracked on their own posts"
359
  msgstr ""
360
 
361
+ #: admin/admin.php:463
362
  #, fuzzy
363
  msgid "Track visits of admins?"
364
  msgstr "Suivre les visites des auteurs de leurs propres messages?"
365
 
366
+ #: admin/admin.php:466
367
  msgid "Disabling this option will stop admin visits being tracked."
368
  msgstr ""
369
 
370
+ #: admin/admin.php:470
371
  #, fuzzy
372
  msgid "Track visits of Editors?"
373
  msgstr "Suivre les visites des auteurs de leurs propres messages?"
374
 
375
+ #: admin/admin.php:473
376
  msgid "Disabling this option will stop editor visits being tracked."
377
  msgstr ""
378
 
379
+ #: admin/admin.php:477
380
  msgid "Display page views on Posts and Pages in Admin"
381
  msgstr ""
382
 
383
+ #: admin/admin.php:480
384
  msgid ""
385
  "Adds three columns called Total Views, Today's Views and Views to All Posts "
386
  "and All Pages"
387
  msgstr ""
388
 
389
+ #: admin/admin.php:484
390
  #, fuzzy
391
  msgid "Show number of views to non-admins"
392
  msgstr "Afficher le nombre des visionnages sur les pages?"
393
 
394
+ #: admin/admin.php:487
395
  msgid ""
396
  "If you disable this then non-admins won't see the above columns or view the "
397
  "independent pages with the top posts"
398
  msgstr ""
399
 
400
+ #: admin/admin.php:527
401
  msgid "Number of popular posts to display: "
402
  msgstr "Le nombre de populaires sur le forum"
403
 
404
+ #: admin/admin.php:530
405
  msgid ""
406
  "Maximum number of posts that will be displayed in the list. This option is "
407
  "used if you don't specify the number of posts in the widget or shortcodes"
408
  msgstr ""
409
 
410
+ #: admin/admin.php:534
411
  msgid "Post types to include in results (including custom post types)"
412
  msgstr ""
413
 
414
+ #: admin/admin.php:546
415
  msgid "List of post or page IDs to exclude from the results: "
416
  msgstr ""
417
 
418
+ #: admin/admin.php:548 admin/admin.php:655
419
  msgid "Enter comma separated list of IDs. e.g. 188,320,500"
420
  msgstr ""
421
 
422
+ #: admin/admin.php:552
423
  msgid "Exclude Categories: "
424
  msgstr "Exclure les catégories:"
425
 
426
+ #: admin/admin.php:567
427
  msgid ""
428
  "Comma separated list of category slugs. The field above has an autocomplete "
429
  "so simply start typing in the starting letters and it will prompt you with "
430
  "options"
431
  msgstr ""
432
 
433
+ #: admin/admin.php:572
434
  msgid "Title of popular posts: "
435
  msgstr "Les en-têtes des messages populaires"
436
 
437
+ #: admin/admin.php:578
438
  msgid "Title of daily popular posts: "
439
  msgstr "Les en-têtes des messages populaires journaliers"
440
 
441
+ #: admin/admin.php:584
442
  msgid "When there are no posts, what should be shown?"
443
  msgstr ""
444
 
445
+ #: admin/admin.php:588
446
  msgid "Blank Output"
447
  msgstr ""
448
 
449
+ #: admin/admin.php:592
450
  msgid "Display:"
451
  msgstr ""
452
 
453
+ #: admin/admin.php:597
454
  msgid "Show post excerpt in list?"
455
  msgstr "Afficher le fragment du message dans la liste?"
456
 
457
+ #: admin/admin.php:603
458
  msgid "Length of excerpt (in words): "
459
  msgstr "Longueur du fragment (mots):"
460
 
461
+ #: admin/admin.php:609
462
  #, fuzzy
463
  msgid "Show post author in list?"
464
  msgstr "Afficher le fragment du message dans la liste?"
465
 
466
+ #: admin/admin.php:615
467
  #, fuzzy
468
  msgid "Show post date in list?"
469
  msgstr "Afficher le fragment du message dans la liste?"
470
 
471
+ #: admin/admin.php:621
472
  msgid "Limit post title length (in characters)"
473
  msgstr ""
474
 
475
+ #: admin/admin.php:627
476
  #, fuzzy
477
  msgid "Show view count in list?"
478
  msgstr "Afficher le fragment du message dans la liste?"
479
 
480
+ #: admin/admin.php:633
481
  msgid "Always display latest post count in the daily lists?"
482
  msgstr ""
483
 
484
+ #: admin/admin.php:636
485
  msgid ""
486
  "This option uses JavaScript and will increase your page load time. When you "
487
  "enable this option, the daily widget will not use the options set there, but "
488
  "options will need to be set on this screen."
489
  msgstr ""
490
 
491
+ #: admin/admin.php:640
492
  msgid "Open links in new window"
493
  msgstr ""
494
 
495
+ #: admin/admin.php:646
496
  msgid "Add nofollow attribute to links in the list"
497
  msgstr ""
498
 
499
+ #: admin/admin.php:652
500
  msgid "Exclude display of related posts on these posts / pages"
501
  msgstr ""
502
 
503
+ #: admin/admin.php:659
504
  #, fuzzy
505
  msgid "Customise the list HTML"
506
  msgstr "Paramétrer la sortie:"
507
 
508
+ #: admin/admin.php:662
509
  msgid "HTML to display before the list of posts: "
510
  msgstr "HTML d'affichage avant la liste des messages:"
511
 
512
+ #: admin/admin.php:668
513
  msgid "HTML to display before each list item: "
514
  msgstr "HTML d'affichage avant chaque élément de la liste:"
515
 
516
+ #: admin/admin.php:674
517
  msgid "HTML to display after each list item: "
518
  msgstr "HTML d'affichage après chaque élément de la liste:"
519
 
520
+ #: admin/admin.php:680
521
  msgid "HTML to display after the list of posts: "
522
  msgstr "HTML d'affichage après la liste des messages:"
523
 
524
+ #: admin/admin.php:721
525
  msgid "Location of post thumbnail:"
526
  msgstr ""
527
 
528
+ #: admin/admin.php:725
529
  msgid "Display thumbnails inline with posts, before title"
530
  msgstr "Afficher le thumbnail encastré et les messages avant l'en-tête"
531
 
532
+ #: admin/admin.php:730
533
  msgid "Display thumbnails inline with posts, after title"
534
  msgstr "Afficher le thumbnail encastré et les messages après l'en-tête"
535
 
536
+ #: admin/admin.php:735
537
  msgid "Display only thumbnails, no text"
538
  msgstr "Afficher uniquement le thumbnail, sans le texte"
539
 
540
+ #: admin/admin.php:740
541
  msgid "Do not display thumbnails, only text."
542
  msgstr "Ne pas afficher le thumbnail, uniquement le texte"
543
 
544
+ #: admin/admin.php:744
545
  msgid "Thumbnail size:"
546
  msgstr ""
547
 
548
+ #: admin/admin.php:768
549
  msgid "Custom size"
550
  msgstr ""
551
 
552
+ #: admin/admin.php:771
553
  msgid ""
554
  "You can choose from existing image sizes above or create a custom size. If "
555
  "you have chosen Custom size above, then enter the width, height and crop "
556
  "settings below. For best results, use a cropped image."
557
  msgstr ""
558
 
559
+ #: admin/admin.php:772
560
  msgid ""
561
  "If you change the width and/or height below, existing images will not be "
562
  "automatically resized."
563
  msgstr ""
564
 
565
+ #: admin/admin.php:773
566
  #, php-format
567
  msgid ""
568
  "I recommend using <a href='%s' target='_blank'>Force Regenerate Thumbnails</"
570
  "regenerate all image sizes."
571
  msgstr ""
572
 
573
+ #: admin/admin.php:776
574
  msgid "Width of custom thumbnail:"
575
  msgstr ""
576
 
577
+ #: admin/admin.php:781
578
  msgid "Height of custom thumbnail"
579
  msgstr ""
580
 
581
+ #: admin/admin.php:786
582
  msgid "Crop mode:"
583
  msgstr ""
584
 
585
+ #: admin/admin.php:790
586
  msgid ""
587
  "By default, thumbnails will be proportionately cropped. Check this box to "
588
  "hard crop the thumbnails."
589
  msgstr ""
590
 
591
+ #: admin/admin.php:791
592
  #, php-format
593
  msgid "<a href='%s' target='_blank'>Difference between soft and hard crop</a>"
594
  msgstr ""
595
 
596
+ #: admin/admin.php:793
597
  msgid ""
598
  "Since you're using the default styles set under the Custom Styles section, "
599
  "the width and height is fixed at 65px and crop mode is enabled."
600
  msgstr ""
601
 
602
+ #: admin/admin.php:798
603
  msgid "Style attributes / Width and Height HTML attributes:"
604
  msgstr ""
605
 
606
+ #: admin/admin.php:802
607
  msgid "Style attributes are used for width and height."
608
  msgstr ""
609
 
610
+ #: admin/admin.php:807
611
  msgid "HTML width and height attributes are used for width and height."
612
  msgstr ""
613
 
614
+ #: admin/admin.php:811
615
  msgid "Use timthumb to generate thumbnails? "
616
  msgstr ""
617
 
618
+ #: admin/admin.php:814
619
  msgid ""
620
  "If checked, <a href=\"http://www.binarymoon.co.uk/projects/timthumb/\" "
621
  "target=\"_blank\">timthumb</a> will be used to generate thumbnails"
622
  msgstr ""
623
 
624
+ #: admin/admin.php:817
625
  msgid "Quality of thumbnails generated by timthumb:"
626
  msgstr ""
627
 
628
+ #: admin/admin.php:820
629
  msgid ""
630
  "Enter values between 0 and 100 only. 100 is highest quality and the highest "
631
  "file size. Suggested maximum value is 95. Default is 75."
632
  msgstr ""
633
 
634
+ #: admin/admin.php:823
635
  #, fuzzy
636
  msgid "Post thumbnail meta field name: "
637
  msgstr "Options thumbnail des messages:"
638
 
639
+ #: admin/admin.php:826
640
  msgid ""
641
  "The value of this field should contain the image source and is set in the "
642
  "<em>Add New Post</em> screen"
643
  msgstr ""
644
 
645
+ #: admin/admin.php:829
646
  #, fuzzy
647
  msgid ""
648
  "If the postmeta is not set, then should the plugin extract the first image "
653
  "première image de la résolution correspondante du fichier est de taille "
654
  "supérieure"
655
 
656
+ #: admin/admin.php:832
657
  #, fuzzy
658
  msgid ""
659
  "This could slow down the loading of your page if the first image in the "
664
  "première image de la résolution correspondante du fichier est de taille "
665
  "supérieure"
666
 
667
+ #: admin/admin.php:835
668
  msgid "Use default thumbnail? "
669
  msgstr ""
670
 
671
+ #: admin/admin.php:838
672
  msgid ""
673
  "If checked, when no thumbnail is found, show a default one from the URL "
674
  "below. If not checked and no thumbnail is found, no image will be shown."
677
  "Thumbnail par défaut. S'il n'a pas été déterminé, que le thumbnail n'a pas "
678
  "été retrouvé, ne pas afficher l'image."
679
 
680
+ #: admin/admin.php:841
681
  msgid "Default thumbnail: "
682
  msgstr ""
683
 
684
+ #: admin/admin.php:845
685
  msgid ""
686
  "The plugin will first check if the post contains a thumbnail. If it doesn't "
687
  "then it will check the meta field. If this is not available, then it will "
688
  "show the default image as specified above"
689
  msgstr ""
690
 
691
+ #: admin/admin.php:869
692
  msgid "Custom CSS"
693
  msgstr ""
694
 
695
+ #: admin/admin.php:884
696
  msgid "Use default style included in the plugin?"
697
  msgstr ""
698
 
699
+ #: admin/admin.php:887
700
  msgid ""
701
  "Top 10 includes a default style that makes your popular posts list to look "
702
  "beautiful. Check the box above if you want to use this."
703
  msgstr ""
704
 
705
+ #: admin/admin.php:888
706
  msgid ""
707
  "Enabling this option will turn on the thumbnails and set their width and "
708
  "height to 65px. It will also turn off the display of the author, excerpt and "
709
  "date if already enabled. Disabling this option will not revert any settings."
710
  msgstr ""
711
 
712
+ #: admin/admin.php:889
713
  #, php-format
714
  msgid ""
715
  "You can view the default style at <a href=\"%1$s\" target=\"_blank\">%1$s</a>"
716
  msgstr ""
717
 
718
+ #: admin/admin.php:892
719
  msgid "Custom CSS to add to header:"
720
  msgstr ""
721
 
722
+ #: admin/admin.php:897
723
  msgid ""
724
  "Do not include <code>style</code> tags. Check out the <a href=\"http://"
725
  "wordpress.org/extend/plugins/top-10/faq/\" target=\"_blank\">FAQ</a> for "
726
  "available CSS classes to style."
727
  msgstr ""
728
 
729
+ #: admin/admin.php:917
730
  #, fuzzy
731
  msgid "Default Options"
732
  msgstr "Paramètres de sortie"
733
 
734
+ #: admin/admin.php:917
735
  msgid "Do you want to set options to Default?"
736
  msgstr "Définir les paramètres par défaut?"
737
 
738
+ #: admin/admin.php:941
739
  msgid ""
740
  "Over time the Daily Top 10 database grows in size, which reduces the "
741
  "performance of the plugin. Cleaning the database at regular intervals could "
743
  "will automatically delete entries older than 90 days."
744
  msgstr ""
745
 
746
+ #: admin/admin.php:942
747
  msgid ""
748
  "Note: When scheduled maintenance is enabled, WordPress will run the cron job "
749
  "everytime the job is rescheduled (i.e. you change the settings below)."
750
  msgstr ""
751
 
752
+ #: admin/admin.php:945
753
  msgid "Enable scheduled maintenance of daily tables:"
754
  msgstr ""
755
 
756
+ #: admin/admin.php:949
757
  msgid "Time to run maintenance"
758
  msgstr ""
759
 
760
+ #: admin/admin.php:950
761
  msgid "hrs"
762
  msgstr ""
763
 
764
+ #: admin/admin.php:950
765
  msgid "min"
766
  msgstr ""
767
 
768
+ #: admin/admin.php:952
769
  msgid "How often should the maintenance be run:"
770
  msgstr ""
771
 
772
+ #: admin/admin.php:956
773
  msgid "Daily"
774
  msgstr ""
775
 
776
+ #: admin/admin.php:960
777
  msgid "Weekly"
778
  msgstr ""
779
 
780
+ #: admin/admin.php:964
781
  msgid "Fortnightly"
782
  msgstr ""
783
 
784
+ #: admin/admin.php:968
785
  msgid "Monthly"
786
  msgstr ""
787
 
788
+ #: admin/admin.php:977
789
  msgid "The cron job has been scheduled. Maintenance will run "
790
  msgstr ""
791
 
792
+ #: admin/admin.php:982
793
  msgid "The cron job is missing. Please resave this page to add the job"
794
  msgstr ""
795
 
796
+ #: admin/admin.php:987
797
  msgid "Maintenance is turned off"
798
  msgstr ""
799
 
800
+ #: admin/admin.php:1001
801
  msgid "Reset count"
802
  msgstr "Réinitialiser le compteur"
803
 
804
+ #: admin/admin.php:1004
805
  msgid ""
806
  "This cannot be reversed. Make sure that your database has been backed up "
807
  "before proceeding"
809
  "Cette action ne peut être annulée. Assurez-vous que la base de données a été "
810
  "sauvegardée avant de poursuivre."
811
 
812
+ #: admin/admin.php:1007
813
  #, fuzzy
814
  msgid "Reset Popular Posts"
815
  msgstr "Postes populaires"
816
 
817
+ #: admin/admin.php:1007
818
  msgid "Are you sure you want to reset the popular posts?"
819
  msgstr "Êtes-vous sûr de vouloir annuler les postes populaires?"
820
 
821
+ #: admin/admin.php:1008
822
  #, fuzzy
823
  msgid "Reset Daily Popular Posts"
824
  msgstr "Postes populaires journaliers"
825
 
826
+ #: admin/admin.php:1008
827
  msgid "Are you sure you want to reset the daily popular posts?"
828
  msgstr "Êtes-vous sûr de vouloir annuler les postes populaires journaliers?"
829
 
830
+ #: admin/admin.php:1009
831
  msgid "Clear duplicates"
832
  msgstr ""
833
 
834
+ #: admin/admin.php:1009
835
  msgid "This will delete the duplicate entries in the tables. Proceed?"
836
  msgstr ""
837
  "Cela supprimera les doubles des enregistrements dans les tableaux. Continuer?"
838
 
839
+ #: admin/admin.php:1022
840
  msgid "WordPress Multisite: Migrate Top 10 v1.x counts to 2.x"
841
  msgstr ""
842
 
843
+ #: admin/admin.php:1025
844
  msgid ""
845
  "If you've been using Top 10 v1.x on multisite, you would have needed to "
846
  "activate the plugin independently for each site. This would have resulted in "
847
  "two tables being created for each site in the network."
848
  msgstr ""
849
 
850
+ #: admin/admin.php:1026
851
  msgid ""
852
  "Top 10 v2.x onwards uses only a single table to record the count, keeping "
853
  "your database clean. You can use this tool to import the recorded counts "
854
  "from v1.x tables to the new v2.x table format."
855
  msgstr ""
856
 
857
+ #: admin/admin.php:1029
858
  msgid ""
859
  "If you do not see any tables below, then it means that either all data has "
860
  "already been imported or no relevant information has been found."
861
  msgstr ""
862
 
863
+ #: admin/admin.php:1032
864
  msgid ""
865
  "After running the importer, please verify that all the counts have been "
866
  "successfully imported. Only then should you delete any old tables!"
867
  msgstr ""
868
 
869
+ #: admin/admin.php:1066
870
  msgid "Blog ID"
871
  msgstr ""
872
 
873
+ #: admin/admin.php:1069
874
  msgid "Status"
875
  msgstr ""
876
 
877
+ #: admin/admin.php:1072
878
  msgid "Select to import"
879
  msgstr ""
880
 
881
+ #: admin/admin.php:1082
882
  msgid "Blog #"
883
  msgstr ""
884
 
885
+ #: admin/admin.php:1092
886
  msgid "Not imported"
887
  msgstr ""
888
 
889
+ #: admin/admin.php:1096
890
  msgid "Imported"
891
  msgstr ""
892
 
893
+ #: admin/admin.php:1117
894
  msgid "Begin import"
895
  msgstr ""
896
 
897
+ #: admin/admin.php:1118
898
  msgid "Delete selected tables"
899
  msgstr ""
900
 
901
+ #: admin/admin.php:1119
902
  msgid "Delete all imported tables"
903
  msgstr ""
904
 
905
+ #: admin/admin.php:1176 admin/admin.php:1272
906
  msgid "Daily Popular Posts"
907
  msgstr "Postes populaires journaliers"
908
 
909
+ #: admin/admin.php:1206
910
  msgid "Support the development"
911
  msgstr "Soutenir le projet"
912
 
913
+ #: admin/admin.php:1213
914
  msgid "Donation for Top 10"
915
  msgstr ""
916
 
917
+ #: admin/admin.php:1215
918
  msgid "Enter amount in USD: "
919
  msgstr "Saisir le montant en dollars US"
920
 
921
+ #: admin/admin.php:1219
922
  #, fuzzy
923
  msgid "Send your donation to the author of Top 10"
924
  msgstr "Envoyer sa dotation à l'auteur"
925
 
926
+ #: admin/admin.php:1226
927
  msgid "Follow me"
928
  msgstr ""
929
 
930
+ #: admin/admin.php:1236
931
  #, fuzzy
932
  msgid "Quick links"
933
  msgstr "Liens rapides"
934
 
935
+ #: admin/admin.php:1240
936
  #, fuzzy
937
  msgid "Top 10 plugin page"
938
  msgstr "Page de plugin"
939
 
940
+ #: admin/admin.php:1241
941
  msgid "Top 10 Github page"
942
  msgstr ""
943
 
944
+ #: admin/admin.php:1242
945
  msgid "Other plugins"
946
  msgstr "Autres plugins"
947
 
948
+ #: admin/admin.php:1243
949
  msgid "Ajay's blog"
950
  msgstr "Blog Ajay"
951
 
952
+ #: admin/admin.php:1244
953
  msgid "FAQ"
954
  msgstr ""
955
 
956
+ #: admin/admin.php:1245 admin/admin.php:1403
957
  msgid "Support"
958
  msgstr "Service d'assistance"
959
 
960
+ #: admin/admin.php:1246
961
  msgid "Reviews"
962
  msgstr ""
963
 
964
+ #: admin/admin.php:1269
965
  #, fuzzy
966
  msgid "Overall Popular Posts"
967
  msgstr "Voir tous les postes populaires"
968
 
969
+ #: admin/admin.php:1380
970
  msgid "Settings"
971
  msgstr "Paramètres"
972
 
973
+ #: admin/admin.php:1404
974
  msgid "Donate"
975
  msgstr "Conribuer"
976
 
1084
  msgid "No top posts yet"
1085
  msgstr "Annuler le top 10 des enregistrements les plus populaires"
1086
 
1087
+ #: top-10.php:1690
1088
  msgid "Once Weekly"
1089
  msgstr ""
1090
 
1091
+ #: top-10.php:1694
1092
  msgid "Once Fortnightly"
1093
  msgstr ""
1094
 
1095
+ #: top-10.php:1698
1096
  msgid "Once Monthly"
1097
  msgstr ""
1098
 
1099
+ #: top-10.php:1702
1100
  msgid "Once quarterly"
1101
  msgstr ""
1102
 
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: 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,7 +61,7 @@ msgstr "roimhe Seo"
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,155 +69,155 @@ msgstr "Poist Coitianta"
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
 
76
- #: admin/admin-metabox.php:71
77
  msgid "Visit count:"
78
  msgstr ""
79
 
80
- #: admin/admin-metabox.php:73
81
  msgid ""
82
  "Enter a number above to update the visit count. Leaving the above box blank "
83
  "will set the count to zero"
84
  msgstr ""
85
 
86
- #: admin/admin-metabox.php:83
87
  msgid "Location of thumbnail:"
88
  msgstr ""
89
 
90
- #: admin/admin-metabox.php:85
91
  msgid ""
92
  "Enter the full URL to the image (JPG, PNG or GIF) you'd like to use. This "
93
  "image will be used for the post. It will be resized to the thumbnail size "
94
- "set under Settings &raquo; Related Posts &raquo; Output Options"
95
  msgstr ""
96
 
97
- #: admin/admin-metabox.php:86
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 "
@@ -225,11 +225,37 @@ msgid ""
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,59 +264,59 @@ msgstr ""
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,11 +324,11 @@ msgid ""
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,235 +336,235 @@ msgid ""
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,158 +572,158 @@ msgid ""
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,229 +731,229 @@ msgid ""
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
 
@@ -1035,19 +1061,19 @@ msgstr "<h3> laethúil Coitianta </ h3>"
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
 
2
  msgstr ""
3
  "Project-Id-Version: Тоp 10\n"
4
  "Report-Msgid-Bugs-To: \n"
5
+ "POT-Creation-Date: 2015-01-03 01: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:1174
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:1263
73
  msgid "Top 10"
74
  msgstr "Top 10"
75
 
76
+ #: admin/admin-metabox.php:72
77
  msgid "Visit count:"
78
  msgstr ""
79
 
80
+ #: admin/admin-metabox.php:74
81
  msgid ""
82
  "Enter a number above to update the visit count. Leaving the above box blank "
83
  "will set the count to zero"
84
  msgstr ""
85
 
86
+ #: admin/admin-metabox.php:84
87
  msgid "Location of thumbnail:"
88
  msgstr ""
89
 
90
+ #: admin/admin-metabox.php:86
91
  msgid ""
92
  "Enter the full URL to the image (JPG, PNG or GIF) you'd like to use. This "
93
  "image will be used for the post. It will be resized to the thumbnail size "
94
+ "set under Top 10 Settings &raquo; Thumbnail options."
95
  msgstr ""
96
 
97
+ #: admin/admin-metabox.php:87
98
  msgid "The URL above is saved in the meta field: "
99
  msgstr ""
100
 
101
+ #: admin/admin.php:163
102
  msgid "Options saved successfully."
103
  msgstr "Roghanna shábháil go rathúil."
104
 
105
+ #: admin/admin.php:173
106
  msgid "Options set to Default."
107
  msgstr "Roghanna leagtha chun Réamhshocrú."
108
 
109
+ #: admin/admin.php:179
110
  #, fuzzy
111
  msgid "Top 10 popular posts reset"
112
  msgstr "Teideal an post tóir:"
113
 
114
+ #: admin/admin.php:185
115
  #, fuzzy
116
  msgid "Top 10 daily popular posts reset"
117
  msgstr "Teideal ar tóir an bpost:"
118
 
119
+ #: admin/admin.php:192
120
  msgid "Duplicate rows cleaned from tables"
121
  msgstr ""
122
 
123
+ #: admin/admin.php:204
124
  msgid "Scheduled maintenance enabled / modified"
125
  msgstr ""
126
 
127
+ #: admin/admin.php:208
128
  msgid "Scheduled maintenance disabled"
129
  msgstr ""
130
 
131
+ #: admin/admin.php:247
132
  msgid "Counts from selected sites have been imported."
133
  msgstr ""
134
 
135
+ #: admin/admin.php:272
136
  msgid ""
137
  "Selected tables have been deleted. Note that only imported tables have been "
138
  "deleted."
139
  msgstr ""
140
 
141
+ #: admin/admin.php:280 admin/admin.php:1263 admin/admin.php:1266
142
  #, fuzzy
143
  msgid "Top 10 Settings"
144
  msgstr "Top 10"
145
 
146
+ #: admin/admin.php:292 admin/admin.php:314
147
  msgid "General options"
148
  msgstr ""
149
 
150
+ #: admin/admin.php:293 admin/admin.php:406
151
  msgid "Counter and tracker options"
152
  msgstr ""
153
 
154
+ #: admin/admin.php:294 admin/admin.php:511
155
  msgid "Popular post list options"
156
  msgstr ""
157
 
158
+ #: admin/admin.php:295 admin/admin.php:706
159
  #: includes/class-top-10-widget.php:103
160
  msgid "Thumbnail options"
161
  msgstr ""
162
 
163
+ #: admin/admin.php:296
164
  msgid "Custom styles"
165
  msgstr ""
166
 
167
+ #: admin/admin.php:297 admin/admin.php:937
168
  msgid "Maintenance"
169
  msgstr ""
170
 
171
+ #: admin/admin.php:313 admin/admin.php:405 admin/admin.php:510
172
+ #: admin/admin.php:705 admin/admin.php:868 admin/admin.php:936
173
+ #: admin/admin.php:1000 admin/admin.php:1021 admin/admin.php:1205
174
+ #: admin/admin.php:1225 admin/admin.php:1235
175
  msgid "Click to toggle"
176
  msgstr ""
177
 
178
+ #: admin/admin.php:330
179
  msgid "Enable Overall stats"
180
  msgstr ""
181
 
182
+ #: admin/admin.php:336
183
  msgid "Enable Daily stats"
184
  msgstr ""
185
 
186
+ #: admin/admin.php:342
187
  msgid "Cache fix:"
188
  msgstr ""
189
 
190
+ #: admin/admin.php:345
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:349
198
  msgid "Start daily counts from midnight:"
199
  msgstr ""
200
 
201
+ #: admin/admin.php:352
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:356
209
  msgid "Daily popular contains top posts over:"
210
  msgstr ""
211
 
212
+ #: admin/admin.php:358
213
  msgid "day(s)"
214
  msgstr ""
215
 
216
+ #: admin/admin.php:359
217
  msgid "hour(s)"
218
  msgstr ""
219
 
220
+ #: admin/admin.php:360
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 "
225
  "overridden in the widget."
226
  msgstr ""
227
 
228
+ #: admin/admin.php:364
229
+ msgid "Delete options on uninstall"
230
+ msgstr ""
231
+
232
+ #: admin/admin.php:367
233
+ msgid ""
234
+ "If this is checked, all settings related to Top 10 are removed from the "
235
+ "database if you choose to uninstall/delete the plugin."
236
+ msgstr ""
237
+
238
+ #: admin/admin.php:371
239
+ msgid "Delete counter data on uninstall"
240
+ msgstr ""
241
+
242
+ #: admin/admin.php:374
243
+ msgid ""
244
+ "If this is checked, the tables containing the counter statistics are removed "
245
+ "from the database if you choose to uninstall/delete the plugin."
246
+ msgstr ""
247
+
248
+ #: admin/admin.php:375
249
+ msgid ""
250
+ "Keep this unchecked if you choose to reinstall the plugin and don't want to "
251
+ "lose your counter data."
252
+ msgstr ""
253
+
254
+ #: admin/admin.php:379
255
  msgid "Link to Top 10 plugin page"
256
  msgstr ""
257
 
258
+ #: admin/admin.php:382
259
  #, fuzzy
260
  msgid ""
261
  "A link to the plugin is added as an extra list item to the list of popular "
264
  "Tá nasc chuig an breiseán seo a leanas mar mhír liosta breise le liosta "
265
  "de phoist tóir. Gan éigeantach, ach a bhuíochas má dhéanann tú é!"
266
 
267
+ #: admin/admin.php:387 admin/admin.php:492 admin/admin.php:687
268
+ #: admin/admin.php:850 admin/admin.php:916 admin/admin.php:993
269
  #, fuzzy
270
  msgid "Save Options"
271
  msgstr "roghanna"
272
 
273
+ #: admin/admin.php:422
274
  #, fuzzy
275
  msgid "Display number of views on:"
276
  msgstr "Taispeáin líon na dtuairimí ar phoist?"
277
 
278
+ #: admin/admin.php:424
279
  msgid "Posts"
280
  msgstr ""
281
 
282
+ #: admin/admin.php:425
283
  #, fuzzy
284
  msgid "Pages"
285
  msgstr "Leathanach"
286
 
287
+ #: admin/admin.php:426
288
  msgid "Home page"
289
  msgstr ""
290
 
291
+ #: admin/admin.php:427
292
  msgid "Feeds"
293
  msgstr ""
294
 
295
+ #: admin/admin.php:428
296
  msgid "Category archives"
297
  msgstr ""
298
 
299
+ #: admin/admin.php:429
300
  msgid "Tag archives"
301
  msgstr ""
302
 
303
+ #: admin/admin.php:430
304
  msgid "Other archives"
305
  msgstr ""
306
 
307
+ #: admin/admin.php:431
308
  msgid ""
309
  "If you choose to disable this, please add <code>&lt;?php if "
310
  "( function_exists ( 'echo_tptn_post_count' ) ) echo_tptn_post_count(); ?&gt;"
311
  "</code> to your template file where you want it displayed"
312
  msgstr ""
313
 
314
+ #: admin/admin.php:435
315
  #, fuzzy
316
  msgid "Format to display the post views:"
317
  msgstr "Formáid a thaispeáint ar an comhaireamh i:"
318
 
319
+ #: admin/admin.php:438
320
  msgid ""
321
  "Use <code>%totalcount%</code> to display the total count, <code>%dailycount"
322
  "%</code> to display the daily count and <code>%overallcount%</code> to "
324
  "options displays <code>[Visited 123 times, 23 visits today]</code>"
325
  msgstr ""
326
 
327
+ #: admin/admin.php:442
328
  msgid "What do display when there are no visits?"
329
  msgstr ""
330
 
331
+ #: admin/admin.php:445
332
  msgid ""
333
  "This text applies only when there are 0 hits for the post and it isn't a "
334
  "single page. e.g. if you display post views on the homepage or archives then "
336
  "option."
337
  msgstr ""
338
 
339
+ #: admin/admin.php:449
340
  msgid "Always display latest post count"
341
  msgstr ""
342
 
343
+ #: admin/admin.php:452
344
  msgid ""
345
  "This option uses JavaScript and will increase your page load time. Turn this "
346
  "off if you are not using caching plugins or are OK with displaying older "
347
  "cached counts."
348
  msgstr ""
349
 
350
+ #: admin/admin.php:456
351
  msgid "Track visits of authors on their own posts?"
352
  msgstr "Track cuairteanna ar údair ar a gcuid post féin?"
353
 
354
+ #: admin/admin.php:459
355
  msgid ""
356
  "Disabling this option will stop authors visits tracked on their own posts"
357
  msgstr ""
358
 
359
+ #: admin/admin.php:463
360
  #, fuzzy
361
  msgid "Track visits of admins?"
362
  msgstr "Track cuairteanna ar údair ar a gcuid post féin?"
363
 
364
+ #: admin/admin.php:466
365
  msgid "Disabling this option will stop admin visits being tracked."
366
  msgstr ""
367
 
368
+ #: admin/admin.php:470
369
  #, fuzzy
370
  msgid "Track visits of Editors?"
371
  msgstr "Track cuairteanna ar údair ar a gcuid post féin?"
372
 
373
+ #: admin/admin.php:473
374
  msgid "Disabling this option will stop editor visits being tracked."
375
  msgstr ""
376
 
377
+ #: admin/admin.php:477
378
  msgid "Display page views on Posts and Pages in Admin"
379
  msgstr ""
380
 
381
+ #: admin/admin.php:480
382
  msgid ""
383
  "Adds three columns called Total Views, Today's Views and Views to All Posts "
384
  "and All Pages"
385
  msgstr ""
386
 
387
+ #: admin/admin.php:484
388
  #, fuzzy
389
  msgid "Show number of views to non-admins"
390
  msgstr "Taispeáin líon na dtuairimí ar leathanaigh?"
391
 
392
+ #: admin/admin.php:487
393
  msgid ""
394
  "If you disable this then non-admins won't see the above columns or view the "
395
  "independent pages with the top posts"
396
  msgstr ""
397
 
398
+ #: admin/admin.php:527
399
  msgid "Number of popular posts to display: "
400
  msgstr "An líon post tóir a thaispeáint:"
401
 
402
+ #: admin/admin.php:530
403
  msgid ""
404
  "Maximum number of posts that will be displayed in the list. This option is "
405
  "used if you don't specify the number of posts in the widget or shortcodes"
406
  msgstr ""
407
 
408
+ #: admin/admin.php:534
409
  msgid "Post types to include in results (including custom post types)"
410
  msgstr ""
411
 
412
+ #: admin/admin.php:546
413
  msgid "List of post or page IDs to exclude from the results: "
414
  msgstr ""
415
 
416
+ #: admin/admin.php:548 admin/admin.php:655
417
  msgid "Enter comma separated list of IDs. e.g. 188,320,500"
418
  msgstr ""
419
 
420
+ #: admin/admin.php:552
421
  msgid "Exclude Categories: "
422
  msgstr ""
423
 
424
+ #: admin/admin.php:567
425
  msgid ""
426
  "Comma separated list of category slugs. The field above has an autocomplete "
427
  "so simply start typing in the starting letters and it will prompt you with "
428
  "options"
429
  msgstr ""
430
 
431
+ #: admin/admin.php:572
432
  msgid "Title of popular posts: "
433
  msgstr "Teideal an post tóir:"
434
 
435
+ #: admin/admin.php:578
436
  msgid "Title of daily popular posts: "
437
  msgstr "Teideal ar tóir an bpost:"
438
 
439
+ #: admin/admin.php:584
440
  msgid "When there are no posts, what should be shown?"
441
  msgstr ""
442
 
443
+ #: admin/admin.php:588
444
  msgid "Blank Output"
445
  msgstr ""
446
 
447
+ #: admin/admin.php:592
448
  msgid "Display:"
449
  msgstr ""
450
 
451
+ #: admin/admin.php:597
452
  msgid "Show post excerpt in list?"
453
  msgstr ""
454
 
455
+ #: admin/admin.php:603
456
  msgid "Length of excerpt (in words): "
457
  msgstr ""
458
 
459
+ #: admin/admin.php:609
460
  msgid "Show post author in list?"
461
  msgstr ""
462
 
463
+ #: admin/admin.php:615
464
  msgid "Show post date in list?"
465
  msgstr ""
466
 
467
+ #: admin/admin.php:621
468
  msgid "Limit post title length (in characters)"
469
  msgstr ""
470
 
471
+ #: admin/admin.php:627
472
  msgid "Show view count in list?"
473
  msgstr ""
474
 
475
+ #: admin/admin.php:633
476
  msgid "Always display latest post count in the daily lists?"
477
  msgstr ""
478
 
479
+ #: admin/admin.php:636
480
  msgid ""
481
  "This option uses JavaScript and will increase your page load time. When you "
482
  "enable this option, the daily widget will not use the options set there, but "
483
  "options will need to be set on this screen."
484
  msgstr ""
485
 
486
+ #: admin/admin.php:640
487
  msgid "Open links in new window"
488
  msgstr ""
489
 
490
+ #: admin/admin.php:646
491
  msgid "Add nofollow attribute to links in the list"
492
  msgstr ""
493
 
494
+ #: admin/admin.php:652
495
  msgid "Exclude display of related posts on these posts / pages"
496
  msgstr ""
497
 
498
+ #: admin/admin.php:659
499
  msgid "Customise the list HTML"
500
  msgstr ""
501
 
502
+ #: admin/admin.php:662
503
  #, fuzzy
504
  msgid "HTML to display before the list of posts: "
505
  msgstr "Formáid a thaispeáint ar an comhaireamh i:"
506
 
507
+ #: admin/admin.php:668
508
  #, fuzzy
509
  msgid "HTML to display before each list item: "
510
  msgstr "Formáid a thaispeáint ar an comhaireamh i:"
511
 
512
+ #: admin/admin.php:674
513
  #, fuzzy
514
  msgid "HTML to display after each list item: "
515
  msgstr "Formáid a thaispeáint ar an comhaireamh i:"
516
 
517
+ #: admin/admin.php:680
518
  #, fuzzy
519
  msgid "HTML to display after the list of posts: "
520
  msgstr "Formáid a thaispeáint ar an comhaireamh i:"
521
 
522
+ #: admin/admin.php:721
523
  msgid "Location of post thumbnail:"
524
  msgstr ""
525
 
526
+ #: admin/admin.php:725
527
  #, fuzzy
528
  msgid "Display thumbnails inline with posts, before title"
529
  msgstr "Taispeáin líon na dtuairimí ar phoist?"
530
 
531
+ #: admin/admin.php:730
532
  #, fuzzy
533
  msgid "Display thumbnails inline with posts, after title"
534
  msgstr "Taispeáin líon na dtuairimí ar phoist?"
535
 
536
+ #: admin/admin.php:735
537
  #, fuzzy
538
  msgid "Display only thumbnails, no text"
539
  msgstr "Taispeáin líon na dtuairimí ar phoist?"
540
 
541
+ #: admin/admin.php:740
542
  #, fuzzy
543
  msgid "Do not display thumbnails, only text."
544
  msgstr "Taispeáin líon na dtuairimí ar phoist?"
545
 
546
+ #: admin/admin.php:744
547
  msgid "Thumbnail size:"
548
  msgstr ""
549
 
550
+ #: admin/admin.php:768
551
  msgid "Custom size"
552
  msgstr ""
553
 
554
+ #: admin/admin.php:771
555
  msgid ""
556
  "You can choose from existing image sizes above or create a custom size. If "
557
  "you have chosen Custom size above, then enter the width, height and crop "
558
  "settings below. For best results, use a cropped image."
559
  msgstr ""
560
 
561
+ #: admin/admin.php:772
562
  msgid ""
563
  "If you change the width and/or height below, existing images will not be "
564
  "automatically resized."
565
  msgstr ""
566
 
567
+ #: admin/admin.php:773
568
  #, php-format
569
  msgid ""
570
  "I recommend using <a href='%s' target='_blank'>Force Regenerate Thumbnails</"
572
  "regenerate all image sizes."
573
  msgstr ""
574
 
575
+ #: admin/admin.php:776
576
  msgid "Width of custom thumbnail:"
577
  msgstr ""
578
 
579
+ #: admin/admin.php:781
580
  msgid "Height of custom thumbnail"
581
  msgstr ""
582
 
583
+ #: admin/admin.php:786
584
  msgid "Crop mode:"
585
  msgstr ""
586
 
587
+ #: admin/admin.php:790
588
  msgid ""
589
  "By default, thumbnails will be proportionately cropped. Check this box to "
590
  "hard crop the thumbnails."
591
  msgstr ""
592
 
593
+ #: admin/admin.php:791
594
  #, php-format
595
  msgid "<a href='%s' target='_blank'>Difference between soft and hard crop</a>"
596
  msgstr ""
597
 
598
+ #: admin/admin.php:793
599
  msgid ""
600
  "Since you're using the default styles set under the Custom Styles section, "
601
  "the width and height is fixed at 65px and crop mode is enabled."
602
  msgstr ""
603
 
604
+ #: admin/admin.php:798
605
  msgid "Style attributes / Width and Height HTML attributes:"
606
  msgstr ""
607
 
608
+ #: admin/admin.php:802
609
  msgid "Style attributes are used for width and height."
610
  msgstr ""
611
 
612
+ #: admin/admin.php:807
613
  msgid "HTML width and height attributes are used for width and height."
614
  msgstr ""
615
 
616
+ #: admin/admin.php:811
617
  msgid "Use timthumb to generate thumbnails? "
618
  msgstr ""
619
 
620
+ #: admin/admin.php:814
621
  msgid ""
622
  "If checked, <a href=\"http://www.binarymoon.co.uk/projects/timthumb/\" "
623
  "target=\"_blank\">timthumb</a> will be used to generate thumbnails"
624
  msgstr ""
625
 
626
+ #: admin/admin.php:817
627
  msgid "Quality of thumbnails generated by timthumb:"
628
  msgstr ""
629
 
630
+ #: admin/admin.php:820
631
  msgid ""
632
  "Enter values between 0 and 100 only. 100 is highest quality and the highest "
633
  "file size. Suggested maximum value is 95. Default is 75."
634
  msgstr ""
635
 
636
+ #: admin/admin.php:823
637
  msgid "Post thumbnail meta field name: "
638
  msgstr ""
639
 
640
+ #: admin/admin.php:826
641
  msgid ""
642
  "The value of this field should contain the image source and is set in the "
643
  "<em>Add New Post</em> screen"
644
  msgstr ""
645
 
646
+ #: admin/admin.php:829
647
  msgid ""
648
  "If the postmeta is not set, then should the plugin extract the first image "
649
  "from the post?"
650
  msgstr ""
651
 
652
+ #: admin/admin.php:832
653
  msgid ""
654
  "This could slow down the loading of your page if the first image in the "
655
  "related posts is large in file-size"
656
  msgstr ""
657
 
658
+ #: admin/admin.php:835
659
  msgid "Use default thumbnail? "
660
  msgstr ""
661
 
662
+ #: admin/admin.php:838
663
  msgid ""
664
  "If checked, when no thumbnail is found, show a default one from the URL "
665
  "below. If not checked and no thumbnail is found, no image will be shown."
666
  msgstr ""
667
 
668
+ #: admin/admin.php:841
669
  msgid "Default thumbnail: "
670
  msgstr ""
671
 
672
+ #: admin/admin.php:845
673
  msgid ""
674
  "The plugin will first check if the post contains a thumbnail. If it doesn't "
675
  "then it will check the meta field. If this is not available, then it will "
676
  "show the default image as specified above"
677
  msgstr ""
678
 
679
+ #: admin/admin.php:869
680
  msgid "Custom CSS"
681
  msgstr ""
682
 
683
+ #: admin/admin.php:884
684
  msgid "Use default style included in the plugin?"
685
  msgstr ""
686
 
687
+ #: admin/admin.php:887
688
  msgid ""
689
  "Top 10 includes a default style that makes your popular posts list to look "
690
  "beautiful. Check the box above if you want to use this."
691
  msgstr ""
692
 
693
+ #: admin/admin.php:888
694
  msgid ""
695
  "Enabling this option will turn on the thumbnails and set their width and "
696
  "height to 65px. It will also turn off the display of the author, excerpt and "
697
  "date if already enabled. Disabling this option will not revert any settings."
698
  msgstr ""
699
 
700
+ #: admin/admin.php:889
701
  #, php-format
702
  msgid ""
703
  "You can view the default style at <a href=\"%1$s\" target=\"_blank\">%1$s</a>"
704
  msgstr ""
705
 
706
+ #: admin/admin.php:892
707
  msgid "Custom CSS to add to header:"
708
  msgstr ""
709
 
710
+ #: admin/admin.php:897
711
  msgid ""
712
  "Do not include <code>style</code> tags. Check out the <a href=\"http://"
713
  "wordpress.org/extend/plugins/top-10/faq/\" target=\"_blank\">FAQ</a> for "
714
  "available CSS classes to style."
715
  msgstr ""
716
 
717
+ #: admin/admin.php:917
718
  #, fuzzy
719
  msgid "Default Options"
720
  msgstr "roghanna"
721
 
722
+ #: admin/admin.php:917
723
  msgid "Do you want to set options to Default?"
724
  msgstr "Ar mhaith leat roghanna atá leagtha chun Réamhshocrú?"
725
 
726
+ #: admin/admin.php:941
727
  msgid ""
728
  "Over time the Daily Top 10 database grows in size, which reduces the "
729
  "performance of the plugin. Cleaning the database at regular intervals could "
731
  "will automatically delete entries older than 90 days."
732
  msgstr ""
733
 
734
+ #: admin/admin.php:942
735
  msgid ""
736
  "Note: When scheduled maintenance is enabled, WordPress will run the cron job "
737
  "everytime the job is rescheduled (i.e. you change the settings below)."
738
  msgstr ""
739
 
740
+ #: admin/admin.php:945
741
  msgid "Enable scheduled maintenance of daily tables:"
742
  msgstr ""
743
 
744
+ #: admin/admin.php:949
745
  msgid "Time to run maintenance"
746
  msgstr ""
747
 
748
+ #: admin/admin.php:950
749
  msgid "hrs"
750
  msgstr ""
751
 
752
+ #: admin/admin.php:950
753
  msgid "min"
754
  msgstr ""
755
 
756
+ #: admin/admin.php:952
757
  msgid "How often should the maintenance be run:"
758
  msgstr ""
759
 
760
+ #: admin/admin.php:956
761
  msgid "Daily"
762
  msgstr ""
763
 
764
+ #: admin/admin.php:960
765
  msgid "Weekly"
766
  msgstr ""
767
 
768
+ #: admin/admin.php:964
769
  msgid "Fortnightly"
770
  msgstr ""
771
 
772
+ #: admin/admin.php:968
773
  msgid "Monthly"
774
  msgstr ""
775
 
776
+ #: admin/admin.php:977
777
  msgid "The cron job has been scheduled. Maintenance will run "
778
  msgstr ""
779
 
780
+ #: admin/admin.php:982
781
  msgid "The cron job is missing. Please resave this page to add the job"
782
  msgstr ""
783
 
784
+ #: admin/admin.php:987
785
  msgid "Maintenance is turned off"
786
  msgstr ""
787
 
788
+ #: admin/admin.php:1001
789
  msgid "Reset count"
790
  msgstr ""
791
 
792
+ #: admin/admin.php:1004
793
  msgid ""
794
  "This cannot be reversed. Make sure that your database has been backed up "
795
  "before proceeding"
796
  msgstr ""
797
 
798
+ #: admin/admin.php:1007
799
  #, fuzzy
800
  msgid "Reset Popular Posts"
801
  msgstr "Poist Coitianta"
802
 
803
+ #: admin/admin.php:1007
804
  msgid "Are you sure you want to reset the popular posts?"
805
  msgstr ""
806
 
807
+ #: admin/admin.php:1008
808
  #, fuzzy
809
  msgid "Reset Daily Popular Posts"
810
  msgstr "Poist Coitianta Laethúil"
811
 
812
+ #: admin/admin.php:1008
813
  msgid "Are you sure you want to reset the daily popular posts?"
814
  msgstr ""
815
 
816
+ #: admin/admin.php:1009
817
  msgid "Clear duplicates"
818
  msgstr ""
819
 
820
+ #: admin/admin.php:1009
821
  msgid "This will delete the duplicate entries in the tables. Proceed?"
822
  msgstr ""
823
 
824
+ #: admin/admin.php:1022
825
  msgid "WordPress Multisite: Migrate Top 10 v1.x counts to 2.x"
826
  msgstr ""
827
 
828
+ #: admin/admin.php:1025
829
  msgid ""
830
  "If you've been using Top 10 v1.x on multisite, you would have needed to "
831
  "activate the plugin independently for each site. This would have resulted in "
832
  "two tables being created for each site in the network."
833
  msgstr ""
834
 
835
+ #: admin/admin.php:1026
836
  msgid ""
837
  "Top 10 v2.x onwards uses only a single table to record the count, keeping "
838
  "your database clean. You can use this tool to import the recorded counts "
839
  "from v1.x tables to the new v2.x table format."
840
  msgstr ""
841
 
842
+ #: admin/admin.php:1029
843
  msgid ""
844
  "If you do not see any tables below, then it means that either all data has "
845
  "already been imported or no relevant information has been found."
846
  msgstr ""
847
 
848
+ #: admin/admin.php:1032
849
  msgid ""
850
  "After running the importer, please verify that all the counts have been "
851
  "successfully imported. Only then should you delete any old tables!"
852
  msgstr ""
853
 
854
+ #: admin/admin.php:1066
855
  msgid "Blog ID"
856
  msgstr ""
857
 
858
+ #: admin/admin.php:1069
859
  msgid "Status"
860
  msgstr ""
861
 
862
+ #: admin/admin.php:1072
863
  msgid "Select to import"
864
  msgstr ""
865
 
866
+ #: admin/admin.php:1082
867
  msgid "Blog #"
868
  msgstr ""
869
 
870
+ #: admin/admin.php:1092
871
  msgid "Not imported"
872
  msgstr ""
873
 
874
+ #: admin/admin.php:1096
875
  msgid "Imported"
876
  msgstr ""
877
 
878
+ #: admin/admin.php:1117
879
  msgid "Begin import"
880
  msgstr ""
881
 
882
+ #: admin/admin.php:1118
883
  msgid "Delete selected tables"
884
  msgstr ""
885
 
886
+ #: admin/admin.php:1119
887
  msgid "Delete all imported tables"
888
  msgstr ""
889
 
890
+ #: admin/admin.php:1176 admin/admin.php:1272
891
  msgid "Daily Popular Posts"
892
  msgstr "Poist Coitianta Laethúil"
893
 
894
+ #: admin/admin.php:1206
895
  #, fuzzy
896
  msgid "Support the development"
897
  msgstr "Tacú le Forbairt"
898
 
899
+ #: admin/admin.php:1213
900
  msgid "Donation for Top 10"
901
  msgstr ""
902
 
903
+ #: admin/admin.php:1215
904
  msgid "Enter amount in USD: "
905
  msgstr ""
906
 
907
+ #: admin/admin.php:1219
908
  msgid "Send your donation to the author of Top 10"
909
  msgstr ""
910
 
911
+ #: admin/admin.php:1226
912
  msgid "Follow me"
913
  msgstr ""
914
 
915
+ #: admin/admin.php:1236
916
  msgid "Quick links"
917
  msgstr ""
918
 
919
+ #: admin/admin.php:1240
920
  msgid "Top 10 plugin page"
921
  msgstr ""
922
 
923
+ #: admin/admin.php:1241
924
  msgid "Top 10 Github page"
925
  msgstr ""
926
 
927
+ #: admin/admin.php:1242
928
  msgid "Other plugins"
929
  msgstr ""
930
 
931
+ #: admin/admin.php:1243
932
  msgid "Ajay's blog"
933
  msgstr ""
934
 
935
+ #: admin/admin.php:1244
936
  msgid "FAQ"
937
  msgstr ""
938
 
939
+ #: admin/admin.php:1245 admin/admin.php:1403
940
  msgid "Support"
941
  msgstr ""
942
 
943
+ #: admin/admin.php:1246
944
  msgid "Reviews"
945
  msgstr ""
946
 
947
+ #: admin/admin.php:1269
948
  #, fuzzy
949
  msgid "Overall Popular Posts"
950
  msgstr "Féach ar Poist Coitianta Foriomlán"
951
 
952
+ #: admin/admin.php:1380
953
  msgid "Settings"
954
  msgstr ""
955
 
956
+ #: admin/admin.php:1404
957
  msgid "Donate"
958
  msgstr ""
959
 
1061
  msgid "No top posts yet"
1062
  msgstr "Teideal an post tóir:"
1063
 
1064
+ #: top-10.php:1690
1065
  msgid "Once Weekly"
1066
  msgstr ""
1067
 
1068
+ #: top-10.php:1694
1069
  msgid "Once Fortnightly"
1070
  msgstr ""
1071
 
1072
+ #: top-10.php:1698
1073
  msgid "Once Monthly"
1074
  msgstr ""
1075
 
1076
+ #: top-10.php:1702
1077
  msgid "Once quarterly"
1078
  msgstr ""
1079
 
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: 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,7 +61,7 @@ msgstr "पिछला"
61
  msgid "Next"
62
  msgstr "अगला"
63
 
64
- #: admin/admin-dashboard.php:200 admin/admin.php:1157
65
  msgid "Popular Posts"
66
  msgstr "लोकप्रिय पोस्ट्स "
67
 
@@ -69,221 +69,247 @@ msgstr "लोकप्रिय पोस्ट्स "
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
 
76
- #: admin/admin-metabox.php:71
77
  msgid "Visit count:"
78
  msgstr ""
79
 
80
- #: admin/admin-metabox.php:73
81
  msgid ""
82
  "Enter a number above to update the visit count. Leaving the above box blank will set the "
83
  "count to zero"
84
  msgstr ""
85
 
86
- #: admin/admin-metabox.php:83
87
  msgid "Location of thumbnail:"
88
  msgstr ""
89
 
90
- #: admin/admin-metabox.php:85
91
  msgid ""
92
  "Enter the full URL to the image (JPG, PNG or GIF) you'd like to use. This image will be "
93
- "used for the post. It will be resized to the thumbnail size set under Settings &raquo; "
94
- "Related Posts &raquo; Output Options"
95
  msgstr ""
96
 
97
- #: admin/admin-metabox.php:86
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,392 +317,392 @@ msgid ""
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,228 +710,228 @@ msgid ""
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
 
@@ -1011,19 +1037,19 @@ msgstr "<h3> दैनिक लोकप्रिय </ h3>"
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
 
2
  msgstr ""
3
  "Project-Id-Version: Тоp 10\n"
4
  "Report-Msgid-Bugs-To: \n"
5
+ "POT-Creation-Date: 2015-01-03 01: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:1174
65
  msgid "Popular Posts"
66
  msgstr "लोकप्रिय पोस्ट्स "
67
 
69
  msgid "Daily Popular"
70
  msgstr "दैनिक लोकप्रिय"
71
 
72
+ #: admin/admin-metabox.php:38 admin/admin.php:1263
73
  msgid "Top 10"
74
  msgstr "शीर्ष 10"
75
 
76
+ #: admin/admin-metabox.php:72
77
  msgid "Visit count:"
78
  msgstr ""
79
 
80
+ #: admin/admin-metabox.php:74
81
  msgid ""
82
  "Enter a number above to update the visit count. Leaving the above box blank will set the "
83
  "count to zero"
84
  msgstr ""
85
 
86
+ #: admin/admin-metabox.php:84
87
  msgid "Location of thumbnail:"
88
  msgstr ""
89
 
90
+ #: admin/admin-metabox.php:86
91
  msgid ""
92
  "Enter the full URL to the image (JPG, PNG or GIF) you'd like to use. This image will be "
93
+ "used for the post. It will be resized to the thumbnail size set under Top 10 Settings "
94
+ "&raquo; Thumbnail options."
95
  msgstr ""
96
 
97
+ #: admin/admin-metabox.php:87
98
  msgid "The URL above is saved in the meta field: "
99
  msgstr ""
100
 
101
+ #: admin/admin.php:163
102
  msgid "Options saved successfully."
103
  msgstr "विकल्प सफलतापूर्वक बचाया."
104
 
105
+ #: admin/admin.php:173
106
  msgid "Options set to Default."
107
  msgstr "विकल्प डिफ़ॉल्ट से तैयार है."
108
 
109
+ #: admin/admin.php:179
110
  #, fuzzy
111
  msgid "Top 10 popular posts reset"
112
  msgstr "लोकप्रिय पदों का शीर्षक:"
113
 
114
+ #: admin/admin.php:185
115
  #, fuzzy
116
  msgid "Top 10 daily popular posts reset"
117
  msgstr "दैनिक लोकप्रिय पदों का शीर्षक:"
118
 
119
+ #: admin/admin.php:192
120
  msgid "Duplicate rows cleaned from tables"
121
  msgstr ""
122
 
123
+ #: admin/admin.php:204
124
  msgid "Scheduled maintenance enabled / modified"
125
  msgstr ""
126
 
127
+ #: admin/admin.php:208
128
  msgid "Scheduled maintenance disabled"
129
  msgstr ""
130
 
131
+ #: admin/admin.php:247
132
  msgid "Counts from selected sites have been imported."
133
  msgstr ""
134
 
135
+ #: admin/admin.php:272
136
  msgid "Selected tables have been deleted. Note that only imported tables have been deleted."
137
  msgstr ""
138
 
139
+ #: admin/admin.php:280 admin/admin.php:1263 admin/admin.php:1266
140
  #, fuzzy
141
  msgid "Top 10 Settings"
142
  msgstr "शीर्ष 10"
143
 
144
+ #: admin/admin.php:292 admin/admin.php:314
145
  msgid "General options"
146
  msgstr ""
147
 
148
+ #: admin/admin.php:293 admin/admin.php:406
149
  msgid "Counter and tracker options"
150
  msgstr ""
151
 
152
+ #: admin/admin.php:294 admin/admin.php:511
153
  msgid "Popular post list options"
154
  msgstr ""
155
 
156
+ #: admin/admin.php:295 admin/admin.php:706 includes/class-top-10-widget.php:103
157
  msgid "Thumbnail options"
158
  msgstr ""
159
 
160
+ #: admin/admin.php:296
161
  msgid "Custom styles"
162
  msgstr ""
163
 
164
+ #: admin/admin.php:297 admin/admin.php:937
165
  msgid "Maintenance"
166
  msgstr ""
167
 
168
+ #: admin/admin.php:313 admin/admin.php:405 admin/admin.php:510 admin/admin.php:705
169
+ #: admin/admin.php:868 admin/admin.php:936 admin/admin.php:1000 admin/admin.php:1021
170
+ #: admin/admin.php:1205 admin/admin.php:1225 admin/admin.php:1235
171
  msgid "Click to toggle"
172
  msgstr ""
173
 
174
+ #: admin/admin.php:330
175
  msgid "Enable Overall stats"
176
  msgstr ""
177
 
178
+ #: admin/admin.php:336
179
  msgid "Enable Daily stats"
180
  msgstr ""
181
 
182
+ #: admin/admin.php:342
183
  msgid "Cache fix:"
184
  msgstr ""
185
 
186
+ #: admin/admin.php:345
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:349
194
  msgid "Start daily counts from midnight:"
195
  msgstr ""
196
 
197
+ #: admin/admin.php:352
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:356
205
  msgid "Daily popular contains top posts over:"
206
  msgstr ""
207
 
208
+ #: admin/admin.php:358
209
  msgid "day(s)"
210
  msgstr ""
211
 
212
+ #: admin/admin.php:359
213
  msgid "hour(s)"
214
  msgstr ""
215
 
216
+ #: admin/admin.php:360
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:364
224
+ msgid "Delete options on uninstall"
225
+ msgstr ""
226
+
227
+ #: admin/admin.php:367
228
+ msgid ""
229
+ "If this is checked, all settings related to Top 10 are removed from the database if you "
230
+ "choose to uninstall/delete the plugin."
231
+ msgstr ""
232
+
233
+ #: admin/admin.php:371
234
+ msgid "Delete counter data on uninstall"
235
+ msgstr ""
236
+
237
+ #: admin/admin.php:374
238
+ msgid ""
239
+ "If this is checked, the tables containing the counter statistics are removed from the "
240
+ "database if you choose to uninstall/delete the plugin."
241
+ msgstr ""
242
+
243
+ #: admin/admin.php:375
244
+ msgid ""
245
+ "Keep this unchecked if you choose to reinstall the plugin and don't want to lose your "
246
+ "counter data."
247
+ msgstr ""
248
+
249
+ #: admin/admin.php:379
250
  msgid "Link to Top 10 plugin page"
251
  msgstr ""
252
 
253
+ #: admin/admin.php:382
254
  #, fuzzy
255
  msgid "A link to the plugin is added as an extra list item to the list of popular posts"
256
  msgstr ""
257
  "प्लगइन के लिए एक कड़ी लोकप्रिय पदों की सूची के लिए एक अतिरिक्त सूची आइटम के रूप में जोड़ा है. नहीं अनिवार्य "
258
  "है, लेकिन धन्यवाद यदि तुम इसे करो!"
259
 
260
+ #: admin/admin.php:387 admin/admin.php:492 admin/admin.php:687 admin/admin.php:850
261
+ #: admin/admin.php:916 admin/admin.php:993
262
  #, fuzzy
263
  msgid "Save Options"
264
  msgstr "विकल्प हैं:"
265
 
266
+ #: admin/admin.php:422
267
  #, fuzzy
268
  msgid "Display number of views on:"
269
  msgstr "पदों पर विचारों के प्रदर्शन की संख्या?"
270
 
271
+ #: admin/admin.php:424
272
  msgid "Posts"
273
  msgstr ""
274
 
275
+ #: admin/admin.php:425
276
  #, fuzzy
277
  msgid "Pages"
278
  msgstr "पृष्ठ"
279
 
280
+ #: admin/admin.php:426
281
  msgid "Home page"
282
  msgstr ""
283
 
284
+ #: admin/admin.php:427
285
  msgid "Feeds"
286
  msgstr ""
287
 
288
+ #: admin/admin.php:428
289
  msgid "Category archives"
290
  msgstr ""
291
 
292
+ #: admin/admin.php:429
293
  msgid "Tag archives"
294
  msgstr ""
295
 
296
+ #: admin/admin.php:430
297
  msgid "Other archives"
298
  msgstr ""
299
 
300
+ #: admin/admin.php:431
301
  msgid ""
302
  "If you choose to disable this, please add <code>&lt;?php if ( function_exists "
303
  "( 'echo_tptn_post_count' ) ) echo_tptn_post_count(); ?&gt;</code> to your template file "
304
  "where you want it displayed"
305
  msgstr ""
306
 
307
+ #: admin/admin.php:435
308
  #, fuzzy
309
  msgid "Format to display the post views:"
310
  msgstr "प्रारूप में गिनती प्रदर्शित करने के लिए:"
311
 
312
+ #: admin/admin.php:438
313
  msgid ""
314
  "Use <code>%totalcount%</code> to display the total count, <code>%dailycount%</code> to "
315
  "display the daily count and <code>%overallcount%</code> to display the overall count "
317
  "23 visits today]</code>"
318
  msgstr ""
319
 
320
+ #: admin/admin.php:442
321
  msgid "What do display when there are no visits?"
322
  msgstr ""
323
 
324
+ #: admin/admin.php:445
325
  msgid ""
326
  "This text applies only when there are 0 hits for the post and it isn't a single page. e.g. "
327
  "if you display post views on the homepage or archives then this text will be used. To "
328
  "override this, just enter the same text as above option."
329
  msgstr ""
330
 
331
+ #: admin/admin.php:449
332
  msgid "Always display latest post count"
333
  msgstr ""
334
 
335
+ #: admin/admin.php:452
336
  msgid ""
337
  "This option uses JavaScript and will increase your page load time. Turn this off if you "
338
  "are not using caching plugins or are OK with displaying older cached counts."
339
  msgstr ""
340
 
341
+ #: admin/admin.php:456
342
  msgid "Track visits of authors on their own posts?"
343
  msgstr "ट्रैक लेखक के अपने पदों पर यात्रा?"
344
 
345
+ #: admin/admin.php:459
346
  msgid "Disabling this option will stop authors visits tracked on their own posts"
347
  msgstr ""
348
 
349
+ #: admin/admin.php:463
350
  #, fuzzy
351
  msgid "Track visits of admins?"
352
  msgstr "ट्रैक लेखक के अपने पदों पर यात्रा?"
353
 
354
+ #: admin/admin.php:466
355
  msgid "Disabling this option will stop admin visits being tracked."
356
  msgstr ""
357
 
358
+ #: admin/admin.php:470
359
  #, fuzzy
360
  msgid "Track visits of Editors?"
361
  msgstr "ट्रैक लेखक के अपने पदों पर यात्रा?"
362
 
363
+ #: admin/admin.php:473
364
  msgid "Disabling this option will stop editor visits being tracked."
365
  msgstr ""
366
 
367
+ #: admin/admin.php:477
368
  msgid "Display page views on Posts and Pages in Admin"
369
  msgstr ""
370
 
371
+ #: admin/admin.php:480
372
  msgid ""
373
  "Adds three columns called Total Views, Today's Views and Views to All Posts and All Pages"
374
  msgstr ""
375
 
376
+ #: admin/admin.php:484
377
  #, fuzzy
378
  msgid "Show number of views to non-admins"
379
  msgstr "पन्नों पर विचार के प्रदर्शन की संख्या?"
380
 
381
+ #: admin/admin.php:487
382
  msgid ""
383
  "If you disable this then non-admins won't see the above columns or view the independent "
384
  "pages with the top posts"
385
  msgstr ""
386
 
387
+ #: admin/admin.php:527
388
  msgid "Number of popular posts to display: "
389
  msgstr "लोकप्रिय पदों की संख्या प्रदर्शित करने के लिए:"
390
 
391
+ #: admin/admin.php:530
392
  msgid ""
393
  "Maximum number of posts that will be displayed in the list. This option is used if you "
394
  "don't specify the number of posts in the widget or shortcodes"
395
  msgstr ""
396
 
397
+ #: admin/admin.php:534
398
  msgid "Post types to include in results (including custom post types)"
399
  msgstr ""
400
 
401
+ #: admin/admin.php:546
402
  msgid "List of post or page IDs to exclude from the results: "
403
  msgstr ""
404
 
405
+ #: admin/admin.php:548 admin/admin.php:655
406
  msgid "Enter comma separated list of IDs. e.g. 188,320,500"
407
  msgstr ""
408
 
409
+ #: admin/admin.php:552
410
  msgid "Exclude Categories: "
411
  msgstr ""
412
 
413
+ #: admin/admin.php:567
414
  msgid ""
415
  "Comma separated list of category slugs. The field above has an autocomplete so simply "
416
  "start typing in the starting letters and it will prompt you with options"
417
  msgstr ""
418
 
419
+ #: admin/admin.php:572
420
  msgid "Title of popular posts: "
421
  msgstr "लोकप्रिय पदों का शीर्षक:"
422
 
423
+ #: admin/admin.php:578
424
  msgid "Title of daily popular posts: "
425
  msgstr "दैनिक लोकप्रिय पदों का शीर्षक:"
426
 
427
+ #: admin/admin.php:584
428
  msgid "When there are no posts, what should be shown?"
429
  msgstr ""
430
 
431
+ #: admin/admin.php:588
432
  msgid "Blank Output"
433
  msgstr ""
434
 
435
+ #: admin/admin.php:592
436
  msgid "Display:"
437
  msgstr ""
438
 
439
+ #: admin/admin.php:597
440
  msgid "Show post excerpt in list?"
441
  msgstr ""
442
 
443
+ #: admin/admin.php:603
444
  msgid "Length of excerpt (in words): "
445
  msgstr ""
446
 
447
+ #: admin/admin.php:609
448
  msgid "Show post author in list?"
449
  msgstr ""
450
 
451
+ #: admin/admin.php:615
452
  msgid "Show post date in list?"
453
  msgstr ""
454
 
455
+ #: admin/admin.php:621
456
  msgid "Limit post title length (in characters)"
457
  msgstr ""
458
 
459
+ #: admin/admin.php:627
460
  msgid "Show view count in list?"
461
  msgstr ""
462
 
463
+ #: admin/admin.php:633
464
  msgid "Always display latest post count in the daily lists?"
465
  msgstr ""
466
 
467
+ #: admin/admin.php:636
468
  msgid ""
469
  "This option uses JavaScript and will increase your page load time. When you enable this "
470
  "option, the daily widget will not use the options set there, but options will need to be "
471
  "set on this screen."
472
  msgstr ""
473
 
474
+ #: admin/admin.php:640
475
  msgid "Open links in new window"
476
  msgstr ""
477
 
478
+ #: admin/admin.php:646
479
  msgid "Add nofollow attribute to links in the list"
480
  msgstr ""
481
 
482
+ #: admin/admin.php:652
483
  msgid "Exclude display of related posts on these posts / pages"
484
  msgstr ""
485
 
486
+ #: admin/admin.php:659
487
  msgid "Customise the list HTML"
488
  msgstr ""
489
 
490
+ #: admin/admin.php:662
491
  msgid "HTML to display before the list of posts: "
492
  msgstr ""
493
 
494
+ #: admin/admin.php:668
495
  msgid "HTML to display before each list item: "
496
  msgstr ""
497
 
498
+ #: admin/admin.php:674
499
  #, fuzzy
500
  msgid "HTML to display after each list item: "
501
  msgstr "प्रारूप में गिनती प्रदर्शित करने के लिए:"
502
 
503
+ #: admin/admin.php:680
504
  msgid "HTML to display after the list of posts: "
505
  msgstr ""
506
 
507
+ #: admin/admin.php:721
508
  msgid "Location of post thumbnail:"
509
  msgstr ""
510
 
511
+ #: admin/admin.php:725
512
  #, fuzzy
513
  msgid "Display thumbnails inline with posts, before title"
514
  msgstr "पदों पर विचारों के प्रदर्शन की संख्या?"
515
 
516
+ #: admin/admin.php:730
517
  #, fuzzy
518
  msgid "Display thumbnails inline with posts, after title"
519
  msgstr "पदों पर विचारों के प्रदर्शन की संख्या?"
520
 
521
+ #: admin/admin.php:735
522
  msgid "Display only thumbnails, no text"
523
  msgstr ""
524
 
525
+ #: admin/admin.php:740
526
  msgid "Do not display thumbnails, only text."
527
  msgstr ""
528
 
529
+ #: admin/admin.php:744
530
  msgid "Thumbnail size:"
531
  msgstr ""
532
 
533
+ #: admin/admin.php:768
534
  msgid "Custom size"
535
  msgstr ""
536
 
537
+ #: admin/admin.php:771
538
  msgid ""
539
  "You can choose from existing image sizes above or create a custom size. If you have chosen "
540
  "Custom size above, then enter the width, height and crop settings below. For best results, "
541
  "use a cropped image."
542
  msgstr ""
543
 
544
+ #: admin/admin.php:772
545
  msgid ""
546
  "If you change the width and/or height below, existing images will not be automatically "
547
  "resized."
548
  msgstr ""
549
 
550
+ #: admin/admin.php:773
551
  #, php-format
552
  msgid ""
553
  "I recommend using <a href='%s' target='_blank'>Force Regenerate Thumbnails</a> or <a "
554
  "href='%s' target='_blank'>Force Regenerate Thumbnails</a> to regenerate all image sizes."
555
  msgstr ""
556
 
557
+ #: admin/admin.php:776
558
  msgid "Width of custom thumbnail:"
559
  msgstr ""
560
 
561
+ #: admin/admin.php:781
562
  msgid "Height of custom thumbnail"
563
  msgstr ""
564
 
565
+ #: admin/admin.php:786
566
  msgid "Crop mode:"
567
  msgstr ""
568
 
569
+ #: admin/admin.php:790
570
  msgid ""
571
  "By default, thumbnails will be proportionately cropped. Check this box to hard crop the "
572
  "thumbnails."
573
  msgstr ""
574
 
575
+ #: admin/admin.php:791
576
  #, php-format
577
  msgid "<a href='%s' target='_blank'>Difference between soft and hard crop</a>"
578
  msgstr ""
579
 
580
+ #: admin/admin.php:793
581
  msgid ""
582
  "Since you're using the default styles set under the Custom Styles section, the width and "
583
  "height is fixed at 65px and crop mode is enabled."
584
  msgstr ""
585
 
586
+ #: admin/admin.php:798
587
  msgid "Style attributes / Width and Height HTML attributes:"
588
  msgstr ""
589
 
590
+ #: admin/admin.php:802
591
  msgid "Style attributes are used for width and height."
592
  msgstr ""
593
 
594
+ #: admin/admin.php:807
595
  msgid "HTML width and height attributes are used for width and height."
596
  msgstr ""
597
 
598
+ #: admin/admin.php:811
599
  msgid "Use timthumb to generate thumbnails? "
600
  msgstr ""
601
 
602
+ #: admin/admin.php:814
603
  msgid ""
604
  "If checked, <a href=\"http://www.binarymoon.co.uk/projects/timthumb/\" target=\"_blank"
605
  "\">timthumb</a> will be used to generate thumbnails"
606
  msgstr ""
607
 
608
+ #: admin/admin.php:817
609
  msgid "Quality of thumbnails generated by timthumb:"
610
  msgstr ""
611
 
612
+ #: admin/admin.php:820
613
  msgid ""
614
  "Enter values between 0 and 100 only. 100 is highest quality and the highest file size. "
615
  "Suggested maximum value is 95. Default is 75."
616
  msgstr ""
617
 
618
+ #: admin/admin.php:823
619
  msgid "Post thumbnail meta field name: "
620
  msgstr ""
621
 
622
+ #: admin/admin.php:826
623
  msgid ""
624
  "The value of this field should contain the image source and is set in the <em>Add New "
625
  "Post</em> screen"
626
  msgstr ""
627
 
628
+ #: admin/admin.php:829
629
  msgid ""
630
  "If the postmeta is not set, then should the plugin extract the first image from the post?"
631
  msgstr ""
632
 
633
+ #: admin/admin.php:832
634
  msgid ""
635
  "This could slow down the loading of your page if the first image in the related posts is "
636
  "large in file-size"
637
  msgstr ""
638
 
639
+ #: admin/admin.php:835
640
  msgid "Use default thumbnail? "
641
  msgstr ""
642
 
643
+ #: admin/admin.php:838
644
  msgid ""
645
  "If checked, when no thumbnail is found, show a default one from the URL below. If not "
646
  "checked and no thumbnail is found, no image will be shown."
647
  msgstr ""
648
 
649
+ #: admin/admin.php:841
650
  msgid "Default thumbnail: "
651
  msgstr ""
652
 
653
+ #: admin/admin.php:845
654
  msgid ""
655
  "The plugin will first check if the post contains a thumbnail. If it doesn't then it will "
656
  "check the meta field. If this is not available, then it will show the default image as "
657
  "specified above"
658
  msgstr ""
659
 
660
+ #: admin/admin.php:869
661
  msgid "Custom CSS"
662
  msgstr ""
663
 
664
+ #: admin/admin.php:884
665
  msgid "Use default style included in the plugin?"
666
  msgstr ""
667
 
668
+ #: admin/admin.php:887
669
  msgid ""
670
  "Top 10 includes a default style that makes your popular posts list to look beautiful. "
671
  "Check the box above if you want to use this."
672
  msgstr ""
673
 
674
+ #: admin/admin.php:888
675
  msgid ""
676
  "Enabling this option will turn on the thumbnails and set their width and height to 65px. "
677
  "It will also turn off the display of the author, excerpt and date if already enabled. "
678
  "Disabling this option will not revert any settings."
679
  msgstr ""
680
 
681
+ #: admin/admin.php:889
682
  #, php-format
683
  msgid "You can view the default style at <a href=\"%1$s\" target=\"_blank\">%1$s</a>"
684
  msgstr ""
685
 
686
+ #: admin/admin.php:892
687
  msgid "Custom CSS to add to header:"
688
  msgstr ""
689
 
690
+ #: admin/admin.php:897
691
  msgid ""
692
  "Do not include <code>style</code> tags. Check out the <a href=\"http://wordpress.org/"
693
  "extend/plugins/top-10/faq/\" target=\"_blank\">FAQ</a> for available CSS classes to style."
694
  msgstr ""
695
 
696
+ #: admin/admin.php:917
697
  #, fuzzy
698
  msgid "Default Options"
699
  msgstr "विकल्प हैं:"
700
 
701
+ #: admin/admin.php:917
702
  msgid "Do you want to set options to Default?"
703
  msgstr "क्या आप डिफ़ॉल्ट विकल्प सेट करना चाहते हैं?"
704
 
705
+ #: admin/admin.php:941
706
  msgid ""
707
  "Over time the Daily Top 10 database grows in size, which reduces the performance of the "
708
  "plugin. Cleaning the database at regular intervals could improve performance, especially "
710
  "90 days."
711
  msgstr ""
712
 
713
+ #: admin/admin.php:942
714
  msgid ""
715
  "Note: When scheduled maintenance is enabled, WordPress will run the cron job everytime the "
716
  "job is rescheduled (i.e. you change the settings below)."
717
  msgstr ""
718
 
719
+ #: admin/admin.php:945
720
  msgid "Enable scheduled maintenance of daily tables:"
721
  msgstr ""
722
 
723
+ #: admin/admin.php:949
724
  msgid "Time to run maintenance"
725
  msgstr ""
726
 
727
+ #: admin/admin.php:950
728
  msgid "hrs"
729
  msgstr ""
730
 
731
+ #: admin/admin.php:950
732
  msgid "min"
733
  msgstr ""
734
 
735
+ #: admin/admin.php:952
736
  msgid "How often should the maintenance be run:"
737
  msgstr ""
738
 
739
+ #: admin/admin.php:956
740
  msgid "Daily"
741
  msgstr ""
742
 
743
+ #: admin/admin.php:960
744
  msgid "Weekly"
745
  msgstr ""
746
 
747
+ #: admin/admin.php:964
748
  msgid "Fortnightly"
749
  msgstr ""
750
 
751
+ #: admin/admin.php:968
752
  msgid "Monthly"
753
  msgstr ""
754
 
755
+ #: admin/admin.php:977
756
  msgid "The cron job has been scheduled. Maintenance will run "
757
  msgstr ""
758
 
759
+ #: admin/admin.php:982
760
  msgid "The cron job is missing. Please resave this page to add the job"
761
  msgstr ""
762
 
763
+ #: admin/admin.php:987
764
  msgid "Maintenance is turned off"
765
  msgstr ""
766
 
767
+ #: admin/admin.php:1001
768
  msgid "Reset count"
769
  msgstr ""
770
 
771
+ #: admin/admin.php:1004
772
  msgid ""
773
  "This cannot be reversed. Make sure that your database has been backed up before proceeding"
774
  msgstr ""
775
 
776
+ #: admin/admin.php:1007
777
  #, fuzzy
778
  msgid "Reset Popular Posts"
779
  msgstr "लोकप्रिय पोस्ट्स "
780
 
781
+ #: admin/admin.php:1007
782
  msgid "Are you sure you want to reset the popular posts?"
783
  msgstr ""
784
 
785
+ #: admin/admin.php:1008
786
  #, fuzzy
787
  msgid "Reset Daily Popular Posts"
788
  msgstr "दैनिक लोकप्रिय पोस्ट्स "
789
 
790
+ #: admin/admin.php:1008
791
  msgid "Are you sure you want to reset the daily popular posts?"
792
  msgstr ""
793
 
794
+ #: admin/admin.php:1009
795
  msgid "Clear duplicates"
796
  msgstr ""
797
 
798
+ #: admin/admin.php:1009
799
  msgid "This will delete the duplicate entries in the tables. Proceed?"
800
  msgstr ""
801
 
802
+ #: admin/admin.php:1022
803
  msgid "WordPress Multisite: Migrate Top 10 v1.x counts to 2.x"
804
  msgstr ""
805
 
806
+ #: admin/admin.php:1025
807
  msgid ""
808
  "If you've been using Top 10 v1.x on multisite, you would have needed to activate the "
809
  "plugin independently for each site. This would have resulted in two tables being created "
810
  "for each site in the network."
811
  msgstr ""
812
 
813
+ #: admin/admin.php:1026
814
  msgid ""
815
  "Top 10 v2.x onwards uses only a single table to record the count, keeping your database "
816
  "clean. You can use this tool to import the recorded counts from v1.x tables to the new v2."
817
  "x table format."
818
  msgstr ""
819
 
820
+ #: admin/admin.php:1029
821
  msgid ""
822
  "If you do not see any tables below, then it means that either all data has already been "
823
  "imported or no relevant information has been found."
824
  msgstr ""
825
 
826
+ #: admin/admin.php:1032
827
  msgid ""
828
  "After running the importer, please verify that all the counts have been successfully "
829
  "imported. Only then should you delete any old tables!"
830
  msgstr ""
831
 
832
+ #: admin/admin.php:1066
833
  msgid "Blog ID"
834
  msgstr ""
835
 
836
+ #: admin/admin.php:1069
837
  msgid "Status"
838
  msgstr ""
839
 
840
+ #: admin/admin.php:1072
841
  msgid "Select to import"
842
  msgstr ""
843
 
844
+ #: admin/admin.php:1082
845
  msgid "Blog #"
846
  msgstr ""
847
 
848
+ #: admin/admin.php:1092
849
  msgid "Not imported"
850
  msgstr ""
851
 
852
+ #: admin/admin.php:1096
853
  msgid "Imported"
854
  msgstr ""
855
 
856
+ #: admin/admin.php:1117
857
  msgid "Begin import"
858
  msgstr ""
859
 
860
+ #: admin/admin.php:1118
861
  msgid "Delete selected tables"
862
  msgstr ""
863
 
864
+ #: admin/admin.php:1119
865
  msgid "Delete all imported tables"
866
  msgstr ""
867
 
868
+ #: admin/admin.php:1176 admin/admin.php:1272
869
  msgid "Daily Popular Posts"
870
  msgstr "दैनिक लोकप्रिय पोस्ट्स "
871
 
872
+ #: admin/admin.php:1206
873
  #, fuzzy
874
  msgid "Support the development"
875
  msgstr "समर्थन विकास"
876
 
877
+ #: admin/admin.php:1213
878
  msgid "Donation for Top 10"
879
  msgstr ""
880
 
881
+ #: admin/admin.php:1215
882
  msgid "Enter amount in USD: "
883
  msgstr ""
884
 
885
+ #: admin/admin.php:1219
886
  msgid "Send your donation to the author of Top 10"
887
  msgstr ""
888
 
889
+ #: admin/admin.php:1226
890
  msgid "Follow me"
891
  msgstr ""
892
 
893
+ #: admin/admin.php:1236
894
  msgid "Quick links"
895
  msgstr ""
896
 
897
+ #: admin/admin.php:1240
898
  msgid "Top 10 plugin page"
899
  msgstr ""
900
 
901
+ #: admin/admin.php:1241
902
  msgid "Top 10 Github page"
903
  msgstr ""
904
 
905
+ #: admin/admin.php:1242
906
  msgid "Other plugins"
907
  msgstr ""
908
 
909
+ #: admin/admin.php:1243
910
  msgid "Ajay's blog"
911
  msgstr ""
912
 
913
+ #: admin/admin.php:1244
914
  msgid "FAQ"
915
  msgstr ""
916
 
917
+ #: admin/admin.php:1245 admin/admin.php:1403
918
  msgid "Support"
919
  msgstr ""
920
 
921
+ #: admin/admin.php:1246
922
  msgid "Reviews"
923
  msgstr ""
924
 
925
+ #: admin/admin.php:1269
926
  #, fuzzy
927
  msgid "Overall Popular Posts"
928
  msgstr "देखें दैनिक लोकप्रिय पोस्ट्स "
929
 
930
+ #: admin/admin.php:1380
931
  msgid "Settings"
932
  msgstr ""
933
 
934
+ #: admin/admin.php:1404
935
  msgid "Donate"
936
  msgstr ""
937
 
1037
  msgid "No top posts yet"
1038
  msgstr "लोकप्रिय पदों का शीर्षक:"
1039
 
1040
+ #: top-10.php:1690
1041
  msgid "Once Weekly"
1042
  msgstr ""
1043
 
1044
+ #: top-10.php:1694
1045
  msgid "Once Fortnightly"
1046
  msgstr ""
1047
 
1048
+ #: top-10.php:1698
1049
  msgid "Once Monthly"
1050
  msgstr ""
1051
 
1052
+ #: top-10.php:1702
1053
  msgid "Once quarterly"
1054
  msgstr ""
1055
 
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: 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"
@@ -61,7 +61,7 @@ msgstr "Precedente"
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
 
@@ -69,155 +69,155 @@ msgstr "Gli articoli più popolari"
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 "
@@ -225,11 +225,37 @@ msgid ""
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 "
@@ -239,59 +265,59 @@ msgstr ""
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 "
@@ -299,11 +325,11 @@ msgid ""
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 "
@@ -311,237 +337,237 @@ msgid ""
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</"
@@ -549,79 +575,79 @@ msgid ""
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,7 +658,7 @@ msgstr ""
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,11 +669,11 @@ msgstr ""
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,11 +681,11 @@ msgstr ""
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,54 +697,54 @@ msgstr ""
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,65 +752,65 @@ msgid ""
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,167 +818,167 @@ msgstr ""
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
 
@@ -1066,19 +1092,19 @@ msgstr "<h3>I più letti di oggi</h3>"
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
 
2
  msgstr ""
3
  "Project-Id-Version: Top 10 in italiano\n"
4
  "Report-Msgid-Bugs-To: \n"
5
+ "POT-Creation-Date: 2015-01-03 01: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"
61
  msgid "Next"
62
  msgstr "Successiva"
63
 
64
+ #: admin/admin-dashboard.php:200 admin/admin.php:1174
65
  msgid "Popular Posts"
66
  msgstr "Gli articoli più popolari"
67
 
69
  msgid "Daily Popular"
70
  msgstr "I più letti di oggi"
71
 
72
+ #: admin/admin-metabox.php:38 admin/admin.php:1263
73
  msgid "Top 10"
74
  msgstr "Top 10"
75
 
76
+ #: admin/admin-metabox.php:72
77
  #, fuzzy
78
  msgid "Visit count:"
79
  msgstr "Ripristino conteggio"
80
 
81
+ #: admin/admin-metabox.php:74
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:84
88
  msgid "Location of thumbnail:"
89
  msgstr ""
90
 
91
+ #: admin/admin-metabox.php:86
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 Top 10 Settings &raquo; Thumbnail options."
96
  msgstr ""
97
 
98
+ #: admin/admin-metabox.php:87
99
  msgid "The URL above is saved in the meta field: "
100
  msgstr ""
101
 
102
+ #: admin/admin.php:163
103
  msgid "Options saved successfully."
104
  msgstr "Le opzioni sono state salvate con successo."
105
 
106
+ #: admin/admin.php:173
107
  msgid "Options set to Default."
108
  msgstr "Opzioni impostate alle predefinite."
109
 
110
+ #: admin/admin.php:179
111
  msgid "Top 10 popular posts reset"
112
  msgstr "Ripristino 10 articoli più popolari"
113
 
114
+ #: admin/admin.php:185
115
  msgid "Top 10 daily popular posts reset"
116
  msgstr "Ripristino 10 articoli più popolari del giorno"
117
 
118
+ #: admin/admin.php:192
119
  msgid "Duplicate rows cleaned from tables"
120
  msgstr ""
121
 
122
+ #: admin/admin.php:204
123
  msgid "Scheduled maintenance enabled / modified"
124
  msgstr ""
125
 
126
+ #: admin/admin.php:208
127
  msgid "Scheduled maintenance disabled"
128
  msgstr ""
129
 
130
+ #: admin/admin.php:247
131
  msgid "Counts from selected sites have been imported."
132
  msgstr ""
133
 
134
+ #: admin/admin.php:272
135
  msgid ""
136
  "Selected tables have been deleted. Note that only imported tables have been "
137
  "deleted."
138
  msgstr ""
139
 
140
+ #: admin/admin.php:280 admin/admin.php:1263 admin/admin.php:1266
141
  #, fuzzy
142
  msgid "Top 10 Settings"
143
  msgstr "Impostazioni"
144
 
145
+ #: admin/admin.php:292 admin/admin.php:314
146
  msgid "General options"
147
  msgstr ""
148
 
149
+ #: admin/admin.php:293 admin/admin.php:406
150
  msgid "Counter and tracker options"
151
  msgstr ""
152
 
153
+ #: admin/admin.php:294 admin/admin.php:511
154
  msgid "Popular post list options"
155
  msgstr ""
156
 
157
+ #: admin/admin.php:295 admin/admin.php:706
158
  #: includes/class-top-10-widget.php:103
159
  #, fuzzy
160
  msgid "Thumbnail options"
161
  msgstr "Opzioni miniature articolo:"
162
 
163
+ #: admin/admin.php:296
164
  msgid "Custom styles"
165
  msgstr ""
166
 
167
+ #: admin/admin.php:297 admin/admin.php:937
168
  msgid "Maintenance"
169
  msgstr ""
170
 
171
+ #: admin/admin.php:313 admin/admin.php:405 admin/admin.php:510
172
+ #: admin/admin.php:705 admin/admin.php:868 admin/admin.php:936
173
+ #: admin/admin.php:1000 admin/admin.php:1021 admin/admin.php:1205
174
+ #: admin/admin.php:1225 admin/admin.php:1235
175
  msgid "Click to toggle"
176
  msgstr ""
177
 
178
+ #: admin/admin.php:330
179
  msgid "Enable Overall stats"
180
  msgstr ""
181
 
182
+ #: admin/admin.php:336
183
  msgid "Enable Daily stats"
184
  msgstr ""
185
 
186
+ #: admin/admin.php:342
187
  msgid "Cache fix:"
188
  msgstr ""
189
 
190
+ #: admin/admin.php:345
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:349
198
  msgid "Start daily counts from midnight:"
199
  msgstr ""
200
 
201
+ #: admin/admin.php:352
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:356
209
  msgid "Daily popular contains top posts over:"
210
  msgstr ""
211
 
212
+ #: admin/admin.php:358
213
  msgid "day(s)"
214
  msgstr ""
215
 
216
+ #: admin/admin.php:359
217
  msgid "hour(s)"
218
  msgstr ""
219
 
220
+ #: admin/admin.php:360
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 "
225
  "overridden in the widget."
226
  msgstr ""
227
 
228
+ #: admin/admin.php:364
229
+ msgid "Delete options on uninstall"
230
+ msgstr ""
231
+
232
+ #: admin/admin.php:367
233
+ msgid ""
234
+ "If this is checked, all settings related to Top 10 are removed from the "
235
+ "database if you choose to uninstall/delete the plugin."
236
+ msgstr ""
237
+
238
+ #: admin/admin.php:371
239
+ msgid "Delete counter data on uninstall"
240
+ msgstr ""
241
+
242
+ #: admin/admin.php:374
243
+ msgid ""
244
+ "If this is checked, the tables containing the counter statistics are removed "
245
+ "from the database if you choose to uninstall/delete the plugin."
246
+ msgstr ""
247
+
248
+ #: admin/admin.php:375
249
+ msgid ""
250
+ "Keep this unchecked if you choose to reinstall the plugin and don't want to "
251
+ "lose your counter data."
252
+ msgstr ""
253
+
254
+ #: admin/admin.php:379
255
  msgid "Link to Top 10 plugin page"
256
  msgstr ""
257
 
258
+ #: admin/admin.php:382
259
  #, fuzzy
260
  msgid ""
261
  "A link to the plugin is added as an extra list item to the list of popular "
265
  "pagina del plugin. Ti sarei molto grato qualora non disattivassi questa "
266
  "opzione!"
267
 
268
+ #: admin/admin.php:387 admin/admin.php:492 admin/admin.php:687
269
+ #: admin/admin.php:850 admin/admin.php:916 admin/admin.php:993
270
  #, fuzzy
271
  msgid "Save Options"
272
  msgstr "Opzioni:"
273
 
274
+ #: admin/admin.php:422
275
  #, fuzzy
276
  msgid "Display number of views on:"
277
  msgstr "Desideri mostrare il numero delle visualizzazioni negli articoli?"
278
 
279
+ #: admin/admin.php:424
280
  msgid "Posts"
281
  msgstr ""
282
 
283
+ #: admin/admin.php:425
284
  #, fuzzy
285
  msgid "Pages"
286
  msgstr "Pagina"
287
 
288
+ #: admin/admin.php:426
289
  msgid "Home page"
290
  msgstr ""
291
 
292
+ #: admin/admin.php:427
293
  msgid "Feeds"
294
  msgstr ""
295
 
296
+ #: admin/admin.php:428
297
  msgid "Category archives"
298
  msgstr ""
299
 
300
+ #: admin/admin.php:429
301
  msgid "Tag archives"
302
  msgstr ""
303
 
304
+ #: admin/admin.php:430
305
  msgid "Other archives"
306
  msgstr ""
307
 
308
+ #: admin/admin.php:431
309
  msgid ""
310
  "If you choose to disable this, please add <code>&lt;?php if "
311
  "( function_exists ( 'echo_tptn_post_count' ) ) echo_tptn_post_count(); ?&gt;"
312
  "</code> to your template file where you want it displayed"
313
  msgstr ""
314
 
315
+ #: admin/admin.php:435
316
  #, fuzzy
317
  msgid "Format to display the post views:"
318
  msgstr "Formato per il conteggio:"
319
 
320
+ #: admin/admin.php:438
321
  msgid ""
322
  "Use <code>%totalcount%</code> to display the total count, <code>%dailycount"
323
  "%</code> to display the daily count and <code>%overallcount%</code> to "
325
  "options displays <code>[Visited 123 times, 23 visits today]</code>"
326
  msgstr ""
327
 
328
+ #: admin/admin.php:442
329
  msgid "What do display when there are no visits?"
330
  msgstr ""
331
 
332
+ #: admin/admin.php:445
333
  msgid ""
334
  "This text applies only when there are 0 hits for the post and it isn't a "
335
  "single page. e.g. if you display post views on the homepage or archives then "
337
  "option."
338
  msgstr ""
339
 
340
+ #: admin/admin.php:449
341
  msgid "Always display latest post count"
342
  msgstr ""
343
 
344
+ #: admin/admin.php:452
345
  msgid ""
346
  "This option uses JavaScript and will increase your page load time. Turn this "
347
  "off if you are not using caching plugins or are OK with displaying older "
348
  "cached counts."
349
  msgstr ""
350
 
351
+ #: admin/admin.php:456
352
  msgid "Track visits of authors on their own posts?"
353
  msgstr ""
354
  "Desideri che vengano conteggiate anche le visite da parte dell'amministatore "
355
  "del sito?"
356
 
357
+ #: admin/admin.php:459
358
  msgid ""
359
  "Disabling this option will stop authors visits tracked on their own posts"
360
  msgstr ""
361
 
362
+ #: admin/admin.php:463
363
  #, fuzzy
364
  msgid "Track visits of admins?"
365
  msgstr ""
366
  "Desideri che vengano conteggiate anche le visite da parte dell'amministatore "
367
  "del sito?"
368
 
369
+ #: admin/admin.php:466
370
  msgid "Disabling this option will stop admin visits being tracked."
371
  msgstr ""
372
 
373
+ #: admin/admin.php:470
374
  #, fuzzy
375
  msgid "Track visits of Editors?"
376
  msgstr ""
377
  "Desideri che vengano conteggiate anche le visite da parte dell'amministatore "
378
  "del sito?"
379
 
380
+ #: admin/admin.php:473
381
  msgid "Disabling this option will stop editor visits being tracked."
382
  msgstr ""
383
 
384
+ #: admin/admin.php:477
385
  msgid "Display page views on Posts and Pages in Admin"
386
  msgstr ""
387
 
388
+ #: admin/admin.php:480
389
  msgid ""
390
  "Adds three columns called Total Views, Today's Views and Views to All Posts "
391
  "and All Pages"
392
  msgstr ""
393
 
394
+ #: admin/admin.php:484
395
  #, fuzzy
396
  msgid "Show number of views to non-admins"
397
  msgstr "Desideri mostrare il numero delle visualizzazioni nelle pagine?"
398
 
399
+ #: admin/admin.php:487
400
  msgid ""
401
  "If you disable this then non-admins won't see the above columns or view the "
402
  "independent pages with the top posts"
403
  msgstr ""
404
 
405
+ #: admin/admin.php:527
406
  msgid "Number of popular posts to display: "
407
  msgstr "Numero degli articoli più popolari da mostrare:"
408
 
409
+ #: admin/admin.php:530
410
  msgid ""
411
  "Maximum number of posts that will be displayed in the list. This option is "
412
  "used if you don't specify the number of posts in the widget or shortcodes"
413
  msgstr ""
414
 
415
+ #: admin/admin.php:534
416
  msgid "Post types to include in results (including custom post types)"
417
  msgstr ""
418
 
419
+ #: admin/admin.php:546
420
  msgid "List of post or page IDs to exclude from the results: "
421
  msgstr ""
422
 
423
+ #: admin/admin.php:548 admin/admin.php:655
424
  msgid "Enter comma separated list of IDs. e.g. 188,320,500"
425
  msgstr ""
426
 
427
+ #: admin/admin.php:552
428
  msgid "Exclude Categories: "
429
  msgstr "Escludi categorie:"
430
 
431
+ #: admin/admin.php:567
432
  msgid ""
433
  "Comma separated list of category slugs. The field above has an autocomplete "
434
  "so simply start typing in the starting letters and it will prompt you with "
435
  "options"
436
  msgstr ""
437
 
438
+ #: admin/admin.php:572
439
  msgid "Title of popular posts: "
440
  msgstr "Titolo per gli articoli più popolari:"
441
 
442
+ #: admin/admin.php:578
443
  msgid "Title of daily popular posts: "
444
  msgstr "Titolo per gli articoli più popolari del giorno:"
445
 
446
+ #: admin/admin.php:584
447
  msgid "When there are no posts, what should be shown?"
448
  msgstr ""
449
 
450
+ #: admin/admin.php:588
451
  msgid "Blank Output"
452
  msgstr ""
453
 
454
+ #: admin/admin.php:592
455
  msgid "Display:"
456
  msgstr ""
457
 
458
+ #: admin/admin.php:597
459
  msgid "Show post excerpt in list?"
460
  msgstr "Desideri mostrare gli estratti?"
461
 
462
+ #: admin/admin.php:603
463
  msgid "Length of excerpt (in words): "
464
  msgstr "Lunghezza estratto (in parole):"
465
 
466
+ #: admin/admin.php:609
467
  #, fuzzy
468
  msgid "Show post author in list?"
469
  msgstr "Desideri mostrare gli estratti?"
470
 
471
+ #: admin/admin.php:615
472
  #, fuzzy
473
  msgid "Show post date in list?"
474
  msgstr "Desideri mostrare gli estratti?"
475
 
476
+ #: admin/admin.php:621
477
  msgid "Limit post title length (in characters)"
478
  msgstr ""
479
 
480
+ #: admin/admin.php:627
481
  #, fuzzy
482
  msgid "Show view count in list?"
483
  msgstr "Desideri mostrare gli estratti?"
484
 
485
+ #: admin/admin.php:633
486
  msgid "Always display latest post count in the daily lists?"
487
  msgstr ""
488
 
489
+ #: admin/admin.php:636
490
  msgid ""
491
  "This option uses JavaScript and will increase your page load time. When you "
492
  "enable this option, the daily widget will not use the options set there, but "
493
  "options will need to be set on this screen."
494
  msgstr ""
495
 
496
+ #: admin/admin.php:640
497
  msgid "Open links in new window"
498
  msgstr ""
499
 
500
+ #: admin/admin.php:646
501
  msgid "Add nofollow attribute to links in the list"
502
  msgstr ""
503
 
504
+ #: admin/admin.php:652
505
  msgid "Exclude display of related posts on these posts / pages"
506
  msgstr ""
507
 
508
+ #: admin/admin.php:659
509
  #, fuzzy
510
  msgid "Customise the list HTML"
511
  msgstr "Personalizzazione output:"
512
 
513
+ #: admin/admin.php:662
514
  msgid "HTML to display before the list of posts: "
515
  msgstr "HTML da mostrare davanti alla lista degli articoli:"
516
 
517
+ #: admin/admin.php:668
518
  msgid "HTML to display before each list item: "
519
  msgstr "HTML da mostrare davanti ad ogni singola lista:"
520
 
521
+ #: admin/admin.php:674
522
  msgid "HTML to display after each list item: "
523
  msgstr "HTML da mostrare dopo ogni lista:"
524
 
525
+ #: admin/admin.php:680
526
  msgid "HTML to display after the list of posts: "
527
  msgstr "HTML da mostrare dopo la lista degli articoli:"
528
 
529
+ #: admin/admin.php:721
530
  msgid "Location of post thumbnail:"
531
  msgstr ""
532
 
533
+ #: admin/admin.php:725
534
  msgid "Display thumbnails inline with posts, before title"
535
  msgstr "Mostra gli articoli con le miniature inline prima del titolo"
536
 
537
+ #: admin/admin.php:730
538
  msgid "Display thumbnails inline with posts, after title"
539
  msgstr "Mostra gli articoli con le miniature inline dopo il titolo"
540
 
541
+ #: admin/admin.php:735
542
  msgid "Display only thumbnails, no text"
543
  msgstr "Mostra le sole miniature, nessun testo"
544
 
545
+ #: admin/admin.php:740
546
  msgid "Do not display thumbnails, only text."
547
  msgstr "Non mostrare le miniature, solo testo."
548
 
549
+ #: admin/admin.php:744
550
  msgid "Thumbnail size:"
551
  msgstr ""
552
 
553
+ #: admin/admin.php:768
554
  msgid "Custom size"
555
  msgstr ""
556
 
557
+ #: admin/admin.php:771
558
  msgid ""
559
  "You can choose from existing image sizes above or create a custom size. If "
560
  "you have chosen Custom size above, then enter the width, height and crop "
561
  "settings below. For best results, use a cropped image."
562
  msgstr ""
563
 
564
+ #: admin/admin.php:772
565
  msgid ""
566
  "If you change the width and/or height below, existing images will not be "
567
  "automatically resized."
568
  msgstr ""
569
 
570
+ #: admin/admin.php:773
571
  #, php-format
572
  msgid ""
573
  "I recommend using <a href='%s' target='_blank'>Force Regenerate Thumbnails</"
575
  "regenerate all image sizes."
576
  msgstr ""
577
 
578
+ #: admin/admin.php:776
579
  msgid "Width of custom thumbnail:"
580
  msgstr ""
581
 
582
+ #: admin/admin.php:781
583
  msgid "Height of custom thumbnail"
584
  msgstr ""
585
 
586
+ #: admin/admin.php:786
587
  msgid "Crop mode:"
588
  msgstr ""
589
 
590
+ #: admin/admin.php:790
591
  msgid ""
592
  "By default, thumbnails will be proportionately cropped. Check this box to "
593
  "hard crop the thumbnails."
594
  msgstr ""
595
 
596
+ #: admin/admin.php:791
597
  #, php-format
598
  msgid "<a href='%s' target='_blank'>Difference between soft and hard crop</a>"
599
  msgstr ""
600
 
601
+ #: admin/admin.php:793
602
  msgid ""
603
  "Since you're using the default styles set under the Custom Styles section, "
604
  "the width and height is fixed at 65px and crop mode is enabled."
605
  msgstr ""
606
 
607
+ #: admin/admin.php:798
608
  msgid "Style attributes / Width and Height HTML attributes:"
609
  msgstr ""
610
 
611
+ #: admin/admin.php:802
612
  msgid "Style attributes are used for width and height."
613
  msgstr ""
614
 
615
+ #: admin/admin.php:807
616
  msgid "HTML width and height attributes are used for width and height."
617
  msgstr ""
618
 
619
+ #: admin/admin.php:811
620
  msgid "Use timthumb to generate thumbnails? "
621
  msgstr ""
622
 
623
+ #: admin/admin.php:814
624
  msgid ""
625
  "If checked, <a href=\"http://www.binarymoon.co.uk/projects/timthumb/\" "
626
  "target=\"_blank\">timthumb</a> will be used to generate thumbnails"
627
  msgstr ""
628
 
629
+ #: admin/admin.php:817
630
  msgid "Quality of thumbnails generated by timthumb:"
631
  msgstr ""
632
 
633
+ #: admin/admin.php:820
634
  msgid ""
635
  "Enter values between 0 and 100 only. 100 is highest quality and the highest "
636
  "file size. Suggested maximum value is 95. Default is 75."
637
  msgstr ""
638
 
639
+ #: admin/admin.php:823
640
  #, fuzzy
641
  msgid "Post thumbnail meta field name: "
642
  msgstr "Opzioni miniature articolo:"
643
 
644
+ #: admin/admin.php:826
645
  msgid ""
646
  "The value of this field should contain the image source and is set in the "
647
  "<em>Add New Post</em> screen"
648
  msgstr ""
649
 
650
+ #: admin/admin.php:829
651
  #, fuzzy
652
  msgid ""
653
  "If the postmeta is not set, then should the plugin extract the first image "
658
  "tuo articolo nel caso in cui la prima immagine corelata fosse di grandi "
659
  "dimensioni"
660
 
661
+ #: admin/admin.php:832
662
  #, fuzzy
663
  msgid ""
664
  "This could slow down the loading of your page if the first image in the "
669
  "tuo articolo nel caso in cui la prima immagine corelata fosse di grandi "
670
  "dimensioni"
671
 
672
+ #: admin/admin.php:835
673
  msgid "Use default thumbnail? "
674
  msgstr ""
675
 
676
+ #: admin/admin.php:838
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
  "Se attiva, in assenza di miniatura ne mostrerà una predefinita da URL qui "
682
  "sotto. Se inattiva e senza miniatura, non verrà mostrata nessuna immagine."
683
 
684
+ #: admin/admin.php:841
685
  msgid "Default thumbnail: "
686
  msgstr ""
687
 
688
+ #: admin/admin.php:845
689
  #, fuzzy
690
  msgid ""
691
  "The plugin will first check if the post contains a thumbnail. If it doesn't "
697
  "meta. Qualora non fosse disponibile, mostrerà l'immagine predefinita come "
698
  "specificato qui sotto:"
699
 
700
+ #: admin/admin.php:869
701
  msgid "Custom CSS"
702
  msgstr ""
703
 
704
+ #: admin/admin.php:884
705
  msgid "Use default style included in the plugin?"
706
  msgstr ""
707
 
708
+ #: admin/admin.php:887
709
  msgid ""
710
  "Top 10 includes a default style that makes your popular posts list to look "
711
  "beautiful. Check the box above if you want to use this."
712
  msgstr ""
713
 
714
+ #: admin/admin.php:888
715
  msgid ""
716
  "Enabling this option will turn on the thumbnails and set their width and "
717
  "height to 65px. It will also turn off the display of the author, excerpt and "
718
  "date if already enabled. Disabling this option will not revert any settings."
719
  msgstr ""
720
 
721
+ #: admin/admin.php:889
722
  #, php-format
723
  msgid ""
724
  "You can view the default style at <a href=\"%1$s\" target=\"_blank\">%1$s</a>"
725
  msgstr ""
726
 
727
+ #: admin/admin.php:892
728
  msgid "Custom CSS to add to header:"
729
  msgstr ""
730
 
731
+ #: admin/admin.php:897
732
  msgid ""
733
  "Do not include <code>style</code> tags. Check out the <a href=\"http://"
734
  "wordpress.org/extend/plugins/top-10/faq/\" target=\"_blank\">FAQ</a> for "
735
  "available CSS classes to style."
736
  msgstr ""
737
 
738
+ #: admin/admin.php:917
739
  #, fuzzy
740
  msgid "Default Options"
741
  msgstr "Opzioni output:"
742
 
743
+ #: admin/admin.php:917
744
  msgid "Do you want to set options to Default?"
745
  msgstr "Desideri ripristinare alle predefinite?"
746
 
747
+ #: admin/admin.php:941
748
  msgid ""
749
  "Over time the Daily Top 10 database grows in size, which reduces the "
750
  "performance of the plugin. Cleaning the database at regular intervals could "
752
  "will automatically delete entries older than 90 days."
753
  msgstr ""
754
 
755
+ #: admin/admin.php:942
756
  msgid ""
757
  "Note: When scheduled maintenance is enabled, WordPress will run the cron job "
758
  "everytime the job is rescheduled (i.e. you change the settings below)."
759
  msgstr ""
760
 
761
+ #: admin/admin.php:945
762
  msgid "Enable scheduled maintenance of daily tables:"
763
  msgstr ""
764
 
765
+ #: admin/admin.php:949
766
  msgid "Time to run maintenance"
767
  msgstr ""
768
 
769
+ #: admin/admin.php:950
770
  msgid "hrs"
771
  msgstr ""
772
 
773
+ #: admin/admin.php:950
774
  msgid "min"
775
  msgstr ""
776
 
777
+ #: admin/admin.php:952
778
  msgid "How often should the maintenance be run:"
779
  msgstr ""
780
 
781
+ #: admin/admin.php:956
782
  msgid "Daily"
783
  msgstr ""
784
 
785
+ #: admin/admin.php:960
786
  msgid "Weekly"
787
  msgstr ""
788
 
789
+ #: admin/admin.php:964
790
  msgid "Fortnightly"
791
  msgstr ""
792
 
793
+ #: admin/admin.php:968
794
  msgid "Monthly"
795
  msgstr ""
796
 
797
+ #: admin/admin.php:977
798
  msgid "The cron job has been scheduled. Maintenance will run "
799
  msgstr ""
800
 
801
+ #: admin/admin.php:982
802
  msgid "The cron job is missing. Please resave this page to add the job"
803
  msgstr ""
804
 
805
+ #: admin/admin.php:987
806
  msgid "Maintenance is turned off"
807
  msgstr ""
808
 
809
+ #: admin/admin.php:1001
810
  msgid "Reset count"
811
  msgstr "Ripristino conteggio"
812
 
813
+ #: admin/admin.php:1004
814
  msgid ""
815
  "This cannot be reversed. Make sure that your database has been backed up "
816
  "before proceeding"
818
  "Questa operazione non é reversibile. Effettua il backup del database prima "
819
  "di procedere"
820
 
821
+ #: admin/admin.php:1007
822
  #, fuzzy
823
  msgid "Reset Popular Posts"
824
  msgstr "Gli articoli più popolari"
825
 
826
+ #: admin/admin.php:1007
827
  msgid "Are you sure you want to reset the popular posts?"
828
  msgstr "Sei certo di volere ripristinare gli articoli più popolari?"
829
 
830
+ #: admin/admin.php:1008
831
  #, fuzzy
832
  msgid "Reset Daily Popular Posts"
833
  msgstr "Gli articoli più popolari di oggi"
834
 
835
+ #: admin/admin.php:1008
836
  msgid "Are you sure you want to reset the daily popular posts?"
837
  msgstr "Sei certo di volere ripristinare gli articoli più popolari del giorno?"
838
 
839
+ #: admin/admin.php:1009
840
  msgid "Clear duplicates"
841
  msgstr ""
842
 
843
+ #: admin/admin.php:1009
844
  msgid "This will delete the duplicate entries in the tables. Proceed?"
845
  msgstr "Questa operazione cancelerà i duplicati dalle tabelle. Procedi?"
846
 
847
+ #: admin/admin.php:1022
848
  msgid "WordPress Multisite: Migrate Top 10 v1.x counts to 2.x"
849
  msgstr ""
850
 
851
+ #: admin/admin.php:1025
852
  msgid ""
853
  "If you've been using Top 10 v1.x on multisite, you would have needed to "
854
  "activate the plugin independently for each site. This would have resulted in "
855
  "two tables being created for each site in the network."
856
  msgstr ""
857
 
858
+ #: admin/admin.php:1026
859
  msgid ""
860
  "Top 10 v2.x onwards uses only a single table to record the count, keeping "
861
  "your database clean. You can use this tool to import the recorded counts "
862
  "from v1.x tables to the new v2.x table format."
863
  msgstr ""
864
 
865
+ #: admin/admin.php:1029
866
  msgid ""
867
  "If you do not see any tables below, then it means that either all data has "
868
  "already been imported or no relevant information has been found."
869
  msgstr ""
870
 
871
+ #: admin/admin.php:1032
872
  msgid ""
873
  "After running the importer, please verify that all the counts have been "
874
  "successfully imported. Only then should you delete any old tables!"
875
  msgstr ""
876
 
877
+ #: admin/admin.php:1066
878
  msgid "Blog ID"
879
  msgstr ""
880
 
881
+ #: admin/admin.php:1069
882
  msgid "Status"
883
  msgstr ""
884
 
885
+ #: admin/admin.php:1072
886
  msgid "Select to import"
887
  msgstr ""
888
 
889
+ #: admin/admin.php:1082
890
  msgid "Blog #"
891
  msgstr ""
892
 
893
+ #: admin/admin.php:1092
894
  msgid "Not imported"
895
  msgstr ""
896
 
897
+ #: admin/admin.php:1096
898
  msgid "Imported"
899
  msgstr ""
900
 
901
+ #: admin/admin.php:1117
902
  msgid "Begin import"
903
  msgstr ""
904
 
905
+ #: admin/admin.php:1118
906
  msgid "Delete selected tables"
907
  msgstr ""
908
 
909
+ #: admin/admin.php:1119
910
  msgid "Delete all imported tables"
911
  msgstr ""
912
 
913
+ #: admin/admin.php:1176 admin/admin.php:1272
914
  msgid "Daily Popular Posts"
915
  msgstr "Gli articoli più popolari di oggi"
916
 
917
+ #: admin/admin.php:1206
918
  msgid "Support the development"
919
  msgstr "Sostieni lo sviluppo"
920
 
921
+ #: admin/admin.php:1213
922
  msgid "Donation for Top 10"
923
  msgstr ""
924
 
925
+ #: admin/admin.php:1215
926
  msgid "Enter amount in USD: "
927
  msgstr "Inserisci la cifra in USD: "
928
 
929
+ #: admin/admin.php:1219
930
  #, fuzzy
931
  msgid "Send your donation to the author of Top 10"
932
  msgstr "Invia la tua donazione all'autore di"
933
 
934
+ #: admin/admin.php:1226
935
  msgid "Follow me"
936
  msgstr ""
937
 
938
+ #: admin/admin.php:1236
939
  #, fuzzy
940
  msgid "Quick links"
941
  msgstr "Collegamenti veloci"
942
 
943
+ #: admin/admin.php:1240
944
  #, fuzzy
945
  msgid "Top 10 plugin page"
946
  msgstr "pagina plugin"
947
 
948
+ #: admin/admin.php:1241
949
  msgid "Top 10 Github page"
950
  msgstr ""
951
 
952
+ #: admin/admin.php:1242
953
  msgid "Other plugins"
954
  msgstr "Altri plugin"
955
 
956
+ #: admin/admin.php:1243
957
  msgid "Ajay's blog"
958
  msgstr "Il blog di Ajay"
959
 
960
+ #: admin/admin.php:1244
961
  msgid "FAQ"
962
  msgstr ""
963
 
964
+ #: admin/admin.php:1245 admin/admin.php:1403
965
  msgid "Support"
966
  msgstr "Supporto"
967
 
968
+ #: admin/admin.php:1246
969
  msgid "Reviews"
970
  msgstr ""
971
 
972
+ #: admin/admin.php:1269
973
  #, fuzzy
974
  msgid "Overall Popular Posts"
975
  msgstr "Visualizza panoramica articoli più popolari"
976
 
977
+ #: admin/admin.php:1380
978
  msgid "Settings"
979
  msgstr "Impostazioni"
980
 
981
+ #: admin/admin.php:1404
982
  msgid "Donate"
983
  msgstr "Donazione"
984
 
1092
  msgid "No top posts yet"
1093
  msgstr "Ripristino 10 articoli più popolari"
1094
 
1095
+ #: top-10.php:1690
1096
  msgid "Once Weekly"
1097
  msgstr ""
1098
 
1099
+ #: top-10.php:1694
1100
  msgid "Once Fortnightly"
1101
  msgstr ""
1102
 
1103
+ #: top-10.php:1698
1104
  msgid "Once Monthly"
1105
  msgstr ""
1106
 
1107
+ #: top-10.php:1702
1108
  msgid "Once quarterly"
1109
  msgstr ""
1110
 
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: 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,7 +62,7 @@ msgstr "Vorige"
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,155 +70,155 @@ msgstr "Populaire Berichten"
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
 
77
- #: admin/admin-metabox.php:71
78
  #, fuzzy
79
  msgid "Visit count:"
80
  msgstr "Reset telling"
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 "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 "
@@ -226,11 +226,37 @@ msgid ""
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,59 +266,59 @@ msgstr ""
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,11 +326,11 @@ msgid ""
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,233 +338,233 @@ msgid ""
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,79 +572,79 @@ msgid ""
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,7 +655,7 @@ msgstr ""
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,21 +666,21 @@ msgstr ""
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,54 +692,54 @@ msgstr ""
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,65 +747,65 @@ msgid ""
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,168 +813,168 @@ msgstr ""
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
 
@@ -1062,19 +1088,19 @@ msgstr "<h3>Dagelijks Populair</h3>"
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
 
2
  msgstr ""
3
  "Project-Id-Version: Top 10 v1.6.2\n"
4
  "Report-Msgid-Bugs-To: \n"
5
+ "POT-Creation-Date: 2015-01-03 01: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:1174
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:1263
74
  msgid "Top 10"
75
  msgstr "Top 10"
76
 
77
+ #: admin/admin-metabox.php:72
78
  #, fuzzy
79
  msgid "Visit count:"
80
  msgstr "Reset telling"
81
 
82
+ #: admin/admin-metabox.php:74
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:84
89
  msgid "Location of thumbnail:"
90
  msgstr ""
91
 
92
+ #: admin/admin-metabox.php:86
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 Top 10 Settings &raquo; Thumbnail options."
97
  msgstr ""
98
 
99
+ #: admin/admin-metabox.php:87
100
  msgid "The URL above is saved in the meta field: "
101
  msgstr ""
102
 
103
+ #: admin/admin.php:163
104
  msgid "Options saved successfully."
105
  msgstr "Opties succesvol opgeslagen."
106
 
107
+ #: admin/admin.php:173
108
  msgid "Options set to Default."
109
  msgstr "Opties ingesteld op Standaard."
110
 
111
+ #: admin/admin.php:179
112
  msgid "Top 10 popular posts reset"
113
  msgstr "Reset Top 10 populaire berichten"
114
 
115
+ #: admin/admin.php:185
116
  msgid "Top 10 daily popular posts reset"
117
  msgstr "Reset Top 10 dagelijkse populaire berichten"
118
 
119
+ #: admin/admin.php:192
120
  msgid "Duplicate rows cleaned from tables"
121
  msgstr ""
122
 
123
+ #: admin/admin.php:204
124
  msgid "Scheduled maintenance enabled / modified"
125
  msgstr ""
126
 
127
+ #: admin/admin.php:208
128
  msgid "Scheduled maintenance disabled"
129
  msgstr ""
130
 
131
+ #: admin/admin.php:247
132
  msgid "Counts from selected sites have been imported."
133
  msgstr ""
134
 
135
+ #: admin/admin.php:272
136
  msgid ""
137
  "Selected tables have been deleted. Note that only imported tables have been "
138
  "deleted."
139
  msgstr ""
140
 
141
+ #: admin/admin.php:280 admin/admin.php:1263 admin/admin.php:1266
142
  #, fuzzy
143
  msgid "Top 10 Settings"
144
  msgstr "Instellingen"
145
 
146
+ #: admin/admin.php:292 admin/admin.php:314
147
  msgid "General options"
148
  msgstr ""
149
 
150
+ #: admin/admin.php:293 admin/admin.php:406
151
  msgid "Counter and tracker options"
152
  msgstr ""
153
 
154
+ #: admin/admin.php:294 admin/admin.php:511
155
  msgid "Popular post list options"
156
  msgstr ""
157
 
158
+ #: admin/admin.php:295 admin/admin.php:706
159
  #: includes/class-top-10-widget.php:103
160
  #, fuzzy
161
  msgid "Thumbnail options"
162
  msgstr "Bericht miniatuurafbeelding opties:"
163
 
164
+ #: admin/admin.php:296
165
  msgid "Custom styles"
166
  msgstr ""
167
 
168
+ #: admin/admin.php:297 admin/admin.php:937
169
  msgid "Maintenance"
170
  msgstr ""
171
 
172
+ #: admin/admin.php:313 admin/admin.php:405 admin/admin.php:510
173
+ #: admin/admin.php:705 admin/admin.php:868 admin/admin.php:936
174
+ #: admin/admin.php:1000 admin/admin.php:1021 admin/admin.php:1205
175
+ #: admin/admin.php:1225 admin/admin.php:1235
176
  msgid "Click to toggle"
177
  msgstr ""
178
 
179
+ #: admin/admin.php:330
180
  msgid "Enable Overall stats"
181
  msgstr ""
182
 
183
+ #: admin/admin.php:336
184
  msgid "Enable Daily stats"
185
  msgstr ""
186
 
187
+ #: admin/admin.php:342
188
  msgid "Cache fix:"
189
  msgstr ""
190
 
191
+ #: admin/admin.php:345
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:349
199
  msgid "Start daily counts from midnight:"
200
  msgstr ""
201
 
202
+ #: admin/admin.php:352
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:356
210
  msgid "Daily popular contains top posts over:"
211
  msgstr ""
212
 
213
+ #: admin/admin.php:358
214
  msgid "day(s)"
215
  msgstr ""
216
 
217
+ #: admin/admin.php:359
218
  msgid "hour(s)"
219
  msgstr ""
220
 
221
+ #: admin/admin.php:360
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 "
226
  "overridden in the widget."
227
  msgstr ""
228
 
229
+ #: admin/admin.php:364
230
+ msgid "Delete options on uninstall"
231
+ msgstr ""
232
+
233
+ #: admin/admin.php:367
234
+ msgid ""
235
+ "If this is checked, all settings related to Top 10 are removed from the "
236
+ "database if you choose to uninstall/delete the plugin."
237
+ msgstr ""
238
+
239
+ #: admin/admin.php:371
240
+ msgid "Delete counter data on uninstall"
241
+ msgstr ""
242
+
243
+ #: admin/admin.php:374
244
+ msgid ""
245
+ "If this is checked, the tables containing the counter statistics are removed "
246
+ "from the database if you choose to uninstall/delete the plugin."
247
+ msgstr ""
248
+
249
+ #: admin/admin.php:375
250
+ msgid ""
251
+ "Keep this unchecked if you choose to reinstall the plugin and don't want to "
252
+ "lose your counter data."
253
+ msgstr ""
254
+
255
+ #: admin/admin.php:379
256
  msgid "Link to Top 10 plugin page"
257
  msgstr ""
258
 
259
+ #: admin/admin.php:382
260
  #, fuzzy
261
  msgid ""
262
  "A link to the plugin is added as an extra list item to the list of popular "
266
  "populaire berichten. Het is niet verplicht, maar wordt ten zeerste "
267
  "gewaardeerd!"
268
 
269
+ #: admin/admin.php:387 admin/admin.php:492 admin/admin.php:687
270
+ #: admin/admin.php:850 admin/admin.php:916 admin/admin.php:993
271
  #, fuzzy
272
  msgid "Save Options"
273
  msgstr "Opties:"
274
 
275
+ #: admin/admin.php:422
276
  #, fuzzy
277
  msgid "Display number of views on:"
278
  msgstr "Geef het aantal berichtweergaves weer?"
279
 
280
+ #: admin/admin.php:424
281
  msgid "Posts"
282
  msgstr ""
283
 
284
+ #: admin/admin.php:425
285
  #, fuzzy
286
  msgid "Pages"
287
  msgstr "Pagina"
288
 
289
+ #: admin/admin.php:426
290
  msgid "Home page"
291
  msgstr ""
292
 
293
+ #: admin/admin.php:427
294
  msgid "Feeds"
295
  msgstr ""
296
 
297
+ #: admin/admin.php:428
298
  msgid "Category archives"
299
  msgstr ""
300
 
301
+ #: admin/admin.php:429
302
  msgid "Tag archives"
303
  msgstr ""
304
 
305
+ #: admin/admin.php:430
306
  msgid "Other archives"
307
  msgstr ""
308
 
309
+ #: admin/admin.php:431
310
  msgid ""
311
  "If you choose to disable this, please add <code>&lt;?php if "
312
  "( function_exists ( 'echo_tptn_post_count' ) ) echo_tptn_post_count(); ?&gt;"
313
  "</code> to your template file where you want it displayed"
314
  msgstr ""
315
 
316
+ #: admin/admin.php:435
317
  #, fuzzy
318
  msgid "Format to display the post views:"
319
  msgstr "Formaat om de optelling te laten zien:"
320
 
321
+ #: admin/admin.php:438
322
  msgid ""
323
  "Use <code>%totalcount%</code> to display the total count, <code>%dailycount"
324
  "%</code> to display the daily count and <code>%overallcount%</code> to "
326
  "options displays <code>[Visited 123 times, 23 visits today]</code>"
327
  msgstr ""
328
 
329
+ #: admin/admin.php:442
330
  msgid "What do display when there are no visits?"
331
  msgstr ""
332
 
333
+ #: admin/admin.php:445
334
  msgid ""
335
  "This text applies only when there are 0 hits for the post and it isn't a "
336
  "single page. e.g. if you display post views on the homepage or archives then "
338
  "option."
339
  msgstr ""
340
 
341
+ #: admin/admin.php:449
342
  msgid "Always display latest post count"
343
  msgstr ""
344
 
345
+ #: admin/admin.php:452
346
  msgid ""
347
  "This option uses JavaScript and will increase your page load time. Turn this "
348
  "off if you are not using caching plugins or are OK with displaying older "
349
  "cached counts."
350
  msgstr ""
351
 
352
+ #: admin/admin.php:456
353
  msgid "Track visits of authors on their own posts?"
354
  msgstr "Registreer bezoeken van auteurs aan hun eigen berichten?"
355
 
356
+ #: admin/admin.php:459
357
  msgid ""
358
  "Disabling this option will stop authors visits tracked on their own posts"
359
  msgstr ""
360
 
361
+ #: admin/admin.php:463
362
  #, fuzzy
363
  msgid "Track visits of admins?"
364
  msgstr "Registreer bezoeken van auteurs aan hun eigen berichten?"
365
 
366
+ #: admin/admin.php:466
367
  msgid "Disabling this option will stop admin visits being tracked."
368
  msgstr ""
369
 
370
+ #: admin/admin.php:470
371
  #, fuzzy
372
  msgid "Track visits of Editors?"
373
  msgstr "Registreer bezoeken van auteurs aan hun eigen berichten?"
374
 
375
+ #: admin/admin.php:473
376
  msgid "Disabling this option will stop editor visits being tracked."
377
  msgstr ""
378
 
379
+ #: admin/admin.php:477
380
  msgid "Display page views on Posts and Pages in Admin"
381
  msgstr ""
382
 
383
+ #: admin/admin.php:480
384
  msgid ""
385
  "Adds three columns called Total Views, Today's Views and Views to All Posts "
386
  "and All Pages"
387
  msgstr ""
388
 
389
+ #: admin/admin.php:484
390
  #, fuzzy
391
  msgid "Show number of views to non-admins"
392
  msgstr "Geef het aantal paginaweergaves weer?"
393
 
394
+ #: admin/admin.php:487
395
  msgid ""
396
  "If you disable this then non-admins won't see the above columns or view the "
397
  "independent pages with the top posts"
398
  msgstr ""
399
 
400
+ #: admin/admin.php:527
401
  msgid "Number of popular posts to display: "
402
  msgstr "Aantal populaire berichten om weer te geven:"
403
 
404
+ #: admin/admin.php:530
405
  msgid ""
406
  "Maximum number of posts that will be displayed in the list. This option is "
407
  "used if you don't specify the number of posts in the widget or shortcodes"
408
  msgstr ""
409
 
410
+ #: admin/admin.php:534
411
  msgid "Post types to include in results (including custom post types)"
412
  msgstr ""
413
 
414
+ #: admin/admin.php:546
415
  msgid "List of post or page IDs to exclude from the results: "
416
  msgstr ""
417
 
418
+ #: admin/admin.php:548 admin/admin.php:655
419
  msgid "Enter comma separated list of IDs. e.g. 188,320,500"
420
  msgstr ""
421
 
422
+ #: admin/admin.php:552
423
  msgid "Exclude Categories: "
424
  msgstr ""
425
 
426
+ #: admin/admin.php:567
427
  msgid ""
428
  "Comma separated list of category slugs. The field above has an autocomplete "
429
  "so simply start typing in the starting letters and it will prompt you with "
430
  "options"
431
  msgstr ""
432
 
433
+ #: admin/admin.php:572
434
  msgid "Title of popular posts: "
435
  msgstr "Titel van populaire berichten:"
436
 
437
+ #: admin/admin.php:578
438
  msgid "Title of daily popular posts: "
439
  msgstr "Titel van dagelijkse populaire berichten:"
440
 
441
+ #: admin/admin.php:584
442
  msgid "When there are no posts, what should be shown?"
443
  msgstr ""
444
 
445
+ #: admin/admin.php:588
446
  msgid "Blank Output"
447
  msgstr ""
448
 
449
+ #: admin/admin.php:592
450
  msgid "Display:"
451
  msgstr ""
452
 
453
+ #: admin/admin.php:597
454
  msgid "Show post excerpt in list?"
455
  msgstr "Laat bericht samenvatting zien in lijst?"
456
 
457
+ #: admin/admin.php:603
458
  msgid "Length of excerpt (in words): "
459
  msgstr "Lengte van de samenvatting (in woorden):"
460
 
461
+ #: admin/admin.php:609
462
  #, fuzzy
463
  msgid "Show post author in list?"
464
  msgstr "Laat bericht samenvatting zien in lijst?"
465
 
466
+ #: admin/admin.php:615
467
  #, fuzzy
468
  msgid "Show post date in list?"
469
  msgstr "Laat bericht samenvatting zien in lijst?"
470
 
471
+ #: admin/admin.php:621
472
  msgid "Limit post title length (in characters)"
473
  msgstr ""
474
 
475
+ #: admin/admin.php:627
476
  #, fuzzy
477
  msgid "Show view count in list?"
478
  msgstr "Laat bericht samenvatting zien in lijst?"
479
 
480
+ #: admin/admin.php:633
481
  msgid "Always display latest post count in the daily lists?"
482
  msgstr ""
483
 
484
+ #: admin/admin.php:636
485
  msgid ""
486
  "This option uses JavaScript and will increase your page load time. When you "
487
  "enable this option, the daily widget will not use the options set there, but "
488
  "options will need to be set on this screen."
489
  msgstr ""
490
 
491
+ #: admin/admin.php:640
492
  msgid "Open links in new window"
493
  msgstr ""
494
 
495
+ #: admin/admin.php:646
496
  msgid "Add nofollow attribute to links in the list"
497
  msgstr ""
498
 
499
+ #: admin/admin.php:652
500
  msgid "Exclude display of related posts on these posts / pages"
501
  msgstr ""
502
 
503
+ #: admin/admin.php:659
504
  #, fuzzy
505
  msgid "Customise the list HTML"
506
  msgstr "Aanpassen van de output:"
507
 
508
+ #: admin/admin.php:662
509
  msgid "HTML to display before the list of posts: "
510
  msgstr "Te weergeven HTML voor de lijst met berichten:"
511
 
512
+ #: admin/admin.php:668
513
  msgid "HTML to display before each list item: "
514
  msgstr "Te weergeven HTML voor elk lijst item:"
515
 
516
+ #: admin/admin.php:674
517
  msgid "HTML to display after each list item: "
518
  msgstr "Te weergeven HTML na elk lijst item:"
519
 
520
+ #: admin/admin.php:680
521
  msgid "HTML to display after the list of posts: "
522
  msgstr "Te weergeven HTML na de lijst met berichten:"
523
 
524
+ #: admin/admin.php:721
525
  msgid "Location of post thumbnail:"
526
  msgstr ""
527
 
528
+ #: admin/admin.php:725
529
  #, fuzzy
530
  msgid "Display thumbnails inline with posts, before title"
531
  msgstr "Laat miniatuurafbeeldingen in lijn zien met berichten"
532
 
533
+ #: admin/admin.php:730
534
  #, fuzzy
535
  msgid "Display thumbnails inline with posts, after title"
536
  msgstr "Laat miniatuurafbeeldingen in lijn zien met berichten"
537
 
538
+ #: admin/admin.php:735
539
  msgid "Display only thumbnails, no text"
540
  msgstr "Geef alleen miniatuurafbeeldingen weer, geen text"
541
 
542
+ #: admin/admin.php:740
543
  msgid "Do not display thumbnails, only text."
544
  msgstr "Geef geen miniatuurafbeeldingen weer, alleen text"
545
 
546
+ #: admin/admin.php:744
547
  msgid "Thumbnail size:"
548
  msgstr ""
549
 
550
+ #: admin/admin.php:768
551
  msgid "Custom size"
552
  msgstr ""
553
 
554
+ #: admin/admin.php:771
555
  msgid ""
556
  "You can choose from existing image sizes above or create a custom size. If "
557
  "you have chosen Custom size above, then enter the width, height and crop "
558
  "settings below. For best results, use a cropped image."
559
  msgstr ""
560
 
561
+ #: admin/admin.php:772
562
  msgid ""
563
  "If you change the width and/or height below, existing images will not be "
564
  "automatically resized."
565
  msgstr ""
566
 
567
+ #: admin/admin.php:773
568
  #, php-format
569
  msgid ""
570
  "I recommend using <a href='%s' target='_blank'>Force Regenerate Thumbnails</"
572
  "regenerate all image sizes."
573
  msgstr ""
574
 
575
+ #: admin/admin.php:776
576
  msgid "Width of custom thumbnail:"
577
  msgstr ""
578
 
579
+ #: admin/admin.php:781
580
  msgid "Height of custom thumbnail"
581
  msgstr ""
582
 
583
+ #: admin/admin.php:786
584
  msgid "Crop mode:"
585
  msgstr ""
586
 
587
+ #: admin/admin.php:790
588
  msgid ""
589
  "By default, thumbnails will be proportionately cropped. Check this box to "
590
  "hard crop the thumbnails."
591
  msgstr ""
592
 
593
+ #: admin/admin.php:791
594
  #, php-format
595
  msgid "<a href='%s' target='_blank'>Difference between soft and hard crop</a>"
596
  msgstr ""
597
 
598
+ #: admin/admin.php:793
599
  msgid ""
600
  "Since you're using the default styles set under the Custom Styles section, "
601
  "the width and height is fixed at 65px and crop mode is enabled."
602
  msgstr ""
603
 
604
+ #: admin/admin.php:798
605
  msgid "Style attributes / Width and Height HTML attributes:"
606
  msgstr ""
607
 
608
+ #: admin/admin.php:802
609
  msgid "Style attributes are used for width and height."
610
  msgstr ""
611
 
612
+ #: admin/admin.php:807
613
  msgid "HTML width and height attributes are used for width and height."
614
  msgstr ""
615
 
616
+ #: admin/admin.php:811
617
  msgid "Use timthumb to generate thumbnails? "
618
  msgstr ""
619
 
620
+ #: admin/admin.php:814
621
  msgid ""
622
  "If checked, <a href=\"http://www.binarymoon.co.uk/projects/timthumb/\" "
623
  "target=\"_blank\">timthumb</a> will be used to generate thumbnails"
624
  msgstr ""
625
 
626
+ #: admin/admin.php:817
627
  msgid "Quality of thumbnails generated by timthumb:"
628
  msgstr ""
629
 
630
+ #: admin/admin.php:820
631
  msgid ""
632
  "Enter values between 0 and 100 only. 100 is highest quality and the highest "
633
  "file size. Suggested maximum value is 95. Default is 75."
634
  msgstr ""
635
 
636
+ #: admin/admin.php:823
637
  #, fuzzy
638
  msgid "Post thumbnail meta field name: "
639
  msgstr "Bericht miniatuurafbeelding opties:"
640
 
641
+ #: admin/admin.php:826
642
  msgid ""
643
  "The value of this field should contain the image source and is set in the "
644
  "<em>Add New Post</em> screen"
645
  msgstr ""
646
 
647
+ #: admin/admin.php:829
648
  #, fuzzy
649
  msgid ""
650
  "If the postmeta is not set, then should the plugin extract the first image "
655
  "vertragen wanneer de eerste afbeelding in de gerelateerde berichten groot is "
656
  "qua bestandsgrootte"
657
 
658
+ #: admin/admin.php:832
659
  #, fuzzy
660
  msgid ""
661
  "This could slow down the loading of your page if the first image in the "
666
  "vertragen wanneer de eerste afbeelding in de gerelateerde berichten groot is "
667
  "qua bestandsgrootte"
668
 
669
+ #: admin/admin.php:835
670
  msgid "Use default thumbnail? "
671
  msgstr ""
672
 
673
+ #: admin/admin.php:838
674
  msgid ""
675
  "If checked, when no thumbnail is found, show a default one from the URL "
676
  "below. If not checked and no thumbnail is found, no image will be shown."
677
  msgstr ""
678
 
679
+ #: admin/admin.php:841
680
  msgid "Default thumbnail: "
681
  msgstr ""
682
 
683
+ #: admin/admin.php:845
684
  #, fuzzy
685
  msgid ""
686
  "The plugin will first check if the post contains a thumbnail. If it doesn't "
692
  "veld controleren. Als dit veld niet beschikbaar is toont de plugin de "
693
  "standaard afbeelding zoals hieronder aangegeven:"
694
 
695
+ #: admin/admin.php:869
696
  msgid "Custom CSS"
697
  msgstr ""
698
 
699
+ #: admin/admin.php:884
700
  msgid "Use default style included in the plugin?"
701
  msgstr ""
702
 
703
+ #: admin/admin.php:887
704
  msgid ""
705
  "Top 10 includes a default style that makes your popular posts list to look "
706
  "beautiful. Check the box above if you want to use this."
707
  msgstr ""
708
 
709
+ #: admin/admin.php:888
710
  msgid ""
711
  "Enabling this option will turn on the thumbnails and set their width and "
712
  "height to 65px. It will also turn off the display of the author, excerpt and "
713
  "date if already enabled. Disabling this option will not revert any settings."
714
  msgstr ""
715
 
716
+ #: admin/admin.php:889
717
  #, php-format
718
  msgid ""
719
  "You can view the default style at <a href=\"%1$s\" target=\"_blank\">%1$s</a>"
720
  msgstr ""
721
 
722
+ #: admin/admin.php:892
723
  msgid "Custom CSS to add to header:"
724
  msgstr ""
725
 
726
+ #: admin/admin.php:897
727
  msgid ""
728
  "Do not include <code>style</code> tags. Check out the <a href=\"http://"
729
  "wordpress.org/extend/plugins/top-10/faq/\" target=\"_blank\">FAQ</a> for "
730
  "available CSS classes to style."
731
  msgstr ""
732
 
733
+ #: admin/admin.php:917
734
  #, fuzzy
735
  msgid "Default Options"
736
  msgstr "Output Opties:"
737
 
738
+ #: admin/admin.php:917
739
  msgid "Do you want to set options to Default?"
740
  msgstr "Wil je de opties terugzetten naar standaard?"
741
 
742
+ #: admin/admin.php:941
743
  msgid ""
744
  "Over time the Daily Top 10 database grows in size, which reduces the "
745
  "performance of the plugin. Cleaning the database at regular intervals could "
747
  "will automatically delete entries older than 90 days."
748
  msgstr ""
749
 
750
+ #: admin/admin.php:942
751
  msgid ""
752
  "Note: When scheduled maintenance is enabled, WordPress will run the cron job "
753
  "everytime the job is rescheduled (i.e. you change the settings below)."
754
  msgstr ""
755
 
756
+ #: admin/admin.php:945
757
  msgid "Enable scheduled maintenance of daily tables:"
758
  msgstr ""
759
 
760
+ #: admin/admin.php:949
761
  msgid "Time to run maintenance"
762
  msgstr ""
763
 
764
+ #: admin/admin.php:950
765
  msgid "hrs"
766
  msgstr ""
767
 
768
+ #: admin/admin.php:950
769
  msgid "min"
770
  msgstr ""
771
 
772
+ #: admin/admin.php:952
773
  msgid "How often should the maintenance be run:"
774
  msgstr ""
775
 
776
+ #: admin/admin.php:956
777
  msgid "Daily"
778
  msgstr ""
779
 
780
+ #: admin/admin.php:960
781
  msgid "Weekly"
782
  msgstr ""
783
 
784
+ #: admin/admin.php:964
785
  msgid "Fortnightly"
786
  msgstr ""
787
 
788
+ #: admin/admin.php:968
789
  msgid "Monthly"
790
  msgstr ""
791
 
792
+ #: admin/admin.php:977
793
  msgid "The cron job has been scheduled. Maintenance will run "
794
  msgstr ""
795
 
796
+ #: admin/admin.php:982
797
  msgid "The cron job is missing. Please resave this page to add the job"
798
  msgstr ""
799
 
800
+ #: admin/admin.php:987
801
  msgid "Maintenance is turned off"
802
  msgstr ""
803
 
804
+ #: admin/admin.php:1001
805
  msgid "Reset count"
806
  msgstr "Reset telling"
807
 
808
+ #: admin/admin.php:1004
809
  msgid ""
810
  "This cannot be reversed. Make sure that your database has been backed up "
811
  "before proceeding"
813
  "Dit kan niet ongedaan worden gemaakt. Zorg ervoor dat je een backup van je "
814
  "database gemaakt hebt voordat je verder gaat"
815
 
816
+ #: admin/admin.php:1007
817
  #, fuzzy
818
  msgid "Reset Popular Posts"
819
  msgstr "Populaire Berichten"
820
 
821
+ #: admin/admin.php:1007
822
  msgid "Are you sure you want to reset the popular posts?"
823
  msgstr "Ben je er zeker van dat je de populaire berichten wilt resetten?"
824
 
825
+ #: admin/admin.php:1008
826
  #, fuzzy
827
  msgid "Reset Daily Popular Posts"
828
  msgstr "Dagelijkse Populaire Berichten"
829
 
830
+ #: admin/admin.php:1008
831
  msgid "Are you sure you want to reset the daily popular posts?"
832
  msgstr ""
833
  "Ben je er zeker van dat je de dagelijkse populaire berichten wilt resetten?"
834
 
835
+ #: admin/admin.php:1009
836
  msgid "Clear duplicates"
837
  msgstr ""
838
 
839
+ #: admin/admin.php:1009
840
  msgid "This will delete the duplicate entries in the tables. Proceed?"
841
  msgstr "Hiermee verwijdert u de dubbele vermeldingen in de tabellen. Doorgaan?"
842
 
843
+ #: admin/admin.php:1022
844
  msgid "WordPress Multisite: Migrate Top 10 v1.x counts to 2.x"
845
  msgstr ""
846
 
847
+ #: admin/admin.php:1025
848
  msgid ""
849
  "If you've been using Top 10 v1.x on multisite, you would have needed to "
850
  "activate the plugin independently for each site. This would have resulted in "
851
  "two tables being created for each site in the network."
852
  msgstr ""
853
 
854
+ #: admin/admin.php:1026
855
  msgid ""
856
  "Top 10 v2.x onwards uses only a single table to record the count, keeping "
857
  "your database clean. You can use this tool to import the recorded counts "
858
  "from v1.x tables to the new v2.x table format."
859
  msgstr ""
860
 
861
+ #: admin/admin.php:1029
862
  msgid ""
863
  "If you do not see any tables below, then it means that either all data has "
864
  "already been imported or no relevant information has been found."
865
  msgstr ""
866
 
867
+ #: admin/admin.php:1032
868
  msgid ""
869
  "After running the importer, please verify that all the counts have been "
870
  "successfully imported. Only then should you delete any old tables!"
871
  msgstr ""
872
 
873
+ #: admin/admin.php:1066
874
  msgid "Blog ID"
875
  msgstr ""
876
 
877
+ #: admin/admin.php:1069
878
  msgid "Status"
879
  msgstr ""
880
 
881
+ #: admin/admin.php:1072
882
  msgid "Select to import"
883
  msgstr ""
884
 
885
+ #: admin/admin.php:1082
886
  msgid "Blog #"
887
  msgstr ""
888
 
889
+ #: admin/admin.php:1092
890
  msgid "Not imported"
891
  msgstr ""
892
 
893
+ #: admin/admin.php:1096
894
  msgid "Imported"
895
  msgstr ""
896
 
897
+ #: admin/admin.php:1117
898
  msgid "Begin import"
899
  msgstr ""
900
 
901
+ #: admin/admin.php:1118
902
  msgid "Delete selected tables"
903
  msgstr ""
904
 
905
+ #: admin/admin.php:1119
906
  msgid "Delete all imported tables"
907
  msgstr ""
908
 
909
+ #: admin/admin.php:1176 admin/admin.php:1272
910
  msgid "Daily Popular Posts"
911
  msgstr "Dagelijkse Populaire Berichten"
912
 
913
+ #: admin/admin.php:1206
914
  msgid "Support the development"
915
  msgstr "Ondersteun de ontwikkeling"
916
 
917
+ #: admin/admin.php:1213
918
  msgid "Donation for Top 10"
919
  msgstr ""
920
 
921
+ #: admin/admin.php:1215
922
  msgid "Enter amount in USD: "
923
  msgstr "Voer het bedrag in in USD:"
924
 
925
+ #: admin/admin.php:1219
926
  #, fuzzy
927
  msgid "Send your donation to the author of Top 10"
928
  msgstr "Zend je donatie naar de auteur van "
929
 
930
+ #: admin/admin.php:1226
931
  msgid "Follow me"
932
  msgstr ""
933
 
934
+ #: admin/admin.php:1236
935
  #, fuzzy
936
  msgid "Quick links"
937
  msgstr "Quick links"
938
 
939
+ #: admin/admin.php:1240
940
  #, fuzzy
941
  msgid "Top 10 plugin page"
942
  msgstr "plugin pagina"
943
 
944
+ #: admin/admin.php:1241
945
  msgid "Top 10 Github page"
946
  msgstr ""
947
 
948
+ #: admin/admin.php:1242
949
  msgid "Other plugins"
950
  msgstr "Andere plugins"
951
 
952
+ #: admin/admin.php:1243
953
  msgid "Ajay's blog"
954
  msgstr "De blog van Ajay"
955
 
956
+ #: admin/admin.php:1244
957
  msgid "FAQ"
958
  msgstr ""
959
 
960
+ #: admin/admin.php:1245 admin/admin.php:1403
961
  msgid "Support"
962
  msgstr "Ondersteuning"
963
 
964
+ #: admin/admin.php:1246
965
  msgid "Reviews"
966
  msgstr ""
967
 
968
+ #: admin/admin.php:1269
969
  #, fuzzy
970
  msgid "Overall Popular Posts"
971
  msgstr "Bekijk het Totaal Populaire Berichten"
972
 
973
+ #: admin/admin.php:1380
974
  msgid "Settings"
975
  msgstr "Instellingen"
976
 
977
+ #: admin/admin.php:1404
978
  msgid "Donate"
979
  msgstr "Doneer"
980
 
1088
  msgid "No top posts yet"
1089
  msgstr "Reset Top 10 populaire berichten"
1090
 
1091
+ #: top-10.php:1690
1092
  msgid "Once Weekly"
1093
  msgstr ""
1094
 
1095
+ #: top-10.php:1694
1096
  msgid "Once Fortnightly"
1097
  msgstr ""
1098
 
1099
+ #: top-10.php:1698
1100
  msgid "Once Monthly"
1101
  msgstr ""
1102
 
1103
+ #: top-10.php:1702
1104
  msgid "Once quarterly"
1105
  msgstr ""
1106
 
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: 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,7 +61,7 @@ msgstr "Anterioară"
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,155 +69,155 @@ msgstr "Posturi populare"
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
 
76
- #: admin/admin-metabox.php:71
77
  #, fuzzy
78
  msgid "Visit count:"
79
  msgstr "Reiniţializare count"
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 "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 "
@@ -225,11 +225,37 @@ msgid ""
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,59 +264,59 @@ msgstr ""
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,11 +324,11 @@ msgid ""
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,231 +336,231 @@ msgid ""
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,79 +568,79 @@ msgid ""
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,7 +651,7 @@ msgstr ""
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,11 +662,11 @@ msgstr ""
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,65 +675,65 @@ msgstr ""
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,65 +741,65 @@ msgid ""
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,167 +807,167 @@ msgstr ""
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
 
@@ -1055,19 +1081,19 @@ msgstr "<h3>Daily populare</h3>"
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
 
2
  msgstr ""
3
  "Project-Id-Version: Top 10\n"
4
  "Report-Msgid-Bugs-To: \n"
5
+ "POT-Creation-Date: 2015-01-03 01: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:1174
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:1263
73
  msgid "Top 10"
74
  msgstr "Top 10"
75
 
76
+ #: admin/admin-metabox.php:72
77
  #, fuzzy
78
  msgid "Visit count:"
79
  msgstr "Reiniţializare count"
80
 
81
+ #: admin/admin-metabox.php:74
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:84
88
  msgid "Location of thumbnail:"
89
  msgstr ""
90
 
91
+ #: admin/admin-metabox.php:86
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 Top 10 Settings &raquo; Thumbnail options."
96
  msgstr ""
97
 
98
+ #: admin/admin-metabox.php:87
99
  msgid "The URL above is saved in the meta field: "
100
  msgstr ""
101
 
102
+ #: admin/admin.php:163
103
  msgid "Options saved successfully."
104
  msgstr "Opţiuni salvat cu succes."
105
 
106
+ #: admin/admin.php:173
107
  msgid "Options set to Default."
108
  msgstr "Opţiunile setate la valorile implicite."
109
 
110
+ #: admin/admin.php:179
111
  msgid "Top 10 popular posts reset"
112
  msgstr "Top 10 populare posturi Resetare"
113
 
114
+ #: admin/admin.php:185
115
  msgid "Top 10 daily popular posts reset"
116
  msgstr "Top 10 posturi populare daily Reiniţializare"
117
 
118
+ #: admin/admin.php:192
119
  msgid "Duplicate rows cleaned from tables"
120
  msgstr ""
121
 
122
+ #: admin/admin.php:204
123
  msgid "Scheduled maintenance enabled / modified"
124
  msgstr ""
125
 
126
+ #: admin/admin.php:208
127
  msgid "Scheduled maintenance disabled"
128
  msgstr ""
129
 
130
+ #: admin/admin.php:247
131
  msgid "Counts from selected sites have been imported."
132
  msgstr ""
133
 
134
+ #: admin/admin.php:272
135
  msgid ""
136
  "Selected tables have been deleted. Note that only imported tables have been "
137
  "deleted."
138
  msgstr ""
139
 
140
+ #: admin/admin.php:280 admin/admin.php:1263 admin/admin.php:1266
141
  #, fuzzy
142
  msgid "Top 10 Settings"
143
  msgstr "Setări"
144
 
145
+ #: admin/admin.php:292 admin/admin.php:314
146
  msgid "General options"
147
  msgstr ""
148
 
149
+ #: admin/admin.php:293 admin/admin.php:406
150
  msgid "Counter and tracker options"
151
  msgstr ""
152
 
153
+ #: admin/admin.php:294 admin/admin.php:511
154
  msgid "Popular post list options"
155
  msgstr ""
156
 
157
+ #: admin/admin.php:295 admin/admin.php:706
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:296
164
  msgid "Custom styles"
165
  msgstr ""
166
 
167
+ #: admin/admin.php:297 admin/admin.php:937
168
  msgid "Maintenance"
169
  msgstr ""
170
 
171
+ #: admin/admin.php:313 admin/admin.php:405 admin/admin.php:510
172
+ #: admin/admin.php:705 admin/admin.php:868 admin/admin.php:936
173
+ #: admin/admin.php:1000 admin/admin.php:1021 admin/admin.php:1205
174
+ #: admin/admin.php:1225 admin/admin.php:1235
175
  msgid "Click to toggle"
176
  msgstr ""
177
 
178
+ #: admin/admin.php:330
179
  msgid "Enable Overall stats"
180
  msgstr ""
181
 
182
+ #: admin/admin.php:336
183
  msgid "Enable Daily stats"
184
  msgstr ""
185
 
186
+ #: admin/admin.php:342
187
  msgid "Cache fix:"
188
  msgstr ""
189
 
190
+ #: admin/admin.php:345
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:349
198
  msgid "Start daily counts from midnight:"
199
  msgstr ""
200
 
201
+ #: admin/admin.php:352
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:356
209
  msgid "Daily popular contains top posts over:"
210
  msgstr ""
211
 
212
+ #: admin/admin.php:358
213
  msgid "day(s)"
214
  msgstr ""
215
 
216
+ #: admin/admin.php:359
217
  msgid "hour(s)"
218
  msgstr ""
219
 
220
+ #: admin/admin.php:360
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 "
225
  "overridden in the widget."
226
  msgstr ""
227
 
228
+ #: admin/admin.php:364
229
+ msgid "Delete options on uninstall"
230
+ msgstr ""
231
+
232
+ #: admin/admin.php:367
233
+ msgid ""
234
+ "If this is checked, all settings related to Top 10 are removed from the "
235
+ "database if you choose to uninstall/delete the plugin."
236
+ msgstr ""
237
+
238
+ #: admin/admin.php:371
239
+ msgid "Delete counter data on uninstall"
240
+ msgstr ""
241
+
242
+ #: admin/admin.php:374
243
+ msgid ""
244
+ "If this is checked, the tables containing the counter statistics are removed "
245
+ "from the database if you choose to uninstall/delete the plugin."
246
+ msgstr ""
247
+
248
+ #: admin/admin.php:375
249
+ msgid ""
250
+ "Keep this unchecked if you choose to reinstall the plugin and don't want to "
251
+ "lose your counter data."
252
+ msgstr ""
253
+
254
+ #: admin/admin.php:379
255
  msgid "Link to Top 10 plugin page"
256
  msgstr ""
257
 
258
+ #: admin/admin.php:382
259
  #, fuzzy
260
  msgid ""
261
  "A link to the plugin is added as an extra list item to the list of popular "
264
  "Un link pentru a plugin-ul se adaugă ca un element suplimentar lista la "
265
  "lista de posturi populare. Nu obligatoriu, dar Multumesc dacă tu a face it!"
266
 
267
+ #: admin/admin.php:387 admin/admin.php:492 admin/admin.php:687
268
+ #: admin/admin.php:850 admin/admin.php:916 admin/admin.php:993
269
  #, fuzzy
270
  msgid "Save Options"
271
  msgstr "Opţiuni:"
272
 
273
+ #: admin/admin.php:422
274
  #, fuzzy
275
  msgid "Display number of views on:"
276
  msgstr "Afişează numărul de vizualizări pe posturi?"
277
 
278
+ #: admin/admin.php:424
279
  msgid "Posts"
280
  msgstr ""
281
 
282
+ #: admin/admin.php:425
283
  #, fuzzy
284
  msgid "Pages"
285
  msgstr "Pagină"
286
 
287
+ #: admin/admin.php:426
288
  msgid "Home page"
289
  msgstr ""
290
 
291
+ #: admin/admin.php:427
292
  msgid "Feeds"
293
  msgstr ""
294
 
295
+ #: admin/admin.php:428
296
  msgid "Category archives"
297
  msgstr ""
298
 
299
+ #: admin/admin.php:429
300
  msgid "Tag archives"
301
  msgstr ""
302
 
303
+ #: admin/admin.php:430
304
  msgid "Other archives"
305
  msgstr ""
306
 
307
+ #: admin/admin.php:431
308
  msgid ""
309
  "If you choose to disable this, please add <code>&lt;?php if "
310
  "( function_exists ( 'echo_tptn_post_count' ) ) echo_tptn_post_count(); ?&gt;"
311
  "</code> to your template file where you want it displayed"
312
  msgstr ""
313
 
314
+ #: admin/admin.php:435
315
  #, fuzzy
316
  msgid "Format to display the post views:"
317
  msgstr "Format pentru a afişa numărul în: "
318
 
319
+ #: admin/admin.php:438
320
  msgid ""
321
  "Use <code>%totalcount%</code> to display the total count, <code>%dailycount"
322
  "%</code> to display the daily count and <code>%overallcount%</code> to "
324
  "options displays <code>[Visited 123 times, 23 visits today]</code>"
325
  msgstr ""
326
 
327
+ #: admin/admin.php:442
328
  msgid "What do display when there are no visits?"
329
  msgstr ""
330
 
331
+ #: admin/admin.php:445
332
  msgid ""
333
  "This text applies only when there are 0 hits for the post and it isn't a "
334
  "single page. e.g. if you display post views on the homepage or archives then "
336
  "option."
337
  msgstr ""
338
 
339
+ #: admin/admin.php:449
340
  msgid "Always display latest post count"
341
  msgstr ""
342
 
343
+ #: admin/admin.php:452
344
  msgid ""
345
  "This option uses JavaScript and will increase your page load time. Turn this "
346
  "off if you are not using caching plugins or are OK with displaying older "
347
  "cached counts."
348
  msgstr ""
349
 
350
+ #: admin/admin.php:456
351
  msgid "Track visits of authors on their own posts?"
352
  msgstr "Track vizite de autori pe posturile lor proprii?"
353
 
354
+ #: admin/admin.php:459
355
  msgid ""
356
  "Disabling this option will stop authors visits tracked on their own posts"
357
  msgstr ""
358
 
359
+ #: admin/admin.php:463
360
  #, fuzzy
361
  msgid "Track visits of admins?"
362
  msgstr "Track vizite de autori pe posturile lor proprii?"
363
 
364
+ #: admin/admin.php:466
365
  msgid "Disabling this option will stop admin visits being tracked."
366
  msgstr ""
367
 
368
+ #: admin/admin.php:470
369
  #, fuzzy
370
  msgid "Track visits of Editors?"
371
  msgstr "Track vizite de autori pe posturile lor proprii?"
372
 
373
+ #: admin/admin.php:473
374
  msgid "Disabling this option will stop editor visits being tracked."
375
  msgstr ""
376
 
377
+ #: admin/admin.php:477
378
  msgid "Display page views on Posts and Pages in Admin"
379
  msgstr ""
380
 
381
+ #: admin/admin.php:480
382
  msgid ""
383
  "Adds three columns called Total Views, Today's Views and Views to All Posts "
384
  "and All Pages"
385
  msgstr ""
386
 
387
+ #: admin/admin.php:484
388
  #, fuzzy
389
  msgid "Show number of views to non-admins"
390
  msgstr "Afişează numărul de vizualizări pe pagini?"
391
 
392
+ #: admin/admin.php:487
393
  msgid ""
394
  "If you disable this then non-admins won't see the above columns or view the "
395
  "independent pages with the top posts"
396
  msgstr ""
397
 
398
+ #: admin/admin.php:527
399
  msgid "Number of popular posts to display: "
400
  msgstr "Numărul de posturi populare pentru a afişa: "
401
 
402
+ #: admin/admin.php:530
403
  msgid ""
404
  "Maximum number of posts that will be displayed in the list. This option is "
405
  "used if you don't specify the number of posts in the widget or shortcodes"
406
  msgstr ""
407
 
408
+ #: admin/admin.php:534
409
  msgid "Post types to include in results (including custom post types)"
410
  msgstr ""
411
 
412
+ #: admin/admin.php:546
413
  msgid "List of post or page IDs to exclude from the results: "
414
  msgstr ""
415
 
416
+ #: admin/admin.php:548 admin/admin.php:655
417
  msgid "Enter comma separated list of IDs. e.g. 188,320,500"
418
  msgstr ""
419
 
420
+ #: admin/admin.php:552
421
  msgid "Exclude Categories: "
422
  msgstr "Excludeţi categorii: "
423
 
424
+ #: admin/admin.php:567
425
  msgid ""
426
  "Comma separated list of category slugs. The field above has an autocomplete "
427
  "so simply start typing in the starting letters and it will prompt you with "
428
  "options"
429
  msgstr ""
430
 
431
+ #: admin/admin.php:572
432
  msgid "Title of popular posts: "
433
  msgstr "Titlul de posturi populare: "
434
 
435
+ #: admin/admin.php:578
436
  msgid "Title of daily popular posts: "
437
  msgstr "Titlul de zi cu zi de posturi populare: "
438
 
439
+ #: admin/admin.php:584
440
  msgid "When there are no posts, what should be shown?"
441
  msgstr ""
442
 
443
+ #: admin/admin.php:588
444
  msgid "Blank Output"
445
  msgstr ""
446
 
447
+ #: admin/admin.php:592
448
  msgid "Display:"
449
  msgstr ""
450
 
451
+ #: admin/admin.php:597
452
  msgid "Show post excerpt in list?"
453
  msgstr "Afişează post extras din lista?"
454
 
455
+ #: admin/admin.php:603
456
  msgid "Length of excerpt (in words): "
457
  msgstr "Lungimea extras (în cuvinte): "
458
 
459
+ #: admin/admin.php:609
460
  #, fuzzy
461
  msgid "Show post author in list?"
462
  msgstr "Afişează post extras din lista?"
463
 
464
+ #: admin/admin.php:615
465
  #, fuzzy
466
  msgid "Show post date in list?"
467
  msgstr "Afişează post extras din lista?"
468
 
469
+ #: admin/admin.php:621
470
  msgid "Limit post title length (in characters)"
471
  msgstr ""
472
 
473
+ #: admin/admin.php:627
474
  #, fuzzy
475
  msgid "Show view count in list?"
476
  msgstr "Afişează post extras din lista?"
477
 
478
+ #: admin/admin.php:633
479
  msgid "Always display latest post count in the daily lists?"
480
  msgstr ""
481
 
482
+ #: admin/admin.php:636
483
  msgid ""
484
  "This option uses JavaScript and will increase your page load time. When you "
485
  "enable this option, the daily widget will not use the options set there, but "
486
  "options will need to be set on this screen."
487
  msgstr ""
488
 
489
+ #: admin/admin.php:640
490
  msgid "Open links in new window"
491
  msgstr ""
492
 
493
+ #: admin/admin.php:646
494
  msgid "Add nofollow attribute to links in the list"
495
  msgstr ""
496
 
497
+ #: admin/admin.php:652
498
  msgid "Exclude display of related posts on these posts / pages"
499
  msgstr ""
500
 
501
+ #: admin/admin.php:659
502
  #, fuzzy
503
  msgid "Customise the list HTML"
504
  msgstr "Personaliza ieşire:"
505
 
506
+ #: admin/admin.php:662
507
  msgid "HTML to display before the list of posts: "
508
  msgstr "HTML pentru a afişa înainte de lista de posturi: "
509
 
510
+ #: admin/admin.php:668
511
  msgid "HTML to display before each list item: "
512
  msgstr "HTML pentru a afişa înainte de fiecare element din listă: "
513
 
514
+ #: admin/admin.php:674
515
  msgid "HTML to display after each list item: "
516
  msgstr "HTML pentru a afişa după fiecare element din listă: "
517
 
518
+ #: admin/admin.php:680
519
  msgid "HTML to display after the list of posts: "
520
  msgstr "HTML pentru a afişa după lista de posturi: "
521
 
522
+ #: admin/admin.php:721
523
  msgid "Location of post thumbnail:"
524
  msgstr ""
525
 
526
+ #: admin/admin.php:725
527
  msgid "Display thumbnails inline with posts, before title"
528
  msgstr "Afişare miniaturi inline cu posturi, înainte de titlu"
529
 
530
+ #: admin/admin.php:730
531
  msgid "Display thumbnails inline with posts, after title"
532
  msgstr "Afişare miniaturi inline cu posturi, după titlul"
533
 
534
+ #: admin/admin.php:735
535
  msgid "Display only thumbnails, no text"
536
  msgstr "Afişa numai miniaturi, nici un text"
537
 
538
+ #: admin/admin.php:740
539
  msgid "Do not display thumbnails, only text."
540
  msgstr "Nu se afişează miniaturi, numai textul."
541
 
542
+ #: admin/admin.php:744
543
  msgid "Thumbnail size:"
544
  msgstr ""
545
 
546
+ #: admin/admin.php:768
547
  msgid "Custom size"
548
  msgstr ""
549
 
550
+ #: admin/admin.php:771
551
  msgid ""
552
  "You can choose from existing image sizes above or create a custom size. If "
553
  "you have chosen Custom size above, then enter the width, height and crop "
554
  "settings below. For best results, use a cropped image."
555
  msgstr ""
556
 
557
+ #: admin/admin.php:772
558
  msgid ""
559
  "If you change the width and/or height below, existing images will not be "
560
  "automatically resized."
561
  msgstr ""
562
 
563
+ #: admin/admin.php:773
564
  #, php-format
565
  msgid ""
566
  "I recommend using <a href='%s' target='_blank'>Force Regenerate Thumbnails</"
568
  "regenerate all image sizes."
569
  msgstr ""
570
 
571
+ #: admin/admin.php:776
572
  msgid "Width of custom thumbnail:"
573
  msgstr ""
574
 
575
+ #: admin/admin.php:781
576
  msgid "Height of custom thumbnail"
577
  msgstr ""
578
 
579
+ #: admin/admin.php:786
580
  msgid "Crop mode:"
581
  msgstr ""
582
 
583
+ #: admin/admin.php:790
584
  msgid ""
585
  "By default, thumbnails will be proportionately cropped. Check this box to "
586
  "hard crop the thumbnails."
587
  msgstr ""
588
 
589
+ #: admin/admin.php:791
590
  #, php-format
591
  msgid "<a href='%s' target='_blank'>Difference between soft and hard crop</a>"
592
  msgstr ""
593
 
594
+ #: admin/admin.php:793
595
  msgid ""
596
  "Since you're using the default styles set under the Custom Styles section, "
597
  "the width and height is fixed at 65px and crop mode is enabled."
598
  msgstr ""
599
 
600
+ #: admin/admin.php:798
601
  msgid "Style attributes / Width and Height HTML attributes:"
602
  msgstr ""
603
 
604
+ #: admin/admin.php:802
605
  msgid "Style attributes are used for width and height."
606
  msgstr ""
607
 
608
+ #: admin/admin.php:807
609
  msgid "HTML width and height attributes are used for width and height."
610
  msgstr ""
611
 
612
+ #: admin/admin.php:811
613
  msgid "Use timthumb to generate thumbnails? "
614
  msgstr ""
615
 
616
+ #: admin/admin.php:814
617
  msgid ""
618
  "If checked, <a href=\"http://www.binarymoon.co.uk/projects/timthumb/\" "
619
  "target=\"_blank\">timthumb</a> will be used to generate thumbnails"
620
  msgstr ""
621
 
622
+ #: admin/admin.php:817
623
  msgid "Quality of thumbnails generated by timthumb:"
624
  msgstr ""
625
 
626
+ #: admin/admin.php:820
627
  msgid ""
628
  "Enter values between 0 and 100 only. 100 is highest quality and the highest "
629
  "file size. Suggested maximum value is 95. Default is 75."
630
  msgstr ""
631
 
632
+ #: admin/admin.php:823
633
  #, fuzzy
634
  msgid "Post thumbnail meta field name: "
635
  msgstr "Post Opţiuni pictograme:"
636
 
637
+ #: admin/admin.php:826
638
  msgid ""
639
  "The value of this field should contain the image source and is set in the "
640
  "<em>Add New Post</em> screen"
641
  msgstr ""
642
 
643
+ #: admin/admin.php:829
644
  #, fuzzy
645
  msgid ""
646
  "If the postmeta is not set, then should the plugin extract the first image "
651
  "dumneavoastră dacă prima imagine în legate de posturi este mare în mărime "
652
  "fişier"
653
 
654
+ #: admin/admin.php:832
655
  #, fuzzy
656
  msgid ""
657
  "This could slow down the loading of your page if the first image in the "
662
  "dumneavoastră dacă prima imagine în legate de posturi este mare în mărime "
663
  "fişier"
664
 
665
+ #: admin/admin.php:835
666
  msgid "Use default thumbnail? "
667
  msgstr ""
668
 
669
+ #: admin/admin.php:838
670
  msgid ""
671
  "If checked, when no thumbnail is found, show a default one from the URL "
672
  "below. If not checked and no thumbnail is found, no image will be shown."
675
  "la URL-ul de mai jos. În cazul în care nu a verificat şi este găsit nici un "
676
  "thumbnail, imaginea nu va fi indicat."
677
 
678
+ #: admin/admin.php:841
679
  msgid "Default thumbnail: "
680
  msgstr ""
681
 
682
+ #: admin/admin.php:845
683
  msgid ""
684
  "The plugin will first check if the post contains a thumbnail. If it doesn't "
685
  "then it will check the meta field. If this is not available, then it will "
686
  "show the default image as specified above"
687
  msgstr ""
688
 
689
+ #: admin/admin.php:869
690
  msgid "Custom CSS"
691
  msgstr ""
692
 
693
+ #: admin/admin.php:884
694
  msgid "Use default style included in the plugin?"
695
  msgstr ""
696
 
697
+ #: admin/admin.php:887
698
  msgid ""
699
  "Top 10 includes a default style that makes your popular posts list to look "
700
  "beautiful. Check the box above if you want to use this."
701
  msgstr ""
702
 
703
+ #: admin/admin.php:888
704
  msgid ""
705
  "Enabling this option will turn on the thumbnails and set their width and "
706
  "height to 65px. It will also turn off the display of the author, excerpt and "
707
  "date if already enabled. Disabling this option will not revert any settings."
708
  msgstr ""
709
 
710
+ #: admin/admin.php:889
711
  #, php-format
712
  msgid ""
713
  "You can view the default style at <a href=\"%1$s\" target=\"_blank\">%1$s</a>"
714
  msgstr ""
715
 
716
+ #: admin/admin.php:892
717
  msgid "Custom CSS to add to header:"
718
  msgstr ""
719
 
720
+ #: admin/admin.php:897
721
  msgid ""
722
  "Do not include <code>style</code> tags. Check out the <a href=\"http://"
723
  "wordpress.org/extend/plugins/top-10/faq/\" target=\"_blank\">FAQ</a> for "
724
  "available CSS classes to style."
725
  msgstr ""
726
 
727
+ #: admin/admin.php:917
728
  #, fuzzy
729
  msgid "Default Options"
730
  msgstr "Opţiuni de ieşire:"
731
 
732
+ #: admin/admin.php:917
733
  msgid "Do you want to set options to Default?"
734
  msgstr "Doriţi să setaţi opţiunile la valorile implicite?"
735
 
736
+ #: admin/admin.php:941
737
  msgid ""
738
  "Over time the Daily Top 10 database grows in size, which reduces the "
739
  "performance of the plugin. Cleaning the database at regular intervals could "
741
  "will automatically delete entries older than 90 days."
742
  msgstr ""
743
 
744
+ #: admin/admin.php:942
745
  msgid ""
746
  "Note: When scheduled maintenance is enabled, WordPress will run the cron job "
747
  "everytime the job is rescheduled (i.e. you change the settings below)."
748
  msgstr ""
749
 
750
+ #: admin/admin.php:945
751
  msgid "Enable scheduled maintenance of daily tables:"
752
  msgstr ""
753
 
754
+ #: admin/admin.php:949
755
  msgid "Time to run maintenance"
756
  msgstr ""
757
 
758
+ #: admin/admin.php:950
759
  msgid "hrs"
760
  msgstr ""
761
 
762
+ #: admin/admin.php:950
763
  msgid "min"
764
  msgstr ""
765
 
766
+ #: admin/admin.php:952
767
  msgid "How often should the maintenance be run:"
768
  msgstr ""
769
 
770
+ #: admin/admin.php:956
771
  msgid "Daily"
772
  msgstr ""
773
 
774
+ #: admin/admin.php:960
775
  msgid "Weekly"
776
  msgstr ""
777
 
778
+ #: admin/admin.php:964
779
  msgid "Fortnightly"
780
  msgstr ""
781
 
782
+ #: admin/admin.php:968
783
  msgid "Monthly"
784
  msgstr ""
785
 
786
+ #: admin/admin.php:977
787
  msgid "The cron job has been scheduled. Maintenance will run "
788
  msgstr ""
789
 
790
+ #: admin/admin.php:982
791
  msgid "The cron job is missing. Please resave this page to add the job"
792
  msgstr ""
793
 
794
+ #: admin/admin.php:987
795
  msgid "Maintenance is turned off"
796
  msgstr ""
797
 
798
+ #: admin/admin.php:1001
799
  msgid "Reset count"
800
  msgstr "Reiniţializare count"
801
 
802
+ #: admin/admin.php:1004
803
  msgid ""
804
  "This cannot be reversed. Make sure that your database has been backed up "
805
  "before proceeding"
807
  "Acest lucru poate fi inversat. Asiguraţi-vă că baza de date a fost sprijinit "
808
  "înainte de a continua"
809
 
810
+ #: admin/admin.php:1007
811
  #, fuzzy
812
  msgid "Reset Popular Posts"
813
  msgstr "Posturi populare"
814
 
815
+ #: admin/admin.php:1007
816
  msgid "Are you sure you want to reset the popular posts?"
817
  msgstr "Sigur reiniţializaţi posturi populare?"
818
 
819
+ #: admin/admin.php:1008
820
  #, fuzzy
821
  msgid "Reset Daily Popular Posts"
822
  msgstr "Posturi populare de zi cu zi"
823
 
824
+ #: admin/admin.php:1008
825
  msgid "Are you sure you want to reset the daily popular posts?"
826
  msgstr "Sigur reiniţializaţi posturi populare zilnic?"
827
 
828
+ #: admin/admin.php:1009
829
  msgid "Clear duplicates"
830
  msgstr ""
831
 
832
+ #: admin/admin.php:1009
833
  msgid "This will delete the duplicate entries in the tables. Proceed?"
834
  msgstr "Aceasta va şterge intrările dublate în tabele. Continuaţi?"
835
 
836
+ #: admin/admin.php:1022
837
  msgid "WordPress Multisite: Migrate Top 10 v1.x counts to 2.x"
838
  msgstr ""
839
 
840
+ #: admin/admin.php:1025
841
  msgid ""
842
  "If you've been using Top 10 v1.x on multisite, you would have needed to "
843
  "activate the plugin independently for each site. This would have resulted in "
844
  "two tables being created for each site in the network."
845
  msgstr ""
846
 
847
+ #: admin/admin.php:1026
848
  msgid ""
849
  "Top 10 v2.x onwards uses only a single table to record the count, keeping "
850
  "your database clean. You can use this tool to import the recorded counts "
851
  "from v1.x tables to the new v2.x table format."
852
  msgstr ""
853
 
854
+ #: admin/admin.php:1029
855
  msgid ""
856
  "If you do not see any tables below, then it means that either all data has "
857
  "already been imported or no relevant information has been found."
858
  msgstr ""
859
 
860
+ #: admin/admin.php:1032
861
  msgid ""
862
  "After running the importer, please verify that all the counts have been "
863
  "successfully imported. Only then should you delete any old tables!"
864
  msgstr ""
865
 
866
+ #: admin/admin.php:1066
867
  msgid "Blog ID"
868
  msgstr ""
869
 
870
+ #: admin/admin.php:1069
871
  msgid "Status"
872
  msgstr ""
873
 
874
+ #: admin/admin.php:1072
875
  msgid "Select to import"
876
  msgstr ""
877
 
878
+ #: admin/admin.php:1082
879
  msgid "Blog #"
880
  msgstr ""
881
 
882
+ #: admin/admin.php:1092
883
  msgid "Not imported"
884
  msgstr ""
885
 
886
+ #: admin/admin.php:1096
887
  msgid "Imported"
888
  msgstr ""
889
 
890
+ #: admin/admin.php:1117
891
  msgid "Begin import"
892
  msgstr ""
893
 
894
+ #: admin/admin.php:1118
895
  msgid "Delete selected tables"
896
  msgstr ""
897
 
898
+ #: admin/admin.php:1119
899
  msgid "Delete all imported tables"
900
  msgstr ""
901
 
902
+ #: admin/admin.php:1176 admin/admin.php:1272
903
  msgid "Daily Popular Posts"
904
  msgstr "Posturi populare de zi cu zi"
905
 
906
+ #: admin/admin.php:1206
907
  msgid "Support the development"
908
  msgstr "Sprijinirea dezvoltării"
909
 
910
+ #: admin/admin.php:1213
911
  msgid "Donation for Top 10"
912
  msgstr ""
913
 
914
+ #: admin/admin.php:1215
915
  msgid "Enter amount in USD: "
916
  msgstr "Introduceţi valoarea în USD: "
917
 
918
+ #: admin/admin.php:1219
919
  #, fuzzy
920
  msgid "Send your donation to the author of Top 10"
921
  msgstr "Trimite donatie autorului"
922
 
923
+ #: admin/admin.php:1226
924
  msgid "Follow me"
925
  msgstr ""
926
 
927
+ #: admin/admin.php:1236
928
  #, fuzzy
929
  msgid "Quick links"
930
  msgstr "Legături rapide pentru"
931
 
932
+ #: admin/admin.php:1240
933
  #, fuzzy
934
  msgid "Top 10 plugin page"
935
  msgstr "plug-in pagina"
936
 
937
+ #: admin/admin.php:1241
938
  msgid "Top 10 Github page"
939
  msgstr ""
940
 
941
+ #: admin/admin.php:1242
942
  msgid "Other plugins"
943
  msgstr "Alte plugin-uri"
944
 
945
+ #: admin/admin.php:1243
946
  msgid "Ajay's blog"
947
  msgstr "Ajay's blog"
948
 
949
+ #: admin/admin.php:1244
950
  msgid "FAQ"
951
  msgstr ""
952
 
953
+ #: admin/admin.php:1245 admin/admin.php:1403
954
  msgid "Support"
955
  msgstr "Suport"
956
 
957
+ #: admin/admin.php:1246
958
  msgid "Reviews"
959
  msgstr ""
960
 
961
+ #: admin/admin.php:1269
962
  #, fuzzy
963
  msgid "Overall Popular Posts"
964
  msgstr "Vedere de ansamblu posturi populare"
965
 
966
+ #: admin/admin.php:1380
967
  msgid "Settings"
968
  msgstr "Setări"
969
 
970
+ #: admin/admin.php:1404
971
  msgid "Donate"
972
  msgstr "Dona"
973
 
1081
  msgid "No top posts yet"
1082
  msgstr "Top 10 populare posturi Resetare"
1083
 
1084
+ #: top-10.php:1690
1085
  msgid "Once Weekly"
1086
  msgstr ""
1087
 
1088
+ #: top-10.php:1694
1089
  msgid "Once Fortnightly"
1090
  msgstr ""
1091
 
1092
+ #: top-10.php:1698
1093
  msgid "Once Monthly"
1094
  msgstr ""
1095
 
1096
+ #: top-10.php:1702
1097
  msgid "Once quarterly"
1098
  msgstr ""
1099
 
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: 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,7 +61,7 @@ msgstr "Предыдущая страница"
61
  msgid "Next"
62
  msgstr "Следующая страница"
63
 
64
- #: admin/admin-dashboard.php:200 admin/admin.php:1157
65
  msgid "Popular Posts"
66
  msgstr "Популярные записи"
67
 
@@ -69,155 +69,155 @@ msgstr "Популярные записи"
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
 
76
- #: admin/admin-metabox.php:71
77
  #, fuzzy
78
  msgid "Visit count:"
79
  msgstr "Сбросить статистику"
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 "Настройки сохранены."
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 "
@@ -225,11 +225,37 @@ msgid ""
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,61 +264,61 @@ msgstr ""
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,11 +326,11 @@ msgid ""
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,231 +338,231 @@ msgid ""
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,79 +570,79 @@ msgid ""
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,7 +652,7 @@ msgstr ""
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,11 +662,11 @@ msgstr ""
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,11 +675,11 @@ msgstr ""
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,54 +690,54 @@ msgstr ""
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,65 +745,65 @@ msgid ""
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,169 +811,169 @@ msgstr ""
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
 
@@ -1061,19 +1087,19 @@ msgstr "<h3>Популярные сегодня записи</h3>"
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
 
2
  msgstr ""
3
  "Project-Id-Version: Топ 10\n"
4
  "Report-Msgid-Bugs-To: \n"
5
+ "POT-Creation-Date: 2015-01-03 01: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:1174
65
  msgid "Popular Posts"
66
  msgstr "Популярные записи"
67
 
69
  msgid "Daily Popular"
70
  msgstr "Популярные сегодня записи"
71
 
72
+ #: admin/admin-metabox.php:38 admin/admin.php:1263
73
  msgid "Top 10"
74
  msgstr "Топ 10 записей"
75
 
76
+ #: admin/admin-metabox.php:72
77
  #, fuzzy
78
  msgid "Visit count:"
79
  msgstr "Сбросить статистику"
80
 
81
+ #: admin/admin-metabox.php:74
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:84
88
  msgid "Location of thumbnail:"
89
  msgstr ""
90
 
91
+ #: admin/admin-metabox.php:86
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 Top 10 Settings &raquo; Thumbnail options."
96
  msgstr ""
97
 
98
+ #: admin/admin-metabox.php:87
99
  msgid "The URL above is saved in the meta field: "
100
  msgstr ""
101
 
102
+ #: admin/admin.php:163
103
  msgid "Options saved successfully."
104
  msgstr "Настройки сохранены."
105
 
106
+ #: admin/admin.php:173
107
  msgid "Options set to Default."
108
  msgstr "Настройки сброшены."
109
 
110
+ #: admin/admin.php:179
111
  msgid "Top 10 popular posts reset"
112
  msgstr "Сбросить статистику популярных записей"
113
 
114
+ #: admin/admin.php:185
115
  msgid "Top 10 daily popular posts reset"
116
  msgstr "Сбросить статистику популярных записей за сегодня"
117
 
118
+ #: admin/admin.php:192
119
  msgid "Duplicate rows cleaned from tables"
120
  msgstr ""
121
 
122
+ #: admin/admin.php:204
123
  msgid "Scheduled maintenance enabled / modified"
124
  msgstr ""
125
 
126
+ #: admin/admin.php:208
127
  msgid "Scheduled maintenance disabled"
128
  msgstr ""
129
 
130
+ #: admin/admin.php:247
131
  msgid "Counts from selected sites have been imported."
132
  msgstr ""
133
 
134
+ #: admin/admin.php:272
135
  msgid ""
136
  "Selected tables have been deleted. Note that only imported tables have been "
137
  "deleted."
138
  msgstr ""
139
 
140
+ #: admin/admin.php:280 admin/admin.php:1263 admin/admin.php:1266
141
  #, fuzzy
142
  msgid "Top 10 Settings"
143
  msgstr "Настроки плагина"
144
 
145
+ #: admin/admin.php:292 admin/admin.php:314
146
  msgid "General options"
147
  msgstr ""
148
 
149
+ #: admin/admin.php:293 admin/admin.php:406
150
  msgid "Counter and tracker options"
151
  msgstr ""
152
 
153
+ #: admin/admin.php:294 admin/admin.php:511
154
  msgid "Popular post list options"
155
  msgstr ""
156
 
157
+ #: admin/admin.php:295 admin/admin.php:706
158
  #: includes/class-top-10-widget.php:103
159
  #, fuzzy
160
  msgid "Thumbnail options"
161
  msgstr "Настройки превью к записям:"
162
 
163
+ #: admin/admin.php:296
164
  msgid "Custom styles"
165
  msgstr ""
166
 
167
+ #: admin/admin.php:297 admin/admin.php:937
168
  msgid "Maintenance"
169
  msgstr ""
170
 
171
+ #: admin/admin.php:313 admin/admin.php:405 admin/admin.php:510
172
+ #: admin/admin.php:705 admin/admin.php:868 admin/admin.php:936
173
+ #: admin/admin.php:1000 admin/admin.php:1021 admin/admin.php:1205
174
+ #: admin/admin.php:1225 admin/admin.php:1235
175
  msgid "Click to toggle"
176
  msgstr ""
177
 
178
+ #: admin/admin.php:330
179
  msgid "Enable Overall stats"
180
  msgstr ""
181
 
182
+ #: admin/admin.php:336
183
  msgid "Enable Daily stats"
184
  msgstr ""
185
 
186
+ #: admin/admin.php:342
187
  msgid "Cache fix:"
188
  msgstr ""
189
 
190
+ #: admin/admin.php:345
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:349
198
  msgid "Start daily counts from midnight:"
199
  msgstr ""
200
 
201
+ #: admin/admin.php:352
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:356
209
  msgid "Daily popular contains top posts over:"
210
  msgstr ""
211
 
212
+ #: admin/admin.php:358
213
  msgid "day(s)"
214
  msgstr ""
215
 
216
+ #: admin/admin.php:359
217
  msgid "hour(s)"
218
  msgstr ""
219
 
220
+ #: admin/admin.php:360
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 "
225
  "overridden in the widget."
226
  msgstr ""
227
 
228
+ #: admin/admin.php:364
229
+ msgid "Delete options on uninstall"
230
+ msgstr ""
231
+
232
+ #: admin/admin.php:367
233
+ msgid ""
234
+ "If this is checked, all settings related to Top 10 are removed from the "
235
+ "database if you choose to uninstall/delete the plugin."
236
+ msgstr ""
237
+
238
+ #: admin/admin.php:371
239
+ msgid "Delete counter data on uninstall"
240
+ msgstr ""
241
+
242
+ #: admin/admin.php:374
243
+ msgid ""
244
+ "If this is checked, the tables containing the counter statistics are removed "
245
+ "from the database if you choose to uninstall/delete the plugin."
246
+ msgstr ""
247
+
248
+ #: admin/admin.php:375
249
+ msgid ""
250
+ "Keep this unchecked if you choose to reinstall the plugin and don't want to "
251
+ "lose your counter data."
252
+ msgstr ""
253
+
254
+ #: admin/admin.php:379
255
  msgid "Link to Top 10 plugin page"
256
  msgstr ""
257
 
258
+ #: admin/admin.php:382
259
  #, fuzzy
260
  msgid ""
261
  "A link to the plugin is added as an extra list item to the list of popular "
264
  "Оставить ссылку на плагин под списками Популярных записей? Автор плагина был "
265
  "бы очень благодарен Вам, если Вы ее все же оставите!"
266
 
267
+ #: admin/admin.php:387 admin/admin.php:492 admin/admin.php:687
268
+ #: admin/admin.php:850 admin/admin.php:916 admin/admin.php:993
269
  #, fuzzy
270
  msgid "Save Options"
271
  msgstr "Настройки плагина:"
272
 
273
+ #: admin/admin.php:422
274
  #, fuzzy
275
  msgid "Display number of views on:"
276
  msgstr "Показывать количество просмотров записи в ее \"теле\"?"
277
 
278
+ #: admin/admin.php:424
279
  msgid "Posts"
280
  msgstr ""
281
 
282
+ #: admin/admin.php:425
283
  #, fuzzy
284
  msgid "Pages"
285
  msgstr "Страница"
286
 
287
+ #: admin/admin.php:426
288
  msgid "Home page"
289
  msgstr ""
290
 
291
+ #: admin/admin.php:427
292
  msgid "Feeds"
293
  msgstr ""
294
 
295
+ #: admin/admin.php:428
296
  msgid "Category archives"
297
  msgstr ""
298
 
299
+ #: admin/admin.php:429
300
  msgid "Tag archives"
301
  msgstr ""
302
 
303
+ #: admin/admin.php:430
304
  msgid "Other archives"
305
  msgstr ""
306
 
307
+ #: admin/admin.php:431
308
  msgid ""
309
  "If you choose to disable this, please add <code>&lt;?php if "
310
  "( function_exists ( 'echo_tptn_post_count' ) ) echo_tptn_post_count(); ?&gt;"
311
  "</code> to your template file where you want it displayed"
312
  msgstr ""
313
 
314
+ #: admin/admin.php:435
315
  #, fuzzy
316
  msgid "Format to display the post views:"
317
  msgstr ""
318
  "В поле ниже вы можете настроить формат отображения количества просмотров за "
319
  "день, за все время для записей/страниц:"
320
 
321
+ #: admin/admin.php:438
322
  msgid ""
323
  "Use <code>%totalcount%</code> to display the total count, <code>%dailycount"
324
  "%</code> to display the daily count and <code>%overallcount%</code> to "
326
  "options displays <code>[Visited 123 times, 23 visits today]</code>"
327
  msgstr ""
328
 
329
+ #: admin/admin.php:442
330
  msgid "What do display when there are no visits?"
331
  msgstr ""
332
 
333
+ #: admin/admin.php:445
334
  msgid ""
335
  "This text applies only when there are 0 hits for the post and it isn't a "
336
  "single page. e.g. if you display post views on the homepage or archives then "
338
  "option."
339
  msgstr ""
340
 
341
+ #: admin/admin.php:449
342
  msgid "Always display latest post count"
343
  msgstr ""
344
 
345
+ #: admin/admin.php:452
346
  msgid ""
347
  "This option uses JavaScript and will increase your page load time. Turn this "
348
  "off if you are not using caching plugins or are OK with displaying older "
349
  "cached counts."
350
  msgstr ""
351
 
352
+ #: admin/admin.php:456
353
  msgid "Track visits of authors on their own posts?"
354
  msgstr "Учитывать просмотры записей, сделанные их же авторами?"
355
 
356
+ #: admin/admin.php:459
357
  msgid ""
358
  "Disabling this option will stop authors visits tracked on their own posts"
359
  msgstr ""
360
 
361
+ #: admin/admin.php:463
362
  #, fuzzy
363
  msgid "Track visits of admins?"
364
  msgstr "Учитывать просмотры записей, сделанные их же авторами?"
365
 
366
+ #: admin/admin.php:466
367
  msgid "Disabling this option will stop admin visits being tracked."
368
  msgstr ""
369
 
370
+ #: admin/admin.php:470
371
  #, fuzzy
372
  msgid "Track visits of Editors?"
373
  msgstr "Учитывать просмотры записей, сделанные их же авторами?"
374
 
375
+ #: admin/admin.php:473
376
  msgid "Disabling this option will stop editor visits being tracked."
377
  msgstr ""
378
 
379
+ #: admin/admin.php:477
380
  msgid "Display page views on Posts and Pages in Admin"
381
  msgstr ""
382
 
383
+ #: admin/admin.php:480
384
  msgid ""
385
  "Adds three columns called Total Views, Today's Views and Views to All Posts "
386
  "and All Pages"
387
  msgstr ""
388
 
389
+ #: admin/admin.php:484
390
  #, fuzzy
391
  msgid "Show number of views to non-admins"
392
  msgstr "Показывать количество просмотров страницы в ее \"теле\"?"
393
 
394
+ #: admin/admin.php:487
395
  msgid ""
396
  "If you disable this then non-admins won't see the above columns or view the "
397
  "independent pages with the top posts"
398
  msgstr ""
399
 
400
+ #: admin/admin.php:527
401
  msgid "Number of popular posts to display: "
402
  msgstr "Количество Популярных записей в списке:"
403
 
404
+ #: admin/admin.php:530
405
  msgid ""
406
  "Maximum number of posts that will be displayed in the list. This option is "
407
  "used if you don't specify the number of posts in the widget or shortcodes"
408
  msgstr ""
409
 
410
+ #: admin/admin.php:534
411
  msgid "Post types to include in results (including custom post types)"
412
  msgstr ""
413
 
414
+ #: admin/admin.php:546
415
  msgid "List of post or page IDs to exclude from the results: "
416
  msgstr ""
417
 
418
+ #: admin/admin.php:548 admin/admin.php:655
419
  msgid "Enter comma separated list of IDs. e.g. 188,320,500"
420
  msgstr ""
421
 
422
+ #: admin/admin.php:552
423
  msgid "Exclude Categories: "
424
  msgstr "Исключить рубрики:"
425
 
426
+ #: admin/admin.php:567
427
  msgid ""
428
  "Comma separated list of category slugs. The field above has an autocomplete "
429
  "so simply start typing in the starting letters and it will prompt you with "
430
  "options"
431
  msgstr ""
432
 
433
+ #: admin/admin.php:572
434
  msgid "Title of popular posts: "
435
  msgstr "Заголовок списка Популярных записей:"
436
 
437
+ #: admin/admin.php:578
438
  msgid "Title of daily popular posts: "
439
  msgstr "Заголовок списка Популярных сегодня записей:"
440
 
441
+ #: admin/admin.php:584
442
  msgid "When there are no posts, what should be shown?"
443
  msgstr ""
444
 
445
+ #: admin/admin.php:588
446
  msgid "Blank Output"
447
  msgstr ""
448
 
449
+ #: admin/admin.php:592
450
  msgid "Display:"
451
  msgstr ""
452
 
453
+ #: admin/admin.php:597
454
  msgid "Show post excerpt in list?"
455
  msgstr "Показывать текст записи в списке?"
456
 
457
+ #: admin/admin.php:603
458
  msgid "Length of excerpt (in words): "
459
  msgstr "Длина выводимого текста (в словах):"
460
 
461
+ #: admin/admin.php:609
462
  #, fuzzy
463
  msgid "Show post author in list?"
464
  msgstr "Показывать текст записи в списке?"
465
 
466
+ #: admin/admin.php:615
467
  #, fuzzy
468
  msgid "Show post date in list?"
469
  msgstr "Показывать текст записи в списке?"
470
 
471
+ #: admin/admin.php:621
472
  msgid "Limit post title length (in characters)"
473
  msgstr ""
474
 
475
+ #: admin/admin.php:627
476
  #, fuzzy
477
  msgid "Show view count in list?"
478
  msgstr "Показывать текст записи в списке?"
479
 
480
+ #: admin/admin.php:633
481
  msgid "Always display latest post count in the daily lists?"
482
  msgstr ""
483
 
484
+ #: admin/admin.php:636
485
  msgid ""
486
  "This option uses JavaScript and will increase your page load time. When you "
487
  "enable this option, the daily widget will not use the options set there, but "
488
  "options will need to be set on this screen."
489
  msgstr ""
490
 
491
+ #: admin/admin.php:640
492
  msgid "Open links in new window"
493
  msgstr ""
494
 
495
+ #: admin/admin.php:646
496
  msgid "Add nofollow attribute to links in the list"
497
  msgstr ""
498
 
499
+ #: admin/admin.php:652
500
  msgid "Exclude display of related posts on these posts / pages"
501
  msgstr ""
502
 
503
+ #: admin/admin.php:659
504
  #, fuzzy
505
  msgid "Customise the list HTML"
506
  msgstr "Настройки оформления списка:"
507
 
508
+ #: admin/admin.php:662
509
  msgid "HTML to display before the list of posts: "
510
  msgstr "HTML-тег, используемый перед списком:"
511
 
512
+ #: admin/admin.php:668
513
  msgid "HTML to display before each list item: "
514
  msgstr "HTML-тег, используемый перед каждым пунктом в списке:"
515
 
516
+ #: admin/admin.php:674
517
  msgid "HTML to display after each list item: "
518
  msgstr "HTML-тег, используемый после каждого пункта в списке:"
519
 
520
+ #: admin/admin.php:680
521
  msgid "HTML to display after the list of posts: "
522
  msgstr "HTML-тег, используемый после списка:"
523
 
524
+ #: admin/admin.php:721
525
  msgid "Location of post thumbnail:"
526
  msgstr ""
527
 
528
+ #: admin/admin.php:725
529
  msgid "Display thumbnails inline with posts, before title"
530
  msgstr "Отображать превью к записи сразу перед заголовком"
531
 
532
+ #: admin/admin.php:730
533
  msgid "Display thumbnails inline with posts, after title"
534
  msgstr "Отображать превью к записи сразу после заголовка"
535
 
536
+ #: admin/admin.php:735
537
  msgid "Display only thumbnails, no text"
538
  msgstr "Отображать только превью, без текста"
539
 
540
+ #: admin/admin.php:740
541
  msgid "Do not display thumbnails, only text."
542
  msgstr "Отображать только текст, без превью"
543
 
544
+ #: admin/admin.php:744
545
  msgid "Thumbnail size:"
546
  msgstr ""
547
 
548
+ #: admin/admin.php:768
549
  msgid "Custom size"
550
  msgstr ""
551
 
552
+ #: admin/admin.php:771
553
  msgid ""
554
  "You can choose from existing image sizes above or create a custom size. If "
555
  "you have chosen Custom size above, then enter the width, height and crop "
556
  "settings below. For best results, use a cropped image."
557
  msgstr ""
558
 
559
+ #: admin/admin.php:772
560
  msgid ""
561
  "If you change the width and/or height below, existing images will not be "
562
  "automatically resized."
563
  msgstr ""
564
 
565
+ #: admin/admin.php:773
566
  #, php-format
567
  msgid ""
568
  "I recommend using <a href='%s' target='_blank'>Force Regenerate Thumbnails</"
570
  "regenerate all image sizes."
571
  msgstr ""
572
 
573
+ #: admin/admin.php:776
574
  msgid "Width of custom thumbnail:"
575
  msgstr ""
576
 
577
+ #: admin/admin.php:781
578
  msgid "Height of custom thumbnail"
579
  msgstr ""
580
 
581
+ #: admin/admin.php:786
582
  msgid "Crop mode:"
583
  msgstr ""
584
 
585
+ #: admin/admin.php:790
586
  msgid ""
587
  "By default, thumbnails will be proportionately cropped. Check this box to "
588
  "hard crop the thumbnails."
589
  msgstr ""
590
 
591
+ #: admin/admin.php:791
592
  #, php-format
593
  msgid "<a href='%s' target='_blank'>Difference between soft and hard crop</a>"
594
  msgstr ""
595
 
596
+ #: admin/admin.php:793
597
  msgid ""
598
  "Since you're using the default styles set under the Custom Styles section, "
599
  "the width and height is fixed at 65px and crop mode is enabled."
600
  msgstr ""
601
 
602
+ #: admin/admin.php:798
603
  msgid "Style attributes / Width and Height HTML attributes:"
604
  msgstr ""
605
 
606
+ #: admin/admin.php:802
607
  msgid "Style attributes are used for width and height."
608
  msgstr ""
609
 
610
+ #: admin/admin.php:807
611
  msgid "HTML width and height attributes are used for width and height."
612
  msgstr ""
613
 
614
+ #: admin/admin.php:811
615
  msgid "Use timthumb to generate thumbnails? "
616
  msgstr ""
617
 
618
+ #: admin/admin.php:814
619
  msgid ""
620
  "If checked, <a href=\"http://www.binarymoon.co.uk/projects/timthumb/\" "
621
  "target=\"_blank\">timthumb</a> will be used to generate thumbnails"
622
  msgstr ""
623
 
624
+ #: admin/admin.php:817
625
  msgid "Quality of thumbnails generated by timthumb:"
626
  msgstr ""
627
 
628
+ #: admin/admin.php:820
629
  msgid ""
630
  "Enter values between 0 and 100 only. 100 is highest quality and the highest "
631
  "file size. Suggested maximum value is 95. Default is 75."
632
  msgstr ""
633
 
634
+ #: admin/admin.php:823
635
  #, fuzzy
636
  msgid "Post thumbnail meta field name: "
637
  msgstr "Настройки превью к записям:"
638
 
639
+ #: admin/admin.php:826
640
  msgid ""
641
  "The value of this field should contain the image source and is set in the "
642
  "<em>Add New Post</em> screen"
643
  msgstr ""
644
 
645
+ #: admin/admin.php:829
646
  #, fuzzy
647
  msgid ""
648
  "If the postmeta is not set, then should the plugin extract the first image "
652
  "изображение из записи. Это может слегка увеличить загрузку в первый раз, так "
653
  "как будет создаваться уменьшенная копия изображения"
654
 
655
+ #: admin/admin.php:832
656
  #, fuzzy
657
  msgid ""
658
  "This could slow down the loading of your page if the first image in the "
662
  "изображение из записи. Это может слегка увеличить загрузку в первый раз, так "
663
  "как будет создаваться уменьшенная копия изображения"
664
 
665
+ #: admin/admin.php:835
666
  msgid "Use default thumbnail? "
667
  msgstr ""
668
 
669
+ #: admin/admin.php:838
670
  msgid ""
671
  "If checked, when no thumbnail is found, show a default one from the URL "
672
  "below. If not checked and no thumbnail is found, no image will be shown."
675
  "добавлено стандартное изображение. Если превью задано к записи - будет "
676
  "отображаться только оно."
677
 
678
+ #: admin/admin.php:841
679
  msgid "Default thumbnail: "
680
  msgstr ""
681
 
682
+ #: admin/admin.php:845
683
  #, fuzzy
684
  msgid ""
685
  "The plugin will first check if the post contains a thumbnail. If it doesn't "
690
  "заданному ранее произвольному мета-полю). Если же превью нет - будет "
691
  "выводиться картинка по-умолчанию:"
692
 
693
+ #: admin/admin.php:869
694
  msgid "Custom CSS"
695
  msgstr ""
696
 
697
+ #: admin/admin.php:884
698
  msgid "Use default style included in the plugin?"
699
  msgstr ""
700
 
701
+ #: admin/admin.php:887
702
  msgid ""
703
  "Top 10 includes a default style that makes your popular posts list to look "
704
  "beautiful. Check the box above if you want to use this."
705
  msgstr ""
706
 
707
+ #: admin/admin.php:888
708
  msgid ""
709
  "Enabling this option will turn on the thumbnails and set their width and "
710
  "height to 65px. It will also turn off the display of the author, excerpt and "
711
  "date if already enabled. Disabling this option will not revert any settings."
712
  msgstr ""
713
 
714
+ #: admin/admin.php:889
715
  #, php-format
716
  msgid ""
717
  "You can view the default style at <a href=\"%1$s\" target=\"_blank\">%1$s</a>"
718
  msgstr ""
719
 
720
+ #: admin/admin.php:892
721
  msgid "Custom CSS to add to header:"
722
  msgstr ""
723
 
724
+ #: admin/admin.php:897
725
  msgid ""
726
  "Do not include <code>style</code> tags. Check out the <a href=\"http://"
727
  "wordpress.org/extend/plugins/top-10/faq/\" target=\"_blank\">FAQ</a> for "
728
  "available CSS classes to style."
729
  msgstr ""
730
 
731
+ #: admin/admin.php:917
732
  #, fuzzy
733
  msgid "Default Options"
734
  msgstr "Настройки плагина:"
735
 
736
+ #: admin/admin.php:917
737
  msgid "Do you want to set options to Default?"
738
  msgstr "Сбросить настройки плагина?"
739
 
740
+ #: admin/admin.php:941
741
  msgid ""
742
  "Over time the Daily Top 10 database grows in size, which reduces the "
743
  "performance of the plugin. Cleaning the database at regular intervals could "
745
  "will automatically delete entries older than 90 days."
746
  msgstr ""
747
 
748
+ #: admin/admin.php:942
749
  msgid ""
750
  "Note: When scheduled maintenance is enabled, WordPress will run the cron job "
751
  "everytime the job is rescheduled (i.e. you change the settings below)."
752
  msgstr ""
753
 
754
+ #: admin/admin.php:945
755
  msgid "Enable scheduled maintenance of daily tables:"
756
  msgstr ""
757
 
758
+ #: admin/admin.php:949
759
  msgid "Time to run maintenance"
760
  msgstr ""
761
 
762
+ #: admin/admin.php:950
763
  msgid "hrs"
764
  msgstr ""
765
 
766
+ #: admin/admin.php:950
767
  msgid "min"
768
  msgstr ""
769
 
770
+ #: admin/admin.php:952
771
  msgid "How often should the maintenance be run:"
772
  msgstr ""
773
 
774
+ #: admin/admin.php:956
775
  msgid "Daily"
776
  msgstr ""
777
 
778
+ #: admin/admin.php:960
779
  msgid "Weekly"
780
  msgstr ""
781
 
782
+ #: admin/admin.php:964
783
  msgid "Fortnightly"
784
  msgstr ""
785
 
786
+ #: admin/admin.php:968
787
  msgid "Monthly"
788
  msgstr ""
789
 
790
+ #: admin/admin.php:977
791
  msgid "The cron job has been scheduled. Maintenance will run "
792
  msgstr ""
793
 
794
+ #: admin/admin.php:982
795
  msgid "The cron job is missing. Please resave this page to add the job"
796
  msgstr ""
797
 
798
+ #: admin/admin.php:987
799
  msgid "Maintenance is turned off"
800
  msgstr ""
801
 
802
+ #: admin/admin.php:1001
803
  msgid "Reset count"
804
  msgstr "Сбросить статистику"
805
 
806
+ #: admin/admin.php:1004
807
  msgid ""
808
  "This cannot be reversed. Make sure that your database has been backed up "
809
  "before proceeding"
811
  "Сброс статистики не может быть обращен. Перед тем, как сбрасывать все, "
812
  "убедитесь, что у вас есть копия вашей базы данных!"
813
 
814
+ #: admin/admin.php:1007
815
  #, fuzzy
816
  msgid "Reset Popular Posts"
817
  msgstr "Популярные записи"
818
 
819
+ #: admin/admin.php:1007
820
  msgid "Are you sure you want to reset the popular posts?"
821
  msgstr "Вы уверены, что хотите сбросить статистику для Популярных записей?"
822
 
823
+ #: admin/admin.php:1008
824
  #, fuzzy
825
  msgid "Reset Daily Popular Posts"
826
  msgstr "Популярные сегодня записи"
827
 
828
+ #: admin/admin.php:1008
829
  msgid "Are you sure you want to reset the daily popular posts?"
830
  msgstr ""
831
  "Вы уверены, что хотите сбросить статистику для Популярных сегодня записей?"
832
 
833
+ #: admin/admin.php:1009
834
  msgid "Clear duplicates"
835
  msgstr ""
836
 
837
+ #: admin/admin.php:1009
838
  msgid "This will delete the duplicate entries in the tables. Proceed?"
839
  msgstr ""
840
  "Будет произведено удаление дублирующихся щаписей из статистики. Продолжить?"
841
 
842
+ #: admin/admin.php:1022
843
  msgid "WordPress Multisite: Migrate Top 10 v1.x counts to 2.x"
844
  msgstr ""
845
 
846
+ #: admin/admin.php:1025
847
  msgid ""
848
  "If you've been using Top 10 v1.x on multisite, you would have needed to "
849
  "activate the plugin independently for each site. This would have resulted in "
850
  "two tables being created for each site in the network."
851
  msgstr ""
852
 
853
+ #: admin/admin.php:1026
854
  msgid ""
855
  "Top 10 v2.x onwards uses only a single table to record the count, keeping "
856
  "your database clean. You can use this tool to import the recorded counts "
857
  "from v1.x tables to the new v2.x table format."
858
  msgstr ""
859
 
860
+ #: admin/admin.php:1029
861
  msgid ""
862
  "If you do not see any tables below, then it means that either all data has "
863
  "already been imported or no relevant information has been found."
864
  msgstr ""
865
 
866
+ #: admin/admin.php:1032
867
  msgid ""
868
  "After running the importer, please verify that all the counts have been "
869
  "successfully imported. Only then should you delete any old tables!"
870
  msgstr ""
871
 
872
+ #: admin/admin.php:1066
873
  msgid "Blog ID"
874
  msgstr ""
875
 
876
+ #: admin/admin.php:1069
877
  msgid "Status"
878
  msgstr ""
879
 
880
+ #: admin/admin.php:1072
881
  msgid "Select to import"
882
  msgstr ""
883
 
884
+ #: admin/admin.php:1082
885
  msgid "Blog #"
886
  msgstr ""
887
 
888
+ #: admin/admin.php:1092
889
  msgid "Not imported"
890
  msgstr ""
891
 
892
+ #: admin/admin.php:1096
893
  msgid "Imported"
894
  msgstr ""
895
 
896
+ #: admin/admin.php:1117
897
  msgid "Begin import"
898
  msgstr ""
899
 
900
+ #: admin/admin.php:1118
901
  msgid "Delete selected tables"
902
  msgstr ""
903
 
904
+ #: admin/admin.php:1119
905
  msgid "Delete all imported tables"
906
  msgstr ""
907
 
908
+ #: admin/admin.php:1176 admin/admin.php:1272
909
  msgid "Daily Popular Posts"
910
  msgstr "Популярные сегодня записи"
911
 
912
+ #: admin/admin.php:1206
913
  msgid "Support the development"
914
  msgstr "Поддержать автора плагина"
915
 
916
+ #: admin/admin.php:1213
917
  msgid "Donation for Top 10"
918
  msgstr ""
919
 
920
+ #: admin/admin.php:1215
921
  msgid "Enter amount in USD: "
922
  msgstr "Сколько вы готовы пожертвовать (в USD):"
923
 
924
+ #: admin/admin.php:1219
925
  #, fuzzy
926
  msgid "Send your donation to the author of Top 10"
927
  msgstr "Отправьте пожертвование автору"
928
 
929
+ #: admin/admin.php:1226
930
  msgid "Follow me"
931
  msgstr ""
932
 
933
+ #: admin/admin.php:1236
934
  #, fuzzy
935
  msgid "Quick links"
936
  msgstr "Полезные ссылки"
937
 
938
+ #: admin/admin.php:1240
939
  #, fuzzy
940
  msgid "Top 10 plugin page"
941
  msgstr "страница плагина"
942
 
943
+ #: admin/admin.php:1241
944
  msgid "Top 10 Github page"
945
  msgstr ""
946
 
947
+ #: admin/admin.php:1242
948
  msgid "Other plugins"
949
  msgstr "Другие плагины автора"
950
 
951
+ #: admin/admin.php:1243
952
  msgid "Ajay's blog"
953
  msgstr "Блог Ajay"
954
 
955
+ #: admin/admin.php:1244
956
  msgid "FAQ"
957
  msgstr ""
958
 
959
+ #: admin/admin.php:1245 admin/admin.php:1403
960
  msgid "Support"
961
  msgstr "Поддержка (англ.)"
962
 
963
+ #: admin/admin.php:1246
964
  msgid "Reviews"
965
  msgstr ""
966
 
967
+ #: admin/admin.php:1269
968
  #, fuzzy
969
  msgid "Overall Popular Posts"
970
  msgstr "Посмотреть все Популярные записи"
971
 
972
+ #: admin/admin.php:1380
973
  msgid "Settings"
974
  msgstr "Настроки плагина"
975
 
976
+ #: admin/admin.php:1404
977
  msgid "Donate"
978
  msgstr "Сделать пожертвование"
979
 
1087
  msgid "No top posts yet"
1088
  msgstr "Сбросить статистику популярных записей"
1089
 
1090
+ #: top-10.php:1690
1091
  msgid "Once Weekly"
1092
  msgstr ""
1093
 
1094
+ #: top-10.php:1694
1095
  msgid "Once Fortnightly"
1096
  msgstr ""
1097
 
1098
+ #: top-10.php:1698
1099
  msgid "Once Monthly"
1100
  msgstr ""
1101
 
1102
+ #: top-10.php:1702
1103
  msgid "Once quarterly"
1104
  msgstr ""
1105
 
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: 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,7 +61,7 @@ msgstr "Prethodni"
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,156 +69,156 @@ msgstr "Popularni postovi"
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
 
76
- #: admin/admin-metabox.php:71
77
  #, fuzzy
78
  msgid "Visit count:"
79
  msgstr "Resetuj brojanje"
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
  #, fuzzy
89
  msgid "Location of thumbnail:"
90
  msgstr "Lokacija posta thumbnaila:"
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 "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 "
@@ -226,11 +226,37 @@ msgid ""
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,47 +266,47 @@ msgstr ""
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,12 +317,12 @@ msgstr ""
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,11 +330,11 @@ msgid ""
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,11 +342,11 @@ msgid ""
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,84 +359,84 @@ msgstr ""
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,59 +445,59 @@ msgstr ""
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,81 +510,81 @@ msgstr ""
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,56 +592,56 @@ msgid ""
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,22 +650,22 @@ msgstr ""
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,7 +673,7 @@ msgstr ""
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,7 +684,7 @@ msgstr ""
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,11 +695,11 @@ msgstr ""
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,11 +707,11 @@ msgstr ""
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,39 +721,39 @@ msgstr ""
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,16 +763,16 @@ msgstr ""
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,7 +784,7 @@ msgstr ""
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,61 +794,61 @@ msgstr ""
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,168 +856,168 @@ msgstr ""
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
 
@@ -1105,19 +1131,19 @@ msgstr "<h3>Dnevni popularni</h3>"
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
 
2
  msgstr ""
3
  "Project-Id-Version: Top 10\n"
4
  "Report-Msgid-Bugs-To: \n"
5
+ "POT-Creation-Date: 2015-01-03 01: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:1174
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:1263
73
  msgid "Top 10"
74
  msgstr "Top 10"
75
 
76
+ #: admin/admin-metabox.php:72
77
  #, fuzzy
78
  msgid "Visit count:"
79
  msgstr "Resetuj brojanje"
80
 
81
+ #: admin/admin-metabox.php:74
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:84
88
  #, fuzzy
89
  msgid "Location of thumbnail:"
90
  msgstr "Lokacija posta thumbnaila:"
91
 
92
+ #: admin/admin-metabox.php:86
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 Top 10 Settings &raquo; Thumbnail options."
97
  msgstr ""
98
 
99
+ #: admin/admin-metabox.php:87
100
  msgid "The URL above is saved in the meta field: "
101
  msgstr ""
102
 
103
+ #: admin/admin.php:163
104
  msgid "Options saved successfully."
105
  msgstr "Opcije uspešno sašuvane"
106
 
107
+ #: admin/admin.php:173
108
  msgid "Options set to Default."
109
  msgstr "Opcije podešene po Default-u."
110
 
111
+ #: admin/admin.php:179
112
  msgid "Top 10 popular posts reset"
113
  msgstr "Resetuj Top 10 popularnih postova"
114
 
115
+ #: admin/admin.php:185
116
  msgid "Top 10 daily popular posts reset"
117
  msgstr "Resetuj Top 10 dnevnih popularnih postova"
118
 
119
+ #: admin/admin.php:192
120
  msgid "Duplicate rows cleaned from tables"
121
  msgstr "Umnoži redove očišćene sa tabela"
122
 
123
+ #: admin/admin.php:204
124
  msgid "Scheduled maintenance enabled / modified"
125
  msgstr "Raspored održavanja omogućen modifikovan"
126
 
127
+ #: admin/admin.php:208
128
  msgid "Scheduled maintenance disabled"
129
  msgstr "Raspoed održavanja onemogućen"
130
 
131
+ #: admin/admin.php:247
132
  msgid "Counts from selected sites have been imported."
133
  msgstr ""
134
 
135
+ #: admin/admin.php:272
136
  msgid ""
137
  "Selected tables have been deleted. Note that only imported tables have been "
138
  "deleted."
139
  msgstr ""
140
 
141
+ #: admin/admin.php:280 admin/admin.php:1263 admin/admin.php:1266
142
  #, fuzzy
143
  msgid "Top 10 Settings"
144
  msgstr "Paramètres"
145
 
146
+ #: admin/admin.php:292 admin/admin.php:314
147
  msgid "General options"
148
  msgstr "Opšta pitanja"
149
 
150
+ #: admin/admin.php:293 admin/admin.php:406
151
  msgid "Counter and tracker options"
152
  msgstr ""
153
 
154
+ #: admin/admin.php:294 admin/admin.php:511
155
  msgid "Popular post list options"
156
  msgstr ""
157
 
158
+ #: admin/admin.php:295 admin/admin.php:706
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:296
165
  msgid "Custom styles"
166
  msgstr ""
167
 
168
+ #: admin/admin.php:297 admin/admin.php:937
169
  msgid "Maintenance"
170
  msgstr "Održavanje"
171
 
172
+ #: admin/admin.php:313 admin/admin.php:405 admin/admin.php:510
173
+ #: admin/admin.php:705 admin/admin.php:868 admin/admin.php:936
174
+ #: admin/admin.php:1000 admin/admin.php:1021 admin/admin.php:1205
175
+ #: admin/admin.php:1225 admin/admin.php:1235
176
  msgid "Click to toggle"
177
  msgstr ""
178
 
179
+ #: admin/admin.php:330
180
  msgid "Enable Overall stats"
181
  msgstr "Omogući statistiku svega"
182
 
183
+ #: admin/admin.php:336
184
  msgid "Enable Daily stats"
185
  msgstr "Omogući dnevne statistike"
186
 
187
+ #: admin/admin.php:342
188
  msgid "Cache fix:"
189
  msgstr ""
190
 
191
+ #: admin/admin.php:345
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:349
199
  msgid "Start daily counts from midnight:"
200
  msgstr ""
201
 
202
+ #: admin/admin.php:352
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:356
210
  msgid "Daily popular contains top posts over:"
211
  msgstr ""
212
 
213
+ #: admin/admin.php:358
214
  msgid "day(s)"
215
  msgstr ""
216
 
217
+ #: admin/admin.php:359
218
  msgid "hour(s)"
219
  msgstr ""
220
 
221
+ #: admin/admin.php:360
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 "
226
  "overridden in the widget."
227
  msgstr ""
228
 
229
+ #: admin/admin.php:364
230
+ msgid "Delete options on uninstall"
231
+ msgstr ""
232
+
233
+ #: admin/admin.php:367
234
+ msgid ""
235
+ "If this is checked, all settings related to Top 10 are removed from the "
236
+ "database if you choose to uninstall/delete the plugin."
237
+ msgstr ""
238
+
239
+ #: admin/admin.php:371
240
+ msgid "Delete counter data on uninstall"
241
+ msgstr ""
242
+
243
+ #: admin/admin.php:374
244
+ msgid ""
245
+ "If this is checked, the tables containing the counter statistics are removed "
246
+ "from the database if you choose to uninstall/delete the plugin."
247
+ msgstr ""
248
+
249
+ #: admin/admin.php:375
250
+ msgid ""
251
+ "Keep this unchecked if you choose to reinstall the plugin and don't want to "
252
+ "lose your counter data."
253
+ msgstr ""
254
+
255
+ #: admin/admin.php:379
256
  msgid "Link to Top 10 plugin page"
257
  msgstr "Povežite se na Top 10 plugin stranicu"
258
 
259
+ #: admin/admin.php:382
260
  #, fuzzy
261
  msgid ""
262
  "A link to the plugin is added as an extra list item to the list of popular "
266
  "le répertoire des enregistrements populaires. Cela n'est pas obligatoire, "
267
  "mais nous vous y remercions!"
268
 
269
+ #: admin/admin.php:387 admin/admin.php:492 admin/admin.php:687
270
+ #: admin/admin.php:850 admin/admin.php:916 admin/admin.php:993
271
  #, fuzzy
272
  msgid "Save Options"
273
  msgstr "Options:"
274
 
275
+ #: admin/admin.php:422
276
  #, fuzzy
277
  msgid "Display number of views on:"
278
  msgstr "Afficher le nombre des visionnages du message?"
279
 
280
+ #: admin/admin.php:424
281
  msgid "Posts"
282
  msgstr "Postovi"
283
 
284
+ #: admin/admin.php:425
285
  #, fuzzy
286
  msgid "Pages"
287
  msgstr "Page"
288
 
289
+ #: admin/admin.php:426
290
  msgid "Home page"
291
  msgstr "Početna stranica"
292
 
293
+ #: admin/admin.php:427
294
  msgid "Feeds"
295
  msgstr "Feeds"
296
 
297
+ #: admin/admin.php:428
298
  msgid "Category archives"
299
  msgstr "Kategorija arhiva"
300
 
301
+ #: admin/admin.php:429
302
  msgid "Tag archives"
303
  msgstr "Tag arhiva"
304
 
305
+ #: admin/admin.php:430
306
  msgid "Other archives"
307
  msgstr "Druge arhive"
308
 
309
+ #: admin/admin.php:431
310
  #, fuzzy
311
  msgid ""
312
  "If you choose to disable this, please add <code>&lt;?php if "
317
  "if(function_exists('echo_ald_tptn')) echo_ald_tptn();?&gt;</code> vašem "
318
  "template fajlu gde želite da bude prikazano. "
319
 
320
+ #: admin/admin.php:435
321
  #, fuzzy
322
  msgid "Format to display the post views:"
323
  msgstr "Format za prikaz brojanja u:"
324
 
325
+ #: admin/admin.php:438
326
  msgid ""
327
  "Use <code>%totalcount%</code> to display the total count, <code>%dailycount"
328
  "%</code> to display the daily count and <code>%overallcount%</code> to "
330
  "options displays <code>[Visited 123 times, 23 visits today]</code>"
331
  msgstr ""
332
 
333
+ #: admin/admin.php:442
334
  msgid "What do display when there are no visits?"
335
  msgstr ""
336
 
337
+ #: admin/admin.php:445
338
  msgid ""
339
  "This text applies only when there are 0 hits for the post and it isn't a "
340
  "single page. e.g. if you display post views on the homepage or archives then "
342
  "option."
343
  msgstr ""
344
 
345
+ #: admin/admin.php:449
346
  msgid "Always display latest post count"
347
  msgstr "Uvek prikaži posldenje brojanje posta"
348
 
349
+ #: admin/admin.php:452
350
  #, fuzzy
351
  msgid ""
352
  "This option uses JavaScript and will increase your page load time. Turn this "
359
  "widget neće koristiti opcije koje su nameštene tu, ali opcije će morati da "
360
  "se podese na ovom ekranu."
361
 
362
+ #: admin/admin.php:456
363
  msgid "Track visits of authors on their own posts?"
364
  msgstr ""
365
  "Opcije koriste JavaScript i povećaće vreme učitavanja vaše stranicePratite "
366
  "posete autora na njihovim postovima?"
367
 
368
+ #: admin/admin.php:459
369
  msgid ""
370
  "Disabling this option will stop authors visits tracked on their own posts"
371
  msgstr ""
372
 
373
+ #: admin/admin.php:463
374
  #, fuzzy
375
  msgid "Track visits of admins?"
376
  msgstr "Suivre les visites des auteurs de leurs propres messages?"
377
 
378
+ #: admin/admin.php:466
379
  msgid "Disabling this option will stop admin visits being tracked."
380
  msgstr ""
381
 
382
+ #: admin/admin.php:470
383
  #, fuzzy
384
  msgid "Track visits of Editors?"
385
  msgstr "Suivre les visites des auteurs de leurs propres messages?"
386
 
387
+ #: admin/admin.php:473
388
  msgid "Disabling this option will stop editor visits being tracked."
389
  msgstr ""
390
 
391
+ #: admin/admin.php:477
392
  #, fuzzy
393
  msgid "Display page views on Posts and Pages in Admin"
394
  msgstr "Prikaži preglede stranice na Posts > All Posts u Admin"
395
 
396
+ #: admin/admin.php:480
397
  msgid ""
398
  "Adds three columns called Total Views, Today's Views and Views to All Posts "
399
  "and All Pages"
400
  msgstr ""
401
 
402
+ #: admin/admin.php:484
403
  #, fuzzy
404
  msgid "Show number of views to non-admins"
405
  msgstr "Afficher le nombre des visionnages sur les pages?"
406
 
407
+ #: admin/admin.php:487
408
  msgid ""
409
  "If you disable this then non-admins won't see the above columns or view the "
410
  "independent pages with the top posts"
411
  msgstr ""
412
 
413
+ #: admin/admin.php:527
414
  msgid "Number of popular posts to display: "
415
  msgstr "Broj popularnih postova za prikaz."
416
 
417
+ #: admin/admin.php:530
418
  msgid ""
419
  "Maximum number of posts that will be displayed in the list. This option is "
420
  "used if you don't specify the number of posts in the widget or shortcodes"
421
  msgstr ""
422
 
423
+ #: admin/admin.php:534
424
  msgid "Post types to include in results (including custom post types)"
425
  msgstr "Tipovi postova da uključe rezultate (uključujući i custom post tipove)"
426
 
427
+ #: admin/admin.php:546
428
  msgid "List of post or page IDs to exclude from the results: "
429
  msgstr "Lista postova ili IDs stranice da budu isključeni iz rezultata"
430
 
431
+ #: admin/admin.php:548 admin/admin.php:655
432
  msgid "Enter comma separated list of IDs. e.g. 188,320,500"
433
  msgstr "Unesite zarezom odvojenu listu IDa npr.188,320,500"
434
 
435
+ #: admin/admin.php:552
436
  msgid "Exclude Categories: "
437
  msgstr "Isključene kategorije"
438
 
439
+ #: admin/admin.php:567
440
  msgid ""
441
  "Comma separated list of category slugs. The field above has an autocomplete "
442
  "so simply start typing in the starting letters and it will prompt you with "
445
  "Zarezima separatisana lista kategorije. Polje iznad je autokompletno tako da "
446
  "jednostavno samo počnite da kucate ključna slova i pokazaće vam se opcije"
447
 
448
+ #: admin/admin.php:572
449
  msgid "Title of popular posts: "
450
  msgstr "Naslov popularnih postova:"
451
 
452
+ #: admin/admin.php:578
453
  msgid "Title of daily popular posts: "
454
  msgstr "Naslov popularnih dnevnih postova:"
455
 
456
+ #: admin/admin.php:584
457
  msgid "When there are no posts, what should be shown?"
458
  msgstr "Kada nema postova šta da prikažemo?"
459
 
460
+ #: admin/admin.php:588
461
  msgid "Blank Output"
462
  msgstr "Prazan izlaz"
463
 
464
+ #: admin/admin.php:592
465
  msgid "Display:"
466
  msgstr "Prikaz:"
467
 
468
+ #: admin/admin.php:597
469
  msgid "Show post excerpt in list?"
470
  msgstr "Pokaži post izvoda na listi?"
471
 
472
+ #: admin/admin.php:603
473
  msgid "Length of excerpt (in words): "
474
  msgstr "Dužina izvoda (u rečima):"
475
 
476
+ #: admin/admin.php:609
477
  #, fuzzy
478
  msgid "Show post author in list?"
479
  msgstr "Afficher le fragment du message dans la liste?"
480
 
481
+ #: admin/admin.php:615
482
  #, fuzzy
483
  msgid "Show post date in list?"
484
  msgstr "Afficher le fragment du message dans la liste?"
485
 
486
+ #: admin/admin.php:621
487
  msgid "Limit post title length (in characters)"
488
  msgstr "Limit dužine postova naslova (u karakterima)"
489
 
490
+ #: admin/admin.php:627
491
  #, fuzzy
492
  msgid "Show view count in list?"
493
  msgstr "Afficher le fragment du message dans la liste?"
494
 
495
+ #: admin/admin.php:633
496
  #, fuzzy
497
  msgid "Always display latest post count in the daily lists?"
498
  msgstr "Uvek prikaži poslednje brojanje posta u dnevnoj listi"
499
 
500
+ #: admin/admin.php:636
501
  #, fuzzy
502
  msgid ""
503
  "This option uses JavaScript and will increase your page load time. When you "
510
  "widget neće koristiti opcije koje su nameštene tu, ali opcije će morati da "
511
  "se podese na ovom ekranu."
512
 
513
+ #: admin/admin.php:640
514
  msgid "Open links in new window"
515
  msgstr "Otvori linkove u novim prozorima"
516
 
517
+ #: admin/admin.php:646
518
  msgid "Add nofollow attribute to links in the list"
519
  msgstr "Dodaj nofollow atribut linkovima u listi"
520
 
521
+ #: admin/admin.php:652
522
  msgid "Exclude display of related posts on these posts / pages"
523
  msgstr "Isključi pregled vezanih postova na ovim postovima-stranicama"
524
 
525
+ #: admin/admin.php:659
526
  #, fuzzy
527
  msgid "Customise the list HTML"
528
  msgstr "Sredite output:"
529
 
530
+ #: admin/admin.php:662
531
  msgid "HTML to display before the list of posts: "
532
  msgstr "HTML tza prikaz pre liste postova:"
533
 
534
+ #: admin/admin.php:668
535
  msgid "HTML to display before each list item: "
536
  msgstr "HTML za prikaz svake stavke sa liste:"
537
 
538
+ #: admin/admin.php:674
539
  msgid "HTML to display after each list item: "
540
  msgstr "HTML tza prikaz posle svake stavke sa liste:"
541
 
542
+ #: admin/admin.php:680
543
  msgid "HTML to display after the list of posts: "
544
  msgstr "HTML za prikaz posle liste postova:"
545
 
546
+ #: admin/admin.php:721
547
  msgid "Location of post thumbnail:"
548
  msgstr "Lokacija posta thumbnaila:"
549
 
550
+ #: admin/admin.php:725
551
  msgid "Display thumbnails inline with posts, before title"
552
  msgstr "Prikaži thumbnails inline sa postovima pre naslova"
553
 
554
+ #: admin/admin.php:730
555
  msgid "Display thumbnails inline with posts, after title"
556
  msgstr "Prikaži thumbnails inline sa postovima posle naslova"
557
 
558
+ #: admin/admin.php:735
559
  msgid "Display only thumbnails, no text"
560
  msgstr "Prikaži samo thumbnails, bez teksta"
561
 
562
+ #: admin/admin.php:740
563
  msgid "Do not display thumbnails, only text."
564
  msgstr "Ne prikazujte thumbnails, samo tekst"
565
 
566
+ #: admin/admin.php:744
567
  msgid "Thumbnail size:"
568
  msgstr ""
569
 
570
+ #: admin/admin.php:768
571
  msgid "Custom size"
572
  msgstr ""
573
 
574
+ #: admin/admin.php:771
575
  msgid ""
576
  "You can choose from existing image sizes above or create a custom size. If "
577
  "you have chosen Custom size above, then enter the width, height and crop "
578
  "settings below. For best results, use a cropped image."
579
  msgstr ""
580
 
581
+ #: admin/admin.php:772
582
  msgid ""
583
  "If you change the width and/or height below, existing images will not be "
584
  "automatically resized."
585
  msgstr ""
586
 
587
+ #: admin/admin.php:773
588
  #, php-format
589
  msgid ""
590
  "I recommend using <a href='%s' target='_blank'>Force Regenerate Thumbnails</"
592
  "regenerate all image sizes."
593
  msgstr ""
594
 
595
+ #: admin/admin.php:776
596
  msgid "Width of custom thumbnail:"
597
  msgstr ""
598
 
599
+ #: admin/admin.php:781
600
  msgid "Height of custom thumbnail"
601
  msgstr ""
602
 
603
+ #: admin/admin.php:786
604
  msgid "Crop mode:"
605
  msgstr ""
606
 
607
+ #: admin/admin.php:790
608
  msgid ""
609
  "By default, thumbnails will be proportionately cropped. Check this box to "
610
  "hard crop the thumbnails."
611
  msgstr ""
612
 
613
+ #: admin/admin.php:791
614
  #, php-format
615
  msgid "<a href='%s' target='_blank'>Difference between soft and hard crop</a>"
616
  msgstr ""
617
 
618
+ #: admin/admin.php:793
619
  msgid ""
620
  "Since you're using the default styles set under the Custom Styles section, "
621
  "the width and height is fixed at 65px and crop mode is enabled."
622
  msgstr ""
623
 
624
+ #: admin/admin.php:798
625
  msgid "Style attributes / Width and Height HTML attributes:"
626
  msgstr "Stil atributa /širina i visina HTML atributa:"
627
 
628
+ #: admin/admin.php:802
629
  #, fuzzy
630
  msgid "Style attributes are used for width and height."
631
  msgstr ""
632
  "Stilovi atributa su korišćeni za čirinu i visinu. <code>style=\"max-width:"
633
 
634
+ #: admin/admin.php:807
635
  #, fuzzy
636
  msgid "HTML width and height attributes are used for width and height."
637
  msgstr ""
638
  "HTML širina i visina atributa se koristi za širinu i visinu.<code>width=\""
639
 
640
+ #: admin/admin.php:811
641
  msgid "Use timthumb to generate thumbnails? "
642
  msgstr "Upotreba timthumb za generisanja thumbnails?"
643
 
644
+ #: admin/admin.php:814
645
  #, fuzzy
646
  msgid ""
647
  "If checked, <a href=\"http://www.binarymoon.co.uk/projects/timthumb/\" "
650
  "Ak je čekirano, <a href=\"http://www.binarymoon.co.uk/projects/timthumb/"
651
  "\">timthumb</a> će se koristiti za generisanje thumbnails-a"
652
 
653
+ #: admin/admin.php:817
654
  msgid "Quality of thumbnails generated by timthumb:"
655
  msgstr ""
656
 
657
+ #: admin/admin.php:820
658
  msgid ""
659
  "Enter values between 0 and 100 only. 100 is highest quality and the highest "
660
  "file size. Suggested maximum value is 95. Default is 75."
661
  msgstr ""
662
 
663
+ #: admin/admin.php:823
664
  #, fuzzy
665
  msgid "Post thumbnail meta field name: "
666
  msgstr "Options thumbnail des messages:"
667
 
668
+ #: admin/admin.php:826
669
  msgid ""
670
  "The value of this field should contain the image source and is set in the "
671
  "<em>Add New Post</em> screen"
673
  "Vrednost ovog polja bi trebala da sadrži source slike i njne postavke u "
674
  "<em>Add New Post</em> ekranu"
675
 
676
+ #: admin/admin.php:829
677
  #, fuzzy
678
  msgid ""
679
  "If the postmeta is not set, then should the plugin extract the first image "
684
  "première image de la résolution correspondante du fichier est de taille "
685
  "supérieure"
686
 
687
+ #: admin/admin.php:832
688
  #, fuzzy
689
  msgid ""
690
  "This could slow down the loading of your page if the first image in the "
695
  "première image de la résolution correspondante du fichier est de taille "
696
  "supérieure"
697
 
698
+ #: admin/admin.php:835
699
  msgid "Use default thumbnail? "
700
  msgstr "Koristite default thumbnail?"
701
 
702
+ #: admin/admin.php:838
703
  msgid ""
704
  "If checked, when no thumbnail is found, show a default one from the URL "
705
  "below. If not checked and no thumbnail is found, no image will be shown."
707
  "Ako je čekirano, kada nijedna thumnail nije pronadjena prikaži default iz "
708
  "URLa ispod. Ako nije čekirano i nema thumbnaila, slika neće biti prikazana."
709
 
710
+ #: admin/admin.php:841
711
  msgid "Default thumbnail: "
712
  msgstr "Default thumbnail:"
713
 
714
+ #: admin/admin.php:845
715
  msgid ""
716
  "The plugin will first check if the post contains a thumbnail. If it doesn't "
717
  "then it will check the meta field. If this is not available, then it will "
721
  "proveriti meta polje. Ako to nije dopstupno, onda će vam pokazati default "
722
  "sliku kao što je odredjeno iznad"
723
 
724
+ #: admin/admin.php:869
725
  #, fuzzy
726
  msgid "Custom CSS"
727
  msgstr "Custom stilovi"
728
 
729
+ #: admin/admin.php:884
730
  msgid "Use default style included in the plugin?"
731
  msgstr ""
732
 
733
+ #: admin/admin.php:887
734
  msgid ""
735
  "Top 10 includes a default style that makes your popular posts list to look "
736
  "beautiful. Check the box above if you want to use this."
737
  msgstr ""
738
 
739
+ #: admin/admin.php:888
740
  msgid ""
741
  "Enabling this option will turn on the thumbnails and set their width and "
742
  "height to 65px. It will also turn off the display of the author, excerpt and "
743
  "date if already enabled. Disabling this option will not revert any settings."
744
  msgstr ""
745
 
746
+ #: admin/admin.php:889
747
  #, php-format
748
  msgid ""
749
  "You can view the default style at <a href=\"%1$s\" target=\"_blank\">%1$s</a>"
750
  msgstr ""
751
 
752
+ #: admin/admin.php:892
753
  msgid "Custom CSS to add to header:"
754
  msgstr "Custom CSS je dodat header-u"
755
 
756
+ #: admin/admin.php:897
757
  msgid ""
758
  "Do not include <code>style</code> tags. Check out the <a href=\"http://"
759
  "wordpress.org/extend/plugins/top-10/faq/\" target=\"_blank\">FAQ</a> for "
763
  "wordpress.org/extend/plugins/top-10/faq/\" target=\"_blank\">FAQ</a> za "
764
  "dostupne CSS klase za stilizovanje."
765
 
766
+ #: admin/admin.php:917
767
  #, fuzzy
768
  msgid "Default Options"
769
  msgstr "Paramètres de sortie"
770
 
771
+ #: admin/admin.php:917
772
  msgid "Do you want to set options to Default?"
773
  msgstr "Da li želite da postavite opcije na Default?"
774
 
775
+ #: admin/admin.php:941
776
  #, fuzzy
777
  msgid ""
778
  "Over time the Daily Top 10 database grows in size, which reduces the "
784
  "plugina. Čišćenje baze podataka u regularnim intervalima može poboljšati "
785
  "performanse naročito na blogovima sa velikim saobraćajem."
786
 
787
+ #: admin/admin.php:942
788
  #, fuzzy
789
  msgid ""
790
  "Note: When scheduled maintenance is enabled, WordPress will run the cron job "
794
  "kroniranje svaki put kada se poslu promeni raspored (npr. ako promenite "
795
  "postavke ispod) Ovo prouzrokuje dnevne postove tabele za resetovanje."
796
 
797
+ #: admin/admin.php:945
798
  msgid "Enable scheduled maintenance of daily tables:"
799
  msgstr "Omogući raspored održavanja u dnevnim tabelama"
800
 
801
+ #: admin/admin.php:949
802
  msgid "Time to run maintenance"
803
  msgstr "Pokrenuti održavanje"
804
 
805
+ #: admin/admin.php:950
806
  msgid "hrs"
807
  msgstr ""
808
 
809
+ #: admin/admin.php:950
810
  msgid "min"
811
  msgstr ""
812
 
813
+ #: admin/admin.php:952
814
  msgid "How often should the maintenance be run:"
815
  msgstr "Održavanje ne treba često da se pokreće"
816
 
817
+ #: admin/admin.php:956
818
  msgid "Daily"
819
  msgstr "Dnevno"
820
 
821
+ #: admin/admin.php:960
822
  msgid "Weekly"
823
  msgstr "Nedeljno"
824
 
825
+ #: admin/admin.php:964
826
  msgid "Fortnightly"
827
  msgstr "Na dve nedelje"
828
 
829
+ #: admin/admin.php:968
830
  msgid "Monthly"
831
  msgstr "Mesečno"
832
 
833
+ #: admin/admin.php:977
834
  msgid "The cron job has been scheduled. Maintenance will run "
835
  msgstr "Kroniranje je zakazano. Održavanje će se pokrenuti"
836
 
837
+ #: admin/admin.php:982
838
  msgid "The cron job is missing. Please resave this page to add the job"
839
  msgstr ""
840
  "Nedostaje kroniranje. Molim vas ponovo sašuvajte ovu stranicu da biste "
841
  "dodali posao"
842
 
843
+ #: admin/admin.php:987
844
  msgid "Maintenance is turned off"
845
  msgstr "Održavanje je ugašeno"
846
 
847
+ #: admin/admin.php:1001
848
  msgid "Reset count"
849
  msgstr "Resetuj brojanje"
850
 
851
+ #: admin/admin.php:1004
852
  msgid ""
853
  "This cannot be reversed. Make sure that your database has been backed up "
854
  "before proceeding"
856
  "Ovo ne možete da proništite. Proverite da li vam je baza podataka sačuvana u "
857
  "back up-u pre nego što nastavite"
858
 
859
+ #: admin/admin.php:1007
860
  #, fuzzy
861
  msgid "Reset Popular Posts"
862
  msgstr "Postes populaires"
863
 
864
+ #: admin/admin.php:1007
865
  msgid "Are you sure you want to reset the popular posts?"
866
  msgstr "Da li ste sigurni da želite da resetujete popularne postove?"
867
 
868
+ #: admin/admin.php:1008
869
  #, fuzzy
870
  msgid "Reset Daily Popular Posts"
871
  msgstr "Postes populaires journaliers"
872
 
873
+ #: admin/admin.php:1008
874
  msgid "Are you sure you want to reset the daily popular posts?"
875
  msgstr "Da li ste sigurni da želite da resetujete dnevne popularne postove?"
876
 
877
+ #: admin/admin.php:1009
878
  msgid "Clear duplicates"
879
  msgstr "Obrišite duplikate"
880
 
881
+ #: admin/admin.php:1009
882
  msgid "This will delete the duplicate entries in the tables. Proceed?"
883
  msgstr "Ovo će obrisati duple unose u tabelama. Nastaviti?"
884
 
885
+ #: admin/admin.php:1022
886
  msgid "WordPress Multisite: Migrate Top 10 v1.x counts to 2.x"
887
  msgstr ""
888
 
889
+ #: admin/admin.php:1025
890
  msgid ""
891
  "If you've been using Top 10 v1.x on multisite, you would have needed to "
892
  "activate the plugin independently for each site. This would have resulted in "
893
  "two tables being created for each site in the network."
894
  msgstr ""
895
 
896
+ #: admin/admin.php:1026
897
  msgid ""
898
  "Top 10 v2.x onwards uses only a single table to record the count, keeping "
899
  "your database clean. You can use this tool to import the recorded counts "
900
  "from v1.x tables to the new v2.x table format."
901
  msgstr ""
902
 
903
+ #: admin/admin.php:1029
904
  msgid ""
905
  "If you do not see any tables below, then it means that either all data has "
906
  "already been imported or no relevant information has been found."
907
  msgstr ""
908
 
909
+ #: admin/admin.php:1032
910
  msgid ""
911
  "After running the importer, please verify that all the counts have been "
912
  "successfully imported. Only then should you delete any old tables!"
913
  msgstr ""
914
 
915
+ #: admin/admin.php:1066
916
  msgid "Blog ID"
917
  msgstr ""
918
 
919
+ #: admin/admin.php:1069
920
  msgid "Status"
921
  msgstr ""
922
 
923
+ #: admin/admin.php:1072
924
  msgid "Select to import"
925
  msgstr ""
926
 
927
+ #: admin/admin.php:1082
928
  msgid "Blog #"
929
  msgstr ""
930
 
931
+ #: admin/admin.php:1092
932
  msgid "Not imported"
933
  msgstr ""
934
 
935
+ #: admin/admin.php:1096
936
  msgid "Imported"
937
  msgstr ""
938
 
939
+ #: admin/admin.php:1117
940
  msgid "Begin import"
941
  msgstr ""
942
 
943
+ #: admin/admin.php:1118
944
  msgid "Delete selected tables"
945
  msgstr ""
946
 
947
+ #: admin/admin.php:1119
948
  msgid "Delete all imported tables"
949
  msgstr ""
950
 
951
+ #: admin/admin.php:1176 admin/admin.php:1272
952
  msgid "Daily Popular Posts"
953
  msgstr "Dnevni popularni postovi"
954
 
955
+ #: admin/admin.php:1206
956
  msgid "Support the development"
957
  msgstr "Podrška razvoju"
958
 
959
+ #: admin/admin.php:1213
960
  msgid "Donation for Top 10"
961
  msgstr ""
962
 
963
+ #: admin/admin.php:1215
964
  msgid "Enter amount in USD: "
965
  msgstr "Unesite veličinu u USD:"
966
 
967
+ #: admin/admin.php:1219
968
  #, fuzzy
969
  msgid "Send your donation to the author of Top 10"
970
  msgstr "Pošalji vašu donaciju autoru"
971
 
972
+ #: admin/admin.php:1226
973
  #, fuzzy
974
  msgid "Follow me"
975
  msgstr "Pratite nas"
976
 
977
+ #: admin/admin.php:1236
978
  #, fuzzy
979
  msgid "Quick links"
980
  msgstr "Liens rapides"
981
 
982
+ #: admin/admin.php:1240
983
  #, fuzzy
984
  msgid "Top 10 plugin page"
985
  msgstr "Page de plugin"
986
 
987
+ #: admin/admin.php:1241
988
  msgid "Top 10 Github page"
989
  msgstr ""
990
 
991
+ #: admin/admin.php:1242
992
  msgid "Other plugins"
993
  msgstr "Brzi linkovi"
994
 
995
+ #: admin/admin.php:1243
996
  msgid "Ajay's blog"
997
  msgstr "Ajayov blog"
998
 
999
+ #: admin/admin.php:1244
1000
  msgid "FAQ"
1001
  msgstr ""
1002
 
1003
+ #: admin/admin.php:1245 admin/admin.php:1403
1004
  msgid "Support"
1005
  msgstr "Podrška"
1006
 
1007
+ #: admin/admin.php:1246
1008
  msgid "Reviews"
1009
  msgstr ""
1010
 
1011
+ #: admin/admin.php:1269
1012
  #, fuzzy
1013
  msgid "Overall Popular Posts"
1014
  msgstr "Voir tous les postes populaires"
1015
 
1016
+ #: admin/admin.php:1380
1017
  msgid "Settings"
1018
  msgstr "Postavke"
1019
 
1020
+ #: admin/admin.php:1404
1021
  msgid "Donate"
1022
  msgstr "Donirajte"
1023
 
1131
  msgid "No top posts yet"
1132
  msgstr "Annuler le top 10 des enregistrements les plus populaires"
1133
 
1134
+ #: top-10.php:1690
1135
  msgid "Once Weekly"
1136
  msgstr "Jednom nedeljno"
1137
 
1138
+ #: top-10.php:1694
1139
  msgid "Once Fortnightly"
1140
  msgstr "Jednom u dve nedelje"
1141
 
1142
+ #: top-10.php:1698
1143
  msgid "Once Monthly"
1144
  msgstr "Jednom mesečno"
1145
 
1146
+ #: top-10.php:1702
1147
  msgid "Once quarterly"
1148
  msgstr ""
1149
 
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: 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,7 +61,7 @@ msgstr "Попередня сторінка"
61
  msgid "Next"
62
  msgstr "Наступна сторінка"
63
 
64
- #: admin/admin-dashboard.php:200 admin/admin.php:1157
65
  msgid "Popular Posts"
66
  msgstr "Популярні записи"
67
 
@@ -69,155 +69,155 @@ msgstr "Популярні записи"
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
 
76
- #: admin/admin-metabox.php:71
77
  #, fuzzy
78
  msgid "Visit count:"
79
  msgstr "Скинути статистику"
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 "Установки збережені."
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 "
@@ -225,11 +225,37 @@ msgid ""
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,61 +264,61 @@ msgstr ""
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,11 +326,11 @@ msgid ""
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,233 +338,233 @@ msgid ""
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,79 +572,79 @@ msgid ""
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,7 +654,7 @@ msgstr ""
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,21 +664,21 @@ msgstr ""
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,54 +689,54 @@ msgstr ""
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,65 +744,65 @@ msgid ""
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,168 +810,168 @@ msgstr ""
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
 
@@ -1059,19 +1085,19 @@ msgstr "<h3>Популярні сьогодні записи</h3>"
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
 
2
  msgstr ""
3
  "Project-Id-Version: Top 10\n"
4
  "Report-Msgid-Bugs-To: \n"
5
+ "POT-Creation-Date: 2015-01-03 01: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:1174
65
  msgid "Popular Posts"
66
  msgstr "Популярні записи"
67
 
69
  msgid "Daily Popular"
70
  msgstr "Популярні сьогодні записи"
71
 
72
+ #: admin/admin-metabox.php:38 admin/admin.php:1263
73
  msgid "Top 10"
74
  msgstr "Топ 10 записів"
75
 
76
+ #: admin/admin-metabox.php:72
77
  #, fuzzy
78
  msgid "Visit count:"
79
  msgstr "Скинути статистику"
80
 
81
+ #: admin/admin-metabox.php:74
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:84
88
  msgid "Location of thumbnail:"
89
  msgstr ""
90
 
91
+ #: admin/admin-metabox.php:86
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 Top 10 Settings &raquo; Thumbnail options."
96
  msgstr ""
97
 
98
+ #: admin/admin-metabox.php:87
99
  msgid "The URL above is saved in the meta field: "
100
  msgstr ""
101
 
102
+ #: admin/admin.php:163
103
  msgid "Options saved successfully."
104
  msgstr "Установки збережені."
105
 
106
+ #: admin/admin.php:173
107
  msgid "Options set to Default."
108
  msgstr "Установки скинуті."
109
 
110
+ #: admin/admin.php:179
111
  msgid "Top 10 popular posts reset"
112
  msgstr "Скинути статистику найпопулярніших записів"
113
 
114
+ #: admin/admin.php:185
115
  msgid "Top 10 daily popular posts reset"
116
  msgstr "Скинути статистику найпопулярніших записів за сьогодні"
117
 
118
+ #: admin/admin.php:192
119
  msgid "Duplicate rows cleaned from tables"
120
  msgstr ""
121
 
122
+ #: admin/admin.php:204
123
  msgid "Scheduled maintenance enabled / modified"
124
  msgstr ""
125
 
126
+ #: admin/admin.php:208
127
  msgid "Scheduled maintenance disabled"
128
  msgstr ""
129
 
130
+ #: admin/admin.php:247
131
  msgid "Counts from selected sites have been imported."
132
  msgstr ""
133
 
134
+ #: admin/admin.php:272
135
  msgid ""
136
  "Selected tables have been deleted. Note that only imported tables have been "
137
  "deleted."
138
  msgstr ""
139
 
140
+ #: admin/admin.php:280 admin/admin.php:1263 admin/admin.php:1266
141
  #, fuzzy
142
  msgid "Top 10 Settings"
143
  msgstr "Налаштування плагіна"
144
 
145
+ #: admin/admin.php:292 admin/admin.php:314
146
  msgid "General options"
147
  msgstr ""
148
 
149
+ #: admin/admin.php:293 admin/admin.php:406
150
  msgid "Counter and tracker options"
151
  msgstr ""
152
 
153
+ #: admin/admin.php:294 admin/admin.php:511
154
  msgid "Popular post list options"
155
  msgstr ""
156
 
157
+ #: admin/admin.php:295 admin/admin.php:706
158
  #: includes/class-top-10-widget.php:103
159
  #, fuzzy
160
  msgid "Thumbnail options"
161
  msgstr "Установки превью до записів:"
162
 
163
+ #: admin/admin.php:296
164
  msgid "Custom styles"
165
  msgstr ""
166
 
167
+ #: admin/admin.php:297 admin/admin.php:937
168
  msgid "Maintenance"
169
  msgstr ""
170
 
171
+ #: admin/admin.php:313 admin/admin.php:405 admin/admin.php:510
172
+ #: admin/admin.php:705 admin/admin.php:868 admin/admin.php:936
173
+ #: admin/admin.php:1000 admin/admin.php:1021 admin/admin.php:1205
174
+ #: admin/admin.php:1225 admin/admin.php:1235
175
  msgid "Click to toggle"
176
  msgstr ""
177
 
178
+ #: admin/admin.php:330
179
  msgid "Enable Overall stats"
180
  msgstr ""
181
 
182
+ #: admin/admin.php:336
183
  msgid "Enable Daily stats"
184
  msgstr ""
185
 
186
+ #: admin/admin.php:342
187
  msgid "Cache fix:"
188
  msgstr ""
189
 
190
+ #: admin/admin.php:345
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:349
198
  msgid "Start daily counts from midnight:"
199
  msgstr ""
200
 
201
+ #: admin/admin.php:352
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:356
209
  msgid "Daily popular contains top posts over:"
210
  msgstr ""
211
 
212
+ #: admin/admin.php:358
213
  msgid "day(s)"
214
  msgstr ""
215
 
216
+ #: admin/admin.php:359
217
  msgid "hour(s)"
218
  msgstr ""
219
 
220
+ #: admin/admin.php:360
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 "
225
  "overridden in the widget."
226
  msgstr ""
227
 
228
+ #: admin/admin.php:364
229
+ msgid "Delete options on uninstall"
230
+ msgstr ""
231
+
232
+ #: admin/admin.php:367
233
+ msgid ""
234
+ "If this is checked, all settings related to Top 10 are removed from the "
235
+ "database if you choose to uninstall/delete the plugin."
236
+ msgstr ""
237
+
238
+ #: admin/admin.php:371
239
+ msgid "Delete counter data on uninstall"
240
+ msgstr ""
241
+
242
+ #: admin/admin.php:374
243
+ msgid ""
244
+ "If this is checked, the tables containing the counter statistics are removed "
245
+ "from the database if you choose to uninstall/delete the plugin."
246
+ msgstr ""
247
+
248
+ #: admin/admin.php:375
249
+ msgid ""
250
+ "Keep this unchecked if you choose to reinstall the plugin and don't want to "
251
+ "lose your counter data."
252
+ msgstr ""
253
+
254
+ #: admin/admin.php:379
255
  msgid "Link to Top 10 plugin page"
256
  msgstr ""
257
 
258
+ #: admin/admin.php:382
259
  #, fuzzy
260
  msgid ""
261
  "A link to the plugin is added as an extra list item to the list of popular "
264
  "Залишити посилання на плагін під списками Популярних записів? Автор плагіна "
265
  "був би дуже вдячний Вам, якщо Ви її все ж залишите!"
266
 
267
+ #: admin/admin.php:387 admin/admin.php:492 admin/admin.php:687
268
+ #: admin/admin.php:850 admin/admin.php:916 admin/admin.php:993
269
  #, fuzzy
270
  msgid "Save Options"
271
  msgstr "Установки плагіна:"
272
 
273
+ #: admin/admin.php:422
274
  #, fuzzy
275
  msgid "Display number of views on:"
276
  msgstr "Показувати кількість переглядів запису?"
277
 
278
+ #: admin/admin.php:424
279
  msgid "Posts"
280
  msgstr ""
281
 
282
+ #: admin/admin.php:425
283
  #, fuzzy
284
  msgid "Pages"
285
  msgstr "Сторінка"
286
 
287
+ #: admin/admin.php:426
288
  msgid "Home page"
289
  msgstr ""
290
 
291
+ #: admin/admin.php:427
292
  msgid "Feeds"
293
  msgstr ""
294
 
295
+ #: admin/admin.php:428
296
  msgid "Category archives"
297
  msgstr ""
298
 
299
+ #: admin/admin.php:429
300
  msgid "Tag archives"
301
  msgstr ""
302
 
303
+ #: admin/admin.php:430
304
  msgid "Other archives"
305
  msgstr ""
306
 
307
+ #: admin/admin.php:431
308
  msgid ""
309
  "If you choose to disable this, please add <code>&lt;?php if "
310
  "( function_exists ( 'echo_tptn_post_count' ) ) echo_tptn_post_count(); ?&gt;"
311
  "</code> to your template file where you want it displayed"
312
  msgstr ""
313
 
314
+ #: admin/admin.php:435
315
  #, fuzzy
316
  msgid "Format to display the post views:"
317
  msgstr ""
318
  "У полі нижче ви можете налаштувати формат відображення кількості переглядів "
319
  "за день, за весь час для записів/сторінок:"
320
 
321
+ #: admin/admin.php:438
322
  msgid ""
323
  "Use <code>%totalcount%</code> to display the total count, <code>%dailycount"
324
  "%</code> to display the daily count and <code>%overallcount%</code> to "
326
  "options displays <code>[Visited 123 times, 23 visits today]</code>"
327
  msgstr ""
328
 
329
+ #: admin/admin.php:442
330
  msgid "What do display when there are no visits?"
331
  msgstr ""
332
 
333
+ #: admin/admin.php:445
334
  msgid ""
335
  "This text applies only when there are 0 hits for the post and it isn't a "
336
  "single page. e.g. if you display post views on the homepage or archives then "
338
  "option."
339
  msgstr ""
340
 
341
+ #: admin/admin.php:449
342
  msgid "Always display latest post count"
343
  msgstr ""
344
 
345
+ #: admin/admin.php:452
346
  msgid ""
347
  "This option uses JavaScript and will increase your page load time. Turn this "
348
  "off if you are not using caching plugins or are OK with displaying older "
349
  "cached counts."
350
  msgstr ""
351
 
352
+ #: admin/admin.php:456
353
  msgid "Track visits of authors on their own posts?"
354
  msgstr "Враховувати перегляди записів, зроблені їхніми ж авторами?"
355
 
356
+ #: admin/admin.php:459
357
  msgid ""
358
  "Disabling this option will stop authors visits tracked on their own posts"
359
  msgstr ""
360
 
361
+ #: admin/admin.php:463
362
  #, fuzzy
363
  msgid "Track visits of admins?"
364
  msgstr "Враховувати перегляди записів, зроблені їхніми ж авторами?"
365
 
366
+ #: admin/admin.php:466
367
  msgid "Disabling this option will stop admin visits being tracked."
368
  msgstr ""
369
 
370
+ #: admin/admin.php:470
371
  #, fuzzy
372
  msgid "Track visits of Editors?"
373
  msgstr "Враховувати перегляди записів, зроблені їхніми ж авторами?"
374
 
375
+ #: admin/admin.php:473
376
  msgid "Disabling this option will stop editor visits being tracked."
377
  msgstr ""
378
 
379
+ #: admin/admin.php:477
380
  msgid "Display page views on Posts and Pages in Admin"
381
  msgstr ""
382
 
383
+ #: admin/admin.php:480
384
  msgid ""
385
  "Adds three columns called Total Views, Today's Views and Views to All Posts "
386
  "and All Pages"
387
  msgstr ""
388
 
389
+ #: admin/admin.php:484
390
  #, fuzzy
391
  msgid "Show number of views to non-admins"
392
  msgstr "Показувати кількість переглядів сторінки?"
393
 
394
+ #: admin/admin.php:487
395
  msgid ""
396
  "If you disable this then non-admins won't see the above columns or view the "
397
  "independent pages with the top posts"
398
  msgstr ""
399
 
400
+ #: admin/admin.php:527
401
  msgid "Number of popular posts to display: "
402
  msgstr "Кількість Популярних записів у списку:"
403
 
404
+ #: admin/admin.php:530
405
  msgid ""
406
  "Maximum number of posts that will be displayed in the list. This option is "
407
  "used if you don't specify the number of posts in the widget or shortcodes"
408
  msgstr ""
409
 
410
+ #: admin/admin.php:534
411
  msgid "Post types to include in results (including custom post types)"
412
  msgstr ""
413
 
414
+ #: admin/admin.php:546
415
  msgid "List of post or page IDs to exclude from the results: "
416
  msgstr ""
417
 
418
+ #: admin/admin.php:548 admin/admin.php:655
419
  msgid "Enter comma separated list of IDs. e.g. 188,320,500"
420
  msgstr ""
421
 
422
+ #: admin/admin.php:552
423
  msgid "Exclude Categories: "
424
  msgstr "Виключити Категорії:"
425
 
426
+ #: admin/admin.php:567
427
  msgid ""
428
  "Comma separated list of category slugs. The field above has an autocomplete "
429
  "so simply start typing in the starting letters and it will prompt you with "
430
  "options"
431
  msgstr ""
432
 
433
+ #: admin/admin.php:572
434
  msgid "Title of popular posts: "
435
  msgstr "Заголовок списку Популярних записів:"
436
 
437
+ #: admin/admin.php:578
438
  msgid "Title of daily popular posts: "
439
  msgstr "Заголовок списку Популярних сьогодні записів:"
440
 
441
+ #: admin/admin.php:584
442
  msgid "When there are no posts, what should be shown?"
443
  msgstr ""
444
 
445
+ #: admin/admin.php:588
446
  msgid "Blank Output"
447
  msgstr ""
448
 
449
+ #: admin/admin.php:592
450
  msgid "Display:"
451
  msgstr ""
452
 
453
+ #: admin/admin.php:597
454
  msgid "Show post excerpt in list?"
455
  msgstr "Показувати текст запису в списку?"
456
 
457
+ #: admin/admin.php:603
458
  msgid "Length of excerpt (in words): "
459
  msgstr "Довжина виведеного тексту (в словах):"
460
 
461
+ #: admin/admin.php:609
462
  #, fuzzy
463
  msgid "Show post author in list?"
464
  msgstr "Показувати текст запису в списку?"
465
 
466
+ #: admin/admin.php:615
467
  #, fuzzy
468
  msgid "Show post date in list?"
469
  msgstr "Показувати текст запису в списку?"
470
 
471
+ #: admin/admin.php:621
472
  msgid "Limit post title length (in characters)"
473
  msgstr ""
474
 
475
+ #: admin/admin.php:627
476
  #, fuzzy
477
  msgid "Show view count in list?"
478
  msgstr "Показувати текст запису в списку?"
479
 
480
+ #: admin/admin.php:633
481
  msgid "Always display latest post count in the daily lists?"
482
  msgstr ""
483
 
484
+ #: admin/admin.php:636
485
  msgid ""
486
  "This option uses JavaScript and will increase your page load time. When you "
487
  "enable this option, the daily widget will not use the options set there, but "
488
  "options will need to be set on this screen."
489
  msgstr ""
490
 
491
+ #: admin/admin.php:640
492
  msgid "Open links in new window"
493
  msgstr ""
494
 
495
+ #: admin/admin.php:646
496
  msgid "Add nofollow attribute to links in the list"
497
  msgstr ""
498
 
499
+ #: admin/admin.php:652
500
  msgid "Exclude display of related posts on these posts / pages"
501
  msgstr ""
502
 
503
+ #: admin/admin.php:659
504
  #, fuzzy
505
  msgid "Customise the list HTML"
506
  msgstr "Установки оформлення списку:"
507
 
508
+ #: admin/admin.php:662
509
  msgid "HTML to display before the list of posts: "
510
  msgstr "HTML-тег, який використовується перед списком:"
511
 
512
+ #: admin/admin.php:668
513
  msgid "HTML to display before each list item: "
514
  msgstr "HTML-тег, який використовується перед кожним пунктом у списку:"
515
 
516
+ #: admin/admin.php:674
517
  msgid "HTML to display after each list item: "
518
  msgstr "HTML-тег, який використовується після кожного пункту в списку:"
519
 
520
+ #: admin/admin.php:680
521
  msgid "HTML to display after the list of posts: "
522
  msgstr "HTML-тег, який використовується після списку:"
523
 
524
+ #: admin/admin.php:721
525
  msgid "Location of post thumbnail:"
526
  msgstr ""
527
 
528
+ #: admin/admin.php:725
529
  #, fuzzy
530
  msgid "Display thumbnails inline with posts, before title"
531
  msgstr "Відображати і превью, і текст"
532
 
533
+ #: admin/admin.php:730
534
  #, fuzzy
535
  msgid "Display thumbnails inline with posts, after title"
536
  msgstr "Відображати і превью, і текст"
537
 
538
+ #: admin/admin.php:735
539
  msgid "Display only thumbnails, no text"
540
  msgstr "Показувати тільки превью, без тексту"
541
 
542
+ #: admin/admin.php:740
543
  msgid "Do not display thumbnails, only text."
544
  msgstr "Показувати лише текст, без превью"
545
 
546
+ #: admin/admin.php:744
547
  msgid "Thumbnail size:"
548
  msgstr ""
549
 
550
+ #: admin/admin.php:768
551
  msgid "Custom size"
552
  msgstr ""
553
 
554
+ #: admin/admin.php:771
555
  msgid ""
556
  "You can choose from existing image sizes above or create a custom size. If "
557
  "you have chosen Custom size above, then enter the width, height and crop "
558
  "settings below. For best results, use a cropped image."
559
  msgstr ""
560
 
561
+ #: admin/admin.php:772
562
  msgid ""
563
  "If you change the width and/or height below, existing images will not be "
564
  "automatically resized."
565
  msgstr ""
566
 
567
+ #: admin/admin.php:773
568
  #, php-format
569
  msgid ""
570
  "I recommend using <a href='%s' target='_blank'>Force Regenerate Thumbnails</"
572
  "regenerate all image sizes."
573
  msgstr ""
574
 
575
+ #: admin/admin.php:776
576
  msgid "Width of custom thumbnail:"
577
  msgstr ""
578
 
579
+ #: admin/admin.php:781
580
  msgid "Height of custom thumbnail"
581
  msgstr ""
582
 
583
+ #: admin/admin.php:786
584
  msgid "Crop mode:"
585
  msgstr ""
586
 
587
+ #: admin/admin.php:790
588
  msgid ""
589
  "By default, thumbnails will be proportionately cropped. Check this box to "
590
  "hard crop the thumbnails."
591
  msgstr ""
592
 
593
+ #: admin/admin.php:791
594
  #, php-format
595
  msgid "<a href='%s' target='_blank'>Difference between soft and hard crop</a>"
596
  msgstr ""
597
 
598
+ #: admin/admin.php:793
599
  msgid ""
600
  "Since you're using the default styles set under the Custom Styles section, "
601
  "the width and height is fixed at 65px and crop mode is enabled."
602
  msgstr ""
603
 
604
+ #: admin/admin.php:798
605
  msgid "Style attributes / Width and Height HTML attributes:"
606
  msgstr ""
607
 
608
+ #: admin/admin.php:802
609
  msgid "Style attributes are used for width and height."
610
  msgstr ""
611
 
612
+ #: admin/admin.php:807
613
  msgid "HTML width and height attributes are used for width and height."
614
  msgstr ""
615
 
616
+ #: admin/admin.php:811
617
  msgid "Use timthumb to generate thumbnails? "
618
  msgstr ""
619
 
620
+ #: admin/admin.php:814
621
  msgid ""
622
  "If checked, <a href=\"http://www.binarymoon.co.uk/projects/timthumb/\" "
623
  "target=\"_blank\">timthumb</a> will be used to generate thumbnails"
624
  msgstr ""
625
 
626
+ #: admin/admin.php:817
627
  msgid "Quality of thumbnails generated by timthumb:"
628
  msgstr ""
629
 
630
+ #: admin/admin.php:820
631
  msgid ""
632
  "Enter values between 0 and 100 only. 100 is highest quality and the highest "
633
  "file size. Suggested maximum value is 95. Default is 75."
634
  msgstr ""
635
 
636
+ #: admin/admin.php:823
637
  #, fuzzy
638
  msgid "Post thumbnail meta field name: "
639
  msgstr "Установки превью до записів:"
640
 
641
+ #: admin/admin.php:826
642
  msgid ""
643
  "The value of this field should contain the image source and is set in the "
644
  "<em>Add New Post</em> screen"
645
  msgstr ""
646
 
647
+ #: admin/admin.php:829
648
  #, fuzzy
649
  msgid ""
650
  "If the postmeta is not set, then should the plugin extract the first image "
654
  "зображення із запису. Це може злегка збільшити завантаження в перший раз, "
655
  "так як буде створюватися зменшена копія зображення"
656
 
657
+ #: admin/admin.php:832
658
  #, fuzzy
659
  msgid ""
660
  "This could slow down the loading of your page if the first image in the "
664
  "зображення із запису. Це може злегка збільшити завантаження в перший раз, "
665
  "так як буде створюватися зменшена копія зображення"
666
 
667
+ #: admin/admin.php:835
668
  msgid "Use default thumbnail? "
669
  msgstr ""
670
 
671
+ #: admin/admin.php:838
672
  msgid ""
673
  "If checked, when no thumbnail is found, show a default one from the URL "
674
  "below. If not checked and no thumbnail is found, no image will be shown."
675
  msgstr ""
676
 
677
+ #: admin/admin.php:841
678
  msgid "Default thumbnail: "
679
  msgstr ""
680
 
681
+ #: admin/admin.php:845
682
  #, fuzzy
683
  msgid ""
684
  "The plugin will first check if the post contains a thumbnail. If it doesn't "
689
  "заданому раніше мета-полю). Якщо ж превью нема - буде виводитися картинка за "
690
  "замовчунням:"
691
 
692
+ #: admin/admin.php:869
693
  msgid "Custom CSS"
694
  msgstr ""
695
 
696
+ #: admin/admin.php:884
697
  msgid "Use default style included in the plugin?"
698
  msgstr ""
699
 
700
+ #: admin/admin.php:887
701
  msgid ""
702
  "Top 10 includes a default style that makes your popular posts list to look "
703
  "beautiful. Check the box above if you want to use this."
704
  msgstr ""
705
 
706
+ #: admin/admin.php:888
707
  msgid ""
708
  "Enabling this option will turn on the thumbnails and set their width and "
709
  "height to 65px. It will also turn off the display of the author, excerpt and "
710
  "date if already enabled. Disabling this option will not revert any settings."
711
  msgstr ""
712
 
713
+ #: admin/admin.php:889
714
  #, php-format
715
  msgid ""
716
  "You can view the default style at <a href=\"%1$s\" target=\"_blank\">%1$s</a>"
717
  msgstr ""
718
 
719
+ #: admin/admin.php:892
720
  msgid "Custom CSS to add to header:"
721
  msgstr ""
722
 
723
+ #: admin/admin.php:897
724
  msgid ""
725
  "Do not include <code>style</code> tags. Check out the <a href=\"http://"
726
  "wordpress.org/extend/plugins/top-10/faq/\" target=\"_blank\">FAQ</a> for "
727
  "available CSS classes to style."
728
  msgstr ""
729
 
730
+ #: admin/admin.php:917
731
  #, fuzzy
732
  msgid "Default Options"
733
  msgstr "Установки плагіна:"
734
 
735
+ #: admin/admin.php:917
736
  msgid "Do you want to set options to Default?"
737
  msgstr "Скинути налаштування плагіна?"
738
 
739
+ #: admin/admin.php:941
740
  msgid ""
741
  "Over time the Daily Top 10 database grows in size, which reduces the "
742
  "performance of the plugin. Cleaning the database at regular intervals could "
744
  "will automatically delete entries older than 90 days."
745
  msgstr ""
746
 
747
+ #: admin/admin.php:942
748
  msgid ""
749
  "Note: When scheduled maintenance is enabled, WordPress will run the cron job "
750
  "everytime the job is rescheduled (i.e. you change the settings below)."
751
  msgstr ""
752
 
753
+ #: admin/admin.php:945
754
  msgid "Enable scheduled maintenance of daily tables:"
755
  msgstr ""
756
 
757
+ #: admin/admin.php:949
758
  msgid "Time to run maintenance"
759
  msgstr ""
760
 
761
+ #: admin/admin.php:950
762
  msgid "hrs"
763
  msgstr ""
764
 
765
+ #: admin/admin.php:950
766
  msgid "min"
767
  msgstr ""
768
 
769
+ #: admin/admin.php:952
770
  msgid "How often should the maintenance be run:"
771
  msgstr ""
772
 
773
+ #: admin/admin.php:956
774
  msgid "Daily"
775
  msgstr ""
776
 
777
+ #: admin/admin.php:960
778
  msgid "Weekly"
779
  msgstr ""
780
 
781
+ #: admin/admin.php:964
782
  msgid "Fortnightly"
783
  msgstr ""
784
 
785
+ #: admin/admin.php:968
786
  msgid "Monthly"
787
  msgstr ""
788
 
789
+ #: admin/admin.php:977
790
  msgid "The cron job has been scheduled. Maintenance will run "
791
  msgstr ""
792
 
793
+ #: admin/admin.php:982
794
  msgid "The cron job is missing. Please resave this page to add the job"
795
  msgstr ""
796
 
797
+ #: admin/admin.php:987
798
  msgid "Maintenance is turned off"
799
  msgstr ""
800
 
801
+ #: admin/admin.php:1001
802
  msgid "Reset count"
803
  msgstr "Скинути статистику"
804
 
805
+ #: admin/admin.php:1004
806
  msgid ""
807
  "This cannot be reversed. Make sure that your database has been backed up "
808
  "before proceeding"
810
  "Скидання статистики не може бути обернена. Перед тим, як скидати все, "
811
  "переконайтесь, що у вас є копія вашої бази даних!"
812
 
813
+ #: admin/admin.php:1007
814
  #, fuzzy
815
  msgid "Reset Popular Posts"
816
  msgstr "Популярні записи"
817
 
818
+ #: admin/admin.php:1007
819
  msgid "Are you sure you want to reset the popular posts?"
820
  msgstr "Ви впевнені, що хочете скинути статистику для Популярних записів?"
821
 
822
+ #: admin/admin.php:1008
823
  #, fuzzy
824
  msgid "Reset Daily Popular Posts"
825
  msgstr "Популярні сьогодні записи"
826
 
827
+ #: admin/admin.php:1008
828
  msgid "Are you sure you want to reset the daily popular posts?"
829
  msgstr ""
830
  "Ви впевнені, що хочете скинути статистику для Популярних сьогодні записів?"
831
 
832
+ #: admin/admin.php:1009
833
  msgid "Clear duplicates"
834
  msgstr ""
835
 
836
+ #: admin/admin.php:1009
837
  msgid "This will delete the duplicate entries in the tables. Proceed?"
838
  msgstr "Буде проведено видалення дубльованих запісів з статистики. Продовжити?"
839
 
840
+ #: admin/admin.php:1022
841
  msgid "WordPress Multisite: Migrate Top 10 v1.x counts to 2.x"
842
  msgstr ""
843
 
844
+ #: admin/admin.php:1025
845
  msgid ""
846
  "If you've been using Top 10 v1.x on multisite, you would have needed to "
847
  "activate the plugin independently for each site. This would have resulted in "
848
  "two tables being created for each site in the network."
849
  msgstr ""
850
 
851
+ #: admin/admin.php:1026
852
  msgid ""
853
  "Top 10 v2.x onwards uses only a single table to record the count, keeping "
854
  "your database clean. You can use this tool to import the recorded counts "
855
  "from v1.x tables to the new v2.x table format."
856
  msgstr ""
857
 
858
+ #: admin/admin.php:1029
859
  msgid ""
860
  "If you do not see any tables below, then it means that either all data has "
861
  "already been imported or no relevant information has been found."
862
  msgstr ""
863
 
864
+ #: admin/admin.php:1032
865
  msgid ""
866
  "After running the importer, please verify that all the counts have been "
867
  "successfully imported. Only then should you delete any old tables!"
868
  msgstr ""
869
 
870
+ #: admin/admin.php:1066
871
  msgid "Blog ID"
872
  msgstr ""
873
 
874
+ #: admin/admin.php:1069
875
  msgid "Status"
876
  msgstr ""
877
 
878
+ #: admin/admin.php:1072
879
  msgid "Select to import"
880
  msgstr ""
881
 
882
+ #: admin/admin.php:1082
883
  msgid "Blog #"
884
  msgstr ""
885
 
886
+ #: admin/admin.php:1092
887
  msgid "Not imported"
888
  msgstr ""
889
 
890
+ #: admin/admin.php:1096
891
  msgid "Imported"
892
  msgstr ""
893
 
894
+ #: admin/admin.php:1117
895
  msgid "Begin import"
896
  msgstr ""
897
 
898
+ #: admin/admin.php:1118
899
  msgid "Delete selected tables"
900
  msgstr ""
901
 
902
+ #: admin/admin.php:1119
903
  msgid "Delete all imported tables"
904
  msgstr ""
905
 
906
+ #: admin/admin.php:1176 admin/admin.php:1272
907
  msgid "Daily Popular Posts"
908
  msgstr "Популярні сьогодні записи"
909
 
910
+ #: admin/admin.php:1206
911
  msgid "Support the development"
912
  msgstr "Підтримати автора плагіна"
913
 
914
+ #: admin/admin.php:1213
915
  msgid "Donation for Top 10"
916
  msgstr ""
917
 
918
+ #: admin/admin.php:1215
919
  msgid "Enter amount in USD: "
920
  msgstr "Скільки ви готові пожертвувати (в USD):"
921
 
922
+ #: admin/admin.php:1219
923
  #, fuzzy
924
  msgid "Send your donation to the author of Top 10"
925
  msgstr "Відправте пожертву автору"
926
 
927
+ #: admin/admin.php:1226
928
  msgid "Follow me"
929
  msgstr ""
930
 
931
+ #: admin/admin.php:1236
932
  #, fuzzy
933
  msgid "Quick links"
934
  msgstr "Корисні посилання"
935
 
936
+ #: admin/admin.php:1240
937
  #, fuzzy
938
  msgid "Top 10 plugin page"
939
  msgstr "Сторінка плагіна"
940
 
941
+ #: admin/admin.php:1241
942
  msgid "Top 10 Github page"
943
  msgstr ""
944
 
945
+ #: admin/admin.php:1242
946
  msgid "Other plugins"
947
  msgstr "Інші плагіни автора"
948
 
949
+ #: admin/admin.php:1243
950
  msgid "Ajay's blog"
951
  msgstr "Блог Ajay"
952
 
953
+ #: admin/admin.php:1244
954
  msgid "FAQ"
955
  msgstr ""
956
 
957
+ #: admin/admin.php:1245 admin/admin.php:1403
958
  msgid "Support"
959
  msgstr "Підтримка (англ.)"
960
 
961
+ #: admin/admin.php:1246
962
  msgid "Reviews"
963
  msgstr ""
964
 
965
+ #: admin/admin.php:1269
966
  #, fuzzy
967
  msgid "Overall Popular Posts"
968
  msgstr "Подивитися всі Популярні записи"
969
 
970
+ #: admin/admin.php:1380
971
  msgid "Settings"
972
  msgstr "Налаштування плагіна"
973
 
974
+ #: admin/admin.php:1404
975
  msgid "Donate"
976
  msgstr "Зробити внесок"
977
 
1085
  msgid "No top posts yet"
1086
  msgstr "Скинути статистику найпопулярніших записів"
1087
 
1088
+ #: top-10.php:1690
1089
  msgid "Once Weekly"
1090
  msgstr ""
1091
 
1092
+ #: top-10.php:1694
1093
  msgid "Once Fortnightly"
1094
  msgstr ""
1095
 
1096
+ #: top-10.php:1698
1097
  msgid "Once Monthly"
1098
  msgstr ""
1099
 
1100
+ #: top-10.php:1702
1101
  msgid "Once quarterly"
1102
  msgstr ""
1103
 
readme.txt CHANGED
@@ -55,12 +55,18 @@ If you're looking for a plugin to display related, look no further than my other
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
55
 
56
  == Upgrade Notice ==
57
 
58
+ = 2.0.3 =
59
+ * Fixed: Metabox update did not work properly in v2.0; New option to keep data on uninstall.
60
 
61
 
62
  == Changelog ==
63
 
64
+ = 2.0.3 =
65
+ * New: Options to choose if you want to delete the Top 10 options and/or data when deleting the plugin
66
+ * Fixed: Metabox update did not work properly in v2.0
67
+ * Fixed: Duplicate include files
68
+ * Modified: In the mySQL tables, the blog_id default value is set to 1
69
+
70
  = 2.0.2 =
71
  * 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
72
  * 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
top-10-addcount.js.php DELETED
@@ -1,57 +0,0 @@
1
- <?php
2
- /**
3
- * Add count to database.
4
- *
5
- * @package Top_Ten
6
- * @author Ajay D'Souza <me@ajaydsouza.com>
7
- * @license GPL-2.0+
8
- * @link http://ajaydsouza.com
9
- * @copyright 2008-2014 Ajay D'Souza
10
- */
11
- Header( "content-type: application/x-javascript" );
12
-
13
- // Force a short-init since we just need core WP, not the entire framework stack
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
21
- if ( ! file_exists( $wp_config_path . $wp_config_filename ) ) {
22
- // Just in case the user may have placed wp-config.php one more level up from the root
23
- $wp_config_filename = dirname( $wp_config_path ) . $wp_config_filename;
24
- }
25
- // Require the wp-config.php file
26
- require( $wp_config_filename );
27
-
28
- // Include the now instantiated global $wpdb Class for use
29
- global $wpdb;
30
-
31
-
32
- // Ajax Increment Counter
33
- tptn_inc_count();
34
- function tptn_inc_count() {
35
- global $wpdb;
36
- $table_name = $wpdb->prefix . "top_ten";
37
- $top_ten_daily = $wpdb->prefix . "top_ten_daily";
38
- $str = '';
39
-
40
- $id = intval( $_GET['top_ten_id'] );
41
- $activate_counter = intval( $_GET['activate_counter'] );
42
- if ( $id > 0 ) {
43
- if ( ( 1 == $activate_counter ) || ( 11 == $activate_counter ) ) {
44
- $tt = $wpdb->query( $wpdb->prepare( "INSERT INTO {$table_name} (postnumber, cntaccess) VALUES('%d', '1') ON DUPLICATE KEY UPDATE cntaccess= cntaccess+1 ", $id ) );
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;
52
- }
53
- }
54
- echo '<!-- ' . $str . ' -->';
55
- }
56
-
57
- ?>
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
top-10-counter.js.php DELETED
@@ -1,43 +0,0 @@
1
- <?php
2
- /**
3
- * Display number of page views.
4
- *
5
- * @package Top_Ten
6
- * @author Ajay D'Souza <me@ajaydsouza.com>
7
- * @license GPL-2.0+
8
- * @link http://ajaydsouza.com
9
- * @copyright 2008-2014 Ajay D'Souza
10
- */
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
18
- if ( ! file_exists( $wp_config_path . $wp_config_filename ) ) {
19
- // Just in case the user may have placed wp-config.php one more level up from the root
20
- $wp_config_filename = dirname( $wp_config_path ) . $wp_config_filename;
21
- }
22
- // Require the wp-config.php file
23
- require( $wp_config_filename );
24
-
25
- // Include the now instantiated global $wpdb Class for use
26
- global $wpdb;
27
-
28
- $id = intval( $_GET['top_ten_id'] );
29
-
30
- // Display counter using Ajax
31
- function tptn_disp_count() {
32
- global $wpdb;
33
-
34
- $id = intval( $_GET['top_ten_id'] );
35
- if ( $id > 0 ) {
36
-
37
- $output = get_tptn_post_count( $id );
38
-
39
- echo 'document.write("' . $output . '")';
40
- }
41
- }
42
- tptn_disp_count();
43
- ?>
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
top-10-daily.js.php DELETED
@@ -1,37 +0,0 @@
1
- <?php
2
- /**
3
- * Display the daily popular lists.
4
- *
5
- * @package Top_Ten
6
- * @author Ajay D'Souza <me@ajaydsouza.com>
7
- * @license GPL-2.0+
8
- * @link http://ajaydsouza.com
9
- * @copyright 2008-2014 Ajay D'Souza
10
- */
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 {
18
- require_once( $wp_root . '/wp-config.php' );
19
- }
20
- }
21
-
22
- // Display Top 10 Daily list
23
- function tptn_daily_lists() {
24
- global $wpdb, $id;
25
-
26
- $is_widget = intval( $_GET['is_widget'] );
27
-
28
- if ( $is_widget ) {
29
- $output = tptn_pop_posts( 'daily=1&is_widget=1' );
30
- } else {
31
- $output = tptn_pop_posts( 'daily=1&is_widget=0' );
32
- }
33
-
34
- echo "document.write('" . $output . "')";
35
- }
36
- tptn_daily_lists();
37
- ?>
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
top-10.php CHANGED
@@ -8,13 +8,13 @@
8
  * @author Ajay D'Souza <me@ajaydsouza.com>
9
  * @license GPL-2.0+
10
  * @link http://ajaydsouza.com
11
- * @copyright 2008-2014 Ajay D'Souza
12
  *
13
  * @wordpress-plugin
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
@@ -74,7 +74,7 @@ $tptn_url = plugins_url() . '/' . plugin_basename( dirname( __FILE__ ) );
74
  * @var string
75
  */
76
  global $tptn_db_version;
77
- $tptn_db_version = "4.0";
78
 
79
 
80
  /**
@@ -1049,6 +1049,8 @@ function tptn_default_options() {
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 */
@@ -1264,17 +1266,29 @@ function tptn_single_activate() {
1264
 
1265
  $wpdb->hide_errors();
1266
 
1267
- $wpdb->query( "ALTER TABLE " . $table_name . " MODIFY postnumber bigint(20) " );
1268
- $wpdb->query( "ALTER TABLE " . $table_name_daily . " MODIFY postnumber bigint(20) " );
1269
- $wpdb->query( "ALTER TABLE " . $table_name . " MODIFY cntaccess bigint(20) " );
1270
- $wpdb->query( "ALTER TABLE " . $table_name_daily . " MODIFY cntaccess bigint(20) " );
1271
- $wpdb->query( "ALTER TABLE " . $table_name_daily . " MODIFY dp_date DATETIME " );
1272
- $wpdb->query( "ALTER TABLE " . $table_name . " DROP PRIMARY KEY, ADD PRIMARY KEY(postnumber, blog_id) " );
1273
- $wpdb->query( "ALTER TABLE " . $table_name_daily . " DROP PRIMARY KEY, ADD PRIMARY KEY(postnumber, dp_date, blog_id) " );
1274
- $wpdb->query( "ALTER TABLE " . $table_name . " ADD blog_id bigint(20) NOT NULL " );
1275
- $wpdb->query( "ALTER TABLE " . $table_name_daily . " ADD blog_id bigint(20) NOT NULL " );
1276
- $wpdb->query( "UPDATE " . $table_name . " SET blog_id = 1 WHERE blog_id = 0 " );
1277
- $wpdb->query( "UPDATE " . $table_name_daily . " SET blog_id = 1 WHERE blog_id = 0 " );
 
 
 
 
 
 
 
 
 
 
 
 
1278
 
1279
  $wpdb->show_errors();
1280
 
8
  * @author Ajay D'Souza <me@ajaydsouza.com>
9
  * @license GPL-2.0+
10
  * @link http://ajaydsouza.com
11
+ * @copyright 2008-2015 Ajay D'Souza
12
  *
13
  * @wordpress-plugin
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.3
18
  * Author: Ajay D'Souza
19
  * Author URI: http://ajaydsouza.com
20
  * Text Domain: tptn
74
  * @var string
75
  */
76
  global $tptn_db_version;
77
+ $tptn_db_version = "5.0";
78
 
79
 
80
  /**
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
+ 'uninstall_clean_options' => true, // Cleanup options
1053
+ 'uninstall_clean_tables' => false, // Cleanup tables
1054
  'show_credit' => false, // Add link to plugin page of my blog in top posts list
1055
 
1056
  /* Counter and tracker options */
1266
 
1267
  $wpdb->hide_errors();
1268
 
1269
+ switch ( $installed_ver ) {
1270
+
1271
+ case '4.0':
1272
+ case 4.0:
1273
+ $wpdb->query( "ALTER TABLE " . $table_name . " CHANGE blog_id blog_id bigint(20) NOT NULL DEFAULT '1'" );
1274
+ $wpdb->query( "ALTER TABLE " . $table_name_daily . " CHANGE blog_id blog_id bigint(20) NOT NULL DEFAULT '1'" );
1275
+ break;
1276
+
1277
+ default:
1278
+
1279
+ $wpdb->query( "ALTER TABLE " . $table_name . " MODIFY postnumber bigint(20) " );
1280
+ $wpdb->query( "ALTER TABLE " . $table_name_daily . " MODIFY postnumber bigint(20) " );
1281
+ $wpdb->query( "ALTER TABLE " . $table_name . " MODIFY cntaccess bigint(20) " );
1282
+ $wpdb->query( "ALTER TABLE " . $table_name_daily . " MODIFY cntaccess bigint(20) " );
1283
+ $wpdb->query( "ALTER TABLE " . $table_name_daily . " MODIFY dp_date DATETIME " );
1284
+ $wpdb->query( "ALTER TABLE " . $table_name . " DROP PRIMARY KEY, ADD PRIMARY KEY(postnumber, blog_id) " );
1285
+ $wpdb->query( "ALTER TABLE " . $table_name_daily . " DROP PRIMARY KEY, ADD PRIMARY KEY(postnumber, dp_date, blog_id) " );
1286
+ $wpdb->query( "ALTER TABLE " . $table_name . " ADD blog_id bigint(20) NOT NULL DEFAULT '1'" );
1287
+ $wpdb->query( "ALTER TABLE " . $table_name_daily . " ADD blog_id bigint(20) NOT NULL DEFAULT '1'" );
1288
+ $wpdb->query( "UPDATE " . $table_name . " SET blog_id = 1 WHERE blog_id = 0 " );
1289
+ $wpdb->query( "UPDATE " . $table_name_daily . " SET blog_id = 1 WHERE blog_id = 0 " );
1290
+
1291
+ }
1292
 
1293
  $wpdb->show_errors();
1294
 
uninstall.php CHANGED
@@ -1,16 +1,38 @@
1
  <?php
2
- if ( !defined('ABSPATH') && !defined('WP_UNINSTALL_PLUGIN') ) {
3
- exit();
 
 
 
 
 
 
 
 
 
 
4
  }
 
5
  global $wpdb;
6
- $table_name = $wpdb->prefix . "top_ten";
7
- $table_name_daily = $wpdb->prefix . $table_name."_daily";
8
-
9
- $sql = "DROP TABLE $table_name";
10
- $wpdb->query($sql);
11
- $sql = "DROP TABLE $table_name_daily";
12
- $wpdb->query($sql);
13
- if (wp_next_scheduled('ald_tptn_hook')) wp_clear_scheduled_hook('ald_tptn_hook');
14
- delete_option('ald_tptn_settings');
15
- delete_option('tptn_db_version');
 
 
 
 
 
 
 
 
 
 
 
16
  ?>
1
  <?php
2
+ /**
3
+ * Update counts to database.
4
+ *
5
+ * @package Top_Ten
6
+ * @author Ajay D'Souza <me@ajaydsouza.com>
7
+ * @license GPL-2.0+
8
+ * @link http://ajaydsouza.com
9
+ * @copyright 2008-2015 Ajay D'Souza
10
+ */
11
+ // If this file is called directly, abort.
12
+ if ( ! defined( 'WPINC' ) ) {
13
+ die;
14
  }
15
+
16
  global $wpdb;
17
+
18
+ $tptn_settings = get_option( 'ald_tptn_settings' );
19
+
20
+ if ( true == $tptn_settings['uninstall_clean_tables'] ) {
21
+
22
+ $table_name = $wpdb->base_prefix . "top_ten";
23
+ $table_name_daily = $wpdb->base_prefix . "top_ten_daily";
24
+
25
+ $wpdb->query( "DROP TABLE $table_name" );
26
+ $wpdb->query( "DROP TABLE $table_name_daily" );
27
+ delete_option( 'tptn_db_version' );
28
+
29
+ }
30
+
31
+ if ( true == $tptn_settings['uninstall_clean_options'] ) {
32
+
33
+ if ( wp_next_scheduled('ald_tptn_hook') ) {
34
+ wp_clear_scheduled_hook('ald_tptn_hook');
35
+ }
36
+ delete_option( 'ald_tptn_settings' );
37
+ }
38
  ?>