Business Directory Plugin - Version 5.5.4

Version Description

Download this release

Release Info

Developer businessdirectoryplugin
Plugin Icon 128x128 Business Directory Plugin
Version 5.5.4
Comparing to
See all releases

Code changes from version 5.5.3 to 5.5.4

README.TXT CHANGED
@@ -5,8 +5,8 @@ Tags: business directory, listings, directory plugin, company business directory
5
  Requires at least: 4.6
6
  Requires PHP: 5.6
7
  Tested up to: 5.1
8
- Last Updated: 2019-Mar-20
9
- Stable tag: 5.5.3
10
  License: GPLv2 or later
11
 
12
  Build any kind of local directory, directory of business providers, a Yellow-Pages business directory, Yelp-like review directory, property listings and much more! Make your listings sing with Business Directory Plugin.
@@ -104,6 +104,7 @@ Business Directory fully supports [WPML](http://wpml.org) for dynamic language s
104
  * French
105
  * German
106
  * Russian
 
107
  * Polish
108
  * Arabic
109
  * Swedish
@@ -144,6 +145,17 @@ If you are having problems please visit [support forum](http://www.businessdirec
144
 
145
 
146
  == Changelog ==
 
 
 
 
 
 
 
 
 
 
 
147
  = Version 5.5.3 =
148
  * Modify URL validator to improve URL filtering.
149
  * Upgrade Select2 version to 4.0.5.
5
  Requires at least: 4.6
6
  Requires PHP: 5.6
7
  Tested up to: 5.1
8
+ Last Updated: 2019-Apr-23
9
+ Stable tag: 5.5.4
10
  License: GPLv2 or later
11
 
12
  Build any kind of local directory, directory of business providers, a Yellow-Pages business directory, Yelp-like review directory, property listings and much more! Make your listings sing with Business Directory Plugin.
104
  * French
105
  * German
106
  * Russian
107
+ * Italian
108
  * Polish
109
  * Arabic
110
  * Swedish
145
 
146
 
147
  == Changelog ==
148
+ = Version 5.5.4 =
149
+ * Include Italian translations for Core Plugin.
150
+ * Split listing search query to prevent long queries fails and improve search speed.
151
+ * Fix regions CSV import parent regions association.
152
+ * Prevent social-text or social-icons inputs been rendered depending on social field settings.
153
+ * Change URL field value for empty input text.
154
+ * Fix empty values validation for select form fields.
155
+ * Display directory view under listing delete notice.
156
+ * Filter empty address fields in payment payer address.
157
+ * Include "Thank you for payment message" in submit confirmation page.
158
+
159
  = Version 5.5.3 =
160
  * Modify URL validator to improve URL filtering.
161
  * Upgrade Select2 version to 4.0.5.
business-directory-plugin.php CHANGED
@@ -3,7 +3,7 @@
3
  * Plugin Name: Business Directory Plugin
4
  * Plugin URI: https://www.businessdirectoryplugin.com
5
  * Description: Provides the ability to maintain a free or paid business directory on your WordPress powered site.
6
- * Version: 5.5.3
7
  * Author: D. Rodenbaugh
8
  * Author URI: https://businessdirectoryplugin.com
9
  * Text Domain: WPBDM
3
  * Plugin Name: Business Directory Plugin
4
  * Plugin URI: https://www.businessdirectoryplugin.com
5
  * Description: Provides the ability to maintain a free or paid business directory on your WordPress powered site.
6
+ * Version: 5.5.4
7
  * Author: D. Rodenbaugh
8
  * Author URI: https://businessdirectoryplugin.com
9
  * Text Domain: WPBDM
includes/class-fee-plan.php CHANGED
@@ -333,7 +333,7 @@ final class WPBDP__Fee_Plan {
333
 
334
  $error_message = _x( 'To set this fee as "Recurring" you must set a price for your fee plan. To avoid issues with the listing, please edit the <a>fee plan</a> appropriately.', 'fees-api', 'WPBDM' );
335
 
336
- if ( 'flat' === $this->pricing_model && 0 === $this->amount ) {
337
  $errors[] = str_replace( '<a>', '<a href="#wpbdp-fee-form-fee-price">', $error_message );
338
  }
339
 
333
 
334
  $error_message = _x( 'To set this fee as "Recurring" you must set a price for your fee plan. To avoid issues with the listing, please edit the <a>fee plan</a> appropriately.', 'fees-api', 'WPBDM' );
335
 
336
+ if ( 'flat' === $this->pricing_model && 0 == $this->amount ) {
337
  $errors[] = str_replace( '<a>', '<a href="#wpbdp-fee-form-fee-price">', $error_message );
338
  }
339
 
includes/class-listing.php CHANGED
@@ -54,7 +54,10 @@ class WPBDP_Listing {
54
  }
55
 
56
  if ( $result && $sorted ) {
57
- uasort( $result, create_function( '$x, $y', "return \$y->weight - \$x->weight;" ) );
 
 
 
58
  }
59
 
60
  return $result;
54
  }
55
 
56
  if ( $result && $sorted ) {
57
+ uasort( $result, function( $x, $y ) {
58
+ return $y->weight - $x->weight;
59
+ }
60
+ );
61
  }
62
 
63
  return $result;
includes/class-payment.php CHANGED
@@ -1,5 +1,15 @@
1
  <?php
 
 
 
2
 
 
 
 
 
 
 
 
3
  class WPBDP_Payment extends WPBDP__DB__Model {
4
 
5
  static $serialized = array( 'payment_items', 'payer_data', 'data' );
@@ -8,14 +18,14 @@ class WPBDP_Payment extends WPBDP__DB__Model {
8
 
9
  protected function get_defaults() {
10
  return array(
11
- 'parent_id' => 0,
12
  'payment_items' => array(),
13
- 'payer_data' => array(),
14
- 'gateway_data' => array(),
15
- 'status' => 'pending',
16
  'currency_code' => wpbdp_get_option( 'currency', 'USD' ),
17
- 'amount' => 0.0,
18
- 'data' => array()
19
  );
20
  }
21
 
@@ -33,36 +43,45 @@ class WPBDP_Payment extends WPBDP__DB__Model {
33
  }
34
 
35
  protected function before_save( $new = false ) {
36
- if ( ! $this->payment_key )
37
  $this->payment_key = strtolower( sha1( $this->listing_id . date( 'Y-m-d H:i:s' ) . ( defined( 'AUTH_KEY' ) ? AUTH_KEY : '' ) . uniqid( 'wpbdp', true ) ) );
 
38
 
39
  $this->amount = 0.0;
40
 
41
- foreach ( $this->payment_items as $item )
42
  $this->amount += floatval( $item['amount'] );
 
43
 
44
- if ( 0.0 == $this->amount && ! $this->has_item_type( 'recurring_plan' ) )
45
  $this->status = 'completed';
 
46
  }
47
 
48
  protected function after_save( $new = false ) {
49
  if ( $new ) {
50
- wpbdp_insert_log( array(
51
- 'log_type' => 'listing.payment',
52
- 'object_id' => $this->listing_id,
53
- 'rel_object_id' => $this->id
54
- ) );
 
 
55
  }
56
 
57
- if ( ! $this->old_status || ! $this->status )
58
  return;
 
59
 
60
  if ( $this->old_status != $this->status ) {
61
- wpbdp_insert_log( array(
62
- 'log_type' => 'payment.status_change',
63
- 'actor' => is_admin() ? 'user:' . get_current_user_id() : 'system',
64
- 'object_id' => $this->id,
65
- 'message' => sprintf( _x( 'Payment status changed from "%s" to "%s".', 'payment', 'WPBDM' ), $this->old_status, $this->status ) ) );
 
 
 
66
  do_action_ref_array( 'WPBDP_Payment::status_change', array( &$this, $this->old_status, $this->status ) );
67
  do_action( "wpbdp_payment_{$this->status}", $this );
68
  }
@@ -72,12 +91,18 @@ class WPBDP_Payment extends WPBDP__DB__Model {
72
 
73
  protected function after_delete() {
74
  global $wpdb;
75
- $wpdb->delete( $wpdb->prefix . 'wpbdp_logs', array( 'object_type' => 'payment', 'object_id' => $this->id ) );
 
 
 
 
 
76
  }
77
 
78
  protected function set_attr( $name, $value ) {
79
- if ( in_array( $name, self::$serialized, true ) )
80
  $value = is_array( $value ) ? $value : array();
 
81
 
82
  if ( 'status' == $name ) {
83
  $this->old_status = $this->status;
@@ -94,24 +119,24 @@ class WPBDP_Payment extends WPBDP__DB__Model {
94
  $summary = '';
95
 
96
  switch ( $this->payment_type ) {
97
- case 'initial':
98
- $summary = sprintf( _x( 'Initial payment ("%s")', 'payment', 'WPBDM' ), $this->get_listing()->get_title() );
99
- break;
100
- case 'renewal':
101
- $summary = sprintf( _x( 'Renewal payment ("%s")', 'payment', 'WPBDM' ), $this->get_listing()->get_title() );
102
- break;
103
- default:
104
- break;
105
  }
106
 
107
  if ( ! $summary ) {
108
  $first_item = reset( $this->payment_items );
109
- $summary = $first_item['description'];
110
  }
111
 
112
  if ( 'admin-submit' == $this->context ) {
113
  $summary = sprintf( _x( '%s. Admin Posted.', 'payment summary', 'WPBDM' ), $summary );
114
- } else if ( 'csv-import' == $this->context ) {
115
  $summary = sprintf( _x( '%s. Imported Listing.', 'payment summary', 'WPBDM' ), $summary );
116
  }
117
 
@@ -133,19 +158,20 @@ class WPBDP_Payment extends WPBDP__DB__Model {
133
  }
134
 
135
  public function get_payer_details() {
136
- $data = array();
137
- $data['email'] = $this->payer_email;
138
  $data['first_name'] = $this->payer_first_name;
139
- $data['last_name'] = $this->payer_last_name;
140
- $data['country'] = '';
141
- $data['state'] = '';
142
- $data['city'] = '';
143
- $data['address'] = '';
144
- $data['address_2'] = '';
145
- $data['zip'] = '';
146
-
147
- foreach ( (array) $this->payer_data as $k => $v )
148
  $data[ $k ] = $v;
 
149
 
150
  return $data;
151
  }
@@ -153,8 +179,10 @@ class WPBDP_Payment extends WPBDP__DB__Model {
153
  public function get_payer_address() {
154
  $address = array();
155
 
156
- foreach ( array( 'line_1', 'line_2', 'city', 'state', 'zip', 'country' ) as $k ) {
157
- $address[ $k ] = ! empty( $this->payer_data[ 'address_' . $k ] ) ? $this->payer_data[ 'address_' . $k ] : '';
 
 
158
  }
159
 
160
  return $address;
@@ -167,8 +195,9 @@ class WPBDP_Payment extends WPBDP__DB__Model {
167
 
168
  public function find_item( $item_type ) {
169
  foreach ( $this->payment_items as $item ) {
170
- if ( $item_type == $item['type'] )
171
  return $item;
 
172
  }
173
 
174
  return null;
@@ -177,15 +206,18 @@ class WPBDP_Payment extends WPBDP__DB__Model {
177
  public function process_as_admin() {
178
  // $this->payment_items[0]['description'] .= ' ' . _x( '(admin, no charge)', 'submit listing', 'WPBDM' );
179
  // $this->payment_items[0]['amount'] = 0.0;
180
- $this->status = 'completed';
181
  $this->context = 'admin-submit';
182
  $this->save();
183
 
184
- wpbdp_insert_log( array(
185
- 'log_type' => 'payment.note',
186
- 'object_id' => $this->id,
187
- 'actor' => is_admin() ? 'user:' . get_current_user_id() : 'system',
188
- 'message' => _x( 'Listing submitted by admin. Payment skipped.', 'submit listing', 'WPBDM' ) ) );
 
 
 
189
  }
190
 
191
  public function is_completed() {
@@ -203,15 +235,16 @@ class WPBDP_Payment extends WPBDP__DB__Model {
203
  public function get_checkout_url( $force_http = false ) {
204
  $url = wpbdp_url( 'checkout', $this->payment_key );
205
 
206
- if ( ! $force_http && ! is_ssl() && wpbdp_get_option( 'payments-use-https' ) )
207
  $url = set_url_scheme( $url, 'https' );
 
208
 
209
  return $url;
210
  }
211
 
212
  public function get_return_url() {
213
  $params = array(
214
- 'action' => 'return',
215
  '_wpnonce' => wp_create_nonce( 'wpbdp-checkout-' . $this->id ),
216
  );
217
 
@@ -224,14 +257,27 @@ class WPBDP_Payment extends WPBDP__DB__Model {
224
  }
225
 
226
  public function get_payment_notes() {
227
- if ( ! $this->id )
228
  return array();
 
229
 
230
- return wpbdp_get_logs( array( 'object_id' => $this->id, 'object_type' => 'payment' ) );
 
 
 
 
 
231
  }
232
 
233
  public function log( $msg ) {
234
- return wpbdp_insert_log( array( 'object_id' => $this->id, 'object_type' => 'payment', 'log_type' => 'payment.note', 'message' => $msg ) );
 
 
 
 
 
 
 
235
  }
236
 
237
  public function set_payment_method( $method ) {
@@ -259,16 +305,17 @@ class WPBDP_Payment extends WPBDP__DB__Model {
259
  * - Canceled: Payment was canceled either by the user or the admin.
260
  * - Refunded: Payment was refunded by admin.
261
  * - On-hold: Not really used, but might be useful for manual payment gateways in the future.
 
262
  * @return array Array of status => label items.
263
  */
264
  public static function get_stati() {
265
- $stati = array();
266
- $stati['pending'] = _x( 'Pending', 'payment', 'WPBDM' );
267
- $stati['failed'] = _x( 'Failed', 'payment', 'WPBDM' );
268
  $stati['completed'] = _x( 'Completed', 'payment', 'WPBDM' );
269
- $stati['canceled'] = _x( 'Canceled', 'payment', 'WPBDM' );
270
- $stati['on-hold'] = _x( 'On Hold', 'payment', 'WPBDM' );
271
- $stati['refunded'] = _x( 'Refunded', 'payment', 'WPBDM' );
272
 
273
  return $stati;
274
  }
1
  <?php
2
+ /**
3
+ * @package WPBDP/Includes
4
+ */
5
 
6
+ // phpcs:disable
7
+
8
+ /**
9
+ * Class WPBDP_Payment
10
+ *
11
+ * @SuppressWarnings(PHPMD)
12
+ */
13
  class WPBDP_Payment extends WPBDP__DB__Model {
14
 
15
  static $serialized = array( 'payment_items', 'payer_data', 'data' );
18
 
19
  protected function get_defaults() {
20
  return array(
21
+ 'parent_id' => 0,
22
  'payment_items' => array(),
23
+ 'payer_data' => array(),
24
+ 'gateway_data' => array(),
25
+ 'status' => 'pending',
26
  'currency_code' => wpbdp_get_option( 'currency', 'USD' ),
27
+ 'amount' => 0.0,
28
+ 'data' => array(),
29
  );
30
  }
31
 
43
  }
44
 
45
  protected function before_save( $new = false ) {
46
+ if ( ! $this->payment_key ) {
47
  $this->payment_key = strtolower( sha1( $this->listing_id . date( 'Y-m-d H:i:s' ) . ( defined( 'AUTH_KEY' ) ? AUTH_KEY : '' ) . uniqid( 'wpbdp', true ) ) );
48
+ }
49
 
50
  $this->amount = 0.0;
51
 
52
+ foreach ( $this->payment_items as $item ) {
53
  $this->amount += floatval( $item['amount'] );
54
+ }
55
 
56
+ if ( 0.0 == $this->amount && ! $this->has_item_type( 'recurring_plan' ) ) {
57
  $this->status = 'completed';
58
+ }
59
  }
60
 
61
  protected function after_save( $new = false ) {
62
  if ( $new ) {
63
+ wpbdp_insert_log(
64
+ array(
65
+ 'log_type' => 'listing.payment',
66
+ 'object_id' => $this->listing_id,
67
+ 'rel_object_id' => $this->id,
68
+ )
69
+ );
70
  }
71
 
72
+ if ( ! $this->old_status || ! $this->status ) {
73
  return;
74
+ }
75
 
76
  if ( $this->old_status != $this->status ) {
77
+ wpbdp_insert_log(
78
+ array(
79
+ 'log_type' => 'payment.status_change',
80
+ 'actor' => is_admin() ? 'user:' . get_current_user_id() : 'system',
81
+ 'object_id' => $this->id,
82
+ 'message' => sprintf( _x( 'Payment status changed from "%1$s" to "%2$s".', 'payment', 'WPBDM' ), $this->old_status, $this->status ),
83
+ )
84
+ );
85
  do_action_ref_array( 'WPBDP_Payment::status_change', array( &$this, $this->old_status, $this->status ) );
86
  do_action( "wpbdp_payment_{$this->status}", $this );
87
  }
91
 
92
  protected function after_delete() {
93
  global $wpdb;
94
+ $wpdb->delete(
95
+ $wpdb->prefix . 'wpbdp_logs', array(
96
+ 'object_type' => 'payment',
97
+ 'object_id' => $this->id,
98
+ )
99
+ );
100
  }
101
 
102
  protected function set_attr( $name, $value ) {
103
+ if ( in_array( $name, self::$serialized, true ) ) {
104
  $value = is_array( $value ) ? $value : array();
105
+ }
106
 
107
  if ( 'status' == $name ) {
108
  $this->old_status = $this->status;
119
  $summary = '';
120
 
121
  switch ( $this->payment_type ) {
122
+ case 'initial':
123
+ $summary = sprintf( _x( 'Initial payment ("%s")', 'payment', 'WPBDM' ), $this->get_listing()->get_title() );
124
+ break;
125
+ case 'renewal':
126
+ $summary = sprintf( _x( 'Renewal payment ("%s")', 'payment', 'WPBDM' ), $this->get_listing()->get_title() );
127
+ break;
128
+ default:
129
+ break;
130
  }
131
 
132
  if ( ! $summary ) {
133
  $first_item = reset( $this->payment_items );
134
+ $summary = $first_item['description'];
135
  }
136
 
137
  if ( 'admin-submit' == $this->context ) {
138
  $summary = sprintf( _x( '%s. Admin Posted.', 'payment summary', 'WPBDM' ), $summary );
139
+ } elseif ( 'csv-import' == $this->context ) {
140
  $summary = sprintf( _x( '%s. Imported Listing.', 'payment summary', 'WPBDM' ), $summary );
141
  }
142
 
158
  }
159
 
160
  public function get_payer_details() {
161
+ $data = array();
162
+ $data['email'] = $this->payer_email;
163
  $data['first_name'] = $this->payer_first_name;
164
+ $data['last_name'] = $this->payer_last_name;
165
+ $data['country'] = '';
166
+ $data['state'] = '';
167
+ $data['city'] = '';
168
+ $data['address'] = '';
169
+ $data['address_2'] = '';
170
+ $data['zip'] = '';
171
+
172
+ foreach ( (array) $this->payer_data as $k => $v ) {
173
  $data[ $k ] = $v;
174
+ }
175
 
176
  return $data;
177
  }
179
  public function get_payer_address() {
180
  $address = array();
181
 
182
+ foreach ( array( 'address', 'address_2', 'city', 'state', 'zip', 'country' ) as $k ) {
183
+ if ( ! empty( $this->payer_data[ $k ] ) ) {
184
+ $address[ $k ] = $this->payer_data[ $k ];
185
+ }
186
  }
187
 
188
  return $address;
195
 
196
  public function find_item( $item_type ) {
197
  foreach ( $this->payment_items as $item ) {
198
+ if ( $item_type == $item['type'] ) {
199
  return $item;
200
+ }
201
  }
202
 
203
  return null;
206
  public function process_as_admin() {
207
  // $this->payment_items[0]['description'] .= ' ' . _x( '(admin, no charge)', 'submit listing', 'WPBDM' );
208
  // $this->payment_items[0]['amount'] = 0.0;
209
+ $this->status = 'completed';
210
  $this->context = 'admin-submit';
211
  $this->save();
212
 
213
+ wpbdp_insert_log(
214
+ array(
215
+ 'log_type' => 'payment.note',
216
+ 'object_id' => $this->id,
217
+ 'actor' => is_admin() ? 'user:' . get_current_user_id() : 'system',
218
+ 'message' => _x( 'Listing submitted by admin. Payment skipped.', 'submit listing', 'WPBDM' ),
219
+ )
220
+ );
221
  }
222
 
223
  public function is_completed() {
235
  public function get_checkout_url( $force_http = false ) {
236
  $url = wpbdp_url( 'checkout', $this->payment_key );
237
 
238
+ if ( ! $force_http && ! is_ssl() && wpbdp_get_option( 'payments-use-https' ) ) {
239
  $url = set_url_scheme( $url, 'https' );
240
+ }
241
 
242
  return $url;
243
  }
244
 
245
  public function get_return_url() {
246
  $params = array(
247
+ 'action' => 'return',
248
  '_wpnonce' => wp_create_nonce( 'wpbdp-checkout-' . $this->id ),
249
  );
250
 
257
  }
258
 
259
  public function get_payment_notes() {
260
+ if ( ! $this->id ) {
261
  return array();
262
+ }
263
 
264
+ return wpbdp_get_logs(
265
+ array(
266
+ 'object_id' => $this->id,
267
+ 'object_type' => 'payment',
268
+ )
269
+ );
270
  }
271
 
272
  public function log( $msg ) {
273
+ return wpbdp_insert_log(
274
+ array(
275
+ 'object_id' => $this->id,
276
+ 'object_type' => 'payment',
277
+ 'log_type' => 'payment.note',
278
+ 'message' => $msg,
279
+ )
280
+ );
281
  }
282
 
283
  public function set_payment_method( $method ) {
305
  * - Canceled: Payment was canceled either by the user or the admin.
306
  * - Refunded: Payment was refunded by admin.
307
  * - On-hold: Not really used, but might be useful for manual payment gateways in the future.
308
+ *
309
  * @return array Array of status => label items.
310
  */
311
  public static function get_stati() {
312
+ $stati = array();
313
+ $stati['pending'] = _x( 'Pending', 'payment', 'WPBDM' );
314
+ $stati['failed'] = _x( 'Failed', 'payment', 'WPBDM' );
315
  $stati['completed'] = _x( 'Completed', 'payment', 'WPBDM' );
316
+ $stati['canceled'] = _x( 'Canceled', 'payment', 'WPBDM' );
317
+ $stati['on-hold'] = _x( 'On Hold', 'payment', 'WPBDM' );
318
+ $stati['refunded'] = _x( 'Refunded', 'payment', 'WPBDM' );
319
 
320
  return $stati;
321
  }
includes/class-query-integration.php CHANGED
@@ -175,6 +175,20 @@ class WPBDP__Query_Integration {
175
  if ( ! $query->get( 'order' ) ) {
176
  $query->set( 'order', wpbdp_get_option( 'listings-sort', 'ASC' ) );
177
  }
 
 
 
 
 
 
 
 
 
 
 
 
 
 
178
  }
179
 
180
  public function posts_clauses( $pieces, $query ) {
175
  if ( ! $query->get( 'order' ) ) {
176
  $query->set( 'order', wpbdp_get_option( 'listings-sort', 'ASC' ) );
177
  }
178
+
179
+ if ( $query->wpbdp_is_category || $query->wpbdp_is_tag ) {
180
+ $current_post_types = $query->get( 'post_type' ) ? $query->get( 'post_type' ) : array();
181
+
182
+ if ( ! is_array( $current_post_types ) ) {
183
+ $current_post_types = array( $current_post_types );
184
+ }
185
+
186
+ if ( ! in_array( WPBDP_POST_TYPE, $current_post_types ) ) {
187
+ $current_post_types [] = WPBDP_POST_TYPE;
188
+ }
189
+
190
+ $query->set( 'post_type', $current_post_types );
191
+ }
192
  }
193
 
194
  public function posts_clauses( $pieces, $query ) {
includes/class-wpbdp.php CHANGED
@@ -19,7 +19,7 @@ final class WPBDP {
19
  }
20
 
21
  private function setup_constants() {
22
- define( 'WPBDP_VERSION', '5.5.3' );
23
 
24
  define( 'WPBDP_PATH', wp_normalize_path( plugin_dir_path( WPBDP_PLUGIN_FILE ) ) );
25
  define( 'WPBDP_INC', trailingslashit( WPBDP_PATH . 'includes' ) );
19
  }
20
 
21
  private function setup_constants() {
22
+ define( 'WPBDP_VERSION', '5.5.4' );
23
 
24
  define( 'WPBDP_PATH', wp_normalize_path( plugin_dir_path( WPBDP_PLUGIN_FILE ) ) );
25
  define( 'WPBDP_INC', trailingslashit( WPBDP_PATH . 'includes' ) );
includes/fields/class-fieldtypes-select.php CHANGED
@@ -399,4 +399,8 @@ class WPBDP_FieldTypes_Select extends WPBDP_Form_Field_Type {
399
  return $search_res;
400
  }
401
 
 
 
 
 
402
  }
399
  return $search_res;
400
  }
401
 
402
+ public function is_empty_value( $value ) {
403
+ return empty( $value ) || ( is_array( $value ) && in_array( -1, $value ) );
404
+ }
405
+
406
  }
includes/fields/class-fieldtypes-social.php CHANGED
@@ -103,91 +103,114 @@ class WPBDP_FieldTypes_Social extends WPBDP_Form_Field_Type {
103
  );
104
  $html .= '</div>';
105
  $html .= '<div class="wpbdp-social-text">';
106
- $html .= sprintf(
107
- '<span class="sublabel">%s</span>',
108
- _x( 'Text:', 'form-fields api', 'WPBDM' )
109
- );
110
- $html .= sprintf(
111
- '<input type="text" name="listingfields[%s][social-text]" value="%s" placeholder="%s">',
112
- $field->get_id(),
113
- ! empty( $value['social-text'] ) ? $value['social-text'] : '',
114
- _x( 'Text to be displayed along with icon', 'form-fields api', 'WPBDM' )
115
  );
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
116
  $html .= '</div>';
117
 
118
  $html .= '<div class="wpbdp-social-type-field">';
119
- $html .= sprintf(
120
- '<span class="sublabel">%s</span>',
121
- _x( 'Type:', 'form-fields api', 'WPBDM' )
 
 
122
  );
123
 
124
- foreach ( $this->social_types as $type ) {
125
- $css_classes = array();
126
- $css_classes[] = 'wpbdp-inner-social-field-option';
127
- $css_classes[] = 'wpbdp-inner-social-field-option-' . esc_attr( strtolower( $type ) );
128
-
129
- $html .= sprintf(
130
- '<div class="%s"><label><input type="radio" name="%s" value="%s" %s /> %s</label></div>',
131
- implode( ' ', $css_classes ),
132
- 'listingfields[' . $field->get_id() . '][type]',
133
- $type,
134
- ( ! empty( $value['type'] ) && $type === $value['type'] ) ? 'checked="checked"' : '',
135
- 'Other' === $type ? $type : '<i class="fab fa-' . esc_attr( strtolower( $type ) ) . '"></i> ' . esc_html( $type )
136
  );
137
- }
138
 
139
- $icon = ! empty( $value['social-icon'] ) ? $value['social-icon'] : 0;
 
 
 
 
 
 
 
 
 
 
 
 
 
140
 
141
- $html .= sprintf(
142
- '<input type="hidden" name="listingfields[%d][social-icon]" value="%s" />',
143
- $field->get_id(),
144
- $icon
145
- );
146
 
147
- $html .= '<div class="preview"' . ( ! $icon ? ' style="display: none;"' : '' ) . '>';
148
- if ( $icon ) {
149
- $html .= wp_get_attachment_image( $icon, 'wpbdp-thumb', false );
150
- }
 
151
 
152
- $html .= sprintf(
153
- '<a href="http://google.com" class="delete" onclick="return WPBDP.fileUpload.deleteUpload(%d, \'%s\');">%s</a>',
154
- $field->get_id(),
155
- 'listingfields[' . $field->get_id() . '][social-icon]',
156
- _x( 'Remove', 'form-fields-api', 'WPBDM' )
157
- );
158
 
159
- $html .= '</div>';
 
 
 
 
 
160
 
161
- $listing_id = 0;
162
- if ( 'submit' === $context ) {
163
- $listing_id = $extra->get_id();
164
- } elseif ( is_admin() ) {
165
- global $post;
166
- if ( ! empty( $post ) && WPBDP_POST_TYPE === $post->post_type ) {
167
- $listing_id = $post->ID;
 
 
 
168
  }
169
- }
170
 
171
- $nonce = wp_create_nonce( 'wpbdp-file-field-upload-' . $field->get_id() . '-listing_id-' . $listing_id );
172
- $ajax_url = add_query_arg(
173
- array(
174
- 'action' => 'wpbdp-file-field-upload',
175
- 'field_id' => $field->get_id(),
176
- 'element' => 'listingfields[' . $field->get_id() . '][social-icon]',
177
- 'nonce' => $nonce,
178
- 'listing_id' => $listing_id,
179
- ),
180
- admin_url( 'admin-ajax.php' )
181
- );
 
 
 
 
 
 
 
 
 
 
 
 
182
 
183
- $html .= '<div class="wpbdp-upload-widget">';
184
- $html .= sprintf(
185
- '<iframe class="wpbdp-upload-iframe" name="upload-iframe-%d" id="wpbdp-upload-iframe-%d" src="%s" scrolling="no" seamless="seamless" border="0" frameborder="0"></iframe>',
186
- $field->get_id(),
187
- $field->get_id(),
188
- $ajax_url
189
- );
190
- $html .= '</div>';
191
  $html .= '</div>';
192
 
193
  return $html;
103
  );
104
  $html .= '</div>';
105
  $html .= '<div class="wpbdp-social-text">';
106
+
107
+ $text_input = sprintf(
108
+ '<input type="hidden" name="listingfields[%s][social-text]" value="">',
109
+ $field->get_id()
 
 
 
 
 
110
  );
111
+
112
+ if ( 'icon_only' !== $field->data( 'display_order' ) ) {
113
+ $text_input = sprintf(
114
+ '<span class="sublabel">%s</span>',
115
+ _x( 'Text:', 'form-fields api', 'WPBDM' )
116
+ );
117
+
118
+ $text_input .= sprintf(
119
+ '<input type="text" name="listingfields[%s][social-text]" value="%s" placeholder="%s">',
120
+ $field->get_id(),
121
+ ! empty( $value['social-text'] ) ? $value['social-text'] : '',
122
+ _x( 'Text to be displayed for social field', 'form-fields api', 'WPBDM' )
123
+ );
124
+ }
125
+
126
+ $html .= $text_input;
127
  $html .= '</div>';
128
 
129
  $html .= '<div class="wpbdp-social-type-field">';
130
+
131
+ $icon_input = sprintf(
132
+ '<input type="hidden" name="listingfields[%1$s][type]" value="">
133
+ <input type="hidden" name="listingfields[%1$s][social-icon]" value="">',
134
+ $field->get_id()
135
  );
136
 
137
+ if ( 'text_only' !== $field->data( 'display_order' ) ) {
138
+ $icon_input = sprintf(
139
+ '<span class="sublabel">%s</span>',
140
+ _x( 'Type:', 'form-fields api', 'WPBDM' )
 
 
 
 
 
 
 
 
141
  );
 
142
 
143
+ foreach ( $this->social_types as $type ) {
144
+ $css_classes = array();
145
+ $css_classes[] = 'wpbdp-inner-social-field-option';
146
+ $css_classes[] = 'wpbdp-inner-social-field-option-' . esc_attr( strtolower( $type ) );
147
+
148
+ $icon_input .= sprintf(
149
+ '<div class="%s"><label><input type="radio" name="%s" value="%s" %s /> %s</label></div>',
150
+ implode( ' ', $css_classes ),
151
+ 'listingfields[' . $field->get_id() . '][type]',
152
+ $type,
153
+ ( ! empty( $value['type'] ) && $type === $value['type'] ) ? 'checked="checked"' : '',
154
+ 'Other' === $type ? $type : '<i class="fab fa-' . esc_attr( strtolower( $type ) ) . '"></i> ' . esc_html( $type )
155
+ );
156
+ }
157
 
158
+ $icon = ! empty( $value['social-icon'] ) ? $value['social-icon'] : 0;
 
 
 
 
159
 
160
+ $icon_input .= sprintf(
161
+ '<input type="hidden" name="listingfields[%d][social-icon]" value="%s" />',
162
+ $field->get_id(),
163
+ $icon
164
+ );
165
 
166
+ $icon_input .= '<div class="preview"' . ( ! $icon ? ' style="display: none;"' : '' ) . '>';
167
+ if ( $icon ) {
168
+ $icon_input .= wp_get_attachment_image( $icon, 'wpbdp-thumb', false );
169
+ }
 
 
170
 
171
+ $icon_input .= sprintf(
172
+ '<a href="http://google.com" class="delete" onclick="return WPBDP.fileUpload.deleteUpload(%d, \'%s\');">%s</a>',
173
+ $field->get_id(),
174
+ 'listingfields[' . $field->get_id() . '][social-icon]',
175
+ _x( 'Remove', 'form-fields-api', 'WPBDM' )
176
+ );
177
 
178
+ $icon_input .= '</div>';
179
+
180
+ $listing_id = 0;
181
+ if ( 'submit' === $context ) {
182
+ $listing_id = $extra->get_id();
183
+ } elseif ( is_admin() ) {
184
+ global $post;
185
+ if ( ! empty( $post ) && WPBDP_POST_TYPE === $post->post_type ) {
186
+ $listing_id = $post->ID;
187
+ }
188
  }
 
189
 
190
+ $nonce = wp_create_nonce( 'wpbdp-file-field-upload-' . $field->get_id() . '-listing_id-' . $listing_id );
191
+ $ajax_url = add_query_arg(
192
+ array(
193
+ 'action' => 'wpbdp-file-field-upload',
194
+ 'field_id' => $field->get_id(),
195
+ 'element' => 'listingfields[' . $field->get_id() . '][social-icon]',
196
+ 'nonce' => $nonce,
197
+ 'listing_id' => $listing_id,
198
+ ),
199
+ admin_url( 'admin-ajax.php' )
200
+ );
201
+
202
+ $icon_input .= '<div class="wpbdp-upload-widget">';
203
+ $icon_input .= sprintf(
204
+ '<iframe class="wpbdp-upload-iframe" name="upload-iframe-%d" id="wpbdp-upload-iframe-%d" src="%s" scrolling="no" seamless="seamless" border="0" frameborder="0"></iframe>',
205
+ $field->get_id(),
206
+ $field->get_id(),
207
+ $ajax_url
208
+ );
209
+ $icon_input .= '</div>';
210
+ }
211
+
212
+ $html .= $icon_input;
213
 
 
 
 
 
 
 
 
 
214
  $html .= '</div>';
215
 
216
  return $html;
includes/fields/class-fieldtypes-url.php CHANGED
@@ -1,4 +1,17 @@
1
  <?php
 
 
 
 
 
 
 
 
 
 
 
 
 
2
  class WPBDP_FieldTypes_URL extends WPBDP_Form_Field_Type {
3
 
4
  public function __construct() {
@@ -51,11 +64,11 @@ class WPBDP_FieldTypes_URL extends WPBDP_Form_Field_Type {
51
  if ( $value === null )
52
  return array( '', '' );
53
 
54
- if ( !is_array( $value ) )
55
- return array( $value, $value );
56
 
57
- if ( !isset( $value[1] ) || empty( $value[1] ) )
58
- $value[1] = $value[0];
59
 
60
  return $value;
61
  }
@@ -71,8 +84,8 @@ class WPBDP_FieldTypes_URL extends WPBDP_Form_Field_Type {
71
  esc_url( $value[0] ),
72
  $field->data( 'use_nofollow' ) == true ? 'nofollow': '',
73
  $field->data( 'open_in_new_window' ) == true ? '"_blank" rel="noopener"' : '"_self"',
74
- esc_attr( $value[1] ),
75
- esc_attr( $value[1] ) );
76
  }
77
 
78
  public function get_field_plain_value( &$field, $post_id ) {
@@ -86,19 +99,19 @@ class WPBDP_FieldTypes_URL extends WPBDP_Form_Field_Type {
86
  $parts = explode( ',', $input );
87
 
88
  if ( 1 == count( $parts ) )
89
- return array( $parts[0], $parts[0] );
90
 
91
  return array( $parts[0], $parts[1] );
92
  }
93
 
94
  public function get_field_csv_value( &$field, $post_id ) {
95
- $value = $field->value( $post_id );
96
 
97
  if ( is_array( $value ) && count( $value ) > 1 ) {
98
  return sprintf( '%s,%s', $value[0], $value[1] );
99
  }
100
 
101
- return is_array( $value ) ? $value[0] : '';
102
  }
103
 
104
  public function convert_input( &$field, $input ) {
@@ -106,7 +119,7 @@ class WPBDP_FieldTypes_URL extends WPBDP_Form_Field_Type {
106
  return array( '', '' );
107
 
108
  $url = trim( is_array( $input ) ? $input[0] : $input );
109
- $text = trim( is_array( $input ) ? $input[1] : $url );
110
 
111
  if ( $url && ! parse_url( $url, PHP_URL_SCHEME ) )
112
  $url = 'http://' . $url;
@@ -119,7 +132,7 @@ class WPBDP_FieldTypes_URL extends WPBDP_Form_Field_Type {
119
  }
120
 
121
  public function store_field_value( &$field, $post_id, $value ) {
122
- if ( !is_array( $value ) || $value[0] == '' )
123
  $value = null;
124
 
125
  parent::store_field_value( $field, $post_id, $value );
1
  <?php
2
+ /**
3
+ * URL Field Class
4
+ *
5
+ * @package WPBDP/Views/Includes/Fields/URL
6
+ */
7
+
8
+ // phpcs:disable
9
+
10
+ /**
11
+ * Class WPBDP_FieldTypes_URL
12
+ *
13
+ * @SuppressWarnings(PHPMD)
14
+ */
15
  class WPBDP_FieldTypes_URL extends WPBDP_Form_Field_Type {
16
 
17
  public function __construct() {
64
  if ( $value === null )
65
  return array( '', '' );
66
 
67
+ if ( ! is_array( $value ) )
68
+ return array( $value, '' );
69
 
70
+ if ( ! isset( $value[1] ) || empty( $value[1] ) )
71
+ $value[1] = '';
72
 
73
  return $value;
74
  }
84
  esc_url( $value[0] ),
85
  $field->data( 'use_nofollow' ) == true ? 'nofollow': '',
86
  $field->data( 'open_in_new_window' ) == true ? '"_blank" rel="noopener"' : '"_self"',
87
+ esc_attr( ! empty( $value[1] ) ? $value[1] : $value[0] ),
88
+ esc_attr( ! empty( $value[1] ) ? $value[1] : $value[0] ) );
89
  }
90
 
91
  public function get_field_plain_value( &$field, $post_id ) {
99
  $parts = explode( ',', $input );
100
 
101
  if ( 1 == count( $parts ) )
102
+ return array( $parts[0], '' );
103
 
104
  return array( $parts[0], $parts[1] );
105
  }
106
 
107
  public function get_field_csv_value( &$field, $post_id ) {
108
+ $value = parent::get_field_value( $field, $post_id );
109
 
110
  if ( is_array( $value ) && count( $value ) > 1 ) {
111
  return sprintf( '%s,%s', $value[0], $value[1] );
112
  }
113
 
114
+ return is_array( $value ) ? $value[0] : $value ;
115
  }
116
 
117
  public function convert_input( &$field, $input ) {
119
  return array( '', '' );
120
 
121
  $url = trim( is_array( $input ) ? $input[0] : $input );
122
+ $text = trim( is_array( $input ) ? $input[1] : '' );
123
 
124
  if ( $url && ! parse_url( $url, PHP_URL_SCHEME ) )
125
  $url = 'http://' . $url;
132
  }
133
 
134
  public function store_field_value( &$field, $post_id, $value ) {
135
+ if ( ! is_array( $value ) || $value[0] == '' )
136
  $value = null;
137
 
138
  parent::store_field_value( $field, $post_id, $value );
includes/functions.php CHANGED
@@ -914,7 +914,9 @@ function wpbdp_get_fee_plans( $args = array() ) {
914
  if ( $categories && ! $plan->supports_category_selection( $categories ) ) {
915
  continue;
916
  }
917
-
 
 
918
  $plans[] = $plan;
919
  }
920
  }
914
  if ( $categories && ! $plan->supports_category_selection( $categories ) ) {
915
  continue;
916
  }
917
+ if ( ! empty( $plan->extra_data['private'] ) && ! current_user_can( 'administrator' ) ) {
918
+ continue;
919
+ }
920
  $plans[] = $plan;
921
  }
922
  }
includes/helpers/class-listing-search.php CHANGED
@@ -84,14 +84,18 @@ class WPBDP__Listing_Search {
84
  'distinct' => '',
85
  'fields' => "{$wpdb->posts}.ID",
86
  'limits' => '',
 
87
  );
88
 
 
 
89
  foreach ( $this->parts as $key => $data ) {
90
  $field = wpbdp_get_form_field( $data[0] );
91
  $res = $field->configure_search( $data[1], $this );
92
 
93
- if ( ! empty( $res['where'] ) ) {
94
  $query_pieces['where'] = str_replace( '%' . $key . '%', $res['where'], $query_pieces['where'] );
 
95
  } else {
96
  // This prevents incorrect queries from being created.
97
  $query_pieces['where'] = str_replace( 'AND %' . $key . '%', '', $query_pieces['where'] );
@@ -105,6 +109,11 @@ class WPBDP__Listing_Search {
105
 
106
  $query_pieces[ $k ] .= ' ' . $v . ' ';
107
  }
 
 
 
 
 
108
  }
109
 
110
  $query_pieces['where'] = str_replace( 'AND AND', 'AND', $query_pieces['where'] );
@@ -112,21 +121,38 @@ class WPBDP__Listing_Search {
112
  $query_pieces['where'] = str_replace( 'AND )', ')', $query_pieces['where'] );
113
  $query_pieces['where'] = str_replace( 'OR )', ')', $query_pieces['where'] );
114
 
 
 
 
 
 
115
  $query_pieces = apply_filters_ref_array( 'wpbdp_search_query_pieces', array( $query_pieces, $this ) );
116
 
117
  $this->query = sprintf(
118
- "SELECT %s %s FROM {$wpdb->posts} %s WHERE ({$wpdb->posts}.post_type = '%s' AND {$wpdb->posts}.post_status = '%s') AND %s GROUP BY {$wpdb->posts}.ID %s %s",
119
  $query_pieces['distinct'],
120
  $query_pieces['fields'],
121
  $query_pieces['join'],
122
  WPBDP_POST_TYPE,
123
  'publish',
124
  $query_pieces['where'],
 
125
  $query_pieces['orderby'],
126
  $query_pieces['limits']
127
  );
128
  // wpbdp_debug_e($this->query);
 
 
 
 
 
129
  $this->results = $wpdb->get_col( $this->query );
 
 
 
 
 
 
130
  }
131
 
132
  private function _traverse_tree( $tree ) {
84
  'distinct' => '',
85
  'fields' => "{$wpdb->posts}.ID",
86
  'limits' => '',
87
+ 'posts_in' => '',
88
  );
89
 
90
+ $fields_count = 0;
91
+
92
  foreach ( $this->parts as $key => $data ) {
93
  $field = wpbdp_get_form_field( $data[0] );
94
  $res = $field->configure_search( $data[1], $this );
95
 
96
+ if ( ! empty( $res['where'] ) && $fields_count < 6 ) {
97
  $query_pieces['where'] = str_replace( '%' . $key . '%', $res['where'], $query_pieces['where'] );
98
+ $fields_count += 1;
99
  } else {
100
  // This prevents incorrect queries from being created.
101
  $query_pieces['where'] = str_replace( 'AND %' . $key . '%', '', $query_pieces['where'] );
109
 
110
  $query_pieces[ $k ] .= ' ' . $v . ' ';
111
  }
112
+
113
+ if ( $fields_count < 6 ) {
114
+ unset( $this->parts[$key] );
115
+ $this->tree = $this->tree_remove_field( $this->tree, $field );
116
+ }
117
  }
118
 
119
  $query_pieces['where'] = str_replace( 'AND AND', 'AND', $query_pieces['where'] );
121
  $query_pieces['where'] = str_replace( 'AND )', ')', $query_pieces['where'] );
122
  $query_pieces['where'] = str_replace( 'OR )', ')', $query_pieces['where'] );
123
 
124
+ if ( $this->results ) {
125
+ $format = implode( ', ', array_fill( 0, count( $this->results ), '%d' ) );
126
+ $query_pieces['posts_in'] = $wpdb->prepare( "AND {$wpdb->posts}.ID IN ( $format )", $this->results );
127
+ }
128
+
129
  $query_pieces = apply_filters_ref_array( 'wpbdp_search_query_pieces', array( $query_pieces, $this ) );
130
 
131
  $this->query = sprintf(
132
+ "SELECT %s %s FROM {$wpdb->posts} %s WHERE ({$wpdb->posts}.post_type = '%s' AND {$wpdb->posts}.post_status = '%s') AND %s %s GROUP BY {$wpdb->posts}.ID %s %s",
133
  $query_pieces['distinct'],
134
  $query_pieces['fields'],
135
  $query_pieces['join'],
136
  WPBDP_POST_TYPE,
137
  'publish',
138
  $query_pieces['where'],
139
+ $query_pieces['posts_in'],
140
  $query_pieces['orderby'],
141
  $query_pieces['limits']
142
  );
143
  // wpbdp_debug_e($this->query);
144
+
145
+ if ( $fields_count > 5 ) {
146
+ $wpdb->query( 'SET OPTION SQL_BIG_SELECTS = 1' );
147
+ }
148
+
149
  $this->results = $wpdb->get_col( $this->query );
150
+
151
+ if ( $this->parts && $this->results ) {
152
+ $this->execute();
153
+ }
154
+
155
+ $this->tree = self::parse_request( $this->original_request );
156
  }
157
 
158
  private function _traverse_tree( $tree ) {
includes/payment.php CHANGED
@@ -81,11 +81,10 @@ class WPBDP_PaymentsAPI {
81
  <?php
82
  $bill_to = '';
83
 
84
- $bill_to .= ( $payment->payer_first_name || $payment->payer_last_name ) ? $payment->payer_first_name . ' ' . $payment->payer_last_name . '<br />' : $current_user->display_name;
85
-
86
- $bill_to .= $payment->payer_address ? implode( '<br />', array_filter( $payment->payer_address ) ) : '';
87
-
88
- $bill_to .= $payment->payer_email ? '<br />' . $payment->payer_email : sprintf( '<%s>', $current_user->user_email );
89
  echo $bill_to;
90
  ?>
91
  </dd>
81
  <?php
82
  $bill_to = '';
83
 
84
+ $bill_to .= ( $payment->payer_first_name || $payment->payer_last_name ) ? $payment->payer_first_name . ' ' . $payment->payer_last_name : $current_user->display_name;
85
+ $bill_to .= $payment->payer_data ? '<br />' . implode( '<br />', $payment->get_payer_address() ) : '';
86
+ $bill_to .= '<br />';
87
+ $bill_to .= $payment->payer_email ? $payment->payer_email : sprintf( '<%s>', $current_user->user_email );
 
88
  echo $bill_to;
89
  ?>
90
  </dd>
includes/views/delete_listing.php CHANGED
@@ -15,7 +15,13 @@ require_once WPBDP_PATH . 'includes/helpers/class-authenticated-listing-view.php
15
  class WPBDP__Views__Delete_Listing extends WPBDP__Authenticated_Listing_View {
16
 
17
  public function dispatch() {
18
- $this->listing = WPBDP_Listing::get( intval( $_REQUEST['listing_id'] ) );
 
 
 
 
 
 
19
  $this->_auth_required(
20
  array(
21
  'wpbdp_view' => 'delete_listing',
@@ -29,7 +35,10 @@ class WPBDP__Views__Delete_Listing extends WPBDP__Authenticated_Listing_View {
29
 
30
  if ( $nonce && wp_verify_nonce( $nonce, 'delete listing ' . $this->listing->get_id() ) ) {
31
  $this->listing->delete();
32
- return wpbdp_render_msg( _x( 'Your listing has been deleted.', 'delete listing', 'WPBDM' ) );
 
 
 
33
  }
34
 
35
  return wpbdp_render(
15
  class WPBDP__Views__Delete_Listing extends WPBDP__Authenticated_Listing_View {
16
 
17
  public function dispatch() {
18
+ $listing_id = intval( $_REQUEST['listing_id'] );
19
+ $this->listing = WPBDP_Listing::get( $listing_id );
20
+
21
+ if ( ! $this->listing || 'trash' === get_post_status( $listing_id ) ) {
22
+ $this->_redirect( wpbdp_url() );
23
+ }
24
+
25
  $this->_auth_required(
26
  array(
27
  'wpbdp_view' => 'delete_listing',
35
 
36
  if ( $nonce && wp_verify_nonce( $nonce, 'delete listing ' . $this->listing->get_id() ) ) {
37
  $this->listing->delete();
38
+ $html = wpbdp_render_msg( _x( 'Your listing has been deleted.', 'delete listing', 'WPBDM' ) );
39
+ $v = wpbdp_load_view( 'main' );
40
+ $html .= $v->dispatch();
41
+ return $html;
42
  }
43
 
44
  return wpbdp_render(
includes/views/submit_listing.php CHANGED
@@ -239,10 +239,6 @@ class WPBDP__Views__Submit_Listing extends WPBDP__Authenticated_Listing_View {
239
  $this->skip_plan_payment = false;
240
  }
241
 
242
- if ( ! current_user_can( 'administrator' ) && ! empty( $plan->extra_data['private'] ) ) {
243
- continue;
244
- }
245
-
246
  $this->available_plans[] = $plan;
247
  }
248
 
239
  $this->skip_plan_payment = false;
240
  }
241
 
 
 
 
 
242
  $this->available_plans[] = $plan;
243
  }
244
 
languages/WPBDM-ar.mo CHANGED
Binary file
languages/WPBDM-ar.po CHANGED
@@ -5,7 +5,7 @@ msgstr ""
5
  "Project-Id-Version: Business Directory Plugin v5.5\n"
6
  "Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/business-"
7
  "directory-plugin\n"
8
- "POT-Creation-Date: 2019-03-20 00:09:46+00:00\n"
9
  "PO-Revision-Date: 2017-01-16 17:47-0500\n"
10
  "Last-Translator: BD Team <support@businessdirectoryplugin.com>\n"
11
  "Language-Team: BD Team <support@businessdirectoryplugin.com>\n"
@@ -1199,7 +1199,7 @@ msgstr ""
1199
  "يمكنك إنشاء هذه الحقول المخصصة بنفسك داخل \"إدارة الحقول\" أو السماح لدليل "
1200
  "الأعمال للقيام بذلك نيابة عنك تلقائياً."
1201
 
1202
- #: includes/admin/form-fields.php:214 includes/views/submit_listing.php:516
1203
  msgctxt "admin"
1204
  msgid "Go to \"Manage Form Fields\""
1205
  msgstr "إنتقل إلى \"إدارة حقول\""
@@ -1209,12 +1209,12 @@ msgctxt "admin"
1209
  msgid "Create these required fields for me"
1210
  msgstr "إنشاء هذه الحقول المطلوبة نيابة عني"
1211
 
1212
- #: includes/payment.php:181
1213
  msgctxt "admin"
1214
  msgid "Pending Abandonment"
1215
  msgstr "في انتظار التخلي"
1216
 
1217
- #: includes/payment.php:186
1218
  msgctxt "admin"
1219
  msgid "Abandoned"
1220
  msgstr "متخلى عنه"
@@ -1229,53 +1229,53 @@ msgctxt "listing status"
1229
  msgid "Reported"
1230
  msgstr ""
1231
 
1232
- #: includes/class-listing.php:768
1233
  msgctxt "listing status"
1234
  msgid "Unknown"
1235
  msgstr ""
1236
 
1237
- #: includes/class-listing.php:769
1238
  msgctxt "listing status"
1239
  msgid "Legacy"
1240
  msgstr ""
1241
 
1242
- #: includes/class-listing.php:770
1243
  #, fuzzy
1244
  msgctxt "listing status"
1245
  msgid "Incomplete"
1246
  msgstr "إكتمل"
1247
 
1248
- #: includes/class-listing.php:771
1249
  #, fuzzy
1250
  msgctxt "listing status"
1251
  msgid "Pending Payment"
1252
  msgstr "في انتظار التخلي"
1253
 
1254
- #: includes/class-listing.php:772
1255
  #, fuzzy
1256
  msgctxt "listing status"
1257
  msgid "Complete"
1258
  msgstr "إكتمل"
1259
 
1260
- #: includes/class-listing.php:773
1261
  #, fuzzy
1262
  msgctxt "listing status"
1263
  msgid "Pending Upgrade"
1264
  msgstr " في انتظار الترقية"
1265
 
1266
- #: includes/class-listing.php:774
1267
  #, fuzzy
1268
  msgctxt "listing status"
1269
  msgid "Expired"
1270
  msgstr "منتهي الصلاحية"
1271
 
1272
- #: includes/class-listing.php:775
1273
  #, fuzzy
1274
  msgctxt "listing status"
1275
  msgid "Pending Renewal"
1276
  msgstr "مفعل + ريثما يتم التجديد"
1277
 
1278
- #: includes/class-listing.php:776
1279
  #, fuzzy
1280
  msgctxt "listing status"
1281
  msgid "Abandoned"
@@ -1923,22 +1923,22 @@ msgctxt "themes"
1923
  msgid "Theme was updated successfully."
1924
  msgstr "تم تحديث القالب بنجاح."
1925
 
1926
- #: includes/themes.php:825
1927
  msgctxt "themes"
1928
  msgid "ZIP file is not a valid BD theme file."
1929
  msgstr "ملف الضغط ZIP ليس ملف قالب دليل الأعمال صالح."
1930
 
1931
- #: includes/themes.php:831
1932
  msgctxt "themes"
1933
  msgid "Could not create themes directory."
1934
  msgstr "تعذر إنشاء مجلد القوالب."
1935
 
1936
- #: includes/themes.php:839
1937
  msgctxt "themes"
1938
  msgid "Could not remove previous theme directory \"%s\"."
1939
  msgstr "تعذر إزالة مجلد القالب السابق \"%s\"."
1940
 
1941
- #: includes/themes.php:845
1942
  msgctxt "themes"
1943
  msgid "Could not move new theme into theme directory."
1944
  msgstr "تعذر نقل القالب الجديد الى مجلد القالب."
@@ -2919,12 +2919,12 @@ msgctxt "form-fields admin"
2919
  msgid "Automatically generate excerpt from content field?"
2920
  msgstr "تلقائياً إنشاء مقتطفات من حقل المحتوى؟"
2921
 
2922
- #: includes/fields/class-fieldtypes-url.php:23
2923
  msgctxt "form-fields admin"
2924
  msgid "Open link in a new window?"
2925
  msgstr "إفتح الرابط في نافذة جديدة"
2926
 
2927
- #: includes/fields/class-fieldtypes-url.php:26
2928
  msgctxt "form-fields admin"
2929
  msgid "Use rel=\"nofollow\" when displaying the link?"
2930
  msgstr "إستخدام rel = \"nofollow\" عند عرض الارتباط؟"
@@ -3639,13 +3639,13 @@ msgid "Author"
3639
  msgstr "الكاتب"
3640
 
3641
  #: includes/admin/settings/class-settings-bootstrap.php:682
3642
- #: includes/functions.php:1179
3643
  msgctxt "admin settings"
3644
  msgid "Date posted"
3645
  msgstr "تاريخ النشر"
3646
 
3647
  #: includes/admin/settings/class-settings-bootstrap.php:683
3648
- #: includes/functions.php:1180
3649
  msgctxt "admin settings"
3650
  msgid "Date last modified"
3651
  msgstr "تاريخ آخر تعديل"
@@ -4035,12 +4035,12 @@ msgid ""
4035
  "not activated."
4036
  msgstr "تعذر نسخ إضافة التوافق أجاكس \"%s\". لم يتم تفعيل وضع التوافق."
4037
 
4038
- #: includes/functions.php:1177
4039
  msgctxt "admin settings"
4040
  msgid "User"
4041
  msgstr "عضو"
4042
 
4043
- #: includes/functions.php:1178
4044
  msgctxt "admin settings"
4045
  msgid "User registration date"
4046
  msgstr "تاريخ تسجيل العضو"
@@ -5886,37 +5886,37 @@ msgctxt "listing"
5886
  msgid "Add New Listing"
5887
  msgstr "إضافة إعلان جديد"
5888
 
5889
- #: includes/class-listing.php:302
5890
  #, fuzzy
5891
  msgctxt "listing"
5892
  msgid "Listing has no registered payments"
5893
  msgstr "إنتهاء صلاحية الإعلان"
5894
 
5895
- #: includes/class-listing.php:310
5896
  #, fuzzy
5897
  msgctxt "listing"
5898
  msgid "Can't delete payment"
5899
  msgstr "رفض الدفع"
5900
 
5901
- #: includes/class-listing.php:349
5902
  #, fuzzy
5903
  msgctxt "listing"
5904
  msgid "Listing expired"
5905
  msgstr "الإعلان منتهي التاريخ"
5906
 
5907
- #: includes/class-listing.php:508
5908
  #, fuzzy
5909
  msgctxt "listing"
5910
  msgid "(Unavailable Plan)"
5911
  msgstr "(رسم غير متوفر)"
5912
 
5913
- #: includes/class-listing.php:665
5914
  #, fuzzy
5915
  msgctxt "listing"
5916
  msgid "Plan \"%s\" (recurring)"
5917
  msgstr "(متكرر)"
5918
 
5919
- #: includes/class-listing.php:667
5920
  msgctxt "listing"
5921
  msgid "Plan \"%s\""
5922
  msgstr ""
@@ -6180,68 +6180,68 @@ msgstr ""
6180
  "href=\"%s\">إدارة الخيارات - الدفع</a> لتغيير إعدادات الدفع. حتى تقوم بتغيير "
6181
  "ذلك، فإن الدليل سيعمل بـ <i>الوضع المجاني.</i>"
6182
 
6183
- #: includes/class-payment.php:65
6184
  msgctxt "payment"
6185
- msgid "Payment status changed from \"%s\" to \"%s\"."
6186
  msgstr ""
6187
 
6188
- #: includes/class-payment.php:98
6189
  #, fuzzy
6190
  msgctxt "payment"
6191
  msgid "Initial payment (\"%s\")"
6192
  msgstr "الدفعة الأولية"
6193
 
6194
- #: includes/class-payment.php:101
6195
  #, fuzzy
6196
  msgctxt "payment"
6197
  msgid "Renewal payment (\"%s\")"
6198
  msgstr "رفض الدفع"
6199
 
6200
- #: includes/class-payment.php:266
6201
  #, fuzzy
6202
  msgctxt "payment"
6203
  msgid "Pending"
6204
  msgstr " في الانتظار"
6205
 
6206
- #: includes/class-payment.php:267
6207
  msgctxt "payment"
6208
  msgid "Failed"
6209
  msgstr ""
6210
 
6211
- #: includes/class-payment.php:268
6212
  #, fuzzy
6213
  msgctxt "payment"
6214
  msgid "Completed"
6215
  msgstr "إكتمل"
6216
 
6217
- #: includes/class-payment.php:269
6218
  #, fuzzy
6219
  msgctxt "payment"
6220
  msgid "Canceled"
6221
  msgstr "ألغيت"
6222
 
6223
- #: includes/class-payment.php:270
6224
  msgctxt "payment"
6225
  msgid "On Hold"
6226
  msgstr ""
6227
 
6228
- #: includes/class-payment.php:271
6229
  msgctxt "payment"
6230
  msgid "Refunded"
6231
  msgstr ""
6232
 
6233
- #: includes/class-payment.php:113
6234
  msgctxt "payment summary"
6235
  msgid "%s. Admin Posted."
6236
  msgstr ""
6237
 
6238
- #: includes/class-payment.php:115
6239
  #, fuzzy
6240
  msgctxt "payment summary"
6241
  msgid "%s. Imported Listing."
6242
  msgstr "استيراد الإعلانات"
6243
 
6244
- #: includes/class-payment.php:188
6245
  #, fuzzy
6246
  msgctxt "submit listing"
6247
  msgid "Listing submitted by admin. Payment skipped."
@@ -6307,47 +6307,47 @@ msgctxt "submit listing"
6307
  msgid "You're logged in as admin, payment will be skipped."
6308
  msgstr "لقد تم تسجيل دخولك كمدير. سيتم تخطي أي خطوات للدفع."
6309
 
6310
- #: includes/views/submit_listing.php:392
6311
  #, fuzzy
6312
  msgctxt "submit listing"
6313
  msgid "Category selection"
6314
  msgstr "إختيار تصنيف"
6315
 
6316
- #: includes/views/submit_listing.php:392
6317
  #, fuzzy
6318
  msgctxt "submit listing"
6319
  msgid "Category & plan selection"
6320
  msgstr "إختيار تصنيف"
6321
 
6322
- #: includes/views/submit_listing.php:397
6323
  #, fuzzy
6324
  msgctxt "submit listing"
6325
  msgid "Listing Information"
6326
  msgstr "معلومات حول الإعلان"
6327
 
6328
- #: includes/views/submit_listing.php:402
6329
  #, fuzzy
6330
  msgctxt "submit listing"
6331
  msgid "Listing Images"
6332
  msgstr "صور الإعلانات"
6333
 
6334
- #: includes/views/submit_listing.php:410
6335
  msgctxt "submit listing"
6336
  msgid "Account Creation"
6337
  msgstr ""
6338
 
6339
- #: includes/views/submit_listing.php:416
6340
  #, fuzzy
6341
  msgctxt "submit listing"
6342
  msgid "Terms and Conditions"
6343
  msgstr "شروط وأحكام"
6344
 
6345
- #: includes/views/submit_listing.php:453
6346
  msgctxt "submit listing"
6347
  msgid "(Please choose a fee plan above)"
6348
  msgstr ""
6349
 
6350
- #: includes/views/submit_listing.php:503
6351
  #, fuzzy
6352
  msgctxt "submit listing"
6353
  msgid "Can not submit a listing at this moment. Please try again later."
@@ -6355,80 +6355,80 @@ msgstr ""
6355
  "لا يمكن أن نقوم بمعالجة الدفع الخاص بك في هذه اللحظة. المرجو المحاولة مرة "
6356
  "أخرى لاحقاً."
6357
 
6358
- #: includes/views/submit_listing.php:531
6359
  #, fuzzy
6360
  msgctxt "submit listing"
6361
  msgid "Please select a category."
6362
  msgstr "المرجو تحديد خيار رسوم التصنيف \"%s\"."
6363
 
6364
- #: includes/views/submit_listing.php:544
6365
  #, fuzzy
6366
  msgctxt "submit listing"
6367
  msgid "Please select a category for your listing."
6368
  msgstr "المرجو تحديد خيار رسوم التصنيف \"%s\"."
6369
 
6370
- #: includes/views/submit_listing.php:564
6371
  msgctxt "submit listing"
6372
  msgid "Please choose a valid category for your plan."
6373
  msgstr ""
6374
 
6375
- #: includes/views/submit_listing.php:566
6376
  #, fuzzy
6377
  msgctxt "submit listing"
6378
  msgid "Please choose a valid fee plan for your category selection."
6379
  msgstr "المرجو تحديد خيار رسوم التصنيف \"%s\"."
6380
 
6381
- #: includes/views/submit_listing.php:807
6382
  #, fuzzy
6383
  msgctxt "submit listing"
6384
  msgid "Please enter your desired username."
6385
  msgstr "يرجى إدخال إسمك."
6386
 
6387
- #: includes/views/submit_listing.php:812
6388
  #, fuzzy
6389
  msgctxt "submit listing"
6390
  msgid "Please enter the e-mail for your new account."
6391
  msgstr "يرجى إدخال إسمك."
6392
 
6393
- #: includes/views/submit_listing.php:817
6394
  msgctxt "submit listing"
6395
  msgid "Please enter the password for your new account."
6396
  msgstr ""
6397
 
6398
- #: includes/views/submit_listing.php:827
6399
  msgctxt "submit listing"
6400
  msgid "The username you chose is already in use. Please use a different one."
6401
  msgstr ""
6402
 
6403
- #: includes/views/submit_listing.php:832
6404
  msgctxt "submit listing"
6405
  msgid "The e-mail address you chose for your account is already in use."
6406
  msgstr ""
6407
 
6408
- #: includes/views/submit_listing.php:847
6409
  msgctxt "submit listing"
6410
  msgid "Create a user account on this site"
6411
  msgstr ""
6412
 
6413
- #: includes/views/submit_listing.php:854
6414
  msgctxt "submit listing"
6415
  msgid ""
6416
  "You need to create an account on the site. Please fill out the form below."
6417
  msgstr ""
6418
 
6419
- #: includes/views/submit_listing.php:860
6420
  #, fuzzy
6421
  msgctxt "submit listing"
6422
  msgid "Username:"
6423
  msgstr "عضو"
6424
 
6425
- #: includes/views/submit_listing.php:869
6426
  #, fuzzy
6427
  msgctxt "submit listing"
6428
  msgid "Email:"
6429
  msgstr "البريد الإلكتروني: %s"
6430
 
6431
- #: includes/views/submit_listing.php:878
6432
  msgctxt "submit listing"
6433
  msgid "Password:"
6434
  msgstr ""
@@ -6588,23 +6588,23 @@ msgid "Social Site (Other)"
6588
  msgstr "الموقع الاجتماعي (التعامل مع التغريدات)"
6589
 
6590
  #: includes/fields/class-fieldtypes-social.php:95
6591
- #: includes/fields/class-fieldtypes-url.php:136
6592
  msgctxt "form-fields api"
6593
  msgid "URL:"
6594
  msgstr "رابط URL:"
6595
 
6596
- #: includes/fields/class-fieldtypes-social.php:108
6597
  #, fuzzy
6598
  msgctxt "form-fields api"
6599
  msgid "Text:"
6600
  msgstr "مربع النص"
6601
 
6602
- #: includes/fields/class-fieldtypes-social.php:114
6603
  msgctxt "form-fields api"
6604
- msgid "Text to be displayed along with icon"
6605
  msgstr ""
6606
 
6607
- #: includes/fields/class-fieldtypes-social.php:121
6608
  #, fuzzy
6609
  msgctxt "form-fields api"
6610
  msgid "Type:"
@@ -6630,12 +6630,12 @@ msgctxt "form-fields api"
6630
  msgid "Social Site (Twitter handle)"
6631
  msgstr "الموقع الاجتماعي (التعامل مع التغريدات)"
6632
 
6633
- #: includes/fields/class-fieldtypes-url.php:5
6634
  msgctxt "form-fields api"
6635
  msgid "URL Field"
6636
  msgstr "حقل الرابط"
6637
 
6638
- #: includes/fields/class-fieldtypes-url.php:144
6639
  msgctxt "form-fields api"
6640
  msgid "Link Text (optional):"
6641
  msgstr "رابط نصي (اختياري):"
@@ -6705,7 +6705,7 @@ msgid "Caption for %s is required."
6705
  msgstr "البلد المطلوب."
6706
 
6707
  #: includes/fields/class-fieldtypes-image.php:100
6708
- #: includes/fields/class-fieldtypes-social.php:156
6709
  msgctxt "form-fields-api"
6710
  msgid "Remove"
6711
  msgstr "إزالة"
@@ -6898,18 +6898,18 @@ msgctxt "image field"
6898
  msgid "Caption for %s is required."
6899
  msgstr "البلد المطلوب."
6900
 
6901
- #: includes/functions.php:1257
6902
  #, fuzzy
6903
  msgctxt "templates"
6904
  msgid "Return to results"
6905
  msgstr "العودة إلى الدليل."
6906
 
6907
- #: includes/functions.php:1261 includes/functions.php:1266
6908
  msgctxt "templates"
6909
  msgid "Go back"
6910
  msgstr ""
6911
 
6912
- #: includes/payment.php:278 templates/renew-resume.tpl.php:39
6913
  #, fuzzy
6914
  msgctxt "templates"
6915
  msgid "Return to fee selection"
@@ -6970,7 +6970,7 @@ msgstr ""
6970
  "إعلانات بداخلها. هذا يعني أنها لن تظهر على الواجهة الأمامية للموقع الخاص بك. "
6971
  "إذا كنت لا تريد ذلك، إضغط <a>هنا</a> لتغيير الإعداد."
6972
 
6973
- #: includes/views/submit_listing.php:339
6974
  msgctxt "templates"
6975
  msgid ""
6976
  "<b>View not available</b>. Do you have the \"Disable Frontend Listing "
@@ -6979,20 +6979,20 @@ msgstr ""
6979
  "<b>المشاهدة غير متوفرة</b>. هل لديك \"تعطيل إضافة إعلان من واجهة الموقع؟\" "
6980
  "محددة في الإعدادات؟"
6981
 
6982
- #: includes/views/submit_listing.php:341
6983
  msgctxt "templates"
6984
  msgid ""
6985
  "Listing submission has been disabled. Contact the administrator for details."
6986
  msgstr ""
6987
 
6988
- #: includes/views/submit_listing.php:506
6989
  msgctxt "templates"
6990
  msgid ""
6991
  "Listing submission is not available at the moment. Contact the administrator "
6992
  "for details."
6993
  msgstr ""
6994
 
6995
- #: includes/views/submit_listing.php:509
6996
  msgctxt "templates"
6997
  msgid ""
6998
  "<b>View not available</b>, there is no \"Category\" association field. %s "
@@ -7000,17 +7000,17 @@ msgid ""
7000
  "an existing field"
7001
  msgstr ""
7002
 
7003
- #: includes/views/submit_listing.php:916
7004
  msgctxt "templates"
7005
  msgid "Please agree to the Terms and Conditions."
7006
  msgstr "يرجى الموافقة على الشروط والأحكام."
7007
 
7008
- #: includes/views/submit_listing.php:924
7009
  msgctxt "templates"
7010
  msgid "Terms and Conditions:"
7011
  msgstr "شروط وأحكام:"
7012
 
7013
- #: includes/views/submit_listing.php:933
7014
  #, fuzzy
7015
  msgctxt "templates"
7016
  msgid "I agree to the <a>Terms and Conditions</a>"
@@ -7227,24 +7227,24 @@ msgctxt "templates"
7227
  msgid "Your listing has been submitted."
7228
  msgstr "تم إضافة إعلانك."
7229
 
7230
- #: templates/submit-listing-done.tpl.php:11
7231
  msgctxt "templates"
7232
  msgid "Your listing changes were saved."
7233
  msgstr "تم حفظ تغييرات إعلانك."
7234
 
7235
- #: templates/submit-listing-done.tpl.php:16
7236
  msgctxt "templates"
7237
  msgid "Go to your listing"
7238
  msgstr "الذهاب إلى إعلانك"
7239
 
7240
- #: templates/submit-listing-done.tpl.php:18
7241
  msgctxt "templates"
7242
  msgid ""
7243
  "Your listing requires admin approval. You'll be notified once your listing "
7244
  "is approved."
7245
  msgstr ""
7246
 
7247
- #: templates/submit-listing-done.tpl.php:22
7248
  msgctxt "templates"
7249
  msgid "Return to directory."
7250
  msgstr "الرجوع إلى الدليل."
@@ -7757,7 +7757,7 @@ msgctxt "payments"
7757
  msgid "Bill To:"
7758
  msgstr ""
7759
 
7760
- #: includes/payment.php:97
7761
  msgctxt "checkout"
7762
  msgid "Print Receipt"
7763
  msgstr ""
@@ -8004,7 +8004,7 @@ msgctxt "checkout"
8004
  msgid "Your payment is awaiting verification by the gateway."
8005
  msgstr ""
8006
 
8007
- #: templates/checkout-confirmation.tpl.php:19
8008
  msgctxt "checkout"
8009
  msgid ""
8010
  "Verification usually takes some minutes. This page will automatically "
@@ -8110,7 +8110,7 @@ msgctxt "utils"
8110
  msgid "Error while uploading file"
8111
  msgstr "حدث خطأ أثناء رفع الملف."
8112
 
8113
- #: includes/views/delete_listing.php:32
8114
  msgctxt "delete listing"
8115
  msgid "Your listing has been deleted."
8116
  msgstr "تم حذف إعلانك."
@@ -8429,14 +8429,14 @@ msgstr ""
8429
  "Il s'agit seulement d'une pré-visualisation. L'annonce n'a pas encore été "
8430
  "publiée."
8431
 
8432
- #: includes/views/submit_listing.php:675
8433
  msgctxt "listing submit"
8434
  msgid ""
8435
  "Something went wrong. Please check the form for errors, correct them and "
8436
  "submit again."
8437
  msgstr ""
8438
 
8439
- #: includes/views/submit_listing.php:759
8440
  msgctxt "listing submit"
8441
  msgid ""
8442
  "Image upload is required, please provide at least one image and submit again."
5
  "Project-Id-Version: Business Directory Plugin v5.5\n"
6
  "Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/business-"
7
  "directory-plugin\n"
8
+ "POT-Creation-Date: 2019-04-23 21:12:39+00:00\n"
9
  "PO-Revision-Date: 2017-01-16 17:47-0500\n"
10
  "Last-Translator: BD Team <support@businessdirectoryplugin.com>\n"
11
  "Language-Team: BD Team <support@businessdirectoryplugin.com>\n"
1199
  "يمكنك إنشاء هذه الحقول المخصصة بنفسك داخل \"إدارة الحقول\" أو السماح لدليل "
1200
  "الأعمال للقيام بذلك نيابة عنك تلقائياً."
1201
 
1202
+ #: includes/admin/form-fields.php:214 includes/views/submit_listing.php:512
1203
  msgctxt "admin"
1204
  msgid "Go to \"Manage Form Fields\""
1205
  msgstr "إنتقل إلى \"إدارة حقول\""
1209
  msgid "Create these required fields for me"
1210
  msgstr "إنشاء هذه الحقول المطلوبة نيابة عني"
1211
 
1212
+ #: includes/payment.php:180
1213
  msgctxt "admin"
1214
  msgid "Pending Abandonment"
1215
  msgstr "في انتظار التخلي"
1216
 
1217
+ #: includes/payment.php:185
1218
  msgctxt "admin"
1219
  msgid "Abandoned"
1220
  msgstr "متخلى عنه"
1229
  msgid "Reported"
1230
  msgstr ""
1231
 
1232
+ #: includes/class-listing.php:771
1233
  msgctxt "listing status"
1234
  msgid "Unknown"
1235
  msgstr ""
1236
 
1237
+ #: includes/class-listing.php:772
1238
  msgctxt "listing status"
1239
  msgid "Legacy"
1240
  msgstr ""
1241
 
1242
+ #: includes/class-listing.php:773
1243
  #, fuzzy
1244
  msgctxt "listing status"
1245
  msgid "Incomplete"
1246
  msgstr "إكتمل"
1247
 
1248
+ #: includes/class-listing.php:774
1249
  #, fuzzy
1250
  msgctxt "listing status"
1251
  msgid "Pending Payment"
1252
  msgstr "في انتظار التخلي"
1253
 
1254
+ #: includes/class-listing.php:775
1255
  #, fuzzy
1256
  msgctxt "listing status"
1257
  msgid "Complete"
1258
  msgstr "إكتمل"
1259
 
1260
+ #: includes/class-listing.php:776
1261
  #, fuzzy
1262
  msgctxt "listing status"
1263
  msgid "Pending Upgrade"
1264
  msgstr " في انتظار الترقية"
1265
 
1266
+ #: includes/class-listing.php:777
1267
  #, fuzzy
1268
  msgctxt "listing status"
1269
  msgid "Expired"
1270
  msgstr "منتهي الصلاحية"
1271
 
1272
+ #: includes/class-listing.php:778
1273
  #, fuzzy
1274
  msgctxt "listing status"
1275
  msgid "Pending Renewal"
1276
  msgstr "مفعل + ريثما يتم التجديد"
1277
 
1278
+ #: includes/class-listing.php:779
1279
  #, fuzzy
1280
  msgctxt "listing status"
1281
  msgid "Abandoned"
1923
  msgid "Theme was updated successfully."
1924
  msgstr "تم تحديث القالب بنجاح."
1925
 
1926
+ #: includes/themes.php:829
1927
  msgctxt "themes"
1928
  msgid "ZIP file is not a valid BD theme file."
1929
  msgstr "ملف الضغط ZIP ليس ملف قالب دليل الأعمال صالح."
1930
 
1931
+ #: includes/themes.php:835
1932
  msgctxt "themes"
1933
  msgid "Could not create themes directory."
1934
  msgstr "تعذر إنشاء مجلد القوالب."
1935
 
1936
+ #: includes/themes.php:843
1937
  msgctxt "themes"
1938
  msgid "Could not remove previous theme directory \"%s\"."
1939
  msgstr "تعذر إزالة مجلد القالب السابق \"%s\"."
1940
 
1941
+ #: includes/themes.php:849
1942
  msgctxt "themes"
1943
  msgid "Could not move new theme into theme directory."
1944
  msgstr "تعذر نقل القالب الجديد الى مجلد القالب."
2919
  msgid "Automatically generate excerpt from content field?"
2920
  msgstr "تلقائياً إنشاء مقتطفات من حقل المحتوى؟"
2921
 
2922
+ #: includes/fields/class-fieldtypes-url.php:36
2923
  msgctxt "form-fields admin"
2924
  msgid "Open link in a new window?"
2925
  msgstr "إفتح الرابط في نافذة جديدة"
2926
 
2927
+ #: includes/fields/class-fieldtypes-url.php:39
2928
  msgctxt "form-fields admin"
2929
  msgid "Use rel=\"nofollow\" when displaying the link?"
2930
  msgstr "إستخدام rel = \"nofollow\" عند عرض الارتباط؟"
3639
  msgstr "الكاتب"
3640
 
3641
  #: includes/admin/settings/class-settings-bootstrap.php:682
3642
+ #: includes/functions.php:1181
3643
  msgctxt "admin settings"
3644
  msgid "Date posted"
3645
  msgstr "تاريخ النشر"
3646
 
3647
  #: includes/admin/settings/class-settings-bootstrap.php:683
3648
+ #: includes/functions.php:1182
3649
  msgctxt "admin settings"
3650
  msgid "Date last modified"
3651
  msgstr "تاريخ آخر تعديل"
4035
  "not activated."
4036
  msgstr "تعذر نسخ إضافة التوافق أجاكس \"%s\". لم يتم تفعيل وضع التوافق."
4037
 
4038
+ #: includes/functions.php:1179
4039
  msgctxt "admin settings"
4040
  msgid "User"
4041
  msgstr "عضو"
4042
 
4043
+ #: includes/functions.php:1180
4044
  msgctxt "admin settings"
4045
  msgid "User registration date"
4046
  msgstr "تاريخ تسجيل العضو"
5886
  msgid "Add New Listing"
5887
  msgstr "إضافة إعلان جديد"
5888
 
5889
+ #: includes/class-listing.php:305
5890
  #, fuzzy
5891
  msgctxt "listing"
5892
  msgid "Listing has no registered payments"
5893
  msgstr "إنتهاء صلاحية الإعلان"
5894
 
5895
+ #: includes/class-listing.php:313
5896
  #, fuzzy
5897
  msgctxt "listing"
5898
  msgid "Can't delete payment"
5899
  msgstr "رفض الدفع"
5900
 
5901
+ #: includes/class-listing.php:352
5902
  #, fuzzy
5903
  msgctxt "listing"
5904
  msgid "Listing expired"
5905
  msgstr "الإعلان منتهي التاريخ"
5906
 
5907
+ #: includes/class-listing.php:511
5908
  #, fuzzy
5909
  msgctxt "listing"
5910
  msgid "(Unavailable Plan)"
5911
  msgstr "(رسم غير متوفر)"
5912
 
5913
+ #: includes/class-listing.php:668
5914
  #, fuzzy
5915
  msgctxt "listing"
5916
  msgid "Plan \"%s\" (recurring)"
5917
  msgstr "(متكرر)"
5918
 
5919
+ #: includes/class-listing.php:670
5920
  msgctxt "listing"
5921
  msgid "Plan \"%s\""
5922
  msgstr ""
6180
  "href=\"%s\">إدارة الخيارات - الدفع</a> لتغيير إعدادات الدفع. حتى تقوم بتغيير "
6181
  "ذلك، فإن الدليل سيعمل بـ <i>الوضع المجاني.</i>"
6182
 
6183
+ #: includes/class-payment.php:82
6184
  msgctxt "payment"
6185
+ msgid "Payment status changed from \"%1$s\" to \"%2$s\"."
6186
  msgstr ""
6187
 
6188
+ #: includes/class-payment.php:123
6189
  #, fuzzy
6190
  msgctxt "payment"
6191
  msgid "Initial payment (\"%s\")"
6192
  msgstr "الدفعة الأولية"
6193
 
6194
+ #: includes/class-payment.php:126
6195
  #, fuzzy
6196
  msgctxt "payment"
6197
  msgid "Renewal payment (\"%s\")"
6198
  msgstr "رفض الدفع"
6199
 
6200
+ #: includes/class-payment.php:313
6201
  #, fuzzy
6202
  msgctxt "payment"
6203
  msgid "Pending"
6204
  msgstr " في الانتظار"
6205
 
6206
+ #: includes/class-payment.php:314
6207
  msgctxt "payment"
6208
  msgid "Failed"
6209
  msgstr ""
6210
 
6211
+ #: includes/class-payment.php:315
6212
  #, fuzzy
6213
  msgctxt "payment"
6214
  msgid "Completed"
6215
  msgstr "إكتمل"
6216
 
6217
+ #: includes/class-payment.php:316
6218
  #, fuzzy
6219
  msgctxt "payment"
6220
  msgid "Canceled"
6221
  msgstr "ألغيت"
6222
 
6223
+ #: includes/class-payment.php:317
6224
  msgctxt "payment"
6225
  msgid "On Hold"
6226
  msgstr ""
6227
 
6228
+ #: includes/class-payment.php:318
6229
  msgctxt "payment"
6230
  msgid "Refunded"
6231
  msgstr ""
6232
 
6233
+ #: includes/class-payment.php:138
6234
  msgctxt "payment summary"
6235
  msgid "%s. Admin Posted."
6236
  msgstr ""
6237
 
6238
+ #: includes/class-payment.php:140
6239
  #, fuzzy
6240
  msgctxt "payment summary"
6241
  msgid "%s. Imported Listing."
6242
  msgstr "استيراد الإعلانات"
6243
 
6244
+ #: includes/class-payment.php:218
6245
  #, fuzzy
6246
  msgctxt "submit listing"
6247
  msgid "Listing submitted by admin. Payment skipped."
6307
  msgid "You're logged in as admin, payment will be skipped."
6308
  msgstr "لقد تم تسجيل دخولك كمدير. سيتم تخطي أي خطوات للدفع."
6309
 
6310
+ #: includes/views/submit_listing.php:388
6311
  #, fuzzy
6312
  msgctxt "submit listing"
6313
  msgid "Category selection"
6314
  msgstr "إختيار تصنيف"
6315
 
6316
+ #: includes/views/submit_listing.php:388
6317
  #, fuzzy
6318
  msgctxt "submit listing"
6319
  msgid "Category & plan selection"
6320
  msgstr "إختيار تصنيف"
6321
 
6322
+ #: includes/views/submit_listing.php:393
6323
  #, fuzzy
6324
  msgctxt "submit listing"
6325
  msgid "Listing Information"
6326
  msgstr "معلومات حول الإعلان"
6327
 
6328
+ #: includes/views/submit_listing.php:398
6329
  #, fuzzy
6330
  msgctxt "submit listing"
6331
  msgid "Listing Images"
6332
  msgstr "صور الإعلانات"
6333
 
6334
+ #: includes/views/submit_listing.php:406
6335
  msgctxt "submit listing"
6336
  msgid "Account Creation"
6337
  msgstr ""
6338
 
6339
+ #: includes/views/submit_listing.php:412
6340
  #, fuzzy
6341
  msgctxt "submit listing"
6342
  msgid "Terms and Conditions"
6343
  msgstr "شروط وأحكام"
6344
 
6345
+ #: includes/views/submit_listing.php:449
6346
  msgctxt "submit listing"
6347
  msgid "(Please choose a fee plan above)"
6348
  msgstr ""
6349
 
6350
+ #: includes/views/submit_listing.php:499
6351
  #, fuzzy
6352
  msgctxt "submit listing"
6353
  msgid "Can not submit a listing at this moment. Please try again later."
6355
  "لا يمكن أن نقوم بمعالجة الدفع الخاص بك في هذه اللحظة. المرجو المحاولة مرة "
6356
  "أخرى لاحقاً."
6357
 
6358
+ #: includes/views/submit_listing.php:527
6359
  #, fuzzy
6360
  msgctxt "submit listing"
6361
  msgid "Please select a category."
6362
  msgstr "المرجو تحديد خيار رسوم التصنيف \"%s\"."
6363
 
6364
+ #: includes/views/submit_listing.php:540
6365
  #, fuzzy
6366
  msgctxt "submit listing"
6367
  msgid "Please select a category for your listing."
6368
  msgstr "المرجو تحديد خيار رسوم التصنيف \"%s\"."
6369
 
6370
+ #: includes/views/submit_listing.php:560
6371
  msgctxt "submit listing"
6372
  msgid "Please choose a valid category for your plan."
6373
  msgstr ""
6374
 
6375
+ #: includes/views/submit_listing.php:562
6376
  #, fuzzy
6377
  msgctxt "submit listing"
6378
  msgid "Please choose a valid fee plan for your category selection."
6379
  msgstr "المرجو تحديد خيار رسوم التصنيف \"%s\"."
6380
 
6381
+ #: includes/views/submit_listing.php:803
6382
  #, fuzzy
6383
  msgctxt "submit listing"
6384
  msgid "Please enter your desired username."
6385
  msgstr "يرجى إدخال إسمك."
6386
 
6387
+ #: includes/views/submit_listing.php:808
6388
  #, fuzzy
6389
  msgctxt "submit listing"
6390
  msgid "Please enter the e-mail for your new account."
6391
  msgstr "يرجى إدخال إسمك."
6392
 
6393
+ #: includes/views/submit_listing.php:813
6394
  msgctxt "submit listing"
6395
  msgid "Please enter the password for your new account."
6396
  msgstr ""
6397
 
6398
+ #: includes/views/submit_listing.php:823
6399
  msgctxt "submit listing"
6400
  msgid "The username you chose is already in use. Please use a different one."
6401
  msgstr ""
6402
 
6403
+ #: includes/views/submit_listing.php:828
6404
  msgctxt "submit listing"
6405
  msgid "The e-mail address you chose for your account is already in use."
6406
  msgstr ""
6407
 
6408
+ #: includes/views/submit_listing.php:843
6409
  msgctxt "submit listing"
6410
  msgid "Create a user account on this site"
6411
  msgstr ""
6412
 
6413
+ #: includes/views/submit_listing.php:850
6414
  msgctxt "submit listing"
6415
  msgid ""
6416
  "You need to create an account on the site. Please fill out the form below."
6417
  msgstr ""
6418
 
6419
+ #: includes/views/submit_listing.php:856
6420
  #, fuzzy
6421
  msgctxt "submit listing"
6422
  msgid "Username:"
6423
  msgstr "عضو"
6424
 
6425
+ #: includes/views/submit_listing.php:865
6426
  #, fuzzy
6427
  msgctxt "submit listing"
6428
  msgid "Email:"
6429
  msgstr "البريد الإلكتروني: %s"
6430
 
6431
+ #: includes/views/submit_listing.php:874
6432
  msgctxt "submit listing"
6433
  msgid "Password:"
6434
  msgstr ""
6588
  msgstr "الموقع الاجتماعي (التعامل مع التغريدات)"
6589
 
6590
  #: includes/fields/class-fieldtypes-social.php:95
6591
+ #: includes/fields/class-fieldtypes-url.php:149
6592
  msgctxt "form-fields api"
6593
  msgid "URL:"
6594
  msgstr "رابط URL:"
6595
 
6596
+ #: includes/fields/class-fieldtypes-social.php:115
6597
  #, fuzzy
6598
  msgctxt "form-fields api"
6599
  msgid "Text:"
6600
  msgstr "مربع النص"
6601
 
6602
+ #: includes/fields/class-fieldtypes-social.php:122
6603
  msgctxt "form-fields api"
6604
+ msgid "Text to be displayed for social field"
6605
  msgstr ""
6606
 
6607
+ #: includes/fields/class-fieldtypes-social.php:140
6608
  #, fuzzy
6609
  msgctxt "form-fields api"
6610
  msgid "Type:"
6630
  msgid "Social Site (Twitter handle)"
6631
  msgstr "الموقع الاجتماعي (التعامل مع التغريدات)"
6632
 
6633
+ #: includes/fields/class-fieldtypes-url.php:18
6634
  msgctxt "form-fields api"
6635
  msgid "URL Field"
6636
  msgstr "حقل الرابط"
6637
 
6638
+ #: includes/fields/class-fieldtypes-url.php:157
6639
  msgctxt "form-fields api"
6640
  msgid "Link Text (optional):"
6641
  msgstr "رابط نصي (اختياري):"
6705
  msgstr "البلد المطلوب."
6706
 
6707
  #: includes/fields/class-fieldtypes-image.php:100
6708
+ #: includes/fields/class-fieldtypes-social.php:175
6709
  msgctxt "form-fields-api"
6710
  msgid "Remove"
6711
  msgstr "إزالة"
6898
  msgid "Caption for %s is required."
6899
  msgstr "البلد المطلوب."
6900
 
6901
+ #: includes/functions.php:1259
6902
  #, fuzzy
6903
  msgctxt "templates"
6904
  msgid "Return to results"
6905
  msgstr "العودة إلى الدليل."
6906
 
6907
+ #: includes/functions.php:1263 includes/functions.php:1268
6908
  msgctxt "templates"
6909
  msgid "Go back"
6910
  msgstr ""
6911
 
6912
+ #: includes/payment.php:277 templates/renew-resume.tpl.php:39
6913
  #, fuzzy
6914
  msgctxt "templates"
6915
  msgid "Return to fee selection"
6970
  "إعلانات بداخلها. هذا يعني أنها لن تظهر على الواجهة الأمامية للموقع الخاص بك. "
6971
  "إذا كنت لا تريد ذلك، إضغط <a>هنا</a> لتغيير الإعداد."
6972
 
6973
+ #: includes/views/submit_listing.php:335
6974
  msgctxt "templates"
6975
  msgid ""
6976
  "<b>View not available</b>. Do you have the \"Disable Frontend Listing "
6979
  "<b>المشاهدة غير متوفرة</b>. هل لديك \"تعطيل إضافة إعلان من واجهة الموقع؟\" "
6980
  "محددة في الإعدادات؟"
6981
 
6982
+ #: includes/views/submit_listing.php:337
6983
  msgctxt "templates"
6984
  msgid ""
6985
  "Listing submission has been disabled. Contact the administrator for details."
6986
  msgstr ""
6987
 
6988
+ #: includes/views/submit_listing.php:502
6989
  msgctxt "templates"
6990
  msgid ""
6991
  "Listing submission is not available at the moment. Contact the administrator "
6992
  "for details."
6993
  msgstr ""
6994
 
6995
+ #: includes/views/submit_listing.php:505
6996
  msgctxt "templates"
6997
  msgid ""
6998
  "<b>View not available</b>, there is no \"Category\" association field. %s "
7000
  "an existing field"
7001
  msgstr ""
7002
 
7003
+ #: includes/views/submit_listing.php:912
7004
  msgctxt "templates"
7005
  msgid "Please agree to the Terms and Conditions."
7006
  msgstr "يرجى الموافقة على الشروط والأحكام."
7007
 
7008
+ #: includes/views/submit_listing.php:920
7009
  msgctxt "templates"
7010
  msgid "Terms and Conditions:"
7011
  msgstr "شروط وأحكام:"
7012
 
7013
+ #: includes/views/submit_listing.php:929
7014
  #, fuzzy
7015
  msgctxt "templates"
7016
  msgid "I agree to the <a>Terms and Conditions</a>"
7227
  msgid "Your listing has been submitted."
7228
  msgstr "تم إضافة إعلانك."
7229
 
7230
+ #: templates/submit-listing-done.tpl.php:14
7231
  msgctxt "templates"
7232
  msgid "Your listing changes were saved."
7233
  msgstr "تم حفظ تغييرات إعلانك."
7234
 
7235
+ #: templates/submit-listing-done.tpl.php:19
7236
  msgctxt "templates"
7237
  msgid "Go to your listing"
7238
  msgstr "الذهاب إلى إعلانك"
7239
 
7240
+ #: templates/submit-listing-done.tpl.php:21
7241
  msgctxt "templates"
7242
  msgid ""
7243
  "Your listing requires admin approval. You'll be notified once your listing "
7244
  "is approved."
7245
  msgstr ""
7246
 
7247
+ #: templates/submit-listing-done.tpl.php:25
7248
  msgctxt "templates"
7249
  msgid "Return to directory."
7250
  msgstr "الرجوع إلى الدليل."
7757
  msgid "Bill To:"
7758
  msgstr ""
7759
 
7760
+ #: includes/payment.php:96
7761
  msgctxt "checkout"
7762
  msgid "Print Receipt"
7763
  msgstr ""
8004
  msgid "Your payment is awaiting verification by the gateway."
8005
  msgstr ""
8006
 
8007
+ #: templates/checkout-confirmation.tpl.php:20
8008
  msgctxt "checkout"
8009
  msgid ""
8010
  "Verification usually takes some minutes. This page will automatically "
8110
  msgid "Error while uploading file"
8111
  msgstr "حدث خطأ أثناء رفع الملف."
8112
 
8113
+ #: includes/views/delete_listing.php:38
8114
  msgctxt "delete listing"
8115
  msgid "Your listing has been deleted."
8116
  msgstr "تم حذف إعلانك."
8429
  "Il s'agit seulement d'une pré-visualisation. L'annonce n'a pas encore été "
8430
  "publiée."
8431
 
8432
+ #: includes/views/submit_listing.php:671
8433
  msgctxt "listing submit"
8434
  msgid ""
8435
  "Something went wrong. Please check the form for errors, correct them and "
8436
  "submit again."
8437
  msgstr ""
8438
 
8439
+ #: includes/views/submit_listing.php:755
8440
  msgctxt "listing submit"
8441
  msgid ""
8442
  "Image upload is required, please provide at least one image and submit again."
languages/WPBDM-de_DE.mo CHANGED
Binary file
languages/WPBDM-de_DE.po CHANGED
@@ -5,7 +5,7 @@ msgstr ""
5
  "Project-Id-Version: Business Directory Plugin v5.5\n"
6
  "Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/business-"
7
  "directory-plugin\n"
8
- "POT-Creation-Date: 2019-03-20 00:09:46+00:00\n"
9
  "PO-Revision-Date: 2018-03-02 08:40-0500\n"
10
  "Last-Translator: Axel J. Metayer <axel@kfz.net>\n"
11
  "Language-Team: Business Directory Plugin <support@businessdirectoryplugin."
@@ -1207,7 +1207,7 @@ msgstr ""
1207
  "Sie können diese benutzerdefinierten Felder selbst erzeugen \"Formularfelder "
1208
  "verwalten\" oder vom Branchenverzeichnis automatisch erstellen lassen."
1209
 
1210
- #: includes/admin/form-fields.php:214 includes/views/submit_listing.php:516
1211
  msgctxt "admin"
1212
  msgid "Go to \"Manage Form Fields\""
1213
  msgstr "zu \"Formularfelder verwalten\""
@@ -1217,12 +1217,12 @@ msgctxt "admin"
1217
  msgid "Create these required fields for me"
1218
  msgstr "Erstelle diese benötigten Felder für mich"
1219
 
1220
- #: includes/payment.php:181
1221
  msgctxt "admin"
1222
  msgid "Pending Abandonment"
1223
  msgstr "Ausstehende Zahlungen"
1224
 
1225
- #: includes/payment.php:186
1226
  msgctxt "admin"
1227
  msgid "Abandoned"
1228
  msgstr "Abgebrochen"
@@ -1237,53 +1237,53 @@ msgctxt "listing status"
1237
  msgid "Reported"
1238
  msgstr ""
1239
 
1240
- #: includes/class-listing.php:768
1241
  msgctxt "listing status"
1242
  msgid "Unknown"
1243
  msgstr ""
1244
 
1245
- #: includes/class-listing.php:769
1246
  msgctxt "listing status"
1247
  msgid "Legacy"
1248
  msgstr ""
1249
 
1250
- #: includes/class-listing.php:770
1251
  #, fuzzy
1252
  msgctxt "listing status"
1253
  msgid "Incomplete"
1254
  msgstr "Abgeschlossen"
1255
 
1256
- #: includes/class-listing.php:771
1257
  #, fuzzy
1258
  msgctxt "listing status"
1259
  msgid "Pending Payment"
1260
  msgstr "Ausstehende Zahlungen"
1261
 
1262
- #: includes/class-listing.php:772
1263
  #, fuzzy
1264
  msgctxt "listing status"
1265
  msgid "Complete"
1266
  msgstr "Abgeschlossen"
1267
 
1268
- #: includes/class-listing.php:773
1269
  #, fuzzy
1270
  msgctxt "listing status"
1271
  msgid "Pending Upgrade"
1272
  msgstr "Ausstehende Aktualisierung"
1273
 
1274
- #: includes/class-listing.php:774
1275
  #, fuzzy
1276
  msgctxt "listing status"
1277
  msgid "Expired"
1278
  msgstr "Abgelaufen"
1279
 
1280
- #: includes/class-listing.php:775
1281
  #, fuzzy
1282
  msgctxt "listing status"
1283
  msgid "Pending Renewal"
1284
  msgstr "Aktiv + Ausstehende Erneuerungen"
1285
 
1286
- #: includes/class-listing.php:776
1287
  #, fuzzy
1288
  msgctxt "listing status"
1289
  msgid "Abandoned"
@@ -1950,22 +1950,22 @@ msgctxt "themes"
1950
  msgid "Theme was updated successfully."
1951
  msgstr "Der Import wurde erfolgreich abgeschlossen."
1952
 
1953
- #: includes/themes.php:825
1954
  msgctxt "themes"
1955
  msgid "ZIP file is not a valid BD theme file."
1956
  msgstr "Bitte eine gültige E-mailadresse eingeben."
1957
 
1958
- #: includes/themes.php:831
1959
  msgctxt "themes"
1960
  msgid "Could not create themes directory."
1961
  msgstr "wpbdp-csv-exports Verzeichnis konnte nicht erstellt werden."
1962
 
1963
- #: includes/themes.php:839
1964
  msgctxt "themes"
1965
  msgid "Could not remove previous theme directory \"%s\"."
1966
  msgstr "Konnte Eintragskategorie nicht erstellen \"%s\""
1967
 
1968
- #: includes/themes.php:845
1969
  msgctxt "themes"
1970
  msgid "Could not move new theme into theme directory."
1971
  msgstr "Momentan sind keine Einträge im Verzeichnis vorhanden."
@@ -2953,12 +2953,12 @@ msgctxt "form-fields admin"
2953
  msgid "Automatically generate excerpt from content field?"
2954
  msgstr "Automatisches Generierung eines Auszugs aus dem Inhaltsfeld?"
2955
 
2956
- #: includes/fields/class-fieldtypes-url.php:23
2957
  msgctxt "form-fields admin"
2958
  msgid "Open link in a new window?"
2959
  msgstr "Link im neuen Fenster öffnen?"
2960
 
2961
- #: includes/fields/class-fieldtypes-url.php:26
2962
  msgctxt "form-fields admin"
2963
  msgid "Use rel=\"nofollow\" when displaying the link?"
2964
  msgstr "Benutze rel=\"nofollow\" wenn der link angezeigt wird?"
@@ -3678,13 +3678,13 @@ msgid "Author"
3678
  msgstr "Author"
3679
 
3680
  #: includes/admin/settings/class-settings-bootstrap.php:682
3681
- #: includes/functions.php:1179
3682
  msgctxt "admin settings"
3683
  msgid "Date posted"
3684
  msgstr "Datum gepostet"
3685
 
3686
  #: includes/admin/settings/class-settings-bootstrap.php:683
3687
- #: includes/functions.php:1180
3688
  msgctxt "admin settings"
3689
  msgid "Date last modified"
3690
  msgstr "Datum zuletzt verändert"
@@ -4073,12 +4073,12 @@ msgid ""
4073
  "not activated."
4074
  msgstr ""
4075
 
4076
- #: includes/functions.php:1177
4077
  msgctxt "admin settings"
4078
  msgid "User"
4079
  msgstr "Benutzer"
4080
 
4081
- #: includes/functions.php:1178
4082
  msgctxt "admin settings"
4083
  msgid "User registration date"
4084
  msgstr "Eintrag Enddatum"
@@ -5872,37 +5872,37 @@ msgctxt "listing"
5872
  msgid "Add New Listing"
5873
  msgstr "Neuer Eintrag"
5874
 
5875
- #: includes/class-listing.php:302
5876
  #, fuzzy
5877
  msgctxt "listing"
5878
  msgid "Listing has no registered payments"
5879
  msgstr "Eintrag Enddatum"
5880
 
5881
- #: includes/class-listing.php:310
5882
  #, fuzzy
5883
  msgctxt "listing"
5884
  msgid "Can't delete payment"
5885
  msgstr "Bezahlung zurückweisen"
5886
 
5887
- #: includes/class-listing.php:349
5888
  #, fuzzy
5889
  msgctxt "listing"
5890
  msgid "Listing expired"
5891
  msgstr "Ein Eintrag läuft aus."
5892
 
5893
- #: includes/class-listing.php:508
5894
  #, fuzzy
5895
  msgctxt "listing"
5896
  msgid "(Unavailable Plan)"
5897
  msgstr "(Preis nicht verfügbar)"
5898
 
5899
- #: includes/class-listing.php:665
5900
  #, fuzzy
5901
  msgctxt "listing"
5902
  msgid "Plan \"%s\" (recurring)"
5903
  msgstr "(wiederkehrend)"
5904
 
5905
- #: includes/class-listing.php:667
5906
  msgctxt "listing"
5907
  msgid "Plan \"%s\""
5908
  msgstr ""
@@ -6159,68 +6159,68 @@ msgstr ""
6159
  "Bezahleinstellungen zu ändern. Das Verzeichnis wird im <i>kostenlosen Modus</"
6160
  "i> ausgeführt, bis die Änderungen gemacht wurden."
6161
 
6162
- #: includes/class-payment.php:65
6163
  msgctxt "payment"
6164
- msgid "Payment status changed from \"%s\" to \"%s\"."
6165
  msgstr ""
6166
 
6167
- #: includes/class-payment.php:98
6168
  #, fuzzy
6169
  msgctxt "payment"
6170
  msgid "Initial payment (\"%s\")"
6171
  msgstr "Initialbezahlung"
6172
 
6173
- #: includes/class-payment.php:101
6174
  #, fuzzy
6175
  msgctxt "payment"
6176
  msgid "Renewal payment (\"%s\")"
6177
  msgstr "Bezahlung zurückweisen"
6178
 
6179
- #: includes/class-payment.php:266
6180
  #, fuzzy
6181
  msgctxt "payment"
6182
  msgid "Pending"
6183
  msgstr "Ausstehend"
6184
 
6185
- #: includes/class-payment.php:267
6186
  msgctxt "payment"
6187
  msgid "Failed"
6188
  msgstr ""
6189
 
6190
- #: includes/class-payment.php:268
6191
  #, fuzzy
6192
  msgctxt "payment"
6193
  msgid "Completed"
6194
  msgstr "Abgeschlossen"
6195
 
6196
- #: includes/class-payment.php:269
6197
  #, fuzzy
6198
  msgctxt "payment"
6199
  msgid "Canceled"
6200
  msgstr "Abgebrochen"
6201
 
6202
- #: includes/class-payment.php:270
6203
  msgctxt "payment"
6204
  msgid "On Hold"
6205
  msgstr ""
6206
 
6207
- #: includes/class-payment.php:271
6208
  msgctxt "payment"
6209
  msgid "Refunded"
6210
  msgstr ""
6211
 
6212
- #: includes/class-payment.php:113
6213
  msgctxt "payment summary"
6214
  msgid "%s. Admin Posted."
6215
  msgstr ""
6216
 
6217
- #: includes/class-payment.php:115
6218
  #, fuzzy
6219
  msgctxt "payment summary"
6220
  msgid "%s. Imported Listing."
6221
  msgstr "Einträge importieren"
6222
 
6223
- #: includes/class-payment.php:188
6224
  #, fuzzy
6225
  msgctxt "submit listing"
6226
  msgid "Listing submitted by admin. Payment skipped."
@@ -6288,47 +6288,47 @@ msgstr ""
6288
  "Du bist als Administrator eingeloggt. Alle Bezahlungsschritte werden "
6289
  "übersprungen."
6290
 
6291
- #: includes/views/submit_listing.php:392
6292
  #, fuzzy
6293
  msgctxt "submit listing"
6294
  msgid "Category selection"
6295
  msgstr "Kategorien auswählen"
6296
 
6297
- #: includes/views/submit_listing.php:392
6298
  #, fuzzy
6299
  msgctxt "submit listing"
6300
  msgid "Category & plan selection"
6301
  msgstr "Kategorien auswählen"
6302
 
6303
- #: includes/views/submit_listing.php:397
6304
  #, fuzzy
6305
  msgctxt "submit listing"
6306
  msgid "Listing Information"
6307
  msgstr "Eintrag Informationen"
6308
 
6309
- #: includes/views/submit_listing.php:402
6310
  #, fuzzy
6311
  msgctxt "submit listing"
6312
  msgid "Listing Images"
6313
  msgstr "Eintrag Bilder"
6314
 
6315
- #: includes/views/submit_listing.php:410
6316
  msgctxt "submit listing"
6317
  msgid "Account Creation"
6318
  msgstr ""
6319
 
6320
- #: includes/views/submit_listing.php:416
6321
  #, fuzzy
6322
  msgctxt "submit listing"
6323
  msgid "Terms and Conditions"
6324
  msgstr "Bedingungen und Konditionen"
6325
 
6326
- #: includes/views/submit_listing.php:453
6327
  msgctxt "submit listing"
6328
  msgid "(Please choose a fee plan above)"
6329
  msgstr ""
6330
 
6331
- #: includes/views/submit_listing.php:503
6332
  #, fuzzy
6333
  msgctxt "submit listing"
6334
  msgid "Can not submit a listing at this moment. Please try again later."
@@ -6336,80 +6336,80 @@ msgstr ""
6336
  "Ihre Zahlung kann momentan nicht ausgeführt werden. Bitte versuchen Sie es "
6337
  "später noch einmal."
6338
 
6339
- #: includes/views/submit_listing.php:531
6340
  #, fuzzy
6341
  msgctxt "submit listing"
6342
  msgid "Please select a category."
6343
  msgstr "Bitte wähle eine Preisoption für die Kategorie \"%s\""
6344
 
6345
- #: includes/views/submit_listing.php:544
6346
  #, fuzzy
6347
  msgctxt "submit listing"
6348
  msgid "Please select a category for your listing."
6349
  msgstr "Bitte wähle eine Preisoption für die Kategorie \"%s\""
6350
 
6351
- #: includes/views/submit_listing.php:564
6352
  msgctxt "submit listing"
6353
  msgid "Please choose a valid category for your plan."
6354
  msgstr ""
6355
 
6356
- #: includes/views/submit_listing.php:566
6357
  #, fuzzy
6358
  msgctxt "submit listing"
6359
  msgid "Please choose a valid fee plan for your category selection."
6360
  msgstr "Bitte wähle eine Preisoption für die Kategorie \"%s\""
6361
 
6362
- #: includes/views/submit_listing.php:807
6363
  #, fuzzy
6364
  msgctxt "submit listing"
6365
  msgid "Please enter your desired username."
6366
  msgstr "Bitte geben Sie einen Namen ein."
6367
 
6368
- #: includes/views/submit_listing.php:812
6369
  #, fuzzy
6370
  msgctxt "submit listing"
6371
  msgid "Please enter the e-mail for your new account."
6372
  msgstr "Bitte geben Sie einen Namen ein."
6373
 
6374
- #: includes/views/submit_listing.php:817
6375
  msgctxt "submit listing"
6376
  msgid "Please enter the password for your new account."
6377
  msgstr ""
6378
 
6379
- #: includes/views/submit_listing.php:827
6380
  msgctxt "submit listing"
6381
  msgid "The username you chose is already in use. Please use a different one."
6382
  msgstr ""
6383
 
6384
- #: includes/views/submit_listing.php:832
6385
  msgctxt "submit listing"
6386
  msgid "The e-mail address you chose for your account is already in use."
6387
  msgstr ""
6388
 
6389
- #: includes/views/submit_listing.php:847
6390
  msgctxt "submit listing"
6391
  msgid "Create a user account on this site"
6392
  msgstr ""
6393
 
6394
- #: includes/views/submit_listing.php:854
6395
  msgctxt "submit listing"
6396
  msgid ""
6397
  "You need to create an account on the site. Please fill out the form below."
6398
  msgstr ""
6399
 
6400
- #: includes/views/submit_listing.php:860
6401
  #, fuzzy
6402
  msgctxt "submit listing"
6403
  msgid "Username:"
6404
  msgstr "Benutzer"
6405
 
6406
- #: includes/views/submit_listing.php:869
6407
  #, fuzzy
6408
  msgctxt "submit listing"
6409
  msgid "Email:"
6410
  msgstr "E-mail: %s"
6411
 
6412
- #: includes/views/submit_listing.php:878
6413
  msgctxt "submit listing"
6414
  msgid "Password:"
6415
  msgstr ""
@@ -6565,23 +6565,23 @@ msgid "Social Site (Other)"
6565
  msgstr "Soziale Seite (Twitter)"
6566
 
6567
  #: includes/fields/class-fieldtypes-social.php:95
6568
- #: includes/fields/class-fieldtypes-url.php:136
6569
  msgctxt "form-fields api"
6570
  msgid "URL:"
6571
  msgstr "URL:"
6572
 
6573
- #: includes/fields/class-fieldtypes-social.php:108
6574
  #, fuzzy
6575
  msgctxt "form-fields api"
6576
  msgid "Text:"
6577
  msgstr "Textbereich"
6578
 
6579
- #: includes/fields/class-fieldtypes-social.php:114
6580
  msgctxt "form-fields api"
6581
- msgid "Text to be displayed along with icon"
6582
  msgstr ""
6583
 
6584
- #: includes/fields/class-fieldtypes-social.php:121
6585
  #, fuzzy
6586
  msgctxt "form-fields api"
6587
  msgid "Type:"
@@ -6607,12 +6607,12 @@ msgctxt "form-fields api"
6607
  msgid "Social Site (Twitter handle)"
6608
  msgstr "Soziale Seite (Twitter)"
6609
 
6610
- #: includes/fields/class-fieldtypes-url.php:5
6611
  msgctxt "form-fields api"
6612
  msgid "URL Field"
6613
  msgstr "URL Feld"
6614
 
6615
- #: includes/fields/class-fieldtypes-url.php:144
6616
  msgctxt "form-fields api"
6617
  msgid "Link Text (optional):"
6618
  msgstr "Link Text (optional):"
@@ -6684,7 +6684,7 @@ msgid "Caption for %s is required."
6684
  msgstr "%s ist ein Pflichtfeld."
6685
 
6686
  #: includes/fields/class-fieldtypes-image.php:100
6687
- #: includes/fields/class-fieldtypes-social.php:156
6688
  msgctxt "form-fields-api"
6689
  msgid "Remove"
6690
  msgstr "Entfernen"
@@ -6877,18 +6877,18 @@ msgctxt "image field"
6877
  msgid "Caption for %s is required."
6878
  msgstr "%s ist ein Pflichtfeld."
6879
 
6880
- #: includes/functions.php:1257
6881
  #, fuzzy
6882
  msgctxt "templates"
6883
  msgid "Return to results"
6884
  msgstr "Zurück zum Verzeichnis"
6885
 
6886
- #: includes/functions.php:1261 includes/functions.php:1266
6887
  msgctxt "templates"
6888
  msgid "Go back"
6889
  msgstr ""
6890
 
6891
- #: includes/payment.php:278 templates/renew-resume.tpl.php:39
6892
  #, fuzzy
6893
  msgctxt "templates"
6894
  msgid "Return to fee selection"
@@ -6951,7 +6951,7 @@ msgstr ""
6951
  "angezeigt. Wenn du das nicht möchtest, klicke <a>hier</a> um die "
6952
  "Einstellungen zu ändern."
6953
 
6954
- #: includes/views/submit_listing.php:339
6955
  msgctxt "templates"
6956
  msgid ""
6957
  "<b>View not available</b>. Do you have the \"Disable Frontend Listing "
@@ -6960,20 +6960,20 @@ msgstr ""
6960
  "<b>View not available</b>. Do you have the \"Disable Frontend Listing "
6961
  "Submission?\" setting checked?"
6962
 
6963
- #: includes/views/submit_listing.php:341
6964
  msgctxt "templates"
6965
  msgid ""
6966
  "Listing submission has been disabled. Contact the administrator for details."
6967
  msgstr ""
6968
 
6969
- #: includes/views/submit_listing.php:506
6970
  msgctxt "templates"
6971
  msgid ""
6972
  "Listing submission is not available at the moment. Contact the administrator "
6973
  "for details."
6974
  msgstr ""
6975
 
6976
- #: includes/views/submit_listing.php:509
6977
  msgctxt "templates"
6978
  msgid ""
6979
  "<b>View not available</b>, there is no \"Category\" association field. %s "
@@ -6981,17 +6981,17 @@ msgid ""
6981
  "an existing field"
6982
  msgstr ""
6983
 
6984
- #: includes/views/submit_listing.php:916
6985
  msgctxt "templates"
6986
  msgid "Please agree to the Terms and Conditions."
6987
  msgstr "Bitte akzeptieren Sie die Allgemeinen Geschäftsbedingungen."
6988
 
6989
- #: includes/views/submit_listing.php:924
6990
  msgctxt "templates"
6991
  msgid "Terms and Conditions:"
6992
  msgstr "AGBs:"
6993
 
6994
- #: includes/views/submit_listing.php:933
6995
  msgctxt "templates"
6996
  msgid "I agree to the <a>Terms and Conditions</a>"
6997
  msgstr "Ich akzeptiere die <a>AGB</a>s"
@@ -7209,24 +7209,24 @@ msgctxt "templates"
7209
  msgid "Your listing has been submitted."
7210
  msgstr "Dein Eintrag wurde erfolgreich eingesandt."
7211
 
7212
- #: templates/submit-listing-done.tpl.php:11
7213
  msgctxt "templates"
7214
  msgid "Your listing changes were saved."
7215
  msgstr "Deine Eintragsänderungen wurden gespeichert."
7216
 
7217
- #: templates/submit-listing-done.tpl.php:16
7218
  msgctxt "templates"
7219
  msgid "Go to your listing"
7220
  msgstr "Zum Eintrag"
7221
 
7222
- #: templates/submit-listing-done.tpl.php:18
7223
  msgctxt "templates"
7224
  msgid ""
7225
  "Your listing requires admin approval. You'll be notified once your listing "
7226
  "is approved."
7227
  msgstr ""
7228
 
7229
- #: templates/submit-listing-done.tpl.php:22
7230
  msgctxt "templates"
7231
  msgid "Return to directory."
7232
  msgstr "Zurück zum Verzeichnis."
@@ -7745,7 +7745,7 @@ msgctxt "payments"
7745
  msgid "Bill To:"
7746
  msgstr ""
7747
 
7748
- #: includes/payment.php:97
7749
  msgctxt "checkout"
7750
  msgid "Print Receipt"
7751
  msgstr ""
@@ -7990,7 +7990,7 @@ msgctxt "checkout"
7990
  msgid "Your payment is awaiting verification by the gateway."
7991
  msgstr ""
7992
 
7993
- #: templates/checkout-confirmation.tpl.php:19
7994
  msgctxt "checkout"
7995
  msgid ""
7996
  "Verification usually takes some minutes. This page will automatically "
@@ -8098,7 +8098,7 @@ msgctxt "utils"
8098
  msgid "Error while uploading file"
8099
  msgstr "Fehler während des Hochladens der Datei"
8100
 
8101
- #: includes/views/delete_listing.php:32
8102
  msgctxt "delete listing"
8103
  msgid "Your listing has been deleted."
8104
  msgstr "Dein Eintrag wurde gelöscht."
@@ -8425,14 +8425,14 @@ msgctxt "preview"
8425
  msgid "This is just a preview. The listing has not been published yet."
8426
  msgstr "Dies ist nur eine Vorschau. Der Eintrag wurde bisher nicht publiziert."
8427
 
8428
- #: includes/views/submit_listing.php:675
8429
  msgctxt "listing submit"
8430
  msgid ""
8431
  "Something went wrong. Please check the form for errors, correct them and "
8432
  "submit again."
8433
  msgstr ""
8434
 
8435
- #: includes/views/submit_listing.php:759
8436
  msgctxt "listing submit"
8437
  msgid ""
8438
  "Image upload is required, please provide at least one image and submit again."
5
  "Project-Id-Version: Business Directory Plugin v5.5\n"
6
  "Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/business-"
7
  "directory-plugin\n"
8
+ "POT-Creation-Date: 2019-04-23 21:12:39+00:00\n"
9
  "PO-Revision-Date: 2018-03-02 08:40-0500\n"
10
  "Last-Translator: Axel J. Metayer <axel@kfz.net>\n"
11
  "Language-Team: Business Directory Plugin <support@businessdirectoryplugin."
1207
  "Sie können diese benutzerdefinierten Felder selbst erzeugen \"Formularfelder "
1208
  "verwalten\" oder vom Branchenverzeichnis automatisch erstellen lassen."
1209
 
1210
+ #: includes/admin/form-fields.php:214 includes/views/submit_listing.php:512
1211
  msgctxt "admin"
1212
  msgid "Go to \"Manage Form Fields\""
1213
  msgstr "zu \"Formularfelder verwalten\""
1217
  msgid "Create these required fields for me"
1218
  msgstr "Erstelle diese benötigten Felder für mich"
1219
 
1220
+ #: includes/payment.php:180
1221
  msgctxt "admin"
1222
  msgid "Pending Abandonment"
1223
  msgstr "Ausstehende Zahlungen"
1224
 
1225
+ #: includes/payment.php:185
1226
  msgctxt "admin"
1227
  msgid "Abandoned"
1228
  msgstr "Abgebrochen"
1237
  msgid "Reported"
1238
  msgstr ""
1239
 
1240
+ #: includes/class-listing.php:771
1241
  msgctxt "listing status"
1242
  msgid "Unknown"
1243
  msgstr ""
1244
 
1245
+ #: includes/class-listing.php:772
1246
  msgctxt "listing status"
1247
  msgid "Legacy"
1248
  msgstr ""
1249
 
1250
+ #: includes/class-listing.php:773
1251
  #, fuzzy
1252
  msgctxt "listing status"
1253
  msgid "Incomplete"
1254
  msgstr "Abgeschlossen"
1255
 
1256
+ #: includes/class-listing.php:774
1257
  #, fuzzy
1258
  msgctxt "listing status"
1259
  msgid "Pending Payment"
1260
  msgstr "Ausstehende Zahlungen"
1261
 
1262
+ #: includes/class-listing.php:775
1263
  #, fuzzy
1264
  msgctxt "listing status"
1265
  msgid "Complete"
1266
  msgstr "Abgeschlossen"
1267
 
1268
+ #: includes/class-listing.php:776
1269
  #, fuzzy
1270
  msgctxt "listing status"
1271
  msgid "Pending Upgrade"
1272
  msgstr "Ausstehende Aktualisierung"
1273
 
1274
+ #: includes/class-listing.php:777
1275
  #, fuzzy
1276
  msgctxt "listing status"
1277
  msgid "Expired"
1278
  msgstr "Abgelaufen"
1279
 
1280
+ #: includes/class-listing.php:778
1281
  #, fuzzy
1282
  msgctxt "listing status"
1283
  msgid "Pending Renewal"
1284
  msgstr "Aktiv + Ausstehende Erneuerungen"
1285
 
1286
+ #: includes/class-listing.php:779
1287
  #, fuzzy
1288
  msgctxt "listing status"
1289
  msgid "Abandoned"
1950
  msgid "Theme was updated successfully."
1951
  msgstr "Der Import wurde erfolgreich abgeschlossen."
1952
 
1953
+ #: includes/themes.php:829
1954
  msgctxt "themes"
1955
  msgid "ZIP file is not a valid BD theme file."
1956
  msgstr "Bitte eine gültige E-mailadresse eingeben."
1957
 
1958
+ #: includes/themes.php:835
1959
  msgctxt "themes"
1960
  msgid "Could not create themes directory."
1961
  msgstr "wpbdp-csv-exports Verzeichnis konnte nicht erstellt werden."
1962
 
1963
+ #: includes/themes.php:843
1964
  msgctxt "themes"
1965
  msgid "Could not remove previous theme directory \"%s\"."
1966
  msgstr "Konnte Eintragskategorie nicht erstellen \"%s\""
1967
 
1968
+ #: includes/themes.php:849
1969
  msgctxt "themes"
1970
  msgid "Could not move new theme into theme directory."
1971
  msgstr "Momentan sind keine Einträge im Verzeichnis vorhanden."
2953
  msgid "Automatically generate excerpt from content field?"
2954
  msgstr "Automatisches Generierung eines Auszugs aus dem Inhaltsfeld?"
2955
 
2956
+ #: includes/fields/class-fieldtypes-url.php:36
2957
  msgctxt "form-fields admin"
2958
  msgid "Open link in a new window?"
2959
  msgstr "Link im neuen Fenster öffnen?"
2960
 
2961
+ #: includes/fields/class-fieldtypes-url.php:39
2962
  msgctxt "form-fields admin"
2963
  msgid "Use rel=\"nofollow\" when displaying the link?"
2964
  msgstr "Benutze rel=\"nofollow\" wenn der link angezeigt wird?"
3678
  msgstr "Author"
3679
 
3680
  #: includes/admin/settings/class-settings-bootstrap.php:682
3681
+ #: includes/functions.php:1181
3682
  msgctxt "admin settings"
3683
  msgid "Date posted"
3684
  msgstr "Datum gepostet"
3685
 
3686
  #: includes/admin/settings/class-settings-bootstrap.php:683
3687
+ #: includes/functions.php:1182
3688
  msgctxt "admin settings"
3689
  msgid "Date last modified"
3690
  msgstr "Datum zuletzt verändert"
4073
  "not activated."
4074
  msgstr ""
4075
 
4076
+ #: includes/functions.php:1179
4077
  msgctxt "admin settings"
4078
  msgid "User"
4079
  msgstr "Benutzer"
4080
 
4081
+ #: includes/functions.php:1180
4082
  msgctxt "admin settings"
4083
  msgid "User registration date"
4084
  msgstr "Eintrag Enddatum"
5872
  msgid "Add New Listing"
5873
  msgstr "Neuer Eintrag"
5874
 
5875
+ #: includes/class-listing.php:305
5876
  #, fuzzy
5877
  msgctxt "listing"
5878
  msgid "Listing has no registered payments"
5879
  msgstr "Eintrag Enddatum"
5880
 
5881
+ #: includes/class-listing.php:313
5882
  #, fuzzy
5883
  msgctxt "listing"
5884
  msgid "Can't delete payment"
5885
  msgstr "Bezahlung zurückweisen"
5886
 
5887
+ #: includes/class-listing.php:352
5888
  #, fuzzy
5889
  msgctxt "listing"
5890
  msgid "Listing expired"
5891
  msgstr "Ein Eintrag läuft aus."
5892
 
5893
+ #: includes/class-listing.php:511
5894
  #, fuzzy
5895
  msgctxt "listing"
5896
  msgid "(Unavailable Plan)"
5897
  msgstr "(Preis nicht verfügbar)"
5898
 
5899
+ #: includes/class-listing.php:668
5900
  #, fuzzy
5901
  msgctxt "listing"
5902
  msgid "Plan \"%s\" (recurring)"
5903
  msgstr "(wiederkehrend)"
5904
 
5905
+ #: includes/class-listing.php:670
5906
  msgctxt "listing"
5907
  msgid "Plan \"%s\""
5908
  msgstr ""
6159
  "Bezahleinstellungen zu ändern. Das Verzeichnis wird im <i>kostenlosen Modus</"
6160
  "i> ausgeführt, bis die Änderungen gemacht wurden."
6161
 
6162
+ #: includes/class-payment.php:82
6163
  msgctxt "payment"
6164
+ msgid "Payment status changed from \"%1$s\" to \"%2$s\"."
6165
  msgstr ""
6166
 
6167
+ #: includes/class-payment.php:123
6168
  #, fuzzy
6169
  msgctxt "payment"
6170
  msgid "Initial payment (\"%s\")"
6171
  msgstr "Initialbezahlung"
6172
 
6173
+ #: includes/class-payment.php:126
6174
  #, fuzzy
6175
  msgctxt "payment"
6176
  msgid "Renewal payment (\"%s\")"
6177
  msgstr "Bezahlung zurückweisen"
6178
 
6179
+ #: includes/class-payment.php:313
6180
  #, fuzzy
6181
  msgctxt "payment"
6182
  msgid "Pending"
6183
  msgstr "Ausstehend"
6184
 
6185
+ #: includes/class-payment.php:314
6186
  msgctxt "payment"
6187
  msgid "Failed"
6188
  msgstr ""
6189
 
6190
+ #: includes/class-payment.php:315
6191
  #, fuzzy
6192
  msgctxt "payment"
6193
  msgid "Completed"
6194
  msgstr "Abgeschlossen"
6195
 
6196
+ #: includes/class-payment.php:316
6197
  #, fuzzy
6198
  msgctxt "payment"
6199
  msgid "Canceled"
6200
  msgstr "Abgebrochen"
6201
 
6202
+ #: includes/class-payment.php:317
6203
  msgctxt "payment"
6204
  msgid "On Hold"
6205
  msgstr ""
6206
 
6207
+ #: includes/class-payment.php:318
6208
  msgctxt "payment"
6209
  msgid "Refunded"
6210
  msgstr ""
6211
 
6212
+ #: includes/class-payment.php:138
6213
  msgctxt "payment summary"
6214
  msgid "%s. Admin Posted."
6215
  msgstr ""
6216
 
6217
+ #: includes/class-payment.php:140
6218
  #, fuzzy
6219
  msgctxt "payment summary"
6220
  msgid "%s. Imported Listing."
6221
  msgstr "Einträge importieren"
6222
 
6223
+ #: includes/class-payment.php:218
6224
  #, fuzzy
6225
  msgctxt "submit listing"
6226
  msgid "Listing submitted by admin. Payment skipped."
6288
  "Du bist als Administrator eingeloggt. Alle Bezahlungsschritte werden "
6289
  "übersprungen."
6290
 
6291
+ #: includes/views/submit_listing.php:388
6292
  #, fuzzy
6293
  msgctxt "submit listing"
6294
  msgid "Category selection"
6295
  msgstr "Kategorien auswählen"
6296
 
6297
+ #: includes/views/submit_listing.php:388
6298
  #, fuzzy
6299
  msgctxt "submit listing"
6300
  msgid "Category & plan selection"
6301
  msgstr "Kategorien auswählen"
6302
 
6303
+ #: includes/views/submit_listing.php:393
6304
  #, fuzzy
6305
  msgctxt "submit listing"
6306
  msgid "Listing Information"
6307
  msgstr "Eintrag Informationen"
6308
 
6309
+ #: includes/views/submit_listing.php:398
6310
  #, fuzzy
6311
  msgctxt "submit listing"
6312
  msgid "Listing Images"
6313
  msgstr "Eintrag Bilder"
6314
 
6315
+ #: includes/views/submit_listing.php:406
6316
  msgctxt "submit listing"
6317
  msgid "Account Creation"
6318
  msgstr ""
6319
 
6320
+ #: includes/views/submit_listing.php:412
6321
  #, fuzzy
6322
  msgctxt "submit listing"
6323
  msgid "Terms and Conditions"
6324
  msgstr "Bedingungen und Konditionen"
6325
 
6326
+ #: includes/views/submit_listing.php:449
6327
  msgctxt "submit listing"
6328
  msgid "(Please choose a fee plan above)"
6329
  msgstr ""
6330
 
6331
+ #: includes/views/submit_listing.php:499
6332
  #, fuzzy
6333
  msgctxt "submit listing"
6334
  msgid "Can not submit a listing at this moment. Please try again later."
6336
  "Ihre Zahlung kann momentan nicht ausgeführt werden. Bitte versuchen Sie es "
6337
  "später noch einmal."
6338
 
6339
+ #: includes/views/submit_listing.php:527
6340
  #, fuzzy
6341
  msgctxt "submit listing"
6342
  msgid "Please select a category."
6343
  msgstr "Bitte wähle eine Preisoption für die Kategorie \"%s\""
6344
 
6345
+ #: includes/views/submit_listing.php:540
6346
  #, fuzzy
6347
  msgctxt "submit listing"
6348
  msgid "Please select a category for your listing."
6349
  msgstr "Bitte wähle eine Preisoption für die Kategorie \"%s\""
6350
 
6351
+ #: includes/views/submit_listing.php:560
6352
  msgctxt "submit listing"
6353
  msgid "Please choose a valid category for your plan."
6354
  msgstr ""
6355
 
6356
+ #: includes/views/submit_listing.php:562
6357
  #, fuzzy
6358
  msgctxt "submit listing"
6359
  msgid "Please choose a valid fee plan for your category selection."
6360
  msgstr "Bitte wähle eine Preisoption für die Kategorie \"%s\""
6361
 
6362
+ #: includes/views/submit_listing.php:803
6363
  #, fuzzy
6364
  msgctxt "submit listing"
6365
  msgid "Please enter your desired username."
6366
  msgstr "Bitte geben Sie einen Namen ein."
6367
 
6368
+ #: includes/views/submit_listing.php:808
6369
  #, fuzzy
6370
  msgctxt "submit listing"
6371
  msgid "Please enter the e-mail for your new account."
6372
  msgstr "Bitte geben Sie einen Namen ein."
6373
 
6374
+ #: includes/views/submit_listing.php:813
6375
  msgctxt "submit listing"
6376
  msgid "Please enter the password for your new account."
6377
  msgstr ""
6378
 
6379
+ #: includes/views/submit_listing.php:823
6380
  msgctxt "submit listing"
6381
  msgid "The username you chose is already in use. Please use a different one."
6382
  msgstr ""
6383
 
6384
+ #: includes/views/submit_listing.php:828
6385
  msgctxt "submit listing"
6386
  msgid "The e-mail address you chose for your account is already in use."
6387
  msgstr ""
6388
 
6389
+ #: includes/views/submit_listing.php:843
6390
  msgctxt "submit listing"
6391
  msgid "Create a user account on this site"
6392
  msgstr ""
6393
 
6394
+ #: includes/views/submit_listing.php:850
6395
  msgctxt "submit listing"
6396
  msgid ""
6397
  "You need to create an account on the site. Please fill out the form below."
6398
  msgstr ""
6399
 
6400
+ #: includes/views/submit_listing.php:856
6401
  #, fuzzy
6402
  msgctxt "submit listing"
6403
  msgid "Username:"
6404
  msgstr "Benutzer"
6405
 
6406
+ #: includes/views/submit_listing.php:865
6407
  #, fuzzy
6408
  msgctxt "submit listing"
6409
  msgid "Email:"
6410
  msgstr "E-mail: %s"
6411
 
6412
+ #: includes/views/submit_listing.php:874
6413
  msgctxt "submit listing"
6414
  msgid "Password:"
6415
  msgstr ""
6565
  msgstr "Soziale Seite (Twitter)"
6566
 
6567
  #: includes/fields/class-fieldtypes-social.php:95
6568
+ #: includes/fields/class-fieldtypes-url.php:149
6569
  msgctxt "form-fields api"
6570
  msgid "URL:"
6571
  msgstr "URL:"
6572
 
6573
+ #: includes/fields/class-fieldtypes-social.php:115
6574
  #, fuzzy
6575
  msgctxt "form-fields api"
6576
  msgid "Text:"
6577
  msgstr "Textbereich"
6578
 
6579
+ #: includes/fields/class-fieldtypes-social.php:122
6580
  msgctxt "form-fields api"
6581
+ msgid "Text to be displayed for social field"
6582
  msgstr ""
6583
 
6584
+ #: includes/fields/class-fieldtypes-social.php:140
6585
  #, fuzzy
6586
  msgctxt "form-fields api"
6587
  msgid "Type:"
6607
  msgid "Social Site (Twitter handle)"
6608
  msgstr "Soziale Seite (Twitter)"
6609
 
6610
+ #: includes/fields/class-fieldtypes-url.php:18
6611
  msgctxt "form-fields api"
6612
  msgid "URL Field"
6613
  msgstr "URL Feld"
6614
 
6615
+ #: includes/fields/class-fieldtypes-url.php:157
6616
  msgctxt "form-fields api"
6617
  msgid "Link Text (optional):"
6618
  msgstr "Link Text (optional):"
6684
  msgstr "%s ist ein Pflichtfeld."
6685
 
6686
  #: includes/fields/class-fieldtypes-image.php:100
6687
+ #: includes/fields/class-fieldtypes-social.php:175
6688
  msgctxt "form-fields-api"
6689
  msgid "Remove"
6690
  msgstr "Entfernen"
6877
  msgid "Caption for %s is required."
6878
  msgstr "%s ist ein Pflichtfeld."
6879
 
6880
+ #: includes/functions.php:1259
6881
  #, fuzzy
6882
  msgctxt "templates"
6883
  msgid "Return to results"
6884
  msgstr "Zurück zum Verzeichnis"
6885
 
6886
+ #: includes/functions.php:1263 includes/functions.php:1268
6887
  msgctxt "templates"
6888
  msgid "Go back"
6889
  msgstr ""
6890
 
6891
+ #: includes/payment.php:277 templates/renew-resume.tpl.php:39
6892
  #, fuzzy
6893
  msgctxt "templates"
6894
  msgid "Return to fee selection"
6951
  "angezeigt. Wenn du das nicht möchtest, klicke <a>hier</a> um die "
6952
  "Einstellungen zu ändern."
6953
 
6954
+ #: includes/views/submit_listing.php:335
6955
  msgctxt "templates"
6956
  msgid ""
6957
  "<b>View not available</b>. Do you have the \"Disable Frontend Listing "
6960
  "<b>View not available</b>. Do you have the \"Disable Frontend Listing "
6961
  "Submission?\" setting checked?"
6962
 
6963
+ #: includes/views/submit_listing.php:337
6964
  msgctxt "templates"
6965
  msgid ""
6966
  "Listing submission has been disabled. Contact the administrator for details."
6967
  msgstr ""
6968
 
6969
+ #: includes/views/submit_listing.php:502
6970
  msgctxt "templates"
6971
  msgid ""
6972
  "Listing submission is not available at the moment. Contact the administrator "
6973
  "for details."
6974
  msgstr ""
6975
 
6976
+ #: includes/views/submit_listing.php:505
6977
  msgctxt "templates"
6978
  msgid ""
6979
  "<b>View not available</b>, there is no \"Category\" association field. %s "
6981
  "an existing field"
6982
  msgstr ""
6983
 
6984
+ #: includes/views/submit_listing.php:912
6985
  msgctxt "templates"
6986
  msgid "Please agree to the Terms and Conditions."
6987
  msgstr "Bitte akzeptieren Sie die Allgemeinen Geschäftsbedingungen."
6988
 
6989
+ #: includes/views/submit_listing.php:920
6990
  msgctxt "templates"
6991
  msgid "Terms and Conditions:"
6992
  msgstr "AGBs:"
6993
 
6994
+ #: includes/views/submit_listing.php:929
6995
  msgctxt "templates"
6996
  msgid "I agree to the <a>Terms and Conditions</a>"
6997
  msgstr "Ich akzeptiere die <a>AGB</a>s"
7209
  msgid "Your listing has been submitted."
7210
  msgstr "Dein Eintrag wurde erfolgreich eingesandt."
7211
 
7212
+ #: templates/submit-listing-done.tpl.php:14
7213
  msgctxt "templates"
7214
  msgid "Your listing changes were saved."
7215
  msgstr "Deine Eintragsänderungen wurden gespeichert."
7216
 
7217
+ #: templates/submit-listing-done.tpl.php:19
7218
  msgctxt "templates"
7219
  msgid "Go to your listing"
7220
  msgstr "Zum Eintrag"
7221
 
7222
+ #: templates/submit-listing-done.tpl.php:21
7223
  msgctxt "templates"
7224
  msgid ""
7225
  "Your listing requires admin approval. You'll be notified once your listing "
7226
  "is approved."
7227
  msgstr ""
7228
 
7229
+ #: templates/submit-listing-done.tpl.php:25
7230
  msgctxt "templates"
7231
  msgid "Return to directory."
7232
  msgstr "Zurück zum Verzeichnis."
7745
  msgid "Bill To:"
7746
  msgstr ""
7747
 
7748
+ #: includes/payment.php:96
7749
  msgctxt "checkout"
7750
  msgid "Print Receipt"
7751
  msgstr ""
7990
  msgid "Your payment is awaiting verification by the gateway."
7991
  msgstr ""
7992
 
7993
+ #: templates/checkout-confirmation.tpl.php:20
7994
  msgctxt "checkout"
7995
  msgid ""
7996
  "Verification usually takes some minutes. This page will automatically "
8098
  msgid "Error while uploading file"
8099
  msgstr "Fehler während des Hochladens der Datei"
8100
 
8101
+ #: includes/views/delete_listing.php:38
8102
  msgctxt "delete listing"
8103
  msgid "Your listing has been deleted."
8104
  msgstr "Dein Eintrag wurde gelöscht."
8425
  msgid "This is just a preview. The listing has not been published yet."
8426
  msgstr "Dies ist nur eine Vorschau. Der Eintrag wurde bisher nicht publiziert."
8427
 
8428
+ #: includes/views/submit_listing.php:671
8429
  msgctxt "listing submit"
8430
  msgid ""
8431
  "Something went wrong. Please check the form for errors, correct them and "
8432
  "submit again."
8433
  msgstr ""
8434
 
8435
+ #: includes/views/submit_listing.php:755
8436
  msgctxt "listing submit"
8437
  msgid ""
8438
  "Image upload is required, please provide at least one image and submit again."
languages/WPBDM-en_US.mo CHANGED
Binary file
languages/WPBDM-en_US.po CHANGED
@@ -5,7 +5,7 @@ msgstr ""
5
  "Project-Id-Version: Business Directory Plugin v5.5\n"
6
  "Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/business-"
7
  "directory-plugin\n"
8
- "POT-Creation-Date: 2019-03-20 00:09:46+00:00\n"
9
  "PO-Revision-Date: 2017-01-16 17:47-0500\n"
10
  "Last-Translator: BD Team <support@businessdirectoryplugin.com>\n"
11
  "Language-Team: BD Team <support@businessdirectoryplugin.com>\n"
@@ -1088,7 +1088,7 @@ msgid ""
1088
  "or let Business Directory do this for you automatically."
1089
  msgstr ""
1090
 
1091
- #: includes/admin/form-fields.php:214 includes/views/submit_listing.php:516
1092
  msgctxt "admin"
1093
  msgid "Go to \"Manage Form Fields\""
1094
  msgstr ""
@@ -1098,12 +1098,12 @@ msgctxt "admin"
1098
  msgid "Create these required fields for me"
1099
  msgstr ""
1100
 
1101
- #: includes/payment.php:181
1102
  msgctxt "admin"
1103
  msgid "Pending Abandonment"
1104
  msgstr ""
1105
 
1106
- #: includes/payment.php:186
1107
  msgctxt "admin"
1108
  msgid "Abandoned"
1109
  msgstr ""
@@ -1118,47 +1118,47 @@ msgctxt "listing status"
1118
  msgid "Reported"
1119
  msgstr ""
1120
 
1121
- #: includes/class-listing.php:768
1122
  msgctxt "listing status"
1123
  msgid "Unknown"
1124
  msgstr ""
1125
 
1126
- #: includes/class-listing.php:769
1127
  msgctxt "listing status"
1128
  msgid "Legacy"
1129
  msgstr ""
1130
 
1131
- #: includes/class-listing.php:770
1132
  msgctxt "listing status"
1133
  msgid "Incomplete"
1134
  msgstr ""
1135
 
1136
- #: includes/class-listing.php:771
1137
  msgctxt "listing status"
1138
  msgid "Pending Payment"
1139
  msgstr ""
1140
 
1141
- #: includes/class-listing.php:772
1142
  msgctxt "listing status"
1143
  msgid "Complete"
1144
  msgstr ""
1145
 
1146
- #: includes/class-listing.php:773
1147
  msgctxt "listing status"
1148
  msgid "Pending Upgrade"
1149
  msgstr ""
1150
 
1151
- #: includes/class-listing.php:774
1152
  msgctxt "listing status"
1153
  msgid "Expired"
1154
  msgstr ""
1155
 
1156
- #: includes/class-listing.php:775
1157
  msgctxt "listing status"
1158
  msgid "Pending Renewal"
1159
  msgstr ""
1160
 
1161
- #: includes/class-listing.php:776
1162
  msgctxt "listing status"
1163
  msgid "Abandoned"
1164
  msgstr ""
@@ -1755,22 +1755,22 @@ msgctxt "themes"
1755
  msgid "Theme was updated successfully."
1756
  msgstr ""
1757
 
1758
- #: includes/themes.php:825
1759
  msgctxt "themes"
1760
  msgid "ZIP file is not a valid BD theme file."
1761
  msgstr ""
1762
 
1763
- #: includes/themes.php:831
1764
  msgctxt "themes"
1765
  msgid "Could not create themes directory."
1766
  msgstr ""
1767
 
1768
- #: includes/themes.php:839
1769
  msgctxt "themes"
1770
  msgid "Could not remove previous theme directory \"%s\"."
1771
  msgstr ""
1772
 
1773
- #: includes/themes.php:845
1774
  msgctxt "themes"
1775
  msgid "Could not move new theme into theme directory."
1776
  msgstr ""
@@ -2677,12 +2677,12 @@ msgctxt "form-fields admin"
2677
  msgid "Automatically generate excerpt from content field?"
2678
  msgstr ""
2679
 
2680
- #: includes/fields/class-fieldtypes-url.php:23
2681
  msgctxt "form-fields admin"
2682
  msgid "Open link in a new window?"
2683
  msgstr ""
2684
 
2685
- #: includes/fields/class-fieldtypes-url.php:26
2686
  msgctxt "form-fields admin"
2687
  msgid "Use rel=\"nofollow\" when displaying the link?"
2688
  msgstr ""
@@ -3339,13 +3339,13 @@ msgid "Author"
3339
  msgstr ""
3340
 
3341
  #: includes/admin/settings/class-settings-bootstrap.php:682
3342
- #: includes/functions.php:1179
3343
  msgctxt "admin settings"
3344
  msgid "Date posted"
3345
  msgstr ""
3346
 
3347
  #: includes/admin/settings/class-settings-bootstrap.php:683
3348
- #: includes/functions.php:1180
3349
  msgctxt "admin settings"
3350
  msgid "Date last modified"
3351
  msgstr ""
@@ -3716,12 +3716,12 @@ msgid ""
3716
  "not activated."
3717
  msgstr ""
3718
 
3719
- #: includes/functions.php:1177
3720
  msgctxt "admin settings"
3721
  msgid "User"
3722
  msgstr ""
3723
 
3724
- #: includes/functions.php:1178
3725
  msgctxt "admin settings"
3726
  msgid "User registration date"
3727
  msgstr ""
@@ -5281,32 +5281,32 @@ msgctxt "listing"
5281
  msgid "Add New Listing"
5282
  msgstr ""
5283
 
5284
- #: includes/class-listing.php:302
5285
  msgctxt "listing"
5286
  msgid "Listing has no registered payments"
5287
  msgstr ""
5288
 
5289
- #: includes/class-listing.php:310
5290
  msgctxt "listing"
5291
  msgid "Can't delete payment"
5292
  msgstr ""
5293
 
5294
- #: includes/class-listing.php:349
5295
  msgctxt "listing"
5296
  msgid "Listing expired"
5297
  msgstr ""
5298
 
5299
- #: includes/class-listing.php:508
5300
  msgctxt "listing"
5301
  msgid "(Unavailable Plan)"
5302
  msgstr ""
5303
 
5304
- #: includes/class-listing.php:665
5305
  msgctxt "listing"
5306
  msgid "Plan \"%s\" (recurring)"
5307
  msgstr ""
5308
 
5309
- #: includes/class-listing.php:667
5310
  msgctxt "listing"
5311
  msgid "Plan \"%s\""
5312
  msgstr ""
@@ -5542,62 +5542,62 @@ msgid ""
5542
  "<i>Free Mode</i>."
5543
  msgstr ""
5544
 
5545
- #: includes/class-payment.php:65
5546
  msgctxt "payment"
5547
- msgid "Payment status changed from \"%s\" to \"%s\"."
5548
  msgstr ""
5549
 
5550
- #: includes/class-payment.php:98
5551
  msgctxt "payment"
5552
  msgid "Initial payment (\"%s\")"
5553
  msgstr ""
5554
 
5555
- #: includes/class-payment.php:101
5556
  msgctxt "payment"
5557
  msgid "Renewal payment (\"%s\")"
5558
  msgstr ""
5559
 
5560
- #: includes/class-payment.php:266
5561
  msgctxt "payment"
5562
  msgid "Pending"
5563
  msgstr ""
5564
 
5565
- #: includes/class-payment.php:267
5566
  msgctxt "payment"
5567
  msgid "Failed"
5568
  msgstr ""
5569
 
5570
- #: includes/class-payment.php:268
5571
  msgctxt "payment"
5572
  msgid "Completed"
5573
  msgstr ""
5574
 
5575
- #: includes/class-payment.php:269
5576
  msgctxt "payment"
5577
  msgid "Canceled"
5578
  msgstr ""
5579
 
5580
- #: includes/class-payment.php:270
5581
  msgctxt "payment"
5582
  msgid "On Hold"
5583
  msgstr ""
5584
 
5585
- #: includes/class-payment.php:271
5586
  msgctxt "payment"
5587
  msgid "Refunded"
5588
  msgstr ""
5589
 
5590
- #: includes/class-payment.php:113
5591
  msgctxt "payment summary"
5592
  msgid "%s. Admin Posted."
5593
  msgstr ""
5594
 
5595
- #: includes/class-payment.php:115
5596
  msgctxt "payment summary"
5597
  msgid "%s. Imported Listing."
5598
  msgstr ""
5599
 
5600
- #: includes/class-payment.php:188
5601
  msgctxt "submit listing"
5602
  msgid "Listing submitted by admin. Payment skipped."
5603
  msgstr ""
@@ -5657,113 +5657,113 @@ msgctxt "submit listing"
5657
  msgid "You're logged in as admin, payment will be skipped."
5658
  msgstr ""
5659
 
5660
- #: includes/views/submit_listing.php:392
5661
  msgctxt "submit listing"
5662
  msgid "Category selection"
5663
  msgstr ""
5664
 
5665
- #: includes/views/submit_listing.php:392
5666
  msgctxt "submit listing"
5667
  msgid "Category & plan selection"
5668
  msgstr ""
5669
 
5670
- #: includes/views/submit_listing.php:397
5671
  msgctxt "submit listing"
5672
  msgid "Listing Information"
5673
  msgstr ""
5674
 
5675
- #: includes/views/submit_listing.php:402
5676
  msgctxt "submit listing"
5677
  msgid "Listing Images"
5678
  msgstr ""
5679
 
5680
- #: includes/views/submit_listing.php:410
5681
  msgctxt "submit listing"
5682
  msgid "Account Creation"
5683
  msgstr ""
5684
 
5685
- #: includes/views/submit_listing.php:416
5686
  msgctxt "submit listing"
5687
  msgid "Terms and Conditions"
5688
  msgstr ""
5689
 
5690
- #: includes/views/submit_listing.php:453
5691
  msgctxt "submit listing"
5692
  msgid "(Please choose a fee plan above)"
5693
  msgstr ""
5694
 
5695
- #: includes/views/submit_listing.php:503
5696
  msgctxt "submit listing"
5697
  msgid "Can not submit a listing at this moment. Please try again later."
5698
  msgstr ""
5699
 
5700
- #: includes/views/submit_listing.php:531
5701
  msgctxt "submit listing"
5702
  msgid "Please select a category."
5703
  msgstr ""
5704
 
5705
- #: includes/views/submit_listing.php:544
5706
  msgctxt "submit listing"
5707
  msgid "Please select a category for your listing."
5708
  msgstr ""
5709
 
5710
- #: includes/views/submit_listing.php:564
5711
  msgctxt "submit listing"
5712
  msgid "Please choose a valid category for your plan."
5713
  msgstr ""
5714
 
5715
- #: includes/views/submit_listing.php:566
5716
  msgctxt "submit listing"
5717
  msgid "Please choose a valid fee plan for your category selection."
5718
  msgstr ""
5719
 
5720
- #: includes/views/submit_listing.php:807
5721
  msgctxt "submit listing"
5722
  msgid "Please enter your desired username."
5723
  msgstr ""
5724
 
5725
- #: includes/views/submit_listing.php:812
5726
  msgctxt "submit listing"
5727
  msgid "Please enter the e-mail for your new account."
5728
  msgstr ""
5729
 
5730
- #: includes/views/submit_listing.php:817
5731
  msgctxt "submit listing"
5732
  msgid "Please enter the password for your new account."
5733
  msgstr ""
5734
 
5735
- #: includes/views/submit_listing.php:827
5736
  msgctxt "submit listing"
5737
  msgid "The username you chose is already in use. Please use a different one."
5738
  msgstr ""
5739
 
5740
- #: includes/views/submit_listing.php:832
5741
  msgctxt "submit listing"
5742
  msgid "The e-mail address you chose for your account is already in use."
5743
  msgstr ""
5744
 
5745
- #: includes/views/submit_listing.php:847
5746
  msgctxt "submit listing"
5747
  msgid "Create a user account on this site"
5748
  msgstr ""
5749
 
5750
- #: includes/views/submit_listing.php:854
5751
  msgctxt "submit listing"
5752
  msgid ""
5753
  "You need to create an account on the site. Please fill out the form below."
5754
  msgstr ""
5755
 
5756
- #: includes/views/submit_listing.php:860
5757
  msgctxt "submit listing"
5758
  msgid "Username:"
5759
  msgstr ""
5760
 
5761
- #: includes/views/submit_listing.php:869
5762
  msgctxt "submit listing"
5763
  msgid "Email:"
5764
  msgstr ""
5765
 
5766
- #: includes/views/submit_listing.php:878
5767
  msgctxt "submit listing"
5768
  msgid "Password:"
5769
  msgstr ""
@@ -5910,22 +5910,22 @@ msgid "Social Site (Other)"
5910
  msgstr ""
5911
 
5912
  #: includes/fields/class-fieldtypes-social.php:95
5913
- #: includes/fields/class-fieldtypes-url.php:136
5914
  msgctxt "form-fields api"
5915
  msgid "URL:"
5916
  msgstr ""
5917
 
5918
- #: includes/fields/class-fieldtypes-social.php:108
5919
  msgctxt "form-fields api"
5920
  msgid "Text:"
5921
  msgstr ""
5922
 
5923
- #: includes/fields/class-fieldtypes-social.php:114
5924
  msgctxt "form-fields api"
5925
- msgid "Text to be displayed along with icon"
5926
  msgstr ""
5927
 
5928
- #: includes/fields/class-fieldtypes-social.php:121
5929
  msgctxt "form-fields api"
5930
  msgid "Type:"
5931
  msgstr ""
@@ -5950,12 +5950,12 @@ msgctxt "form-fields api"
5950
  msgid "Social Site (Twitter handle)"
5951
  msgstr ""
5952
 
5953
- #: includes/fields/class-fieldtypes-url.php:5
5954
  msgctxt "form-fields api"
5955
  msgid "URL Field"
5956
  msgstr ""
5957
 
5958
- #: includes/fields/class-fieldtypes-url.php:144
5959
  msgctxt "form-fields api"
5960
  msgid "Link Text (optional):"
5961
  msgstr ""
@@ -6023,7 +6023,7 @@ msgid "Caption for %s is required."
6023
  msgstr ""
6024
 
6025
  #: includes/fields/class-fieldtypes-image.php:100
6026
- #: includes/fields/class-fieldtypes-social.php:156
6027
  msgctxt "form-fields-api"
6028
  msgid "Remove"
6029
  msgstr ""
@@ -6208,17 +6208,17 @@ msgctxt "image field"
6208
  msgid "Caption for %s is required."
6209
  msgstr ""
6210
 
6211
- #: includes/functions.php:1257
6212
  msgctxt "templates"
6213
  msgid "Return to results"
6214
  msgstr ""
6215
 
6216
- #: includes/functions.php:1261 includes/functions.php:1266
6217
  msgctxt "templates"
6218
  msgid "Go back"
6219
  msgstr ""
6220
 
6221
- #: includes/payment.php:278 templates/renew-resume.tpl.php:39
6222
  msgctxt "templates"
6223
  msgid "Return to fee selection"
6224
  msgstr ""
@@ -6271,27 +6271,27 @@ msgid ""
6271
  "site. If you didn't want that, click <a>here</a> to change the setting."
6272
  msgstr ""
6273
 
6274
- #: includes/views/submit_listing.php:339
6275
  msgctxt "templates"
6276
  msgid ""
6277
  "<b>View not available</b>. Do you have the \"Disable Frontend Listing "
6278
  "Submission?\" setting checked?"
6279
  msgstr ""
6280
 
6281
- #: includes/views/submit_listing.php:341
6282
  msgctxt "templates"
6283
  msgid ""
6284
  "Listing submission has been disabled. Contact the administrator for details."
6285
  msgstr ""
6286
 
6287
- #: includes/views/submit_listing.php:506
6288
  msgctxt "templates"
6289
  msgid ""
6290
  "Listing submission is not available at the moment. Contact the administrator "
6291
  "for details."
6292
  msgstr ""
6293
 
6294
- #: includes/views/submit_listing.php:509
6295
  msgctxt "templates"
6296
  msgid ""
6297
  "<b>View not available</b>, there is no \"Category\" association field. %s "
@@ -6299,17 +6299,17 @@ msgid ""
6299
  "an existing field"
6300
  msgstr ""
6301
 
6302
- #: includes/views/submit_listing.php:916
6303
  msgctxt "templates"
6304
  msgid "Please agree to the Terms and Conditions."
6305
  msgstr ""
6306
 
6307
- #: includes/views/submit_listing.php:924
6308
  msgctxt "templates"
6309
  msgid "Terms and Conditions:"
6310
  msgstr ""
6311
 
6312
- #: includes/views/submit_listing.php:933
6313
  msgctxt "templates"
6314
  msgid "I agree to the <a>Terms and Conditions</a>"
6315
  msgstr ""
@@ -6510,24 +6510,24 @@ msgctxt "templates"
6510
  msgid "Your listing has been submitted."
6511
  msgstr ""
6512
 
6513
- #: templates/submit-listing-done.tpl.php:11
6514
  msgctxt "templates"
6515
  msgid "Your listing changes were saved."
6516
  msgstr ""
6517
 
6518
- #: templates/submit-listing-done.tpl.php:16
6519
  msgctxt "templates"
6520
  msgid "Go to your listing"
6521
  msgstr ""
6522
 
6523
- #: templates/submit-listing-done.tpl.php:18
6524
  msgctxt "templates"
6525
  msgid ""
6526
  "Your listing requires admin approval. You'll be notified once your listing "
6527
  "is approved."
6528
  msgstr ""
6529
 
6530
- #: templates/submit-listing-done.tpl.php:22
6531
  msgctxt "templates"
6532
  msgid "Return to directory."
6533
  msgstr ""
@@ -6990,7 +6990,7 @@ msgctxt "payments"
6990
  msgid "Bill To:"
6991
  msgstr ""
6992
 
6993
- #: includes/payment.php:97
6994
  msgctxt "checkout"
6995
  msgid "Print Receipt"
6996
  msgstr ""
@@ -7207,7 +7207,7 @@ msgctxt "checkout"
7207
  msgid "Your payment is awaiting verification by the gateway."
7208
  msgstr ""
7209
 
7210
- #: templates/checkout-confirmation.tpl.php:19
7211
  msgctxt "checkout"
7212
  msgid ""
7213
  "Verification usually takes some minutes. This page will automatically "
@@ -7307,7 +7307,7 @@ msgctxt "utils"
7307
  msgid "Error while uploading file"
7308
  msgstr ""
7309
 
7310
- #: includes/views/delete_listing.php:32
7311
  msgctxt "delete listing"
7312
  msgid "Your listing has been deleted."
7313
  msgstr ""
@@ -7596,14 +7596,14 @@ msgctxt "preview"
7596
  msgid "This is just a preview. The listing has not been published yet."
7597
  msgstr ""
7598
 
7599
- #: includes/views/submit_listing.php:675
7600
  msgctxt "listing submit"
7601
  msgid ""
7602
  "Something went wrong. Please check the form for errors, correct them and "
7603
  "submit again."
7604
  msgstr ""
7605
 
7606
- #: includes/views/submit_listing.php:759
7607
  msgctxt "listing submit"
7608
  msgid ""
7609
  "Image upload is required, please provide at least one image and submit again."
5
  "Project-Id-Version: Business Directory Plugin v5.5\n"
6
  "Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/business-"
7
  "directory-plugin\n"
8
+ "POT-Creation-Date: 2019-04-23 21:12:39+00:00\n"
9
  "PO-Revision-Date: 2017-01-16 17:47-0500\n"
10
  "Last-Translator: BD Team <support@businessdirectoryplugin.com>\n"
11
  "Language-Team: BD Team <support@businessdirectoryplugin.com>\n"
1088
  "or let Business Directory do this for you automatically."
1089
  msgstr ""
1090
 
1091
+ #: includes/admin/form-fields.php:214 includes/views/submit_listing.php:512
1092
  msgctxt "admin"
1093
  msgid "Go to \"Manage Form Fields\""
1094
  msgstr ""
1098
  msgid "Create these required fields for me"
1099
  msgstr ""
1100
 
1101
+ #: includes/payment.php:180
1102
  msgctxt "admin"
1103
  msgid "Pending Abandonment"
1104
  msgstr ""
1105
 
1106
+ #: includes/payment.php:185
1107
  msgctxt "admin"
1108
  msgid "Abandoned"
1109
  msgstr ""
1118
  msgid "Reported"
1119
  msgstr ""
1120
 
1121
+ #: includes/class-listing.php:771
1122
  msgctxt "listing status"
1123
  msgid "Unknown"
1124
  msgstr ""
1125
 
1126
+ #: includes/class-listing.php:772
1127
  msgctxt "listing status"
1128
  msgid "Legacy"
1129
  msgstr ""
1130
 
1131
+ #: includes/class-listing.php:773
1132
  msgctxt "listing status"
1133
  msgid "Incomplete"
1134
  msgstr ""
1135
 
1136
+ #: includes/class-listing.php:774
1137
  msgctxt "listing status"
1138
  msgid "Pending Payment"
1139
  msgstr ""
1140
 
1141
+ #: includes/class-listing.php:775
1142
  msgctxt "listing status"
1143
  msgid "Complete"
1144
  msgstr ""
1145
 
1146
+ #: includes/class-listing.php:776
1147
  msgctxt "listing status"
1148
  msgid "Pending Upgrade"
1149
  msgstr ""
1150
 
1151
+ #: includes/class-listing.php:777
1152
  msgctxt "listing status"
1153
  msgid "Expired"
1154
  msgstr ""
1155
 
1156
+ #: includes/class-listing.php:778
1157
  msgctxt "listing status"
1158
  msgid "Pending Renewal"
1159
  msgstr ""
1160
 
1161
+ #: includes/class-listing.php:779
1162
  msgctxt "listing status"
1163
  msgid "Abandoned"
1164
  msgstr ""
1755
  msgid "Theme was updated successfully."
1756
  msgstr ""
1757
 
1758
+ #: includes/themes.php:829
1759
  msgctxt "themes"
1760
  msgid "ZIP file is not a valid BD theme file."
1761
  msgstr ""
1762
 
1763
+ #: includes/themes.php:835
1764
  msgctxt "themes"
1765
  msgid "Could not create themes directory."
1766
  msgstr ""
1767
 
1768
+ #: includes/themes.php:843
1769
  msgctxt "themes"
1770
  msgid "Could not remove previous theme directory \"%s\"."
1771
  msgstr ""
1772
 
1773
+ #: includes/themes.php:849
1774
  msgctxt "themes"
1775
  msgid "Could not move new theme into theme directory."
1776
  msgstr ""
2677
  msgid "Automatically generate excerpt from content field?"
2678
  msgstr ""
2679
 
2680
+ #: includes/fields/class-fieldtypes-url.php:36
2681
  msgctxt "form-fields admin"
2682
  msgid "Open link in a new window?"
2683
  msgstr ""
2684
 
2685
+ #: includes/fields/class-fieldtypes-url.php:39
2686
  msgctxt "form-fields admin"
2687
  msgid "Use rel=\"nofollow\" when displaying the link?"
2688
  msgstr ""
3339
  msgstr ""
3340
 
3341
  #: includes/admin/settings/class-settings-bootstrap.php:682
3342
+ #: includes/functions.php:1181
3343
  msgctxt "admin settings"
3344
  msgid "Date posted"
3345
  msgstr ""
3346
 
3347
  #: includes/admin/settings/class-settings-bootstrap.php:683
3348
+ #: includes/functions.php:1182
3349
  msgctxt "admin settings"
3350
  msgid "Date last modified"
3351
  msgstr ""
3716
  "not activated."
3717
  msgstr ""
3718
 
3719
+ #: includes/functions.php:1179
3720
  msgctxt "admin settings"
3721
  msgid "User"
3722
  msgstr ""
3723
 
3724
+ #: includes/functions.php:1180
3725
  msgctxt "admin settings"
3726
  msgid "User registration date"
3727
  msgstr ""
5281
  msgid "Add New Listing"
5282
  msgstr ""
5283
 
5284
+ #: includes/class-listing.php:305
5285
  msgctxt "listing"
5286
  msgid "Listing has no registered payments"
5287
  msgstr ""
5288
 
5289
+ #: includes/class-listing.php:313
5290
  msgctxt "listing"
5291
  msgid "Can't delete payment"
5292
  msgstr ""
5293
 
5294
+ #: includes/class-listing.php:352
5295
  msgctxt "listing"
5296
  msgid "Listing expired"
5297
  msgstr ""
5298
 
5299
+ #: includes/class-listing.php:511
5300
  msgctxt "listing"
5301
  msgid "(Unavailable Plan)"
5302
  msgstr ""
5303
 
5304
+ #: includes/class-listing.php:668
5305
  msgctxt "listing"
5306
  msgid "Plan \"%s\" (recurring)"
5307
  msgstr ""
5308
 
5309
+ #: includes/class-listing.php:670
5310
  msgctxt "listing"
5311
  msgid "Plan \"%s\""
5312
  msgstr ""
5542
  "<i>Free Mode</i>."
5543
  msgstr ""
5544
 
5545
+ #: includes/class-payment.php:82
5546
  msgctxt "payment"
5547
+ msgid "Payment status changed from \"%1$s\" to \"%2$s\"."
5548
  msgstr ""
5549
 
5550
+ #: includes/class-payment.php:123
5551
  msgctxt "payment"
5552
  msgid "Initial payment (\"%s\")"
5553
  msgstr ""
5554
 
5555
+ #: includes/class-payment.php:126
5556
  msgctxt "payment"
5557
  msgid "Renewal payment (\"%s\")"
5558
  msgstr ""
5559
 
5560
+ #: includes/class-payment.php:313
5561
  msgctxt "payment"
5562
  msgid "Pending"
5563
  msgstr ""
5564
 
5565
+ #: includes/class-payment.php:314
5566
  msgctxt "payment"
5567
  msgid "Failed"
5568
  msgstr ""
5569
 
5570
+ #: includes/class-payment.php:315
5571
  msgctxt "payment"
5572
  msgid "Completed"
5573
  msgstr ""
5574
 
5575
+ #: includes/class-payment.php:316
5576
  msgctxt "payment"
5577
  msgid "Canceled"
5578
  msgstr ""
5579
 
5580
+ #: includes/class-payment.php:317
5581
  msgctxt "payment"
5582
  msgid "On Hold"
5583
  msgstr ""
5584
 
5585
+ #: includes/class-payment.php:318
5586
  msgctxt "payment"
5587
  msgid "Refunded"
5588
  msgstr ""
5589
 
5590
+ #: includes/class-payment.php:138
5591
  msgctxt "payment summary"
5592
  msgid "%s. Admin Posted."
5593
  msgstr ""
5594
 
5595
+ #: includes/class-payment.php:140
5596
  msgctxt "payment summary"
5597
  msgid "%s. Imported Listing."
5598
  msgstr ""
5599
 
5600
+ #: includes/class-payment.php:218
5601
  msgctxt "submit listing"
5602
  msgid "Listing submitted by admin. Payment skipped."
5603
  msgstr ""
5657
  msgid "You're logged in as admin, payment will be skipped."
5658
  msgstr ""
5659
 
5660
+ #: includes/views/submit_listing.php:388
5661
  msgctxt "submit listing"
5662
  msgid "Category selection"
5663
  msgstr ""
5664
 
5665
+ #: includes/views/submit_listing.php:388
5666
  msgctxt "submit listing"
5667
  msgid "Category & plan selection"
5668
  msgstr ""
5669
 
5670
+ #: includes/views/submit_listing.php:393
5671
  msgctxt "submit listing"
5672
  msgid "Listing Information"
5673
  msgstr ""
5674
 
5675
+ #: includes/views/submit_listing.php:398
5676
  msgctxt "submit listing"
5677
  msgid "Listing Images"
5678
  msgstr ""
5679
 
5680
+ #: includes/views/submit_listing.php:406
5681
  msgctxt "submit listing"
5682
  msgid "Account Creation"
5683
  msgstr ""
5684
 
5685
+ #: includes/views/submit_listing.php:412
5686
  msgctxt "submit listing"
5687
  msgid "Terms and Conditions"
5688
  msgstr ""
5689
 
5690
+ #: includes/views/submit_listing.php:449
5691
  msgctxt "submit listing"
5692
  msgid "(Please choose a fee plan above)"
5693
  msgstr ""
5694
 
5695
+ #: includes/views/submit_listing.php:499
5696
  msgctxt "submit listing"
5697
  msgid "Can not submit a listing at this moment. Please try again later."
5698
  msgstr ""
5699
 
5700
+ #: includes/views/submit_listing.php:527
5701
  msgctxt "submit listing"
5702
  msgid "Please select a category."
5703
  msgstr ""
5704
 
5705
+ #: includes/views/submit_listing.php:540
5706
  msgctxt "submit listing"
5707
  msgid "Please select a category for your listing."
5708
  msgstr ""
5709
 
5710
+ #: includes/views/submit_listing.php:560
5711
  msgctxt "submit listing"
5712
  msgid "Please choose a valid category for your plan."
5713
  msgstr ""
5714
 
5715
+ #: includes/views/submit_listing.php:562
5716
  msgctxt "submit listing"
5717
  msgid "Please choose a valid fee plan for your category selection."
5718
  msgstr ""
5719
 
5720
+ #: includes/views/submit_listing.php:803
5721
  msgctxt "submit listing"
5722
  msgid "Please enter your desired username."
5723
  msgstr ""
5724
 
5725
+ #: includes/views/submit_listing.php:808
5726
  msgctxt "submit listing"
5727
  msgid "Please enter the e-mail for your new account."
5728
  msgstr ""
5729
 
5730
+ #: includes/views/submit_listing.php:813
5731
  msgctxt "submit listing"
5732
  msgid "Please enter the password for your new account."
5733
  msgstr ""
5734
 
5735
+ #: includes/views/submit_listing.php:823
5736
  msgctxt "submit listing"
5737
  msgid "The username you chose is already in use. Please use a different one."
5738
  msgstr ""
5739
 
5740
+ #: includes/views/submit_listing.php:828
5741
  msgctxt "submit listing"
5742
  msgid "The e-mail address you chose for your account is already in use."
5743
  msgstr ""
5744
 
5745
+ #: includes/views/submit_listing.php:843
5746
  msgctxt "submit listing"
5747
  msgid "Create a user account on this site"
5748
  msgstr ""
5749
 
5750
+ #: includes/views/submit_listing.php:850
5751
  msgctxt "submit listing"
5752
  msgid ""
5753
  "You need to create an account on the site. Please fill out the form below."
5754
  msgstr ""
5755
 
5756
+ #: includes/views/submit_listing.php:856
5757
  msgctxt "submit listing"
5758
  msgid "Username:"
5759
  msgstr ""
5760
 
5761
+ #: includes/views/submit_listing.php:865
5762
  msgctxt "submit listing"
5763
  msgid "Email:"
5764
  msgstr ""
5765
 
5766
+ #: includes/views/submit_listing.php:874
5767
  msgctxt "submit listing"
5768
  msgid "Password:"
5769
  msgstr ""
5910
  msgstr ""
5911
 
5912
  #: includes/fields/class-fieldtypes-social.php:95
5913
+ #: includes/fields/class-fieldtypes-url.php:149
5914
  msgctxt "form-fields api"
5915
  msgid "URL:"
5916
  msgstr ""
5917
 
5918
+ #: includes/fields/class-fieldtypes-social.php:115
5919
  msgctxt "form-fields api"
5920
  msgid "Text:"
5921
  msgstr ""
5922
 
5923
+ #: includes/fields/class-fieldtypes-social.php:122
5924
  msgctxt "form-fields api"
5925
+ msgid "Text to be displayed for social field"
5926
  msgstr ""
5927
 
5928
+ #: includes/fields/class-fieldtypes-social.php:140
5929
  msgctxt "form-fields api"
5930
  msgid "Type:"
5931
  msgstr ""
5950
  msgid "Social Site (Twitter handle)"
5951
  msgstr ""
5952
 
5953
+ #: includes/fields/class-fieldtypes-url.php:18
5954
  msgctxt "form-fields api"
5955
  msgid "URL Field"
5956
  msgstr ""
5957
 
5958
+ #: includes/fields/class-fieldtypes-url.php:157
5959
  msgctxt "form-fields api"
5960
  msgid "Link Text (optional):"
5961
  msgstr ""
6023
  msgstr ""
6024
 
6025
  #: includes/fields/class-fieldtypes-image.php:100
6026
+ #: includes/fields/class-fieldtypes-social.php:175
6027
  msgctxt "form-fields-api"
6028
  msgid "Remove"
6029
  msgstr ""
6208
  msgid "Caption for %s is required."
6209
  msgstr ""
6210
 
6211
+ #: includes/functions.php:1259
6212
  msgctxt "templates"
6213
  msgid "Return to results"
6214
  msgstr ""
6215
 
6216
+ #: includes/functions.php:1263 includes/functions.php:1268
6217
  msgctxt "templates"
6218
  msgid "Go back"
6219
  msgstr ""
6220
 
6221
+ #: includes/payment.php:277 templates/renew-resume.tpl.php:39
6222
  msgctxt "templates"
6223
  msgid "Return to fee selection"
6224
  msgstr ""
6271
  "site. If you didn't want that, click <a>here</a> to change the setting."
6272
  msgstr ""
6273
 
6274
+ #: includes/views/submit_listing.php:335
6275
  msgctxt "templates"
6276
  msgid ""
6277
  "<b>View not available</b>. Do you have the \"Disable Frontend Listing "
6278
  "Submission?\" setting checked?"
6279
  msgstr ""
6280
 
6281
+ #: includes/views/submit_listing.php:337
6282
  msgctxt "templates"
6283
  msgid ""
6284
  "Listing submission has been disabled. Contact the administrator for details."
6285
  msgstr ""
6286
 
6287
+ #: includes/views/submit_listing.php:502
6288
  msgctxt "templates"
6289
  msgid ""
6290
  "Listing submission is not available at the moment. Contact the administrator "
6291
  "for details."
6292
  msgstr ""
6293
 
6294
+ #: includes/views/submit_listing.php:505
6295
  msgctxt "templates"
6296
  msgid ""
6297
  "<b>View not available</b>, there is no \"Category\" association field. %s "
6299
  "an existing field"
6300
  msgstr ""
6301
 
6302
+ #: includes/views/submit_listing.php:912
6303
  msgctxt "templates"
6304
  msgid "Please agree to the Terms and Conditions."
6305
  msgstr ""
6306
 
6307
+ #: includes/views/submit_listing.php:920
6308
  msgctxt "templates"
6309
  msgid "Terms and Conditions:"
6310
  msgstr ""
6311
 
6312
+ #: includes/views/submit_listing.php:929
6313
  msgctxt "templates"
6314
  msgid "I agree to the <a>Terms and Conditions</a>"
6315
  msgstr ""
6510
  msgid "Your listing has been submitted."
6511
  msgstr ""
6512
 
6513
+ #: templates/submit-listing-done.tpl.php:14
6514
  msgctxt "templates"
6515
  msgid "Your listing changes were saved."
6516
  msgstr ""
6517
 
6518
+ #: templates/submit-listing-done.tpl.php:19
6519
  msgctxt "templates"
6520
  msgid "Go to your listing"
6521
  msgstr ""
6522
 
6523
+ #: templates/submit-listing-done.tpl.php:21
6524
  msgctxt "templates"
6525
  msgid ""
6526
  "Your listing requires admin approval. You'll be notified once your listing "
6527
  "is approved."
6528
  msgstr ""
6529
 
6530
+ #: templates/submit-listing-done.tpl.php:25
6531
  msgctxt "templates"
6532
  msgid "Return to directory."
6533
  msgstr ""
6990
  msgid "Bill To:"
6991
  msgstr ""
6992
 
6993
+ #: includes/payment.php:96
6994
  msgctxt "checkout"
6995
  msgid "Print Receipt"
6996
  msgstr ""
7207
  msgid "Your payment is awaiting verification by the gateway."
7208
  msgstr ""
7209
 
7210
+ #: templates/checkout-confirmation.tpl.php:20
7211
  msgctxt "checkout"
7212
  msgid ""
7213
  "Verification usually takes some minutes. This page will automatically "
7307
  msgid "Error while uploading file"
7308
  msgstr ""
7309
 
7310
+ #: includes/views/delete_listing.php:38
7311
  msgctxt "delete listing"
7312
  msgid "Your listing has been deleted."
7313
  msgstr ""
7596
  msgid "This is just a preview. The listing has not been published yet."
7597
  msgstr ""
7598
 
7599
+ #: includes/views/submit_listing.php:671
7600
  msgctxt "listing submit"
7601
  msgid ""
7602
  "Something went wrong. Please check the form for errors, correct them and "
7603
  "submit again."
7604
  msgstr ""
7605
 
7606
+ #: includes/views/submit_listing.php:755
7607
  msgctxt "listing submit"
7608
  msgid ""
7609
  "Image upload is required, please provide at least one image and submit again."
languages/WPBDM-es_ES.mo CHANGED
Binary file
languages/WPBDM-es_ES.po CHANGED
@@ -5,8 +5,8 @@ msgstr ""
5
  "Project-Id-Version: Business Directory Plugin v5.5\n"
6
  "Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/business-"
7
  "directory-plugin\n"
8
- "POT-Creation-Date: 2019-03-20 00:09:46+00:00\n"
9
- "PO-Revision-Date: 2019-03-19 19:12-0500\n"
10
  "Last-Translator: BD Team <support@businessdirectoryplugin.com>\n"
11
  "Language-Team: BD Team <support@businessdirectoryplugin.com>\n"
12
  "Language: es_ES\n"
@@ -1187,7 +1187,7 @@ msgstr ""
1187
  "Puede crear estos campos usted mismo en \"Administrar Campos de Formulario\" "
1188
  "o puede dejar que Business Directory haga esto por usted automáticamente."
1189
 
1190
- #: includes/admin/form-fields.php:214 includes/views/submit_listing.php:516
1191
  msgctxt "admin"
1192
  msgid "Go to \"Manage Form Fields\""
1193
  msgstr "Ir a \"Administrar Campos de Formulario\""
@@ -1197,12 +1197,12 @@ msgctxt "admin"
1197
  msgid "Create these required fields for me"
1198
  msgstr "Crear estos campos requeridos por mi"
1199
 
1200
- #: includes/payment.php:181
1201
  msgctxt "admin"
1202
  msgid "Pending Abandonment"
1203
  msgstr "Casi abandonado"
1204
 
1205
- #: includes/payment.php:186
1206
  msgctxt "admin"
1207
  msgid "Abandoned"
1208
  msgstr "Abandonados"
@@ -1217,47 +1217,47 @@ msgctxt "listing status"
1217
  msgid "Reported"
1218
  msgstr "Reportado"
1219
 
1220
- #: includes/class-listing.php:768
1221
  msgctxt "listing status"
1222
  msgid "Unknown"
1223
  msgstr "Desconocido"
1224
 
1225
- #: includes/class-listing.php:769
1226
  msgctxt "listing status"
1227
  msgid "Legacy"
1228
  msgstr "Antiguo"
1229
 
1230
- #: includes/class-listing.php:770
1231
  msgctxt "listing status"
1232
  msgid "Incomplete"
1233
  msgstr "Incompleto"
1234
 
1235
- #: includes/class-listing.php:771
1236
  msgctxt "listing status"
1237
  msgid "Pending Payment"
1238
  msgstr "Pendiente de pago"
1239
 
1240
- #: includes/class-listing.php:772
1241
  msgctxt "listing status"
1242
  msgid "Complete"
1243
  msgstr "Completado"
1244
 
1245
- #: includes/class-listing.php:773
1246
  msgctxt "listing status"
1247
  msgid "Pending Upgrade"
1248
  msgstr "Pendiente de mejora"
1249
 
1250
- #: includes/class-listing.php:774
1251
  msgctxt "listing status"
1252
  msgid "Expired"
1253
  msgstr "Expirado"
1254
 
1255
- #: includes/class-listing.php:775
1256
  msgctxt "listing status"
1257
  msgid "Pending Renewal"
1258
  msgstr "Pendientes de renovación"
1259
 
1260
- #: includes/class-listing.php:776
1261
  msgctxt "listing status"
1262
  msgid "Abandoned"
1263
  msgstr "Abandonado"
@@ -1888,22 +1888,22 @@ msgctxt "themes"
1888
  msgid "Theme was updated successfully."
1889
  msgstr "El tema fue actualizado correctamente."
1890
 
1891
- #: includes/themes.php:825
1892
  msgctxt "themes"
1893
  msgid "ZIP file is not a valid BD theme file."
1894
  msgstr "El archivo ZIP no es un tema de BD válido."
1895
 
1896
- #: includes/themes.php:831
1897
  msgctxt "themes"
1898
  msgid "Could not create themes directory."
1899
  msgstr "No se pudo crear el directorio de los temas."
1900
 
1901
- #: includes/themes.php:839
1902
  msgctxt "themes"
1903
  msgid "Could not remove previous theme directory \"%s\"."
1904
  msgstr "No se pudo remover el directorio anterior \"%s\"."
1905
 
1906
- #: includes/themes.php:845
1907
  msgctxt "themes"
1908
  msgid "Could not move new theme into theme directory."
1909
  msgstr "No se pudo mover el nuevo tema al directorio de temas."
@@ -2545,12 +2545,12 @@ msgstr "Eliminar"
2545
  #: includes/admin/form-fields.php:118
2546
  msgctxt "form-fields admin"
2547
  msgid "ID"
2548
- msgstr ""
2549
 
2550
  #: includes/admin/form-fields.php:123
2551
  msgctxt "form-fields admin"
2552
  msgid "Shortname"
2553
- msgstr ""
2554
 
2555
  #: includes/admin/form-fields.php:145
2556
  msgctxt "form-fields admin"
@@ -2870,12 +2870,12 @@ msgctxt "form-fields admin"
2870
  msgid "Automatically generate excerpt from content field?"
2871
  msgstr "¿Generar resumen automáticamente del campo de contenido?"
2872
 
2873
- #: includes/fields/class-fieldtypes-url.php:23
2874
  msgctxt "form-fields admin"
2875
  msgid "Open link in a new window?"
2876
  msgstr "Abrir enlace en nueva ventana?"
2877
 
2878
- #: includes/fields/class-fieldtypes-url.php:26
2879
  msgctxt "form-fields admin"
2880
  msgid "Use rel=\"nofollow\" when displaying the link?"
2881
  msgstr "Utilizar rel=\"nofollow\" cuando se muestre este enlace?"
@@ -3562,13 +3562,13 @@ msgid "Author"
3562
  msgstr "Autor"
3563
 
3564
  #: includes/admin/settings/class-settings-bootstrap.php:682
3565
- #: includes/functions.php:1179
3566
  msgctxt "admin settings"
3567
  msgid "Date posted"
3568
  msgstr "Fecha de publicación"
3569
 
3570
  #: includes/admin/settings/class-settings-bootstrap.php:683
3571
- #: includes/functions.php:1180
3572
  msgctxt "admin settings"
3573
  msgid "Date last modified"
3574
  msgstr "Fecha de última modificación"
@@ -3956,12 +3956,12 @@ msgstr ""
3956
  "No se pudo copiar el plugin de compatibilidad AJAX \"%s\". El modo de "
3957
  "compatibilidad no fue activado."
3958
 
3959
- #: includes/functions.php:1177
3960
  msgctxt "admin settings"
3961
  msgid "User"
3962
  msgstr "Usuario"
3963
 
3964
- #: includes/functions.php:1178
3965
  msgctxt "admin settings"
3966
  msgid "User registration date"
3967
  msgstr "Fecha de registro del usuario"
@@ -5670,32 +5670,32 @@ msgctxt "listing"
5670
  msgid "Add New Listing"
5671
  msgstr "Agregar Nuevo Listado"
5672
 
5673
- #: includes/class-listing.php:302
5674
  msgctxt "listing"
5675
  msgid "Listing has no registered payments"
5676
  msgstr "El listado no tiene pagos registrados"
5677
 
5678
- #: includes/class-listing.php:310
5679
  msgctxt "listing"
5680
  msgid "Can't delete payment"
5681
  msgstr "No se puede eliminar el pago"
5682
 
5683
- #: includes/class-listing.php:349
5684
  msgctxt "listing"
5685
  msgid "Listing expired"
5686
  msgstr "El listado expiró"
5687
 
5688
- #: includes/class-listing.php:508
5689
  msgctxt "listing"
5690
  msgid "(Unavailable Plan)"
5691
  msgstr "(Comisión no disponible)"
5692
 
5693
- #: includes/class-listing.php:665
5694
  msgctxt "listing"
5695
  msgid "Plan \"%s\" (recurring)"
5696
  msgstr "Comisión “%s” (recurrente)"
5697
 
5698
- #: includes/class-listing.php:667
5699
  msgctxt "listing"
5700
  msgid "Plan \"%s\""
5701
  msgstr "Comisión “%s”"
@@ -5945,62 +5945,62 @@ msgstr ""
5945
  "para cambiar las configuración. Hasta tanto, el directorio operará en "
5946
  "<i>Modo Gratuito</i>."
5947
 
5948
- #: includes/class-payment.php:65
5949
  msgctxt "payment"
5950
- msgid "Payment status changed from \"%s\" to \"%s\"."
5951
- msgstr "El estado del pago cambió de “%s” a “%s”."
5952
 
5953
- #: includes/class-payment.php:98
5954
  msgctxt "payment"
5955
  msgid "Initial payment (\"%s\")"
5956
  msgstr "Pago inicial (“%s”)"
5957
 
5958
- #: includes/class-payment.php:101
5959
  msgctxt "payment"
5960
  msgid "Renewal payment (\"%s\")"
5961
  msgstr "Pago de renovación (“%s”)"
5962
 
5963
- #: includes/class-payment.php:266
5964
  msgctxt "payment"
5965
  msgid "Pending"
5966
  msgstr "Pendiente"
5967
 
5968
- #: includes/class-payment.php:267
5969
  msgctxt "payment"
5970
  msgid "Failed"
5971
  msgstr "Fallido"
5972
 
5973
- #: includes/class-payment.php:268
5974
  msgctxt "payment"
5975
  msgid "Completed"
5976
  msgstr "Completado"
5977
 
5978
- #: includes/class-payment.php:269
5979
  msgctxt "payment"
5980
  msgid "Canceled"
5981
  msgstr "Cancelado"
5982
 
5983
- #: includes/class-payment.php:270
5984
  msgctxt "payment"
5985
  msgid "On Hold"
5986
  msgstr "En espera"
5987
 
5988
- #: includes/class-payment.php:271
5989
  msgctxt "payment"
5990
  msgid "Refunded"
5991
  msgstr "Reintegrado"
5992
 
5993
- #: includes/class-payment.php:113
5994
  msgctxt "payment summary"
5995
  msgid "%s. Admin Posted."
5996
  msgstr "%s. Publicado por el administrador."
5997
 
5998
- #: includes/class-payment.php:115
5999
  msgctxt "payment summary"
6000
  msgid "%s. Imported Listing."
6001
  msgstr "%s. Listado importado."
6002
 
6003
- #: includes/class-payment.php:188
6004
  msgctxt "submit listing"
6005
  msgid "Listing submitted by admin. Payment skipped."
6006
  msgstr "El listado fue publicado por el administrador. No se realizó pago."
@@ -6066,103 +6066,103 @@ msgid "You're logged in as admin, payment will be skipped."
6066
  msgstr ""
6067
  "Ha ingresado como administrador. Todos los pasos de pago serán saltados."
6068
 
6069
- #: includes/views/submit_listing.php:392
6070
  msgctxt "submit listing"
6071
  msgid "Category selection"
6072
  msgstr "Selección de categoría"
6073
 
6074
- #: includes/views/submit_listing.php:392
6075
  msgctxt "submit listing"
6076
  msgid "Category & plan selection"
6077
  msgstr "Selección de categoría y comisión"
6078
 
6079
- #: includes/views/submit_listing.php:397
6080
  msgctxt "submit listing"
6081
  msgid "Listing Information"
6082
  msgstr "Información del listado"
6083
 
6084
- #: includes/views/submit_listing.php:402
6085
  msgctxt "submit listing"
6086
  msgid "Listing Images"
6087
  msgstr "Imágenes del listado"
6088
 
6089
- #: includes/views/submit_listing.php:410
6090
  msgctxt "submit listing"
6091
  msgid "Account Creation"
6092
  msgstr "Creación de cuenta de usuario"
6093
 
6094
- #: includes/views/submit_listing.php:416
6095
  msgctxt "submit listing"
6096
  msgid "Terms and Conditions"
6097
  msgstr "Términos y Condiciones"
6098
 
6099
- #: includes/views/submit_listing.php:453
6100
  msgctxt "submit listing"
6101
  msgid "(Please choose a fee plan above)"
6102
  msgstr "(Por favor elija una comisión arriba)"
6103
 
6104
- #: includes/views/submit_listing.php:503
6105
  msgctxt "submit listing"
6106
  msgid "Can not submit a listing at this moment. Please try again later."
6107
  msgstr ""
6108
  "No puede publicar un listado en este momento. Por favor intente más tarde."
6109
 
6110
- #: includes/views/submit_listing.php:531
6111
  msgctxt "submit listing"
6112
  msgid "Please select a category."
6113
  msgstr "Por favor seleccione una categoría."
6114
 
6115
- #: includes/views/submit_listing.php:544
6116
  msgctxt "submit listing"
6117
  msgid "Please select a category for your listing."
6118
  msgstr "Por favor seleccione una categoría para su listado."
6119
 
6120
- #: includes/views/submit_listing.php:564
6121
  msgctxt "submit listing"
6122
  msgid "Please choose a valid category for your plan."
6123
  msgstr "Por favor seleccione una categoría válida para su comisión."
6124
 
6125
- #: includes/views/submit_listing.php:566
6126
  msgctxt "submit listing"
6127
  msgid "Please choose a valid fee plan for your category selection."
6128
  msgstr "Por favor elija una comisión válida para la categoría seleccionada."
6129
 
6130
- #: includes/views/submit_listing.php:807
6131
  msgctxt "submit listing"
6132
  msgid "Please enter your desired username."
6133
  msgstr "Por favor ingrese su nombre de usuario."
6134
 
6135
- #: includes/views/submit_listing.php:812
6136
  msgctxt "submit listing"
6137
  msgid "Please enter the e-mail for your new account."
6138
  msgstr ""
6139
  "Por favor ingrese la dirección de correo electrónico para su nueva cuenta."
6140
 
6141
- #: includes/views/submit_listing.php:817
6142
  msgctxt "submit listing"
6143
  msgid "Please enter the password for your new account."
6144
  msgstr "Por favor ingrese la contraseña para su nueva cuenta."
6145
 
6146
- #: includes/views/submit_listing.php:827
6147
  msgctxt "submit listing"
6148
  msgid "The username you chose is already in use. Please use a different one."
6149
  msgstr ""
6150
  "El nombre de usuario que eligió ya está en uso. Por favor elija un nombre de "
6151
  "usuario diferente."
6152
 
6153
- #: includes/views/submit_listing.php:832
6154
  msgctxt "submit listing"
6155
  msgid "The e-mail address you chose for your account is already in use."
6156
  msgstr ""
6157
  "La dirección de correo electrónico que eligió para su cuenta ya está siendo "
6158
  "utilizada."
6159
 
6160
- #: includes/views/submit_listing.php:847
6161
  msgctxt "submit listing"
6162
  msgid "Create a user account on this site"
6163
  msgstr "Crear una cuenta de usuario en este sitio"
6164
 
6165
- #: includes/views/submit_listing.php:854
6166
  msgctxt "submit listing"
6167
  msgid ""
6168
  "You need to create an account on the site. Please fill out the form below."
@@ -6170,17 +6170,17 @@ msgstr ""
6170
  "Debe crear una cuenta de usuario en este sitio. Por favor ingrese los datos "
6171
  "requeridos en el formulario que está debajo."
6172
 
6173
- #: includes/views/submit_listing.php:860
6174
  msgctxt "submit listing"
6175
  msgid "Username:"
6176
  msgstr "Nombre de usuario:"
6177
 
6178
- #: includes/views/submit_listing.php:869
6179
  msgctxt "submit listing"
6180
  msgid "Email:"
6181
  msgstr "Correo electrónico:"
6182
 
6183
- #: includes/views/submit_listing.php:878
6184
  msgctxt "submit listing"
6185
  msgid "Password:"
6186
  msgstr "Contraseña:"
@@ -6331,22 +6331,22 @@ msgid "Social Site (Other)"
6331
  msgstr "Sitio Social (Otro)"
6332
 
6333
  #: includes/fields/class-fieldtypes-social.php:95
6334
- #: includes/fields/class-fieldtypes-url.php:136
6335
  msgctxt "form-fields api"
6336
  msgid "URL:"
6337
  msgstr "URL:"
6338
 
6339
- #: includes/fields/class-fieldtypes-social.php:108
6340
  msgctxt "form-fields api"
6341
  msgid "Text:"
6342
  msgstr "Texto:"
6343
 
6344
- #: includes/fields/class-fieldtypes-social.php:114
6345
  msgctxt "form-fields api"
6346
- msgid "Text to be displayed along with icon"
6347
- msgstr "Texto que será presentado con el ícono"
6348
 
6349
- #: includes/fields/class-fieldtypes-social.php:121
6350
  msgctxt "form-fields api"
6351
  msgid "Type:"
6352
  msgstr "Tipo:"
@@ -6371,12 +6371,12 @@ msgctxt "form-fields api"
6371
  msgid "Social Site (Twitter handle)"
6372
  msgstr "Sitio Social (Twitter @)"
6373
 
6374
- #: includes/fields/class-fieldtypes-url.php:5
6375
  msgctxt "form-fields api"
6376
  msgid "URL Field"
6377
  msgstr "Campo de URL"
6378
 
6379
- #: includes/fields/class-fieldtypes-url.php:144
6380
  msgctxt "form-fields api"
6381
  msgid "Link Text (optional):"
6382
  msgstr "Texto del enlace (opcional):"
@@ -6446,7 +6446,7 @@ msgid "Caption for %s is required."
6446
  msgstr "Se requiere leyenda para %s."
6447
 
6448
  #: includes/fields/class-fieldtypes-image.php:100
6449
- #: includes/fields/class-fieldtypes-social.php:156
6450
  msgctxt "form-fields-api"
6451
  msgid "Remove"
6452
  msgstr "Eliminar"
@@ -6646,17 +6646,17 @@ msgctxt "image field"
6646
  msgid "Caption for %s is required."
6647
  msgstr "Se requiere leyenda para %s."
6648
 
6649
- #: includes/functions.php:1257
6650
  msgctxt "templates"
6651
  msgid "Return to results"
6652
  msgstr "Regresar a resultados"
6653
 
6654
- #: includes/functions.php:1261 includes/functions.php:1266
6655
  msgctxt "templates"
6656
  msgid "Go back"
6657
  msgstr "Regresar"
6658
 
6659
- #: includes/payment.php:278 templates/renew-resume.tpl.php:39
6660
  msgctxt "templates"
6661
  msgid "Return to fee selection"
6662
  msgstr "Regresar a la selección de tarifa"
@@ -6717,7 +6717,7 @@ msgstr ""
6717
  "Esto significa que no aparecerán acá. Si desea mostrar las categorías "
6718
  "vacías, haga <a>clic aquí</a> para cambiar la configuración."
6719
 
6720
- #: includes/views/submit_listing.php:339
6721
  msgctxt "templates"
6722
  msgid ""
6723
  "<b>View not available</b>. Do you have the \"Disable Frontend Listing "
@@ -6726,7 +6726,7 @@ msgstr ""
6726
  "<b>Vista no disponible</b>. ¿Tiene \"Deshabilitar envío de listados desde el "
6727
  "frontend\" habilitado?"
6728
 
6729
- #: includes/views/submit_listing.php:341
6730
  msgctxt "templates"
6731
  msgid ""
6732
  "Listing submission has been disabled. Contact the administrator for details."
@@ -6734,7 +6734,7 @@ msgstr ""
6734
  "Se ha deshabilitado la opción para agregar listados. Contacte al "
6735
  "administrador para más detalles."
6736
 
6737
- #: includes/views/submit_listing.php:506
6738
  msgctxt "templates"
6739
  msgid ""
6740
  "Listing submission is not available at the moment. Contact the administrator "
@@ -6743,7 +6743,7 @@ msgstr ""
6743
  "La opción para agregar listados no está disponible en el momento. Contacte "
6744
  "al administrador para más detalles."
6745
 
6746
- #: includes/views/submit_listing.php:509
6747
  msgctxt "templates"
6748
  msgid ""
6749
  "<b>View not available</b>, there is no \"Category\" association field. %s "
@@ -6754,17 +6754,17 @@ msgstr ""
6754
  "“Categoría”. %s y cree un nuevo campo con dicha asociación, o asigne la "
6755
  "asociación a un campo existente."
6756
 
6757
- #: includes/views/submit_listing.php:916
6758
  msgctxt "templates"
6759
  msgid "Please agree to the Terms and Conditions."
6760
  msgstr "Por favor acepte los Términos y Condiciones."
6761
 
6762
- #: includes/views/submit_listing.php:924
6763
  msgctxt "templates"
6764
  msgid "Terms and Conditions:"
6765
  msgstr "Términos y Condiciones:"
6766
 
6767
- #: includes/views/submit_listing.php:933
6768
  msgctxt "templates"
6769
  msgid "I agree to the <a>Terms and Conditions</a>"
6770
  msgstr "Acepto los <a>Términos y Condiciones</a>"
@@ -6975,17 +6975,17 @@ msgctxt "templates"
6975
  msgid "Your listing has been submitted."
6976
  msgstr "Su listado fue enviado."
6977
 
6978
- #: templates/submit-listing-done.tpl.php:11
6979
  msgctxt "templates"
6980
  msgid "Your listing changes were saved."
6981
  msgstr "Los cambios a su listado fueron guardados."
6982
 
6983
- #: templates/submit-listing-done.tpl.php:16
6984
  msgctxt "templates"
6985
  msgid "Go to your listing"
6986
  msgstr "Ir a su listado"
6987
 
6988
- #: templates/submit-listing-done.tpl.php:18
6989
  msgctxt "templates"
6990
  msgid ""
6991
  "Your listing requires admin approval. You'll be notified once your listing "
@@ -6994,7 +6994,7 @@ msgstr ""
6994
  "Su listado debe ser aprobado por el administrador. Usted será notificado una "
6995
  "vez el listado sea aprobado."
6996
 
6997
- #: templates/submit-listing-done.tpl.php:22
6998
  msgctxt "templates"
6999
  msgid "Return to directory."
7000
  msgstr "Regresar al Directorio."
@@ -7511,7 +7511,7 @@ msgctxt "payments"
7511
  msgid "Bill To:"
7512
  msgstr "Pagar a:"
7513
 
7514
- #: includes/payment.php:97
7515
  msgctxt "checkout"
7516
  msgid "Print Receipt"
7517
  msgstr "Imprimir recibo"
@@ -7740,7 +7740,7 @@ msgid "Your payment is awaiting verification by the gateway."
7740
  msgstr ""
7741
  "Su pago está pendiente de ser verificado por parte de la pasarela de pago."
7742
 
7743
- #: templates/checkout-confirmation.tpl.php:19
7744
  msgctxt "checkout"
7745
  msgid ""
7746
  "Verification usually takes some minutes. This page will automatically "
@@ -7848,7 +7848,7 @@ msgctxt "utils"
7848
  msgid "Error while uploading file"
7849
  msgstr "Ocurrió un error mientras se subía el archivo"
7850
 
7851
- #: includes/views/delete_listing.php:32
7852
  msgctxt "delete listing"
7853
  msgid "Your listing has been deleted."
7854
  msgstr "Su listado ha sido eliminado."
@@ -8158,7 +8158,7 @@ msgid "This is just a preview. The listing has not been published yet."
8158
  msgstr ""
8159
  "Esta es tan solo una previsualización. El listado no ha sido publicado aún."
8160
 
8161
- #: includes/views/submit_listing.php:675
8162
  msgctxt "listing submit"
8163
  msgid ""
8164
  "Something went wrong. Please check the form for errors, correct them and "
@@ -8167,7 +8167,7 @@ msgstr ""
8167
  "Algo salió mal. Por favor verifique que el formulario no contiene errores y "
8168
  "envíelo de nuevo."
8169
 
8170
- #: includes/views/submit_listing.php:759
8171
  msgctxt "listing submit"
8172
  msgid ""
8173
  "Image upload is required, please provide at least one image and submit again."
5
  "Project-Id-Version: Business Directory Plugin v5.5\n"
6
  "Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/business-"
7
  "directory-plugin\n"
8
+ "POT-Creation-Date: 2019-04-23 21:12:39+00:00\n"
9
+ "PO-Revision-Date: 2019-04-23 16:16-0500\n"
10
  "Last-Translator: BD Team <support@businessdirectoryplugin.com>\n"
11
  "Language-Team: BD Team <support@businessdirectoryplugin.com>\n"
12
  "Language: es_ES\n"
1187
  "Puede crear estos campos usted mismo en \"Administrar Campos de Formulario\" "
1188
  "o puede dejar que Business Directory haga esto por usted automáticamente."
1189
 
1190
+ #: includes/admin/form-fields.php:214 includes/views/submit_listing.php:512
1191
  msgctxt "admin"
1192
  msgid "Go to \"Manage Form Fields\""
1193
  msgstr "Ir a \"Administrar Campos de Formulario\""
1197
  msgid "Create these required fields for me"
1198
  msgstr "Crear estos campos requeridos por mi"
1199
 
1200
+ #: includes/payment.php:180
1201
  msgctxt "admin"
1202
  msgid "Pending Abandonment"
1203
  msgstr "Casi abandonado"
1204
 
1205
+ #: includes/payment.php:185
1206
  msgctxt "admin"
1207
  msgid "Abandoned"
1208
  msgstr "Abandonados"
1217
  msgid "Reported"
1218
  msgstr "Reportado"
1219
 
1220
+ #: includes/class-listing.php:771
1221
  msgctxt "listing status"
1222
  msgid "Unknown"
1223
  msgstr "Desconocido"
1224
 
1225
+ #: includes/class-listing.php:772
1226
  msgctxt "listing status"
1227
  msgid "Legacy"
1228
  msgstr "Antiguo"
1229
 
1230
+ #: includes/class-listing.php:773
1231
  msgctxt "listing status"
1232
  msgid "Incomplete"
1233
  msgstr "Incompleto"
1234
 
1235
+ #: includes/class-listing.php:774
1236
  msgctxt "listing status"
1237
  msgid "Pending Payment"
1238
  msgstr "Pendiente de pago"
1239
 
1240
+ #: includes/class-listing.php:775
1241
  msgctxt "listing status"
1242
  msgid "Complete"
1243
  msgstr "Completado"
1244
 
1245
+ #: includes/class-listing.php:776
1246
  msgctxt "listing status"
1247
  msgid "Pending Upgrade"
1248
  msgstr "Pendiente de mejora"
1249
 
1250
+ #: includes/class-listing.php:777
1251
  msgctxt "listing status"
1252
  msgid "Expired"
1253
  msgstr "Expirado"
1254
 
1255
+ #: includes/class-listing.php:778
1256
  msgctxt "listing status"
1257
  msgid "Pending Renewal"
1258
  msgstr "Pendientes de renovación"
1259
 
1260
+ #: includes/class-listing.php:779
1261
  msgctxt "listing status"
1262
  msgid "Abandoned"
1263
  msgstr "Abandonado"
1888
  msgid "Theme was updated successfully."
1889
  msgstr "El tema fue actualizado correctamente."
1890
 
1891
+ #: includes/themes.php:829
1892
  msgctxt "themes"
1893
  msgid "ZIP file is not a valid BD theme file."
1894
  msgstr "El archivo ZIP no es un tema de BD válido."
1895
 
1896
+ #: includes/themes.php:835
1897
  msgctxt "themes"
1898
  msgid "Could not create themes directory."
1899
  msgstr "No se pudo crear el directorio de los temas."
1900
 
1901
+ #: includes/themes.php:843
1902
  msgctxt "themes"
1903
  msgid "Could not remove previous theme directory \"%s\"."
1904
  msgstr "No se pudo remover el directorio anterior \"%s\"."
1905
 
1906
+ #: includes/themes.php:849
1907
  msgctxt "themes"
1908
  msgid "Could not move new theme into theme directory."
1909
  msgstr "No se pudo mover el nuevo tema al directorio de temas."
2545
  #: includes/admin/form-fields.php:118
2546
  msgctxt "form-fields admin"
2547
  msgid "ID"
2548
+ msgstr "ID"
2549
 
2550
  #: includes/admin/form-fields.php:123
2551
  msgctxt "form-fields admin"
2552
  msgid "Shortname"
2553
+ msgstr "Nombre corto"
2554
 
2555
  #: includes/admin/form-fields.php:145
2556
  msgctxt "form-fields admin"
2870
  msgid "Automatically generate excerpt from content field?"
2871
  msgstr "¿Generar resumen automáticamente del campo de contenido?"
2872
 
2873
+ #: includes/fields/class-fieldtypes-url.php:36
2874
  msgctxt "form-fields admin"
2875
  msgid "Open link in a new window?"
2876
  msgstr "Abrir enlace en nueva ventana?"
2877
 
2878
+ #: includes/fields/class-fieldtypes-url.php:39
2879
  msgctxt "form-fields admin"
2880
  msgid "Use rel=\"nofollow\" when displaying the link?"
2881
  msgstr "Utilizar rel=\"nofollow\" cuando se muestre este enlace?"
3562
  msgstr "Autor"
3563
 
3564
  #: includes/admin/settings/class-settings-bootstrap.php:682
3565
+ #: includes/functions.php:1181
3566
  msgctxt "admin settings"
3567
  msgid "Date posted"
3568
  msgstr "Fecha de publicación"
3569
 
3570
  #: includes/admin/settings/class-settings-bootstrap.php:683
3571
+ #: includes/functions.php:1182
3572
  msgctxt "admin settings"
3573
  msgid "Date last modified"
3574
  msgstr "Fecha de última modificación"
3956
  "No se pudo copiar el plugin de compatibilidad AJAX \"%s\". El modo de "
3957
  "compatibilidad no fue activado."
3958
 
3959
+ #: includes/functions.php:1179
3960
  msgctxt "admin settings"
3961
  msgid "User"
3962
  msgstr "Usuario"
3963
 
3964
+ #: includes/functions.php:1180
3965
  msgctxt "admin settings"
3966
  msgid "User registration date"
3967
  msgstr "Fecha de registro del usuario"
5670
  msgid "Add New Listing"
5671
  msgstr "Agregar Nuevo Listado"
5672
 
5673
+ #: includes/class-listing.php:305
5674
  msgctxt "listing"
5675
  msgid "Listing has no registered payments"
5676
  msgstr "El listado no tiene pagos registrados"
5677
 
5678
+ #: includes/class-listing.php:313
5679
  msgctxt "listing"
5680
  msgid "Can't delete payment"
5681
  msgstr "No se puede eliminar el pago"
5682
 
5683
+ #: includes/class-listing.php:352
5684
  msgctxt "listing"
5685
  msgid "Listing expired"
5686
  msgstr "El listado expiró"
5687
 
5688
+ #: includes/class-listing.php:511
5689
  msgctxt "listing"
5690
  msgid "(Unavailable Plan)"
5691
  msgstr "(Comisión no disponible)"
5692
 
5693
+ #: includes/class-listing.php:668
5694
  msgctxt "listing"
5695
  msgid "Plan \"%s\" (recurring)"
5696
  msgstr "Comisión “%s” (recurrente)"
5697
 
5698
+ #: includes/class-listing.php:670
5699
  msgctxt "listing"
5700
  msgid "Plan \"%s\""
5701
  msgstr "Comisión “%s”"
5945
  "para cambiar las configuración. Hasta tanto, el directorio operará en "
5946
  "<i>Modo Gratuito</i>."
5947
 
5948
+ #: includes/class-payment.php:82
5949
  msgctxt "payment"
5950
+ msgid "Payment status changed from \"%1$s\" to \"%2$s\"."
5951
+ msgstr "El estado del pago cambió de “%1$s” a “%2$s”."
5952
 
5953
+ #: includes/class-payment.php:123
5954
  msgctxt "payment"
5955
  msgid "Initial payment (\"%s\")"
5956
  msgstr "Pago inicial (“%s”)"
5957
 
5958
+ #: includes/class-payment.php:126
5959
  msgctxt "payment"
5960
  msgid "Renewal payment (\"%s\")"
5961
  msgstr "Pago de renovación (“%s”)"
5962
 
5963
+ #: includes/class-payment.php:313
5964
  msgctxt "payment"
5965
  msgid "Pending"
5966
  msgstr "Pendiente"
5967
 
5968
+ #: includes/class-payment.php:314
5969
  msgctxt "payment"
5970
  msgid "Failed"
5971
  msgstr "Fallido"
5972
 
5973
+ #: includes/class-payment.php:315
5974
  msgctxt "payment"
5975
  msgid "Completed"
5976
  msgstr "Completado"
5977
 
5978
+ #: includes/class-payment.php:316
5979
  msgctxt "payment"
5980
  msgid "Canceled"
5981
  msgstr "Cancelado"
5982
 
5983
+ #: includes/class-payment.php:317
5984
  msgctxt "payment"
5985
  msgid "On Hold"
5986
  msgstr "En espera"
5987
 
5988
+ #: includes/class-payment.php:318
5989
  msgctxt "payment"
5990
  msgid "Refunded"
5991
  msgstr "Reintegrado"
5992
 
5993
+ #: includes/class-payment.php:138
5994
  msgctxt "payment summary"
5995
  msgid "%s. Admin Posted."
5996
  msgstr "%s. Publicado por el administrador."
5997
 
5998
+ #: includes/class-payment.php:140
5999
  msgctxt "payment summary"
6000
  msgid "%s. Imported Listing."
6001
  msgstr "%s. Listado importado."
6002
 
6003
+ #: includes/class-payment.php:218
6004
  msgctxt "submit listing"
6005
  msgid "Listing submitted by admin. Payment skipped."
6006
  msgstr "El listado fue publicado por el administrador. No se realizó pago."
6066
  msgstr ""
6067
  "Ha ingresado como administrador. Todos los pasos de pago serán saltados."
6068
 
6069
+ #: includes/views/submit_listing.php:388
6070
  msgctxt "submit listing"
6071
  msgid "Category selection"
6072
  msgstr "Selección de categoría"
6073
 
6074
+ #: includes/views/submit_listing.php:388
6075
  msgctxt "submit listing"
6076
  msgid "Category & plan selection"
6077
  msgstr "Selección de categoría y comisión"
6078
 
6079
+ #: includes/views/submit_listing.php:393
6080
  msgctxt "submit listing"
6081
  msgid "Listing Information"
6082
  msgstr "Información del listado"
6083
 
6084
+ #: includes/views/submit_listing.php:398
6085
  msgctxt "submit listing"
6086
  msgid "Listing Images"
6087
  msgstr "Imágenes del listado"
6088
 
6089
+ #: includes/views/submit_listing.php:406
6090
  msgctxt "submit listing"
6091
  msgid "Account Creation"
6092
  msgstr "Creación de cuenta de usuario"
6093
 
6094
+ #: includes/views/submit_listing.php:412
6095
  msgctxt "submit listing"
6096
  msgid "Terms and Conditions"
6097
  msgstr "Términos y Condiciones"
6098
 
6099
+ #: includes/views/submit_listing.php:449
6100
  msgctxt "submit listing"
6101
  msgid "(Please choose a fee plan above)"
6102
  msgstr "(Por favor elija una comisión arriba)"
6103
 
6104
+ #: includes/views/submit_listing.php:499
6105
  msgctxt "submit listing"
6106
  msgid "Can not submit a listing at this moment. Please try again later."
6107
  msgstr ""
6108
  "No puede publicar un listado en este momento. Por favor intente más tarde."
6109
 
6110
+ #: includes/views/submit_listing.php:527
6111
  msgctxt "submit listing"
6112
  msgid "Please select a category."
6113
  msgstr "Por favor seleccione una categoría."
6114
 
6115
+ #: includes/views/submit_listing.php:540
6116
  msgctxt "submit listing"
6117
  msgid "Please select a category for your listing."
6118
  msgstr "Por favor seleccione una categoría para su listado."
6119
 
6120
+ #: includes/views/submit_listing.php:560
6121
  msgctxt "submit listing"
6122
  msgid "Please choose a valid category for your plan."
6123
  msgstr "Por favor seleccione una categoría válida para su comisión."
6124
 
6125
+ #: includes/views/submit_listing.php:562
6126
  msgctxt "submit listing"
6127
  msgid "Please choose a valid fee plan for your category selection."
6128
  msgstr "Por favor elija una comisión válida para la categoría seleccionada."
6129
 
6130
+ #: includes/views/submit_listing.php:803
6131
  msgctxt "submit listing"
6132
  msgid "Please enter your desired username."
6133
  msgstr "Por favor ingrese su nombre de usuario."
6134
 
6135
+ #: includes/views/submit_listing.php:808
6136
  msgctxt "submit listing"
6137
  msgid "Please enter the e-mail for your new account."
6138
  msgstr ""
6139
  "Por favor ingrese la dirección de correo electrónico para su nueva cuenta."
6140
 
6141
+ #: includes/views/submit_listing.php:813
6142
  msgctxt "submit listing"
6143
  msgid "Please enter the password for your new account."
6144
  msgstr "Por favor ingrese la contraseña para su nueva cuenta."
6145
 
6146
+ #: includes/views/submit_listing.php:823
6147
  msgctxt "submit listing"
6148
  msgid "The username you chose is already in use. Please use a different one."
6149
  msgstr ""
6150
  "El nombre de usuario que eligió ya está en uso. Por favor elija un nombre de "
6151
  "usuario diferente."
6152
 
6153
+ #: includes/views/submit_listing.php:828
6154
  msgctxt "submit listing"
6155
  msgid "The e-mail address you chose for your account is already in use."
6156
  msgstr ""
6157
  "La dirección de correo electrónico que eligió para su cuenta ya está siendo "
6158
  "utilizada."
6159
 
6160
+ #: includes/views/submit_listing.php:843
6161
  msgctxt "submit listing"
6162
  msgid "Create a user account on this site"
6163
  msgstr "Crear una cuenta de usuario en este sitio"
6164
 
6165
+ #: includes/views/submit_listing.php:850
6166
  msgctxt "submit listing"
6167
  msgid ""
6168
  "You need to create an account on the site. Please fill out the form below."
6170
  "Debe crear una cuenta de usuario en este sitio. Por favor ingrese los datos "
6171
  "requeridos en el formulario que está debajo."
6172
 
6173
+ #: includes/views/submit_listing.php:856
6174
  msgctxt "submit listing"
6175
  msgid "Username:"
6176
  msgstr "Nombre de usuario:"
6177
 
6178
+ #: includes/views/submit_listing.php:865
6179
  msgctxt "submit listing"
6180
  msgid "Email:"
6181
  msgstr "Correo electrónico:"
6182
 
6183
+ #: includes/views/submit_listing.php:874
6184
  msgctxt "submit listing"
6185
  msgid "Password:"
6186
  msgstr "Contraseña:"
6331
  msgstr "Sitio Social (Otro)"
6332
 
6333
  #: includes/fields/class-fieldtypes-social.php:95
6334
+ #: includes/fields/class-fieldtypes-url.php:149
6335
  msgctxt "form-fields api"
6336
  msgid "URL:"
6337
  msgstr "URL:"
6338
 
6339
+ #: includes/fields/class-fieldtypes-social.php:115
6340
  msgctxt "form-fields api"
6341
  msgid "Text:"
6342
  msgstr "Texto:"
6343
 
6344
+ #: includes/fields/class-fieldtypes-social.php:122
6345
  msgctxt "form-fields api"
6346
+ msgid "Text to be displayed for social field"
6347
+ msgstr "Texto que será presentado para el campo social"
6348
 
6349
+ #: includes/fields/class-fieldtypes-social.php:140
6350
  msgctxt "form-fields api"
6351
  msgid "Type:"
6352
  msgstr "Tipo:"
6371
  msgid "Social Site (Twitter handle)"
6372
  msgstr "Sitio Social (Twitter @)"
6373
 
6374
+ #: includes/fields/class-fieldtypes-url.php:18
6375
  msgctxt "form-fields api"
6376
  msgid "URL Field"
6377
  msgstr "Campo de URL"
6378
 
6379
+ #: includes/fields/class-fieldtypes-url.php:157
6380
  msgctxt "form-fields api"
6381
  msgid "Link Text (optional):"
6382
  msgstr "Texto del enlace (opcional):"
6446
  msgstr "Se requiere leyenda para %s."
6447
 
6448
  #: includes/fields/class-fieldtypes-image.php:100
6449
+ #: includes/fields/class-fieldtypes-social.php:175
6450
  msgctxt "form-fields-api"
6451
  msgid "Remove"
6452
  msgstr "Eliminar"
6646
  msgid "Caption for %s is required."
6647
  msgstr "Se requiere leyenda para %s."
6648
 
6649
+ #: includes/functions.php:1259
6650
  msgctxt "templates"
6651
  msgid "Return to results"
6652
  msgstr "Regresar a resultados"
6653
 
6654
+ #: includes/functions.php:1263 includes/functions.php:1268
6655
  msgctxt "templates"
6656
  msgid "Go back"
6657
  msgstr "Regresar"
6658
 
6659
+ #: includes/payment.php:277 templates/renew-resume.tpl.php:39
6660
  msgctxt "templates"
6661
  msgid "Return to fee selection"
6662
  msgstr "Regresar a la selección de tarifa"
6717
  "Esto significa que no aparecerán acá. Si desea mostrar las categorías "
6718
  "vacías, haga <a>clic aquí</a> para cambiar la configuración."
6719
 
6720
+ #: includes/views/submit_listing.php:335
6721
  msgctxt "templates"
6722
  msgid ""
6723
  "<b>View not available</b>. Do you have the \"Disable Frontend Listing "
6726
  "<b>Vista no disponible</b>. ¿Tiene \"Deshabilitar envío de listados desde el "
6727
  "frontend\" habilitado?"
6728
 
6729
+ #: includes/views/submit_listing.php:337
6730
  msgctxt "templates"
6731
  msgid ""
6732
  "Listing submission has been disabled. Contact the administrator for details."
6734
  "Se ha deshabilitado la opción para agregar listados. Contacte al "
6735
  "administrador para más detalles."
6736
 
6737
+ #: includes/views/submit_listing.php:502
6738
  msgctxt "templates"
6739
  msgid ""
6740
  "Listing submission is not available at the moment. Contact the administrator "
6743
  "La opción para agregar listados no está disponible en el momento. Contacte "
6744
  "al administrador para más detalles."
6745
 
6746
+ #: includes/views/submit_listing.php:505
6747
  msgctxt "templates"
6748
  msgid ""
6749
  "<b>View not available</b>, there is no \"Category\" association field. %s "
6754
  "“Categoría”. %s y cree un nuevo campo con dicha asociación, o asigne la "
6755
  "asociación a un campo existente."
6756
 
6757
+ #: includes/views/submit_listing.php:912
6758
  msgctxt "templates"
6759
  msgid "Please agree to the Terms and Conditions."
6760
  msgstr "Por favor acepte los Términos y Condiciones."
6761
 
6762
+ #: includes/views/submit_listing.php:920
6763
  msgctxt "templates"
6764
  msgid "Terms and Conditions:"
6765
  msgstr "Términos y Condiciones:"
6766
 
6767
+ #: includes/views/submit_listing.php:929
6768
  msgctxt "templates"
6769
  msgid "I agree to the <a>Terms and Conditions</a>"
6770
  msgstr "Acepto los <a>Términos y Condiciones</a>"
6975
  msgid "Your listing has been submitted."
6976
  msgstr "Su listado fue enviado."
6977
 
6978
+ #: templates/submit-listing-done.tpl.php:14
6979
  msgctxt "templates"
6980
  msgid "Your listing changes were saved."
6981
  msgstr "Los cambios a su listado fueron guardados."
6982
 
6983
+ #: templates/submit-listing-done.tpl.php:19
6984
  msgctxt "templates"
6985
  msgid "Go to your listing"
6986
  msgstr "Ir a su listado"
6987
 
6988
+ #: templates/submit-listing-done.tpl.php:21
6989
  msgctxt "templates"
6990
  msgid ""
6991
  "Your listing requires admin approval. You'll be notified once your listing "
6994
  "Su listado debe ser aprobado por el administrador. Usted será notificado una "
6995
  "vez el listado sea aprobado."
6996
 
6997
+ #: templates/submit-listing-done.tpl.php:25
6998
  msgctxt "templates"
6999
  msgid "Return to directory."
7000
  msgstr "Regresar al Directorio."
7511
  msgid "Bill To:"
7512
  msgstr "Pagar a:"
7513
 
7514
+ #: includes/payment.php:96
7515
  msgctxt "checkout"
7516
  msgid "Print Receipt"
7517
  msgstr "Imprimir recibo"
7740
  msgstr ""
7741
  "Su pago está pendiente de ser verificado por parte de la pasarela de pago."
7742
 
7743
+ #: templates/checkout-confirmation.tpl.php:20
7744
  msgctxt "checkout"
7745
  msgid ""
7746
  "Verification usually takes some minutes. This page will automatically "
7848
  msgid "Error while uploading file"
7849
  msgstr "Ocurrió un error mientras se subía el archivo"
7850
 
7851
+ #: includes/views/delete_listing.php:38
7852
  msgctxt "delete listing"
7853
  msgid "Your listing has been deleted."
7854
  msgstr "Su listado ha sido eliminado."
8158
  msgstr ""
8159
  "Esta es tan solo una previsualización. El listado no ha sido publicado aún."
8160
 
8161
+ #: includes/views/submit_listing.php:671
8162
  msgctxt "listing submit"
8163
  msgid ""
8164
  "Something went wrong. Please check the form for errors, correct them and "
8167
  "Algo salió mal. Por favor verifique que el formulario no contiene errores y "
8168
  "envíelo de nuevo."
8169
 
8170
+ #: includes/views/submit_listing.php:755
8171
  msgctxt "listing submit"
8172
  msgid ""
8173
  "Image upload is required, please provide at least one image and submit again."
languages/WPBDM-fr_FR.mo CHANGED
Binary file
languages/WPBDM-fr_FR.po CHANGED
@@ -5,7 +5,7 @@ msgstr ""
5
  "Project-Id-Version: Business Directory Plugin v5.5\n"
6
  "Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/business-"
7
  "directory-plugin\n"
8
- "POT-Creation-Date: 2019-03-20 00:09:46+00:00\n"
9
  "PO-Revision-Date: 2017-11-13 00:48+0100\n"
10
  "Last-Translator: Laurent Provin <lprovin@yahoo.fr>\n"
11
  "Language-Team: BD Team <support@businessdirectoryplugin.com>\n"
@@ -1194,7 +1194,7 @@ msgstr ""
1194
  "Vous pouvez créer ces champs personnalisés pas vous-mêmes dans \"Gestion des "
1195
  "Champs\" ou laissez le plugin le faire pour vous automatiquement."
1196
 
1197
- #: includes/admin/form-fields.php:214 includes/views/submit_listing.php:516
1198
  msgctxt "admin"
1199
  msgid "Go to \"Manage Form Fields\""
1200
  msgstr "Aller à \"Gestion des Champs\""
@@ -1204,12 +1204,12 @@ msgctxt "admin"
1204
  msgid "Create these required fields for me"
1205
  msgstr "Créer ces champs obligatoires pour moi"
1206
 
1207
- #: includes/payment.php:181
1208
  msgctxt "admin"
1209
  msgid "Pending Abandonment"
1210
  msgstr "Abandon en cours"
1211
 
1212
- #: includes/payment.php:186
1213
  msgctxt "admin"
1214
  msgid "Abandoned"
1215
  msgstr "Abandonné"
@@ -1225,47 +1225,47 @@ msgctxt "listing status"
1225
  msgid "Reported"
1226
  msgstr ""
1227
 
1228
- #: includes/class-listing.php:768
1229
  msgctxt "listing status"
1230
  msgid "Unknown"
1231
  msgstr "Inconnu"
1232
 
1233
- #: includes/class-listing.php:769
1234
  msgctxt "listing status"
1235
  msgid "Legacy"
1236
  msgstr "Don"
1237
 
1238
- #: includes/class-listing.php:770
1239
  msgctxt "listing status"
1240
  msgid "Incomplete"
1241
  msgstr "Incomplet"
1242
 
1243
- #: includes/class-listing.php:771
1244
  msgctxt "listing status"
1245
  msgid "Pending Payment"
1246
  msgstr "Paiement en attente"
1247
 
1248
- #: includes/class-listing.php:772
1249
  msgctxt "listing status"
1250
  msgid "Complete"
1251
  msgstr "Complet"
1252
 
1253
- #: includes/class-listing.php:773
1254
  msgctxt "listing status"
1255
  msgid "Pending Upgrade"
1256
  msgstr "En attente de mise à niveau"
1257
 
1258
- #: includes/class-listing.php:774
1259
  msgctxt "listing status"
1260
  msgid "Expired"
1261
  msgstr "Expiré"
1262
 
1263
- #: includes/class-listing.php:775
1264
  msgctxt "listing status"
1265
  msgid "Pending Renewal"
1266
  msgstr "Actives + En attente de renouvellement"
1267
 
1268
- #: includes/class-listing.php:776
1269
  msgctxt "listing status"
1270
  msgid "Abandoned"
1271
  msgstr "Abandonné"
@@ -1905,22 +1905,22 @@ msgctxt "themes"
1905
  msgid "Theme was updated successfully."
1906
  msgstr "Le thème a été mis à jour avec succès."
1907
 
1908
- #: includes/themes.php:825
1909
  msgctxt "themes"
1910
  msgid "ZIP file is not a valid BD theme file."
1911
  msgstr "Le fichier ZIP n'est pas un fichier de thème valide."
1912
 
1913
- #: includes/themes.php:831
1914
  msgctxt "themes"
1915
  msgid "Could not create themes directory."
1916
  msgstr "Impossible de créer le répertoire de thèmes."
1917
 
1918
- #: includes/themes.php:839
1919
  msgctxt "themes"
1920
  msgid "Could not remove previous theme directory \"%s\"."
1921
  msgstr "Impossible de supprimer le dossier de thème précédent \"%s\"."
1922
 
1923
- #: includes/themes.php:845
1924
  msgctxt "themes"
1925
  msgid "Could not move new theme into theme directory."
1926
  msgstr "Impossible de déplacer le nouveau thème dans le dossier à thèmes."
@@ -2892,12 +2892,12 @@ msgctxt "form-fields admin"
2892
  msgid "Automatically generate excerpt from content field?"
2893
  msgstr "Générer automatiquement un extrait d'un champ du contenu ?"
2894
 
2895
- #: includes/fields/class-fieldtypes-url.php:23
2896
  msgctxt "form-fields admin"
2897
  msgid "Open link in a new window?"
2898
  msgstr "Ouvrir le lien dans une nouvelle fenêtre?"
2899
 
2900
- #: includes/fields/class-fieldtypes-url.php:26
2901
  msgctxt "form-fields admin"
2902
  msgid "Use rel=\"nofollow\" when displaying the link?"
2903
  msgstr "Utiliser rel=\"nofollow\" lors de l'affichage du lien?"
@@ -3592,13 +3592,13 @@ msgid "Author"
3592
  msgstr "Auteur"
3593
 
3594
  #: includes/admin/settings/class-settings-bootstrap.php:682
3595
- #: includes/functions.php:1179
3596
  msgctxt "admin settings"
3597
  msgid "Date posted"
3598
  msgstr "Date d'ajout"
3599
 
3600
  #: includes/admin/settings/class-settings-bootstrap.php:683
3601
- #: includes/functions.php:1180
3602
  msgctxt "admin settings"
3603
  msgid "Date last modified"
3604
  msgstr "Date de dernière modification"
@@ -3999,12 +3999,12 @@ msgstr ""
3999
  "Impossible de copier le plugin de compatibilité AJAX \"% s\". Le mode de "
4000
  "compatibilité n'a pas été activé."
4001
 
4002
- #: includes/functions.php:1177
4003
  msgctxt "admin settings"
4004
  msgid "User"
4005
  msgstr "Utilisateur"
4006
 
4007
- #: includes/functions.php:1178
4008
  msgctxt "admin settings"
4009
  msgid "User registration date"
4010
  msgstr "Date d'expiration de l'annonce"
@@ -5702,35 +5702,35 @@ msgctxt "listing"
5702
  msgid "Add New Listing"
5703
  msgstr "Ajouter une nouvelle annonce"
5704
 
5705
- #: includes/class-listing.php:302
5706
  #, fuzzy
5707
  msgctxt "listing"
5708
  msgid "Listing has no registered payments"
5709
  msgstr "Date d'expiration de l'annonce"
5710
 
5711
- #: includes/class-listing.php:310
5712
  #, fuzzy
5713
  msgctxt "listing"
5714
  msgid "Can't delete payment"
5715
  msgstr "Supprimer le paiement"
5716
 
5717
- #: includes/class-listing.php:349
5718
  msgctxt "listing"
5719
  msgid "Listing expired"
5720
  msgstr "Une annonce expire"
5721
 
5722
- #: includes/class-listing.php:508
5723
  msgctxt "listing"
5724
  msgid "(Unavailable Plan)"
5725
  msgstr "(Plan indisponible disponible)"
5726
 
5727
- #: includes/class-listing.php:665
5728
  #, fuzzy
5729
  msgctxt "listing"
5730
  msgid "Plan \"%s\" (recurring)"
5731
  msgstr "(récurrent)"
5732
 
5733
- #: includes/class-listing.php:667
5734
  msgctxt "listing"
5735
  msgid "Plan \"%s\""
5736
  msgstr "Statut \"%s\""
@@ -5982,63 +5982,64 @@ msgstr ""
5982
  "pour modifier les paramètres de paiement. Jusqu'à ce que vous modifiez cela, "
5983
  "le répertoire fonctionnera en <i> Mode libre </ i>."
5984
 
5985
- #: includes/class-payment.php:65
 
5986
  msgctxt "payment"
5987
- msgid "Payment status changed from \"%s\" to \"%s\"."
5988
  msgstr "L'état de paiement a changé de \"%s\" à \"%s\"."
5989
 
5990
- #: includes/class-payment.php:98
5991
  msgctxt "payment"
5992
  msgid "Initial payment (\"%s\")"
5993
  msgstr "Paiement Initial"
5994
 
5995
- #: includes/class-payment.php:101
5996
  msgctxt "payment"
5997
  msgid "Renewal payment (\"%s\")"
5998
  msgstr "Renouvellement Paiement (\"%s\")"
5999
 
6000
- #: includes/class-payment.php:266
6001
  msgctxt "payment"
6002
  msgid "Pending"
6003
  msgstr "En attente"
6004
 
6005
- #: includes/class-payment.php:267
6006
  msgctxt "payment"
6007
  msgid "Failed"
6008
  msgstr "Échoué"
6009
 
6010
- #: includes/class-payment.php:268
6011
  msgctxt "payment"
6012
  msgid "Completed"
6013
  msgstr "Terminé"
6014
 
6015
- #: includes/class-payment.php:269
6016
  msgctxt "payment"
6017
  msgid "Canceled"
6018
  msgstr "Annulé"
6019
 
6020
- #: includes/class-payment.php:270
6021
  msgctxt "payment"
6022
  msgid "On Hold"
6023
  msgstr "En attente"
6024
 
6025
- #: includes/class-payment.php:271
6026
  msgctxt "payment"
6027
  msgid "Refunded"
6028
  msgstr "Remboursé"
6029
 
6030
- #: includes/class-payment.php:113
6031
  msgctxt "payment summary"
6032
  msgid "%s. Admin Posted."
6033
  msgstr "%s. Administrateur publié."
6034
 
6035
- #: includes/class-payment.php:115
6036
  #, fuzzy
6037
  msgctxt "payment summary"
6038
  msgid "%s. Imported Listing."
6039
  msgstr "Importation des listes"
6040
 
6041
- #: includes/class-payment.php:188
6042
  msgctxt "submit listing"
6043
  msgid "Listing submitted by admin. Payment skipped."
6044
  msgstr "Annonce soumis par admin. Paiement sauté."
@@ -6108,105 +6109,105 @@ msgstr ""
6108
  "Vous êtes connecté en tant qu'administrateur. Toutes les étapes de paiement "
6109
  "seront passées."
6110
 
6111
- #: includes/views/submit_listing.php:392
6112
  #, fuzzy
6113
  msgctxt "submit listing"
6114
  msgid "Category selection"
6115
  msgstr "Sélection de la catégorie"
6116
 
6117
- #: includes/views/submit_listing.php:392
6118
  msgctxt "submit listing"
6119
  msgid "Category & plan selection"
6120
  msgstr "Sélection Catégorie et plan"
6121
 
6122
- #: includes/views/submit_listing.php:397
6123
  msgctxt "submit listing"
6124
  msgid "Listing Information"
6125
  msgstr "Information sur l'annonce"
6126
 
6127
- #: includes/views/submit_listing.php:402
6128
  msgctxt "submit listing"
6129
  msgid "Listing Images"
6130
  msgstr "Liste des images"
6131
 
6132
- #: includes/views/submit_listing.php:410
6133
  msgctxt "submit listing"
6134
  msgid "Account Creation"
6135
  msgstr "Création de compte"
6136
 
6137
- #: includes/views/submit_listing.php:416
6138
  msgctxt "submit listing"
6139
  msgid "Terms and Conditions"
6140
  msgstr "Conditions d'utilisation"
6141
 
6142
- #: includes/views/submit_listing.php:453
6143
  msgctxt "submit listing"
6144
  msgid "(Please choose a fee plan above)"
6145
  msgstr "(Veuillez choisir un tarif ci-dessus)"
6146
 
6147
- #: includes/views/submit_listing.php:503
6148
  msgctxt "submit listing"
6149
  msgid "Can not submit a listing at this moment. Please try again later."
6150
  msgstr ""
6151
  "Impossible de soumettre une liste en ce moment. Veuillez réessayer plus tard."
6152
 
6153
- #: includes/views/submit_listing.php:531
6154
  msgctxt "submit listing"
6155
  msgid "Please select a category."
6156
  msgstr "Veuillez sélectionner une catégorie."
6157
 
6158
- #: includes/views/submit_listing.php:544
6159
  #, fuzzy
6160
  msgctxt "submit listing"
6161
  msgid "Please select a category for your listing."
6162
  msgstr "Veuillez choisir une catégorie valide pour votre annonce."
6163
 
6164
- #: includes/views/submit_listing.php:564
6165
  msgctxt "submit listing"
6166
  msgid "Please choose a valid category for your plan."
6167
  msgstr "Veuillez choisir une catégorie valide pour votre annonce."
6168
 
6169
- #: includes/views/submit_listing.php:566
6170
  msgctxt "submit listing"
6171
  msgid "Please choose a valid fee plan for your category selection."
6172
  msgstr ""
6173
  "S'il vous plaît choisir un plan tarifaire valable pour votre sélection de "
6174
  "catégorie."
6175
 
6176
- #: includes/views/submit_listing.php:807
6177
  msgctxt "submit listing"
6178
  msgid "Please enter your desired username."
6179
  msgstr "S'il vous plaît entrer votre nom d'utilisateur souhaité."
6180
 
6181
- #: includes/views/submit_listing.php:812
6182
  msgctxt "submit listing"
6183
  msgid "Please enter the e-mail for your new account."
6184
  msgstr "S'il vous plaît entrer votre e-mail pour votre nouveau compte."
6185
 
6186
- #: includes/views/submit_listing.php:817
6187
  msgctxt "submit listing"
6188
  msgid "Please enter the password for your new account."
6189
  msgstr "Veuillez entrer le mot de passe de votre nouveau compte."
6190
 
6191
- #: includes/views/submit_listing.php:827
6192
  msgctxt "submit listing"
6193
  msgid "The username you chose is already in use. Please use a different one."
6194
  msgstr ""
6195
  "Le nom d'utilisateur que vous avez choisi est déjà utilisé. Veuillez en "
6196
  "utiliser un autre."
6197
 
6198
- #: includes/views/submit_listing.php:832
6199
  msgctxt "submit listing"
6200
  msgid "The e-mail address you chose for your account is already in use."
6201
  msgstr ""
6202
  "L'adresse e-mail que vous avez choisie pour votre compte est déjà utilisée."
6203
 
6204
- #: includes/views/submit_listing.php:847
6205
  msgctxt "submit listing"
6206
  msgid "Create a user account on this site"
6207
  msgstr "Créer un compte utilisateur sur ce site"
6208
 
6209
- #: includes/views/submit_listing.php:854
6210
  msgctxt "submit listing"
6211
  msgid ""
6212
  "You need to create an account on the site. Please fill out the form below."
@@ -6214,17 +6215,17 @@ msgstr ""
6214
  "Vous devez créer un compte sur le site. Veuillez remplir le formulaire ci-"
6215
  "dessous."
6216
 
6217
- #: includes/views/submit_listing.php:860
6218
  msgctxt "submit listing"
6219
  msgid "Username:"
6220
  msgstr "Nom d'utilisateur (login) :"
6221
 
6222
- #: includes/views/submit_listing.php:869
6223
  msgctxt "submit listing"
6224
  msgid "Email:"
6225
  msgstr "E-Mail:"
6226
 
6227
- #: includes/views/submit_listing.php:878
6228
  msgctxt "submit listing"
6229
  msgid "Password:"
6230
  msgstr "Mot de passe :"
@@ -6381,23 +6382,23 @@ msgid "Social Site (Other)"
6381
  msgstr "Réseaux sociaux (Page Twitter)"
6382
 
6383
  #: includes/fields/class-fieldtypes-social.php:95
6384
- #: includes/fields/class-fieldtypes-url.php:136
6385
  msgctxt "form-fields api"
6386
  msgid "URL:"
6387
  msgstr "URL:"
6388
 
6389
- #: includes/fields/class-fieldtypes-social.php:108
6390
  #, fuzzy
6391
  msgctxt "form-fields api"
6392
  msgid "Text:"
6393
  msgstr "Zone de texte"
6394
 
6395
- #: includes/fields/class-fieldtypes-social.php:114
6396
  msgctxt "form-fields api"
6397
- msgid "Text to be displayed along with icon"
6398
  msgstr ""
6399
 
6400
- #: includes/fields/class-fieldtypes-social.php:121
6401
  #, fuzzy
6402
  msgctxt "form-fields api"
6403
  msgid "Type:"
@@ -6423,12 +6424,12 @@ msgctxt "form-fields api"
6423
  msgid "Social Site (Twitter handle)"
6424
  msgstr "Réseaux sociaux (Page Twitter)"
6425
 
6426
- #: includes/fields/class-fieldtypes-url.php:5
6427
  msgctxt "form-fields api"
6428
  msgid "URL Field"
6429
  msgstr "Champ URL"
6430
 
6431
- #: includes/fields/class-fieldtypes-url.php:144
6432
  msgctxt "form-fields api"
6433
  msgid "Link Text (optional):"
6434
  msgstr "Lien texte (facultatif):"
@@ -6500,7 +6501,7 @@ msgid "Caption for %s is required."
6500
  msgstr "Le pays est requis"
6501
 
6502
  #: includes/fields/class-fieldtypes-image.php:100
6503
- #: includes/fields/class-fieldtypes-social.php:156
6504
  msgctxt "form-fields-api"
6505
  msgid "Remove"
6506
  msgstr "Supprimer"
@@ -6699,19 +6700,19 @@ msgctxt "image field"
6699
  msgid "Caption for %s is required."
6700
  msgstr "Le pays est requis"
6701
 
6702
- #: includes/functions.php:1257
6703
  #, fuzzy
6704
  msgctxt "templates"
6705
  msgid "Return to results"
6706
  msgstr "Retourner vers l'annuaire"
6707
 
6708
- #: includes/functions.php:1261 includes/functions.php:1266
6709
  #, fuzzy
6710
  msgctxt "templates"
6711
  msgid "Go back"
6712
  msgstr "Non, reviens"
6713
 
6714
- #: includes/payment.php:278 templates/renew-resume.tpl.php:39
6715
  #, fuzzy
6716
  msgctxt "templates"
6717
  msgid "Return to fee selection"
@@ -6775,7 +6776,7 @@ msgstr ""
6775
  "frontal votre site. Si cela ne correspond pas à votre souhait, cliquez </a> "
6776
  "ici <a> pour modifier le paramétrage."
6777
 
6778
- #: includes/views/submit_listing.php:339
6779
  msgctxt "templates"
6780
  msgid ""
6781
  "<b>View not available</b>. Do you have the \"Disable Frontend Listing "
@@ -6784,20 +6785,20 @@ msgstr ""
6784
  "<b>Aperçu non disponible</b>. Avez-vous coché le paramètre \"Désactiver la "
6785
  "soumission de l'annonce publique ?\" ?"
6786
 
6787
- #: includes/views/submit_listing.php:341
6788
  msgctxt "templates"
6789
  msgid ""
6790
  "Listing submission has been disabled. Contact the administrator for details."
6791
  msgstr ""
6792
 
6793
- #: includes/views/submit_listing.php:506
6794
  msgctxt "templates"
6795
  msgid ""
6796
  "Listing submission is not available at the moment. Contact the administrator "
6797
  "for details."
6798
  msgstr ""
6799
 
6800
- #: includes/views/submit_listing.php:509
6801
  msgctxt "templates"
6802
  msgid ""
6803
  "<b>View not available</b>, there is no \"Category\" association field. %s "
@@ -6805,17 +6806,17 @@ msgid ""
6805
  "an existing field"
6806
  msgstr ""
6807
 
6808
- #: includes/views/submit_listing.php:916
6809
  msgctxt "templates"
6810
  msgid "Please agree to the Terms and Conditions."
6811
  msgstr "Veuillez accepter les conditions d'utilisation."
6812
 
6813
- #: includes/views/submit_listing.php:924
6814
  msgctxt "templates"
6815
  msgid "Terms and Conditions:"
6816
  msgstr "Conditions d'utilisation:"
6817
 
6818
- #: includes/views/submit_listing.php:933
6819
  msgctxt "templates"
6820
  msgid "I agree to the <a>Terms and Conditions</a>"
6821
  msgstr "J'accepte <a> Conditions générales </a>"
@@ -7032,17 +7033,17 @@ msgctxt "templates"
7032
  msgid "Your listing has been submitted."
7033
  msgstr "Votre annonce a été soumise."
7034
 
7035
- #: templates/submit-listing-done.tpl.php:11
7036
  msgctxt "templates"
7037
  msgid "Your listing changes were saved."
7038
  msgstr "Les changements apportés à votre annonce ont été sauvegardés."
7039
 
7040
- #: templates/submit-listing-done.tpl.php:16
7041
  msgctxt "templates"
7042
  msgid "Go to your listing"
7043
  msgstr "Aller vers votre annonce"
7044
 
7045
- #: templates/submit-listing-done.tpl.php:18
7046
  msgctxt "templates"
7047
  msgid ""
7048
  "Your listing requires admin approval. You'll be notified once your listing "
@@ -7051,7 +7052,7 @@ msgstr ""
7051
  "Votre fiche nécessite la validation de l'administrateur. Vous serez averti "
7052
  "une fois votre annonce approuvée."
7053
 
7054
- #: templates/submit-listing-done.tpl.php:22
7055
  msgctxt "templates"
7056
  msgid "Return to directory."
7057
  msgstr "Retourner vers l'annuaire."
@@ -7593,7 +7594,7 @@ msgctxt "payments"
7593
  msgid "Bill To:"
7594
  msgstr "Facturé à :"
7595
 
7596
- #: includes/payment.php:97
7597
  msgctxt "checkout"
7598
  msgid "Print Receipt"
7599
  msgstr "Imprimer le reçu"
@@ -7817,7 +7818,7 @@ msgid "Your payment is awaiting verification by the gateway."
7817
  msgstr ""
7818
  "Votre paiement est en attente de vérification par la passerelle de paiement."
7819
 
7820
- #: templates/checkout-confirmation.tpl.php:19
7821
  msgctxt "checkout"
7822
  msgid ""
7823
  "Verification usually takes some minutes. This page will automatically "
@@ -7931,7 +7932,7 @@ msgctxt "utils"
7931
  msgid "Error while uploading file"
7932
  msgstr "Erreur durant l'upload du fichier"
7933
 
7934
- #: includes/views/delete_listing.php:32
7935
  msgctxt "delete listing"
7936
  msgid "Your listing has been deleted."
7937
  msgstr "Votre annonce a été effacée."
@@ -8251,7 +8252,7 @@ msgstr ""
8251
  "Il s'agit seulement d'une pré-visualisation. L'annonce n'a pas encore été "
8252
  "publiée."
8253
 
8254
- #: includes/views/submit_listing.php:675
8255
  msgctxt "listing submit"
8256
  msgid ""
8257
  "Something went wrong. Please check the form for errors, correct them and "
@@ -8260,7 +8261,7 @@ msgstr ""
8260
  "Quelque chose s'est mal passé. Veuillez vérifier le formulaire, corriger les "
8261
  "erreurs et soumettre à nouveau."
8262
 
8263
- #: includes/views/submit_listing.php:759
8264
  msgctxt "listing submit"
8265
  msgid ""
8266
  "Image upload is required, please provide at least one image and submit again."
5
  "Project-Id-Version: Business Directory Plugin v5.5\n"
6
  "Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/business-"
7
  "directory-plugin\n"
8
+ "POT-Creation-Date: 2019-04-23 21:12:39+00:00\n"
9
  "PO-Revision-Date: 2017-11-13 00:48+0100\n"
10
  "Last-Translator: Laurent Provin <lprovin@yahoo.fr>\n"
11
  "Language-Team: BD Team <support@businessdirectoryplugin.com>\n"
1194
  "Vous pouvez créer ces champs personnalisés pas vous-mêmes dans \"Gestion des "
1195
  "Champs\" ou laissez le plugin le faire pour vous automatiquement."
1196
 
1197
+ #: includes/admin/form-fields.php:214 includes/views/submit_listing.php:512
1198
  msgctxt "admin"
1199
  msgid "Go to \"Manage Form Fields\""
1200
  msgstr "Aller à \"Gestion des Champs\""
1204
  msgid "Create these required fields for me"
1205
  msgstr "Créer ces champs obligatoires pour moi"
1206
 
1207
+ #: includes/payment.php:180
1208
  msgctxt "admin"
1209
  msgid "Pending Abandonment"
1210
  msgstr "Abandon en cours"
1211
 
1212
+ #: includes/payment.php:185
1213
  msgctxt "admin"
1214
  msgid "Abandoned"
1215
  msgstr "Abandonné"
1225
  msgid "Reported"
1226
  msgstr ""
1227
 
1228
+ #: includes/class-listing.php:771
1229
  msgctxt "listing status"
1230
  msgid "Unknown"
1231
  msgstr "Inconnu"
1232
 
1233
+ #: includes/class-listing.php:772
1234
  msgctxt "listing status"
1235
  msgid "Legacy"
1236
  msgstr "Don"
1237
 
1238
+ #: includes/class-listing.php:773
1239
  msgctxt "listing status"
1240
  msgid "Incomplete"
1241
  msgstr "Incomplet"
1242
 
1243
+ #: includes/class-listing.php:774
1244
  msgctxt "listing status"
1245
  msgid "Pending Payment"
1246
  msgstr "Paiement en attente"
1247
 
1248
+ #: includes/class-listing.php:775
1249
  msgctxt "listing status"
1250
  msgid "Complete"
1251
  msgstr "Complet"
1252
 
1253
+ #: includes/class-listing.php:776
1254
  msgctxt "listing status"
1255
  msgid "Pending Upgrade"
1256
  msgstr "En attente de mise à niveau"
1257
 
1258
+ #: includes/class-listing.php:777
1259
  msgctxt "listing status"
1260
  msgid "Expired"
1261
  msgstr "Expiré"
1262
 
1263
+ #: includes/class-listing.php:778
1264
  msgctxt "listing status"
1265
  msgid "Pending Renewal"
1266
  msgstr "Actives + En attente de renouvellement"
1267
 
1268
+ #: includes/class-listing.php:779
1269
  msgctxt "listing status"
1270
  msgid "Abandoned"
1271
  msgstr "Abandonné"
1905
  msgid "Theme was updated successfully."
1906
  msgstr "Le thème a été mis à jour avec succès."
1907
 
1908
+ #: includes/themes.php:829
1909
  msgctxt "themes"
1910
  msgid "ZIP file is not a valid BD theme file."
1911
  msgstr "Le fichier ZIP n'est pas un fichier de thème valide."
1912
 
1913
+ #: includes/themes.php:835
1914
  msgctxt "themes"
1915
  msgid "Could not create themes directory."
1916
  msgstr "Impossible de créer le répertoire de thèmes."
1917
 
1918
+ #: includes/themes.php:843
1919
  msgctxt "themes"
1920
  msgid "Could not remove previous theme directory \"%s\"."
1921
  msgstr "Impossible de supprimer le dossier de thème précédent \"%s\"."
1922
 
1923
+ #: includes/themes.php:849
1924
  msgctxt "themes"
1925
  msgid "Could not move new theme into theme directory."
1926
  msgstr "Impossible de déplacer le nouveau thème dans le dossier à thèmes."
2892
  msgid "Automatically generate excerpt from content field?"
2893
  msgstr "Générer automatiquement un extrait d'un champ du contenu ?"
2894
 
2895
+ #: includes/fields/class-fieldtypes-url.php:36
2896
  msgctxt "form-fields admin"
2897
  msgid "Open link in a new window?"
2898
  msgstr "Ouvrir le lien dans une nouvelle fenêtre?"
2899
 
2900
+ #: includes/fields/class-fieldtypes-url.php:39
2901
  msgctxt "form-fields admin"
2902
  msgid "Use rel=\"nofollow\" when displaying the link?"
2903
  msgstr "Utiliser rel=\"nofollow\" lors de l'affichage du lien?"
3592
  msgstr "Auteur"
3593
 
3594
  #: includes/admin/settings/class-settings-bootstrap.php:682
3595
+ #: includes/functions.php:1181
3596
  msgctxt "admin settings"
3597
  msgid "Date posted"
3598
  msgstr "Date d'ajout"
3599
 
3600
  #: includes/admin/settings/class-settings-bootstrap.php:683
3601
+ #: includes/functions.php:1182
3602
  msgctxt "admin settings"
3603
  msgid "Date last modified"
3604
  msgstr "Date de dernière modification"
3999
  "Impossible de copier le plugin de compatibilité AJAX \"% s\". Le mode de "
4000
  "compatibilité n'a pas été activé."
4001
 
4002
+ #: includes/functions.php:1179
4003
  msgctxt "admin settings"
4004
  msgid "User"
4005
  msgstr "Utilisateur"
4006
 
4007
+ #: includes/functions.php:1180
4008
  msgctxt "admin settings"
4009
  msgid "User registration date"
4010
  msgstr "Date d'expiration de l'annonce"
5702
  msgid "Add New Listing"
5703
  msgstr "Ajouter une nouvelle annonce"
5704
 
5705
+ #: includes/class-listing.php:305
5706
  #, fuzzy
5707
  msgctxt "listing"
5708
  msgid "Listing has no registered payments"
5709
  msgstr "Date d'expiration de l'annonce"
5710
 
5711
+ #: includes/class-listing.php:313
5712
  #, fuzzy
5713
  msgctxt "listing"
5714
  msgid "Can't delete payment"
5715
  msgstr "Supprimer le paiement"
5716
 
5717
+ #: includes/class-listing.php:352
5718
  msgctxt "listing"
5719
  msgid "Listing expired"
5720
  msgstr "Une annonce expire"
5721
 
5722
+ #: includes/class-listing.php:511
5723
  msgctxt "listing"
5724
  msgid "(Unavailable Plan)"
5725
  msgstr "(Plan indisponible disponible)"
5726
 
5727
+ #: includes/class-listing.php:668
5728
  #, fuzzy
5729
  msgctxt "listing"
5730
  msgid "Plan \"%s\" (recurring)"
5731
  msgstr "(récurrent)"
5732
 
5733
+ #: includes/class-listing.php:670
5734
  msgctxt "listing"
5735
  msgid "Plan \"%s\""
5736
  msgstr "Statut \"%s\""
5982
  "pour modifier les paramètres de paiement. Jusqu'à ce que vous modifiez cela, "
5983
  "le répertoire fonctionnera en <i> Mode libre </ i>."
5984
 
5985
+ #: includes/class-payment.php:82
5986
+ #, fuzzy
5987
  msgctxt "payment"
5988
+ msgid "Payment status changed from \"%1$s\" to \"%2$s\"."
5989
  msgstr "L'état de paiement a changé de \"%s\" à \"%s\"."
5990
 
5991
+ #: includes/class-payment.php:123
5992
  msgctxt "payment"
5993
  msgid "Initial payment (\"%s\")"
5994
  msgstr "Paiement Initial"
5995
 
5996
+ #: includes/class-payment.php:126
5997
  msgctxt "payment"
5998
  msgid "Renewal payment (\"%s\")"
5999
  msgstr "Renouvellement Paiement (\"%s\")"
6000
 
6001
+ #: includes/class-payment.php:313
6002
  msgctxt "payment"
6003
  msgid "Pending"
6004
  msgstr "En attente"
6005
 
6006
+ #: includes/class-payment.php:314
6007
  msgctxt "payment"
6008
  msgid "Failed"
6009
  msgstr "Échoué"
6010
 
6011
+ #: includes/class-payment.php:315
6012
  msgctxt "payment"
6013
  msgid "Completed"
6014
  msgstr "Terminé"
6015
 
6016
+ #: includes/class-payment.php:316
6017
  msgctxt "payment"
6018
  msgid "Canceled"
6019
  msgstr "Annulé"
6020
 
6021
+ #: includes/class-payment.php:317
6022
  msgctxt "payment"
6023
  msgid "On Hold"
6024
  msgstr "En attente"
6025
 
6026
+ #: includes/class-payment.php:318
6027
  msgctxt "payment"
6028
  msgid "Refunded"
6029
  msgstr "Remboursé"
6030
 
6031
+ #: includes/class-payment.php:138
6032
  msgctxt "payment summary"
6033
  msgid "%s. Admin Posted."
6034
  msgstr "%s. Administrateur publié."
6035
 
6036
+ #: includes/class-payment.php:140
6037
  #, fuzzy
6038
  msgctxt "payment summary"
6039
  msgid "%s. Imported Listing."
6040
  msgstr "Importation des listes"
6041
 
6042
+ #: includes/class-payment.php:218
6043
  msgctxt "submit listing"
6044
  msgid "Listing submitted by admin. Payment skipped."
6045
  msgstr "Annonce soumis par admin. Paiement sauté."
6109
  "Vous êtes connecté en tant qu'administrateur. Toutes les étapes de paiement "
6110
  "seront passées."
6111
 
6112
+ #: includes/views/submit_listing.php:388
6113
  #, fuzzy
6114
  msgctxt "submit listing"
6115
  msgid "Category selection"
6116
  msgstr "Sélection de la catégorie"
6117
 
6118
+ #: includes/views/submit_listing.php:388
6119
  msgctxt "submit listing"
6120
  msgid "Category & plan selection"
6121
  msgstr "Sélection Catégorie et plan"
6122
 
6123
+ #: includes/views/submit_listing.php:393
6124
  msgctxt "submit listing"
6125
  msgid "Listing Information"
6126
  msgstr "Information sur l'annonce"
6127
 
6128
+ #: includes/views/submit_listing.php:398
6129
  msgctxt "submit listing"
6130
  msgid "Listing Images"
6131
  msgstr "Liste des images"
6132
 
6133
+ #: includes/views/submit_listing.php:406
6134
  msgctxt "submit listing"
6135
  msgid "Account Creation"
6136
  msgstr "Création de compte"
6137
 
6138
+ #: includes/views/submit_listing.php:412
6139
  msgctxt "submit listing"
6140
  msgid "Terms and Conditions"
6141
  msgstr "Conditions d'utilisation"
6142
 
6143
+ #: includes/views/submit_listing.php:449
6144
  msgctxt "submit listing"
6145
  msgid "(Please choose a fee plan above)"
6146
  msgstr "(Veuillez choisir un tarif ci-dessus)"
6147
 
6148
+ #: includes/views/submit_listing.php:499
6149
  msgctxt "submit listing"
6150
  msgid "Can not submit a listing at this moment. Please try again later."
6151
  msgstr ""
6152
  "Impossible de soumettre une liste en ce moment. Veuillez réessayer plus tard."
6153
 
6154
+ #: includes/views/submit_listing.php:527
6155
  msgctxt "submit listing"
6156
  msgid "Please select a category."
6157
  msgstr "Veuillez sélectionner une catégorie."
6158
 
6159
+ #: includes/views/submit_listing.php:540
6160
  #, fuzzy
6161
  msgctxt "submit listing"
6162
  msgid "Please select a category for your listing."
6163
  msgstr "Veuillez choisir une catégorie valide pour votre annonce."
6164
 
6165
+ #: includes/views/submit_listing.php:560
6166
  msgctxt "submit listing"
6167
  msgid "Please choose a valid category for your plan."
6168
  msgstr "Veuillez choisir une catégorie valide pour votre annonce."
6169
 
6170
+ #: includes/views/submit_listing.php:562
6171
  msgctxt "submit listing"
6172
  msgid "Please choose a valid fee plan for your category selection."
6173
  msgstr ""
6174
  "S'il vous plaît choisir un plan tarifaire valable pour votre sélection de "
6175
  "catégorie."
6176
 
6177
+ #: includes/views/submit_listing.php:803
6178
  msgctxt "submit listing"
6179
  msgid "Please enter your desired username."
6180
  msgstr "S'il vous plaît entrer votre nom d'utilisateur souhaité."
6181
 
6182
+ #: includes/views/submit_listing.php:808
6183
  msgctxt "submit listing"
6184
  msgid "Please enter the e-mail for your new account."
6185
  msgstr "S'il vous plaît entrer votre e-mail pour votre nouveau compte."
6186
 
6187
+ #: includes/views/submit_listing.php:813
6188
  msgctxt "submit listing"
6189
  msgid "Please enter the password for your new account."
6190
  msgstr "Veuillez entrer le mot de passe de votre nouveau compte."
6191
 
6192
+ #: includes/views/submit_listing.php:823
6193
  msgctxt "submit listing"
6194
  msgid "The username you chose is already in use. Please use a different one."
6195
  msgstr ""
6196
  "Le nom d'utilisateur que vous avez choisi est déjà utilisé. Veuillez en "
6197
  "utiliser un autre."
6198
 
6199
+ #: includes/views/submit_listing.php:828
6200
  msgctxt "submit listing"
6201
  msgid "The e-mail address you chose for your account is already in use."
6202
  msgstr ""
6203
  "L'adresse e-mail que vous avez choisie pour votre compte est déjà utilisée."
6204
 
6205
+ #: includes/views/submit_listing.php:843
6206
  msgctxt "submit listing"
6207
  msgid "Create a user account on this site"
6208
  msgstr "Créer un compte utilisateur sur ce site"
6209
 
6210
+ #: includes/views/submit_listing.php:850
6211
  msgctxt "submit listing"
6212
  msgid ""
6213
  "You need to create an account on the site. Please fill out the form below."
6215
  "Vous devez créer un compte sur le site. Veuillez remplir le formulaire ci-"
6216
  "dessous."
6217
 
6218
+ #: includes/views/submit_listing.php:856
6219
  msgctxt "submit listing"
6220
  msgid "Username:"
6221
  msgstr "Nom d'utilisateur (login) :"
6222
 
6223
+ #: includes/views/submit_listing.php:865
6224
  msgctxt "submit listing"
6225
  msgid "Email:"
6226
  msgstr "E-Mail:"
6227
 
6228
+ #: includes/views/submit_listing.php:874
6229
  msgctxt "submit listing"
6230
  msgid "Password:"
6231
  msgstr "Mot de passe :"
6382
  msgstr "Réseaux sociaux (Page Twitter)"
6383
 
6384
  #: includes/fields/class-fieldtypes-social.php:95
6385
+ #: includes/fields/class-fieldtypes-url.php:149
6386
  msgctxt "form-fields api"
6387
  msgid "URL:"
6388
  msgstr "URL:"
6389
 
6390
+ #: includes/fields/class-fieldtypes-social.php:115
6391
  #, fuzzy
6392
  msgctxt "form-fields api"
6393
  msgid "Text:"
6394
  msgstr "Zone de texte"
6395
 
6396
+ #: includes/fields/class-fieldtypes-social.php:122
6397
  msgctxt "form-fields api"
6398
+ msgid "Text to be displayed for social field"
6399
  msgstr ""
6400
 
6401
+ #: includes/fields/class-fieldtypes-social.php:140
6402
  #, fuzzy
6403
  msgctxt "form-fields api"
6404
  msgid "Type:"
6424
  msgid "Social Site (Twitter handle)"
6425
  msgstr "Réseaux sociaux (Page Twitter)"
6426
 
6427
+ #: includes/fields/class-fieldtypes-url.php:18
6428
  msgctxt "form-fields api"
6429
  msgid "URL Field"
6430
  msgstr "Champ URL"
6431
 
6432
+ #: includes/fields/class-fieldtypes-url.php:157
6433
  msgctxt "form-fields api"
6434
  msgid "Link Text (optional):"
6435
  msgstr "Lien texte (facultatif):"
6501
  msgstr "Le pays est requis"
6502
 
6503
  #: includes/fields/class-fieldtypes-image.php:100
6504
+ #: includes/fields/class-fieldtypes-social.php:175
6505
  msgctxt "form-fields-api"
6506
  msgid "Remove"
6507
  msgstr "Supprimer"
6700
  msgid "Caption for %s is required."
6701
  msgstr "Le pays est requis"
6702
 
6703
+ #: includes/functions.php:1259
6704
  #, fuzzy
6705
  msgctxt "templates"
6706
  msgid "Return to results"
6707
  msgstr "Retourner vers l'annuaire"
6708
 
6709
+ #: includes/functions.php:1263 includes/functions.php:1268
6710
  #, fuzzy
6711
  msgctxt "templates"
6712
  msgid "Go back"
6713
  msgstr "Non, reviens"
6714
 
6715
+ #: includes/payment.php:277 templates/renew-resume.tpl.php:39
6716
  #, fuzzy
6717
  msgctxt "templates"
6718
  msgid "Return to fee selection"
6776
  "frontal votre site. Si cela ne correspond pas à votre souhait, cliquez </a> "
6777
  "ici <a> pour modifier le paramétrage."
6778
 
6779
+ #: includes/views/submit_listing.php:335
6780
  msgctxt "templates"
6781
  msgid ""
6782
  "<b>View not available</b>. Do you have the \"Disable Frontend Listing "
6785
  "<b>Aperçu non disponible</b>. Avez-vous coché le paramètre \"Désactiver la "
6786
  "soumission de l'annonce publique ?\" ?"
6787
 
6788
+ #: includes/views/submit_listing.php:337
6789
  msgctxt "templates"
6790
  msgid ""
6791
  "Listing submission has been disabled. Contact the administrator for details."
6792
  msgstr ""
6793
 
6794
+ #: includes/views/submit_listing.php:502
6795
  msgctxt "templates"
6796
  msgid ""
6797
  "Listing submission is not available at the moment. Contact the administrator "
6798
  "for details."
6799
  msgstr ""
6800
 
6801
+ #: includes/views/submit_listing.php:505
6802
  msgctxt "templates"
6803
  msgid ""
6804
  "<b>View not available</b>, there is no \"Category\" association field. %s "
6806
  "an existing field"
6807
  msgstr ""
6808
 
6809
+ #: includes/views/submit_listing.php:912
6810
  msgctxt "templates"
6811
  msgid "Please agree to the Terms and Conditions."
6812
  msgstr "Veuillez accepter les conditions d'utilisation."
6813
 
6814
+ #: includes/views/submit_listing.php:920
6815
  msgctxt "templates"
6816
  msgid "Terms and Conditions:"
6817
  msgstr "Conditions d'utilisation:"
6818
 
6819
+ #: includes/views/submit_listing.php:929
6820
  msgctxt "templates"
6821
  msgid "I agree to the <a>Terms and Conditions</a>"
6822
  msgstr "J'accepte <a> Conditions générales </a>"
7033
  msgid "Your listing has been submitted."
7034
  msgstr "Votre annonce a été soumise."
7035
 
7036
+ #: templates/submit-listing-done.tpl.php:14
7037
  msgctxt "templates"
7038
  msgid "Your listing changes were saved."
7039
  msgstr "Les changements apportés à votre annonce ont été sauvegardés."
7040
 
7041
+ #: templates/submit-listing-done.tpl.php:19
7042
  msgctxt "templates"
7043
  msgid "Go to your listing"
7044
  msgstr "Aller vers votre annonce"
7045
 
7046
+ #: templates/submit-listing-done.tpl.php:21
7047
  msgctxt "templates"
7048
  msgid ""
7049
  "Your listing requires admin approval. You'll be notified once your listing "
7052
  "Votre fiche nécessite la validation de l'administrateur. Vous serez averti "
7053
  "une fois votre annonce approuvée."
7054
 
7055
+ #: templates/submit-listing-done.tpl.php:25
7056
  msgctxt "templates"
7057
  msgid "Return to directory."
7058
  msgstr "Retourner vers l'annuaire."
7594
  msgid "Bill To:"
7595
  msgstr "Facturé à :"
7596
 
7597
+ #: includes/payment.php:96
7598
  msgctxt "checkout"
7599
  msgid "Print Receipt"
7600
  msgstr "Imprimer le reçu"
7818
  msgstr ""
7819
  "Votre paiement est en attente de vérification par la passerelle de paiement."
7820
 
7821
+ #: templates/checkout-confirmation.tpl.php:20
7822
  msgctxt "checkout"
7823
  msgid ""
7824
  "Verification usually takes some minutes. This page will automatically "
7932
  msgid "Error while uploading file"
7933
  msgstr "Erreur durant l'upload du fichier"
7934
 
7935
+ #: includes/views/delete_listing.php:38
7936
  msgctxt "delete listing"
7937
  msgid "Your listing has been deleted."
7938
  msgstr "Votre annonce a été effacée."
8252
  "Il s'agit seulement d'une pré-visualisation. L'annonce n'a pas encore été "
8253
  "publiée."
8254
 
8255
+ #: includes/views/submit_listing.php:671
8256
  msgctxt "listing submit"
8257
  msgid ""
8258
  "Something went wrong. Please check the form for errors, correct them and "
8261
  "Quelque chose s'est mal passé. Veuillez vérifier le formulaire, corriger les "
8262
  "erreurs et soumettre à nouveau."
8263
 
8264
+ #: includes/views/submit_listing.php:755
8265
  msgctxt "listing submit"
8266
  msgid ""
8267
  "Image upload is required, please provide at least one image and submit again."
languages/WPBDM-it_IT.mo ADDED
Binary file
languages/WPBDM-it_IT.po ADDED
@@ -0,0 +1,9301 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ msgid ""
2
+ msgstr ""
3
+ "Project-Id-Version: Business Directory Plugin\n"
4
+ "Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/business-"
5
+ "directory-plugin\n"
6
+ "POT-Creation-Date: 2019-04-23 21:12:39+00:00\n"
7
+ "PO-Revision-Date: 2019-04-14 16:25+0200\n"
8
+ "Last-Translator: \n"
9
+ "Language-Team: \n"
10
+ "Language: it_IT\n"
11
+ "MIME-Version: 1.0\n"
12
+ "Content-Type: text/plain; charset=UTF-8\n"
13
+ "Content-Transfer-Encoding: 8bit\n"
14
+ "X-Generator: Poedit 2.2.1\n"
15
+ "X-Poedit-Basepath: ..\n"
16
+ "Plural-Forms: nplurals=2; plural=(n != 1);\n"
17
+ "X-Poedit-Flags-xgettext: --add-comments=translators:\n"
18
+ "X-Poedit-WPHeader: business-directory-plugin.php\n"
19
+ "X-Poedit-SourceCharset: UTF-8\n"
20
+ "X-Poedit-KeywordsList: __;_e;_n:1,2;_x:1,2c;_ex:1,2c;_nx:4c,1,2;esc_attr__;"
21
+ "esc_attr_e;esc_attr_x:1,2c;esc_html__;esc_html_e;esc_html_x:1,2c;_n_noop:1,2;"
22
+ "_nx_noop:3c,1,2;__ngettext_noop:1,2\n"
23
+ "X-Poedit-SearchPath-0: .\n"
24
+ "X-Poedit-SearchPathExcluded-0: *.js\n"
25
+
26
+ #: includes/admin/class-admin-listings.php:181
27
+ msgid "Listing Information"
28
+ msgstr "Informazioni sull'annuncio"
29
+
30
+ #: includes/admin/class-admin-listings.php:189
31
+ msgid "Listing Timeline"
32
+ msgstr "Calendario degli annunci"
33
+
34
+ #: includes/admin/class-admin-listings.php:207
35
+ msgid "Listing Reports"
36
+ msgstr "Reports Annuncio"
37
+
38
+ #: includes/admin/class-admin-listings.php:248
39
+ msgid "Expires on"
40
+ msgstr "Scade il"
41
+
42
+ #: includes/admin/class-admin-listings.php:256
43
+ msgid "Attributes"
44
+ msgstr "Attributi"
45
+
46
+ #: includes/admin/class-admin.php:176
47
+ msgid ""
48
+ "Preview is only available after you've saved the first draft. This is due\n"
49
+ "to how WordPress stores the data."
50
+ msgstr ""
51
+ "L'anteprima è disponibile solo dopo aver salvato la prima bozza. Questo è "
52
+ "dovuto\n"
53
+ "a come WordPress memorizza i dati."
54
+
55
+ #: includes/admin/class-admin.php:371
56
+ msgid "Uninstall Business Directory Plugin"
57
+ msgstr "Disinstallare Business Directory Plugin"
58
+
59
+ #: includes/admin/class-admin.php:372
60
+ msgid "Uninstall"
61
+ msgstr "Disinstalla"
62
+
63
+ #: includes/admin/class-csv-import.php:625
64
+ msgid "Listing imported by admin. Payment skipped."
65
+ msgstr "Elenco importato da admin. Pagamento saltato."
66
+
67
+ #: includes/admin/class-listings-personal-data-provider.php:62
68
+ msgid "Listing ID"
69
+ msgstr "ID Pagina"
70
+
71
+ #: includes/admin/class-listings-personal-data-provider.php:113
72
+ msgid "Image URL"
73
+ msgstr "URL del'Immagine"
74
+
75
+ #: includes/admin/class-listings-personal-data-provider.php:127
76
+ msgid "Business Directory Listings"
77
+ msgstr "Annunci della Directory "
78
+
79
+ #: includes/admin/class-listings-personal-data-provider.php:161
80
+ msgid ""
81
+ "An unknown error occurred while trying to delete information for listing "
82
+ "{listing_id}."
83
+ msgstr ""
84
+ "Si è verificato un errore sconosciuto durante il tentativo di eliminare le "
85
+ "informazioni per l'elenco {listing_id}."
86
+
87
+ #: includes/admin/class-payment-personal-data-provider.php:56
88
+ msgid "Payment Transaction"
89
+ msgstr "Transazione di Pagamento"
90
+
91
+ #: includes/admin/class-payment-personal-data-provider.php:57
92
+ msgid "Payer Email"
93
+ msgstr "Email pagatore"
94
+
95
+ #: includes/admin/class-payment-personal-data-provider.php:66
96
+ msgid "Listing Payments Information"
97
+ msgstr "Informazioni sul pagamento degli annunci"
98
+
99
+ #: includes/admin/class-payment-personal-data-provider.php:99
100
+ msgid ""
101
+ "An unknown error occurred while trying to delete listing payment information "
102
+ "for transaction {transaction_id}."
103
+ msgstr ""
104
+ "Si è verificato un errore sconosciuto durante il tentativo di eliminare le "
105
+ "informazioni di pagamento per la transazione {transaction_id}."
106
+
107
+ #. Plugin Name of the plugin/theme
108
+ msgid "Business Directory Plugin"
109
+ msgstr "Business Directory Plugin"
110
+
111
+ #: includes/admin/csv-import.php:287
112
+ msgid ""
113
+ "A valid temporary directory with write permissions is required for CSV "
114
+ "imports to function properly. Your server is using \"%s\" but this path does "
115
+ "not seem to be writable. Please consult with your host."
116
+ msgstr ""
117
+ "Per importare CSV è necessaria una directory temporanea valida con permessi "
118
+ "di scrittura per funzionare correttamente. Il server sta utilizzando \"%s\" "
119
+ "ma questo percorso non sembra essere scrivibile. Si prega di consultare il "
120
+ "proprio ospite."
121
+
122
+ #: includes/admin/page-debug.php:42
123
+ msgid "Missing tables: %s"
124
+ msgstr "Tabelle mancanti: %s"
125
+
126
+ #: includes/admin/settings/class-settings-bootstrap.php:1055
127
+ msgid ""
128
+ "If you are using this gateway, we recommend you disable it if you wish to "
129
+ "collect payments in this currency."
130
+ msgid_plural ""
131
+ "If you are using these gateways, we recommend you disable them if you wish "
132
+ "to collect payments in this currency."
133
+ msgstr[0] ""
134
+ "Se si utilizza questo gateway, si consiglia di disattivarlo se si desidera "
135
+ "riscuotere i pagamenti in questa valuta."
136
+ msgstr[1] ""
137
+ "Se si utilizzano questi gateway, si consiglia di disattivarli se si desidera "
138
+ "riscuotere i pagamenti in questa valuta."
139
+
140
+ #: includes/admin/upgrades/class-installer-installation-error.php:15
141
+ msgid "Business Directory - Installation Failed"
142
+ msgstr "Business Directory - Installazione non riuscita"
143
+
144
+ #: includes/admin/upgrades/class-installer-installation-error.php:17
145
+ msgid ""
146
+ "Business Directory installation failed. An exception with following message "
147
+ "was generated:"
148
+ msgstr ""
149
+ "L'installazione di Business Directory non è riuscita. È stata generata "
150
+ "un'eccezione con il seguente messaggio:"
151
+
152
+ #: includes/admin/upgrades/class-installer-installation-error.php:22
153
+ msgid "Please <contact-link>contact customer support</a>."
154
+ msgstr "Si prega di <contact-link>contattare l'assistenza clienti</a>."
155
+
156
+ #: includes/admin/upgrades/class-manual-upgrade-helper.php:86
157
+ msgid "Business Directory - Manual Upgrade Required"
158
+ msgstr "Business Directory - Aggiornamento manuale richiesto"
159
+
160
+ #: includes/admin/upgrades/class-manual-upgrade-helper.php:88
161
+ msgid ""
162
+ "Business Directory features are currently disabled because the plugin needs "
163
+ "to perform a manual upgrade before continuing."
164
+ msgstr ""
165
+ "Le funzioni di Business Directory sono attualmente disabilitate perché il "
166
+ "plugin deve eseguire un aggiornamento manuale prima di continuare."
167
+
168
+ #: includes/admin/upgrades/class-manual-upgrade-helper.php:90
169
+ msgid "Perform Manual Upgrade"
170
+ msgstr "Eseguire l'aggiornamento manuale"
171
+
172
+ #: includes/admin/upgrades/class-manual-upgrade-helper.php:106
173
+ #: includes/admin/upgrades/class-manual-upgrade-helper.php:107
174
+ #: includes/admin/upgrades/class-manual-upgrade-helper.php:145
175
+ msgid "Business Directory - Manual Upgrade"
176
+ msgstr "Business Directory - Aggiornamento manuale"
177
+
178
+ #: includes/admin/upgrades/class-manual-upgrade-helper.php:167
179
+ msgid ""
180
+ "Business Directory features are currently disabled because the plugin needs "
181
+ "to perform a manual upgrade before it can be used."
182
+ msgstr ""
183
+ "Le funzioni di Business Directory sono attualmente disabilitate perché il "
184
+ "plugin deve eseguire un aggiornamento manuale prima di poterlo utilizzare."
185
+
186
+ #: includes/admin/upgrades/class-manual-upgrade-helper.php:169
187
+ msgid "Click \"Start Upgrade\" and wait until the process finishes."
188
+ msgstr "Fare clic su \"Avvia aggiornamento\" e attendere la fine del processo."
189
+
190
+ #: includes/admin/upgrades/migrations/manual-upgrade-18_0-featured-levels.php:20
191
+ #: includes/admin/upgrades/migrations/manual-upgrade-18_0-featured-levels.php:21
192
+ #: includes/admin/upgrades/migrations/manual-upgrade-18_0-featured-levels.php:169
193
+ #: includes/admin/upgrades/migrations/manual-upgrade-18_0-featured-levels.php:178
194
+ #, fuzzy
195
+ msgid "Business Directory - Featured Levels Migration"
196
+ msgstr "Business Directory - Migrazione a livelli in primo piano"
197
+
198
+ #: includes/class-cpt-integration.php:20
199
+ msgid "Edit Listing"
200
+ msgstr "Modifica Annuncio"
201
+
202
+ #: includes/class-cpt-integration.php:21
203
+ msgid "New Listing"
204
+ msgstr "Nuovo Annuncio"
205
+
206
+ #: includes/class-cpt-integration.php:22
207
+ msgid "View Listing"
208
+ msgstr "Vedi Annuncio"
209
+
210
+ #: includes/class-cpt-integration.php:23
211
+ msgid "Search Listings"
212
+ msgstr "Cerca Annunci"
213
+
214
+ #: includes/class-cpt-integration.php:24
215
+ msgid "No listings found"
216
+ msgstr "No listings found"
217
+
218
+ #: includes/class-cpt-integration.php:25
219
+ msgid "No listings found in trash"
220
+ msgstr "Nessun annuncio trovato in rifiuti"
221
+
222
+ #: includes/class-cpt-integration.php:41
223
+ msgid "Directory Categories"
224
+ msgstr "Categorie delle Directory"
225
+
226
+ #: includes/class-cpt-integration.php:42
227
+ msgid "Directory Category"
228
+ msgstr "Categoria della Directory"
229
+
230
+ #: includes/class-cpt-integration.php:53
231
+ msgid "Directory Tags"
232
+ msgstr "Tags directory"
233
+
234
+ #: includes/class-cpt-integration.php:54
235
+ msgid "Directory Tag"
236
+ msgstr "Tag della directory"
237
+
238
+ #: includes/class-payment-gateway.php:142
239
+ msgid ""
240
+ "There was an unexpected error trying to cancel your subscription. Please "
241
+ "contact the website's administrator mentioning this problem. The "
242
+ "administrator should be able to cancel your subscription contacting the "
243
+ "payment processor directly."
244
+ msgstr ""
245
+ "C'è stato un errore imprevisto nel tentativo di cancellare il tuo "
246
+ "abbonamento. Si prega di contattare l'amministratore del sito web "
247
+ "menzionando questo problema. L'amministratore dovrebbe essere in grado di "
248
+ "annullare l'abbonamento."
249
+
250
+ #: includes/class-wpbdp.php:438
251
+ msgid ""
252
+ "The directory features are disabled at this time because a <a>manual "
253
+ "upgrade</a> is pending."
254
+ msgstr ""
255
+ "Le funzioni della directory sono disattivate in questo momento perché è in "
256
+ "attesa di un <a>aggiornamento manuale</a>."
257
+
258
+ #: includes/class-wpbdp.php:445
259
+ msgid ""
260
+ "The directory is not available at this time. Please try again in a few "
261
+ "minutes or contact the administrator if the problem persists."
262
+ msgstr ""
263
+ "L'elenco non è disponibile al momento. Riprovare tra qualche minuto o "
264
+ "contattare l'amministratore se il problema persiste."
265
+
266
+ #: includes/fields/class-fieldtypes-date.php:37
267
+ msgid "%s (ex. %s)"
268
+ msgstr "%s (esempio %s)"
269
+
270
+ #: includes/form-fields.php:355
271
+ msgid "Business Name"
272
+ msgstr "Ragione Sociale"
273
+
274
+ #: includes/form-fields.php:364
275
+ msgid "Business Genre"
276
+ msgstr "Categoria Merceologica"
277
+
278
+ #: includes/form-fields.php:373
279
+ msgid "Short Business Description"
280
+ msgstr "Descrizione breve"
281
+
282
+ #: includes/form-fields.php:381
283
+ msgid "Long Business Description"
284
+ msgstr "Descrizione lunga"
285
+
286
+ #: includes/form-fields.php:390
287
+ msgid "Business Website Address"
288
+ msgstr "Sito internet dell'Annuncio"
289
+
290
+ #: includes/form-fields.php:399
291
+ msgid "Business Phone Number"
292
+ msgstr "Telefono"
293
+
294
+ #: includes/form-fields.php:407
295
+ msgid "Business Fax"
296
+ msgstr "Fax"
297
+
298
+ #: includes/form-fields.php:415
299
+ msgid "Business Contact Email"
300
+ msgstr "E-Mail"
301
+
302
+ #: includes/form-fields.php:424
303
+ #, fuzzy
304
+ msgid "Business Tags"
305
+ msgstr "Tag aziendali"
306
+
307
+ #: includes/form-fields.php:432
308
+ msgid "Business Address"
309
+ msgstr "Indirizzo lavoro"
310
+
311
+ #: includes/form-fields.php:440
312
+ msgid "ZIP Code"
313
+ msgstr "Codice Postale"
314
+
315
+ #: includes/functions.php:531
316
+ msgid "Free"
317
+ msgstr "Gratis"
318
+
319
+ #: includes/gateways/class-gateway-authorize-net.php:38
320
+ msgid "Login ID"
321
+ msgstr "Login ID"
322
+
323
+ #: includes/gateways/class-gateway-authorize-net.php:39
324
+ msgid "Transaction Key"
325
+ msgstr "Codice transazione"
326
+
327
+ #: includes/licensing.php:95 includes/licensing.php:97
328
+ msgid "Licenses"
329
+ msgstr "Licenze"
330
+
331
+ #: includes/payment.php:37
332
+ msgid "We couldn't find a payment associated with the given subscription."
333
+ msgstr ""
334
+ "Non siamo riusciti a trovare un pagamento associato all'abbonamento dato."
335
+
336
+ #: includes/payment.php:44
337
+ msgid "The payment gateway \"<payment-gateway>\" is not available."
338
+ msgstr "Il gateway di pagamento \"<payment-gateway>\" non è disponibile."
339
+
340
+ #: includes/templates-ui.php:277
341
+ msgid "Directory"
342
+ msgstr "Directory"
343
+
344
+ #: includes/templates-ui.php:286
345
+ msgid "View All Listings"
346
+ msgstr "Visualizza tutti gli annunci"
347
+
348
+ #: includes/templates-ui.php:295
349
+ msgid "Create A Listing"
350
+ msgstr "Inserisci Annuncio"
351
+
352
+ #: includes/views/checkout.php:266
353
+ msgid ""
354
+ "There was an error trying to process your request. No gateway is selected."
355
+ msgstr ""
356
+ "C'è stato un errore nel tentativo di elaborare la vostra richiesta. Non è "
357
+ "stato selezionato alcun gateway."
358
+
359
+ #: includes/views/listing_contact.php:207
360
+ msgid "l F j, Y \\a\\t g:i a"
361
+ msgstr "l F j, Y \a\\t g:i a"
362
+
363
+ #: templates/admin/csv-import-progress.tpl.php:25
364
+ msgid "Import Progress"
365
+ msgstr "Stato di avanzamento"
366
+
367
+ #: templates/admin/home.tpl.php:53
368
+ msgid "Manage Options"
369
+ msgstr "Gestire le opzioni"
370
+
371
+ #: templates/admin/home.tpl.php:56
372
+ msgid "Manage Form Fields"
373
+ msgstr "Gestire i campi dei moduli"
374
+
375
+ #: templates/admin/home.tpl.php:59
376
+ msgid "Manage Fees"
377
+ msgstr "Gestire i piani tariffari"
378
+
379
+ #: templates/admin/home.tpl.php:66
380
+ msgid "Manage Paid Listings"
381
+ msgstr "Gestione delle Donazioni ricevute"
382
+
383
+ #: templates/admin/privacy-policy.tpl.php:12
384
+ msgid "Suggested text:"
385
+ msgstr "Testo suggerito:"
386
+
387
+ #: templates/admin/settings-page.tpl.php:6
388
+ msgid "Business Directory Settings"
389
+ msgstr "Impostazioni della Directory"
390
+
391
+ #: templates/admin/settings-reset.tpl.php:2
392
+ msgid "Business Directory - Reset Defaults"
393
+ msgstr "Business Directory - Ritorna ai valori predefiniti"
394
+
395
+ #: templates/admin/settings-reset.tpl.php:10
396
+ msgid ""
397
+ "Use this option if you want to go back to the original factory settings for "
398
+ "BD."
399
+ msgstr ""
400
+ "Utilizzare questa opzione se si desidera tornare alle impostazioni di "
401
+ "fabbrica originali per BD."
402
+
403
+ #: templates/admin/settings-reset.tpl.php:11
404
+ msgid "Please note that all of your existing settings will be lost."
405
+ msgstr "Tieni presente che tutte le impostazioni esistenti verranno perse."
406
+
407
+ #: templates/admin/settings-reset.tpl.php:13
408
+ msgid "Your existing listings will NOT be deleted doing this."
409
+ msgstr "I tuoi annunci esistenti NON saranno cancellati in questo modo."
410
+
411
+ #: templates/admin/settings-reset.tpl.php:19
412
+ msgid "Reset Defaults"
413
+ msgstr "Ripristina Defaults"
414
+
415
+ #: templates/parts/listing-buttons.tpl.php:43
416
+ msgid "← Return to Directory"
417
+ msgstr "← Ritorna alla Directory"
418
+
419
+ #. Plugin URI of the plugin/theme
420
+ msgid "https://www.businessdirectoryplugin.com"
421
+ msgstr "https://www.businessdirectoryplugin.com"
422
+
423
+ #. Description of the plugin/theme
424
+ msgid ""
425
+ "Provides the ability to maintain a free or paid business directory on your "
426
+ "WordPress powered site."
427
+ msgstr ""
428
+ "Fornisce la possibilità di mantenere una directory aziendale gratuita o a "
429
+ "pagamento sul vostro sito WordPress."
430
+
431
+ #. Author of the plugin/theme
432
+ msgid "D. Rodenbaugh"
433
+ msgstr "D. Rodenbaugh"
434
+
435
+ #. Author URI of the plugin/theme
436
+ msgid "https://businessdirectoryplugin.com"
437
+ msgstr "https://businessdirectoryplugin.com"
438
+
439
+ #: includes/admin/class-admin-controller.php:79
440
+ msgctxt "admin confirm"
441
+ msgid "Are you sure you want to do this?"
442
+ msgstr "Sei sicuro di volerlo fare?"
443
+
444
+ #: includes/admin/class-admin-controller.php:81
445
+ msgctxt "admin confirm"
446
+ msgid "No, go back"
447
+ msgstr "No, torna indietro"
448
+
449
+ #: includes/admin/class-admin-controller.php:82
450
+ msgctxt "admin confirm"
451
+ msgid "Yes, I'm sure"
452
+ msgstr "Si', sono sicuro che"
453
+
454
+ #: includes/admin/class-admin-csv.php:38
455
+ msgctxt "admin csv-import"
456
+ msgid "See an example CSV import file"
457
+ msgstr "Vedere un esempio di file di importazione CSV"
458
+
459
+ #: includes/admin/class-admin-csv.php:39 templates/admin/csv-import.tpl.php:268
460
+ msgctxt "admin csv-import"
461
+ msgid "Help"
462
+ msgstr "Aiuto"
463
+
464
+ #: includes/admin/class-csv-import.php:503
465
+ msgctxt "admin csv-import"
466
+ msgid ""
467
+ "Could not create listing category \"<category-name>\". The operation failed "
468
+ "with the following error: <error-message>."
469
+ msgstr ""
470
+ "Impossibile creare la categoria di Annunci \"<category-name>\". L'operazione "
471
+ "non è riuscita per il seguente errore: <error-message>."
472
+
473
+ #: includes/admin/class-csv-import.php:509
474
+ msgctxt "admin csv-import"
475
+ msgid "Could not create listing category \"%s\""
476
+ msgstr "Impossibile creare la categoria \"%s\""
477
+
478
+ #: includes/admin/class-csv-import.php:676
479
+ msgctxt "admin csv-import"
480
+ msgid "Username \"%s\" does not exist"
481
+ msgstr "Nome Utente \"%s\" non esiste"
482
+
483
+ #: includes/admin/class-csv-import.php:702
484
+ msgctxt "admin csv-import"
485
+ msgid "The string <string> couldn't be converted into a valid date."
486
+ msgstr "La stringa <string>non poteva essere convertita in una data valida."
487
+
488
+ #: includes/admin/class-csv-import.php:724
489
+ msgctxt "admin csv-import"
490
+ msgid "There is no Fee Plan with ID = <fee-id>"
491
+ msgstr "Non esiste un piano tariffario con ID = <fee-id>"
492
+
493
+ #: includes/admin/class-csv-import.php:747
494
+ msgctxt "admin csv-import"
495
+ msgid "Missing required field: %s"
496
+ msgstr "Campo obbligatorio mancante: %s"
497
+
498
+ #: includes/admin/class-csv-import.php:772
499
+ msgctxt "admin csv-import"
500
+ msgid "Listing category \"%s\" does not exist"
501
+ msgstr "La categoria \"%s\" non esiste"
502
+
503
+ #: includes/admin/csv-import.php:130
504
+ msgctxt "admin csv-import"
505
+ msgid "Business %s"
506
+ msgstr "Affari %s"
507
+
508
+ #: includes/admin/csv-import.php:168
509
+ msgctxt "admin csv-import"
510
+ msgid "Whatever"
511
+ msgstr "Sarà..."
512
+
513
+ #: includes/admin/csv-import.php:173
514
+ msgctxt "admin csv-import"
515
+ msgid "Example CSV Import File"
516
+ msgstr "Esempio di file di importazione CSV"
517
+
518
+ #: includes/admin/csv-import.php:174
519
+ msgctxt "admin csv-import"
520
+ msgid "← Return to \"CSV Import\""
521
+ msgstr "← Ritorna all'importazione CSV"
522
+
523
+ #: includes/admin/csv-import.php:330
524
+ msgctxt "admin csv-import"
525
+ msgid "There was an error uploading the CSV file."
526
+ msgstr "C'è stato un errore nel caricare il file CSV."
527
+
528
+ #: includes/admin/csv-import.php:336
529
+ msgctxt "admin csv-import"
530
+ msgid "Please upload or select a CSV file."
531
+ msgstr "Si prega di caricare o selezionare un file CSV."
532
+
533
+ #: includes/admin/csv-import.php:349
534
+ msgctxt "admin csv-import"
535
+ msgid "There was an error uploading the images ZIP file."
536
+ msgstr "C'è stato un errore nel caricare il file ZIP delle immagini."
537
+
538
+ #: includes/admin/csv-import.php:373
539
+ msgctxt "admin csv-import"
540
+ msgid ""
541
+ "An error was detected while validating the CSV file for import. Please fix "
542
+ "this before proceeding."
543
+ msgstr ""
544
+ "È stato rilevato un errore durante la convalida del file CSV per "
545
+ "l'importazione. Si prega di risolvere il problema prima di procedere."
546
+
547
+ #: includes/admin/csv-import.php:382
548
+ msgctxt "admin csv-import"
549
+ msgid "Import is in \"test mode\". Nothing will be inserted into the database."
550
+ msgstr ""
551
+ "L'importazione è in \"modalità test\". Non verrà inserito nulla nel database."
552
+
553
+ #: templates/admin/csv-import-progress.tpl.php:5
554
+ msgctxt "admin csv-import"
555
+ msgid "A fatal error occurred during the import. The reason given was: \"%s\"."
556
+ msgstr ""
557
+ "Un errore fatale si è verificato durante l'importazione. Il motivo è stato: "
558
+ "\"%s\"."
559
+
560
+ #: templates/admin/csv-import-progress.tpl.php:9
561
+ msgctxt "admin csv-import"
562
+ msgid ""
563
+ "A fatal error occurred during the import. If connection wasn't lost during "
564
+ "the import, please make sure that you have enough free disk space and memory "
565
+ "available to PHP. Check your error logs for details."
566
+ msgstr ""
567
+ "Un errore fatale si è verificato durante l'importazione. Se la connessione "
568
+ "non è stata persa durante l'importazione, assicurarsi di avere sufficiente "
569
+ "spazio libero e di memoria disponibile per PHP. Controllare i registri degli "
570
+ "errori per i dettagli."
571
+
572
+ #: templates/admin/csv-import-progress.tpl.php:12
573
+ #: templates/admin/csv-import-progress.tpl.php:19
574
+ msgctxt "admin csv-import"
575
+ msgid "← Return to CSV Import"
576
+ msgstr "← Ritorna all'importazione CSV"
577
+
578
+ #: templates/admin/csv-import-progress.tpl.php:17
579
+ msgctxt "admin csv-import"
580
+ msgid "Import Canceled"
581
+ msgstr "Importazione annullata"
582
+
583
+ #: templates/admin/csv-import-progress.tpl.php:18
584
+ msgctxt "admin csv-import"
585
+ msgid "The import has been canceled."
586
+ msgstr "L'importazione è stata annullata."
587
+
588
+ #: templates/admin/csv-import-progress.tpl.php:28
589
+ msgctxt "admin csv-import"
590
+ msgid "Files"
591
+ msgstr "Files"
592
+
593
+ #: templates/admin/csv-import-progress.tpl.php:31
594
+ msgctxt "admin csv-import"
595
+ msgid "Rows in file"
596
+ msgstr "Righe in file"
597
+
598
+ #: templates/admin/csv-import-progress.tpl.php:34
599
+ msgctxt "admin csv-import"
600
+ msgid "Progress"
601
+ msgstr "Progresso"
602
+
603
+ #: templates/admin/csv-import-progress.tpl.php:38
604
+ msgctxt "admin csv-import"
605
+ msgid "Import has not started. Click \"Start Import\" to begin."
606
+ msgstr ""
607
+ "L'importazione non è iniziata. Fare clic su \"Avvia importazione\" per "
608
+ "iniziare."
609
+
610
+ #: templates/admin/csv-import-progress.tpl.php:39
611
+ msgctxt "admin csv-import"
612
+ msgid "Importing CSV file..."
613
+ msgstr "Importazione di file CSV....."
614
+
615
+ #: templates/admin/csv-import-progress.tpl.php:45
616
+ msgctxt "admin csv-import"
617
+ msgid "Start Import"
618
+ msgstr "Inizio Importazione"
619
+
620
+ #: templates/admin/csv-import-progress.tpl.php:46
621
+ msgctxt "admin csv-import"
622
+ msgid "Cancel Import"
623
+ msgstr "Annulla Importazione"
624
+
625
+ #: templates/admin/csv-import-progress.tpl.php:53
626
+ msgctxt "admin csv-import"
627
+ msgid "Import finished"
628
+ msgstr "Importazione finita"
629
+
630
+ #: templates/admin/csv-import-progress.tpl.php:56
631
+ msgctxt "admin csv-import"
632
+ msgid "Import was completed successfully."
633
+ msgstr "L'importazione è stata completata con successo."
634
+
635
+ #: templates/admin/csv-import-progress.tpl.php:60
636
+ msgctxt "admin csv-import"
637
+ msgid "Import was completed but some rows were rejected."
638
+ msgstr ""
639
+ "L'importazione è stata completata, ma alcune righe sono state respinte."
640
+
641
+ #: templates/admin/csv-import-progress.tpl.php:63
642
+ msgctxt "admin csv-import"
643
+ msgid "Import Summary"
644
+ msgstr "Riepilogo importazione"
645
+
646
+ #: templates/admin/csv-import-progress.tpl.php:65
647
+ msgctxt "admin csv-import"
648
+ msgid "Rows in file:"
649
+ msgstr "Righe in archivio:"
650
+
651
+ #: templates/admin/csv-import-progress.tpl.php:68
652
+ msgctxt "admin csv-import"
653
+ msgid "Imported rows:"
654
+ msgstr "File importate:"
655
+
656
+ #: templates/admin/csv-import-progress.tpl.php:71
657
+ msgctxt "admin csv-import"
658
+ msgid "Rejected rows:"
659
+ msgstr "Righe scartate:"
660
+
661
+ #: templates/admin/csv-import-progress.tpl.php:76
662
+ msgctxt "admin csv-import"
663
+ msgid "Import Warnings"
664
+ msgstr "Importa Avvertenze"
665
+
666
+ #: templates/admin/csv-import-progress.tpl.php:79
667
+ msgctxt "admin csv-import"
668
+ msgid "Line #"
669
+ msgstr "Linea #"
670
+
671
+ #: templates/admin/csv-import-progress.tpl.php:80
672
+ msgctxt "admin csv-import"
673
+ msgid "Line"
674
+ msgstr "Linea"
675
+
676
+ #: templates/admin/csv-import-progress.tpl.php:81
677
+ msgctxt "admin csv-import"
678
+ msgid "Warning"
679
+ msgstr "Attenzione"
680
+
681
+ #: templates/admin/csv-import.tpl.php:28
682
+ msgctxt "admin csv-import"
683
+ msgid "Here, you can import data into your directory using the CSV format."
684
+ msgstr ""
685
+ "Qui puoi importare i dati nella tua directory utilizzando il formato CSV."
686
+
687
+ #: templates/admin/csv-import.tpl.php:36
688
+ msgctxt "admin csv-import"
689
+ msgid ""
690
+ "We strongly recommend reading our <a>CSV import documentation</a> first to "
691
+ "help you do things in the right order."
692
+ msgstr ""
693
+ "Raccomandiamo vivamente di leggere prima la nostra <a>documentazione di "
694
+ "importazione CSV</a> per aiutarvi a fare le cose nel giusto ordine."
695
+
696
+ #: templates/admin/csv-import.tpl.php:45
697
+ msgctxt "admin csv-import"
698
+ msgid "Import Files"
699
+ msgstr "Importa Files"
700
+
701
+ #: templates/admin/csv-import.tpl.php:50
702
+ msgctxt "admin csv-import"
703
+ msgid "CSV File"
704
+ msgstr "CSV data"
705
+
706
+ #: templates/admin/csv-import.tpl.php:62 templates/admin/csv-import.tpl.php:93
707
+ msgctxt "admin csv-import"
708
+ msgid "... or <a>select a file uploaded to the imports folder</a>"
709
+ msgstr ""
710
+ ".... o <a>selezionare un file caricato nella cartella di importazione</a>"
711
+
712
+ #: templates/admin/csv-import.tpl.php:72 templates/admin/csv-import.tpl.php:103
713
+ msgctxt "admin csv-import"
714
+ msgid "(Upload new file)"
715
+ msgstr "(Carica nuovo file)"
716
+
717
+ #: templates/admin/csv-import.tpl.php:81
718
+ msgctxt "admin csv-import"
719
+ msgid "ZIP file containing images"
720
+ msgstr "File ZIP contenente immagini"
721
+
722
+ #: templates/admin/csv-import.tpl.php:112
723
+ msgctxt "admin csv-import"
724
+ msgid "CSV File Settings"
725
+ msgstr "Impostazioni file CSV"
726
+
727
+ #: templates/admin/csv-import.tpl.php:116
728
+ msgctxt "admin csv-import"
729
+ msgid "Column Separator"
730
+ msgstr "Separatore Colonna"
731
+
732
+ #: templates/admin/csv-import.tpl.php:124
733
+ msgctxt "admin csv-import"
734
+ msgid "Comma (,)"
735
+ msgstr "Comma (,)"
736
+
737
+ #: templates/admin/csv-import.tpl.php:130
738
+ msgctxt "admin csv-import"
739
+ msgid "Semicolon (;)"
740
+ msgstr "Punto e virgola (;)"
741
+
742
+ #: templates/admin/csv-import.tpl.php:136
743
+ msgctxt "admin csv-import"
744
+ msgid "TAB"
745
+ msgstr "TAB"
746
+
747
+ #: templates/admin/csv-import.tpl.php:142
748
+ msgctxt "admin csv-import"
749
+ msgid "Image Separator"
750
+ msgstr "Separatore di immagini"
751
+
752
+ #: templates/admin/csv-import.tpl.php:153
753
+ msgctxt "admin csv-import"
754
+ msgid "Category Separator"
755
+ msgstr "Separatore di Categoria"
756
+
757
+ #: templates/admin/csv-import.tpl.php:164
758
+ msgctxt "admin csv-import"
759
+ msgid "Import settings"
760
+ msgstr "Importa le impostazioni"
761
+
762
+ #: templates/admin/csv-import.tpl.php:168
763
+ msgctxt "admin csv-import"
764
+ msgid "Post status of imported listings"
765
+ msgstr "Stato delle inserzioni importate"
766
+
767
+ #: templates/admin/csv-import.tpl.php:180
768
+ msgctxt "admin csv-import"
769
+ msgid "Missing categories handling"
770
+ msgstr "Gestione delle categorie mancanti"
771
+
772
+ #: templates/admin/csv-import.tpl.php:185
773
+ msgctxt "admin csv-import"
774
+ msgid "Auto-create categories"
775
+ msgstr "Creazione automatica delle categorie"
776
+
777
+ #: templates/admin/csv-import.tpl.php:188
778
+ msgctxt "admin csv-import"
779
+ msgid "Generate errors when a category is not found"
780
+ msgstr "Generare errori quando una categoria non viene trovata"
781
+
782
+ #: templates/admin/csv-import.tpl.php:193
783
+ msgctxt "admin csv-import"
784
+ msgid "Keep existing listing images?"
785
+ msgstr "Mantenere le immagini dell'elenco esistenti?"
786
+
787
+ #: templates/admin/csv-import.tpl.php:198
788
+ msgctxt "admin csv-import"
789
+ msgid "Keep existing images."
790
+ msgstr "Conservare le immagini esistenti."
791
+
792
+ #: templates/admin/csv-import.tpl.php:199
793
+ msgctxt "admin csv-import"
794
+ msgid "Appends new images while keeping current ones."
795
+ msgstr "Aggiunge nuove immagini mantenendo quelle attuali."
796
+
797
+ #: templates/admin/csv-import.tpl.php:204
798
+ msgctxt "admin csv-import"
799
+ msgid "Assign listings to a user?"
800
+ msgstr "Assegna annunci a un utente?"
801
+
802
+ #: templates/admin/csv-import.tpl.php:210
803
+ msgctxt "admin csv-import"
804
+ msgid "Assign listings to a user."
805
+ msgstr "Assegnare le inserzioni ad un utente."
806
+
807
+ #: templates/admin/csv-import.tpl.php:215
808
+ msgctxt "admin csv-import"
809
+ msgid "Use a default user for listings?"
810
+ msgstr "Utilizzare un utente predefinito per gli elenchi?"
811
+
812
+ #: templates/admin/csv-import.tpl.php:221
813
+ msgctxt "admin csv-import"
814
+ msgid ""
815
+ "Select a default user to be used if the username column is not present in "
816
+ "the CSV file."
817
+ msgstr ""
818
+ "Selezionare un utente predefinito da utilizzare se la colonna nome utente "
819
+ "non è presente nel file CSV."
820
+
821
+ #: templates/admin/csv-import.tpl.php:226
822
+ msgctxt "admin csv-import"
823
+ msgid "Default listing user"
824
+ msgstr "Utente predefinito"
825
+
826
+ #: templates/admin/csv-import.tpl.php:232
827
+ msgctxt "admin csv-import"
828
+ msgid ""
829
+ "This user will be used if the username column is not present in the CSV file."
830
+ msgstr ""
831
+ "Questo utente verrà utilizzato se la colonna username non è presente nel "
832
+ "file CSV."
833
+
834
+ #: templates/admin/csv-import.tpl.php:237
835
+ msgctxt "admin csv-import"
836
+ msgid "Number of listings imported on every cycle"
837
+ msgstr "Numero di elenchi importati per ogni ciclo"
838
+
839
+ #: templates/admin/csv-import.tpl.php:245
840
+ msgctxt "admin csv-import"
841
+ msgid ""
842
+ "If you are having trouble importing listings due to memory problems, try "
843
+ "reducing the import batch size to 5 or 1 and then re-attempt. This will "
844
+ "result in a longer batch import time, but will increase the chance of "
845
+ "success on shared hosting platforms and other resource-constrained servers."
846
+ msgstr ""
847
+ "Se si riscontrano problemi nell'importazione di elenchi a causa di problemi "
848
+ "di memoria, provare a ridurre la dimensione del batch di importazione a 5 o "
849
+ "1 e quindi riprovare. Questo si tradurrà in un tempo di importazione batch "
850
+ "più lungo, ma aumenterà le possibilità di successo su piattaforme di hosting "
851
+ "condiviso e altri server con risorse limitate."
852
+
853
+ #: templates/admin/csv-import.tpl.php:250
854
+ msgctxt "admin csv-import"
855
+ msgid "Disable e-mail notifications during import?"
856
+ msgstr "Disattiva le notifiche di posta elettronica durante l'importazione?"
857
+
858
+ #: templates/admin/csv-import.tpl.php:255
859
+ msgctxt "admin csv-import"
860
+ msgid "Disable e-mail notifications."
861
+ msgstr "Disattiva le notifiche di posta elettronica."
862
+
863
+ #: templates/admin/csv-import.tpl.php:261
864
+ msgctxt "admin csv-import"
865
+ msgid "Test Import"
866
+ msgstr "Test importazione"
867
+
868
+ #: templates/admin/csv-import.tpl.php:262
869
+ msgctxt "admin csv-import"
870
+ msgid "Import Listings"
871
+ msgstr "Importa Annunci"
872
+
873
+ #: templates/admin/csv-import.tpl.php:270
874
+ msgctxt "admin csv-import"
875
+ msgid ""
876
+ "The following are the valid header names to be used in the CSV file. "
877
+ "Multivalued fields (such as category or tags) can appear multiple times in "
878
+ "the file. Click <a href=\"%s\">\"See an example CSV import file\"</a> to see "
879
+ "how an import file should look like."
880
+ msgstr ""
881
+ "Di seguito sono riportati i nomi di intestazione validi da utilizzare nel "
882
+ "file CSV. I campi multivalore (ad esempio categoria o tag) possono essere "
883
+ "visualizzati più volte nel file. Clicva <a href=\"%s\">\"Vedi un esempio di "
884
+ "file di importazione CSV\"</a> Per vedere come un file di importazione deve "
885
+ "essere."
886
+
887
+ #: templates/admin/csv-import.tpl.php:277
888
+ msgctxt "admin csv-import"
889
+ msgid "Header name/label"
890
+ msgstr "Nome intestazione / etichetta"
891
+
892
+ #: templates/admin/csv-import.tpl.php:278
893
+ msgctxt "admin csv-import"
894
+ msgid "Field"
895
+ msgstr "Campo"
896
+
897
+ #: templates/admin/csv-import.tpl.php:279
898
+ msgctxt "admin csv-import"
899
+ msgid "Type"
900
+ msgstr "Tipo"
901
+
902
+ #: templates/admin/csv-import.tpl.php:280
903
+ msgctxt "admin csv-import"
904
+ msgid "Required?"
905
+ msgstr "Necessario?"
906
+
907
+ #: templates/admin/csv-import.tpl.php:281
908
+ msgctxt "admin csv-import"
909
+ msgid "Multivalued?"
910
+ msgstr "Multivalore?"
911
+
912
+ #: templates/admin/csv-import.tpl.php:303
913
+ msgctxt "admin csv-import"
914
+ msgid ""
915
+ "Fee ID (integer) associated to a listing. Use this column when adding or "
916
+ "updating listings from external sources."
917
+ msgstr ""
918
+ "Fee ID (numero intero) associato ad un elenco. Utilizzare questa colonna per "
919
+ "aggiungere o aggiornare gli elenchi da fonti esterne."
920
+
921
+ #: templates/admin/csv-import.tpl.php:310
922
+ msgctxt "admin csv-import"
923
+ msgid "Semicolon separated list of listing images (from the ZIP file)"
924
+ msgstr "Elenco separato di immagini (dal file ZIP)"
925
+
926
+ #: templates/admin/csv-import.tpl.php:317
927
+ msgctxt "admin csv-import"
928
+ msgid "Listing author's username"
929
+ msgstr "Elenco degli utenti"
930
+
931
+ #: templates/admin/csv-import.tpl.php:324
932
+ msgctxt "admin csv-import"
933
+ msgid ""
934
+ "Internal Sequence ID used to allow listing updates from external sources."
935
+ msgstr ""
936
+ "ID di sequenza interna utilizzata per consentire l'elenco degli "
937
+ "aggiornamenti da fonti esterne."
938
+
939
+ #: templates/admin/csv-import.tpl.php:331
940
+ msgctxt "admin csv-import"
941
+ msgid ""
942
+ "Date of listing expiration formatted as YYYY-MM-DD. Use this column when "
943
+ "adding or updating listings from external sources."
944
+ msgstr ""
945
+ "Data della scadenza dell'Annuncio formattata come YYYY-MM-DD. Utilizza "
946
+ "questa colonna quando aggiungi o aggiorni gli elenchi da sorgenti esterne."
947
+
948
+ #: includes/admin/class-admin-csv.php:45
949
+ msgctxt "admin csv"
950
+ msgid "Import"
951
+ msgstr "Importa"
952
+
953
+ #: includes/admin/class-admin-csv.php:46
954
+ msgctxt "admin csv"
955
+ msgid "Export"
956
+ msgstr "Esporta"
957
+
958
+ #: includes/admin/class-admin-listings.php:59
959
+ msgctxt "admin category filter"
960
+ msgid "All categories"
961
+ msgstr "Tutte le categorie"
962
+
963
+ #: includes/admin/class-admin-listings.php:174
964
+ msgctxt "admin listings"
965
+ msgid ""
966
+ "This listing doesn't have a fee plan assigned. This is required in order to "
967
+ "determine the features available to this listing, as well as handling "
968
+ "renewals."
969
+ msgstr ""
970
+ "Questo annuncio non ha un piano tariffario assegnato. Questo è necessario al "
971
+ "fine di determinare le caratteristiche disponibili per questo elenco, così "
972
+ "come la gestione dei rinnovi."
973
+
974
+ #: includes/admin/class-admin-listings.php:293
975
+ msgctxt "admin listings"
976
+ msgid "Never"
977
+ msgstr "Mai"
978
+
979
+ #: includes/admin/class-admin-listings.php:319
980
+ msgctxt "admin listings"
981
+ msgid "Featured"
982
+ msgstr "In evidenza"
983
+
984
+ #: includes/admin/class-admin-listings.php:323
985
+ msgctxt "admin listings"
986
+ msgid "Recurring"
987
+ msgstr "Ricorrente"
988
+
989
+ #: includes/admin/class-admin-listings.php:327
990
+ msgctxt "admin listings"
991
+ msgid "Free"
992
+ msgstr "Gratis"
993
+
994
+ #: includes/admin/class-admin-listings.php:329
995
+ msgctxt "admin listings"
996
+ msgid "Paid"
997
+ msgstr "Pagato"
998
+
999
+ #: includes/admin/class-admin-listings.php:334
1000
+ msgctxt "admin listings"
1001
+ msgid "Reported"
1002
+ msgstr "Segnalato"
1003
+
1004
+ #: includes/admin/class-admin-listings.php:641
1005
+ msgctxt "admin listings"
1006
+ msgid "Listing's payment history successfully deleted"
1007
+ msgstr ""
1008
+ "La cronologia dei pagamenti dell'annuncio è stata cancellata con successo"
1009
+
1010
+ #: templates/admin/metaboxes-listing-flagging-row.tpl.php:29
1011
+ msgctxt "admin listings"
1012
+ msgid "Selected Option: "
1013
+ msgstr "Opzione selezionata: "
1014
+
1015
+ #: templates/admin/metaboxes-listing-flagging-row.tpl.php:33
1016
+ msgctxt "admin listings"
1017
+ msgid "Aditional Info: "
1018
+ msgstr "Ulteriori informazioni:"
1019
+
1020
+ #: templates/admin/metaboxes-listing-flagging.tpl.php:8
1021
+ msgctxt "admin listings"
1022
+ msgid "This listing has not been reported."
1023
+ msgstr "Questo annuncio non è stato segnalato"
1024
+
1025
+ #: templates/admin/metaboxes-listing-flagging.tpl.php:30
1026
+ msgctxt "admin listings"
1027
+ msgid "Clear listing reports."
1028
+ msgstr "Cancella le segnalazioni annuncio"
1029
+
1030
+ #: includes/admin/class-admin-listings.php:197
1031
+ msgctxt "admin"
1032
+ msgid "Directory Listing Fields / Images"
1033
+ msgstr "Directory Annunci Campi / Immagini"
1034
+
1035
+ #: includes/admin/class-admin-listings.php:247
1036
+ msgctxt "admin"
1037
+ msgid "Categories"
1038
+ msgstr "Categorie"
1039
+
1040
+ #: includes/admin/class-admin.php:237
1041
+ msgctxt "admin"
1042
+ msgid "Business Directory"
1043
+ msgstr "Business Directory"
1044
+
1045
+ #: includes/admin/class-admin.php:248
1046
+ msgctxt "admin"
1047
+ msgid "You're all set. Visit your new <a>Business Directory</a> page."
1048
+ msgstr "Sei a posto. Visita la tua nuova pagina <a>Business Directory</a>."
1049
+
1050
+ #: includes/admin/class-admin.php:401
1051
+ msgctxt "admin"
1052
+ msgid "Untitled Menu"
1053
+ msgstr "Menu senza titolo"
1054
+
1055
+ #: includes/admin/class-admin.php:671
1056
+ msgctxt "admin"
1057
+ msgid "Dismiss this notice."
1058
+ msgstr "Rimuovi questo avviso."
1059
+
1060
+ #: includes/admin/class-admin.php:702 includes/admin/class-admin.php:712
1061
+ msgctxt "admin"
1062
+ msgid "The listing has been updated."
1063
+ msgid_plural "The listings have been updated."
1064
+ msgstr[0] "L'Annuncio è stato aggiornato."
1065
+ msgstr[1] "Gli annunci sono stati aggiornati."
1066
+
1067
+ #: includes/admin/class-admin.php:733
1068
+ msgctxt "admin"
1069
+ msgid "The fee was successfully assigned."
1070
+ msgstr "Il canone è stata assegnato con successo."
1071
+
1072
+ #: includes/admin/class-admin.php:743
1073
+ msgctxt "admin"
1074
+ msgid "Listing was renewed."
1075
+ msgid_plural "Listings were renewed."
1076
+ msgstr[0] "L'Annuncio è stato rinnovato."
1077
+ msgstr[1] "Gli annunci sono stati rinnovati."
1078
+
1079
+ #: includes/admin/class-admin.php:754
1080
+ msgctxt "admin"
1081
+ msgid "Renewal email sent."
1082
+ msgstr "E-mail di rinnovo inviata."
1083
+
1084
+ #: includes/admin/class-admin.php:761
1085
+ msgctxt "admin"
1086
+ msgid "Listing report deleted."
1087
+ msgid_plural "Listing reports deleted."
1088
+ msgstr[0] "La segnalazione per l'Annuncio è stata cancellata."
1089
+ msgstr[1] "Le segnalazioni per gli Annunci sono state cancellate."
1090
+
1091
+ #: includes/admin/class-admin.php:809
1092
+ msgctxt "admin"
1093
+ msgid "Access keys sent."
1094
+ msgstr "Dati di accesso inviati."
1095
+
1096
+ #: includes/admin/class-admin.php:811
1097
+ msgctxt "admin"
1098
+ msgid "The access keys couldn't be sent."
1099
+ msgstr "Non è stato possibile inviare i dati di accesso."
1100
+
1101
+ #: includes/admin/class-admin.php:869 includes/admin/class-admin.php:875
1102
+ msgctxt "admin"
1103
+ msgid "Listing Count"
1104
+ msgstr "Elenco luoghi"
1105
+
1106
+ #: includes/admin/class-admin.php:937
1107
+ msgctxt "admin"
1108
+ msgid ""
1109
+ "<b>Business Directory Plugin</b> requires a page with the "
1110
+ "<tt>[businessdirectory]</tt> shortcode to function properly."
1111
+ msgstr ""
1112
+ "<b>Business Directory Plugin</b> richiede una pagina con il codice di scelta "
1113
+ "rapida <tt>[businessdirectory]</tt> per funzionare correttamente."
1114
+
1115
+ #: includes/admin/class-admin.php:939
1116
+ msgctxt "admin"
1117
+ msgid ""
1118
+ "You can create this page by yourself or let Business Directory do this for "
1119
+ "you automatically."
1120
+ msgstr ""
1121
+ "È possibile creare la pagina da soli o lasciare che Business Directory "
1122
+ "faccia questo per voi automaticamente."
1123
+
1124
+ #: includes/admin/class-admin.php:943
1125
+ msgctxt "admin"
1126
+ msgid "Create required pages for me"
1127
+ msgstr "Crea le pagine richieste per me"
1128
+
1129
+ #: includes/admin/class-admin.php:976
1130
+ msgctxt "admin"
1131
+ msgid ""
1132
+ "<strong>Business Directory Plugin</strong> requires <strong>PHP 5.6</strong> "
1133
+ "or later, but your server is running version <strong>%s</strong>. Please ask "
1134
+ "your provider to upgrade in order to prevent any issues with the plugin."
1135
+ msgstr ""
1136
+ "<strong>Business Directory Plugin</strong> richiede <strong>PHP 5.6</strong> "
1137
+ "o successivo, ma il tuo server sta eseguendo la versione <strong>%s</"
1138
+ "strong>. Chiedete al vostro fornitore di aggiornare per evitare problemi con "
1139
+ "il plugin."
1140
+
1141
+ #: includes/admin/class-admin.php:999
1142
+ msgctxt "admin"
1143
+ msgid ""
1144
+ "We noticed you want your Business Directory users to register before posting "
1145
+ "listings, but Registration for your site is currently disabled. Go [here] "
1146
+ "and check \"Anyone can register\" to make sure BD works properly."
1147
+ msgstr ""
1148
+ "Abbiamo notato che si desidera che gli utenti di Business Directory si "
1149
+ "registrino prima di pubblicare annunci, ma la registrazione per il tuo sito "
1150
+ "è attualmente disabilitata. Vai [qui] e controlla \"Chiunque può registrarsi"
1151
+ "\" per assicurarti che BD funzioni correttamente."
1152
+
1153
+ #: includes/admin/class-listing-fields-metabox.php:15
1154
+ msgctxt "admin"
1155
+ msgid "Fields"
1156
+ msgstr "Campi"
1157
+
1158
+ #: includes/admin/class-listing-fields-metabox.php:17
1159
+ msgctxt "admin"
1160
+ msgid "Images (%s)"
1161
+ msgstr "Immagini (%s)"
1162
+
1163
+ #: includes/admin/class-listing-fields-metabox.php:18
1164
+ msgctxt "admin"
1165
+ msgid "Images"
1166
+ msgstr "Immagini"
1167
+
1168
+ #: includes/admin/form-fields.php:203
1169
+ msgctxt "admin"
1170
+ msgid ""
1171
+ "<b>Business Directory Plugin</b> requires fields with the following "
1172
+ "associations in order to work correctly: <b>%s</b>."
1173
+ msgstr ""
1174
+ "<b>Business Directory Plugin</b> richiede campi con le seguenti associazioni "
1175
+ "per funzionare correttamente: <b>%s</b>."
1176
+
1177
+ #: includes/admin/form-fields.php:205
1178
+ msgctxt "admin"
1179
+ msgid ""
1180
+ "<b>Business Directory Plugin</b> requires a field with a <b>%s</b> "
1181
+ "association in order to work correctly."
1182
+ msgstr ""
1183
+ "<b>Business Directory Plugin</b> richiede un campo con un'associazione <b>"
1184
+ "%s</b> per funzionare correttamente."
1185
+
1186
+ #: includes/admin/form-fields.php:209
1187
+ msgctxt "admin"
1188
+ msgid ""
1189
+ "You can create these custom fields by yourself inside \"Manage Form Fields\" "
1190
+ "or let Business Directory do this for you automatically."
1191
+ msgstr ""
1192
+ "È possibile creare questi campi personalizzati da soli all'interno di "
1193
+ "\"Gestire i campi del modulo\" o lasciare che Business Directory lo faccia "
1194
+ "automaticamente."
1195
+
1196
+ #: includes/admin/form-fields.php:214 includes/views/submit_listing.php:512
1197
+ msgctxt "admin"
1198
+ msgid "Go to \"Manage Form Fields\""
1199
+ msgstr "Vai a \"Gestire i campi dei moduli\"."
1200
+
1201
+ #: includes/admin/form-fields.php:219
1202
+ msgctxt "admin"
1203
+ msgid "Create these required fields for me"
1204
+ msgstr "Crea questi campi obbligatori per me"
1205
+
1206
+ #: includes/payment.php:180
1207
+ msgctxt "admin"
1208
+ msgid "Pending Abandonment"
1209
+ msgstr "In attesa di abbandono"
1210
+
1211
+ #: includes/payment.php:185
1212
+ msgctxt "admin"
1213
+ msgid "Abandoned"
1214
+ msgstr "Abbandonato"
1215
+
1216
+ #: includes/admin/class-admin-listings.php:304
1217
+ msgctxt "listing attribute"
1218
+ msgid "No Fee Plan"
1219
+ msgstr "Nessun piano tariffario"
1220
+
1221
+ #: includes/admin/class-admin-listings.php:394
1222
+ msgctxt "listing status"
1223
+ msgid "Reported"
1224
+ msgstr "Segnalato"
1225
+
1226
+ #: includes/class-listing.php:771
1227
+ msgctxt "listing status"
1228
+ msgid "Unknown"
1229
+ msgstr "Sconosciuto"
1230
+
1231
+ #: includes/class-listing.php:772
1232
+ msgctxt "listing status"
1233
+ msgid "Legacy"
1234
+ msgstr "Legacy"
1235
+
1236
+ #: includes/class-listing.php:773
1237
+ msgctxt "listing status"
1238
+ msgid "Incomplete"
1239
+ msgstr "Incompleto"
1240
+
1241
+ #: includes/class-listing.php:774
1242
+ msgctxt "listing status"
1243
+ msgid "Pending Payment"
1244
+ msgstr "Pagamento in attesa"
1245
+
1246
+ #: includes/class-listing.php:775
1247
+ msgctxt "listing status"
1248
+ msgid "Complete"
1249
+ msgstr "Completato"
1250
+
1251
+ #: includes/class-listing.php:776
1252
+ msgctxt "listing status"
1253
+ msgid "Pending Upgrade"
1254
+ msgstr "Aggiornamento in attesa"
1255
+
1256
+ #: includes/class-listing.php:777
1257
+ msgctxt "listing status"
1258
+ msgid "Expired"
1259
+ msgstr "Scaduto"
1260
+
1261
+ #: includes/class-listing.php:778
1262
+ msgctxt "listing status"
1263
+ msgid "Pending Renewal"
1264
+ msgstr "In attesa di rinnovo"
1265
+
1266
+ #: includes/class-listing.php:779
1267
+ msgctxt "listing status"
1268
+ msgid "Abandoned"
1269
+ msgstr "Abbandonato"
1270
+
1271
+ #: includes/admin/class-admin-listings.php:443
1272
+ msgctxt "admin actions"
1273
+ msgid "Edit Listing"
1274
+ msgstr "Modifica Annuncio"
1275
+
1276
+ #: includes/admin/class-admin-listings.php:448
1277
+ msgctxt "admin actions"
1278
+ msgid "Delete Listing"
1279
+ msgstr "Elimina Annuncio"
1280
+
1281
+ #: includes/admin/class-admin-listings.php:459
1282
+ msgctxt "admin actions"
1283
+ msgid "View Payments"
1284
+ msgstr "Visualizza Pagamenti"
1285
+
1286
+ #: includes/admin/class-admin-listings.php:464
1287
+ msgctxt "admin actions"
1288
+ msgid "View Payment"
1289
+ msgstr "Visualizza pagamento"
1290
+
1291
+ #: includes/admin/class-admin-listings.php:580
1292
+ msgctxt "admin actions"
1293
+ msgid "Publish listings"
1294
+ msgstr "Pubblicare gli annunci"
1295
+
1296
+ #: includes/admin/class-admin-listings.php:581
1297
+ msgctxt "admin actions"
1298
+ msgid "Mark as \"Pending Review\""
1299
+ msgstr "Segnare come \"Recensione in sospeso\"."
1300
+
1301
+ #: includes/admin/class-admin-listings.php:582
1302
+ msgctxt "admin actions"
1303
+ msgid "Hide from directory (mark as \"Draft\")"
1304
+ msgstr "Nascondi dall'elenco (contrassegnare come \"Bozza\")"
1305
+
1306
+ #: includes/admin/class-admin-listings.php:584
1307
+ msgctxt "admin actions"
1308
+ msgid "Renew listings"
1309
+ msgstr "Rinnovare gli elenchi"
1310
+
1311
+ #: includes/admin/class-admin-listings.php:585
1312
+ msgctxt "admin actions"
1313
+ msgid "Set listings as \"Expired\""
1314
+ msgstr "Set listings come \"Scaduto\"."
1315
+
1316
+ #: includes/admin/class-admin-listings.php:592
1317
+ msgctxt "admin actions"
1318
+ msgid "Send access keys"
1319
+ msgstr "Inviare i tasti di accesso"
1320
+
1321
+ #: includes/admin/class-admin.php:169
1322
+ #: templates/admin/metaboxes-listing-information-plan.tpl.php:75
1323
+ msgctxt "listing metabox"
1324
+ msgid "Never"
1325
+ msgstr "Mai"
1326
+
1327
+ #: includes/admin/class-admin.php:170
1328
+ #: templates/admin/metaboxes-listing-information-plan.tpl.php:99
1329
+ #: templates/admin/metaboxes-listing-information-plan.tpl.php:106
1330
+ msgctxt "listing metabox"
1331
+ msgid "Yes"
1332
+ msgstr "Si"
1333
+
1334
+ #: includes/admin/class-admin.php:171
1335
+ #: templates/admin/metaboxes-listing-information-plan.tpl.php:99
1336
+ #: templates/admin/metaboxes-listing-information-plan.tpl.php:106
1337
+ msgctxt "listing metabox"
1338
+ msgid "No"
1339
+ msgstr "No"
1340
+
1341
+ #: includes/admin/helpers/class-listing-information-metabox.php:15
1342
+ msgctxt "listing metabox"
1343
+ msgid "Listing"
1344
+ msgstr "Annuncio"
1345
+
1346
+ #: includes/admin/helpers/class-listing-information-metabox.php:19
1347
+ msgctxt "listing metabox"
1348
+ msgid "Recent Payments"
1349
+ msgstr "Pagamenti recenti"
1350
+
1351
+ #: includes/admin/helpers/class-listing-information-metabox.php:23
1352
+ msgctxt "listing metabox"
1353
+ msgid "Access Key"
1354
+ msgstr "Chiave d'accesso"
1355
+
1356
+ #: templates/admin/metaboxes-listing-information-payments.tpl.php:15
1357
+ msgctxt "listing metabox"
1358
+ msgid "Click a transaction to see its details (and approve/reject)."
1359
+ msgstr ""
1360
+ "Clicca su una transazione per vedere i dettagli (e approvazione/rifiuto)."
1361
+
1362
+ #: templates/admin/metaboxes-listing-information-payments.tpl.php:36
1363
+ msgctxt "listing metabox"
1364
+ msgid "No payments available."
1365
+ msgstr "Nessun pagamento disponibile."
1366
+
1367
+ #: templates/admin/metaboxes-listing-information-plan.tpl.php:14
1368
+ msgctxt "listing metabox"
1369
+ msgid "General Info"
1370
+ msgstr "Informazioni generali"
1371
+
1372
+ #: templates/admin/metaboxes-listing-information-plan.tpl.php:16
1373
+ msgctxt "listing metabox"
1374
+ msgid "Listing Status"
1375
+ msgstr "Stato Inserzione"
1376
+
1377
+ #: templates/admin/metaboxes-listing-information-plan.tpl.php:22
1378
+ #: templates/admin/metaboxes-listing-information-plan.tpl.php:31
1379
+ msgctxt "listing metabox"
1380
+ msgid "N/A"
1381
+ msgstr "N/A"
1382
+
1383
+ #: templates/admin/metaboxes-listing-information-plan.tpl.php:27
1384
+ msgctxt "listing metabox"
1385
+ msgid "Last renew date"
1386
+ msgstr "Ultima data di rinnovo"
1387
+
1388
+ #: templates/admin/metaboxes-listing-information-plan.tpl.php:35
1389
+ msgctxt "listing metabox"
1390
+ msgid "Plan Details"
1391
+ msgstr "Dettagli del piano"
1392
+
1393
+ #: templates/admin/metaboxes-listing-information-plan.tpl.php:37
1394
+ msgctxt "listing metabox"
1395
+ msgid "Fee Plan"
1396
+ msgstr "Piano tariffario"
1397
+
1398
+ #: templates/admin/metaboxes-listing-information-plan.tpl.php:46
1399
+ msgctxt "listing metabox"
1400
+ msgid "Change plan"
1401
+ msgstr "Cambia piano"
1402
+
1403
+ #: templates/admin/metaboxes-listing-information-plan.tpl.php:58
1404
+ #: templates/admin/metaboxes-listing-information-plan.tpl.php:78
1405
+ #: templates/admin/metaboxes-listing-information-plan.tpl.php:92
1406
+ msgctxt "listing metabox"
1407
+ msgid "OK"
1408
+ msgstr "OK"
1409
+
1410
+ #: templates/admin/metaboxes-listing-information-plan.tpl.php:59
1411
+ #: templates/admin/metaboxes-listing-information-plan.tpl.php:79
1412
+ #: templates/admin/metaboxes-listing-information-plan.tpl.php:93
1413
+ msgctxt "listing metabox"
1414
+ msgid "Cancel"
1415
+ msgstr "Annulla"
1416
+
1417
+ #: templates/admin/metaboxes-listing-information-plan.tpl.php:62
1418
+ msgctxt "listing metabox"
1419
+ msgid "Amount"
1420
+ msgstr "Importo"
1421
+
1422
+ #: templates/admin/metaboxes-listing-information-plan.tpl.php:68
1423
+ msgctxt "listing metabox"
1424
+ msgid "Expires On"
1425
+ msgstr "Scade il"
1426
+
1427
+ #: templates/admin/metaboxes-listing-information-plan.tpl.php:73
1428
+ #: templates/admin/metaboxes-listing-information-plan.tpl.php:88
1429
+ msgctxt "listing metabox"
1430
+ msgid "Edit"
1431
+ msgstr "Modifica"
1432
+
1433
+ #: templates/admin/metaboxes-listing-information-plan.tpl.php:83
1434
+ msgctxt "listing metabox"
1435
+ msgid "# of images"
1436
+ msgstr "# di immagini"
1437
+
1438
+ #: templates/admin/metaboxes-listing-information-plan.tpl.php:96
1439
+ msgctxt "listing metabox"
1440
+ msgid "Is Featured?"
1441
+ msgstr "E' in evidenza?"
1442
+
1443
+ #: templates/admin/metaboxes-listing-information-plan.tpl.php:103
1444
+ msgctxt "listing metabox"
1445
+ msgid "Is Recurring?"
1446
+ msgstr "È ricorrente?"
1447
+
1448
+ #: includes/admin/class-admin.php:208
1449
+ msgctxt "drip pointer"
1450
+ msgid ""
1451
+ "Find out how to create a compelling, thriving business directory from "
1452
+ "scratch in this ridiculously actionable (and FREE) 5-part email course. Get "
1453
+ "a FREE premium module just for signing up."
1454
+ msgstr ""
1455
+ "Scopri come creare da zero un'avvincente e fiorente directory aziendale in "
1456
+ "questo ridicolmente praticabile (e GRATUITO) corso di e-mail in 5 parti. "
1457
+ "Ottieni un modulo premium GRATUITO solo per la registrazione."
1458
+
1459
+ #: includes/admin/class-admin.php:210
1460
+ msgctxt "drip pointer"
1461
+ msgid "Email Address:"
1462
+ msgstr "Indirizzo Email:"
1463
+
1464
+ #: includes/admin/class-admin.php:216
1465
+ msgctxt "drip pointer"
1466
+ msgid "Want to know the Secrets of Building an Awesome Business Directory?"
1467
+ msgstr ""
1468
+ "Vuoi conoscere i segreti della costruzione di un'impressionante directory "
1469
+ "aziendale?"
1470
+
1471
+ #: includes/admin/class-admin.php:218
1472
+ msgctxt "drip pointer"
1473
+ msgid "Yes, please!"
1474
+ msgstr "Sì, per favore!"
1475
+
1476
+ #: includes/admin/class-admin.php:220
1477
+ msgctxt "drip pointer"
1478
+ msgid "No, thanks"
1479
+ msgstr "No, Grazie"
1480
+
1481
+ #: includes/admin/class-admin.php:268
1482
+ msgctxt "drip pointer"
1483
+ msgid "Invalid e-mail address."
1484
+ msgstr "Indirizzo e-mail non valido."
1485
+
1486
+ #: includes/admin/class-admin.php:302
1487
+ msgctxt "admin menu"
1488
+ msgid "Business Directory Admin"
1489
+ msgstr "Business Directory Admin"
1490
+
1491
+ #: includes/admin/class-admin.php:303
1492
+ msgctxt "admin menu"
1493
+ msgid "Dir. Admin"
1494
+ msgstr "Dir. Ammin"
1495
+
1496
+ #: includes/admin/class-admin.php:303
1497
+ msgctxt "admin menu"
1498
+ msgid "Directory Admin"
1499
+ msgstr "Amministra Directory"
1500
+
1501
+ #: includes/admin/class-admin.php:310
1502
+ msgctxt "admin menu"
1503
+ msgid "Add New Listing"
1504
+ msgstr "Aggiungi Nuovo Annuncio"
1505
+
1506
+ #: includes/admin/class-admin.php:318
1507
+ msgctxt "admin menu"
1508
+ msgid "Manage Fees"
1509
+ msgstr "Gestisci canoni"
1510
+
1511
+ #: includes/admin/class-admin.php:321
1512
+ msgctxt "admin menu"
1513
+ msgid "Listings"
1514
+ msgstr "Annunci"
1515
+
1516
+ #: includes/admin/class-admin.php:325
1517
+ msgctxt "admin menu"
1518
+ msgid "Manage Form Fields"
1519
+ msgstr "Gestire i campi dei moduli"
1520
+
1521
+ #: includes/admin/class-admin.php:329
1522
+ msgctxt "admin menu"
1523
+ msgid "Payment History"
1524
+ msgstr "Cronologia pagamenti"
1525
+
1526
+ #: includes/admin/class-admin.php:332
1527
+ msgctxt "admin menu"
1528
+ msgid "CSV Import & Export"
1529
+ msgstr "Importazione ed esportazione CSV"
1530
+
1531
+ #: includes/admin/class-admin.php:343
1532
+ msgctxt "admin menu"
1533
+ msgid "Debug"
1534
+ msgstr "Debug"
1535
+
1536
+ #: includes/admin/settings/class-settings-admin.php:46
1537
+ msgctxt "admin menu"
1538
+ msgid "Manage Options"
1539
+ msgstr "Gestire le opzioni"
1540
+
1541
+ #: includes/admin/class-admin.php:867
1542
+ msgctxt "admin category id"
1543
+ msgid "ID"
1544
+ msgstr "ID"
1545
+
1546
+ #: includes/admin/class-csv-exporter.php:92
1547
+ msgctxt "admin csv-export"
1548
+ msgid "Could not create a temporary directory for handling this CSV export."
1549
+ msgstr ""
1550
+ "Impossibile creare una directory temporanea per la gestione di questa "
1551
+ "esportazione CSV."
1552
+
1553
+ #: includes/admin/class-csv-exporter.php:95
1554
+ msgctxt "admin csv-export"
1555
+ msgid "Could not create wpbdp-csv-exports directory."
1556
+ msgstr "Impossibile creare la directory wpbddp-csv-exports."
1557
+
1558
+ #: includes/admin/class-csv-exporter.php:100
1559
+ msgctxt "admin csv-export"
1560
+ msgid "Error while creating a temporary directory for CSV export: %s"
1561
+ msgstr ""
1562
+ "Errore durante la creazione di una directory temporanea per l'esportazione "
1563
+ "CSV: %s"
1564
+
1565
+ #: includes/admin/csv-export.php:49
1566
+ msgctxt "admin csv-export"
1567
+ msgid "Could not decode export state information."
1568
+ msgstr "Impossibile decodificare le informazioni sullo stato di esportazione."
1569
+
1570
+ #: templates/admin/csv-export.tpl.php:5
1571
+ msgctxt "admin csv-export"
1572
+ msgid ""
1573
+ "An unknown error occurred during the export. Please make sure you have "
1574
+ "enough free disk space and memory available to PHP. Check your error logs "
1575
+ "for details."
1576
+ msgstr ""
1577
+ "Un errore sconosciuto si è verificato durante l'esportazione. Assicurati di "
1578
+ "avere spazio sufficiente sul disco e la memoria disponibile per PHP. "
1579
+ "Controllare i registri degli errori per i dettagli."
1580
+
1581
+ #: templates/admin/csv-export.tpl.php:14
1582
+ msgctxt "admin csv-export"
1583
+ msgid ""
1584
+ "Please note that the export process is a resource intensive task. If your "
1585
+ "export does not succeed try disabling other plugins first and/or increasing "
1586
+ "the values of the 'memory_limit' and 'max_execution_time' directives in your "
1587
+ "server's php.ini configuration file."
1588
+ msgstr ""
1589
+ "Si prega di notare che il processo di esportazione è un compito che richiede "
1590
+ "risorse. Se l'esportazione non riesce, provare a disabilitare altri plugin "
1591
+ "innanzitutto e / o aumentare i valori delle direttive \"memory_limit\" e "
1592
+ "\"max_execution_time\" nel file di configurazione php.ini del server."
1593
+
1594
+ #: templates/admin/csv-export.tpl.php:26
1595
+ msgctxt "admin csv-export"
1596
+ msgid "Export Configuration"
1597
+ msgstr "Esporta Configurazione"
1598
+
1599
+ #: templates/admin/csv-export.tpl.php:29
1600
+ msgctxt "admin csv-export"
1601
+ msgid "Export settings"
1602
+ msgstr "Esporta le impostazioni"
1603
+
1604
+ #: templates/admin/csv-export.tpl.php:33
1605
+ msgctxt "admin csv-export"
1606
+ msgid "Which listings to export?"
1607
+ msgstr "Quali annunci da esportare?"
1608
+
1609
+ #: templates/admin/csv-export.tpl.php:37
1610
+ msgctxt "admin csv-export"
1611
+ msgid "All"
1612
+ msgstr "Tutti"
1613
+
1614
+ #: templates/admin/csv-export.tpl.php:38
1615
+ msgctxt "admin csv-export"
1616
+ msgid "Active Only"
1617
+ msgstr "Solo attivo"
1618
+
1619
+ #: templates/admin/csv-export.tpl.php:39
1620
+ msgctxt "admin csv-export"
1621
+ msgid "Active + Pending Renewal"
1622
+ msgstr "Attivo + In attesa di rinnovo"
1623
+
1624
+ #: templates/admin/csv-export.tpl.php:45
1625
+ msgctxt "admin csv-export"
1626
+ msgid "Export images?"
1627
+ msgstr "Esporta le immagini?"
1628
+
1629
+ #: templates/admin/csv-export.tpl.php:50
1630
+ msgctxt "admin csv-export"
1631
+ msgid "Export images"
1632
+ msgstr "Esporta immagini"
1633
+
1634
+ #: templates/admin/csv-export.tpl.php:52
1635
+ msgctxt "admin csv-export"
1636
+ msgid ""
1637
+ "When checked, instead of just a CSV file a ZIP file will be generated with "
1638
+ "both a CSV file and listing images."
1639
+ msgstr ""
1640
+ "Quando l'opzione è selezionata, invece di un file CSV, viene generato un "
1641
+ "file ZIP con un file CSV e con l'elenco delle immagini."
1642
+
1643
+ #: templates/admin/csv-export.tpl.php:58
1644
+ msgctxt "admin csv-export"
1645
+ msgid "Additional metadata to export:"
1646
+ msgstr "Metadati aggiuntivi da esportare:"
1647
+
1648
+ #: templates/admin/csv-export.tpl.php:63
1649
+ msgctxt "admin csv-export"
1650
+ msgid "Include unique IDs for each listing (sequence_id column)."
1651
+ msgstr "Includi gli ID univoci per ogni lista (sequence_id column)."
1652
+
1653
+ #: templates/admin/csv-export.tpl.php:65
1654
+ msgctxt "admin csv-export"
1655
+ msgid ""
1656
+ "If you plan to re-import the listings into BD and don't want new ones "
1657
+ "created, select this option!"
1658
+ msgstr ""
1659
+ "Se si prevede di reimportare gli elenchi in BD e non si desidera crearne "
1660
+ "nuovi, selezionare questa opzione!"
1661
+
1662
+ #: templates/admin/csv-export.tpl.php:71
1663
+ msgctxt "admin csv-export"
1664
+ msgid "Author information (username)"
1665
+ msgstr "Informazioni sull'autore (username)"
1666
+
1667
+ #: templates/admin/csv-export.tpl.php:76
1668
+ msgctxt "admin csv-export"
1669
+ msgid "Listing expiration date"
1670
+ msgstr "Cerca un elenco"
1671
+
1672
+ #: templates/admin/csv-export.tpl.php:81
1673
+ msgctxt "admin csv-export"
1674
+ msgid "CSV File Settings"
1675
+ msgstr "Impostazioni file CSV"
1676
+
1677
+ #: templates/admin/csv-export.tpl.php:85
1678
+ msgctxt "admin csv-export"
1679
+ msgid "What operating system will you use to edit the CSV file?"
1680
+ msgstr "Quale sistema operativo utilizzi per modificare il file CSV?"
1681
+
1682
+ #: templates/admin/csv-export.tpl.php:92
1683
+ msgctxt "admin csv-export"
1684
+ msgid "Windows"
1685
+ msgstr "Windows"
1686
+
1687
+ #: templates/admin/csv-export.tpl.php:97
1688
+ msgctxt "admin csv-export"
1689
+ msgid "macOS"
1690
+ msgstr "macOS"
1691
+
1692
+ #: templates/admin/csv-export.tpl.php:99
1693
+ msgctxt "admin csv-export"
1694
+ msgid ""
1695
+ "Windows and macOS versions of MS Excel handle CSV files differently. To make "
1696
+ "sure all your listings information is displayed properly when you view or "
1697
+ "edit the CSV file, we need to generate different versions of the file for "
1698
+ "each operating system."
1699
+ msgstr ""
1700
+ "Le versioni Windows e macOS di MS Excel gestiscono i file CSV in modo "
1701
+ "diverso. Per essere sicuri che tutte le informazioni dei vostri annunci "
1702
+ "siano visualizzate correttamente quando visualizzate o modificate il file "
1703
+ "CSV, dobbiamo generare diverse versioni del file per ogni sistema operativo."
1704
+
1705
+ #: templates/admin/csv-export.tpl.php:104
1706
+ msgctxt "admin csv-export"
1707
+ msgid "Image Separator"
1708
+ msgstr "Separatore di immagini"
1709
+
1710
+ #: templates/admin/csv-export.tpl.php:115
1711
+ msgctxt "admin csv-export"
1712
+ msgid "Category Separator"
1713
+ msgstr "Separatore di Categoria"
1714
+
1715
+ #: templates/admin/csv-export.tpl.php:127
1716
+ msgctxt "admin csv-export"
1717
+ msgid "Export Listings"
1718
+ msgstr "Esporta Annunci"
1719
+
1720
+ #: templates/admin/csv-export.tpl.php:133
1721
+ msgctxt "admin csv-export"
1722
+ msgid "Export in Progress..."
1723
+ msgstr "Esportazione in corso ..."
1724
+
1725
+ #: templates/admin/csv-export.tpl.php:134
1726
+ msgctxt "admin csv-export"
1727
+ msgid ""
1728
+ "Your export file is being prepared. Please <u>do not leave</u> this page "
1729
+ "until the export finishes."
1730
+ msgstr ""
1731
+ "Il file di esportazione è in preparando. Assolutamente <u>non chiudere</u> "
1732
+ "questa pagina finché l'esportazione non finisce."
1733
+
1734
+ #: templates/admin/csv-export.tpl.php:137
1735
+ msgctxt "admin csv-export"
1736
+ msgid "No. of listings:"
1737
+ msgstr "Numero di Annunci:"
1738
+
1739
+ #: templates/admin/csv-export.tpl.php:139
1740
+ msgctxt "admin csv-export"
1741
+ msgid "Approximate export file size:"
1742
+ msgstr "Dimensione approssimativa del file di esportazione:"
1743
+
1744
+ #: templates/admin/csv-export.tpl.php:146
1745
+ msgctxt "admin csv-export"
1746
+ msgid "Cancel Export"
1747
+ msgstr "Annulla l'esportazione"
1748
+
1749
+ #: templates/admin/csv-export.tpl.php:151
1750
+ msgctxt "admin csv-export"
1751
+ msgid "Export Complete"
1752
+ msgstr "Esportazione completata"
1753
+
1754
+ #: templates/admin/csv-export.tpl.php:152
1755
+ msgctxt "admin csv-export"
1756
+ msgid ""
1757
+ "Your export file has been successfully created and it is now ready for "
1758
+ "download."
1759
+ msgstr ""
1760
+ "Il file di esportazione è stato creato con successo e ora è pronto per il "
1761
+ "download."
1762
+
1763
+ #: templates/admin/csv-export.tpl.php:155
1764
+ msgctxt "admin csv-export"
1765
+ msgid "Download %s (%s)"
1766
+ msgstr "Download %s (%s)"
1767
+
1768
+ #: templates/admin/csv-export.tpl.php:161
1769
+ msgctxt "admin csv-export"
1770
+ msgid ""
1771
+ "Click \"Cleanup\" once the file has been downloaded in order to remove all "
1772
+ "temporary data created by Business Directory during the export process."
1773
+ msgstr ""
1774
+ "Fai clic su \"Pulire\" una volta scaricato il file per rimuovere tutti i "
1775
+ "dati temporanei creati da Business Directory durante il processo di "
1776
+ "esportazione."
1777
+
1778
+ #: templates/admin/csv-export.tpl.php:162
1779
+ msgctxt "admin csv-export"
1780
+ msgid "Cleanup"
1781
+ msgstr "Pulire"
1782
+
1783
+ #: templates/admin/csv-export.tpl.php:167
1784
+ msgctxt "admin csv-export"
1785
+ msgid "Export Canceled"
1786
+ msgstr "Esportazione annullata"
1787
+
1788
+ #: templates/admin/csv-export.tpl.php:168
1789
+ msgctxt "admin csv-export"
1790
+ msgid "The export has been canceled."
1791
+ msgstr "L'esportazione è stata annullata."
1792
+
1793
+ #: templates/admin/csv-export.tpl.php:169
1794
+ msgctxt "admin csv-export"
1795
+ msgid "← Return to CSV Export"
1796
+ msgstr "← Ritorna all'esportazione di CSV"
1797
+
1798
+ #: includes/admin/class-listings-with-no-fee-plan-view.php:58
1799
+ msgctxt "listings view"
1800
+ msgid "No Fee Plan"
1801
+ msgstr "Nessun piano tariffario"
1802
+
1803
+ #: includes/admin/class-themes-admin.php:45
1804
+ msgctxt "themes"
1805
+ msgid "Directory Themes"
1806
+ msgstr "Elenco Temi"
1807
+
1808
+ #: includes/admin/class-themes-admin.php:46
1809
+ msgctxt "themes"
1810
+ msgid "Directory Themes %s"
1811
+ msgstr "Directory Temi %s"
1812
+
1813
+ #: includes/admin/class-themes-admin.php:135
1814
+ msgctxt "themes"
1815
+ msgid "Could not change the active theme to \"%s\"."
1816
+ msgstr "Impossibile modificare il tema attivo \"%s\"."
1817
+
1818
+ #: includes/admin/class-themes-admin.php:179
1819
+ msgctxt "themes"
1820
+ msgid "Active theme changed to \"%s\"."
1821
+ msgstr "Il tema attivo è stato modificato \"%s\"."
1822
+
1823
+ #: includes/admin/class-themes-admin.php:182
1824
+ msgctxt "themes"
1825
+ msgid ""
1826
+ "%s requires that you tag your existing fields to match some places we want "
1827
+ "to put your data on the theme. Below are fields we think are missing."
1828
+ msgstr ""
1829
+ "%s richiede che tu tagghi i tuoi campi esistenti in modo che corrispondano "
1830
+ "ad alcuni luoghi in cui vogliamo inserire i tuoi dati sul tema. Di seguito "
1831
+ "sono riportati i campi che riteniamo manchino."
1832
+
1833
+ #: includes/admin/class-themes-admin.php:191
1834
+ msgctxt "themes"
1835
+ msgid "Map My Fields"
1836
+ msgstr "Mappa I miei campi"
1837
+
1838
+ #: includes/admin/class-themes-admin.php:198
1839
+ msgctxt "themes"
1840
+ msgid "Suggested fields created successfully."
1841
+ msgstr "Campi suggeriti creati con successo."
1842
+
1843
+ #: includes/admin/class-themes-admin.php:201
1844
+ msgctxt "themes"
1845
+ msgid "Theme installed successfully."
1846
+ msgstr "Recensione inviata."
1847
+
1848
+ #: includes/admin/class-themes-admin.php:204
1849
+ msgctxt "themes"
1850
+ msgid "Theme was deleted successfully."
1851
+ msgstr "Il tema è stato eliminato con successo."
1852
+
1853
+ #: includes/admin/class-themes-admin.php:207
1854
+ msgctxt "themes"
1855
+ msgid "Could not delete theme directory. Check permissions."
1856
+ msgstr "Impossibile eliminare l'elenco dei temi. Controlla i permessi."
1857
+
1858
+ #: includes/admin/class-themes-admin.php:253
1859
+ msgctxt "themes"
1860
+ msgid "Please upload a valid theme file."
1861
+ msgstr "Si prega di caricare un file valido del tema."
1862
+
1863
+ #: includes/admin/class-themes-admin.php:260
1864
+ msgctxt "themes"
1865
+ msgid "Could not move \"%s\" to a temporary directory."
1866
+ msgstr "Non è stato possibile spostare \"%s\" in un elenco temporaneo."
1867
+
1868
+ #: includes/admin/class-themes-admin.php:335
1869
+ msgctxt "themes"
1870
+ msgid "Activate your <a>license key</a> to use this theme."
1871
+ msgstr "Attivare la <a>chiave di licenza</a> per utilizzare questo tema."
1872
+
1873
+ #: includes/admin/upgrades/class-themes-updater.php:128
1874
+ msgctxt "themes"
1875
+ msgid "Updating theme..."
1876
+ msgstr "Aggiornamento del tema....."
1877
+
1878
+ #: includes/admin/upgrades/class-themes-updater.php:129
1879
+ msgctxt "themes"
1880
+ msgid "Theme updated."
1881
+ msgstr "Tema aggiornato."
1882
+
1883
+ #: includes/admin/upgrades/class-themes-updater.php:131
1884
+ msgctxt "themes"
1885
+ msgid "New version available (<b>%s</b>). <a>Update now.</a>"
1886
+ msgstr "Nuova versione disponibile (<b>%s</b>).. <a>Aggiorna ora.</a>"
1887
+
1888
+ #: includes/admin/upgrades/class-themes-updater.php:159
1889
+ msgctxt "themes"
1890
+ msgid "Could not update theme: %s"
1891
+ msgstr "Non è stato possibile aggiornare il tema: %s"
1892
+
1893
+ #: includes/admin/upgrades/class-themes-updater.php:165
1894
+ msgctxt "themes"
1895
+ msgid "Theme was updated successfully."
1896
+ msgstr "Il tema è stato aggiornato con successo."
1897
+
1898
+ #: includes/themes.php:829
1899
+ msgctxt "themes"
1900
+ msgid "ZIP file is not a valid BD theme file."
1901
+ msgstr "Il file ZIP non è un file tema BD valido."
1902
+
1903
+ #: includes/themes.php:835
1904
+ msgctxt "themes"
1905
+ msgid "Could not create themes directory."
1906
+ msgstr "Impossibile creare una directory dei temi."
1907
+
1908
+ #: includes/themes.php:843
1909
+ msgctxt "themes"
1910
+ msgid "Could not remove previous theme directory \"%s\"."
1911
+ msgstr "Impossibile rimuovere la directory al tema precedente \"%s\"."
1912
+
1913
+ #: includes/themes.php:849
1914
+ msgctxt "themes"
1915
+ msgid "Could not move new theme into theme directory."
1916
+ msgstr "Non è stato possibile spostare un nuovo tema nella directory dei temi."
1917
+
1918
+ #: templates/admin/themes-install.tpl.php:2 templates/admin/themes.tpl.php:3
1919
+ msgctxt "themes"
1920
+ msgid "Upload Directory Theme"
1921
+ msgstr "Carica il tema della directory"
1922
+
1923
+ #: templates/admin/themes-install.tpl.php:8
1924
+ msgctxt "themes"
1925
+ msgid "This is a theme or skin from %s and is NOT a regular WordPress theme."
1926
+ msgstr "Questo è un tema da %s e NON è un tema regolare WordPress."
1927
+
1928
+ #: templates/admin/themes-install.tpl.php:21
1929
+ msgctxt "themes"
1930
+ msgid "BD Theme archive (ZIP file)"
1931
+ msgstr "Archivio temi BD (file ZIP)"
1932
+
1933
+ #: templates/admin/themes-install.tpl.php:30
1934
+ msgctxt "themes"
1935
+ msgid "Begin Upload"
1936
+ msgstr "Iniziare a caricare"
1937
+
1938
+ #: templates/admin/themes-item.tpl.php:3
1939
+ msgctxt "themes"
1940
+ msgid "Active:"
1941
+ msgstr "Attivo:"
1942
+
1943
+ #: templates/admin/themes-item.tpl.php:17
1944
+ msgctxt "themes"
1945
+ msgid "Activate"
1946
+ msgstr "Attiva"
1947
+
1948
+ #: templates/admin/themes-item.tpl.php:35
1949
+ msgctxt "themes"
1950
+ msgid "Version:"
1951
+ msgstr "Versione:"
1952
+
1953
+ #: templates/admin/themes-item.tpl.php:38
1954
+ msgctxt "themes"
1955
+ msgid "Author:"
1956
+ msgstr "Autore:"
1957
+
1958
+ #: templates/admin/themes.tpl.php:5
1959
+ msgctxt "themes"
1960
+ msgid "Settings"
1961
+ msgstr "Impostazioni"
1962
+
1963
+ #: templates/admin/themes.tpl.php:15
1964
+ msgctxt "themes"
1965
+ msgid ""
1966
+ "<a><b>Directory Themes</b></a> are pre-made templates for the <i>Business "
1967
+ "Directory Plugin</i> to change the look of the directory quickly and easily. "
1968
+ "We have a number of them available for purchase <a>here</a>."
1969
+ msgstr ""
1970
+ "<a><b>Elenco Temi</b></a> sono modelli pre-fatti per il <i>Business "
1971
+ "Directory Plugin</i> per cambiare l'aspetto della directory in modo rapido e "
1972
+ "semplice. Abbiamo un certo numero di loro disponibili per l'acquisto <a>qui</"
1973
+ "a>."
1974
+
1975
+ #: templates/admin/themes.tpl.php:16
1976
+ msgctxt "themes"
1977
+ msgid ""
1978
+ "They are <strong>different</strong> than your regular WordPress theme and "
1979
+ "they are <strong>not</strong> a replacement for WP themes either. They will "
1980
+ "change the look and feel of your business directory only."
1981
+ msgstr ""
1982
+ "Sono <strong>diversi</strong> dal tema WordPress e <strong>non</strong> "
1983
+ "sostituiscono i temi di WP. Cambieranno solo l'aspetto e l'atmosfera della "
1984
+ "Directory"
1985
+
1986
+ #: includes/admin/class-themes-admin.php:92
1987
+ msgctxt "admin themes"
1988
+ msgid ""
1989
+ "Business Directory Plugin - Your template overrides need to be reviewed!"
1990
+ msgstr ""
1991
+ "Plugin Business Directory - Le modifiche del tuo modello vanno riviste!"
1992
+
1993
+ #: includes/admin/class-themes-admin.php:94
1994
+ msgctxt "admin themes"
1995
+ msgid ""
1996
+ "Starting with version 4.0, Business Directory is using a new theming system "
1997
+ "that is not compatible with the templates used in previous versions."
1998
+ msgstr ""
1999
+ "A partire dalla versione 4.0, Business Directory utilizza un nuovo sistema "
2000
+ "di temi che non è compatibile con i modelli utilizzati nelle versioni "
2001
+ "precedenti."
2002
+
2003
+ #: includes/admin/class-themes-admin.php:96
2004
+ msgctxt "admin themes"
2005
+ msgid ""
2006
+ "Because of this, your template overrides below have been disabled. You "
2007
+ "should <a>review our documentation on customization</a> in order adjust your "
2008
+ "templates."
2009
+ msgstr ""
2010
+ "A causa di ciò, il modello di sostituzione del tuo modello è stato "
2011
+ "disattivato. Dovresti <a>Rivedere la nostra documentazione sulla "
2012
+ "personalizzazione</a> per regolare i tuoi .templates."
2013
+
2014
+ #: includes/admin/fees.php:45
2015
+ msgctxt "fees order"
2016
+ msgid "Label"
2017
+ msgstr "Etichetta"
2018
+
2019
+ #: includes/admin/fees.php:46
2020
+ msgctxt "fees order"
2021
+ msgid "Amount"
2022
+ msgstr "Importo"
2023
+
2024
+ #: includes/admin/fees.php:47
2025
+ msgctxt "fees order"
2026
+ msgid "Duration"
2027
+ msgstr "Durata"
2028
+
2029
+ #: includes/admin/fees.php:48
2030
+ msgctxt "fees order"
2031
+ msgid "Images"
2032
+ msgstr "Immagini"
2033
+
2034
+ #: includes/admin/fees.php:49
2035
+ msgctxt "fees order"
2036
+ msgid "Custom Order"
2037
+ msgstr "Ordine Personalizzato"
2038
+
2039
+ #: includes/admin/fees.php:99
2040
+ msgctxt "fees admin"
2041
+ msgid "Fee plan added."
2042
+ msgstr "Aggiunto il piano tariffario."
2043
+
2044
+ #: includes/admin/fees.php:101
2045
+ msgctxt "fees admin"
2046
+ msgid "Fee plan updated."
2047
+ msgstr "Piano tariffario aggiornato."
2048
+
2049
+ #: includes/admin/fees.php:123
2050
+ msgctxt "fees admin"
2051
+ msgid "Fee \"%s\" deleted."
2052
+ msgstr "Canone \"%s\" soppresso."
2053
+
2054
+ #: includes/admin/fees.php:135
2055
+ msgctxt "fees admin"
2056
+ msgid "Fee disabled."
2057
+ msgstr "Canone disattivato."
2058
+
2059
+ #: includes/admin/helpers/class-fees-table.php:24
2060
+ msgctxt "fees admin"
2061
+ msgid "fee"
2062
+ msgstr "Canone."
2063
+
2064
+ #: includes/admin/helpers/class-fees-table.php:25
2065
+ msgctxt "fees admin"
2066
+ msgid "fees"
2067
+ msgstr "Canoni"
2068
+
2069
+ #: includes/admin/helpers/class-fees-table.php:36
2070
+ msgctxt "fees admin"
2071
+ msgid "There are no fees right now. You can <a>create one</a>, if you want."
2072
+ msgstr ""
2073
+ "Non ci sono contributi in questo momento. È possibile <a>crearne uno</a>, se "
2074
+ "volete."
2075
+
2076
+ #: includes/admin/helpers/class-fees-table.php:43
2077
+ #: includes/admin/helpers/class-fees-table.php:376
2078
+ msgctxt "fees admin"
2079
+ msgid "Active"
2080
+ msgstr "Attivo"
2081
+
2082
+ #: includes/admin/helpers/class-fees-table.php:46
2083
+ msgctxt "fees admin"
2084
+ msgid "Not Available"
2085
+ msgstr "Non disponibile"
2086
+
2087
+ #: includes/admin/helpers/class-fees-table.php:49
2088
+ #: includes/admin/helpers/class-fees-table.php:372
2089
+ msgctxt "fees admin"
2090
+ msgid "Disabled"
2091
+ msgstr "Disabilitato"
2092
+
2093
+ #: includes/admin/helpers/class-fees-table.php:59
2094
+ msgctxt "fees admin"
2095
+ msgid ""
2096
+ "There are no \"%s\" fees right now. You can <a>create one</a>, if you want."
2097
+ msgstr ""
2098
+ "Non ci sono tariffe \"%s\" al momento. È possibile <a>crearne uno</a>, se lo "
2099
+ "si desidera."
2100
+
2101
+ #: includes/admin/helpers/class-fees-table.php:123
2102
+ msgctxt "fees admin"
2103
+ msgid "Label"
2104
+ msgstr "Etichetta"
2105
+
2106
+ #: includes/admin/helpers/class-fees-table.php:124
2107
+ #: includes/admin/helpers/class-payments-table.php:57
2108
+ msgctxt "fees admin"
2109
+ msgid "Amount"
2110
+ msgstr "Importo"
2111
+
2112
+ #: includes/admin/helpers/class-fees-table.php:125
2113
+ msgctxt "fees admin"
2114
+ msgid "Duration"
2115
+ msgstr "Durata"
2116
+
2117
+ #: includes/admin/helpers/class-fees-table.php:126
2118
+ msgctxt "fees admin"
2119
+ msgid "Images"
2120
+ msgstr "Immagini"
2121
+
2122
+ #: includes/admin/helpers/class-fees-table.php:127
2123
+ msgctxt "fees admin"
2124
+ msgid "Attributes"
2125
+ msgstr "Attributi"
2126
+
2127
+ #: includes/admin/helpers/class-fees-table.php:190
2128
+ msgctxt "fees admin"
2129
+ msgid ""
2130
+ "This is the default free plan for your directory. You can't delete it and "
2131
+ "it's always free, but you can edit the name and other settings. It's only "
2132
+ "available when the directory is in Free mode. You can always create other "
2133
+ "fee plans, including ones for 0.00 (free) if you wish."
2134
+ msgstr ""
2135
+ "Questo è il piano libero predefinito per la vostra directory. Non è "
2136
+ "possibile cancellarlo ed è sempre gratuito, ma è possibile modificare il "
2137
+ "nome e le altre impostazioni. E' disponibile solo quando la directory è in "
2138
+ "modalità Free. È sempre possibile creare altri piani a pagamento, compresi "
2139
+ "quelli a 0,00 (gratuito) se lo si desidera."
2140
+
2141
+ #: includes/admin/helpers/class-fees-table.php:247
2142
+ msgctxt "fees admin"
2143
+ msgid "Edit"
2144
+ msgstr "Modifica"
2145
+
2146
+ #: includes/admin/helpers/class-fees-table.php:266
2147
+ msgctxt "fees admin"
2148
+ msgid "Disable"
2149
+ msgstr "Disabilita"
2150
+
2151
+ #: includes/admin/helpers/class-fees-table.php:279
2152
+ msgctxt "fees admin"
2153
+ msgid "Enable"
2154
+ msgstr "Abilita"
2155
+
2156
+ #: includes/admin/helpers/class-fees-table.php:293
2157
+ msgctxt "fees admin"
2158
+ msgid "Delete"
2159
+ msgstr "Elimina"
2160
+
2161
+ #: includes/admin/helpers/class-fees-table.php:303
2162
+ msgctxt "fees admin"
2163
+ msgid "<strong>Fee ID:</strong> <fee-id>"
2164
+ msgstr "<strong>ID pagamento:</strong> <fee-id>"
2165
+
2166
+ #: includes/admin/helpers/class-fees-table.php:326
2167
+ msgctxt "fees admin"
2168
+ msgid "Variable"
2169
+ msgstr "Variabile"
2170
+
2171
+ #: includes/admin/helpers/class-fees-table.php:331
2172
+ msgctxt "fees admin"
2173
+ msgid "%1$s + %2$s per category"
2174
+ msgstr "%1$s + %2$s per categoria"
2175
+
2176
+ #: includes/admin/helpers/class-fees-table.php:339
2177
+ msgctxt "fees admin"
2178
+ msgid "Forever"
2179
+ msgstr "Per sempre"
2180
+
2181
+ #: includes/admin/helpers/class-fees-table.php:341
2182
+ msgctxt "fees admin"
2183
+ msgid "%d day"
2184
+ msgid_plural "%d days"
2185
+ msgstr[0] "%d giorno"
2186
+ msgstr[1] "%d giorni"
2187
+
2188
+ #: includes/admin/helpers/class-fees-table.php:345
2189
+ msgctxt "fees admin"
2190
+ msgid "%d image"
2191
+ msgid_plural "%d images"
2192
+ msgstr[0] "%d immagine"
2193
+ msgstr[1] "%d immagini"
2194
+
2195
+ #: includes/admin/helpers/class-fees-table.php:350
2196
+ msgctxt "fees admin"
2197
+ msgid "All categories"
2198
+ msgstr "Tutte le categorie"
2199
+
2200
+ #: includes/admin/helpers/class-fees-table.php:374
2201
+ msgctxt "fees admin"
2202
+ msgid "Unavailable"
2203
+ msgstr "Non disponibile"
2204
+
2205
+ #: includes/admin/helpers/class-fees-table.php:383
2206
+ msgctxt "fees admin"
2207
+ msgid "Sticky"
2208
+ msgstr "Sticky"
2209
+
2210
+ #: includes/admin/helpers/class-fees-table.php:387
2211
+ msgctxt "fees admin"
2212
+ msgid "Recurring"
2213
+ msgstr "Ricorrente"
2214
+
2215
+ #: includes/admin/helpers/class-fees-table.php:391
2216
+ msgctxt "fees admin"
2217
+ msgid "Private"
2218
+ msgstr "Privato"
2219
+
2220
+ #: includes/admin/helpers/class-payments-table.php:53
2221
+ msgctxt "fees admin"
2222
+ msgid "Listing"
2223
+ msgstr "Annuncio"
2224
+
2225
+ #: includes/admin/helpers/class-payments-table.php:54
2226
+ msgctxt "fees admin"
2227
+ msgid "ID"
2228
+ msgstr "ID"
2229
+
2230
+ #: includes/admin/helpers/class-payments-table.php:55
2231
+ msgctxt "fees admin"
2232
+ msgid "Date"
2233
+ msgstr "Data"
2234
+
2235
+ #: includes/admin/helpers/class-payments-table.php:56
2236
+ msgctxt "fees admin"
2237
+ msgid "Payment History"
2238
+ msgstr "Cronologia pagamenti"
2239
+
2240
+ #: includes/admin/helpers/class-payments-table.php:58
2241
+ msgctxt "fees admin"
2242
+ msgid "Status"
2243
+ msgstr "Stato"
2244
+
2245
+ #: templates/admin/fees-add-fee.tpl.php:1 templates/admin/fees-form.tpl.php:249
2246
+ msgctxt "fees admin"
2247
+ msgid "Add Listing Fee"
2248
+ msgstr "Aggiungi la quota di Donazione"
2249
+
2250
+ #: templates/admin/fees-edit-fee.tpl.php:1
2251
+ msgctxt "fees admin"
2252
+ msgid "Edit Listing Fee"
2253
+ msgstr "Modifica elenchi di Donazione"
2254
+
2255
+ #: templates/admin/fees-form.tpl.php:18
2256
+ msgctxt "fees admin"
2257
+ msgid "Fee Label"
2258
+ msgstr "Etichetta della Donazione"
2259
+
2260
+ #: templates/admin/fees-form.tpl.php:31
2261
+ msgctxt "fees admin"
2262
+ msgid "Fee Description"
2263
+ msgstr "Descrizione del canone"
2264
+
2265
+ #: templates/admin/fees-form.tpl.php:39
2266
+ msgctxt "fees admin"
2267
+ msgid "How long should the listing run?"
2268
+ msgstr "Per quanto tempo deve essere pubblicato l'annuncio?"
2269
+
2270
+ #: templates/admin/fees-form.tpl.php:42
2271
+ msgctxt "fees admin"
2272
+ msgid "run listing for"
2273
+ msgstr "eseguire l'elenco per"
2274
+
2275
+ #: templates/admin/fees-form.tpl.php:52
2276
+ msgctxt "fees admin"
2277
+ msgid "days"
2278
+ msgstr "giorni"
2279
+
2280
+ #: templates/admin/fees-form.tpl.php:54
2281
+ msgctxt "fees admin"
2282
+ msgid "run listing forever"
2283
+ msgstr "eseguire l'elenco per sempre"
2284
+
2285
+ #: templates/admin/fees-form.tpl.php:59
2286
+ msgctxt "fees admin"
2287
+ msgid "Number of images allowed"
2288
+ msgstr "Numero di immagini consentite"
2289
+
2290
+ #: templates/admin/fees-form.tpl.php:74
2291
+ msgctxt "fees admin"
2292
+ msgid "Private Fee Plan (visible to admins only)?"
2293
+ msgstr "Piano tariffario privato (visibile solo agli amministratori)?"
2294
+
2295
+ #: templates/admin/fees-form.tpl.php:91
2296
+ msgctxt "fees admin"
2297
+ msgid "Is recurring?"
2298
+ msgstr "Ricorrente?"
2299
+
2300
+ #: templates/admin/fees-form.tpl.php:103
2301
+ msgctxt "fees admin"
2302
+ msgid "Should the listing auto-renew at the end of the listing term?"
2303
+ msgstr ""
2304
+ "L'annuncio deve essere rinnovata automaticamente alla fine del periodo di "
2305
+ "pubblicazione?"
2306
+
2307
+ #: templates/admin/fees-form.tpl.php:109
2308
+ msgctxt "fees admin"
2309
+ msgid "Is featured listing/sticky?"
2310
+ msgstr "E' un annuncio in evidenza?"
2311
+
2312
+ #: templates/admin/fees-form.tpl.php:120
2313
+ msgctxt "fees admin"
2314
+ msgid ""
2315
+ "This floats the listing to the top of search results and browsing the "
2316
+ "directory when the user buys this plan."
2317
+ msgstr ""
2318
+ "Questo mette l'annuncio in cima ai risultati della ricerca e sfogliando la "
2319
+ "directory quando l'utente acquista questo piano."
2320
+
2321
+ #: templates/admin/fees-form.tpl.php:125
2322
+ msgctxt "fees admin"
2323
+ msgid "Listing background color:"
2324
+ msgstr "Colore di sfondo dell'elenco:"
2325
+
2326
+ #: templates/admin/fees-form.tpl.php:133
2327
+ msgctxt "fees admin"
2328
+ msgid "Reset Color"
2329
+ msgstr "Azzera colore"
2330
+
2331
+ #: templates/admin/fees-form.tpl.php:140
2332
+ msgctxt "fees admin"
2333
+ msgid "Used to differentiate listings inside this plan from others."
2334
+ msgstr ""
2335
+ "Utilizzato per differenziare gli annunci all'interno di questo piano dagli "
2336
+ "altri."
2337
+
2338
+ #: templates/admin/fees-form.tpl.php:145
2339
+ msgctxt "fees admin"
2340
+ msgid "Plan Category Policy:"
2341
+ msgstr "Piano Policy per la categoria:"
2342
+
2343
+ #: templates/admin/fees-form.tpl.php:150
2344
+ msgctxt "fees admin"
2345
+ msgid "Plan applies to all categories"
2346
+ msgstr "Il piano si applica a tutte le categorie"
2347
+
2348
+ #: templates/admin/fees-form.tpl.php:151
2349
+ msgctxt "fees admin"
2350
+ msgid "Plan applies to only certain categories"
2351
+ msgstr "Il piano si applica solo a determinate categorie"
2352
+
2353
+ #: templates/admin/fees-form.tpl.php:155
2354
+ msgctxt "fees admin"
2355
+ msgid "Limit plan to the following categories:"
2356
+ msgstr "Limitare il piano alle seguenti categorie:"
2357
+
2358
+ #: templates/admin/fees-form.tpl.php:179
2359
+ msgctxt "fees admin"
2360
+ msgid "Click to add categories to the selection."
2361
+ msgstr "Fare clic per aggiungere categorie alla selezione."
2362
+
2363
+ #: templates/admin/fees-form.tpl.php:193
2364
+ msgctxt "fees admin"
2365
+ msgid "Pricing"
2366
+ msgstr "Prezzi"
2367
+
2368
+ #: templates/admin/fees-form.tpl.php:198
2369
+ msgctxt "fees admin"
2370
+ msgid "Pricing model"
2371
+ msgstr "Modello dei prezzi"
2372
+
2373
+ #: templates/admin/fees-form.tpl.php:202
2374
+ msgctxt "fees admin"
2375
+ msgid "Flat price"
2376
+ msgstr "Prezzo fisso"
2377
+
2378
+ #: templates/admin/fees-form.tpl.php:203
2379
+ msgctxt "fees admin"
2380
+ msgid "Different price for different categories"
2381
+ msgstr "Prezzo diverso per le diverse categorie"
2382
+
2383
+ #: templates/admin/fees-form.tpl.php:204
2384
+ msgctxt "fees admin"
2385
+ msgid "Base price plus an extra amount per category"
2386
+ msgstr "Prezzo base più un importo extra per categoria"
2387
+
2388
+ #: templates/admin/fees-form.tpl.php:210
2389
+ msgctxt "fees admin"
2390
+ msgid "Fee Price"
2391
+ msgstr "Canone"
2392
+
2393
+ #: templates/admin/fees-form.tpl.php:218
2394
+ msgctxt "fees admin"
2395
+ msgid "Prices per category"
2396
+ msgstr "Prezzi per categoria"
2397
+
2398
+ #: templates/admin/fees-form.tpl.php:223
2399
+ msgctxt "fees admin"
2400
+ msgid "Category"
2401
+ msgstr "Categoria"
2402
+
2403
+ #: templates/admin/fees-form.tpl.php:224
2404
+ msgctxt "fees admin"
2405
+ msgid "Price"
2406
+ msgstr "Prezzo"
2407
+
2408
+ #: templates/admin/fees-form.tpl.php:238
2409
+ msgctxt "fees admin"
2410
+ msgid "Extra amount (per category)"
2411
+ msgstr "Importo extra (per categoria)"
2412
+
2413
+ #: templates/admin/fees-form.tpl.php:249
2414
+ msgctxt "fees admin"
2415
+ msgid "Save Changes"
2416
+ msgstr "Salva modifiche"
2417
+
2418
+ #: templates/admin/fees-index.tpl.php:3
2419
+ msgctxt "fees admin"
2420
+ msgid "Add New Listing Fee"
2421
+ msgstr "Aggiungere una nuovo canone per l'annuncio"
2422
+
2423
+ #: templates/admin/fees-index.tpl.php:10
2424
+ msgctxt "fees admin"
2425
+ msgid "Payments are currently turned off."
2426
+ msgstr "I pagamenti sono attualmente disattivati."
2427
+
2428
+ #: templates/admin/fees-index.tpl.php:13
2429
+ msgctxt "fees admin"
2430
+ msgid ""
2431
+ "To manage fees you need to go to the <a>Manage Options - Payment</a> page "
2432
+ "and check the box next to 'Turn On Payments' under 'Payment Settings'."
2433
+ msgstr ""
2434
+ "Per gestire le tasse devi andare alla pagina <a>Opzioni di gestione - "
2435
+ "Donazione</a> e selezionare la casella accanto a 'Attiva pagamenti' sotto "
2436
+ "'Impostazioni di pagamento'."
2437
+
2438
+ #: templates/admin/fees-index.tpl.php:24
2439
+ msgctxt "fees admin"
2440
+ msgid "Order fees on the frontend by:"
2441
+ msgstr "Ordina canoni sul frontend per:"
2442
+
2443
+ #: templates/admin/fees-index.tpl.php:32
2444
+ msgctxt "fees admin"
2445
+ msgid "↑ Ascending"
2446
+ msgstr "↑ Ascendente"
2447
+
2448
+ #: templates/admin/fees-index.tpl.php:32
2449
+ msgctxt "fees admin"
2450
+ msgid "↓ Descending"
2451
+ msgstr "↓ Discendente"
2452
+
2453
+ #: templates/admin/fees-index.tpl.php:38
2454
+ msgctxt "fees admin"
2455
+ msgid "Drag and drop to re-order fees."
2456
+ msgstr "Trascinare e rilasciare per ordinare le Donazioni."
2457
+
2458
+ #: templates/admin/fees-index.tpl.php:54
2459
+ msgctxt "fees admin"
2460
+ msgid ""
2461
+ "These are all of the fee plans displayed to the user when they place a "
2462
+ "listing. Your current mode of \"%s\" restricts what you see here. Those on "
2463
+ "the <a>Not Available</a> filter will become active when you change the "
2464
+ "payment mode."
2465
+ msgstr ""
2466
+ "Questi sono tutti i piani di pagamento che vengono visualizzati all'utente "
2467
+ "quando inseriscono un'Annuncio. La tua modalità corrente di \"%s\" limita "
2468
+ "quello che vedi qui. Quelli del<a>Non disponibile\n"
2469
+ "</a> il filtro diventa attivo quando si modifica la modalità di pagamento."
2470
+
2471
+ #: templates/admin/fees-index.tpl.php:57 templates/admin/fees-index.tpl.php:63
2472
+ #: templates/admin/fees-index.tpl.php:77
2473
+ msgctxt "fees admin"
2474
+ msgid "Paid"
2475
+ msgstr "Pagato"
2476
+
2477
+ #: templates/admin/fees-index.tpl.php:57 templates/admin/fees-index.tpl.php:63
2478
+ #: templates/admin/fees-index.tpl.php:77
2479
+ msgctxt "fees admin"
2480
+ msgid "Free"
2481
+ msgstr "Gratis"
2482
+
2483
+ #: templates/admin/fees-index.tpl.php:60
2484
+ msgctxt "fees admin"
2485
+ msgid ""
2486
+ "These are all of the fee plans that aren't available because you're in \"%s"
2487
+ "\" mode. Those on the Active filter will become Not Available when you "
2488
+ "change the payment mode."
2489
+ msgstr ""
2490
+ "Questi sono tutti i piani a pagamento che non sono disponibili perché sei in "
2491
+ "modalità \"%s\". Quelli del filtro attivo diventeranno non disponibili "
2492
+ "quando si modifica la modalità di pagamento."
2493
+
2494
+ #: templates/admin/fees-index.tpl.php:66
2495
+ msgctxt "fees admin"
2496
+ msgid ""
2497
+ "These fee plans were disabled by the admin and will not show to the end user "
2498
+ "regardless of mode until you enable them."
2499
+ msgstr ""
2500
+ "Questi piani tariffari sono stati disabilitati dall'amministratore e non "
2501
+ "verranno mostrati all'utente finale indipendentemente dalla modalità fino a "
2502
+ "quando non vengono abilitati."
2503
+
2504
+ #: templates/admin/fees-index.tpl.php:74
2505
+ msgctxt "fees admin"
2506
+ msgid ""
2507
+ "These are all of the fee plans you have configured. Not all of them are "
2508
+ "available for the current mode (currently set to \"%s\"). To see the fee "
2509
+ "plans for this mode click <a>Active</a>."
2510
+ msgstr ""
2511
+ "Questi sono tutti i piani a pagamento che hai configurato. Non tutti sono "
2512
+ "disponibili per la modalità corrente (attualmente impostata su \"%s\"). Per "
2513
+ "visualizzare i piani di pagamento per questa modalità fare clic su<a>Attivo</"
2514
+ "a>."
2515
+
2516
+ #: includes/admin/form-fields.php:24
2517
+ msgctxt "form-fields admin"
2518
+ msgid "form field"
2519
+ msgstr "Aggiungi Campo"
2520
+
2521
+ #: includes/admin/form-fields.php:25
2522
+ msgctxt "form-fields admin"
2523
+ msgid "form fields"
2524
+ msgstr "campi del modulo"
2525
+
2526
+ #: includes/admin/form-fields.php:33
2527
+ msgctxt "form-fields admin"
2528
+ msgid "Order"
2529
+ msgstr "Ordine"
2530
+
2531
+ #: includes/admin/form-fields.php:34
2532
+ msgctxt "form-fields admin"
2533
+ msgid "Label / Association"
2534
+ msgstr "Etichetta / Associazione"
2535
+
2536
+ #: includes/admin/form-fields.php:35
2537
+ msgctxt "form-fields admin"
2538
+ msgid "Type"
2539
+ msgstr "Tipo"
2540
+
2541
+ #: includes/admin/form-fields.php:36
2542
+ msgctxt "form-fields admin"
2543
+ msgid "Validator"
2544
+ msgstr "Validatore"
2545
+
2546
+ #: includes/admin/form-fields.php:37
2547
+ msgctxt "form-fields admin"
2548
+ msgid "Field Attributes"
2549
+ msgstr "Attributi Campo"
2550
+
2551
+ #: includes/admin/form-fields.php:84
2552
+ msgctxt "form-fields admin"
2553
+ msgid "Edit"
2554
+ msgstr "Modifica"
2555
+
2556
+ #: includes/admin/form-fields.php:98
2557
+ msgctxt "form-fields admin"
2558
+ msgid "Delete"
2559
+ msgstr "Elimina"
2560
+
2561
+ #: includes/admin/form-fields.php:118
2562
+ msgctxt "form-fields admin"
2563
+ msgid "ID"
2564
+ msgstr "ID"
2565
+
2566
+ #: includes/admin/form-fields.php:123
2567
+ msgctxt "form-fields admin"
2568
+ msgid "Shortname"
2569
+ msgstr "Nome breve"
2570
+
2571
+ #: includes/admin/form-fields.php:145
2572
+ msgctxt "form-fields admin"
2573
+ msgid "Required"
2574
+ msgstr "Richiesto"
2575
+
2576
+ #: includes/admin/form-fields.php:145
2577
+ msgctxt "form-fields admin"
2578
+ msgid "Optional"
2579
+ msgstr "Opzionale"
2580
+
2581
+ #: includes/admin/form-fields.php:152
2582
+ msgctxt "form-fields admin"
2583
+ msgid "Private"
2584
+ msgstr "Privato"
2585
+
2586
+ #: includes/admin/form-fields.php:159
2587
+ msgctxt "form-fields admin"
2588
+ msgid "This field value is shown in the excerpt view of a listing."
2589
+ msgstr "Questo valore del campo è mostrato nella vista estratto di un elenco."
2590
+
2591
+ #: includes/admin/form-fields.php:160
2592
+ msgctxt "form-fields admin"
2593
+ msgid "In Excerpt"
2594
+ msgstr "In Estratto"
2595
+
2596
+ #: includes/admin/form-fields.php:167
2597
+ msgctxt "form-fields admin"
2598
+ msgid "This field value is shown in the single view of a listing."
2599
+ msgstr "Questo valore del campo è mostrato nella vista del singolo elenco."
2600
+
2601
+ #: includes/admin/form-fields.php:168
2602
+ msgctxt "form-fields admin"
2603
+ msgid "In Listing"
2604
+ msgstr "Annuncio"
2605
+
2606
+ #: includes/admin/form-fields.php:302
2607
+ msgctxt "form-fields admin"
2608
+ msgid "Form Preview"
2609
+ msgstr "Anteprima modulo"
2610
+
2611
+ #: includes/admin/form-fields.php:306
2612
+ msgctxt "form-fields admin"
2613
+ msgid "← Return to \"Manage Form Fields\""
2614
+ msgstr "← Ritorno alla \"Gestione dei campi modulo\""
2615
+
2616
+ #: includes/admin/form-fields.php:348
2617
+ msgctxt "form-fields admin"
2618
+ msgid "Form fields updated."
2619
+ msgstr "Campi del modulo aggiornati."
2620
+
2621
+ #: includes/admin/form-fields.php:364
2622
+ msgctxt "form-fields admin"
2623
+ msgid ""
2624
+ "<b>Important</b>: Since the \"<a>Display email address fields publicly?</a>"
2625
+ "\" setting is disabled, display settings below will not be honored and this "
2626
+ "field will not be displayed on the frontend. If you want e-mail addresses to "
2627
+ "show on the frontend, you can <a>enable public display of e-mails</a>."
2628
+ msgstr ""
2629
+ "<b>Importante</b>: Dal momento che\"<a>pubblichi gli indirizzi di posta "
2630
+ "elettronica pubblicamente?</a>\" l'impostazione è disabilitata, le "
2631
+ "impostazioni di visualizzazione qui sotto non saranno onorate e questo campo "
2632
+ "non verrà visualizzato sul frontend. Se si desidera che gli indirizzi di "
2633
+ "posta elettronica siano mostrati sul frontend, è possibile <a>consentire "
2634
+ "l'esposizione pubblica delle e-mail</a>."
2635
+
2636
+ #: includes/admin/form-fields.php:405
2637
+ msgctxt "form-fields admin"
2638
+ msgid "Field deleted."
2639
+ msgstr "Campo eliminato"
2640
+
2641
+ #: includes/admin/form-fields.php:428
2642
+ msgctxt "form-fields admin"
2643
+ msgid "Required fields created successfully."
2644
+ msgstr "Campi obbligatori creati con successo."
2645
+
2646
+ #: includes/admin/form-fields.php:441
2647
+ msgctxt "form-fields admin"
2648
+ msgid "Title"
2649
+ msgstr "Titolo"
2650
+
2651
+ #: includes/admin/form-fields.php:442
2652
+ msgctxt "form-fields admin"
2653
+ msgid "Category"
2654
+ msgstr "Categoria"
2655
+
2656
+ #: includes/admin/form-fields.php:443
2657
+ msgctxt "form-fields admin"
2658
+ msgid "Excerpt"
2659
+ msgstr "Estratto"
2660
+
2661
+ #: includes/admin/form-fields.php:444
2662
+ msgctxt "form-fields admin"
2663
+ msgid "Content"
2664
+ msgstr "Contenuto"
2665
+
2666
+ #: includes/admin/form-fields.php:445
2667
+ msgctxt "form-fields admin"
2668
+ msgid "Tags"
2669
+ msgstr "Tags"
2670
+
2671
+ #: includes/admin/form-fields.php:446
2672
+ msgctxt "form-fields admin"
2673
+ msgid "Address"
2674
+ msgstr "Indirizzo"
2675
+
2676
+ #: includes/admin/form-fields.php:447
2677
+ msgctxt "form-fields admin"
2678
+ msgid "City"
2679
+ msgstr "Città"
2680
+
2681
+ #: includes/admin/form-fields.php:448
2682
+ msgctxt "form-fields admin"
2683
+ msgid "State"
2684
+ msgstr "Stato"
2685
+
2686
+ #: includes/admin/form-fields.php:449
2687
+ msgctxt "form-fields admin"
2688
+ msgid "Country"
2689
+ msgstr "Nazione"
2690
+
2691
+ #: includes/admin/form-fields.php:450
2692
+ msgctxt "form-fields admin"
2693
+ msgid "ZIP Code"
2694
+ msgstr "Codice Postale"
2695
+
2696
+ #: includes/admin/form-fields.php:451
2697
+ msgctxt "form-fields admin"
2698
+ msgid "FAX Number"
2699
+ msgstr "Numero di fax"
2700
+
2701
+ #: includes/admin/form-fields.php:452
2702
+ msgctxt "form-fields admin"
2703
+ msgid "Phone Number"
2704
+ msgstr "Numero di telefono"
2705
+
2706
+ #: includes/admin/form-fields.php:453
2707
+ msgctxt "form-fields admin"
2708
+ msgid "Ratings Field"
2709
+ msgstr "Campo votazione"
2710
+
2711
+ #: includes/admin/form-fields.php:454
2712
+ msgctxt "form-fields admin"
2713
+ msgid "Twitter"
2714
+ msgstr "Twitter"
2715
+
2716
+ #: includes/admin/form-fields.php:455
2717
+ msgctxt "form-fields admin"
2718
+ msgid "Website"
2719
+ msgstr "Sito web"
2720
+
2721
+ #: includes/admin/form-fields.php:485
2722
+ msgctxt "form-fields admin"
2723
+ msgid "Tags updated."
2724
+ msgstr "Tag aggiornati."
2725
+
2726
+ #: includes/fields/class-fieldtypes-checkbox.php:95
2727
+ msgctxt "form-fields admin"
2728
+ msgid "Select All"
2729
+ msgstr "Seleziona tutto"
2730
+
2731
+ #: includes/fields/class-fieldtypes-checkbox.php:113
2732
+ #: includes/fields/class-fieldtypes-radiobutton.php:93
2733
+ #: includes/fields/class-fieldtypes-select.php:238
2734
+ msgctxt "form-fields admin"
2735
+ msgid "Field Options (for select lists, radio buttons and checkboxes)."
2736
+ msgstr ""
2737
+ "Opzioni di campo (per elenchi di selezione, pulsanti di selezione e caselle "
2738
+ "di controllo)."
2739
+
2740
+ #: includes/fields/class-fieldtypes-checkbox.php:125
2741
+ msgctxt "form-fields admin"
2742
+ msgid "Include \"Select all\"?"
2743
+ msgstr "Includere \"Seleziona tutto\"?"
2744
+
2745
+ #: includes/fields/class-fieldtypes-checkbox.php:129
2746
+ msgctxt "form-fields admin"
2747
+ msgid "Display \"Select all\" option among options above."
2748
+ msgstr "Visualizza l'opzione \"Seleziona tutto\" tra le opzioni di cui sopra."
2749
+
2750
+ #: includes/fields/class-fieldtypes-checkbox.php:145
2751
+ #: includes/fields/class-fieldtypes-radiobutton.php:114
2752
+ #: includes/fields/class-fieldtypes-select.php:268
2753
+ msgctxt "form-fields admin"
2754
+ msgid "Field list of options is required."
2755
+ msgstr "È necessario disporre di un campo di opzioni."
2756
+
2757
+ #: includes/fields/class-fieldtypes-image.php:55
2758
+ msgctxt "form-fields admin"
2759
+ msgid "Display caption?"
2760
+ msgstr "Visualizzare la didascalia?"
2761
+
2762
+ #: includes/fields/class-fieldtypes-image.php:58
2763
+ msgctxt "form-fields admin"
2764
+ msgid "Field Caption required?"
2765
+ msgstr "Campo Didascalia richiesto?"
2766
+
2767
+ #: includes/fields/class-fieldtypes-select.php:250
2768
+ msgctxt "form-fields admin"
2769
+ msgid "Allow empty selection on search?"
2770
+ msgstr "Consenti la selezione vuota nella ricerca?"
2771
+
2772
+ #: includes/fields/class-fieldtypes-social.php:76
2773
+ msgctxt "form-fields admin"
2774
+ msgid "Field Display Order"
2775
+ msgstr "Ordine di visualizzazione sul campo"
2776
+
2777
+ #: includes/fields/class-fieldtypes-textarea.php:194
2778
+ msgctxt "form-fields admin"
2779
+ msgid "Allow HTML input for this field?"
2780
+ msgstr "Consentire l'input HTML per questo campo?"
2781
+
2782
+ #: includes/fields/class-fieldtypes-textarea.php:197
2783
+ msgctxt "form-fields admin"
2784
+ msgid "Allow IFRAME tags in content?"
2785
+ msgstr "Consentire tag IFRAME nel contenuto?"
2786
+
2787
+ #: includes/fields/class-fieldtypes-textarea.php:201
2788
+ msgctxt "form-fields admin"
2789
+ msgid "No"
2790
+ msgstr "No"
2791
+
2792
+ #: includes/fields/class-fieldtypes-textarea.php:202
2793
+ msgctxt "form-fields admin"
2794
+ msgid "Yes"
2795
+ msgstr "Si"
2796
+
2797
+ #: includes/fields/class-fieldtypes-textarea.php:207
2798
+ msgctxt "form-fields admin"
2799
+ msgid "Allow WordPress shortcodes in this field?"
2800
+ msgstr "Consentire le scorciatoie di WordPress in questo campo?"
2801
+
2802
+ #: includes/fields/class-fieldtypes-textarea.php:212
2803
+ msgctxt "form-fields admin"
2804
+ msgid "Display a WYSIWYG editor on the frontend?"
2805
+ msgstr "Visualizzare un editor WYSIWYG sul frontend?"
2806
+
2807
+ #: includes/fields/class-fieldtypes-textarea.php:215
2808
+ msgctxt "form-fields admin"
2809
+ msgid ""
2810
+ "<b>Warning:</b> Users can use this feature to get around your image limits "
2811
+ "in fee plans."
2812
+ msgstr ""
2813
+ "<b>Attenzione:</b> Gli utenti possono utilizzare questa funzione per "
2814
+ "aggirare i limiti dell'immagine nei piani tariffari."
2815
+
2816
+ #: includes/fields/class-fieldtypes-textarea.php:216
2817
+ msgctxt "form-fields admin"
2818
+ msgid "Allow images in WYSIWYG editor?"
2819
+ msgstr "Consentire immagini nell'editor WYSIWYG?"
2820
+
2821
+ #: includes/fields/class-fieldtypes-textarea.php:219
2822
+ msgctxt "form-fields admin"
2823
+ msgid ""
2824
+ "<b>Advanced users only!</b> Unless you've been told to change this, don't "
2825
+ "switch it unless you know what you're doing."
2826
+ msgstr ""
2827
+ "<b>Solo utenti avanzati!</b> A meno che non ti sia stato detto di cambiare, "
2828
+ "non cambiarlo a meno che tu non sappia cosa stai facendo."
2829
+
2830
+ #: includes/fields/class-fieldtypes-textarea.php:220
2831
+ msgctxt "form-fields admin"
2832
+ msgid "Apply \"the_content\" filter before displaying this field?"
2833
+ msgstr ""
2834
+ "Applicare il filtro \"the_content\" prima di visualizzare questo campo?"
2835
+
2836
+ #: includes/fields/class-fieldtypes-textarea.php:223
2837
+ msgctxt "form-fields admin"
2838
+ msgid "Use shortened version of Description field as excerpt"
2839
+ msgstr "Utilizzare la versione ridotta del campo Descrizione come estratto"
2840
+
2841
+ #: includes/fields/class-fieldtypes-textarea.php:224
2842
+ msgctxt "form-fields admin"
2843
+ msgid ""
2844
+ "Enable always (override the Short Description given with a shortened Long "
2845
+ "Description)"
2846
+ msgstr ""
2847
+ "Abilita sempre (sovrascrivere la breve descrizione fornita con una lunga "
2848
+ "descrizione abbreviata)"
2849
+
2850
+ #: includes/fields/class-fieldtypes-textarea.php:225
2851
+ msgctxt "form-fields admin"
2852
+ msgid ""
2853
+ "Enable conditionally (override ONLY when Short Description is empty with a "
2854
+ "shortened Long Description)"
2855
+ msgstr ""
2856
+ "Abilitazione condizionata (annullare solo quando la descrizione breve è "
2857
+ "vuota con una descrizione lunga abbreviata)"
2858
+
2859
+ #: includes/fields/class-fieldtypes-textarea.php:226
2860
+ msgctxt "form-fields admin"
2861
+ msgid "Disable (use the Short Description all the time, empty or not)"
2862
+ msgstr "Disattivare (utilizzare sempre la breve descrizione, vuota o meno)"
2863
+
2864
+ #: includes/fields/class-fieldtypes-textarea.php:228
2865
+ msgctxt "form-fields admin"
2866
+ msgid ""
2867
+ "Truncates the description field to the value set here. To display all of the "
2868
+ "description, set to 0."
2869
+ msgstr ""
2870
+ "Tronca il campo descrizione al valore qui impostato. Per visualizzare tutta "
2871
+ "la descrizione, impostare su 0."
2872
+
2873
+ #: includes/fields/class-fieldtypes-textarea.php:229
2874
+ msgctxt "form-fields admin"
2875
+ msgid ""
2876
+ "Number of Characters from Short Description/Excerpt to Display in List View "
2877
+ "(only)"
2878
+ msgstr ""
2879
+ "Numero di caratteri dalla breve Descrizione/Estratto alla visualizzazione "
2880
+ "nella vista elenco (solo)"
2881
+
2882
+ #: includes/fields/class-fieldtypes-textarea.php:234
2883
+ msgctxt "form-fields admin"
2884
+ msgid "Automatically generate excerpt from content field?"
2885
+ msgstr "Generare automaticamente un estratto dal campo contenuto?"
2886
+
2887
+ #: includes/fields/class-fieldtypes-url.php:36
2888
+ msgctxt "form-fields admin"
2889
+ msgid "Open link in a new window?"
2890
+ msgstr "Aprire collegamento in una nuova finestra?"
2891
+
2892
+ #: includes/fields/class-fieldtypes-url.php:39
2893
+ msgctxt "form-fields admin"
2894
+ msgid "Use rel=\"nofollow\" when displaying the link?"
2895
+ msgstr "Usare rel=\"nofollow\" quando si visualizza il link?"
2896
+
2897
+ #: templates/admin/form-fields-addoredit.tpl.php:8
2898
+ msgctxt "form-fields admin"
2899
+ msgid "Add Form Field"
2900
+ msgstr "Aggiungi Campo"
2901
+
2902
+ #: templates/admin/form-fields-addoredit.tpl.php:21
2903
+ msgctxt "form-fields admin"
2904
+ msgid "Field Association"
2905
+ msgstr "Associazione campo"
2906
+
2907
+ #: templates/admin/form-fields-addoredit.tpl.php:21
2908
+ #: templates/admin/form-fields-addoredit.tpl.php:46
2909
+ #: templates/admin/form-fields-addoredit.tpl.php:70
2910
+ msgctxt "form-fields admin"
2911
+ msgid "required"
2912
+ msgstr "richiesto"
2913
+
2914
+ #: templates/admin/form-fields-addoredit.tpl.php:46
2915
+ msgctxt "form-fields admin"
2916
+ msgid "Field Type"
2917
+ msgstr "Tipo di campo"
2918
+
2919
+ #: templates/admin/form-fields-addoredit.tpl.php:70
2920
+ msgctxt "form-fields admin"
2921
+ msgid "Field Label"
2922
+ msgstr "Etichetta del campo"
2923
+
2924
+ #: templates/admin/form-fields-addoredit.tpl.php:80
2925
+ msgctxt "form-fields admin"
2926
+ msgid "Field description"
2927
+ msgstr "Descrizione del campo"
2928
+
2929
+ #: templates/admin/form-fields-addoredit.tpl.php:80
2930
+ msgctxt "form-fields admin"
2931
+ msgid "optional"
2932
+ msgstr "opzionale"
2933
+
2934
+ #: templates/admin/form-fields-addoredit.tpl.php:97
2935
+ msgctxt "form-fields admin"
2936
+ msgid "Field-specific settings"
2937
+ msgstr "Impostazioni specifiche del campo"
2938
+
2939
+ #: templates/admin/form-fields-addoredit.tpl.php:106
2940
+ msgctxt "form-fields admin"
2941
+ msgid "Field validation options"
2942
+ msgstr "Opzioni di validazione del campo"
2943
+
2944
+ #: templates/admin/form-fields-addoredit.tpl.php:110
2945
+ msgctxt "form-fields admin"
2946
+ msgid "Field Validator"
2947
+ msgstr "Validatore di campo"
2948
+
2949
+ #: templates/admin/form-fields-addoredit.tpl.php:114
2950
+ msgctxt "form-fields admin"
2951
+ msgid "No validation"
2952
+ msgstr "Nessuna convalida"
2953
+
2954
+ #: templates/admin/form-fields-addoredit.tpl.php:126
2955
+ msgctxt "form-fields admin"
2956
+ msgid "Number of words"
2957
+ msgstr "Numero di parole"
2958
+
2959
+ #: templates/admin/form-fields-addoredit.tpl.php:136
2960
+ msgctxt "form-fields admin"
2961
+ msgid "Is field required?"
2962
+ msgstr "Il campo è obbligatorio?"
2963
+
2964
+ #: templates/admin/form-fields-addoredit.tpl.php:142
2965
+ msgctxt "form-fields admin"
2966
+ msgid "This field is required."
2967
+ msgstr "Questo campo è richiesto."
2968
+
2969
+ #: templates/admin/form-fields-addoredit.tpl.php:150
2970
+ msgctxt "form-fields admin"
2971
+ msgid "Field display options"
2972
+ msgstr "Opzioni di visualizzazione del campo"
2973
+
2974
+ #: templates/admin/form-fields-addoredit.tpl.php:154
2975
+ msgctxt "form-fields admin"
2976
+ msgid "Field Category Policy:"
2977
+ msgstr "Politica sulla categoria dei campi:"
2978
+
2979
+ #: templates/admin/form-fields-addoredit.tpl.php:159
2980
+ msgctxt "form-fields admin"
2981
+ msgid "Field applies to all categories"
2982
+ msgstr "Il campo si applica a tutte le categorie"
2983
+
2984
+ #: templates/admin/form-fields-addoredit.tpl.php:160
2985
+ msgctxt "form-fields admin"
2986
+ msgid "Field applies to only certain categories"
2987
+ msgstr "Il campo si applica solo a determinate categorie"
2988
+
2989
+ #: templates/admin/form-fields-addoredit.tpl.php:164
2990
+ msgctxt "form-fields admin"
2991
+ msgid "Limit field to the following categories:"
2992
+ msgstr "Limitare il campo alle seguenti categorie:"
2993
+
2994
+ #: templates/admin/form-fields-addoredit.tpl.php:188
2995
+ msgctxt "form-fields admin"
2996
+ msgid "Click to add categories to the selection."
2997
+ msgstr "Fare clic per aggiungere categorie alla selezione."
2998
+
2999
+ #: templates/admin/form-fields-addoredit.tpl.php:201
3000
+ msgctxt "form-fields admin"
3001
+ msgid "Show this field to admin users only?"
3002
+ msgstr "Mostrare questo campo solo agli utenti admin?"
3003
+
3004
+ #: templates/admin/form-fields-addoredit.tpl.php:207
3005
+ msgctxt "form-fields admin"
3006
+ msgid "Display this field to admin users only in the edit listing view."
3007
+ msgstr ""
3008
+ "Visualizza questo campo per gli utenti admin solo nella vista di modifica "
3009
+ "annuncio."
3010
+
3011
+ #: templates/admin/form-fields-addoredit.tpl.php:213
3012
+ msgctxt "form-fields admin"
3013
+ msgid "Show this value in excerpt view?"
3014
+ msgstr "Mostrare questo valore in vista di estratti?"
3015
+
3016
+ #: templates/admin/form-fields-addoredit.tpl.php:219
3017
+ msgctxt "form-fields admin"
3018
+ msgid "Display this value in post excerpt view."
3019
+ msgstr "Visualizza questo valore nella vista estratto del post ."
3020
+
3021
+ #: templates/admin/form-fields-addoredit.tpl.php:225
3022
+ msgctxt "form-fields admin"
3023
+ msgid "Show this value in listing view?"
3024
+ msgstr "Mostrare questo valore nella vista elenco?"
3025
+
3026
+ #: templates/admin/form-fields-addoredit.tpl.php:231
3027
+ msgctxt "form-fields admin"
3028
+ msgid "Display this value in the listing view."
3029
+ msgstr "Visualizzare questo valore nella vista elenco."
3030
+
3031
+ #: templates/admin/form-fields-addoredit.tpl.php:237
3032
+ msgctxt "form-fields admin"
3033
+ msgid "Include this field in the search form?"
3034
+ msgstr "Includere questo campo nel modulo di ricerca?"
3035
+
3036
+ #: templates/admin/form-fields-addoredit.tpl.php:243
3037
+ msgctxt "form-fields admin"
3038
+ msgid "Include this field in the search form."
3039
+ msgstr "Includi questo campo nel modulo di ricerca."
3040
+
3041
+ #: templates/admin/form-fields-addoredit.tpl.php:249
3042
+ msgctxt "form-fields admin"
3043
+ msgid "Is this field required for searching?"
3044
+ msgstr "Questo campo è obbligatorio per la ricerca?"
3045
+
3046
+ #: templates/admin/form-fields-addoredit.tpl.php:255
3047
+ msgctxt "form-fields admin"
3048
+ msgid ""
3049
+ "Make this fields required during searches on the Advanced Search screen."
3050
+ msgstr ""
3051
+ "Rendere questi campi obbligatori durante le ricerche nella schermata Ricerca "
3052
+ "avanzata."
3053
+
3054
+ #: templates/admin/form-fields-addoredit.tpl.php:261
3055
+ msgctxt "form-fields admin"
3056
+ msgid "Hide this field's label?"
3057
+ msgstr "Nascondi l'etichetta di questo campo?"
3058
+
3059
+ #: templates/admin/form-fields-addoredit.tpl.php:267
3060
+ msgctxt "form-fields admin"
3061
+ msgid "Hide this field's label when displaying it."
3062
+ msgstr "Nascondi l'etichetta di questo campo quando la visualizza."
3063
+
3064
+ #: templates/admin/form-fields-addoredit.tpl.php:274
3065
+ msgctxt "form-fields admin"
3066
+ msgid "Field privacy options"
3067
+ msgstr "Opzioni di privacy del campo"
3068
+
3069
+ #: templates/admin/form-fields-addoredit.tpl.php:278
3070
+ msgctxt "form-fields admin"
3071
+ msgid "This field contains sensitive or private information?"
3072
+ msgstr "Questo campo contiene informazioni sensibili o private?"
3073
+
3074
+ #: templates/admin/form-fields-addoredit.tpl.php:286
3075
+ msgctxt "form-fields admin"
3076
+ msgid "Add this field when exporting or deleting user's personal data."
3077
+ msgstr ""
3078
+ "Aggiungere questo campo quando si esportano o cancellano i dati personali "
3079
+ "dell'utente."
3080
+
3081
+ #: templates/admin/form-fields-addoredit.tpl.php:293
3082
+ msgctxt "form-fields admin"
3083
+ msgid "Update Field"
3084
+ msgstr "Aggiorna campo"
3085
+
3086
+ #: templates/admin/form-fields-addoredit.tpl.php:295
3087
+ msgctxt "form-fields admin"
3088
+ msgid "Add Field"
3089
+ msgstr "Aggiungi campo"
3090
+
3091
+ #: templates/admin/form-fields-confirm-delete.tpl.php:2
3092
+ msgctxt "form-fields admin"
3093
+ msgid "Delete Form Field"
3094
+ msgstr "Cancella campo modulo"
3095
+
3096
+ #: templates/admin/form-fields-confirm-delete.tpl.php:6
3097
+ msgctxt "form-fields admin"
3098
+ msgid "Are you sure you want to delete the \"%s\" field?"
3099
+ msgstr "Sei sicuro di voler cancellare il campo \"%s\"?"
3100
+
3101
+ #: templates/admin/form-fields-confirm-delete.tpl.php:12
3102
+ msgctxt "form-fields admin"
3103
+ msgid "Delete Field"
3104
+ msgstr "Elimina Campo"
3105
+
3106
+ #: templates/admin/form-fields-tags.tpl.php:5
3107
+ msgctxt "form-fields admin"
3108
+ msgid "-- None --"
3109
+ msgstr "-- Nessuna --"
3110
+
3111
+ #: templates/admin/form-fields-tags.tpl.php:14
3112
+ msgctxt "form-fields admin"
3113
+ msgid "Theme Tags"
3114
+ msgstr "Etichette a tema"
3115
+
3116
+ #: templates/admin/form-fields-tags.tpl.php:19
3117
+ msgctxt "form-fields admin"
3118
+ msgid ""
3119
+ "Before you create fields, make sure you've mapped all of your EXISTING ones "
3120
+ "first, otherwise you'll appear to be \"missing data\" on your listings."
3121
+ msgstr ""
3122
+ "Prima di creare i campi, assicuratevi di aver mappato tutti quelli esistenti "
3123
+ "per primi, altrimenti ci saranno dati mancanti\" sui vostri annunci."
3124
+
3125
+ #: templates/admin/form-fields-tags.tpl.php:22
3126
+ msgctxt "form-fields admin"
3127
+ msgid "Create Missing Fields"
3128
+ msgstr "Creare campi mancanti"
3129
+
3130
+ #: templates/admin/form-fields-tags.tpl.php:30
3131
+ #, fuzzy
3132
+ msgctxt "form-fields admin"
3133
+ msgid "Field Tag"
3134
+ msgstr "Etichetta da campo"
3135
+
3136
+ #: templates/admin/form-fields-tags.tpl.php:31
3137
+ msgctxt "form-fields admin"
3138
+ msgid "Field"
3139
+ msgstr "Campo"
3140
+
3141
+ #: templates/admin/form-fields.tpl.php:3
3142
+ msgctxt "form-fields admin"
3143
+ msgid "Add New Form Field"
3144
+ msgstr "Aggiungi nuovo campo del modulo"
3145
+
3146
+ #: templates/admin/form-fields.tpl.php:4
3147
+ msgctxt "form-fields admin"
3148
+ msgid "Preview Form"
3149
+ msgstr "Anteprima Form"
3150
+
3151
+ #: templates/admin/form-fields.tpl.php:6 templates/admin/themes.tpl.php:4
3152
+ msgctxt "form-fields admin"
3153
+ msgid "Manage Theme Tags"
3154
+ msgstr "Gestire le etichette del tema"
3155
+
3156
+ #: templates/admin/form-fields.tpl.php:12
3157
+ msgctxt "form-fields admin"
3158
+ msgid ""
3159
+ "Here, you can create new fields for your listings, edit or delete existing "
3160
+ "ones, change the order and visibility of the fields as well as configure "
3161
+ "special options for them."
3162
+ msgstr ""
3163
+ "Qui puoi creare nuovi campi per i tuoi annunci, modificare o cancellare "
3164
+ "quelli esistenti, modificare l'ordine e la visibilità dei campi e "
3165
+ "configurare opzioni speciali per loro."
3166
+
3167
+ #: templates/admin/form-fields.tpl.php:18
3168
+ msgctxt "form-fields admin"
3169
+ msgid "Please see the <a>Form Fields documentation</a> for more details."
3170
+ msgstr ""
3171
+ "Consultare la <a>documentazione dei campi del modulo</a> per maggiori "
3172
+ "dettagli."
3173
+
3174
+ #: includes/admin/helpers/class-fees-table.php:82
3175
+ msgctxt "admin fees table"
3176
+ msgid "All"
3177
+ msgstr "Tutti"
3178
+
3179
+ #: includes/admin/helpers/class-fees-table.php:96
3180
+ msgctxt "admin fees table"
3181
+ msgid "Active"
3182
+ msgstr "Attivo"
3183
+
3184
+ #: includes/admin/helpers/class-fees-table.php:106
3185
+ msgctxt "admin fees table"
3186
+ msgid "Not Available"
3187
+ msgstr "Non disponibile"
3188
+
3189
+ #: includes/admin/helpers/class-fees-table.php:114
3190
+ msgctxt "admin fees table"
3191
+ msgid "Disabled"
3192
+ msgstr "Disabilitato"
3193
+
3194
+ #: includes/admin/helpers/class-listing-timeline.php:102
3195
+ msgctxt "listing timeline"
3196
+ msgid "Listing created"
3197
+ msgstr "Annuncio creato"
3198
+
3199
+ #: includes/admin/helpers/class-listing-timeline.php:107
3200
+ msgctxt "listing timeline"
3201
+ msgid "Listing expired"
3202
+ msgstr "Annuncio scaduto"
3203
+
3204
+ #: includes/admin/helpers/class-listing-timeline.php:112
3205
+ msgctxt "listing timeline"
3206
+ msgid "Listing renewed"
3207
+ msgstr "Annuncio rinnovato"
3208
+
3209
+ #: includes/admin/helpers/class-listing-timeline.php:127
3210
+ msgctxt "listing timeline"
3211
+ msgid "Paid as admin"
3212
+ msgstr "Pagato come amministratore"
3213
+
3214
+ #: includes/admin/helpers/class-listing-timeline.php:129
3215
+ msgctxt "listing timeline"
3216
+ msgid "Listing imported"
3217
+ msgstr "Annuncio importato"
3218
+
3219
+ #: includes/admin/helpers/class-listing-timeline.php:131
3220
+ msgctxt "listing timeline"
3221
+ msgid "Initial Payment"
3222
+ msgstr "Sottoscrizione"
3223
+
3224
+ #: includes/admin/helpers/class-payments-table.php:12
3225
+ msgctxt "payments admin"
3226
+ msgid "payment"
3227
+ msgstr "pagamento"
3228
+
3229
+ #: includes/admin/helpers/class-payments-table.php:13
3230
+ msgctxt "payments admin"
3231
+ msgid "payments"
3232
+ msgstr "pagamenti"
3233
+
3234
+ #: includes/admin/helpers/class-payments-table.php:19
3235
+ msgctxt "payments admin"
3236
+ msgid "No payments found."
3237
+ msgstr "Nessun pagamento trovato."
3238
+
3239
+ #: includes/admin/helpers/class-payments-table.php:32
3240
+ msgctxt "payments admin"
3241
+ msgid "All"
3242
+ msgstr "Tutti"
3243
+
3244
+ #: includes/admin/helpers/class-payments-table.php:118
3245
+ msgctxt "payments admin"
3246
+ msgid "View Payment History"
3247
+ msgstr "Visualizza la cronologia dei pagamenti"
3248
+
3249
+ #: includes/admin/payments.php:19
3250
+ msgctxt "payments admin"
3251
+ msgid "Payment deleted."
3252
+ msgstr "Pagamento cancellato."
3253
+
3254
+ #: includes/admin/payments.php:34
3255
+ msgctxt "payments admin"
3256
+ msgid ""
3257
+ "You're seeing payments related to listing: \"%s\" (ID #%d). <a>Click here</"
3258
+ "a> to see all payments."
3259
+ msgstr ""
3260
+ "Stai vedendo pagamenti relativi all'Annuncio: \"%s\" (ID #%d). <a>Clicca "
3261
+ "qui</a> per vedere tutti i pagamenti."
3262
+
3263
+ #: includes/admin/payments.php:45
3264
+ msgctxt "payments admin"
3265
+ msgid "Payment details updated."
3266
+ msgstr "Dati di pagamento aggiornati."
3267
+
3268
+ #: templates/admin/payments-details.tpl.php:8
3269
+ msgctxt "payments admin"
3270
+ msgid "← Return to \"Payment History\""
3271
+ msgstr "← Ritorno alla \"Cronologia dei pagamenti\"."
3272
+
3273
+ #. translators: Gateway: (Not yet set)
3274
+ #: templates/admin/payments-details.tpl.php:58
3275
+ msgctxt "payments admin"
3276
+ msgid "(Not yet set)"
3277
+ msgstr "(Non ancora impostato)"
3278
+
3279
+ #: templates/admin/payments-details.tpl.php:64
3280
+ msgctxt "payments admin"
3281
+ msgid "Delete Payment"
3282
+ msgstr "Elimina Pagamento"
3283
+
3284
+ #: templates/admin/payments-details.tpl.php:66
3285
+ msgctxt "payments admin"
3286
+ msgid "Save Payment"
3287
+ msgstr "Salva Pagamento"
3288
+
3289
+ #: templates/admin/payments-details.tpl.php:80
3290
+ msgctxt "payments admin"
3291
+ msgid "Details"
3292
+ msgstr "Dettagli"
3293
+
3294
+ #: templates/admin/payments-details.tpl.php:84
3295
+ msgctxt "payments admin"
3296
+ msgid "Item Type"
3297
+ msgstr "Tipo di elemento"
3298
+
3299
+ #: templates/admin/payments-details.tpl.php:85
3300
+ msgctxt "payments admin"
3301
+ msgid "Description"
3302
+ msgstr "Descrizione"
3303
+
3304
+ #: templates/admin/payments-details.tpl.php:86
3305
+ msgctxt "payments admin"
3306
+ msgid "Amount"
3307
+ msgstr "Importo"
3308
+
3309
+ #: templates/admin/payments-details.tpl.php:97
3310
+ msgctxt "payments admin"
3311
+ msgid "Total:"
3312
+ msgstr "Totale:"
3313
+
3314
+ #: templates/admin/payments-details.tpl.php:109
3315
+ msgctxt "payments admin"
3316
+ msgid "Customer Details"
3317
+ msgstr "Dettagli Cliente"
3318
+
3319
+ #: templates/admin/payments-details.tpl.php:114
3320
+ msgctxt "payments admin"
3321
+ msgid "E-Mail:"
3322
+ msgstr "Email:"
3323
+
3324
+ #: templates/admin/payments-details.tpl.php:119
3325
+ msgctxt "payments admin"
3326
+ msgid "First Name:"
3327
+ msgstr "Nome:"
3328
+
3329
+ #: templates/admin/payments-details.tpl.php:124
3330
+ msgctxt "payments admin"
3331
+ msgid "Last Name:"
3332
+ msgstr "Cognome:"
3333
+
3334
+ #: templates/admin/payments-details.tpl.php:130
3335
+ msgctxt "payments admin"
3336
+ msgid "Country:"
3337
+ msgstr "Nazione:"
3338
+
3339
+ #: templates/admin/payments-details.tpl.php:134
3340
+ msgctxt "payments admin"
3341
+ msgid "State:"
3342
+ msgstr "Stato:"
3343
+
3344
+ #: templates/admin/payments-details.tpl.php:138
3345
+ msgctxt "payments admin"
3346
+ msgid "City:"
3347
+ msgstr "Città:"
3348
+
3349
+ #: templates/admin/payments-details.tpl.php:142
3350
+ msgctxt "payments admin"
3351
+ msgid "ZIP Code:"
3352
+ msgstr "CAP:"
3353
+
3354
+ #: templates/admin/payments-details.tpl.php:146
3355
+ msgctxt "payments admin"
3356
+ msgid "Address Line 1:"
3357
+ msgstr "Indirizzo 1:"
3358
+
3359
+ #: templates/admin/payments-details.tpl.php:150
3360
+ msgctxt "payments admin"
3361
+ msgid "Address Line 2:"
3362
+ msgstr "Indirizzo 2:"
3363
+
3364
+ #: templates/admin/payments-details.tpl.php:160
3365
+ msgctxt "payments admin"
3366
+ msgid "Notes & Log"
3367
+ msgstr "Note e registro"
3368
+
3369
+ #: templates/admin/payments-details.tpl.php:164
3370
+ msgctxt "payments admin"
3371
+ msgid "No notes."
3372
+ msgstr "Niente note."
3373
+
3374
+ #: templates/admin/payments-note.tpl.php:13
3375
+ msgctxt "payments admin"
3376
+ msgid "Are you sure you want to delete this note?"
3377
+ msgstr "Sei sicuro di voler cancellare questa nota?"
3378
+
3379
+ #: templates/admin/payments-note.tpl.php:13
3380
+ msgctxt "payments admin"
3381
+ msgid "Delete"
3382
+ msgstr "Elimina"
3383
+
3384
+ #: includes/admin/page-debug.php:16
3385
+ msgctxt "debug-info"
3386
+ msgid "BD Info"
3387
+ msgstr "BD Info"
3388
+
3389
+ #: includes/admin/page-debug.php:43
3390
+ msgctxt "debug-info"
3391
+ msgid "OK"
3392
+ msgstr "OK"
3393
+
3394
+ #: includes/admin/page-debug.php:51
3395
+ msgctxt "debug-info"
3396
+ msgid "BD Options"
3397
+ msgstr "BD Opzioni"
3398
+
3399
+ #: includes/admin/page-debug.php:74
3400
+ msgctxt "debug-info"
3401
+ msgid "Environment"
3402
+ msgstr "Ambiente"
3403
+
3404
+ #: templates/admin/debug-info.tpl.php:5
3405
+ msgctxt "debug-info"
3406
+ msgid ""
3407
+ "The following information can help BD developers debug possible problems "
3408
+ "with your setup."
3409
+ msgstr ""
3410
+ "Le seguenti informazioni possono aiutare gli sviluppatori di BDB a risolvere "
3411
+ "eventuali problemi con l'installazione."
3412
+
3413
+ #: templates/admin/debug-info.tpl.php:6
3414
+ msgctxt "debug-info"
3415
+ msgid ""
3416
+ "The debug information does not contain personal or sensitive information "
3417
+ "such as passwords or private keys."
3418
+ msgstr ""
3419
+ "Le informazioni di debug non contengono informazioni personali o sensibili "
3420
+ "come password o chiavi private."
3421
+
3422
+ #: templates/admin/debug-info.tpl.php:9
3423
+ msgctxt "debug-info"
3424
+ msgid "Download Debug Information"
3425
+ msgstr "Scarica le informazioni di debug"
3426
+
3427
+ #: includes/admin/page-debug.php:96
3428
+ msgctxt "debug info"
3429
+ msgid "Test SSL setup..."
3430
+ msgstr "Test SSL setup..."
3431
+
3432
+ #: includes/admin/settings/class-settings-admin.php:342
3433
+ msgctxt "admin settings"
3434
+ msgid "Remove"
3435
+ msgstr "Rimuovi"
3436
+
3437
+ #: includes/admin/settings/class-settings-admin.php:393
3438
+ msgctxt "admin settings"
3439
+ msgid "Valid placeholders: %s"
3440
+ msgstr "Segnaposto validi: %s"
3441
+
3442
+ #: includes/admin/settings/class-settings-bootstrap.php:96
3443
+ msgctxt "admin settings"
3444
+ msgid ""
3445
+ "<strong>IMPORTANT:</strong> subpages of the main directory page cannot be "
3446
+ "accesed while this settings is checked."
3447
+ msgstr ""
3448
+ "<strong>IMPORTANTE:</strong> non è possibile accedere alle sottopagine della "
3449
+ "pagina principale della directory fino a quando la checkbox è spuntata."
3450
+
3451
+ #: includes/admin/settings/class-settings-bootstrap.php:279
3452
+ msgctxt "admin settings"
3453
+ msgid "<a>Learn more</a> about what BD does and does NOT track."
3454
+ msgstr "<a>Per saperne di più</a> Su cosa BD fa e non traccia."
3455
+
3456
+ #: includes/admin/settings/class-settings-bootstrap.php:293
3457
+ msgctxt "admin settings"
3458
+ msgid "Above results"
3459
+ msgstr "Risultati sopra"
3460
+
3461
+ #: includes/admin/settings/class-settings-bootstrap.php:294
3462
+ msgctxt "admin settings"
3463
+ msgid "Below results"
3464
+ msgstr "Di seguito i risultati"
3465
+
3466
+ #: includes/admin/settings/class-settings-bootstrap.php:295
3467
+ msgctxt "admin settings"
3468
+ msgid "Don't show with results"
3469
+ msgstr "Non mostrare con i risultati"
3470
+
3471
+ #: includes/admin/settings/class-settings-bootstrap.php:302
3472
+ msgctxt "admin settings"
3473
+ msgid ""
3474
+ "You have selected a textarea field to be included in quick searches. "
3475
+ "Searches involving those fields are very expensive and could result in "
3476
+ "timeouts and/or general slowness."
3477
+ msgstr ""
3478
+ "Hai selezionato un campo textarea da includere nelle ricerche rapide. Le "
3479
+ "ricerche che coinvolgono questi campi sono molto costose e possono "
3480
+ "comportare tempi di attesa e/o lentezza generale."
3481
+
3482
+ #: includes/admin/settings/class-settings-bootstrap.php:306
3483
+ msgctxt "admin settings"
3484
+ msgid ""
3485
+ "If no fields are selected, the following fields will be used in Quick "
3486
+ "Searches:"
3487
+ msgstr ""
3488
+ "Se non viene selezionato alcun campo, in Ricerca rapida verranno utilizzati "
3489
+ "i seguenti campi:"
3490
+
3491
+ #: includes/admin/settings/class-settings-bootstrap.php:349
3492
+ msgctxt "admin settings"
3493
+ msgid ""
3494
+ "Check this if you are having trouble with BD, particularly when importing or "
3495
+ "exporting CSV files."
3496
+ msgstr ""
3497
+ "Verificare se si verificano problemi con BD, in particolare durante "
3498
+ "l'importazione o l'esportazione di file CSV."
3499
+
3500
+ #: includes/admin/settings/class-settings-bootstrap.php:516
3501
+ msgctxt "admin settings"
3502
+ msgid "Do not include comments in listings"
3503
+ msgstr "Non includere i commenti negli elenchi"
3504
+
3505
+ #: includes/admin/settings/class-settings-bootstrap.php:517
3506
+ msgctxt "admin settings"
3507
+ msgid "Include comment form, theme invoked (standard option)"
3508
+ msgstr "Includi il modulo dei commento, il tema invocato (opzione standard)"
3509
+
3510
+ #: includes/admin/settings/class-settings-bootstrap.php:518
3511
+ msgctxt "admin settings"
3512
+ msgid "Include comment form, BD invoked (use only if 2nd option doesn't work)"
3513
+ msgstr ""
3514
+ "Includi il modulo di commento, BD invocato (utilizza solo se la seconda "
3515
+ "opzione non funziona)"
3516
+
3517
+ #: includes/admin/settings/class-settings-bootstrap.php:540
3518
+ msgctxt "admin settings"
3519
+ msgid "Directory view."
3520
+ msgstr "Visualizzazione dell'elenco."
3521
+
3522
+ #: includes/admin/settings/class-settings-bootstrap.php:541
3523
+ msgctxt "admin settings"
3524
+ msgid "All Listings view."
3525
+ msgstr "Visualizza tutti gli Annunci."
3526
+
3527
+ #: includes/admin/settings/class-settings-bootstrap.php:542
3528
+ msgctxt "admin settings"
3529
+ msgid "Category view."
3530
+ msgstr "Vista per categoria."
3531
+
3532
+ #: includes/admin/settings/class-settings-bootstrap.php:543
3533
+ msgctxt "admin settings"
3534
+ msgid "Search view."
3535
+ msgstr "Vista di ricerca."
3536
+
3537
+ #: includes/admin/settings/class-settings-bootstrap.php:619
3538
+ msgctxt "admin settings"
3539
+ msgid "Name"
3540
+ msgstr "Nome"
3541
+
3542
+ #: includes/admin/settings/class-settings-bootstrap.php:620
3543
+ msgctxt "admin settings"
3544
+ msgid "Slug"
3545
+ msgstr "Slug"
3546
+
3547
+ #: includes/admin/settings/class-settings-bootstrap.php:621
3548
+ msgctxt "admin settings"
3549
+ msgid "Listing Count"
3550
+ msgstr "Elenco luoghi"
3551
+
3552
+ #: includes/admin/settings/class-settings-bootstrap.php:633
3553
+ #: includes/admin/settings/class-settings-bootstrap.php:702
3554
+ msgctxt "admin settings"
3555
+ msgid "Ascending"
3556
+ msgstr "Ascendente"
3557
+
3558
+ #: includes/admin/settings/class-settings-bootstrap.php:634
3559
+ #: includes/admin/settings/class-settings-bootstrap.php:703
3560
+ msgctxt "admin settings"
3561
+ msgid "Descending"
3562
+ msgstr "Discendente"
3563
+
3564
+ #: includes/admin/settings/class-settings-bootstrap.php:669
3565
+ msgctxt "admin settings"
3566
+ msgid "Fee Plan Custom Order can be changed under <a>Manage Fees</a>"
3567
+ msgstr ""
3568
+ "L'ordine personalizzato del piano tariffario può essere modificato in "
3569
+ "<a>Gestione delle commissioni</a>"
3570
+
3571
+ #: includes/admin/settings/class-settings-bootstrap.php:680
3572
+ msgctxt "admin settings"
3573
+ msgid "Title"
3574
+ msgstr "Titolo"
3575
+
3576
+ #: includes/admin/settings/class-settings-bootstrap.php:681
3577
+ msgctxt "admin settings"
3578
+ msgid "Author"
3579
+ msgstr "Autore"
3580
+
3581
+ #: includes/admin/settings/class-settings-bootstrap.php:682
3582
+ #: includes/functions.php:1181
3583
+ msgctxt "admin settings"
3584
+ msgid "Date posted"
3585
+ msgstr "Data di pubblicazione"
3586
+
3587
+ #: includes/admin/settings/class-settings-bootstrap.php:683
3588
+ #: includes/functions.php:1182
3589
+ msgctxt "admin settings"
3590
+ msgid "Date last modified"
3591
+ msgstr "Data ultima modifica"
3592
+
3593
+ #: includes/admin/settings/class-settings-bootstrap.php:684
3594
+ msgctxt "admin settings"
3595
+ msgid "Random"
3596
+ msgstr "Casuale"
3597
+
3598
+ #: includes/admin/settings/class-settings-bootstrap.php:685
3599
+ msgctxt "admin settings"
3600
+ msgid "Paid first then free. Inside each group by date."
3601
+ msgstr "Prima pagato e poi libero. All'interno di ogni gruppo per data."
3602
+
3603
+ #: includes/admin/settings/class-settings-bootstrap.php:686
3604
+ msgctxt "admin settings"
3605
+ msgid "Paid first then free. Inside each group by title."
3606
+ msgstr "Prima pagato e poi libero. All'interno di ogni gruppo per titolo."
3607
+
3608
+ #: includes/admin/settings/class-settings-bootstrap.php:687
3609
+ msgctxt "admin settings"
3610
+ msgid "Fee Plan Custom Order, then Date"
3611
+ msgstr "Piano a pagamento Ordine personalizzato, poi Data"
3612
+
3613
+ #: includes/admin/settings/class-settings-bootstrap.php:688
3614
+ msgctxt "admin settings"
3615
+ msgid "Fee Plan Custom Order, then Title"
3616
+ msgstr "Piano a pagamento Ordine personalizzato, poi Titolo"
3617
+
3618
+ #: includes/admin/settings/class-settings-bootstrap.php:773
3619
+ msgctxt "admin settings"
3620
+ msgid "You can manage your themes on <a>Directory Themes</a>."
3621
+ msgstr "Puoi gestire i tuoi temi su <a>Directory Themes</a>."
3622
+
3623
+ #: includes/admin/settings/class-settings-bootstrap.php:782
3624
+ msgctxt "admin settings"
3625
+ msgid "Use the BD theme style for BD buttons"
3626
+ msgstr "Utilizzare lo stile del tema BD per i pulsanti BD"
3627
+
3628
+ #: includes/admin/settings/class-settings-bootstrap.php:783
3629
+ msgctxt "admin settings"
3630
+ msgid "Use the WP theme style for BD buttons"
3631
+ msgstr "Utilizzare lo stile del tema WP per i pulsanti BD"
3632
+
3633
+ #: includes/admin/settings/class-settings-bootstrap.php:941
3634
+ msgctxt "admin settings"
3635
+ msgid ""
3636
+ "For paid listing images, configure that by adding or editing a <a>Fee Plan</"
3637
+ "a> instead of this setting, which is ignored for paid listings."
3638
+ msgstr ""
3639
+ "Per le immagini degli elenchi a pagamento, configurarlo aggiungendo o "
3640
+ "modificando un <a>piano a pagamento</a> invece di questa impostazione, che "
3641
+ "viene ignorata per gli elenchi a pagamento."
3642
+
3643
+ #: includes/admin/settings/class-settings-bootstrap.php:952
3644
+ #: includes/admin/settings/class-settings-bootstrap.php:995
3645
+ msgctxt "admin settings"
3646
+ msgid "Excerpt view."
3647
+ msgstr "Vista per estratto."
3648
+
3649
+ #: includes/admin/settings/class-settings-bootstrap.php:953
3650
+ #: includes/admin/settings/class-settings-bootstrap.php:996
3651
+ msgctxt "admin settings"
3652
+ msgid "Detail view."
3653
+ msgstr "Vista dettagliata."
3654
+
3655
+ #: includes/admin/settings/class-settings-bootstrap.php:1053
3656
+ msgctxt "admin settings"
3657
+ msgid "AED currency is not supported by %s. %s"
3658
+ msgstr "La valuta del AED non è supportata da %s. %s"
3659
+
3660
+ #: includes/admin/settings/class-settings-bootstrap.php:1066
3661
+ msgctxt "admin settings"
3662
+ msgid "Australian Dollar (AUD)"
3663
+ msgstr "Australian Dollar (AUD)"
3664
+
3665
+ #: includes/admin/settings/class-settings-bootstrap.php:1067
3666
+ msgctxt "admin settings"
3667
+ msgid "Brazilian Real (BRL)"
3668
+ msgstr "Brazilian Real (BRL)"
3669
+
3670
+ #: includes/admin/settings/class-settings-bootstrap.php:1068
3671
+ msgctxt "admin settings"
3672
+ msgid "Canadian Dollar (CAD)"
3673
+ msgstr "Canadian Dollar (CAD)"
3674
+
3675
+ #: includes/admin/settings/class-settings-bootstrap.php:1069
3676
+ msgctxt "admin settings"
3677
+ msgid "Czech Koruna (CZK)"
3678
+ msgstr "Czech Koruna (CZK)"
3679
+
3680
+ #: includes/admin/settings/class-settings-bootstrap.php:1070
3681
+ msgctxt "admin settings"
3682
+ msgid "Danish Krone (DKK)"
3683
+ msgstr "Danish Krone (DKK)"
3684
+
3685
+ #: includes/admin/settings/class-settings-bootstrap.php:1071
3686
+ msgctxt "admin settings"
3687
+ msgid "United Arab Emirates Dirham (AED)"
3688
+ msgstr "Emirati Arabi Uniti Dirham (AED)"
3689
+
3690
+ #: includes/admin/settings/class-settings-bootstrap.php:1072
3691
+ msgctxt "admin settings"
3692
+ msgid "Euro (EUR)"
3693
+ msgstr "Euro (EUR)"
3694
+
3695
+ #: includes/admin/settings/class-settings-bootstrap.php:1073
3696
+ msgctxt "admin settings"
3697
+ msgid "Hong Kong Dollar (HKD)"
3698
+ msgstr "Hong Kong Dollar (HKD)"
3699
+
3700
+ #: includes/admin/settings/class-settings-bootstrap.php:1074
3701
+ msgctxt "admin settings"
3702
+ msgid "Hungarian Forint (HUF)"
3703
+ msgstr "Hungarian Forint (HUF)"
3704
+
3705
+ #: includes/admin/settings/class-settings-bootstrap.php:1075
3706
+ msgctxt "admin settings"
3707
+ msgid "Israeli New Shequel (ILS)"
3708
+ msgstr "Israeli New Shequel (ILS)"
3709
+
3710
+ #: includes/admin/settings/class-settings-bootstrap.php:1076
3711
+ msgctxt "admin settings"
3712
+ msgid "Japanese Yen (JPY)"
3713
+ msgstr "Japanese Yen (JPY)"
3714
+
3715
+ #: includes/admin/settings/class-settings-bootstrap.php:1077
3716
+ msgctxt "admin settings"
3717
+ msgid "Moroccan Dirham (MAD)"
3718
+ msgstr "Marocchino Dirham (MAD)"
3719
+
3720
+ #: includes/admin/settings/class-settings-bootstrap.php:1078
3721
+ msgctxt "admin settings"
3722
+ msgid "Malasian Ringgit (MYR)"
3723
+ msgstr "Malasian Ringgit (MYR)"
3724
+
3725
+ #: includes/admin/settings/class-settings-bootstrap.php:1079
3726
+ msgctxt "admin settings"
3727
+ msgid "Mexican Peso (MXN)"
3728
+ msgstr "Mexican Peso (MXN)"
3729
+
3730
+ #: includes/admin/settings/class-settings-bootstrap.php:1080
3731
+ msgctxt "admin settings"
3732
+ msgid "Norwegian Krone (NOK)"
3733
+ msgstr "Corona norvegese (NOK)"
3734
+
3735
+ #: includes/admin/settings/class-settings-bootstrap.php:1081
3736
+ msgctxt "admin settings"
3737
+ msgid "New Zealand Dollar (NZD)"
3738
+ msgstr "Dollaro neozelandese (NZD)"
3739
+
3740
+ #: includes/admin/settings/class-settings-bootstrap.php:1082
3741
+ msgctxt "admin settings"
3742
+ msgid "Philippine Peso (PHP)"
3743
+ msgstr "Peso filippino (PHP)"
3744
+
3745
+ #: includes/admin/settings/class-settings-bootstrap.php:1083
3746
+ msgctxt "admin settings"
3747
+ msgid "Polish Zloty (PLN)"
3748
+ msgstr "Zloty polacco (PLN)"
3749
+
3750
+ #: includes/admin/settings/class-settings-bootstrap.php:1084
3751
+ msgctxt "admin settings"
3752
+ msgid "Pound Sterling (GBP)"
3753
+ msgstr "Sterlina inglese (GBP)"
3754
+
3755
+ #: includes/admin/settings/class-settings-bootstrap.php:1085
3756
+ msgctxt "admin settings"
3757
+ msgid "Singapore Dollar (SGD)"
3758
+ msgstr "Dollaro di Singapore (SGD)"
3759
+
3760
+ #: includes/admin/settings/class-settings-bootstrap.php:1086
3761
+ msgctxt "admin settings"
3762
+ msgid "Swedish Krona (SEK)"
3763
+ msgstr "Corona svedese (SEK)"
3764
+
3765
+ #: includes/admin/settings/class-settings-bootstrap.php:1087
3766
+ msgctxt "admin settings"
3767
+ msgid "Swiss Franc (CHF)"
3768
+ msgstr "Franco svizzero (CHF)"
3769
+
3770
+ #: includes/admin/settings/class-settings-bootstrap.php:1088
3771
+ msgctxt "admin settings"
3772
+ msgid "Taiwan Dollar (TWD)"
3773
+ msgstr "Dollaro taiwanese (TWD)"
3774
+
3775
+ #: includes/admin/settings/class-settings-bootstrap.php:1089
3776
+ msgctxt "admin settings"
3777
+ msgid "Thai Baht (THB)"
3778
+ msgstr "Thai Baht (THB)"
3779
+
3780
+ #: includes/admin/settings/class-settings-bootstrap.php:1090
3781
+ msgctxt "admin settings"
3782
+ msgid "Turkish Lira (TRY)"
3783
+ msgstr "Lira turca (TRY)"
3784
+
3785
+ #: includes/admin/settings/class-settings-bootstrap.php:1091
3786
+ msgctxt "admin settings"
3787
+ msgid "U.S. Dollar (USD)"
3788
+ msgstr "Dollaro USA (USD)"
3789
+
3790
+ #: includes/admin/settings/class-settings-bootstrap.php:1115
3791
+ msgctxt "admin settings"
3792
+ msgid "Show currency symbol on the left"
3793
+ msgstr "Mostra il simbolo della valuta a sinistra"
3794
+
3795
+ #: includes/admin/settings/class-settings-bootstrap.php:1116
3796
+ msgctxt "admin settings"
3797
+ msgid "Show currency symbol on the right"
3798
+ msgstr "Mostra il simbolo della valuta a destra"
3799
+
3800
+ #: includes/admin/settings/class-settings-bootstrap.php:1117
3801
+ msgctxt "admin settings"
3802
+ msgid "Do not show currency symbol"
3803
+ msgstr "Non mostrare il simbolo della valuta"
3804
+
3805
+ #: includes/admin/settings/class-settings-bootstrap.php:1138
3806
+ msgctxt "admin settings"
3807
+ msgid ""
3808
+ "Thank you for your payment. Your payment is being verified and your listing "
3809
+ "reviewed. The verification and review process could take up to 48 hours."
3810
+ msgstr ""
3811
+ "Grazie per il tuo pagamento. Il tuo pagamento è in fase di verifica e il tuo "
3812
+ "annuncio è in corso di revisione. Il processo di verifica e revisione "
3813
+ "potrebbe richiedere fino a 48 ore."
3814
+
3815
+ #: includes/admin/settings/class-settings-bootstrap.php:1159
3816
+ msgctxt "admin settings"
3817
+ msgid ""
3818
+ "Listings with pending payments are marked as abandoned after this time. You "
3819
+ "can also <a>customize the e-mail</a> users receive."
3820
+ msgstr ""
3821
+ "Le inserzioni con Donazioni in sospeso sono contrassegnate come abbandonate "
3822
+ "dopo questo periodo. Puoi anche <a>personalizzare l'e-mail</a> che gli "
3823
+ "utenti ricevono."
3824
+
3825
+ #: includes/admin/settings/class-settings-bootstrap.php:1189
3826
+ msgctxt "admin settings"
3827
+ msgid "Try listing's email field first, then author's email."
3828
+ msgstr ""
3829
+ "Prova prima il campo di posta elettronica dell'elenco, quindi l'email "
3830
+ "dell'autore."
3831
+
3832
+ #: includes/admin/settings/class-settings-bootstrap.php:1190
3833
+ msgctxt "admin settings"
3834
+ msgid "Try author's email first and then listing's email field."
3835
+ msgstr ""
3836
+ "Prova prima l'email dell'autore e poi il campo di posta elettronica "
3837
+ "dell'elenco."
3838
+
3839
+ #: includes/admin/settings/class-settings-bootstrap.php:1203
3840
+ msgctxt "admin settings"
3841
+ msgid "Plain (text/plain)"
3842
+ msgstr "Testo (text/plain)"
3843
+
3844
+ #: includes/admin/settings/class-settings-bootstrap.php:1204
3845
+ msgctxt "admin settings"
3846
+ msgid "HTML (text/html)"
3847
+ msgstr "HTML (text/html)"
3848
+
3849
+ #: includes/admin/settings/class-settings-bootstrap.php:1205
3850
+ msgctxt "admin settings"
3851
+ msgid "Both (multipart/alternative)"
3852
+ msgstr "Entrambi (multipart/alternative)"
3853
+
3854
+ #: includes/admin/settings/class-settings-bootstrap.php:1219
3855
+ msgctxt "admin settings"
3856
+ msgid "A new listing is submitted."
3857
+ msgstr "Viene inserito un nuovo Annuncio."
3858
+
3859
+ #: includes/admin/settings/class-settings-bootstrap.php:1220
3860
+ msgctxt "admin settings"
3861
+ msgid "A listing is edited."
3862
+ msgstr "Un annuncio viene modificato."
3863
+
3864
+ #: includes/admin/settings/class-settings-bootstrap.php:1221
3865
+ msgctxt "admin settings"
3866
+ msgid "A listing expires."
3867
+ msgstr "Un Annuncio è in scadenza."
3868
+
3869
+ #: includes/admin/settings/class-settings-bootstrap.php:1222
3870
+ msgctxt "admin settings"
3871
+ msgid "A listing is renewed."
3872
+ msgstr "L'annuncio viene rinnovato."
3873
+
3874
+ #: includes/admin/settings/class-settings-bootstrap.php:1223
3875
+ msgctxt "admin settings"
3876
+ msgid "A listing has been reported as inappropriate."
3877
+ msgstr "Un annuncio è stato segnalato come inappropriato."
3878
+
3879
+ #: includes/admin/settings/class-settings-bootstrap.php:1224
3880
+ msgctxt "admin settings"
3881
+ msgid "A contact message is sent to a listing's owner."
3882
+ msgstr "Un messaggio di contatto sarà inviato al proprietario."
3883
+
3884
+ #: includes/admin/settings/class-settings-bootstrap.php:1250
3885
+ msgctxt "admin settings"
3886
+ msgid "Their listing is submitted."
3887
+ msgstr "Viene inserito un nuovo Annuncio."
3888
+
3889
+ #: includes/admin/settings/class-settings-bootstrap.php:1251
3890
+ msgctxt "admin settings"
3891
+ msgid "Their listing is approved/published."
3892
+ msgstr "L'iscrizione è stata approvata e pubblicata."
3893
+
3894
+ #: includes/admin/settings/class-settings-bootstrap.php:1252
3895
+ msgctxt "admin settings"
3896
+ msgid "Their listing expired or is about to expire."
3897
+ msgstr "Il loro annuncio è scaduto o sta per scadere."
3898
+
3899
+ #: includes/admin/settings/class-settings-bootstrap.php:1269
3900
+ #: includes/admin/settings/class-settings-bootstrap.php:1285
3901
+ #: includes/admin/settings/class-settings-bootstrap.php:1310
3902
+ #: includes/admin/settings/class-settings-bootstrap.php:1345
3903
+ msgctxt "admin settings"
3904
+ msgid "Listing's title"
3905
+ msgstr "Titolo dell'annuncio"
3906
+
3907
+ #: includes/admin/settings/class-settings-bootstrap.php:1282
3908
+ msgctxt "admin settings"
3909
+ msgid ""
3910
+ "Your listing \"[listing]\" is now available at [listing-url] and can be "
3911
+ "viewed by the public."
3912
+ msgstr ""
3913
+ "Il tuo Annuncio \"[listing]\" è ora disponibile all'indirizzo [listing-url] "
3914
+ "e può essere visualizzato dal pubblico."
3915
+
3916
+ #: includes/admin/settings/class-settings-bootstrap.php:1286
3917
+ #: includes/admin/settings/class-settings-bootstrap.php:1309
3918
+ msgctxt "admin settings"
3919
+ msgid "Listing's URL"
3920
+ msgstr "URL dell'annuncio"
3921
+
3922
+ #: includes/admin/settings/class-settings-bootstrap.php:1287
3923
+ #: includes/admin/settings/class-settings-bootstrap.php:1315
3924
+ msgctxt "admin settings"
3925
+ msgid "Listing's Access Key"
3926
+ msgstr "Chiave di accesso all'annuncio"
3927
+
3928
+ #: includes/admin/settings/class-settings-bootstrap.php:1311
3929
+ msgctxt "admin settings"
3930
+ msgid "Sender's name"
3931
+ msgstr "Nome del mittente"
3932
+
3933
+ #: includes/admin/settings/class-settings-bootstrap.php:1312
3934
+ msgctxt "admin settings"
3935
+ msgid "Sender's e-mail address"
3936
+ msgstr "Indirizzo e-mail del mittente"
3937
+
3938
+ #: includes/admin/settings/class-settings-bootstrap.php:1313
3939
+ msgctxt "admin settings"
3940
+ msgid "Contact message"
3941
+ msgstr "Un messaggio di contatto sarà inviato al proprietario."
3942
+
3943
+ #: includes/admin/settings/class-settings-bootstrap.php:1314
3944
+ msgctxt "admin settings"
3945
+ msgid "Date and time the message was sent"
3946
+ msgstr "Data e ora di invio del messaggio"
3947
+
3948
+ #: includes/admin/settings/class-settings-bootstrap.php:1346
3949
+ msgctxt "admin settings"
3950
+ msgid "Checkout URL link"
3951
+ msgstr "Collegamento URL Checkout"
3952
+
3953
+ #: includes/admin/settings/class-settings-bootstrap.php:1482
3954
+ msgctxt "admin settings"
3955
+ msgid ""
3956
+ "Could not remove the \"Business Directory Plugin - AJAX Compatibility Module"
3957
+ "\". Please remove the file \"%s\" manually or deactivate the plugin."
3958
+ msgstr ""
3959
+ "Impossibile rimuovere il \"Business Directory Plugin - Modulo di "
3960
+ "compatibilità AJAX\". Si prega di rimuovere il file \"%s\" manualmente o "
3961
+ "disattivare il plugin."
3962
+
3963
+ #: includes/admin/settings/class-settings-bootstrap.php:1498
3964
+ msgctxt "admin settings"
3965
+ msgid ""
3966
+ "Could not activate AJAX Compatibility mode: the directory \"%s\" could not "
3967
+ "be created."
3968
+ msgstr ""
3969
+ "Impossibile attivare la modalità di compatibilità AJAX: non è stato "
3970
+ "possibile creare la directory \"%s\"."
3971
+
3972
+ #: includes/admin/settings/class-settings-bootstrap.php:1503
3973
+ msgctxt "admin settings"
3974
+ msgid ""
3975
+ "Could not copy the AJAX compatibility plugin \"%s\". Compatibility mode was "
3976
+ "not activated."
3977
+ msgstr ""
3978
+ "Impossibile copiare il plugin di compatibilità AJAX \"%s\". La modalità "
3979
+ "compatibilità non è stata attivata."
3980
+
3981
+ #: includes/functions.php:1179
3982
+ msgctxt "admin settings"
3983
+ msgid "User"
3984
+ msgstr "Utente"
3985
+
3986
+ #: includes/functions.php:1180
3987
+ msgctxt "admin settings"
3988
+ msgid "User registration date"
3989
+ msgstr "Data di registrazione"
3990
+
3991
+ #: includes/licensing.php:173
3992
+ msgctxt "admin settings"
3993
+ msgid "Enter License Key here"
3994
+ msgstr "Inserisci qui il codice di licenza"
3995
+
3996
+ #: includes/admin/settings/class-settings-admin.php:434
3997
+ msgctxt "expiration notices"
3998
+ msgid "Add notice"
3999
+ msgstr "Aggiungi nota"
4000
+
4001
+ #: includes/admin/settings/class-settings-admin.php:453
4002
+ msgctxt "expiration notices"
4003
+ msgid "No notices configured."
4004
+ msgstr "Nessun avviso configurato."
4005
+
4006
+ #: includes/admin/settings/class-settings-admin.php:467
4007
+ msgctxt "expiration notices"
4008
+ msgid "Delete"
4009
+ msgstr "Elimina"
4010
+
4011
+ #: includes/admin/settings/class-settings-admin.php:494
4012
+ msgctxt "expiration notices"
4013
+ msgid "recurring and non-recurring"
4014
+ msgstr "ricorrente e non ricorrente"
4015
+
4016
+ #: includes/admin/settings/class-settings-admin.php:496
4017
+ msgctxt "expiration notices"
4018
+ msgid "recurring only"
4019
+ msgstr "ricorrente solo"
4020
+
4021
+ #: includes/admin/settings/class-settings-admin.php:498
4022
+ msgctxt "expiration notices"
4023
+ msgid "non-recurring only"
4024
+ msgstr "non ricorrente solo"
4025
+
4026
+ #: includes/admin/settings/class-settings-admin.php:502
4027
+ msgctxt "expiration notices"
4028
+ msgid "Sent when a listing (%s) is renewed."
4029
+ msgstr "Inviato quando un annuncio (%s) viene rinnovato."
4030
+
4031
+ #: includes/admin/settings/class-settings-admin.php:507
4032
+ msgctxt "expiration notices"
4033
+ msgid "Sent when a listing (%s) expires."
4034
+ msgstr "Inviato quando un annuncio (%s) scade."
4035
+
4036
+ #: includes/admin/settings/class-settings-admin.php:515
4037
+ msgctxt "expiration notices"
4038
+ msgid "%d day"
4039
+ msgid_plural "%d days"
4040
+ msgstr[0] "%d giorno"
4041
+ msgstr[1] "%d giorni"
4042
+
4043
+ #: includes/admin/settings/class-settings-admin.php:518
4044
+ msgctxt "expiration notices"
4045
+ msgid "%d week"
4046
+ msgid_plural "%d weeks"
4047
+ msgstr[0] "%d settimana"
4048
+ msgstr[1] "%d settimane"
4049
+
4050
+ #: includes/admin/settings/class-settings-admin.php:521
4051
+ msgctxt "expiration notices"
4052
+ msgid "%d month"
4053
+ msgid_plural "%d months"
4054
+ msgstr[0] "%d mese"
4055
+ msgstr[1] "%d mesi"
4056
+
4057
+ #. translators: 1: relative time (e.g. 3 days), 2: recurring modifier (e.g.
4058
+ #. non-recuring only)
4059
+ #: includes/admin/settings/class-settings-admin.php:527
4060
+ msgctxt "expiration notices"
4061
+ msgid "Sent %1$s before a listing (%2$s) expires."
4062
+ msgstr "Inviati %1$s prima della scadenza di un annuncio (%2$s)."
4063
+
4064
+ #. translators: 1: relative time (e.g. 3 days), 2: recurring modifier (e.g.
4065
+ #. non-recuring only)
4066
+ #: includes/admin/settings/class-settings-admin.php:530
4067
+ msgctxt "expiration notices"
4068
+ msgid "Sent %1$s after a listing (%2$s) expires."
4069
+ msgstr "Inviati %1$s dopo la scadenza di un annuncio (%2$s)."
4070
+
4071
+ #: includes/admin/settings/class-settings-admin.php:547
4072
+ msgctxt "expiration notices"
4073
+ msgid "At the time of expiration"
4074
+ msgstr "Al momento della scadenza"
4075
+
4076
+ #: includes/admin/settings/class-settings-admin.php:548
4077
+ msgctxt "expiration notices"
4078
+ msgid "Right after a successful renewal"
4079
+ msgstr "Subito dopo un rinnovo di successo"
4080
+
4081
+ #: includes/admin/settings/class-settings-admin.php:559
4082
+ msgctxt "expiration notices"
4083
+ msgid "%d day before expiration"
4084
+ msgid_plural "%d days before expiration"
4085
+ msgstr[0] "%d giorno prima della scadenza"
4086
+ msgstr[1] "%d giorni prima della scadenza"
4087
+
4088
+ #: includes/admin/settings/class-settings-admin.php:559
4089
+ msgctxt "expiration notices"
4090
+ msgid "%d day after expiration"
4091
+ msgid_plural "%d days after expiration"
4092
+ msgstr[0] "%d giorno dopo la scadenza"
4093
+ msgstr[1] "%d giorni dopo la scadenza"
4094
+
4095
+ #: includes/admin/settings/class-settings-admin.php:562
4096
+ msgctxt "expiration notices"
4097
+ msgid "%d week before expiration"
4098
+ msgid_plural "%d weeks before expiration"
4099
+ msgstr[0] "%d settimana prima della scadenza"
4100
+ msgstr[1] "%d settimane prima della scadenza"
4101
+
4102
+ #: includes/admin/settings/class-settings-admin.php:562
4103
+ msgctxt "expiration notices"
4104
+ msgid "%d week after expiration"
4105
+ msgid_plural "%d weeks after expiration"
4106
+ msgstr[0] "%d settimana dopo la scadenza"
4107
+ msgstr[1] "%d settimane dopo la scadenza"
4108
+
4109
+ #: includes/admin/settings/class-settings-admin.php:565
4110
+ msgctxt "expiration notices"
4111
+ msgid "%d month before expiration"
4112
+ msgid_plural "%d months before expiration"
4113
+ msgstr[0] "%d mese prima della scadenza"
4114
+ msgstr[1] "%d mesi prima della scadenza"
4115
+
4116
+ #: includes/admin/settings/class-settings-admin.php:565
4117
+ msgctxt "expiration notices"
4118
+ msgid "%d month after expiration"
4119
+ msgid_plural "%d months after expiration"
4120
+ msgstr[0] "%d mese dopo la scadenza"
4121
+ msgstr[1] "%d mesi dopo la scadenza"
4122
+
4123
+ #: includes/admin/settings/class-settings-admin.php:592
4124
+ msgctxt "expiration notices"
4125
+ msgid "Applies to"
4126
+ msgstr "Si applica a"
4127
+
4128
+ #: includes/admin/settings/class-settings-admin.php:595
4129
+ msgctxt "expiration notices"
4130
+ msgid "Non-recurring listings"
4131
+ msgstr "Annunci non ricorrenti"
4132
+
4133
+ #: includes/admin/settings/class-settings-admin.php:596
4134
+ msgctxt "expiration notices"
4135
+ msgid "Recurring listings"
4136
+ msgstr "Annunci ricorrenti"
4137
+
4138
+ #: includes/admin/settings/class-settings-admin.php:597
4139
+ msgctxt "expiration notices"
4140
+ msgid "Recurring and non-recurring listings"
4141
+ msgstr "Annunci ricorrenti e non ricorrenti"
4142
+
4143
+ #: includes/admin/settings/class-settings-admin.php:602
4144
+ msgctxt "expiration notices"
4145
+ msgid "When to send?"
4146
+ msgstr "Quando inviare?"
4147
+
4148
+ #: templates/admin/settings-email.tpl.php:54
4149
+ msgctxt "expiration notices"
4150
+ msgid "E-mail body text"
4151
+ msgstr "Testo del corpo dell'e-mail"
4152
+
4153
+ #: includes/admin/settings/class-settings-admin.php:470
4154
+ msgctxt "settings"
4155
+ msgid "Site title (with link)"
4156
+ msgstr "Titolo del sito (con link)"
4157
+
4158
+ #: includes/admin/settings/class-settings-admin.php:471
4159
+ msgctxt "settings"
4160
+ msgid "Author's name"
4161
+ msgstr "Nome dell'autore"
4162
+
4163
+ #: includes/admin/settings/class-settings-admin.php:472
4164
+ msgctxt "settings"
4165
+ msgid "Listing's name (with link)"
4166
+ msgstr "Nome dell'elenco (with link)"
4167
+
4168
+ #: includes/admin/settings/class-settings-admin.php:473
4169
+ msgctxt "settings"
4170
+ msgid "Listing's expiration date"
4171
+ msgstr "Data di scadenza dell'annuncio"
4172
+
4173
+ #: includes/admin/settings/class-settings-admin.php:474
4174
+ msgctxt "settings"
4175
+ msgid "Listing's renewal link"
4176
+ msgstr "Link per il rinnovo dell'annuncio"
4177
+
4178
+ #: includes/admin/settings/class-settings-admin.php:475
4179
+ msgctxt "settings"
4180
+ msgid "Listing's categories"
4181
+ msgstr "Categorie di annunci"
4182
+
4183
+ #: includes/admin/settings/class-settings-admin.php:476
4184
+ msgctxt "settings"
4185
+ msgid "Listing's last payment date"
4186
+ msgstr "Data dell'ultimo pagamento dell'annuncio"
4187
+
4188
+ #: includes/admin/settings/class-settings-admin.php:477
4189
+ msgctxt "settings"
4190
+ msgid "Listing's access key"
4191
+ msgstr "Chiave di accesso all'annuncio"
4192
+
4193
+ #: includes/admin/settings/class-settings-admin.php:634
4194
+ msgctxt "settings"
4195
+ msgid "Settings reset to default."
4196
+ msgstr "Le impostazioni vengono riportate ai valori predefiniti."
4197
+
4198
+ #: includes/admin/settings/class-settings-bootstrap.php:25
4199
+ msgctxt "settings"
4200
+ msgid "General"
4201
+ msgstr "Generale"
4202
+
4203
+ #: includes/admin/settings/class-settings-bootstrap.php:27
4204
+ #: includes/admin/settings/class-settings-bootstrap.php:923
4205
+ msgctxt "settings"
4206
+ msgid "Listings"
4207
+ msgstr "Annunci"
4208
+
4209
+ #: includes/admin/settings/class-settings-bootstrap.php:28
4210
+ #: includes/admin/settings/class-settings-bootstrap.php:31
4211
+ #: includes/admin/settings/class-settings-bootstrap.php:34
4212
+ #: includes/admin/settings/class-settings-bootstrap.php:37
4213
+ #: includes/admin/settings/class-settings-bootstrap.php:52
4214
+ #: includes/admin/settings/class-settings-bootstrap.php:1170
4215
+ #: includes/admin/settings/class-settings.php:354
4216
+ msgctxt "settings"
4217
+ msgid "General Settings"
4218
+ msgstr "Impostazioni generali"
4219
+
4220
+ #: includes/admin/settings/class-settings-bootstrap.php:30
4221
+ msgctxt "settings"
4222
+ msgid "E-Mail"
4223
+ msgstr "Email"
4224
+
4225
+ #: includes/admin/settings/class-settings-bootstrap.php:33
4226
+ msgctxt "settings"
4227
+ msgid "Payment"
4228
+ msgstr "Pagamento"
4229
+
4230
+ #: includes/admin/settings/class-settings-bootstrap.php:36
4231
+ msgctxt "settings"
4232
+ msgid "Appearance"
4233
+ msgstr "Aspetto"
4234
+
4235
+ #: includes/admin/settings/class-settings-bootstrap.php:40
4236
+ #: includes/licensing.php:104
4237
+ msgctxt "settings"
4238
+ msgid "Premium Modules"
4239
+ msgstr "Moduli Premium"
4240
+
4241
+ #: includes/admin/settings/class-settings-bootstrap.php:55
4242
+ msgctxt "settings"
4243
+ msgid "Permalink Settings"
4244
+ msgstr "Impostazioni Permalink"
4245
+
4246
+ #: includes/admin/settings/class-settings-bootstrap.php:60
4247
+ msgctxt "settings"
4248
+ msgid "Directory Listings Slug"
4249
+ msgstr "Elenco Slug Annuncio"
4250
+
4251
+ #: includes/admin/settings/class-settings-bootstrap.php:70
4252
+ msgctxt "settings"
4253
+ msgid "Categories Slug"
4254
+ msgstr "Categorie Slug"
4255
+
4256
+ #: includes/admin/settings/class-settings-bootstrap.php:71
4257
+ msgctxt "settings"
4258
+ msgid ""
4259
+ "The slug can't be in use by another term. Avoid \"category\", for instance."
4260
+ msgstr ""
4261
+ "Lo slug non puo' essere usato da un altro termine. Evitare \"categoria\", "
4262
+ "per esempio."
4263
+
4264
+ #: includes/admin/settings/class-settings-bootstrap.php:82
4265
+ msgctxt "settings"
4266
+ msgid "Tags Slug"
4267
+ msgstr "Slug Etichette"
4268
+
4269
+ #: includes/admin/settings/class-settings-bootstrap.php:83
4270
+ msgctxt "settings"
4271
+ msgid "The slug can't be in use by another term. Avoid \"tag\", for instance."
4272
+ msgstr ""
4273
+ "Lo slug non puo' essere usato da un altro termine. Evitare \"tag\", per "
4274
+ "esempio."
4275
+
4276
+ #: includes/admin/settings/class-settings-bootstrap.php:94
4277
+ msgctxt "settings"
4278
+ msgid "Remove listing ID from directory URLs?"
4279
+ msgstr "Rimuovere l'ID dell'annuncio dagli URL della directory?"
4280
+
4281
+ #: includes/admin/settings/class-settings-bootstrap.php:95
4282
+ msgctxt "settings"
4283
+ msgid "Check this setting to remove the ID for better SEO."
4284
+ msgstr ""
4285
+ "Controllare questa impostazione per rimuovere l'ID per un migliore SEO."
4286
+
4287
+ #: includes/admin/settings/class-settings-bootstrap.php:96
4288
+ msgctxt "settings"
4289
+ msgid ""
4290
+ "Prior to 3.5.1, we included the ID in the listing URL, like \"/business-"
4291
+ "directory/1809/listing-title\"."
4292
+ msgstr ""
4293
+ "Prima della versione 3.5.1, abbiamo inserito l'ID nell'URL dell'elenco, come "
4294
+ "\"/business-directory/1809/listing-title\"."
4295
+
4296
+ #: includes/admin/settings/class-settings-bootstrap.php:104
4297
+ msgctxt "settings"
4298
+ msgid "reCAPTCHA"
4299
+ msgstr "reCAPTCHA"
4300
+
4301
+ #: includes/admin/settings/class-settings-bootstrap.php:107
4302
+ msgctxt "settings"
4303
+ msgid "Need API keys for reCAPTCHA? Get them <a>here</a>."
4304
+ msgstr "Hai bisogno di chiavi API per reCAPTCHA? Prendile <a>qui</a>."
4305
+
4306
+ #: includes/admin/settings/class-settings-bootstrap.php:114
4307
+ msgctxt "settings"
4308
+ msgid "Use reCAPTCHA for contact forms"
4309
+ msgstr "Utilizzare reCAPTCHA per i moduli di contatto"
4310
+
4311
+ #: includes/admin/settings/class-settings-bootstrap.php:122
4312
+ msgctxt "settings"
4313
+ msgid "Turn off reCAPTCHA for logged in users?"
4314
+ msgstr "Disattivare reCAPTCHA per gli utenti registrati?"
4315
+
4316
+ #: includes/admin/settings/class-settings-bootstrap.php:130
4317
+ msgctxt "settings"
4318
+ msgid "Use reCAPTCHA for listing submits"
4319
+ msgstr "Utilizza reCAPTCHA per l'inserimento degli annunci"
4320
+
4321
+ #: includes/admin/settings/class-settings-bootstrap.php:138
4322
+ msgctxt "settings"
4323
+ msgid "Use reCAPTCHA for report listings?"
4324
+ msgstr "Usare reCAPTCHA per la segnalazione degli annunci?"
4325
+
4326
+ #: includes/admin/settings/class-settings-bootstrap.php:146
4327
+ msgctxt "settings"
4328
+ msgid "Use reCAPTCHA for listing comments?"
4329
+ msgstr "Usare reCAPTCHA per inserire i commenti negli annunci?"
4330
+
4331
+ #: includes/admin/settings/class-settings-bootstrap.php:154
4332
+ msgctxt "settings"
4333
+ msgid "reCAPTCHA Public Key"
4334
+ msgstr "reCAPTCHA Public Key"
4335
+
4336
+ #: includes/admin/settings/class-settings-bootstrap.php:163
4337
+ msgctxt "settings"
4338
+ msgid "reCAPTCHA Private Key"
4339
+ msgstr "Chiave privata reCaptcha"
4340
+
4341
+ #: includes/admin/settings/class-settings-bootstrap.php:172
4342
+ msgctxt "settings"
4343
+ msgid "reCAPTCHA version"
4344
+ msgstr "versione reCAPTCHA"
4345
+
4346
+ #: includes/admin/settings/class-settings-bootstrap.php:185
4347
+ msgctxt "settings"
4348
+ msgid "reCAPTCHA V3 threshold score"
4349
+ msgstr "Punteggio soglia reCAPTCHA V3"
4350
+
4351
+ #: includes/admin/settings/class-settings-bootstrap.php:190
4352
+ msgctxt "settings"
4353
+ msgid ""
4354
+ "reCAPTCHA v3 returns a score (1.0 is very likely a good interaction, 0.0 is "
4355
+ "very likely a bot). Based on the score, you can take variable action in the "
4356
+ "context of your site. You can set here the score threshold, scores under "
4357
+ "this value will result in reCAPTCHA validation error."
4358
+ msgstr ""
4359
+ "reCAPTCHA v3 restituisce un punteggio (1.0 è molto probabilmente una buona "
4360
+ "interazione, 0.0 è molto probabilmente un bot). In base al punteggio, è "
4361
+ "possibile intraprendere un'azione variabile nel contesto del tuo sito. È "
4362
+ "possibile impostare qui la soglia di punteggio, i punteggi al di sotto di "
4363
+ "questo valore risulteranno in un errore di convalida reCAPTCHA."
4364
+
4365
+ #: includes/admin/settings/class-settings-bootstrap.php:195
4366
+ msgctxt "settings"
4367
+ msgid "Registration"
4368
+ msgstr "Registrazione"
4369
+
4370
+ #: includes/admin/settings/class-settings-bootstrap.php:195
4371
+ msgctxt "settings"
4372
+ msgid ""
4373
+ "We expect that a membership plugin supports the 'redirect_to' parameter for "
4374
+ "the URLs below to work. If the plugin does not support them, these settings "
4375
+ "will not function as expected. Please contact the membership plugin and ask "
4376
+ "them to support the WP standard 'redirect_to' query parameter."
4377
+ msgstr ""
4378
+ "Ci aspettiamo che un plugin per i membri supporti il parametro 'redirect_to' "
4379
+ "per far funzionare gli URL qui sotto. Se il plugin non li supporta, queste "
4380
+ "impostazioni non funzioneranno come previsto. Si prega di contattare il "
4381
+ "plugin di appartenenza e chiedere loro di supportare il parametro della "
4382
+ "query standard del WP 'redirect_to'."
4383
+
4384
+ #: includes/admin/settings/class-settings-bootstrap.php:200
4385
+ msgctxt "settings"
4386
+ msgid "Require login to post listings?"
4387
+ msgstr "Richiedi login per pubblicare Annunci?"
4388
+
4389
+ #: includes/admin/settings/class-settings-bootstrap.php:209
4390
+ msgctxt "settings"
4391
+ msgid "Allow anonymous users to edit/manage listings with an access key?"
4392
+ msgstr ""
4393
+ "Consentire agli utenti anonimi di modificare/gestire gli elenchi con una "
4394
+ "chiave di accesso?"
4395
+
4396
+ #: includes/admin/settings/class-settings-bootstrap.php:217
4397
+ msgctxt "settings"
4398
+ msgid "Login URL"
4399
+ msgstr "URL di accesso"
4400
+
4401
+ #: includes/admin/settings/class-settings-bootstrap.php:218
4402
+ msgctxt "settings"
4403
+ msgid "Only enter this if using a membership plugin or custom login page."
4404
+ msgstr ""
4405
+ "Immettere questa opzione solo se si utilizza un plugin per l'iscrizione o "
4406
+ "una pagina di accesso personalizzata."
4407
+
4408
+ #: includes/admin/settings/class-settings-bootstrap.php:219
4409
+ msgctxt "settings"
4410
+ msgid "URL of your membership plugin's login page."
4411
+ msgstr "URL della pagina di login del tuo plugin di membership."
4412
+
4413
+ #: includes/admin/settings/class-settings-bootstrap.php:228
4414
+ msgctxt "settings"
4415
+ msgid "Registration URL"
4416
+ msgstr "Registrazione URL"
4417
+
4418
+ #: includes/admin/settings/class-settings-bootstrap.php:229
4419
+ msgctxt "settings"
4420
+ msgid ""
4421
+ "Only enter this if using a membership plugin or custom registration page."
4422
+ msgstr ""
4423
+ "Immettere questa opzione solo se si utilizza un plugin per l'iscrizione o "
4424
+ "una pagina di registrazione personalizzata."
4425
+
4426
+ #: includes/admin/settings/class-settings-bootstrap.php:230
4427
+ msgctxt "settings"
4428
+ msgid "URL of your membership plugin's registration page."
4429
+ msgstr "URL della pagina di registrazione del tuo plugin di membership."
4430
+
4431
+ #: includes/admin/settings/class-settings-bootstrap.php:239
4432
+ msgctxt "settings"
4433
+ msgid "Allow users to create accounts during listing submit?"
4434
+ msgstr ""
4435
+ "Consentire agli utenti di creare account durante l'inserimento degli annunci?"
4436
+
4437
+ #: includes/admin/settings/class-settings-bootstrap.php:242
4438
+ msgctxt "settings"
4439
+ msgid "No"
4440
+ msgstr "No"
4441
+
4442
+ #: includes/admin/settings/class-settings-bootstrap.php:243
4443
+ msgctxt "settings"
4444
+ msgid "Yes, and make it optional"
4445
+ msgstr "Sì, e renderlo opzionale"
4446
+
4447
+ #: includes/admin/settings/class-settings-bootstrap.php:244
4448
+ msgctxt "settings"
4449
+ msgid "Yes, and make it required"
4450
+ msgstr "Sì, e renderlo obbligatorio"
4451
+
4452
+ #: includes/admin/settings/class-settings-bootstrap.php:251
4453
+ #: includes/admin/settings/class-settings-bootstrap.php:264
4454
+ msgctxt "settings"
4455
+ msgid "Terms and Conditions"
4456
+ msgstr "Termini e Condizioni"
4457
+
4458
+ #: includes/admin/settings/class-settings-bootstrap.php:256
4459
+ msgctxt "settings"
4460
+ msgid "Display and require user agreement to Terms and Conditions"
4461
+ msgstr ""
4462
+ "Visualizzare e richiedere l'accettazione da parte dell'utente dei Termini e "
4463
+ "Condizioni"
4464
+
4465
+ #: includes/admin/settings/class-settings-bootstrap.php:265
4466
+ msgctxt "settings"
4467
+ msgid ""
4468
+ "Enter text or a URL starting with http. If you use a URL, the Terms and "
4469
+ "Conditions text will be replaced by a link to the appropiate page."
4470
+ msgstr ""
4471
+ "Inserire il testo o un URL che inizia con http. Se si utilizza un URL, il "
4472
+ "testo dei Termini e condizioni sarà sostituito da un link alla pagina "
4473
+ "appropriata."
4474
+
4475
+ #: includes/admin/settings/class-settings-bootstrap.php:267
4476
+ msgctxt "settings"
4477
+ msgid "Terms and Conditions text goes here."
4478
+ msgstr "Il testo dei termini e delle condizioni va qui."
4479
+
4480
+ #: includes/admin/settings/class-settings-bootstrap.php:273
4481
+ msgctxt "settings"
4482
+ msgid "Data Collection"
4483
+ msgstr "Raccolta dati"
4484
+
4485
+ #: includes/admin/settings/class-settings-bootstrap.php:278
4486
+ msgctxt "settings"
4487
+ msgid ""
4488
+ "Allow BD to anonymously collect information about your installed plugins, "
4489
+ "themes and WP version?"
4490
+ msgstr ""
4491
+ "Consenti a BD di raccogliere informazioni anonime sui plugin installati, sui "
4492
+ "temi e sulla versione WP?"
4493
+
4494
+ #: includes/admin/settings/class-settings-bootstrap.php:285
4495
+ msgctxt "settings"
4496
+ msgid "Directory Search"
4497
+ msgstr "Ricerca Directory"
4498
+
4499
+ #: includes/admin/settings/class-settings-bootstrap.php:290
4500
+ msgctxt "settings"
4501
+ msgid "Search form display"
4502
+ msgstr "Visualizzazione del modulo di ricerca"
4503
+
4504
+ #: includes/admin/settings/class-settings-bootstrap.php:312
4505
+ msgctxt "settings"
4506
+ msgid "Quick search fields"
4507
+ msgstr "Campi di ricerca rapida"
4508
+
4509
+ #: includes/admin/settings/class-settings-bootstrap.php:313
4510
+ msgctxt "settings"
4511
+ msgid ""
4512
+ "Choosing too many fields for inclusion into Quick Search can result in very "
4513
+ "slow search performance."
4514
+ msgstr ""
4515
+ "La scelta di troppi campi da includere nella ricerca rapida può risultare in "
4516
+ "prestazioni di ricerca molto lente."
4517
+
4518
+ #: includes/admin/settings/class-settings-bootstrap.php:327
4519
+ msgctxt "settings"
4520
+ msgid "Enable high performance searches?"
4521
+ msgstr "Consentire ricerche ad alte prestazioni?"
4522
+
4523
+ #: includes/admin/settings/class-settings-bootstrap.php:328
4524
+ msgctxt "settings"
4525
+ msgid ""
4526
+ "Enabling this makes BD sacrifice result quality to improve speed. This is "
4527
+ "helpful if you're on shared hosting plans, where database performance is an "
4528
+ "issue."
4529
+ msgstr ""
4530
+ "Abilitare questo fa sì che la BD sacrifichi la qualità dei risultati per "
4531
+ "migliorare la velocità. Questo è utile se siete su piani di hosting "
4532
+ "condiviso, dove le prestazioni del database è un problema."
4533
+
4534
+ #: includes/admin/settings/class-settings-bootstrap.php:334
4535
+ msgctxt "settings"
4536
+ msgid "Advanced"
4537
+ msgstr "Avanzate"
4538
+
4539
+ #: includes/admin/settings/class-settings-bootstrap.php:340
4540
+ msgctxt "settings"
4541
+ msgid "Disable advanced CPT integration?"
4542
+ msgstr "Disabilita l'integrazione CPT avanzata?"
4543
+
4544
+ #: includes/admin/settings/class-settings-bootstrap.php:348
4545
+ msgctxt "settings"
4546
+ msgid "Enable AJAX compatibility mode?"
4547
+ msgstr "Attivare la modalità di compatibilità AJAX?"
4548
+
4549
+ #: includes/admin/settings/class-settings-bootstrap.php:350
4550
+ msgctxt "settings"
4551
+ msgid ""
4552
+ "If this compatibility mode doesn't solve your issue, you may be experiencing "
4553
+ "a more serious conflict. <a>Here is an article</a> about how to test for "
4554
+ "theme and plugin conflicts with Business Directory."
4555
+ msgstr ""
4556
+ "Se questa modalità di compatibilità non risolve il problema, è possibile che "
4557
+ "si verifichi un conflitto più grave. <a>Ecco un articolo</a> su come testare "
4558
+ "i conflitti di tema e plugin con Business Directory."
4559
+
4560
+ #: includes/admin/settings/class-settings-bootstrap.php:359
4561
+ msgctxt "settings"
4562
+ msgid "Disable Frontend Listing Submission?"
4563
+ msgstr "Disabilita l'inserimento di Annunci dal Sito pubblico?"
4564
+
4565
+ #: includes/admin/settings/class-settings-bootstrap.php:360
4566
+ msgctxt "settings"
4567
+ msgid ""
4568
+ "Prevents the Submit Listing button from showing on the main UI, but allows a "
4569
+ "shortcode for submit listing to function on other pages."
4570
+ msgstr ""
4571
+ "Impedisce al pulsante Submit Listing di essere visualizzato sull'interfaccia "
4572
+ "utente principale, ma consente di utilizzare una scorciatoia per inviare "
4573
+ "l'annuncio in altre pagine."
4574
+
4575
+ #: includes/admin/settings/class-settings-bootstrap.php:368
4576
+ msgctxt "settings"
4577
+ msgid "Enqueue Business Directory's FontAwesome styles?"
4578
+ msgstr "Enqueue Business Directory's FontStili impressionanti?"
4579
+
4580
+ #: includes/admin/settings/class-settings-bootstrap.php:369
4581
+ msgctxt "settings"
4582
+ msgid ""
4583
+ "This helps to prevent conflicts with other plugins that already do this. "
4584
+ "Disable this only if you're having an issue with FontAwesome icons and have "
4585
+ "performed a conflict test to validate this is a multiple styles enqueueing "
4586
+ "issue."
4587
+ msgstr ""
4588
+ "Questo aiuta a prevenire conflitti con altri plugin che già lo fanno. "
4589
+ "Disabilita questo solo se hai un problema con le icone di FontAwesome e hai "
4590
+ "eseguito un test di conflitto per convalidare questo è un problema di "
4591
+ "enqueueing di stili multipli."
4592
+
4593
+ #: includes/admin/settings/class-settings-bootstrap.php:404
4594
+ msgctxt "settings"
4595
+ msgid "Listings per page"
4596
+ msgstr "Listing per pagina"
4597
+
4598
+ #: includes/admin/settings/class-settings-bootstrap.php:405
4599
+ msgctxt "settings"
4600
+ msgid ""
4601
+ "Number of listings to show per page. Use a value of \"0\" to show all "
4602
+ "listings."
4603
+ msgstr ""
4604
+ "Numero di annunci da mostrare per pagina. Utilizzare un valore \"0\" per "
4605
+ "visualizzare tutti gli annunci."
4606
+
4607
+ #: includes/admin/settings/class-settings-bootstrap.php:416
4608
+ msgctxt "settings"
4609
+ msgid "Listing duration for no-fee sites (in days)"
4610
+ msgstr "Durata dell'annuncio per i siti no-fee (in giorni)"
4611
+
4612
+ #: includes/admin/settings/class-settings-bootstrap.php:417
4613
+ msgctxt "settings"
4614
+ msgid ""
4615
+ "Use a value of \"0\" to keep a listing alive indefinitely or enter a number "
4616
+ "less than 10 years (3650 days)."
4617
+ msgstr ""
4618
+ "Usa il valore \"0\" per mantenere viva una quotazione a tempo indeterminato "
4619
+ "o inserisci un numero inferiore a 10 anni (3650 giorni)."
4620
+
4621
+ #: includes/admin/settings/class-settings-bootstrap.php:429
4622
+ msgctxt "settings"
4623
+ msgid "Turn on listing renewal option?"
4624
+ msgstr "Attivare l'opzione di rinnovo dell'elenco?"
4625
+
4626
+ #: includes/admin/settings/class-settings-bootstrap.php:438
4627
+ msgctxt "settings"
4628
+ msgid "Open detailed view of listing in new tab?"
4629
+ msgstr "Apri la visione dettagliata dell'Annuncio nella nuova scheda?"
4630
+
4631
+ #: includes/admin/settings/class-settings-bootstrap.php:444
4632
+ msgctxt "settings"
4633
+ msgid "Report Listings"
4634
+ msgstr "Annunci dei report"
4635
+
4636
+ #: includes/admin/settings/class-settings-bootstrap.php:449
4637
+ msgctxt "settings"
4638
+ msgid "Include button to report listings?"
4639
+ msgstr "Includi pulsante per segnalare gli annunci?"
4640
+
4641
+ #: includes/admin/settings/class-settings-bootstrap.php:458
4642
+ msgctxt "settings"
4643
+ msgid "Enable report listing for registered users only"
4644
+ msgstr "Attivare l'elenco dei report solo per gli utenti registrati"
4645
+
4646
+ #: includes/admin/settings/class-settings-bootstrap.php:468
4647
+ msgctxt "settings"
4648
+ msgid "Report listing option list"
4649
+ msgstr "Segnala l'elenco delle opzioni"
4650
+
4651
+ #: includes/admin/settings/class-settings-bootstrap.php:469
4652
+ msgctxt "settings"
4653
+ msgid ""
4654
+ "Form option list to report a listing as inappropriate. One option per line."
4655
+ msgstr ""
4656
+ "Formulate l'elenco delle opzioni per segnalare un elenco come inappropriato. "
4657
+ "Un'opzione per linea."
4658
+
4659
+ #: includes/admin/settings/class-settings-bootstrap.php:476
4660
+ msgctxt "settings"
4661
+ msgid "Contact Form"
4662
+ msgstr "Modulo di Contatto"
4663
+
4664
+ #: includes/admin/settings/class-settings-bootstrap.php:481
4665
+ msgctxt "settings"
4666
+ msgid "Include listing contact form on listing pages?"
4667
+ msgstr ""
4668
+ "Includere il modulo di contatto nelle pagine di inserimento nell'elenco?"
4669
+
4670
+ #: includes/admin/settings/class-settings-bootstrap.php:482
4671
+ msgctxt "settings"
4672
+ msgid ""
4673
+ "Allows visitors to contact listing authors privately. Authors will receive "
4674
+ "the messages via email."
4675
+ msgstr ""
4676
+ "Consente ai visitatori di contattare l'autore di elenchi in privato. Gli "
4677
+ "autori riceveranno i messaggi via e-mail."
4678
+
4679
+ #: includes/admin/settings/class-settings-bootstrap.php:491
4680
+ msgctxt "settings"
4681
+ msgid "Require login for using the contact form?"
4682
+ msgstr "Richiede l'accesso per utilizzare il modulo di contatto?"
4683
+
4684
+ #: includes/admin/settings/class-settings-bootstrap.php:501
4685
+ msgctxt "settings"
4686
+ msgid "Maximum number of contact form submits per day"
4687
+ msgstr "Numero massimo di moduli di contatto inviati al giorno"
4688
+
4689
+ #: includes/admin/settings/class-settings-bootstrap.php:502
4690
+ msgctxt "settings"
4691
+ msgid ""
4692
+ "Use this to prevent spamming of listing owners. 0 means unlimited submits "
4693
+ "per day."
4694
+ msgstr ""
4695
+ "Utilizza questo per impedire la spamming dei proprietari di Annunci. 0 "
4696
+ "indica un numero illimitato di inserimenti al giorno."
4697
+
4698
+ #: includes/admin/settings/class-settings-bootstrap.php:512
4699
+ msgctxt "settings"
4700
+ msgid "Include comment form on listing pages?"
4701
+ msgstr "Inserisci modulo di commento sulle pagine di inserimento?"
4702
+
4703
+ #: includes/admin/settings/class-settings-bootstrap.php:513
4704
+ msgctxt "settings"
4705
+ msgid ""
4706
+ "BD uses the standard comment inclusion from WordPress, but most themes only "
4707
+ "allow for comments on posts, not pages. Some themes handle both. BD is "
4708
+ "displayed on a page, so we need a theme that can handle both to show "
4709
+ "comments. Use the 2nd option if you want to allow comments on listings "
4710
+ "first, and if that doesn't work, try the 3rd option instead."
4711
+ msgstr ""
4712
+ "BD utilizza l'inclusione di commenti standard da WordPress, ma la maggior "
4713
+ "parte dei temi consente solo commenti sui messaggi e non sulle pagine. "
4714
+ "Alcuni temi trattano entrambi. BD viene visualizzato su una pagina, quindi "
4715
+ "abbiamo bisogno di un tema in grado di gestire sia per mostrare commenti. "
4716
+ "Utilizza la seconda opzione se vuoi consentire i commenti sugli elenchi in "
4717
+ "primo luogo e se ciò non funziona, prova invece la terza opzione."
4718
+
4719
+ #: includes/admin/settings/class-settings-bootstrap.php:527
4720
+ msgctxt "settings"
4721
+ msgid "Show listings under categories on main page?"
4722
+ msgstr "Mostra gli annunci sotto alle categorie nella pagina principale?"
4723
+
4724
+ #: includes/admin/settings/class-settings-bootstrap.php:536
4725
+ msgctxt "settings"
4726
+ msgid "Prevent featured (sticky) status on BD pages?"
4727
+ msgstr "Impedire lo stato (appiccicoso) delle pagine BD?"
4728
+
4729
+ #: includes/admin/settings/class-settings-bootstrap.php:537
4730
+ msgctxt "settings"
4731
+ msgid ""
4732
+ "Prevents featured listings from floating to the top of the selected page."
4733
+ msgstr ""
4734
+ "Impedisce che gli annunci presentati passino all'inizio della pagina "
4735
+ "selezionata."
4736
+
4737
+ #: includes/admin/settings/class-settings-bootstrap.php:552
4738
+ msgctxt "settings"
4739
+ msgid "Status of listings upon uninstalling plugin"
4740
+ msgstr "Stato degli elenchi quando si disinstalla il plugin"
4741
+
4742
+ #: includes/admin/settings/class-settings-bootstrap.php:565
4743
+ msgctxt "settings"
4744
+ msgid "Status of deleted listings"
4745
+ msgstr "Stato degli annunci eliminati"
4746
+
4747
+ #: includes/admin/settings/class-settings-bootstrap.php:578
4748
+ msgctxt "settings"
4749
+ msgid "Submit Listing instructions message"
4750
+ msgstr "Messaggio di istruzioni per l'inserimento di Annunci"
4751
+
4752
+ #: includes/admin/settings/class-settings-bootstrap.php:579
4753
+ msgctxt "settings"
4754
+ msgid ""
4755
+ "This text is displayed at the first page of the Submit Listing process for "
4756
+ "Business Directory. You can use it for instructions about filling out the "
4757
+ "form or anything you want to tell users before they get started."
4758
+ msgstr ""
4759
+ "Questo testo viene visualizzato nella prima pagina del processo di invio "
4760
+ "dell'elenco per la directory aziendale. Puoi usarlo per le istruzioni su "
4761
+ "come compilare il modulo o qualsiasi cosa tu voglia dire agli utenti prima "
4762
+ "di iniziare."
4763
+
4764
+ #: includes/admin/settings/class-settings-bootstrap.php:585
4765
+ msgctxt "settings"
4766
+ msgid "Post/Category Settings"
4767
+ msgstr "Impostazioni di post/categoria"
4768
+
4769
+ #: includes/admin/settings/class-settings-bootstrap.php:590
4770
+ msgctxt "settings"
4771
+ msgid "Default new post status"
4772
+ msgstr "Stato predefinito del nuovo messaggio"
4773
+
4774
+ #: includes/admin/settings/class-settings-bootstrap.php:603
4775
+ msgctxt "settings"
4776
+ msgid "Edit post status"
4777
+ msgstr "Modifica stato post"
4778
+
4779
+ #: includes/admin/settings/class-settings-bootstrap.php:616
4780
+ msgctxt "settings"
4781
+ msgid "Order categories list by"
4782
+ msgstr "Ordina categorie per"
4783
+
4784
+ #: includes/admin/settings/class-settings-bootstrap.php:630
4785
+ msgctxt "settings"
4786
+ msgid "Sort order for categories"
4787
+ msgstr "Ordina per categorie"
4788
+
4789
+ #: includes/admin/settings/class-settings-bootstrap.php:643
4790
+ msgctxt "settings"
4791
+ msgid "Show category post count?"
4792
+ msgstr "Mostra il conteggio dei post della categoria?"
4793
+
4794
+ #: includes/admin/settings/class-settings-bootstrap.php:652
4795
+ msgctxt "settings"
4796
+ msgid "Hide empty categories?"
4797
+ msgstr "Nascondi le categorie vuote?"
4798
+
4799
+ #: includes/admin/settings/class-settings-bootstrap.php:661
4800
+ msgctxt "settings"
4801
+ msgid "Show only parent categories in category list?"
4802
+ msgstr "Mostra solo categorie genitore nell'elenco categorie?"
4803
+
4804
+ #: includes/admin/settings/class-settings-bootstrap.php:667
4805
+ msgctxt "settings"
4806
+ msgid "Listings Sorting"
4807
+ msgstr "Annunci ordinamento"
4808
+
4809
+ #: includes/admin/settings/class-settings-bootstrap.php:675
4810
+ msgctxt "settings"
4811
+ msgid "Order directory listings by"
4812
+ msgstr "Ordina gli elenchi degli elenchi per"
4813
+
4814
+ #: includes/admin/settings/class-settings-bootstrap.php:698
4815
+ msgctxt "settings"
4816
+ msgid "Sort directory listings by"
4817
+ msgstr "Ordina gli elenchi per"
4818
+
4819
+ #: includes/admin/settings/class-settings-bootstrap.php:699
4820
+ msgctxt "settings"
4821
+ msgid "Ascending for ascending order A-Z, Descending for descending order Z-A"
4822
+ msgstr ""
4823
+ "Crescente per ordine crescente A-Z, decrescente per ordine decrescente Z-A"
4824
+
4825
+ #: includes/admin/settings/class-settings-bootstrap.php:712
4826
+ msgctxt "settings"
4827
+ msgid "Enable sort bar?"
4828
+ msgstr "Attivare la barra di selezione?"
4829
+
4830
+ #: includes/admin/settings/class-settings-bootstrap.php:721
4831
+ msgctxt "settings"
4832
+ msgid "Sortbar Fields"
4833
+ msgstr "Campi Sortbar"
4834
+
4835
+ #: includes/admin/settings/class-settings-bootstrap.php:732
4836
+ msgctxt "settings"
4837
+ msgid "Directory Display Options"
4838
+ msgstr "Opzioni di visualizzazione directory"
4839
+
4840
+ #: includes/admin/settings/class-settings-bootstrap.php:737
4841
+ msgctxt "settings"
4842
+ msgid "Show the \"Submit listing\" button."
4843
+ msgstr "Mostra il pulsante \"Invia annuncio\"."
4844
+
4845
+ #: includes/admin/settings/class-settings-bootstrap.php:738
4846
+ msgctxt "settings"
4847
+ msgid ""
4848
+ "Hides the button used by the main UI to allow listing submission, but does "
4849
+ "not shut off the use of the link for submitting listings (allows you to "
4850
+ "customize the submit listing button on your own)"
4851
+ msgstr ""
4852
+ "Nasconde il pulsante utilizzato dall'interfaccia utente principale per "
4853
+ "consentire l'invio di annunci, ma non spegne l'uso del link per l'invio di "
4854
+ "annunci (consente di personalizzare il pulsante di invio di annunci per "
4855
+ "conto proprio)."
4856
+
4857
+ #: includes/admin/settings/class-settings-bootstrap.php:748
4858
+ msgctxt "settings"
4859
+ msgid "Show \"Search listings\"."
4860
+ msgstr "Mostra \"Ricerca di Annunci\"."
4861
+
4862
+ #: includes/admin/settings/class-settings-bootstrap.php:757
4863
+ msgctxt "settings"
4864
+ msgid "Show the \"View Listings\" button."
4865
+ msgstr "Mostra il pulsante \"Visualizza Annunci\"."
4866
+
4867
+ #: includes/admin/settings/class-settings-bootstrap.php:766
4868
+ msgctxt "settings"
4869
+ msgid "Show the \"Directory\" button."
4870
+ msgstr "Mostra il pulsante \"Directory\"."
4871
+
4872
+ #: includes/admin/settings/class-settings-bootstrap.php:773
4873
+ msgctxt "settings"
4874
+ msgid "Theme Settings"
4875
+ msgstr "Impostazioni tema"
4876
+
4877
+ #: includes/admin/settings/class-settings-bootstrap.php:779
4878
+ msgctxt "settings"
4879
+ msgid "Theme button style"
4880
+ msgstr "Tasto stile tema"
4881
+
4882
+ #: includes/admin/settings/class-settings-bootstrap.php:792
4883
+ msgctxt "settings"
4884
+ msgid ""
4885
+ "Include CSS rules to give their own style to View, Edit and Delete buttons?"
4886
+ msgstr ""
4887
+ "Includere le regole CSS per dare il proprio stile ai pulsanti Visualizza, "
4888
+ "Modifica e Elimina?"
4889
+
4890
+ #: includes/admin/settings/class-settings-bootstrap.php:799
4891
+ msgctxt "settings"
4892
+ msgid "Image"
4893
+ msgstr "Immagine"
4894
+
4895
+ #: includes/admin/settings/class-settings-bootstrap.php:800
4896
+ msgctxt "settings"
4897
+ msgid "Image Settings"
4898
+ msgstr "Impostazioni immagine"
4899
+
4900
+ #: includes/admin/settings/class-settings-bootstrap.php:805
4901
+ msgctxt "settings"
4902
+ msgid "Allow images?"
4903
+ msgstr "Consenti le immagini?"
4904
+
4905
+ #: includes/admin/settings/class-settings-bootstrap.php:816
4906
+ msgctxt "settings"
4907
+ msgid "Min Image File Size (KB)"
4908
+ msgstr "Dimensione file minima (KB)"
4909
+
4910
+ #: includes/admin/settings/class-settings-bootstrap.php:827
4911
+ msgctxt "settings"
4912
+ msgid "Max Image File Size (KB)"
4913
+ msgstr "Dimensione massima dell'immagine (KB)"
4914
+
4915
+ #: includes/admin/settings/class-settings-bootstrap.php:838
4916
+ msgctxt "settings"
4917
+ msgid "Min image width (px)"
4918
+ msgstr "Ampiezza dell'immagine minima (px)"
4919
+
4920
+ #: includes/admin/settings/class-settings-bootstrap.php:847
4921
+ msgctxt "settings"
4922
+ msgid "Min image height (px)"
4923
+ msgstr "Altezza immagine minima (px)"
4924
+
4925
+ #: includes/admin/settings/class-settings-bootstrap.php:860
4926
+ msgctxt "settings"
4927
+ msgid "Max image width (px)"
4928
+ msgstr "Larghezza immagine massima (px)"
4929
+
4930
+ #: includes/admin/settings/class-settings-bootstrap.php:871
4931
+ msgctxt "settings"
4932
+ msgid "Max image height (px)"
4933
+ msgstr "Altezza immagine massima (px)"
4934
+
4935
+ #: includes/admin/settings/class-settings-bootstrap.php:882
4936
+ msgctxt "settings"
4937
+ msgid "Turn on thickbox/lightbox?"
4938
+ msgstr "Attivare spesso / leggero?"
4939
+
4940
+ #: includes/admin/settings/class-settings-bootstrap.php:883
4941
+ msgctxt "settings"
4942
+ msgid ""
4943
+ "Uncheck if it conflicts with other elements or plugins installed on your site"
4944
+ msgstr ""
4945
+ "Deseleziona se è in conflitto con altri elementi o plugin installati sul tuo "
4946
+ "sito"
4947
+
4948
+ #: includes/admin/settings/class-settings-bootstrap.php:889
4949
+ msgctxt "settings"
4950
+ msgid "Thumbnails"
4951
+ msgstr "Miniature"
4952
+
4953
+ #: includes/admin/settings/class-settings-bootstrap.php:896
4954
+ msgctxt "settings"
4955
+ msgid "Thumbnail width (px)"
4956
+ msgstr "Larghezza miniatura (px)"
4957
+
4958
+ #: includes/admin/settings/class-settings-bootstrap.php:907
4959
+ msgctxt "settings"
4960
+ msgid "Thumbnail height (px)"
4961
+ msgstr "Altezza miniatura (px)"
4962
+
4963
+ #: includes/admin/settings/class-settings-bootstrap.php:916
4964
+ msgctxt "settings"
4965
+ msgid "Crop thumbnails to exact dimensions?"
4966
+ msgstr "Taglia le miniature alle dimensioni esatte?"
4967
+
4968
+ #: includes/admin/settings/class-settings-bootstrap.php:917
4969
+ msgctxt "settings"
4970
+ msgid ""
4971
+ "When enabled images will match exactly the dimensions above but part of the "
4972
+ "image may be cropped out. If disabled, image thumbnails will be resized to "
4973
+ "match the specified width and their height will be adjusted proportionally. "
4974
+ "Depending on the uploaded images, thumbnails may have different heights."
4975
+ msgstr ""
4976
+ "Quando le immagini abilitate corrispondono esattamente alle dimensioni "
4977
+ "sopra, ma una parte dell'immagine può essere ritagliata. Se disabilitato, le "
4978
+ "miniature dell'immagine verranno ridimensionate in base alla larghezza "
4979
+ "specificata e la loro altezza verrà regolata proporzionalmente. A seconda "
4980
+ "delle immagini caricate, le miniature possono avere altezze diverse."
4981
+
4982
+ #: includes/admin/settings/class-settings-bootstrap.php:928
4983
+ msgctxt "settings"
4984
+ msgid "Enforce image upload on submit/edit?"
4985
+ msgstr "Applicare il caricamento dell'immagine su submit/edit?"
4986
+
4987
+ #: includes/admin/settings/class-settings-bootstrap.php:937
4988
+ msgctxt "settings"
4989
+ msgid "Number of free images"
4990
+ msgstr "Numero di immagini gratis"
4991
+
4992
+ #: includes/admin/settings/class-settings-bootstrap.php:949
4993
+ msgctxt "settings"
4994
+ msgid "Use \"Coming Soon\" photo for listings without any (primary) images?"
4995
+ msgstr ""
4996
+ "Utilizzare la foto \"Prossimamente\" per le inserzioni senza immagini "
4997
+ "(primarie)?"
4998
+
4999
+ #: includes/admin/settings/class-settings-bootstrap.php:962
5000
+ msgctxt "settings"
5001
+ msgid "Show Thumbnail on main listings page?"
5002
+ msgstr "Mostra Thumbnail sulla pagina principale delle inserzioni?"
5003
+
5004
+ #: includes/admin/settings/class-settings-bootstrap.php:971
5005
+ msgctxt "settings"
5006
+ msgid "Featured Badge image"
5007
+ msgstr "Immagine Badge in primo piano"
5008
+
5009
+ #: includes/admin/settings/class-settings-bootstrap.php:980
5010
+ msgctxt "settings"
5011
+ msgid "Featured Badge URL"
5012
+ msgstr "URL Badge in primo piano"
5013
+
5014
+ #: includes/admin/settings/class-settings-bootstrap.php:981
5015
+ msgctxt "settings"
5016
+ msgid "Use this to set Featured Badge image as a link to a defined URL."
5017
+ msgstr ""
5018
+ "Utilizzare questa opzione per impostare l'immagine del badge in primo piano "
5019
+ "come collegamento a un URL definito."
5020
+
5021
+ #: includes/admin/settings/class-settings-bootstrap.php:982
5022
+ msgctxt "settings"
5023
+ msgid "URL"
5024
+ msgstr "URL"
5025
+
5026
+ #: includes/admin/settings/class-settings-bootstrap.php:991
5027
+ msgctxt "settings"
5028
+ msgid "Display featured (sticky) badge on listing:"
5029
+ msgstr "Badge (appiccicoso) sul display presente nell'elenco:"
5030
+
5031
+ #: includes/admin/settings/class-settings-bootstrap.php:1008
5032
+ msgctxt "settings"
5033
+ msgid "Fee Order"
5034
+ msgstr "Ordine della tassa"
5035
+
5036
+ #: includes/admin/settings/class-settings-bootstrap.php:1021
5037
+ msgctxt "settings"
5038
+ msgid "Turn On payments?"
5039
+ msgstr "Attivare i pagamenti?"
5040
+
5041
+ #: includes/admin/settings/class-settings-bootstrap.php:1030
5042
+ msgctxt "settings"
5043
+ msgid "Put payment gateways in test mode?"
5044
+ msgstr "Mettere gateway di pagamento in modalità di prova?"
5045
+
5046
+ #: includes/admin/settings/class-settings-bootstrap.php:1040
5047
+ msgctxt "settings"
5048
+ msgid "Perform checkouts on the secure (HTTPS) version of your site?"
5049
+ msgstr "Effettuare checkout sulla versione protetta (HTTPS) del tuo sito?"
5050
+
5051
+ #: includes/admin/settings/class-settings-bootstrap.php:1041
5052
+ msgctxt "settings"
5053
+ msgid ""
5054
+ "Recommended for added security. For this to work you need to enable HTTPS on "
5055
+ "your server and obtain an SSL certificate."
5056
+ msgstr ""
5057
+ "Consigliato per una maggiore sicurezza. Perché questo funzioni è necessario "
5058
+ "abilitare HTTPS sul server e ottenere un certificato SSL."
5059
+
5060
+ #: includes/admin/settings/class-settings-bootstrap.php:1063
5061
+ msgctxt "settings"
5062
+ msgid "Currency Code"
5063
+ msgstr "Codice Valuta"
5064
+
5065
+ #: includes/admin/settings/class-settings-bootstrap.php:1102
5066
+ msgctxt "settings"
5067
+ msgid "Currency Symbol"
5068
+ msgstr "Simbolo valuta"
5069
+
5070
+ #: includes/admin/settings/class-settings-bootstrap.php:1112
5071
+ msgctxt "settings"
5072
+ msgid "Currency symbol display"
5073
+ msgstr "Visualizzazione del simbolo di valuta"
5074
+
5075
+ #: includes/admin/settings/class-settings-bootstrap.php:1127
5076
+ msgctxt "settings"
5077
+ msgid "Include fee description in receipt?"
5078
+ msgstr "Includere la descrizione della tassa nella ricevuta?"
5079
+
5080
+ #: includes/admin/settings/class-settings-bootstrap.php:1137
5081
+ msgctxt "settings"
5082
+ msgid "Thank you for payment message"
5083
+ msgstr "Messaggio di ringraziamento per il pagamento"
5084
+
5085
+ #: includes/admin/settings/class-settings-bootstrap.php:1147
5086
+ msgctxt "settings"
5087
+ msgid "Ask users to come back for abandoned payments?"
5088
+ msgstr "Chiedere agli utenti di tornare per pagamenti abbandonati?"
5089
+
5090
+ #: includes/admin/settings/class-settings-bootstrap.php:1148
5091
+ msgctxt "settings"
5092
+ msgid ""
5093
+ "An abandoned payment is when a user attempts to place a listing and gets to "
5094
+ "the end, but fails to complete their payment for the listing. This results "
5095
+ "in listings that look like they failed, when the user simply didn't complete "
5096
+ "the transaction. BD can remind them to come back and continue."
5097
+ msgstr ""
5098
+ "Un pagamento abbandonato è quando un utente tenta di immettere un elenco e "
5099
+ "arriva alla fine, ma non completa il suo pagamento per la quotazione. Ciò "
5100
+ "provoca gli elenchi che sembrano falliti, quando l'utente non ha "
5101
+ "semplicemente completato la transazione. BD può ricordare loro di tornare e "
5102
+ "continuare."
5103
+
5104
+ #: includes/admin/settings/class-settings-bootstrap.php:1158
5105
+ msgctxt "settings"
5106
+ msgid "Listing abandonment threshold (hours)"
5107
+ msgstr "Soglia di abbandono dell'elenco (ore)"
5108
+
5109
+ #: includes/admin/settings/class-settings-bootstrap.php:1175
5110
+ msgctxt "settings"
5111
+ msgid "Display email address fields publicly?"
5112
+ msgstr "Pubblica i campi di posta elettronica pubblicamente?"
5113
+
5114
+ #: includes/admin/settings/class-settings-bootstrap.php:1176
5115
+ msgctxt "settings"
5116
+ msgid ""
5117
+ "Shows the email address of the listing owner to all web users. NOT "
5118
+ "RECOMMENDED as this increases spam to the address and allows spam bots to "
5119
+ "harvest it for future use."
5120
+ msgstr ""
5121
+ "Mostra l'indirizzo email del proprietario dell'elenco a tutti gli utenti "
5122
+ "web. NON RACCOMANDATO in quanto aumenta lo spam all'indirizzo e consente ai "
5123
+ "bot di spam di raccogliere il prodotto per un uso futuro."
5124
+
5125
+ #: includes/admin/settings/class-settings-bootstrap.php:1185
5126
+ msgctxt "settings"
5127
+ msgid "How to determine the listing's email address?"
5128
+ msgstr "Come determinare l'indirizzo email dell'Annuncio?"
5129
+
5130
+ #: includes/admin/settings/class-settings-bootstrap.php:1186
5131
+ msgctxt "settings"
5132
+ msgid ""
5133
+ "This affects emails sent to listing owners via contact forms or when their "
5134
+ "listings expire."
5135
+ msgstr ""
5136
+ "Ciò riguarda le e-mail inviate ai proprietari dell'elenco tramite moduli di "
5137
+ "contatto o quando i loro annunci scadono."
5138
+
5139
+ #: includes/admin/settings/class-settings-bootstrap.php:1199
5140
+ msgctxt "settings"
5141
+ msgid "Email Content-Type header"
5142
+ msgstr "Intestazione e-mail Content-Type"
5143
+
5144
+ #: includes/admin/settings/class-settings-bootstrap.php:1200
5145
+ msgctxt "settings"
5146
+ msgid ""
5147
+ "Use this setting to control the format of the emails explicitly. Some "
5148
+ "plugins for email do not correctly support Content Type unless explicitly "
5149
+ "set, you can do that here. If you're unsure, try \"HTML\", \"Plain\" and "
5150
+ "then \"Both\"."
5151
+ msgstr ""
5152
+ "Utilizzare questa impostazione per controllare esplicitamente il formato "
5153
+ "delle e-mail. Alcuni plugin per le e-mail non supportano correttamente il "
5154
+ "tipo di contenuto a meno che non sia esplicitamente impostato, puoi farlo "
5155
+ "qui. Se non siete sicuri, provate \"HTML\", \"Plain\" e poi \"Both\"."
5156
+
5157
+ #: includes/admin/settings/class-settings-bootstrap.php:1211
5158
+ msgctxt "settings"
5159
+ msgid "E-Mail Notifications"
5160
+ msgstr "Notifiche di posta elettronica"
5161
+
5162
+ #: includes/admin/settings/class-settings-bootstrap.php:1216
5163
+ msgctxt "settings"
5164
+ msgid "Notify admin via e-mail when..."
5165
+ msgstr "Notifica admin via e-mail quando ..."
5166
+
5167
+ #: includes/admin/settings/class-settings-bootstrap.php:1233
5168
+ msgctxt "settings"
5169
+ msgid "CC this e-mail address too"
5170
+ msgstr "CC anche questo indirizzo e-mail"
5171
+
5172
+ #: includes/admin/settings/class-settings-bootstrap.php:1239
5173
+ msgctxt "settings"
5174
+ msgid ""
5175
+ "You can modify the text template used for most of these e-mails in the "
5176
+ "<templates-link>Templates</templates-link> tab."
5177
+ msgstr ""
5178
+ "È possibile modificare il modello di testo utilizzato per la maggior parte "
5179
+ "di queste e-mail nella scheda <templates-link>Modelli</templates-link>."
5180
+
5181
+ #: includes/admin/settings/class-settings-bootstrap.php:1246
5182
+ msgctxt "settings"
5183
+ msgid "Notify users via e-mail when..."
5184
+ msgstr "Avvisa gli utenti via e-mail quando....."
5185
+
5186
+ #: includes/admin/settings/class-settings-bootstrap.php:1257
5187
+ msgctxt "settings"
5188
+ msgid "Templates"
5189
+ msgstr "Modelli"
5190
+
5191
+ #: includes/admin/settings/class-settings-bootstrap.php:1262
5192
+ msgctxt "settings"
5193
+ msgid "Email confirmation message"
5194
+ msgstr "Messaggio di conferma Email"
5195
+
5196
+ #: includes/admin/settings/class-settings-bootstrap.php:1263
5197
+ msgctxt "settings"
5198
+ msgid "Sent after a listing has been submitted."
5199
+ msgstr "Inviati dopo l'invio di un annuncio."
5200
+
5201
+ #: includes/admin/settings/class-settings-bootstrap.php:1278
5202
+ msgctxt "settings"
5203
+ msgid "Listing published message"
5204
+ msgstr "Messaggio di Annuncio pubblicato"
5205
+
5206
+ #: includes/admin/settings/class-settings-bootstrap.php:1279
5207
+ msgctxt "settings"
5208
+ msgid "Sent when the listing has been published or approved by an admin."
5209
+ msgstr ""
5210
+ "Viene inviato quando l'Annuncio è stato pubblicato o approvato da un "
5211
+ "amministratore."
5212
+
5213
+ #: includes/admin/settings/class-settings-bootstrap.php:1296
5214
+ msgctxt "settings"
5215
+ msgid "Listing Contact Message"
5216
+ msgstr "Elenco messaggi"
5217
+
5218
+ #: includes/admin/settings/class-settings-bootstrap.php:1297
5219
+ msgctxt "settings"
5220
+ msgid ""
5221
+ "Sent to listing owners when someone uses the contact form on their listing "
5222
+ "pages."
5223
+ msgstr ""
5224
+ "Inviato ai proprietari dell'Annuncio quando qualcuno utilizza il modulo di "
5225
+ "contatto nelle pagine di inserimento."
5226
+
5227
+ #: includes/admin/settings/class-settings-bootstrap.php:1325
5228
+ msgctxt "settings"
5229
+ msgid "Payment abandoned reminder message"
5230
+ msgstr "Messaggio di promemoria per abbandono del pagamento"
5231
+
5232
+ #: includes/admin/settings/class-settings-bootstrap.php:1326
5233
+ msgctxt "settings"
5234
+ msgid "Sent some time after a pending payment is abandoned by users."
5235
+ msgstr ""
5236
+ "Invia poco tempo dopo che un pagamento in sospeso viene abbandonato dagli "
5237
+ "utenti."
5238
+
5239
+ #: includes/admin/settings/class-settings-bootstrap.php:1363
5240
+ msgctxt "settings"
5241
+ msgid "E-Mail Notices"
5242
+ msgstr "Avvisi di posta elettronica"
5243
+
5244
+ #: includes/admin/settings/class-settings.php:556
5245
+ #: includes/admin/settings/class-settings.php:567
5246
+ msgctxt "settings"
5247
+ msgid "\"%s\" can not be empty."
5248
+ msgstr "\"%s\" non può essere vuoto."
5249
+
5250
+ #: includes/admin/settings/class-settings.php:574
5251
+ msgctxt "settings"
5252
+ msgid "The slug \"%s\" is already in use for another taxonomy."
5253
+ msgstr "Lo slug \"%s\" è già in uso per un'altra tassonomia."
5254
+
5255
+ #: includes/licensing.php:122
5256
+ msgctxt "settings"
5257
+ msgid "Themes"
5258
+ msgstr "Temi"
5259
+
5260
+ #: includes/licensing.php:147
5261
+ msgctxt "settings"
5262
+ msgid ""
5263
+ "The IP address of your server is <ip-address>. Please make sure to include "
5264
+ "that information if you need to contact support about problems trying to "
5265
+ "activate your licenses."
5266
+ msgstr ""
5267
+ "L'indirizzo IP del server è <ip-address>.Assicurati di includere queste "
5268
+ "informazioni se hai bisogno di contattare l'assistenza per problemi di "
5269
+ "attivazione delle licenze."
5270
+
5271
+ #: includes/licensing.php:174
5272
+ msgctxt "settings"
5273
+ msgid "Activate"
5274
+ msgstr "Attiva"
5275
+
5276
+ #: includes/licensing.php:174 includes/licensing.php:175
5277
+ msgctxt "settings"
5278
+ msgid "Please wait..."
5279
+ msgstr "Attendi..."
5280
+
5281
+ #: includes/licensing.php:175
5282
+ msgctxt "settings"
5283
+ msgid "Deactivate"
5284
+ msgstr "Disattiva"
5285
+
5286
+ #: includes/licensing.php:223 includes/licensing.php:224
5287
+ msgctxt "settings"
5288
+ msgid "Licenses"
5289
+ msgstr "Licenze"
5290
+
5291
+ #: templates/admin/settings-page.tpl.php:7
5292
+ msgctxt "settings"
5293
+ msgid "Reset Defaults"
5294
+ msgstr "Ripristina Defaults"
5295
+
5296
+ #: templates/admin/settings-reset.tpl.php:4
5297
+ msgctxt "settings"
5298
+ msgid "← Return to \"Manage Options\""
5299
+ msgstr "← Torna a \"Gestisci opzioni\""
5300
+
5301
+ #: includes/admin/settings/class-settings-bootstrap.php:555
5302
+ #: includes/admin/settings/class-settings-bootstrap.php:568
5303
+ msgctxt "post status"
5304
+ msgid "Draft"
5305
+ msgstr "Bozza"
5306
+
5307
+ #: includes/admin/settings/class-settings-bootstrap.php:556
5308
+ #: includes/admin/settings/class-settings-bootstrap.php:569
5309
+ msgctxt "post status"
5310
+ msgid "Trash"
5311
+ msgstr "Cestino"
5312
+
5313
+ #: includes/admin/settings/class-settings-bootstrap.php:593
5314
+ #: includes/admin/settings/class-settings-bootstrap.php:606
5315
+ msgctxt "post status"
5316
+ msgid "Published"
5317
+ msgstr "Pubblicato"
5318
+
5319
+ #: includes/admin/settings/class-settings-bootstrap.php:594
5320
+ #: includes/admin/settings/class-settings-bootstrap.php:607
5321
+ msgctxt "post status"
5322
+ msgid "Pending"
5323
+ msgstr "In attesa"
5324
+
5325
+ #: includes/admin/settings/class-settings-bootstrap.php:1301
5326
+ msgctxt "contact email"
5327
+ msgid "You have received a reply from your listing at %s."
5328
+ msgstr "Hai ricevuto una risposta dal tuo annuncio su %s."
5329
+
5330
+ #: includes/admin/settings/class-settings-bootstrap.php:1302
5331
+ msgctxt "contact email"
5332
+ msgid "Name: %s"
5333
+ msgstr "Nome: %s"
5334
+
5335
+ #: includes/admin/settings/class-settings-bootstrap.php:1303
5336
+ msgctxt "contact email"
5337
+ msgid "E-Mail: %s"
5338
+ msgstr "E-Mail: %s"
5339
+
5340
+ #: includes/admin/settings/class-settings-bootstrap.php:1304
5341
+ msgctxt "contact email"
5342
+ msgid "Message:"
5343
+ msgstr "Messaggio:"
5344
+
5345
+ #: includes/admin/settings/class-settings-bootstrap.php:1306
5346
+ msgctxt "contact email"
5347
+ msgid "Time: %s"
5348
+ msgstr "Tempo: %s"
5349
+
5350
+ #: includes/admin/tracking.php:188
5351
+ msgctxt "tracking"
5352
+ msgid "Help Improve Business Directory"
5353
+ msgstr "Aiuta a migliorare la directory aziendale"
5354
+
5355
+ #: includes/admin/tracking.php:190
5356
+ msgctxt "tracking"
5357
+ msgid ""
5358
+ "Can Business Directory keep track of your theme, plugins, and other non-"
5359
+ "personal, non-identifying information to help us in testing the plugin for "
5360
+ "future releases?"
5361
+ msgstr ""
5362
+ "Può la Business Directory tenere traccia del tuo tema, dei plugin e di altre "
5363
+ "informazioni non personali e non identificabili per aiutarci a testare il "
5364
+ "plugin per le versioni future?"
5365
+
5366
+ #: includes/admin/tracking.php:192
5367
+ msgctxt "tracking"
5368
+ msgid "What do you track?"
5369
+ msgstr "Cosa traccia?"
5370
+
5371
+ #: includes/admin/tracking.php:214
5372
+ msgctxt "tracking"
5373
+ msgid "No, Thanks."
5374
+ msgstr "No grazie."
5375
+
5376
+ #: includes/admin/tracking.php:221
5377
+ msgctxt "tracking"
5378
+ msgid "Allow Tracking"
5379
+ msgstr "Consenti il monitoraggio"
5380
+
5381
+ #: includes/admin/upgrades/class-manual-upgrade-helper.php:158
5382
+ msgctxt "manual-upgrade"
5383
+ msgid "Continue"
5384
+ msgstr "Continua"
5385
+
5386
+ #: includes/admin/upgrades/class-manual-upgrade-helper.php:172
5387
+ msgctxt "manual-upgrade"
5388
+ msgid "Start Upgrade"
5389
+ msgstr "Avviare l'aggiornamento"
5390
+
5391
+ #: includes/admin/upgrades/class-manual-upgrade-helper.php:174
5392
+ msgctxt "manual-upgrade"
5393
+ msgid "Pause Upgrade"
5394
+ msgstr "Pausa Aggiornamento"
5395
+
5396
+ #: includes/admin/upgrades/class-manual-upgrade-helper.php:180
5397
+ msgctxt "manual-upgrade"
5398
+ msgid ""
5399
+ "The upgrade was successfully performed. Business Directory Plugin is now "
5400
+ "available."
5401
+ msgstr ""
5402
+ "L'aggiornamento è stato eseguito correttamente. Plugin Business Directory è "
5403
+ "ora disponibile."
5404
+
5405
+ #: includes/admin/upgrades/class-manual-upgrade-helper.php:183
5406
+ msgctxt "manual-upgrade"
5407
+ msgid "Go to \"Directory Admin\""
5408
+ msgstr "Vai a \"Directory Admin\""
5409
+
5410
+ #: includes/admin/upgrades/class-migration.php:29
5411
+ msgctxt "installer"
5412
+ msgid "Migrating Business Directory database to version <version>."
5413
+ msgstr ""
5414
+ "Migrazione del database Business Directory alla versione <version>.</version>"
5415
+
5416
+ #: includes/admin/upgrades/migrations/migration-17_0.php:77
5417
+ msgctxt "installer"
5418
+ msgid ""
5419
+ "Cleaning up stored meta data for Checkbox, Radio and Select fields... (%d "
5420
+ "records left)"
5421
+ msgstr ""
5422
+ "Pulizia dei metadati memorizzati per i campi Checkbox, Radio e Select..... "
5423
+ "(%d record rimasti)"
5424
+
5425
+ #: includes/admin/upgrades/migrations/migration-18_0.php:87
5426
+ msgctxt "installer"
5427
+ msgid "Migrating license information to new format..."
5428
+ msgstr "Migrazione delle informazioni sulla licenza in un nuovo formato....."
5429
+
5430
+ #: includes/admin/upgrades/migrations/migration-18_0.php:196
5431
+ msgctxt "installer"
5432
+ msgid "Migrating email notices to new format..."
5433
+ msgstr "Migrazione degli avvisi e-mail in un nuovo formato....."
5434
+
5435
+ #: includes/admin/upgrades/migrations/migration-18_0.php:207
5436
+ msgctxt "installer"
5437
+ msgid "Migrating fee plans..."
5438
+ msgstr "Migrazione dei piani tariffari....."
5439
+
5440
+ #: includes/admin/upgrades/migrations/migration-18_0.php:251
5441
+ msgctxt "installer"
5442
+ msgid "! Could not migrate fee \"%s\" (%d)"
5443
+ msgstr "! Impossibile migrare il canone \"%s\" (%d)"
5444
+
5445
+ #: includes/admin/upgrades/migrations/migration-18_0.php:324
5446
+ msgctxt "installer"
5447
+ msgid "! Could not migrate payment #%d"
5448
+ msgstr "! Non posso migrare il pagamento #%d"
5449
+
5450
+ #: includes/admin/upgrades/migrations/migration-18_0.php:329
5451
+ msgctxt "installer"
5452
+ msgid "Updating payment items format: %d items remaining..."
5453
+ msgstr ""
5454
+ "Aggiornamento del formato delle voci di pagamento: %d voci rimanenti....."
5455
+
5456
+ #: includes/admin/upgrades/migrations/migration-18_0.php:391
5457
+ msgctxt "installer"
5458
+ msgid "Migrating listing information: %d items remaining..."
5459
+ msgstr ""
5460
+ "Migrazione delle informazioni sull'inserimento nell'elenco: %d articoli "
5461
+ "rimanenti....."
5462
+
5463
+ #: includes/admin/upgrades/migrations/migration-3_2.php:77
5464
+ msgctxt "installer"
5465
+ msgid ""
5466
+ "<b>Business Directory Plugin - Regions Module</b> was disabled because it is "
5467
+ "incompatible with the current version of Business Directory. Please update "
5468
+ "the Regions module."
5469
+ msgstr ""
5470
+ "<b>Business Directory Plugin - Modulo Regioni</b> è stato disabilitato "
5471
+ "perché incompatibile con l'attuale versione di Business Directory. Si prega "
5472
+ "di aggiornare il modulo Regioni."
5473
+
5474
+ #: includes/admin/upgrades/migrations/migration-3_7.php:37
5475
+ msgctxt "installer"
5476
+ msgid "Migrating payments information."
5477
+ msgstr "Migrazione delle informazioni sui pagamenti."
5478
+
5479
+ #: includes/admin/upgrades/migrations/migration-3_7.php:61
5480
+ msgctxt "installer"
5481
+ msgid "Cleaning up listing fees information... %d/%d"
5482
+ msgstr "Pulizia delle informazioni sui piani tariffari.... %d/%d"
5483
+
5484
+ #: includes/admin/upgrades/migrations/migration-3_7.php:119
5485
+ msgctxt "installer"
5486
+ msgid "Migrating previous transactions to new Payments API... %d/%d"
5487
+ msgstr "Migrazione di transazioni precedenti ai nuovi pagamenti API... %d/%d"
5488
+
5489
+ #: includes/admin/upgrades/migrations/migration-3_7.php:148
5490
+ msgctxt "installer"
5491
+ msgid "Initial listing payment (BD < 3.4)"
5492
+ msgstr "Pagamento Annuncio (BD < 3.4)"
5493
+
5494
+ #: includes/admin/upgrades/migrations/migration-3_7.php:159
5495
+ msgctxt "installer"
5496
+ msgid "Listing edit payment (BD < 3.4)"
5497
+ msgstr "Modificare il pagamento dell'annuncio(BD < 3.4)"
5498
+
5499
+ #: includes/admin/upgrades/migrations/migration-3_7.php:180
5500
+ msgctxt "installer"
5501
+ msgid "Renewal fee \"%s\" for category \"%s\""
5502
+ msgstr "Canone di rinnovo \"%s\" per la categoria \"%s\"."
5503
+
5504
+ #: includes/admin/upgrades/migrations/migration-3_7.php:199
5505
+ msgctxt "installer"
5506
+ msgid "Listing upgrade to featured"
5507
+ msgstr "Upgrade ell'annuncio a In Evidenza"
5508
+
5509
+ #: includes/installer.php:79
5510
+ msgctxt "installer"
5511
+ msgid "Default Fee"
5512
+ msgstr "Canone predefinito"
5513
+
5514
+ #: includes/admin/upgrades/migrations/manual-upgrade-18_0-featured-levels.php:160
5515
+ msgctxt "listings-api"
5516
+ msgid "Featured Listing"
5517
+ msgstr "Annuncio in primo piano"
5518
+
5519
+ #: includes/admin/upgrades/migrations/manual-upgrade-18_0-featured-levels.php:170
5520
+ #, fuzzy
5521
+ msgctxt "migrate-18"
5522
+ msgid "Featured Levels migration is complete."
5523
+ msgstr "La migrazione dei livelli consigliati è completa."
5524
+
5525
+ #: includes/admin/upgrades/migrations/manual-upgrade-18_0-featured-levels.php:187
5526
+ msgctxt "migrate-18"
5527
+ msgid ""
5528
+ "Business Directory <b>version 5.0</b> is changing how Featured Levels plugin "
5529
+ "works. We are leaving restricted features for fee plans, but removing the "
5530
+ "confusing notion of a \"featured level\" that was limited to sticky listings."
5531
+ msgstr ""
5532
+ "Business Directory <b>versione 5.0</b> sta cambiando come funziona il plugin "
5533
+ "Featured Levels. Stiamo lasciando delle funzionalità limitate per i piani "
5534
+ "tariffari, ma eliminando la confusa nozione di \"livello di funzionalità\" "
5535
+ "che si limitava agli elenchi in evidenza."
5536
+
5537
+ #: includes/admin/upgrades/migrations/manual-upgrade-18_0-featured-levels.php:189
5538
+ msgctxt "migrate-18"
5539
+ msgid ""
5540
+ "We need to migrate your existing \"featured levels\" to fee plans for use by "
5541
+ "the upgrade. YOUR DATA WILL NOT BE LOST HERE! Our new setup will make it "
5542
+ "easier to configure and manage your listings with restricted feature access. "
5543
+ "If you are unsure about what to do here, <support-link>contact support</"
5544
+ "support-link> and <cancel-link>cancel migration</cancel-link>."
5545
+ msgstr ""
5546
+ "Abbiamo bisogno di migrare i \"livelli di funzionalità\" esistenti in piani "
5547
+ "a pagamento per l'utilizzo da parte dell'aggiornamento. I VOSTRI DATI NON "
5548
+ "ANDRANNO PERSI QUI! La nostra nuova configurazione renderà più facile "
5549
+ "configurare e gestire i tuoi annunci con accesso limitato alle funzioni. Se "
5550
+ "non sei sicuro di cosa fare qui, <support-link>contatta il supporto</support-"
5551
+ "link> e <cancel-link>annulla la migrazione</cancel-link>."
5552
+
5553
+ #: includes/admin/upgrades/migrations/manual-upgrade-18_0-featured-levels.php:191
5554
+ msgctxt "migrate-18"
5555
+ msgid ""
5556
+ "Before we do the migration, we need to ask a few simple questions to move "
5557
+ "your data from the old \"featured level\" to the new \"restricted feature "
5558
+ "fee plan\" that is right for you."
5559
+ msgstr ""
5560
+ "Prima di effettuare la migrazione, abbiamo bisogno di porre alcune semplici "
5561
+ "domande per spostare i vostri dati dal vecchio \"livello di funzionalità\" "
5562
+ "al nuovo \"restricted feature fee plan\" che fa per voi."
5563
+
5564
+ #: includes/admin/upgrades/migrations/manual-upgrade-18_0-featured-levels.php:236
5565
+ msgctxt "migrate-18"
5566
+ msgid "Move to: "
5567
+ msgstr "Muovi in:"
5568
+
5569
+ #: includes/admin/upgrades/migrations/manual-upgrade-18_0-featured-levels.php:246
5570
+ msgctxt "migrate-18"
5571
+ msgid "New plan summary"
5572
+ msgstr "Riassunto Nuovo piano"
5573
+
5574
+ #: includes/admin/upgrades/migrations/manual-upgrade-18_0-featured-levels.php:249
5575
+ msgctxt "migrate-18"
5576
+ msgid "Fee Label"
5577
+ msgstr "Etichetta della Donazione"
5578
+
5579
+ #: includes/admin/upgrades/migrations/manual-upgrade-18_0-featured-levels.php:250
5580
+ msgctxt "migrate-18"
5581
+ msgid "Amount"
5582
+ msgstr "Importo"
5583
+
5584
+ #: includes/admin/upgrades/migrations/manual-upgrade-18_0-featured-levels.php:251
5585
+ msgctxt "migrate-18"
5586
+ msgid "Duration"
5587
+ msgstr "Durata"
5588
+
5589
+ #: includes/admin/upgrades/migrations/manual-upgrade-18_0-featured-levels.php:252
5590
+ msgctxt "migrate-18"
5591
+ msgid "Images"
5592
+ msgstr "Immagini"
5593
+
5594
+ #: includes/admin/upgrades/migrations/manual-upgrade-18_0-featured-levels.php:273
5595
+ msgctxt "migrate-18"
5596
+ msgid "Perform migration"
5597
+ msgstr "Eseguire la migrazione"
5598
+
5599
+ #: includes/admin/upgrades/migrations/manual-upgrade-18_0-featured-levels.php:317
5600
+ msgctxt "migrate-18"
5601
+ msgid "Business Directory Plugin - Featured Levels migration required."
5602
+ msgstr ""
5603
+ "Business Directory Plugin - La migrazione dei livelli in primo piano è "
5604
+ "richiesta."
5605
+
5606
+ #: includes/admin/upgrades/migrations/manual-upgrade-18_0-featured-levels.php:322
5607
+ msgctxt "migrate-18"
5608
+ msgid ""
5609
+ "Featured levels were removed in 5.0. You need to perform your <a>Featured "
5610
+ "Levels migration here</a>."
5611
+ msgstr ""
5612
+ "I livelli consigliati sono stati rimossi in 5.0. È necessario eseguire "
5613
+ "<a>qui la migrazione dei livelli consigliati</a>."
5614
+
5615
+ #: includes/admin/upgrades/migrations/manual-upgrade-18_0-featured-levels.php:172
5616
+ msgctxt "upgrade-18"
5617
+ msgid "← Return to Directory dashboard"
5618
+ msgstr "← Ritorno al dashboard della Directory"
5619
+
5620
+ #: includes/admin/upgrades/migrations/manual-upgrade-18_0-featured-levels.php:183
5621
+ msgctxt "upgrade-18"
5622
+ msgid "Configure Plan"
5623
+ msgstr "Configurare il piano"
5624
+
5625
+ #: includes/admin/upgrades/migrations/manual-upgrade-18_0-featured-levels.php:209
5626
+ msgctxt "upgrade-18"
5627
+ msgid "Featured Level"
5628
+ msgstr "Livello in primo piano"
5629
+
5630
+ #: includes/admin/upgrades/migrations/manual-upgrade-18_0-featured-levels.php:210
5631
+ msgctxt "upgrade-18"
5632
+ msgid "What to do with it?"
5633
+ msgstr "Cosa traccia?"
5634
+
5635
+ #: includes/admin/upgrades/migrations/manual-upgrade-18_0-featured-levels.php:219
5636
+ msgctxt "upgrade-18"
5637
+ msgid "%d listing is on this level."
5638
+ msgid_plural "%d listings are on this level."
5639
+ msgstr[0] "%d annuncio è a questo livello."
5640
+ msgstr[1] "%d annunci sono a questo livello."
5641
+
5642
+ #: includes/admin/upgrades/migrations/manual-upgrade-18_0-featured-levels.php:223
5643
+ msgctxt "upgrade-18"
5644
+ msgid "Select an option"
5645
+ msgstr "Seleziona un'opzione"
5646
+
5647
+ #: includes/admin/upgrades/migrations/manual-upgrade-18_0-featured-levels.php:224
5648
+ msgctxt "upgrade-18"
5649
+ msgid "Remove \"sticky\" status for listings."
5650
+ msgstr "Rimuovere lo stato \"in evidenza\" per gli annunci."
5651
+
5652
+ #: includes/admin/upgrades/migrations/manual-upgrade-18_0-featured-levels.php:224
5653
+ msgctxt "upgrade-18"
5654
+ msgid "Remove this (old) level, and leave the listing on the old fee plan."
5655
+ msgstr ""
5656
+ "Rimuovi questo (vecchio) livello e lascia l'elenco del vecchio piano "
5657
+ "tariffario."
5658
+
5659
+ #: includes/admin/upgrades/migrations/manual-upgrade-18_0-featured-levels.php:227
5660
+ msgctxt "upgrade-18"
5661
+ msgid "May change \"sticky\" status depending on fee plan."
5662
+ msgstr "Può cambiare lo stato \"in evidenza\" a seconda del piano tariffario."
5663
+
5664
+ #: includes/admin/upgrades/migrations/manual-upgrade-18_0-featured-levels.php:227
5665
+ msgctxt "upgrade-18"
5666
+ msgid "Move listings with this level to existing fee plan."
5667
+ msgstr "Spostare gli annunci con questo livello al piano tariffario esistente."
5668
+
5669
+ #: includes/admin/upgrades/migrations/manual-upgrade-18_0-featured-levels.php:229
5670
+ msgctxt "upgrade-18"
5671
+ msgid "Keep \"sticky\" status of listings."
5672
+ msgstr "Mantenere lo stato \"in evidenza\" degli annunci."
5673
+
5674
+ #: includes/admin/upgrades/migrations/manual-upgrade-18_0-featured-levels.php:229
5675
+ msgctxt "upgrade-18"
5676
+ msgid "Replace this level with a new fee plan."
5677
+ msgstr "Sostituire questo livello con un nuovo piano tariffario."
5678
+
5679
+ #: includes/class-cpt-integration.php:16
5680
+ msgctxt "post type general name"
5681
+ msgid "Directory"
5682
+ msgstr "Directory"
5683
+
5684
+ #: includes/class-cpt-integration.php:17
5685
+ msgctxt "post type singular name"
5686
+ msgid "Listing"
5687
+ msgstr "Annuncio"
5688
+
5689
+ #: includes/class-cpt-integration.php:18
5690
+ msgctxt "listing"
5691
+ msgid "Add New Listing"
5692
+ msgstr "Aggiungi Nuovo Annuncio"
5693
+
5694
+ #: includes/class-listing.php:305
5695
+ msgctxt "listing"
5696
+ msgid "Listing has no registered payments"
5697
+ msgstr "L'annuncio non ha pagamenti registrati"
5698
+
5699
+ #: includes/class-listing.php:313
5700
+ msgctxt "listing"
5701
+ msgid "Can't delete payment"
5702
+ msgstr "Non è possibile cancellare il pagamento"
5703
+
5704
+ #: includes/class-listing.php:352
5705
+ msgctxt "listing"
5706
+ msgid "Listing expired"
5707
+ msgstr "Annuncio scaduto"
5708
+
5709
+ #: includes/class-listing.php:511
5710
+ msgctxt "listing"
5711
+ msgid "(Unavailable Plan)"
5712
+ msgstr "(Piano non disponibile)"
5713
+
5714
+ #: includes/class-listing.php:668
5715
+ msgctxt "listing"
5716
+ msgid "Plan \"%s\" (recurring)"
5717
+ msgstr "Piano \"%s\" (ricorrente)"
5718
+
5719
+ #: includes/class-listing.php:670
5720
+ msgctxt "listing"
5721
+ msgid "Plan \"%s\""
5722
+ msgstr "Piano \"%s\"."
5723
+
5724
+ #: includes/class-cpt-integration.php:19
5725
+ msgctxt "post type"
5726
+ msgid "Add New Listing"
5727
+ msgstr "Aggiungi Nuovo Annuncio"
5728
+
5729
+ #: includes/class-fee-plan.php:164
5730
+ msgctxt "fee plan"
5731
+ msgid "No images allowed."
5732
+ msgstr "Numero di immagini consentite"
5733
+
5734
+ #: includes/class-fee-plan.php:166
5735
+ msgctxt "fee plan"
5736
+ msgid "%d image allowed."
5737
+ msgid_plural "%d images allowed."
5738
+ msgstr[0] "%d immagine consentita."
5739
+ msgstr[1] "%d immagini consentite."
5740
+
5741
+ #: includes/class-fee-plan.php:320
5742
+ msgctxt "fees-api"
5743
+ msgid "Fee label is required."
5744
+ msgstr "È richiesta l'etichetta della Donazione."
5745
+
5746
+ #: includes/class-fee-plan.php:326
5747
+ msgctxt "fees-api"
5748
+ msgid "Fee listing duration must be a number less than 10 years (3650 days)."
5749
+ msgstr ""
5750
+ "Il canone per l'annuncio deve essere inferiore a 10 anni (3650 giorni)."
5751
+
5752
+ #: includes/class-fee-plan.php:331
5753
+ msgctxt "fees-api"
5754
+ msgid ""
5755
+ "To set this fee as \"Recurring\" you must have a time for the listing to "
5756
+ "renew (e.g. 30 days). To avoid issues with the listing, please edit the "
5757
+ "<a>fee plan</a> appropriately."
5758
+ msgstr ""
5759
+ "Per impostare questo canone come \"Ricorrente\" è necessario disporre di un "
5760
+ "tempo per rinnovare l'annuncio (es. 30 giorni). Per evitare problemi con "
5761
+ "l'inserimento dell'annuncio, si prega di modificare il <a>piano tariffario</"
5762
+ "a> in modo appropriato."
5763
+
5764
+ #: includes/class-fee-plan.php:334
5765
+ msgctxt "fees-api"
5766
+ msgid ""
5767
+ "To set this fee as \"Recurring\" you must set a price for your fee plan. To "
5768
+ "avoid issues with the listing, please edit the <a>fee plan</a> appropriately."
5769
+ msgstr ""
5770
+ "Per impostare questa tassa come \"Ricorrente\" è necessario impostare un "
5771
+ "prezzo per il vostro piano tariffario. Per evitare problemi con "
5772
+ "l'inserimento nell'elenco, si prega di modificare il <a>piano tariffario</a> "
5773
+ "in modo appropriato."
5774
+
5775
+ #: includes/class-fees-api.php:61
5776
+ msgctxt "fees-api"
5777
+ msgid "Free Listing"
5778
+ msgstr "Listing gratuito"
5779
+
5780
+ #. translators: [%s] is the name of the blog.
5781
+ #: includes/class-listing-email-notification.php:234
5782
+ msgctxt "notify email"
5783
+ msgid "[%s] New listing notification"
5784
+ msgstr "[%s] Notifica nuovo Annuncio"
5785
+
5786
+ #. translators: [%s] is the name of the blog.
5787
+ #: includes/class-listing-email-notification.php:285
5788
+ msgctxt "notify email"
5789
+ msgid "[%s] Listing edit notification"
5790
+ msgstr "[%s] Notifica modifica Annuncio"
5791
+
5792
+ #. translators: %s is the name of the blog.
5793
+ #: includes/class-listing-email-notification.php:357
5794
+ msgctxt "notify email"
5795
+ msgid "[%s] Reported listing notification"
5796
+ msgstr "[%s] Notifica segnalazione annuncio"
5797
+
5798
+ #: templates/email/listing-added.tpl.php:7
5799
+ #: templates/email/listing-edited.tpl.php:13
5800
+ #: templates/email/listing-reported.tpl.php:9
5801
+ msgctxt "notify email"
5802
+ msgid "ID"
5803
+ msgstr "ID"
5804
+
5805
+ #: templates/email/listing-added.tpl.php:10
5806
+ #: templates/email/listing-edited.tpl.php:16
5807
+ #: templates/email/listing-reported.tpl.php:11
5808
+ msgctxt "notify email"
5809
+ msgid "Title"
5810
+ msgstr "Titolo"
5811
+
5812
+ #: templates/email/listing-added.tpl.php:13
5813
+ #: templates/email/listing-edited.tpl.php:19
5814
+ #: templates/email/listing-reported.tpl.php:13
5815
+ msgctxt "notify email"
5816
+ msgid "URL"
5817
+ msgstr "URL"
5818
+
5819
+ #: templates/email/listing-added.tpl.php:13
5820
+ #: templates/email/listing-edited.tpl.php:19
5821
+ #: templates/email/listing-reported.tpl.php:13
5822
+ msgctxt "notify email"
5823
+ msgid "(not published yet)"
5824
+ msgstr "(non ancora pubblicato)"
5825
+
5826
+ #: templates/email/listing-added.tpl.php:15
5827
+ #: templates/email/listing-edited.tpl.php:21
5828
+ #: templates/email/listing-reported.tpl.php:15
5829
+ msgctxt "notify email"
5830
+ msgid "Admin URL"
5831
+ msgstr "URL amministratore"
5832
+
5833
+ #: templates/email/listing-added.tpl.php:21
5834
+ #: templates/email/listing-edited.tpl.php:29
5835
+ msgctxt "notify email"
5836
+ msgid "Category"
5837
+ msgid_plural "Categories"
5838
+ msgstr[0] "Categoria"
5839
+ msgstr[1] "Categorie"
5840
+
5841
+ #: templates/email/listing-added.tpl.php:27
5842
+ #: templates/email/listing-edited.tpl.php:32
5843
+ #: templates/email/listing-reported.tpl.php:19
5844
+ msgctxt "notify email"
5845
+ msgid "Posted By"
5846
+ msgstr "Pubblicato da"
5847
+
5848
+ #: templates/email/listing-added.tpl.php:36
5849
+ msgctxt "notify email"
5850
+ msgid "Annonymous User"
5851
+ msgstr "Utente Annonimo"
5852
+
5853
+ #: templates/email/listing-reported.tpl.php:7
5854
+ msgctxt "notify email"
5855
+ msgid "Listing information"
5856
+ msgstr "Informazioni sull'annuncio"
5857
+
5858
+ #: templates/email/listing-reported.tpl.php:17
5859
+ msgctxt "notify email"
5860
+ msgid "Categories"
5861
+ msgstr "Categorie"
5862
+
5863
+ #: templates/email/listing-reported.tpl.php:21
5864
+ msgctxt "notify email"
5865
+ msgid "Report Information"
5866
+ msgstr "Segnala informazioni"
5867
+
5868
+ #: templates/email/listing-reported.tpl.php:24
5869
+ msgctxt "notify email"
5870
+ msgid "User name"
5871
+ msgstr "Nome utente"
5872
+
5873
+ #: templates/email/listing-reported.tpl.php:28
5874
+ msgctxt "notify email"
5875
+ msgid "User Email"
5876
+ msgstr "Email utente"
5877
+
5878
+ #: templates/email/listing-reported.tpl.php:31
5879
+ msgctxt "notify email"
5880
+ msgid "Report IP"
5881
+ msgstr "Rapporto IP"
5882
+
5883
+ #: templates/email/listing-reported.tpl.php:33
5884
+ msgctxt "notify email"
5885
+ msgid "Report selected option"
5886
+ msgstr "Segnala l'opzione selezionata"
5887
+
5888
+ #: templates/email/listing-reported.tpl.php:35
5889
+ msgctxt "notify email"
5890
+ msgid "Report additional info"
5891
+ msgstr "Segnala ulteriori informazioni"
5892
+
5893
+ #: includes/class-listings-api.php:39
5894
+ msgctxt "listings api"
5895
+ msgid "Listing renewed"
5896
+ msgstr "Annuncio rinnovato"
5897
+
5898
+ #: includes/class-meta.php:37
5899
+ #, fuzzy
5900
+ msgctxt "rss feed"
5901
+ msgid "%s Feed"
5902
+ msgstr "%s Mangimi"
5903
+
5904
+ #: includes/class-meta.php:155 includes/views/submit_listing.php:31
5905
+ msgctxt "views"
5906
+ msgid "Submit A Listing"
5907
+ msgstr "Inserisci un annuncio"
5908
+
5909
+ #: includes/class-view.php:103
5910
+ msgctxt "views"
5911
+ msgid "Invalid credentials."
5912
+ msgstr "Credenziali non valide."
5913
+
5914
+ #: includes/views/all_listings.php:6
5915
+ msgctxt "views"
5916
+ msgid "View All Listings"
5917
+ msgstr "Visualizza tutti gli annunci"
5918
+
5919
+ #: includes/views/search.php:15
5920
+ msgctxt "views"
5921
+ msgid "Find A Listing"
5922
+ msgstr "Trova un annuncio"
5923
+
5924
+ #: includes/class-meta.php:160
5925
+ msgctxt "title"
5926
+ msgid "Find a Listing"
5927
+ msgstr "Trova un annuncio"
5928
+
5929
+ #: includes/class-meta.php:165
5930
+ msgctxt "title"
5931
+ msgid "View All Listings"
5932
+ msgstr "Visualizza tutti gli annunci"
5933
+
5934
+ #: includes/class-meta.php:194
5935
+ msgctxt "title"
5936
+ msgid "Listings tagged: %s"
5937
+ msgstr "Annunci taggati: %s"
5938
+
5939
+ #: includes/class-payment-gateways.php:84
5940
+ msgctxt "payment-gateways"
5941
+ msgid "Enable %s?"
5942
+ msgstr "Attivare %s?"
5943
+
5944
+ #: includes/class-payment-gateways.php:115
5945
+ msgctxt "payment-gateways"
5946
+ msgid ""
5947
+ "The <gateway> gateway is enabled but not properly configured. The gateway "
5948
+ "won't be available until the following problems are fixed: <problems>."
5949
+ msgstr ""
5950
+ "Il <gateway>gateway è abilitato ma non configurato correttamente. Il gateway "
5951
+ "non sarà disponibile fino a quando i seguenti problemi non saranno stati "
5952
+ "risolti: <problems>."
5953
+
5954
+ #: includes/class-payment-gateways.php:117
5955
+ msgctxt "payment-gateways"
5956
+ msgid "Please check the <link>payment settings</link>."
5957
+ msgstr "Si prega di controllare le <link>impostazioni di pagamento</link>."
5958
+
5959
+ #: includes/class-payment-gateways.php:128
5960
+ msgctxt "payment-gateways"
5961
+ msgid ""
5962
+ "You have payments turned on but no gateway is active and properly "
5963
+ "configured. Go to <link>Manage Options - Payment</link> to change the "
5964
+ "payment settings. Until you change this, the directory will operate in "
5965
+ "<i>Free Mode</i>."
5966
+ msgstr ""
5967
+ "I pagamenti sono attivati ma nessun gateway è attivo e configurato "
5968
+ "correttamente. Vai a <link>Gestione Opzioni - Pagamento</link> per "
5969
+ "modificare le impostazioni di pagamento. Fino a quando non viene modificato, "
5970
+ "la directory funzionerà in <i>modalità libera</i>."
5971
+
5972
+ #: includes/class-payment.php:82
5973
+ #, fuzzy
5974
+ msgctxt "payment"
5975
+ msgid "Payment status changed from \"%1$s\" to \"%2$s\"."
5976
+ msgstr "Lo stato del pagamento è cambiato da \"%s\" a \"%s\"."
5977
+
5978
+ #: includes/class-payment.php:123
5979
+ msgctxt "payment"
5980
+ msgid "Initial payment (\"%s\")"
5981
+ msgstr "Pagamento iniziale (\"%s\")"
5982
+
5983
+ #: includes/class-payment.php:126
5984
+ msgctxt "payment"
5985
+ msgid "Renewal payment (\"%s\")"
5986
+ msgstr "Pagamento del rinnovo (\"%s\")"
5987
+
5988
+ #: includes/class-payment.php:313
5989
+ msgctxt "payment"
5990
+ msgid "Pending"
5991
+ msgstr "In attesa"
5992
+
5993
+ #: includes/class-payment.php:314
5994
+ msgctxt "payment"
5995
+ msgid "Failed"
5996
+ msgstr "Fallito"
5997
+
5998
+ #: includes/class-payment.php:315
5999
+ msgctxt "payment"
6000
+ msgid "Completed"
6001
+ msgstr "Completato"
6002
+
6003
+ #: includes/class-payment.php:316
6004
+ msgctxt "payment"
6005
+ msgid "Canceled"
6006
+ msgstr "Annullato"
6007
+
6008
+ #: includes/class-payment.php:317
6009
+ msgctxt "payment"
6010
+ msgid "On Hold"
6011
+ msgstr "In attesa"
6012
+
6013
+ #: includes/class-payment.php:318
6014
+ msgctxt "payment"
6015
+ msgid "Refunded"
6016
+ msgstr "Rimborsato"
6017
+
6018
+ #: includes/class-payment.php:138
6019
+ msgctxt "payment summary"
6020
+ msgid "%s. Admin Posted."
6021
+ msgstr "%s. Pubblicato dall'Amministratore"
6022
+
6023
+ #: includes/class-payment.php:140
6024
+ msgctxt "payment summary"
6025
+ msgid "%s. Imported Listing."
6026
+ msgstr "%s. Annuncio importato"
6027
+
6028
+ #: includes/class-payment.php:218
6029
+ msgctxt "submit listing"
6030
+ msgid "Listing submitted by admin. Payment skipped."
6031
+ msgstr "Annuncio presentato da admin. Pagamento saltato."
6032
+
6033
+ #: includes/views/submit_listing.php:63
6034
+ msgctxt "submit listing"
6035
+ msgid "Click this field to add categories"
6036
+ msgstr "Clicca su questo campo per aggiungere categorie"
6037
+
6038
+ #: includes/views/submit_listing.php:64 templates/submit-listing.tpl.php:23
6039
+ msgctxt "submit listing"
6040
+ msgid "Complete Listing"
6041
+ msgstr "Completa Annuncio"
6042
+
6043
+ #: includes/views/submit_listing.php:65 templates/submit-listing.tpl.php:28
6044
+ msgctxt "submit listing"
6045
+ msgid "Continue to Payment"
6046
+ msgstr "Continua a Pagamento"
6047
+
6048
+ #: includes/views/submit_listing.php:67
6049
+ msgctxt "submit listing"
6050
+ msgid "Please wait a moment!"
6051
+ msgstr "Per favore, aspetta un momento!"
6052
+
6053
+ #: includes/views/submit_listing.php:68
6054
+ msgctxt "submit listing"
6055
+ msgid "Something went wrong!"
6056
+ msgstr "Qualcosa è andato storto!"
6057
+
6058
+ #: includes/views/submit_listing.php:89
6059
+ msgctxt "submit listing"
6060
+ msgid "No listing ID was specified."
6061
+ msgstr "Non è stato specificato alcun ID annuncio."
6062
+
6063
+ #: includes/views/submit_listing.php:91
6064
+ msgctxt "submit listing"
6065
+ msgid "You can't edit this listing."
6066
+ msgstr "Non è possibile modificare questo annuncio."
6067
+
6068
+ #: includes/views/submit_listing.php:136
6069
+ msgctxt "submit listing"
6070
+ msgid ""
6071
+ "This listing can't be edited at this time because it has no fee plan "
6072
+ "associated. Please <a>edit the listing</a> on the backend and associate it "
6073
+ "to a fee plan."
6074
+ msgstr ""
6075
+ "Questo annuncio non può essere modificato in questo momento perché non ha un "
6076
+ "piano tariffario associato. Si prega di <a>modificare l'annuncio</a> dal "
6077
+ "backend e di associarlo a un piano tariffario."
6078
+
6079
+ #: includes/views/submit_listing.php:141
6080
+ msgctxt "submit listing"
6081
+ msgid ""
6082
+ "This listing can't be edited at this time. Please try again later or contact "
6083
+ "the admin if the problem persists."
6084
+ msgstr ""
6085
+ "Questo annuncio non può essere modificato in questo momento. Riprovare più "
6086
+ "tardi o contattare l'amministratore se il problema persiste."
6087
+
6088
+ #: includes/views/submit_listing.php:164
6089
+ msgctxt "submit listing"
6090
+ msgid "You're logged in as admin, payment will be skipped."
6091
+ msgstr "Sei loggato come amministratore, il pagamento verrà saltato."
6092
+
6093
+ #: includes/views/submit_listing.php:388
6094
+ msgctxt "submit listing"
6095
+ msgid "Category selection"
6096
+ msgstr "Selezione della categoria"
6097
+
6098
+ #: includes/views/submit_listing.php:388
6099
+ msgctxt "submit listing"
6100
+ msgid "Category & plan selection"
6101
+ msgstr "Selezione di categorie e piani"
6102
+
6103
+ #: includes/views/submit_listing.php:393
6104
+ msgctxt "submit listing"
6105
+ msgid "Listing Information"
6106
+ msgstr "Informazioni sull'annuncio"
6107
+
6108
+ #: includes/views/submit_listing.php:398
6109
+ msgctxt "submit listing"
6110
+ msgid "Listing Images"
6111
+ msgstr "Immagini annuncio"
6112
+
6113
+ #: includes/views/submit_listing.php:406
6114
+ msgctxt "submit listing"
6115
+ msgid "Account Creation"
6116
+ msgstr "Creazione account"
6117
+
6118
+ #: includes/views/submit_listing.php:412
6119
+ msgctxt "submit listing"
6120
+ msgid "Terms and Conditions"
6121
+ msgstr "Termini e Condizioni"
6122
+
6123
+ #: includes/views/submit_listing.php:449
6124
+ msgctxt "submit listing"
6125
+ msgid "(Please choose a fee plan above)"
6126
+ msgstr "(Si prega di scegliere un piano tariffario di cui sopra)"
6127
+
6128
+ #: includes/views/submit_listing.php:499
6129
+ msgctxt "submit listing"
6130
+ msgid "Can not submit a listing at this moment. Please try again later."
6131
+ msgstr ""
6132
+ "Non è possibile inviare un annuncio in questo momento. Per favore, riprova "
6133
+ "più tardi."
6134
+
6135
+ #: includes/views/submit_listing.php:527
6136
+ msgctxt "submit listing"
6137
+ msgid "Please select a category."
6138
+ msgstr "Per favore seleziona una categoria."
6139
+
6140
+ #: includes/views/submit_listing.php:540
6141
+ msgctxt "submit listing"
6142
+ msgid "Please select a category for your listing."
6143
+ msgstr "Seleziona una categoria per il tuo annuncio."
6144
+
6145
+ #: includes/views/submit_listing.php:560
6146
+ msgctxt "submit listing"
6147
+ msgid "Please choose a valid category for your plan."
6148
+ msgstr "Scegli una categoria valida per il tuo piano."
6149
+
6150
+ #: includes/views/submit_listing.php:562
6151
+ msgctxt "submit listing"
6152
+ msgid "Please choose a valid fee plan for your category selection."
6153
+ msgstr ""
6154
+ "Si prega di scegliere un piano tariffario valido per la selezione della "
6155
+ "categoria."
6156
+
6157
+ #: includes/views/submit_listing.php:803
6158
+ msgctxt "submit listing"
6159
+ msgid "Please enter your desired username."
6160
+ msgstr "Inserisci il nome utente desiderato."
6161
+
6162
+ #: includes/views/submit_listing.php:808
6163
+ msgctxt "submit listing"
6164
+ msgid "Please enter the e-mail for your new account."
6165
+ msgstr "Inserisci l'e-mail per il tuo nuovo account."
6166
+
6167
+ #: includes/views/submit_listing.php:813
6168
+ msgctxt "submit listing"
6169
+ msgid "Please enter the password for your new account."
6170
+ msgstr "Inserisci la password per il tuo nuovo account."
6171
+
6172
+ #: includes/views/submit_listing.php:823
6173
+ msgctxt "submit listing"
6174
+ msgid "The username you chose is already in use. Please use a different one."
6175
+ msgstr "Il nome utente scelto è già in uso. Per favore, usane un'altra."
6176
+
6177
+ #: includes/views/submit_listing.php:828
6178
+ msgctxt "submit listing"
6179
+ msgid "The e-mail address you chose for your account is already in use."
6180
+ msgstr "L'indirizzo e-mail scelto per il tuo account è già in uso."
6181
+
6182
+ #: includes/views/submit_listing.php:843
6183
+ msgctxt "submit listing"
6184
+ msgid "Create a user account on this site"
6185
+ msgstr "Creare un account utente su questo sito"
6186
+
6187
+ #: includes/views/submit_listing.php:850
6188
+ msgctxt "submit listing"
6189
+ msgid ""
6190
+ "You need to create an account on the site. Please fill out the form below."
6191
+ msgstr ""
6192
+ "È necessario creare un account sul sito. Si prega di compilare il modulo "
6193
+ "sottostante."
6194
+
6195
+ #: includes/views/submit_listing.php:856
6196
+ msgctxt "submit listing"
6197
+ msgid "Username:"
6198
+ msgstr "Nome utente:"
6199
+
6200
+ #: includes/views/submit_listing.php:865
6201
+ msgctxt "submit listing"
6202
+ msgid "Email:"
6203
+ msgstr "Email:"
6204
+
6205
+ #: includes/views/submit_listing.php:874
6206
+ msgctxt "submit listing"
6207
+ msgid "Password:"
6208
+ msgstr "Password:"
6209
+
6210
+ #: templates/submit-listing-images-single.tpl.php:14
6211
+ msgctxt "submit listing"
6212
+ msgid "Delete image"
6213
+ msgstr "Elimina immagine"
6214
+
6215
+ #: templates/submit-listing-images-single.tpl.php:21
6216
+ msgctxt "submit listing"
6217
+ msgid "Image caption or description"
6218
+ msgstr "Didascalia o descrizione dell'immagine"
6219
+
6220
+ #: templates/submit-listing-plan-selection.tpl.php:55
6221
+ msgctxt "submit listing"
6222
+ msgid "Continue"
6223
+ msgstr "Continua"
6224
+
6225
+ #: templates/submit-listing.tpl.php:10
6226
+ msgctxt "submit listing"
6227
+ msgid "Submit A Listing"
6228
+ msgstr "Inserisci un annuncio"
6229
+
6230
+ #: templates/submit-listing.tpl.php:21
6231
+ msgctxt "submit listing"
6232
+ msgid "Clear Form"
6233
+ msgstr "Cancella"
6234
+
6235
+ #: templates/submit-listing.tpl.php:26
6236
+ msgctxt "submit listing"
6237
+ msgid "Save Changes"
6238
+ msgstr "Salva modifiche"
6239
+
6240
+ #: includes/class-recaptcha.php:36
6241
+ msgctxt "recaptcha"
6242
+ msgid "The reCAPTCHA wasn't entered correctly."
6243
+ msgstr "Il reCAPTCHA non è stato inserito correttamente."
6244
+
6245
+ #: includes/class-recaptcha.php:36
6246
+ msgctxt "recaptcha"
6247
+ msgid "The reCAPTCHA validation score failed."
6248
+ msgstr "Il punteggio di convalida reCAPTCHA non è riuscito."
6249
+
6250
+ #: includes/class-recaptcha.php:247
6251
+ msgctxt "recaptcha"
6252
+ msgid "reCAPTCHA"
6253
+ msgstr "reCAPTCHA"
6254
+
6255
+ #: includes/class-wpbdp.php:254
6256
+ msgctxt "admin plugins"
6257
+ msgid "Settings"
6258
+ msgstr "Impostazioni"
6259
+
6260
+ #: includes/class-wpbdp.php:337
6261
+ msgctxt "listing image upload"
6262
+ msgid "Can not upload any more images for this listing."
6263
+ msgstr "Non è possibile caricare altre immagini per questo annuncio."
6264
+
6265
+ #: includes/class-wpbdp.php:341
6266
+ msgctxt "listing image upload"
6267
+ msgid ""
6268
+ "You're trying to upload %d images, but only have %d slot available. Please "
6269
+ "adjust your selection."
6270
+ msgid_plural ""
6271
+ "You're trying to upload %d images, but only have %d slots available. Please "
6272
+ "adjust your selection."
6273
+ msgstr[0] ""
6274
+ "Stai cercando di caricare %d immagini, ma hai solo %d slot disponibile. Si "
6275
+ "prega di modificare la selezione."
6276
+ msgstr[1] ""
6277
+ "Stai cercando di caricare %d immagini, ma hai solo %d slot disponibili. Si "
6278
+ "prega di modificare la selezione."
6279
+
6280
+ #: includes/compatibility/class-navxt-integration.php:196
6281
+ msgctxt "navxt"
6282
+ msgid "Submit Listing"
6283
+ msgstr "Invia annuncio"
6284
+
6285
+ #: includes/compatibility/class-navxt-integration.php:200
6286
+ msgctxt "navxt"
6287
+ msgid "Edit Listing"
6288
+ msgstr "Modifica Annuncio"
6289
+
6290
+ #: includes/compatibility/class-navxt-integration.php:204
6291
+ msgctxt "navxt"
6292
+ msgid "Search"
6293
+ msgstr "Cerca"
6294
+
6295
+ #: includes/fields/class-fieldtypes-checkbox.php:22
6296
+ msgctxt "form-fields api"
6297
+ msgid "Checkbox"
6298
+ msgstr "Checkbox"
6299
+
6300
+ #: includes/fields/class-fieldtypes-date.php:14
6301
+ msgctxt "form-fields api"
6302
+ msgid "Date Field"
6303
+ msgstr "Campo data"
6304
+
6305
+ #: includes/fields/class-fieldtypes-date.php:41
6306
+ msgctxt "form-fields api"
6307
+ msgid "Date Format"
6308
+ msgstr "Formato data"
6309
+
6310
+ #: includes/fields/class-fieldtypes-facebook.php:6
6311
+ msgctxt "form-fields api"
6312
+ msgid "Social Site (Facebook page)"
6313
+ msgstr "Sito sociale (pagina Facebook)"
6314
+
6315
+ #: includes/fields/class-fieldtypes-image.php:13
6316
+ msgctxt "form-fields api"
6317
+ msgid "Image (file upload)"
6318
+ msgstr "Immagine (caricamento file)"
6319
+
6320
+ #: includes/fields/class-fieldtypes-linkedin.php:16
6321
+ msgctxt "form-fields api"
6322
+ msgid "Social Site (LinkedIn profile)"
6323
+ msgstr "Sito sociale (profilo LinkedIn)"
6324
+
6325
+ #: includes/fields/class-fieldtypes-linkedin.php:31
6326
+ msgctxt "form-fields api"
6327
+ msgid "You can add your Company ID or profile URL here."
6328
+ msgstr "Qui puoi aggiungere l'ID del tuo Annuncio o l'URL del tuo profilo."
6329
+
6330
+ #: includes/fields/class-fieldtypes-multiselect.php:6
6331
+ msgctxt "form-fields api"
6332
+ msgid "Multiple select list"
6333
+ msgstr "Elenco di selezione multipla"
6334
+
6335
+ #: includes/fields/class-fieldtypes-multiselect.php:11
6336
+ msgctxt "form-fields api"
6337
+ msgid "Multiselect List"
6338
+ msgstr "Lista Multiselect"
6339
+
6340
+ #: includes/fields/class-fieldtypes-radiobutton.php:22
6341
+ msgctxt "form-fields api"
6342
+ msgid "Radio button"
6343
+ msgstr "Radio button"
6344
+
6345
+ #: includes/fields/class-fieldtypes-select.php:28
6346
+ msgctxt "form-fields api"
6347
+ msgid "Select List"
6348
+ msgstr "Seleziona l'elenco"
6349
+
6350
+ #: includes/fields/class-fieldtypes-social.php:35
6351
+ msgctxt "form-fields api"
6352
+ msgid "Social Site (Other)"
6353
+ msgstr "Sito Sociale (Altro)"
6354
+
6355
+ #: includes/fields/class-fieldtypes-social.php:95
6356
+ #: includes/fields/class-fieldtypes-url.php:149
6357
+ msgctxt "form-fields api"
6358
+ msgid "URL:"
6359
+ msgstr "URL:"
6360
+
6361
+ #: includes/fields/class-fieldtypes-social.php:115
6362
+ msgctxt "form-fields api"
6363
+ msgid "Text:"
6364
+ msgstr "Testo:"
6365
+
6366
+ #: includes/fields/class-fieldtypes-social.php:122
6367
+ #, fuzzy
6368
+ msgctxt "form-fields api"
6369
+ msgid "Text to be displayed for social field"
6370
+ msgstr "Testo da visualizzare insieme all'icona"
6371
+
6372
+ #: includes/fields/class-fieldtypes-social.php:140
6373
+ msgctxt "form-fields api"
6374
+ msgid "Type:"
6375
+ msgstr "Tipo:"
6376
+
6377
+ #: includes/fields/class-fieldtypes-textarea.php:16
6378
+ msgctxt "form-fields api"
6379
+ msgid "Textarea"
6380
+ msgstr "Area di testo"
6381
+
6382
+ #: includes/fields/class-fieldtypes-textfield.php:13
6383
+ msgctxt "form-fields api"
6384
+ msgid "Textfield"
6385
+ msgstr "Campo di testo"
6386
+
6387
+ #: includes/fields/class-fieldtypes-textfield.php:50
6388
+ msgctxt "form-fields api"
6389
+ msgid "Format 01/31/1969"
6390
+ msgstr "Formato 01/31/1969"
6391
+
6392
+ #: includes/fields/class-fieldtypes-twitter.php:6
6393
+ msgctxt "form-fields api"
6394
+ msgid "Social Site (Twitter handle)"
6395
+ msgstr "Sito sociale (Twitter)"
6396
+
6397
+ #: includes/fields/class-fieldtypes-url.php:18
6398
+ msgctxt "form-fields api"
6399
+ msgid "URL Field"
6400
+ msgstr "Campo URL"
6401
+
6402
+ #: includes/fields/class-fieldtypes-url.php:157
6403
+ msgctxt "form-fields api"
6404
+ msgid "Link Text (optional):"
6405
+ msgstr "Link Text (opzionale):"
6406
+
6407
+ #: includes/fields/class-form-field.php:696
6408
+ msgctxt "form-fields api"
6409
+ msgid ""
6410
+ "This form field can't be deleted because it is required for the plugin to "
6411
+ "work."
6412
+ msgstr ""
6413
+ "Questo campo del form non può essere cancellato perché è necessario perché "
6414
+ "il plugin funzioni."
6415
+
6416
+ #: includes/form-fields.php:41
6417
+ msgctxt "form-fields api"
6418
+ msgid "Post Title"
6419
+ msgstr "Titolo Post"
6420
+
6421
+ #: includes/form-fields.php:42
6422
+ msgctxt "form-fields api"
6423
+ msgid "Post Content"
6424
+ msgstr "Contenuto Post"
6425
+
6426
+ #: includes/form-fields.php:43
6427
+ msgctxt "form-fields api"
6428
+ msgid "Post Excerpt"
6429
+ msgstr "Estratto Articoli"
6430
+
6431
+ #: includes/form-fields.php:44
6432
+ msgctxt "form-fields api"
6433
+ msgid "Post Category"
6434
+ msgstr "Categoria Articolo"
6435
+
6436
+ #: includes/form-fields.php:45
6437
+ msgctxt "form-fields api"
6438
+ msgid "Post Tags"
6439
+ msgstr "Tag Articolo"
6440
+
6441
+ #: includes/form-fields.php:46
6442
+ msgctxt "form-fields api"
6443
+ msgid "Post Metadata"
6444
+ msgstr "Metadata articolo"
6445
+
6446
+ #: includes/form-fields.php:48
6447
+ msgctxt "form-fields api"
6448
+ msgid "Custom"
6449
+ msgstr "Personalizzato"
6450
+
6451
+ #: includes/fields/class-fieldtypes-checkbox.php:54
6452
+ msgctxt "checkbox form field"
6453
+ msgid "Select all"
6454
+ msgstr "Seleziona tutto"
6455
+
6456
+ #: includes/fields/class-fieldtypes-date.php:66
6457
+ msgctxt "date field"
6458
+ msgid "%s must be in the format %s."
6459
+ msgstr "%s deve essere nel formato%s."
6460
+
6461
+ #: includes/fields/class-fieldtypes-date.php:69
6462
+ msgctxt "date field"
6463
+ msgid "%s must be a valid date."
6464
+ msgstr "%s deve essere una data valida."
6465
+
6466
+ #: includes/fields/class-fieldtypes-image.php:41
6467
+ msgctxt "date field"
6468
+ msgid "Caption for %s is required."
6469
+ msgstr "La didascalia per %s è necessaria."
6470
+
6471
+ #: includes/fields/class-fieldtypes-image.php:100
6472
+ #: includes/fields/class-fieldtypes-social.php:175
6473
+ msgctxt "form-fields-api"
6474
+ msgid "Remove"
6475
+ msgstr "Rimuovi"
6476
+
6477
+ #: includes/fields/class-form-field.php:68
6478
+ msgctxt "form-fields-api"
6479
+ msgid "Invalid form field type"
6480
+ msgstr "Tipo di campo modulo non valido"
6481
+
6482
+ #: includes/fields/class-form-field.php:583
6483
+ msgctxt "form-fields-api"
6484
+ msgid "Field label is required."
6485
+ msgstr "È richiesta l'etichetta del campo."
6486
+
6487
+ #: includes/fields/class-form-field.php:594
6488
+ msgctxt "form-fields-api"
6489
+ msgid ""
6490
+ "You can't change from %2$s field type to the one you wanted--the types are "
6491
+ "incompatible internally. If you want to switch to a field of type %1$s, "
6492
+ "delete this current field and create a NEW field of type %1$s instead."
6493
+ msgstr ""
6494
+ "Non è possibile cambiare il tipo di campo da %2$s a quello desiderato - i "
6495
+ "tipi sono incompatibili internamente. Se si desidera passare a un campo di "
6496
+ "tipo %1$s, cancellare questo campo corrente e creare invece un nuovo campo "
6497
+ "di tipo %1$s."
6498
+
6499
+ #: includes/fields/class-form-field.php:597
6500
+ msgctxt "form-fields-api"
6501
+ msgid ""
6502
+ "<strong>WARNING</strong>: If you delete this field, the data from it in "
6503
+ "existing listings will be deleted as well."
6504
+ msgstr ""
6505
+ "<strong>ATTENZIONE</strong>: Se si elimina questo campo, anche i dati "
6506
+ "contenuti negli annunci esistenti verranno cancellati."
6507
+
6508
+ #: includes/fields/class-form-field.php:631
6509
+ msgctxt "form-fields-api"
6510
+ msgid ""
6511
+ "There can only be one field with association \"%s\". Please select another "
6512
+ "association."
6513
+ msgstr ""
6514
+ "Ci può essere un solo campo con l'associazione \"%s\". Selezionare un'altra "
6515
+ "associazione."
6516
+
6517
+ #: includes/fields/class-form-field.php:641
6518
+ msgctxt "form-fields-api"
6519
+ msgid "\"%s\" is an invalid field type for this association."
6520
+ msgstr "\"%s\" è un tipo di campo non valido per questa associazione."
6521
+
6522
+ #: includes/fields/class-form-field.php:686
6523
+ msgctxt "form-fields-api"
6524
+ msgid "Invalid field ID"
6525
+ msgstr "ID campo non valido"
6526
+
6527
+ #: includes/fields/class-form-field.php:709
6528
+ msgctxt "form-fields-api"
6529
+ msgid "An error occurred while trying to delete this field."
6530
+ msgstr ""
6531
+ "Si è verificato un errore durante il tentativo di eliminare questo campo."
6532
+
6533
+ #: includes/form-fields.php:570
6534
+ msgctxt "form-fields-api"
6535
+ msgid "Email Validator"
6536
+ msgstr "Validatore e-mail"
6537
+
6538
+ #: includes/form-fields.php:571
6539
+ msgctxt "form-fields-api"
6540
+ msgid "URL Validator"
6541
+ msgstr "Validatore URL"
6542
+
6543
+ #: includes/form-fields.php:572
6544
+ msgctxt "form-fields-api"
6545
+ msgid "Whole Number Validator"
6546
+ msgstr "Validatore di numero intero"
6547
+
6548
+ #: includes/form-fields.php:573
6549
+ msgctxt "form-fields-api"
6550
+ msgid "Decimal Number Validator"
6551
+ msgstr "Validatore numero decimale"
6552
+
6553
+ #: includes/form-fields.php:574
6554
+ msgctxt "form-fields-api"
6555
+ msgid "Date Validator"
6556
+ msgstr "Validatore di data"
6557
+
6558
+ #: includes/form-fields.php:575
6559
+ msgctxt "form-fields-api"
6560
+ msgid "Word Count Validator"
6561
+ msgstr "Validatore del conteggio delle parole"
6562
+
6563
+ #: includes/fields/class-fieldtypes-image.php:123
6564
+ msgctxt "form fields"
6565
+ msgid "Field unavailable at the moment."
6566
+ msgstr "Campo non disponibile al momento."
6567
+
6568
+ #: includes/fields/class-fieldtypes-phone-number.php:13
6569
+ msgctxt "form fields"
6570
+ msgid "Phone Number"
6571
+ msgstr "Numero di telefono"
6572
+
6573
+ #: includes/fields/class-fieldtypes-multiselect.php:25
6574
+ msgctxt "form-fields-admin"
6575
+ msgid "Number of options visible without scrolling"
6576
+ msgstr "Numero di opzioni visibili senza scorrere"
6577
+
6578
+ #: includes/fields/class-fieldtypes-multiselect.php:26
6579
+ msgctxt "form-fields-admin"
6580
+ msgid ""
6581
+ "The height of the list will be adjusted to accommodate the specified number "
6582
+ "of options."
6583
+ msgstr ""
6584
+ "L'altezza dell'elenco sarà regolata per soddisfare il numero specificato di "
6585
+ "opzioni."
6586
+
6587
+ #: includes/fields/class-fieldtypes-select.php:112
6588
+ #: includes/fields/class-fieldtypes-select.php:179
6589
+ msgctxt "form-fields-api category-select"
6590
+ msgid "-- Choose One --"
6591
+ msgstr "-- Scegli un prodotto --"
6592
+
6593
+ #: includes/fields/class-fieldtypes-select.php:132
6594
+ msgctxt "form-fields-api category-select"
6595
+ msgid "-- Choose Terms --"
6596
+ msgstr "-- Scegli i termini --"
6597
+
6598
+ #: includes/fields/class-fieldtypes-select.php:190
6599
+ msgctxt "form-fields-api select"
6600
+ msgid "— None —"
6601
+ msgstr "- Nessuno -"
6602
+
6603
+ #: includes/fields/class-fieldtypes-textarea.php:200
6604
+ msgctxt "admin form-fields"
6605
+ msgid ""
6606
+ "Enabling iframe support in your listings can allow users to execute "
6607
+ "arbitrary scripts on a page if they want, which can possibly infect your "
6608
+ "site with malware. We do NOT recommend using this setting UNLESS you are "
6609
+ "posting the listings yourself and have sole control over the content. Are "
6610
+ "you sure you want to enable this?"
6611
+ msgstr ""
6612
+ "Attivare il supporto iframe nei tuoi annunci può consentire agli utenti di "
6613
+ "eseguire script arbitrari su una pagina, se lo desiderano, che possono "
6614
+ "eventualmente infettare il tuo sito con malware. Si consiglia di NON "
6615
+ "utilizzare questa impostazione a MENO che tu stesso pubblichi gli annunci e "
6616
+ "abbia il controllo esclusivo sul contenuto. Sei sicuro di volerlo abilitare?"
6617
+
6618
+ #: includes/form-fields.php:582
6619
+ msgctxt "form-fields-api validation"
6620
+ msgid "Field"
6621
+ msgstr "Campo"
6622
+
6623
+ #: includes/form-fields.php:603 includes/form-fields.php:608
6624
+ msgctxt "form-fields-api validation"
6625
+ msgid "%s is required."
6626
+ msgstr "%s è richiesto."
6627
+
6628
+ #: includes/form-fields.php:621
6629
+ msgctxt "form-fields-api validation"
6630
+ msgid "%s is badly formatted. Valid URL format required. Include http://"
6631
+ msgstr ""
6632
+ "%s è mal formattato. Formato URL valido richiesto. Includere http:// o "
6633
+ "https://"
6634
+
6635
+ #: includes/form-fields.php:643
6636
+ msgctxt "form-fields-api validation"
6637
+ msgid "%s is badly formatted. Valid Email format required."
6638
+ msgstr "%s è mal formattato. Formato email valido richiesto."
6639
+
6640
+ #: includes/form-fields.php:650
6641
+ msgctxt "form-fields-api validation"
6642
+ msgid "%s must be a number. Decimal values are not allowed."
6643
+ msgstr "%s deve essere un numero intero. Non sono ammessi valori decimali."
6644
+
6645
+ #: includes/form-fields.php:657
6646
+ msgctxt "form-fields-api validation"
6647
+ msgid "%s must be a number."
6648
+ msgstr "%s deve essere un numero."
6649
+
6650
+ #: includes/form-fields.php:676
6651
+ msgctxt "form-fields-api validation"
6652
+ msgid "%1$s must be in the format %2$s."
6653
+ msgstr "%1$s deve essere nel formato %2$s."
6654
+
6655
+ #: includes/form-fields.php:714
6656
+ msgctxt "form-fields-api validation"
6657
+ msgid "%s must be a valid date."
6658
+ msgstr "%s deve essere una data valida."
6659
+
6660
+ #: includes/form-fields.php:737
6661
+ msgctxt "form-fields-api validation"
6662
+ msgid "%s must have less than %d words."
6663
+ msgstr "%s deve avere meno di %d parole."
6664
+
6665
+ #: includes/form-fields.php:756
6666
+ msgctxt "form-fields-api validation"
6667
+ msgid "%1$s is invalid. Value most be one of %2$s."
6668
+ msgstr "%1$s non è valido. Valore più essere uno di %2$s."
6669
+
6670
+ #: includes/form-fields.php:721
6671
+ msgctxt "image field"
6672
+ msgid "Caption for %s is required."
6673
+ msgstr "La didascalia per %s è necessaria."
6674
+
6675
+ #: includes/functions.php:1259
6676
+ msgctxt "templates"
6677
+ msgid "Return to results"
6678
+ msgstr "Ritorno ai risultati"
6679
+
6680
+ #: includes/functions.php:1263 includes/functions.php:1268
6681
+ msgctxt "templates"
6682
+ msgid "Go back"
6683
+ msgstr "Va indietro"
6684
+
6685
+ #: includes/payment.php:277 templates/renew-resume.tpl.php:39
6686
+ msgctxt "templates"
6687
+ msgid "Return to fee selection"
6688
+ msgstr "Ritorno alla selezione del piano tariffario"
6689
+
6690
+ #: includes/templates-ui.php:199
6691
+ msgctxt "templates"
6692
+ msgid "No listing categories found."
6693
+ msgstr "Nessuna categoria di annunci trovata."
6694
+
6695
+ #: includes/templates-ui.php:333
6696
+ msgctxt "templates"
6697
+ msgid "Search Listings"
6698
+ msgstr "Cerca Annunci"
6699
+
6700
+ #: includes/templates-ui.php:338
6701
+ msgctxt "templates"
6702
+ msgid "Advanced Search"
6703
+ msgstr "Ricerca Avanzata"
6704
+
6705
+ #: includes/views/listing_contact.php:149
6706
+ msgctxt "templates"
6707
+ msgid "Contact listing owner"
6708
+ msgstr "Contatta il proprietario"
6709
+
6710
+ #: includes/views/listing_contact.php:153
6711
+ msgctxt "templates"
6712
+ msgid "Send Message to listing owner"
6713
+ msgstr "Invia messaggio al proprietario dell'elenco"
6714
+
6715
+ #: includes/views/main.php:9
6716
+ msgctxt "templates"
6717
+ msgid ""
6718
+ "There are no categories assigned to the business directory yet. You need to "
6719
+ "assign some categories to the business directory. Only admins can see this "
6720
+ "message. Regular users are seeing a message that there are currently no "
6721
+ "listings in the directory. Listings cannot be added until you assign "
6722
+ "categories to the business directory."
6723
+ msgstr ""
6724
+ "Non ci sono ancora categorie assegnate alla business directory. È necessario "
6725
+ "prima assegnare alcune categorie. Solo gli amministratori possono vedere "
6726
+ "questo messaggio. Gli utenti abituali stanno vedendo un messaggio che indica "
6727
+ "che attualmente non ci sono annunci nella directory. Gli annunci non possono "
6728
+ "essere aggiunti fino a quando non si assegnano le categorie all'elenco "
6729
+ "aziendale."
6730
+
6731
+ #: includes/views/main.php:11
6732
+ msgctxt "templates"
6733
+ msgid "There are currently no listings in the directory."
6734
+ msgstr "Al momento non ci sono annunci nell'elenco."
6735
+
6736
+ #: includes/views/main.php:17
6737
+ msgctxt "templates"
6738
+ msgid ""
6739
+ "You have \"Hide Empty Categories\" on and some categories that don't have "
6740
+ "listings in them. That means they won't show up on the front end of your "
6741
+ "site. If you didn't want that, click <a>here</a> to change the setting."
6742
+ msgstr ""
6743
+ "Hai \"Nascondi categorie vuote\" e alcune categorie che non dispongono di "
6744
+ "elenchi in essi. Ciò significa che non verranno visualizzati sulla parte "
6745
+ "anteriore del tuo sito. Se non l'hai voluto, clicca <a>qui</a> per "
6746
+ "modificare l'impostazione."
6747
+
6748
+ #: includes/views/submit_listing.php:335
6749
+ msgctxt "templates"
6750
+ msgid ""
6751
+ "<b>View not available</b>. Do you have the \"Disable Frontend Listing "
6752
+ "Submission?\" setting checked?"
6753
+ msgstr ""
6754
+ "<b>Vista non disponibile</b>. È stata selezionata l'impostazione "
6755
+ "\"Disattivare l'invio di annunci da frontend\"?"
6756
+
6757
+ #: includes/views/submit_listing.php:337
6758
+ msgctxt "templates"
6759
+ msgid ""
6760
+ "Listing submission has been disabled. Contact the administrator for details."
6761
+ msgstr ""
6762
+ "L'inserimento di un annuncio è stato disabilitato. Contattare "
6763
+ "l'amministratore per i dettagli."
6764
+
6765
+ #: includes/views/submit_listing.php:502
6766
+ msgctxt "templates"
6767
+ msgid ""
6768
+ "Listing submission is not available at the moment. Contact the administrator "
6769
+ "for details."
6770
+ msgstr ""
6771
+ "Al momento non è disponibile l'invio di annunci. Contattare l'amministratore "
6772
+ "per i dettagli."
6773
+
6774
+ #: includes/views/submit_listing.php:505
6775
+ msgctxt "templates"
6776
+ msgid ""
6777
+ "<b>View not available</b>, there is no \"Category\" association field. %s "
6778
+ "and create a new field with this association, or assign this association to "
6779
+ "an existing field"
6780
+ msgstr ""
6781
+ "<b>Vista non disponibile</b>, non c'è un campo associazione \"Categoria\". "
6782
+ "%s e crea un nuovo campo con questa associazione, o assegna questa "
6783
+ "associazione ad un campo esistente."
6784
+
6785
+ #: includes/views/submit_listing.php:912
6786
+ msgctxt "templates"
6787
+ msgid "Please agree to the Terms and Conditions."
6788
+ msgstr "Per favore è necessario accettare le condizioni d'uso."
6789
+
6790
+ #: includes/views/submit_listing.php:920
6791
+ msgctxt "templates"
6792
+ msgid "Terms and Conditions:"
6793
+ msgstr "Termini e Condizioni:"
6794
+
6795
+ #: includes/views/submit_listing.php:929
6796
+ msgctxt "templates"
6797
+ msgid "I agree to the <a>Terms and Conditions</a>"
6798
+ msgstr "Accetto i <a>termini e le condizioni</a> d'uso"
6799
+
6800
+ #: templates/businessdirectory-listings.tpl.php:27
6801
+ #: templates/deprecated/search.tpl.php:21 templates/listings.tpl.php:15
6802
+ #: templates/search.tpl.php:17
6803
+ msgctxt "templates"
6804
+ msgid "No listings found."
6805
+ msgstr "Nessun annuncio trovato."
6806
+
6807
+ #: templates/businessdirectory-listings.tpl.php:38
6808
+ #: templates/listings.tpl.php:31
6809
+ msgctxt "templates"
6810
+ msgid "&laquo; Previous "
6811
+ msgstr "&laquo; Precedente "
6812
+
6813
+ #: templates/businessdirectory-listings.tpl.php:39
6814
+ #: templates/listings.tpl.php:32
6815
+ msgctxt "templates"
6816
+ msgid "Next &raquo;"
6817
+ msgstr "Successivo &raquo;"
6818
+
6819
+ #: templates/deprecated/search.tpl.php:24 templates/manage-listings.tpl.php:8
6820
+ #: templates/manage_listings.tpl.php:8
6821
+ msgctxt "templates"
6822
+ msgid "Return to directory"
6823
+ msgstr "Torna all'elenco"
6824
+
6825
+ #: templates/listing-contactform.tpl.php:20
6826
+ msgctxt "templates"
6827
+ msgid "Listing Title: "
6828
+ msgstr "Titolo dell'annuncio:"
6829
+
6830
+ #: templates/listing-contactform.tpl.php:29
6831
+ msgctxt "templates"
6832
+ msgid ""
6833
+ "You are currently logged in as %s. Your message will be sent using your "
6834
+ "logged in contact email."
6835
+ msgstr ""
6836
+ "Sei attualmente registrato come %s. Il tuo messaggio verrà inviato "
6837
+ "utilizzando la tua email di contatto loggato."
6838
+
6839
+ #: templates/listing-contactform.tpl.php:36
6840
+ #: templates/listing-flagging-form.tpl.php:22
6841
+ msgctxt "templates"
6842
+ msgid "Your Name"
6843
+ msgstr "Il tuo nome"
6844
+
6845
+ #: templates/listing-contactform.tpl.php:39
6846
+ #: templates/listing-flagging-form.tpl.php:26
6847
+ msgctxt "templates"
6848
+ msgid "Your Email"
6849
+ msgstr "La tua email"
6850
+
6851
+ #: templates/listing-contactform.tpl.php:44
6852
+ msgctxt "templates"
6853
+ msgid "Message"
6854
+ msgstr "Messaggio"
6855
+
6856
+ #: templates/listing-contactform.tpl.php:53
6857
+ msgctxt "templates"
6858
+ msgid "Send"
6859
+ msgstr "Invia"
6860
+
6861
+ #: templates/listing-flagging-form.tpl.php:3
6862
+ msgctxt "templates"
6863
+ msgid "Report Listing"
6864
+ msgstr "Segnala l'annuncio"
6865
+
6866
+ #: templates/listing-sticky-tag.tpl.php:12
6867
+ #: templates/listing-sticky-tag.tpl.php:13
6868
+ msgctxt "templates"
6869
+ msgid "Featured Listing"
6870
+ msgstr "Annuncio in primo piano"
6871
+
6872
+ #: templates/login.tpl.php:30 templates/parts/login-required.tpl.php:14
6873
+ msgctxt "templates"
6874
+ msgid ""
6875
+ "You are not currently logged in. Please login or register first. When "
6876
+ "registering, you will receive an activation email. Be sure to check your "
6877
+ "spam if you don't see it in your email within 60 minutes."
6878
+ msgstr ""
6879
+ "Per inserire annunci devi essere un utente registrato\n"
6880
+ "Se già in passato ti sei registrato inserisci il tuo nome utente e la "
6881
+ "password altrimenti clicca REGISTRATI e segui le istruzioni.\n"
6882
+ "Dopo la registrazione dei tuoi dati, riceverai un'e-mail di attivazione. \n"
6883
+ "Assicurati di controllare la cartella spam se non vedi la nostra e-mail "
6884
+ "entro 60 minuti."
6885
+
6886
+ #: templates/login.tpl.php:41 templates/parts/login-required.tpl.php:38
6887
+ msgctxt "templates"
6888
+ msgid "Not yet registered?"
6889
+ msgstr "Non ancora registrato? REGISTRATI!"
6890
+
6891
+ #: templates/login.tpl.php:43 templates/parts/login-required.tpl.php:40
6892
+ msgctxt "templates"
6893
+ msgid "Lost your password?"
6894
+ msgstr "Password dimenticata?"
6895
+
6896
+ #: templates/manage-listings.tpl.php:3 templates/manage_listings.tpl.php:3
6897
+ msgctxt "templates"
6898
+ msgid ""
6899
+ "Your current listings are shown below. To edit a listing click the edit "
6900
+ "button. To delete a listing click the delete button."
6901
+ msgstr ""
6902
+ "LI tuoi attuali Annunci sono riportati di seguito. Per modificare un "
6903
+ "Annuncio, fai clic sul pulsante di modifica. Per eliminare un'Annunci fai "
6904
+ "clic sul pulsante di cancellazione."
6905
+
6906
+ #: templates/manage-listings.tpl.php:6 templates/manage_listings.tpl.php:6
6907
+ msgctxt "templates"
6908
+ msgid "You do not currently have any listings in the directory."
6909
+ msgstr "Al momento non ci sono annunci nell'elenco."
6910
+
6911
+ #: templates/parts/listing-buttons.tpl.php:19
6912
+ #: templates/parts/listing-buttons.tpl.php:63
6913
+ msgctxt "templates"
6914
+ msgid "Edit"
6915
+ msgstr "Modifica"
6916
+
6917
+ #: templates/parts/listing-buttons.tpl.php:27
6918
+ #: templates/parts/listing-buttons.tpl.php:71
6919
+ msgctxt "templates"
6920
+ msgid "Flag Listing"
6921
+ msgstr "Bandiera Annuncio"
6922
+
6923
+ #: templates/parts/listing-buttons.tpl.php:35
6924
+ #: templates/parts/listing-buttons.tpl.php:79
6925
+ msgctxt "templates"
6926
+ msgid "Delete"
6927
+ msgstr "Elimina"
6928
+
6929
+ #: templates/parts/listing-buttons.tpl.php:36
6930
+ msgctxt "templates"
6931
+ msgid "Are you sure you wish to delete this listing?"
6932
+ msgstr "Sei sicuro di voler cancellare questo annuncio?"
6933
+
6934
+ #: templates/parts/listing-buttons.tpl.php:55
6935
+ msgctxt "templates"
6936
+ msgid "View"
6937
+ msgstr "Vedi"
6938
+
6939
+ #: templates/parts/login-required.tpl.php:17
6940
+ msgctxt "templates"
6941
+ msgid "Login"
6942
+ msgstr "Accedi"
6943
+
6944
+ #: templates/renew-listing-manage-subscription.tpl.php:2
6945
+ msgctxt "templates"
6946
+ msgid "Recurring Fee Management"
6947
+ msgstr "Gestione dei canoni ricorrenti"
6948
+
6949
+ #: templates/renew-listing.tpl.php:13
6950
+ msgctxt "templates"
6951
+ msgid "Renew Listing"
6952
+ msgstr "Modifica Abbonamento"
6953
+
6954
+ #: templates/renew-listing.tpl.php:21
6955
+ msgctxt "templates"
6956
+ msgid "You are about to renew your listing \"%s\" publication."
6957
+ msgstr "Stai per rinnovare la pubblicazione del tuo annuncio \"%s\"."
6958
+
6959
+ #: templates/renew-listing.tpl.php:24
6960
+ msgctxt "templates"
6961
+ msgid ""
6962
+ "Please select a fee option or click \"Do not renew my listing\" to remove "
6963
+ "your listing from the directory."
6964
+ msgstr ""
6965
+ "Seleziona un'opzione a pagamento o clicca su \"Non rinnovare il mio annuncio"
6966
+ "\" per rimuovere il tuo annuncio dall'elenco."
6967
+
6968
+ #: templates/renew-listing.tpl.php:39
6969
+ #: templates/submit-listing/extra-sections.tpl.php:6
6970
+ msgctxt "templates"
6971
+ msgid "Continue"
6972
+ msgstr "Continua"
6973
+
6974
+ #: templates/renew-listing.tpl.php:44
6975
+ msgctxt "templates"
6976
+ msgid "Do not renew my listing"
6977
+ msgstr "Non rinnovare il mio annuncio"
6978
+
6979
+ #: templates/renew-resume.tpl.php:38
6980
+ msgctxt "templates"
6981
+ msgid "Continue to checkout"
6982
+ msgstr "Procedi al pagamento"
6983
+
6984
+ #: templates/search-form.tpl.php:3
6985
+ msgctxt "templates"
6986
+ msgid "Find a listing"
6987
+ msgstr "Trova un annuncio"
6988
+
6989
+ #: templates/search.tpl.php:26
6990
+ msgctxt "templates"
6991
+ msgid "Return to Search"
6992
+ msgstr "Ritorna alla ricerca"
6993
+
6994
+ #: templates/submit-listing/extra-sections.tpl.php:1
6995
+ msgctxt "templates"
6996
+ msgid "Additional Information"
6997
+ msgstr "Informazioni aggiuntive"
6998
+
6999
+ #: templates/submit-listing-done.tpl.php:1
7000
+ msgctxt "templates"
7001
+ msgid "Submission Received"
7002
+ msgstr "Abbiamo ricevuto il tuo annuncio "
7003
+
7004
+ #: templates/submit-listing-done.tpl.php:4
7005
+ msgctxt "templates"
7006
+ msgid "Your listing has been submitted."
7007
+ msgstr "Il tuo annuncio è stato correttamente inviato."
7008
+
7009
+ #: templates/submit-listing-done.tpl.php:14
7010
+ msgctxt "templates"
7011
+ msgid "Your listing changes were saved."
7012
+ msgstr "Le modifiche al tuo annuncio sono state salvate."
7013
+
7014
+ #: templates/submit-listing-done.tpl.php:19
7015
+ msgctxt "templates"
7016
+ msgid "Go to your listing"
7017
+ msgstr "Vai al tuo annuncio"
7018
+
7019
+ #: templates/submit-listing-done.tpl.php:21
7020
+ msgctxt "templates"
7021
+ msgid ""
7022
+ "Your listing requires admin approval. You'll be notified once your listing "
7023
+ "is approved."
7024
+ msgstr ""
7025
+ "Il tuo annuncio richiede l'approvazione dell'amministratore. Sarai avvisato "
7026
+ "una volta che il tuo annuncio è stato approvato."
7027
+
7028
+ #: templates/submit-listing-done.tpl.php:25
7029
+ msgctxt "templates"
7030
+ msgid "Return to directory."
7031
+ msgstr "Torna all'elenco."
7032
+
7033
+ #: templates/submit-listing-images-single.tpl.php:24
7034
+ msgctxt "templates"
7035
+ msgid "Set this image as the listing thumbnail."
7036
+ msgstr "Seleziona questa immagine come principale"
7037
+
7038
+ #: templates/submit-listing-images-upload-form.tpl.php:10
7039
+ msgctxt "templates"
7040
+ msgid "Upload Images"
7041
+ msgstr "Carica Immagini"
7042
+
7043
+ #: templates/submit-listing-images-upload-form.tpl.php:15
7044
+ msgctxt "templates"
7045
+ msgid "Drop files here"
7046
+ msgstr "Trascina i file qui"
7047
+
7048
+ #: templates/submit-listing-images-upload-form.tpl.php:17
7049
+ msgctxt "templates"
7050
+ msgid "Select images from your hard drive"
7051
+ msgstr "Seleziona le immagini dal tuo computer"
7052
+
7053
+ #: templates/submit-listing-images-upload-form.tpl.php:20
7054
+ msgctxt "templates"
7055
+ msgid "Uploading %s file(s)... Please wait."
7056
+ msgstr "Caricamento dei file %s...... Per favore, aspetta."
7057
+
7058
+ #: templates/submit-listing-images-upload-form.tpl.php:23
7059
+ msgctxt "templates"
7060
+ msgid ""
7061
+ "Your image slots are all full at this time. You may click \"Continue\" if "
7062
+ "you are done, or \"Delete Image\" to upload a new image in place of a "
7063
+ "current one."
7064
+ msgstr ""
7065
+ "Non hai slot immagine liberi al momento. \n"
7066
+ "Puoi fare clic su \"Continua\" se hai finito, o \"Elimina immagine\" per "
7067
+ "caricare una nuova immagine al posto di una corrente. "
7068
+
7069
+ #: templates/submit-listing-images-upload-form.tpl.php:30
7070
+ msgctxt "templates"
7071
+ msgid "Image slots available:"
7072
+ msgstr "Slot immagini disponibili:"
7073
+
7074
+ #: templates/submit-listing-images-upload-form.tpl.php:36
7075
+ msgctxt "templates"
7076
+ msgid "File size:"
7077
+ msgstr "Dimensione del documento:"
7078
+
7079
+ #: templates/submit-listing-images-upload-form.tpl.php:38
7080
+ #: templates/submit-listing-images-upload-form.tpl.php:45
7081
+ #: templates/submit-listing-images-upload-form.tpl.php:52
7082
+ msgctxt "templates"
7083
+ msgid "No limit"
7084
+ msgstr "Nessun limite"
7085
+
7086
+ #: templates/submit-listing-images-upload-form.tpl.php:43
7087
+ msgctxt "templates"
7088
+ msgid "Image width:"
7089
+ msgstr "Larghezza immagine:"
7090
+
7091
+ #: templates/submit-listing-images-upload-form.tpl.php:50
7092
+ msgctxt "templates"
7093
+ msgid "Image height:"
7094
+ msgstr "Dimensione dell'altezza massima:"
7095
+
7096
+ #: templates/submit-listing-images.tpl.php:5
7097
+ msgctxt "templates"
7098
+ msgid "Current Images"
7099
+ msgstr "Immagini attuali"
7100
+
7101
+ #: templates/submit-listing-images.tpl.php:8
7102
+ msgctxt "templates"
7103
+ msgid "There are no images currently attached to your listing."
7104
+ msgstr "Non ci sono immagini allegate al tuo annuncio in questo momento."
7105
+
7106
+ #: includes/gateways/class-gateway-authorize-net.php:20
7107
+ msgctxt "authorize-net"
7108
+ msgid "Authorize.net"
7109
+ msgstr "Carta di Credito"
7110
+
7111
+ #: includes/gateways/class-gateway-authorize-net.php:50
7112
+ msgctxt "authorize-net"
7113
+ msgid "Login ID is missing."
7114
+ msgstr "L'ID di accesso è mancante."
7115
+
7116
+ #: includes/gateways/class-gateway-authorize-net.php:53
7117
+ msgctxt "authorize-net"
7118
+ msgid "Transaction Key is missing."
7119
+ msgstr "Il codice transazione è mancante."
7120
+
7121
+ #: includes/gateways/class-gateway-authorize-net.php:82
7122
+ msgctxt "authorize-net"
7123
+ msgid ""
7124
+ "Payment is being held for review by the payment gateway. The following "
7125
+ "reason was given: \"%s\"."
7126
+ msgstr ""
7127
+ "Il pagamento è in corso di revisione da parte del gateway di pagamento. È "
7128
+ "stata fornita la seguente motivazione: \"%s\"."
7129
+
7130
+ #: includes/gateways/class-gateway-authorize-net.php:91
7131
+ msgctxt "authorize-net"
7132
+ msgid ""
7133
+ "The payment gateway didn't accept the credit card or billing information. "
7134
+ "The following reason was given: \"%s\"."
7135
+ msgstr ""
7136
+ "Il gateway di pagamento non ha accettato i dati della carta di credito o di "
7137
+ "fatturazione. È stata fornita la seguente motivazione: \"%s\"."
7138
+
7139
+ #: includes/gateways/class-gateway-authorize-net.php:100
7140
+ msgctxt "authorize-net"
7141
+ msgid "Payment was rejected. The following reason was given: \"%s\"."
7142
+ msgstr ""
7143
+ "Il pagamento è stato rifiutato. È stata fornita la seguente motivazione: \"%s"
7144
+ "\"."
7145
+
7146
+ #: includes/gateways/class-gateway-authorize-net.php:161
7147
+ msgctxt "authorize-net"
7148
+ msgid "Payment failed. Reason: %s"
7149
+ msgstr "Pagamento fallito. Motivo: %s"
7150
+
7151
+ #: includes/gateways/class-gateway-authorize-net.php:186
7152
+ msgctxt "authorize-net"
7153
+ msgid "Listing #%d"
7154
+ msgstr "Elenco #%d"
7155
+
7156
+ #: includes/helpers/class-access-keys-sender.php:20
7157
+ msgctxt "access keys sender"
7158
+ msgid "<email-address> is not a valid e-mail address."
7159
+ msgstr "<email-address> non è un indirizzo e-mail valido."
7160
+
7161
+ #: includes/helpers/class-access-keys-sender.php:29
7162
+ msgctxt "access keys sender"
7163
+ msgid "There are no listings associated to e-mail address <email-address>."
7164
+ msgstr ""
7165
+ "Non ci sono annunci associati all'indirizzo e-mail<email-address>.</email-"
7166
+ "address>"
7167
+
7168
+ #: includes/helpers/class-access-keys-sender.php:46
7169
+ msgctxt "access keys sender"
7170
+ msgid "Listing Access Keys"
7171
+ msgstr "Elenco delle chiavi di accesso"
7172
+
7173
+ #: includes/helpers/class-access-keys-sender.php:50
7174
+ msgctxt "access keys sender"
7175
+ msgid ""
7176
+ "An error occurred while sending the access keys for e-mail address <email-"
7177
+ "address>. Please try again."
7178
+ msgstr ""
7179
+ "Si è verificato un errore durante l'invio dei tasti di accesso all'indirizzo "
7180
+ "e-mail <email-address>. Per favore, riprovaci di nuovo."
7181
+
7182
+ #: includes/helpers/class-fs.php:112
7183
+ msgctxt "fs helper"
7184
+ msgid "Destination dir \"%s\" is not writable."
7185
+ msgstr "La destinazione dir \"%s\" non è scrivibile."
7186
+
7187
+ #: includes/helpers/listing_flagging.php:42
7188
+ #: includes/helpers/listing_flagging.php:65
7189
+ msgctxt "flag listing"
7190
+ msgid "Listing ID is required to save a report"
7191
+ msgstr "L'ID dell'annuncio è necessario per salvare una segnalazione"
7192
+
7193
+ #: includes/helpers/listing_flagging.php:73
7194
+ msgctxt "flag listing"
7195
+ msgid "User ID or IP address is required to save a report"
7196
+ msgstr "L'ID utente o l'indirizzo IP è necessario per salvare una segnalazione"
7197
+
7198
+ #: includes/helpers/listing_flagging.php:80
7199
+ msgctxt "flag listing"
7200
+ msgid "Report reason is required to save a report"
7201
+ msgstr "Il motivo è necessario per salvare una segnalazione"
7202
+
7203
+ #: includes/helpers/listing_flagging.php:84
7204
+ msgctxt "flag listing"
7205
+ msgid "Report comment is required to save a report"
7206
+ msgstr "Il commento è necessario per salvare una segnalazione"
7207
+
7208
+ #: includes/views/flag_listing.php:59
7209
+ msgctxt "flag listing"
7210
+ msgid "The listing <i>%s</i> has been reported. <a>Return to directory</a>"
7211
+ msgstr "L'annuncio <i>%s</i> è stato segnalato. <a>Torna all'elenco</a>"
7212
+
7213
+ #: includes/views/flag_listing.php:112
7214
+ msgctxt "flag listing"
7215
+ msgid "Your current IP address already reported this listing."
7216
+ msgstr "Il tuo attuale indirizzo IP ha già segnalato questo annuncio."
7217
+
7218
+ #: includes/views/flag_listing.php:125
7219
+ msgctxt "flag listing"
7220
+ msgid "You must select the reason to report this listing as inappropriate."
7221
+ msgstr ""
7222
+ "È necessario selezionare il motivo per segnalare questo annuncio come "
7223
+ "inappropriato."
7224
+
7225
+ #: includes/views/flag_listing.php:129
7226
+ msgctxt "flag listing"
7227
+ msgid "You must enter the reason to report this listing as inappropriate."
7228
+ msgstr ""
7229
+ "È necessario inserire il motivo per segnalare questo annuncio come "
7230
+ "inappropriato."
7231
+
7232
+ #: includes/views/flag_listing.php:134
7233
+ msgctxt "flag listing"
7234
+ msgid "Please enter your name."
7235
+ msgstr "Inserisci il tuo nome."
7236
+
7237
+ #: includes/views/flag_listing.php:138
7238
+ msgctxt "flag listing"
7239
+ msgid "Please enter your email."
7240
+ msgstr "Inserisci il tuo indirizzo email \".\"."
7241
+
7242
+ #: templates/admin/metaboxes-listing-flagging-row.tpl.php:19
7243
+ msgctxt "flag listing"
7244
+ msgid "Delete"
7245
+ msgstr "Elimina"
7246
+
7247
+ #: templates/listing-flagging-form.tpl.php:15
7248
+ msgctxt "flag listing"
7249
+ msgid "You are about to report the listing \"<b>%s</b>\" as inappropriate. "
7250
+ msgstr "Stai per segnalare l'annuncio<b> \"%s</b>\" come inappropriato. "
7251
+
7252
+ #: templates/listing-flagging-form.tpl.php:18
7253
+ msgctxt "flag listing"
7254
+ msgid ""
7255
+ "You are currently logged in as %s. Listing report will be sent using your "
7256
+ "logged in contact email."
7257
+ msgstr ""
7258
+ "Sei attualmente registrato come %s. La segnalazione dell'annuncio sarà "
7259
+ "inviata utilizzando l'e-mail di contatto con cui hai effettuato il login."
7260
+
7261
+ #: templates/listing-flagging-form.tpl.php:32
7262
+ msgctxt "flag listing"
7263
+ msgid "Please select the reason to report this listing:"
7264
+ msgstr "Si prega di selezionare il motivo per segnalare questo annuncio:"
7265
+
7266
+ #: templates/listing-flagging-form.tpl.php:40
7267
+ msgctxt "flag listing"
7268
+ msgid "Please enter the reasons to report this listing:"
7269
+ msgstr "Inserisci i motivi per segnalare questo annuncio:"
7270
+
7271
+ #: templates/listing-flagging-form.tpl.php:43
7272
+ msgctxt "flag listing"
7273
+ msgid "Additional info."
7274
+ msgstr "Ulteriori informazioni."
7275
+
7276
+ #: templates/listing-flagging-form.tpl.php:48
7277
+ msgctxt "flag listing"
7278
+ msgid "Cancel"
7279
+ msgstr "Annulla"
7280
+
7281
+ #: templates/listing-flagging-form.tpl.php:52
7282
+ msgctxt "flag listing"
7283
+ msgid "You already reported the listing \"<b>%s</b>\" as inappropriate."
7284
+ msgstr "Hai già segnalato come inappropriato l'elenco<b> \"%s</b>\"."
7285
+
7286
+ #: includes/installer.php:71
7287
+ msgctxt "default category name"
7288
+ msgid "General"
7289
+ msgstr "Generale"
7290
+
7291
+ #: includes/licensing.php:297
7292
+ msgctxt "licensing"
7293
+ msgid "Invalid item ID"
7294
+ msgstr "ID articolo non valido"
7295
+
7296
+ #: includes/licensing.php:303
7297
+ msgctxt "licensing"
7298
+ msgid "No license key provided"
7299
+ msgstr "Nessuna chiave di licenza fornita"
7300
+
7301
+ #: includes/licensing.php:327
7302
+ msgctxt "licensing"
7303
+ msgid "The license key was revoked."
7304
+ msgstr "La chiave di licenza è stata revocata."
7305
+
7306
+ #: includes/licensing.php:329
7307
+ msgctxt "licensing"
7308
+ msgid ""
7309
+ "If you think this is a mistake, please contact <support-link>Business "
7310
+ "Directory support</support-link> and let them know your license is being "
7311
+ "reported as revoked by the licensing software."
7312
+ msgstr ""
7313
+ "Se pensate che questo sia un errore, contattate il <support-link>supporto di "
7314
+ "Business Directory</support-link> e fate loro sapere che la vostra licenza è "
7315
+ "stata segnalata come revocata dal software di licenza."
7316
+
7317
+ #: includes/licensing.php:331
7318
+ msgctxt "licensing"
7319
+ msgid ""
7320
+ "Please include the email address you used to purchase <module-name> with "
7321
+ "your report."
7322
+ msgstr ""
7323
+ "Si prega di includere l'indirizzo e-mail utilizzato per l'acquisto <module-"
7324
+ "name>con il report."
7325
+
7326
+ #: includes/licensing.php:342 includes/licensing.php:385
7327
+ msgctxt "licensing"
7328
+ msgid "License key is invalid"
7329
+ msgstr "La chiave di licenza non è valida"
7330
+
7331
+ #: includes/licensing.php:359
7332
+ msgctxt "licensing"
7333
+ msgid "Invalid module ID"
7334
+ msgstr "ID modulo non valido"
7335
+
7336
+ #: includes/licensing.php:389
7337
+ msgctxt "licensing"
7338
+ msgid "Deactivation failed"
7339
+ msgstr "Disattivazione fallita"
7340
+
7341
+ #: includes/licensing.php:397
7342
+ msgctxt "licensing"
7343
+ msgid ""
7344
+ "It was not possible to establish a connection with Business Directory's "
7345
+ "server. cURL was not found in your system"
7346
+ msgstr ""
7347
+ "Non è stato possibile stabilire una connessione con il server di Business "
7348
+ "Directory. cURL non è stato trovato nel sistema."
7349
+
7350
+ #: includes/licensing.php:399 includes/licensing.php:440
7351
+ msgctxt "licensing"
7352
+ msgid ""
7353
+ "To ensure the security of our systems and adhere to industry best practices, "
7354
+ "we require that your server uses a recent version of cURL and a version of "
7355
+ "OpenSSL that supports TLSv1.2 (minimum version with support is OpenSSL "
7356
+ "1.0.1c)."
7357
+ msgstr ""
7358
+ "Per garantire la sicurezza dei nostri sistemi e aderire alle migliori "
7359
+ "pratiche del settore, richiediamo che il vostro server utilizzi una versione "
7360
+ "recente di cURL e una versione di OpenSSL che supporta TLSv1.2 (la versione "
7361
+ "minima con supporto è OpenSSL 1.0.1.1c)."
7362
+
7363
+ #: includes/licensing.php:401 includes/licensing.php:442
7364
+ msgctxt "licensing"
7365
+ msgid ""
7366
+ "Upgrading your system will not only allow you to communicate with Business "
7367
+ "Directory servers but also help you prepare your website to interact with "
7368
+ "services using the latest security standards."
7369
+ msgstr ""
7370
+ "L'aggiornamento del vostro sistema non solo vi permetterà di comunicare con "
7371
+ "i server di Business Directory, ma vi aiuterà anche a preparare il vostro "
7372
+ "sito web a interagire con i servizi utilizzando i più recenti standard di "
7373
+ "sicurezza."
7374
+
7375
+ #: includes/licensing.php:403
7376
+ msgctxt "licensing"
7377
+ msgid ""
7378
+ "Please contact your hosting provider and ask them to upgrade your system. "
7379
+ "Include this message if necessary"
7380
+ msgstr ""
7381
+ "Contatta il tuo fornitore di hosting e chiedi loro di aggiornare il tuo "
7382
+ "sistema. Includere questo messaggio se necessario"
7383
+
7384
+ #: includes/licensing.php:419
7385
+ msgctxt "licensing"
7386
+ msgid ""
7387
+ "It was not possible to establish a connection with Business Directory's "
7388
+ "server. The connection failed with the following error:"
7389
+ msgstr ""
7390
+ "Non è stato possibile stabilire una connessione con il server di Business "
7391
+ "Directory. Il collegamento non è riuscito con il seguente errore:"
7392
+
7393
+ #: includes/licensing.php:423 includes/licensing.php:475
7394
+ msgctxt "licensing"
7395
+ msgid ""
7396
+ "It looks like your server is not authorized to make requests to Business "
7397
+ "Directory servers. Please contact <support-link>Business Directory support</"
7398
+ "support-link> and ask them to add your IP address <ip-address> to the "
7399
+ "whitelist."
7400
+ msgstr ""
7401
+ "Sembra che il server non sia autorizzato a fare richieste ai server di "
7402
+ "Business Directory. Contatta il <support-link>supporto Business Directory</"
7403
+ "support-link> e chiedi loro di aggiungere il tuo indirizzo IP <ip-"
7404
+ "address>alla whitelist."
7405
+
7406
+ #: includes/licensing.php:425 includes/licensing.php:477
7407
+ msgctxt "licensing"
7408
+ msgid "Include this error message with your report."
7409
+ msgstr "Includi questo messaggio di errore nel tuo rapporto."
7410
+
7411
+ #: includes/licensing.php:435
7412
+ msgctxt "licensing"
7413
+ msgid ""
7414
+ "It was not possible to establish a connection with Business Directory's "
7415
+ "server. A problem occurred in the SSL/TSL handshake:"
7416
+ msgstr ""
7417
+ "Non è stato possibile stabilire una connessione con il server di Business "
7418
+ "Directory. Si è verificato un problema nella stretta di mano SSL/TSL:"
7419
+
7420
+ #: includes/licensing.php:444
7421
+ msgctxt "licensing"
7422
+ msgid ""
7423
+ "Please contact your hosting provider and ask them to upgrade your system. "
7424
+ "Include this message if necessary."
7425
+ msgstr ""
7426
+ "Contatta il tuo fornitore di hosting e chiedi loro di aggiornare il tuo "
7427
+ "sistema. Includere questo messaggio se necessario."
7428
+
7429
+ #: includes/licensing.php:451
7430
+ msgctxt "licensing"
7431
+ msgid "Could not contact licensing server"
7432
+ msgstr "Impossibile contattare il server di licenza"
7433
+
7434
+ #: includes/licensing.php:473
7435
+ msgctxt "licensing"
7436
+ msgid "The server returned a 403 Forbidden error."
7437
+ msgstr "Il server ha restituito un errore 403 Forbidden error."
7438
+
7439
+ #: includes/licensing.php:541
7440
+ msgctxt "licensing"
7441
+ msgid "Business Directory - Please verify your license keys"
7442
+ msgstr "Business Directory - Si prega di verificare le chiavi di licenza"
7443
+
7444
+ #: includes/licensing.php:551
7445
+ msgctxt "licensing"
7446
+ msgid ""
7447
+ "The following premium modules will not work until a valid license key is "
7448
+ "provided: %s."
7449
+ msgstr ""
7450
+ "I seguenti moduli premium non funzionano finché non viene fornita una chiave "
7451
+ "di licenza valida: %s."
7452
+
7453
+ #: includes/licensing.php:562
7454
+ msgctxt "licensing"
7455
+ msgid ""
7456
+ "You need to activate the license keys for the following themes before they "
7457
+ "can be used: %s."
7458
+ msgstr ""
7459
+ "È necessario attivare le chiavi di licenza per i seguenti temi prima di "
7460
+ "poterli utilizzare: %s."
7461
+
7462
+ #: includes/licensing.php:570 includes/licensing.php:626
7463
+ msgctxt "licensing"
7464
+ msgid "Review my license keys"
7465
+ msgstr "Rivedere le mie chiavi di licenza"
7466
+
7467
+ #: includes/licensing.php:597
7468
+ msgctxt "licensing"
7469
+ msgid "Business Directory - License key expired"
7470
+ msgstr "Business Directory - Chiave di licenza scaduta"
7471
+
7472
+ #: includes/licensing.php:607
7473
+ msgctxt "licensing"
7474
+ msgid ""
7475
+ "The license key for the following modules has expired: %s. The modules will "
7476
+ "continue to work but you will not receive any more updates until the license "
7477
+ "is renewed."
7478
+ msgstr ""
7479
+ "La chiave di licenza per i seguenti moduli è scaduta: %s. I moduli "
7480
+ "continueranno a funzionare, ma non riceverai più aggiornamenti fino al "
7481
+ "rinnovo della licenza."
7482
+
7483
+ #: includes/licensing.php:618
7484
+ msgctxt "licensing"
7485
+ msgid ""
7486
+ "The license key for the following themes has expired: %s. The themes will "
7487
+ "continue to work but you will not receive any more updates until the license "
7488
+ "is renewed."
7489
+ msgstr ""
7490
+ "La chiave di licenza per i seguenti temi è scaduta: %s. I temi continueranno "
7491
+ "a funzionare, ma non riceverai più aggiornamenti fino al rinnovo della "
7492
+ "licenza."
7493
+
7494
+ #: includes/licensing.php:718
7495
+ msgctxt "licensing"
7496
+ msgid "Please enter a license key."
7497
+ msgstr "Per favore inserisci una chiave di licenza."
7498
+
7499
+ #: includes/licensing.php:727
7500
+ msgctxt "licensing"
7501
+ msgid "Could not activate license: %s."
7502
+ msgstr "Impossibile attivare la licenza: %s."
7503
+
7504
+ #: includes/licensing.php:729
7505
+ msgctxt "licensing"
7506
+ msgid "License activated"
7507
+ msgstr "Licenza attivata"
7508
+
7509
+ #: includes/licensing.php:749
7510
+ msgctxt "licensing"
7511
+ msgid "Could not deactivate license: %s."
7512
+ msgstr "Impossibile disattivare la licenza: %s."
7513
+
7514
+ #: includes/licensing.php:751
7515
+ msgctxt "licensing"
7516
+ msgid "License deactivated"
7517
+ msgstr "Licenza disattivata"
7518
+
7519
+ #. translators: "<module-name>" version <version-number> is not...
7520
+ #: includes/licensing.php:954
7521
+ msgctxt "deprecation"
7522
+ msgid ""
7523
+ "\"%1$s\" version %2$s is not compatible with Business Directory Plugin 5.0. "
7524
+ "Please update this module to the latest available version."
7525
+ msgstr ""
7526
+ "La versione \"%1$s\" %2$s non è compatibile con Business Directory Plugin "
7527
+ "5.0. Si prega di aggiornare questo modulo all'ultima versione disponibile."
7528
+
7529
+ #: includes/payment.php:66
7530
+ msgctxt "payments"
7531
+ msgid "Payment #%s"
7532
+ msgstr "Pagamento #%s"
7533
+
7534
+ #: includes/payment.php:74
7535
+ msgctxt "payments"
7536
+ msgid "Gateway:"
7537
+ msgstr "& Gateway:"
7538
+
7539
+ #: includes/payment.php:76
7540
+ msgctxt "payments"
7541
+ msgid "Gateway Transaction ID:"
7542
+ msgstr "Gateway Transaction ID:"
7543
+
7544
+ #: includes/payment.php:79
7545
+ msgctxt "payments"
7546
+ msgid "Bill To:"
7547
+ msgstr "Intestata a:"
7548
+
7549
+ #: includes/payment.php:96
7550
+ msgctxt "checkout"
7551
+ msgid "Print Receipt"
7552
+ msgstr "Stampa ricevuta"
7553
+
7554
+ #: includes/views/checkout.php:131
7555
+ msgctxt "checkout"
7556
+ msgid "Can not process a payment at this time. Please try again later."
7557
+ msgstr ""
7558
+ "Non è possibile elaborare un pagamento in questo momento. Per favore, "
7559
+ "riprova più tardi."
7560
+
7561
+ #: includes/views/checkout.php:168
7562
+ #, fuzzy
7563
+ msgctxt "checkout"
7564
+ msgid "Invalid nonce received."
7565
+ msgstr "Invalid nonce ricevuto."
7566
+
7567
+ #: includes/views/checkout.php:185
7568
+ msgctxt "checkout"
7569
+ msgid "Invalid gateway selected."
7570
+ msgstr "Gateway non valido selezionato."
7571
+
7572
+ #: includes/views/checkout.php:190
7573
+ msgctxt "checkout"
7574
+ msgid "Selected gateway does not support payment's currency."
7575
+ msgstr "Il gateway selezionato non supporta la valuta del pagamento."
7576
+
7577
+ #: includes/views/checkout.php:199
7578
+ msgctxt "checkout"
7579
+ msgid "Pay Now"
7580
+ msgstr "Paga Adesso"
7581
+
7582
+ #: includes/views/checkout.php:246
7583
+ msgctxt "checkout"
7584
+ msgid "Unknown gateway error."
7585
+ msgstr "Errore gateway sconosciuto."
7586
+
7587
+ #: templates/checkout-billing-form.tpl.php:8
7588
+ msgctxt "checkout"
7589
+ msgid "Personal Info"
7590
+ msgstr "Info personali"
7591
+
7592
+ #: templates/checkout-billing-form.tpl.php:11
7593
+ msgctxt "checkout"
7594
+ msgid "Email Address"
7595
+ msgstr "Indirizzo Email"
7596
+
7597
+ #: templates/checkout-billing-form.tpl.php:12
7598
+ msgctxt "checkout"
7599
+ msgid "We will send a receipt to this e-mail address."
7600
+ msgstr "Invieremo una ricevuta a questo indirizzo e-mail."
7601
+
7602
+ #: templates/checkout-billing-form.tpl.php:17
7603
+ msgctxt "checkout"
7604
+ msgid "First Name"
7605
+ msgstr "Nome"
7606
+
7607
+ #: templates/checkout-billing-form.tpl.php:18
7608
+ msgctxt "checkout"
7609
+ msgid "Your first name."
7610
+ msgstr "Il tuo nome"
7611
+
7612
+ #: templates/checkout-billing-form.tpl.php:23
7613
+ msgctxt "checkout"
7614
+ msgid "Last Name"
7615
+ msgstr "Cognome"
7616
+
7617
+ #: templates/checkout-billing-form.tpl.php:24
7618
+ msgctxt "checkout"
7619
+ msgid "Your last name."
7620
+ msgstr "Il tuo cognome."
7621
+
7622
+ #: templates/checkout-billing-form.tpl.php:32
7623
+ msgctxt "checkout"
7624
+ msgid "Credit Card Info"
7625
+ msgstr "Informazioni Carta di Credito"
7626
+
7627
+ #: templates/checkout-billing-form.tpl.php:35
7628
+ #: templates/checkout-billing-form.tpl.php:37
7629
+ msgctxt "checkout"
7630
+ msgid "Card Number"
7631
+ msgstr "Numero Carta"
7632
+
7633
+ #: templates/checkout-billing-form.tpl.php:36
7634
+ msgctxt "checkout"
7635
+ msgid "The digits on the front of your credit card."
7636
+ msgstr "Le cifre sulla parte anteriore della sua carta di credito."
7637
+
7638
+ #: templates/checkout-billing-form.tpl.php:41
7639
+ msgctxt "checkout"
7640
+ msgid "CVC"
7641
+ msgstr "CVC"
7642
+
7643
+ #: templates/checkout-billing-form.tpl.php:42
7644
+ msgctxt "checkout"
7645
+ msgid ""
7646
+ "The 3 digit (back) or 4 digit (front) security code on your credit card."
7647
+ msgstr ""
7648
+ "Il codice di sicurezza a 3 cifre (sul retro) o a 4 cifre (sul fronte) della "
7649
+ "tua carta di credito."
7650
+
7651
+ #: templates/checkout-billing-form.tpl.php:43
7652
+ msgctxt "checkout"
7653
+ msgid "Security Code"
7654
+ msgstr "Codice di sicurezza"
7655
+
7656
+ #: templates/checkout-billing-form.tpl.php:47
7657
+ msgctxt "checkout"
7658
+ msgid "Name on the Card"
7659
+ msgstr "Nome sulla carta"
7660
+
7661
+ #: templates/checkout-billing-form.tpl.php:48
7662
+ msgctxt "checkout"
7663
+ msgid "The name as it appears printed on the front of your credit card."
7664
+ msgstr ""
7665
+ "Il nome così come appare stampato sulla parte anteriore della carta di "
7666
+ "credito."
7667
+
7668
+ #: templates/checkout-billing-form.tpl.php:49
7669
+ msgctxt "checkout"
7670
+ msgid "Name on the card"
7671
+ msgstr "Nome sulla carta"
7672
+
7673
+ #: templates/checkout-billing-form.tpl.php:53
7674
+ msgctxt "checkout"
7675
+ msgid "Expiration Date"
7676
+ msgstr "Data di scadenza"
7677
+
7678
+ #: templates/checkout-billing-form.tpl.php:54
7679
+ msgctxt "checkout"
7680
+ msgid "Format: MM/YY"
7681
+ msgstr "Formato: MM/AA"
7682
+
7683
+ #: templates/checkout-billing-form.tpl.php:72
7684
+ msgctxt "checkout"
7685
+ msgid "Billing Details"
7686
+ msgstr "Dettagli di fatturazione"
7687
+
7688
+ #: templates/checkout-billing-form.tpl.php:75
7689
+ msgctxt "checkout"
7690
+ msgid "Address"
7691
+ msgstr "Indirizzo"
7692
+
7693
+ #: templates/checkout-billing-form.tpl.php:76
7694
+ msgctxt "checkout"
7695
+ msgid "Please enter the address where you receive your billing statement."
7696
+ msgstr ""
7697
+ "Inserite l'indirizzo al quale riceverete l'estratto conto di fatturazione."
7698
+
7699
+ #: templates/checkout-billing-form.tpl.php:81
7700
+ msgctxt "checkout"
7701
+ msgid "Address Line 2"
7702
+ msgstr "Indirizzo 2"
7703
+
7704
+ #: templates/checkout-billing-form.tpl.php:82
7705
+ msgctxt "checkout"
7706
+ msgid ""
7707
+ "Additional details (suite, apt no, etc.) associated with your billing "
7708
+ "address."
7709
+ msgstr ""
7710
+ "Ulteriori dettagli (suite, apt no, ecc.) associati al tuo indirizzo di "
7711
+ "fatturazione."
7712
+
7713
+ #: templates/checkout-billing-form.tpl.php:87
7714
+ msgctxt "checkout"
7715
+ msgid "City"
7716
+ msgstr "Città"
7717
+
7718
+ #: templates/checkout-billing-form.tpl.php:88
7719
+ msgctxt "checkout"
7720
+ msgid "The city for your billing address."
7721
+ msgstr "Città."
7722
+
7723
+ #: templates/checkout-billing-form.tpl.php:93
7724
+ msgctxt "checkout"
7725
+ msgid "State / Province"
7726
+ msgstr "Provincia"
7727
+
7728
+ #: templates/checkout-billing-form.tpl.php:94
7729
+ msgctxt "checkout"
7730
+ msgid "The state or province for your billing address."
7731
+ msgstr "Provincia."
7732
+
7733
+ #: templates/checkout-billing-form.tpl.php:99
7734
+ msgctxt "checkout"
7735
+ msgid "Postal Code"
7736
+ msgstr "Codice postale"
7737
+
7738
+ #: templates/checkout-billing-form.tpl.php:100
7739
+ msgctxt "checkout"
7740
+ msgid "The ZIP or postal code for your billing address."
7741
+ msgstr "Il CAP o il codice postale per l'indirizzo di fatturazione."
7742
+
7743
+ #: templates/checkout-billing-form.tpl.php:105
7744
+ msgctxt "checkout"
7745
+ msgid "Country"
7746
+ msgstr "Nazione"
7747
+
7748
+ #: templates/checkout-billing-form.tpl.php:106
7749
+ msgctxt "checkout"
7750
+ msgid "The country for your billing address."
7751
+ msgstr "Paese."
7752
+
7753
+ #: templates/checkout-confirmation.tpl.php:7
7754
+ msgctxt "checkout"
7755
+ msgid ""
7756
+ "Your payment is on hold. Please contact the admin if you need further "
7757
+ "details."
7758
+ msgstr ""
7759
+ "Il tuo pagamento è in attesa. Si prega di contattare l'amministratore se "
7760
+ "avete bisogno di ulteriori dettagli."
7761
+
7762
+ #: templates/checkout-confirmation.tpl.php:10
7763
+ msgctxt "checkout"
7764
+ msgid ""
7765
+ "Your payment was rejected. Please contact the admin for further details."
7766
+ msgstr ""
7767
+ "Il tuo pagamento è stato rifiutato. Si prega di contattare l'amministratore "
7768
+ "per ulteriori dettagli."
7769
+
7770
+ #: templates/checkout-confirmation.tpl.php:13
7771
+ msgctxt "checkout"
7772
+ msgid "The payment (#%s) was canceled at your request."
7773
+ msgstr "Il pagamento (#%s) è stato annullato su vostra richiesta."
7774
+
7775
+ #: templates/checkout-confirmation.tpl.php:17
7776
+ msgctxt "checkout"
7777
+ msgid "Your payment is awaiting verification by the gateway."
7778
+ msgstr "Il tuo pagamento è in attesa di verifica da parte del gateway."
7779
+
7780
+ #: templates/checkout-confirmation.tpl.php:20
7781
+ msgctxt "checkout"
7782
+ msgid ""
7783
+ "Verification usually takes some minutes. This page will automatically "
7784
+ "refresh if there's an update."
7785
+ msgstr ""
7786
+ "La verifica di solito richiede alcuni minuti. Questa pagina si aggiorna "
7787
+ "automaticamente se c'è un aggiornamento."
7788
+
7789
+ #: templates/checkout.tpl.php:11
7790
+ msgctxt "checkout"
7791
+ msgid "Checkout"
7792
+ msgstr "Cassa"
7793
+
7794
+ #: templates/checkout.tpl.php:32
7795
+ msgctxt "checkout"
7796
+ msgid ""
7797
+ "Recurring fee plans require a payment method to renew your listing at the "
7798
+ "end of the term."
7799
+ msgstr ""
7800
+ "I piani tariffari ricorrenti richiedono un metodo di pagamento per rinnovare "
7801
+ "il tuo annuncio alla fine del periodo."
7802
+
7803
+ #: templates/checkout.tpl.php:38
7804
+ msgctxt "checkout"
7805
+ msgid "Select a Payment Method"
7806
+ msgstr "Seleziona un metodo di pagamento"
7807
+
7808
+ #: templates/checkout.tpl.php:42
7809
+ msgctxt "checkout"
7810
+ msgid "Next"
7811
+ msgstr "Successivo"
7812
+
7813
+ #: includes/templates-ui.php:373 includes/templates-ui.php:400
7814
+ msgctxt "templates sort"
7815
+ msgid "Sort By:"
7816
+ msgstr "Ordina per:"
7817
+
7818
+ #: includes/templates-ui.php:393
7819
+ msgctxt "sort"
7820
+ msgid "Reset"
7821
+ msgstr "Reset"
7822
+
7823
+ #: includes/templates-ui.php:419
7824
+ msgctxt "sort"
7825
+ msgid "(Reset)"
7826
+ msgstr "(Reset)"
7827
+
7828
+ #: includes/utils.php:213
7829
+ msgctxt "utils"
7830
+ msgid ""
7831
+ "POSTed data exceeds PHP config. maximum. See \"post_max_size\" directive."
7832
+ msgstr ""
7833
+ "I dati inviati come POST superano il massimo di configurazione PHP. Si veda "
7834
+ "la direttiva \"post_max_size\"."
7835
+
7836
+ #: includes/utils.php:261
7837
+ msgctxt "utils"
7838
+ msgid "File size (%s) exceeds maximum file size of %s"
7839
+ msgstr ""
7840
+ "La dimensione del file (%s) supera la dimensione massima del file di %s"
7841
+
7842
+ #: includes/utils.php:269
7843
+ msgctxt "utils"
7844
+ msgid "File size (%s) is inferior to the required minimum file size of %s"
7845
+ msgstr ""
7846
+ "La dimensione del file (%s) è inferiore alla dimensione minima richiesta di "
7847
+ "%s"
7848
+
7849
+ #: includes/utils.php:278 includes/utils.php:285
7850
+ msgctxt "utils"
7851
+ msgid "File type \"%s\" is not allowed"
7852
+ msgstr "Il tipo di file \"%s\" non è consentito"
7853
+
7854
+ #: includes/utils.php:292
7855
+ msgctxt "utils"
7856
+ msgid "Unkown error while uploading file."
7857
+ msgstr "Errore durante il caricamento del file."
7858
+
7859
+ #: includes/utils.php:311
7860
+ msgctxt "utils"
7861
+ msgid "Uploaded file is not an image"
7862
+ msgstr "Il file caricato non è un'immagine"
7863
+
7864
+ #: includes/utils.php:320
7865
+ msgctxt "utils"
7866
+ msgid "Image width (%s px) is inferior to minimum required width of %s px."
7867
+ msgstr ""
7868
+ "La larghezza dell'immagine (%s px) è inferiore a quella richiesta di: %s px."
7869
+
7870
+ #: includes/utils.php:326
7871
+ msgctxt "utils"
7872
+ msgid "Image height (%s px) is inferior to minimum required height of %s px."
7873
+ msgstr ""
7874
+ "L'altezza dell'immagine (%s px) è inferiore a quella richiesta di: %s px."
7875
+
7876
+ #: includes/utils.php:332
7877
+ msgctxt "utils"
7878
+ msgid "Image width (%s px) is greater than maximum allowed width of %s px."
7879
+ msgstr ""
7880
+ "La larghezza dell'immagine (%s px) è troppo grande rispetto al massimo "
7881
+ "consentito di: %s px."
7882
+
7883
+ #: includes/utils.php:338
7884
+ msgctxt "utils"
7885
+ msgid "Image height (%s px) is greater than maximum required height of %s px."
7886
+ msgstr ""
7887
+ "L'altezza dell'immagine (%s px) è troppo grande rispetto al massimo "
7888
+ "consentito che è: %s px."
7889
+
7890
+ #: includes/utils.php:352
7891
+ msgctxt "utils"
7892
+ msgid "Error while uploading file"
7893
+ msgstr "Errore durante il caricamento del file"
7894
+
7895
+ #: includes/views/delete_listing.php:38
7896
+ msgctxt "delete listing"
7897
+ msgid "Your listing has been deleted."
7898
+ msgstr "Il tuo annuncio è stato cancellato."
7899
+
7900
+ #: templates/delete-listing-confirm.tpl.php:7
7901
+ msgctxt "delete listing"
7902
+ msgid ""
7903
+ "Your listing is associated to a recurring payment. If you don't cancel the "
7904
+ "recurring payment before deleting the listing, you might be charged for "
7905
+ "additional periods even though your listing won't be available."
7906
+ msgstr ""
7907
+ "Il tuo annuncio è associato ad un pagamento ricorrente. Se non cancelli il "
7908
+ "pagamento ricorrente prima di cancellare l'annuncio, potresti essere "
7909
+ "addebitato per periodi aggiuntivi anche se il tuo annuncio non sarà "
7910
+ "disponibile."
7911
+
7912
+ #: templates/delete-listing-confirm.tpl.php:12
7913
+ msgctxt "delete listing"
7914
+ msgid ""
7915
+ "Please visit <a>Manage recurring payments</a> to review your current "
7916
+ "recurring payments."
7917
+ msgstr ""
7918
+ "Per favore visita <a>Gestione pagamenti ricorrenti</a> Per esaminare i tuoi "
7919
+ "pagamenti ricorrenti correnti."
7920
+
7921
+ #: templates/delete-listing-confirm.tpl.php:18
7922
+ msgctxt "delete listing"
7923
+ msgid "You are about to remove your listing \"%s\" from the directory."
7924
+ msgstr "Stai per rimuovere il tuo annuncio \"%s\" dalla directory."
7925
+
7926
+ #: templates/delete-listing-confirm.tpl.php:19
7927
+ msgctxt "delete listing"
7928
+ msgid "Are you sure you want to do this?"
7929
+ msgstr "Sei sicuro di volerlo fare?"
7930
+
7931
+ #: templates/delete-listing-confirm.tpl.php:24
7932
+ msgctxt "delete listing"
7933
+ msgid "No. Take me back to the directory."
7934
+ msgstr "No. Riportatemi all'elenco."
7935
+
7936
+ #: templates/delete-listing-confirm.tpl.php:25
7937
+ msgctxt "delete listing"
7938
+ msgid "Yes. Delete my listing."
7939
+ msgstr "Si'. Cancellare il mio annuncio."
7940
+
7941
+ #: includes/views/listing_contact.php:50
7942
+ msgctxt "contact-message"
7943
+ msgid "Please enter your name."
7944
+ msgstr "Inserisci il tuo nome."
7945
+
7946
+ #: includes/views/listing_contact.php:54
7947
+ msgctxt "contact-message"
7948
+ msgid "Please enter a valid email."
7949
+ msgstr "Inserisci un indirizzo email valido."
7950
+
7951
+ #: includes/views/listing_contact.php:58
7952
+ msgctxt "contact-message"
7953
+ msgid "You did not enter a message."
7954
+ msgstr "Non hai inserito un messaggio."
7955
+
7956
+ #: includes/views/listing_contact.php:219
7957
+ msgctxt "contact-message"
7958
+ msgid "Your message has been sent."
7959
+ msgstr "Il tuo messaggio è stato spedito."
7960
+
7961
+ #: includes/views/listing_contact.php:241
7962
+ msgctxt "contact-message"
7963
+ msgid "There was a problem encountered. Your message has not been sent"
7964
+ msgstr "C'è stato un problema. Il tuo messaggio non è stato inviato"
7965
+
7966
+ #: includes/views/listing_contact.php:244
7967
+ msgctxt "contact-message"
7968
+ msgid "Return to listing."
7969
+ msgstr "Torna all'annuncio."
7970
+
7971
+ #: includes/views/listing_contact.php:77
7972
+ msgctxt "contact form"
7973
+ msgid "Please <a>log in</a> to be able to send messages to the listing owner."
7974
+ msgstr ""
7975
+ "Devi aver effettuato <a>l'accesso</a> per poter inviare messaggi al "
7976
+ "proprietario."
7977
+
7978
+ #: includes/views/listing_contact.php:103
7979
+ msgctxt "contact form"
7980
+ msgid "This contact form is temporarily disabled. Please try again later."
7981
+ msgstr ""
7982
+ "Questo modulo di contatto è temporaneamente disabilitato. Per favore, "
7983
+ "riprova più tardi."
7984
+
7985
+ #: includes/views/login.php:47
7986
+ msgctxt "views:login"
7987
+ msgid "Please enter a valid e-mail/access key combination."
7988
+ msgstr "Inserire una combinazione valida di e-mail/chiave di accesso."
7989
+
7990
+ #: templates/login.tpl.php:36
7991
+ msgctxt "views:login"
7992
+ msgid "Login"
7993
+ msgstr "Accedi"
7994
+
7995
+ #: templates/login.tpl.php:49
7996
+ msgctxt "views:login"
7997
+ msgid "... or use an Access Key"
7998
+ msgstr ".... o utilizzare una chiave di accesso"
7999
+
8000
+ #: templates/login.tpl.php:50
8001
+ msgctxt "views:login"
8002
+ msgid "Please enter your access key and e-mail address."
8003
+ msgstr "Inserisci il tuo codice di accesso e l'indirizzo e-mail."
8004
+
8005
+ #: templates/login.tpl.php:54
8006
+ msgctxt "views:login"
8007
+ msgid "E-Mail Address"
8008
+ msgstr "Indirizzo email"
8009
+
8010
+ #: templates/login.tpl.php:55
8011
+ msgctxt "views:login"
8012
+ msgid "Access Key"
8013
+ msgstr "Chiave d'accesso"
8014
+
8015
+ #: templates/login.tpl.php:56
8016
+ msgctxt "views:login"
8017
+ msgid "Use Access Key"
8018
+ msgstr "Utilizzare il tasto di accesso"
8019
+
8020
+ #: templates/login.tpl.php:57
8021
+ msgctxt "views:login"
8022
+ msgid "Request access key?"
8023
+ msgstr "Richiedere la chiave di accesso?"
8024
+
8025
+ #: includes/views/manage_listings.php:20
8026
+ msgctxt "view:manage-listings"
8027
+ msgid "Please <a>login</a> to manage your listings."
8028
+ msgstr "Effettua il <a>login</a> per gestire i tuoi annunci."
8029
+
8030
+ #: includes/views/manage_recurring.php:36
8031
+ msgctxt "manage subscription"
8032
+ msgid "The listing with id = <listing-id> doesn't exists."
8033
+ msgstr "L'elenco con id = <listing-id>non esiste."
8034
+
8035
+ #: includes/views/manage_recurring.php:49
8036
+ msgctxt "manage subscriptions"
8037
+ msgid ""
8038
+ "You are not authorized to cancel this subscription. The link you followed is "
8039
+ "invalid."
8040
+ msgstr ""
8041
+ "Non sei autorizzato a cancellare questo abbonamento. Il link che hai seguito "
8042
+ "non è valido."
8043
+
8044
+ #: includes/views/manage_recurring.php:60
8045
+ msgctxt "manage subscriptions"
8046
+ msgid "Invalid subscription."
8047
+ msgstr "Sottoscrizione non valida."
8048
+
8049
+ #: includes/views/manage_recurring.php:83
8050
+ msgctxt "manage subscriptions"
8051
+ msgid "Your subscription was canceled."
8052
+ msgstr "Il tuo abbonamento è stato cancellato."
8053
+
8054
+ #: templates/manage-recurring.tpl.php:6
8055
+ msgctxt "manage subscriptions"
8056
+ msgid "Subscription / Fee Plan"
8057
+ msgstr "Abbonamento / Piano tariffario"
8058
+
8059
+ #: includes/views/manage_recurring.php:100
8060
+ msgctxt "manage listings"
8061
+ msgid "You are not on recurring payments for any of your listings."
8062
+ msgstr "Non sei su pagamenti ricorrenti per nessuno dei tuoi annunci."
8063
+
8064
+ #: includes/views/renew_listing.php:26
8065
+ msgctxt "renewal"
8066
+ msgid "Listing renewal is disabled at this moment. Please try again later."
8067
+ msgstr ""
8068
+ "In questo momento il rinnovo dell'annuncio è disabilitato. Per favore, "
8069
+ "riprova più tardi."
8070
+
8071
+ #: includes/views/renew_listing.php:32
8072
+ msgctxt "renewal"
8073
+ msgid ""
8074
+ "Your renewal ID is invalid. Please use the URL you were given on the renewal "
8075
+ "e-mail message."
8076
+ msgstr ""
8077
+ "Il tuo ID di rinnovo non è valido. Utilizza l'URL che hai ricevuto nel "
8078
+ "messaggio di rinnovo che hai ricevuto per posta elettronica."
8079
+
8080
+ #: includes/views/renew_listing.php:58
8081
+ msgctxt "renewal"
8082
+ msgid "Your listing has been removed from the directory."
8083
+ msgstr "Il tuo annuncio è stato rimosso dall'elenco."
8084
+
8085
+ #: includes/views/renew_listing.php:60
8086
+ msgctxt "renewal"
8087
+ msgid "Could not remove listing from directory."
8088
+ msgstr "Impossibile rimuovere l'annuncio dalla directory."
8089
+
8090
+ #: templates/renew-listing-manage-subscription.tpl.php:6
8091
+ msgctxt "renewal"
8092
+ msgid "Current Fee Details"
8093
+ msgstr "Dettagli del canone attuale"
8094
+
8095
+ #: templates/renew-listing-manage-subscription.tpl.php:9
8096
+ msgctxt "renewal"
8097
+ msgid "Name:"
8098
+ msgstr "Nome:"
8099
+
8100
+ #: templates/renew-listing-manage-subscription.tpl.php:11
8101
+ msgctxt "renewal"
8102
+ msgid "Number of images:"
8103
+ msgstr "Numero di immagini:"
8104
+
8105
+ #: templates/renew-listing-manage-subscription.tpl.php:13
8106
+ msgctxt "renewal"
8107
+ msgid "Expiration date:"
8108
+ msgstr "Data scadenza:"
8109
+
8110
+ #: templates/renew-listing.tpl.php:17
8111
+ msgctxt "renewal"
8112
+ msgid "Proceed to Checkout"
8113
+ msgstr "Procedi al pagamento"
8114
+
8115
+ #: templates/renew-listing.tpl.php:42
8116
+ msgctxt "renewal"
8117
+ msgid ""
8118
+ "Clicking the button below will cause your listing to be permanently removed "
8119
+ "from the directory."
8120
+ msgstr ""
8121
+ "Facendo clic sul pulsante sottostante, il tuo annuncio verrà rimosso "
8122
+ "permanentemente dalla directory."
8123
+
8124
+ #: templates/renew-resume.tpl.php:10
8125
+ #, fuzzy
8126
+ msgctxt "renewal"
8127
+ msgid "Renew Fee Resume"
8128
+ msgstr "Rinnovare il curriculum della tassa"
8129
+
8130
+ #: templates/renew-resume.tpl.php:18
8131
+ msgctxt "renewal"
8132
+ msgid "You are about to renew the listing %s."
8133
+ msgstr "Stai per rinnovare l'annuncio %s."
8134
+
8135
+ #: templates/renew-resume.tpl.php:24
8136
+ msgctxt "renewal"
8137
+ msgid "In order to complete the renewal, please confirm fee selection."
8138
+ msgstr ""
8139
+ "Per completare il rinnovo, si prega di confermare la selezione del piano "
8140
+ "tariffario."
8141
+
8142
+ #: includes/views/renew_listing.php:133
8143
+ msgctxt "listings"
8144
+ msgid "Fee \"%s\" renewal."
8145
+ msgstr "Canone \"%s\" di rinnovo."
8146
+
8147
+ #: includes/views/request_access_keys.php:13
8148
+ msgctxt "request_access_keys"
8149
+ msgid "Did you mean to <a>access the Directory</a>?"
8150
+ msgstr "Intendevi <a>accedere alla Directory</a>?"
8151
+
8152
+ #: includes/views/request_access_keys.php:39
8153
+ msgctxt "request_access_keys"
8154
+ msgid "Access keys have been sent to your e-mail address."
8155
+ msgstr "Le chiavi di accesso sono state inviate al tuo indirizzo e-mail."
8156
+
8157
+ #: includes/views/request_access_keys.php:44
8158
+ msgctxt "request_access_keys"
8159
+ msgid "← Return to previous page"
8160
+ msgstr "← Ritorno alla pagina precedente"
8161
+
8162
+ #: templates/email-access-keys.tpl.php:1
8163
+ msgctxt "request_access_keys"
8164
+ msgid ""
8165
+ "Below you'll find the access keys for all the listings registered with your "
8166
+ "e-mail address on our site."
8167
+ msgstr ""
8168
+ "Qui sotto troverete le chiavi di accesso a tutte le inserzioni registrate "
8169
+ "con il vostro indirizzo e-mail sul nostro sito."
8170
+
8171
+ #: templates/email-access-keys.tpl.php:6
8172
+ msgctxt "request_access_keys"
8173
+ msgid "Access Key:"
8174
+ msgstr "Chiave d'accesso:"
8175
+
8176
+ #: templates/email-access-keys.tpl.php:7
8177
+ msgctxt "request_access_keys"
8178
+ msgid "URL:"
8179
+ msgstr "URL:"
8180
+
8181
+ #: includes/views/search.php:41
8182
+ msgctxt "search"
8183
+ msgid "\"%s\" is required."
8184
+ msgstr "%s è richiesto."
8185
+
8186
+ #: templates/deprecated/search.tpl.php:6 templates/search-form.tpl.php:28
8187
+ #: templates/search.tpl.php:3
8188
+ msgctxt "search"
8189
+ msgid "Search"
8190
+ msgstr "Cerca"
8191
+
8192
+ #: templates/deprecated/search.tpl.php:14 templates/search.tpl.php:10
8193
+ msgctxt "search"
8194
+ msgid "Search Results"
8195
+ msgstr "Risultati di ricerca"
8196
+
8197
+ #: templates/search-form.tpl.php:27
8198
+ msgctxt "search"
8199
+ msgid "Clear"
8200
+ msgstr "Cancella"
8201
+
8202
+ #: includes/views/show_listing.php:12
8203
+ msgctxt "preview"
8204
+ msgid "This is just a preview. The listing has not been published yet."
8205
+ msgstr "Questa è solo un'anteprima. L'Annuncio non è ancora stato pubblicato."
8206
+
8207
+ #: includes/views/submit_listing.php:671
8208
+ msgctxt "listing submit"
8209
+ msgid ""
8210
+ "Something went wrong. Please check the form for errors, correct them and "
8211
+ "submit again."
8212
+ msgstr ""
8213
+ "Qualcosa è andato storto. Si prega di controllare il modulo per eventuali "
8214
+ "errori, correggerli e ripresentarli di nuovo."
8215
+
8216
+ #: includes/views/submit_listing.php:755
8217
+ msgctxt "listing submit"
8218
+ msgid ""
8219
+ "Image upload is required, please provide at least one image and submit again."
8220
+ msgstr ""
8221
+ "L'upload dell'immagine è richiesto, si prega di fornire almeno un'immagine e "
8222
+ "inviare di nuovo."
8223
+
8224
+ #: templates/submit-listing-plan-selection-complete.tpl.php:25
8225
+ msgctxt "listing submit"
8226
+ msgid "Change category/plan"
8227
+ msgstr "Cambia categoria/piano"
8228
+
8229
+ #: includes/widgets/class-listings-widget.php:45
8230
+ #: includes/widgets/widget-search.php:22
8231
+ msgctxt "widgets"
8232
+ msgid "Title:"
8233
+ msgstr "Titolo:"
8234
+
8235
+ #: includes/widgets/class-listings-widget.php:51
8236
+ msgctxt "widgets"
8237
+ msgid "Number of listings to display:"
8238
+ msgstr "Numero di Annunci da visualizzare:"
8239
+
8240
+ #: includes/widgets/class-listings-widget.php:60
8241
+ msgctxt "widgets"
8242
+ msgid "Thumbnails"
8243
+ msgstr "Miniature"
8244
+
8245
+ #: includes/widgets/class-listings-widget.php:68
8246
+ msgctxt "widgets"
8247
+ msgid "Show thumbnails"
8248
+ msgstr "Mostra miniature"
8249
+
8250
+ #: includes/widgets/class-listings-widget.php:72
8251
+ msgctxt "widgets"
8252
+ msgid "Image width (in px):"
8253
+ msgstr "Ampiezza dell'immagine (in px):"
8254
+
8255
+ #: includes/widgets/class-listings-widget.php:78
8256
+ msgctxt "widgets"
8257
+ msgid "Leave blank for automatic width."
8258
+ msgstr "Lasciare vuoto per la larghezza automatica."
8259
+
8260
+ #: includes/widgets/class-listings-widget.php:83
8261
+ msgctxt "widgets"
8262
+ msgid "Image height (in px):"
8263
+ msgstr "Altezza dell'immagine (in px):"
8264
+
8265
+ #: includes/widgets/class-listings-widget.php:89
8266
+ msgctxt "widgets"
8267
+ msgid "Leave blank for automatic height."
8268
+ msgstr "Lasciare vuoto per l'altezza automatica."
8269
+
8270
+ #: includes/widgets/widget-featured-listings.php:11
8271
+ msgctxt "widgets"
8272
+ msgid "Business Directory - Featured Listings"
8273
+ msgstr "Business Directory - Annunci in primo piano"
8274
+
8275
+ #: includes/widgets/widget-featured-listings.php:12
8276
+ msgctxt "widgets"
8277
+ msgid "Displays a list of the featured/sticky listings in the directory."
8278
+ msgstr "Visualizza un elenco degli annunci in evidenza nella rubrica."
8279
+
8280
+ #: includes/widgets/widget-featured-listings.php:14
8281
+ msgctxt "widgets"
8282
+ msgid "Featured Listings"
8283
+ msgstr "Annunci in primo piano"
8284
+
8285
+ #: includes/widgets/widget-featured-listings.php:23
8286
+ msgctxt "widgets"
8287
+ msgid "Display listings in random order"
8288
+ msgstr "Visualizzare gli annunci in ordine casuale"
8289
+
8290
+ #: includes/widgets/widget-latest-listings.php:11
8291
+ msgctxt "widgets"
8292
+ msgid "Business Directory - Latest Listings"
8293
+ msgstr "Business Directory - Ultimi Annunci"
8294
+
8295
+ #: includes/widgets/widget-latest-listings.php:12
8296
+ msgctxt "widgets"
8297
+ msgid "Displays a list of the latest listings in the Business Directory."
8298
+ msgstr "Visualizza un elenco degli ultimi annunci nella Business Directory."
8299
+
8300
+ #: includes/widgets/widget-latest-listings.php:14
8301
+ msgctxt "widgets"
8302
+ msgid "Latest Listings"
8303
+ msgstr "Ultimi Annunci"
8304
+
8305
+ #: includes/widgets/widget-random-listings.php:11
8306
+ msgctxt "widgets"
8307
+ msgid "Business Directory - Random Listings"
8308
+ msgstr " Business Directory - Annunci casuali"
8309
+
8310
+ #: includes/widgets/widget-random-listings.php:12
8311
+ msgctxt "widgets"
8312
+ msgid "Displays a list of random listings from the Business Directory."
8313
+ msgstr "Visualizza un elenco di annunci casuali dalla Business Directory."
8314
+
8315
+ #: includes/widgets/widget-random-listings.php:14
8316
+ msgctxt "widgets"
8317
+ msgid "Random Listings"
8318
+ msgstr "Annunci casuali"
8319
+
8320
+ #: includes/widgets/widget-search.php:10
8321
+ msgctxt "widgets"
8322
+ msgid "Business Directory - Search"
8323
+ msgstr " Business Directory - Ricerca"
8324
+
8325
+ #: includes/widgets/widget-search.php:11
8326
+ msgctxt "widgets"
8327
+ msgid "Displays a search form to look for Business Directory listings."
8328
+ msgstr ""
8329
+ "Visualizza un modulo di ricerca per cercare gli annunci di Business "
8330
+ "Directory."
8331
+
8332
+ #: includes/widgets/widget-search.php:18
8333
+ msgctxt "widgets"
8334
+ msgid "Search the Business Directory"
8335
+ msgstr "Ricerca nella Business Directory"
8336
+
8337
+ #: includes/widgets/widget-search.php:29
8338
+ msgctxt "widgets"
8339
+ msgid "Form Style:"
8340
+ msgstr "Stile del modulo:"
8341
+
8342
+ #: includes/widgets/widget-search.php:37
8343
+ msgctxt "widgets"
8344
+ msgid "Basic"
8345
+ msgstr "Base"
8346
+
8347
+ #: includes/widgets/widget-search.php:45
8348
+ msgctxt "widgets"
8349
+ msgid "Advanced"
8350
+ msgstr "Avanzate"
8351
+
8352
+ #: includes/widgets/widget-search.php:49
8353
+ msgctxt "widgets"
8354
+ msgid "Search Fields (advanced mode):"
8355
+ msgstr "Campi di ricerca (modalità avanzata):"
8356
+
8357
+ #: includes/widgets/widget-search.php:50
8358
+ msgctxt "widgets"
8359
+ msgid "Display the following fields in the form."
8360
+ msgstr "Visualizzare i seguenti campi nel modulo."
8361
+
8362
+ #: includes/widgets/widget-search.php:107
8363
+ msgctxt "widgets"
8364
+ msgid "Search"
8365
+ msgstr "Cerca"
8366
+
8367
+ #: templates/admin/csv-export.tpl.php:85 templates/admin/csv-export.tpl.php:104
8368
+ #: templates/admin/csv-export.tpl.php:115 templates/admin/csv-import.tpl.php:50
8369
+ #: templates/admin/csv-import.tpl.php:116
8370
+ #: templates/admin/csv-import.tpl.php:142
8371
+ #: templates/admin/csv-import.tpl.php:153
8372
+ #: templates/admin/csv-import.tpl.php:180
8373
+ msgctxt "admin forms"
8374
+ msgid "required"
8375
+ msgstr "richiesto"
8376
+
8377
+ #: templates/admin/fees-index.tpl.php:89 templates/admin/sidebar.tpl.php:13
8378
+ msgctxt "admin sidebar"
8379
+ msgid "PayPal Gateway Module"
8380
+ msgstr "Modulo PayPal Gateway"
8381
+
8382
+ #: templates/admin/fees-index.tpl.php:90 templates/admin/sidebar.tpl.php:14
8383
+ msgctxt "admin sidebar"
8384
+ msgid "2Checkout Gateway Module"
8385
+ msgstr "Modulo Gateway 2Checkout"
8386
+
8387
+ #: templates/admin/fees-index.tpl.php:91 templates/admin/sidebar.tpl.php:5
8388
+ msgctxt "admin sidebar"
8389
+ msgid "PayFast Payment Module"
8390
+ msgstr "Modulo di pagamento PayFast"
8391
+
8392
+ #: templates/admin/fees-index.tpl.php:92 templates/admin/sidebar.tpl.php:6
8393
+ msgctxt "admin sidebar"
8394
+ msgid "Stripe Payment Module"
8395
+ msgstr "Modulo di pagamento Stripe"
8396
+
8397
+ #: templates/admin/sidebar.tpl.php:3
8398
+ msgctxt "admin sidebar"
8399
+ msgid "Discount Codes Module"
8400
+ msgstr "Modulo Codici Sconto"
8401
+
8402
+ #: templates/admin/sidebar.tpl.php:4
8403
+ msgctxt "admin sidebar"
8404
+ msgid "Claim Listings Module"
8405
+ msgstr "Modulo di richieste Claim"
8406
+
8407
+ #: templates/admin/sidebar.tpl.php:7
8408
+ msgctxt "admin sidebar"
8409
+ msgid "File Upload Module"
8410
+ msgstr "Modulo di caricamento file"
8411
+
8412
+ #: templates/admin/sidebar.tpl.php:8
8413
+ msgctxt "admin sidebar"
8414
+ msgid "Featured Levels Module"
8415
+ msgstr "Modulo Livelli in primo piano"
8416
+
8417
+ #: templates/admin/sidebar.tpl.php:9
8418
+ msgctxt "admin sidebar"
8419
+ msgid "ZIP Code Search Module"
8420
+ msgstr "Modulo di ricerca dei codici di avviamento postale"
8421
+
8422
+ #: templates/admin/sidebar.tpl.php:10
8423
+ msgctxt "admin sidebar"
8424
+ msgid "Regions Module"
8425
+ msgstr "Modulo Regioni"
8426
+
8427
+ #: templates/admin/sidebar.tpl.php:11
8428
+ msgctxt "admin sidebar"
8429
+ msgid "Ratings Module"
8430
+ msgstr "Modulo Valutazioni"
8431
+
8432
+ #: templates/admin/sidebar.tpl.php:12
8433
+ msgctxt "admin sidebar"
8434
+ msgid "Google Maps Module"
8435
+ msgstr "Modulo Google Maps"
8436
+
8437
+ #: templates/admin/sidebar.tpl.php:18
8438
+ msgctxt "admin sidebar"
8439
+ msgid "Business Card Theme"
8440
+ msgstr "Tema del biglietto da visita"
8441
+
8442
+ #: templates/admin/sidebar.tpl.php:19
8443
+ msgctxt "admin sidebar"
8444
+ msgid "Mobile Compact Theme"
8445
+ msgstr "Tema compatto mobile"
8446
+
8447
+ #: templates/admin/sidebar.tpl.php:20
8448
+ msgctxt "admin sidebar"
8449
+ msgid "Restaurant Theme"
8450
+ msgstr "Tema del ristorante"
8451
+
8452
+ #: templates/admin/sidebar.tpl.php:21
8453
+ msgctxt "admin sidebar"
8454
+ msgid "Tabbed Business Theme"
8455
+ msgstr "Tema di business a schede"
8456
+
8457
+ #: templates/admin/sidebar.tpl.php:22
8458
+ msgctxt "admin sidebar"
8459
+ msgid "Elegant Business Theme"
8460
+ msgstr "Elegante tema di business"
8461
+
8462
+ #: templates/admin/sidebar.tpl.php:29
8463
+ msgctxt "admin sidebar"
8464
+ msgid "Like this plugin?"
8465
+ msgstr "Tipiace questo plugin?"
8466
+
8467
+ #: templates/admin/sidebar.tpl.php:31
8468
+ msgctxt "admin sidebar"
8469
+ msgid "Why not do any or all of the following:"
8470
+ msgstr "Perché non eseguire una o tutte le operazioni seguenti:"
8471
+
8472
+ #: templates/admin/sidebar.tpl.php:33
8473
+ msgctxt "admin sidebar"
8474
+ msgid "Give it a good rating on WordPress.org."
8475
+ msgstr "Dare un buon voto su WordPress.org."
8476
+
8477
+ #: templates/admin/sidebar.tpl.php:34
8478
+ msgctxt "admin sidebar"
8479
+ msgid "Let other people know that it works with your WordPress setup."
8480
+ msgstr ""
8481
+ "Consenti agli altri di sapere che funziona con la configurazione di "
8482
+ "WordPress."
8483
+
8484
+ #: templates/admin/sidebar.tpl.php:35
8485
+ msgctxt "admin sidebar"
8486
+ msgid "Buy a Premium Module"
8487
+ msgstr "Comprare un modulo Premium"
8488
+
8489
+ #: templates/admin/sidebar.tpl.php:42
8490
+ msgctxt "admin sidebar"
8491
+ msgid "Get a Premium Module"
8492
+ msgstr "Ottenere un modulo Premium"
8493
+
8494
+ #: templates/admin/sidebar.tpl.php:45 templates/admin/sidebar.tpl.php:61
8495
+ msgctxt "admin sidebar"
8496
+ msgid "best deal"
8497
+ msgstr "miglior offerta"
8498
+
8499
+ #: templates/admin/sidebar.tpl.php:45
8500
+ msgctxt "admin sidebar"
8501
+ msgid "Combo Pack"
8502
+ msgstr "Pacchetto Combo"
8503
+
8504
+ #: templates/admin/sidebar.tpl.php:45
8505
+ msgctxt "admin sidebar"
8506
+ msgid "(All Modules)"
8507
+ msgstr "(Tutti i moduli)"
8508
+
8509
+ #: templates/admin/sidebar.tpl.php:48 templates/admin/sidebar.tpl.php:64
8510
+ msgctxt "admin sidebar"
8511
+ msgid "new"
8512
+ msgstr "nuovo"
8513
+
8514
+ #: templates/admin/sidebar.tpl.php:58
8515
+ msgctxt "admin sidebar"
8516
+ msgid "Get a Directory Theme"
8517
+ msgstr "Ottenere un tema della directory"
8518
+
8519
+ #: templates/admin/sidebar.tpl.php:61
8520
+ msgctxt "admin sidebar"
8521
+ msgid "Theme Pack"
8522
+ msgstr "Pacchetto a tema"
8523
+
8524
+ #: templates/admin/sidebar.tpl.php:61
8525
+ msgctxt "admin sidebar"
8526
+ msgid "(All Themes)"
8527
+ msgstr "(Tutti i temi)"
8528
+
8529
+ #: templates/admin/sidebar.tpl.php:74
8530
+ msgctxt "admin sidebar"
8531
+ msgid "Found a bug? Need support?"
8532
+ msgstr "Trovato un bug? Hai bisogno di supporto?"
8533
+
8534
+ #: templates/admin/sidebar.tpl.php:79
8535
+ msgctxt "admin sidebar"
8536
+ msgid "If you've found a bug or need support <a>visit the forums!</a>"
8537
+ msgstr ""
8538
+ "Se hai trovato un bug o hai bisogno di supporto <a>visita il forum!</a>"
8539
+
8540
+ #: templates/admin/sidebar.tpl.php:82
8541
+ msgctxt "admin sidebar"
8542
+ msgid "Full plugin documentation"
8543
+ msgstr "Documentazione completa dei plugin"
8544
+
8545
+ #: templates/admin/sidebar.tpl.php:83
8546
+ msgctxt "admin sidebar"
8547
+ msgid "Quick Start Guide"
8548
+ msgstr "Guida rapida"
8549
+
8550
+ #: templates/admin/sidebar.tpl.php:84
8551
+ msgctxt "admin sidebar"
8552
+ msgid "Video Tutorials"
8553
+ msgstr "Video Tutorial"
8554
+
8555
+ #: templates/admin/sidebar.tpl.php:92
8556
+ msgctxt "admin sidebar"
8557
+ msgid "Installed Modules"
8558
+ msgstr "Moduli installati"
8559
+
8560
+ #: templates/admin/sidebar.tpl.php:103 templates/admin/sidebar.tpl.php:112
8561
+ msgctxt "admin sidebar"
8562
+ msgid "Installed"
8563
+ msgstr "Installato"
8564
+
8565
+ #: templates/admin/sidebar.tpl.php:105 templates/admin/sidebar.tpl.php:112
8566
+ msgctxt "admin sidebar"
8567
+ msgid "Not Installed"
8568
+ msgstr "Non installato"
8569
+
8570
+ #: templates/admin/sidebar.tpl.php:111
8571
+ msgctxt "admin sidebar"
8572
+ msgid "Enhanced Categories Module"
8573
+ msgstr "Modulo Categorie migliorate"
8574
+
8575
+ #: templates/admin/fees-index.tpl.php:102
8576
+ msgctxt "admin templates"
8577
+ msgid ""
8578
+ "It does not appear you have any of the payment gateway modules enabled. "
8579
+ "Either <a>enable the default Authorize.net gateway</a> with your account "
8580
+ "info, or purchase a different payment gateway module in order to charge a "
8581
+ "fee for listings. To purchase additional payment gateways use the buttons "
8582
+ "below or visit %s."
8583
+ msgstr ""
8584
+ "Non viene visualizzato alcun modulo di gateway di pagamento abilitato. O "
8585
+ "<a>abilitare il gateway predefinito di Authorize.net</a> Con le informazioni "
8586
+ "sul tuo account o acquistare un altro modulo di gateway di pagamento per "
8587
+ "pagare una tassa per gli elenchi. Per acquistare gateway di pagamento "
8588
+ "aggiuntivi, utilizzare i pulsanti qui sotto o visita %s."
8589
+
8590
+ #: templates/admin/fees-index.tpl.php:118
8591
+ msgctxt "admin templates"
8592
+ msgid "Already installed."
8593
+ msgstr "Già installato."
8594
+
8595
+ #: templates/admin/fees-index.tpl.php:123
8596
+ msgctxt "admin templates"
8597
+ msgid ""
8598
+ "You can buy the <a>%s</a> to add <a>%s</a> as a payment option for your "
8599
+ "users."
8600
+ msgstr ""
8601
+ "È possibile acquistare il <a>%s</a> aggiungere<a>%s</a> come opzione di "
8602
+ "pagamento per i tuoi utenti."
8603
+
8604
+ #: templates/admin/home.tpl.php:14
8605
+ msgctxt "admin home"
8606
+ msgid "Welcome to Business Directory Plugin. You are using %s."
8607
+ msgstr "Benvenuti a Business Directory Plugin. Stai usando %s."
8608
+
8609
+ #: templates/admin/home.tpl.php:17
8610
+ msgctxt "admin home"
8611
+ msgid ""
8612
+ "Thanks for choosing us. There's a lot you probably want to get done, so "
8613
+ "let's jump right in!"
8614
+ msgstr ""
8615
+ "Grazie per aver scelto Terracina Web. C'è molto da fare, quindi iniziamo!"
8616
+
8617
+ #: templates/admin/home.tpl.php:29
8618
+ msgctxt "admin home"
8619
+ msgid ""
8620
+ "Our complete documentation is <a>here</a> which we encourage you to use "
8621
+ "while setting things up."
8622
+ msgstr ""
8623
+ "La nostra documentazione completa è <a>qui</a> e vi invitiamo a consultarla "
8624
+ "durante l'installazione."
8625
+
8626
+ #: templates/admin/home.tpl.php:36
8627
+ msgctxt "admin home"
8628
+ msgid ""
8629
+ "We have some quick-start scenarios that you will find useful regarding setup "
8630
+ "and configuration <a>here</a>."
8631
+ msgstr ""
8632
+ "Abbiamo alcuni scenari di avvio rapido che troverete utili per quanto "
8633
+ "riguarda l'installazione e la configurazione <a>qui</a>."
8634
+
8635
+ #: templates/admin/home.tpl.php:44
8636
+ msgctxt "admin home"
8637
+ msgid ""
8638
+ "If you have questions, please post a comment on <a>support forum</a> and "
8639
+ "we'll answer it within 24 hours most days."
8640
+ msgstr ""
8641
+ "Se avete domande, si prega di inviare un commento sul <a>forum di supporto</"
8642
+ "a> e vi risponderemo entro 24 ore la maggior parte dei giorni."
8643
+
8644
+ #: templates/admin/metaboxes-listing-information-other.tpl.php:3
8645
+ msgctxt "admin infometabox"
8646
+ msgid "Access Key"
8647
+ msgstr "Chiave d'accesso"
8648
+
8649
+ #: templates/admin/metaboxes-listing-information-plan.tpl.php:113
8650
+ msgctxt "admin infometabox"
8651
+ msgid "Renewal url (copy & paste)"
8652
+ msgstr "Url di rinnovo (copia e incolla)"
8653
+
8654
+ #: templates/admin/metaboxes-listing-information-plan.tpl.php:113
8655
+ msgctxt "admin infometabox"
8656
+ msgid "Get renewal URL"
8657
+ msgstr "Ottenere l'URL di rinnovo"
8658
+
8659
+ #: templates/admin/metaboxes-listing-information-plan.tpl.php:115
8660
+ msgctxt "admin infometabox"
8661
+ msgid "Send renewal e-mail"
8662
+ msgstr "Inviare l'e-mail di rinnovo"
8663
+
8664
+ #: templates/admin/metaboxes-listing-information-plan.tpl.php:120
8665
+ msgctxt "admin infometabox"
8666
+ msgid "Renew listing"
8667
+ msgstr "Rinnova l'elenco"
8668
+
8669
+ #: templates/admin/payments-details.tpl.php:5
8670
+ msgctxt "admin payments"
8671
+ msgid "Payment #<id>"
8672
+ msgstr "Pagamento #<id>"
8673
+
8674
+ #: templates/admin/payments-details.tpl.php:26
8675
+ msgctxt "admin payments"
8676
+ msgid "Overview"
8677
+ msgstr "Panoramica"
8678
+
8679
+ #: templates/admin/payments-details.tpl.php:30
8680
+ msgctxt "admin payments"
8681
+ msgid "Payment ID:"
8682
+ msgstr "ID Pagamento:"
8683
+
8684
+ #: templates/admin/payments-details.tpl.php:34
8685
+ msgctxt "admin payments"
8686
+ msgid "Listing:"
8687
+ msgstr "Annuncio:"
8688
+
8689
+ #: templates/admin/payments-details.tpl.php:38
8690
+ msgctxt "admin payments"
8691
+ msgid "Status:"
8692
+ msgstr "Stato:"
8693
+
8694
+ #: templates/admin/payments-details.tpl.php:47
8695
+ msgctxt "admin payments"
8696
+ msgid "Date:"
8697
+ msgstr "Data:"
8698
+
8699
+ #: templates/admin/payments-details.tpl.php:51
8700
+ msgctxt "admin payments"
8701
+ msgid "Time:"
8702
+ msgstr "Ora:"
8703
+
8704
+ #: templates/admin/payments-details.tpl.php:56
8705
+ msgctxt "admin payments"
8706
+ msgid "Gateway:"
8707
+ msgstr "& Gateway:"
8708
+
8709
+ #: templates/admin/payments-index.tpl.php:9
8710
+ msgctxt "admin payments"
8711
+ msgid "Search Payments:"
8712
+ msgstr "Cerca Pagamenti:"
8713
+
8714
+ #: templates/admin/payments-index.tpl.php:11
8715
+ msgctxt "admin payments"
8716
+ msgid "Search"
8717
+ msgstr "Cerca"
8718
+
8719
+ #: templates/admin/payments-details.tpl.php:173
8720
+ msgctxt "payment admins"
8721
+ msgid "Add Note"
8722
+ msgstr "Aggiungi nota"
8723
+
8724
+ #: templates/admin/privacy-policy.tpl.php:11
8725
+ msgctxt "privacy policy"
8726
+ msgid "Business Directory Plugin"
8727
+ msgstr "Business Directory Plugin"
8728
+
8729
+ #: templates/admin/privacy-policy.tpl.php:12
8730
+ msgctxt "privacy policy"
8731
+ msgid ""
8732
+ "When you submit a directory listing, the content of the listing and its "
8733
+ "metadata are retained indefinitely. All users can see, edit or delete the "
8734
+ "personal information included on their listings at any time. Website "
8735
+ "administrators can also see and edit that information."
8736
+ msgstr ""
8737
+ "Quando si invia un annuncio, il contenuto dello stesso e i suoi metadati "
8738
+ "vengono conservati a tempo indeterminato. Tutti gli utenti possono vedere, "
8739
+ "modificare o cancellare in qualsiasi momento le informazioni personali "
8740
+ "incluse nei loro annunci. Gli amministratori del sito web possono anche "
8741
+ "vedere e modificare tali informazioni."
8742
+
8743
+ #: templates/admin/privacy-policy.tpl.php:13
8744
+ msgctxt "privacy policy"
8745
+ msgid ""
8746
+ "Website visitors can see the contact name, website URL, phone number, "
8747
+ "address and other information included in your submission to describe the "
8748
+ "directory listing."
8749
+ msgstr ""
8750
+ "I visitatori del sito web possono vedere il nome del contatto, l'URL del "
8751
+ "sito web, il numero di telefono, l'indirizzo e altre informazioni incluse "
8752
+ "nell'invio per descrivere l'annuncio."
8753
+
8754
+ #: templates/admin/privacy-policy.tpl.php:14
8755
+ msgctxt "privacy policy"
8756
+ msgid "Payment Information"
8757
+ msgstr "Informazioni di Pagamento"
8758
+
8759
+ #: templates/admin/privacy-policy.tpl.php:15
8760
+ msgctxt "privacy policy"
8761
+ msgid ""
8762
+ "If you pay to post a directory listing entering your credit card and billing "
8763
+ "information directly on <a href=\"{home_url}\">{home_url}</a>, the credit "
8764
+ "card information won't be stored but it will be shared through a secure "
8765
+ "connection with the following payment gateways to process the payment:"
8766
+ msgstr ""
8767
+ "Se si paga per pubblicare un annuncio con i dati della carta di credito e di "
8768
+ "fatturazione direttamente su <a href=\"{home_url}\">{home_url}</a>, i dati "
8769
+ "della carta di credito non saranno memorizzati, ma saranno condivisi "
8770
+ "attraverso una connessione sicura con i seguenti gateway di pagamento per "
8771
+ "elaborare il pagamento:"
8772
+
8773
+ #: templates/admin/privacy-policy.tpl.php:17
8774
+ msgctxt "privacy policy"
8775
+ msgid ""
8776
+ "PayPal &mdash; <a href=\"https://www.paypal.com/webapps/mpp/ua/privacy-full"
8777
+ "\">https://www.paypal.com/webapps/mpp/ua/privacy-full</a>"
8778
+ msgstr ""
8779
+ "PayPal &mdash; <a href=\"https://www.paypal.com/webapps/mpp/ua/privacy-full"
8780
+ "\">https://www.paypal.com/webapps/mpp/ua/privacy-full</a>"
8781
+
8782
+ #: templates/admin/privacy-policy.tpl.php:18
8783
+ msgctxt "privacy policy"
8784
+ msgid ""
8785
+ "Authorize.Net &mdash; <a href=\"https://www.authorize.net/company/privacy/"
8786
+ "\">https://www.authorize.net/company/privacy/</a>"
8787
+ msgstr ""
8788
+ "Authorize.Net &mdash; <a href=\"https://www.authorize.net/company/privacy/"
8789
+ "\">https://www.authorize.net/company/privacy/</a>"
8790
+
8791
+ #: templates/admin/privacy-policy.tpl.php:19
8792
+ msgctxt "privacy policy"
8793
+ msgid ""
8794
+ "Stripe &mdash; <a href=\"https://stripe.com/us/privacy/\">https://stripe.com/"
8795
+ "us/privacy/</a>"
8796
+ msgstr ""
8797
+ "Stripe &mdash; <a href=\"https://stripe.com/us/privacy/\">https://stripe.com/"
8798
+ "us/privacy/</a>"
8799
+
8800
+ #: templates/admin/privacy-policy.tpl.php:20
8801
+ msgctxt "privacy policy"
8802
+ msgid ""
8803
+ "2Checkout &mdash; <a href=\"https://www.2checkout.com/policies/privacy-policy"
8804
+ "\">https://www.2checkout.com/policies/privacy-policy</a>"
8805
+ msgstr ""
8806
+ "2Checkout &mdash; <a href=\"https://www.2checkout.com/policies/privacy-policy"
8807
+ "\">https://www.2checkout.com/policies/privacy-policy</a>"
8808
+
8809
+ #: templates/admin/privacy-policy.tpl.php:21
8810
+ msgctxt "privacy policy"
8811
+ msgid ""
8812
+ "Payfast &mdash; <a href=\"https://www.payfast.co.za/privacy-policy/"
8813
+ "\">https://www.payfast.co.za/privacy-policy/</a>"
8814
+ msgstr ""
8815
+ "Payfast &mdash; <a href=\"https://www.payfast.co.za/privacy-policy/"
8816
+ "\">https://www.payfast.co.za/privacy-policy/</a>"
8817
+
8818
+ #: templates/admin/settings-email.tpl.php:8
8819
+ msgctxt "settings email"
8820
+ msgid "Untitled"
8821
+ msgstr "Senza titolo"
8822
+
8823
+ #: templates/admin/settings-email.tpl.php:27
8824
+ msgctxt "settings email"
8825
+ msgid "Click to edit e-mail"
8826
+ msgstr "Fare clic per modificare l'e-mail"
8827
+
8828
+ #: templates/admin/settings-email.tpl.php:28
8829
+ msgctxt "settings email"
8830
+ msgid "Click to edit"
8831
+ msgstr "Clicca per modificare"
8832
+
8833
+ #: templates/admin/settings-email.tpl.php:46
8834
+ msgctxt "settings email"
8835
+ msgid "E-Mail Subject"
8836
+ msgstr "Oggetto dell'email"
8837
+
8838
+ #: templates/admin/settings-email.tpl.php:52
8839
+ msgctxt "settings email"
8840
+ msgid "E-Mail Body"
8841
+ msgstr "Corpo di posta elettronica"
8842
+
8843
+ #: templates/admin/settings-email.tpl.php:58
8844
+ msgctxt "settings email"
8845
+ msgid "You can use the following placeholders:"
8846
+ msgstr "Puoi utilizzare i seguenti segnaposti:"
8847
+
8848
+ #: templates/admin/settings-email.tpl.php:88
8849
+ msgctxt "settings email"
8850
+ msgid "Preview e-mail"
8851
+ msgstr "Anteprima e-mail"
8852
+
8853
+ #: templates/admin/settings-email.tpl.php:89
8854
+ msgctxt "settings email"
8855
+ msgid "Cancel"
8856
+ msgstr "Annulla"
8857
+
8858
+ #: templates/admin/settings-email.tpl.php:90
8859
+ msgctxt "settings email"
8860
+ msgid "Save Changes"
8861
+ msgstr "Salva modifiche"
8862
+
8863
+ #: templates/admin/themes-delete-confirm.tpl.php:1
8864
+ #: templates/admin/themes-delete-confirm.tpl.php:13
8865
+ msgctxt "themes admin"
8866
+ msgid "Delete Directory Theme"
8867
+ msgstr "Elimina il tema della directory"
8868
+
8869
+ #: templates/admin/themes-delete-confirm.tpl.php:3
8870
+ msgctxt "themes admin"
8871
+ msgid "Are you sure you want to delete the directory theme \"%s\"?"
8872
+ msgstr "Sei sicuro di voler eliminare il tema della directory \"%s\"?"
8873
+
8874
+ #: templates/admin/themes-delete-confirm.tpl.php:12
8875
+ msgctxt "themes admin"
8876
+ msgid "Cancel"
8877
+ msgstr "Annulla"
8878
+
8879
+ #: templates/admin/uninstall-capture-form.tpl.php:5
8880
+ msgctxt "uninstall"
8881
+ msgid "It doesn't work with my theme/plugins/site"
8882
+ msgstr "Non funziona con il mio tema/plugins/sito"
8883
+
8884
+ #: templates/admin/uninstall-capture-form.tpl.php:6
8885
+ msgctxt "uninstall"
8886
+ msgid "I can't set it up/Too complicated"
8887
+ msgstr "Non posso sistemarlo/Troppo complicato"
8888
+
8889
+ #: templates/admin/uninstall-capture-form.tpl.php:7
8890
+ msgctxt "uninstall"
8891
+ msgid "Doesn't solve my problem"
8892
+ msgstr "Non risolve il mio problema"
8893
+
8894
+ #: templates/admin/uninstall-capture-form.tpl.php:8
8895
+ msgctxt "uninstall"
8896
+ msgid "Don't need it anymore/Not using it"
8897
+ msgstr "Non ne ho più bisogno / Non lo uso"
8898
+
8899
+ #: templates/admin/uninstall-capture-form.tpl.php:9
8900
+ msgctxt "uninstall"
8901
+ msgid "Other"
8902
+ msgstr "Altro"
8903
+
8904
+ #: templates/admin/uninstall-capture-form.tpl.php:16
8905
+ msgctxt "uninstall"
8906
+ msgid ""
8907
+ "We're sorry to see you leave. Could you take 10 seconds and answer one "
8908
+ "question for us to help us make the product better for everyone in the "
8909
+ "future?"
8910
+ msgstr ""
8911
+ "Siamo spiacenti di vederti andartene. Potresti prenderti 10 secondi e "
8912
+ "rispondere a una domanda per aiutarci a rendere il prodotto migliore per "
8913
+ "tutti in futuro?"
8914
+
8915
+ #: templates/admin/uninstall-capture-form.tpl.php:19
8916
+ msgctxt "uninstall"
8917
+ msgid "Why are you deleting Business Directory Plugin?"
8918
+ msgstr "Perché stai eliminando Business Directory Plugin?"
8919
+
8920
+ #: templates/admin/uninstall-capture-form.tpl.php:22
8921
+ msgctxt "uninstall"
8922
+ msgid "Please choose an option."
8923
+ msgstr "Selezionare un’opzione."
8924
+
8925
+ #: templates/admin/uninstall-capture-form.tpl.php:34
8926
+ msgctxt "uninstall"
8927
+ msgid "Please tell us why are you deleting Business Directory Plugin."
8928
+ msgstr ""
8929
+ "Vi preghiamo di dirci perché state cancellando Business Directory Plugin."
8930
+
8931
+ #: templates/admin/uninstall-capture-form.tpl.php:37
8932
+ msgctxt "uninstall"
8933
+ msgid "Please enter your reasons."
8934
+ msgstr "Inserisci i tuoi motivi."
8935
+
8936
+ #: templates/admin/uninstall-capture-form.tpl.php:46
8937
+ msgctxt "uninstall"
8938
+ msgid "Uninstall Plugin"
8939
+ msgstr "Disinstallare il plugin"
8940
+
8941
+ #: templates/admin/uninstall-confirm.tpl.php:1
8942
+ msgctxt "uninstall"
8943
+ msgid "Uninstall Business Directory Plugin"
8944
+ msgstr "Disinstallare Business Directory Plugin"
8945
+
8946
+ #: templates/admin/uninstall-confirm.tpl.php:11
8947
+ msgctxt "uninstall"
8948
+ msgid "Uninstalling Business Directory Plugin will do the following:"
8949
+ msgstr "La disinstallazione di Business Directory Plugin farà quanto segue:"
8950
+
8951
+ #: templates/admin/uninstall-confirm.tpl.php:14
8952
+ msgctxt "uninstall"
8953
+ msgid "Remove ALL directory listings"
8954
+ msgstr "Rimuovi TUTTI gli elenchi delle directory"
8955
+
8956
+ #: templates/admin/uninstall-confirm.tpl.php:15
8957
+ msgctxt "uninstall"
8958
+ msgid "Remove ALL directory categories"
8959
+ msgstr "Rimuovi TUTTE le categorie della directory"
8960
+
8961
+ #: templates/admin/uninstall-confirm.tpl.php:16
8962
+ msgctxt "uninstall"
8963
+ msgid "Remove ALL directory settings"
8964
+ msgstr "Rimuovi TUTTE le impostazioni della directory"
8965
+
8966
+ #: templates/admin/uninstall-confirm.tpl.php:17
8967
+ msgctxt "uninstall"
8968
+ msgid ""
8969
+ "Remove ALL premium module configuration data (regions, maps, ratings, "
8970
+ "featured levels)"
8971
+ msgstr ""
8972
+ "Rimuovi TUTTI i dati di configurazione del modulo premium (regioni, mappe, "
8973
+ "valutazioni, livelli di funzionalità)"
8974
+
8975
+ #: templates/admin/uninstall-confirm.tpl.php:18
8976
+ msgctxt "uninstall"
8977
+ msgid "Deactivate the plugin from the file system"
8978
+ msgstr "Disattivare il plugin dal file system"
8979
+
8980
+ #: templates/admin/uninstall-confirm.tpl.php:21
8981
+ msgctxt "uninstall"
8982
+ msgid "ONLY do this if you are sure you're OK with LOSING ALL OF YOUR DATA."
8983
+ msgstr ""
8984
+ "Fallo solo se sei sicuro di essere d'accordo nel perdere TUTTI I TUOI DATI."
8985
+
8986
+ #: templates/admin/uninstall-confirm.tpl.php:24
8987
+ msgctxt "uninstall"
8988
+ msgid "Yes, I want to uninstall"
8989
+ msgstr "Sì, voglio disinstallare"
8990
+
8991
+ #: templates/admin/uninstall-confirm.tpl.php:28
8992
+ msgctxt "uninstall"
8993
+ msgid "If you just need to reinstall the plugin, please do the following:"
8994
+ msgstr "Se avete solo bisogno di reinstallare il plugin, fate quanto segue:"
8995
+
8996
+ #: templates/admin/uninstall-confirm.tpl.php:31
8997
+ msgctxt "uninstall"
8998
+ msgid "Go to <a>Plugins->Installed Plugins"
8999
+ msgstr "Vai a <a>Plugin->Plugin installati</a>"
9000
+
9001
+ #: templates/admin/uninstall-confirm.tpl.php:32
9002
+ msgctxt "uninstall"
9003
+ msgid ""
9004
+ "Click on \"Deactivate\" for Business Directory Plugin. Wait for this to "
9005
+ "finish"
9006
+ msgstr ""
9007
+ "Fare clic per \"Disattivare\" Business Directory Plugin. Aspetta che tutto "
9008
+ "questo finisca"
9009
+
9010
+ #: templates/admin/uninstall-confirm.tpl.php:33
9011
+ msgctxt "uninstall"
9012
+ msgid ""
9013
+ "Click on \"Delete\" for Business Directory Plugin. <i>THIS OPERATION IS "
9014
+ "SAFE--your data will NOT BE LOST doing this</i>"
9015
+ msgstr ""
9016
+ "Fare clic su \"Elimina\" per i plugin Business Directory. <i>QUESTA "
9017
+ "OPERAZIONE È SICURO - i tuoi dati NON SARANNO PERDUTI facendo questo.</i>"
9018
+
9019
+ #: templates/admin/uninstall-confirm.tpl.php:34
9020
+ msgctxt "uninstall"
9021
+ msgid "Wait for the delete to finish"
9022
+ msgstr "Attendere la fine della cancellazione"
9023
+
9024
+ #: templates/admin/uninstall-confirm.tpl.php:35
9025
+ msgctxt "uninstall"
9026
+ msgid ""
9027
+ "The plugin is now removed, but your data is still present inside of your "
9028
+ "database."
9029
+ msgstr ""
9030
+ "Il plugin è stato rimosso, ma i dati sono ancora presenti all'interno del "
9031
+ "database."
9032
+
9033
+ #: templates/admin/uninstall-confirm.tpl.php:36
9034
+ msgctxt "uninstall"
9035
+ msgid "You can reinstall the plugin again under <a>Plugins->Add New</a>"
9036
+ msgstr ""
9037
+ "È possibile reinstallare il plugin di nuovo sotto <a>Plugin->Aggiungi nuovo</"
9038
+ "a>"
9039
+
9040
+ #: templates/admin/uninstall-confirm.tpl.php:39
9041
+ msgctxt "uninstall"
9042
+ msgid "Take me to the <b>Plugins</b> screen"
9043
+ msgstr "Portami alla schermata <b>Plugins</b>"
9044
+
9045
+ #: templates/admin/uninstall-complete.tpl.php:2
9046
+ msgctxt "admin uninstall"
9047
+ msgid "Uninstall Business Directory"
9048
+ msgstr "Disinstallare Business Directory"
9049
+
9050
+ #: templates/admin/uninstall-complete.tpl.php:7
9051
+ msgctxt "admin uninstall"
9052
+ msgid "Uninstall completed."
9053
+ msgstr "Disinstallazione completata."
9054
+
9055
+ #: templates/admin/uninstall-complete.tpl.php:8
9056
+ msgctxt "admin uninstall"
9057
+ msgid "Return to Dashboard."
9058
+ msgstr "Torna a Dashboard."
9059
+
9060
+ #: templates/delete-listing-confirm.tpl.php:3
9061
+ msgctxt "manage recurring"
9062
+ msgid "Delete Listing"
9063
+ msgstr "Elimina Annuncio"
9064
+
9065
+ #: templates/manage-recurring-cancel.tpl.php:1
9066
+ msgctxt "manage recurring"
9067
+ msgid "Manage Recurring Payments - Cancel Subscription"
9068
+ msgstr "Gestire i pagamenti ricorrenti - Annullare l'abbonamento"
9069
+
9070
+ #: templates/manage-recurring-cancel.tpl.php:4
9071
+ msgctxt "manage recurring"
9072
+ msgid "Plan Details"
9073
+ msgstr "Dettagli del piano"
9074
+
9075
+ #: templates/manage-recurring-cancel.tpl.php:8
9076
+ msgctxt "manage recurring"
9077
+ msgid "Name:"
9078
+ msgstr "Nome:"
9079
+
9080
+ #: templates/manage-recurring-cancel.tpl.php:14
9081
+ msgctxt "manage recurring"
9082
+ msgid "Cost:"
9083
+ msgstr "Costo:"
9084
+
9085
+ #: templates/manage-recurring-cancel.tpl.php:17
9086
+ msgctxt "manage recurring"
9087
+ msgid "%s every %s days."
9088
+ msgstr "%s ogni %s giorni."
9089
+
9090
+ #: templates/manage-recurring-cancel.tpl.php:22
9091
+ msgctxt "manage recurring"
9092
+ msgid "Number of images:"
9093
+ msgstr "Numero di immagini:"
9094
+
9095
+ #: templates/manage-recurring-cancel.tpl.php:28
9096
+ msgctxt "manage recurring"
9097
+ msgid "Expires on:"
9098
+ msgstr "Scade il:"
9099
+
9100
+ #: templates/manage-recurring-cancel.tpl.php:36
9101
+ msgctxt "manage recurring"
9102
+ msgid "Are you sure you want to cancel this subscription?"
9103
+ msgstr "Si sicuro di voler annullare questo abbonamento?"
9104
+
9105
+ #: templates/manage-recurring-cancel.tpl.php:38
9106
+ msgctxt "manage recurring"
9107
+ msgid "Yes, cancel subscription"
9108
+ msgstr "Sì, annulla l'abbonamento"
9109
+
9110
+ #: templates/manage-recurring-cancel.tpl.php:39
9111
+ msgctxt "manage recurring"
9112
+ msgid "No, go back to my subscriptions"
9113
+ msgstr "No, torna ai miei abbonamenti"
9114
+
9115
+ #: templates/manage-recurring.tpl.php:1
9116
+ msgctxt "manage recurring"
9117
+ msgid "Manage Recurring Payments"
9118
+ msgstr "Gestire i pagamenti ricorrenti"
9119
+
9120
+ #: templates/manage-recurring.tpl.php:5
9121
+ msgctxt "manage recurring"
9122
+ msgid "Listing"
9123
+ msgstr "Annuncio"
9124
+
9125
+ #: templates/manage-recurring.tpl.php:28
9126
+ msgctxt "manage recurring"
9127
+ msgid "%s each %s days. Next renewal is on %s."
9128
+ msgstr "%s ogni %s giorni. Il prossimo rinnovo è in %s."
9129
+
9130
+ #: templates/manage-recurring.tpl.php:39
9131
+ msgctxt "manage recurring"
9132
+ msgid "Cancel recurring payment"
9133
+ msgstr "Annulla pagamento ricorrente"
9134
+
9135
+ #: templates/email/listing-added.tpl.php:2
9136
+ msgctxt "emails"
9137
+ msgid ""
9138
+ "A new listing has been submitted to the directory. Listing details can be "
9139
+ "found below."
9140
+ msgstr ""
9141
+ "Un nuovo annuncio è stato inviato alla directory. I dettagli dell'annuncio "
9142
+ "sono riportati di seguito."
9143
+
9144
+ #: templates/email/listing-edited.tpl.php:8
9145
+ msgctxt "emails"
9146
+ msgid ""
9147
+ "A listing in the directory has been edited recently. Listing details can be "
9148
+ "found below."
9149
+ msgstr ""
9150
+ "Un elenco della directory è stato modificato di recente. I dettagli "
9151
+ "dell'elenco sono riportati di seguito."
9152
+
9153
+ #: templates/email/listing-reported.tpl.php:2
9154
+ msgctxt "emails"
9155
+ msgid ""
9156
+ "A listing has been reported as inappropriate. Listing details can be found "
9157
+ "below."
9158
+ msgstr ""
9159
+ "Un annuncio è stato segnalato come inappropriato. I dettagli dell'elenco "
9160
+ "sono riportati di seguito."
9161
+
9162
+ #: templates/main-box.tpl.php:23
9163
+ msgctxt "main box"
9164
+ msgid "Find listings for <keywords>"
9165
+ msgstr "Cerca un annuncio"
9166
+
9167
+ #: templates/main-box.tpl.php:29
9168
+ msgctxt "main box"
9169
+ msgid "Find Listings"
9170
+ msgstr "Cerca"
9171
+
9172
+ #: templates/main-box.tpl.php:30
9173
+ msgctxt "main box"
9174
+ msgid "Advanced Search"
9175
+ msgstr "Ricerca Avanzata"
9176
+
9177
+ #: templates/payment/payment_items.tpl.php:5
9178
+ msgctxt "payment_items"
9179
+ msgid "Item"
9180
+ msgstr "Elemento"
9181
+
9182
+ #: templates/payment/payment_items.tpl.php:6
9183
+ msgctxt "payment_items"
9184
+ msgid "Amount"
9185
+ msgstr "Importo"
9186
+
9187
+ #: templates/payment/payment_items.tpl.php:24
9188
+ msgctxt "payment_items"
9189
+ msgid "Total"
9190
+ msgstr "Totale"
9191
+
9192
+ #: templates/plan-selection-plan.tpl.php:33
9193
+ msgctxt "plan selection"
9194
+ msgid "days"
9195
+ msgstr "giorni"
9196
+
9197
+ #: templates/plan-selection-plan.tpl.php:35
9198
+ msgctxt "plan selection"
9199
+ msgid "(Recurring)"
9200
+ msgstr "(Periodico)"
9201
+
9202
+ #: templates/plan-selection-plan.tpl.php:39
9203
+ msgctxt "plan selection"
9204
+ msgid "Never Expires"
9205
+ msgstr "Non scade mai"
9206
+
9207
+ #: templates/plan-selection-plan.tpl.php:72
9208
+ msgctxt "plan selection"
9209
+ msgid ""
9210
+ "This plan can't be used for admin submits. For a recurring plan to work, end "
9211
+ "users need to pay for it using a supported gateway."
9212
+ msgstr ""
9213
+ "Questo piano non può essere utilizzato per gli annunci degli amministratori. "
9214
+ "Per far funzionare un piano ricorrente, gli utenti finali devono pagare per "
9215
+ "questo utilizzando un gateway supportato."
9216
+
9217
+ #: templates/plan-selection-plan.tpl.php:77
9218
+ msgctxt "plan selection"
9219
+ msgid "Private fee plan"
9220
+ msgstr "Piano privato a pagamento"
9221
+
9222
+ #: templates/renew-listing-manage-subscription.tpl.php:4
9223
+ msgctxt "renew"
9224
+ msgid ""
9225
+ "Because you are on a recurring fee plan you don't have to renew your listing "
9226
+ "right now as this will be handled automatically when renewal comes."
9227
+ msgstr ""
9228
+ "Poiché sei su un piano a pagamento ricorrente non è necessario rinnovare il "
9229
+ "tuo annuncio in questo momento in quanto questo verrà gestito "
9230
+ "automaticamente al momento del rinnovo."
9231
+
9232
+ #: templates/renew-listing-manage-subscription.tpl.php:26
9233
+ msgctxt "renew"
9234
+ msgid ""
9235
+ "However, if you want to cancel your subscription you can do that on <manage-"
9236
+ "recurring-link>the manage recurring payments page</manage-recurring-link>. "
9237
+ "When the renewal time comes you'll be able to change your settings again."
9238
+ msgstr ""
9239
+ "Tuttavia, se vuoi cancellare il tuo abbonamento puoi farlo nella <manage-"
9240
+ "recurring-link>pagina di gestione dei pagamenti ricorrenti</manage-recurring-"
9241
+ "link>. Quando arriva il momento del rinnovo, sarà possibile modificare "
9242
+ "nuovamente le impostazioni."
9243
+
9244
+ #: templates/renew-listing-manage-subscription.tpl.php:33
9245
+ msgctxt "renew"
9246
+ msgid "Go to Manage Recurring Payments page"
9247
+ msgstr "Vai alla pagina Gestione dei pagamenti ricorrenti"
9248
+
9249
+ #: templates/send-access-keys.tpl.php:7
9250
+ msgctxt "send-access-keys"
9251
+ msgid "Enter your e-mail address"
9252
+ msgstr "Inserisci il tuo indirizzo email"
9253
+
9254
+ #: templates/send-access-keys.tpl.php:11
9255
+ msgctxt "send-access-keys"
9256
+ msgid "Continue"
9257
+ msgstr "Continua"
9258
+
9259
+ #: templates/submit-listing-images-upload-form.tpl.php:16
9260
+ msgctxt "templates image upload"
9261
+ msgid "or"
9262
+ msgstr "o"
9263
+
9264
+ #: templates/submit-listing-plan-selection.tpl.php:14
9265
+ msgctxt "submit"
9266
+ msgid ""
9267
+ "You can't change the plan your listing is on but you can modify the "
9268
+ "categories it appears in, using the field below. Details about the plan are "
9269
+ "shown for completeness."
9270
+ msgstr ""
9271
+ "Non puoi cambiare il piano in cui si trova il tuo annuncio ma puoi "
9272
+ "modificare le categorie in cui appare, utilizzando il campo sottostante. I "
9273
+ "dettagli del piano sono riportati per completezza."
9274
+
9275
+ #: templates/submit-listing-plan-selection.tpl.php:27
9276
+ msgctxt "submit"
9277
+ msgid ""
9278
+ "You need to pick the categories first and then you'll be shown the available "
9279
+ "fee plans for your listing."
9280
+ msgstr ""
9281
+ "È necessario scegliere prima le categorie e poi ti verranno mostrati i piani "
9282
+ "tariffari disponibili per il tuo annuncio."
9283
+
9284
+ #: templates/submit-listing-plan-selection.tpl.php:37
9285
+ msgctxt "submit"
9286
+ msgid "Your plan's details:"
9287
+ msgstr "I dettagli del tuo piano:"
9288
+
9289
+ #: templates/submit-listing-plan-selection.tpl.php:63
9290
+ msgctxt "submit"
9291
+ msgid "Please choose a fee plan for your listing:"
9292
+ msgstr "Scegli un piano tariffario per il tuo annuncio:"
9293
+
9294
+ #: themes/default/templates/excerpt_content.tpl.php:23
9295
+ msgctxt "themes/default"
9296
+ msgid "Address"
9297
+ msgstr "Indirizzo"
9298
+
9299
+ #~ msgctxt "payment-gateway"
9300
+ #~ msgid "This field is required ("
9301
+ #~ msgstr "Questo campo è richiesto ("
languages/WPBDM-nl_NL.mo CHANGED
Binary file
languages/WPBDM-nl_NL.po CHANGED
@@ -3,7 +3,7 @@ msgstr ""
3
  "Project-Id-Version: Business Directory Plugin v5.5\n"
4
  "Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/business-"
5
  "directory-plugin\n"
6
- "POT-Creation-Date: 2019-03-20 00:09:46+00:00\n"
7
  "PO-Revision-Date: 2017-07-04 12:37+0000\n"
8
  "Last-Translator: admin <info@nederlofcentrum.nl>\n"
9
  "Language-Team: Dutch\n"
@@ -1116,7 +1116,7 @@ msgid ""
1116
  "or let Business Directory do this for you automatically."
1117
  msgstr ""
1118
 
1119
- #: includes/admin/form-fields.php:214 includes/views/submit_listing.php:516
1120
  msgctxt "admin"
1121
  msgid "Go to \"Manage Form Fields\""
1122
  msgstr "Ga naar \"instellen formulier velden\""
@@ -1126,12 +1126,12 @@ msgctxt "admin"
1126
  msgid "Create these required fields for me"
1127
  msgstr "Creëer deze vereiste velden voor me"
1128
 
1129
- #: includes/payment.php:181
1130
  msgctxt "admin"
1131
  msgid "Pending Abandonment"
1132
  msgstr ""
1133
 
1134
- #: includes/payment.php:186
1135
  msgctxt "admin"
1136
  msgid "Abandoned"
1137
  msgstr ""
@@ -1146,53 +1146,53 @@ msgctxt "listing status"
1146
  msgid "Reported"
1147
  msgstr ""
1148
 
1149
- #: includes/class-listing.php:768
1150
  msgctxt "listing status"
1151
  msgid "Unknown"
1152
  msgstr ""
1153
 
1154
- #: includes/class-listing.php:769
1155
  msgctxt "listing status"
1156
  msgid "Legacy"
1157
  msgstr ""
1158
 
1159
- #: includes/class-listing.php:770
1160
  #, fuzzy
1161
  msgctxt "listing status"
1162
  msgid "Incomplete"
1163
  msgstr "Afgerond"
1164
 
1165
- #: includes/class-listing.php:771
1166
  #, fuzzy
1167
  msgctxt "listing status"
1168
  msgid "Pending Payment"
1169
  msgstr "Wachtend op upgrade"
1170
 
1171
- #: includes/class-listing.php:772
1172
  #, fuzzy
1173
  msgctxt "listing status"
1174
  msgid "Complete"
1175
  msgstr "Afgerond"
1176
 
1177
- #: includes/class-listing.php:773
1178
  #, fuzzy
1179
  msgctxt "listing status"
1180
  msgid "Pending Upgrade"
1181
  msgstr "Wachtend op upgrade"
1182
 
1183
- #: includes/class-listing.php:774
1184
  #, fuzzy
1185
  msgctxt "listing status"
1186
  msgid "Expired"
1187
  msgstr "Verlopen"
1188
 
1189
- #: includes/class-listing.php:775
1190
  #, fuzzy
1191
  msgctxt "listing status"
1192
  msgid "Pending Renewal"
1193
  msgstr "Registratie vernieuwing"
1194
 
1195
- #: includes/class-listing.php:776
1196
  msgctxt "listing status"
1197
  msgid "Abandoned"
1198
  msgstr ""
@@ -1811,22 +1811,22 @@ msgctxt "themes"
1811
  msgid "Theme was updated successfully."
1812
  msgstr ""
1813
 
1814
- #: includes/themes.php:825
1815
  msgctxt "themes"
1816
  msgid "ZIP file is not a valid BD theme file."
1817
  msgstr ""
1818
 
1819
- #: includes/themes.php:831
1820
  msgctxt "themes"
1821
  msgid "Could not create themes directory."
1822
  msgstr ""
1823
 
1824
- #: includes/themes.php:839
1825
  msgctxt "themes"
1826
  msgid "Could not remove previous theme directory \"%s\"."
1827
  msgstr ""
1828
 
1829
- #: includes/themes.php:845
1830
  msgctxt "themes"
1831
  msgid "Could not move new theme into theme directory."
1832
  msgstr ""
@@ -2752,12 +2752,12 @@ msgctxt "form-fields admin"
2752
  msgid "Automatically generate excerpt from content field?"
2753
  msgstr ""
2754
 
2755
- #: includes/fields/class-fieldtypes-url.php:23
2756
  msgctxt "form-fields admin"
2757
  msgid "Open link in a new window?"
2758
  msgstr ""
2759
 
2760
- #: includes/fields/class-fieldtypes-url.php:26
2761
  msgctxt "form-fields admin"
2762
  msgid "Use rel=\"nofollow\" when displaying the link?"
2763
  msgstr ""
@@ -3457,13 +3457,13 @@ msgid "Author"
3457
  msgstr "Auteur"
3458
 
3459
  #: includes/admin/settings/class-settings-bootstrap.php:682
3460
- #: includes/functions.php:1179
3461
  msgctxt "admin settings"
3462
  msgid "Date posted"
3463
  msgstr "Datum ingediend"
3464
 
3465
  #: includes/admin/settings/class-settings-bootstrap.php:683
3466
- #: includes/functions.php:1180
3467
  msgctxt "admin settings"
3468
  msgid "Date last modified"
3469
  msgstr ""
@@ -3848,12 +3848,12 @@ msgid ""
3848
  "not activated."
3849
  msgstr ""
3850
 
3851
- #: includes/functions.php:1177
3852
  msgctxt "admin settings"
3853
  msgid "User"
3854
  msgstr "Gebruiker"
3855
 
3856
- #: includes/functions.php:1178
3857
  msgctxt "admin settings"
3858
  msgid "User registration date"
3859
  msgstr "Gebruikers registratie datum"
@@ -5608,35 +5608,35 @@ msgctxt "listing"
5608
  msgid "Add New Listing"
5609
  msgstr "Nieuwe registratie toevoegen"
5610
 
5611
- #: includes/class-listing.php:302
5612
  #, fuzzy
5613
  msgctxt "listing"
5614
  msgid "Listing has no registered payments"
5615
  msgstr "Registraties per pagina"
5616
 
5617
- #: includes/class-listing.php:310
5618
  #, fuzzy
5619
  msgctxt "listing"
5620
  msgid "Can't delete payment"
5621
  msgstr "Verwijder beeld"
5622
 
5623
- #: includes/class-listing.php:349
5624
  #, fuzzy
5625
  msgctxt "listing"
5626
  msgid "Listing expired"
5627
  msgstr "Een registratie verloopt."
5628
 
5629
- #: includes/class-listing.php:508
5630
  msgctxt "listing"
5631
  msgid "(Unavailable Plan)"
5632
  msgstr ""
5633
 
5634
- #: includes/class-listing.php:665
5635
  msgctxt "listing"
5636
  msgid "Plan \"%s\" (recurring)"
5637
  msgstr ""
5638
 
5639
- #: includes/class-listing.php:667
5640
  msgctxt "listing"
5641
  msgid "Plan \"%s\""
5642
  msgstr ""
@@ -5885,66 +5885,66 @@ msgid ""
5885
  "<i>Free Mode</i>."
5886
  msgstr ""
5887
 
5888
- #: includes/class-payment.php:65
5889
  msgctxt "payment"
5890
- msgid "Payment status changed from \"%s\" to \"%s\"."
5891
  msgstr ""
5892
 
5893
- #: includes/class-payment.php:98
5894
  msgctxt "payment"
5895
  msgid "Initial payment (\"%s\")"
5896
  msgstr ""
5897
 
5898
- #: includes/class-payment.php:101
5899
  msgctxt "payment"
5900
  msgid "Renewal payment (\"%s\")"
5901
  msgstr ""
5902
 
5903
- #: includes/class-payment.php:266
5904
  #, fuzzy
5905
  msgctxt "payment"
5906
  msgid "Pending"
5907
  msgstr "In Afwachting"
5908
 
5909
- #: includes/class-payment.php:267
5910
  msgctxt "payment"
5911
  msgid "Failed"
5912
  msgstr ""
5913
 
5914
- #: includes/class-payment.php:268
5915
  #, fuzzy
5916
  msgctxt "payment"
5917
  msgid "Completed"
5918
  msgstr "Afgerond"
5919
 
5920
- #: includes/class-payment.php:269
5921
  #, fuzzy
5922
  msgctxt "payment"
5923
  msgid "Canceled"
5924
  msgstr "Gecancelled"
5925
 
5926
- #: includes/class-payment.php:270
5927
  msgctxt "payment"
5928
  msgid "On Hold"
5929
  msgstr ""
5930
 
5931
- #: includes/class-payment.php:271
5932
  msgctxt "payment"
5933
  msgid "Refunded"
5934
  msgstr ""
5935
 
5936
- #: includes/class-payment.php:113
5937
  msgctxt "payment summary"
5938
  msgid "%s. Admin Posted."
5939
  msgstr ""
5940
 
5941
- #: includes/class-payment.php:115
5942
  #, fuzzy
5943
  msgctxt "payment summary"
5944
  msgid "%s. Imported Listing."
5945
  msgstr "Vernieuw registratie"
5946
 
5947
- #: includes/class-payment.php:188
5948
  msgctxt "submit listing"
5949
  msgid "Listing submitted by admin. Payment skipped."
5950
  msgstr ""
@@ -6010,120 +6010,120 @@ msgstr ""
6010
  "Je bent ingelogd als een beheerder (admin). De betaalstappen worden "
6011
  "overgeslagen."
6012
 
6013
- #: includes/views/submit_listing.php:392
6014
  #, fuzzy
6015
  msgctxt "submit listing"
6016
  msgid "Category selection"
6017
  msgstr "categorie selectie"
6018
 
6019
- #: includes/views/submit_listing.php:392
6020
  #, fuzzy
6021
  msgctxt "submit listing"
6022
  msgid "Category & plan selection"
6023
  msgstr "categorie selectie"
6024
 
6025
- #: includes/views/submit_listing.php:397
6026
  #, fuzzy
6027
  msgctxt "submit listing"
6028
  msgid "Listing Information"
6029
  msgstr "Registratie informatie"
6030
 
6031
- #: includes/views/submit_listing.php:402
6032
  #, fuzzy
6033
  msgctxt "submit listing"
6034
  msgid "Listing Images"
6035
  msgstr "Beelden bij de registratie"
6036
 
6037
- #: includes/views/submit_listing.php:410
6038
  msgctxt "submit listing"
6039
  msgid "Account Creation"
6040
  msgstr ""
6041
 
6042
- #: includes/views/submit_listing.php:416
6043
  #, fuzzy
6044
  msgctxt "submit listing"
6045
  msgid "Terms and Conditions"
6046
  msgstr "Voorwaarden en condities"
6047
 
6048
- #: includes/views/submit_listing.php:453
6049
  msgctxt "submit listing"
6050
  msgid "(Please choose a fee plan above)"
6051
  msgstr ""
6052
 
6053
- #: includes/views/submit_listing.php:503
6054
  msgctxt "submit listing"
6055
  msgid "Can not submit a listing at this moment. Please try again later."
6056
  msgstr ""
6057
 
6058
- #: includes/views/submit_listing.php:531
6059
  msgctxt "submit listing"
6060
  msgid "Please select a category."
6061
  msgstr ""
6062
 
6063
- #: includes/views/submit_listing.php:544
6064
  msgctxt "submit listing"
6065
  msgid "Please select a category for your listing."
6066
  msgstr ""
6067
 
6068
- #: includes/views/submit_listing.php:564
6069
  msgctxt "submit listing"
6070
  msgid "Please choose a valid category for your plan."
6071
  msgstr ""
6072
 
6073
- #: includes/views/submit_listing.php:566
6074
  msgctxt "submit listing"
6075
  msgid "Please choose a valid fee plan for your category selection."
6076
  msgstr ""
6077
 
6078
- #: includes/views/submit_listing.php:807
6079
  msgctxt "submit listing"
6080
  msgid "Please enter your desired username."
6081
  msgstr ""
6082
 
6083
- #: includes/views/submit_listing.php:812
6084
  msgctxt "submit listing"
6085
  msgid "Please enter the e-mail for your new account."
6086
  msgstr ""
6087
 
6088
- #: includes/views/submit_listing.php:817
6089
  msgctxt "submit listing"
6090
  msgid "Please enter the password for your new account."
6091
  msgstr ""
6092
 
6093
- #: includes/views/submit_listing.php:827
6094
  msgctxt "submit listing"
6095
  msgid "The username you chose is already in use. Please use a different one."
6096
  msgstr ""
6097
 
6098
- #: includes/views/submit_listing.php:832
6099
  msgctxt "submit listing"
6100
  msgid "The e-mail address you chose for your account is already in use."
6101
  msgstr ""
6102
 
6103
- #: includes/views/submit_listing.php:847
6104
  msgctxt "submit listing"
6105
  msgid "Create a user account on this site"
6106
  msgstr ""
6107
 
6108
- #: includes/views/submit_listing.php:854
6109
  msgctxt "submit listing"
6110
  msgid ""
6111
  "You need to create an account on the site. Please fill out the form below."
6112
  msgstr ""
6113
 
6114
- #: includes/views/submit_listing.php:860
6115
  #, fuzzy
6116
  msgctxt "submit listing"
6117
  msgid "Username:"
6118
  msgstr "Gebruiker"
6119
 
6120
- #: includes/views/submit_listing.php:869
6121
  #, fuzzy
6122
  msgctxt "submit listing"
6123
  msgid "Email:"
6124
  msgstr "Jouw email"
6125
 
6126
- #: includes/views/submit_listing.php:878
6127
  msgctxt "submit listing"
6128
  msgid "Password:"
6129
  msgstr ""
@@ -6276,23 +6276,23 @@ msgid "Social Site (Other)"
6276
  msgstr ""
6277
 
6278
  #: includes/fields/class-fieldtypes-social.php:95
6279
- #: includes/fields/class-fieldtypes-url.php:136
6280
  msgctxt "form-fields api"
6281
  msgid "URL:"
6282
  msgstr ""
6283
 
6284
- #: includes/fields/class-fieldtypes-social.php:108
6285
  #, fuzzy
6286
  msgctxt "form-fields api"
6287
  msgid "Text:"
6288
  msgstr "Tekst gebied"
6289
 
6290
- #: includes/fields/class-fieldtypes-social.php:114
6291
  msgctxt "form-fields api"
6292
- msgid "Text to be displayed along with icon"
6293
  msgstr ""
6294
 
6295
- #: includes/fields/class-fieldtypes-social.php:121
6296
  #, fuzzy
6297
  msgctxt "form-fields api"
6298
  msgid "Type:"
@@ -6318,12 +6318,12 @@ msgctxt "form-fields api"
6318
  msgid "Social Site (Twitter handle)"
6319
  msgstr ""
6320
 
6321
- #: includes/fields/class-fieldtypes-url.php:5
6322
  msgctxt "form-fields api"
6323
  msgid "URL Field"
6324
  msgstr "URL veld"
6325
 
6326
- #: includes/fields/class-fieldtypes-url.php:144
6327
  msgctxt "form-fields api"
6328
  msgid "Link Text (optional):"
6329
  msgstr "Link tekst (optioneel)"
@@ -6393,7 +6393,7 @@ msgid "Caption for %s is required."
6393
  msgstr "%s is vereist."
6394
 
6395
  #: includes/fields/class-fieldtypes-image.php:100
6396
- #: includes/fields/class-fieldtypes-social.php:156
6397
  msgctxt "form-fields-api"
6398
  msgid "Remove"
6399
  msgstr "Verwijder"
@@ -6580,18 +6580,18 @@ msgctxt "image field"
6580
  msgid "Caption for %s is required."
6581
  msgstr "%s is vereist."
6582
 
6583
- #: includes/functions.php:1257
6584
  #, fuzzy
6585
  msgctxt "templates"
6586
  msgid "Return to results"
6587
  msgstr "Terug naar Registers"
6588
 
6589
- #: includes/functions.php:1261 includes/functions.php:1266
6590
  msgctxt "templates"
6591
  msgid "Go back"
6592
  msgstr ""
6593
 
6594
- #: includes/payment.php:278 templates/renew-resume.tpl.php:39
6595
  #, fuzzy
6596
  msgctxt "templates"
6597
  msgid "Return to fee selection"
@@ -6645,27 +6645,27 @@ msgid ""
6645
  "site. If you didn't want that, click <a>here</a> to change the setting."
6646
  msgstr ""
6647
 
6648
- #: includes/views/submit_listing.php:339
6649
  msgctxt "templates"
6650
  msgid ""
6651
  "<b>View not available</b>. Do you have the \"Disable Frontend Listing "
6652
  "Submission?\" setting checked?"
6653
  msgstr ""
6654
 
6655
- #: includes/views/submit_listing.php:341
6656
  msgctxt "templates"
6657
  msgid ""
6658
  "Listing submission has been disabled. Contact the administrator for details."
6659
  msgstr ""
6660
 
6661
- #: includes/views/submit_listing.php:506
6662
  msgctxt "templates"
6663
  msgid ""
6664
  "Listing submission is not available at the moment. Contact the administrator "
6665
  "for details."
6666
  msgstr ""
6667
 
6668
- #: includes/views/submit_listing.php:509
6669
  msgctxt "templates"
6670
  msgid ""
6671
  "<b>View not available</b>, there is no \"Category\" association field. %s "
@@ -6673,17 +6673,17 @@ msgid ""
6673
  "an existing field"
6674
  msgstr ""
6675
 
6676
- #: includes/views/submit_listing.php:916
6677
  msgctxt "templates"
6678
  msgid "Please agree to the Terms and Conditions."
6679
  msgstr "Ga s.v.p. akkoord met de voorwaarden"
6680
 
6681
- #: includes/views/submit_listing.php:924
6682
  msgctxt "templates"
6683
  msgid "Terms and Conditions:"
6684
  msgstr "Voorwaarden"
6685
 
6686
- #: includes/views/submit_listing.php:933
6687
  #, fuzzy
6688
  msgctxt "templates"
6689
  msgid "I agree to the <a>Terms and Conditions</a>"
@@ -6890,26 +6890,26 @@ msgctxt "templates"
6890
  msgid "Your listing has been submitted."
6891
  msgstr "Je registratie is ingediend (zichtbaar na goedkeuring)."
6892
 
6893
- #: templates/submit-listing-done.tpl.php:11
6894
  msgctxt "templates"
6895
  msgid "Your listing changes were saved."
6896
  msgstr ""
6897
  "De wijzigingen van je registratie zijn bewaard (en is meestal onzichtbaar "
6898
  "tot deze goedgekeurd is)"
6899
 
6900
- #: templates/submit-listing-done.tpl.php:16
6901
  msgctxt "templates"
6902
  msgid "Go to your listing"
6903
  msgstr "ga naar de registratie"
6904
 
6905
- #: templates/submit-listing-done.tpl.php:18
6906
  msgctxt "templates"
6907
  msgid ""
6908
  "Your listing requires admin approval. You'll be notified once your listing "
6909
  "is approved."
6910
  msgstr ""
6911
 
6912
- #: templates/submit-listing-done.tpl.php:22
6913
  msgctxt "templates"
6914
  msgid "Return to directory."
6915
  msgstr "Terug naar Registers"
@@ -7390,7 +7390,7 @@ msgctxt "payments"
7390
  msgid "Bill To:"
7391
  msgstr ""
7392
 
7393
- #: includes/payment.php:97
7394
  msgctxt "checkout"
7395
  msgid "Print Receipt"
7396
  msgstr ""
@@ -7620,7 +7620,7 @@ msgctxt "checkout"
7620
  msgid "Your payment is awaiting verification by the gateway."
7621
  msgstr ""
7622
 
7623
- #: templates/checkout-confirmation.tpl.php:19
7624
  msgctxt "checkout"
7625
  msgid ""
7626
  "Verification usually takes some minutes. This page will automatically "
@@ -7720,7 +7720,7 @@ msgctxt "utils"
7720
  msgid "Error while uploading file"
7721
  msgstr ""
7722
 
7723
- #: includes/views/delete_listing.php:32
7724
  msgctxt "delete listing"
7725
  msgid "Your listing has been deleted."
7726
  msgstr "Je registratie is verwijderd."
@@ -8021,14 +8021,14 @@ msgid "This is just a preview. The listing has not been published yet."
8021
  msgstr ""
8022
  "Dit is alleen een voorvertoning. De registratie is nog niet gepubliceerd."
8023
 
8024
- #: includes/views/submit_listing.php:675
8025
  msgctxt "listing submit"
8026
  msgid ""
8027
  "Something went wrong. Please check the form for errors, correct them and "
8028
  "submit again."
8029
  msgstr ""
8030
 
8031
- #: includes/views/submit_listing.php:759
8032
  msgctxt "listing submit"
8033
  msgid ""
8034
  "Image upload is required, please provide at least one image and submit again."
3
  "Project-Id-Version: Business Directory Plugin v5.5\n"
4
  "Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/business-"
5
  "directory-plugin\n"
6
+ "POT-Creation-Date: 2019-04-23 21:12:39+00:00\n"
7
  "PO-Revision-Date: 2017-07-04 12:37+0000\n"
8
  "Last-Translator: admin <info@nederlofcentrum.nl>\n"
9
  "Language-Team: Dutch\n"
1116
  "or let Business Directory do this for you automatically."
1117
  msgstr ""
1118
 
1119
+ #: includes/admin/form-fields.php:214 includes/views/submit_listing.php:512
1120
  msgctxt "admin"
1121
  msgid "Go to \"Manage Form Fields\""
1122
  msgstr "Ga naar \"instellen formulier velden\""
1126
  msgid "Create these required fields for me"
1127
  msgstr "Creëer deze vereiste velden voor me"
1128
 
1129
+ #: includes/payment.php:180
1130
  msgctxt "admin"
1131
  msgid "Pending Abandonment"
1132
  msgstr ""
1133
 
1134
+ #: includes/payment.php:185
1135
  msgctxt "admin"
1136
  msgid "Abandoned"
1137
  msgstr ""
1146
  msgid "Reported"
1147
  msgstr ""
1148
 
1149
+ #: includes/class-listing.php:771
1150
  msgctxt "listing status"
1151
  msgid "Unknown"
1152
  msgstr ""
1153
 
1154
+ #: includes/class-listing.php:772
1155
  msgctxt "listing status"
1156
  msgid "Legacy"
1157
  msgstr ""
1158
 
1159
+ #: includes/class-listing.php:773
1160
  #, fuzzy
1161
  msgctxt "listing status"
1162
  msgid "Incomplete"
1163
  msgstr "Afgerond"
1164
 
1165
+ #: includes/class-listing.php:774
1166
  #, fuzzy
1167
  msgctxt "listing status"
1168
  msgid "Pending Payment"
1169
  msgstr "Wachtend op upgrade"
1170
 
1171
+ #: includes/class-listing.php:775
1172
  #, fuzzy
1173
  msgctxt "listing status"
1174
  msgid "Complete"
1175
  msgstr "Afgerond"
1176
 
1177
+ #: includes/class-listing.php:776
1178
  #, fuzzy
1179
  msgctxt "listing status"
1180
  msgid "Pending Upgrade"
1181
  msgstr "Wachtend op upgrade"
1182
 
1183
+ #: includes/class-listing.php:777
1184
  #, fuzzy
1185
  msgctxt "listing status"
1186
  msgid "Expired"
1187
  msgstr "Verlopen"
1188
 
1189
+ #: includes/class-listing.php:778
1190
  #, fuzzy
1191
  msgctxt "listing status"
1192
  msgid "Pending Renewal"
1193
  msgstr "Registratie vernieuwing"
1194
 
1195
+ #: includes/class-listing.php:779
1196
  msgctxt "listing status"
1197
  msgid "Abandoned"
1198
  msgstr ""
1811
  msgid "Theme was updated successfully."
1812
  msgstr ""
1813
 
1814
+ #: includes/themes.php:829
1815
  msgctxt "themes"
1816
  msgid "ZIP file is not a valid BD theme file."
1817
  msgstr ""
1818
 
1819
+ #: includes/themes.php:835
1820
  msgctxt "themes"
1821
  msgid "Could not create themes directory."
1822
  msgstr ""
1823
 
1824
+ #: includes/themes.php:843
1825
  msgctxt "themes"
1826
  msgid "Could not remove previous theme directory \"%s\"."
1827
  msgstr ""
1828
 
1829
+ #: includes/themes.php:849
1830
  msgctxt "themes"
1831
  msgid "Could not move new theme into theme directory."
1832
  msgstr ""
2752
  msgid "Automatically generate excerpt from content field?"
2753
  msgstr ""
2754
 
2755
+ #: includes/fields/class-fieldtypes-url.php:36
2756
  msgctxt "form-fields admin"
2757
  msgid "Open link in a new window?"
2758
  msgstr ""
2759
 
2760
+ #: includes/fields/class-fieldtypes-url.php:39
2761
  msgctxt "form-fields admin"
2762
  msgid "Use rel=\"nofollow\" when displaying the link?"
2763
  msgstr ""
3457
  msgstr "Auteur"
3458
 
3459
  #: includes/admin/settings/class-settings-bootstrap.php:682
3460
+ #: includes/functions.php:1181
3461
  msgctxt "admin settings"
3462
  msgid "Date posted"
3463
  msgstr "Datum ingediend"
3464
 
3465
  #: includes/admin/settings/class-settings-bootstrap.php:683
3466
+ #: includes/functions.php:1182
3467
  msgctxt "admin settings"
3468
  msgid "Date last modified"
3469
  msgstr ""
3848
  "not activated."
3849
  msgstr ""
3850
 
3851
+ #: includes/functions.php:1179
3852
  msgctxt "admin settings"
3853
  msgid "User"
3854
  msgstr "Gebruiker"
3855
 
3856
+ #: includes/functions.php:1180
3857
  msgctxt "admin settings"
3858
  msgid "User registration date"
3859
  msgstr "Gebruikers registratie datum"
5608
  msgid "Add New Listing"
5609
  msgstr "Nieuwe registratie toevoegen"
5610
 
5611
+ #: includes/class-listing.php:305
5612
  #, fuzzy
5613
  msgctxt "listing"
5614
  msgid "Listing has no registered payments"
5615
  msgstr "Registraties per pagina"
5616
 
5617
+ #: includes/class-listing.php:313
5618
  #, fuzzy
5619
  msgctxt "listing"
5620
  msgid "Can't delete payment"
5621
  msgstr "Verwijder beeld"
5622
 
5623
+ #: includes/class-listing.php:352
5624
  #, fuzzy
5625
  msgctxt "listing"
5626
  msgid "Listing expired"
5627
  msgstr "Een registratie verloopt."
5628
 
5629
+ #: includes/class-listing.php:511
5630
  msgctxt "listing"
5631
  msgid "(Unavailable Plan)"
5632
  msgstr ""
5633
 
5634
+ #: includes/class-listing.php:668
5635
  msgctxt "listing"
5636
  msgid "Plan \"%s\" (recurring)"
5637
  msgstr ""
5638
 
5639
+ #: includes/class-listing.php:670
5640
  msgctxt "listing"
5641
  msgid "Plan \"%s\""
5642
  msgstr ""
5885
  "<i>Free Mode</i>."
5886
  msgstr ""
5887
 
5888
+ #: includes/class-payment.php:82
5889
  msgctxt "payment"
5890
+ msgid "Payment status changed from \"%1$s\" to \"%2$s\"."
5891
  msgstr ""
5892
 
5893
+ #: includes/class-payment.php:123
5894
  msgctxt "payment"
5895
  msgid "Initial payment (\"%s\")"
5896
  msgstr ""
5897
 
5898
+ #: includes/class-payment.php:126
5899
  msgctxt "payment"
5900
  msgid "Renewal payment (\"%s\")"
5901
  msgstr ""
5902
 
5903
+ #: includes/class-payment.php:313
5904
  #, fuzzy
5905
  msgctxt "payment"
5906
  msgid "Pending"
5907
  msgstr "In Afwachting"
5908
 
5909
+ #: includes/class-payment.php:314
5910
  msgctxt "payment"
5911
  msgid "Failed"
5912
  msgstr ""
5913
 
5914
+ #: includes/class-payment.php:315
5915
  #, fuzzy
5916
  msgctxt "payment"
5917
  msgid "Completed"
5918
  msgstr "Afgerond"
5919
 
5920
+ #: includes/class-payment.php:316
5921
  #, fuzzy
5922
  msgctxt "payment"
5923
  msgid "Canceled"
5924
  msgstr "Gecancelled"
5925
 
5926
+ #: includes/class-payment.php:317
5927
  msgctxt "payment"
5928
  msgid "On Hold"
5929
  msgstr ""
5930
 
5931
+ #: includes/class-payment.php:318
5932
  msgctxt "payment"
5933
  msgid "Refunded"
5934
  msgstr ""
5935
 
5936
+ #: includes/class-payment.php:138
5937
  msgctxt "payment summary"
5938
  msgid "%s. Admin Posted."
5939
  msgstr ""
5940
 
5941
+ #: includes/class-payment.php:140
5942
  #, fuzzy
5943
  msgctxt "payment summary"
5944
  msgid "%s. Imported Listing."
5945
  msgstr "Vernieuw registratie"
5946
 
5947
+ #: includes/class-payment.php:218
5948
  msgctxt "submit listing"
5949
  msgid "Listing submitted by admin. Payment skipped."
5950
  msgstr ""
6010
  "Je bent ingelogd als een beheerder (admin). De betaalstappen worden "
6011
  "overgeslagen."
6012
 
6013
+ #: includes/views/submit_listing.php:388
6014
  #, fuzzy
6015
  msgctxt "submit listing"
6016
  msgid "Category selection"
6017
  msgstr "categorie selectie"
6018
 
6019
+ #: includes/views/submit_listing.php:388
6020
  #, fuzzy
6021
  msgctxt "submit listing"
6022
  msgid "Category & plan selection"
6023
  msgstr "categorie selectie"
6024
 
6025
+ #: includes/views/submit_listing.php:393
6026
  #, fuzzy
6027
  msgctxt "submit listing"
6028
  msgid "Listing Information"
6029
  msgstr "Registratie informatie"
6030
 
6031
+ #: includes/views/submit_listing.php:398
6032
  #, fuzzy
6033
  msgctxt "submit listing"
6034
  msgid "Listing Images"
6035
  msgstr "Beelden bij de registratie"
6036
 
6037
+ #: includes/views/submit_listing.php:406
6038
  msgctxt "submit listing"
6039
  msgid "Account Creation"
6040
  msgstr ""
6041
 
6042
+ #: includes/views/submit_listing.php:412
6043
  #, fuzzy
6044
  msgctxt "submit listing"
6045
  msgid "Terms and Conditions"
6046
  msgstr "Voorwaarden en condities"
6047
 
6048
+ #: includes/views/submit_listing.php:449
6049
  msgctxt "submit listing"
6050
  msgid "(Please choose a fee plan above)"
6051
  msgstr ""
6052
 
6053
+ #: includes/views/submit_listing.php:499
6054
  msgctxt "submit listing"
6055
  msgid "Can not submit a listing at this moment. Please try again later."
6056
  msgstr ""
6057
 
6058
+ #: includes/views/submit_listing.php:527
6059
  msgctxt "submit listing"
6060
  msgid "Please select a category."
6061
  msgstr ""
6062
 
6063
+ #: includes/views/submit_listing.php:540
6064
  msgctxt "submit listing"
6065
  msgid "Please select a category for your listing."
6066
  msgstr ""
6067
 
6068
+ #: includes/views/submit_listing.php:560
6069
  msgctxt "submit listing"
6070
  msgid "Please choose a valid category for your plan."
6071
  msgstr ""
6072
 
6073
+ #: includes/views/submit_listing.php:562
6074
  msgctxt "submit listing"
6075
  msgid "Please choose a valid fee plan for your category selection."
6076
  msgstr ""
6077
 
6078
+ #: includes/views/submit_listing.php:803
6079
  msgctxt "submit listing"
6080
  msgid "Please enter your desired username."
6081
  msgstr ""
6082
 
6083
+ #: includes/views/submit_listing.php:808
6084
  msgctxt "submit listing"
6085
  msgid "Please enter the e-mail for your new account."
6086
  msgstr ""
6087
 
6088
+ #: includes/views/submit_listing.php:813
6089
  msgctxt "submit listing"
6090
  msgid "Please enter the password for your new account."
6091
  msgstr ""
6092
 
6093
+ #: includes/views/submit_listing.php:823
6094
  msgctxt "submit listing"
6095
  msgid "The username you chose is already in use. Please use a different one."
6096
  msgstr ""
6097
 
6098
+ #: includes/views/submit_listing.php:828
6099
  msgctxt "submit listing"
6100
  msgid "The e-mail address you chose for your account is already in use."
6101
  msgstr ""
6102
 
6103
+ #: includes/views/submit_listing.php:843
6104
  msgctxt "submit listing"
6105
  msgid "Create a user account on this site"
6106
  msgstr ""
6107
 
6108
+ #: includes/views/submit_listing.php:850
6109
  msgctxt "submit listing"
6110
  msgid ""
6111
  "You need to create an account on the site. Please fill out the form below."
6112
  msgstr ""
6113
 
6114
+ #: includes/views/submit_listing.php:856
6115
  #, fuzzy
6116
  msgctxt "submit listing"
6117
  msgid "Username:"
6118
  msgstr "Gebruiker"
6119
 
6120
+ #: includes/views/submit_listing.php:865
6121
  #, fuzzy
6122
  msgctxt "submit listing"
6123
  msgid "Email:"
6124
  msgstr "Jouw email"
6125
 
6126
+ #: includes/views/submit_listing.php:874
6127
  msgctxt "submit listing"
6128
  msgid "Password:"
6129
  msgstr ""
6276
  msgstr ""
6277
 
6278
  #: includes/fields/class-fieldtypes-social.php:95
6279
+ #: includes/fields/class-fieldtypes-url.php:149
6280
  msgctxt "form-fields api"
6281
  msgid "URL:"
6282
  msgstr ""
6283
 
6284
+ #: includes/fields/class-fieldtypes-social.php:115
6285
  #, fuzzy
6286
  msgctxt "form-fields api"
6287
  msgid "Text:"
6288
  msgstr "Tekst gebied"
6289
 
6290
+ #: includes/fields/class-fieldtypes-social.php:122
6291
  msgctxt "form-fields api"
6292
+ msgid "Text to be displayed for social field"
6293
  msgstr ""
6294
 
6295
+ #: includes/fields/class-fieldtypes-social.php:140
6296
  #, fuzzy
6297
  msgctxt "form-fields api"
6298
  msgid "Type:"
6318
  msgid "Social Site (Twitter handle)"
6319
  msgstr ""
6320
 
6321
+ #: includes/fields/class-fieldtypes-url.php:18
6322
  msgctxt "form-fields api"
6323
  msgid "URL Field"
6324
  msgstr "URL veld"
6325
 
6326
+ #: includes/fields/class-fieldtypes-url.php:157
6327
  msgctxt "form-fields api"
6328
  msgid "Link Text (optional):"
6329
  msgstr "Link tekst (optioneel)"
6393
  msgstr "%s is vereist."
6394
 
6395
  #: includes/fields/class-fieldtypes-image.php:100
6396
+ #: includes/fields/class-fieldtypes-social.php:175
6397
  msgctxt "form-fields-api"
6398
  msgid "Remove"
6399
  msgstr "Verwijder"
6580
  msgid "Caption for %s is required."
6581
  msgstr "%s is vereist."
6582
 
6583
+ #: includes/functions.php:1259
6584
  #, fuzzy
6585
  msgctxt "templates"
6586
  msgid "Return to results"
6587
  msgstr "Terug naar Registers"
6588
 
6589
+ #: includes/functions.php:1263 includes/functions.php:1268
6590
  msgctxt "templates"
6591
  msgid "Go back"
6592
  msgstr ""
6593
 
6594
+ #: includes/payment.php:277 templates/renew-resume.tpl.php:39
6595
  #, fuzzy
6596
  msgctxt "templates"
6597
  msgid "Return to fee selection"
6645
  "site. If you didn't want that, click <a>here</a> to change the setting."
6646
  msgstr ""
6647
 
6648
+ #: includes/views/submit_listing.php:335
6649
  msgctxt "templates"
6650
  msgid ""
6651
  "<b>View not available</b>. Do you have the \"Disable Frontend Listing "
6652
  "Submission?\" setting checked?"
6653
  msgstr ""
6654
 
6655
+ #: includes/views/submit_listing.php:337
6656
  msgctxt "templates"
6657
  msgid ""
6658
  "Listing submission has been disabled. Contact the administrator for details."
6659
  msgstr ""
6660
 
6661
+ #: includes/views/submit_listing.php:502
6662
  msgctxt "templates"
6663
  msgid ""
6664
  "Listing submission is not available at the moment. Contact the administrator "
6665
  "for details."
6666
  msgstr ""
6667
 
6668
+ #: includes/views/submit_listing.php:505
6669
  msgctxt "templates"
6670
  msgid ""
6671
  "<b>View not available</b>, there is no \"Category\" association field. %s "
6673
  "an existing field"
6674
  msgstr ""
6675
 
6676
+ #: includes/views/submit_listing.php:912
6677
  msgctxt "templates"
6678
  msgid "Please agree to the Terms and Conditions."
6679
  msgstr "Ga s.v.p. akkoord met de voorwaarden"
6680
 
6681
+ #: includes/views/submit_listing.php:920
6682
  msgctxt "templates"
6683
  msgid "Terms and Conditions:"
6684
  msgstr "Voorwaarden"
6685
 
6686
+ #: includes/views/submit_listing.php:929
6687
  #, fuzzy
6688
  msgctxt "templates"
6689
  msgid "I agree to the <a>Terms and Conditions</a>"
6890
  msgid "Your listing has been submitted."
6891
  msgstr "Je registratie is ingediend (zichtbaar na goedkeuring)."
6892
 
6893
+ #: templates/submit-listing-done.tpl.php:14
6894
  msgctxt "templates"
6895
  msgid "Your listing changes were saved."
6896
  msgstr ""
6897
  "De wijzigingen van je registratie zijn bewaard (en is meestal onzichtbaar "
6898
  "tot deze goedgekeurd is)"
6899
 
6900
+ #: templates/submit-listing-done.tpl.php:19
6901
  msgctxt "templates"
6902
  msgid "Go to your listing"
6903
  msgstr "ga naar de registratie"
6904
 
6905
+ #: templates/submit-listing-done.tpl.php:21
6906
  msgctxt "templates"
6907
  msgid ""
6908
  "Your listing requires admin approval. You'll be notified once your listing "
6909
  "is approved."
6910
  msgstr ""
6911
 
6912
+ #: templates/submit-listing-done.tpl.php:25
6913
  msgctxt "templates"
6914
  msgid "Return to directory."
6915
  msgstr "Terug naar Registers"
7390
  msgid "Bill To:"
7391
  msgstr ""
7392
 
7393
+ #: includes/payment.php:96
7394
  msgctxt "checkout"
7395
  msgid "Print Receipt"
7396
  msgstr ""
7620
  msgid "Your payment is awaiting verification by the gateway."
7621
  msgstr ""
7622
 
7623
+ #: templates/checkout-confirmation.tpl.php:20
7624
  msgctxt "checkout"
7625
  msgid ""
7626
  "Verification usually takes some minutes. This page will automatically "
7720
  msgid "Error while uploading file"
7721
  msgstr ""
7722
 
7723
+ #: includes/views/delete_listing.php:38
7724
  msgctxt "delete listing"
7725
  msgid "Your listing has been deleted."
7726
  msgstr "Je registratie is verwijderd."
8021
  msgstr ""
8022
  "Dit is alleen een voorvertoning. De registratie is nog niet gepubliceerd."
8023
 
8024
+ #: includes/views/submit_listing.php:671
8025
  msgctxt "listing submit"
8026
  msgid ""
8027
  "Something went wrong. Please check the form for errors, correct them and "
8028
  "submit again."
8029
  msgstr ""
8030
 
8031
+ #: includes/views/submit_listing.php:755
8032
  msgctxt "listing submit"
8033
  msgid ""
8034
  "Image upload is required, please provide at least one image and submit again."
languages/WPBDM-pl_PL.mo CHANGED
Binary file
languages/WPBDM-pl_PL.po CHANGED
@@ -3,7 +3,7 @@ msgstr ""
3
  "Project-Id-Version: Business Directory Plugin v5.5\n"
4
  "Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/business-"
5
  "directory-plugin\n"
6
- "POT-Creation-Date: 2019-03-20 00:09:46+00:00\n"
7
  "PO-Revision-Date: 2017-01-16 17:49-0500\n"
8
  "Last-Translator: HomeSupport <admin@homesupport.pl>\n"
9
  "Language-Team: HomeSupport\n"
@@ -1371,7 +1371,7 @@ msgstr ""
1371
  "formularza\" albo niech katalog firm zrobi to dla ciebie automatycznie."
1372
 
1373
  # @ WPBDM
1374
- #: includes/admin/form-fields.php:214 includes/views/submit_listing.php:516
1375
  msgctxt "admin"
1376
  msgid "Go to \"Manage Form Fields\""
1377
  msgstr "Przejdź do \"Zarządzanie polami formularza\""
@@ -1383,13 +1383,13 @@ msgid "Create these required fields for me"
1383
  msgstr "Stwórz te wymagane pola dla mnie"
1384
 
1385
  # @ WPBDM
1386
- #: includes/payment.php:181
1387
  msgctxt "admin"
1388
  msgid "Pending Abandonment"
1389
  msgstr "Oczekujące na abonament"
1390
 
1391
  # @ WPBDM
1392
- #: includes/payment.php:186
1393
  msgctxt "admin"
1394
  msgid "Abandoned"
1395
  msgstr "Porzucone"
@@ -1404,60 +1404,60 @@ msgctxt "listing status"
1404
  msgid "Reported"
1405
  msgstr ""
1406
 
1407
- #: includes/class-listing.php:768
1408
  msgctxt "listing status"
1409
  msgid "Unknown"
1410
  msgstr ""
1411
 
1412
- #: includes/class-listing.php:769
1413
  msgctxt "listing status"
1414
  msgid "Legacy"
1415
  msgstr ""
1416
 
1417
  # @ WPBDM
1418
- #: includes/class-listing.php:770
1419
  #, fuzzy
1420
  msgctxt "listing status"
1421
  msgid "Incomplete"
1422
  msgstr "Zakończona"
1423
 
1424
  # @ WPBDM
1425
- #: includes/class-listing.php:771
1426
  #, fuzzy
1427
  msgctxt "listing status"
1428
  msgid "Pending Payment"
1429
  msgstr "Oczekujące na abonament"
1430
 
1431
  # @ WPBDM
1432
- #: includes/class-listing.php:772
1433
  #, fuzzy
1434
  msgctxt "listing status"
1435
  msgid "Complete"
1436
  msgstr "Zakończona"
1437
 
1438
  # @ WPBDM
1439
- #: includes/class-listing.php:773
1440
  #, fuzzy
1441
  msgctxt "listing status"
1442
  msgid "Pending Upgrade"
1443
  msgstr "Oferty oczekujące na zatwierdzenie"
1444
 
1445
  # @ WPBDM
1446
- #: includes/class-listing.php:774
1447
  #, fuzzy
1448
  msgctxt "listing status"
1449
  msgid "Expired"
1450
  msgstr "Wygasłe"
1451
 
1452
  # @ WPBDM
1453
- #: includes/class-listing.php:775
1454
  #, fuzzy
1455
  msgctxt "listing status"
1456
  msgid "Pending Renewal"
1457
  msgstr "Tylko aktywne i oczekujące na odświeżenie "
1458
 
1459
  # @ WPBDM
1460
- #: includes/class-listing.php:776
1461
  #, fuzzy
1462
  msgctxt "listing status"
1463
  msgid "Abandoned"
@@ -2203,25 +2203,25 @@ msgid "Theme was updated successfully."
2203
  msgstr "Import zakończony pełnym sukcesem."
2204
 
2205
  # @ WPBDM
2206
- #: includes/themes.php:825
2207
  msgctxt "themes"
2208
  msgid "ZIP file is not a valid BD theme file."
2209
  msgstr "Proszę wprowadzić poprawny adres e-mail."
2210
 
2211
  # @ WPBDM
2212
- #: includes/themes.php:831
2213
  msgctxt "themes"
2214
  msgid "Could not create themes directory."
2215
  msgstr "Nie można utworzyć katalogu wpbdp-csv-eksport."
2216
 
2217
  # @ WPBDM
2218
- #: includes/themes.php:839
2219
  msgctxt "themes"
2220
  msgid "Could not remove previous theme directory \"%s\"."
2221
  msgstr "Nie można utworzyć kategorii ofert \"%s\""
2222
 
2223
  # @ WPBDM
2224
- #: includes/themes.php:845
2225
  msgctxt "themes"
2226
  msgid "Could not move new theme into theme directory."
2227
  msgstr "Nie masz aktualnie ofert w katalogu."
@@ -3280,13 +3280,13 @@ msgid "Automatically generate excerpt from content field?"
3280
  msgstr ""
3281
 
3282
  # @ WPBDM
3283
- #: includes/fields/class-fieldtypes-url.php:23
3284
  msgctxt "form-fields admin"
3285
  msgid "Open link in a new window?"
3286
  msgstr "Otworzyć łącze w nowym oknie?"
3287
 
3288
  # @ WPBDM
3289
- #: includes/fields/class-fieldtypes-url.php:26
3290
  msgctxt "form-fields admin"
3291
  msgid "Use rel=\"nofollow\" when displaying the link?"
3292
  msgstr "Użyj rel=\"nofollow\" kiedy wyświetlany jest link?"
@@ -4106,14 +4106,14 @@ msgstr "Autor"
4106
 
4107
  # @ WPBDM
4108
  #: includes/admin/settings/class-settings-bootstrap.php:682
4109
- #: includes/functions.php:1179
4110
  msgctxt "admin settings"
4111
  msgid "Date posted"
4112
  msgstr "Data publikacji"
4113
 
4114
  # @ WPBDM
4115
  #: includes/admin/settings/class-settings-bootstrap.php:683
4116
- #: includes/functions.php:1180
4117
  msgctxt "admin settings"
4118
  msgid "Date last modified"
4119
  msgstr "Data ostatnij modyfikacji"
@@ -4559,13 +4559,13 @@ msgstr ""
4559
  "Nie można skopiować pluginu kompatybilności AJAX \"%s\". Tryb "
4560
  "Kompatybilności nie został aktywowany."
4561
 
4562
- #: includes/functions.php:1177
4563
  msgctxt "admin settings"
4564
  msgid "User"
4565
  msgstr ""
4566
 
4567
  # @ WPBDM
4568
- #: includes/functions.php:1178
4569
  msgctxt "admin settings"
4570
  msgid "User registration date"
4571
  msgstr "Data zakończenia emisji oferty"
@@ -6595,41 +6595,41 @@ msgid "Add New Listing"
6595
  msgstr "Dodaj nową ofertę"
6596
 
6597
  # @ WPBDM
6598
- #: includes/class-listing.php:302
6599
  #, fuzzy
6600
  msgctxt "listing"
6601
  msgid "Listing has no registered payments"
6602
  msgstr "Data zakończenia emisji oferty"
6603
 
6604
  # @ WPBDM
6605
- #: includes/class-listing.php:310
6606
  #, fuzzy
6607
  msgctxt "listing"
6608
  msgid "Can't delete payment"
6609
  msgstr "Odrzucenie płatności"
6610
 
6611
  # @ WPBDM
6612
- #: includes/class-listing.php:349
6613
  #, fuzzy
6614
  msgctxt "listing"
6615
  msgid "Listing expired"
6616
  msgstr "Upłynął okres ważności oferty."
6617
 
6618
  # @ WPBDM
6619
- #: includes/class-listing.php:508
6620
  #, fuzzy
6621
  msgctxt "listing"
6622
  msgid "(Unavailable Plan)"
6623
  msgstr "(Abonament niedostępny)"
6624
 
6625
  # @ WPBDM
6626
- #: includes/class-listing.php:665
6627
  #, fuzzy
6628
  msgctxt "listing"
6629
  msgid "Plan \"%s\" (recurring)"
6630
  msgstr "(powtarzające się)"
6631
 
6632
- #: includes/class-listing.php:667
6633
  msgctxt "listing"
6634
  msgid "Plan \"%s\""
6635
  msgstr ""
@@ -6921,75 +6921,75 @@ msgstr ""
6921
  "zmienić ustawienia. Do czasu wprowadzenia zmian, plugin będzie działał w "
6922
  "<i>Trybie Bezpłatnym</i>."
6923
 
6924
- #: includes/class-payment.php:65
6925
  msgctxt "payment"
6926
- msgid "Payment status changed from \"%s\" to \"%s\"."
6927
  msgstr ""
6928
 
6929
  # @ WPBDM
6930
- #: includes/class-payment.php:98
6931
  #, fuzzy
6932
  msgctxt "payment"
6933
  msgid "Initial payment (\"%s\")"
6934
  msgstr "Inicjacja Płatności"
6935
 
6936
  # @ WPBDM
6937
- #: includes/class-payment.php:101
6938
  #, fuzzy
6939
  msgctxt "payment"
6940
  msgid "Renewal payment (\"%s\")"
6941
  msgstr "Odrzucenie płatności"
6942
 
6943
  # @ WPBDM
6944
- #: includes/class-payment.php:266
6945
  #, fuzzy
6946
  msgctxt "payment"
6947
  msgid "Pending"
6948
  msgstr "Oczekujące"
6949
 
6950
- #: includes/class-payment.php:267
6951
  msgctxt "payment"
6952
  msgid "Failed"
6953
  msgstr ""
6954
 
6955
  # @ WPBDM
6956
- #: includes/class-payment.php:268
6957
  #, fuzzy
6958
  msgctxt "payment"
6959
  msgid "Completed"
6960
  msgstr "Zakończona"
6961
 
6962
  # @ WPBDM
6963
- #: includes/class-payment.php:269
6964
  #, fuzzy
6965
  msgctxt "payment"
6966
  msgid "Canceled"
6967
  msgstr "Anulowana"
6968
 
6969
- #: includes/class-payment.php:270
6970
  msgctxt "payment"
6971
  msgid "On Hold"
6972
  msgstr ""
6973
 
6974
- #: includes/class-payment.php:271
6975
  msgctxt "payment"
6976
  msgid "Refunded"
6977
  msgstr ""
6978
 
6979
- #: includes/class-payment.php:113
6980
  msgctxt "payment summary"
6981
  msgid "%s. Admin Posted."
6982
  msgstr ""
6983
 
6984
  # @ WPBDM
6985
- #: includes/class-payment.php:115
6986
  #, fuzzy
6987
  msgctxt "payment summary"
6988
  msgid "%s. Imported Listing."
6989
  msgstr "Import ofert"
6990
 
6991
  # @ WPBDM
6992
- #: includes/class-payment.php:188
6993
  #, fuzzy
6994
  msgctxt "submit listing"
6995
  msgid "Listing submitted by admin. Payment skipped."
@@ -7063,52 +7063,52 @@ msgstr ""
7063
  "pominięte."
7064
 
7065
  # @ WPBDM
7066
- #: includes/views/submit_listing.php:392
7067
  #, fuzzy
7068
  msgctxt "submit listing"
7069
  msgid "Category selection"
7070
  msgstr "Wybór Kategorii"
7071
 
7072
  # @ WPBDM
7073
- #: includes/views/submit_listing.php:392
7074
  #, fuzzy
7075
  msgctxt "submit listing"
7076
  msgid "Category & plan selection"
7077
  msgstr "Wybór Kategorii"
7078
 
7079
  # @ WPBDM
7080
- #: includes/views/submit_listing.php:397
7081
  #, fuzzy
7082
  msgctxt "submit listing"
7083
  msgid "Listing Information"
7084
  msgstr "Informacje o firmie"
7085
 
7086
  # @ WPBDM
7087
- #: includes/views/submit_listing.php:402
7088
  #, fuzzy
7089
  msgctxt "submit listing"
7090
  msgid "Listing Images"
7091
  msgstr "Obrazy"
7092
 
7093
- #: includes/views/submit_listing.php:410
7094
  msgctxt "submit listing"
7095
  msgid "Account Creation"
7096
  msgstr ""
7097
 
7098
  # @ WPBDM
7099
- #: includes/views/submit_listing.php:416
7100
  #, fuzzy
7101
  msgctxt "submit listing"
7102
  msgid "Terms and Conditions"
7103
  msgstr "Warunki i regulamin korzystania z serwisu."
7104
 
7105
- #: includes/views/submit_listing.php:453
7106
  msgctxt "submit listing"
7107
  msgid "(Please choose a fee plan above)"
7108
  msgstr ""
7109
 
7110
  # @ WPBDM
7111
- #: includes/views/submit_listing.php:503
7112
  #, fuzzy
7113
  msgctxt "submit listing"
7114
  msgid "Can not submit a listing at this moment. Please try again later."
@@ -7117,84 +7117,84 @@ msgstr ""
7117
  "później."
7118
 
7119
  # @ WPBDM
7120
- #: includes/views/submit_listing.php:531
7121
  #, fuzzy
7122
  msgctxt "submit listing"
7123
  msgid "Please select a category."
7124
  msgstr "Wybierz abonament dla tegj kategori \"%s\"."
7125
 
7126
  # @ WPBDM
7127
- #: includes/views/submit_listing.php:544
7128
  #, fuzzy
7129
  msgctxt "submit listing"
7130
  msgid "Please select a category for your listing."
7131
  msgstr "Wybierz abonament dla tegj kategori \"%s\"."
7132
 
7133
- #: includes/views/submit_listing.php:564
7134
  msgctxt "submit listing"
7135
  msgid "Please choose a valid category for your plan."
7136
  msgstr ""
7137
 
7138
  # @ WPBDM
7139
- #: includes/views/submit_listing.php:566
7140
  #, fuzzy
7141
  msgctxt "submit listing"
7142
  msgid "Please choose a valid fee plan for your category selection."
7143
  msgstr "Wybierz abonament dla tegj kategori \"%s\"."
7144
 
7145
  # @ WPBDM
7146
- #: includes/views/submit_listing.php:807
7147
  #, fuzzy
7148
  msgctxt "submit listing"
7149
  msgid "Please enter your desired username."
7150
  msgstr "Proszę wprowadzić Imię"
7151
 
7152
  # @ WPBDM
7153
- #: includes/views/submit_listing.php:812
7154
  #, fuzzy
7155
  msgctxt "submit listing"
7156
  msgid "Please enter the e-mail for your new account."
7157
  msgstr "Proszę wprowadzić Imię"
7158
 
7159
- #: includes/views/submit_listing.php:817
7160
  msgctxt "submit listing"
7161
  msgid "Please enter the password for your new account."
7162
  msgstr ""
7163
 
7164
- #: includes/views/submit_listing.php:827
7165
  msgctxt "submit listing"
7166
  msgid "The username you chose is already in use. Please use a different one."
7167
  msgstr ""
7168
 
7169
- #: includes/views/submit_listing.php:832
7170
  msgctxt "submit listing"
7171
  msgid "The e-mail address you chose for your account is already in use."
7172
  msgstr ""
7173
 
7174
- #: includes/views/submit_listing.php:847
7175
  msgctxt "submit listing"
7176
  msgid "Create a user account on this site"
7177
  msgstr ""
7178
 
7179
- #: includes/views/submit_listing.php:854
7180
  msgctxt "submit listing"
7181
  msgid ""
7182
  "You need to create an account on the site. Please fill out the form below."
7183
  msgstr ""
7184
 
7185
- #: includes/views/submit_listing.php:860
7186
  msgctxt "submit listing"
7187
  msgid "Username:"
7188
  msgstr ""
7189
 
7190
  # @ WPBDM
7191
- #: includes/views/submit_listing.php:869
7192
  #, fuzzy
7193
  msgctxt "submit listing"
7194
  msgid "Email:"
7195
  msgstr "E-Mail: %s"
7196
 
7197
- #: includes/views/submit_listing.php:878
7198
  msgctxt "submit listing"
7199
  msgid "Password:"
7200
  msgstr ""
@@ -7376,25 +7376,25 @@ msgstr "Strona Społeczności (Twitter)"
7376
 
7377
  # @ WPBDM
7378
  #: includes/fields/class-fieldtypes-social.php:95
7379
- #: includes/fields/class-fieldtypes-url.php:136
7380
  msgctxt "form-fields api"
7381
  msgid "URL:"
7382
  msgstr "URL:"
7383
 
7384
  # @ WPBDM
7385
- #: includes/fields/class-fieldtypes-social.php:108
7386
  #, fuzzy
7387
  msgctxt "form-fields api"
7388
  msgid "Text:"
7389
  msgstr "Pole tekstowe / z możliwością html"
7390
 
7391
- #: includes/fields/class-fieldtypes-social.php:114
7392
  msgctxt "form-fields api"
7393
- msgid "Text to be displayed along with icon"
7394
  msgstr ""
7395
 
7396
  # @ WPBDM
7397
- #: includes/fields/class-fieldtypes-social.php:121
7398
  #, fuzzy
7399
  msgctxt "form-fields api"
7400
  msgid "Type:"
@@ -7425,13 +7425,13 @@ msgid "Social Site (Twitter handle)"
7425
  msgstr "Strona Społeczności (Twitter)"
7426
 
7427
  # @ WPBDM
7428
- #: includes/fields/class-fieldtypes-url.php:5
7429
  msgctxt "form-fields api"
7430
  msgid "URL Field"
7431
  msgstr "Pole URL"
7432
 
7433
  # @ WPBDM
7434
- #: includes/fields/class-fieldtypes-url.php:144
7435
  msgctxt "form-fields api"
7436
  msgid "Link Text (optional):"
7437
  msgstr "Tekst alternatywny(opcjonalnie):"
@@ -7516,7 +7516,7 @@ msgstr "Kraj jest wymagany."
7516
 
7517
  # @ WPBDM
7518
  #: includes/fields/class-fieldtypes-image.php:100
7519
- #: includes/fields/class-fieldtypes-social.php:156
7520
  msgctxt "form-fields-api"
7521
  msgid "Remove"
7522
  msgstr "Usuń"
@@ -7735,19 +7735,19 @@ msgid "Caption for %s is required."
7735
  msgstr "Kraj jest wymagany."
7736
 
7737
  # @ WPBDM
7738
- #: includes/functions.php:1257
7739
  #, fuzzy
7740
  msgctxt "templates"
7741
  msgid "Return to results"
7742
  msgstr "Powrót do Katalogu."
7743
 
7744
- #: includes/functions.php:1261 includes/functions.php:1266
7745
  msgctxt "templates"
7746
  msgid "Go back"
7747
  msgstr ""
7748
 
7749
  # @ WPBDM
7750
- #: includes/payment.php:278 templates/renew-resume.tpl.php:39
7751
  #, fuzzy
7752
  msgctxt "templates"
7753
  msgid "Return to fee selection"
@@ -7817,27 +7817,27 @@ msgstr ""
7817
  "zawierają ofert. To oznacza, że te kategorie nie będą wyświetlane na "
7818
  "stornach Katalogu. Jeśli chcesz to zmienić kliknij <a>tutaj</a>."
7819
 
7820
- #: includes/views/submit_listing.php:339
7821
  msgctxt "templates"
7822
  msgid ""
7823
  "<b>View not available</b>. Do you have the \"Disable Frontend Listing "
7824
  "Submission?\" setting checked?"
7825
  msgstr ""
7826
 
7827
- #: includes/views/submit_listing.php:341
7828
  msgctxt "templates"
7829
  msgid ""
7830
  "Listing submission has been disabled. Contact the administrator for details."
7831
  msgstr ""
7832
 
7833
- #: includes/views/submit_listing.php:506
7834
  msgctxt "templates"
7835
  msgid ""
7836
  "Listing submission is not available at the moment. Contact the administrator "
7837
  "for details."
7838
  msgstr ""
7839
 
7840
- #: includes/views/submit_listing.php:509
7841
  msgctxt "templates"
7842
  msgid ""
7843
  "<b>View not available</b>, there is no \"Category\" association field. %s "
@@ -7846,19 +7846,19 @@ msgid ""
7846
  msgstr ""
7847
 
7848
  # @ WPBDM
7849
- #: includes/views/submit_listing.php:916
7850
  msgctxt "templates"
7851
  msgid "Please agree to the Terms and Conditions."
7852
  msgstr "Musisz zaakceptować nasze warunki i regulamin korzystania z serwisu."
7853
 
7854
  # @ WPBDM
7855
- #: includes/views/submit_listing.php:924
7856
  msgctxt "templates"
7857
  msgid "Terms and Conditions:"
7858
  msgstr "Warunki i regulamin:"
7859
 
7860
  # @ WPBDM
7861
- #: includes/views/submit_listing.php:933
7862
  #, fuzzy
7863
  msgctxt "templates"
7864
  msgid "I agree to the <a>Terms and Conditions</a>"
@@ -8112,18 +8112,18 @@ msgid "Your listing has been submitted."
8112
  msgstr "Twoja Firma została zapisana."
8113
 
8114
  # @ WPBDM
8115
- #: templates/submit-listing-done.tpl.php:11
8116
  msgctxt "templates"
8117
  msgid "Your listing changes were saved."
8118
  msgstr "Zapisano zmiany w Twojej Ofercie."
8119
 
8120
  # @ WPBDM
8121
- #: templates/submit-listing-done.tpl.php:16
8122
  msgctxt "templates"
8123
  msgid "Go to your listing"
8124
  msgstr "Przejdź do Twojej oferty."
8125
 
8126
- #: templates/submit-listing-done.tpl.php:18
8127
  msgctxt "templates"
8128
  msgid ""
8129
  "Your listing requires admin approval. You'll be notified once your listing "
@@ -8131,7 +8131,7 @@ msgid ""
8131
  msgstr ""
8132
 
8133
  # @ WPBDM
8134
- #: templates/submit-listing-done.tpl.php:22
8135
  msgctxt "templates"
8136
  msgid "Return to directory."
8137
  msgstr "Powrót do Katalogu."
@@ -8703,7 +8703,7 @@ msgctxt "payments"
8703
  msgid "Bill To:"
8704
  msgstr ""
8705
 
8706
- #: includes/payment.php:97
8707
  msgctxt "checkout"
8708
  msgid "Print Receipt"
8709
  msgstr ""
@@ -8976,7 +8976,7 @@ msgctxt "checkout"
8976
  msgid "Your payment is awaiting verification by the gateway."
8977
  msgstr ""
8978
 
8979
- #: templates/checkout-confirmation.tpl.php:19
8980
  msgctxt "checkout"
8981
  msgid ""
8982
  "Verification usually takes some minutes. This page will automatically "
@@ -9097,7 +9097,7 @@ msgid "Error while uploading file"
9097
  msgstr "Błąd podczas przesyłania pliku."
9098
 
9099
  # @ WPBDM
9100
- #: includes/views/delete_listing.php:32
9101
  msgctxt "delete listing"
9102
  msgid "Your listing has been deleted."
9103
  msgstr "Twoja oferta została usunięta."
@@ -9467,14 +9467,14 @@ msgctxt "preview"
9467
  msgid "This is just a preview. The listing has not been published yet."
9468
  msgstr "To jest tylko podgląd. Oferta nie została jeszcze opublikowana."
9469
 
9470
- #: includes/views/submit_listing.php:675
9471
  msgctxt "listing submit"
9472
  msgid ""
9473
  "Something went wrong. Please check the form for errors, correct them and "
9474
  "submit again."
9475
  msgstr ""
9476
 
9477
- #: includes/views/submit_listing.php:759
9478
  msgctxt "listing submit"
9479
  msgid ""
9480
  "Image upload is required, please provide at least one image and submit again."
3
  "Project-Id-Version: Business Directory Plugin v5.5\n"
4
  "Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/business-"
5
  "directory-plugin\n"
6
+ "POT-Creation-Date: 2019-04-23 21:12:39+00:00\n"
7
  "PO-Revision-Date: 2017-01-16 17:49-0500\n"
8
  "Last-Translator: HomeSupport <admin@homesupport.pl>\n"
9
  "Language-Team: HomeSupport\n"
1371
  "formularza\" albo niech katalog firm zrobi to dla ciebie automatycznie."
1372
 
1373
  # @ WPBDM
1374
+ #: includes/admin/form-fields.php:214 includes/views/submit_listing.php:512
1375
  msgctxt "admin"
1376
  msgid "Go to \"Manage Form Fields\""
1377
  msgstr "Przejdź do \"Zarządzanie polami formularza\""
1383
  msgstr "Stwórz te wymagane pola dla mnie"
1384
 
1385
  # @ WPBDM
1386
+ #: includes/payment.php:180
1387
  msgctxt "admin"
1388
  msgid "Pending Abandonment"
1389
  msgstr "Oczekujące na abonament"
1390
 
1391
  # @ WPBDM
1392
+ #: includes/payment.php:185
1393
  msgctxt "admin"
1394
  msgid "Abandoned"
1395
  msgstr "Porzucone"
1404
  msgid "Reported"
1405
  msgstr ""
1406
 
1407
+ #: includes/class-listing.php:771
1408
  msgctxt "listing status"
1409
  msgid "Unknown"
1410
  msgstr ""
1411
 
1412
+ #: includes/class-listing.php:772
1413
  msgctxt "listing status"
1414
  msgid "Legacy"
1415
  msgstr ""
1416
 
1417
  # @ WPBDM
1418
+ #: includes/class-listing.php:773
1419
  #, fuzzy
1420
  msgctxt "listing status"
1421
  msgid "Incomplete"
1422
  msgstr "Zakończona"
1423
 
1424
  # @ WPBDM
1425
+ #: includes/class-listing.php:774
1426
  #, fuzzy
1427
  msgctxt "listing status"
1428
  msgid "Pending Payment"
1429
  msgstr "Oczekujące na abonament"
1430
 
1431
  # @ WPBDM
1432
+ #: includes/class-listing.php:775
1433
  #, fuzzy
1434
  msgctxt "listing status"
1435
  msgid "Complete"
1436
  msgstr "Zakończona"
1437
 
1438
  # @ WPBDM
1439
+ #: includes/class-listing.php:776
1440
  #, fuzzy
1441
  msgctxt "listing status"
1442
  msgid "Pending Upgrade"
1443
  msgstr "Oferty oczekujące na zatwierdzenie"
1444
 
1445
  # @ WPBDM
1446
+ #: includes/class-listing.php:777
1447
  #, fuzzy
1448
  msgctxt "listing status"
1449
  msgid "Expired"
1450
  msgstr "Wygasłe"
1451
 
1452
  # @ WPBDM
1453
+ #: includes/class-listing.php:778
1454
  #, fuzzy
1455
  msgctxt "listing status"
1456
  msgid "Pending Renewal"
1457
  msgstr "Tylko aktywne i oczekujące na odświeżenie "
1458
 
1459
  # @ WPBDM
1460
+ #: includes/class-listing.php:779
1461
  #, fuzzy
1462
  msgctxt "listing status"
1463
  msgid "Abandoned"
2203
  msgstr "Import zakończony pełnym sukcesem."
2204
 
2205
  # @ WPBDM
2206
+ #: includes/themes.php:829
2207
  msgctxt "themes"
2208
  msgid "ZIP file is not a valid BD theme file."
2209
  msgstr "Proszę wprowadzić poprawny adres e-mail."
2210
 
2211
  # @ WPBDM
2212
+ #: includes/themes.php:835
2213
  msgctxt "themes"
2214
  msgid "Could not create themes directory."
2215
  msgstr "Nie można utworzyć katalogu wpbdp-csv-eksport."
2216
 
2217
  # @ WPBDM
2218
+ #: includes/themes.php:843
2219
  msgctxt "themes"
2220
  msgid "Could not remove previous theme directory \"%s\"."
2221
  msgstr "Nie można utworzyć kategorii ofert \"%s\""
2222
 
2223
  # @ WPBDM
2224
+ #: includes/themes.php:849
2225
  msgctxt "themes"
2226
  msgid "Could not move new theme into theme directory."
2227
  msgstr "Nie masz aktualnie ofert w katalogu."
3280
  msgstr ""
3281
 
3282
  # @ WPBDM
3283
+ #: includes/fields/class-fieldtypes-url.php:36
3284
  msgctxt "form-fields admin"
3285
  msgid "Open link in a new window?"
3286
  msgstr "Otworzyć łącze w nowym oknie?"
3287
 
3288
  # @ WPBDM
3289
+ #: includes/fields/class-fieldtypes-url.php:39
3290
  msgctxt "form-fields admin"
3291
  msgid "Use rel=\"nofollow\" when displaying the link?"
3292
  msgstr "Użyj rel=\"nofollow\" kiedy wyświetlany jest link?"
4106
 
4107
  # @ WPBDM
4108
  #: includes/admin/settings/class-settings-bootstrap.php:682
4109
+ #: includes/functions.php:1181
4110
  msgctxt "admin settings"
4111
  msgid "Date posted"
4112
  msgstr "Data publikacji"
4113
 
4114
  # @ WPBDM
4115
  #: includes/admin/settings/class-settings-bootstrap.php:683
4116
+ #: includes/functions.php:1182
4117
  msgctxt "admin settings"
4118
  msgid "Date last modified"
4119
  msgstr "Data ostatnij modyfikacji"
4559
  "Nie można skopiować pluginu kompatybilności AJAX \"%s\". Tryb "
4560
  "Kompatybilności nie został aktywowany."
4561
 
4562
+ #: includes/functions.php:1179
4563
  msgctxt "admin settings"
4564
  msgid "User"
4565
  msgstr ""
4566
 
4567
  # @ WPBDM
4568
+ #: includes/functions.php:1180
4569
  msgctxt "admin settings"
4570
  msgid "User registration date"
4571
  msgstr "Data zakończenia emisji oferty"
6595
  msgstr "Dodaj nową ofertę"
6596
 
6597
  # @ WPBDM
6598
+ #: includes/class-listing.php:305
6599
  #, fuzzy
6600
  msgctxt "listing"
6601
  msgid "Listing has no registered payments"
6602
  msgstr "Data zakończenia emisji oferty"
6603
 
6604
  # @ WPBDM
6605
+ #: includes/class-listing.php:313
6606
  #, fuzzy
6607
  msgctxt "listing"
6608
  msgid "Can't delete payment"
6609
  msgstr "Odrzucenie płatności"
6610
 
6611
  # @ WPBDM
6612
+ #: includes/class-listing.php:352
6613
  #, fuzzy
6614
  msgctxt "listing"
6615
  msgid "Listing expired"
6616
  msgstr "Upłynął okres ważności oferty."
6617
 
6618
  # @ WPBDM
6619
+ #: includes/class-listing.php:511
6620
  #, fuzzy
6621
  msgctxt "listing"
6622
  msgid "(Unavailable Plan)"
6623
  msgstr "(Abonament niedostępny)"
6624
 
6625
  # @ WPBDM
6626
+ #: includes/class-listing.php:668
6627
  #, fuzzy
6628
  msgctxt "listing"
6629
  msgid "Plan \"%s\" (recurring)"
6630
  msgstr "(powtarzające się)"
6631
 
6632
+ #: includes/class-listing.php:670
6633
  msgctxt "listing"
6634
  msgid "Plan \"%s\""
6635
  msgstr ""
6921
  "zmienić ustawienia. Do czasu wprowadzenia zmian, plugin będzie działał w "
6922
  "<i>Trybie Bezpłatnym</i>."
6923
 
6924
+ #: includes/class-payment.php:82
6925
  msgctxt "payment"
6926
+ msgid "Payment status changed from \"%1$s\" to \"%2$s\"."
6927
  msgstr ""
6928
 
6929
  # @ WPBDM
6930
+ #: includes/class-payment.php:123
6931
  #, fuzzy
6932
  msgctxt "payment"
6933
  msgid "Initial payment (\"%s\")"
6934
  msgstr "Inicjacja Płatności"
6935
 
6936
  # @ WPBDM
6937
+ #: includes/class-payment.php:126
6938
  #, fuzzy
6939
  msgctxt "payment"
6940
  msgid "Renewal payment (\"%s\")"
6941
  msgstr "Odrzucenie płatności"
6942
 
6943
  # @ WPBDM
6944
+ #: includes/class-payment.php:313
6945
  #, fuzzy
6946
  msgctxt "payment"
6947
  msgid "Pending"
6948
  msgstr "Oczekujące"
6949
 
6950
+ #: includes/class-payment.php:314
6951
  msgctxt "payment"
6952
  msgid "Failed"
6953
  msgstr ""
6954
 
6955
  # @ WPBDM
6956
+ #: includes/class-payment.php:315
6957
  #, fuzzy
6958
  msgctxt "payment"
6959
  msgid "Completed"
6960
  msgstr "Zakończona"
6961
 
6962
  # @ WPBDM
6963
+ #: includes/class-payment.php:316
6964
  #, fuzzy
6965
  msgctxt "payment"
6966
  msgid "Canceled"
6967
  msgstr "Anulowana"
6968
 
6969
+ #: includes/class-payment.php:317
6970
  msgctxt "payment"
6971
  msgid "On Hold"
6972
  msgstr ""
6973
 
6974
+ #: includes/class-payment.php:318
6975
  msgctxt "payment"
6976
  msgid "Refunded"
6977
  msgstr ""
6978
 
6979
+ #: includes/class-payment.php:138
6980
  msgctxt "payment summary"
6981
  msgid "%s. Admin Posted."
6982
  msgstr ""
6983
 
6984
  # @ WPBDM
6985
+ #: includes/class-payment.php:140
6986
  #, fuzzy
6987
  msgctxt "payment summary"
6988
  msgid "%s. Imported Listing."
6989
  msgstr "Import ofert"
6990
 
6991
  # @ WPBDM
6992
+ #: includes/class-payment.php:218
6993
  #, fuzzy
6994
  msgctxt "submit listing"
6995
  msgid "Listing submitted by admin. Payment skipped."
7063
  "pominięte."
7064
 
7065
  # @ WPBDM
7066
+ #: includes/views/submit_listing.php:388
7067
  #, fuzzy
7068
  msgctxt "submit listing"
7069
  msgid "Category selection"
7070
  msgstr "Wybór Kategorii"
7071
 
7072
  # @ WPBDM
7073
+ #: includes/views/submit_listing.php:388
7074
  #, fuzzy
7075
  msgctxt "submit listing"
7076
  msgid "Category & plan selection"
7077
  msgstr "Wybór Kategorii"
7078
 
7079
  # @ WPBDM
7080
+ #: includes/views/submit_listing.php:393
7081
  #, fuzzy
7082
  msgctxt "submit listing"
7083
  msgid "Listing Information"
7084
  msgstr "Informacje o firmie"
7085
 
7086
  # @ WPBDM
7087
+ #: includes/views/submit_listing.php:398
7088
  #, fuzzy
7089
  msgctxt "submit listing"
7090
  msgid "Listing Images"
7091
  msgstr "Obrazy"
7092
 
7093
+ #: includes/views/submit_listing.php:406
7094
  msgctxt "submit listing"
7095
  msgid "Account Creation"
7096
  msgstr ""
7097
 
7098
  # @ WPBDM
7099
+ #: includes/views/submit_listing.php:412
7100
  #, fuzzy
7101
  msgctxt "submit listing"
7102
  msgid "Terms and Conditions"
7103
  msgstr "Warunki i regulamin korzystania z serwisu."
7104
 
7105
+ #: includes/views/submit_listing.php:449
7106
  msgctxt "submit listing"
7107
  msgid "(Please choose a fee plan above)"
7108
  msgstr ""
7109
 
7110
  # @ WPBDM
7111
+ #: includes/views/submit_listing.php:499
7112
  #, fuzzy
7113
  msgctxt "submit listing"
7114
  msgid "Can not submit a listing at this moment. Please try again later."
7117
  "później."
7118
 
7119
  # @ WPBDM
7120
+ #: includes/views/submit_listing.php:527
7121
  #, fuzzy
7122
  msgctxt "submit listing"
7123
  msgid "Please select a category."
7124
  msgstr "Wybierz abonament dla tegj kategori \"%s\"."
7125
 
7126
  # @ WPBDM
7127
+ #: includes/views/submit_listing.php:540
7128
  #, fuzzy
7129
  msgctxt "submit listing"
7130
  msgid "Please select a category for your listing."
7131
  msgstr "Wybierz abonament dla tegj kategori \"%s\"."
7132
 
7133
+ #: includes/views/submit_listing.php:560
7134
  msgctxt "submit listing"
7135
  msgid "Please choose a valid category for your plan."
7136
  msgstr ""
7137
 
7138
  # @ WPBDM
7139
+ #: includes/views/submit_listing.php:562
7140
  #, fuzzy
7141
  msgctxt "submit listing"
7142
  msgid "Please choose a valid fee plan for your category selection."
7143
  msgstr "Wybierz abonament dla tegj kategori \"%s\"."
7144
 
7145
  # @ WPBDM
7146
+ #: includes/views/submit_listing.php:803
7147
  #, fuzzy
7148
  msgctxt "submit listing"
7149
  msgid "Please enter your desired username."
7150
  msgstr "Proszę wprowadzić Imię"
7151
 
7152
  # @ WPBDM
7153
+ #: includes/views/submit_listing.php:808
7154
  #, fuzzy
7155
  msgctxt "submit listing"
7156
  msgid "Please enter the e-mail for your new account."
7157
  msgstr "Proszę wprowadzić Imię"
7158
 
7159
+ #: includes/views/submit_listing.php:813
7160
  msgctxt "submit listing"
7161
  msgid "Please enter the password for your new account."
7162
  msgstr ""
7163
 
7164
+ #: includes/views/submit_listing.php:823
7165
  msgctxt "submit listing"
7166
  msgid "The username you chose is already in use. Please use a different one."
7167
  msgstr ""
7168
 
7169
+ #: includes/views/submit_listing.php:828
7170
  msgctxt "submit listing"
7171
  msgid "The e-mail address you chose for your account is already in use."
7172
  msgstr ""
7173
 
7174
+ #: includes/views/submit_listing.php:843
7175
  msgctxt "submit listing"
7176
  msgid "Create a user account on this site"
7177
  msgstr ""
7178
 
7179
+ #: includes/views/submit_listing.php:850
7180
  msgctxt "submit listing"
7181
  msgid ""
7182
  "You need to create an account on the site. Please fill out the form below."
7183
  msgstr ""
7184
 
7185
+ #: includes/views/submit_listing.php:856
7186
  msgctxt "submit listing"
7187
  msgid "Username:"
7188
  msgstr ""
7189
 
7190
  # @ WPBDM
7191
+ #: includes/views/submit_listing.php:865
7192
  #, fuzzy
7193
  msgctxt "submit listing"
7194
  msgid "Email:"
7195
  msgstr "E-Mail: %s"
7196
 
7197
+ #: includes/views/submit_listing.php:874
7198
  msgctxt "submit listing"
7199
  msgid "Password:"
7200
  msgstr ""
7376
 
7377
  # @ WPBDM
7378
  #: includes/fields/class-fieldtypes-social.php:95
7379
+ #: includes/fields/class-fieldtypes-url.php:149
7380
  msgctxt "form-fields api"
7381
  msgid "URL:"
7382
  msgstr "URL:"
7383
 
7384
  # @ WPBDM
7385
+ #: includes/fields/class-fieldtypes-social.php:115
7386
  #, fuzzy
7387
  msgctxt "form-fields api"
7388
  msgid "Text:"
7389
  msgstr "Pole tekstowe / z możliwością html"
7390
 
7391
+ #: includes/fields/class-fieldtypes-social.php:122
7392
  msgctxt "form-fields api"
7393
+ msgid "Text to be displayed for social field"
7394
  msgstr ""
7395
 
7396
  # @ WPBDM
7397
+ #: includes/fields/class-fieldtypes-social.php:140
7398
  #, fuzzy
7399
  msgctxt "form-fields api"
7400
  msgid "Type:"
7425
  msgstr "Strona Społeczności (Twitter)"
7426
 
7427
  # @ WPBDM
7428
+ #: includes/fields/class-fieldtypes-url.php:18
7429
  msgctxt "form-fields api"
7430
  msgid "URL Field"
7431
  msgstr "Pole URL"
7432
 
7433
  # @ WPBDM
7434
+ #: includes/fields/class-fieldtypes-url.php:157
7435
  msgctxt "form-fields api"
7436
  msgid "Link Text (optional):"
7437
  msgstr "Tekst alternatywny(opcjonalnie):"
7516
 
7517
  # @ WPBDM
7518
  #: includes/fields/class-fieldtypes-image.php:100
7519
+ #: includes/fields/class-fieldtypes-social.php:175
7520
  msgctxt "form-fields-api"
7521
  msgid "Remove"
7522
  msgstr "Usuń"
7735
  msgstr "Kraj jest wymagany."
7736
 
7737
  # @ WPBDM
7738
+ #: includes/functions.php:1259
7739
  #, fuzzy
7740
  msgctxt "templates"
7741
  msgid "Return to results"
7742
  msgstr "Powrót do Katalogu."
7743
 
7744
+ #: includes/functions.php:1263 includes/functions.php:1268
7745
  msgctxt "templates"
7746
  msgid "Go back"
7747
  msgstr ""
7748
 
7749
  # @ WPBDM
7750
+ #: includes/payment.php:277 templates/renew-resume.tpl.php:39
7751
  #, fuzzy
7752
  msgctxt "templates"
7753
  msgid "Return to fee selection"
7817
  "zawierają ofert. To oznacza, że te kategorie nie będą wyświetlane na "
7818
  "stornach Katalogu. Jeśli chcesz to zmienić kliknij <a>tutaj</a>."
7819
 
7820
+ #: includes/views/submit_listing.php:335
7821
  msgctxt "templates"
7822
  msgid ""
7823
  "<b>View not available</b>. Do you have the \"Disable Frontend Listing "
7824
  "Submission?\" setting checked?"
7825
  msgstr ""
7826
 
7827
+ #: includes/views/submit_listing.php:337
7828
  msgctxt "templates"
7829
  msgid ""
7830
  "Listing submission has been disabled. Contact the administrator for details."
7831
  msgstr ""
7832
 
7833
+ #: includes/views/submit_listing.php:502
7834
  msgctxt "templates"
7835
  msgid ""
7836
  "Listing submission is not available at the moment. Contact the administrator "
7837
  "for details."
7838
  msgstr ""
7839
 
7840
+ #: includes/views/submit_listing.php:505
7841
  msgctxt "templates"
7842
  msgid ""
7843
  "<b>View not available</b>, there is no \"Category\" association field. %s "
7846
  msgstr ""
7847
 
7848
  # @ WPBDM
7849
+ #: includes/views/submit_listing.php:912
7850
  msgctxt "templates"
7851
  msgid "Please agree to the Terms and Conditions."
7852
  msgstr "Musisz zaakceptować nasze warunki i regulamin korzystania z serwisu."
7853
 
7854
  # @ WPBDM
7855
+ #: includes/views/submit_listing.php:920
7856
  msgctxt "templates"
7857
  msgid "Terms and Conditions:"
7858
  msgstr "Warunki i regulamin:"
7859
 
7860
  # @ WPBDM
7861
+ #: includes/views/submit_listing.php:929
7862
  #, fuzzy
7863
  msgctxt "templates"
7864
  msgid "I agree to the <a>Terms and Conditions</a>"
8112
  msgstr "Twoja Firma została zapisana."
8113
 
8114
  # @ WPBDM
8115
+ #: templates/submit-listing-done.tpl.php:14
8116
  msgctxt "templates"
8117
  msgid "Your listing changes were saved."
8118
  msgstr "Zapisano zmiany w Twojej Ofercie."
8119
 
8120
  # @ WPBDM
8121
+ #: templates/submit-listing-done.tpl.php:19
8122
  msgctxt "templates"
8123
  msgid "Go to your listing"
8124
  msgstr "Przejdź do Twojej oferty."
8125
 
8126
+ #: templates/submit-listing-done.tpl.php:21
8127
  msgctxt "templates"
8128
  msgid ""
8129
  "Your listing requires admin approval. You'll be notified once your listing "
8131
  msgstr ""
8132
 
8133
  # @ WPBDM
8134
+ #: templates/submit-listing-done.tpl.php:25
8135
  msgctxt "templates"
8136
  msgid "Return to directory."
8137
  msgstr "Powrót do Katalogu."
8703
  msgid "Bill To:"
8704
  msgstr ""
8705
 
8706
+ #: includes/payment.php:96
8707
  msgctxt "checkout"
8708
  msgid "Print Receipt"
8709
  msgstr ""
8976
  msgid "Your payment is awaiting verification by the gateway."
8977
  msgstr ""
8978
 
8979
+ #: templates/checkout-confirmation.tpl.php:20
8980
  msgctxt "checkout"
8981
  msgid ""
8982
  "Verification usually takes some minutes. This page will automatically "
9097
  msgstr "Błąd podczas przesyłania pliku."
9098
 
9099
  # @ WPBDM
9100
+ #: includes/views/delete_listing.php:38
9101
  msgctxt "delete listing"
9102
  msgid "Your listing has been deleted."
9103
  msgstr "Twoja oferta została usunięta."
9467
  msgid "This is just a preview. The listing has not been published yet."
9468
  msgstr "To jest tylko podgląd. Oferta nie została jeszcze opublikowana."
9469
 
9470
+ #: includes/views/submit_listing.php:671
9471
  msgctxt "listing submit"
9472
  msgid ""
9473
  "Something went wrong. Please check the form for errors, correct them and "
9474
  "submit again."
9475
  msgstr ""
9476
 
9477
+ #: includes/views/submit_listing.php:755
9478
  msgctxt "listing submit"
9479
  msgid ""
9480
  "Image upload is required, please provide at least one image and submit again."
languages/WPBDM-ru_RU.mo CHANGED
Binary file
languages/WPBDM-ru_RU.po CHANGED
@@ -3,7 +3,7 @@ msgstr ""
3
  "Project-Id-Version: Business Directory Plugin v5.5\n"
4
  "Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/business-"
5
  "directory-plugin\n"
6
- "POT-Creation-Date: 2019-03-20 00:09:46+00:00\n"
7
  "PO-Revision-Date: 2017-01-16 17:49-0500\n"
8
  "Last-Translator: Mick Levin <mikhaillevin@hotmail.com>\n"
9
  "Language-Team: BD Team <support@businessdirectoryplugin.com>\n"
@@ -1203,7 +1203,7 @@ msgstr ""
1203
  "Вы можете сами создать эти поля в разделе \"Управление / Форма\", или "
1204
  "позвольте плагину сделать это автоматически."
1205
 
1206
- #: includes/admin/form-fields.php:214 includes/views/submit_listing.php:516
1207
  msgctxt "admin"
1208
  msgid "Go to \"Manage Form Fields\""
1209
  msgstr "Перейти в раздел \"Управление / Форма\""
@@ -1213,12 +1213,12 @@ msgctxt "admin"
1213
  msgid "Create these required fields for me"
1214
  msgstr "Создать эти поля автоматически"
1215
 
1216
- #: includes/payment.php:181
1217
  msgctxt "admin"
1218
  msgid "Pending Abandonment"
1219
  msgstr "Платёж был заброшен."
1220
 
1221
- #: includes/payment.php:186
1222
  msgctxt "admin"
1223
  msgid "Abandoned"
1224
  msgstr "Заброшено"
@@ -1233,53 +1233,53 @@ msgctxt "listing status"
1233
  msgid "Reported"
1234
  msgstr ""
1235
 
1236
- #: includes/class-listing.php:768
1237
  msgctxt "listing status"
1238
  msgid "Unknown"
1239
  msgstr ""
1240
 
1241
- #: includes/class-listing.php:769
1242
  msgctxt "listing status"
1243
  msgid "Legacy"
1244
  msgstr ""
1245
 
1246
- #: includes/class-listing.php:770
1247
  #, fuzzy
1248
  msgctxt "listing status"
1249
  msgid "Incomplete"
1250
  msgstr "Завершено"
1251
 
1252
- #: includes/class-listing.php:771
1253
  #, fuzzy
1254
  msgctxt "listing status"
1255
  msgid "Pending Payment"
1256
  msgstr "Платёж был заброшен."
1257
 
1258
- #: includes/class-listing.php:772
1259
  #, fuzzy
1260
  msgctxt "listing status"
1261
  msgid "Complete"
1262
  msgstr "Завершено"
1263
 
1264
- #: includes/class-listing.php:773
1265
  #, fuzzy
1266
  msgctxt "listing status"
1267
  msgid "Pending Upgrade"
1268
  msgstr "Ожидается подтверждение"
1269
 
1270
- #: includes/class-listing.php:774
1271
  #, fuzzy
1272
  msgctxt "listing status"
1273
  msgid "Expired"
1274
  msgstr "Истекло"
1275
 
1276
- #: includes/class-listing.php:775
1277
  #, fuzzy
1278
  msgctxt "listing status"
1279
  msgid "Pending Renewal"
1280
  msgstr "Активные + ожидающие продление"
1281
 
1282
- #: includes/class-listing.php:776
1283
  #, fuzzy
1284
  msgctxt "listing status"
1285
  msgid "Abandoned"
@@ -1934,22 +1934,22 @@ msgctxt "themes"
1934
  msgid "Theme was updated successfully."
1935
  msgstr "Тема была успешно обновлена."
1936
 
1937
- #: includes/themes.php:825
1938
  msgctxt "themes"
1939
  msgid "ZIP file is not a valid BD theme file."
1940
  msgstr "Файл ZIP - не является файлом темы плагина."
1941
 
1942
- #: includes/themes.php:831
1943
  msgctxt "themes"
1944
  msgid "Could not create themes directory."
1945
  msgstr "Не удалось создать директорию для темы плагина."
1946
 
1947
- #: includes/themes.php:839
1948
  msgctxt "themes"
1949
  msgid "Could not remove previous theme directory \"%s\"."
1950
  msgstr "Не удалось удалить предыдущую директорию темы \"%s\"."
1951
 
1952
- #: includes/themes.php:845
1953
  msgctxt "themes"
1954
  msgid "Could not move new theme into theme directory."
1955
  msgstr "Не удалось переместить новую тему в директорию темы."
@@ -2900,12 +2900,12 @@ msgctxt "form-fields admin"
2900
  msgid "Automatically generate excerpt from content field?"
2901
  msgstr ""
2902
 
2903
- #: includes/fields/class-fieldtypes-url.php:23
2904
  msgctxt "form-fields admin"
2905
  msgid "Open link in a new window?"
2906
  msgstr "Открыть ссылку в новом окне?"
2907
 
2908
- #: includes/fields/class-fieldtypes-url.php:26
2909
  msgctxt "form-fields admin"
2910
  msgid "Use rel=\"nofollow\" when displaying the link?"
2911
  msgstr "Использовать \"rel=nofollow\" при отображении ссылки?"
@@ -3628,13 +3628,13 @@ msgid "Author"
3628
  msgstr "По автору"
3629
 
3630
  #: includes/admin/settings/class-settings-bootstrap.php:682
3631
- #: includes/functions.php:1179
3632
  msgctxt "admin settings"
3633
  msgid "Date posted"
3634
  msgstr "По дате публикации"
3635
 
3636
  #: includes/admin/settings/class-settings-bootstrap.php:683
3637
- #: includes/functions.php:1180
3638
  msgctxt "admin settings"
3639
  msgid "Date last modified"
3640
  msgstr "По дате изменения"
@@ -4031,12 +4031,12 @@ msgstr ""
4031
  "Не удалось скопировать плагин совместимости с AJAX \"%s\". Режим "
4032
  "совместимости не был активирован."
4033
 
4034
- #: includes/functions.php:1177
4035
  msgctxt "admin settings"
4036
  msgid "User"
4037
  msgstr ""
4038
 
4039
- #: includes/functions.php:1178
4040
  msgctxt "admin settings"
4041
  msgid "User registration date"
4042
  msgstr "Дата окончания срока действия"
@@ -5878,37 +5878,37 @@ msgctxt "listing"
5878
  msgid "Add New Listing"
5879
  msgstr "Добавить запись"
5880
 
5881
- #: includes/class-listing.php:302
5882
  #, fuzzy
5883
  msgctxt "listing"
5884
  msgid "Listing has no registered payments"
5885
  msgstr "Дата окончания срока действия"
5886
 
5887
- #: includes/class-listing.php:310
5888
  #, fuzzy
5889
  msgctxt "listing"
5890
  msgid "Can't delete payment"
5891
  msgstr "Отказать в платеже"
5892
 
5893
- #: includes/class-listing.php:349
5894
  #, fuzzy
5895
  msgctxt "listing"
5896
  msgid "Listing expired"
5897
  msgstr "Срок действия записи истёк"
5898
 
5899
- #: includes/class-listing.php:508
5900
  #, fuzzy
5901
  msgctxt "listing"
5902
  msgid "(Unavailable Plan)"
5903
  msgstr "(Тариф недоступен)"
5904
 
5905
- #: includes/class-listing.php:665
5906
  #, fuzzy
5907
  msgctxt "listing"
5908
  msgid "Plan \"%s\" (recurring)"
5909
  msgstr "(периодически)"
5910
 
5911
- #: includes/class-listing.php:667
5912
  msgctxt "listing"
5913
  msgid "Plan \"%s\""
5914
  msgstr ""
@@ -6167,68 +6167,68 @@ msgstr ""
6167
  "будут правильно сделаны, этот плагин будет работать в <i>Бесплатном Режиме</"
6168
  "i>."
6169
 
6170
- #: includes/class-payment.php:65
6171
  msgctxt "payment"
6172
- msgid "Payment status changed from \"%s\" to \"%s\"."
6173
  msgstr ""
6174
 
6175
- #: includes/class-payment.php:98
6176
  #, fuzzy
6177
  msgctxt "payment"
6178
  msgid "Initial payment (\"%s\")"
6179
  msgstr "Начальный платёж"
6180
 
6181
- #: includes/class-payment.php:101
6182
  #, fuzzy
6183
  msgctxt "payment"
6184
  msgid "Renewal payment (\"%s\")"
6185
  msgstr "Отказать в платеже"
6186
 
6187
- #: includes/class-payment.php:266
6188
  #, fuzzy
6189
  msgctxt "payment"
6190
  msgid "Pending"
6191
  msgstr "Ожидается"
6192
 
6193
- #: includes/class-payment.php:267
6194
  msgctxt "payment"
6195
  msgid "Failed"
6196
  msgstr ""
6197
 
6198
- #: includes/class-payment.php:268
6199
  #, fuzzy
6200
  msgctxt "payment"
6201
  msgid "Completed"
6202
  msgstr "Завершено"
6203
 
6204
- #: includes/class-payment.php:269
6205
  #, fuzzy
6206
  msgctxt "payment"
6207
  msgid "Canceled"
6208
  msgstr "Отменено"
6209
 
6210
- #: includes/class-payment.php:270
6211
  msgctxt "payment"
6212
  msgid "On Hold"
6213
  msgstr ""
6214
 
6215
- #: includes/class-payment.php:271
6216
  msgctxt "payment"
6217
  msgid "Refunded"
6218
  msgstr ""
6219
 
6220
- #: includes/class-payment.php:113
6221
  msgctxt "payment summary"
6222
  msgid "%s. Admin Posted."
6223
  msgstr ""
6224
 
6225
- #: includes/class-payment.php:115
6226
  #, fuzzy
6227
  msgctxt "payment summary"
6228
  msgid "%s. Imported Listing."
6229
  msgstr "Импортировать записи"
6230
 
6231
- #: includes/class-payment.php:188
6232
  msgctxt "submit listing"
6233
  msgid "Listing submitted by admin. Payment skipped."
6234
  msgstr ""
@@ -6293,47 +6293,47 @@ msgctxt "submit listing"
6293
  msgid "You're logged in as admin, payment will be skipped."
6294
  msgstr "Вы вошли на сайт как Администратор. Все шаги оплаты будут пропущены."
6295
 
6296
- #: includes/views/submit_listing.php:392
6297
  #, fuzzy
6298
  msgctxt "submit listing"
6299
  msgid "Category selection"
6300
  msgstr "Выбор рубрики"
6301
 
6302
- #: includes/views/submit_listing.php:392
6303
  #, fuzzy
6304
  msgctxt "submit listing"
6305
  msgid "Category & plan selection"
6306
  msgstr "Выбор рубрики"
6307
 
6308
- #: includes/views/submit_listing.php:397
6309
  #, fuzzy
6310
  msgctxt "submit listing"
6311
  msgid "Listing Information"
6312
  msgstr "Информация о бизнесе"
6313
 
6314
- #: includes/views/submit_listing.php:402
6315
  #, fuzzy
6316
  msgctxt "submit listing"
6317
  msgid "Listing Images"
6318
  msgstr "Изображение записи"
6319
 
6320
- #: includes/views/submit_listing.php:410
6321
  msgctxt "submit listing"
6322
  msgid "Account Creation"
6323
  msgstr ""
6324
 
6325
- #: includes/views/submit_listing.php:416
6326
  #, fuzzy
6327
  msgctxt "submit listing"
6328
  msgid "Terms and Conditions"
6329
  msgstr "Условия и положения"
6330
 
6331
- #: includes/views/submit_listing.php:453
6332
  msgctxt "submit listing"
6333
  msgid "(Please choose a fee plan above)"
6334
  msgstr ""
6335
 
6336
- #: includes/views/submit_listing.php:503
6337
  #, fuzzy
6338
  msgctxt "submit listing"
6339
  msgid "Can not submit a listing at this moment. Please try again later."
@@ -6341,79 +6341,79 @@ msgstr ""
6341
  "В настоящее время вы не можем провести Вашу оплату. Попробуйте позже "
6342
  "пожалуйста."
6343
 
6344
- #: includes/views/submit_listing.php:531
6345
  #, fuzzy
6346
  msgctxt "submit listing"
6347
  msgid "Please select a category."
6348
  msgstr "Пожалуйста выберите тариф для рубрики \"%s\"."
6349
 
6350
- #: includes/views/submit_listing.php:544
6351
  #, fuzzy
6352
  msgctxt "submit listing"
6353
  msgid "Please select a category for your listing."
6354
  msgstr "Пожалуйста выберите тариф для рубрики \"%s\"."
6355
 
6356
- #: includes/views/submit_listing.php:564
6357
  msgctxt "submit listing"
6358
  msgid "Please choose a valid category for your plan."
6359
  msgstr ""
6360
 
6361
- #: includes/views/submit_listing.php:566
6362
  #, fuzzy
6363
  msgctxt "submit listing"
6364
  msgid "Please choose a valid fee plan for your category selection."
6365
  msgstr "Пожалуйста выберите тариф для рубрики \"%s\"."
6366
 
6367
- #: includes/views/submit_listing.php:807
6368
  #, fuzzy
6369
  msgctxt "submit listing"
6370
  msgid "Please enter your desired username."
6371
  msgstr "Пожалуйста введите Ваше имя."
6372
 
6373
- #: includes/views/submit_listing.php:812
6374
  #, fuzzy
6375
  msgctxt "submit listing"
6376
  msgid "Please enter the e-mail for your new account."
6377
  msgstr "Пожалуйста введите Ваше имя."
6378
 
6379
- #: includes/views/submit_listing.php:817
6380
  msgctxt "submit listing"
6381
  msgid "Please enter the password for your new account."
6382
  msgstr ""
6383
 
6384
- #: includes/views/submit_listing.php:827
6385
  msgctxt "submit listing"
6386
  msgid "The username you chose is already in use. Please use a different one."
6387
  msgstr ""
6388
 
6389
- #: includes/views/submit_listing.php:832
6390
  msgctxt "submit listing"
6391
  msgid "The e-mail address you chose for your account is already in use."
6392
  msgstr ""
6393
 
6394
- #: includes/views/submit_listing.php:847
6395
  msgctxt "submit listing"
6396
  msgid "Create a user account on this site"
6397
  msgstr ""
6398
 
6399
- #: includes/views/submit_listing.php:854
6400
  msgctxt "submit listing"
6401
  msgid ""
6402
  "You need to create an account on the site. Please fill out the form below."
6403
  msgstr ""
6404
 
6405
- #: includes/views/submit_listing.php:860
6406
  msgctxt "submit listing"
6407
  msgid "Username:"
6408
  msgstr ""
6409
 
6410
- #: includes/views/submit_listing.php:869
6411
  #, fuzzy
6412
  msgctxt "submit listing"
6413
  msgid "Email:"
6414
  msgstr "Адрес: %s"
6415
 
6416
- #: includes/views/submit_listing.php:878
6417
  msgctxt "submit listing"
6418
  msgid "Password:"
6419
  msgstr ""
@@ -6570,23 +6570,23 @@ msgid "Social Site (Other)"
6570
  msgstr "Имя на сайте Twitter"
6571
 
6572
  #: includes/fields/class-fieldtypes-social.php:95
6573
- #: includes/fields/class-fieldtypes-url.php:136
6574
  msgctxt "form-fields api"
6575
  msgid "URL:"
6576
  msgstr "Ссылка:"
6577
 
6578
- #: includes/fields/class-fieldtypes-social.php:108
6579
  #, fuzzy
6580
  msgctxt "form-fields api"
6581
  msgid "Text:"
6582
  msgstr "Текстовый блок"
6583
 
6584
- #: includes/fields/class-fieldtypes-social.php:114
6585
  msgctxt "form-fields api"
6586
- msgid "Text to be displayed along with icon"
6587
  msgstr ""
6588
 
6589
- #: includes/fields/class-fieldtypes-social.php:121
6590
  #, fuzzy
6591
  msgctxt "form-fields api"
6592
  msgid "Type:"
@@ -6612,12 +6612,12 @@ msgctxt "form-fields api"
6612
  msgid "Social Site (Twitter handle)"
6613
  msgstr "Имя на сайте Twitter"
6614
 
6615
- #: includes/fields/class-fieldtypes-url.php:5
6616
  msgctxt "form-fields api"
6617
  msgid "URL Field"
6618
  msgstr "Поле адреса URL"
6619
 
6620
- #: includes/fields/class-fieldtypes-url.php:144
6621
  msgctxt "form-fields api"
6622
  msgid "Link Text (optional):"
6623
  msgstr "Текст ссылки (не обязательно)"
@@ -6688,7 +6688,7 @@ msgid "Caption for %s is required."
6688
  msgstr "Страна обязательна."
6689
 
6690
  #: includes/fields/class-fieldtypes-image.php:100
6691
- #: includes/fields/class-fieldtypes-social.php:156
6692
  msgctxt "form-fields-api"
6693
  msgid "Remove"
6694
  msgstr "Удалить"
@@ -6881,18 +6881,18 @@ msgctxt "image field"
6881
  msgid "Caption for %s is required."
6882
  msgstr "Страна обязательна."
6883
 
6884
- #: includes/functions.php:1257
6885
  #, fuzzy
6886
  msgctxt "templates"
6887
  msgid "Return to results"
6888
  msgstr "Вернуться к справочнику"
6889
 
6890
- #: includes/functions.php:1261 includes/functions.php:1266
6891
  msgctxt "templates"
6892
  msgid "Go back"
6893
  msgstr ""
6894
 
6895
- #: includes/payment.php:278 templates/renew-resume.tpl.php:39
6896
  #, fuzzy
6897
  msgctxt "templates"
6898
  msgid "Return to fee selection"
@@ -6955,27 +6955,27 @@ msgstr ""
6955
  "показаны посетителям сайта. Если Вы хотите изменить такое поведение, "
6956
  "перейдите в <a>Настройки</a> и отключите этот параметр."
6957
 
6958
- #: includes/views/submit_listing.php:339
6959
  msgctxt "templates"
6960
  msgid ""
6961
  "<b>View not available</b>. Do you have the \"Disable Frontend Listing "
6962
  "Submission?\" setting checked?"
6963
  msgstr ""
6964
 
6965
- #: includes/views/submit_listing.php:341
6966
  msgctxt "templates"
6967
  msgid ""
6968
  "Listing submission has been disabled. Contact the administrator for details."
6969
  msgstr ""
6970
 
6971
- #: includes/views/submit_listing.php:506
6972
  msgctxt "templates"
6973
  msgid ""
6974
  "Listing submission is not available at the moment. Contact the administrator "
6975
  "for details."
6976
  msgstr ""
6977
 
6978
- #: includes/views/submit_listing.php:509
6979
  msgctxt "templates"
6980
  msgid ""
6981
  "<b>View not available</b>, there is no \"Category\" association field. %s "
@@ -6983,17 +6983,17 @@ msgid ""
6983
  "an existing field"
6984
  msgstr ""
6985
 
6986
- #: includes/views/submit_listing.php:916
6987
  msgctxt "templates"
6988
  msgid "Please agree to the Terms and Conditions."
6989
  msgstr "Пожалуйста примите наши Условия и Положения."
6990
 
6991
- #: includes/views/submit_listing.php:924
6992
  msgctxt "templates"
6993
  msgid "Terms and Conditions:"
6994
  msgstr "Условия и Положения:"
6995
 
6996
- #: includes/views/submit_listing.php:933
6997
  #, fuzzy
6998
  msgctxt "templates"
6999
  msgid "I agree to the <a>Terms and Conditions</a>"
@@ -7210,24 +7210,24 @@ msgctxt "templates"
7210
  msgid "Your listing has been submitted."
7211
  msgstr "Ваша запись принята на сервер."
7212
 
7213
- #: templates/submit-listing-done.tpl.php:11
7214
  msgctxt "templates"
7215
  msgid "Your listing changes were saved."
7216
  msgstr "Изменения в Вашей записи были сохранены."
7217
 
7218
- #: templates/submit-listing-done.tpl.php:16
7219
  msgctxt "templates"
7220
  msgid "Go to your listing"
7221
  msgstr "Перейти к Вашей записи"
7222
 
7223
- #: templates/submit-listing-done.tpl.php:18
7224
  msgctxt "templates"
7225
  msgid ""
7226
  "Your listing requires admin approval. You'll be notified once your listing "
7227
  "is approved."
7228
  msgstr ""
7229
 
7230
- #: templates/submit-listing-done.tpl.php:22
7231
  msgctxt "templates"
7232
  msgid "Return to directory."
7233
  msgstr "Вернуться в справочник."
@@ -7739,7 +7739,7 @@ msgctxt "payments"
7739
  msgid "Bill To:"
7740
  msgstr ""
7741
 
7742
- #: includes/payment.php:97
7743
  msgctxt "checkout"
7744
  msgid "Print Receipt"
7745
  msgstr ""
@@ -7986,7 +7986,7 @@ msgctxt "checkout"
7986
  msgid "Your payment is awaiting verification by the gateway."
7987
  msgstr ""
7988
 
7989
- #: templates/checkout-confirmation.tpl.php:19
7990
  msgctxt "checkout"
7991
  msgid ""
7992
  "Verification usually takes some minutes. This page will automatically "
@@ -8094,7 +8094,7 @@ msgctxt "utils"
8094
  msgid "Error while uploading file"
8095
  msgstr "Ошибка при загрузке файла"
8096
 
8097
- #: includes/views/delete_listing.php:32
8098
  msgctxt "delete listing"
8099
  msgid "Your listing has been deleted."
8100
  msgstr "Запись была удалена."
@@ -8417,14 +8417,14 @@ msgctxt "preview"
8417
  msgid "This is just a preview. The listing has not been published yet."
8418
  msgstr "Это просто предварительный просмотр. Запись ещё не была опубликована."
8419
 
8420
- #: includes/views/submit_listing.php:675
8421
  msgctxt "listing submit"
8422
  msgid ""
8423
  "Something went wrong. Please check the form for errors, correct them and "
8424
  "submit again."
8425
  msgstr ""
8426
 
8427
- #: includes/views/submit_listing.php:759
8428
  msgctxt "listing submit"
8429
  msgid ""
8430
  "Image upload is required, please provide at least one image and submit again."
3
  "Project-Id-Version: Business Directory Plugin v5.5\n"
4
  "Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/business-"
5
  "directory-plugin\n"
6
+ "POT-Creation-Date: 2019-04-23 21:12:39+00:00\n"
7
  "PO-Revision-Date: 2017-01-16 17:49-0500\n"
8
  "Last-Translator: Mick Levin <mikhaillevin@hotmail.com>\n"
9
  "Language-Team: BD Team <support@businessdirectoryplugin.com>\n"
1203
  "Вы можете сами создать эти поля в разделе \"Управление / Форма\", или "
1204
  "позвольте плагину сделать это автоматически."
1205
 
1206
+ #: includes/admin/form-fields.php:214 includes/views/submit_listing.php:512
1207
  msgctxt "admin"
1208
  msgid "Go to \"Manage Form Fields\""
1209
  msgstr "Перейти в раздел \"Управление / Форма\""
1213
  msgid "Create these required fields for me"
1214
  msgstr "Создать эти поля автоматически"
1215
 
1216
+ #: includes/payment.php:180
1217
  msgctxt "admin"
1218
  msgid "Pending Abandonment"
1219
  msgstr "Платёж был заброшен."
1220
 
1221
+ #: includes/payment.php:185
1222
  msgctxt "admin"
1223
  msgid "Abandoned"
1224
  msgstr "Заброшено"
1233
  msgid "Reported"
1234
  msgstr ""
1235
 
1236
+ #: includes/class-listing.php:771
1237
  msgctxt "listing status"
1238
  msgid "Unknown"
1239
  msgstr ""
1240
 
1241
+ #: includes/class-listing.php:772
1242
  msgctxt "listing status"
1243
  msgid "Legacy"
1244
  msgstr ""
1245
 
1246
+ #: includes/class-listing.php:773
1247
  #, fuzzy
1248
  msgctxt "listing status"
1249
  msgid "Incomplete"
1250
  msgstr "Завершено"
1251
 
1252
+ #: includes/class-listing.php:774
1253
  #, fuzzy
1254
  msgctxt "listing status"
1255
  msgid "Pending Payment"
1256
  msgstr "Платёж был заброшен."
1257
 
1258
+ #: includes/class-listing.php:775
1259
  #, fuzzy
1260
  msgctxt "listing status"
1261
  msgid "Complete"
1262
  msgstr "Завершено"
1263
 
1264
+ #: includes/class-listing.php:776
1265
  #, fuzzy
1266
  msgctxt "listing status"
1267
  msgid "Pending Upgrade"
1268
  msgstr "Ожидается подтверждение"
1269
 
1270
+ #: includes/class-listing.php:777
1271
  #, fuzzy
1272
  msgctxt "listing status"
1273
  msgid "Expired"
1274
  msgstr "Истекло"
1275
 
1276
+ #: includes/class-listing.php:778
1277
  #, fuzzy
1278
  msgctxt "listing status"
1279
  msgid "Pending Renewal"
1280
  msgstr "Активные + ожидающие продление"
1281
 
1282
+ #: includes/class-listing.php:779
1283
  #, fuzzy
1284
  msgctxt "listing status"
1285
  msgid "Abandoned"
1934
  msgid "Theme was updated successfully."
1935
  msgstr "Тема была успешно обновлена."
1936
 
1937
+ #: includes/themes.php:829
1938
  msgctxt "themes"
1939
  msgid "ZIP file is not a valid BD theme file."
1940
  msgstr "Файл ZIP - не является файлом темы плагина."
1941
 
1942
+ #: includes/themes.php:835
1943
  msgctxt "themes"
1944
  msgid "Could not create themes directory."
1945
  msgstr "Не удалось создать директорию для темы плагина."
1946
 
1947
+ #: includes/themes.php:843
1948
  msgctxt "themes"
1949
  msgid "Could not remove previous theme directory \"%s\"."
1950
  msgstr "Не удалось удалить предыдущую директорию темы \"%s\"."
1951
 
1952
+ #: includes/themes.php:849
1953
  msgctxt "themes"
1954
  msgid "Could not move new theme into theme directory."
1955
  msgstr "Не удалось переместить новую тему в директорию темы."
2900
  msgid "Automatically generate excerpt from content field?"
2901
  msgstr ""
2902
 
2903
+ #: includes/fields/class-fieldtypes-url.php:36
2904
  msgctxt "form-fields admin"
2905
  msgid "Open link in a new window?"
2906
  msgstr "Открыть ссылку в новом окне?"
2907
 
2908
+ #: includes/fields/class-fieldtypes-url.php:39
2909
  msgctxt "form-fields admin"
2910
  msgid "Use rel=\"nofollow\" when displaying the link?"
2911
  msgstr "Использовать \"rel=nofollow\" при отображении ссылки?"
3628
  msgstr "По автору"
3629
 
3630
  #: includes/admin/settings/class-settings-bootstrap.php:682
3631
+ #: includes/functions.php:1181
3632
  msgctxt "admin settings"
3633
  msgid "Date posted"
3634
  msgstr "По дате публикации"
3635
 
3636
  #: includes/admin/settings/class-settings-bootstrap.php:683
3637
+ #: includes/functions.php:1182
3638
  msgctxt "admin settings"
3639
  msgid "Date last modified"
3640
  msgstr "По дате изменения"
4031
  "Не удалось скопировать плагин совместимости с AJAX \"%s\". Режим "
4032
  "совместимости не был активирован."
4033
 
4034
+ #: includes/functions.php:1179
4035
  msgctxt "admin settings"
4036
  msgid "User"
4037
  msgstr ""
4038
 
4039
+ #: includes/functions.php:1180
4040
  msgctxt "admin settings"
4041
  msgid "User registration date"
4042
  msgstr "Дата окончания срока действия"
5878
  msgid "Add New Listing"
5879
  msgstr "Добавить запись"
5880
 
5881
+ #: includes/class-listing.php:305
5882
  #, fuzzy
5883
  msgctxt "listing"
5884
  msgid "Listing has no registered payments"
5885
  msgstr "Дата окончания срока действия"
5886
 
5887
+ #: includes/class-listing.php:313
5888
  #, fuzzy
5889
  msgctxt "listing"
5890
  msgid "Can't delete payment"
5891
  msgstr "Отказать в платеже"
5892
 
5893
+ #: includes/class-listing.php:352
5894
  #, fuzzy
5895
  msgctxt "listing"
5896
  msgid "Listing expired"
5897
  msgstr "Срок действия записи истёк"
5898
 
5899
+ #: includes/class-listing.php:511
5900
  #, fuzzy
5901
  msgctxt "listing"
5902
  msgid "(Unavailable Plan)"
5903
  msgstr "(Тариф недоступен)"
5904
 
5905
+ #: includes/class-listing.php:668
5906
  #, fuzzy
5907
  msgctxt "listing"
5908
  msgid "Plan \"%s\" (recurring)"
5909
  msgstr "(периодически)"
5910
 
5911
+ #: includes/class-listing.php:670
5912
  msgctxt "listing"
5913
  msgid "Plan \"%s\""
5914
  msgstr ""
6167
  "будут правильно сделаны, этот плагин будет работать в <i>Бесплатном Режиме</"
6168
  "i>."
6169
 
6170
+ #: includes/class-payment.php:82
6171
  msgctxt "payment"
6172
+ msgid "Payment status changed from \"%1$s\" to \"%2$s\"."
6173
  msgstr ""
6174
 
6175
+ #: includes/class-payment.php:123
6176
  #, fuzzy
6177
  msgctxt "payment"
6178
  msgid "Initial payment (\"%s\")"
6179
  msgstr "Начальный платёж"
6180
 
6181
+ #: includes/class-payment.php:126
6182
  #, fuzzy
6183
  msgctxt "payment"
6184
  msgid "Renewal payment (\"%s\")"
6185
  msgstr "Отказать в платеже"
6186
 
6187
+ #: includes/class-payment.php:313
6188
  #, fuzzy
6189
  msgctxt "payment"
6190
  msgid "Pending"
6191
  msgstr "Ожидается"
6192
 
6193
+ #: includes/class-payment.php:314
6194
  msgctxt "payment"
6195
  msgid "Failed"
6196
  msgstr ""
6197
 
6198
+ #: includes/class-payment.php:315
6199
  #, fuzzy
6200
  msgctxt "payment"
6201
  msgid "Completed"
6202
  msgstr "Завершено"
6203
 
6204
+ #: includes/class-payment.php:316
6205
  #, fuzzy
6206
  msgctxt "payment"
6207
  msgid "Canceled"
6208
  msgstr "Отменено"
6209
 
6210
+ #: includes/class-payment.php:317
6211
  msgctxt "payment"
6212
  msgid "On Hold"
6213
  msgstr ""
6214
 
6215
+ #: includes/class-payment.php:318
6216
  msgctxt "payment"
6217
  msgid "Refunded"
6218
  msgstr ""
6219
 
6220
+ #: includes/class-payment.php:138
6221
  msgctxt "payment summary"
6222
  msgid "%s. Admin Posted."
6223
  msgstr ""
6224
 
6225
+ #: includes/class-payment.php:140
6226
  #, fuzzy
6227
  msgctxt "payment summary"
6228
  msgid "%s. Imported Listing."
6229
  msgstr "Импортировать записи"
6230
 
6231
+ #: includes/class-payment.php:218
6232
  msgctxt "submit listing"
6233
  msgid "Listing submitted by admin. Payment skipped."
6234
  msgstr ""
6293
  msgid "You're logged in as admin, payment will be skipped."
6294
  msgstr "Вы вошли на сайт как Администратор. Все шаги оплаты будут пропущены."
6295
 
6296
+ #: includes/views/submit_listing.php:388
6297
  #, fuzzy
6298
  msgctxt "submit listing"
6299
  msgid "Category selection"
6300
  msgstr "Выбор рубрики"
6301
 
6302
+ #: includes/views/submit_listing.php:388
6303
  #, fuzzy
6304
  msgctxt "submit listing"
6305
  msgid "Category & plan selection"
6306
  msgstr "Выбор рубрики"
6307
 
6308
+ #: includes/views/submit_listing.php:393
6309
  #, fuzzy
6310
  msgctxt "submit listing"
6311
  msgid "Listing Information"
6312
  msgstr "Информация о бизнесе"
6313
 
6314
+ #: includes/views/submit_listing.php:398
6315
  #, fuzzy
6316
  msgctxt "submit listing"
6317
  msgid "Listing Images"
6318
  msgstr "Изображение записи"
6319
 
6320
+ #: includes/views/submit_listing.php:406
6321
  msgctxt "submit listing"
6322
  msgid "Account Creation"
6323
  msgstr ""
6324
 
6325
+ #: includes/views/submit_listing.php:412
6326
  #, fuzzy
6327
  msgctxt "submit listing"
6328
  msgid "Terms and Conditions"
6329
  msgstr "Условия и положения"
6330
 
6331
+ #: includes/views/submit_listing.php:449
6332
  msgctxt "submit listing"
6333
  msgid "(Please choose a fee plan above)"
6334
  msgstr ""
6335
 
6336
+ #: includes/views/submit_listing.php:499
6337
  #, fuzzy
6338
  msgctxt "submit listing"
6339
  msgid "Can not submit a listing at this moment. Please try again later."
6341
  "В настоящее время вы не можем провести Вашу оплату. Попробуйте позже "
6342
  "пожалуйста."
6343
 
6344
+ #: includes/views/submit_listing.php:527
6345
  #, fuzzy
6346
  msgctxt "submit listing"
6347
  msgid "Please select a category."
6348
  msgstr "Пожалуйста выберите тариф для рубрики \"%s\"."
6349
 
6350
+ #: includes/views/submit_listing.php:540
6351
  #, fuzzy
6352
  msgctxt "submit listing"
6353
  msgid "Please select a category for your listing."
6354
  msgstr "Пожалуйста выберите тариф для рубрики \"%s\"."
6355
 
6356
+ #: includes/views/submit_listing.php:560
6357
  msgctxt "submit listing"
6358
  msgid "Please choose a valid category for your plan."
6359
  msgstr ""
6360
 
6361
+ #: includes/views/submit_listing.php:562
6362
  #, fuzzy
6363
  msgctxt "submit listing"
6364
  msgid "Please choose a valid fee plan for your category selection."
6365
  msgstr "Пожалуйста выберите тариф для рубрики \"%s\"."
6366
 
6367
+ #: includes/views/submit_listing.php:803
6368
  #, fuzzy
6369
  msgctxt "submit listing"
6370
  msgid "Please enter your desired username."
6371
  msgstr "Пожалуйста введите Ваше имя."
6372
 
6373
+ #: includes/views/submit_listing.php:808
6374
  #, fuzzy
6375
  msgctxt "submit listing"
6376
  msgid "Please enter the e-mail for your new account."
6377
  msgstr "Пожалуйста введите Ваше имя."
6378
 
6379
+ #: includes/views/submit_listing.php:813
6380
  msgctxt "submit listing"
6381
  msgid "Please enter the password for your new account."
6382
  msgstr ""
6383
 
6384
+ #: includes/views/submit_listing.php:823
6385
  msgctxt "submit listing"
6386
  msgid "The username you chose is already in use. Please use a different one."
6387
  msgstr ""
6388
 
6389
+ #: includes/views/submit_listing.php:828
6390
  msgctxt "submit listing"
6391
  msgid "The e-mail address you chose for your account is already in use."
6392
  msgstr ""
6393
 
6394
+ #: includes/views/submit_listing.php:843
6395
  msgctxt "submit listing"
6396
  msgid "Create a user account on this site"
6397
  msgstr ""
6398
 
6399
+ #: includes/views/submit_listing.php:850
6400
  msgctxt "submit listing"
6401
  msgid ""
6402
  "You need to create an account on the site. Please fill out the form below."
6403
  msgstr ""
6404
 
6405
+ #: includes/views/submit_listing.php:856
6406
  msgctxt "submit listing"
6407
  msgid "Username:"
6408
  msgstr ""
6409
 
6410
+ #: includes/views/submit_listing.php:865
6411
  #, fuzzy
6412
  msgctxt "submit listing"
6413
  msgid "Email:"
6414
  msgstr "Адрес: %s"
6415
 
6416
+ #: includes/views/submit_listing.php:874
6417
  msgctxt "submit listing"
6418
  msgid "Password:"
6419
  msgstr ""
6570
  msgstr "Имя на сайте Twitter"
6571
 
6572
  #: includes/fields/class-fieldtypes-social.php:95
6573
+ #: includes/fields/class-fieldtypes-url.php:149
6574
  msgctxt "form-fields api"
6575
  msgid "URL:"
6576
  msgstr "Ссылка:"
6577
 
6578
+ #: includes/fields/class-fieldtypes-social.php:115
6579
  #, fuzzy
6580
  msgctxt "form-fields api"
6581
  msgid "Text:"
6582
  msgstr "Текстовый блок"
6583
 
6584
+ #: includes/fields/class-fieldtypes-social.php:122
6585
  msgctxt "form-fields api"
6586
+ msgid "Text to be displayed for social field"
6587
  msgstr ""
6588
 
6589
+ #: includes/fields/class-fieldtypes-social.php:140
6590
  #, fuzzy
6591
  msgctxt "form-fields api"
6592
  msgid "Type:"
6612
  msgid "Social Site (Twitter handle)"
6613
  msgstr "Имя на сайте Twitter"
6614
 
6615
+ #: includes/fields/class-fieldtypes-url.php:18
6616
  msgctxt "form-fields api"
6617
  msgid "URL Field"
6618
  msgstr "Поле адреса URL"
6619
 
6620
+ #: includes/fields/class-fieldtypes-url.php:157
6621
  msgctxt "form-fields api"
6622
  msgid "Link Text (optional):"
6623
  msgstr "Текст ссылки (не обязательно)"
6688
  msgstr "Страна обязательна."
6689
 
6690
  #: includes/fields/class-fieldtypes-image.php:100
6691
+ #: includes/fields/class-fieldtypes-social.php:175
6692
  msgctxt "form-fields-api"
6693
  msgid "Remove"
6694
  msgstr "Удалить"
6881
  msgid "Caption for %s is required."
6882
  msgstr "Страна обязательна."
6883
 
6884
+ #: includes/functions.php:1259
6885
  #, fuzzy
6886
  msgctxt "templates"
6887
  msgid "Return to results"
6888
  msgstr "Вернуться к справочнику"
6889
 
6890
+ #: includes/functions.php:1263 includes/functions.php:1268
6891
  msgctxt "templates"
6892
  msgid "Go back"
6893
  msgstr ""
6894
 
6895
+ #: includes/payment.php:277 templates/renew-resume.tpl.php:39
6896
  #, fuzzy
6897
  msgctxt "templates"
6898
  msgid "Return to fee selection"
6955
  "показаны посетителям сайта. Если Вы хотите изменить такое поведение, "
6956
  "перейдите в <a>Настройки</a> и отключите этот параметр."
6957
 
6958
+ #: includes/views/submit_listing.php:335
6959
  msgctxt "templates"
6960
  msgid ""
6961
  "<b>View not available</b>. Do you have the \"Disable Frontend Listing "
6962
  "Submission?\" setting checked?"
6963
  msgstr ""
6964
 
6965
+ #: includes/views/submit_listing.php:337
6966
  msgctxt "templates"
6967
  msgid ""
6968
  "Listing submission has been disabled. Contact the administrator for details."
6969
  msgstr ""
6970
 
6971
+ #: includes/views/submit_listing.php:502
6972
  msgctxt "templates"
6973
  msgid ""
6974
  "Listing submission is not available at the moment. Contact the administrator "
6975
  "for details."
6976
  msgstr ""
6977
 
6978
+ #: includes/views/submit_listing.php:505
6979
  msgctxt "templates"
6980
  msgid ""
6981
  "<b>View not available</b>, there is no \"Category\" association field. %s "
6983
  "an existing field"
6984
  msgstr ""
6985
 
6986
+ #: includes/views/submit_listing.php:912
6987
  msgctxt "templates"
6988
  msgid "Please agree to the Terms and Conditions."
6989
  msgstr "Пожалуйста примите наши Условия и Положения."
6990
 
6991
+ #: includes/views/submit_listing.php:920
6992
  msgctxt "templates"
6993
  msgid "Terms and Conditions:"
6994
  msgstr "Условия и Положения:"
6995
 
6996
+ #: includes/views/submit_listing.php:929
6997
  #, fuzzy
6998
  msgctxt "templates"
6999
  msgid "I agree to the <a>Terms and Conditions</a>"
7210
  msgid "Your listing has been submitted."
7211
  msgstr "Ваша запись принята на сервер."
7212
 
7213
+ #: templates/submit-listing-done.tpl.php:14
7214
  msgctxt "templates"
7215
  msgid "Your listing changes were saved."
7216
  msgstr "Изменения в Вашей записи были сохранены."
7217
 
7218
+ #: templates/submit-listing-done.tpl.php:19
7219
  msgctxt "templates"
7220
  msgid "Go to your listing"
7221
  msgstr "Перейти к Вашей записи"
7222
 
7223
+ #: templates/submit-listing-done.tpl.php:21
7224
  msgctxt "templates"
7225
  msgid ""
7226
  "Your listing requires admin approval. You'll be notified once your listing "
7227
  "is approved."
7228
  msgstr ""
7229
 
7230
+ #: templates/submit-listing-done.tpl.php:25
7231
  msgctxt "templates"
7232
  msgid "Return to directory."
7233
  msgstr "Вернуться в справочник."
7739
  msgid "Bill To:"
7740
  msgstr ""
7741
 
7742
+ #: includes/payment.php:96
7743
  msgctxt "checkout"
7744
  msgid "Print Receipt"
7745
  msgstr ""
7986
  msgid "Your payment is awaiting verification by the gateway."
7987
  msgstr ""
7988
 
7989
+ #: templates/checkout-confirmation.tpl.php:20
7990
  msgctxt "checkout"
7991
  msgid ""
7992
  "Verification usually takes some minutes. This page will automatically "
8094
  msgid "Error while uploading file"
8095
  msgstr "Ошибка при загрузке файла"
8096
 
8097
+ #: includes/views/delete_listing.php:38
8098
  msgctxt "delete listing"
8099
  msgid "Your listing has been deleted."
8100
  msgstr "Запись была удалена."
8417
  msgid "This is just a preview. The listing has not been published yet."
8418
  msgstr "Это просто предварительный просмотр. Запись ещё не была опубликована."
8419
 
8420
+ #: includes/views/submit_listing.php:671
8421
  msgctxt "listing submit"
8422
  msgid ""
8423
  "Something went wrong. Please check the form for errors, correct them and "
8424
  "submit again."
8425
  msgstr ""
8426
 
8427
+ #: includes/views/submit_listing.php:755
8428
  msgctxt "listing submit"
8429
  msgid ""
8430
  "Image upload is required, please provide at least one image and submit again."
languages/WPBDM-sv_SE.mo CHANGED
Binary file
languages/WPBDM-sv_SE.po CHANGED
@@ -5,7 +5,7 @@ msgstr ""
5
  "Project-Id-Version: Business Directory Plugin v5.5\n"
6
  "Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/business-"
7
  "directory-plugin\n"
8
- "POT-Creation-Date: 2019-03-20 00:09:46+00:00\n"
9
  "PO-Revision-Date: 2017-12-03 21:20+0100\n"
10
  "Last-Translator: \n"
11
  "Language-Team: \n"
@@ -1170,7 +1170,7 @@ msgstr ""
1170
  "Du kan skapa dessa anpassade fält själv i \"Hantera formulärfält\" eller "
1171
  "låta Business Directory göra det åt dig automatiskt."
1172
 
1173
- #: includes/admin/form-fields.php:214 includes/views/submit_listing.php:516
1174
  msgctxt "admin"
1175
  msgid "Go to \"Manage Form Fields\""
1176
  msgstr "Gå till \"Hantera formulärfält\""
@@ -1180,12 +1180,12 @@ msgctxt "admin"
1180
  msgid "Create these required fields for me"
1181
  msgstr "Skapa dessa obligatoriska fält för mig"
1182
 
1183
- #: includes/payment.php:181
1184
  msgctxt "admin"
1185
  msgid "Pending Abandonment"
1186
  msgstr "Väntar på att överges"
1187
 
1188
- #: includes/payment.php:186
1189
  msgctxt "admin"
1190
  msgid "Abandoned"
1191
  msgstr "Övergiven"
@@ -1201,47 +1201,47 @@ msgctxt "listing status"
1201
  msgid "Reported"
1202
  msgstr ""
1203
 
1204
- #: includes/class-listing.php:768
1205
  msgctxt "listing status"
1206
  msgid "Unknown"
1207
  msgstr "Okänd"
1208
 
1209
- #: includes/class-listing.php:769
1210
  msgctxt "listing status"
1211
  msgid "Legacy"
1212
  msgstr "Legat"
1213
 
1214
- #: includes/class-listing.php:770
1215
  msgctxt "listing status"
1216
  msgid "Incomplete"
1217
  msgstr "Ofullständig"
1218
 
1219
- #: includes/class-listing.php:771
1220
  msgctxt "listing status"
1221
  msgid "Pending Payment"
1222
  msgstr "Väntar på betalning."
1223
 
1224
- #: includes/class-listing.php:772
1225
  msgctxt "listing status"
1226
  msgid "Complete"
1227
  msgstr "Genomförd"
1228
 
1229
- #: includes/class-listing.php:773
1230
  msgctxt "listing status"
1231
  msgid "Pending Upgrade"
1232
  msgstr "Väntar på uppgradering"
1233
 
1234
- #: includes/class-listing.php:774
1235
  msgctxt "listing status"
1236
  msgid "Expired"
1237
  msgstr "Utgången"
1238
 
1239
- #: includes/class-listing.php:775
1240
  msgctxt "listing status"
1241
  msgid "Pending Renewal"
1242
  msgstr "Inväntar förnyelse"
1243
 
1244
- #: includes/class-listing.php:776
1245
  msgctxt "listing status"
1246
  msgid "Abandoned"
1247
  msgstr "Övergiven"
@@ -1872,22 +1872,22 @@ msgctxt "themes"
1872
  msgid "Theme was updated successfully."
1873
  msgstr "Temat har uppdaterats."
1874
 
1875
- #: includes/themes.php:825
1876
  msgctxt "themes"
1877
  msgid "ZIP file is not a valid BD theme file."
1878
  msgstr "ZIP-filen är inte en giltig BD temafil."
1879
 
1880
- #: includes/themes.php:831
1881
  msgctxt "themes"
1882
  msgid "Could not create themes directory."
1883
  msgstr "Det gick inte att skapa temakatalogen."
1884
 
1885
- #: includes/themes.php:839
1886
  msgctxt "themes"
1887
  msgid "Could not remove previous theme directory \"%s\"."
1888
  msgstr "Det gick inte att ta bort tidigare temakatalogen \"%s\"."
1889
 
1890
- #: includes/themes.php:845
1891
  msgctxt "themes"
1892
  msgid "Could not move new theme into theme directory."
1893
  msgstr "Det gick inte att flytta det nya temat till temakatalogen."
@@ -2847,12 +2847,12 @@ msgctxt "form-fields admin"
2847
  msgid "Automatically generate excerpt from content field?"
2848
  msgstr "Generera utdrag automatiskt från innehållsfältet?"
2849
 
2850
- #: includes/fields/class-fieldtypes-url.php:23
2851
  msgctxt "form-fields admin"
2852
  msgid "Open link in a new window?"
2853
  msgstr "Öppna länk i ny flik/fönster?"
2854
 
2855
- #: includes/fields/class-fieldtypes-url.php:26
2856
  msgctxt "form-fields admin"
2857
  msgid "Use rel=\"nofollow\" when displaying the link?"
2858
  msgstr "Använd rel = \"nofollow\" vid visning av länken?"
@@ -3546,13 +3546,13 @@ msgid "Author"
3546
  msgstr "Författare"
3547
 
3548
  #: includes/admin/settings/class-settings-bootstrap.php:682
3549
- #: includes/functions.php:1179
3550
  msgctxt "admin settings"
3551
  msgid "Date posted"
3552
  msgstr "Datum inlagd"
3553
 
3554
  #: includes/admin/settings/class-settings-bootstrap.php:683
3555
- #: includes/functions.php:1180
3556
  msgctxt "admin settings"
3557
  msgid "Date last modified"
3558
  msgstr "Senast ändrad"
@@ -3948,12 +3948,12 @@ msgstr ""
3948
  "Det gick inte att kopiera AJAX kompatibilitetsplugin \"%s\". "
3949
  "Kompatibilitetsläge aktiverades inte."
3950
 
3951
- #: includes/functions.php:1177
3952
  msgctxt "admin settings"
3953
  msgid "User"
3954
  msgstr "Användare"
3955
 
3956
- #: includes/functions.php:1178
3957
  msgctxt "admin settings"
3958
  msgid "User registration date"
3959
  msgstr "Användarens registreringsdatum"
@@ -5622,35 +5622,35 @@ msgctxt "listing"
5622
  msgid "Add New Listing"
5623
  msgstr "Lägg till ny annons"
5624
 
5625
- #: includes/class-listing.php:302
5626
  #, fuzzy
5627
  msgctxt "listing"
5628
  msgid "Listing has no registered payments"
5629
  msgstr "Utgångsdatum för annons"
5630
 
5631
- #: includes/class-listing.php:310
5632
  #, fuzzy
5633
  msgctxt "listing"
5634
  msgid "Can't delete payment"
5635
  msgstr "Ta bort betalning"
5636
 
5637
- #: includes/class-listing.php:349
5638
  msgctxt "listing"
5639
  msgid "Listing expired"
5640
  msgstr "Annonsen förfallit."
5641
 
5642
- #: includes/class-listing.php:508
5643
  msgctxt "listing"
5644
  msgid "(Unavailable Plan)"
5645
  msgstr "(Avgiftsplan inte tillgänglig)"
5646
 
5647
- #: includes/class-listing.php:665
5648
  #, fuzzy
5649
  msgctxt "listing"
5650
  msgid "Plan \"%s\" (recurring)"
5651
  msgstr "(återkommande)"
5652
 
5653
- #: includes/class-listing.php:667
5654
  msgctxt "listing"
5655
  msgid "Plan \"%s\""
5656
  msgstr "Plan ”%s”"
@@ -5899,63 +5899,64 @@ msgstr ""
5899
  "att ändra betalningsinställningarna. Innan du ändrat detta kommer katalogen "
5900
  "fungera <i>i gratisläget</i>."
5901
 
5902
- #: includes/class-payment.php:65
 
5903
  msgctxt "payment"
5904
- msgid "Payment status changed from \"%s\" to \"%s\"."
5905
  msgstr "Betalningsstatusen ändrad från '%s' till '%s'."
5906
 
5907
- #: includes/class-payment.php:98
5908
  msgctxt "payment"
5909
  msgid "Initial payment (\"%s\")"
5910
  msgstr "Första betalning (\"%s)"
5911
 
5912
- #: includes/class-payment.php:101
5913
  msgctxt "payment"
5914
  msgid "Renewal payment (\"%s\")"
5915
  msgstr "Förnyelsebetalning (\"%s\")"
5916
 
5917
- #: includes/class-payment.php:266
5918
  msgctxt "payment"
5919
  msgid "Pending"
5920
  msgstr "Avvaktande"
5921
 
5922
- #: includes/class-payment.php:267
5923
  msgctxt "payment"
5924
  msgid "Failed"
5925
  msgstr "Misslyckades"
5926
 
5927
- #: includes/class-payment.php:268
5928
  msgctxt "payment"
5929
  msgid "Completed"
5930
  msgstr "Genomförd"
5931
 
5932
- #: includes/class-payment.php:269
5933
  msgctxt "payment"
5934
  msgid "Canceled"
5935
  msgstr "Avbruten"
5936
 
5937
- #: includes/class-payment.php:270
5938
  msgctxt "payment"
5939
  msgid "On Hold"
5940
  msgstr "Väntande"
5941
 
5942
- #: includes/class-payment.php:271
5943
  msgctxt "payment"
5944
  msgid "Refunded"
5945
  msgstr "Återbetalad"
5946
 
5947
- #: includes/class-payment.php:113
5948
  msgctxt "payment summary"
5949
  msgid "%s. Admin Posted."
5950
  msgstr "%s. Admin postat."
5951
 
5952
- #: includes/class-payment.php:115
5953
  #, fuzzy
5954
  msgctxt "payment summary"
5955
  msgid "%s. Imported Listing."
5956
  msgstr "Importera annonser"
5957
 
5958
- #: includes/class-payment.php:188
5959
  msgctxt "submit listing"
5960
  msgid "Listing submitted by admin. Payment skipped."
5961
  msgstr "Notering skickas in av admin. Betalning hoppas över."
@@ -6023,97 +6024,97 @@ msgctxt "submit listing"
6023
  msgid "You're logged in as admin, payment will be skipped."
6024
  msgstr "Du är inloggad som administratör, alla betalningssteg hoppas över."
6025
 
6026
- #: includes/views/submit_listing.php:392
6027
  msgctxt "submit listing"
6028
  msgid "Category selection"
6029
  msgstr "Val av kategori"
6030
 
6031
- #: includes/views/submit_listing.php:392
6032
  msgctxt "submit listing"
6033
  msgid "Category & plan selection"
6034
  msgstr "Val av kategori och avgiftsplan"
6035
 
6036
- #: includes/views/submit_listing.php:397
6037
  msgctxt "submit listing"
6038
  msgid "Listing Information"
6039
  msgstr "Information om annons"
6040
 
6041
- #: includes/views/submit_listing.php:402
6042
  msgctxt "submit listing"
6043
  msgid "Listing Images"
6044
  msgstr "Annonsbilder"
6045
 
6046
- #: includes/views/submit_listing.php:410
6047
  msgctxt "submit listing"
6048
  msgid "Account Creation"
6049
  msgstr "Konto skapas"
6050
 
6051
- #: includes/views/submit_listing.php:416
6052
  msgctxt "submit listing"
6053
  msgid "Terms and Conditions"
6054
  msgstr "Villkor"
6055
 
6056
- #: includes/views/submit_listing.php:453
6057
  msgctxt "submit listing"
6058
  msgid "(Please choose a fee plan above)"
6059
  msgstr "(Vänligen välj en avgiftsplan ovan)"
6060
 
6061
- #: includes/views/submit_listing.php:503
6062
  msgctxt "submit listing"
6063
  msgid "Can not submit a listing at this moment. Please try again later."
6064
  msgstr "Det går inte att registrera en annons just nu. Försök igen senare."
6065
 
6066
- #: includes/views/submit_listing.php:531
6067
  msgctxt "submit listing"
6068
  msgid "Please select a category."
6069
  msgstr "Välj en kategori."
6070
 
6071
- #: includes/views/submit_listing.php:544
6072
  msgctxt "submit listing"
6073
  msgid "Please select a category for your listing."
6074
  msgstr "Välj en kategori för din annons."
6075
 
6076
- #: includes/views/submit_listing.php:564
6077
  msgctxt "submit listing"
6078
  msgid "Please choose a valid category for your plan."
6079
  msgstr "Välj en giltig kategori för din plan."
6080
 
6081
- #: includes/views/submit_listing.php:566
6082
  msgctxt "submit listing"
6083
  msgid "Please choose a valid fee plan for your category selection."
6084
  msgstr "Välj en avgiftsplan för ditt kategorival."
6085
 
6086
- #: includes/views/submit_listing.php:807
6087
  msgctxt "submit listing"
6088
  msgid "Please enter your desired username."
6089
  msgstr "Fyll i ditt önskade användarnamn."
6090
 
6091
- #: includes/views/submit_listing.php:812
6092
  msgctxt "submit listing"
6093
  msgid "Please enter the e-mail for your new account."
6094
  msgstr "Fyll i e-postadressen för ditt nya konto."
6095
 
6096
- #: includes/views/submit_listing.php:817
6097
  msgctxt "submit listing"
6098
  msgid "Please enter the password for your new account."
6099
  msgstr "Ange lösenordet för ditt nya konto."
6100
 
6101
- #: includes/views/submit_listing.php:827
6102
  msgctxt "submit listing"
6103
  msgid "The username you chose is already in use. Please use a different one."
6104
  msgstr "Användarnamnet upptaget, var vänlig försök med ett annat."
6105
 
6106
- #: includes/views/submit_listing.php:832
6107
  msgctxt "submit listing"
6108
  msgid "The e-mail address you chose for your account is already in use."
6109
  msgstr "E-postadressen du valt för ditt konto används redan."
6110
 
6111
- #: includes/views/submit_listing.php:847
6112
  msgctxt "submit listing"
6113
  msgid "Create a user account on this site"
6114
  msgstr "Skapa ett användarkonto på denna webbplats"
6115
 
6116
- #: includes/views/submit_listing.php:854
6117
  msgctxt "submit listing"
6118
  msgid ""
6119
  "You need to create an account on the site. Please fill out the form below."
@@ -6121,17 +6122,17 @@ msgstr ""
6121
  "Du måste skapa ett konto för denna webbplatsen. Vänligen fyll i formuläret "
6122
  "nedan."
6123
 
6124
- #: includes/views/submit_listing.php:860
6125
  msgctxt "submit listing"
6126
  msgid "Username:"
6127
  msgstr "Användarnamn:"
6128
 
6129
- #: includes/views/submit_listing.php:869
6130
  msgctxt "submit listing"
6131
  msgid "Email:"
6132
  msgstr "E-postadress:"
6133
 
6134
- #: includes/views/submit_listing.php:878
6135
  msgctxt "submit listing"
6136
  msgid "Password:"
6137
  msgstr "Lösenord:"
@@ -6285,23 +6286,23 @@ msgid "Social Site (Other)"
6285
  msgstr "Social Site (Twitter)"
6286
 
6287
  #: includes/fields/class-fieldtypes-social.php:95
6288
- #: includes/fields/class-fieldtypes-url.php:136
6289
  msgctxt "form-fields api"
6290
  msgid "URL:"
6291
  msgstr "URL:"
6292
 
6293
- #: includes/fields/class-fieldtypes-social.php:108
6294
  #, fuzzy
6295
  msgctxt "form-fields api"
6296
  msgid "Text:"
6297
  msgstr "Textruta"
6298
 
6299
- #: includes/fields/class-fieldtypes-social.php:114
6300
  msgctxt "form-fields api"
6301
- msgid "Text to be displayed along with icon"
6302
  msgstr ""
6303
 
6304
- #: includes/fields/class-fieldtypes-social.php:121
6305
  #, fuzzy
6306
  msgctxt "form-fields api"
6307
  msgid "Type:"
@@ -6327,12 +6328,12 @@ msgctxt "form-fields api"
6327
  msgid "Social Site (Twitter handle)"
6328
  msgstr "Social Site (Twitter)"
6329
 
6330
- #: includes/fields/class-fieldtypes-url.php:5
6331
  msgctxt "form-fields api"
6332
  msgid "URL Field"
6333
  msgstr "URL-fält:"
6334
 
6335
- #: includes/fields/class-fieldtypes-url.php:144
6336
  msgctxt "form-fields api"
6337
  msgid "Link Text (optional):"
6338
  msgstr "Länktext (valfritt):"
@@ -6404,7 +6405,7 @@ msgid "Caption for %s is required."
6404
  msgstr "Land krävs."
6405
 
6406
  #: includes/fields/class-fieldtypes-image.php:100
6407
- #: includes/fields/class-fieldtypes-social.php:156
6408
  msgctxt "form-fields-api"
6409
  msgid "Remove"
6410
  msgstr "Ta bort"
@@ -6601,19 +6602,19 @@ msgctxt "image field"
6601
  msgid "Caption for %s is required."
6602
  msgstr "Land krävs."
6603
 
6604
- #: includes/functions.php:1257
6605
  #, fuzzy
6606
  msgctxt "templates"
6607
  msgid "Return to results"
6608
  msgstr "Återgå till katalogen"
6609
 
6610
- #: includes/functions.php:1261 includes/functions.php:1266
6611
  #, fuzzy
6612
  msgctxt "templates"
6613
  msgid "Go back"
6614
  msgstr "Nej, gå tillbaka"
6615
 
6616
- #: includes/payment.php:278 templates/renew-resume.tpl.php:39
6617
  #, fuzzy
6618
  msgctxt "templates"
6619
  msgid "Return to fee selection"
@@ -6676,7 +6677,7 @@ msgstr ""
6676
  "av din webbplats. Om du inte vill det, klicka <a>här för</a> att ändra "
6677
  "inställningen."
6678
 
6679
- #: includes/views/submit_listing.php:339
6680
  msgctxt "templates"
6681
  msgid ""
6682
  "<b>View not available</b>. Do you have the \"Disable Frontend Listing "
@@ -6685,20 +6686,20 @@ msgstr ""
6685
  "<b>Vyn inte tillgänglig.</b> Har du \"Inaktivera inlämning av annons på "
6686
  "framsidan?\"-inställningen markerad?"
6687
 
6688
- #: includes/views/submit_listing.php:341
6689
  msgctxt "templates"
6690
  msgid ""
6691
  "Listing submission has been disabled. Contact the administrator for details."
6692
  msgstr ""
6693
 
6694
- #: includes/views/submit_listing.php:506
6695
  msgctxt "templates"
6696
  msgid ""
6697
  "Listing submission is not available at the moment. Contact the administrator "
6698
  "for details."
6699
  msgstr ""
6700
 
6701
- #: includes/views/submit_listing.php:509
6702
  msgctxt "templates"
6703
  msgid ""
6704
  "<b>View not available</b>, there is no \"Category\" association field. %s "
@@ -6706,17 +6707,17 @@ msgid ""
6706
  "an existing field"
6707
  msgstr ""
6708
 
6709
- #: includes/views/submit_listing.php:916
6710
  msgctxt "templates"
6711
  msgid "Please agree to the Terms and Conditions."
6712
  msgstr "Vänligen godkänn villkoren"
6713
 
6714
- #: includes/views/submit_listing.php:924
6715
  msgctxt "templates"
6716
  msgid "Terms and Conditions:"
6717
  msgstr "Villkor"
6718
 
6719
- #: includes/views/submit_listing.php:933
6720
  msgctxt "templates"
6721
  msgid "I agree to the <a>Terms and Conditions</a>"
6722
  msgstr "Jag godtar <a>villkoren</a>."
@@ -6930,17 +6931,17 @@ msgctxt "templates"
6930
  msgid "Your listing has been submitted."
6931
  msgstr "Din annons har skickats in."
6932
 
6933
- #: templates/submit-listing-done.tpl.php:11
6934
  msgctxt "templates"
6935
  msgid "Your listing changes were saved."
6936
  msgstr "Dina annonsändringar har sparats."
6937
 
6938
- #: templates/submit-listing-done.tpl.php:16
6939
  msgctxt "templates"
6940
  msgid "Go to your listing"
6941
  msgstr "Gå till din annons."
6942
 
6943
- #: templates/submit-listing-done.tpl.php:18
6944
  msgctxt "templates"
6945
  msgid ""
6946
  "Your listing requires admin approval. You'll be notified once your listing "
@@ -6949,7 +6950,7 @@ msgstr ""
6949
  "Din listning kräver godkännande från administratören. Du meddelas när din "
6950
  "annons är godkänd."
6951
 
6952
- #: templates/submit-listing-done.tpl.php:22
6953
  msgctxt "templates"
6954
  msgid "Return to directory."
6955
  msgstr "Återgå till katalogen"
@@ -7485,7 +7486,7 @@ msgctxt "payments"
7485
  msgid "Bill To:"
7486
  msgstr "Fakturera till:"
7487
 
7488
- #: includes/payment.php:97
7489
  msgctxt "checkout"
7490
  msgid "Print Receipt"
7491
  msgstr "Skriv ut kvitto"
@@ -7708,7 +7709,7 @@ msgctxt "checkout"
7708
  msgid "Your payment is awaiting verification by the gateway."
7709
  msgstr "Din betalning är väntar på verifiering av gateway."
7710
 
7711
- #: templates/checkout-confirmation.tpl.php:19
7712
  msgctxt "checkout"
7713
  msgid ""
7714
  "Verification usually takes some minutes. This page will automatically "
@@ -7812,7 +7813,7 @@ msgctxt "utils"
7812
  msgid "Error while uploading file"
7813
  msgstr "Okänt fel uppstod när filen laddades upp."
7814
 
7815
- #: includes/views/delete_listing.php:32
7816
  msgctxt "delete listing"
7817
  msgid "Your listing has been deleted."
7818
  msgstr "Din annons har tagits bort."
@@ -8121,7 +8122,7 @@ msgid "This is just a preview. The listing has not been published yet."
8121
  msgstr ""
8122
  "Detta är enbart en förhandsgranskning, annonsen har inte publicerats ännu."
8123
 
8124
- #: includes/views/submit_listing.php:675
8125
  msgctxt "listing submit"
8126
  msgid ""
8127
  "Something went wrong. Please check the form for errors, correct them and "
@@ -8130,7 +8131,7 @@ msgstr ""
8130
  "Något gick fel. Vänligen kontrollera formuläret för fel, rätta till dem och "
8131
  "skicka igen."
8132
 
8133
- #: includes/views/submit_listing.php:759
8134
  msgctxt "listing submit"
8135
  msgid ""
8136
  "Image upload is required, please provide at least one image and submit again."
5
  "Project-Id-Version: Business Directory Plugin v5.5\n"
6
  "Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/business-"
7
  "directory-plugin\n"
8
+ "POT-Creation-Date: 2019-04-23 21:12:39+00:00\n"
9
  "PO-Revision-Date: 2017-12-03 21:20+0100\n"
10
  "Last-Translator: \n"
11
  "Language-Team: \n"
1170
  "Du kan skapa dessa anpassade fält själv i \"Hantera formulärfält\" eller "
1171
  "låta Business Directory göra det åt dig automatiskt."
1172
 
1173
+ #: includes/admin/form-fields.php:214 includes/views/submit_listing.php:512
1174
  msgctxt "admin"
1175
  msgid "Go to \"Manage Form Fields\""
1176
  msgstr "Gå till \"Hantera formulärfält\""
1180
  msgid "Create these required fields for me"
1181
  msgstr "Skapa dessa obligatoriska fält för mig"
1182
 
1183
+ #: includes/payment.php:180
1184
  msgctxt "admin"
1185
  msgid "Pending Abandonment"
1186
  msgstr "Väntar på att överges"
1187
 
1188
+ #: includes/payment.php:185
1189
  msgctxt "admin"
1190
  msgid "Abandoned"
1191
  msgstr "Övergiven"
1201
  msgid "Reported"
1202
  msgstr ""
1203
 
1204
+ #: includes/class-listing.php:771
1205
  msgctxt "listing status"
1206
  msgid "Unknown"
1207
  msgstr "Okänd"
1208
 
1209
+ #: includes/class-listing.php:772
1210
  msgctxt "listing status"
1211
  msgid "Legacy"
1212
  msgstr "Legat"
1213
 
1214
+ #: includes/class-listing.php:773
1215
  msgctxt "listing status"
1216
  msgid "Incomplete"
1217
  msgstr "Ofullständig"
1218
 
1219
+ #: includes/class-listing.php:774
1220
  msgctxt "listing status"
1221
  msgid "Pending Payment"
1222
  msgstr "Väntar på betalning."
1223
 
1224
+ #: includes/class-listing.php:775
1225
  msgctxt "listing status"
1226
  msgid "Complete"
1227
  msgstr "Genomförd"
1228
 
1229
+ #: includes/class-listing.php:776
1230
  msgctxt "listing status"
1231
  msgid "Pending Upgrade"
1232
  msgstr "Väntar på uppgradering"
1233
 
1234
+ #: includes/class-listing.php:777
1235
  msgctxt "listing status"
1236
  msgid "Expired"
1237
  msgstr "Utgången"
1238
 
1239
+ #: includes/class-listing.php:778
1240
  msgctxt "listing status"
1241
  msgid "Pending Renewal"
1242
  msgstr "Inväntar förnyelse"
1243
 
1244
+ #: includes/class-listing.php:779
1245
  msgctxt "listing status"
1246
  msgid "Abandoned"
1247
  msgstr "Övergiven"
1872
  msgid "Theme was updated successfully."
1873
  msgstr "Temat har uppdaterats."
1874
 
1875
+ #: includes/themes.php:829
1876
  msgctxt "themes"
1877
  msgid "ZIP file is not a valid BD theme file."
1878
  msgstr "ZIP-filen är inte en giltig BD temafil."
1879
 
1880
+ #: includes/themes.php:835
1881
  msgctxt "themes"
1882
  msgid "Could not create themes directory."
1883
  msgstr "Det gick inte att skapa temakatalogen."
1884
 
1885
+ #: includes/themes.php:843
1886
  msgctxt "themes"
1887
  msgid "Could not remove previous theme directory \"%s\"."
1888
  msgstr "Det gick inte att ta bort tidigare temakatalogen \"%s\"."
1889
 
1890
+ #: includes/themes.php:849
1891
  msgctxt "themes"
1892
  msgid "Could not move new theme into theme directory."
1893
  msgstr "Det gick inte att flytta det nya temat till temakatalogen."
2847
  msgid "Automatically generate excerpt from content field?"
2848
  msgstr "Generera utdrag automatiskt från innehållsfältet?"
2849
 
2850
+ #: includes/fields/class-fieldtypes-url.php:36
2851
  msgctxt "form-fields admin"
2852
  msgid "Open link in a new window?"
2853
  msgstr "Öppna länk i ny flik/fönster?"
2854
 
2855
+ #: includes/fields/class-fieldtypes-url.php:39
2856
  msgctxt "form-fields admin"
2857
  msgid "Use rel=\"nofollow\" when displaying the link?"
2858
  msgstr "Använd rel = \"nofollow\" vid visning av länken?"
3546
  msgstr "Författare"
3547
 
3548
  #: includes/admin/settings/class-settings-bootstrap.php:682
3549
+ #: includes/functions.php:1181
3550
  msgctxt "admin settings"
3551
  msgid "Date posted"
3552
  msgstr "Datum inlagd"
3553
 
3554
  #: includes/admin/settings/class-settings-bootstrap.php:683
3555
+ #: includes/functions.php:1182
3556
  msgctxt "admin settings"
3557
  msgid "Date last modified"
3558
  msgstr "Senast ändrad"
3948
  "Det gick inte att kopiera AJAX kompatibilitetsplugin \"%s\". "
3949
  "Kompatibilitetsläge aktiverades inte."
3950
 
3951
+ #: includes/functions.php:1179
3952
  msgctxt "admin settings"
3953
  msgid "User"
3954
  msgstr "Användare"
3955
 
3956
+ #: includes/functions.php:1180
3957
  msgctxt "admin settings"
3958
  msgid "User registration date"
3959
  msgstr "Användarens registreringsdatum"
5622
  msgid "Add New Listing"
5623
  msgstr "Lägg till ny annons"
5624
 
5625
+ #: includes/class-listing.php:305
5626
  #, fuzzy
5627
  msgctxt "listing"
5628
  msgid "Listing has no registered payments"
5629
  msgstr "Utgångsdatum för annons"
5630
 
5631
+ #: includes/class-listing.php:313
5632
  #, fuzzy
5633
  msgctxt "listing"
5634
  msgid "Can't delete payment"
5635
  msgstr "Ta bort betalning"
5636
 
5637
+ #: includes/class-listing.php:352
5638
  msgctxt "listing"
5639
  msgid "Listing expired"
5640
  msgstr "Annonsen förfallit."
5641
 
5642
+ #: includes/class-listing.php:511
5643
  msgctxt "listing"
5644
  msgid "(Unavailable Plan)"
5645
  msgstr "(Avgiftsplan inte tillgänglig)"
5646
 
5647
+ #: includes/class-listing.php:668
5648
  #, fuzzy
5649
  msgctxt "listing"
5650
  msgid "Plan \"%s\" (recurring)"
5651
  msgstr "(återkommande)"
5652
 
5653
+ #: includes/class-listing.php:670
5654
  msgctxt "listing"
5655
  msgid "Plan \"%s\""
5656
  msgstr "Plan ”%s”"
5899
  "att ändra betalningsinställningarna. Innan du ändrat detta kommer katalogen "
5900
  "fungera <i>i gratisläget</i>."
5901
 
5902
+ #: includes/class-payment.php:82
5903
+ #, fuzzy
5904
  msgctxt "payment"
5905
+ msgid "Payment status changed from \"%1$s\" to \"%2$s\"."
5906
  msgstr "Betalningsstatusen ändrad från '%s' till '%s'."
5907
 
5908
+ #: includes/class-payment.php:123
5909
  msgctxt "payment"
5910
  msgid "Initial payment (\"%s\")"
5911
  msgstr "Första betalning (\"%s)"
5912
 
5913
+ #: includes/class-payment.php:126
5914
  msgctxt "payment"
5915
  msgid "Renewal payment (\"%s\")"
5916
  msgstr "Förnyelsebetalning (\"%s\")"
5917
 
5918
+ #: includes/class-payment.php:313
5919
  msgctxt "payment"
5920
  msgid "Pending"
5921
  msgstr "Avvaktande"
5922
 
5923
+ #: includes/class-payment.php:314
5924
  msgctxt "payment"
5925
  msgid "Failed"
5926
  msgstr "Misslyckades"
5927
 
5928
+ #: includes/class-payment.php:315
5929
  msgctxt "payment"
5930
  msgid "Completed"
5931
  msgstr "Genomförd"
5932
 
5933
+ #: includes/class-payment.php:316
5934
  msgctxt "payment"
5935
  msgid "Canceled"
5936
  msgstr "Avbruten"
5937
 
5938
+ #: includes/class-payment.php:317
5939
  msgctxt "payment"
5940
  msgid "On Hold"
5941
  msgstr "Väntande"
5942
 
5943
+ #: includes/class-payment.php:318
5944
  msgctxt "payment"
5945
  msgid "Refunded"
5946
  msgstr "Återbetalad"
5947
 
5948
+ #: includes/class-payment.php:138
5949
  msgctxt "payment summary"
5950
  msgid "%s. Admin Posted."
5951
  msgstr "%s. Admin postat."
5952
 
5953
+ #: includes/class-payment.php:140
5954
  #, fuzzy
5955
  msgctxt "payment summary"
5956
  msgid "%s. Imported Listing."
5957
  msgstr "Importera annonser"
5958
 
5959
+ #: includes/class-payment.php:218
5960
  msgctxt "submit listing"
5961
  msgid "Listing submitted by admin. Payment skipped."
5962
  msgstr "Notering skickas in av admin. Betalning hoppas över."
6024
  msgid "You're logged in as admin, payment will be skipped."
6025
  msgstr "Du är inloggad som administratör, alla betalningssteg hoppas över."
6026
 
6027
+ #: includes/views/submit_listing.php:388
6028
  msgctxt "submit listing"
6029
  msgid "Category selection"
6030
  msgstr "Val av kategori"
6031
 
6032
+ #: includes/views/submit_listing.php:388
6033
  msgctxt "submit listing"
6034
  msgid "Category & plan selection"
6035
  msgstr "Val av kategori och avgiftsplan"
6036
 
6037
+ #: includes/views/submit_listing.php:393
6038
  msgctxt "submit listing"
6039
  msgid "Listing Information"
6040
  msgstr "Information om annons"
6041
 
6042
+ #: includes/views/submit_listing.php:398
6043
  msgctxt "submit listing"
6044
  msgid "Listing Images"
6045
  msgstr "Annonsbilder"
6046
 
6047
+ #: includes/views/submit_listing.php:406
6048
  msgctxt "submit listing"
6049
  msgid "Account Creation"
6050
  msgstr "Konto skapas"
6051
 
6052
+ #: includes/views/submit_listing.php:412
6053
  msgctxt "submit listing"
6054
  msgid "Terms and Conditions"
6055
  msgstr "Villkor"
6056
 
6057
+ #: includes/views/submit_listing.php:449
6058
  msgctxt "submit listing"
6059
  msgid "(Please choose a fee plan above)"
6060
  msgstr "(Vänligen välj en avgiftsplan ovan)"
6061
 
6062
+ #: includes/views/submit_listing.php:499
6063
  msgctxt "submit listing"
6064
  msgid "Can not submit a listing at this moment. Please try again later."
6065
  msgstr "Det går inte att registrera en annons just nu. Försök igen senare."
6066
 
6067
+ #: includes/views/submit_listing.php:527
6068
  msgctxt "submit listing"
6069
  msgid "Please select a category."
6070
  msgstr "Välj en kategori."
6071
 
6072
+ #: includes/views/submit_listing.php:540
6073
  msgctxt "submit listing"
6074
  msgid "Please select a category for your listing."
6075
  msgstr "Välj en kategori för din annons."
6076
 
6077
+ #: includes/views/submit_listing.php:560
6078
  msgctxt "submit listing"
6079
  msgid "Please choose a valid category for your plan."
6080
  msgstr "Välj en giltig kategori för din plan."
6081
 
6082
+ #: includes/views/submit_listing.php:562
6083
  msgctxt "submit listing"
6084
  msgid "Please choose a valid fee plan for your category selection."
6085
  msgstr "Välj en avgiftsplan för ditt kategorival."
6086
 
6087
+ #: includes/views/submit_listing.php:803
6088
  msgctxt "submit listing"
6089
  msgid "Please enter your desired username."
6090
  msgstr "Fyll i ditt önskade användarnamn."
6091
 
6092
+ #: includes/views/submit_listing.php:808
6093
  msgctxt "submit listing"
6094
  msgid "Please enter the e-mail for your new account."
6095
  msgstr "Fyll i e-postadressen för ditt nya konto."
6096
 
6097
+ #: includes/views/submit_listing.php:813
6098
  msgctxt "submit listing"
6099
  msgid "Please enter the password for your new account."
6100
  msgstr "Ange lösenordet för ditt nya konto."
6101
 
6102
+ #: includes/views/submit_listing.php:823
6103
  msgctxt "submit listing"
6104
  msgid "The username you chose is already in use. Please use a different one."
6105
  msgstr "Användarnamnet upptaget, var vänlig försök med ett annat."
6106
 
6107
+ #: includes/views/submit_listing.php:828
6108
  msgctxt "submit listing"
6109
  msgid "The e-mail address you chose for your account is already in use."
6110
  msgstr "E-postadressen du valt för ditt konto används redan."
6111
 
6112
+ #: includes/views/submit_listing.php:843
6113
  msgctxt "submit listing"
6114
  msgid "Create a user account on this site"
6115
  msgstr "Skapa ett användarkonto på denna webbplats"
6116
 
6117
+ #: includes/views/submit_listing.php:850
6118
  msgctxt "submit listing"
6119
  msgid ""
6120
  "You need to create an account on the site. Please fill out the form below."
6122
  "Du måste skapa ett konto för denna webbplatsen. Vänligen fyll i formuläret "
6123
  "nedan."
6124
 
6125
+ #: includes/views/submit_listing.php:856
6126
  msgctxt "submit listing"
6127
  msgid "Username:"
6128
  msgstr "Användarnamn:"
6129
 
6130
+ #: includes/views/submit_listing.php:865
6131
  msgctxt "submit listing"
6132
  msgid "Email:"
6133
  msgstr "E-postadress:"
6134
 
6135
+ #: includes/views/submit_listing.php:874
6136
  msgctxt "submit listing"
6137
  msgid "Password:"
6138
  msgstr "Lösenord:"
6286
  msgstr "Social Site (Twitter)"
6287
 
6288
  #: includes/fields/class-fieldtypes-social.php:95
6289
+ #: includes/fields/class-fieldtypes-url.php:149
6290
  msgctxt "form-fields api"
6291
  msgid "URL:"
6292
  msgstr "URL:"
6293
 
6294
+ #: includes/fields/class-fieldtypes-social.php:115
6295
  #, fuzzy
6296
  msgctxt "form-fields api"
6297
  msgid "Text:"
6298
  msgstr "Textruta"
6299
 
6300
+ #: includes/fields/class-fieldtypes-social.php:122
6301
  msgctxt "form-fields api"
6302
+ msgid "Text to be displayed for social field"
6303
  msgstr ""
6304
 
6305
+ #: includes/fields/class-fieldtypes-social.php:140
6306
  #, fuzzy
6307
  msgctxt "form-fields api"
6308
  msgid "Type:"
6328
  msgid "Social Site (Twitter handle)"
6329
  msgstr "Social Site (Twitter)"
6330
 
6331
+ #: includes/fields/class-fieldtypes-url.php:18
6332
  msgctxt "form-fields api"
6333
  msgid "URL Field"
6334
  msgstr "URL-fält:"
6335
 
6336
+ #: includes/fields/class-fieldtypes-url.php:157
6337
  msgctxt "form-fields api"
6338
  msgid "Link Text (optional):"
6339
  msgstr "Länktext (valfritt):"
6405
  msgstr "Land krävs."
6406
 
6407
  #: includes/fields/class-fieldtypes-image.php:100
6408
+ #: includes/fields/class-fieldtypes-social.php:175
6409
  msgctxt "form-fields-api"
6410
  msgid "Remove"
6411
  msgstr "Ta bort"
6602
  msgid "Caption for %s is required."
6603
  msgstr "Land krävs."
6604
 
6605
+ #: includes/functions.php:1259
6606
  #, fuzzy
6607
  msgctxt "templates"
6608
  msgid "Return to results"
6609
  msgstr "Återgå till katalogen"
6610
 
6611
+ #: includes/functions.php:1263 includes/functions.php:1268
6612
  #, fuzzy
6613
  msgctxt "templates"
6614
  msgid "Go back"
6615
  msgstr "Nej, gå tillbaka"
6616
 
6617
+ #: includes/payment.php:277 templates/renew-resume.tpl.php:39
6618
  #, fuzzy
6619
  msgctxt "templates"
6620
  msgid "Return to fee selection"
6677
  "av din webbplats. Om du inte vill det, klicka <a>här för</a> att ändra "
6678
  "inställningen."
6679
 
6680
+ #: includes/views/submit_listing.php:335
6681
  msgctxt "templates"
6682
  msgid ""
6683
  "<b>View not available</b>. Do you have the \"Disable Frontend Listing "
6686
  "<b>Vyn inte tillgänglig.</b> Har du \"Inaktivera inlämning av annons på "
6687
  "framsidan?\"-inställningen markerad?"
6688
 
6689
+ #: includes/views/submit_listing.php:337
6690
  msgctxt "templates"
6691
  msgid ""
6692
  "Listing submission has been disabled. Contact the administrator for details."
6693
  msgstr ""
6694
 
6695
+ #: includes/views/submit_listing.php:502
6696
  msgctxt "templates"
6697
  msgid ""
6698
  "Listing submission is not available at the moment. Contact the administrator "
6699
  "for details."
6700
  msgstr ""
6701
 
6702
+ #: includes/views/submit_listing.php:505
6703
  msgctxt "templates"
6704
  msgid ""
6705
  "<b>View not available</b>, there is no \"Category\" association field. %s "
6707
  "an existing field"
6708
  msgstr ""
6709
 
6710
+ #: includes/views/submit_listing.php:912
6711
  msgctxt "templates"
6712
  msgid "Please agree to the Terms and Conditions."
6713
  msgstr "Vänligen godkänn villkoren"
6714
 
6715
+ #: includes/views/submit_listing.php:920
6716
  msgctxt "templates"
6717
  msgid "Terms and Conditions:"
6718
  msgstr "Villkor"
6719
 
6720
+ #: includes/views/submit_listing.php:929
6721
  msgctxt "templates"
6722
  msgid "I agree to the <a>Terms and Conditions</a>"
6723
  msgstr "Jag godtar <a>villkoren</a>."
6931
  msgid "Your listing has been submitted."
6932
  msgstr "Din annons har skickats in."
6933
 
6934
+ #: templates/submit-listing-done.tpl.php:14
6935
  msgctxt "templates"
6936
  msgid "Your listing changes were saved."
6937
  msgstr "Dina annonsändringar har sparats."
6938
 
6939
+ #: templates/submit-listing-done.tpl.php:19
6940
  msgctxt "templates"
6941
  msgid "Go to your listing"
6942
  msgstr "Gå till din annons."
6943
 
6944
+ #: templates/submit-listing-done.tpl.php:21
6945
  msgctxt "templates"
6946
  msgid ""
6947
  "Your listing requires admin approval. You'll be notified once your listing "
6950
  "Din listning kräver godkännande från administratören. Du meddelas när din "
6951
  "annons är godkänd."
6952
 
6953
+ #: templates/submit-listing-done.tpl.php:25
6954
  msgctxt "templates"
6955
  msgid "Return to directory."
6956
  msgstr "Återgå till katalogen"
7486
  msgid "Bill To:"
7487
  msgstr "Fakturera till:"
7488
 
7489
+ #: includes/payment.php:96
7490
  msgctxt "checkout"
7491
  msgid "Print Receipt"
7492
  msgstr "Skriv ut kvitto"
7709
  msgid "Your payment is awaiting verification by the gateway."
7710
  msgstr "Din betalning är väntar på verifiering av gateway."
7711
 
7712
+ #: templates/checkout-confirmation.tpl.php:20
7713
  msgctxt "checkout"
7714
  msgid ""
7715
  "Verification usually takes some minutes. This page will automatically "
7813
  msgid "Error while uploading file"
7814
  msgstr "Okänt fel uppstod när filen laddades upp."
7815
 
7816
+ #: includes/views/delete_listing.php:38
7817
  msgctxt "delete listing"
7818
  msgid "Your listing has been deleted."
7819
  msgstr "Din annons har tagits bort."
8122
  msgstr ""
8123
  "Detta är enbart en förhandsgranskning, annonsen har inte publicerats ännu."
8124
 
8125
+ #: includes/views/submit_listing.php:671
8126
  msgctxt "listing submit"
8127
  msgid ""
8128
  "Something went wrong. Please check the form for errors, correct them and "
8131
  "Något gick fel. Vänligen kontrollera formuläret för fel, rätta till dem och "
8132
  "skicka igen."
8133
 
8134
+ #: includes/views/submit_listing.php:755
8135
  msgctxt "listing submit"
8136
  msgid ""
8137
  "Image upload is required, please provide at least one image and submit again."
languages/WPBDM.pot CHANGED
@@ -2,10 +2,10 @@
2
  # This file is distributed under the GPLv2 or any later version.
3
  msgid ""
4
  msgstr ""
5
- "Project-Id-Version: Business Directory Plugin 5.5.3dev3\n"
6
  "Report-Msgid-Bugs-To: "
7
  "https://wordpress.org/support/plugin/business-directory-plugin\n"
8
- "POT-Creation-Date: 2019-03-20 00:09:46+00:00\n"
9
  "MIME-Version: 1.0\n"
10
  "Content-Type: text/plain; charset=utf-8\n"
11
  "Content-Transfer-Encoding: 8bit\n"
@@ -1085,7 +1085,7 @@ msgid ""
1085
  "Fields\" or let Business Directory do this for you automatically."
1086
  msgstr ""
1087
 
1088
- #: includes/admin/form-fields.php:214 includes/views/submit_listing.php:516
1089
  msgctxt "admin"
1090
  msgid "Go to \"Manage Form Fields\""
1091
  msgstr ""
@@ -1095,12 +1095,12 @@ msgctxt "admin"
1095
  msgid "Create these required fields for me"
1096
  msgstr ""
1097
 
1098
- #: includes/payment.php:181
1099
  msgctxt "admin"
1100
  msgid "Pending Abandonment"
1101
  msgstr ""
1102
 
1103
- #: includes/payment.php:186
1104
  msgctxt "admin"
1105
  msgid "Abandoned"
1106
  msgstr ""
@@ -1115,47 +1115,47 @@ msgctxt "listing status"
1115
  msgid "Reported"
1116
  msgstr ""
1117
 
1118
- #: includes/class-listing.php:768
1119
  msgctxt "listing status"
1120
  msgid "Unknown"
1121
  msgstr ""
1122
 
1123
- #: includes/class-listing.php:769
1124
  msgctxt "listing status"
1125
  msgid "Legacy"
1126
  msgstr ""
1127
 
1128
- #: includes/class-listing.php:770
1129
  msgctxt "listing status"
1130
  msgid "Incomplete"
1131
  msgstr ""
1132
 
1133
- #: includes/class-listing.php:771
1134
  msgctxt "listing status"
1135
  msgid "Pending Payment"
1136
  msgstr ""
1137
 
1138
- #: includes/class-listing.php:772
1139
  msgctxt "listing status"
1140
  msgid "Complete"
1141
  msgstr ""
1142
 
1143
- #: includes/class-listing.php:773
1144
  msgctxt "listing status"
1145
  msgid "Pending Upgrade"
1146
  msgstr ""
1147
 
1148
- #: includes/class-listing.php:774
1149
  msgctxt "listing status"
1150
  msgid "Expired"
1151
  msgstr ""
1152
 
1153
- #: includes/class-listing.php:775
1154
  msgctxt "listing status"
1155
  msgid "Pending Renewal"
1156
  msgstr ""
1157
 
1158
- #: includes/class-listing.php:776
1159
  msgctxt "listing status"
1160
  msgid "Abandoned"
1161
  msgstr ""
@@ -1752,22 +1752,22 @@ msgctxt "themes"
1752
  msgid "Theme was updated successfully."
1753
  msgstr ""
1754
 
1755
- #: includes/themes.php:825
1756
  msgctxt "themes"
1757
  msgid "ZIP file is not a valid BD theme file."
1758
  msgstr ""
1759
 
1760
- #: includes/themes.php:831
1761
  msgctxt "themes"
1762
  msgid "Could not create themes directory."
1763
  msgstr ""
1764
 
1765
- #: includes/themes.php:839
1766
  msgctxt "themes"
1767
  msgid "Could not remove previous theme directory \"%s\"."
1768
  msgstr ""
1769
 
1770
- #: includes/themes.php:845
1771
  msgctxt "themes"
1772
  msgid "Could not move new theme into theme directory."
1773
  msgstr ""
@@ -2673,12 +2673,12 @@ msgctxt "form-fields admin"
2673
  msgid "Automatically generate excerpt from content field?"
2674
  msgstr ""
2675
 
2676
- #: includes/fields/class-fieldtypes-url.php:23
2677
  msgctxt "form-fields admin"
2678
  msgid "Open link in a new window?"
2679
  msgstr ""
2680
 
2681
- #: includes/fields/class-fieldtypes-url.php:26
2682
  msgctxt "form-fields admin"
2683
  msgid "Use rel=\"nofollow\" when displaying the link?"
2684
  msgstr ""
@@ -3334,13 +3334,13 @@ msgid "Author"
3334
  msgstr ""
3335
 
3336
  #: includes/admin/settings/class-settings-bootstrap.php:682
3337
- #: includes/functions.php:1179
3338
  msgctxt "admin settings"
3339
  msgid "Date posted"
3340
  msgstr ""
3341
 
3342
  #: includes/admin/settings/class-settings-bootstrap.php:683
3343
- #: includes/functions.php:1180
3344
  msgctxt "admin settings"
3345
  msgid "Date last modified"
3346
  msgstr ""
@@ -3711,12 +3711,12 @@ msgid ""
3711
  "not activated."
3712
  msgstr ""
3713
 
3714
- #: includes/functions.php:1177
3715
  msgctxt "admin settings"
3716
  msgid "User"
3717
  msgstr ""
3718
 
3719
- #: includes/functions.php:1178
3720
  msgctxt "admin settings"
3721
  msgid "User registration date"
3722
  msgstr ""
@@ -5273,32 +5273,32 @@ msgctxt "listing"
5273
  msgid "Add New Listing"
5274
  msgstr ""
5275
 
5276
- #: includes/class-listing.php:302
5277
  msgctxt "listing"
5278
  msgid "Listing has no registered payments"
5279
  msgstr ""
5280
 
5281
- #: includes/class-listing.php:310
5282
  msgctxt "listing"
5283
  msgid "Can't delete payment"
5284
  msgstr ""
5285
 
5286
- #: includes/class-listing.php:349
5287
  msgctxt "listing"
5288
  msgid "Listing expired"
5289
  msgstr ""
5290
 
5291
- #: includes/class-listing.php:508
5292
  msgctxt "listing"
5293
  msgid "(Unavailable Plan)"
5294
  msgstr ""
5295
 
5296
- #: includes/class-listing.php:665
5297
  msgctxt "listing"
5298
  msgid "Plan \"%s\" (recurring)"
5299
  msgstr ""
5300
 
5301
- #: includes/class-listing.php:667
5302
  msgctxt "listing"
5303
  msgid "Plan \"%s\""
5304
  msgstr ""
@@ -5535,62 +5535,62 @@ msgid ""
5535
  "<i>Free Mode</i>."
5536
  msgstr ""
5537
 
5538
- #: includes/class-payment.php:65
5539
  msgctxt "payment"
5540
- msgid "Payment status changed from \"%s\" to \"%s\"."
5541
  msgstr ""
5542
 
5543
- #: includes/class-payment.php:98
5544
  msgctxt "payment"
5545
  msgid "Initial payment (\"%s\")"
5546
  msgstr ""
5547
 
5548
- #: includes/class-payment.php:101
5549
  msgctxt "payment"
5550
  msgid "Renewal payment (\"%s\")"
5551
  msgstr ""
5552
 
5553
- #: includes/class-payment.php:266
5554
  msgctxt "payment"
5555
  msgid "Pending"
5556
  msgstr ""
5557
 
5558
- #: includes/class-payment.php:267
5559
  msgctxt "payment"
5560
  msgid "Failed"
5561
  msgstr ""
5562
 
5563
- #: includes/class-payment.php:268
5564
  msgctxt "payment"
5565
  msgid "Completed"
5566
  msgstr ""
5567
 
5568
- #: includes/class-payment.php:269
5569
  msgctxt "payment"
5570
  msgid "Canceled"
5571
  msgstr ""
5572
 
5573
- #: includes/class-payment.php:270
5574
  msgctxt "payment"
5575
  msgid "On Hold"
5576
  msgstr ""
5577
 
5578
- #: includes/class-payment.php:271
5579
  msgctxt "payment"
5580
  msgid "Refunded"
5581
  msgstr ""
5582
 
5583
- #: includes/class-payment.php:113
5584
  msgctxt "payment summary"
5585
  msgid "%s. Admin Posted."
5586
  msgstr ""
5587
 
5588
- #: includes/class-payment.php:115
5589
  msgctxt "payment summary"
5590
  msgid "%s. Imported Listing."
5591
  msgstr ""
5592
 
5593
- #: includes/class-payment.php:188
5594
  msgctxt "submit listing"
5595
  msgid "Listing submitted by admin. Payment skipped."
5596
  msgstr ""
@@ -5650,112 +5650,112 @@ msgctxt "submit listing"
5650
  msgid "You're logged in as admin, payment will be skipped."
5651
  msgstr ""
5652
 
5653
- #: includes/views/submit_listing.php:392
5654
  msgctxt "submit listing"
5655
  msgid "Category selection"
5656
  msgstr ""
5657
 
5658
- #: includes/views/submit_listing.php:392
5659
  msgctxt "submit listing"
5660
  msgid "Category & plan selection"
5661
  msgstr ""
5662
 
5663
- #: includes/views/submit_listing.php:397
5664
  msgctxt "submit listing"
5665
  msgid "Listing Information"
5666
  msgstr ""
5667
 
5668
- #: includes/views/submit_listing.php:402
5669
  msgctxt "submit listing"
5670
  msgid "Listing Images"
5671
  msgstr ""
5672
 
5673
- #: includes/views/submit_listing.php:410
5674
  msgctxt "submit listing"
5675
  msgid "Account Creation"
5676
  msgstr ""
5677
 
5678
- #: includes/views/submit_listing.php:416
5679
  msgctxt "submit listing"
5680
  msgid "Terms and Conditions"
5681
  msgstr ""
5682
 
5683
- #: includes/views/submit_listing.php:453
5684
  msgctxt "submit listing"
5685
  msgid "(Please choose a fee plan above)"
5686
  msgstr ""
5687
 
5688
- #: includes/views/submit_listing.php:503
5689
  msgctxt "submit listing"
5690
  msgid "Can not submit a listing at this moment. Please try again later."
5691
  msgstr ""
5692
 
5693
- #: includes/views/submit_listing.php:531
5694
  msgctxt "submit listing"
5695
  msgid "Please select a category."
5696
  msgstr ""
5697
 
5698
- #: includes/views/submit_listing.php:544
5699
  msgctxt "submit listing"
5700
  msgid "Please select a category for your listing."
5701
  msgstr ""
5702
 
5703
- #: includes/views/submit_listing.php:564
5704
  msgctxt "submit listing"
5705
  msgid "Please choose a valid category for your plan."
5706
  msgstr ""
5707
 
5708
- #: includes/views/submit_listing.php:566
5709
  msgctxt "submit listing"
5710
  msgid "Please choose a valid fee plan for your category selection."
5711
  msgstr ""
5712
 
5713
- #: includes/views/submit_listing.php:807
5714
  msgctxt "submit listing"
5715
  msgid "Please enter your desired username."
5716
  msgstr ""
5717
 
5718
- #: includes/views/submit_listing.php:812
5719
  msgctxt "submit listing"
5720
  msgid "Please enter the e-mail for your new account."
5721
  msgstr ""
5722
 
5723
- #: includes/views/submit_listing.php:817
5724
  msgctxt "submit listing"
5725
  msgid "Please enter the password for your new account."
5726
  msgstr ""
5727
 
5728
- #: includes/views/submit_listing.php:827
5729
  msgctxt "submit listing"
5730
  msgid "The username you chose is already in use. Please use a different one."
5731
  msgstr ""
5732
 
5733
- #: includes/views/submit_listing.php:832
5734
  msgctxt "submit listing"
5735
  msgid "The e-mail address you chose for your account is already in use."
5736
  msgstr ""
5737
 
5738
- #: includes/views/submit_listing.php:847
5739
  msgctxt "submit listing"
5740
  msgid "Create a user account on this site"
5741
  msgstr ""
5742
 
5743
- #: includes/views/submit_listing.php:854
5744
  msgctxt "submit listing"
5745
  msgid "You need to create an account on the site. Please fill out the form below."
5746
  msgstr ""
5747
 
5748
- #: includes/views/submit_listing.php:860
5749
  msgctxt "submit listing"
5750
  msgid "Username:"
5751
  msgstr ""
5752
 
5753
- #: includes/views/submit_listing.php:869
5754
  msgctxt "submit listing"
5755
  msgid "Email:"
5756
  msgstr ""
5757
 
5758
- #: includes/views/submit_listing.php:878
5759
  msgctxt "submit listing"
5760
  msgid "Password:"
5761
  msgstr ""
@@ -5902,22 +5902,22 @@ msgid "Social Site (Other)"
5902
  msgstr ""
5903
 
5904
  #: includes/fields/class-fieldtypes-social.php:95
5905
- #: includes/fields/class-fieldtypes-url.php:136
5906
  msgctxt "form-fields api"
5907
  msgid "URL:"
5908
  msgstr ""
5909
 
5910
- #: includes/fields/class-fieldtypes-social.php:108
5911
  msgctxt "form-fields api"
5912
  msgid "Text:"
5913
  msgstr ""
5914
 
5915
- #: includes/fields/class-fieldtypes-social.php:114
5916
  msgctxt "form-fields api"
5917
- msgid "Text to be displayed along with icon"
5918
  msgstr ""
5919
 
5920
- #: includes/fields/class-fieldtypes-social.php:121
5921
  msgctxt "form-fields api"
5922
  msgid "Type:"
5923
  msgstr ""
@@ -5942,12 +5942,12 @@ msgctxt "form-fields api"
5942
  msgid "Social Site (Twitter handle)"
5943
  msgstr ""
5944
 
5945
- #: includes/fields/class-fieldtypes-url.php:5
5946
  msgctxt "form-fields api"
5947
  msgid "URL Field"
5948
  msgstr ""
5949
 
5950
- #: includes/fields/class-fieldtypes-url.php:144
5951
  msgctxt "form-fields api"
5952
  msgid "Link Text (optional):"
5953
  msgstr ""
@@ -6015,7 +6015,7 @@ msgid "Caption for %s is required."
6015
  msgstr ""
6016
 
6017
  #: includes/fields/class-fieldtypes-image.php:100
6018
- #: includes/fields/class-fieldtypes-social.php:156
6019
  msgctxt "form-fields-api"
6020
  msgid "Remove"
6021
  msgstr ""
@@ -6200,17 +6200,17 @@ msgctxt "image field"
6200
  msgid "Caption for %s is required."
6201
  msgstr ""
6202
 
6203
- #: includes/functions.php:1257
6204
  msgctxt "templates"
6205
  msgid "Return to results"
6206
  msgstr ""
6207
 
6208
- #: includes/functions.php:1261 includes/functions.php:1266
6209
  msgctxt "templates"
6210
  msgid "Go back"
6211
  msgstr ""
6212
 
6213
- #: includes/payment.php:278 templates/renew-resume.tpl.php:39
6214
  msgctxt "templates"
6215
  msgid "Return to fee selection"
6216
  msgstr ""
@@ -6263,26 +6263,26 @@ msgid ""
6263
  "site. If you didn't want that, click <a>here</a> to change the setting."
6264
  msgstr ""
6265
 
6266
- #: includes/views/submit_listing.php:339
6267
  msgctxt "templates"
6268
  msgid ""
6269
  "<b>View not available</b>. Do you have the \"Disable Frontend Listing "
6270
  "Submission?\" setting checked?"
6271
  msgstr ""
6272
 
6273
- #: includes/views/submit_listing.php:341
6274
  msgctxt "templates"
6275
  msgid "Listing submission has been disabled. Contact the administrator for details."
6276
  msgstr ""
6277
 
6278
- #: includes/views/submit_listing.php:506
6279
  msgctxt "templates"
6280
  msgid ""
6281
  "Listing submission is not available at the moment. Contact the "
6282
  "administrator for details."
6283
  msgstr ""
6284
 
6285
- #: includes/views/submit_listing.php:509
6286
  msgctxt "templates"
6287
  msgid ""
6288
  "<b>View not available</b>, there is no \"Category\" association field. %s "
@@ -6290,17 +6290,17 @@ msgid ""
6290
  "an existing field"
6291
  msgstr ""
6292
 
6293
- #: includes/views/submit_listing.php:916
6294
  msgctxt "templates"
6295
  msgid "Please agree to the Terms and Conditions."
6296
  msgstr ""
6297
 
6298
- #: includes/views/submit_listing.php:924
6299
  msgctxt "templates"
6300
  msgid "Terms and Conditions:"
6301
  msgstr ""
6302
 
6303
- #: includes/views/submit_listing.php:933
6304
  msgctxt "templates"
6305
  msgid "I agree to the <a>Terms and Conditions</a>"
6306
  msgstr ""
@@ -6501,24 +6501,24 @@ msgctxt "templates"
6501
  msgid "Your listing has been submitted."
6502
  msgstr ""
6503
 
6504
- #: templates/submit-listing-done.tpl.php:11
6505
  msgctxt "templates"
6506
  msgid "Your listing changes were saved."
6507
  msgstr ""
6508
 
6509
- #: templates/submit-listing-done.tpl.php:16
6510
  msgctxt "templates"
6511
  msgid "Go to your listing"
6512
  msgstr ""
6513
 
6514
- #: templates/submit-listing-done.tpl.php:18
6515
  msgctxt "templates"
6516
  msgid ""
6517
  "Your listing requires admin approval. You'll be notified once your listing "
6518
  "is approved."
6519
  msgstr ""
6520
 
6521
- #: templates/submit-listing-done.tpl.php:22
6522
  msgctxt "templates"
6523
  msgid "Return to directory."
6524
  msgstr ""
@@ -6981,7 +6981,7 @@ msgctxt "payments"
6981
  msgid "Bill To:"
6982
  msgstr ""
6983
 
6984
- #: includes/payment.php:97
6985
  msgctxt "checkout"
6986
  msgid "Print Receipt"
6987
  msgstr ""
@@ -7196,7 +7196,7 @@ msgctxt "checkout"
7196
  msgid "Your payment is awaiting verification by the gateway."
7197
  msgstr ""
7198
 
7199
- #: templates/checkout-confirmation.tpl.php:19
7200
  msgctxt "checkout"
7201
  msgid ""
7202
  "Verification usually takes some minutes. This page will automatically "
@@ -7295,7 +7295,7 @@ msgctxt "utils"
7295
  msgid "Error while uploading file"
7296
  msgstr ""
7297
 
7298
- #: includes/views/delete_listing.php:32
7299
  msgctxt "delete listing"
7300
  msgid "Your listing has been deleted."
7301
  msgstr ""
@@ -7584,14 +7584,14 @@ msgctxt "preview"
7584
  msgid "This is just a preview. The listing has not been published yet."
7585
  msgstr ""
7586
 
7587
- #: includes/views/submit_listing.php:675
7588
  msgctxt "listing submit"
7589
  msgid ""
7590
  "Something went wrong. Please check the form for errors, correct them and "
7591
  "submit again."
7592
  msgstr ""
7593
 
7594
- #: includes/views/submit_listing.php:759
7595
  msgctxt "listing submit"
7596
  msgid ""
7597
  "Image upload is required, please provide at least one image and submit "
2
  # This file is distributed under the GPLv2 or any later version.
3
  msgid ""
4
  msgstr ""
5
+ "Project-Id-Version: Business Directory Plugin 5.5.4dev5\n"
6
  "Report-Msgid-Bugs-To: "
7
  "https://wordpress.org/support/plugin/business-directory-plugin\n"
8
+ "POT-Creation-Date: 2019-04-23 21:12:39+00:00\n"
9
  "MIME-Version: 1.0\n"
10
  "Content-Type: text/plain; charset=utf-8\n"
11
  "Content-Transfer-Encoding: 8bit\n"
1085
  "Fields\" or let Business Directory do this for you automatically."
1086
  msgstr ""
1087
 
1088
+ #: includes/admin/form-fields.php:214 includes/views/submit_listing.php:512
1089
  msgctxt "admin"
1090
  msgid "Go to \"Manage Form Fields\""
1091
  msgstr ""
1095
  msgid "Create these required fields for me"
1096
  msgstr ""
1097
 
1098
+ #: includes/payment.php:180
1099
  msgctxt "admin"
1100
  msgid "Pending Abandonment"
1101
  msgstr ""
1102
 
1103
+ #: includes/payment.php:185
1104
  msgctxt "admin"
1105
  msgid "Abandoned"
1106
  msgstr ""
1115
  msgid "Reported"
1116
  msgstr ""
1117
 
1118
+ #: includes/class-listing.php:771
1119
  msgctxt "listing status"
1120
  msgid "Unknown"
1121
  msgstr ""
1122
 
1123
+ #: includes/class-listing.php:772
1124
  msgctxt "listing status"
1125
  msgid "Legacy"
1126
  msgstr ""
1127
 
1128
+ #: includes/class-listing.php:773
1129
  msgctxt "listing status"
1130
  msgid "Incomplete"
1131
  msgstr ""
1132
 
1133
+ #: includes/class-listing.php:774
1134
  msgctxt "listing status"
1135
  msgid "Pending Payment"
1136
  msgstr ""
1137
 
1138
+ #: includes/class-listing.php:775
1139
  msgctxt "listing status"
1140
  msgid "Complete"
1141
  msgstr ""
1142
 
1143
+ #: includes/class-listing.php:776
1144
  msgctxt "listing status"
1145
  msgid "Pending Upgrade"
1146
  msgstr ""
1147
 
1148
+ #: includes/class-listing.php:777
1149
  msgctxt "listing status"
1150
  msgid "Expired"
1151
  msgstr ""
1152
 
1153
+ #: includes/class-listing.php:778
1154
  msgctxt "listing status"
1155
  msgid "Pending Renewal"
1156
  msgstr ""
1157
 
1158
+ #: includes/class-listing.php:779
1159
  msgctxt "listing status"
1160
  msgid "Abandoned"
1161
  msgstr ""
1752
  msgid "Theme was updated successfully."
1753
  msgstr ""
1754
 
1755
+ #: includes/themes.php:829
1756
  msgctxt "themes"
1757
  msgid "ZIP file is not a valid BD theme file."
1758
  msgstr ""
1759
 
1760
+ #: includes/themes.php:835
1761
  msgctxt "themes"
1762
  msgid "Could not create themes directory."
1763
  msgstr ""
1764
 
1765
+ #: includes/themes.php:843
1766
  msgctxt "themes"
1767
  msgid "Could not remove previous theme directory \"%s\"."
1768
  msgstr ""
1769
 
1770
+ #: includes/themes.php:849
1771
  msgctxt "themes"
1772
  msgid "Could not move new theme into theme directory."
1773
  msgstr ""
2673
  msgid "Automatically generate excerpt from content field?"
2674
  msgstr ""
2675
 
2676
+ #: includes/fields/class-fieldtypes-url.php:36
2677
  msgctxt "form-fields admin"
2678
  msgid "Open link in a new window?"
2679
  msgstr ""
2680
 
2681
+ #: includes/fields/class-fieldtypes-url.php:39
2682
  msgctxt "form-fields admin"
2683
  msgid "Use rel=\"nofollow\" when displaying the link?"
2684
  msgstr ""
3334
  msgstr ""
3335
 
3336
  #: includes/admin/settings/class-settings-bootstrap.php:682
3337
+ #: includes/functions.php:1181
3338
  msgctxt "admin settings"
3339
  msgid "Date posted"
3340
  msgstr ""
3341
 
3342
  #: includes/admin/settings/class-settings-bootstrap.php:683
3343
+ #: includes/functions.php:1182
3344
  msgctxt "admin settings"
3345
  msgid "Date last modified"
3346
  msgstr ""
3711
  "not activated."
3712
  msgstr ""
3713
 
3714
+ #: includes/functions.php:1179
3715
  msgctxt "admin settings"
3716
  msgid "User"
3717
  msgstr ""
3718
 
3719
+ #: includes/functions.php:1180
3720
  msgctxt "admin settings"
3721
  msgid "User registration date"
3722
  msgstr ""
5273
  msgid "Add New Listing"
5274
  msgstr ""
5275
 
5276
+ #: includes/class-listing.php:305
5277
  msgctxt "listing"
5278
  msgid "Listing has no registered payments"
5279
  msgstr ""
5280
 
5281
+ #: includes/class-listing.php:313
5282
  msgctxt "listing"
5283
  msgid "Can't delete payment"
5284
  msgstr ""
5285
 
5286
+ #: includes/class-listing.php:352
5287
  msgctxt "listing"
5288
  msgid "Listing expired"
5289
  msgstr ""
5290
 
5291
+ #: includes/class-listing.php:511
5292
  msgctxt "listing"
5293
  msgid "(Unavailable Plan)"
5294
  msgstr ""
5295
 
5296
+ #: includes/class-listing.php:668
5297
  msgctxt "listing"
5298
  msgid "Plan \"%s\" (recurring)"
5299
  msgstr ""
5300
 
5301
+ #: includes/class-listing.php:670
5302
  msgctxt "listing"
5303
  msgid "Plan \"%s\""
5304
  msgstr ""
5535
  "<i>Free Mode</i>."
5536
  msgstr ""
5537
 
5538
+ #: includes/class-payment.php:82
5539
  msgctxt "payment"
5540
+ msgid "Payment status changed from \"%1$s\" to \"%2$s\"."
5541
  msgstr ""
5542
 
5543
+ #: includes/class-payment.php:123
5544
  msgctxt "payment"
5545
  msgid "Initial payment (\"%s\")"
5546
  msgstr ""
5547
 
5548
+ #: includes/class-payment.php:126
5549
  msgctxt "payment"
5550
  msgid "Renewal payment (\"%s\")"
5551
  msgstr ""
5552
 
5553
+ #: includes/class-payment.php:313
5554
  msgctxt "payment"
5555
  msgid "Pending"
5556
  msgstr ""
5557
 
5558
+ #: includes/class-payment.php:314
5559
  msgctxt "payment"
5560
  msgid "Failed"
5561
  msgstr ""
5562
 
5563
+ #: includes/class-payment.php:315
5564
  msgctxt "payment"
5565
  msgid "Completed"
5566
  msgstr ""
5567
 
5568
+ #: includes/class-payment.php:316
5569
  msgctxt "payment"
5570
  msgid "Canceled"
5571
  msgstr ""
5572
 
5573
+ #: includes/class-payment.php:317
5574
  msgctxt "payment"
5575
  msgid "On Hold"
5576
  msgstr ""
5577
 
5578
+ #: includes/class-payment.php:318
5579
  msgctxt "payment"
5580
  msgid "Refunded"
5581
  msgstr ""
5582
 
5583
+ #: includes/class-payment.php:138
5584
  msgctxt "payment summary"
5585
  msgid "%s. Admin Posted."
5586
  msgstr ""
5587
 
5588
+ #: includes/class-payment.php:140
5589
  msgctxt "payment summary"
5590
  msgid "%s. Imported Listing."
5591
  msgstr ""
5592
 
5593
+ #: includes/class-payment.php:218
5594
  msgctxt "submit listing"
5595
  msgid "Listing submitted by admin. Payment skipped."
5596
  msgstr ""
5650
  msgid "You're logged in as admin, payment will be skipped."
5651
  msgstr ""
5652
 
5653
+ #: includes/views/submit_listing.php:388
5654
  msgctxt "submit listing"
5655
  msgid "Category selection"
5656
  msgstr ""
5657
 
5658
+ #: includes/views/submit_listing.php:388
5659
  msgctxt "submit listing"
5660
  msgid "Category & plan selection"
5661
  msgstr ""
5662
 
5663
+ #: includes/views/submit_listing.php:393
5664
  msgctxt "submit listing"
5665
  msgid "Listing Information"
5666
  msgstr ""
5667
 
5668
+ #: includes/views/submit_listing.php:398
5669
  msgctxt "submit listing"
5670
  msgid "Listing Images"
5671
  msgstr ""
5672
 
5673
+ #: includes/views/submit_listing.php:406
5674
  msgctxt "submit listing"
5675
  msgid "Account Creation"
5676
  msgstr ""
5677
 
5678
+ #: includes/views/submit_listing.php:412
5679
  msgctxt "submit listing"
5680
  msgid "Terms and Conditions"
5681
  msgstr ""
5682
 
5683
+ #: includes/views/submit_listing.php:449
5684
  msgctxt "submit listing"
5685
  msgid "(Please choose a fee plan above)"
5686
  msgstr ""
5687
 
5688
+ #: includes/views/submit_listing.php:499
5689
  msgctxt "submit listing"
5690
  msgid "Can not submit a listing at this moment. Please try again later."
5691
  msgstr ""
5692
 
5693
+ #: includes/views/submit_listing.php:527
5694
  msgctxt "submit listing"
5695
  msgid "Please select a category."
5696
  msgstr ""
5697
 
5698
+ #: includes/views/submit_listing.php:540
5699
  msgctxt "submit listing"
5700
  msgid "Please select a category for your listing."
5701
  msgstr ""
5702
 
5703
+ #: includes/views/submit_listing.php:560
5704
  msgctxt "submit listing"
5705
  msgid "Please choose a valid category for your plan."
5706
  msgstr ""
5707
 
5708
+ #: includes/views/submit_listing.php:562
5709
  msgctxt "submit listing"
5710
  msgid "Please choose a valid fee plan for your category selection."
5711
  msgstr ""
5712
 
5713
+ #: includes/views/submit_listing.php:803
5714
  msgctxt "submit listing"
5715
  msgid "Please enter your desired username."
5716
  msgstr ""
5717
 
5718
+ #: includes/views/submit_listing.php:808
5719
  msgctxt "submit listing"
5720
  msgid "Please enter the e-mail for your new account."
5721
  msgstr ""
5722
 
5723
+ #: includes/views/submit_listing.php:813
5724
  msgctxt "submit listing"
5725
  msgid "Please enter the password for your new account."
5726
  msgstr ""
5727
 
5728
+ #: includes/views/submit_listing.php:823
5729
  msgctxt "submit listing"
5730
  msgid "The username you chose is already in use. Please use a different one."
5731
  msgstr ""
5732
 
5733
+ #: includes/views/submit_listing.php:828
5734
  msgctxt "submit listing"
5735
  msgid "The e-mail address you chose for your account is already in use."
5736
  msgstr ""
5737
 
5738
+ #: includes/views/submit_listing.php:843
5739
  msgctxt "submit listing"
5740
  msgid "Create a user account on this site"
5741
  msgstr ""
5742
 
5743
+ #: includes/views/submit_listing.php:850
5744
  msgctxt "submit listing"
5745
  msgid "You need to create an account on the site. Please fill out the form below."
5746
  msgstr ""
5747
 
5748
+ #: includes/views/submit_listing.php:856
5749
  msgctxt "submit listing"
5750
  msgid "Username:"
5751
  msgstr ""
5752
 
5753
+ #: includes/views/submit_listing.php:865
5754
  msgctxt "submit listing"
5755
  msgid "Email:"
5756
  msgstr ""
5757
 
5758
+ #: includes/views/submit_listing.php:874
5759
  msgctxt "submit listing"
5760
  msgid "Password:"
5761
  msgstr ""
5902
  msgstr ""
5903
 
5904
  #: includes/fields/class-fieldtypes-social.php:95
5905
+ #: includes/fields/class-fieldtypes-url.php:149
5906
  msgctxt "form-fields api"
5907
  msgid "URL:"
5908
  msgstr ""
5909
 
5910
+ #: includes/fields/class-fieldtypes-social.php:115
5911
  msgctxt "form-fields api"
5912
  msgid "Text:"
5913
  msgstr ""
5914
 
5915
+ #: includes/fields/class-fieldtypes-social.php:122
5916
  msgctxt "form-fields api"
5917
+ msgid "Text to be displayed for social field"
5918
  msgstr ""
5919
 
5920
+ #: includes/fields/class-fieldtypes-social.php:140
5921
  msgctxt "form-fields api"
5922
  msgid "Type:"
5923
  msgstr ""
5942
  msgid "Social Site (Twitter handle)"
5943
  msgstr ""
5944
 
5945
+ #: includes/fields/class-fieldtypes-url.php:18
5946
  msgctxt "form-fields api"
5947
  msgid "URL Field"
5948
  msgstr ""
5949
 
5950
+ #: includes/fields/class-fieldtypes-url.php:157
5951
  msgctxt "form-fields api"
5952
  msgid "Link Text (optional):"
5953
  msgstr ""
6015
  msgstr ""
6016
 
6017
  #: includes/fields/class-fieldtypes-image.php:100
6018
+ #: includes/fields/class-fieldtypes-social.php:175
6019
  msgctxt "form-fields-api"
6020
  msgid "Remove"
6021
  msgstr ""
6200
  msgid "Caption for %s is required."
6201
  msgstr ""
6202
 
6203
+ #: includes/functions.php:1259
6204
  msgctxt "templates"
6205
  msgid "Return to results"
6206
  msgstr ""
6207
 
6208
+ #: includes/functions.php:1263 includes/functions.php:1268
6209
  msgctxt "templates"
6210
  msgid "Go back"
6211
  msgstr ""
6212
 
6213
+ #: includes/payment.php:277 templates/renew-resume.tpl.php:39
6214
  msgctxt "templates"
6215
  msgid "Return to fee selection"
6216
  msgstr ""
6263
  "site. If you didn't want that, click <a>here</a> to change the setting."
6264
  msgstr ""
6265
 
6266
+ #: includes/views/submit_listing.php:335
6267
  msgctxt "templates"
6268
  msgid ""
6269
  "<b>View not available</b>. Do you have the \"Disable Frontend Listing "
6270
  "Submission?\" setting checked?"
6271
  msgstr ""
6272
 
6273
+ #: includes/views/submit_listing.php:337
6274
  msgctxt "templates"
6275
  msgid "Listing submission has been disabled. Contact the administrator for details."
6276
  msgstr ""
6277
 
6278
+ #: includes/views/submit_listing.php:502
6279
  msgctxt "templates"
6280
  msgid ""
6281
  "Listing submission is not available at the moment. Contact the "
6282
  "administrator for details."
6283
  msgstr ""
6284
 
6285
+ #: includes/views/submit_listing.php:505
6286
  msgctxt "templates"
6287
  msgid ""
6288
  "<b>View not available</b>, there is no \"Category\" association field. %s "
6290
  "an existing field"
6291
  msgstr ""
6292
 
6293
+ #: includes/views/submit_listing.php:912
6294
  msgctxt "templates"
6295
  msgid "Please agree to the Terms and Conditions."
6296
  msgstr ""
6297
 
6298
+ #: includes/views/submit_listing.php:920
6299
  msgctxt "templates"
6300
  msgid "Terms and Conditions:"
6301
  msgstr ""
6302
 
6303
+ #: includes/views/submit_listing.php:929
6304
  msgctxt "templates"
6305
  msgid "I agree to the <a>Terms and Conditions</a>"
6306
  msgstr ""
6501
  msgid "Your listing has been submitted."
6502
  msgstr ""
6503
 
6504
+ #: templates/submit-listing-done.tpl.php:14
6505
  msgctxt "templates"
6506
  msgid "Your listing changes were saved."
6507
  msgstr ""
6508
 
6509
+ #: templates/submit-listing-done.tpl.php:19
6510
  msgctxt "templates"
6511
  msgid "Go to your listing"
6512
  msgstr ""
6513
 
6514
+ #: templates/submit-listing-done.tpl.php:21
6515
  msgctxt "templates"
6516
  msgid ""
6517
  "Your listing requires admin approval. You'll be notified once your listing "
6518
  "is approved."
6519
  msgstr ""
6520
 
6521
+ #: templates/submit-listing-done.tpl.php:25
6522
  msgctxt "templates"
6523
  msgid "Return to directory."
6524
  msgstr ""
6981
  msgid "Bill To:"
6982
  msgstr ""
6983
 
6984
+ #: includes/payment.php:96
6985
  msgctxt "checkout"
6986
  msgid "Print Receipt"
6987
  msgstr ""
7196
  msgid "Your payment is awaiting verification by the gateway."
7197
  msgstr ""
7198
 
7199
+ #: templates/checkout-confirmation.tpl.php:20
7200
  msgctxt "checkout"
7201
  msgid ""
7202
  "Verification usually takes some minutes. This page will automatically "
7295
  msgid "Error while uploading file"
7296
  msgstr ""
7297
 
7298
+ #: includes/views/delete_listing.php:38
7299
  msgctxt "delete listing"
7300
  msgid "Your listing has been deleted."
7301
  msgstr ""
7584
  msgid "This is just a preview. The listing has not been published yet."
7585
  msgstr ""
7586
 
7587
+ #: includes/views/submit_listing.php:671
7588
  msgctxt "listing submit"
7589
  msgid ""
7590
  "Something went wrong. Please check the form for errors, correct them and "
7591
  "submit again."
7592
  msgstr ""
7593
 
7594
+ #: includes/views/submit_listing.php:755
7595
  msgctxt "listing submit"
7596
  msgid ""
7597
  "Image upload is required, please provide at least one image and submit "
templates/submit-listing-done.tpl.php CHANGED
@@ -1,23 +1,34 @@
1
- <h3><?php _ex( 'Submission Received', 'templates', 'WPBDM' ); ?></h3>
 
 
 
 
 
2
 
3
- <?php if ( ! $editing ): ?>
4
- <p><?php _ex( 'Your listing has been submitted.', 'templates', 'WPBDM' ); ?></p>
5
- <?php if ( $payment && $payment->amount > 0.0 ): ?>
6
- <div id="wpbdp-checkout-confirmation-receipt">
7
- <?php echo wpbdp()->payments->render_receipt( $payment ); ?>
8
- </div>
 
 
 
 
 
 
9
  <?php endif; ?>
10
- <?php else: ?>
11
- <p><?php _ex('Your listing changes were saved.', 'templates', 'WPBDM'); ?></p>
12
  <?php endif; ?>
13
 
14
  <p>
15
- <?php if ( 'publish' == get_post_status( $listing->get_id() ) ): ?>
16
- <a href="<?php echo get_permalink( $listing->get_id() ); ?>"><?php _ex( 'Go to your listing', 'templates', 'WPBDM' ); ?></a> |
17
- <?php else: ?>
18
- <?php _ex( 'Your listing requires admin approval. You\'ll be notified once your listing is approved.', 'templates', 'WPBDM' ); ?>
19
  </p>
20
  <p>
21
  <?php endif; ?>
22
- <a href="<?php echo wpbdp_get_page_link( 'main' ); ?>"><?php _ex( 'Return to directory.', 'templates', 'WPBDM' ); ?></a>
23
  </p>
1
+ <?php
2
+ /**
3
+ * Submit Listing Done Template
4
+ *
5
+ * @package WPBDP/Templates
6
+ */
7
 
8
+ ?>
9
+ <h3><?php echo esc_html_x( 'Submission Received', 'templates', 'WPBDM' ); ?></h3>
10
+
11
+ <?php if ( ! $editing ) : ?>
12
+ <p><?php echo esc_html_x( 'Your listing has been submitted.', 'templates', 'WPBDM' ); ?></p>
13
+ <?php if ( $payment && $payment->amount > 0.0 ) : ?>
14
+ <p>
15
+ <?php echo esc_html( wpbdp_get_option( 'payment-message' ) ); ?>
16
+ </p>
17
+ <div id="wpbdp-checkout-confirmation-receipt">
18
+ <?php echo wpbdp()->payments->render_receipt( $payment ); ?>
19
+ </div>
20
  <?php endif; ?>
21
+ <?php else : ?>
22
+ <p><?php echo esc_html_x( 'Your listing changes were saved.', 'templates', 'WPBDM' ); ?></p>
23
  <?php endif; ?>
24
 
25
  <p>
26
+ <?php if ( 'publish' === get_post_status( $listing->get_id() ) ) : ?>
27
+ <a href="<?php echo esc_attr( get_permalink( $listing->get_id() ) ); ?>"><?php echo esc_html_x( 'Go to your listing', 'templates', 'WPBDM' ); ?></a> |
28
+ <?php else : ?>
29
+ <?php echo esc_html_x( 'Your listing requires admin approval. You\'ll be notified once your listing is approved.', 'templates', 'WPBDM' ); ?>
30
  </p>
31
  <p>
32
  <?php endif; ?>
33
+ <a href="<?php echo esc_attr( wpbdp_get_page_link( 'main' ) ); ?>"><?php echo esc_html_x( 'Return to directory.', 'templates', 'WPBDM' ); ?></a>
34
  </p>