Business Directory Plugin - Version 4.1.6

Version Description

Download this release

Release Info

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

Code changes from version 4.1.5 to 4.1.6

README.TXT CHANGED
@@ -2,10 +2,10 @@
2
  Contributors: businessdirectoryplugin
3
  Donate link: http://businessdirectoryplugin.com/premium-modules/
4
  Tags: business directory, address book, chamber of commerce business directory, church directory, local business directory, company business directory, contact directory, custom business directory, directory, listings directory, link directory, member directory, staff directory, directory plugin
5
- Requires at least: 4.1
6
- Tested up to: 4.6.1
7
- Last Updated: 2016-Dec 1
8
- Stable tag: tags/4.1.5
9
  License: GPLv2 or later
10
 
11
  Build any kind of local directory, directory of business providers, a Yellow-Pages business directory, Yelp-like review directory and much more!
@@ -141,6 +141,17 @@ If you are having problems please visit [support forum](http://www.businessdirec
141
 
142
  == Changelog ==
143
 
 
 
 
 
 
 
 
 
 
 
 
144
  = Version 4.1.5 =
145
  * Add support for template block/variable metadata in PHP comments.
146
  * Fix support for template variables customization outside of themes.
2
  Contributors: businessdirectoryplugin
3
  Donate link: http://businessdirectoryplugin.com/premium-modules/
4
  Tags: business directory, address book, chamber of commerce business directory, church directory, local business directory, company business directory, contact directory, custom business directory, directory, listings directory, link directory, member directory, staff directory, directory plugin
5
+ Requires at least: 4.2
6
+ Tested up to: 4.7
7
+ Last Updated: 2016-Dec 13
8
+ Stable tag: tags/4.1.6
9
  License: GPLv2 or later
10
 
11
  Build any kind of local directory, directory of business providers, a Yellow-Pages business directory, Yelp-like review directory and much more!
141
 
142
  == Changelog ==
143
 
144
+ = Version 4.1.6 =
145
+ * Fix error in migration routine affecting multivalued fields on some sites.
146
+ * Introduce new setting for comment handling to prevent duplicate comment forms.
147
+ * Review compatibility with WordPress 4.7.
148
+ * Fix preview links for admins.
149
+ * Fix a problem with URL redirection to custom login pages.
150
+ * Accept one option per line (including commas) as part of a multivalued field options.
151
+ * Improve Schema.org integration
152
+ * Add Swedish translation.
153
+ * Add CSS fix for quick search box.
154
+
155
  = Version 4.1.5 =
156
  * Add support for template block/variable metadata in PHP comments.
157
  * Fix support for template variables customization outside of themes.
admin/form-fields.php CHANGED
@@ -254,6 +254,11 @@ class WPBDP_FormFieldsAdmin {
254
  $this->admin->messages[] = array( $ret->get_error_message(), 'error' );
255
  } else {
256
  $this->admin->messages[] = _x( 'Field deleted.', 'form-fields admin', 'WPBDM' );
 
 
 
 
 
257
  }
258
 
259
  return $this->fieldsTable();
254
  $this->admin->messages[] = array( $ret->get_error_message(), 'error' );
255
  } else {
256
  $this->admin->messages[] = _x( 'Field deleted.', 'form-fields admin', 'WPBDM' );
257
+
258
+ $quick_search_fields = wpbdp_get_option( 'quick-search-fields' );
259
+ $quick_search_fields = array_diff( $quick_search_fields, array( $_REQUEST['id'] ) );
260
+
261
+ wpbdp_set_option( 'quick-search-fields', $quick_search_fields );
262
  }
263
 
264
  return $this->fieldsTable();
business-directory-plugin.php CHANGED
@@ -3,7 +3,7 @@
3
  * Plugin Name: Business Directory Plugin
4
  * Plugin URI: http://www.businessdirectoryplugin.com
5
  * Description: Provides the ability to maintain a free or paid business directory on your WordPress powered site.
6
- * Version: 4.1.5
7
  * Author: D. Rodenbaugh
8
  * Author URI: http://businessdirectoryplugin.com
9
  * Text Domain: WPBDM
@@ -31,7 +31,7 @@
31
  if( preg_match( '#' . basename( __FILE__ ) . '#', $_SERVER['PHP_SELF'] ) )
32
  exit();
33
 
34
- define( 'WPBDP_VERSION', '4.1.5' );
35
 
36
  define( 'WPBDP_PATH', wp_normalize_path( plugin_dir_path( __FILE__ ) ) );
37
  define( 'WPBDP_URL', trailingslashit( plugins_url( '/', __FILE__ ) ) );
@@ -503,7 +503,8 @@ class WPBDP_Plugin {
503
  if ( ! $login_url )
504
  return;
505
 
506
- $url = add_query_arg( 'redirect_to', urlencode( home_url( $_SERVER['REQUEST_URI'] ) ), $login_url );
 
507
  wp_redirect( esc_url_raw( $url ) );
508
  exit();
509
  }
@@ -801,9 +802,16 @@ class WPBDP_Plugin {
801
 
802
  /* theme filters */
803
  public function _comments_template($template) {
 
 
 
 
 
 
 
 
804
  // disable comments in WPBDP pages or if comments are disabled for listings
805
- if ( (is_single() && get_post_type() == WPBDP_POST_TYPE && !$this->settings->get('show-comment-form')) ||
806
- (get_post_type() == 'page' && get_the_ID() == wpbdp_get_page_id('main') ) ) {
807
  return WPBDP_TEMPLATES_PATH . '/empty-template.php';
808
  }
809
 
3
  * Plugin Name: Business Directory Plugin
4
  * Plugin URI: http://www.businessdirectoryplugin.com
5
  * Description: Provides the ability to maintain a free or paid business directory on your WordPress powered site.
6
+ * Version: 4.1.6
7
  * Author: D. Rodenbaugh
8
  * Author URI: http://businessdirectoryplugin.com
9
  * Text Domain: WPBDM
31
  if( preg_match( '#' . basename( __FILE__ ) . '#', $_SERVER['PHP_SELF'] ) )
32
  exit();
33
 
34
+ define( 'WPBDP_VERSION', '4.1.6' );
35
 
36
  define( 'WPBDP_PATH', wp_normalize_path( plugin_dir_path( __FILE__ ) ) );
37
  define( 'WPBDP_URL', trailingslashit( plugins_url( '/', __FILE__ ) ) );
503
  if ( ! $login_url )
504
  return;
505
 
506
+ $current_url = ( is_ssl() ? 'https://' : 'http://' ) . $_SERVER['HTTP_HOST'] . $_SERVER['REQUEST_URI'];
507
+ $url = add_query_arg( 'redirect_to', urlencode( $current_url ), $login_url );
508
  wp_redirect( esc_url_raw( $url ) );
509
  exit();
510
  }
802
 
803
  /* theme filters */
804
  public function _comments_template($template) {
805
+ $is_single_listing = is_single() && get_post_type() == WPBDP_POST_TYPE;
806
+ $is_main_page = get_post_type() == 'page' && get_the_ID() == wpbdp_get_page_id( 'main' );
807
+
808
+ $comments_allowed = in_array(
809
+ $this->settings->get( 'allow-comments-in-listings' ),
810
+ array( 'allow-comments', 'allow-comments-and-insert-template' )
811
+ );
812
+
813
  // disable comments in WPBDP pages or if comments are disabled for listings
814
+ if ( ( $is_single && ! $comments_allowed ) || $is_main_page ) {
 
815
  return WPBDP_TEMPLATES_PATH . '/empty-template.php';
816
  }
817
 
core/api.php CHANGED
@@ -288,7 +288,7 @@ function wpbdp_user_can($action, $listing_id=null, $user_id=null) {
288
  switch ($action) {
289
  case 'view':
290
  if ( isset( $_GET['preview'] ) ) {
291
- $res = user_can( $user_id, 'editor' ) || ( $post->post_author && $post->post_author == $user_id );
292
  } else {
293
  $res = true;
294
  }
288
  switch ($action) {
289
  case 'view':
290
  if ( isset( $_GET['preview'] ) ) {
291
+ $res = user_can( $user_id, 'edit_others_posts' ) || ( $post->post_author && $post->post_author == $user_id );
292
  } else {
293
  $res = true;
294
  }
core/class-form-field-type.php CHANGED
@@ -233,6 +233,46 @@ class WPBDP_Form_Field_Type {
233
  return $html;
234
  }
235
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
236
  /**
237
  * Called after a field of this type is deleted.
238
  * @param object $field the deleted WPBDP_FormField object.
@@ -310,8 +350,8 @@ class WPBDP_Form_Field_Type {
310
  if ( $label )
311
  $html .= '<label>' . esc_html( apply_filters( 'wpbdp_display_field_label', $label, $labelorfield ) ) . ':</label> ';
312
 
313
- if ($content)
314
- $html .= '<span class="value">' . $content . '</span>';
315
 
316
  $html .= '</div>';
317
 
233
  return $html;
234
  }
235
 
236
+ /**
237
+ * @since 4.1.7
238
+ */
239
+ public function get_schema_org( $field, $post_id ) {
240
+ $schema = array();
241
+
242
+ switch ( $field->get_tag() ) {
243
+ case 'title':
244
+ $schema['name'] = $field->plain_value( $post_id );
245
+ break;
246
+ case 'category':
247
+ break;
248
+ case 'excerpt':
249
+ $schema['description'] = $field->plain_value( $post_id );
250
+ break;
251
+ case 'address':
252
+ $schema['address'] = array( 'streetAddress' => $field->plain_value( $post_id ) );
253
+ break;
254
+ case 'city':
255
+ $schema['address'] = array( 'addressLocality' => $field->plain_value( $post_id ) );
256
+ break;
257
+ case 'state':
258
+ $schema['address'] = array( 'addressRegion' => $field->plain_value( $post_id ) );
259
+ break;
260
+ case 'zip':
261
+ $schema['address'] = array( 'postalCode' => $field->plain_value( $post_id ) );
262
+ break;
263
+ case 'fax':
264
+ $schema['faxNumber'] = $field->plain_value( $post_id );
265
+ break;
266
+ case 'phone':
267
+ $schema['telephone'] = $field->plain_value( $post_id );
268
+ break;
269
+ case 'website':
270
+ break;
271
+ }
272
+
273
+ return $schema;
274
+ }
275
+
276
  /**
277
  * Called after a field of this type is deleted.
278
  * @param object $field the deleted WPBDP_FormField object.
350
  if ( $label )
351
  $html .= '<label>' . esc_html( apply_filters( 'wpbdp_display_field_label', $label, $labelorfield ) ) . ':</label> ';
352
 
353
+ if ( $content )
354
+ $html .= sprintf( '<span class="value">' . $content . '</span>' );
355
 
356
  $html .= '</div>';
357
 
core/class-form-field.php CHANGED
@@ -467,6 +467,13 @@ class WPBDP_Form_Field {
467
  return $html;
468
  }
469
 
 
 
 
 
 
 
 
470
  /**
471
  * Returns HTML apt for displaying this field in forms.
472
  * @param mixed $value the value to be displayed. defaults to null.
467
  return $html;
468
  }
469
 
470
+ /**
471
+ * @since 4.1.6
472
+ */
473
+ public function get_schema_org( $post_id ) {
474
+ return $this->type->get_schema_org( $this, $post_id );
475
+ }
476
+
477
  /**
478
  * Returns HTML apt for displaying this field in forms.
479
  * @param mixed $value the value to be displayed. defaults to null.
core/class-listings-api.php CHANGED
@@ -135,8 +135,12 @@ class WPBDP_Listings_API {
135
  return false;
136
 
137
  // comments on listings
138
- if (get_post_type($post_id) == WPBDP_POST_TYPE)
139
- return wpbdp_get_option('show-comment-form');
 
 
 
 
140
 
141
  return $open;
142
  }
135
  return false;
136
 
137
  // comments on listings
138
+ if ( get_post_type( $post_id ) == WPBDP_POST_TYPE ) {
139
+ return in_array(
140
+ wpbdp_get_option( 'allow-comments-in-listings' ),
141
+ array( 'allow-comments', 'allow-comments-and-insert-template' )
142
+ );
143
+ }
144
 
145
  return $open;
146
  }
core/class-settings.php CHANGED
@@ -148,7 +148,7 @@ class WPBDP_Settings {
148
  'choice',
149
  array(),
150
  $desc,
151
- array( 'choices' => array( &$this, 'quicksearch_fields_cb' ), 'use_checkboxes' => false, 'multiple' => true )
152
  );
153
  $this->add_setting( $s,
154
  'quick-search-enable-performance-tricks',
@@ -215,12 +215,26 @@ class WPBDP_Settings {
215
  'admin settings',
216
  'WPBDM') );
217
  $this->register_dep( 'contact-form-daily-limit', 'requires-true', 'show-contact-form' );
218
- $this->add_setting( $s,
219
- 'show-comment-form',
220
- _x( 'Include comment form on listing pages?', 'admin settings', 'WPBDM' ),
221
- 'boolean',
222
- false,
223
- _x( 'Allow visitors to discuss listings using the standard WordPress comment form. Comments are public.', 'admin settings', 'WPBDM' ) );
 
 
 
 
 
 
 
 
 
 
 
 
 
 
224
  $this->add_setting($s, 'show-listings-under-categories', _x('Show listings under categories on main page?', 'admin settings', 'WPBDM'), 'boolean', false);
225
  $this->add_setting($s, 'status-on-uninstall', _x('Status of listings upon uninstalling plugin', 'admin settings', 'WPBDM'), 'choice', 'trash', '',
226
  array('choices' => array( array( 'draft', _x( 'Draft', 'post status' ) ), array( 'trash', _x( 'Trash', 'post status' ) ) )));
@@ -317,7 +331,7 @@ class WPBDP_Settings {
317
  array(),
318
  '',
319
  array( 'choices' => array( &$this, 'sortbar_fields_cb' ),
320
- 'use_checkboxes' => true,
321
  'multiple' =>true ) );
322
  $this->register_dep( 'listings-sortbar-fields', 'requires-true', 'listings-sortbar-enabled' );
323
 
@@ -362,7 +376,7 @@ class WPBDP_Settings {
362
  'listing-edit' => _x( 'A listing is edited.', 'admin settings', 'WPBDM' ),
363
  'renewal' => _x( 'A listing expires.', 'admin settings', 'WPBDM' ),
364
  'listing-contact' => _x( 'A contact message is sent to a listing\'s owner.', 'admin settings', 'WPBDM' ) ),
365
- 'use_checkboxes' => true,
366
  'multiple' => true )
367
  );
368
  $this->add_setting( $s,
@@ -381,7 +395,7 @@ class WPBDP_Settings {
381
  'listing-published' => _x( 'Their listing is approved/published.', 'admin settings', 'WPBDM' )/*,
382
  'payment-status-change' => _x( 'A payment status changes (sends a receipt).', 'admin settings', 'WPBDM' ),*/
383
  ),
384
- 'use_checkboxes' => true,
385
  'multiple' => true )
386
  );
387
 
@@ -629,7 +643,7 @@ EOF;
629
  '',
630
  array( 'choices' => array( array( 'theme', _x( 'Use the BD theme style for BD buttons', 'admin settings', 'WPBDM' ) ),
631
  array( 'none', _x( 'Use the WP theme style for BD buttons', 'admin settings', 'WPBDM' ) ) ),
632
- 'use_checkboxes' => false ) );
633
  // }
634
 
635
 
@@ -1286,7 +1300,14 @@ EOF;
1286
  $value = $this->get($setting->name);
1287
 
1288
  $multiple = isset( $args['multiple'] ) && $args['multiple'] ? true : false;
1289
- $widget = $multiple ? ( isset( $args['use_checkboxes'] ) && $args['use_checkboxes'] ? 'checkbox' : 'multiselect' ) : 'select'; // TODO: Add support for radios.
 
 
 
 
 
 
 
1290
 
1291
  if ( 'multiselect' == $widget )
1292
  $multiple = true;
@@ -1308,9 +1329,12 @@ EOF;
1308
  }
1309
 
1310
  $html .= '</select>';
1311
- } elseif ( $widget == 'checkbox' ) {
 
 
1312
  foreach ( $choices as $k => $v ) {
1313
- $html .= sprintf( '<label><input type="checkbox" name="%s[]" value="%s" %s />%s</label><br />',
 
1314
  self::PREFIX . $setting->name,
1315
  $k,
1316
  ( $value && in_array( $k, $value ) ) ? 'checked="checked"' : '',
@@ -1318,7 +1342,9 @@ EOF;
1318
  }
1319
  }
1320
 
1321
- $html .= '<span class="description">' . $setting->help_text . '</span>';
 
 
1322
 
1323
  echo apply_filters( 'wpbdp_settings_render', $html, $setting, $args );
1324
  }
148
  'choice',
149
  array(),
150
  $desc,
151
+ array( 'choices' => array( &$this, 'quicksearch_fields_cb' ), 'multiple' => true )
152
  );
153
  $this->add_setting( $s,
154
  'quick-search-enable-performance-tricks',
215
  'admin settings',
216
  'WPBDM') );
217
  $this->register_dep( 'contact-form-daily-limit', 'requires-true', 'show-contact-form' );
218
+
219
+ $this->add_setting(
220
+ $s,
221
+ 'allow-comments-in-listings',
222
+ _x( 'Include comment form on listing pages?', 'admin settings', 'WPBDM' ),
223
+ 'choice',
224
+ get_option( self::PREFIX . 'show-comment-form', false ) ? 'allow-comments-and-insert-template' : 'do-not-allow-comments',
225
+ _x( "BD uses the standard comment inclusion from WordPress, but most themes only allow for comments on posts, not pages. Some themes handle both. BD is displayed on a page, so we need a theme that can handle both to show comments. Use the 2nd option if you want to allow comments on listings first, and if that doesn't work, try the 3rd option instead.", 'admin settings', 'WPBDM' ),
226
+ array(
227
+ 'choices' => array(
228
+ 'do-not-allow-comments' => _x( 'Do not include comments in listings', 'admin settings', 'WPBDM' ),
229
+ 'allow-comments' => _x( 'Include comment form, theme invoked (standard option)', 'admin settings', 'WPBDM' ),
230
+ 'allow-comments-and-insert-template' => _x( "Include comment form, BD invoked (use only if 2nd option doesn't work)", 'admin settings', 'WPBDM' ),
231
+ ),
232
+ 'widget' => 'radio',
233
+ )
234
+ );
235
+
236
+
237
+
238
  $this->add_setting($s, 'show-listings-under-categories', _x('Show listings under categories on main page?', 'admin settings', 'WPBDM'), 'boolean', false);
239
  $this->add_setting($s, 'status-on-uninstall', _x('Status of listings upon uninstalling plugin', 'admin settings', 'WPBDM'), 'choice', 'trash', '',
240
  array('choices' => array( array( 'draft', _x( 'Draft', 'post status' ) ), array( 'trash', _x( 'Trash', 'post status' ) ) )));
331
  array(),
332
  '',
333
  array( 'choices' => array( &$this, 'sortbar_fields_cb' ),
334
+ 'widget' => 'checkbox',
335
  'multiple' =>true ) );
336
  $this->register_dep( 'listings-sortbar-fields', 'requires-true', 'listings-sortbar-enabled' );
337
 
376
  'listing-edit' => _x( 'A listing is edited.', 'admin settings', 'WPBDM' ),
377
  'renewal' => _x( 'A listing expires.', 'admin settings', 'WPBDM' ),
378
  'listing-contact' => _x( 'A contact message is sent to a listing\'s owner.', 'admin settings', 'WPBDM' ) ),
379
+ 'widget' => 'checkbox',
380
  'multiple' => true )
381
  );
382
  $this->add_setting( $s,
395
  'listing-published' => _x( 'Their listing is approved/published.', 'admin settings', 'WPBDM' )/*,
396
  'payment-status-change' => _x( 'A payment status changes (sends a receipt).', 'admin settings', 'WPBDM' ),*/
397
  ),
398
+ 'widget' => 'checkbox',
399
  'multiple' => true )
400
  );
401
 
643
  '',
644
  array( 'choices' => array( array( 'theme', _x( 'Use the BD theme style for BD buttons', 'admin settings', 'WPBDM' ) ),
645
  array( 'none', _x( 'Use the WP theme style for BD buttons', 'admin settings', 'WPBDM' ) ) ),
646
+ ) );
647
  // }
648
 
649
 
1300
  $value = $this->get($setting->name);
1301
 
1302
  $multiple = isset( $args['multiple'] ) && $args['multiple'] ? true : false;
1303
+
1304
+ if ( isset( $args['widget'] ) ) {
1305
+ $widget = $args['widget'];
1306
+ } elseif ( $multiple ) {
1307
+ $widget = 'multiselect';
1308
+ } else {
1309
+ $widget = 'select';
1310
+ }
1311
 
1312
  if ( 'multiselect' == $widget )
1313
  $multiple = true;
1329
  }
1330
 
1331
  $html .= '</select>';
1332
+ } elseif ( $widget == 'checkbox' || $widget == 'radio' ) {
1333
+ $value = (array) $value;
1334
+
1335
  foreach ( $choices as $k => $v ) {
1336
+ $html .= sprintf( '<label><input type="%s" name="%s[]" value="%s" %s />%s</label><br />',
1337
+ $widget,
1338
  self::PREFIX . $setting->name,
1339
  $k,
1340
  ( $value && in_array( $k, $value ) ) ? 'checked="checked"' : '',
1342
  }
1343
  }
1344
 
1345
+ if ( $setting->help_text ) {
1346
+ $html .= '<br /><span class="description">' . $setting->help_text . '</span>';
1347
+ }
1348
 
1349
  echo apply_filters( 'wpbdp_settings_render', $html, $setting, $args );
1350
  }
core/css/wpbdp.css CHANGED
@@ -296,14 +296,6 @@ form#wpbdmsearchform a.advanced-search-link {
296
  clear: both;
297
  }
298
 
299
- .wpbdp-bar .wpbdp-main-links {
300
- float: left;
301
- }
302
-
303
- .wpbdp-bar .wpbdp-main-links #wpbdp-bar-view-listings-button,.wpbdp-bar .wpbdp-main-links #wpbdp-bar-show-directory-button{
304
- margin-right: 5px;
305
- }
306
-
307
  .wpbdp-bar .wpbdp-search-form {
308
  margin: 0;
309
  padding: 0 !important;
@@ -671,26 +663,6 @@ table#wpbdp-manage-recurring a.cancel-subscription {
671
  display: none;
672
  }
673
 
674
- .wpbdp-bar .wpbdp-main-links {
675
- display: block;
676
- float: none;
677
- text-align: center;
678
- }
679
- .wpbdp-bar .wpbdp-main-links #wpbdp-bar-submit-listing-button{
680
- margin-bottom: 5px;
681
- display: inline-block;
682
- }
683
- .wpbdp-bar .wpbdp-main-links #wpbdp-bar-view-listings-button{
684
- display: inline-block;
685
- float: left;
686
- margin-right: 20px;
687
- }
688
-
689
- .wpbdp-bar .wpbdp-main-links input[type="button"] {
690
- display: block;
691
- margin-bottom: 2px;
692
- }
693
-
694
  .wpbdp-bar form.wpbdp-search-form {
695
  /* width: 49%;*/
696
  display: block;
@@ -847,11 +819,16 @@ body.business-directory #TB_secondLine {
847
 
848
  /* Main search box. {{ */
849
 
 
 
 
 
 
 
850
  .wpbdp-main-box {
851
  background: #f7f7f7;
852
  margin: 10px 0 20px 0;
853
  border-radius: 4px;
854
- box-sizing: border-box;
855
  padding: 10px;
856
  width: 100%;
857
  }
@@ -881,34 +858,6 @@ body.business-directory #TB_secondLine {
881
  text-decoration: none;
882
  }
883
 
884
- .wpbdp-main-box .wpbdp-main-links {
885
- text-align: right;
886
- }
887
-
888
- .wpbdp-main-box .wpbdp-main-links .button {
889
- margin: 0 5px;
890
- }
891
- .wpbdp-main-box .wpbdp-main-links .button:first-child {
892
- margin-left: 0;
893
- }
894
-
895
- .wpbdp-main-box .wpbdp-main-links .button:last-child {
896
- margin-right: 0;
897
- }
898
-
899
- .wpbdp-main-box-tiny .wpbdp-main-links .button {
900
- padding-top: 10px;
901
- padding-bottom: 10px;
902
- width: 100%;
903
- margin: 0 0 4px;
904
- }
905
-
906
- .wpbdp-main-box-small .wpbdp-main-links .button,
907
- .wpbdp-main-box-medium .wpbdp-main-links .button {
908
- padding-top: 8px;
909
- padding-bottom: 8px;
910
- }
911
-
912
  .wpbdp-main-box-medium .box-col,
913
  .wpbdp-main-box-large .box-col {
914
  float: left;
@@ -962,9 +911,66 @@ body.business-directory #TB_secondLine {
962
  width: 22%;
963
  }
964
 
965
- .wpbdp-main-box-large .wpbdp-main-links .button {
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
966
  margin: 0 3px;
967
  }
 
968
  /*
969
  * }}
970
  *
296
  clear: both;
297
  }
298
 
 
 
 
 
 
 
 
 
299
  .wpbdp-bar .wpbdp-search-form {
300
  margin: 0;
301
  padding: 0 !important;
663
  display: none;
664
  }
665
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
666
  .wpbdp-bar form.wpbdp-search-form {
667
  /* width: 49%;*/
668
  display: block;
819
 
820
  /* Main search box. {{ */
821
 
822
+ .wpbdp-main-box,
823
+ .wpbdp-main-box .box-row,
824
+ .wpbdp-main-box .box-col {
825
+ box-sizing: border-box;
826
+ }
827
+
828
  .wpbdp-main-box {
829
  background: #f7f7f7;
830
  margin: 10px 0 20px 0;
831
  border-radius: 4px;
 
832
  padding: 10px;
833
  width: 100%;
834
  }
858
  text-decoration: none;
859
  }
860
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
861
  .wpbdp-main-box-medium .box-col,
862
  .wpbdp-main-box-large .box-col {
863
  float: left;
911
  width: 22%;
912
  }
913
 
914
+
915
+ .wpbdp-main-links {
916
+ text-align: right;
917
+ }
918
+
919
+ .wpbdp-main-links .button {
920
+ margin: 0 5px;
921
+ }
922
+ .wpbdp-main-links .button:first-child {
923
+ margin-left: 0;
924
+ }
925
+
926
+ .wpbdp-main-links .button:last-child {
927
+ margin-right: 0;
928
+ }
929
+
930
+ .wpbdp-main-links-tiny .wpbdp-main-links .button {
931
+ padding-top: 10px;
932
+ padding-bottom: 10px;
933
+ width: 100%;
934
+ margin: 0 0 4px;
935
+ }
936
+
937
+ .wpbdp-main-links-small .button {
938
+ padding-top: 10px;
939
+ padding-bottom: 10px;
940
+ width: 100%;
941
+ margin: 0 0 4px;
942
+ }
943
+
944
+ .wpbdp-main-links-small .wpbdp-main-links-2-buttons .button {
945
+ width: 49%;
946
+ }
947
+ .wpbdp-main-links-small .wpbdp-main-links-2-buttons .button:first-child {
948
+ margin-right: 1%;
949
+ }
950
+ .wpbdp-main-links-small .wpbdp-main-links-2-buttons .button:last-child {
951
+ margin-left: 1%;
952
+ }
953
+
954
+ .wpbdp-main-links-small .wpbdp-main-links-3-buttons .button:nth-child(2n) {
955
+ width: 49%;
956
+ margin-top: 1%;
957
+ margin-right: 1%;
958
+ }
959
+ .wpbdp-main-links-small .wpbdp-main-links-3-buttons .button:nth-child(2n+3) {
960
+ width: 49%;
961
+ margin-top: 1%;
962
+ margin-left: 1%;
963
+ }
964
+
965
+ .wpbdp-main-links-medium .wpbdp-main-links .button {
966
+ padding-top: 8px;
967
+ padding-bottom: 8px;
968
+ }
969
+
970
+ .wpbdp-main-links-large .button {
971
  margin: 0 3px;
972
  }
973
+
974
  /*
975
  * }}
976
  *
core/css/wpbdp.min.css CHANGED
@@ -1 +1 @@
1
- .wpbdp-cf:before,.wpbdp-cf:after,.cf:before,.cf:after{content:" ";display:table}.wpbdp-cf:after,.cf:after{clear:both}.wpbdp-cf,.cf{*zoom:1}form#wpbdmsearchform{padding:12px 0;text-align:center}form#wpbdmsearchform input{display:inline}form#wpbdmsearchform .wpbdmsearchbutton{margin-top:5px}form#wpbdmsearchform a.advanced-search-link{font-size:70%;display:block}#wpbdp-search-form{padding-left:10px}#wpbdp-search-form .wpbdp-search-filter{margin-bottom:10px;clear:both}#wpbdp-search-form .wpbdp-search-filter>.wpbdp-search-field-label{display:block;width:40%;float:left}#wpbdp-search-form .wpbdp-search-filter>div.field{display:block;width:60%;margin-left:40%;padding-left:5px}#wpbdp-search-form .wpbdp-search-filter>div.field>input[type="text"]{width:90%}#wpbdp-search-form .wpbdp-search-filter>div.field>select{width:90%}#wpbdp-search-form input[type="submit"]{float:none;margin:auto}.wpbdp-pagination{margin:25px 0 0 0}.wpbdp-pagination .next{float:right}.listing-actions form{margin:0;padding:0;display:inline}.listing-actions input{margin:0}.listing-actions input.delete-listing{margin-left:5px;margin-right:30px;color:#f00 !important}.listing-actions a.button{padding:5px 10px;font-size:11px;text-decoration:none;background-color:#e6e6e6;color:#7c7c7c;background-repeat:repeat-x;background-image:-moz-linear-gradient(top,#f4f4f4,#e6e6e6);background-image:-ms-linear-gradient(top,#f4f4f4,#e6e6e6);background-image:-webkit-linear-gradient(top,#f4f4f4,#e6e6e6);background-image:-o-linear-gradient(top,#f4f4f4,#e6e6e6);background-image:linear-gradient(top,#f4f4f4,#e6e6e6);border:1px solid #d2d2d2;border-radius:3px;box-shadow:0 1px 2px rgba(64,64,64,0.1);margin-right:3px}.listing-actions a.button:hover{color:#5e5e5e;background-color:#ebebeb;background-repeat:repeat-x;background-image:-moz-linear-gradient(top,#f9f9f9,#ebebeb);background-image:-ms-linear-gradient(top,#f9f9f9,#ebebeb);background-image:-webkit-linear-gradient(top,#f9f9f9,#ebebeb);background-image:-o-linear-gradient(top,#f9f9f9,#ebebeb);background-image:linear-gradient(top,#f9f9f9,#ebebeb)}.listing-actions a.delete-listing{margin-left:20px;color:red}.wpbdp-listing .listing-details .field-value{margin-bottom:10px;width:100%;float:none}.wpbdmsingledetails .singledetailsview .field-value{margin-bottom:10px}.field-value label{color:#444;font-weight:bold}.wpbdp-listing-excerpt{padding:10px;border-bottom:dotted 1px #ddd}.wpbdp-listing-excerpt.odd{background:#eee}.wpbdp-listing-excerpt.sticky{background:#fff0cf;border-bottom:solid 1px #b37800}.wpbdp-listing-excerpt .listing-thumbnail{float:right;margin:0 10px 0 0}.wpbdp-listing-excerpt .listing-actions{margin-top:15px}.wpbdp-listing-single .listing-actions{margin-bottom:25px}.wpbdp-listing-single.sticky{margin-top:30px}.wpbdp-listing-single .stickytag{float:right;margin-top:-68px}.wpbdp-listing-single .stickytag img{border:0;box-shadow:none;background:transparent}.wpbdp-listing-single .listing-title{padding:2px 8px;background:#efefef;border:dotted 1px #ddd;margin-bottom:7px}.wpbdp-listing-single .listing-title h2{clear:none;margin:0}.wpbdp-listing-single .main-image{float:right;margin-left:10px;padding:5px}.wpbdp-listing-single .main-image a{position:relative !important}.wpbdp-listing-single .main-image img{border:solid 1px #333}.wpbdp-listing-single .extra-images{margin-top:10px;clear:both}.wpbdp-listing-single .extra-images ul{margin:0 auto;width:100%}.wpbdp-listing-single .extra-images ul li{list-style-type:none;display:inline;margin-left:5px}.wpbdp-listing-single .extra-images ul li img{display:inline;vertical-align:top;margin:0 auto;max-width:150px;border:solid 1px #333}.wpbdp-listing .social-fields{margin:20px 0}.wpbdp-listing .social-field{margin:5px 0;height:20px;vertical-align:middle}.social-field.facebook .fb-like>span{overflow:visible !important;width:450px !important;vertical-align:top !important}@media screen and (max-width:500px){.social-field.facebook .fb-like>span{width:100% !important}}.wpbdp-listing-contact-form{margin-top:20px;border-top:dotted 1px #ddd;padding-top:20px;padding-left:10px}.wpbdp-listing-contact-form .send-message-button{margin-left:-10px}.wpbdp-listing-contact-form h3{margin-left:-10px}.wpbdp-listing-contact-form textarea{width:98% !important}.wpbdp-listing .comments{margin-top:20px}.wpbdp-bar{background:#f7f7f7;margin:10px 0 20px 0;padding:5px 10px}.wpbdp-bar:before,.wpbdp-bar:after{content:" ";display:table;clear:both}.wpbdp-bar .wpbdp-main-links{float:left}.wpbdp-bar .wpbdp-main-links #wpbdp-bar-view-listings-button,.wpbdp-bar .wpbdp-main-links #wpbdp-bar-show-directory-button{margin-right:5px}.wpbdp-bar .wpbdp-search-form{margin:0;padding:0 !important;margin-left:50%}.wpbdp-main-links a{margin-right:15px}.wpbdp-bar .left{float:left;text-align:center}.wpbdp-bar .right{width:300px;float:right}.wpbdp-listings-sort-options{font-size:90%;margin:5px 0;text-align:right}.wpbdp-listings-sort-options .current{font-weight:bold}.wpbdp-page-main_page #wpbdp-categories{clear:both;margin-bottom:20px}ul.wpbdp-categories{margin:0 0 10px 15px;padding:0 10px}ul.wpbdp-categories>li{width:50%;float:left;margin:0}@media screen and (max-width:704px){ul.wpbdp-categories>li{float:none;width:initial}}@media screen and (max-width:500px){ul.wpbdp-categories{font-size:90%}ul.wpbdp-categories ul.children li.cat-item{margin-left:10px;padding:0}}.wpbdp-submit-page h3{margin-bottom:10px}.wpbdp-submit-page .wpbdmp{margin:0}.wpbdp-submit-page legend{font-size:85%;margin-bottom:20px}.wpbdp-submit-page .wpbdp-form-field{margin-bottom:8px}.wpbdp-submit-page .wpbdp-form-field .wpbdmcheckboxclass checkbox{margin-left:0}.wpbdp-submit-page .wpbdp-form-field.required .wpbdp-form-field-label:after{content:' *';font-size:80%}.wpbdp-submit-page .wpbdp-form-field-type-textarea textarea{min-width:90%;min-height:50px}.wpbdp-submit-page .wpbdp-form-field-association-content textarea{min-height:80px}.wpbdp-form-field .field-description{font-size:90%;color:#696969;float:right}.wpbdp-form-field span.sublabel{font-size:90%;margin-left:10px;margin-right:10px}.wpbdp-form-field.image a.delete{margin-left:10px}ul.validation-errors{margin:15px 0 15px 0}ul.validation-errors li{color:red;margin:3px 0;list-style-position:inside}.wpbdp-submit-page.step-fees h4{background:#ddd;color:#333;padding:10px;margin-bottom:5px}.wpbdp-submit-page.step-images #image-upload-form{margin:15px 10px}.wpbdp-submit-page.step-images .wpbdp-image{float:left;border-bottom:dotted 1px #efefef;margin-right:10px;margin-bottom:10px;vertical-align:top}.wpbdp-submit-page.step-images .wpbdp-image img{vertical-align:top;text-align:center;max-width:150px;height:auto}.wpbdp-submit-page.step-images .wpbdp-image-draggable-highlight{width:160px;height:160px;margin:0 10px;background:red;float:left}.wpbdp-submit-page.step-images .area-and-conditions #image-upload-dnd-area{float:left;width:72%}.wpbdp-submit-page.step-images .area-and-conditions #image-upload-conditions{float:right;width:25%;color:#666}.wpbdp-submit-page.step-images .area-and-conditions #image-upload-conditions dl{margin:0}.wpbdp-submit-page.step-images #image-upload-form-no-js{width:0;height:0;overflow:hidden;visibility:hidden}.wpbdp-submit-page.step-images .wpbdp-image .delete-image{color:red}.wpbdp-submit-page .upgrade-to-featured-option{border:solid 1px #666;padding:5px 10px;margin:25px 0 25px 0;font-size:90%}.wpbdp-msg{font-size:85%;padding:.6em;border:solid 1px #e6db55;color:#555;margin:5px 0;background:#fffbcc;border-radius:3px}.wpbdp-msg.error{background-color:#ffebe8;border-color:#C00}.wpbdp-submit-page table.fee-options{width:100%}.wpbdp-submit-page table.fee-options th,.wpbdp-submit-page table.fee-options td{text-align:center}.wpbdp-submit-page table.fee-options td.fee-label,.wpbdp-submit-page table.fee-options tr.fee-description td{text-align:left}.wpbdp-submit-page table.fee-options .fee-selection{width:5%}.wpbdp-submit-page table.fee-options tr.fee-option td.fee-label{font-weight:bold}.wpbdp-submit-page table.fee-options td.fee-description{font-size:90%;color:#666}#wpbdp-renewal-page .do-not-renew-listing{margin:40px 0;border:solid 1px #eee;font-size:95%}#wpbdp-renewal-page .do-not-renew-listing .header{background:#bc0b0b;color:#fff;text-align:center;font-weight:bold;padding:2px 0}#wpbdp-renewal-page .do-not-renew-listing input[type="submit"]{color:#900000}.wpbdp-recaptcha-error{color:red}#wpbdp-delete-listing-page form.confirm-form{margin-top:30px}#wpbdp-delete-listing-page input.delete-listing-confirm{margin-left:20px;color:#c00}#googlewallet-buy img{border:0;box-shadow:none}.wpbdp-checkout input[type="image"]{padding:0;border:0;box-shadow:none;width:auto}table#wpbdp-manage-recurring th.listing-title,table#wpbdp-manage-recurring td.listing-title{min-width:200px}table#wpbdp-manage-recurring a.cancel-subscription{color:red}#wpbdp-manage-recurring-cancel dl dd{margin-left:10px}.wpbdp-cc-form{padding:0;width:90%}.wpbdp-cc-form h4{margin:0}.wpbdp-cc-field input{width:auto}.wpbdp-cc-field label{display:block;font-weight:bold;text-align:right;padding-right:10px}#wpbdp-billing-information .billing-info-section h4{margin:10px 0 5px 0}#wpbdp-billing-information .billing-info-section table{margin:1.75em 0}#wpbdp-billing-information #wpbdp-billing-field-exp,#wpbdp-billing-information #wpbdp-billing-field-exp-year{width:40%;display:inline}#wpbdp-billing-information .form-buttons{margin:15px 0}.wpbdp-show-on-mobile{display:none}@media screen and (max-width:500px){.wpbdp-show-on-mobile{display:inline !important}.wpbdp-hide-on-mobile{display:none}.wpbdp-bar .wpbdp-main-links{display:block;float:none;text-align:center}.wpbdp-bar .wpbdp-main-links #wpbdp-bar-submit-listing-button{margin-bottom:5px;display:inline-block}.wpbdp-bar .wpbdp-main-links #wpbdp-bar-view-listings-button{display:inline-block;float:left;margin-right:20px}.wpbdp-bar .wpbdp-main-links input[type="button"]{display:block;margin-bottom:2px}.wpbdp-bar form.wpbdp-search-form{display:block;margin-left:0;margin-top:10px}.wpbdp-bar form.wpbdp-search-form #intextbox{margin-bottom:5px;padding:4px}.wpbdp-bar form.wpbdp-search-form input[type="text"]{padding:4px 0;margin:0 0 2px 0}.wpbdp-listings-sort-options{font-size:90%}.wpbdp-listing.wpbdp-listing{font-size:90%}.wpbdp-listing.wpbdp-listing-excerpt .field-value>label{display:block}.wpbdp-listing.wpbdp-listing-excerpt .listing-thumbnail,.wpbdp-listing.wpbdp-listing-single .listing-thumbnail{float:none;padding:5px}.wpbdp-listing.wpbdp-listing-excerpt .listing-details,.wpbdp-listing.wpbdp-listing-single .listing-details{margin:0 5px;float:none;display:block}.wpbdp-listing .listing-actions input{font-size:85%}.wpbdp-listing .listing-actions input.back-to-dir{float:right}.wpbdp-listing.wpbdp-listing-single .main-image{display:block;float:none;padding:0;margin:0 0 10px 0;text-align:center;max-width:90%}.wpbdp-listing.wpbdp-listing-single .field-value>label{display:block}.wpbdp-submit-page.step-images #image-upload-dnd-area{font-size:90%;float:none !important;width:100% !important}.wpbdp-submit-page.step-images .dnd-area-inside-error{margin-top:30px}.wpbdp-submit-page.step-images #image-upload-conditions{width:100% !important;float:none !important;font-size:90%}.wpbdp-submit-page.step-images #image-upload-conditions dl{margin:0;padding:0}.wpbdp-submit-page.step-images #image-upload-conditions dl dt{margin:0;margin-right:5px;padding:0;float:left}.wpbdp-submit-page.step-images #image-upload-conditions dl dd{margin:0;padding:0;display:block}.wpbdp-submit-page.step-images .wpbdp-image img{max-width:50%}.wpbdp-listings-sort-options.wpbdp-show-on-mobile{margin-bottom:10px}}body.business-directory #TB_ImageOff .screen-reader-text,body.business-directory #TB_closeWindowButton .screen-reader-text{visibility:hidden}body.business-directory #TB_next{float:right}body.business-directory #TB_prev{float:left}body.business-directory #TB_caption{float:none !important}body.business-directory #TB_closeWindow{padding:0;height:0}body.business-directory #TB_closeWindow .screen-reader-text{display:none}body.business-directory #TB_secondLine{text-align:center}.wpbdp-form-row label{display:block}.wpbdp-form-row.wpbdp-form-textfield input[type="text"]{width:400px}.wpbdp-main-box{background:#f7f7f7;margin:10px 0 20px 0;border-radius:4px;box-sizing:border-box;padding:10px;width:100%}.wpbdp-main-box .box-row{margin-bottom:4px}.wpbdp-main-box .box-col{margin-bottom:4px;width:100%}.wpbdp-main-box .box-col input{width:100%}.wpbdp-main-box .submit-btn input[type="submit"]{margin-top:0}.wpbdp-main-box .advanced-search-link{border:0;box-shadow:none;display:block;font-size:11px;text-align:right;text-decoration:none}.wpbdp-main-box .wpbdp-main-links{text-align:right}.wpbdp-main-box .wpbdp-main-links .button{margin:0 5px}.wpbdp-main-box .wpbdp-main-links .button:first-child{margin-left:0}.wpbdp-main-box .wpbdp-main-links .button:last-child{margin-right:0}.wpbdp-main-box-tiny .wpbdp-main-links .button{padding-top:10px;padding-bottom:10px;width:100%;margin:0 0 4px}.wpbdp-main-box-small .wpbdp-main-links .button,.wpbdp-main-box-medium .wpbdp-main-links .button{padding-top:8px;padding-bottom:8px}.wpbdp-main-box-medium .box-col,.wpbdp-main-box-large .box-col{float:left}.wpbdp-main-box-medium .search-fields>.cols-1 .box-col,.wpbdp-main-box-large .search-fields>.cols-1 .box-col{width:100%}.wpbdp-main-box-medium .search-fields>.cols-2 .box-col,.wpbdp-main-box-large .search-fields>.cols-2 .box-col{width:50%}.wpbdp-main-box-medium .search-fields>.cols-2 .box-col:first-child,.wpbdp-main-box-large .search-fields>.cols-2 .box-col:first-child{padding-right:5px;width:50%}.wpbdp-main-box-medium .search-fields>.cols-2 .box-col:last-child,.wpbdp-main-box-large .search-fields>.cols-2 .box-col:last-child{padding-left:5px;width:50%}.wpbdp-main-box-medium .search-fields>.cols-3 .box-col,.wpbdp-main-box-large .search-fields>.cols-3 .box-col{padding-left:5px;width:50%}.wpbdp-main-box-medium .search-fields>.cols-3 .box-col:first-child,.wpbdp-main-box-large .search-fields>.cols-3 .box-col:first-child{padding-right:5px}.wpbdp-main-box-medium .search-fields>.cols-3 .box-col:first-child,.wpbdp-main-box-large .search-fields>.cols-3 .box-col:first-child{padding:0;width:100%}.wpbdp-main-box-large .box-row{margin-bottom:0}.wpbdp-main-box-large .search-fields{padding-right:5px;width:78%}.wpbdp-main-box-large .submit-btn{padding-left:5px;width:22%}.wpbdp-main-box-large .wpbdp-main-links .button{margin:0 3px}.single-wpbdp_listing .wpbdp-view-content-wrapper header.entry-header,.wpbdp-view-show_category .wpbdp-view-content-wrapper header.entry-header,.wpbdp-view-show_tag .wpbdp-view-content-wrapper header.entry-header,.wpbdp-view-search .wpbdp-view-content-wrapper header.entry-header,.wpbdp-view-submit_listing .wpbdp-view-content-wrapper header.entry-header{display:none}.wpbdp-wp-theme-graphene.single-wpbdp_listing h1.post-title,.wpbdp-wp-theme-graphene.wpbdp-view-show_category h1.post-title,.wpbdp-wp-theme-graphene.wpbdp-view-show_tag h1.post-title,.wpbdp-wp-theme-graphene.wpbdp-view-search h1.post-title,.wpbdp-wp-theme-graphene.wpbdp-view-submit_listing h1.post-title{display:none}.wpbdp-wp-theme-genesis.wpbdp-view-show_category .archive-description,.wpbdp-wp-theme-genesis.wpbdp-view-show_tag .archive-description{display:none}.wpbdp-wp-theme-hmtpro5.wpbdp-view-show_category .post-details,.wpbdp-wp-theme-hmtpro5.wpbdp-view-show_tag .post-details{display:none}.wpbdp-wp-theme-atahualpa.wpbdp-view-show_category .post-footer,.wpbdp-wp-theme-atahualpa.wpbdp-view-show_tag .post-footer,.wpbdp-wp-theme-atahualpa.wpbdp-view-show_listing .post-footer{display:none}.wpbdp-wp-theme-ultimate-silostorm-pro.wpbdp-view-show_category .entry-content .featured-image,.wpbdp-wp-theme-ultimate-silostorm-pro.wpbdp-view-show_tag .entry-content .featured-image,.wpbdp-wp-theme-ultimate-silostorm-pro.wpbdp-view-show_listing .entry-content .featured-image{display:none}
1
+ .wpbdp-cf:before,.wpbdp-cf:after,.cf:before,.cf:after{content:" ";display:table}.wpbdp-cf:after,.cf:after{clear:both}.wpbdp-cf,.cf{*zoom:1}form#wpbdmsearchform{padding:12px 0;text-align:center}form#wpbdmsearchform input{display:inline}form#wpbdmsearchform .wpbdmsearchbutton{margin-top:5px}form#wpbdmsearchform a.advanced-search-link{font-size:70%;display:block}#wpbdp-search-form{padding-left:10px}#wpbdp-search-form .wpbdp-search-filter{margin-bottom:10px;clear:both}#wpbdp-search-form .wpbdp-search-filter>.wpbdp-search-field-label{display:block;width:40%;float:left}#wpbdp-search-form .wpbdp-search-filter>div.field{display:block;width:60%;margin-left:40%;padding-left:5px}#wpbdp-search-form .wpbdp-search-filter>div.field>input[type="text"]{width:90%}#wpbdp-search-form .wpbdp-search-filter>div.field>select{width:90%}#wpbdp-search-form input[type="submit"]{float:none;margin:auto}.wpbdp-pagination{margin:25px 0 0 0}.wpbdp-pagination .next{float:right}.listing-actions form{margin:0;padding:0;display:inline}.listing-actions input{margin:0}.listing-actions input.delete-listing{margin-left:5px;margin-right:30px;color:#f00 !important}.listing-actions a.button{padding:5px 10px;font-size:11px;text-decoration:none;background-color:#e6e6e6;color:#7c7c7c;background-repeat:repeat-x;background-image:-moz-linear-gradient(top,#f4f4f4,#e6e6e6);background-image:-ms-linear-gradient(top,#f4f4f4,#e6e6e6);background-image:-webkit-linear-gradient(top,#f4f4f4,#e6e6e6);background-image:-o-linear-gradient(top,#f4f4f4,#e6e6e6);background-image:linear-gradient(top,#f4f4f4,#e6e6e6);border:1px solid #d2d2d2;border-radius:3px;box-shadow:0 1px 2px rgba(64,64,64,0.1);margin-right:3px}.listing-actions a.button:hover{color:#5e5e5e;background-color:#ebebeb;background-repeat:repeat-x;background-image:-moz-linear-gradient(top,#f9f9f9,#ebebeb);background-image:-ms-linear-gradient(top,#f9f9f9,#ebebeb);background-image:-webkit-linear-gradient(top,#f9f9f9,#ebebeb);background-image:-o-linear-gradient(top,#f9f9f9,#ebebeb);background-image:linear-gradient(top,#f9f9f9,#ebebeb)}.listing-actions a.delete-listing{margin-left:20px;color:red}.wpbdp-listing .listing-details .field-value{margin-bottom:10px;width:100%;float:none}.wpbdmsingledetails .singledetailsview .field-value{margin-bottom:10px}.field-value label{color:#444;font-weight:bold}.wpbdp-listing-excerpt{padding:10px;border-bottom:dotted 1px #ddd}.wpbdp-listing-excerpt.odd{background:#eee}.wpbdp-listing-excerpt.sticky{background:#fff0cf;border-bottom:solid 1px #b37800}.wpbdp-listing-excerpt .listing-thumbnail{float:right;margin:0 10px 0 0}.wpbdp-listing-excerpt .listing-actions{margin-top:15px}.wpbdp-listing-single .listing-actions{margin-bottom:25px}.wpbdp-listing-single.sticky{margin-top:30px}.wpbdp-listing-single .stickytag{float:right;margin-top:-68px}.wpbdp-listing-single .stickytag img{border:0;box-shadow:none;background:transparent}.wpbdp-listing-single .listing-title{padding:2px 8px;background:#efefef;border:dotted 1px #ddd;margin-bottom:7px}.wpbdp-listing-single .listing-title h2{clear:none;margin:0}.wpbdp-listing-single .main-image{float:right;margin-left:10px;padding:5px}.wpbdp-listing-single .main-image a{position:relative !important}.wpbdp-listing-single .main-image img{border:solid 1px #333}.wpbdp-listing-single .extra-images{margin-top:10px;clear:both}.wpbdp-listing-single .extra-images ul{margin:0 auto;width:100%}.wpbdp-listing-single .extra-images ul li{list-style-type:none;display:inline;margin-left:5px}.wpbdp-listing-single .extra-images ul li img{display:inline;vertical-align:top;margin:0 auto;max-width:150px;border:solid 1px #333}.wpbdp-listing .social-fields{margin:20px 0}.wpbdp-listing .social-field{margin:5px 0;height:20px;vertical-align:middle}.social-field.facebook .fb-like>span{overflow:visible !important;width:450px !important;vertical-align:top !important}@media screen and (max-width:500px){.social-field.facebook .fb-like>span{width:100% !important}}.wpbdp-listing-contact-form{margin-top:20px;border-top:dotted 1px #ddd;padding-top:20px;padding-left:10px}.wpbdp-listing-contact-form .send-message-button{margin-left:-10px}.wpbdp-listing-contact-form h3{margin-left:-10px}.wpbdp-listing-contact-form textarea{width:98% !important}.wpbdp-listing .comments{margin-top:20px}.wpbdp-bar{background:#f7f7f7;margin:10px 0 20px 0;padding:5px 10px}.wpbdp-bar:before,.wpbdp-bar:after{content:" ";display:table;clear:both}.wpbdp-bar .wpbdp-search-form{margin:0;padding:0 !important;margin-left:50%}.wpbdp-main-links a{margin-right:15px}.wpbdp-bar .left{float:left;text-align:center}.wpbdp-bar .right{width:300px;float:right}.wpbdp-listings-sort-options{font-size:90%;margin:5px 0;text-align:right}.wpbdp-listings-sort-options .current{font-weight:bold}.wpbdp-page-main_page #wpbdp-categories{clear:both;margin-bottom:20px}ul.wpbdp-categories{margin:0 0 10px 15px;padding:0 10px}ul.wpbdp-categories>li{width:50%;float:left;margin:0}@media screen and (max-width:704px){ul.wpbdp-categories>li{float:none;width:initial}}@media screen and (max-width:500px){ul.wpbdp-categories{font-size:90%}ul.wpbdp-categories ul.children li.cat-item{margin-left:10px;padding:0}}.wpbdp-submit-page h3{margin-bottom:10px}.wpbdp-submit-page .wpbdmp{margin:0}.wpbdp-submit-page legend{font-size:85%;margin-bottom:20px}.wpbdp-submit-page .wpbdp-form-field{margin-bottom:8px}.wpbdp-submit-page .wpbdp-form-field .wpbdmcheckboxclass checkbox{margin-left:0}.wpbdp-submit-page .wpbdp-form-field.required .wpbdp-form-field-label:after{content:' *';font-size:80%}.wpbdp-submit-page .wpbdp-form-field-type-textarea textarea{min-width:90%;min-height:50px}.wpbdp-submit-page .wpbdp-form-field-association-content textarea{min-height:80px}.wpbdp-form-field .field-description{font-size:90%;color:#696969;float:right}.wpbdp-form-field span.sublabel{font-size:90%;margin-left:10px;margin-right:10px}.wpbdp-form-field.image a.delete{margin-left:10px}ul.validation-errors{margin:15px 0 15px 0}ul.validation-errors li{color:red;margin:3px 0;list-style-position:inside}.wpbdp-submit-page.step-fees h4{background:#ddd;color:#333;padding:10px;margin-bottom:5px}.wpbdp-submit-page.step-images #image-upload-form{margin:15px 10px}.wpbdp-submit-page.step-images .wpbdp-image{float:left;border-bottom:dotted 1px #efefef;margin-right:10px;margin-bottom:10px;vertical-align:top}.wpbdp-submit-page.step-images .wpbdp-image img{vertical-align:top;text-align:center;max-width:150px;height:auto}.wpbdp-submit-page.step-images .wpbdp-image-draggable-highlight{width:160px;height:160px;margin:0 10px;background:red;float:left}.wpbdp-submit-page.step-images .area-and-conditions #image-upload-dnd-area{float:left;width:72%}.wpbdp-submit-page.step-images .area-and-conditions #image-upload-conditions{float:right;width:25%;color:#666}.wpbdp-submit-page.step-images .area-and-conditions #image-upload-conditions dl{margin:0}.wpbdp-submit-page.step-images #image-upload-form-no-js{width:0;height:0;overflow:hidden;visibility:hidden}.wpbdp-submit-page.step-images .wpbdp-image .delete-image{color:red}.wpbdp-submit-page .upgrade-to-featured-option{border:solid 1px #666;padding:5px 10px;margin:25px 0 25px 0;font-size:90%}.wpbdp-msg{font-size:85%;padding:.6em;border:solid 1px #e6db55;color:#555;margin:5px 0;background:#fffbcc;border-radius:3px}.wpbdp-msg.error{background-color:#ffebe8;border-color:#C00}.wpbdp-submit-page table.fee-options{width:100%}.wpbdp-submit-page table.fee-options th,.wpbdp-submit-page table.fee-options td{text-align:center}.wpbdp-submit-page table.fee-options td.fee-label,.wpbdp-submit-page table.fee-options tr.fee-description td{text-align:left}.wpbdp-submit-page table.fee-options .fee-selection{width:5%}.wpbdp-submit-page table.fee-options tr.fee-option td.fee-label{font-weight:bold}.wpbdp-submit-page table.fee-options td.fee-description{font-size:90%;color:#666}#wpbdp-renewal-page .do-not-renew-listing{margin:40px 0;border:solid 1px #eee;font-size:95%}#wpbdp-renewal-page .do-not-renew-listing .header{background:#bc0b0b;color:#fff;text-align:center;font-weight:bold;padding:2px 0}#wpbdp-renewal-page .do-not-renew-listing input[type="submit"]{color:#900000}.wpbdp-recaptcha-error{color:red}#wpbdp-delete-listing-page form.confirm-form{margin-top:30px}#wpbdp-delete-listing-page input.delete-listing-confirm{margin-left:20px;color:#c00}#googlewallet-buy img{border:0;box-shadow:none}.wpbdp-checkout input[type="image"]{padding:0;border:0;box-shadow:none;width:auto}table#wpbdp-manage-recurring th.listing-title,table#wpbdp-manage-recurring td.listing-title{min-width:200px}table#wpbdp-manage-recurring a.cancel-subscription{color:red}#wpbdp-manage-recurring-cancel dl dd{margin-left:10px}.wpbdp-cc-form{padding:0;width:90%}.wpbdp-cc-form h4{margin:0}.wpbdp-cc-field input{width:auto}.wpbdp-cc-field label{display:block;font-weight:bold;text-align:right;padding-right:10px}#wpbdp-billing-information .billing-info-section h4{margin:10px 0 5px 0}#wpbdp-billing-information .billing-info-section table{margin:1.75em 0}#wpbdp-billing-information #wpbdp-billing-field-exp,#wpbdp-billing-information #wpbdp-billing-field-exp-year{width:40%;display:inline}#wpbdp-billing-information .form-buttons{margin:15px 0}.wpbdp-show-on-mobile{display:none}@media screen and (max-width:500px){.wpbdp-show-on-mobile{display:inline !important}.wpbdp-hide-on-mobile{display:none}.wpbdp-bar form.wpbdp-search-form{display:block;margin-left:0;margin-top:10px}.wpbdp-bar form.wpbdp-search-form #intextbox{margin-bottom:5px;padding:4px}.wpbdp-bar form.wpbdp-search-form input[type="text"]{padding:4px 0;margin:0 0 2px 0}.wpbdp-listings-sort-options{font-size:90%}.wpbdp-listing.wpbdp-listing{font-size:90%}.wpbdp-listing.wpbdp-listing-excerpt .field-value>label{display:block}.wpbdp-listing.wpbdp-listing-excerpt .listing-thumbnail,.wpbdp-listing.wpbdp-listing-single .listing-thumbnail{float:none;padding:5px}.wpbdp-listing.wpbdp-listing-excerpt .listing-details,.wpbdp-listing.wpbdp-listing-single .listing-details{margin:0 5px;float:none;display:block}.wpbdp-listing .listing-actions input{font-size:85%}.wpbdp-listing .listing-actions input.back-to-dir{float:right}.wpbdp-listing.wpbdp-listing-single .main-image{display:block;float:none;padding:0;margin:0 0 10px 0;text-align:center;max-width:90%}.wpbdp-listing.wpbdp-listing-single .field-value>label{display:block}.wpbdp-submit-page.step-images #image-upload-dnd-area{font-size:90%;float:none !important;width:100% !important}.wpbdp-submit-page.step-images .dnd-area-inside-error{margin-top:30px}.wpbdp-submit-page.step-images #image-upload-conditions{width:100% !important;float:none !important;font-size:90%}.wpbdp-submit-page.step-images #image-upload-conditions dl{margin:0;padding:0}.wpbdp-submit-page.step-images #image-upload-conditions dl dt{margin:0;margin-right:5px;padding:0;float:left}.wpbdp-submit-page.step-images #image-upload-conditions dl dd{margin:0;padding:0;display:block}.wpbdp-submit-page.step-images .wpbdp-image img{max-width:50%}.wpbdp-listings-sort-options.wpbdp-show-on-mobile{margin-bottom:10px}}body.business-directory #TB_ImageOff .screen-reader-text,body.business-directory #TB_closeWindowButton .screen-reader-text{visibility:hidden}body.business-directory #TB_next{float:right}body.business-directory #TB_prev{float:left}body.business-directory #TB_caption{float:none !important}body.business-directory #TB_closeWindow{padding:0;height:0}body.business-directory #TB_closeWindow .screen-reader-text{display:none}body.business-directory #TB_secondLine{text-align:center}.wpbdp-form-row label{display:block}.wpbdp-form-row.wpbdp-form-textfield input[type="text"]{width:400px}.wpbdp-main-box,.wpbdp-main-box .box-row,.wpbdp-main-box .box-col{box-sizing:border-box}.wpbdp-main-box{background:#f7f7f7;margin:10px 0 20px 0;border-radius:4px;padding:10px;width:100%}.wpbdp-main-box .box-row{margin-bottom:4px}.wpbdp-main-box .box-col{margin-bottom:4px;width:100%}.wpbdp-main-box .box-col input{width:100%}.wpbdp-main-box .submit-btn input[type="submit"]{margin-top:0}.wpbdp-main-box .advanced-search-link{border:0;box-shadow:none;display:block;font-size:11px;text-align:right;text-decoration:none}.wpbdp-main-box-medium .box-col,.wpbdp-main-box-large .box-col{float:left}.wpbdp-main-box-medium .search-fields>.cols-1 .box-col,.wpbdp-main-box-large .search-fields>.cols-1 .box-col{width:100%}.wpbdp-main-box-medium .search-fields>.cols-2 .box-col,.wpbdp-main-box-large .search-fields>.cols-2 .box-col{width:50%}.wpbdp-main-box-medium .search-fields>.cols-2 .box-col:first-child,.wpbdp-main-box-large .search-fields>.cols-2 .box-col:first-child{padding-right:5px;width:50%}.wpbdp-main-box-medium .search-fields>.cols-2 .box-col:last-child,.wpbdp-main-box-large .search-fields>.cols-2 .box-col:last-child{padding-left:5px;width:50%}.wpbdp-main-box-medium .search-fields>.cols-3 .box-col,.wpbdp-main-box-large .search-fields>.cols-3 .box-col{padding-left:5px;width:50%}.wpbdp-main-box-medium .search-fields>.cols-3 .box-col:first-child,.wpbdp-main-box-large .search-fields>.cols-3 .box-col:first-child{padding-right:5px}.wpbdp-main-box-medium .search-fields>.cols-3 .box-col:first-child,.wpbdp-main-box-large .search-fields>.cols-3 .box-col:first-child{padding:0;width:100%}.wpbdp-main-box-large .box-row{margin-bottom:0}.wpbdp-main-box-large .search-fields{padding-right:5px;width:78%}.wpbdp-main-box-large .submit-btn{padding-left:5px;width:22%}.wpbdp-main-links{text-align:right}.wpbdp-main-links .button{margin:0 5px}.wpbdp-main-links .button:first-child{margin-left:0}.wpbdp-main-links .button:last-child{margin-right:0}.wpbdp-main-links-tiny .wpbdp-main-links .button{padding-top:10px;padding-bottom:10px;width:100%;margin:0 0 4px}.wpbdp-main-links-small .button{padding-top:10px;padding-bottom:10px;width:100%;margin:0 0 4px}.wpbdp-main-links-small .wpbdp-main-links-2-buttons .button{width:49%}.wpbdp-main-links-small .wpbdp-main-links-2-buttons .button:first-child{margin-right:1%}.wpbdp-main-links-small .wpbdp-main-links-2-buttons .button:last-child{margin-left:1%}.wpbdp-main-links-small .wpbdp-main-links-3-buttons .button:nth-child(2n){width:49%;margin-top:1%;margin-right:1%}.wpbdp-main-links-small .wpbdp-main-links-3-buttons .button:nth-child(2n+3){width:49%;margin-top:1%;margin-left:1%}.wpbdp-main-links-medium .wpbdp-main-links .button{padding-top:8px;padding-bottom:8px}.wpbdp-main-links-large .button{margin:0 3px}.single-wpbdp_listing .wpbdp-view-content-wrapper header.entry-header,.wpbdp-view-show_category .wpbdp-view-content-wrapper header.entry-header,.wpbdp-view-show_tag .wpbdp-view-content-wrapper header.entry-header,.wpbdp-view-search .wpbdp-view-content-wrapper header.entry-header,.wpbdp-view-submit_listing .wpbdp-view-content-wrapper header.entry-header{display:none}.wpbdp-wp-theme-graphene.single-wpbdp_listing h1.post-title,.wpbdp-wp-theme-graphene.wpbdp-view-show_category h1.post-title,.wpbdp-wp-theme-graphene.wpbdp-view-show_tag h1.post-title,.wpbdp-wp-theme-graphene.wpbdp-view-search h1.post-title,.wpbdp-wp-theme-graphene.wpbdp-view-submit_listing h1.post-title{display:none}.wpbdp-wp-theme-genesis.wpbdp-view-show_category .archive-description,.wpbdp-wp-theme-genesis.wpbdp-view-show_tag .archive-description{display:none}.wpbdp-wp-theme-hmtpro5.wpbdp-view-show_category .post-details,.wpbdp-wp-theme-hmtpro5.wpbdp-view-show_tag .post-details{display:none}.wpbdp-wp-theme-atahualpa.wpbdp-view-show_category .post-footer,.wpbdp-wp-theme-atahualpa.wpbdp-view-show_tag .post-footer,.wpbdp-wp-theme-atahualpa.wpbdp-view-show_listing .post-footer{display:none}.wpbdp-wp-theme-ultimate-silostorm-pro.wpbdp-view-show_category .entry-content .featured-image,.wpbdp-wp-theme-ultimate-silostorm-pro.wpbdp-view-show_tag .entry-content .featured-image,.wpbdp-wp-theme-ultimate-silostorm-pro.wpbdp-view-show_listing .entry-content .featured-image{display:none}
core/fieldtypes/class-fieldtypes-checkbox.php CHANGED
@@ -71,11 +71,11 @@ class WPBDP_FieldTypes_Checkbox extends WPBDP_Form_Field_Type {
71
 
72
  $settings['options'][] = _x( 'Field Options (for select lists, radio buttons and checkboxes).', 'form-fields admin', 'WPBDM' ) . '<span class="description">(required)</span>';
73
 
74
- $content = '<span class="description">Comma (,) separated list of options</span><br />';
75
  $content .= '<textarea name="field[x_options]" cols="50" rows="2">';
76
 
77
  if ( $field && $field->data( 'options' ) )
78
- $content .= implode( ",\n", $field->data( 'options' ) );
79
  $content .= '</textarea>';
80
 
81
  $settings['options'][] = $content;
@@ -92,7 +92,7 @@ class WPBDP_FieldTypes_Checkbox extends WPBDP_Form_Field_Type {
92
  if ( !$options && $field->get_association() != 'tags' )
93
  return new WP_Error( 'wpbdp-invalid-settings', _x( 'Field list of options is required.', 'form-fields admin', 'WPBDM' ) );
94
 
95
- $field->set_data( 'options', $options ? array_map( 'trim', explode( ',', $options ) ) : array() );
96
  }
97
 
98
  public function store_field_value( &$field, $post_id, $value ) {
71
 
72
  $settings['options'][] = _x( 'Field Options (for select lists, radio buttons and checkboxes).', 'form-fields admin', 'WPBDM' ) . '<span class="description">(required)</span>';
73
 
74
+ $content = '<span class="description">One option per line</span><br />';
75
  $content .= '<textarea name="field[x_options]" cols="50" rows="2">';
76
 
77
  if ( $field && $field->data( 'options' ) )
78
+ $content .= implode( "\n", $field->data( 'options' ) );
79
  $content .= '</textarea>';
80
 
81
  $settings['options'][] = $content;
92
  if ( !$options && $field->get_association() != 'tags' )
93
  return new WP_Error( 'wpbdp-invalid-settings', _x( 'Field list of options is required.', 'form-fields admin', 'WPBDM' ) );
94
 
95
+ $field->set_data( 'options', $options ? array_map( 'trim', explode( "\n", $options ) ) : array() );
96
  }
97
 
98
  public function store_field_value( &$field, $post_id, $value ) {
core/fieldtypes/class-fieldtypes-radiobutton.php CHANGED
@@ -67,11 +67,11 @@ class WPBDP_FieldTypes_RadioButton extends WPBDP_Form_Field_Type {
67
 
68
  $label = _x( 'Field Options (for select lists, radio buttons and checkboxes).', 'form-fields admin', 'WPBDM' ) . '<span class="description">(required)</span>';
69
 
70
- $content = '<span class="description">Comma (,) separated list of options</span><br />';
71
  $content .= '<textarea name="field[x_options]" cols="50" rows="2">';
72
 
73
  if ( $field && $field->data( 'options' ) )
74
- $content .= implode( ",\n", $field->data( 'options' ) );
75
  $content .= '</textarea>';
76
 
77
  return self::render_admin_settings( array( array( $label, $content ) ) );
@@ -86,7 +86,7 @@ class WPBDP_FieldTypes_RadioButton extends WPBDP_Form_Field_Type {
86
  if ( !$options && $field->get_association() != 'tags' )
87
  return new WP_Error( 'wpbdp-invalid-settings', _x( 'Field list of options is required.', 'form-fields admin', 'WPBDM' ) );
88
 
89
- $field->set_data( 'options', $options ? array_map( 'trim', explode( ',', $options ) ) : array() );
90
  }
91
 
92
  public function get_field_value( &$field, $post_id ) {
67
 
68
  $label = _x( 'Field Options (for select lists, radio buttons and checkboxes).', 'form-fields admin', 'WPBDM' ) . '<span class="description">(required)</span>';
69
 
70
+ $content = '<span class="description">One option per line</span><br />';
71
  $content .= '<textarea name="field[x_options]" cols="50" rows="2">';
72
 
73
  if ( $field && $field->data( 'options' ) )
74
+ $content .= implode( "\n", $field->data( 'options' ) );
75
  $content .= '</textarea>';
76
 
77
  return self::render_admin_settings( array( array( $label, $content ) ) );
86
  if ( !$options && $field->get_association() != 'tags' )
87
  return new WP_Error( 'wpbdp-invalid-settings', _x( 'Field list of options is required.', 'form-fields admin', 'WPBDM' ) );
88
 
89
+ $field->set_data( 'options', $options ? array_map( 'trim', explode( "\n", $options ) ) : array() );
90
  }
91
 
92
  public function get_field_value( &$field, $post_id ) {
core/fieldtypes/class-fieldtypes-select.php CHANGED
@@ -143,11 +143,11 @@ class WPBDP_FieldTypes_Select extends WPBDP_Form_Field_Type {
143
 
144
  $settings['options'][] = _x( 'Field Options (for select lists, radio buttons and checkboxes).', 'form-fields admin', 'WPBDM' ) . '<span class="description">(required)</span>';
145
 
146
- $content = '<span class="description">Comma (,) separated list of options</span><br />';
147
  $content .= '<textarea name="field[x_options]" cols="50" rows="2">';
148
 
149
  if ( $field && $field->data( 'options' ) )
150
- $content .= implode( ",\n", $field->data( 'options' ) );
151
  $content .= '</textarea>';
152
 
153
  $settings['options'][] = $content;
@@ -171,7 +171,7 @@ class WPBDP_FieldTypes_Select extends WPBDP_Form_Field_Type {
171
  if ( !$options && $field->get_association() != 'tags' )
172
  return new WP_Error( 'wpbdp-invalid-settings', _x( 'Field list of options is required.', 'form-fields admin', 'WPBDM' ) );
173
 
174
- $field->set_data( 'options', $options ? array_map( 'trim', explode( ',', $options ) ) : array() );
175
 
176
  if ( array_key_exists( 'x_empty_on_search', $_POST['field'] ) ) {
177
  $empty_on_search = (bool) intval( $_POST['field']['x_empty_on_search'] );
143
 
144
  $settings['options'][] = _x( 'Field Options (for select lists, radio buttons and checkboxes).', 'form-fields admin', 'WPBDM' ) . '<span class="description">(required)</span>';
145
 
146
+ $content = '<span class="description">One option per line</span><br />';
147
  $content .= '<textarea name="field[x_options]" cols="50" rows="2">';
148
 
149
  if ( $field && $field->data( 'options' ) )
150
+ $content .= implode( "\n", $field->data( 'options' ) );
151
  $content .= '</textarea>';
152
 
153
  $settings['options'][] = $content;
171
  if ( !$options && $field->get_association() != 'tags' )
172
  return new WP_Error( 'wpbdp-invalid-settings', _x( 'Field list of options is required.', 'form-fields admin', 'WPBDM' ) );
173
 
174
+ $field->set_data( 'options', $options ? array_map( 'trim', explode( "\n", $options ) ) : array() );
175
 
176
  if ( array_key_exists( 'x_empty_on_search', $_POST['field'] ) ) {
177
  $empty_on_search = (bool) intval( $_POST['field']['x_empty_on_search'] );
core/helpers/class-listing-display-helper.php CHANGED
@@ -41,7 +41,13 @@ class WPBDP_Listing_Display_Helper {
41
  // TODO: is this really used? can it be changed to something else?
42
  // 'listing_fields' => apply_filters('wpbdp_single_listing_fields', $listing_fields, $post->ID), This is
43
  // complete HTML
44
- return wpbdp_x_render( 'single', $vars );
 
 
 
 
 
 
45
  }
46
 
47
  private static function basic_vars( $listing_id ) {
@@ -137,6 +143,39 @@ class WPBDP_Listing_Display_Helper {
137
  return $vars;
138
  }
139
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
140
  }
141
 
142
  /**
41
  // TODO: is this really used? can it be changed to something else?
42
  // 'listing_fields' => apply_filters('wpbdp_single_listing_fields', $listing_fields, $post->ID), This is
43
  // complete HTML
44
+ $html = '';
45
+ $html .= wpbdp_x_render( 'single', $vars );
46
+ $html .= '<script type="application/ld+json">';
47
+ $html .= json_encode( self::schema_org( $vars ) );
48
+ $html .= '</script>';
49
+
50
+ return $html;
51
  }
52
 
53
  private static function basic_vars( $listing_id ) {
143
  return $vars;
144
  }
145
 
146
+ private static function schema_org( $vars ) {
147
+ $schema = array();
148
+ $schema['@context'] = 'http://schema.org';
149
+ $schema['@type'] = 'LocalBusiness';
150
+ $schema['name'] = $vars['title'];
151
+ $schema['url'] = get_permalink( $vars['listing_id'] );
152
+ $schema['image'] = ! empty( $vars['images']->main ) ? $vars['images']->main->url : '';
153
+ $schema['priceRange'] = '$$';
154
+
155
+ $fields = $vars['fields'];
156
+ $fsx = array();
157
+ foreach ( $fields as $f ) {
158
+ $field_schema = $f->field->get_schema_org( $vars['listing_id'] );
159
+
160
+ if ( ! $field_schema )
161
+ continue;
162
+
163
+ foreach ( $field_schema as $key => $value ) {
164
+ if ( ! $value )
165
+ continue;
166
+
167
+ if ( is_array( $value ) )
168
+ $schema[ $key ] = array_merge( isset( $schema[ $key ] ) ? $schema[ $key ] : array(), $value );
169
+ else
170
+ $schema[ $key ] = $value;
171
+ }
172
+ }
173
+
174
+ $schema = apply_filters( 'wpbdp_listing_schema_org', $schema );
175
+
176
+ return $schema;
177
+ }
178
+
179
  }
180
 
181
  /**
core/helpers/class-listing-search.php CHANGED
@@ -157,16 +157,27 @@ class WPBDP__Listing_Search {
157
  // Quick search.
158
  if ( ! empty( $request['kw'] ) ) {
159
  $keywords = wpbdp_get_option( 'quick-search-enable-performance-tricks' ) ? array( $request['kw'] ) : explode( ' ', $request['kw'] );
160
- $fields = wpbdp_get_option( 'quick-search-fields' );
161
- $fields = $fields ? $fields : wpbdp_get_form_fields( 'association=title,excerpt,content&output=ids' );
 
 
 
 
 
 
 
 
 
 
 
162
 
163
  $res[] = 'and';
164
 
165
  foreach ( $keywords as $k ) {
166
  $subq = array( 'or' );
167
 
168
- foreach ( $fields as $field_id ) {
169
- $subq[] = array( $field_id, $k );
170
  }
171
 
172
  $res[] = $subq;
157
  // Quick search.
158
  if ( ! empty( $request['kw'] ) ) {
159
  $keywords = wpbdp_get_option( 'quick-search-enable-performance-tricks' ) ? array( $request['kw'] ) : explode( ' ', $request['kw'] );
160
+
161
+ $fields_ids = wpbdp_get_option( 'quick-search-fields' );
162
+ $fields_ids = $fields_ids ? $fields_ids : wpbdp_get_form_fields( 'association=title,excerpt,content&output=ids' );
163
+
164
+ $fields = array();
165
+
166
+ foreach ( $fields_ids as $field_id ) {
167
+ $field = wpbdp_get_form_field( $field_id );
168
+
169
+ if ( $field ) {
170
+ $fields[] = $field;
171
+ }
172
+ }
173
 
174
  $res[] = 'and';
175
 
176
  foreach ( $keywords as $k ) {
177
  $subq = array( 'or' );
178
 
179
+ foreach ( $fields as $field ) {
180
+ $subq[] = array( $field->get_id(), $k );
181
  }
182
 
183
  $res[] = $subq;
core/installer.php CHANGED
@@ -2,7 +2,7 @@
2
 
3
  class WPBDP_Installer {
4
 
5
- const DB_VERSION = '15';
6
 
7
  private $installed_version = null;
8
 
@@ -184,7 +184,7 @@ class WPBDP_Installer {
184
  if ( get_option( 'wpbdp-manual-upgrade-pending', false ) )
185
  return;
186
 
187
- $upgrade_routines = array( '2.0', '2.1', '2.2', '2.3', '2.4', '2.5', '3.1', '3.2', '3.4', '3.5', '3.6', '3.7', '3.9', '4.0', '5', '6', '7', '8', '11', '12', '13', '15' );
188
 
189
  foreach ( $upgrade_routines as $v ) {
190
  if ( version_compare( $this->installed_version, $v ) < 0 ) {
@@ -929,22 +929,23 @@ class WPBDP_Installer {
929
  $f->save();
930
  }
931
 
932
- public function upgrade_to_15() {
933
  $form_fields = $this->get_list_form_fields();
934
 
935
  foreach ( $form_fields as $form_field ) {
936
  $options = array();
937
 
938
  foreach ( $form_field->data( 'options' ) as $key => $value ) {
939
- $options[ trim( $key ) ] = trim( $value );
 
940
  }
941
 
942
  $form_field->set_data( 'options', $options );
943
  $form_field->save();
944
  }
945
 
946
- if ( $this->count_listing_meta_with_new_line_characters( array_keys( $form_fields ) ) ) {
947
- $this->request_manual_upgrade( 'upgrade_to_15_fix_form_fields_data' );
948
  }
949
  }
950
 
@@ -962,22 +963,33 @@ class WPBDP_Installer {
962
  return $form_fields;
963
  }
964
 
965
- private function count_listing_meta_with_new_line_characters( $meta_keys ) {
966
  global $wpdb;
967
 
968
  if ( ! $meta_keys ) {
969
  return 0;
970
  }
971
 
972
- $sql = "SELECT COUNT(meta_id) FROM {$wpdb->postmeta} WHERE meta_key IN (%s) AND meta_value LIKE '%%\n%%'";
973
  $sql = sprintf( $sql, "'" . implode( "', '", $meta_keys ) . "'" );
974
 
975
  return intval( $wpdb->get_var( $sql ) );
976
  }
977
 
 
 
 
 
 
 
 
978
  public function upgrade_to_15_fix_form_fields_data() {
 
 
 
 
979
  $form_fields = $this->get_list_form_fields();
980
- $meta_entries = $this->get_listing_meta_with_new_line_characters( array_keys( $form_fields ) );
981
 
982
  foreach ( $meta_entries as $meta_entry ) {
983
  $meta_value = maybe_unserialize( $meta_entry->meta_value );
@@ -986,12 +998,16 @@ class WPBDP_Installer {
986
  $meta_value = explode( "\t", $meta_entry->meta_value );
987
  }
988
 
989
- $meta_value = array_map( 'trim', (array) $meta_value );
 
 
 
 
990
 
991
- $form_fields[ $meta_entry->meta_key ]->store_value( $meta_entry->post_id, $meta_value );
992
  }
993
 
994
- $records_left = $this->count_listing_meta_with_new_line_characters( array_keys( $form_fields ) );
995
 
996
  $message = _x( 'Cleaning up stored meta data for Checkbox, Radio and Select fields... (%d records left)', 'installer', 'WPBDM' );
997
 
@@ -1002,7 +1018,7 @@ class WPBDP_Installer {
1002
  );
1003
  }
1004
 
1005
- private function get_listing_meta_with_new_line_characters( $meta_keys ) {
1006
  global $wpdb;
1007
 
1008
  if ( ! $meta_keys ) {
@@ -1010,7 +1026,7 @@ class WPBDP_Installer {
1010
  }
1011
 
1012
  $sql = "SELECT post_id, meta_id, meta_key, meta_value FROM {$wpdb->postmeta} ";
1013
- $sql.= "WHERE meta_key IN (%s) AND meta_value LIKE '%%\n%%' ";
1014
  $sql.= "LIMIT 50";
1015
 
1016
  $sql = sprintf( $sql, "'" . implode( "', '", $meta_keys ) . "'" );
2
 
3
  class WPBDP_Installer {
4
 
5
+ const DB_VERSION = '17';
6
 
7
  private $installed_version = null;
8
 
184
  if ( get_option( 'wpbdp-manual-upgrade-pending', false ) )
185
  return;
186
 
187
+ $upgrade_routines = array( '2.0', '2.1', '2.2', '2.3', '2.4', '2.5', '3.1', '3.2', '3.4', '3.5', '3.6', '3.7', '3.9', '4.0', '5', '6', '7', '8', '11', '12', '13', '17' );
188
 
189
  foreach ( $upgrade_routines as $v ) {
190
  if ( version_compare( $this->installed_version, $v ) < 0 ) {
929
  $f->save();
930
  }
931
 
932
+ public function upgrade_to_17() {
933
  $form_fields = $this->get_list_form_fields();
934
 
935
  foreach ( $form_fields as $form_field ) {
936
  $options = array();
937
 
938
  foreach ( $form_field->data( 'options' ) as $key => $value ) {
939
+ $new_key = trim( preg_replace( '/[\r\n]/', '', $key ) );
940
+ $options[ $new_key ] = trim( preg_replace( '/[\r\n]/', '', $value ) );
941
  }
942
 
943
  $form_field->set_data( 'options', $options );
944
  $form_field->save();
945
  }
946
 
947
+ if ( $this->count_listing_meta_with_invalid_characters( array_keys( $form_fields ) ) ) {
948
+ $this->request_manual_upgrade( 'upgrade_to_16_fix_form_fields_data' );
949
  }
950
  }
951
 
963
  return $form_fields;
964
  }
965
 
966
+ private function count_listing_meta_with_invalid_characters( $meta_keys ) {
967
  global $wpdb;
968
 
969
  if ( ! $meta_keys ) {
970
  return 0;
971
  }
972
 
973
+ $sql = "SELECT COUNT(meta_id) FROM {$wpdb->postmeta} WHERE meta_key IN (%s) AND meta_value REGEXP '^ |\t | \t| $|[\r\n]'";
974
  $sql = sprintf( $sql, "'" . implode( "', '", $meta_keys ) . "'" );
975
 
976
  return intval( $wpdb->get_var( $sql ) );
977
  }
978
 
979
+ /**
980
+ * Necessary for websites that got stuck at the Manual Upgrade routine from
981
+ * https://github.com/drodenbaugh/BusinessDirectoryPlugin/pull/2425 due to new
982
+ * line characters present in the middle of the form fields options.
983
+ *
984
+ * See: https://github.com/drodenbaugh/BusinessDirectoryPlugin/issues/2440
985
+ */
986
  public function upgrade_to_15_fix_form_fields_data() {
987
+ return $this->upgrade_to_16_fix_form_fields_data();
988
+ }
989
+
990
+ public function upgrade_to_16_fix_form_fields_data() {
991
  $form_fields = $this->get_list_form_fields();
992
+ $meta_entries = $this->get_listing_meta_with_invalid_characters( array_keys( $form_fields ) );
993
 
994
  foreach ( $meta_entries as $meta_entry ) {
995
  $meta_value = maybe_unserialize( $meta_entry->meta_value );
998
  $meta_value = explode( "\t", $meta_entry->meta_value );
999
  }
1000
 
1001
+ $sanitized_value = array();
1002
+
1003
+ foreach ( (array) $meta_value as $key => $value ) {
1004
+ $sanitized_value[ $key ] = trim( preg_replace( '/[\r\n]/', '', $value ) );
1005
+ }
1006
 
1007
+ $form_fields[ $meta_entry->meta_key ]->store_value( $meta_entry->post_id, $sanitized_value );
1008
  }
1009
 
1010
+ $records_left = $this->count_listing_meta_with_invalid_characters( array_keys( $form_fields ) );
1011
 
1012
  $message = _x( 'Cleaning up stored meta data for Checkbox, Radio and Select fields... (%d records left)', 'installer', 'WPBDM' );
1013
 
1018
  );
1019
  }
1020
 
1021
+ private function get_listing_meta_with_invalid_characters( $meta_keys ) {
1022
  global $wpdb;
1023
 
1024
  if ( ! $meta_keys ) {
1026
  }
1027
 
1028
  $sql = "SELECT post_id, meta_id, meta_key, meta_value FROM {$wpdb->postmeta} ";
1029
+ $sql.= "WHERE meta_key IN (%s) AND meta_value REGEXP '^ |\t | \t| $|[\r\n]' ";
1030
  $sql.= "LIMIT 50";
1031
 
1032
  $sql = sprintf( $sql, "'" . implode( "', '", $meta_keys ) . "'" );
core/template-sections.php CHANGED
@@ -38,8 +38,9 @@ class _WPBDP_Template_Sections {
38
  }
39
 
40
  function listing_comments( $listing_id ) {
41
- if ( ! wpbdp_get_option( 'show-comment-form' ) )
42
  return;
 
43
 
44
  $html = '<div class="comments">';
45
 
38
  }
39
 
40
  function listing_comments( $listing_id ) {
41
+ if ( wpbdp_get_option( 'allow-comments-in-listings' ) != 'allow-comments-and-insert-template' ) {
42
  return;
43
+ }
44
 
45
  $html = '<div class="comments">';
46
 
core/templates-listings.php CHANGED
@@ -41,7 +41,7 @@ function _wpbdp_render_single() {
41
  $listing = WPBDP_Listing::get( $post->ID );
42
 
43
  $html = '';
44
- $html .= sprintf( '<div id="wpbdp-listing-%d" class="%s" itemscope itemtype="http://schema.org/LocalBusiness">',
45
  $post->ID,
46
  wpbdp_listing_css_class( array( 'single', 'wpbdp-listing-single' ) ) );
47
  $html .= apply_filters('wpbdp_listing_view_before', '', $post->ID, 'single');
@@ -107,7 +107,7 @@ function _wpbdp_render_single() {
107
  $html .= apply_filters('wpbdp_listing_view_after', '', $post->ID, 'single');
108
  $html .= wpbdp_capture_action('wpbdp_after_single_view', $post->ID);
109
 
110
- if (wpbdp_get_option('show-comment-form')) {
111
  $html .= '<div class="comments">';
112
 
113
  ob_start();
41
  $listing = WPBDP_Listing::get( $post->ID );
42
 
43
  $html = '';
44
+ $html .= sprintf( '<div id="wpbdp-listing-%d" class="%s">',
45
  $post->ID,
46
  wpbdp_listing_css_class( array( 'single', 'wpbdp-listing-single' ) ) );
47
  $html .= apply_filters('wpbdp_listing_view_before', '', $post->ID, 'single');
107
  $html .= apply_filters('wpbdp_listing_view_after', '', $post->ID, 'single');
108
  $html .= wpbdp_capture_action('wpbdp_after_single_view', $post->ID);
109
 
110
+ if ( wpbdp_get_option( 'allow-comments-in-listings' ) == 'allow-comments-and-insert-template' ) {
111
  $html .= '<div class="comments">';
112
 
113
  ob_start();
core/templates-ui.php CHANGED
@@ -187,29 +187,38 @@ function wpbdp_list_categories( $args=array() ) {
187
 
188
  function wpbdp_main_links() {
189
  $html = '';
 
190
 
191
  if ( wpbdp_get_option( 'show-directory-button' ) ) {
192
  $html .= sprintf( '<input id="wpbdp-bar-show-directory-button" type="button" value="%s" onclick="window.location.href = \'%s\'" class="button wpbdp-button" />',
193
  __('Directory', 'WPBDM'),
194
  wpbdp_url( '/' ) );
 
195
  }
196
 
197
  if ( wpbdp_get_option( 'show-view-listings' ) ) {
198
  $html .= sprintf( '<input id="wpbdp-bar-view-listings-button" type="button" value="%s" onclick="window.location.href = \'%s\'" class="button wpbdp-button" />',
199
  __('View All Listings', 'WPBDM'),
200
  wpbdp_url( 'all_listings' ) );
 
201
  }
202
 
203
  if ( ! wpbdp_get_option( 'disable-submit-listing' ) && wpbdp_get_option( 'show-submit-listing' ) ) {
204
  $html .= sprintf( '<input id="wpbdp-bar-submit-listing-button" type="button" value="%s" onclick="window.location.href = \'%s\'" class="button wpbdp-button" />',
205
  __( 'Create A Listing', 'WPBDM' ),
206
  wpbdp_url( 'submit_listing' ) );
 
207
  }
208
 
209
- if ( $html )
210
- $html = '<div class="wpbdp-main-links">' . apply_filters( 'wpbdp_main_links', $html ) . '</div>';
 
211
 
212
- return $html;
 
 
 
 
213
  }
214
 
215
  function wpbdp_the_main_links() {
187
 
188
  function wpbdp_main_links() {
189
  $html = '';
190
+ $buttons_count = 0;
191
 
192
  if ( wpbdp_get_option( 'show-directory-button' ) ) {
193
  $html .= sprintf( '<input id="wpbdp-bar-show-directory-button" type="button" value="%s" onclick="window.location.href = \'%s\'" class="button wpbdp-button" />',
194
  __('Directory', 'WPBDM'),
195
  wpbdp_url( '/' ) );
196
+ $buttons_count++;
197
  }
198
 
199
  if ( wpbdp_get_option( 'show-view-listings' ) ) {
200
  $html .= sprintf( '<input id="wpbdp-bar-view-listings-button" type="button" value="%s" onclick="window.location.href = \'%s\'" class="button wpbdp-button" />',
201
  __('View All Listings', 'WPBDM'),
202
  wpbdp_url( 'all_listings' ) );
203
+ $buttons_count++;
204
  }
205
 
206
  if ( ! wpbdp_get_option( 'disable-submit-listing' ) && wpbdp_get_option( 'show-submit-listing' ) ) {
207
  $html .= sprintf( '<input id="wpbdp-bar-submit-listing-button" type="button" value="%s" onclick="window.location.href = \'%s\'" class="button wpbdp-button" />',
208
  __( 'Create A Listing', 'WPBDM' ),
209
  wpbdp_url( 'submit_listing' ) );
210
+ $buttons_count++;
211
  }
212
 
213
+ if ( ! $html ) {
214
+ return '';
215
+ }
216
 
217
+ $content = '<div class="wpbdp-main-links-container" data-breakpoints=\'{"tiny": [0,360], "small": [360,560], "medium": [560,710], "large": [710,999999]}\' data-breakpoints-class-prefix="wpbdp-main-links">';
218
+ $content.= '<div class="wpbdp-main-links wpbdp-main-links-' . $buttons_count . '-buttons">' . apply_filters( 'wpbdp_main_links', $html ) . '</div>';
219
+ $content.= '</div>';
220
+
221
+ return $content;
222
  }
223
 
224
  function wpbdp_the_main_links() {
core/templates/excerpt.tpl.php CHANGED
@@ -3,7 +3,7 @@ $__template__ = array( 'blocks' => array( 'before', 'after' ) );
3
  ?>
4
 
5
  <div id="wpbdp-listing-<?php echo $listing->get_id(); ?>"
6
- class="wpbdp-listing wpbdp-excerpt excerpt wpbdp-listing-excerpt wpbdp-listing-<?php echo $listing->get_id(); ?> <?php echo $listing->get_sticky_status(); ?> <?php echo apply_filters( 'wpbdp_excerpt_view_css', '', $listing->get_id() ); ?> <?php echo $even_or_odd; ?>">
7
 
8
  <?php echo $blocks['before']; ?>
9
  <?php wpbdp_x_part( 'excerpt_content' ); ?>
3
  ?>
4
 
5
  <div id="wpbdp-listing-<?php echo $listing->get_id(); ?>"
6
+ class="wpbdp-listing wpbdp-excerpt excerpt wpbdp-listing-excerpt wpbdp-listing-<?php echo $listing->get_id(); ?> <?php echo $listing->get_sticky_status(); ?> <?php echo apply_filters( 'wpbdp_excerpt_view_css', '', $listing->get_id() ); ?> <?php echo $even_or_odd; ?>" data-breakpoints='{"medium": [560,780], "large": [780,999999]}' data-breakpoints-class-prefix="wpbdp-listing-excerpt">
7
 
8
  <?php echo $blocks['before']; ?>
9
  <?php wpbdp_x_part( 'excerpt_content' ); ?>
core/templates/single.tpl.php CHANGED
@@ -1,10 +1,8 @@
1
  <div id="wpbdp-listing-<?php echo $listing->get_id(); ?>"
2
- class="wpbdp-listing wpbdp-single wpbdp-listing-single wpbdp-listing-<?php echo $listing->get_id(); ?> single <?php echo $listing->get_sticky_status(); ?> <?php echo apply_filters( 'wpbdp_listing_view_css', '', $listing->get_id() ); ?> <?php if ( $images->main ): echo 'with-image'; endif; ?>"
3
- itemscope
4
- itemtype="http://schema.org/LocalBusiness">
5
 
6
  <div class="listing-title">
7
- <h2 itemprop="name"><?php echo $title; ?></h2>
8
  </div>
9
  <?php echo $sticky_tag; ?>
10
 
1
  <div id="wpbdp-listing-<?php echo $listing->get_id(); ?>"
2
+ class="wpbdp-listing wpbdp-single wpbdp-listing-single wpbdp-listing-<?php echo $listing->get_id(); ?> single <?php echo $listing->get_sticky_status(); ?> <?php echo apply_filters( 'wpbdp_listing_view_css', '', $listing->get_id() ); ?> <?php if ( $images->main ): echo 'with-image'; endif; ?>">
 
 
3
 
4
  <div class="listing-title">
5
+ <h2><?php echo $title; ?></h2>
6
  </div>
7
  <?php echo $sticky_tag; ?>
8
 
languages/WPBDM-ar.mo CHANGED
Binary file
languages/WPBDM-ar.po CHANGED
@@ -4,7 +4,7 @@ msgid ""
4
  msgstr ""
5
  "Project-Id-Version: Business Directory Plugin 4.0.8\n"
6
  "Report-Msgid-Bugs-To: http://wordpress.org/tag/business-directory-plugin\n"
7
- "POT-Creation-Date: 2016-11-25 09:40:43+00:00\n"
8
  "PO-Revision-Date: 2016-09-19 12:17-0500\n"
9
  "Last-Translator: BD Team <support@businessdirectoryplugin.com>\n"
10
  "Language-Team: BD Team <support@businessdirectoryplugin.com>\n"
@@ -1039,82 +1039,82 @@ msgctxt "form-fields admin"
1039
  msgid "Field deleted."
1040
  msgstr "تم حذف الحقل."
1041
 
1042
- #: admin/form-fields.php:272
1043
  msgctxt "form-fields admin"
1044
  msgid "Required fields created successfully."
1045
  msgstr "الحقول المطلوبة أنشئت بنجاح."
1046
 
1047
- #: admin/form-fields.php:285
1048
  msgctxt "form-fields admin"
1049
  msgid "Title"
1050
  msgstr "العنوان"
1051
 
1052
- #: admin/form-fields.php:286
1053
  msgctxt "form-fields admin"
1054
  msgid "Category"
1055
  msgstr "التصنيف"
1056
 
1057
- #: admin/form-fields.php:287
1058
  msgctxt "form-fields admin"
1059
  msgid "Excerpt"
1060
  msgstr "مقتطف"
1061
 
1062
- #: admin/form-fields.php:288
1063
  msgctxt "form-fields admin"
1064
  msgid "Content"
1065
  msgstr "المحتوى"
1066
 
1067
- #: admin/form-fields.php:289
1068
  msgctxt "form-fields admin"
1069
  msgid "Tags"
1070
  msgstr "الوسوم"
1071
 
1072
- #: admin/form-fields.php:290
1073
  msgctxt "form-fields admin"
1074
  msgid "Address"
1075
  msgstr "العنوان"
1076
 
1077
- #: admin/form-fields.php:291
1078
  msgctxt "form-fields admin"
1079
  msgid "City"
1080
  msgstr "المدينة"
1081
 
1082
- #: admin/form-fields.php:292
1083
  msgctxt "form-fields admin"
1084
  msgid "State"
1085
  msgstr "الولاية"
1086
 
1087
- #: admin/form-fields.php:293
1088
  msgctxt "form-fields admin"
1089
  msgid "ZIP Code"
1090
  msgstr "الرمز البريدي"
1091
 
1092
- #: admin/form-fields.php:294
1093
  msgctxt "form-fields admin"
1094
  msgid "FAX Number"
1095
  msgstr "رقم الفاكس"
1096
 
1097
- #: admin/form-fields.php:295
1098
  msgctxt "form-fields admin"
1099
  msgid "Phone Number"
1100
  msgstr "رقم الهاتف"
1101
 
1102
- #: admin/form-fields.php:296
1103
  msgctxt "form-fields admin"
1104
  msgid "Ratings Field"
1105
  msgstr "حقول التقييم"
1106
 
1107
- #: admin/form-fields.php:297
1108
  msgctxt "form-fields admin"
1109
  msgid "Twitter"
1110
  msgstr "تويتر"
1111
 
1112
- #: admin/form-fields.php:298
1113
  msgctxt "form-fields admin"
1114
  msgid "Website"
1115
  msgstr "موقع الأنترنيت"
1116
 
1117
- #: admin/form-fields.php:319
1118
  msgctxt "form-fields admin"
1119
  msgid "Tags updated."
1120
  msgstr "تم تحديث الوسوم"
@@ -2244,7 +2244,7 @@ msgctxt "form-fields admin"
2244
  msgid "Please see the <a>Form Fields documentation</a> for more details."
2245
  msgstr "المرجو مراجعة <a>وثائق حقول الاستمارة</a> للحصول على مزيد من التفاصيل."
2246
 
2247
- #. #-#-#-#-# WPBDM.pot (Business Directory Plugin 4.1.5dev6) #-#-#-#-#
2248
  #. Plugin Name of the plugin/theme
2249
  #: admin/templates/header.tpl.php:4
2250
  msgid "Business Directory Plugin"
@@ -3009,33 +3009,33 @@ msgctxt "tracking"
3009
  msgid "Allow Tracking"
3010
  msgstr "السماح بالتتبع"
3011
 
3012
- #: business-directory-plugin.php:667
3013
  msgctxt "admin plugins"
3014
  msgid "Settings"
3015
  msgstr "الإعدادات"
3016
 
3017
- #: business-directory-plugin.php:775 business-directory-plugin.php:782
3018
  msgctxt "rss feed"
3019
  msgid "%s Feed"
3020
  msgstr "تغذية %s"
3021
 
3022
- #: business-directory-plugin.php:1117 core/view-submit-listing.php:58
3023
  #: core/views/submit_listing.php:10
3024
  msgctxt "views"
3025
  msgid "Submit A Listing"
3026
  msgstr "إضافة إعلان"
3027
 
3028
- #: business-directory-plugin.php:1122
3029
  msgctxt "title"
3030
  msgid "Find a Listing"
3031
  msgstr "العثور على إعلان"
3032
 
3033
- #: business-directory-plugin.php:1127
3034
  msgctxt "title"
3035
  msgid "View All Listings"
3036
  msgstr "عرض جميع الإعلانات"
3037
 
3038
- #: business-directory-plugin.php:1156
3039
  msgctxt "title"
3040
  msgid "Listings tagged: %s"
3041
  msgstr "إعلانات ذات وسم: %s"
@@ -3101,41 +3101,41 @@ msgctxt "form-fields-api"
3101
  msgid "Invalid form field type"
3102
  msgstr "نوع حقل استمارة غير صحيح"
3103
 
3104
- #: core/class-form-field.php:498
3105
  msgctxt "form-fields-api"
3106
  msgid "Field label is required."
3107
  msgstr "تسمية الحقل مطلوب."
3108
 
3109
- #: core/class-form-field.php:508
3110
  msgctxt "form-fields-api"
3111
  msgid "Requested field type change is incompatible. Type will not be modified."
3112
  msgstr "تغيير نوع الحقل المطلوب غير متوافق. لن يتم تعديل النوع."
3113
 
3114
- #: core/class-form-field.php:528
3115
  msgctxt "form-fields-api"
3116
  msgid ""
3117
  "There can only be one field with association \"%s\". Please select another "
3118
  "association."
3119
  msgstr "يمكن أن يكون هناك حقل واحد مع رابطة \"%s\". المرجو تحديد رابطة أخرى."
3120
 
3121
- #: core/class-form-field.php:538
3122
  msgctxt "form-fields-api"
3123
  msgid "\"%s\" is an invalid field type for this association."
3124
  msgstr "\"%s\" نوع حقل غير صالح لهذه الرابطة."
3125
 
3126
- #: core/class-form-field.php:576
3127
  msgctxt "form-fields-api"
3128
  msgid "Invalid field ID"
3129
  msgstr "معرف حقل غير صالح"
3130
 
3131
- #: core/class-form-field.php:585
3132
  msgctxt "form-fields api"
3133
  msgid ""
3134
  "This form field can't be deleted because it is required for the plugin to "
3135
  "work."
3136
  msgstr "لا يمكن حذف هذا الحقل لأنه مطلوب لعمل الإضافة."
3137
 
3138
- #: core/class-form-field.php:597
3139
  msgctxt "form-fields-api"
3140
  msgid "An error occurred while trying to delete this field."
3141
  msgstr "حدث خطأ أثناء محاولة حذف هذا الحقل."
@@ -3196,12 +3196,12 @@ msgctxt "listing"
3196
  msgid "(Fee Unavailable)"
3197
  msgstr "(رسم غير متوفر)"
3198
 
3199
- #: core/class-listings-api.php:306
3200
  msgctxt "notify email"
3201
  msgid "[%s] New listing notification"
3202
  msgstr "[%s] تنبيه الإعلان الجديد"
3203
 
3204
- #: core/class-listings-api.php:325
3205
  msgctxt "notify email"
3206
  msgid "[%s] Listing edit notification"
3207
  msgstr "[%s] تنبيه تحرير الإعلان"
@@ -3585,13 +3585,13 @@ msgctxt "admin settings"
3585
  msgid "Enable AJAX compatibility mode?"
3586
  msgstr "تمكين وضع التوافق أجاكس؟"
3587
 
3588
- #: core/class-settings.php:181 core/class-settings.php:665
3589
  msgctxt "admin settings"
3590
  msgid "Listings"
3591
  msgstr "الإعلانات"
3592
 
3593
- #: core/class-settings.php:182 core/class-settings.php:335
3594
- #: core/class-settings.php:622
3595
  msgctxt "admin settings"
3596
  msgid "General Settings"
3597
  msgstr "الإعدادات العامة"
@@ -3661,51 +3661,69 @@ msgstr ""
3661
  "إستخدم هذا لمنع الرسائل المزعجة لأصحاب الإعلانات. 0 تعني إرسال غير محدود في "
3662
  "اليوم الواحد."
3663
 
3664
- #: core/class-settings.php:220
3665
  msgctxt "admin settings"
3666
  msgid "Include comment form on listing pages?"
3667
  msgstr "يتضمن نموذج التعليق على صفحات الإعلانات؟"
3668
 
3669
- #: core/class-settings.php:223
3670
  msgctxt "admin settings"
3671
  msgid ""
3672
- "Allow visitors to discuss listings using the standard WordPress comment "
3673
- "form. Comments are public."
 
 
 
3674
  msgstr ""
3675
- "السماح للزوار بمناقشة الإعلانات باستخدام نموذج التعليق القياسي لووردبريس. "
3676
- "التعليقات مشاهدة للعموم."
3677
 
3678
- #: core/class-settings.php:224
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
3679
  msgctxt "admin settings"
3680
  msgid "Show listings under categories on main page?"
3681
  msgstr "إظهار الإعلانات تحت التصنيفات على الصفحة الرئيسية؟"
3682
 
3683
- #: core/class-settings.php:225
3684
  msgctxt "admin settings"
3685
  msgid "Status of listings upon uninstalling plugin"
3686
  msgstr "حالة الإعلانات عند إلغاء تثبيت الإضافة"
3687
 
3688
- #: core/class-settings.php:226 core/class-settings.php:228
3689
  msgctxt "post status"
3690
  msgid "Draft"
3691
  msgstr "مسودة"
3692
 
3693
- #: core/class-settings.php:226 core/class-settings.php:228
3694
  msgctxt "post status"
3695
  msgid "Trash"
3696
  msgstr "سلة المهملات"
3697
 
3698
- #: core/class-settings.php:227
3699
  msgctxt "admin settings"
3700
  msgid "Status of deleted listings"
3701
  msgstr "حالة الإعلانات المحذوفة"
3702
 
3703
- #: core/class-settings.php:229
3704
  msgctxt "admin settings"
3705
  msgid "Submit Listing instructions message"
3706
  msgstr "إرسال رسالة تعليمات الإعلانات"
3707
 
3708
- #: core/class-settings.php:229
3709
  msgctxt "admin settings"
3710
  msgid ""
3711
  "This text is displayed at the first page of the Submit Listing process for "
@@ -3716,22 +3734,22 @@ msgstr ""
3716
  "استخدامه لإعطاء إرشادات حول تعبئة النموذج أو أي شيء تريد إعلام الأعضاء به "
3717
  "قبل أن يبدأوا."
3718
 
3719
- #: core/class-settings.php:231
3720
  msgctxt "admin settings"
3721
  msgid "Listing Renewal"
3722
  msgstr "تجديد الإعلان"
3723
 
3724
- #: core/class-settings.php:232
3725
  msgctxt "admin settings"
3726
  msgid "Turn on listing renewal option?"
3727
  msgstr "قم بتشغيل خيار تجديد الإعلان؟"
3728
 
3729
- #: core/class-settings.php:235
3730
  msgctxt "admin settings"
3731
  msgid "Allow recurring renewal payments?"
3732
  msgstr "السماح بتجديد الدفعات المتكررة؟"
3733
 
3734
- #: core/class-settings.php:238
3735
  msgctxt "admin settings"
3736
  msgid ""
3737
  "Allow users to opt in for automatic renewal of their listings. The fee is "
@@ -3740,48 +3758,48 @@ msgstr ""
3740
  "السماح للأعضاء باختيار التجديد التلقائي لإعلاناتهم. الرسوم تستوفى وقت انتهاء "
3741
  "تاريخ الإعلان دون تدخل العضو."
3742
 
3743
- #: core/class-settings.php:242
3744
  msgctxt "admin settings"
3745
  msgid "Use recurring payments as the default payment method?"
3746
  msgstr "استخدام المدفوعات المتكررة كطريقة الدفع الافتراضية؟"
3747
 
3748
- #: core/class-settings.php:245
3749
  msgctxt "admin settings"
3750
  msgid ""
3751
  "Enable automatic renewal without having users opt in during the submit "
3752
  "process."
3753
  msgstr "تمكين التجديد التلقائي دون إخبار الأعضاء أثناء عملية الإرسال."
3754
 
3755
- #: core/class-settings.php:250
3756
  msgctxt "admin settings"
3757
  msgid "Listing renewal e-mail threshold (in days)"
3758
  msgstr "عتبة رسالة البريد الإلكتروني لتجديد الإعلان (بالأيام)"
3759
 
3760
- #: core/class-settings.php:253
3761
  msgctxt "admin settings"
3762
  msgid ""
3763
  "Configure how many days before listing expiration is the renewal e-mail sent."
3764
  msgstr ""
3765
  "حدد عدد الأيام قبل انتهاء تاريخ الإعلان لإرسال رسالة بريد إلكتروني لتجديده."
3766
 
3767
- #: core/class-settings.php:257
3768
  msgctxt "admin settings"
3769
  msgid ""
3770
  "Send expiration notices including a cancel links to auto-renewed listings?"
3771
  msgstr ""
3772
  "إرسال إشعارات انتهاء التاريخ مصحوبة بروابط إلغاء التجديد التلقائي للإعلانات؟"
3773
 
3774
- #: core/class-settings.php:264
3775
  msgctxt "admin settings"
3776
  msgid "Remind listing owners of expired listings (past due)?"
3777
  msgstr "ذكِّر أصحاب الإعلانات المنتهية التاريخ (مستحقة)؟"
3778
 
3779
- #: core/class-settings.php:269
3780
  msgctxt "admin settings"
3781
  msgid "Listing renewal reminder e-mail threshold (in days)"
3782
  msgstr "عتبة التذكير بالبريد الإلكتروني لتجديد الإعلان (بالأيام)"
3783
 
3784
- #: core/class-settings.php:272
3785
  msgctxt "admin settings"
3786
  msgid ""
3787
  "Configure how many days after the expiration of a listing an e-mail reminder "
@@ -3790,172 +3808,172 @@ msgstr ""
3790
  "حدد عدد الأيام بعد انتهاء تاريخ الإعلان لإرسال رسالة بريد إلكتروني لتذكير "
3791
  "صاحب الإعلان."
3792
 
3793
- #: core/class-settings.php:275
3794
  msgctxt "admin settings"
3795
  msgid "Post/Category Settings"
3796
  msgstr "إعدادات الإعلان/التصنيف"
3797
 
3798
- #: core/class-settings.php:276
3799
  msgctxt "admin settings"
3800
  msgid "Default new post status"
3801
  msgstr "حالة الإعلان الجديد الافتراضية"
3802
 
3803
- #: core/class-settings.php:277 core/class-settings.php:280
3804
  msgctxt "post status"
3805
  msgid "Published"
3806
  msgstr "نشرت"
3807
 
3808
- #: core/class-settings.php:277 core/class-settings.php:280
3809
  msgctxt "post status"
3810
  msgid "Pending"
3811
  msgstr " في الانتظار"
3812
 
3813
- #: core/class-settings.php:279
3814
  msgctxt "admin settings"
3815
  msgid "Edit post status"
3816
  msgstr "تعديل حالة الإعلان"
3817
 
3818
- #: core/class-settings.php:281
3819
  msgctxt "admin settings"
3820
  msgid "Order categories list by"
3821
  msgstr "ترتيب قائمة التصنيفات حسب"
3822
 
3823
- #: core/class-settings.php:283
3824
  msgctxt "admin settings"
3825
  msgid "Name"
3826
  msgstr "الإسم"
3827
 
3828
- #: core/class-settings.php:284
3829
  msgctxt "admin settings"
3830
  msgid "Slug"
3831
  msgstr "رابط لطيف"
3832
 
3833
- #: core/class-settings.php:285
3834
  msgctxt "admin settings"
3835
  msgid "Listing Count"
3836
  msgstr "عداد الإعلانات"
3837
 
3838
- #: core/class-settings.php:287
3839
  msgctxt "admin settings"
3840
  msgid "Sort order for categories"
3841
  msgstr "ترتيب فرز التصنيفات"
3842
 
3843
- #: core/class-settings.php:288 core/class-settings.php:306
3844
  msgctxt "admin settings"
3845
  msgid "Ascending"
3846
  msgstr "تصاعدي"
3847
 
3848
- #: core/class-settings.php:288 core/class-settings.php:306
3849
  msgctxt "admin settings"
3850
  msgid "Descending"
3851
  msgstr "تنازلي"
3852
 
3853
- #: core/class-settings.php:289
3854
  msgctxt "admin settings"
3855
  msgid "Show category post count?"
3856
  msgstr "إظهار عدد إعلانات التصنيف؟"
3857
 
3858
- #: core/class-settings.php:290
3859
  msgctxt "admin settings"
3860
  msgid "Hide empty categories?"
3861
  msgstr "إخفاء التصنيفات الفارغة؟"
3862
 
3863
- #: core/class-settings.php:291
3864
  msgctxt "admin settings"
3865
  msgid "Show only parent categories in category list?"
3866
  msgstr "إظهار التصنيفات الأبوية فقط في قائمة التصنيف؟"
3867
 
3868
- #: core/class-settings.php:293
3869
  msgctxt "admin settings"
3870
  msgid "Listings Sorting"
3871
  msgstr "فرز الإعلانات"
3872
 
3873
- #: core/class-settings.php:294
3874
  msgctxt "admin settings"
3875
  msgid "Order directory listings by"
3876
  msgstr "ترتيب إعلانات الدليل حسب"
3877
 
3878
- #: core/class-settings.php:296
3879
  msgctxt "admin settings"
3880
  msgid "Title"
3881
  msgstr "العنوان"
3882
 
3883
- #: core/class-settings.php:297
3884
  msgctxt "admin settings"
3885
  msgid "Author"
3886
  msgstr "الكاتب"
3887
 
3888
- #: core/class-settings.php:298 core/class-settings.php:708
3889
  msgctxt "admin settings"
3890
  msgid "Date posted"
3891
  msgstr "تاريخ النشر"
3892
 
3893
- #: core/class-settings.php:299 core/class-settings.php:709
3894
  msgctxt "admin settings"
3895
  msgid "Date last modified"
3896
  msgstr "تاريخ آخر تعديل"
3897
 
3898
- #: core/class-settings.php:300
3899
  msgctxt "admin settings"
3900
  msgid "Random"
3901
  msgstr "عشوائية"
3902
 
3903
- #: core/class-settings.php:301
3904
  msgctxt "admin settings"
3905
  msgid "Paid first then free. Inside each group by date."
3906
  msgstr "تدفع أولاً ثم مجاناً. داخل كل مجموعة حسب التاريخ."
3907
 
3908
- #: core/class-settings.php:302
3909
  msgctxt "admin settings"
3910
  msgid "Paid first then free. Inside each group by title."
3911
  msgstr "تدفع أولاً ثم مجاناً. داخل كل مجموعة بعنوان."
3912
 
3913
- #: core/class-settings.php:304
3914
  msgctxt "admin settings"
3915
  msgid "Sort directory listings by"
3916
  msgstr "فرز إعلانات الدليل حسب"
3917
 
3918
- #: core/class-settings.php:305
3919
  msgctxt "admin settings"
3920
  msgid "Ascending for ascending order A-Z, Descending for descending order Z-A"
3921
  msgstr "ترتيب تصاعدي من أ إلى ي، ترتيب تنازلي من ي إلى أ"
3922
 
3923
- #: core/class-settings.php:310
3924
  msgctxt "admin settings"
3925
  msgid "Enable sort bar?"
3926
  msgstr "تمكين شريط الفرز؟"
3927
 
3928
- #: core/class-settings.php:315
3929
  msgctxt "admin settings"
3930
  msgid "Sortbar Fields"
3931
  msgstr "حقول شريط الفرز"
3932
 
3933
- #: core/class-settings.php:324
3934
  msgctxt "admin settings"
3935
  msgid "Featured (Sticky) listing settings"
3936
  msgstr "إعدادات الإعلانات (المثبتة) المميزة"
3937
 
3938
- #: core/class-settings.php:325
3939
  msgctxt "admin settings"
3940
  msgid "Offer sticky listings?"
3941
  msgstr "عروض الإعلانات المثبتة"
3942
 
3943
- #: core/class-settings.php:326
3944
  msgctxt "admin settings"
3945
  msgid "Offer upgrades during submit process?"
3946
  msgstr "عرض الترقية خلال عملية إضافة إعلان؟"
3947
 
3948
- #: core/class-settings.php:327
3949
  msgctxt "admin settings"
3950
  msgid "Sticky listing price"
3951
  msgstr "سعر الإعلان المثبت"
3952
 
3953
- #: core/class-settings.php:328
3954
  msgctxt "admin settings"
3955
  msgid "Sticky listing page description text"
3956
  msgstr "نص وصف صفحة الإعلان المثبت"
3957
 
3958
- #: core/class-settings.php:329
3959
  msgctxt "admin settings"
3960
  msgid ""
3961
  "You can upgrade your listing to featured status. Featured listings will "
@@ -3964,17 +3982,17 @@ msgstr ""
3964
  "يمكنك ترقية إعلانك إلى الحالة المميزة. الإعلانات المميزة سوف تظهر دائماً أعلى "
3965
  "الإعلانات العادية."
3966
 
3967
- #: core/class-settings.php:334
3968
  msgctxt "admin settings"
3969
  msgid "E-Mail"
3970
  msgstr "البريد الإلكتروني"
3971
 
3972
- #: core/class-settings.php:338
3973
  msgctxt "admin settings"
3974
  msgid "Display email address fields publicly?"
3975
  msgstr "عرض حقول عنوان البريد الإلكتروني علنا؟"
3976
 
3977
- #: core/class-settings.php:341
3978
  msgctxt "admin settings"
3979
  msgid ""
3980
  "Shows the email address of the listing owner to all web users. NOT "
@@ -3985,12 +4003,12 @@ msgstr ""
3985
  "لأن هذا يزيد من الرسائل المزعجة إلى العنوان ويسمح للمتطفلين بجمع عنوانين "
3986
  "البريد للاستخدام في المستقبل."
3987
 
3988
- #: core/class-settings.php:344
3989
  msgctxt "admin settings"
3990
  msgid "How to determine the listing's email address?"
3991
  msgstr "كيفية تحديد عنوان البريد الإلكتروني في الإعلان؟"
3992
 
3993
- #: core/class-settings.php:347
3994
  msgctxt "admin settings"
3995
  msgid ""
3996
  "This affects emails sent to listing owners via contact forms or when their "
@@ -3999,124 +4017,124 @@ msgstr ""
3999
  "هذا يؤثر على رسائل البريد الإلكتروني المرسلة إلى مالكي الإعلانات عبر نموذج "
4000
  "الاتصال أو عندما ينتهي تاريخ الإعلانات."
4001
 
4002
- #: core/class-settings.php:349
4003
  msgctxt "admin settings"
4004
  msgid "Try listing's email field first, then author's email."
4005
  msgstr "جرب البريد الإلكتروني للإعلانات أولاً، ثم البريد الإلكتروني للكاتب."
4006
 
4007
- #: core/class-settings.php:350
4008
  msgctxt "admin settings"
4009
  msgid "Try author's email first and then listing's email field."
4010
  msgstr "جرب البريد الإلكتروني للكاتب أولاً، ثم البريد الإلكتروني للإعلانات."
4011
 
4012
- #: core/class-settings.php:354
4013
  msgctxt "admin settings"
4014
  msgid "E-Mail Notifications"
4015
  msgstr "تنبيهات البريد الإلكتروني"
4016
 
4017
- #: core/class-settings.php:357
4018
  msgctxt "admin settings"
4019
  msgid "Notify admin via e-mail when..."
4020
  msgstr "إبلاغ المدير عن طريق البريد الإلكتروني عندما..."
4021
 
4022
- #: core/class-settings.php:361
4023
  msgctxt "admin settings"
4024
  msgid "A new listing is submitted."
4025
  msgstr "يتم إضافة إعلان جديد"
4026
 
4027
- #: core/class-settings.php:362
4028
  msgctxt "admin settings"
4029
  msgid "A listing is edited."
4030
  msgstr "تم تحرير الإعلان"
4031
 
4032
- #: core/class-settings.php:363
4033
  msgctxt "admin settings"
4034
  msgid "A listing expires."
4035
  msgstr "الإعلان منتهي التاريخ"
4036
 
4037
- #: core/class-settings.php:364
4038
  msgctxt "admin settings"
4039
  msgid "A contact message is sent to a listing's owner."
4040
  msgstr "يتم إرسال رسالة اتصال لمالك الإعلان."
4041
 
4042
- #: core/class-settings.php:370
4043
  msgctxt "admin settings"
4044
  msgid "CC this e-mail address too"
4045
  msgstr "إرسال نسخة من الرسالة الى عنوان البريد الإلكتروني هذا أيضا"
4046
 
4047
- #: core/class-settings.php:376
4048
  msgctxt "admin settings"
4049
  msgid "Notify users via e-mail when..."
4050
  msgstr "إعلام الأعضاء عن طريق البريد الإلكتروني عندما..."
4051
 
4052
- #: core/class-settings.php:379
4053
  msgctxt "admin settings"
4054
  msgid "You can modify the text template used for most of these e-mails below."
4055
  msgstr ""
4056
  "يمكنك تعديل قالب النص المستخدم لمعظم رسائل البريد الإلكتروني هذه أدناه."
4057
 
4058
- #: core/class-settings.php:380
4059
  msgctxt "admin settings"
4060
  msgid "Their listing is submitted."
4061
  msgstr "يتم إضافة الإعلان الخاص بهم"
4062
 
4063
- #: core/class-settings.php:381
4064
  msgctxt "admin settings"
4065
  msgid "Their listing is approved/published."
4066
  msgstr "تمت الموافقة ونشر الإعلان الخاص بهم"
4067
 
4068
- #: core/class-settings.php:390
4069
  msgctxt "contact email"
4070
  msgid "You have received a reply from your listing at %s."
4071
  msgstr "تلقيت ردا من الإعلان الخاص بك في %s."
4072
 
4073
- #: core/class-settings.php:391
4074
  msgctxt "contact email"
4075
  msgid "Name: %s"
4076
  msgstr "الإسم: %s"
4077
 
4078
- #: core/class-settings.php:392
4079
  msgctxt "contact email"
4080
  msgid "E-Mail: %s"
4081
  msgstr "البريد الإلكتروني: %s"
4082
 
4083
- #: core/class-settings.php:393
4084
  msgctxt "contact email"
4085
  msgid "Message:"
4086
  msgstr "الرسالة:"
4087
 
4088
- #: core/class-settings.php:395
4089
  msgctxt "contact email"
4090
  msgid "Time: %s"
4091
  msgstr "الوقت: %s"
4092
 
4093
- #: core/class-settings.php:397
4094
  msgctxt "admin settings"
4095
  msgid "E-Mail Templates"
4096
  msgstr "قوالب البريد الإلكتروني"
4097
 
4098
- #: core/class-settings.php:400
4099
  msgctxt "admin settings"
4100
  msgid "Email confirmation message"
4101
  msgstr "رسالة تأكيد البريد الإلكتروني"
4102
 
4103
- #: core/class-settings.php:404
4104
  msgctxt "admin settings"
4105
  msgid "Sent after a listing has been submitted."
4106
  msgstr "ترسل بعد أن يضاف الإعلان."
4107
 
4108
- #: core/class-settings.php:405 core/class-settings.php:413
4109
- #: core/class-settings.php:454
4110
  msgctxt "admin settings"
4111
  msgid "Listing's title"
4112
  msgstr "عنوان الإعلان"
4113
 
4114
- #: core/class-settings.php:408
4115
  msgctxt "admin settings"
4116
  msgid "Listing published message"
4117
  msgstr "رسالة نشر الإعلان"
4118
 
4119
- #: core/class-settings.php:411
4120
  msgctxt "admin settings"
4121
  msgid ""
4122
  "Your listing \"[listing]\" is now available at [listing-url] and can be "
@@ -4125,22 +4143,22 @@ msgstr ""
4125
  "القائمة الخاصة بك \"[listing]\" متوفر الآن في [listing-url] ويمكن مشاهدتها "
4126
  "من قبل العموم."
4127
 
4128
- #: core/class-settings.php:412
4129
  msgctxt "admin settings"
4130
  msgid "Sent when the listing has been published or approved by an admin."
4131
  msgstr "ترسل عندما يتم نشر الإعلان أو الموافقة عليه من طرف المدير."
4132
 
4133
- #: core/class-settings.php:414
4134
  msgctxt "admin settings"
4135
  msgid "Listing's URL"
4136
  msgstr "عنوان URL الإعلان"
4137
 
4138
- #: core/class-settings.php:418
4139
  msgctxt "admin settings"
4140
  msgid "Listing Contact Message"
4141
  msgstr "رسالة اتصال الإعلان"
4142
 
4143
- #: core/class-settings.php:422
4144
  msgctxt "admin settings"
4145
  msgid ""
4146
  "Sent to listing owners when someone uses the contact form on their listing "
@@ -4149,32 +4167,32 @@ msgstr ""
4149
  "ترسل إلى مالكي الإعلانات عندما يستخدم شخص ما نموذج جهة الاتصال في صفحات "
4150
  "الإعلانات الخاصة بهم."
4151
 
4152
- #: core/class-settings.php:432
4153
  msgctxt "admin settings"
4154
  msgid "Payment related"
4155
  msgstr "المدفوعات ذات الصلة"
4156
 
4157
- #: core/class-settings.php:449
4158
  msgctxt "admin settings"
4159
  msgid "Payment abandoned reminder message"
4160
  msgstr "رسالة تذكير بالتخلي عن الدفع"
4161
 
4162
- #: core/class-settings.php:453
4163
  msgctxt "admin settings"
4164
  msgid "Sent some time after a pending payment is abandoned by users."
4165
  msgstr "ترسل أحيانا بعد أن يتخلي الأعضاء عن الدفعة المنتظرة."
4166
 
4167
- #: core/class-settings.php:455
4168
  msgctxt "admin settings"
4169
  msgid "Checkout URL link"
4170
  msgstr "رابط URL إتمام الشراء"
4171
 
4172
- #: core/class-settings.php:461
4173
  msgctxt "admin settings"
4174
  msgid "Renewal Reminders"
4175
  msgstr "رسائل تذكير التجديد"
4176
 
4177
- #: core/class-settings.php:464
4178
  msgctxt "admin settings"
4179
  msgid ""
4180
  "This section refers only to the text of the renewal/expiration notices. You "
@@ -4183,12 +4201,12 @@ msgstr ""
4183
  "هذا القسم يحيل فقط إلى نص إشعارات التجديد/انتهاء التاريخ. يمكنك أيضا "
4184
  "<a>إعداد متى يتم إرسال رسائل البريد الإلكتروني</a>."
4185
 
4186
- #: core/class-settings.php:468
4187
  msgctxt "admin settings"
4188
  msgid "Pending expiration e-mail message"
4189
  msgstr "رسالة البريد الإلكتروني أثناء انتظار انتهاء التاريخ"
4190
 
4191
- #: core/class-settings.php:472
4192
  msgctxt "settings"
4193
  msgid ""
4194
  "Sent some time before the listing expires. Applies to non-recurring renewals "
@@ -4197,50 +4215,50 @@ msgstr ""
4197
  "ترسل أحيانا قبل انتهاء تاريخ الإعلان. تنطبق على عمليات التجديد غير المتكررة "
4198
  "فقط."
4199
 
4200
- #: core/class-settings.php:473 core/class-settings.php:486
4201
- #: core/class-settings.php:499 core/class-settings.php:512
4202
- #: core/class-settings.php:525
4203
  msgctxt "settings"
4204
  msgid "Listing's name (with link)"
4205
  msgstr "إسم الإعلان (مع رابط)"
4206
 
4207
- #: core/class-settings.php:474 core/class-settings.php:487
4208
- #: core/class-settings.php:500 core/class-settings.php:513
4209
- #: core/class-settings.php:526
4210
  msgctxt "settings"
4211
  msgid "Author's name"
4212
  msgstr "إسم الكاتب"
4213
 
4214
- #: core/class-settings.php:475 core/class-settings.php:488
4215
- #: core/class-settings.php:527
4216
  msgctxt "settings"
4217
  msgid "Expiration date"
4218
  msgstr "تاريخ انتهاء التاريخ"
4219
 
4220
- #: core/class-settings.php:476
4221
  msgctxt "settings"
4222
  msgid "Category that is going to expire"
4223
  msgstr "التصنيف الذي سوف ينتهي"
4224
 
4225
- #: core/class-settings.php:477 core/class-settings.php:490
4226
- #: core/class-settings.php:529
4227
  msgctxt "settings"
4228
  msgid "Link to renewal page"
4229
  msgstr "رابط إلى صفحة التجديد"
4230
 
4231
- #: core/class-settings.php:478 core/class-settings.php:491
4232
- #: core/class-settings.php:503 core/class-settings.php:516
4233
- #: core/class-settings.php:530
4234
  msgctxt "settings"
4235
  msgid "Link to your site"
4236
  msgstr "رابط إلى موقعك"
4237
 
4238
- #: core/class-settings.php:481
4239
  msgctxt "admin settings"
4240
  msgid "Listing Renewal e-mail message"
4241
  msgstr "رسالة البريد الإلكتروني لتجديد الإعلان"
4242
 
4243
- #: core/class-settings.php:485
4244
  msgctxt "settings"
4245
  msgid ""
4246
  "Sent at the time of listing expiration. Applies to non-recurring renewals "
@@ -4248,17 +4266,17 @@ msgid ""
4248
  msgstr ""
4249
  "ترسل وقت انتهاء تاريخ الإعلان. تنطبق على عمليات التجديد غير المتكررة فقط."
4250
 
4251
- #: core/class-settings.php:489 core/class-settings.php:528
4252
  msgctxt "settings"
4253
  msgid "Category that expired"
4254
  msgstr "التصنيف الذي انتهى وقته"
4255
 
4256
- #: core/class-settings.php:494
4257
  msgctxt "admin settings"
4258
  msgid "Listing auto-renewal reminder (recurring payments)"
4259
  msgstr "تذكير بالتجديد التلقائي للإعلان (الدفعات المتكررة)"
4260
 
4261
- #: core/class-settings.php:498
4262
  msgctxt "settings"
4263
  msgid ""
4264
  "Sent some time before the listing is auto-renewed. Applies to recurring "
@@ -4267,44 +4285,44 @@ msgstr ""
4267
  "ترسل أحيانا قبل التجديد التلقائي للإعلان. تنطبق على عمليات التجديد المتكررة "
4268
  "فقط."
4269
 
4270
- #: core/class-settings.php:501 core/class-settings.php:515
4271
  msgctxt "settings"
4272
  msgid "Renewal date"
4273
  msgstr "تاريخ التجديد"
4274
 
4275
- #: core/class-settings.php:502
4276
  msgctxt "settings"
4277
  msgid "Category that is going to be renewed"
4278
  msgstr "التصنيف الذي سيتم تجديده"
4279
 
4280
- #: core/class-settings.php:504
4281
  msgctxt "settings"
4282
  msgid "Link to manage subscriptions"
4283
  msgstr "رابط لإدارة الاشتراكات"
4284
 
4285
- #: core/class-settings.php:507
4286
  msgctxt "admin settings"
4287
  msgid "Listing Renewal e-mail message (recurring payments)"
4288
  msgstr "رسالة البريد الإلكتروني لتجديد الإعلان (الدفعات المتكررة)"
4289
 
4290
- #: core/class-settings.php:511
4291
  msgctxt "settings"
4292
  msgid ""
4293
  "Sent after the listing is auto-renewed. Applies to recurring renewals only."
4294
  msgstr ""
4295
  "ترسل بعد التجديد التلقائي للإعلان. تنطبق على عمليات التجديد المتكررة فقط."
4296
 
4297
- #: core/class-settings.php:514
4298
  msgctxt "settings"
4299
  msgid "Renewed category"
4300
  msgstr "تم تجديد التصنيف"
4301
 
4302
- #: core/class-settings.php:520
4303
  msgctxt "admin settings"
4304
  msgid "Renewal reminder e-mail message"
4305
  msgstr "رسالة البريد الإلكتروني للتذكير بالتجديد"
4306
 
4307
- #: core/class-settings.php:524
4308
  msgctxt "settings"
4309
  msgid ""
4310
  "Sent some time after listing expiration and when no renewal has occurred. "
@@ -4313,32 +4331,32 @@ msgstr ""
4313
  "ترسل أحيانا بعد انتهاء تاريخ الإعلان وحينما لا يتم التجديد. تنطبق على عمليات "
4314
  "التجديد المتكررة وغير المتكررة."
4315
 
4316
- #: core/class-settings.php:534
4317
  msgctxt "admin settings"
4318
  msgid "Payment"
4319
  msgstr "الدفع"
4320
 
4321
- #: core/class-settings.php:535
4322
  msgctxt "admin settings"
4323
  msgid "Payment Settings"
4324
  msgstr "إعدادات الدفع"
4325
 
4326
- #: core/class-settings.php:538
4327
  msgctxt "admin settings"
4328
  msgid "Turn On payments?"
4329
  msgstr "تشغيل الدفعات؟"
4330
 
4331
- #: core/class-settings.php:540
4332
  msgctxt "admin settings"
4333
  msgid "Put payment gateways in test mode?"
4334
  msgstr "وضع بوابات الدفع في وضع الاختبار؟"
4335
 
4336
- #: core/class-settings.php:545
4337
  msgctxt "admin settings"
4338
  msgid "Perform checkouts on the secure (HTTPS) version of your site?"
4339
  msgstr "تنفيذ إنهاء الشراء على الإصدار الآمن (HTTPS) لموقع الويب الخاص بك؟"
4340
 
4341
- #: core/class-settings.php:548
4342
  msgctxt "admin settings"
4343
  msgid ""
4344
  "Recommended for added security. For this to work you need to enable HTTPS on "
@@ -4347,162 +4365,162 @@ msgstr ""
4347
  "موصى به لأمن أكثر. لكي يعمل هذا أنت بحاجة إلى تمكين HTTPS على الخادم الخاص "
4348
  "بك و <a>الحصول على شهادة SSL</a>."
4349
 
4350
- #: core/class-settings.php:552
4351
  msgctxt "admin settings"
4352
  msgid "Currency Code"
4353
  msgstr "رمز العملة"
4354
 
4355
- #: core/class-settings.php:554
4356
  msgctxt "admin settings"
4357
  msgid "Australian Dollar (AUD)"
4358
  msgstr "الدولار الأسترالي (AUD)"
4359
 
4360
- #: core/class-settings.php:555
4361
  msgctxt "admin settings"
4362
  msgid "Brazilian Real (BRL)"
4363
  msgstr "الريال البرازيلي (BRL)"
4364
 
4365
- #: core/class-settings.php:556
4366
  msgctxt "admin settings"
4367
  msgid "Canadian Dollar (CAD)"
4368
  msgstr "الدولار الكندي (CAD)"
4369
 
4370
- #: core/class-settings.php:557
4371
  msgctxt "admin settings"
4372
  msgid "Czech Koruna (CZK)"
4373
  msgstr "الكورونا التشيكية (CZK)"
4374
 
4375
- #: core/class-settings.php:558
4376
  msgctxt "admin settings"
4377
  msgid "Danish Krone (DKK)"
4378
  msgstr "الكرونة الدانماركية (DKK)"
4379
 
4380
- #: core/class-settings.php:559
4381
  msgctxt "admin settings"
4382
  msgid "Euro (EUR)"
4383
  msgstr "اليورو (EUR)"
4384
 
4385
- #: core/class-settings.php:560
4386
  msgctxt "admin settings"
4387
  msgid "Hong Kong Dollar (HKD)"
4388
  msgstr "دولار هونج كونج (HKD)"
4389
 
4390
- #: core/class-settings.php:561
4391
  msgctxt "admin settings"
4392
  msgid "Hungarian Forint (HUF)"
4393
  msgstr "الفورنت الهنغاري (HUF)"
4394
 
4395
- #: core/class-settings.php:562
4396
  msgctxt "admin settings"
4397
  msgid "Israeli New Shequel (ILS)"
4398
  msgstr "الشكيل الإسرائيلي الجديد (ILS)"
4399
 
4400
- #: core/class-settings.php:563
4401
  msgctxt "admin settings"
4402
  msgid "Japanese Yen (JPY)"
4403
  msgstr "الين الياباني (JPY)"
4404
 
4405
- #: core/class-settings.php:564
4406
  msgctxt "admin settings"
4407
  msgid "Malasian Ringgit (MYR)"
4408
  msgstr "الرينغيت الماليزي (MYR)"
4409
 
4410
- #: core/class-settings.php:565
4411
  msgctxt "admin settings"
4412
  msgid "Mexican Peso (MXN)"
4413
  msgstr "بيزو مكسيكي (MXN)"
4414
 
4415
- #: core/class-settings.php:566
4416
  msgctxt "admin settings"
4417
  msgid "Norwegian Krone (NOK)"
4418
  msgstr "الكرون النرويجي (NOK)"
4419
 
4420
- #: core/class-settings.php:567
4421
  msgctxt "admin settings"
4422
  msgid "New Zealand Dollar (NZD)"
4423
  msgstr "الدولار النيوزيلندي (NZD)"
4424
 
4425
- #: core/class-settings.php:568
4426
  msgctxt "admin settings"
4427
  msgid "Philippine Peso (PHP)"
4428
  msgstr "بيزو فلبيني (PHP)"
4429
 
4430
- #: core/class-settings.php:569
4431
  msgctxt "admin settings"
4432
  msgid "Polish Zloty (PLN)"
4433
  msgstr "الزلوتي البولندي (PLN)"
4434
 
4435
- #: core/class-settings.php:570
4436
  msgctxt "admin settings"
4437
  msgid "Pound Sterling (GBP)"
4438
  msgstr "الجنيه الإسترليني (GBP)"
4439
 
4440
- #: core/class-settings.php:571
4441
  msgctxt "admin settings"
4442
  msgid "Singapore Dollar (SGD)"
4443
  msgstr "دولار سنغافوري (SGD)"
4444
 
4445
- #: core/class-settings.php:572
4446
  msgctxt "admin settings"
4447
  msgid "Swedish Krona (SEK)"
4448
  msgstr "الكرونا السويدية (SEK)"
4449
 
4450
- #: core/class-settings.php:573
4451
  msgctxt "admin settings"
4452
  msgid "Swiss Franc (CHF)"
4453
  msgstr "الفرنك السويسري (CHF)"
4454
 
4455
- #: core/class-settings.php:574
4456
  msgctxt "admin settings"
4457
  msgid "Taiwan Dollar (TWD)"
4458
  msgstr "الدولار التايواني (TWD)"
4459
 
4460
- #: core/class-settings.php:575
4461
  msgctxt "admin settings"
4462
  msgid "Thai Baht (THB)"
4463
  msgstr "البات التايلندي (THB)"
4464
 
4465
- #: core/class-settings.php:576
4466
  msgctxt "admin settings"
4467
  msgid "Turkish Lira (TRY)"
4468
  msgstr "الليرة التركية (TRY)"
4469
 
4470
- #: core/class-settings.php:577
4471
  msgctxt "admin settings"
4472
  msgid "U.S. Dollar (USD)"
4473
  msgstr "الدولار الأمريكي (USD)"
4474
 
4475
- #: core/class-settings.php:581
4476
  msgctxt "admin settings"
4477
  msgid "Currency Symbol"
4478
  msgstr "رمز العملة"
4479
 
4480
- #: core/class-settings.php:586
4481
  msgctxt "admin settings"
4482
  msgid "Currency symbol display"
4483
  msgstr "عرض رمز العملة"
4484
 
4485
- #: core/class-settings.php:590
4486
  msgctxt "admin settings"
4487
  msgid "Show currency symbol on the left"
4488
  msgstr "إظهار رمز العملة على اليسار"
4489
 
4490
- #: core/class-settings.php:591
4491
  msgctxt "admin settings"
4492
  msgid "Show currency symbol on the right"
4493
  msgstr "إظهار رمز العملة على اليمين"
4494
 
4495
- #: core/class-settings.php:592
4496
  msgctxt "admin settings"
4497
  msgid "Do not show currency symbol"
4498
  msgstr "عدم إظهار رمز العملة"
4499
 
4500
- #: core/class-settings.php:594
4501
  msgctxt "admin settings"
4502
  msgid "Thank you for payment message"
4503
  msgstr "رسالة الشكر على الدفع"
4504
 
4505
- #: core/class-settings.php:595
4506
  msgctxt "admin settings"
4507
  msgid ""
4508
  "Thank you for your payment. Your payment is being verified and your listing "
@@ -4511,12 +4529,12 @@ msgstr ""
4511
  "شكرا لك على الدفع. يتم الآن التحقق من الدفع وفحص إعلانك. يمكن أن تأخذ عملية "
4512
  "التحقق والمراجعة مدة 48 ساعة."
4513
 
4514
- #: core/class-settings.php:600
4515
  msgctxt "admin settings"
4516
  msgid "Ask users to come back for abandoned payments?"
4517
  msgstr "أطلب من الأعضاء العودة للمدفوعات المتخلى عنها؟"
4518
 
4519
- #: core/class-settings.php:603
4520
  msgctxt "admin settings"
4521
  msgid ""
4522
  "An abandoned payment is when a user attempts to place a listing and gets to "
@@ -4528,12 +4546,12 @@ msgstr ""
4528
  "إتمام الدفع للإعلان. هذا ينتج عنه أن الإعلانات تبدو وكأنها فشلت، وذلك عندما "
4529
  "لا يكمل العضو المعاملة ببساطة. دليل الأعمال يستطيع تذكيرهم للعودة والاستمرار."
4530
 
4531
- #: core/class-settings.php:609
4532
  msgctxt "admin settings"
4533
  msgid "Listing abandonment threshold (hours)"
4534
  msgstr "عتبة التخلي على الإعلان (ساعات)"
4535
 
4536
- #: core/class-settings.php:614
4537
  msgctxt "admin settings"
4538
  msgid ""
4539
  "Listings with pending payments are marked as abandoned after this time. You "
@@ -4542,37 +4560,37 @@ msgstr ""
4542
  "الإعلانات مع الدفعات المعلقة تعد متخلى عنها بعد هذا الوقت. يمكنك أيضا "
4543
  "<a>تخصيص البريد الإلكتروني</a> الذي يتلقاه الأعضاء."
4544
 
4545
- #: core/class-settings.php:619
4546
  msgctxt "admin settings"
4547
  msgid "Themes"
4548
  msgstr "القوالب"
4549
 
4550
- #: core/class-settings.php:621
4551
  msgctxt "admin settings"
4552
  msgid "You can manage your themes on <a>Directory Themes</a>."
4553
  msgstr "يمكنك إدارة قوالبك في <a>قوالب الدليل</a>."
4554
 
4555
- #: core/class-settings.php:626
4556
  msgctxt "admin settings"
4557
  msgid "Theme button style"
4558
  msgstr "نمط زر القالب"
4559
 
4560
- #: core/class-settings.php:630
4561
  msgctxt "admin settings"
4562
  msgid "Use the BD theme style for BD buttons"
4563
  msgstr "إستخدم نمط قالب دليل الأعمال لأزرار دليل الأعمال"
4564
 
4565
- #: core/class-settings.php:631
4566
  msgctxt "admin settings"
4567
  msgid "Use the WP theme style for BD buttons"
4568
  msgstr "إستخدم نمط قالب ووردبريس لأزرار دليل الأعمال"
4569
 
4570
- #: core/class-settings.php:638
4571
  msgctxt "admin settings"
4572
  msgid "Image"
4573
  msgstr "الصورة"
4574
 
4575
- #: core/class-settings.php:639
4576
  msgctxt "admin settings"
4577
  msgid ""
4578
  "Any changes to these settings will affect new listings only. Existing "
@@ -4584,52 +4602,52 @@ msgstr ""
4584
  "الموجودة لن تتأثر. إذا كنت ترغب في تغيير الإعلانات الحالية، تحتاج إلى إعادة "
4585
  "تحميل الصورة (الصور) إلى تلك الإعلانات بعد تغيير الأشياء هنا."
4586
 
4587
- #: core/class-settings.php:640
4588
  msgctxt "admin settings"
4589
  msgid "Image Settings"
4590
  msgstr "إعدادات الصورة"
4591
 
4592
- #: core/class-settings.php:641
4593
  msgctxt "admin settings"
4594
  msgid "Allow images?"
4595
  msgstr "السماح بالصور؟"
4596
 
4597
- #: core/class-settings.php:643
4598
  msgctxt "admin settings"
4599
  msgid "Min Image File Size (KB)"
4600
  msgstr "أقل حجم لملف الصورة (KB)"
4601
 
4602
- #: core/class-settings.php:644
4603
  msgctxt "admin settings"
4604
  msgid "Max Image File Size (KB)"
4605
  msgstr "أقصى حجم لملف الصورة (KB)"
4606
 
4607
- #: core/class-settings.php:646
4608
  msgctxt "admin settings"
4609
  msgid "Min image width (px)"
4610
  msgstr "أقل عرض للصورة (px)"
4611
 
4612
- #: core/class-settings.php:647
4613
  msgctxt "admin settings"
4614
  msgid "Min image height (px)"
4615
  msgstr "أقل ارتفاع للصورة (px)"
4616
 
4617
- #: core/class-settings.php:649
4618
  msgctxt "admin settings"
4619
  msgid "Max image width (px)"
4620
  msgstr "أقصى عرض للصورة (px)"
4621
 
4622
- #: core/class-settings.php:650
4623
  msgctxt "admin settings"
4624
  msgid "Max image height (px)"
4625
  msgstr "أقصى ارتفاع للصورة (px)"
4626
 
4627
- #: core/class-settings.php:652
4628
  msgctxt "admin settings"
4629
  msgid "Turn on thickbox/lightbox?"
4630
  msgstr "تشغيل thickbox/lightbox؟"
4631
 
4632
- #: core/class-settings.php:652
4633
  msgctxt "admin settings"
4634
  msgid ""
4635
  "Uncheck if it conflicts with other elements or plugins installed on your site"
@@ -4637,27 +4655,27 @@ msgstr ""
4637
  "قم بإلغاء التحديد إذا كان يتعارض مع العناصر الأخرى أو الإضافات المثبتة على "
4638
  "موقعك"
4639
 
4640
- #: core/class-settings.php:654
4641
  msgctxt "admin settings"
4642
  msgid "Thumbnails"
4643
  msgstr "الصور المصغرة"
4644
 
4645
- #: core/class-settings.php:655
4646
  msgctxt "admin settings"
4647
  msgid "Thumbnail width (px)"
4648
  msgstr "عرض الصور المصغرة (px)"
4649
 
4650
- #: core/class-settings.php:656
4651
  msgctxt "admin settings"
4652
  msgid "Thumbnail height (px)"
4653
  msgstr "ارتفاع الصورة المصغرة (px)"
4654
 
4655
- #: core/class-settings.php:659
4656
  msgctxt "admin settings"
4657
  msgid "Crop thumbnails to exact dimensions?"
4658
  msgstr "قطع الصور المصغرة للأبعاد المناسبة؟"
4659
 
4660
- #: core/class-settings.php:662
4661
  msgctxt "admin settings"
4662
  msgid ""
4663
  "When enabled images will match exactly the dimensions above but part of the "
@@ -4670,12 +4688,12 @@ msgstr ""
4670
  "تعديل الارتفاع بشكل متناسب. اعتماداً على الصور المرفوعة, قد تكون ارتفاعات "
4671
  "الصور المصغرة مختلفة."
4672
 
4673
- #: core/class-settings.php:668
4674
  msgctxt "admin settings"
4675
  msgid "Number of free images"
4676
  msgstr "عدد الصور المجانية"
4677
 
4678
- #: core/class-settings.php:673
4679
  msgctxt "admin settings"
4680
  msgid ""
4681
  "For paid listing images, configure that by adding or editing a <a>Fee Plan</"
@@ -4684,41 +4702,41 @@ msgstr ""
4684
  "بالنسبة لصور الإعلانات المدفوعة، قم بإعدادها بإضافة أو تحرير <a>رسوم الخطة</"
4685
  "a> بدلاً من هذا الإعداد، الذي هو تجاهل الإعلانات المدفوعة."
4686
 
4687
- #: core/class-settings.php:676
4688
  msgctxt "admin settings"
4689
  msgid "Use default picture for listings with no picture?"
4690
  msgstr "إستخدام الصورة الافتراضية للإعلانات التي بلا صورة؟"
4691
 
4692
- #: core/class-settings.php:677
4693
  msgctxt "admin settings"
4694
  msgid "Show Thumbnail on main listings page?"
4695
  msgstr "إظهار صورة مصغرة في صفحة الإعلانات الرئيسية؟"
4696
 
4697
- #: core/class-settings.php:706
4698
  msgctxt "admin settings"
4699
  msgid "User"
4700
  msgstr "عضو"
4701
 
4702
- #: core/class-settings.php:707
4703
  msgctxt "admin settings"
4704
  msgid "User registration date"
4705
  msgstr "تاريخ تسجيل العضو"
4706
 
4707
- #: core/class-settings.php:733
4708
  msgctxt "admin settings"
4709
  msgid ""
4710
  "Could not copy the AJAX compatibility plugin \"%s\". Compatibility mode was "
4711
  "not activated."
4712
  msgstr "تعذر نسخ إضافة التوافق أجاكس \"%s\". لم يتم تفعيل وضع التوافق."
4713
 
4714
- #: core/class-settings.php:741
4715
  msgctxt "admin settings"
4716
  msgid ""
4717
  "Could not activate AJAX Compatibility mode: the directory \"%s\" could not "
4718
  "be created."
4719
  msgstr "لا يمكن تفعيل وضع التوافق أجاكس: تعذر إنشاء المجلد \"%s\"."
4720
 
4721
- #: core/class-settings.php:750
4722
  msgctxt "admin settings"
4723
  msgid ""
4724
  "Could not remove the \"Business Directory Plugin - AJAX Compatibility Module"
@@ -4727,97 +4745,97 @@ msgstr ""
4727
  "تعذر إزالة \"إضافة دليل الأعمال – وحدة التوافق أجاكس\". المرجو إزالة الملف "
4728
  "\"%s\" يدوياً أو قم بإلغاء تفعيل الإضافة."
4729
 
4730
- #: core/class-settings.php:1070
4731
  msgctxt "settings"
4732
  msgid "Deactivate License"
4733
  msgstr "تعطيل الترخيص"
4734
 
4735
- #: core/class-settings.php:1072
4736
  msgctxt "settings"
4737
  msgid "Deactivating license..."
4738
  msgstr "ترخيص معطل..."
4739
 
4740
- #: core/class-settings.php:1075
4741
  msgctxt "settings"
4742
  msgid "Activate License"
4743
  msgstr "تفعيل الترخيص"
4744
 
4745
- #: core/class-settings.php:1077
4746
  msgctxt "settings"
4747
  msgid "Activating license..."
4748
  msgstr "ترخيص مفعل..."
4749
 
4750
- #: core/class-settings.php:1100
4751
  msgctxt "admin settings"
4752
  msgid "Valid placeholders: %s"
4753
  msgstr "العناصر النائبة صالحة: %s"
4754
 
4755
- #: core/class-settings.php:1134
4756
  msgctxt "settings email"
4757
  msgid "Click to edit e-mail"
4758
  msgstr "إضغط لتعديل البريد الإلكتروني"
4759
 
4760
- #: core/class-settings.php:1135
4761
  msgctxt "settings email"
4762
  msgid "Click to edit"
4763
  msgstr "اضغط لتعديل"
4764
 
4765
- #: core/class-settings.php:1148
4766
  msgctxt "settings email"
4767
  msgid "E-Mail Subject"
4768
  msgstr "عنوان البريد الإلكتروني"
4769
 
4770
- #: core/class-settings.php:1159
4771
  msgctxt "settings email"
4772
  msgid "E-Mail Body"
4773
  msgstr "نص البريد الإلكتروني"
4774
 
4775
- #: core/class-settings.php:1170
4776
  msgctxt "settings email"
4777
  msgid "You can use the following placeholders:"
4778
  msgstr "يمكنك استخدام العناصر النائبة التالية:"
4779
 
4780
- #: core/class-settings.php:1193
4781
  msgctxt "settings email"
4782
  msgid "Preview e-mail"
4783
  msgstr "معاينة البريد الإلكتروني"
4784
 
4785
- #: core/class-settings.php:1194
4786
  msgctxt "settings email"
4787
  msgid "Cancel"
4788
  msgstr "إلغاء"
4789
 
4790
- #: core/class-settings.php:1195
4791
  msgctxt "settings email"
4792
  msgid "Save Changes"
4793
  msgstr "حفظ التعديلات"
4794
 
4795
- #: core/class-settings.php:1214
4796
  msgctxt "settings email"
4797
  msgid "Site title"
4798
  msgstr "إسم الموقع"
4799
 
4800
- #: core/class-settings.php:1217
4801
  msgctxt "settings email"
4802
  msgid "Site title (with link)"
4803
  msgstr "إسم الموقع (مع الرابط)"
4804
 
4805
- #: core/class-settings.php:1220
4806
  msgctxt "settings email"
4807
  msgid "Site address (with link)"
4808
  msgstr "عنوان الموقع (مع الرابط)"
4809
 
4810
- #: core/class-settings.php:1223
4811
  msgctxt "settings email"
4812
  msgid "Directory URL (with link)"
4813
  msgstr "رابط URL الدليل (مع الرابط)"
4814
 
4815
- #: core/class-settings.php:1226
4816
  msgctxt "settings email"
4817
  msgid "Current date"
4818
  msgstr "التاريخ الحالي"
4819
 
4820
- #: core/class-settings.php:1229
4821
  msgctxt "settings email"
4822
  msgid "Current time"
4823
  msgstr "الوقت الحالي"
@@ -5463,11 +5481,18 @@ msgctxt "installer"
5463
  msgid "Listing upgrade to featured"
5464
  msgstr "الترقية الى إعلان مميز"
5465
 
5466
- #: core/installer.php:957
 
 
 
 
 
 
 
5467
  msgid "Business Directory - Manual Upgrade Required"
5468
  msgstr "دليل الأعمال - ترقية يدوية مطلوبة"
5469
 
5470
- #: core/installer.php:959
5471
  msgid ""
5472
  "Business Directory features are currently disabled because the plugin needs "
5473
  "to perform a manual upgrade before continuing."
@@ -5475,15 +5500,15 @@ msgstr ""
5475
  "تم تعطيل ميزات دليل الأعمال حاليا بسبب أن الإضافة تحتاج إلى إجراء ترقية "
5476
  "يدوية قبل المتابعة."
5477
 
5478
- #: core/installer.php:961
5479
  msgid "Perform Manual Upgrade"
5480
  msgstr "أداء ترقية يدوية"
5481
 
5482
- #: core/installer.php:977 core/installer.php:978 core/installer.php:989
5483
  msgid "Business Directory - Manual Upgrade"
5484
  msgstr "دليل الأعمال - ترقية يدوية"
5485
 
5486
- #: core/installer.php:993
5487
  msgid ""
5488
  "Business Directory features are currently disabled because the plugin needs "
5489
  "to perform a manual upgrade before it can be used."
@@ -5491,44 +5516,44 @@ msgstr ""
5491
  "تم تعطيل ميزات دليل الأعمال حاليا بسبب أن الإضافة تحتاج إلى إجراء ترقية "
5492
  "يدوية قبل أن تصلح للاستخدام."
5493
 
5494
- #: core/installer.php:995
5495
  msgid "Click \"Start Upgrade\" and wait until the process finishes."
5496
  msgstr "إضغط على \"إبدأ الترقية\" وانتظر حتى انتهاء العملية."
5497
 
5498
- #: core/installer.php:998
5499
  msgctxt "manual-upgrade"
5500
  msgid "Start Upgrade"
5501
  msgstr "بدء الترقية"
5502
 
5503
- #: core/installer.php:1000
5504
  msgctxt "manual-upgrade"
5505
  msgid "Pause Upgrade"
5506
  msgstr "توقيف الترقية"
5507
 
5508
- #: core/installer.php:1006
5509
  msgctxt "manual-upgrade"
5510
  msgid ""
5511
  "The upgrade was sucessfully performed. Business Directory Plugin is now "
5512
  "available."
5513
  msgstr "تم إجراء الترقية بنجاح. إضافة دليل الأعمال متاحة الآن."
5514
 
5515
- #: core/installer.php:1009
5516
  msgctxt "manual-upgrade"
5517
  msgid "Go to \"Directory Admin\""
5518
  msgstr "إنتقل إلى \"مشرف الدليل\""
5519
 
5520
- #: core/installer.php:1044
5521
  #, fuzzy
5522
  msgid "Business Directory - Installation Failed"
5523
  msgstr "دليل الأعمال - ترقية يدوية"
5524
 
5525
- #: core/installer.php:1046
5526
  msgid ""
5527
  "Business Directory installation failed. An exception with following message "
5528
  "was generated:"
5529
  msgstr ""
5530
 
5531
- #: core/installer.php:1051
5532
  msgid "Please <contact-link>contact customer support</a>."
5533
  msgstr ""
5534
 
@@ -5810,39 +5835,39 @@ msgctxt "templates"
5810
  msgid "No listing categories found."
5811
  msgstr "لم يتم العثور على تصنيفات الإعلانات."
5812
 
5813
- #: core/templates-ui.php:193
5814
  msgid "Directory"
5815
  msgstr "الدليل"
5816
 
5817
- #: core/templates-ui.php:199
5818
  msgid "View All Listings"
5819
  msgstr "مشاهدة جميع الإعلانات"
5820
 
5821
- #: core/templates-ui.php:205
5822
  msgid "Create A Listing"
5823
  msgstr "إنشاء إعلان"
5824
 
5825
- #: core/templates-ui.php:232
5826
  msgctxt "templates"
5827
  msgid "Search Listings"
5828
  msgstr "البحث في الإعلانات"
5829
 
5830
- #: core/templates-ui.php:235
5831
  msgctxt "templates"
5832
  msgid "Advanced Search"
5833
  msgstr "بحث متقدم"
5834
 
5835
- #: core/templates-ui.php:264 core/templates-ui.php:289
5836
  msgctxt "templates sort"
5837
  msgid "Sort By:"
5838
  msgstr "ترتيب حسب:"
5839
 
5840
- #: core/templates-ui.php:283
5841
  msgctxt "sort"
5842
  msgid "Reset"
5843
  msgstr "إعادة تعيين"
5844
 
5845
- #: core/templates-ui.php:305
5846
  msgctxt "sort"
5847
  msgid "(Reset)"
5848
  msgstr "(إعادة تعيين)"
@@ -7173,6 +7198,14 @@ msgstr "D. Rodenbaugh"
7173
  msgid "http://businessdirectoryplugin.com"
7174
  msgstr "http://businessdirectoryplugin.com"
7175
 
 
 
 
 
 
 
 
 
7176
  #~ msgctxt "title"
7177
  #~ msgid "Submit A Listing"
7178
  #~ msgstr "إضافة إعلان"
4
  msgstr ""
5
  "Project-Id-Version: Business Directory Plugin 4.0.8\n"
6
  "Report-Msgid-Bugs-To: http://wordpress.org/tag/business-directory-plugin\n"
7
+ "POT-Creation-Date: 2016-12-13 23:11:33+00:00\n"
8
  "PO-Revision-Date: 2016-09-19 12:17-0500\n"
9
  "Last-Translator: BD Team <support@businessdirectoryplugin.com>\n"
10
  "Language-Team: BD Team <support@businessdirectoryplugin.com>\n"
1039
  msgid "Field deleted."
1040
  msgstr "تم حذف الحقل."
1041
 
1042
+ #: admin/form-fields.php:277
1043
  msgctxt "form-fields admin"
1044
  msgid "Required fields created successfully."
1045
  msgstr "الحقول المطلوبة أنشئت بنجاح."
1046
 
1047
+ #: admin/form-fields.php:290
1048
  msgctxt "form-fields admin"
1049
  msgid "Title"
1050
  msgstr "العنوان"
1051
 
1052
+ #: admin/form-fields.php:291
1053
  msgctxt "form-fields admin"
1054
  msgid "Category"
1055
  msgstr "التصنيف"
1056
 
1057
+ #: admin/form-fields.php:292
1058
  msgctxt "form-fields admin"
1059
  msgid "Excerpt"
1060
  msgstr "مقتطف"
1061
 
1062
+ #: admin/form-fields.php:293
1063
  msgctxt "form-fields admin"
1064
  msgid "Content"
1065
  msgstr "المحتوى"
1066
 
1067
+ #: admin/form-fields.php:294
1068
  msgctxt "form-fields admin"
1069
  msgid "Tags"
1070
  msgstr "الوسوم"
1071
 
1072
+ #: admin/form-fields.php:295
1073
  msgctxt "form-fields admin"
1074
  msgid "Address"
1075
  msgstr "العنوان"
1076
 
1077
+ #: admin/form-fields.php:296
1078
  msgctxt "form-fields admin"
1079
  msgid "City"
1080
  msgstr "المدينة"
1081
 
1082
+ #: admin/form-fields.php:297
1083
  msgctxt "form-fields admin"
1084
  msgid "State"
1085
  msgstr "الولاية"
1086
 
1087
+ #: admin/form-fields.php:298
1088
  msgctxt "form-fields admin"
1089
  msgid "ZIP Code"
1090
  msgstr "الرمز البريدي"
1091
 
1092
+ #: admin/form-fields.php:299
1093
  msgctxt "form-fields admin"
1094
  msgid "FAX Number"
1095
  msgstr "رقم الفاكس"
1096
 
1097
+ #: admin/form-fields.php:300
1098
  msgctxt "form-fields admin"
1099
  msgid "Phone Number"
1100
  msgstr "رقم الهاتف"
1101
 
1102
+ #: admin/form-fields.php:301
1103
  msgctxt "form-fields admin"
1104
  msgid "Ratings Field"
1105
  msgstr "حقول التقييم"
1106
 
1107
+ #: admin/form-fields.php:302
1108
  msgctxt "form-fields admin"
1109
  msgid "Twitter"
1110
  msgstr "تويتر"
1111
 
1112
+ #: admin/form-fields.php:303
1113
  msgctxt "form-fields admin"
1114
  msgid "Website"
1115
  msgstr "موقع الأنترنيت"
1116
 
1117
+ #: admin/form-fields.php:324
1118
  msgctxt "form-fields admin"
1119
  msgid "Tags updated."
1120
  msgstr "تم تحديث الوسوم"
2244
  msgid "Please see the <a>Form Fields documentation</a> for more details."
2245
  msgstr "المرجو مراجعة <a>وثائق حقول الاستمارة</a> للحصول على مزيد من التفاصيل."
2246
 
2247
+ #. #-#-#-#-# WPBDM.pot (Business Directory Plugin 4.1.6) #-#-#-#-#
2248
  #. Plugin Name of the plugin/theme
2249
  #: admin/templates/header.tpl.php:4
2250
  msgid "Business Directory Plugin"
3009
  msgid "Allow Tracking"
3010
  msgstr "السماح بالتتبع"
3011
 
3012
+ #: business-directory-plugin.php:668
3013
  msgctxt "admin plugins"
3014
  msgid "Settings"
3015
  msgstr "الإعدادات"
3016
 
3017
+ #: business-directory-plugin.php:776 business-directory-plugin.php:783
3018
  msgctxt "rss feed"
3019
  msgid "%s Feed"
3020
  msgstr "تغذية %s"
3021
 
3022
+ #: business-directory-plugin.php:1137 core/view-submit-listing.php:58
3023
  #: core/views/submit_listing.php:10
3024
  msgctxt "views"
3025
  msgid "Submit A Listing"
3026
  msgstr "إضافة إعلان"
3027
 
3028
+ #: business-directory-plugin.php:1142
3029
  msgctxt "title"
3030
  msgid "Find a Listing"
3031
  msgstr "العثور على إعلان"
3032
 
3033
+ #: business-directory-plugin.php:1147
3034
  msgctxt "title"
3035
  msgid "View All Listings"
3036
  msgstr "عرض جميع الإعلانات"
3037
 
3038
+ #: business-directory-plugin.php:1176
3039
  msgctxt "title"
3040
  msgid "Listings tagged: %s"
3041
  msgstr "إعلانات ذات وسم: %s"
3101
  msgid "Invalid form field type"
3102
  msgstr "نوع حقل استمارة غير صحيح"
3103
 
3104
+ #: core/class-form-field.php:505
3105
  msgctxt "form-fields-api"
3106
  msgid "Field label is required."
3107
  msgstr "تسمية الحقل مطلوب."
3108
 
3109
+ #: core/class-form-field.php:515
3110
  msgctxt "form-fields-api"
3111
  msgid "Requested field type change is incompatible. Type will not be modified."
3112
  msgstr "تغيير نوع الحقل المطلوب غير متوافق. لن يتم تعديل النوع."
3113
 
3114
+ #: core/class-form-field.php:535
3115
  msgctxt "form-fields-api"
3116
  msgid ""
3117
  "There can only be one field with association \"%s\". Please select another "
3118
  "association."
3119
  msgstr "يمكن أن يكون هناك حقل واحد مع رابطة \"%s\". المرجو تحديد رابطة أخرى."
3120
 
3121
+ #: core/class-form-field.php:545
3122
  msgctxt "form-fields-api"
3123
  msgid "\"%s\" is an invalid field type for this association."
3124
  msgstr "\"%s\" نوع حقل غير صالح لهذه الرابطة."
3125
 
3126
+ #: core/class-form-field.php:583
3127
  msgctxt "form-fields-api"
3128
  msgid "Invalid field ID"
3129
  msgstr "معرف حقل غير صالح"
3130
 
3131
+ #: core/class-form-field.php:592
3132
  msgctxt "form-fields api"
3133
  msgid ""
3134
  "This form field can't be deleted because it is required for the plugin to "
3135
  "work."
3136
  msgstr "لا يمكن حذف هذا الحقل لأنه مطلوب لعمل الإضافة."
3137
 
3138
+ #: core/class-form-field.php:604
3139
  msgctxt "form-fields-api"
3140
  msgid "An error occurred while trying to delete this field."
3141
  msgstr "حدث خطأ أثناء محاولة حذف هذا الحقل."
3196
  msgid "(Fee Unavailable)"
3197
  msgstr "(رسم غير متوفر)"
3198
 
3199
+ #: core/class-listings-api.php:310
3200
  msgctxt "notify email"
3201
  msgid "[%s] New listing notification"
3202
  msgstr "[%s] تنبيه الإعلان الجديد"
3203
 
3204
+ #: core/class-listings-api.php:329
3205
  msgctxt "notify email"
3206
  msgid "[%s] Listing edit notification"
3207
  msgstr "[%s] تنبيه تحرير الإعلان"
3585
  msgid "Enable AJAX compatibility mode?"
3586
  msgstr "تمكين وضع التوافق أجاكس؟"
3587
 
3588
+ #: core/class-settings.php:181 core/class-settings.php:679
3589
  msgctxt "admin settings"
3590
  msgid "Listings"
3591
  msgstr "الإعلانات"
3592
 
3593
+ #: core/class-settings.php:182 core/class-settings.php:349
3594
+ #: core/class-settings.php:636
3595
  msgctxt "admin settings"
3596
  msgid "General Settings"
3597
  msgstr "الإعدادات العامة"
3661
  "إستخدم هذا لمنع الرسائل المزعجة لأصحاب الإعلانات. 0 تعني إرسال غير محدود في "
3662
  "اليوم الواحد."
3663
 
3664
+ #: core/class-settings.php:222
3665
  msgctxt "admin settings"
3666
  msgid "Include comment form on listing pages?"
3667
  msgstr "يتضمن نموذج التعليق على صفحات الإعلانات؟"
3668
 
3669
+ #: core/class-settings.php:225
3670
  msgctxt "admin settings"
3671
  msgid ""
3672
+ "BD uses the standard comment inclusion from WordPress, but most themes only "
3673
+ "allow for comments on posts, not pages. Some themes handle both. BD is "
3674
+ "displayed on a page, so we need a theme that can handle both to show "
3675
+ "comments. Use the 2nd option if you want to allow comments on listings "
3676
+ "first, and if that doesn't work, try the 3rd option instead."
3677
  msgstr ""
 
 
3678
 
3679
+ #: core/class-settings.php:228
3680
+ #, fuzzy
3681
+ msgctxt "admin settings"
3682
+ msgid "Do not include comments in listings"
3683
+ msgstr "يتضمن نموذج التعليق على صفحات الإعلانات؟"
3684
+
3685
+ #: core/class-settings.php:229
3686
+ #, fuzzy
3687
+ msgctxt "admin settings"
3688
+ msgid "Include comment form, theme invoked (standard option)"
3689
+ msgstr "يتضمن نموذج التعليق على صفحات الإعلانات؟"
3690
+
3691
+ #: core/class-settings.php:230
3692
+ msgctxt "admin settings"
3693
+ msgid "Include comment form, BD invoked (use only if 2nd option doesn't work)"
3694
+ msgstr ""
3695
+
3696
+ #: core/class-settings.php:238
3697
  msgctxt "admin settings"
3698
  msgid "Show listings under categories on main page?"
3699
  msgstr "إظهار الإعلانات تحت التصنيفات على الصفحة الرئيسية؟"
3700
 
3701
+ #: core/class-settings.php:239
3702
  msgctxt "admin settings"
3703
  msgid "Status of listings upon uninstalling plugin"
3704
  msgstr "حالة الإعلانات عند إلغاء تثبيت الإضافة"
3705
 
3706
+ #: core/class-settings.php:240 core/class-settings.php:242
3707
  msgctxt "post status"
3708
  msgid "Draft"
3709
  msgstr "مسودة"
3710
 
3711
+ #: core/class-settings.php:240 core/class-settings.php:242
3712
  msgctxt "post status"
3713
  msgid "Trash"
3714
  msgstr "سلة المهملات"
3715
 
3716
+ #: core/class-settings.php:241
3717
  msgctxt "admin settings"
3718
  msgid "Status of deleted listings"
3719
  msgstr "حالة الإعلانات المحذوفة"
3720
 
3721
+ #: core/class-settings.php:243
3722
  msgctxt "admin settings"
3723
  msgid "Submit Listing instructions message"
3724
  msgstr "إرسال رسالة تعليمات الإعلانات"
3725
 
3726
+ #: core/class-settings.php:243
3727
  msgctxt "admin settings"
3728
  msgid ""
3729
  "This text is displayed at the first page of the Submit Listing process for "
3734
  "استخدامه لإعطاء إرشادات حول تعبئة النموذج أو أي شيء تريد إعلام الأعضاء به "
3735
  "قبل أن يبدأوا."
3736
 
3737
+ #: core/class-settings.php:245
3738
  msgctxt "admin settings"
3739
  msgid "Listing Renewal"
3740
  msgstr "تجديد الإعلان"
3741
 
3742
+ #: core/class-settings.php:246
3743
  msgctxt "admin settings"
3744
  msgid "Turn on listing renewal option?"
3745
  msgstr "قم بتشغيل خيار تجديد الإعلان؟"
3746
 
3747
+ #: core/class-settings.php:249
3748
  msgctxt "admin settings"
3749
  msgid "Allow recurring renewal payments?"
3750
  msgstr "السماح بتجديد الدفعات المتكررة؟"
3751
 
3752
+ #: core/class-settings.php:252
3753
  msgctxt "admin settings"
3754
  msgid ""
3755
  "Allow users to opt in for automatic renewal of their listings. The fee is "
3758
  "السماح للأعضاء باختيار التجديد التلقائي لإعلاناتهم. الرسوم تستوفى وقت انتهاء "
3759
  "تاريخ الإعلان دون تدخل العضو."
3760
 
3761
+ #: core/class-settings.php:256
3762
  msgctxt "admin settings"
3763
  msgid "Use recurring payments as the default payment method?"
3764
  msgstr "استخدام المدفوعات المتكررة كطريقة الدفع الافتراضية؟"
3765
 
3766
+ #: core/class-settings.php:259
3767
  msgctxt "admin settings"
3768
  msgid ""
3769
  "Enable automatic renewal without having users opt in during the submit "
3770
  "process."
3771
  msgstr "تمكين التجديد التلقائي دون إخبار الأعضاء أثناء عملية الإرسال."
3772
 
3773
+ #: core/class-settings.php:264
3774
  msgctxt "admin settings"
3775
  msgid "Listing renewal e-mail threshold (in days)"
3776
  msgstr "عتبة رسالة البريد الإلكتروني لتجديد الإعلان (بالأيام)"
3777
 
3778
+ #: core/class-settings.php:267
3779
  msgctxt "admin settings"
3780
  msgid ""
3781
  "Configure how many days before listing expiration is the renewal e-mail sent."
3782
  msgstr ""
3783
  "حدد عدد الأيام قبل انتهاء تاريخ الإعلان لإرسال رسالة بريد إلكتروني لتجديده."
3784
 
3785
+ #: core/class-settings.php:271
3786
  msgctxt "admin settings"
3787
  msgid ""
3788
  "Send expiration notices including a cancel links to auto-renewed listings?"
3789
  msgstr ""
3790
  "إرسال إشعارات انتهاء التاريخ مصحوبة بروابط إلغاء التجديد التلقائي للإعلانات؟"
3791
 
3792
+ #: core/class-settings.php:278
3793
  msgctxt "admin settings"
3794
  msgid "Remind listing owners of expired listings (past due)?"
3795
  msgstr "ذكِّر أصحاب الإعلانات المنتهية التاريخ (مستحقة)؟"
3796
 
3797
+ #: core/class-settings.php:283
3798
  msgctxt "admin settings"
3799
  msgid "Listing renewal reminder e-mail threshold (in days)"
3800
  msgstr "عتبة التذكير بالبريد الإلكتروني لتجديد الإعلان (بالأيام)"
3801
 
3802
+ #: core/class-settings.php:286
3803
  msgctxt "admin settings"
3804
  msgid ""
3805
  "Configure how many days after the expiration of a listing an e-mail reminder "
3808
  "حدد عدد الأيام بعد انتهاء تاريخ الإعلان لإرسال رسالة بريد إلكتروني لتذكير "
3809
  "صاحب الإعلان."
3810
 
3811
+ #: core/class-settings.php:289
3812
  msgctxt "admin settings"
3813
  msgid "Post/Category Settings"
3814
  msgstr "إعدادات الإعلان/التصنيف"
3815
 
3816
+ #: core/class-settings.php:290
3817
  msgctxt "admin settings"
3818
  msgid "Default new post status"
3819
  msgstr "حالة الإعلان الجديد الافتراضية"
3820
 
3821
+ #: core/class-settings.php:291 core/class-settings.php:294
3822
  msgctxt "post status"
3823
  msgid "Published"
3824
  msgstr "نشرت"
3825
 
3826
+ #: core/class-settings.php:291 core/class-settings.php:294
3827
  msgctxt "post status"
3828
  msgid "Pending"
3829
  msgstr " في الانتظار"
3830
 
3831
+ #: core/class-settings.php:293
3832
  msgctxt "admin settings"
3833
  msgid "Edit post status"
3834
  msgstr "تعديل حالة الإعلان"
3835
 
3836
+ #: core/class-settings.php:295
3837
  msgctxt "admin settings"
3838
  msgid "Order categories list by"
3839
  msgstr "ترتيب قائمة التصنيفات حسب"
3840
 
3841
+ #: core/class-settings.php:297
3842
  msgctxt "admin settings"
3843
  msgid "Name"
3844
  msgstr "الإسم"
3845
 
3846
+ #: core/class-settings.php:298
3847
  msgctxt "admin settings"
3848
  msgid "Slug"
3849
  msgstr "رابط لطيف"
3850
 
3851
+ #: core/class-settings.php:299
3852
  msgctxt "admin settings"
3853
  msgid "Listing Count"
3854
  msgstr "عداد الإعلانات"
3855
 
3856
+ #: core/class-settings.php:301
3857
  msgctxt "admin settings"
3858
  msgid "Sort order for categories"
3859
  msgstr "ترتيب فرز التصنيفات"
3860
 
3861
+ #: core/class-settings.php:302 core/class-settings.php:320
3862
  msgctxt "admin settings"
3863
  msgid "Ascending"
3864
  msgstr "تصاعدي"
3865
 
3866
+ #: core/class-settings.php:302 core/class-settings.php:320
3867
  msgctxt "admin settings"
3868
  msgid "Descending"
3869
  msgstr "تنازلي"
3870
 
3871
+ #: core/class-settings.php:303
3872
  msgctxt "admin settings"
3873
  msgid "Show category post count?"
3874
  msgstr "إظهار عدد إعلانات التصنيف؟"
3875
 
3876
+ #: core/class-settings.php:304
3877
  msgctxt "admin settings"
3878
  msgid "Hide empty categories?"
3879
  msgstr "إخفاء التصنيفات الفارغة؟"
3880
 
3881
+ #: core/class-settings.php:305
3882
  msgctxt "admin settings"
3883
  msgid "Show only parent categories in category list?"
3884
  msgstr "إظهار التصنيفات الأبوية فقط في قائمة التصنيف؟"
3885
 
3886
+ #: core/class-settings.php:307
3887
  msgctxt "admin settings"
3888
  msgid "Listings Sorting"
3889
  msgstr "فرز الإعلانات"
3890
 
3891
+ #: core/class-settings.php:308
3892
  msgctxt "admin settings"
3893
  msgid "Order directory listings by"
3894
  msgstr "ترتيب إعلانات الدليل حسب"
3895
 
3896
+ #: core/class-settings.php:310
3897
  msgctxt "admin settings"
3898
  msgid "Title"
3899
  msgstr "العنوان"
3900
 
3901
+ #: core/class-settings.php:311
3902
  msgctxt "admin settings"
3903
  msgid "Author"
3904
  msgstr "الكاتب"
3905
 
3906
+ #: core/class-settings.php:312 core/class-settings.php:722
3907
  msgctxt "admin settings"
3908
  msgid "Date posted"
3909
  msgstr "تاريخ النشر"
3910
 
3911
+ #: core/class-settings.php:313 core/class-settings.php:723
3912
  msgctxt "admin settings"
3913
  msgid "Date last modified"
3914
  msgstr "تاريخ آخر تعديل"
3915
 
3916
+ #: core/class-settings.php:314
3917
  msgctxt "admin settings"
3918
  msgid "Random"
3919
  msgstr "عشوائية"
3920
 
3921
+ #: core/class-settings.php:315
3922
  msgctxt "admin settings"
3923
  msgid "Paid first then free. Inside each group by date."
3924
  msgstr "تدفع أولاً ثم مجاناً. داخل كل مجموعة حسب التاريخ."
3925
 
3926
+ #: core/class-settings.php:316
3927
  msgctxt "admin settings"
3928
  msgid "Paid first then free. Inside each group by title."
3929
  msgstr "تدفع أولاً ثم مجاناً. داخل كل مجموعة بعنوان."
3930
 
3931
+ #: core/class-settings.php:318
3932
  msgctxt "admin settings"
3933
  msgid "Sort directory listings by"
3934
  msgstr "فرز إعلانات الدليل حسب"
3935
 
3936
+ #: core/class-settings.php:319
3937
  msgctxt "admin settings"
3938
  msgid "Ascending for ascending order A-Z, Descending for descending order Z-A"
3939
  msgstr "ترتيب تصاعدي من أ إلى ي، ترتيب تنازلي من ي إلى أ"
3940
 
3941
+ #: core/class-settings.php:324
3942
  msgctxt "admin settings"
3943
  msgid "Enable sort bar?"
3944
  msgstr "تمكين شريط الفرز؟"
3945
 
3946
+ #: core/class-settings.php:329
3947
  msgctxt "admin settings"
3948
  msgid "Sortbar Fields"
3949
  msgstr "حقول شريط الفرز"
3950
 
3951
+ #: core/class-settings.php:338
3952
  msgctxt "admin settings"
3953
  msgid "Featured (Sticky) listing settings"
3954
  msgstr "إعدادات الإعلانات (المثبتة) المميزة"
3955
 
3956
+ #: core/class-settings.php:339
3957
  msgctxt "admin settings"
3958
  msgid "Offer sticky listings?"
3959
  msgstr "عروض الإعلانات المثبتة"
3960
 
3961
+ #: core/class-settings.php:340
3962
  msgctxt "admin settings"
3963
  msgid "Offer upgrades during submit process?"
3964
  msgstr "عرض الترقية خلال عملية إضافة إعلان؟"
3965
 
3966
+ #: core/class-settings.php:341
3967
  msgctxt "admin settings"
3968
  msgid "Sticky listing price"
3969
  msgstr "سعر الإعلان المثبت"
3970
 
3971
+ #: core/class-settings.php:342
3972
  msgctxt "admin settings"
3973
  msgid "Sticky listing page description text"
3974
  msgstr "نص وصف صفحة الإعلان المثبت"
3975
 
3976
+ #: core/class-settings.php:343
3977
  msgctxt "admin settings"
3978
  msgid ""
3979
  "You can upgrade your listing to featured status. Featured listings will "
3982
  "يمكنك ترقية إعلانك إلى الحالة المميزة. الإعلانات المميزة سوف تظهر دائماً أعلى "
3983
  "الإعلانات العادية."
3984
 
3985
+ #: core/class-settings.php:348
3986
  msgctxt "admin settings"
3987
  msgid "E-Mail"
3988
  msgstr "البريد الإلكتروني"
3989
 
3990
+ #: core/class-settings.php:352
3991
  msgctxt "admin settings"
3992
  msgid "Display email address fields publicly?"
3993
  msgstr "عرض حقول عنوان البريد الإلكتروني علنا؟"
3994
 
3995
+ #: core/class-settings.php:355
3996
  msgctxt "admin settings"
3997
  msgid ""
3998
  "Shows the email address of the listing owner to all web users. NOT "
4003
  "لأن هذا يزيد من الرسائل المزعجة إلى العنوان ويسمح للمتطفلين بجمع عنوانين "
4004
  "البريد للاستخدام في المستقبل."
4005
 
4006
+ #: core/class-settings.php:358
4007
  msgctxt "admin settings"
4008
  msgid "How to determine the listing's email address?"
4009
  msgstr "كيفية تحديد عنوان البريد الإلكتروني في الإعلان؟"
4010
 
4011
+ #: core/class-settings.php:361
4012
  msgctxt "admin settings"
4013
  msgid ""
4014
  "This affects emails sent to listing owners via contact forms or when their "
4017
  "هذا يؤثر على رسائل البريد الإلكتروني المرسلة إلى مالكي الإعلانات عبر نموذج "
4018
  "الاتصال أو عندما ينتهي تاريخ الإعلانات."
4019
 
4020
+ #: core/class-settings.php:363
4021
  msgctxt "admin settings"
4022
  msgid "Try listing's email field first, then author's email."
4023
  msgstr "جرب البريد الإلكتروني للإعلانات أولاً، ثم البريد الإلكتروني للكاتب."
4024
 
4025
+ #: core/class-settings.php:364
4026
  msgctxt "admin settings"
4027
  msgid "Try author's email first and then listing's email field."
4028
  msgstr "جرب البريد الإلكتروني للكاتب أولاً، ثم البريد الإلكتروني للإعلانات."
4029
 
4030
+ #: core/class-settings.php:368
4031
  msgctxt "admin settings"
4032
  msgid "E-Mail Notifications"
4033
  msgstr "تنبيهات البريد الإلكتروني"
4034
 
4035
+ #: core/class-settings.php:371
4036
  msgctxt "admin settings"
4037
  msgid "Notify admin via e-mail when..."
4038
  msgstr "إبلاغ المدير عن طريق البريد الإلكتروني عندما..."
4039
 
4040
+ #: core/class-settings.php:375
4041
  msgctxt "admin settings"
4042
  msgid "A new listing is submitted."
4043
  msgstr "يتم إضافة إعلان جديد"
4044
 
4045
+ #: core/class-settings.php:376
4046
  msgctxt "admin settings"
4047
  msgid "A listing is edited."
4048
  msgstr "تم تحرير الإعلان"
4049
 
4050
+ #: core/class-settings.php:377
4051
  msgctxt "admin settings"
4052
  msgid "A listing expires."
4053
  msgstr "الإعلان منتهي التاريخ"
4054
 
4055
+ #: core/class-settings.php:378
4056
  msgctxt "admin settings"
4057
  msgid "A contact message is sent to a listing's owner."
4058
  msgstr "يتم إرسال رسالة اتصال لمالك الإعلان."
4059
 
4060
+ #: core/class-settings.php:384
4061
  msgctxt "admin settings"
4062
  msgid "CC this e-mail address too"
4063
  msgstr "إرسال نسخة من الرسالة الى عنوان البريد الإلكتروني هذا أيضا"
4064
 
4065
+ #: core/class-settings.php:390
4066
  msgctxt "admin settings"
4067
  msgid "Notify users via e-mail when..."
4068
  msgstr "إعلام الأعضاء عن طريق البريد الإلكتروني عندما..."
4069
 
4070
+ #: core/class-settings.php:393
4071
  msgctxt "admin settings"
4072
  msgid "You can modify the text template used for most of these e-mails below."
4073
  msgstr ""
4074
  "يمكنك تعديل قالب النص المستخدم لمعظم رسائل البريد الإلكتروني هذه أدناه."
4075
 
4076
+ #: core/class-settings.php:394
4077
  msgctxt "admin settings"
4078
  msgid "Their listing is submitted."
4079
  msgstr "يتم إضافة الإعلان الخاص بهم"
4080
 
4081
+ #: core/class-settings.php:395
4082
  msgctxt "admin settings"
4083
  msgid "Their listing is approved/published."
4084
  msgstr "تمت الموافقة ونشر الإعلان الخاص بهم"
4085
 
4086
+ #: core/class-settings.php:404
4087
  msgctxt "contact email"
4088
  msgid "You have received a reply from your listing at %s."
4089
  msgstr "تلقيت ردا من الإعلان الخاص بك في %s."
4090
 
4091
+ #: core/class-settings.php:405
4092
  msgctxt "contact email"
4093
  msgid "Name: %s"
4094
  msgstr "الإسم: %s"
4095
 
4096
+ #: core/class-settings.php:406
4097
  msgctxt "contact email"
4098
  msgid "E-Mail: %s"
4099
  msgstr "البريد الإلكتروني: %s"
4100
 
4101
+ #: core/class-settings.php:407
4102
  msgctxt "contact email"
4103
  msgid "Message:"
4104
  msgstr "الرسالة:"
4105
 
4106
+ #: core/class-settings.php:409
4107
  msgctxt "contact email"
4108
  msgid "Time: %s"
4109
  msgstr "الوقت: %s"
4110
 
4111
+ #: core/class-settings.php:411
4112
  msgctxt "admin settings"
4113
  msgid "E-Mail Templates"
4114
  msgstr "قوالب البريد الإلكتروني"
4115
 
4116
+ #: core/class-settings.php:414
4117
  msgctxt "admin settings"
4118
  msgid "Email confirmation message"
4119
  msgstr "رسالة تأكيد البريد الإلكتروني"
4120
 
4121
+ #: core/class-settings.php:418
4122
  msgctxt "admin settings"
4123
  msgid "Sent after a listing has been submitted."
4124
  msgstr "ترسل بعد أن يضاف الإعلان."
4125
 
4126
+ #: core/class-settings.php:419 core/class-settings.php:427
4127
+ #: core/class-settings.php:468
4128
  msgctxt "admin settings"
4129
  msgid "Listing's title"
4130
  msgstr "عنوان الإعلان"
4131
 
4132
+ #: core/class-settings.php:422
4133
  msgctxt "admin settings"
4134
  msgid "Listing published message"
4135
  msgstr "رسالة نشر الإعلان"
4136
 
4137
+ #: core/class-settings.php:425
4138
  msgctxt "admin settings"
4139
  msgid ""
4140
  "Your listing \"[listing]\" is now available at [listing-url] and can be "
4143
  "القائمة الخاصة بك \"[listing]\" متوفر الآن في [listing-url] ويمكن مشاهدتها "
4144
  "من قبل العموم."
4145
 
4146
+ #: core/class-settings.php:426
4147
  msgctxt "admin settings"
4148
  msgid "Sent when the listing has been published or approved by an admin."
4149
  msgstr "ترسل عندما يتم نشر الإعلان أو الموافقة عليه من طرف المدير."
4150
 
4151
+ #: core/class-settings.php:428
4152
  msgctxt "admin settings"
4153
  msgid "Listing's URL"
4154
  msgstr "عنوان URL الإعلان"
4155
 
4156
+ #: core/class-settings.php:432
4157
  msgctxt "admin settings"
4158
  msgid "Listing Contact Message"
4159
  msgstr "رسالة اتصال الإعلان"
4160
 
4161
+ #: core/class-settings.php:436
4162
  msgctxt "admin settings"
4163
  msgid ""
4164
  "Sent to listing owners when someone uses the contact form on their listing "
4167
  "ترسل إلى مالكي الإعلانات عندما يستخدم شخص ما نموذج جهة الاتصال في صفحات "
4168
  "الإعلانات الخاصة بهم."
4169
 
4170
+ #: core/class-settings.php:446
4171
  msgctxt "admin settings"
4172
  msgid "Payment related"
4173
  msgstr "المدفوعات ذات الصلة"
4174
 
4175
+ #: core/class-settings.php:463
4176
  msgctxt "admin settings"
4177
  msgid "Payment abandoned reminder message"
4178
  msgstr "رسالة تذكير بالتخلي عن الدفع"
4179
 
4180
+ #: core/class-settings.php:467
4181
  msgctxt "admin settings"
4182
  msgid "Sent some time after a pending payment is abandoned by users."
4183
  msgstr "ترسل أحيانا بعد أن يتخلي الأعضاء عن الدفعة المنتظرة."
4184
 
4185
+ #: core/class-settings.php:469
4186
  msgctxt "admin settings"
4187
  msgid "Checkout URL link"
4188
  msgstr "رابط URL إتمام الشراء"
4189
 
4190
+ #: core/class-settings.php:475
4191
  msgctxt "admin settings"
4192
  msgid "Renewal Reminders"
4193
  msgstr "رسائل تذكير التجديد"
4194
 
4195
+ #: core/class-settings.php:478
4196
  msgctxt "admin settings"
4197
  msgid ""
4198
  "This section refers only to the text of the renewal/expiration notices. You "
4201
  "هذا القسم يحيل فقط إلى نص إشعارات التجديد/انتهاء التاريخ. يمكنك أيضا "
4202
  "<a>إعداد متى يتم إرسال رسائل البريد الإلكتروني</a>."
4203
 
4204
+ #: core/class-settings.php:482
4205
  msgctxt "admin settings"
4206
  msgid "Pending expiration e-mail message"
4207
  msgstr "رسالة البريد الإلكتروني أثناء انتظار انتهاء التاريخ"
4208
 
4209
+ #: core/class-settings.php:486
4210
  msgctxt "settings"
4211
  msgid ""
4212
  "Sent some time before the listing expires. Applies to non-recurring renewals "
4215
  "ترسل أحيانا قبل انتهاء تاريخ الإعلان. تنطبق على عمليات التجديد غير المتكررة "
4216
  "فقط."
4217
 
4218
+ #: core/class-settings.php:487 core/class-settings.php:500
4219
+ #: core/class-settings.php:513 core/class-settings.php:526
4220
+ #: core/class-settings.php:539
4221
  msgctxt "settings"
4222
  msgid "Listing's name (with link)"
4223
  msgstr "إسم الإعلان (مع رابط)"
4224
 
4225
+ #: core/class-settings.php:488 core/class-settings.php:501
4226
+ #: core/class-settings.php:514 core/class-settings.php:527
4227
+ #: core/class-settings.php:540
4228
  msgctxt "settings"
4229
  msgid "Author's name"
4230
  msgstr "إسم الكاتب"
4231
 
4232
+ #: core/class-settings.php:489 core/class-settings.php:502
4233
+ #: core/class-settings.php:541
4234
  msgctxt "settings"
4235
  msgid "Expiration date"
4236
  msgstr "تاريخ انتهاء التاريخ"
4237
 
4238
+ #: core/class-settings.php:490
4239
  msgctxt "settings"
4240
  msgid "Category that is going to expire"
4241
  msgstr "التصنيف الذي سوف ينتهي"
4242
 
4243
+ #: core/class-settings.php:491 core/class-settings.php:504
4244
+ #: core/class-settings.php:543
4245
  msgctxt "settings"
4246
  msgid "Link to renewal page"
4247
  msgstr "رابط إلى صفحة التجديد"
4248
 
4249
+ #: core/class-settings.php:492 core/class-settings.php:505
4250
+ #: core/class-settings.php:517 core/class-settings.php:530
4251
+ #: core/class-settings.php:544
4252
  msgctxt "settings"
4253
  msgid "Link to your site"
4254
  msgstr "رابط إلى موقعك"
4255
 
4256
+ #: core/class-settings.php:495
4257
  msgctxt "admin settings"
4258
  msgid "Listing Renewal e-mail message"
4259
  msgstr "رسالة البريد الإلكتروني لتجديد الإعلان"
4260
 
4261
+ #: core/class-settings.php:499
4262
  msgctxt "settings"
4263
  msgid ""
4264
  "Sent at the time of listing expiration. Applies to non-recurring renewals "
4266
  msgstr ""
4267
  "ترسل وقت انتهاء تاريخ الإعلان. تنطبق على عمليات التجديد غير المتكررة فقط."
4268
 
4269
+ #: core/class-settings.php:503 core/class-settings.php:542
4270
  msgctxt "settings"
4271
  msgid "Category that expired"
4272
  msgstr "التصنيف الذي انتهى وقته"
4273
 
4274
+ #: core/class-settings.php:508
4275
  msgctxt "admin settings"
4276
  msgid "Listing auto-renewal reminder (recurring payments)"
4277
  msgstr "تذكير بالتجديد التلقائي للإعلان (الدفعات المتكررة)"
4278
 
4279
+ #: core/class-settings.php:512
4280
  msgctxt "settings"
4281
  msgid ""
4282
  "Sent some time before the listing is auto-renewed. Applies to recurring "
4285
  "ترسل أحيانا قبل التجديد التلقائي للإعلان. تنطبق على عمليات التجديد المتكررة "
4286
  "فقط."
4287
 
4288
+ #: core/class-settings.php:515 core/class-settings.php:529
4289
  msgctxt "settings"
4290
  msgid "Renewal date"
4291
  msgstr "تاريخ التجديد"
4292
 
4293
+ #: core/class-settings.php:516
4294
  msgctxt "settings"
4295
  msgid "Category that is going to be renewed"
4296
  msgstr "التصنيف الذي سيتم تجديده"
4297
 
4298
+ #: core/class-settings.php:518
4299
  msgctxt "settings"
4300
  msgid "Link to manage subscriptions"
4301
  msgstr "رابط لإدارة الاشتراكات"
4302
 
4303
+ #: core/class-settings.php:521
4304
  msgctxt "admin settings"
4305
  msgid "Listing Renewal e-mail message (recurring payments)"
4306
  msgstr "رسالة البريد الإلكتروني لتجديد الإعلان (الدفعات المتكررة)"
4307
 
4308
+ #: core/class-settings.php:525
4309
  msgctxt "settings"
4310
  msgid ""
4311
  "Sent after the listing is auto-renewed. Applies to recurring renewals only."
4312
  msgstr ""
4313
  "ترسل بعد التجديد التلقائي للإعلان. تنطبق على عمليات التجديد المتكررة فقط."
4314
 
4315
+ #: core/class-settings.php:528
4316
  msgctxt "settings"
4317
  msgid "Renewed category"
4318
  msgstr "تم تجديد التصنيف"
4319
 
4320
+ #: core/class-settings.php:534
4321
  msgctxt "admin settings"
4322
  msgid "Renewal reminder e-mail message"
4323
  msgstr "رسالة البريد الإلكتروني للتذكير بالتجديد"
4324
 
4325
+ #: core/class-settings.php:538
4326
  msgctxt "settings"
4327
  msgid ""
4328
  "Sent some time after listing expiration and when no renewal has occurred. "
4331
  "ترسل أحيانا بعد انتهاء تاريخ الإعلان وحينما لا يتم التجديد. تنطبق على عمليات "
4332
  "التجديد المتكررة وغير المتكررة."
4333
 
4334
+ #: core/class-settings.php:548
4335
  msgctxt "admin settings"
4336
  msgid "Payment"
4337
  msgstr "الدفع"
4338
 
4339
+ #: core/class-settings.php:549
4340
  msgctxt "admin settings"
4341
  msgid "Payment Settings"
4342
  msgstr "إعدادات الدفع"
4343
 
4344
+ #: core/class-settings.php:552
4345
  msgctxt "admin settings"
4346
  msgid "Turn On payments?"
4347
  msgstr "تشغيل الدفعات؟"
4348
 
4349
+ #: core/class-settings.php:554
4350
  msgctxt "admin settings"
4351
  msgid "Put payment gateways in test mode?"
4352
  msgstr "وضع بوابات الدفع في وضع الاختبار؟"
4353
 
4354
+ #: core/class-settings.php:559
4355
  msgctxt "admin settings"
4356
  msgid "Perform checkouts on the secure (HTTPS) version of your site?"
4357
  msgstr "تنفيذ إنهاء الشراء على الإصدار الآمن (HTTPS) لموقع الويب الخاص بك؟"
4358
 
4359
+ #: core/class-settings.php:562
4360
  msgctxt "admin settings"
4361
  msgid ""
4362
  "Recommended for added security. For this to work you need to enable HTTPS on "
4365
  "موصى به لأمن أكثر. لكي يعمل هذا أنت بحاجة إلى تمكين HTTPS على الخادم الخاص "
4366
  "بك و <a>الحصول على شهادة SSL</a>."
4367
 
4368
+ #: core/class-settings.php:566
4369
  msgctxt "admin settings"
4370
  msgid "Currency Code"
4371
  msgstr "رمز العملة"
4372
 
4373
+ #: core/class-settings.php:568
4374
  msgctxt "admin settings"
4375
  msgid "Australian Dollar (AUD)"
4376
  msgstr "الدولار الأسترالي (AUD)"
4377
 
4378
+ #: core/class-settings.php:569
4379
  msgctxt "admin settings"
4380
  msgid "Brazilian Real (BRL)"
4381
  msgstr "الريال البرازيلي (BRL)"
4382
 
4383
+ #: core/class-settings.php:570
4384
  msgctxt "admin settings"
4385
  msgid "Canadian Dollar (CAD)"
4386
  msgstr "الدولار الكندي (CAD)"
4387
 
4388
+ #: core/class-settings.php:571
4389
  msgctxt "admin settings"
4390
  msgid "Czech Koruna (CZK)"
4391
  msgstr "الكورونا التشيكية (CZK)"
4392
 
4393
+ #: core/class-settings.php:572
4394
  msgctxt "admin settings"
4395
  msgid "Danish Krone (DKK)"
4396
  msgstr "الكرونة الدانماركية (DKK)"
4397
 
4398
+ #: core/class-settings.php:573
4399
  msgctxt "admin settings"
4400
  msgid "Euro (EUR)"
4401
  msgstr "اليورو (EUR)"
4402
 
4403
+ #: core/class-settings.php:574
4404
  msgctxt "admin settings"
4405
  msgid "Hong Kong Dollar (HKD)"
4406
  msgstr "دولار هونج كونج (HKD)"
4407
 
4408
+ #: core/class-settings.php:575
4409
  msgctxt "admin settings"
4410
  msgid "Hungarian Forint (HUF)"
4411
  msgstr "الفورنت الهنغاري (HUF)"
4412
 
4413
+ #: core/class-settings.php:576
4414
  msgctxt "admin settings"
4415
  msgid "Israeli New Shequel (ILS)"
4416
  msgstr "الشكيل الإسرائيلي الجديد (ILS)"
4417
 
4418
+ #: core/class-settings.php:577
4419
  msgctxt "admin settings"
4420
  msgid "Japanese Yen (JPY)"
4421
  msgstr "الين الياباني (JPY)"
4422
 
4423
+ #: core/class-settings.php:578
4424
  msgctxt "admin settings"
4425
  msgid "Malasian Ringgit (MYR)"
4426
  msgstr "الرينغيت الماليزي (MYR)"
4427
 
4428
+ #: core/class-settings.php:579
4429
  msgctxt "admin settings"
4430
  msgid "Mexican Peso (MXN)"
4431
  msgstr "بيزو مكسيكي (MXN)"
4432
 
4433
+ #: core/class-settings.php:580
4434
  msgctxt "admin settings"
4435
  msgid "Norwegian Krone (NOK)"
4436
  msgstr "الكرون النرويجي (NOK)"
4437
 
4438
+ #: core/class-settings.php:581
4439
  msgctxt "admin settings"
4440
  msgid "New Zealand Dollar (NZD)"
4441
  msgstr "الدولار النيوزيلندي (NZD)"
4442
 
4443
+ #: core/class-settings.php:582
4444
  msgctxt "admin settings"
4445
  msgid "Philippine Peso (PHP)"
4446
  msgstr "بيزو فلبيني (PHP)"
4447
 
4448
+ #: core/class-settings.php:583
4449
  msgctxt "admin settings"
4450
  msgid "Polish Zloty (PLN)"
4451
  msgstr "الزلوتي البولندي (PLN)"
4452
 
4453
+ #: core/class-settings.php:584
4454
  msgctxt "admin settings"
4455
  msgid "Pound Sterling (GBP)"
4456
  msgstr "الجنيه الإسترليني (GBP)"
4457
 
4458
+ #: core/class-settings.php:585
4459
  msgctxt "admin settings"
4460
  msgid "Singapore Dollar (SGD)"
4461
  msgstr "دولار سنغافوري (SGD)"
4462
 
4463
+ #: core/class-settings.php:586
4464
  msgctxt "admin settings"
4465
  msgid "Swedish Krona (SEK)"
4466
  msgstr "الكرونا السويدية (SEK)"
4467
 
4468
+ #: core/class-settings.php:587
4469
  msgctxt "admin settings"
4470
  msgid "Swiss Franc (CHF)"
4471
  msgstr "الفرنك السويسري (CHF)"
4472
 
4473
+ #: core/class-settings.php:588
4474
  msgctxt "admin settings"
4475
  msgid "Taiwan Dollar (TWD)"
4476
  msgstr "الدولار التايواني (TWD)"
4477
 
4478
+ #: core/class-settings.php:589
4479
  msgctxt "admin settings"
4480
  msgid "Thai Baht (THB)"
4481
  msgstr "البات التايلندي (THB)"
4482
 
4483
+ #: core/class-settings.php:590
4484
  msgctxt "admin settings"
4485
  msgid "Turkish Lira (TRY)"
4486
  msgstr "الليرة التركية (TRY)"
4487
 
4488
+ #: core/class-settings.php:591
4489
  msgctxt "admin settings"
4490
  msgid "U.S. Dollar (USD)"
4491
  msgstr "الدولار الأمريكي (USD)"
4492
 
4493
+ #: core/class-settings.php:595
4494
  msgctxt "admin settings"
4495
  msgid "Currency Symbol"
4496
  msgstr "رمز العملة"
4497
 
4498
+ #: core/class-settings.php:600
4499
  msgctxt "admin settings"
4500
  msgid "Currency symbol display"
4501
  msgstr "عرض رمز العملة"
4502
 
4503
+ #: core/class-settings.php:604
4504
  msgctxt "admin settings"
4505
  msgid "Show currency symbol on the left"
4506
  msgstr "إظهار رمز العملة على اليسار"
4507
 
4508
+ #: core/class-settings.php:605
4509
  msgctxt "admin settings"
4510
  msgid "Show currency symbol on the right"
4511
  msgstr "إظهار رمز العملة على اليمين"
4512
 
4513
+ #: core/class-settings.php:606
4514
  msgctxt "admin settings"
4515
  msgid "Do not show currency symbol"
4516
  msgstr "عدم إظهار رمز العملة"
4517
 
4518
+ #: core/class-settings.php:608
4519
  msgctxt "admin settings"
4520
  msgid "Thank you for payment message"
4521
  msgstr "رسالة الشكر على الدفع"
4522
 
4523
+ #: core/class-settings.php:609
4524
  msgctxt "admin settings"
4525
  msgid ""
4526
  "Thank you for your payment. Your payment is being verified and your listing "
4529
  "شكرا لك على الدفع. يتم الآن التحقق من الدفع وفحص إعلانك. يمكن أن تأخذ عملية "
4530
  "التحقق والمراجعة مدة 48 ساعة."
4531
 
4532
+ #: core/class-settings.php:614
4533
  msgctxt "admin settings"
4534
  msgid "Ask users to come back for abandoned payments?"
4535
  msgstr "أطلب من الأعضاء العودة للمدفوعات المتخلى عنها؟"
4536
 
4537
+ #: core/class-settings.php:617
4538
  msgctxt "admin settings"
4539
  msgid ""
4540
  "An abandoned payment is when a user attempts to place a listing and gets to "
4546
  "إتمام الدفع للإعلان. هذا ينتج عنه أن الإعلانات تبدو وكأنها فشلت، وذلك عندما "
4547
  "لا يكمل العضو المعاملة ببساطة. دليل الأعمال يستطيع تذكيرهم للعودة والاستمرار."
4548
 
4549
+ #: core/class-settings.php:623
4550
  msgctxt "admin settings"
4551
  msgid "Listing abandonment threshold (hours)"
4552
  msgstr "عتبة التخلي على الإعلان (ساعات)"
4553
 
4554
+ #: core/class-settings.php:628
4555
  msgctxt "admin settings"
4556
  msgid ""
4557
  "Listings with pending payments are marked as abandoned after this time. You "
4560
  "الإعلانات مع الدفعات المعلقة تعد متخلى عنها بعد هذا الوقت. يمكنك أيضا "
4561
  "<a>تخصيص البريد الإلكتروني</a> الذي يتلقاه الأعضاء."
4562
 
4563
+ #: core/class-settings.php:633
4564
  msgctxt "admin settings"
4565
  msgid "Themes"
4566
  msgstr "القوالب"
4567
 
4568
+ #: core/class-settings.php:635
4569
  msgctxt "admin settings"
4570
  msgid "You can manage your themes on <a>Directory Themes</a>."
4571
  msgstr "يمكنك إدارة قوالبك في <a>قوالب الدليل</a>."
4572
 
4573
+ #: core/class-settings.php:640
4574
  msgctxt "admin settings"
4575
  msgid "Theme button style"
4576
  msgstr "نمط زر القالب"
4577
 
4578
+ #: core/class-settings.php:644
4579
  msgctxt "admin settings"
4580
  msgid "Use the BD theme style for BD buttons"
4581
  msgstr "إستخدم نمط قالب دليل الأعمال لأزرار دليل الأعمال"
4582
 
4583
+ #: core/class-settings.php:645
4584
  msgctxt "admin settings"
4585
  msgid "Use the WP theme style for BD buttons"
4586
  msgstr "إستخدم نمط قالب ووردبريس لأزرار دليل الأعمال"
4587
 
4588
+ #: core/class-settings.php:652
4589
  msgctxt "admin settings"
4590
  msgid "Image"
4591
  msgstr "الصورة"
4592
 
4593
+ #: core/class-settings.php:653
4594
  msgctxt "admin settings"
4595
  msgid ""
4596
  "Any changes to these settings will affect new listings only. Existing "
4602
  "الموجودة لن تتأثر. إذا كنت ترغب في تغيير الإعلانات الحالية، تحتاج إلى إعادة "
4603
  "تحميل الصورة (الصور) إلى تلك الإعلانات بعد تغيير الأشياء هنا."
4604
 
4605
+ #: core/class-settings.php:654
4606
  msgctxt "admin settings"
4607
  msgid "Image Settings"
4608
  msgstr "إعدادات الصورة"
4609
 
4610
+ #: core/class-settings.php:655
4611
  msgctxt "admin settings"
4612
  msgid "Allow images?"
4613
  msgstr "السماح بالصور؟"
4614
 
4615
+ #: core/class-settings.php:657
4616
  msgctxt "admin settings"
4617
  msgid "Min Image File Size (KB)"
4618
  msgstr "أقل حجم لملف الصورة (KB)"
4619
 
4620
+ #: core/class-settings.php:658
4621
  msgctxt "admin settings"
4622
  msgid "Max Image File Size (KB)"
4623
  msgstr "أقصى حجم لملف الصورة (KB)"
4624
 
4625
+ #: core/class-settings.php:660
4626
  msgctxt "admin settings"
4627
  msgid "Min image width (px)"
4628
  msgstr "أقل عرض للصورة (px)"
4629
 
4630
+ #: core/class-settings.php:661
4631
  msgctxt "admin settings"
4632
  msgid "Min image height (px)"
4633
  msgstr "أقل ارتفاع للصورة (px)"
4634
 
4635
+ #: core/class-settings.php:663
4636
  msgctxt "admin settings"
4637
  msgid "Max image width (px)"
4638
  msgstr "أقصى عرض للصورة (px)"
4639
 
4640
+ #: core/class-settings.php:664
4641
  msgctxt "admin settings"
4642
  msgid "Max image height (px)"
4643
  msgstr "أقصى ارتفاع للصورة (px)"
4644
 
4645
+ #: core/class-settings.php:666
4646
  msgctxt "admin settings"
4647
  msgid "Turn on thickbox/lightbox?"
4648
  msgstr "تشغيل thickbox/lightbox؟"
4649
 
4650
+ #: core/class-settings.php:666
4651
  msgctxt "admin settings"
4652
  msgid ""
4653
  "Uncheck if it conflicts with other elements or plugins installed on your site"
4655
  "قم بإلغاء التحديد إذا كان يتعارض مع العناصر الأخرى أو الإضافات المثبتة على "
4656
  "موقعك"
4657
 
4658
+ #: core/class-settings.php:668
4659
  msgctxt "admin settings"
4660
  msgid "Thumbnails"
4661
  msgstr "الصور المصغرة"
4662
 
4663
+ #: core/class-settings.php:669
4664
  msgctxt "admin settings"
4665
  msgid "Thumbnail width (px)"
4666
  msgstr "عرض الصور المصغرة (px)"
4667
 
4668
+ #: core/class-settings.php:670
4669
  msgctxt "admin settings"
4670
  msgid "Thumbnail height (px)"
4671
  msgstr "ارتفاع الصورة المصغرة (px)"
4672
 
4673
+ #: core/class-settings.php:673
4674
  msgctxt "admin settings"
4675
  msgid "Crop thumbnails to exact dimensions?"
4676
  msgstr "قطع الصور المصغرة للأبعاد المناسبة؟"
4677
 
4678
+ #: core/class-settings.php:676
4679
  msgctxt "admin settings"
4680
  msgid ""
4681
  "When enabled images will match exactly the dimensions above but part of the "
4688
  "تعديل الارتفاع بشكل متناسب. اعتماداً على الصور المرفوعة, قد تكون ارتفاعات "
4689
  "الصور المصغرة مختلفة."
4690
 
4691
+ #: core/class-settings.php:682
4692
  msgctxt "admin settings"
4693
  msgid "Number of free images"
4694
  msgstr "عدد الصور المجانية"
4695
 
4696
+ #: core/class-settings.php:687
4697
  msgctxt "admin settings"
4698
  msgid ""
4699
  "For paid listing images, configure that by adding or editing a <a>Fee Plan</"
4702
  "بالنسبة لصور الإعلانات المدفوعة، قم بإعدادها بإضافة أو تحرير <a>رسوم الخطة</"
4703
  "a> بدلاً من هذا الإعداد، الذي هو تجاهل الإعلانات المدفوعة."
4704
 
4705
+ #: core/class-settings.php:690
4706
  msgctxt "admin settings"
4707
  msgid "Use default picture for listings with no picture?"
4708
  msgstr "إستخدام الصورة الافتراضية للإعلانات التي بلا صورة؟"
4709
 
4710
+ #: core/class-settings.php:691
4711
  msgctxt "admin settings"
4712
  msgid "Show Thumbnail on main listings page?"
4713
  msgstr "إظهار صورة مصغرة في صفحة الإعلانات الرئيسية؟"
4714
 
4715
+ #: core/class-settings.php:720
4716
  msgctxt "admin settings"
4717
  msgid "User"
4718
  msgstr "عضو"
4719
 
4720
+ #: core/class-settings.php:721
4721
  msgctxt "admin settings"
4722
  msgid "User registration date"
4723
  msgstr "تاريخ تسجيل العضو"
4724
 
4725
+ #: core/class-settings.php:747
4726
  msgctxt "admin settings"
4727
  msgid ""
4728
  "Could not copy the AJAX compatibility plugin \"%s\". Compatibility mode was "
4729
  "not activated."
4730
  msgstr "تعذر نسخ إضافة التوافق أجاكس \"%s\". لم يتم تفعيل وضع التوافق."
4731
 
4732
+ #: core/class-settings.php:755
4733
  msgctxt "admin settings"
4734
  msgid ""
4735
  "Could not activate AJAX Compatibility mode: the directory \"%s\" could not "
4736
  "be created."
4737
  msgstr "لا يمكن تفعيل وضع التوافق أجاكس: تعذر إنشاء المجلد \"%s\"."
4738
 
4739
+ #: core/class-settings.php:764
4740
  msgctxt "admin settings"
4741
  msgid ""
4742
  "Could not remove the \"Business Directory Plugin - AJAX Compatibility Module"
4745
  "تعذر إزالة \"إضافة دليل الأعمال – وحدة التوافق أجاكس\". المرجو إزالة الملف "
4746
  "\"%s\" يدوياً أو قم بإلغاء تفعيل الإضافة."
4747
 
4748
+ #: core/class-settings.php:1084
4749
  msgctxt "settings"
4750
  msgid "Deactivate License"
4751
  msgstr "تعطيل الترخيص"
4752
 
4753
+ #: core/class-settings.php:1086
4754
  msgctxt "settings"
4755
  msgid "Deactivating license..."
4756
  msgstr "ترخيص معطل..."
4757
 
4758
+ #: core/class-settings.php:1089
4759
  msgctxt "settings"
4760
  msgid "Activate License"
4761
  msgstr "تفعيل الترخيص"
4762
 
4763
+ #: core/class-settings.php:1091
4764
  msgctxt "settings"
4765
  msgid "Activating license..."
4766
  msgstr "ترخيص مفعل..."
4767
 
4768
+ #: core/class-settings.php:1114
4769
  msgctxt "admin settings"
4770
  msgid "Valid placeholders: %s"
4771
  msgstr "العناصر النائبة صالحة: %s"
4772
 
4773
+ #: core/class-settings.php:1148
4774
  msgctxt "settings email"
4775
  msgid "Click to edit e-mail"
4776
  msgstr "إضغط لتعديل البريد الإلكتروني"
4777
 
4778
+ #: core/class-settings.php:1149
4779
  msgctxt "settings email"
4780
  msgid "Click to edit"
4781
  msgstr "اضغط لتعديل"
4782
 
4783
+ #: core/class-settings.php:1162
4784
  msgctxt "settings email"
4785
  msgid "E-Mail Subject"
4786
  msgstr "عنوان البريد الإلكتروني"
4787
 
4788
+ #: core/class-settings.php:1173
4789
  msgctxt "settings email"
4790
  msgid "E-Mail Body"
4791
  msgstr "نص البريد الإلكتروني"
4792
 
4793
+ #: core/class-settings.php:1184
4794
  msgctxt "settings email"
4795
  msgid "You can use the following placeholders:"
4796
  msgstr "يمكنك استخدام العناصر النائبة التالية:"
4797
 
4798
+ #: core/class-settings.php:1207
4799
  msgctxt "settings email"
4800
  msgid "Preview e-mail"
4801
  msgstr "معاينة البريد الإلكتروني"
4802
 
4803
+ #: core/class-settings.php:1208
4804
  msgctxt "settings email"
4805
  msgid "Cancel"
4806
  msgstr "إلغاء"
4807
 
4808
+ #: core/class-settings.php:1209
4809
  msgctxt "settings email"
4810
  msgid "Save Changes"
4811
  msgstr "حفظ التعديلات"
4812
 
4813
+ #: core/class-settings.php:1228
4814
  msgctxt "settings email"
4815
  msgid "Site title"
4816
  msgstr "إسم الموقع"
4817
 
4818
+ #: core/class-settings.php:1231
4819
  msgctxt "settings email"
4820
  msgid "Site title (with link)"
4821
  msgstr "إسم الموقع (مع الرابط)"
4822
 
4823
+ #: core/class-settings.php:1234
4824
  msgctxt "settings email"
4825
  msgid "Site address (with link)"
4826
  msgstr "عنوان الموقع (مع الرابط)"
4827
 
4828
+ #: core/class-settings.php:1237
4829
  msgctxt "settings email"
4830
  msgid "Directory URL (with link)"
4831
  msgstr "رابط URL الدليل (مع الرابط)"
4832
 
4833
+ #: core/class-settings.php:1240
4834
  msgctxt "settings email"
4835
  msgid "Current date"
4836
  msgstr "التاريخ الحالي"
4837
 
4838
+ #: core/class-settings.php:1243
4839
  msgctxt "settings email"
4840
  msgid "Current time"
4841
  msgstr "الوقت الحالي"
5481
  msgid "Listing upgrade to featured"
5482
  msgstr "الترقية الى إعلان مميز"
5483
 
5484
+ #: core/installer.php:1012
5485
+ msgctxt "installer"
5486
+ msgid ""
5487
+ "Cleaning up stored meta data for Checkbox, Radio and Select fields... (%d "
5488
+ "records left)"
5489
+ msgstr ""
5490
+
5491
+ #: core/installer.php:1061
5492
  msgid "Business Directory - Manual Upgrade Required"
5493
  msgstr "دليل الأعمال - ترقية يدوية مطلوبة"
5494
 
5495
+ #: core/installer.php:1063
5496
  msgid ""
5497
  "Business Directory features are currently disabled because the plugin needs "
5498
  "to perform a manual upgrade before continuing."
5500
  "تم تعطيل ميزات دليل الأعمال حاليا بسبب أن الإضافة تحتاج إلى إجراء ترقية "
5501
  "يدوية قبل المتابعة."
5502
 
5503
+ #: core/installer.php:1065
5504
  msgid "Perform Manual Upgrade"
5505
  msgstr "أداء ترقية يدوية"
5506
 
5507
+ #: core/installer.php:1081 core/installer.php:1082 core/installer.php:1093
5508
  msgid "Business Directory - Manual Upgrade"
5509
  msgstr "دليل الأعمال - ترقية يدوية"
5510
 
5511
+ #: core/installer.php:1097
5512
  msgid ""
5513
  "Business Directory features are currently disabled because the plugin needs "
5514
  "to perform a manual upgrade before it can be used."
5516
  "تم تعطيل ميزات دليل الأعمال حاليا بسبب أن الإضافة تحتاج إلى إجراء ترقية "
5517
  "يدوية قبل أن تصلح للاستخدام."
5518
 
5519
+ #: core/installer.php:1099
5520
  msgid "Click \"Start Upgrade\" and wait until the process finishes."
5521
  msgstr "إضغط على \"إبدأ الترقية\" وانتظر حتى انتهاء العملية."
5522
 
5523
+ #: core/installer.php:1102
5524
  msgctxt "manual-upgrade"
5525
  msgid "Start Upgrade"
5526
  msgstr "بدء الترقية"
5527
 
5528
+ #: core/installer.php:1104
5529
  msgctxt "manual-upgrade"
5530
  msgid "Pause Upgrade"
5531
  msgstr "توقيف الترقية"
5532
 
5533
+ #: core/installer.php:1110
5534
  msgctxt "manual-upgrade"
5535
  msgid ""
5536
  "The upgrade was sucessfully performed. Business Directory Plugin is now "
5537
  "available."
5538
  msgstr "تم إجراء الترقية بنجاح. إضافة دليل الأعمال متاحة الآن."
5539
 
5540
+ #: core/installer.php:1113
5541
  msgctxt "manual-upgrade"
5542
  msgid "Go to \"Directory Admin\""
5543
  msgstr "إنتقل إلى \"مشرف الدليل\""
5544
 
5545
+ #: core/installer.php:1148
5546
  #, fuzzy
5547
  msgid "Business Directory - Installation Failed"
5548
  msgstr "دليل الأعمال - ترقية يدوية"
5549
 
5550
+ #: core/installer.php:1150
5551
  msgid ""
5552
  "Business Directory installation failed. An exception with following message "
5553
  "was generated:"
5554
  msgstr ""
5555
 
5556
+ #: core/installer.php:1155
5557
  msgid "Please <contact-link>contact customer support</a>."
5558
  msgstr ""
5559
 
5835
  msgid "No listing categories found."
5836
  msgstr "لم يتم العثور على تصنيفات الإعلانات."
5837
 
5838
+ #: core/templates-ui.php:194
5839
  msgid "Directory"
5840
  msgstr "الدليل"
5841
 
5842
+ #: core/templates-ui.php:201
5843
  msgid "View All Listings"
5844
  msgstr "مشاهدة جميع الإعلانات"
5845
 
5846
+ #: core/templates-ui.php:208
5847
  msgid "Create A Listing"
5848
  msgstr "إنشاء إعلان"
5849
 
5850
+ #: core/templates-ui.php:241
5851
  msgctxt "templates"
5852
  msgid "Search Listings"
5853
  msgstr "البحث في الإعلانات"
5854
 
5855
+ #: core/templates-ui.php:244
5856
  msgctxt "templates"
5857
  msgid "Advanced Search"
5858
  msgstr "بحث متقدم"
5859
 
5860
+ #: core/templates-ui.php:273 core/templates-ui.php:298
5861
  msgctxt "templates sort"
5862
  msgid "Sort By:"
5863
  msgstr "ترتيب حسب:"
5864
 
5865
+ #: core/templates-ui.php:292
5866
  msgctxt "sort"
5867
  msgid "Reset"
5868
  msgstr "إعادة تعيين"
5869
 
5870
+ #: core/templates-ui.php:314
5871
  msgctxt "sort"
5872
  msgid "(Reset)"
5873
  msgstr "(إعادة تعيين)"
7198
  msgid "http://businessdirectoryplugin.com"
7199
  msgstr "http://businessdirectoryplugin.com"
7200
 
7201
+ #~ msgctxt "admin settings"
7202
+ #~ msgid ""
7203
+ #~ "Allow visitors to discuss listings using the standard WordPress comment "
7204
+ #~ "form. Comments are public."
7205
+ #~ msgstr ""
7206
+ #~ "السماح للزوار بمناقشة الإعلانات باستخدام نموذج التعليق القياسي لووردبريس. "
7207
+ #~ "التعليقات مشاهدة للعموم."
7208
+
7209
  #~ msgctxt "title"
7210
  #~ msgid "Submit A Listing"
7211
  #~ msgstr "إضافة إعلان"
languages/WPBDM-de_DE.mo CHANGED
Binary file
languages/WPBDM-de_DE.po CHANGED
@@ -4,7 +4,7 @@ msgid ""
4
  msgstr ""
5
  "Project-Id-Version: Business Directory Plugin 3.5.4\n"
6
  "Report-Msgid-Bugs-To: http://wordpress.org/tag/business-directory-plugin\n"
7
- "POT-Creation-Date: 2016-11-25 09:40:43+00:00\n"
8
  "PO-Revision-Date: 2016-01-21 08:45-0500\n"
9
  "Last-Translator: BD Team <support@businessdirectoryplugin.com>\n"
10
  "Language-Team: Business Directory Plugin <support@businessdirectoryplugin."
@@ -1000,92 +1000,92 @@ msgctxt "form-fields admin"
1000
  msgid "Field deleted."
1001
  msgstr "Feld gelöscht."
1002
 
1003
- #: admin/form-fields.php:272
1004
  msgctxt "form-fields admin"
1005
  msgid "Required fields created successfully."
1006
  msgstr "Benötigtes Feld wurde erfolgreich erstellt."
1007
 
1008
- #: admin/form-fields.php:285
1009
  #, fuzzy
1010
  msgctxt "form-fields admin"
1011
  msgid "Title"
1012
  msgstr "Titel"
1013
 
1014
- #: admin/form-fields.php:286
1015
  #, fuzzy
1016
  msgctxt "form-fields admin"
1017
  msgid "Category"
1018
  msgstr "Kategorien"
1019
 
1020
- #: admin/form-fields.php:287
1021
  #, fuzzy
1022
  msgctxt "form-fields admin"
1023
  msgid "Excerpt"
1024
  msgstr "Im Textauszug"
1025
 
1026
- #: admin/form-fields.php:288
1027
  #, fuzzy
1028
  msgctxt "form-fields admin"
1029
  msgid "Content"
1030
  msgstr "Post Inhalt"
1031
 
1032
- #: admin/form-fields.php:289
1033
  #, fuzzy
1034
  msgctxt "form-fields admin"
1035
  msgid "Tags"
1036
  msgstr "Tags Entwurf"
1037
 
1038
- #: admin/form-fields.php:290
1039
  #, fuzzy
1040
  msgctxt "form-fields admin"
1041
  msgid "Address"
1042
  msgstr "E-mail Adresse:"
1043
 
1044
- #: admin/form-fields.php:291
1045
  msgctxt "form-fields admin"
1046
  msgid "City"
1047
  msgstr ""
1048
 
1049
- #: admin/form-fields.php:292
1050
  #, fuzzy
1051
  msgctxt "form-fields admin"
1052
  msgid "State"
1053
  msgstr "Status"
1054
 
1055
- #: admin/form-fields.php:293
1056
  msgctxt "form-fields admin"
1057
  msgid "ZIP Code"
1058
  msgstr ""
1059
 
1060
- #: admin/form-fields.php:294
1061
  #, fuzzy
1062
  msgctxt "form-fields admin"
1063
  msgid "FAX Number"
1064
  msgstr "Telefonnummer geschäftlich"
1065
 
1066
- #: admin/form-fields.php:295
1067
  #, fuzzy
1068
  msgctxt "form-fields admin"
1069
  msgid "Phone Number"
1070
  msgstr "Telefonnummer geschäftlich"
1071
 
1072
- #: admin/form-fields.php:296
1073
  #, fuzzy
1074
  msgctxt "form-fields admin"
1075
  msgid "Ratings Field"
1076
  msgstr "Eintrag Felder"
1077
 
1078
- #: admin/form-fields.php:297
1079
  msgctxt "form-fields admin"
1080
  msgid "Twitter"
1081
  msgstr ""
1082
 
1083
- #: admin/form-fields.php:298
1084
  msgctxt "form-fields admin"
1085
  msgid "Website"
1086
  msgstr ""
1087
 
1088
- #: admin/form-fields.php:319
1089
  #, fuzzy
1090
  msgctxt "form-fields admin"
1091
  msgid "Tags updated."
@@ -2243,7 +2243,7 @@ msgctxt "form-fields admin"
2243
  msgid "Please see the <a>Form Fields documentation</a> for more details."
2244
  msgstr ""
2245
 
2246
- #. #-#-#-#-# WPBDM.pot (Business Directory Plugin 4.1.5dev6) #-#-#-#-#
2247
  #. Plugin Name of the plugin/theme
2248
  #: admin/templates/header.tpl.php:4
2249
  msgid "Business Directory Plugin"
@@ -3036,34 +3036,34 @@ msgctxt "tracking"
3036
  msgid "Allow Tracking"
3037
  msgstr "Verfolgung erlauben"
3038
 
3039
- #: business-directory-plugin.php:667
3040
  msgctxt "admin plugins"
3041
  msgid "Settings"
3042
  msgstr "Einstellungen"
3043
 
3044
- #: business-directory-plugin.php:775 business-directory-plugin.php:782
3045
  msgctxt "rss feed"
3046
  msgid "%s Feed"
3047
  msgstr "% Feed"
3048
 
3049
- #: business-directory-plugin.php:1117 core/view-submit-listing.php:58
3050
  #: core/views/submit_listing.php:10
3051
  #, fuzzy
3052
  msgctxt "views"
3053
  msgid "Submit A Listing"
3054
  msgstr "Eintrag zusenden"
3055
 
3056
- #: business-directory-plugin.php:1122
3057
  msgctxt "title"
3058
  msgid "Find a Listing"
3059
  msgstr "Eintrag finden"
3060
 
3061
- #: business-directory-plugin.php:1127
3062
  msgctxt "title"
3063
  msgid "View All Listings"
3064
  msgstr "Alle Einträge anschauen"
3065
 
3066
- #: business-directory-plugin.php:1156
3067
  msgctxt "title"
3068
  msgid "Listings tagged: %s"
3069
  msgstr "Einträge getaggt: %s"
@@ -3132,17 +3132,17 @@ msgctxt "form-fields-api"
3132
  msgid "Invalid form field type"
3133
  msgstr "Ungültige Formfeldtyp"
3134
 
3135
- #: core/class-form-field.php:498
3136
  msgctxt "form-fields-api"
3137
  msgid "Field label is required."
3138
  msgstr "Feldbezeichnung ist Pflichtfeld."
3139
 
3140
- #: core/class-form-field.php:508
3141
  msgctxt "form-fields-api"
3142
  msgid "Requested field type change is incompatible. Type will not be modified."
3143
  msgstr ""
3144
 
3145
- #: core/class-form-field.php:528
3146
  msgctxt "form-fields-api"
3147
  msgid ""
3148
  "There can only be one field with association \"%s\". Please select another "
@@ -3151,17 +3151,17 @@ msgstr ""
3151
  "Es kann nur ein Feld mit \"%s\" verbunden werden. Bitte wähle eine andere "
3152
  "Verbindung."
3153
 
3154
- #: core/class-form-field.php:538
3155
  msgctxt "form-fields-api"
3156
  msgid "\"%s\" is an invalid field type for this association."
3157
  msgstr "\"%s\" ist ein ungültiger Feldtyp für diese Verbindung."
3158
 
3159
- #: core/class-form-field.php:576
3160
  msgctxt "form-fields-api"
3161
  msgid "Invalid field ID"
3162
  msgstr "Ungültige Feld ID"
3163
 
3164
- #: core/class-form-field.php:585
3165
  msgctxt "form-fields api"
3166
  msgid ""
3167
  "This form field can't be deleted because it is required for the plugin to "
@@ -3170,7 +3170,7 @@ msgstr ""
3170
  "Dieses Formfeld kann nicht gelöscht werden, weil es ein Pflichtfeld ist, "
3171
  "damit das Modul richtig funktioniert."
3172
 
3173
- #: core/class-form-field.php:597
3174
  msgctxt "form-fields-api"
3175
  msgid "An error occurred while trying to delete this field."
3176
  msgstr "Während der Löschung des Feldes ist ein Fehler aufgetreten."
@@ -3238,12 +3238,12 @@ msgctxt "listing"
3238
  msgid "(Fee Unavailable)"
3239
  msgstr "(Preis nicht verfügbar)"
3240
 
3241
- #: core/class-listings-api.php:306
3242
  msgctxt "notify email"
3243
  msgid "[%s] New listing notification"
3244
  msgstr "[%s] neue Eintragsbenachrichtigung"
3245
 
3246
- #: core/class-listings-api.php:325
3247
  msgctxt "notify email"
3248
  msgid "[%s] Listing edit notification"
3249
  msgstr "[%s] Eintrag bearbeiten Benachrichtigung"
@@ -3623,13 +3623,13 @@ msgctxt "admin settings"
3623
  msgid "Enable AJAX compatibility mode?"
3624
  msgstr ""
3625
 
3626
- #: core/class-settings.php:181 core/class-settings.php:665
3627
  msgctxt "admin settings"
3628
  msgid "Listings"
3629
  msgstr "Einträge"
3630
 
3631
- #: core/class-settings.php:182 core/class-settings.php:335
3632
- #: core/class-settings.php:622
3633
  msgctxt "admin settings"
3634
  msgid "General Settings"
3635
  msgstr "Allgemeine Einstellungen"
@@ -3700,52 +3700,70 @@ msgstr ""
3700
  "Benutze dieses Feld um spamming von Einträgen zu vermeiden. 0 heisst "
3701
  "unbegrenzt pro Tag."
3702
 
3703
- #: core/class-settings.php:220
3704
  msgctxt "admin settings"
3705
  msgid "Include comment form on listing pages?"
3706
  msgstr "Kommentarform einfügen in Eintragsseiten?"
3707
 
3708
- #: core/class-settings.php:223
3709
  msgctxt "admin settings"
3710
  msgid ""
3711
- "Allow visitors to discuss listings using the standard WordPress comment "
3712
- "form. Comments are public."
 
 
 
3713
  msgstr ""
3714
- "Besuchern erlauben die Einträge mit der Standard Wordpress Form zu "
3715
- "diskutieren. Kommentare sind öffentlich."
3716
 
3717
- #: core/class-settings.php:224
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
3718
  msgctxt "admin settings"
3719
  msgid "Show listings under categories on main page?"
3720
  msgstr "Einträge unter Kategorien anzeigen auf der Hauptseite?"
3721
 
3722
- #: core/class-settings.php:225
3723
  msgctxt "admin settings"
3724
  msgid "Status of listings upon uninstalling plugin"
3725
  msgstr "Status der Einträge bei Deinstallation der Erweiterung"
3726
 
3727
- #: core/class-settings.php:226 core/class-settings.php:228
3728
  msgctxt "post status"
3729
  msgid "Draft"
3730
  msgstr ""
3731
 
3732
- #: core/class-settings.php:226 core/class-settings.php:228
3733
  msgctxt "post status"
3734
  msgid "Trash"
3735
  msgstr ""
3736
 
3737
- #: core/class-settings.php:227
3738
  msgctxt "admin settings"
3739
  msgid "Status of deleted listings"
3740
  msgstr "Status der gelöschten Einträge"
3741
 
3742
- #: core/class-settings.php:229
3743
  #, fuzzy
3744
  msgctxt "admin settings"
3745
  msgid "Submit Listing instructions message"
3746
  msgstr "Eintrag Kontakt Nachricht"
3747
 
3748
- #: core/class-settings.php:229
3749
  msgctxt "admin settings"
3750
  msgid ""
3751
  "This text is displayed at the first page of the Submit Listing process for "
@@ -3753,22 +3771,22 @@ msgid ""
3753
  "form or anything you want to tell users before they get started."
3754
  msgstr ""
3755
 
3756
- #: core/class-settings.php:231
3757
  msgctxt "admin settings"
3758
  msgid "Listing Renewal"
3759
  msgstr "Einträge erneuern"
3760
 
3761
- #: core/class-settings.php:232
3762
  msgctxt "admin settings"
3763
  msgid "Turn on listing renewal option?"
3764
  msgstr "Option zur Erneuerung von Einträgen aktivieren?"
3765
 
3766
- #: core/class-settings.php:235
3767
  msgctxt "admin settings"
3768
  msgid "Allow recurring renewal payments?"
3769
  msgstr "Wiederholte Bezahlung erlauben?"
3770
 
3771
- #: core/class-settings.php:238
3772
  msgctxt "admin settings"
3773
  msgid ""
3774
  "Allow users to opt in for automatic renewal of their listings. The fee is "
@@ -3778,12 +3796,12 @@ msgstr ""
3778
  "anzumelden. Der Preis wird abgebucht, zu dem Zeitpunkt an dem der Eintrag "
3779
  "abläuft, ohne Eingriff durch den Benutzer."
3780
 
3781
- #: core/class-settings.php:242
3782
  msgctxt "admin settings"
3783
  msgid "Use recurring payments as the default payment method?"
3784
  msgstr "Benutze automatische Abbuchungen als Standardbezahlmethode?"
3785
 
3786
- #: core/class-settings.php:245
3787
  msgctxt "admin settings"
3788
  msgid ""
3789
  "Enable automatic renewal without having users opt in during the submit "
@@ -3792,12 +3810,12 @@ msgstr ""
3792
  "Automatische Abbuchung aktivieren, ohne die Anmeldung durch den Benutzer "
3793
  "während der Einreichung."
3794
 
3795
- #: core/class-settings.php:250
3796
  msgctxt "admin settings"
3797
  msgid "Listing renewal e-mail threshold (in days)"
3798
  msgstr "Eintragsabbuchungsemail Grenze (in tagen)"
3799
 
3800
- #: core/class-settings.php:253
3801
  msgctxt "admin settings"
3802
  msgid ""
3803
  "Configure how many days before listing expiration is the renewal e-mail sent."
@@ -3805,7 +3823,7 @@ msgstr ""
3805
  "Konfiguriere wieviel Tage vor der Abbuchung eine Buchungsmail verschickt "
3806
  "wird."
3807
 
3808
- #: core/class-settings.php:257
3809
  msgctxt "admin settings"
3810
  msgid ""
3811
  "Send expiration notices including a cancel links to auto-renewed listings?"
@@ -3813,17 +3831,17 @@ msgstr ""
3813
  "Sende eine Ablaufinformation die einen Beenden und einen Automatisch Eintrag "
3814
  "Erneuern Link enghält?"
3815
 
3816
- #: core/class-settings.php:264
3817
  msgctxt "admin settings"
3818
  msgid "Remind listing owners of expired listings (past due)?"
3819
  msgstr "Eintraginhaber an abgelaufene Einträge erinnern (überfällig)?"
3820
 
3821
- #: core/class-settings.php:269
3822
  msgctxt "admin settings"
3823
  msgid "Listing renewal reminder e-mail threshold (in days)"
3824
  msgstr "Einträge erneuern E-mail Grenze (in Tagen)"
3825
 
3826
- #: core/class-settings.php:272
3827
  msgctxt "admin settings"
3828
  msgid ""
3829
  "Configure how many days after the expiration of a listing an e-mail reminder "
@@ -3832,175 +3850,175 @@ msgstr ""
3832
  "Konfiguriere wie viele Tage nach dem Ablauf eines Eintrags eine E-mail an "
3833
  "den Inhaber versendet wird."
3834
 
3835
- #: core/class-settings.php:275
3836
  msgctxt "admin settings"
3837
  msgid "Post/Category Settings"
3838
  msgstr "Post/Kategorie Einstellungen"
3839
 
3840
- #: core/class-settings.php:276
3841
  msgctxt "admin settings"
3842
  msgid "Default new post status"
3843
  msgstr "Standard neuer Post Status"
3844
 
3845
- #: core/class-settings.php:277 core/class-settings.php:280
3846
  msgctxt "post status"
3847
  msgid "Published"
3848
  msgstr ""
3849
 
3850
- #: core/class-settings.php:277 core/class-settings.php:280
3851
  #, fuzzy
3852
  msgctxt "post status"
3853
  msgid "Pending"
3854
  msgstr "Ausstehend"
3855
 
3856
- #: core/class-settings.php:279
3857
  msgctxt "admin settings"
3858
  msgid "Edit post status"
3859
  msgstr "Post Status Bearbeiten"
3860
 
3861
- #: core/class-settings.php:281
3862
  msgctxt "admin settings"
3863
  msgid "Order categories list by"
3864
  msgstr "Anordnung Kategorieliste durch"
3865
 
3866
- #: core/class-settings.php:283
3867
  msgctxt "admin settings"
3868
  msgid "Name"
3869
  msgstr "Name"
3870
 
3871
- #: core/class-settings.php:284
3872
  msgctxt "admin settings"
3873
  msgid "Slug"
3874
  msgstr "Entwurf"
3875
 
3876
- #: core/class-settings.php:285
3877
  msgctxt "admin settings"
3878
  msgid "Listing Count"
3879
  msgstr "Anzahl Einträge"
3880
 
3881
- #: core/class-settings.php:287
3882
  msgctxt "admin settings"
3883
  msgid "Sort order for categories"
3884
  msgstr "Sortierung für Kategorien"
3885
 
3886
- #: core/class-settings.php:288 core/class-settings.php:306
3887
  msgctxt "admin settings"
3888
  msgid "Ascending"
3889
  msgstr "Aufsteigend"
3890
 
3891
- #: core/class-settings.php:288 core/class-settings.php:306
3892
  msgctxt "admin settings"
3893
  msgid "Descending"
3894
  msgstr "Absteigend"
3895
 
3896
- #: core/class-settings.php:289
3897
  msgctxt "admin settings"
3898
  msgid "Show category post count?"
3899
  msgstr "Kategoriepost Anzahl anzeigen?"
3900
 
3901
- #: core/class-settings.php:290
3902
  msgctxt "admin settings"
3903
  msgid "Hide empty categories?"
3904
  msgstr "Leere Kategorien verbergen?"
3905
 
3906
- #: core/class-settings.php:291
3907
  msgctxt "admin settings"
3908
  msgid "Show only parent categories in category list?"
3909
  msgstr "Nur Elternkategorien in Kategorieliste anzeigen?"
3910
 
3911
- #: core/class-settings.php:293
3912
  msgctxt "admin settings"
3913
  msgid "Listings Sorting"
3914
  msgstr "Sortierung Einträge"
3915
 
3916
- #: core/class-settings.php:294
3917
  msgctxt "admin settings"
3918
  msgid "Order directory listings by"
3919
  msgstr "Anordnung Verzeichniseinträge durch"
3920
 
3921
- #: core/class-settings.php:296
3922
  msgctxt "admin settings"
3923
  msgid "Title"
3924
  msgstr "Titel"
3925
 
3926
- #: core/class-settings.php:297
3927
  msgctxt "admin settings"
3928
  msgid "Author"
3929
  msgstr "Author"
3930
 
3931
- #: core/class-settings.php:298 core/class-settings.php:708
3932
  msgctxt "admin settings"
3933
  msgid "Date posted"
3934
  msgstr "Datum gepostet"
3935
 
3936
- #: core/class-settings.php:299 core/class-settings.php:709
3937
  msgctxt "admin settings"
3938
  msgid "Date last modified"
3939
  msgstr "Datum zuletzt verändert"
3940
 
3941
- #: core/class-settings.php:300
3942
  msgctxt "admin settings"
3943
  msgid "Random"
3944
  msgstr "Zufall"
3945
 
3946
- #: core/class-settings.php:301
3947
  msgctxt "admin settings"
3948
  msgid "Paid first then free. Inside each group by date."
3949
  msgstr ""
3950
 
3951
- #: core/class-settings.php:302
3952
  msgctxt "admin settings"
3953
  msgid "Paid first then free. Inside each group by title."
3954
  msgstr ""
3955
 
3956
- #: core/class-settings.php:304
3957
  msgctxt "admin settings"
3958
  msgid "Sort directory listings by"
3959
  msgstr "Verzeichnissortierung der Einträge durch"
3960
 
3961
- #: core/class-settings.php:305
3962
  msgctxt "admin settings"
3963
  msgid "Ascending for ascending order A-Z, Descending for descending order Z-A"
3964
  msgstr ""
3965
  "Aufsteigend für aufsteigende Reihenfolge A-Z, Absteigend für absteigende "
3966
  "Reihenfolge Z-A"
3967
 
3968
- #: core/class-settings.php:310
3969
  msgctxt "admin settings"
3970
  msgid "Enable sort bar?"
3971
  msgstr "Sortierung aktivieren?"
3972
 
3973
- #: core/class-settings.php:315
3974
  msgctxt "admin settings"
3975
  msgid "Sortbar Fields"
3976
  msgstr "Sortierbare Felder"
3977
 
3978
- #: core/class-settings.php:324
3979
  msgctxt "admin settings"
3980
  msgid "Featured (Sticky) listing settings"
3981
  msgstr "Unterstützte (unbewegliche) Eintrageinstellungen"
3982
 
3983
- #: core/class-settings.php:325
3984
  msgctxt "admin settings"
3985
  msgid "Offer sticky listings?"
3986
  msgstr "Unbewegliche Einträge anbieten? "
3987
 
3988
- #: core/class-settings.php:326
3989
  msgctxt "admin settings"
3990
  msgid "Offer upgrades during submit process?"
3991
  msgstr "Aktualisierungen anbieten im Bestellprozess?"
3992
 
3993
- #: core/class-settings.php:327
3994
  msgctxt "admin settings"
3995
  msgid "Sticky listing price"
3996
  msgstr "Unbeweglicher Eintragspreis"
3997
 
3998
- #: core/class-settings.php:328
3999
  msgctxt "admin settings"
4000
  msgid "Sticky listing page description text"
4001
  msgstr "Unbewegliche Eintragsseite Beschreibung"
4002
 
4003
- #: core/class-settings.php:329
4004
  msgctxt "admin settings"
4005
  msgid ""
4006
  "You can upgrade your listing to featured status. Featured listings will "
@@ -4009,17 +4027,17 @@ msgstr ""
4009
  "Du kannst dein Eintrag in den hervorgehobenen Status aktualisieren. "
4010
  "Unterstützte Einträge werden immer ganz oben eines Eintrags angezeigt."
4011
 
4012
- #: core/class-settings.php:334
4013
  msgctxt "admin settings"
4014
  msgid "E-Mail"
4015
  msgstr "E-mail"
4016
 
4017
- #: core/class-settings.php:338
4018
  msgctxt "admin settings"
4019
  msgid "Display email address fields publicly?"
4020
  msgstr "E-mail Adressfeld öffentlich anzeigen?"
4021
 
4022
- #: core/class-settings.php:341
4023
  msgctxt "admin settings"
4024
  msgid ""
4025
  "Shows the email address of the listing owner to all web users. NOT "
@@ -4028,12 +4046,12 @@ msgid ""
4028
  msgstr ""
4029
  "E-mailadresse allen Benutzern anzeigen. NICHT ZU EMPFEHLEN. Achtung Spam!"
4030
 
4031
- #: core/class-settings.php:344
4032
  msgctxt "admin settings"
4033
  msgid "How to determine the listing's email address?"
4034
  msgstr "Wie legt man die E-mailadresse für einen Eintrag fest?"
4035
 
4036
- #: core/class-settings.php:347
4037
  msgctxt "admin settings"
4038
  msgid ""
4039
  "This affects emails sent to listing owners via contact forms or when their "
@@ -4042,125 +4060,125 @@ msgstr ""
4042
  "Dies bewirkt, dass eine E-mail an den Eigentümer geschickt wird, wenn der "
4043
  "Eintrag abläuft."
4044
 
4045
- #: core/class-settings.php:349
4046
  msgctxt "admin settings"
4047
  msgid "Try listing's email field first, then author's email."
4048
  msgstr ""
4049
 
4050
- #: core/class-settings.php:350
4051
  msgctxt "admin settings"
4052
  msgid "Try author's email first and then listing's email field."
4053
  msgstr ""
4054
 
4055
- #: core/class-settings.php:354
4056
  msgctxt "admin settings"
4057
  msgid "E-Mail Notifications"
4058
  msgstr "Email Erinnerung"
4059
 
4060
- #: core/class-settings.php:357
4061
  msgctxt "admin settings"
4062
  msgid "Notify admin via e-mail when..."
4063
  msgstr "Administrator per E-mail informieren wenn... "
4064
 
4065
- #: core/class-settings.php:361
4066
  msgctxt "admin settings"
4067
  msgid "A new listing is submitted."
4068
  msgstr "Ein neuer Eintrag wurde eingestellt."
4069
 
4070
- #: core/class-settings.php:362
4071
  msgctxt "admin settings"
4072
  msgid "A listing is edited."
4073
  msgstr "Ein Eintrag wurde bearbeitet."
4074
 
4075
- #: core/class-settings.php:363
4076
  msgctxt "admin settings"
4077
  msgid "A listing expires."
4078
  msgstr "Ein Eintrag ist abgelaufen."
4079
 
4080
- #: core/class-settings.php:364
4081
  msgctxt "admin settings"
4082
  msgid "A contact message is sent to a listing's owner."
4083
  msgstr "Eine Nachricht wurde an den Eigentümer verschickt."
4084
 
4085
- #: core/class-settings.php:370
4086
  msgctxt "admin settings"
4087
  msgid "CC this e-mail address too"
4088
  msgstr "CC diese E-mail an"
4089
 
4090
- #: core/class-settings.php:376
4091
  msgctxt "admin settings"
4092
  msgid "Notify users via e-mail when..."
4093
  msgstr "Benachrichtige Benutzer per E-mail wenn..."
4094
 
4095
- #: core/class-settings.php:379
4096
  msgctxt "admin settings"
4097
  msgid "You can modify the text template used for most of these e-mails below."
4098
  msgstr ""
4099
  "Du kannst dieses Texttemplate verändern, das für die meisten der E-"
4100
  "mailadressen unten verwendet wird."
4101
 
4102
- #: core/class-settings.php:380
4103
  msgctxt "admin settings"
4104
  msgid "Their listing is submitted."
4105
  msgstr "Ihr Eintrag ist eingereicht."
4106
 
4107
- #: core/class-settings.php:381
4108
  msgctxt "admin settings"
4109
  msgid "Their listing is approved/published."
4110
  msgstr "Ihr Eintrag ist genehmigt/veröffentlicht."
4111
 
4112
- #: core/class-settings.php:390
4113
  msgctxt "contact email"
4114
  msgid "You have received a reply from your listing at %s."
4115
  msgstr "Sie haben eine Antwort auf Ihren Eintrag erhalten am %s."
4116
 
4117
- #: core/class-settings.php:391
4118
  msgctxt "contact email"
4119
  msgid "Name: %s"
4120
  msgstr "Name: %s"
4121
 
4122
- #: core/class-settings.php:392
4123
  msgctxt "contact email"
4124
  msgid "E-Mail: %s"
4125
  msgstr "E-mail: %s"
4126
 
4127
- #: core/class-settings.php:393
4128
  msgctxt "contact email"
4129
  msgid "Message:"
4130
  msgstr "Nachricht:"
4131
 
4132
- #: core/class-settings.php:395
4133
  msgctxt "contact email"
4134
  msgid "Time: %s"
4135
  msgstr "Zeit: %s"
4136
 
4137
- #: core/class-settings.php:397
4138
  msgctxt "admin settings"
4139
  msgid "E-Mail Templates"
4140
  msgstr "E-mail Templates"
4141
 
4142
- #: core/class-settings.php:400
4143
  msgctxt "admin settings"
4144
  msgid "Email confirmation message"
4145
  msgstr "Email Bestätigungsnachricht"
4146
 
4147
- #: core/class-settings.php:404
4148
  msgctxt "admin settings"
4149
  msgid "Sent after a listing has been submitted."
4150
  msgstr "Senden nachdem der Eintrag eingestellt wurde."
4151
 
4152
- #: core/class-settings.php:405 core/class-settings.php:413
4153
- #: core/class-settings.php:454
4154
  msgctxt "admin settings"
4155
  msgid "Listing's title"
4156
  msgstr "Eintrag Titel"
4157
 
4158
- #: core/class-settings.php:408
4159
  msgctxt "admin settings"
4160
  msgid "Listing published message"
4161
  msgstr "Eintrag veröffentlicht Nachricht"
4162
 
4163
- #: core/class-settings.php:411
4164
  msgctxt "admin settings"
4165
  msgid ""
4166
  "Your listing \"[listing]\" is now available at [listing-url] and can be "
@@ -4169,24 +4187,24 @@ msgstr ""
4169
  "Dein Eintrag \"[listing]\" ist jetzt verfügbar unter [listing-url] und "
4170
  "kann öffentlich eingesehen werden."
4171
 
4172
- #: core/class-settings.php:412
4173
  msgctxt "admin settings"
4174
  msgid "Sent when the listing has been published or approved by an admin."
4175
  msgstr ""
4176
  "Senden wenn der Eintrag vom Administrator genehmigt oder veröffentlicht "
4177
  "wurde."
4178
 
4179
- #: core/class-settings.php:414
4180
  msgctxt "admin settings"
4181
  msgid "Listing's URL"
4182
  msgstr "Eintrags URL"
4183
 
4184
- #: core/class-settings.php:418
4185
  msgctxt "admin settings"
4186
  msgid "Listing Contact Message"
4187
  msgstr "Eintrag Kontakt Nachricht"
4188
 
4189
- #: core/class-settings.php:422
4190
  msgctxt "admin settings"
4191
  msgid ""
4192
  "Sent to listing owners when someone uses the contact form on their listing "
@@ -4195,35 +4213,35 @@ msgstr ""
4195
  "An den Eigentümer senden wenn jemand die Kontaktform auf Ihrer Eintragsseite "
4196
  "verwendet."
4197
 
4198
- #: core/class-settings.php:432
4199
  #, fuzzy
4200
  msgctxt "admin settings"
4201
  msgid "Payment related"
4202
  msgstr "Bezahlmethode"
4203
 
4204
- #: core/class-settings.php:449
4205
  #, fuzzy
4206
  msgctxt "admin settings"
4207
  msgid "Payment abandoned reminder message"
4208
  msgstr "Erneuerungserinnerung E-mail Nachricht"
4209
 
4210
- #: core/class-settings.php:453
4211
  msgctxt "admin settings"
4212
  msgid "Sent some time after a pending payment is abandoned by users."
4213
  msgstr ""
4214
 
4215
- #: core/class-settings.php:455
4216
  #, fuzzy
4217
  msgctxt "admin settings"
4218
  msgid "Checkout URL link"
4219
  msgstr "Kasse"
4220
 
4221
- #: core/class-settings.php:461
4222
  msgctxt "admin settings"
4223
  msgid "Renewal Reminders"
4224
  msgstr "Erneuerungserinnerung"
4225
 
4226
- #: core/class-settings.php:464
4227
  msgctxt "admin settings"
4228
  msgid ""
4229
  "This section refers only to the text of the renewal/expiration notices. You "
@@ -4233,12 +4251,12 @@ msgstr ""
4233
  "Nachricht. Du kannst auch <a>konfigurieren wann die E-mails gesendet werden</"
4234
  "a>"
4235
 
4236
- #: core/class-settings.php:468
4237
  msgctxt "admin settings"
4238
  msgid "Pending expiration e-mail message"
4239
  msgstr "Ausstehende Abgelaufen E-mail Nachricht"
4240
 
4241
- #: core/class-settings.php:472
4242
  msgctxt "settings"
4243
  msgid ""
4244
  "Sent some time before the listing expires. Applies to non-recurring renewals "
@@ -4247,50 +4265,50 @@ msgstr ""
4247
  "Einige Zeit bevor der Eintrag abläuft senden. Wird nur bei kostenlosen "
4248
  "Erneuerungen verwendet."
4249
 
4250
- #: core/class-settings.php:473 core/class-settings.php:486
4251
- #: core/class-settings.php:499 core/class-settings.php:512
4252
- #: core/class-settings.php:525
4253
  msgctxt "settings"
4254
  msgid "Listing's name (with link)"
4255
  msgstr "Eintragsname (mit Link)"
4256
 
4257
- #: core/class-settings.php:474 core/class-settings.php:487
4258
- #: core/class-settings.php:500 core/class-settings.php:513
4259
- #: core/class-settings.php:526
4260
  msgctxt "settings"
4261
  msgid "Author's name"
4262
  msgstr "Authorname"
4263
 
4264
- #: core/class-settings.php:475 core/class-settings.php:488
4265
- #: core/class-settings.php:527
4266
  msgctxt "settings"
4267
  msgid "Expiration date"
4268
  msgstr "Ablaufdatum"
4269
 
4270
- #: core/class-settings.php:476
4271
  msgctxt "settings"
4272
  msgid "Category that is going to expire"
4273
  msgstr "Kategorie die bald abläuft"
4274
 
4275
- #: core/class-settings.php:477 core/class-settings.php:490
4276
- #: core/class-settings.php:529
4277
  msgctxt "settings"
4278
  msgid "Link to renewal page"
4279
  msgstr "Link zu erneuerten Seite"
4280
 
4281
- #: core/class-settings.php:478 core/class-settings.php:491
4282
- #: core/class-settings.php:503 core/class-settings.php:516
4283
- #: core/class-settings.php:530
4284
  msgctxt "settings"
4285
  msgid "Link to your site"
4286
  msgstr "Link zu deiner Seite"
4287
 
4288
- #: core/class-settings.php:481
4289
  msgctxt "admin settings"
4290
  msgid "Listing Renewal e-mail message"
4291
  msgstr "Eintrag Erneuerung E-mail Nachricht"
4292
 
4293
- #: core/class-settings.php:485
4294
  msgctxt "settings"
4295
  msgid ""
4296
  "Sent at the time of listing expiration. Applies to non-recurring renewals "
@@ -4299,17 +4317,17 @@ msgstr ""
4299
  "Zur Zeit wenn der Eintrag abläuft senden. Wird nur bei kostenlosen "
4300
  "Erneuerungen verwendet."
4301
 
4302
- #: core/class-settings.php:489 core/class-settings.php:528
4303
  msgctxt "settings"
4304
  msgid "Category that expired"
4305
  msgstr "Ablaufende Kategorie"
4306
 
4307
- #: core/class-settings.php:494
4308
  msgctxt "admin settings"
4309
  msgid "Listing auto-renewal reminder (recurring payments)"
4310
  msgstr "Eintrag automatische Erneuerungserinnerung (Abbuchungen)"
4311
 
4312
- #: core/class-settings.php:498
4313
  msgctxt "settings"
4314
  msgid ""
4315
  "Sent some time before the listing is auto-renewed. Applies to recurring "
@@ -4318,27 +4336,27 @@ msgstr ""
4318
  "Einige Zeit bevor der Eintrag abläuft senden. Wird nur bei bezahlten "
4319
  "Erneuerungen verwendet."
4320
 
4321
- #: core/class-settings.php:501 core/class-settings.php:515
4322
  msgctxt "settings"
4323
  msgid "Renewal date"
4324
  msgstr "Erneuerungsdatum"
4325
 
4326
- #: core/class-settings.php:502
4327
  msgctxt "settings"
4328
  msgid "Category that is going to be renewed"
4329
  msgstr "Kategorie die erneuert werden soll"
4330
 
4331
- #: core/class-settings.php:504
4332
  msgctxt "settings"
4333
  msgid "Link to manage subscriptions"
4334
  msgstr "Link um Abos zu verwalten"
4335
 
4336
- #: core/class-settings.php:507
4337
  msgctxt "admin settings"
4338
  msgid "Listing Renewal e-mail message (recurring payments)"
4339
  msgstr "Eintragserneuerungs E-mail Nachricht (Abbuchungen)"
4340
 
4341
- #: core/class-settings.php:511
4342
  msgctxt "settings"
4343
  msgid ""
4344
  "Sent after the listing is auto-renewed. Applies to recurring renewals only."
@@ -4346,17 +4364,17 @@ msgstr ""
4346
  "Sende nachdem der Eintrag automatisch erneuert wurde. Wird nur bei bezahlten "
4347
  "Erneuerungen verwendet."
4348
 
4349
- #: core/class-settings.php:514
4350
  msgctxt "settings"
4351
  msgid "Renewed category"
4352
  msgstr "Erneuerte Kategorie"
4353
 
4354
- #: core/class-settings.php:520
4355
  msgctxt "admin settings"
4356
  msgid "Renewal reminder e-mail message"
4357
  msgstr "Erneuerungserinnerung E-mail Nachricht"
4358
 
4359
- #: core/class-settings.php:524
4360
  msgctxt "settings"
4361
  msgid ""
4362
  "Sent some time after listing expiration and when no renewal has occurred. "
@@ -4365,33 +4383,33 @@ msgstr ""
4365
  "Einige Zeit nachdem der Eintrag abgelaufen und keine Erneuerung beauftragt "
4366
  "wurde senden. Wird bei bezahlten und kostenlosen Erneuerungen verwendet."
4367
 
4368
- #: core/class-settings.php:534
4369
  msgctxt "admin settings"
4370
  msgid "Payment"
4371
  msgstr "Bezahlung"
4372
 
4373
- #: core/class-settings.php:535
4374
  msgctxt "admin settings"
4375
  msgid "Payment Settings"
4376
  msgstr "Bezahlung Einstellungen"
4377
 
4378
- #: core/class-settings.php:538
4379
  msgctxt "admin settings"
4380
  msgid "Turn On payments?"
4381
  msgstr "Bezahlungen aktivieren?"
4382
 
4383
- #: core/class-settings.php:540
4384
  msgctxt "admin settings"
4385
  msgid "Put payment gateways in test mode?"
4386
  msgstr "Bezahlungsgateway im Testmodus ausführen?"
4387
 
4388
- #: core/class-settings.php:545
4389
  msgctxt "admin settings"
4390
  msgid "Perform checkouts on the secure (HTTPS) version of your site?"
4391
  msgstr ""
4392
  "Aktiviere (HTTPS) sichere Verbindung für den Bestellprozess deiner Seite?"
4393
 
4394
- #: core/class-settings.php:548
4395
  msgctxt "admin settings"
4396
  msgid ""
4397
  "Recommended for added security. For this to work you need to enable HTTPS on "
@@ -4400,167 +4418,167 @@ msgstr ""
4400
  "Empfohlen zur Erweiterung der Sicherheit. Aktiviere HTTPS auf deinem Server "
4401
  "und <a>erhalte ein SSL Zertifikat</a>"
4402
 
4403
- #: core/class-settings.php:552
4404
  msgctxt "admin settings"
4405
  msgid "Currency Code"
4406
  msgstr "Währungsschlüssel"
4407
 
4408
- #: core/class-settings.php:554
4409
  msgctxt "admin settings"
4410
  msgid "Australian Dollar (AUD)"
4411
  msgstr "Australischer Dollar (AUD)"
4412
 
4413
- #: core/class-settings.php:555
4414
  msgctxt "admin settings"
4415
  msgid "Brazilian Real (BRL)"
4416
  msgstr "Brasilianischer Real (BRL)"
4417
 
4418
- #: core/class-settings.php:556
4419
  msgctxt "admin settings"
4420
  msgid "Canadian Dollar (CAD)"
4421
  msgstr "Kanadischer Dollar (CAD)"
4422
 
4423
- #: core/class-settings.php:557
4424
  msgctxt "admin settings"
4425
  msgid "Czech Koruna (CZK)"
4426
  msgstr "Tschechische Koruna (CZK)"
4427
 
4428
- #: core/class-settings.php:558
4429
  msgctxt "admin settings"
4430
  msgid "Danish Krone (DKK)"
4431
  msgstr "Dänische Krone (DKK)"
4432
 
4433
- #: core/class-settings.php:559
4434
  msgctxt "admin settings"
4435
  msgid "Euro (EUR)"
4436
  msgstr "Euro (EUR)"
4437
 
4438
- #: core/class-settings.php:560
4439
  msgctxt "admin settings"
4440
  msgid "Hong Kong Dollar (HKD)"
4441
  msgstr "Hong Kong Dollar (HKD)"
4442
 
4443
- #: core/class-settings.php:561
4444
  msgctxt "admin settings"
4445
  msgid "Hungarian Forint (HUF)"
4446
  msgstr "Ungarischer Forint (HUF)"
4447
 
4448
- #: core/class-settings.php:562
4449
  msgctxt "admin settings"
4450
  msgid "Israeli New Shequel (ILS)"
4451
  msgstr "Israelischer Neuer Schequel (ILS)"
4452
 
4453
- #: core/class-settings.php:563
4454
  msgctxt "admin settings"
4455
  msgid "Japanese Yen (JPY)"
4456
  msgstr "Japanischer Jen (JPY)"
4457
 
4458
- #: core/class-settings.php:564
4459
  msgctxt "admin settings"
4460
  msgid "Malasian Ringgit (MYR)"
4461
  msgstr "Malaysischer Ringgit (MYR)"
4462
 
4463
- #: core/class-settings.php:565
4464
  msgctxt "admin settings"
4465
  msgid "Mexican Peso (MXN)"
4466
  msgstr "Mexikanischer Peso (MXN)"
4467
 
4468
- #: core/class-settings.php:566
4469
  msgctxt "admin settings"
4470
  msgid "Norwegian Krone (NOK)"
4471
  msgstr "Norwegische Krone (NOK)"
4472
 
4473
- #: core/class-settings.php:567
4474
  msgctxt "admin settings"
4475
  msgid "New Zealand Dollar (NZD)"
4476
  msgstr "Neuseeland Dollar (NZD)"
4477
 
4478
- #: core/class-settings.php:568
4479
  msgctxt "admin settings"
4480
  msgid "Philippine Peso (PHP)"
4481
  msgstr "Philippinischer Peso (PHP)"
4482
 
4483
- #: core/class-settings.php:569
4484
  msgctxt "admin settings"
4485
  msgid "Polish Zloty (PLN)"
4486
  msgstr "Polnischer Zloty (PLN)"
4487
 
4488
- #: core/class-settings.php:570
4489
  msgctxt "admin settings"
4490
  msgid "Pound Sterling (GBP)"
4491
  msgstr "Pfund Sterling (GBP)"
4492
 
4493
- #: core/class-settings.php:571
4494
  msgctxt "admin settings"
4495
  msgid "Singapore Dollar (SGD)"
4496
  msgstr "Singapore Dollar (SGD)"
4497
 
4498
- #: core/class-settings.php:572
4499
  msgctxt "admin settings"
4500
  msgid "Swedish Krona (SEK)"
4501
  msgstr "Schwedische Krone (SEK)"
4502
 
4503
- #: core/class-settings.php:573
4504
  msgctxt "admin settings"
4505
  msgid "Swiss Franc (CHF)"
4506
  msgstr "Schweizer Franken (CHF)"
4507
 
4508
- #: core/class-settings.php:574
4509
  msgctxt "admin settings"
4510
  msgid "Taiwan Dollar (TWD)"
4511
  msgstr "Taiwanischer Dollar (TWD)"
4512
 
4513
- #: core/class-settings.php:575
4514
  msgctxt "admin settings"
4515
  msgid "Thai Baht (THB)"
4516
  msgstr "Thailändischer Baht (THB)"
4517
 
4518
- #: core/class-settings.php:576
4519
  msgctxt "admin settings"
4520
  msgid "Turkish Lira (TRY)"
4521
  msgstr "Türkische Lira (TRY)"
4522
 
4523
- #: core/class-settings.php:577
4524
  #, fuzzy
4525
  msgctxt "admin settings"
4526
  msgid "U.S. Dollar (USD)"
4527
  msgstr "U.S. Dollar"
4528
 
4529
- #: core/class-settings.php:581
4530
  msgctxt "admin settings"
4531
  msgid "Currency Symbol"
4532
  msgstr "Währungssymbol"
4533
 
4534
- #: core/class-settings.php:586
4535
  #, fuzzy
4536
  msgctxt "admin settings"
4537
  msgid "Currency symbol display"
4538
  msgstr "Währungssymbol"
4539
 
4540
- #: core/class-settings.php:590
4541
  #, fuzzy
4542
  msgctxt "admin settings"
4543
  msgid "Show currency symbol on the left"
4544
  msgstr "Währungssymbol"
4545
 
4546
- #: core/class-settings.php:591
4547
  #, fuzzy
4548
  msgctxt "admin settings"
4549
  msgid "Show currency symbol on the right"
4550
  msgstr "Währungssymbol"
4551
 
4552
- #: core/class-settings.php:592
4553
  #, fuzzy
4554
  msgctxt "admin settings"
4555
  msgid "Do not show currency symbol"
4556
  msgstr "Währungssymbol"
4557
 
4558
- #: core/class-settings.php:594
4559
  msgctxt "admin settings"
4560
  msgid "Thank you for payment message"
4561
  msgstr "Danke für die Bezahlung Nachricht"
4562
 
4563
- #: core/class-settings.php:595
4564
  msgctxt "admin settings"
4565
  msgid ""
4566
  "Thank you for your payment. Your payment is being verified and your listing "
@@ -4570,12 +4588,12 @@ msgstr ""
4570
  "geprüft. Die Verifizierung und die Prüfung können 48 Stunden in Anspruch "
4571
  "nehmen."
4572
 
4573
- #: core/class-settings.php:600
4574
  msgctxt "admin settings"
4575
  msgid "Ask users to come back for abandoned payments?"
4576
  msgstr ""
4577
 
4578
- #: core/class-settings.php:603
4579
  msgctxt "admin settings"
4580
  msgid ""
4581
  "An abandoned payment is when a user attempts to place a listing and gets to "
@@ -4584,50 +4602,50 @@ msgid ""
4584
  "the transaction. BD can remind them to come back and continue."
4585
  msgstr ""
4586
 
4587
- #: core/class-settings.php:609
4588
  #, fuzzy
4589
  msgctxt "admin settings"
4590
  msgid "Listing abandonment threshold (hours)"
4591
  msgstr "Eintragsabbuchungsemail Grenze (in tagen)"
4592
 
4593
- #: core/class-settings.php:614
4594
  msgctxt "admin settings"
4595
  msgid ""
4596
  "Listings with pending payments are marked as abandoned after this time. You "
4597
  "can also <a>customize the e-mail</a> users receive."
4598
  msgstr ""
4599
 
4600
- #: core/class-settings.php:619
4601
  msgctxt "admin settings"
4602
  msgid "Themes"
4603
  msgstr ""
4604
 
4605
- #: core/class-settings.php:621
4606
  msgctxt "admin settings"
4607
  msgid "You can manage your themes on <a>Directory Themes</a>."
4608
  msgstr ""
4609
 
4610
- #: core/class-settings.php:626
4611
  msgctxt "admin settings"
4612
  msgid "Theme button style"
4613
  msgstr ""
4614
 
4615
- #: core/class-settings.php:630
4616
  msgctxt "admin settings"
4617
  msgid "Use the BD theme style for BD buttons"
4618
  msgstr ""
4619
 
4620
- #: core/class-settings.php:631
4621
  msgctxt "admin settings"
4622
  msgid "Use the WP theme style for BD buttons"
4623
  msgstr ""
4624
 
4625
- #: core/class-settings.php:638
4626
  msgctxt "admin settings"
4627
  msgid "Image"
4628
  msgstr "Bild"
4629
 
4630
- #: core/class-settings.php:639
4631
  msgctxt "admin settings"
4632
  msgid ""
4633
  "Any changes to these settings will affect new listings only. Existing "
@@ -4640,57 +4658,57 @@ msgstr ""
4640
  "existierende Einträge verändert werden, musst du Bild(er) neu hochladen, "
4641
  "nachdem Einstellungen hier verändert wurden."
4642
 
4643
- #: core/class-settings.php:640
4644
  msgctxt "admin settings"
4645
  msgid "Image Settings"
4646
  msgstr "Bildeinstellungen"
4647
 
4648
- #: core/class-settings.php:641
4649
  msgctxt "admin settings"
4650
  msgid "Allow images?"
4651
  msgstr "Bilder erlauben?"
4652
 
4653
- #: core/class-settings.php:643
4654
  #, fuzzy
4655
  msgctxt "admin settings"
4656
  msgid "Min Image File Size (KB)"
4657
  msgstr "Maximale Bildgröße (KB)"
4658
 
4659
- #: core/class-settings.php:644
4660
  msgctxt "admin settings"
4661
  msgid "Max Image File Size (KB)"
4662
  msgstr "Maximale Bildgröße (KB)"
4663
 
4664
- #: core/class-settings.php:646
4665
  #, fuzzy
4666
  msgctxt "admin settings"
4667
  msgid "Min image width (px)"
4668
  msgstr "Bildergröße (in px):"
4669
 
4670
- #: core/class-settings.php:647
4671
  #, fuzzy
4672
  msgctxt "admin settings"
4673
  msgid "Min image height (px)"
4674
  msgstr "Bilderhöhe (in px):"
4675
 
4676
- #: core/class-settings.php:649
4677
  #, fuzzy
4678
  msgctxt "admin settings"
4679
  msgid "Max image width (px)"
4680
  msgstr "Maximale Bildbreite"
4681
 
4682
- #: core/class-settings.php:650
4683
  #, fuzzy
4684
  msgctxt "admin settings"
4685
  msgid "Max image height (px)"
4686
  msgstr "Maximale Bildhöhe"
4687
 
4688
- #: core/class-settings.php:652
4689
  msgctxt "admin settings"
4690
  msgid "Turn on thickbox/lightbox?"
4691
  msgstr "Kontrollkästchen/Leuchtkasten aktivieren?"
4692
 
4693
- #: core/class-settings.php:652
4694
  msgctxt "admin settings"
4695
  msgid ""
4696
  "Uncheck if it conflicts with other elements or plugins installed on your site"
@@ -4698,30 +4716,30 @@ msgstr ""
4698
  "Deaktivieren wenn Konflikte mit anderen Elementen oder installierten "
4699
  "Erweiterungen entstehen"
4700
 
4701
- #: core/class-settings.php:654
4702
  #, fuzzy
4703
  msgctxt "admin settings"
4704
  msgid "Thumbnails"
4705
  msgstr "Thumbnails"
4706
 
4707
- #: core/class-settings.php:655
4708
  #, fuzzy
4709
  msgctxt "admin settings"
4710
  msgid "Thumbnail width (px)"
4711
  msgstr "Thumbnailbreite"
4712
 
4713
- #: core/class-settings.php:656
4714
  #, fuzzy
4715
  msgctxt "admin settings"
4716
  msgid "Thumbnail height (px)"
4717
  msgstr "Thumbnailbreite"
4718
 
4719
- #: core/class-settings.php:659
4720
  msgctxt "admin settings"
4721
  msgid "Crop thumbnails to exact dimensions?"
4722
  msgstr ""
4723
 
4724
- #: core/class-settings.php:662
4725
  msgctxt "admin settings"
4726
  msgid ""
4727
  "When enabled images will match exactly the dimensions above but part of the "
@@ -4730,12 +4748,12 @@ msgid ""
4730
  "Depending on the uploaded images, thumbnails may have different heights."
4731
  msgstr ""
4732
 
4733
- #: core/class-settings.php:668
4734
  msgctxt "admin settings"
4735
  msgid "Number of free images"
4736
  msgstr "Nummer der freien Bilder"
4737
 
4738
- #: core/class-settings.php:673
4739
  msgctxt "admin settings"
4740
  msgid ""
4741
  "For paid listing images, configure that by adding or editing a <a>Fee Plan</"
@@ -4745,139 +4763,139 @@ msgstr ""
4745
  "erstellen eines <a>Preisplan</a> an Stelle dieser Einstellungen, die von "
4746
  "bezahlten Einträgen ignoriert wird."
4747
 
4748
- #: core/class-settings.php:676
4749
  msgctxt "admin settings"
4750
  msgid "Use default picture for listings with no picture?"
4751
  msgstr "Benutze Standardbilder für Einträge mit keinem Bild?"
4752
 
4753
- #: core/class-settings.php:677
4754
  msgctxt "admin settings"
4755
  msgid "Show Thumbnail on main listings page?"
4756
  msgstr "Thumbnail auf der Eintragshauptseite anzeigen?"
4757
 
4758
- #: core/class-settings.php:706
4759
  msgctxt "admin settings"
4760
  msgid "User"
4761
  msgstr ""
4762
 
4763
- #: core/class-settings.php:707
4764
  #, fuzzy
4765
  msgctxt "admin settings"
4766
  msgid "User registration date"
4767
  msgstr "Eintrag Enddatum"
4768
 
4769
- #: core/class-settings.php:733
4770
  msgctxt "admin settings"
4771
  msgid ""
4772
  "Could not copy the AJAX compatibility plugin \"%s\". Compatibility mode was "
4773
  "not activated."
4774
  msgstr ""
4775
 
4776
- #: core/class-settings.php:741
4777
  msgctxt "admin settings"
4778
  msgid ""
4779
  "Could not activate AJAX Compatibility mode: the directory \"%s\" could not "
4780
  "be created."
4781
  msgstr ""
4782
 
4783
- #: core/class-settings.php:750
4784
  msgctxt "admin settings"
4785
  msgid ""
4786
  "Could not remove the \"Business Directory Plugin - AJAX Compatibility Module"
4787
  "\". Please remove the file \"%s\" manually or deactivate the plugin."
4788
  msgstr ""
4789
 
4790
- #: core/class-settings.php:1070
4791
  msgctxt "settings"
4792
  msgid "Deactivate License"
4793
  msgstr "Lizenz Deaktivieren"
4794
 
4795
- #: core/class-settings.php:1072
4796
  msgctxt "settings"
4797
  msgid "Deactivating license..."
4798
  msgstr "Deaktiviere Lizenz..."
4799
 
4800
- #: core/class-settings.php:1075
4801
  msgctxt "settings"
4802
  msgid "Activate License"
4803
  msgstr "Aktiviere Lizenz"
4804
 
4805
- #: core/class-settings.php:1077
4806
  msgctxt "settings"
4807
  msgid "Activating license..."
4808
  msgstr "Aktiviere Lizenz..."
4809
 
4810
- #: core/class-settings.php:1100
4811
  msgctxt "admin settings"
4812
  msgid "Valid placeholders: %s"
4813
  msgstr "Gültige Platzhalter: %s"
4814
 
4815
- #: core/class-settings.php:1134
4816
  msgctxt "settings email"
4817
  msgid "Click to edit e-mail"
4818
  msgstr "Klicken um E-mail zu bearbeiten"
4819
 
4820
- #: core/class-settings.php:1135
4821
  msgctxt "settings email"
4822
  msgid "Click to edit"
4823
  msgstr "zum Bearbeiten klicken"
4824
 
4825
- #: core/class-settings.php:1148
4826
  msgctxt "settings email"
4827
  msgid "E-Mail Subject"
4828
  msgstr "E-mail Betreff"
4829
 
4830
- #: core/class-settings.php:1159
4831
  msgctxt "settings email"
4832
  msgid "E-Mail Body"
4833
  msgstr "E-mail Text"
4834
 
4835
- #: core/class-settings.php:1170
4836
  msgctxt "settings email"
4837
  msgid "You can use the following placeholders:"
4838
  msgstr "Du kannst folgende Platzhalter verwenden:"
4839
 
4840
- #: core/class-settings.php:1193
4841
  msgctxt "settings email"
4842
  msgid "Preview e-mail"
4843
  msgstr "Vorschau E-mail"
4844
 
4845
- #: core/class-settings.php:1194
4846
  msgctxt "settings email"
4847
  msgid "Cancel"
4848
  msgstr "Abbrechen"
4849
 
4850
- #: core/class-settings.php:1195
4851
  msgctxt "settings email"
4852
  msgid "Save Changes"
4853
  msgstr "Änderungen sichern"
4854
 
4855
- #: core/class-settings.php:1214
4856
  msgctxt "settings email"
4857
  msgid "Site title"
4858
  msgstr "Seitentitel"
4859
 
4860
- #: core/class-settings.php:1217
4861
  msgctxt "settings email"
4862
  msgid "Site title (with link)"
4863
  msgstr "Seitentitel (mit Link)"
4864
 
4865
- #: core/class-settings.php:1220
4866
  msgctxt "settings email"
4867
  msgid "Site address (with link)"
4868
  msgstr "Seitenadresse (mit Link)"
4869
 
4870
- #: core/class-settings.php:1223
4871
  msgctxt "settings email"
4872
  msgid "Directory URL (with link)"
4873
  msgstr "Verzeichnis URL (mit Link)"
4874
 
4875
- #: core/class-settings.php:1226
4876
  msgctxt "settings email"
4877
  msgid "Current date"
4878
  msgstr "Aktuelles Datum"
4879
 
4880
- #: core/class-settings.php:1229
4881
  msgctxt "settings email"
4882
  msgid "Current time"
4883
  msgstr "Aktuelle Zeit"
@@ -5545,11 +5563,18 @@ msgctxt "installer"
5545
  msgid "Listing upgrade to featured"
5546
  msgstr "Eintrag aktualisieren auf Hervorhebung"
5547
 
5548
- #: core/installer.php:957
 
 
 
 
 
 
 
5549
  msgid "Business Directory - Manual Upgrade Required"
5550
  msgstr "Branchenverzeichnis - Manuelle Aktualisierung erforderlich"
5551
 
5552
- #: core/installer.php:959
5553
  msgid ""
5554
  "Business Directory features are currently disabled because the plugin needs "
5555
  "to perform a manual upgrade before continuing."
@@ -5557,15 +5582,15 @@ msgstr ""
5557
  "Branchenverzeichnis Hervorhebungen sind aktuell deaktiviert, weil das Modul "
5558
  "manuell aktualisiert werden muss, bevor weiter hervorgehoben werden kann."
5559
 
5560
- #: core/installer.php:961
5561
  msgid "Perform Manual Upgrade"
5562
  msgstr "Manuelle Aktualisierung durchführen"
5563
 
5564
- #: core/installer.php:977 core/installer.php:978 core/installer.php:989
5565
  msgid "Business Directory - Manual Upgrade"
5566
  msgstr "Branchenverzeichnis - Manuelle Aktualisierung"
5567
 
5568
- #: core/installer.php:993
5569
  msgid ""
5570
  "Business Directory features are currently disabled because the plugin needs "
5571
  "to perform a manual upgrade before it can be used."
@@ -5573,22 +5598,22 @@ msgstr ""
5573
  "Branchenverzeichnis Hervorhebungen sind momentan deaktiviert weil das Modul "
5574
  "manuell aktualisiert werden muss, bevor es weiter verwendet werden kann."
5575
 
5576
- #: core/installer.php:995
5577
  msgid "Click \"Start Upgrade\" and wait until the process finishes."
5578
  msgstr ""
5579
  "Klicke \"Starte Aktualisierung\" und warte bis der Vorgang beendet wurde."
5580
 
5581
- #: core/installer.php:998
5582
  msgctxt "manual-upgrade"
5583
  msgid "Start Upgrade"
5584
  msgstr "Starte Aktualisierung"
5585
 
5586
- #: core/installer.php:1000
5587
  msgctxt "manual-upgrade"
5588
  msgid "Pause Upgrade"
5589
  msgstr "Aktualisierung pausieren"
5590
 
5591
- #: core/installer.php:1006
5592
  msgctxt "manual-upgrade"
5593
  msgid ""
5594
  "The upgrade was sucessfully performed. Business Directory Plugin is now "
@@ -5597,23 +5622,23 @@ msgstr ""
5597
  "Die Aktualisierung wurde erfolgreich durchgeführt. Branchenverzeichnis "
5598
  "Erweiterung ist nun verfügbar."
5599
 
5600
- #: core/installer.php:1009
5601
  msgctxt "manual-upgrade"
5602
  msgid "Go to \"Directory Admin\""
5603
  msgstr "Nach \" Verzeichnis Administration\""
5604
 
5605
- #: core/installer.php:1044
5606
  #, fuzzy
5607
  msgid "Business Directory - Installation Failed"
5608
  msgstr "Branchenverzeichnis - Manuelle Aktualisierung"
5609
 
5610
- #: core/installer.php:1046
5611
  msgid ""
5612
  "Business Directory installation failed. An exception with following message "
5613
  "was generated:"
5614
  msgstr ""
5615
 
5616
- #: core/installer.php:1051
5617
  msgid "Please <contact-link>contact customer support</a>."
5618
  msgstr ""
5619
 
@@ -5894,41 +5919,41 @@ msgctxt "templates"
5894
  msgid "No listing categories found."
5895
  msgstr "Keine Eintragskategorie gefunden."
5896
 
5897
- #: core/templates-ui.php:193
5898
  msgid "Directory"
5899
  msgstr "Verzeichnis"
5900
 
5901
- #: core/templates-ui.php:199
5902
  #, fuzzy
5903
  msgid "View All Listings"
5904
  msgstr "Alle Einträge anschauen"
5905
 
5906
- #: core/templates-ui.php:205
5907
  #, fuzzy
5908
  msgid "Create A Listing"
5909
  msgstr "kostenloser Eintrag"
5910
 
5911
- #: core/templates-ui.php:232
5912
  msgctxt "templates"
5913
  msgid "Search Listings"
5914
  msgstr "Eintrag suchen"
5915
 
5916
- #: core/templates-ui.php:235
5917
  msgctxt "templates"
5918
  msgid "Advanced Search"
5919
  msgstr "Erweiterte Suche"
5920
 
5921
- #: core/templates-ui.php:264 core/templates-ui.php:289
5922
  msgctxt "templates sort"
5923
  msgid "Sort By:"
5924
  msgstr "Sortieren nach"
5925
 
5926
- #: core/templates-ui.php:283
5927
  msgctxt "sort"
5928
  msgid "Reset"
5929
  msgstr "Zurücksetzen"
5930
 
5931
- #: core/templates-ui.php:305
5932
  #, fuzzy
5933
  msgctxt "sort"
5934
  msgid "(Reset)"
@@ -7315,6 +7340,14 @@ msgstr "D. Rodenbaugh"
7315
  msgid "http://businessdirectoryplugin.com"
7316
  msgstr "http://businessdirectoryplugin.com"
7317
 
 
 
 
 
 
 
 
 
7318
  #~ msgctxt "title"
7319
  #~ msgid "Submit A Listing"
7320
  #~ msgstr "Eintrag zusenden"
4
  msgstr ""
5
  "Project-Id-Version: Business Directory Plugin 3.5.4\n"
6
  "Report-Msgid-Bugs-To: http://wordpress.org/tag/business-directory-plugin\n"
7
+ "POT-Creation-Date: 2016-12-13 23:11:33+00:00\n"
8
  "PO-Revision-Date: 2016-01-21 08:45-0500\n"
9
  "Last-Translator: BD Team <support@businessdirectoryplugin.com>\n"
10
  "Language-Team: Business Directory Plugin <support@businessdirectoryplugin."
1000
  msgid "Field deleted."
1001
  msgstr "Feld gelöscht."
1002
 
1003
+ #: admin/form-fields.php:277
1004
  msgctxt "form-fields admin"
1005
  msgid "Required fields created successfully."
1006
  msgstr "Benötigtes Feld wurde erfolgreich erstellt."
1007
 
1008
+ #: admin/form-fields.php:290
1009
  #, fuzzy
1010
  msgctxt "form-fields admin"
1011
  msgid "Title"
1012
  msgstr "Titel"
1013
 
1014
+ #: admin/form-fields.php:291
1015
  #, fuzzy
1016
  msgctxt "form-fields admin"
1017
  msgid "Category"
1018
  msgstr "Kategorien"
1019
 
1020
+ #: admin/form-fields.php:292
1021
  #, fuzzy
1022
  msgctxt "form-fields admin"
1023
  msgid "Excerpt"
1024
  msgstr "Im Textauszug"
1025
 
1026
+ #: admin/form-fields.php:293
1027
  #, fuzzy
1028
  msgctxt "form-fields admin"
1029
  msgid "Content"
1030
  msgstr "Post Inhalt"
1031
 
1032
+ #: admin/form-fields.php:294
1033
  #, fuzzy
1034
  msgctxt "form-fields admin"
1035
  msgid "Tags"
1036
  msgstr "Tags Entwurf"
1037
 
1038
+ #: admin/form-fields.php:295
1039
  #, fuzzy
1040
  msgctxt "form-fields admin"
1041
  msgid "Address"
1042
  msgstr "E-mail Adresse:"
1043
 
1044
+ #: admin/form-fields.php:296
1045
  msgctxt "form-fields admin"
1046
  msgid "City"
1047
  msgstr ""
1048
 
1049
+ #: admin/form-fields.php:297
1050
  #, fuzzy
1051
  msgctxt "form-fields admin"
1052
  msgid "State"
1053
  msgstr "Status"
1054
 
1055
+ #: admin/form-fields.php:298
1056
  msgctxt "form-fields admin"
1057
  msgid "ZIP Code"
1058
  msgstr ""
1059
 
1060
+ #: admin/form-fields.php:299
1061
  #, fuzzy
1062
  msgctxt "form-fields admin"
1063
  msgid "FAX Number"
1064
  msgstr "Telefonnummer geschäftlich"
1065
 
1066
+ #: admin/form-fields.php:300
1067
  #, fuzzy
1068
  msgctxt "form-fields admin"
1069
  msgid "Phone Number"
1070
  msgstr "Telefonnummer geschäftlich"
1071
 
1072
+ #: admin/form-fields.php:301
1073
  #, fuzzy
1074
  msgctxt "form-fields admin"
1075
  msgid "Ratings Field"
1076
  msgstr "Eintrag Felder"
1077
 
1078
+ #: admin/form-fields.php:302
1079
  msgctxt "form-fields admin"
1080
  msgid "Twitter"
1081
  msgstr ""
1082
 
1083
+ #: admin/form-fields.php:303
1084
  msgctxt "form-fields admin"
1085
  msgid "Website"
1086
  msgstr ""
1087
 
1088
+ #: admin/form-fields.php:324
1089
  #, fuzzy
1090
  msgctxt "form-fields admin"
1091
  msgid "Tags updated."
2243
  msgid "Please see the <a>Form Fields documentation</a> for more details."
2244
  msgstr ""
2245
 
2246
+ #. #-#-#-#-# WPBDM.pot (Business Directory Plugin 4.1.6) #-#-#-#-#
2247
  #. Plugin Name of the plugin/theme
2248
  #: admin/templates/header.tpl.php:4
2249
  msgid "Business Directory Plugin"
3036
  msgid "Allow Tracking"
3037
  msgstr "Verfolgung erlauben"
3038
 
3039
+ #: business-directory-plugin.php:668
3040
  msgctxt "admin plugins"
3041
  msgid "Settings"
3042
  msgstr "Einstellungen"
3043
 
3044
+ #: business-directory-plugin.php:776 business-directory-plugin.php:783
3045
  msgctxt "rss feed"
3046
  msgid "%s Feed"
3047
  msgstr "% Feed"
3048
 
3049
+ #: business-directory-plugin.php:1137 core/view-submit-listing.php:58
3050
  #: core/views/submit_listing.php:10
3051
  #, fuzzy
3052
  msgctxt "views"
3053
  msgid "Submit A Listing"
3054
  msgstr "Eintrag zusenden"
3055
 
3056
+ #: business-directory-plugin.php:1142
3057
  msgctxt "title"
3058
  msgid "Find a Listing"
3059
  msgstr "Eintrag finden"
3060
 
3061
+ #: business-directory-plugin.php:1147
3062
  msgctxt "title"
3063
  msgid "View All Listings"
3064
  msgstr "Alle Einträge anschauen"
3065
 
3066
+ #: business-directory-plugin.php:1176
3067
  msgctxt "title"
3068
  msgid "Listings tagged: %s"
3069
  msgstr "Einträge getaggt: %s"
3132
  msgid "Invalid form field type"
3133
  msgstr "Ungültige Formfeldtyp"
3134
 
3135
+ #: core/class-form-field.php:505
3136
  msgctxt "form-fields-api"
3137
  msgid "Field label is required."
3138
  msgstr "Feldbezeichnung ist Pflichtfeld."
3139
 
3140
+ #: core/class-form-field.php:515
3141
  msgctxt "form-fields-api"
3142
  msgid "Requested field type change is incompatible. Type will not be modified."
3143
  msgstr ""
3144
 
3145
+ #: core/class-form-field.php:535
3146
  msgctxt "form-fields-api"
3147
  msgid ""
3148
  "There can only be one field with association \"%s\". Please select another "
3151
  "Es kann nur ein Feld mit \"%s\" verbunden werden. Bitte wähle eine andere "
3152
  "Verbindung."
3153
 
3154
+ #: core/class-form-field.php:545
3155
  msgctxt "form-fields-api"
3156
  msgid "\"%s\" is an invalid field type for this association."
3157
  msgstr "\"%s\" ist ein ungültiger Feldtyp für diese Verbindung."
3158
 
3159
+ #: core/class-form-field.php:583
3160
  msgctxt "form-fields-api"
3161
  msgid "Invalid field ID"
3162
  msgstr "Ungültige Feld ID"
3163
 
3164
+ #: core/class-form-field.php:592
3165
  msgctxt "form-fields api"
3166
  msgid ""
3167
  "This form field can't be deleted because it is required for the plugin to "
3170
  "Dieses Formfeld kann nicht gelöscht werden, weil es ein Pflichtfeld ist, "
3171
  "damit das Modul richtig funktioniert."
3172
 
3173
+ #: core/class-form-field.php:604
3174
  msgctxt "form-fields-api"
3175
  msgid "An error occurred while trying to delete this field."
3176
  msgstr "Während der Löschung des Feldes ist ein Fehler aufgetreten."
3238
  msgid "(Fee Unavailable)"
3239
  msgstr "(Preis nicht verfügbar)"
3240
 
3241
+ #: core/class-listings-api.php:310
3242
  msgctxt "notify email"
3243
  msgid "[%s] New listing notification"
3244
  msgstr "[%s] neue Eintragsbenachrichtigung"
3245
 
3246
+ #: core/class-listings-api.php:329
3247
  msgctxt "notify email"
3248
  msgid "[%s] Listing edit notification"
3249
  msgstr "[%s] Eintrag bearbeiten Benachrichtigung"
3623
  msgid "Enable AJAX compatibility mode?"
3624
  msgstr ""
3625
 
3626
+ #: core/class-settings.php:181 core/class-settings.php:679
3627
  msgctxt "admin settings"
3628
  msgid "Listings"
3629
  msgstr "Einträge"
3630
 
3631
+ #: core/class-settings.php:182 core/class-settings.php:349
3632
+ #: core/class-settings.php:636
3633
  msgctxt "admin settings"
3634
  msgid "General Settings"
3635
  msgstr "Allgemeine Einstellungen"
3700
  "Benutze dieses Feld um spamming von Einträgen zu vermeiden. 0 heisst "
3701
  "unbegrenzt pro Tag."
3702
 
3703
+ #: core/class-settings.php:222
3704
  msgctxt "admin settings"
3705
  msgid "Include comment form on listing pages?"
3706
  msgstr "Kommentarform einfügen in Eintragsseiten?"
3707
 
3708
+ #: core/class-settings.php:225
3709
  msgctxt "admin settings"
3710
  msgid ""
3711
+ "BD uses the standard comment inclusion from WordPress, but most themes only "
3712
+ "allow for comments on posts, not pages. Some themes handle both. BD is "
3713
+ "displayed on a page, so we need a theme that can handle both to show "
3714
+ "comments. Use the 2nd option if you want to allow comments on listings "
3715
+ "first, and if that doesn't work, try the 3rd option instead."
3716
  msgstr ""
 
 
3717
 
3718
+ #: core/class-settings.php:228
3719
+ #, fuzzy
3720
+ msgctxt "admin settings"
3721
+ msgid "Do not include comments in listings"
3722
+ msgstr "Kommentarform einfügen in Eintragsseiten?"
3723
+
3724
+ #: core/class-settings.php:229
3725
+ #, fuzzy
3726
+ msgctxt "admin settings"
3727
+ msgid "Include comment form, theme invoked (standard option)"
3728
+ msgstr "Kommentarform einfügen in Eintragsseiten?"
3729
+
3730
+ #: core/class-settings.php:230
3731
+ msgctxt "admin settings"
3732
+ msgid "Include comment form, BD invoked (use only if 2nd option doesn't work)"
3733
+ msgstr ""
3734
+
3735
+ #: core/class-settings.php:238
3736
  msgctxt "admin settings"
3737
  msgid "Show listings under categories on main page?"
3738
  msgstr "Einträge unter Kategorien anzeigen auf der Hauptseite?"
3739
 
3740
+ #: core/class-settings.php:239
3741
  msgctxt "admin settings"
3742
  msgid "Status of listings upon uninstalling plugin"
3743
  msgstr "Status der Einträge bei Deinstallation der Erweiterung"
3744
 
3745
+ #: core/class-settings.php:240 core/class-settings.php:242
3746
  msgctxt "post status"
3747
  msgid "Draft"
3748
  msgstr ""
3749
 
3750
+ #: core/class-settings.php:240 core/class-settings.php:242
3751
  msgctxt "post status"
3752
  msgid "Trash"
3753
  msgstr ""
3754
 
3755
+ #: core/class-settings.php:241
3756
  msgctxt "admin settings"
3757
  msgid "Status of deleted listings"
3758
  msgstr "Status der gelöschten Einträge"
3759
 
3760
+ #: core/class-settings.php:243
3761
  #, fuzzy
3762
  msgctxt "admin settings"
3763
  msgid "Submit Listing instructions message"
3764
  msgstr "Eintrag Kontakt Nachricht"
3765
 
3766
+ #: core/class-settings.php:243
3767
  msgctxt "admin settings"
3768
  msgid ""
3769
  "This text is displayed at the first page of the Submit Listing process for "
3771
  "form or anything you want to tell users before they get started."
3772
  msgstr ""
3773
 
3774
+ #: core/class-settings.php:245
3775
  msgctxt "admin settings"
3776
  msgid "Listing Renewal"
3777
  msgstr "Einträge erneuern"
3778
 
3779
+ #: core/class-settings.php:246
3780
  msgctxt "admin settings"
3781
  msgid "Turn on listing renewal option?"
3782
  msgstr "Option zur Erneuerung von Einträgen aktivieren?"
3783
 
3784
+ #: core/class-settings.php:249
3785
  msgctxt "admin settings"
3786
  msgid "Allow recurring renewal payments?"
3787
  msgstr "Wiederholte Bezahlung erlauben?"
3788
 
3789
+ #: core/class-settings.php:252
3790
  msgctxt "admin settings"
3791
  msgid ""
3792
  "Allow users to opt in for automatic renewal of their listings. The fee is "
3796
  "anzumelden. Der Preis wird abgebucht, zu dem Zeitpunkt an dem der Eintrag "
3797
  "abläuft, ohne Eingriff durch den Benutzer."
3798
 
3799
+ #: core/class-settings.php:256
3800
  msgctxt "admin settings"
3801
  msgid "Use recurring payments as the default payment method?"
3802
  msgstr "Benutze automatische Abbuchungen als Standardbezahlmethode?"
3803
 
3804
+ #: core/class-settings.php:259
3805
  msgctxt "admin settings"
3806
  msgid ""
3807
  "Enable automatic renewal without having users opt in during the submit "
3810
  "Automatische Abbuchung aktivieren, ohne die Anmeldung durch den Benutzer "
3811
  "während der Einreichung."
3812
 
3813
+ #: core/class-settings.php:264
3814
  msgctxt "admin settings"
3815
  msgid "Listing renewal e-mail threshold (in days)"
3816
  msgstr "Eintragsabbuchungsemail Grenze (in tagen)"
3817
 
3818
+ #: core/class-settings.php:267
3819
  msgctxt "admin settings"
3820
  msgid ""
3821
  "Configure how many days before listing expiration is the renewal e-mail sent."
3823
  "Konfiguriere wieviel Tage vor der Abbuchung eine Buchungsmail verschickt "
3824
  "wird."
3825
 
3826
+ #: core/class-settings.php:271
3827
  msgctxt "admin settings"
3828
  msgid ""
3829
  "Send expiration notices including a cancel links to auto-renewed listings?"
3831
  "Sende eine Ablaufinformation die einen Beenden und einen Automatisch Eintrag "
3832
  "Erneuern Link enghält?"
3833
 
3834
+ #: core/class-settings.php:278
3835
  msgctxt "admin settings"
3836
  msgid "Remind listing owners of expired listings (past due)?"
3837
  msgstr "Eintraginhaber an abgelaufene Einträge erinnern (überfällig)?"
3838
 
3839
+ #: core/class-settings.php:283
3840
  msgctxt "admin settings"
3841
  msgid "Listing renewal reminder e-mail threshold (in days)"
3842
  msgstr "Einträge erneuern E-mail Grenze (in Tagen)"
3843
 
3844
+ #: core/class-settings.php:286
3845
  msgctxt "admin settings"
3846
  msgid ""
3847
  "Configure how many days after the expiration of a listing an e-mail reminder "
3850
  "Konfiguriere wie viele Tage nach dem Ablauf eines Eintrags eine E-mail an "
3851
  "den Inhaber versendet wird."
3852
 
3853
+ #: core/class-settings.php:289
3854
  msgctxt "admin settings"
3855
  msgid "Post/Category Settings"
3856
  msgstr "Post/Kategorie Einstellungen"
3857
 
3858
+ #: core/class-settings.php:290
3859
  msgctxt "admin settings"
3860
  msgid "Default new post status"
3861
  msgstr "Standard neuer Post Status"
3862
 
3863
+ #: core/class-settings.php:291 core/class-settings.php:294
3864
  msgctxt "post status"
3865
  msgid "Published"
3866
  msgstr ""
3867
 
3868
+ #: core/class-settings.php:291 core/class-settings.php:294
3869
  #, fuzzy
3870
  msgctxt "post status"
3871
  msgid "Pending"
3872
  msgstr "Ausstehend"
3873
 
3874
+ #: core/class-settings.php:293
3875
  msgctxt "admin settings"
3876
  msgid "Edit post status"
3877
  msgstr "Post Status Bearbeiten"
3878
 
3879
+ #: core/class-settings.php:295
3880
  msgctxt "admin settings"
3881
  msgid "Order categories list by"
3882
  msgstr "Anordnung Kategorieliste durch"
3883
 
3884
+ #: core/class-settings.php:297
3885
  msgctxt "admin settings"
3886
  msgid "Name"
3887
  msgstr "Name"
3888
 
3889
+ #: core/class-settings.php:298
3890
  msgctxt "admin settings"
3891
  msgid "Slug"
3892
  msgstr "Entwurf"
3893
 
3894
+ #: core/class-settings.php:299
3895
  msgctxt "admin settings"
3896
  msgid "Listing Count"
3897
  msgstr "Anzahl Einträge"
3898
 
3899
+ #: core/class-settings.php:301
3900
  msgctxt "admin settings"
3901
  msgid "Sort order for categories"
3902
  msgstr "Sortierung für Kategorien"
3903
 
3904
+ #: core/class-settings.php:302 core/class-settings.php:320
3905
  msgctxt "admin settings"
3906
  msgid "Ascending"
3907
  msgstr "Aufsteigend"
3908
 
3909
+ #: core/class-settings.php:302 core/class-settings.php:320
3910
  msgctxt "admin settings"
3911
  msgid "Descending"
3912
  msgstr "Absteigend"
3913
 
3914
+ #: core/class-settings.php:303
3915
  msgctxt "admin settings"
3916
  msgid "Show category post count?"
3917
  msgstr "Kategoriepost Anzahl anzeigen?"
3918
 
3919
+ #: core/class-settings.php:304
3920
  msgctxt "admin settings"
3921
  msgid "Hide empty categories?"
3922
  msgstr "Leere Kategorien verbergen?"
3923
 
3924
+ #: core/class-settings.php:305
3925
  msgctxt "admin settings"
3926
  msgid "Show only parent categories in category list?"
3927
  msgstr "Nur Elternkategorien in Kategorieliste anzeigen?"
3928
 
3929
+ #: core/class-settings.php:307
3930
  msgctxt "admin settings"
3931
  msgid "Listings Sorting"
3932
  msgstr "Sortierung Einträge"
3933
 
3934
+ #: core/class-settings.php:308
3935
  msgctxt "admin settings"
3936
  msgid "Order directory listings by"
3937
  msgstr "Anordnung Verzeichniseinträge durch"
3938
 
3939
+ #: core/class-settings.php:310
3940
  msgctxt "admin settings"
3941
  msgid "Title"
3942
  msgstr "Titel"
3943
 
3944
+ #: core/class-settings.php:311
3945
  msgctxt "admin settings"
3946
  msgid "Author"
3947
  msgstr "Author"
3948
 
3949
+ #: core/class-settings.php:312 core/class-settings.php:722
3950
  msgctxt "admin settings"
3951
  msgid "Date posted"
3952
  msgstr "Datum gepostet"
3953
 
3954
+ #: core/class-settings.php:313 core/class-settings.php:723
3955
  msgctxt "admin settings"
3956
  msgid "Date last modified"
3957
  msgstr "Datum zuletzt verändert"
3958
 
3959
+ #: core/class-settings.php:314
3960
  msgctxt "admin settings"
3961
  msgid "Random"
3962
  msgstr "Zufall"
3963
 
3964
+ #: core/class-settings.php:315
3965
  msgctxt "admin settings"
3966
  msgid "Paid first then free. Inside each group by date."
3967
  msgstr ""
3968
 
3969
+ #: core/class-settings.php:316
3970
  msgctxt "admin settings"
3971
  msgid "Paid first then free. Inside each group by title."
3972
  msgstr ""
3973
 
3974
+ #: core/class-settings.php:318
3975
  msgctxt "admin settings"
3976
  msgid "Sort directory listings by"
3977
  msgstr "Verzeichnissortierung der Einträge durch"
3978
 
3979
+ #: core/class-settings.php:319
3980
  msgctxt "admin settings"
3981
  msgid "Ascending for ascending order A-Z, Descending for descending order Z-A"
3982
  msgstr ""
3983
  "Aufsteigend für aufsteigende Reihenfolge A-Z, Absteigend für absteigende "
3984
  "Reihenfolge Z-A"
3985
 
3986
+ #: core/class-settings.php:324
3987
  msgctxt "admin settings"
3988
  msgid "Enable sort bar?"
3989
  msgstr "Sortierung aktivieren?"
3990
 
3991
+ #: core/class-settings.php:329
3992
  msgctxt "admin settings"
3993
  msgid "Sortbar Fields"
3994
  msgstr "Sortierbare Felder"
3995
 
3996
+ #: core/class-settings.php:338
3997
  msgctxt "admin settings"
3998
  msgid "Featured (Sticky) listing settings"
3999
  msgstr "Unterstützte (unbewegliche) Eintrageinstellungen"
4000
 
4001
+ #: core/class-settings.php:339
4002
  msgctxt "admin settings"
4003
  msgid "Offer sticky listings?"
4004
  msgstr "Unbewegliche Einträge anbieten? "
4005
 
4006
+ #: core/class-settings.php:340
4007
  msgctxt "admin settings"
4008
  msgid "Offer upgrades during submit process?"
4009
  msgstr "Aktualisierungen anbieten im Bestellprozess?"
4010
 
4011
+ #: core/class-settings.php:341
4012
  msgctxt "admin settings"
4013
  msgid "Sticky listing price"
4014
  msgstr "Unbeweglicher Eintragspreis"
4015
 
4016
+ #: core/class-settings.php:342
4017
  msgctxt "admin settings"
4018
  msgid "Sticky listing page description text"
4019
  msgstr "Unbewegliche Eintragsseite Beschreibung"
4020
 
4021
+ #: core/class-settings.php:343
4022
  msgctxt "admin settings"
4023
  msgid ""
4024
  "You can upgrade your listing to featured status. Featured listings will "
4027
  "Du kannst dein Eintrag in den hervorgehobenen Status aktualisieren. "
4028
  "Unterstützte Einträge werden immer ganz oben eines Eintrags angezeigt."
4029
 
4030
+ #: core/class-settings.php:348
4031
  msgctxt "admin settings"
4032
  msgid "E-Mail"
4033
  msgstr "E-mail"
4034
 
4035
+ #: core/class-settings.php:352
4036
  msgctxt "admin settings"
4037
  msgid "Display email address fields publicly?"
4038
  msgstr "E-mail Adressfeld öffentlich anzeigen?"
4039
 
4040
+ #: core/class-settings.php:355
4041
  msgctxt "admin settings"
4042
  msgid ""
4043
  "Shows the email address of the listing owner to all web users. NOT "
4046
  msgstr ""
4047
  "E-mailadresse allen Benutzern anzeigen. NICHT ZU EMPFEHLEN. Achtung Spam!"
4048
 
4049
+ #: core/class-settings.php:358
4050
  msgctxt "admin settings"
4051
  msgid "How to determine the listing's email address?"
4052
  msgstr "Wie legt man die E-mailadresse für einen Eintrag fest?"
4053
 
4054
+ #: core/class-settings.php:361
4055
  msgctxt "admin settings"
4056
  msgid ""
4057
  "This affects emails sent to listing owners via contact forms or when their "
4060
  "Dies bewirkt, dass eine E-mail an den Eigentümer geschickt wird, wenn der "
4061
  "Eintrag abläuft."
4062
 
4063
+ #: core/class-settings.php:363
4064
  msgctxt "admin settings"
4065
  msgid "Try listing's email field first, then author's email."
4066
  msgstr ""
4067
 
4068
+ #: core/class-settings.php:364
4069
  msgctxt "admin settings"
4070
  msgid "Try author's email first and then listing's email field."
4071
  msgstr ""
4072
 
4073
+ #: core/class-settings.php:368
4074
  msgctxt "admin settings"
4075
  msgid "E-Mail Notifications"
4076
  msgstr "Email Erinnerung"
4077
 
4078
+ #: core/class-settings.php:371
4079
  msgctxt "admin settings"
4080
  msgid "Notify admin via e-mail when..."
4081
  msgstr "Administrator per E-mail informieren wenn... "
4082
 
4083
+ #: core/class-settings.php:375
4084
  msgctxt "admin settings"
4085
  msgid "A new listing is submitted."
4086
  msgstr "Ein neuer Eintrag wurde eingestellt."
4087
 
4088
+ #: core/class-settings.php:376
4089
  msgctxt "admin settings"
4090
  msgid "A listing is edited."
4091
  msgstr "Ein Eintrag wurde bearbeitet."
4092
 
4093
+ #: core/class-settings.php:377
4094
  msgctxt "admin settings"
4095
  msgid "A listing expires."
4096
  msgstr "Ein Eintrag ist abgelaufen."
4097
 
4098
+ #: core/class-settings.php:378
4099
  msgctxt "admin settings"
4100
  msgid "A contact message is sent to a listing's owner."
4101
  msgstr "Eine Nachricht wurde an den Eigentümer verschickt."
4102
 
4103
+ #: core/class-settings.php:384
4104
  msgctxt "admin settings"
4105
  msgid "CC this e-mail address too"
4106
  msgstr "CC diese E-mail an"
4107
 
4108
+ #: core/class-settings.php:390
4109
  msgctxt "admin settings"
4110
  msgid "Notify users via e-mail when..."
4111
  msgstr "Benachrichtige Benutzer per E-mail wenn..."
4112
 
4113
+ #: core/class-settings.php:393
4114
  msgctxt "admin settings"
4115
  msgid "You can modify the text template used for most of these e-mails below."
4116
  msgstr ""
4117
  "Du kannst dieses Texttemplate verändern, das für die meisten der E-"
4118
  "mailadressen unten verwendet wird."
4119
 
4120
+ #: core/class-settings.php:394
4121
  msgctxt "admin settings"
4122
  msgid "Their listing is submitted."
4123
  msgstr "Ihr Eintrag ist eingereicht."
4124
 
4125
+ #: core/class-settings.php:395
4126
  msgctxt "admin settings"
4127
  msgid "Their listing is approved/published."
4128
  msgstr "Ihr Eintrag ist genehmigt/veröffentlicht."
4129
 
4130
+ #: core/class-settings.php:404
4131
  msgctxt "contact email"
4132
  msgid "You have received a reply from your listing at %s."
4133
  msgstr "Sie haben eine Antwort auf Ihren Eintrag erhalten am %s."
4134
 
4135
+ #: core/class-settings.php:405
4136
  msgctxt "contact email"
4137
  msgid "Name: %s"
4138
  msgstr "Name: %s"
4139
 
4140
+ #: core/class-settings.php:406
4141
  msgctxt "contact email"
4142
  msgid "E-Mail: %s"
4143
  msgstr "E-mail: %s"
4144
 
4145
+ #: core/class-settings.php:407
4146
  msgctxt "contact email"
4147
  msgid "Message:"
4148
  msgstr "Nachricht:"
4149
 
4150
+ #: core/class-settings.php:409
4151
  msgctxt "contact email"
4152
  msgid "Time: %s"
4153
  msgstr "Zeit: %s"
4154
 
4155
+ #: core/class-settings.php:411
4156
  msgctxt "admin settings"
4157
  msgid "E-Mail Templates"
4158
  msgstr "E-mail Templates"
4159
 
4160
+ #: core/class-settings.php:414
4161
  msgctxt "admin settings"
4162
  msgid "Email confirmation message"
4163
  msgstr "Email Bestätigungsnachricht"
4164
 
4165
+ #: core/class-settings.php:418
4166
  msgctxt "admin settings"
4167
  msgid "Sent after a listing has been submitted."
4168
  msgstr "Senden nachdem der Eintrag eingestellt wurde."
4169
 
4170
+ #: core/class-settings.php:419 core/class-settings.php:427
4171
+ #: core/class-settings.php:468
4172
  msgctxt "admin settings"
4173
  msgid "Listing's title"
4174
  msgstr "Eintrag Titel"
4175
 
4176
+ #: core/class-settings.php:422
4177
  msgctxt "admin settings"
4178
  msgid "Listing published message"
4179
  msgstr "Eintrag veröffentlicht Nachricht"
4180
 
4181
+ #: core/class-settings.php:425
4182
  msgctxt "admin settings"
4183
  msgid ""
4184
  "Your listing \"[listing]\" is now available at [listing-url] and can be "
4187
  "Dein Eintrag \"[listing]\" ist jetzt verfügbar unter [listing-url] und "
4188
  "kann öffentlich eingesehen werden."
4189
 
4190
+ #: core/class-settings.php:426
4191
  msgctxt "admin settings"
4192
  msgid "Sent when the listing has been published or approved by an admin."
4193
  msgstr ""
4194
  "Senden wenn der Eintrag vom Administrator genehmigt oder veröffentlicht "
4195
  "wurde."
4196
 
4197
+ #: core/class-settings.php:428
4198
  msgctxt "admin settings"
4199
  msgid "Listing's URL"
4200
  msgstr "Eintrags URL"
4201
 
4202
+ #: core/class-settings.php:432
4203
  msgctxt "admin settings"
4204
  msgid "Listing Contact Message"
4205
  msgstr "Eintrag Kontakt Nachricht"
4206
 
4207
+ #: core/class-settings.php:436
4208
  msgctxt "admin settings"
4209
  msgid ""
4210
  "Sent to listing owners when someone uses the contact form on their listing "
4213
  "An den Eigentümer senden wenn jemand die Kontaktform auf Ihrer Eintragsseite "
4214
  "verwendet."
4215
 
4216
+ #: core/class-settings.php:446
4217
  #, fuzzy
4218
  msgctxt "admin settings"
4219
  msgid "Payment related"
4220
  msgstr "Bezahlmethode"
4221
 
4222
+ #: core/class-settings.php:463
4223
  #, fuzzy
4224
  msgctxt "admin settings"
4225
  msgid "Payment abandoned reminder message"
4226
  msgstr "Erneuerungserinnerung E-mail Nachricht"
4227
 
4228
+ #: core/class-settings.php:467
4229
  msgctxt "admin settings"
4230
  msgid "Sent some time after a pending payment is abandoned by users."
4231
  msgstr ""
4232
 
4233
+ #: core/class-settings.php:469
4234
  #, fuzzy
4235
  msgctxt "admin settings"
4236
  msgid "Checkout URL link"
4237
  msgstr "Kasse"
4238
 
4239
+ #: core/class-settings.php:475
4240
  msgctxt "admin settings"
4241
  msgid "Renewal Reminders"
4242
  msgstr "Erneuerungserinnerung"
4243
 
4244
+ #: core/class-settings.php:478
4245
  msgctxt "admin settings"
4246
  msgid ""
4247
  "This section refers only to the text of the renewal/expiration notices. You "
4251
  "Nachricht. Du kannst auch <a>konfigurieren wann die E-mails gesendet werden</"
4252
  "a>"
4253
 
4254
+ #: core/class-settings.php:482
4255
  msgctxt "admin settings"
4256
  msgid "Pending expiration e-mail message"
4257
  msgstr "Ausstehende Abgelaufen E-mail Nachricht"
4258
 
4259
+ #: core/class-settings.php:486
4260
  msgctxt "settings"
4261
  msgid ""
4262
  "Sent some time before the listing expires. Applies to non-recurring renewals "
4265
  "Einige Zeit bevor der Eintrag abläuft senden. Wird nur bei kostenlosen "
4266
  "Erneuerungen verwendet."
4267
 
4268
+ #: core/class-settings.php:487 core/class-settings.php:500
4269
+ #: core/class-settings.php:513 core/class-settings.php:526
4270
+ #: core/class-settings.php:539
4271
  msgctxt "settings"
4272
  msgid "Listing's name (with link)"
4273
  msgstr "Eintragsname (mit Link)"
4274
 
4275
+ #: core/class-settings.php:488 core/class-settings.php:501
4276
+ #: core/class-settings.php:514 core/class-settings.php:527
4277
+ #: core/class-settings.php:540
4278
  msgctxt "settings"
4279
  msgid "Author's name"
4280
  msgstr "Authorname"
4281
 
4282
+ #: core/class-settings.php:489 core/class-settings.php:502
4283
+ #: core/class-settings.php:541
4284
  msgctxt "settings"
4285
  msgid "Expiration date"
4286
  msgstr "Ablaufdatum"
4287
 
4288
+ #: core/class-settings.php:490
4289
  msgctxt "settings"
4290
  msgid "Category that is going to expire"
4291
  msgstr "Kategorie die bald abläuft"
4292
 
4293
+ #: core/class-settings.php:491 core/class-settings.php:504
4294
+ #: core/class-settings.php:543
4295
  msgctxt "settings"
4296
  msgid "Link to renewal page"
4297
  msgstr "Link zu erneuerten Seite"
4298
 
4299
+ #: core/class-settings.php:492 core/class-settings.php:505
4300
+ #: core/class-settings.php:517 core/class-settings.php:530
4301
+ #: core/class-settings.php:544
4302
  msgctxt "settings"
4303
  msgid "Link to your site"
4304
  msgstr "Link zu deiner Seite"
4305
 
4306
+ #: core/class-settings.php:495
4307
  msgctxt "admin settings"
4308
  msgid "Listing Renewal e-mail message"
4309
  msgstr "Eintrag Erneuerung E-mail Nachricht"
4310
 
4311
+ #: core/class-settings.php:499
4312
  msgctxt "settings"
4313
  msgid ""
4314
  "Sent at the time of listing expiration. Applies to non-recurring renewals "
4317
  "Zur Zeit wenn der Eintrag abläuft senden. Wird nur bei kostenlosen "
4318
  "Erneuerungen verwendet."
4319
 
4320
+ #: core/class-settings.php:503 core/class-settings.php:542
4321
  msgctxt "settings"
4322
  msgid "Category that expired"
4323
  msgstr "Ablaufende Kategorie"
4324
 
4325
+ #: core/class-settings.php:508
4326
  msgctxt "admin settings"
4327
  msgid "Listing auto-renewal reminder (recurring payments)"
4328
  msgstr "Eintrag automatische Erneuerungserinnerung (Abbuchungen)"
4329
 
4330
+ #: core/class-settings.php:512
4331
  msgctxt "settings"
4332
  msgid ""
4333
  "Sent some time before the listing is auto-renewed. Applies to recurring "
4336
  "Einige Zeit bevor der Eintrag abläuft senden. Wird nur bei bezahlten "
4337
  "Erneuerungen verwendet."
4338
 
4339
+ #: core/class-settings.php:515 core/class-settings.php:529
4340
  msgctxt "settings"
4341
  msgid "Renewal date"
4342
  msgstr "Erneuerungsdatum"
4343
 
4344
+ #: core/class-settings.php:516
4345
  msgctxt "settings"
4346
  msgid "Category that is going to be renewed"
4347
  msgstr "Kategorie die erneuert werden soll"
4348
 
4349
+ #: core/class-settings.php:518
4350
  msgctxt "settings"
4351
  msgid "Link to manage subscriptions"
4352
  msgstr "Link um Abos zu verwalten"
4353
 
4354
+ #: core/class-settings.php:521
4355
  msgctxt "admin settings"
4356
  msgid "Listing Renewal e-mail message (recurring payments)"
4357
  msgstr "Eintragserneuerungs E-mail Nachricht (Abbuchungen)"
4358
 
4359
+ #: core/class-settings.php:525
4360
  msgctxt "settings"
4361
  msgid ""
4362
  "Sent after the listing is auto-renewed. Applies to recurring renewals only."
4364
  "Sende nachdem der Eintrag automatisch erneuert wurde. Wird nur bei bezahlten "
4365
  "Erneuerungen verwendet."
4366
 
4367
+ #: core/class-settings.php:528
4368
  msgctxt "settings"
4369
  msgid "Renewed category"
4370
  msgstr "Erneuerte Kategorie"
4371
 
4372
+ #: core/class-settings.php:534
4373
  msgctxt "admin settings"
4374
  msgid "Renewal reminder e-mail message"
4375
  msgstr "Erneuerungserinnerung E-mail Nachricht"
4376
 
4377
+ #: core/class-settings.php:538
4378
  msgctxt "settings"
4379
  msgid ""
4380
  "Sent some time after listing expiration and when no renewal has occurred. "
4383
  "Einige Zeit nachdem der Eintrag abgelaufen und keine Erneuerung beauftragt "
4384
  "wurde senden. Wird bei bezahlten und kostenlosen Erneuerungen verwendet."
4385
 
4386
+ #: core/class-settings.php:548
4387
  msgctxt "admin settings"
4388
  msgid "Payment"
4389
  msgstr "Bezahlung"
4390
 
4391
+ #: core/class-settings.php:549
4392
  msgctxt "admin settings"
4393
  msgid "Payment Settings"
4394
  msgstr "Bezahlung Einstellungen"
4395
 
4396
+ #: core/class-settings.php:552
4397
  msgctxt "admin settings"
4398
  msgid "Turn On payments?"
4399
  msgstr "Bezahlungen aktivieren?"
4400
 
4401
+ #: core/class-settings.php:554
4402
  msgctxt "admin settings"
4403
  msgid "Put payment gateways in test mode?"
4404
  msgstr "Bezahlungsgateway im Testmodus ausführen?"
4405
 
4406
+ #: core/class-settings.php:559
4407
  msgctxt "admin settings"
4408
  msgid "Perform checkouts on the secure (HTTPS) version of your site?"
4409
  msgstr ""
4410
  "Aktiviere (HTTPS) sichere Verbindung für den Bestellprozess deiner Seite?"
4411
 
4412
+ #: core/class-settings.php:562
4413
  msgctxt "admin settings"
4414
  msgid ""
4415
  "Recommended for added security. For this to work you need to enable HTTPS on "
4418
  "Empfohlen zur Erweiterung der Sicherheit. Aktiviere HTTPS auf deinem Server "
4419
  "und <a>erhalte ein SSL Zertifikat</a>"
4420
 
4421
+ #: core/class-settings.php:566
4422
  msgctxt "admin settings"
4423
  msgid "Currency Code"
4424
  msgstr "Währungsschlüssel"
4425
 
4426
+ #: core/class-settings.php:568
4427
  msgctxt "admin settings"
4428
  msgid "Australian Dollar (AUD)"
4429
  msgstr "Australischer Dollar (AUD)"
4430
 
4431
+ #: core/class-settings.php:569
4432
  msgctxt "admin settings"
4433
  msgid "Brazilian Real (BRL)"
4434
  msgstr "Brasilianischer Real (BRL)"
4435
 
4436
+ #: core/class-settings.php:570
4437
  msgctxt "admin settings"
4438
  msgid "Canadian Dollar (CAD)"
4439
  msgstr "Kanadischer Dollar (CAD)"
4440
 
4441
+ #: core/class-settings.php:571
4442
  msgctxt "admin settings"
4443
  msgid "Czech Koruna (CZK)"
4444
  msgstr "Tschechische Koruna (CZK)"
4445
 
4446
+ #: core/class-settings.php:572
4447
  msgctxt "admin settings"
4448
  msgid "Danish Krone (DKK)"
4449
  msgstr "Dänische Krone (DKK)"
4450
 
4451
+ #: core/class-settings.php:573
4452
  msgctxt "admin settings"
4453
  msgid "Euro (EUR)"
4454
  msgstr "Euro (EUR)"
4455
 
4456
+ #: core/class-settings.php:574
4457
  msgctxt "admin settings"
4458
  msgid "Hong Kong Dollar (HKD)"
4459
  msgstr "Hong Kong Dollar (HKD)"
4460
 
4461
+ #: core/class-settings.php:575
4462
  msgctxt "admin settings"
4463
  msgid "Hungarian Forint (HUF)"
4464
  msgstr "Ungarischer Forint (HUF)"
4465
 
4466
+ #: core/class-settings.php:576
4467
  msgctxt "admin settings"
4468
  msgid "Israeli New Shequel (ILS)"
4469
  msgstr "Israelischer Neuer Schequel (ILS)"
4470
 
4471
+ #: core/class-settings.php:577
4472
  msgctxt "admin settings"
4473
  msgid "Japanese Yen (JPY)"
4474
  msgstr "Japanischer Jen (JPY)"
4475
 
4476
+ #: core/class-settings.php:578
4477
  msgctxt "admin settings"
4478
  msgid "Malasian Ringgit (MYR)"
4479
  msgstr "Malaysischer Ringgit (MYR)"
4480
 
4481
+ #: core/class-settings.php:579
4482
  msgctxt "admin settings"
4483
  msgid "Mexican Peso (MXN)"
4484
  msgstr "Mexikanischer Peso (MXN)"
4485
 
4486
+ #: core/class-settings.php:580
4487
  msgctxt "admin settings"
4488
  msgid "Norwegian Krone (NOK)"
4489
  msgstr "Norwegische Krone (NOK)"
4490
 
4491
+ #: core/class-settings.php:581
4492
  msgctxt "admin settings"
4493
  msgid "New Zealand Dollar (NZD)"
4494
  msgstr "Neuseeland Dollar (NZD)"
4495
 
4496
+ #: core/class-settings.php:582
4497
  msgctxt "admin settings"
4498
  msgid "Philippine Peso (PHP)"
4499
  msgstr "Philippinischer Peso (PHP)"
4500
 
4501
+ #: core/class-settings.php:583
4502
  msgctxt "admin settings"
4503
  msgid "Polish Zloty (PLN)"
4504
  msgstr "Polnischer Zloty (PLN)"
4505
 
4506
+ #: core/class-settings.php:584
4507
  msgctxt "admin settings"
4508
  msgid "Pound Sterling (GBP)"
4509
  msgstr "Pfund Sterling (GBP)"
4510
 
4511
+ #: core/class-settings.php:585
4512
  msgctxt "admin settings"
4513
  msgid "Singapore Dollar (SGD)"
4514
  msgstr "Singapore Dollar (SGD)"
4515
 
4516
+ #: core/class-settings.php:586
4517
  msgctxt "admin settings"
4518
  msgid "Swedish Krona (SEK)"
4519
  msgstr "Schwedische Krone (SEK)"
4520
 
4521
+ #: core/class-settings.php:587
4522
  msgctxt "admin settings"
4523
  msgid "Swiss Franc (CHF)"
4524
  msgstr "Schweizer Franken (CHF)"
4525
 
4526
+ #: core/class-settings.php:588
4527
  msgctxt "admin settings"
4528
  msgid "Taiwan Dollar (TWD)"
4529
  msgstr "Taiwanischer Dollar (TWD)"
4530
 
4531
+ #: core/class-settings.php:589
4532
  msgctxt "admin settings"
4533
  msgid "Thai Baht (THB)"
4534
  msgstr "Thailändischer Baht (THB)"
4535
 
4536
+ #: core/class-settings.php:590
4537
  msgctxt "admin settings"
4538
  msgid "Turkish Lira (TRY)"
4539
  msgstr "Türkische Lira (TRY)"
4540
 
4541
+ #: core/class-settings.php:591
4542
  #, fuzzy
4543
  msgctxt "admin settings"
4544
  msgid "U.S. Dollar (USD)"
4545
  msgstr "U.S. Dollar"
4546
 
4547
+ #: core/class-settings.php:595
4548
  msgctxt "admin settings"
4549
  msgid "Currency Symbol"
4550
  msgstr "Währungssymbol"
4551
 
4552
+ #: core/class-settings.php:600
4553
  #, fuzzy
4554
  msgctxt "admin settings"
4555
  msgid "Currency symbol display"
4556
  msgstr "Währungssymbol"
4557
 
4558
+ #: core/class-settings.php:604
4559
  #, fuzzy
4560
  msgctxt "admin settings"
4561
  msgid "Show currency symbol on the left"
4562
  msgstr "Währungssymbol"
4563
 
4564
+ #: core/class-settings.php:605
4565
  #, fuzzy
4566
  msgctxt "admin settings"
4567
  msgid "Show currency symbol on the right"
4568
  msgstr "Währungssymbol"
4569
 
4570
+ #: core/class-settings.php:606
4571
  #, fuzzy
4572
  msgctxt "admin settings"
4573
  msgid "Do not show currency symbol"
4574
  msgstr "Währungssymbol"
4575
 
4576
+ #: core/class-settings.php:608
4577
  msgctxt "admin settings"
4578
  msgid "Thank you for payment message"
4579
  msgstr "Danke für die Bezahlung Nachricht"
4580
 
4581
+ #: core/class-settings.php:609
4582
  msgctxt "admin settings"
4583
  msgid ""
4584
  "Thank you for your payment. Your payment is being verified and your listing "
4588
  "geprüft. Die Verifizierung und die Prüfung können 48 Stunden in Anspruch "
4589
  "nehmen."
4590
 
4591
+ #: core/class-settings.php:614
4592
  msgctxt "admin settings"
4593
  msgid "Ask users to come back for abandoned payments?"
4594
  msgstr ""
4595
 
4596
+ #: core/class-settings.php:617
4597
  msgctxt "admin settings"
4598
  msgid ""
4599
  "An abandoned payment is when a user attempts to place a listing and gets to "
4602
  "the transaction. BD can remind them to come back and continue."
4603
  msgstr ""
4604
 
4605
+ #: core/class-settings.php:623
4606
  #, fuzzy
4607
  msgctxt "admin settings"
4608
  msgid "Listing abandonment threshold (hours)"
4609
  msgstr "Eintragsabbuchungsemail Grenze (in tagen)"
4610
 
4611
+ #: core/class-settings.php:628
4612
  msgctxt "admin settings"
4613
  msgid ""
4614
  "Listings with pending payments are marked as abandoned after this time. You "
4615
  "can also <a>customize the e-mail</a> users receive."
4616
  msgstr ""
4617
 
4618
+ #: core/class-settings.php:633
4619
  msgctxt "admin settings"
4620
  msgid "Themes"
4621
  msgstr ""
4622
 
4623
+ #: core/class-settings.php:635
4624
  msgctxt "admin settings"
4625
  msgid "You can manage your themes on <a>Directory Themes</a>."
4626
  msgstr ""
4627
 
4628
+ #: core/class-settings.php:640
4629
  msgctxt "admin settings"
4630
  msgid "Theme button style"
4631
  msgstr ""
4632
 
4633
+ #: core/class-settings.php:644
4634
  msgctxt "admin settings"
4635
  msgid "Use the BD theme style for BD buttons"
4636
  msgstr ""
4637
 
4638
+ #: core/class-settings.php:645
4639
  msgctxt "admin settings"
4640
  msgid "Use the WP theme style for BD buttons"
4641
  msgstr ""
4642
 
4643
+ #: core/class-settings.php:652
4644
  msgctxt "admin settings"
4645
  msgid "Image"
4646
  msgstr "Bild"
4647
 
4648
+ #: core/class-settings.php:653
4649
  msgctxt "admin settings"
4650
  msgid ""
4651
  "Any changes to these settings will affect new listings only. Existing "
4658
  "existierende Einträge verändert werden, musst du Bild(er) neu hochladen, "
4659
  "nachdem Einstellungen hier verändert wurden."
4660
 
4661
+ #: core/class-settings.php:654
4662
  msgctxt "admin settings"
4663
  msgid "Image Settings"
4664
  msgstr "Bildeinstellungen"
4665
 
4666
+ #: core/class-settings.php:655
4667
  msgctxt "admin settings"
4668
  msgid "Allow images?"
4669
  msgstr "Bilder erlauben?"
4670
 
4671
+ #: core/class-settings.php:657
4672
  #, fuzzy
4673
  msgctxt "admin settings"
4674
  msgid "Min Image File Size (KB)"
4675
  msgstr "Maximale Bildgröße (KB)"
4676
 
4677
+ #: core/class-settings.php:658
4678
  msgctxt "admin settings"
4679
  msgid "Max Image File Size (KB)"
4680
  msgstr "Maximale Bildgröße (KB)"
4681
 
4682
+ #: core/class-settings.php:660
4683
  #, fuzzy
4684
  msgctxt "admin settings"
4685
  msgid "Min image width (px)"
4686
  msgstr "Bildergröße (in px):"
4687
 
4688
+ #: core/class-settings.php:661
4689
  #, fuzzy
4690
  msgctxt "admin settings"
4691
  msgid "Min image height (px)"
4692
  msgstr "Bilderhöhe (in px):"
4693
 
4694
+ #: core/class-settings.php:663
4695
  #, fuzzy
4696
  msgctxt "admin settings"
4697
  msgid "Max image width (px)"
4698
  msgstr "Maximale Bildbreite"
4699
 
4700
+ #: core/class-settings.php:664
4701
  #, fuzzy
4702
  msgctxt "admin settings"
4703
  msgid "Max image height (px)"
4704
  msgstr "Maximale Bildhöhe"
4705
 
4706
+ #: core/class-settings.php:666
4707
  msgctxt "admin settings"
4708
  msgid "Turn on thickbox/lightbox?"
4709
  msgstr "Kontrollkästchen/Leuchtkasten aktivieren?"
4710
 
4711
+ #: core/class-settings.php:666
4712
  msgctxt "admin settings"
4713
  msgid ""
4714
  "Uncheck if it conflicts with other elements or plugins installed on your site"
4716
  "Deaktivieren wenn Konflikte mit anderen Elementen oder installierten "
4717
  "Erweiterungen entstehen"
4718
 
4719
+ #: core/class-settings.php:668
4720
  #, fuzzy
4721
  msgctxt "admin settings"
4722
  msgid "Thumbnails"
4723
  msgstr "Thumbnails"
4724
 
4725
+ #: core/class-settings.php:669
4726
  #, fuzzy
4727
  msgctxt "admin settings"
4728
  msgid "Thumbnail width (px)"
4729
  msgstr "Thumbnailbreite"
4730
 
4731
+ #: core/class-settings.php:670
4732
  #, fuzzy
4733
  msgctxt "admin settings"
4734
  msgid "Thumbnail height (px)"
4735
  msgstr "Thumbnailbreite"
4736
 
4737
+ #: core/class-settings.php:673
4738
  msgctxt "admin settings"
4739
  msgid "Crop thumbnails to exact dimensions?"
4740
  msgstr ""
4741
 
4742
+ #: core/class-settings.php:676
4743
  msgctxt "admin settings"
4744
  msgid ""
4745
  "When enabled images will match exactly the dimensions above but part of the "
4748
  "Depending on the uploaded images, thumbnails may have different heights."
4749
  msgstr ""
4750
 
4751
+ #: core/class-settings.php:682
4752
  msgctxt "admin settings"
4753
  msgid "Number of free images"
4754
  msgstr "Nummer der freien Bilder"
4755
 
4756
+ #: core/class-settings.php:687
4757
  msgctxt "admin settings"
4758
  msgid ""
4759
  "For paid listing images, configure that by adding or editing a <a>Fee Plan</"
4763
  "erstellen eines <a>Preisplan</a> an Stelle dieser Einstellungen, die von "
4764
  "bezahlten Einträgen ignoriert wird."
4765
 
4766
+ #: core/class-settings.php:690
4767
  msgctxt "admin settings"
4768
  msgid "Use default picture for listings with no picture?"
4769
  msgstr "Benutze Standardbilder für Einträge mit keinem Bild?"
4770
 
4771
+ #: core/class-settings.php:691
4772
  msgctxt "admin settings"
4773
  msgid "Show Thumbnail on main listings page?"
4774
  msgstr "Thumbnail auf der Eintragshauptseite anzeigen?"
4775
 
4776
+ #: core/class-settings.php:720
4777
  msgctxt "admin settings"
4778
  msgid "User"
4779
  msgstr ""
4780
 
4781
+ #: core/class-settings.php:721
4782
  #, fuzzy
4783
  msgctxt "admin settings"
4784
  msgid "User registration date"
4785
  msgstr "Eintrag Enddatum"
4786
 
4787
+ #: core/class-settings.php:747
4788
  msgctxt "admin settings"
4789
  msgid ""
4790
  "Could not copy the AJAX compatibility plugin \"%s\". Compatibility mode was "
4791
  "not activated."
4792
  msgstr ""
4793
 
4794
+ #: core/class-settings.php:755
4795
  msgctxt "admin settings"
4796
  msgid ""
4797
  "Could not activate AJAX Compatibility mode: the directory \"%s\" could not "
4798
  "be created."
4799
  msgstr ""
4800
 
4801
+ #: core/class-settings.php:764
4802
  msgctxt "admin settings"
4803
  msgid ""
4804
  "Could not remove the \"Business Directory Plugin - AJAX Compatibility Module"
4805
  "\". Please remove the file \"%s\" manually or deactivate the plugin."
4806
  msgstr ""
4807
 
4808
+ #: core/class-settings.php:1084
4809
  msgctxt "settings"
4810
  msgid "Deactivate License"
4811
  msgstr "Lizenz Deaktivieren"
4812
 
4813
+ #: core/class-settings.php:1086
4814
  msgctxt "settings"
4815
  msgid "Deactivating license..."
4816
  msgstr "Deaktiviere Lizenz..."
4817
 
4818
+ #: core/class-settings.php:1089
4819
  msgctxt "settings"
4820
  msgid "Activate License"
4821
  msgstr "Aktiviere Lizenz"
4822
 
4823
+ #: core/class-settings.php:1091
4824
  msgctxt "settings"
4825
  msgid "Activating license..."
4826
  msgstr "Aktiviere Lizenz..."
4827
 
4828
+ #: core/class-settings.php:1114
4829
  msgctxt "admin settings"
4830
  msgid "Valid placeholders: %s"
4831
  msgstr "Gültige Platzhalter: %s"
4832
 
4833
+ #: core/class-settings.php:1148
4834
  msgctxt "settings email"
4835
  msgid "Click to edit e-mail"
4836
  msgstr "Klicken um E-mail zu bearbeiten"
4837
 
4838
+ #: core/class-settings.php:1149
4839
  msgctxt "settings email"
4840
  msgid "Click to edit"
4841
  msgstr "zum Bearbeiten klicken"
4842
 
4843
+ #: core/class-settings.php:1162
4844
  msgctxt "settings email"
4845
  msgid "E-Mail Subject"
4846
  msgstr "E-mail Betreff"
4847
 
4848
+ #: core/class-settings.php:1173
4849
  msgctxt "settings email"
4850
  msgid "E-Mail Body"
4851
  msgstr "E-mail Text"
4852
 
4853
+ #: core/class-settings.php:1184
4854
  msgctxt "settings email"
4855
  msgid "You can use the following placeholders:"
4856
  msgstr "Du kannst folgende Platzhalter verwenden:"
4857
 
4858
+ #: core/class-settings.php:1207
4859
  msgctxt "settings email"
4860
  msgid "Preview e-mail"
4861
  msgstr "Vorschau E-mail"
4862
 
4863
+ #: core/class-settings.php:1208
4864
  msgctxt "settings email"
4865
  msgid "Cancel"
4866
  msgstr "Abbrechen"
4867
 
4868
+ #: core/class-settings.php:1209
4869
  msgctxt "settings email"
4870
  msgid "Save Changes"
4871
  msgstr "Änderungen sichern"
4872
 
4873
+ #: core/class-settings.php:1228
4874
  msgctxt "settings email"
4875
  msgid "Site title"
4876
  msgstr "Seitentitel"
4877
 
4878
+ #: core/class-settings.php:1231
4879
  msgctxt "settings email"
4880
  msgid "Site title (with link)"
4881
  msgstr "Seitentitel (mit Link)"
4882
 
4883
+ #: core/class-settings.php:1234
4884
  msgctxt "settings email"
4885
  msgid "Site address (with link)"
4886
  msgstr "Seitenadresse (mit Link)"
4887
 
4888
+ #: core/class-settings.php:1237
4889
  msgctxt "settings email"
4890
  msgid "Directory URL (with link)"
4891
  msgstr "Verzeichnis URL (mit Link)"
4892
 
4893
+ #: core/class-settings.php:1240
4894
  msgctxt "settings email"
4895
  msgid "Current date"
4896
  msgstr "Aktuelles Datum"
4897
 
4898
+ #: core/class-settings.php:1243
4899
  msgctxt "settings email"
4900
  msgid "Current time"
4901
  msgstr "Aktuelle Zeit"
5563
  msgid "Listing upgrade to featured"
5564
  msgstr "Eintrag aktualisieren auf Hervorhebung"
5565
 
5566
+ #: core/installer.php:1012
5567
+ msgctxt "installer"
5568
+ msgid ""
5569
+ "Cleaning up stored meta data for Checkbox, Radio and Select fields... (%d "
5570
+ "records left)"
5571
+ msgstr ""
5572
+
5573
+ #: core/installer.php:1061
5574
  msgid "Business Directory - Manual Upgrade Required"
5575
  msgstr "Branchenverzeichnis - Manuelle Aktualisierung erforderlich"
5576
 
5577
+ #: core/installer.php:1063
5578
  msgid ""
5579
  "Business Directory features are currently disabled because the plugin needs "
5580
  "to perform a manual upgrade before continuing."
5582
  "Branchenverzeichnis Hervorhebungen sind aktuell deaktiviert, weil das Modul "
5583
  "manuell aktualisiert werden muss, bevor weiter hervorgehoben werden kann."
5584
 
5585
+ #: core/installer.php:1065
5586
  msgid "Perform Manual Upgrade"
5587
  msgstr "Manuelle Aktualisierung durchführen"
5588
 
5589
+ #: core/installer.php:1081 core/installer.php:1082 core/installer.php:1093
5590
  msgid "Business Directory - Manual Upgrade"
5591
  msgstr "Branchenverzeichnis - Manuelle Aktualisierung"
5592
 
5593
+ #: core/installer.php:1097
5594
  msgid ""
5595
  "Business Directory features are currently disabled because the plugin needs "
5596
  "to perform a manual upgrade before it can be used."
5598
  "Branchenverzeichnis Hervorhebungen sind momentan deaktiviert weil das Modul "
5599
  "manuell aktualisiert werden muss, bevor es weiter verwendet werden kann."
5600
 
5601
+ #: core/installer.php:1099
5602
  msgid "Click \"Start Upgrade\" and wait until the process finishes."
5603
  msgstr ""
5604
  "Klicke \"Starte Aktualisierung\" und warte bis der Vorgang beendet wurde."
5605
 
5606
+ #: core/installer.php:1102
5607
  msgctxt "manual-upgrade"
5608
  msgid "Start Upgrade"
5609
  msgstr "Starte Aktualisierung"
5610
 
5611
+ #: core/installer.php:1104
5612
  msgctxt "manual-upgrade"
5613
  msgid "Pause Upgrade"
5614
  msgstr "Aktualisierung pausieren"
5615
 
5616
+ #: core/installer.php:1110
5617
  msgctxt "manual-upgrade"
5618
  msgid ""
5619
  "The upgrade was sucessfully performed. Business Directory Plugin is now "
5622
  "Die Aktualisierung wurde erfolgreich durchgeführt. Branchenverzeichnis "
5623
  "Erweiterung ist nun verfügbar."
5624
 
5625
+ #: core/installer.php:1113
5626
  msgctxt "manual-upgrade"
5627
  msgid "Go to \"Directory Admin\""
5628
  msgstr "Nach \" Verzeichnis Administration\""
5629
 
5630
+ #: core/installer.php:1148
5631
  #, fuzzy
5632
  msgid "Business Directory - Installation Failed"
5633
  msgstr "Branchenverzeichnis - Manuelle Aktualisierung"
5634
 
5635
+ #: core/installer.php:1150
5636
  msgid ""
5637
  "Business Directory installation failed. An exception with following message "
5638
  "was generated:"
5639
  msgstr ""
5640
 
5641
+ #: core/installer.php:1155
5642
  msgid "Please <contact-link>contact customer support</a>."
5643
  msgstr ""
5644
 
5919
  msgid "No listing categories found."
5920
  msgstr "Keine Eintragskategorie gefunden."
5921
 
5922
+ #: core/templates-ui.php:194
5923
  msgid "Directory"
5924
  msgstr "Verzeichnis"
5925
 
5926
+ #: core/templates-ui.php:201
5927
  #, fuzzy
5928
  msgid "View All Listings"
5929
  msgstr "Alle Einträge anschauen"
5930
 
5931
+ #: core/templates-ui.php:208
5932
  #, fuzzy
5933
  msgid "Create A Listing"
5934
  msgstr "kostenloser Eintrag"
5935
 
5936
+ #: core/templates-ui.php:241
5937
  msgctxt "templates"
5938
  msgid "Search Listings"
5939
  msgstr "Eintrag suchen"
5940
 
5941
+ #: core/templates-ui.php:244
5942
  msgctxt "templates"
5943
  msgid "Advanced Search"
5944
  msgstr "Erweiterte Suche"
5945
 
5946
+ #: core/templates-ui.php:273 core/templates-ui.php:298
5947
  msgctxt "templates sort"
5948
  msgid "Sort By:"
5949
  msgstr "Sortieren nach"
5950
 
5951
+ #: core/templates-ui.php:292
5952
  msgctxt "sort"
5953
  msgid "Reset"
5954
  msgstr "Zurücksetzen"
5955
 
5956
+ #: core/templates-ui.php:314
5957
  #, fuzzy
5958
  msgctxt "sort"
5959
  msgid "(Reset)"
7340
  msgid "http://businessdirectoryplugin.com"
7341
  msgstr "http://businessdirectoryplugin.com"
7342
 
7343
+ #~ msgctxt "admin settings"
7344
+ #~ msgid ""
7345
+ #~ "Allow visitors to discuss listings using the standard WordPress comment "
7346
+ #~ "form. Comments are public."
7347
+ #~ msgstr ""
7348
+ #~ "Besuchern erlauben die Einträge mit der Standard Wordpress Form zu "
7349
+ #~ "diskutieren. Kommentare sind öffentlich."
7350
+
7351
  #~ msgctxt "title"
7352
  #~ msgid "Submit A Listing"
7353
  #~ msgstr "Eintrag zusenden"
languages/WPBDM-en_US.mo CHANGED
Binary file
languages/WPBDM-en_US.po CHANGED
@@ -4,7 +4,7 @@ msgid ""
4
  msgstr ""
5
  "Project-Id-Version: Business Directory Plugin 3.6\n"
6
  "Report-Msgid-Bugs-To: http://wordpress.org/tag/business-directory-plugin\n"
7
- "POT-Creation-Date: 2016-11-25 09:40:43+00:00\n"
8
  "PO-Revision-Date: 2015-04-07 11:11-0500\n"
9
  "Last-Translator: BD Team <support@businessdirectoryplugin.com>\n"
10
  "Language-Team: BD Team <support@businessdirectoryplugin.com>\n"
@@ -939,82 +939,82 @@ msgctxt "form-fields admin"
939
  msgid "Field deleted."
940
  msgstr ""
941
 
942
- #: admin/form-fields.php:272
943
  msgctxt "form-fields admin"
944
  msgid "Required fields created successfully."
945
  msgstr ""
946
 
947
- #: admin/form-fields.php:285
948
  msgctxt "form-fields admin"
949
  msgid "Title"
950
  msgstr ""
951
 
952
- #: admin/form-fields.php:286
953
  msgctxt "form-fields admin"
954
  msgid "Category"
955
  msgstr ""
956
 
957
- #: admin/form-fields.php:287
958
  msgctxt "form-fields admin"
959
  msgid "Excerpt"
960
  msgstr ""
961
 
962
- #: admin/form-fields.php:288
963
  msgctxt "form-fields admin"
964
  msgid "Content"
965
  msgstr ""
966
 
967
- #: admin/form-fields.php:289
968
  msgctxt "form-fields admin"
969
  msgid "Tags"
970
  msgstr ""
971
 
972
- #: admin/form-fields.php:290
973
  msgctxt "form-fields admin"
974
  msgid "Address"
975
  msgstr ""
976
 
977
- #: admin/form-fields.php:291
978
  msgctxt "form-fields admin"
979
  msgid "City"
980
  msgstr ""
981
 
982
- #: admin/form-fields.php:292
983
  msgctxt "form-fields admin"
984
  msgid "State"
985
  msgstr ""
986
 
987
- #: admin/form-fields.php:293
988
  msgctxt "form-fields admin"
989
  msgid "ZIP Code"
990
  msgstr ""
991
 
992
- #: admin/form-fields.php:294
993
  msgctxt "form-fields admin"
994
  msgid "FAX Number"
995
  msgstr ""
996
 
997
- #: admin/form-fields.php:295
998
  msgctxt "form-fields admin"
999
  msgid "Phone Number"
1000
  msgstr ""
1001
 
1002
- #: admin/form-fields.php:296
1003
  msgctxt "form-fields admin"
1004
  msgid "Ratings Field"
1005
  msgstr ""
1006
 
1007
- #: admin/form-fields.php:297
1008
  msgctxt "form-fields admin"
1009
  msgid "Twitter"
1010
  msgstr ""
1011
 
1012
- #: admin/form-fields.php:298
1013
  msgctxt "form-fields admin"
1014
  msgid "Website"
1015
  msgstr ""
1016
 
1017
- #: admin/form-fields.php:319
1018
  msgctxt "form-fields admin"
1019
  msgid "Tags updated."
1020
  msgstr ""
@@ -2092,7 +2092,7 @@ msgctxt "form-fields admin"
2092
  msgid "Please see the <a>Form Fields documentation</a> for more details."
2093
  msgstr ""
2094
 
2095
- #. #-#-#-#-# WPBDM.pot (Business Directory Plugin 4.1.5dev6) #-#-#-#-#
2096
  #. Plugin Name of the plugin/theme
2097
  #: admin/templates/header.tpl.php:4
2098
  msgid "Business Directory Plugin"
@@ -2828,33 +2828,33 @@ msgctxt "tracking"
2828
  msgid "Allow Tracking"
2829
  msgstr ""
2830
 
2831
- #: business-directory-plugin.php:667
2832
  msgctxt "admin plugins"
2833
  msgid "Settings"
2834
  msgstr ""
2835
 
2836
- #: business-directory-plugin.php:775 business-directory-plugin.php:782
2837
  msgctxt "rss feed"
2838
  msgid "%s Feed"
2839
  msgstr ""
2840
 
2841
- #: business-directory-plugin.php:1117 core/view-submit-listing.php:58
2842
  #: core/views/submit_listing.php:10
2843
  msgctxt "views"
2844
  msgid "Submit A Listing"
2845
  msgstr ""
2846
 
2847
- #: business-directory-plugin.php:1122
2848
  msgctxt "title"
2849
  msgid "Find a Listing"
2850
  msgstr ""
2851
 
2852
- #: business-directory-plugin.php:1127
2853
  msgctxt "title"
2854
  msgid "View All Listings"
2855
  msgstr ""
2856
 
2857
- #: business-directory-plugin.php:1156
2858
  msgctxt "title"
2859
  msgid "Listings tagged: %s"
2860
  msgstr ""
@@ -2920,41 +2920,41 @@ msgctxt "form-fields-api"
2920
  msgid "Invalid form field type"
2921
  msgstr ""
2922
 
2923
- #: core/class-form-field.php:498
2924
  msgctxt "form-fields-api"
2925
  msgid "Field label is required."
2926
  msgstr ""
2927
 
2928
- #: core/class-form-field.php:508
2929
  msgctxt "form-fields-api"
2930
  msgid "Requested field type change is incompatible. Type will not be modified."
2931
  msgstr ""
2932
 
2933
- #: core/class-form-field.php:528
2934
  msgctxt "form-fields-api"
2935
  msgid ""
2936
  "There can only be one field with association \"%s\". Please select another "
2937
  "association."
2938
  msgstr ""
2939
 
2940
- #: core/class-form-field.php:538
2941
  msgctxt "form-fields-api"
2942
  msgid "\"%s\" is an invalid field type for this association."
2943
  msgstr ""
2944
 
2945
- #: core/class-form-field.php:576
2946
  msgctxt "form-fields-api"
2947
  msgid "Invalid field ID"
2948
  msgstr ""
2949
 
2950
- #: core/class-form-field.php:585
2951
  msgctxt "form-fields api"
2952
  msgid ""
2953
  "This form field can't be deleted because it is required for the plugin to "
2954
  "work."
2955
  msgstr ""
2956
 
2957
- #: core/class-form-field.php:597
2958
  msgctxt "form-fields-api"
2959
  msgid "An error occurred while trying to delete this field."
2960
  msgstr ""
@@ -3014,12 +3014,12 @@ msgctxt "listing"
3014
  msgid "(Fee Unavailable)"
3015
  msgstr ""
3016
 
3017
- #: core/class-listings-api.php:306
3018
  msgctxt "notify email"
3019
  msgid "[%s] New listing notification"
3020
  msgstr ""
3021
 
3022
- #: core/class-listings-api.php:325
3023
  msgctxt "notify email"
3024
  msgid "[%s] Listing edit notification"
3025
  msgstr ""
@@ -3371,13 +3371,13 @@ msgctxt "admin settings"
3371
  msgid "Enable AJAX compatibility mode?"
3372
  msgstr ""
3373
 
3374
- #: core/class-settings.php:181 core/class-settings.php:665
3375
  msgctxt "admin settings"
3376
  msgid "Listings"
3377
  msgstr ""
3378
 
3379
- #: core/class-settings.php:182 core/class-settings.php:335
3380
- #: core/class-settings.php:622
3381
  msgctxt "admin settings"
3382
  msgid "General Settings"
3383
  msgstr ""
@@ -3440,49 +3440,67 @@ msgid ""
3440
  "per day."
3441
  msgstr ""
3442
 
3443
- #: core/class-settings.php:220
3444
  msgctxt "admin settings"
3445
  msgid "Include comment form on listing pages?"
3446
  msgstr ""
3447
 
3448
- #: core/class-settings.php:223
3449
  msgctxt "admin settings"
3450
  msgid ""
3451
- "Allow visitors to discuss listings using the standard WordPress comment "
3452
- "form. Comments are public."
 
 
 
 
 
 
 
 
3453
  msgstr ""
3454
 
3455
- #: core/class-settings.php:224
 
 
 
 
 
 
 
 
 
 
3456
  msgctxt "admin settings"
3457
  msgid "Show listings under categories on main page?"
3458
  msgstr ""
3459
 
3460
- #: core/class-settings.php:225
3461
  msgctxt "admin settings"
3462
  msgid "Status of listings upon uninstalling plugin"
3463
  msgstr ""
3464
 
3465
- #: core/class-settings.php:226 core/class-settings.php:228
3466
  msgctxt "post status"
3467
  msgid "Draft"
3468
  msgstr ""
3469
 
3470
- #: core/class-settings.php:226 core/class-settings.php:228
3471
  msgctxt "post status"
3472
  msgid "Trash"
3473
  msgstr ""
3474
 
3475
- #: core/class-settings.php:227
3476
  msgctxt "admin settings"
3477
  msgid "Status of deleted listings"
3478
  msgstr ""
3479
 
3480
- #: core/class-settings.php:229
3481
  msgctxt "admin settings"
3482
  msgid "Submit Listing instructions message"
3483
  msgstr ""
3484
 
3485
- #: core/class-settings.php:229
3486
  msgctxt "admin settings"
3487
  msgid ""
3488
  "This text is displayed at the first page of the Submit Listing process for "
@@ -3490,257 +3508,257 @@ msgid ""
3490
  "form or anything you want to tell users before they get started."
3491
  msgstr ""
3492
 
3493
- #: core/class-settings.php:231
3494
  msgctxt "admin settings"
3495
  msgid "Listing Renewal"
3496
  msgstr ""
3497
 
3498
- #: core/class-settings.php:232
3499
  msgctxt "admin settings"
3500
  msgid "Turn on listing renewal option?"
3501
  msgstr ""
3502
 
3503
- #: core/class-settings.php:235
3504
  msgctxt "admin settings"
3505
  msgid "Allow recurring renewal payments?"
3506
  msgstr ""
3507
 
3508
- #: core/class-settings.php:238
3509
  msgctxt "admin settings"
3510
  msgid ""
3511
  "Allow users to opt in for automatic renewal of their listings. The fee is "
3512
  "charged at the time the listing expires without user intervention."
3513
  msgstr ""
3514
 
3515
- #: core/class-settings.php:242
3516
  msgctxt "admin settings"
3517
  msgid "Use recurring payments as the default payment method?"
3518
  msgstr ""
3519
 
3520
- #: core/class-settings.php:245
3521
  msgctxt "admin settings"
3522
  msgid ""
3523
  "Enable automatic renewal without having users opt in during the submit "
3524
  "process."
3525
  msgstr ""
3526
 
3527
- #: core/class-settings.php:250
3528
  msgctxt "admin settings"
3529
  msgid "Listing renewal e-mail threshold (in days)"
3530
  msgstr ""
3531
 
3532
- #: core/class-settings.php:253
3533
  msgctxt "admin settings"
3534
  msgid ""
3535
  "Configure how many days before listing expiration is the renewal e-mail sent."
3536
  msgstr ""
3537
 
3538
- #: core/class-settings.php:257
3539
  msgctxt "admin settings"
3540
  msgid ""
3541
  "Send expiration notices including a cancel links to auto-renewed listings?"
3542
  msgstr ""
3543
 
3544
- #: core/class-settings.php:264
3545
  msgctxt "admin settings"
3546
  msgid "Remind listing owners of expired listings (past due)?"
3547
  msgstr ""
3548
 
3549
- #: core/class-settings.php:269
3550
  msgctxt "admin settings"
3551
  msgid "Listing renewal reminder e-mail threshold (in days)"
3552
  msgstr ""
3553
 
3554
- #: core/class-settings.php:272
3555
  msgctxt "admin settings"
3556
  msgid ""
3557
  "Configure how many days after the expiration of a listing an e-mail reminder "
3558
  "should be sent to the owner."
3559
  msgstr ""
3560
 
3561
- #: core/class-settings.php:275
3562
  msgctxt "admin settings"
3563
  msgid "Post/Category Settings"
3564
  msgstr ""
3565
 
3566
- #: core/class-settings.php:276
3567
  msgctxt "admin settings"
3568
  msgid "Default new post status"
3569
  msgstr ""
3570
 
3571
- #: core/class-settings.php:277 core/class-settings.php:280
3572
  msgctxt "post status"
3573
  msgid "Published"
3574
  msgstr ""
3575
 
3576
- #: core/class-settings.php:277 core/class-settings.php:280
3577
  msgctxt "post status"
3578
  msgid "Pending"
3579
  msgstr ""
3580
 
3581
- #: core/class-settings.php:279
3582
  msgctxt "admin settings"
3583
  msgid "Edit post status"
3584
  msgstr ""
3585
 
3586
- #: core/class-settings.php:281
3587
  msgctxt "admin settings"
3588
  msgid "Order categories list by"
3589
  msgstr ""
3590
 
3591
- #: core/class-settings.php:283
3592
  msgctxt "admin settings"
3593
  msgid "Name"
3594
  msgstr ""
3595
 
3596
- #: core/class-settings.php:284
3597
  msgctxt "admin settings"
3598
  msgid "Slug"
3599
  msgstr ""
3600
 
3601
- #: core/class-settings.php:285
3602
  msgctxt "admin settings"
3603
  msgid "Listing Count"
3604
  msgstr ""
3605
 
3606
- #: core/class-settings.php:287
3607
  msgctxt "admin settings"
3608
  msgid "Sort order for categories"
3609
  msgstr ""
3610
 
3611
- #: core/class-settings.php:288 core/class-settings.php:306
3612
  msgctxt "admin settings"
3613
  msgid "Ascending"
3614
  msgstr ""
3615
 
3616
- #: core/class-settings.php:288 core/class-settings.php:306
3617
  msgctxt "admin settings"
3618
  msgid "Descending"
3619
  msgstr ""
3620
 
3621
- #: core/class-settings.php:289
3622
  msgctxt "admin settings"
3623
  msgid "Show category post count?"
3624
  msgstr ""
3625
 
3626
- #: core/class-settings.php:290
3627
  msgctxt "admin settings"
3628
  msgid "Hide empty categories?"
3629
  msgstr ""
3630
 
3631
- #: core/class-settings.php:291
3632
  msgctxt "admin settings"
3633
  msgid "Show only parent categories in category list?"
3634
  msgstr ""
3635
 
3636
- #: core/class-settings.php:293
3637
  msgctxt "admin settings"
3638
  msgid "Listings Sorting"
3639
  msgstr ""
3640
 
3641
- #: core/class-settings.php:294
3642
  msgctxt "admin settings"
3643
  msgid "Order directory listings by"
3644
  msgstr ""
3645
 
3646
- #: core/class-settings.php:296
3647
  msgctxt "admin settings"
3648
  msgid "Title"
3649
  msgstr ""
3650
 
3651
- #: core/class-settings.php:297
3652
  msgctxt "admin settings"
3653
  msgid "Author"
3654
  msgstr ""
3655
 
3656
- #: core/class-settings.php:298 core/class-settings.php:708
3657
  msgctxt "admin settings"
3658
  msgid "Date posted"
3659
  msgstr ""
3660
 
3661
- #: core/class-settings.php:299 core/class-settings.php:709
3662
  msgctxt "admin settings"
3663
  msgid "Date last modified"
3664
  msgstr ""
3665
 
3666
- #: core/class-settings.php:300
3667
  msgctxt "admin settings"
3668
  msgid "Random"
3669
  msgstr ""
3670
 
3671
- #: core/class-settings.php:301
3672
  msgctxt "admin settings"
3673
  msgid "Paid first then free. Inside each group by date."
3674
  msgstr ""
3675
 
3676
- #: core/class-settings.php:302
3677
  msgctxt "admin settings"
3678
  msgid "Paid first then free. Inside each group by title."
3679
  msgstr ""
3680
 
3681
- #: core/class-settings.php:304
3682
  msgctxt "admin settings"
3683
  msgid "Sort directory listings by"
3684
  msgstr ""
3685
 
3686
- #: core/class-settings.php:305
3687
  msgctxt "admin settings"
3688
  msgid "Ascending for ascending order A-Z, Descending for descending order Z-A"
3689
  msgstr ""
3690
 
3691
- #: core/class-settings.php:310
3692
  msgctxt "admin settings"
3693
  msgid "Enable sort bar?"
3694
  msgstr ""
3695
 
3696
- #: core/class-settings.php:315
3697
  msgctxt "admin settings"
3698
  msgid "Sortbar Fields"
3699
  msgstr ""
3700
 
3701
- #: core/class-settings.php:324
3702
  msgctxt "admin settings"
3703
  msgid "Featured (Sticky) listing settings"
3704
  msgstr ""
3705
 
3706
- #: core/class-settings.php:325
3707
  msgctxt "admin settings"
3708
  msgid "Offer sticky listings?"
3709
  msgstr ""
3710
 
3711
- #: core/class-settings.php:326
3712
  msgctxt "admin settings"
3713
  msgid "Offer upgrades during submit process?"
3714
  msgstr ""
3715
 
3716
- #: core/class-settings.php:327
3717
  msgctxt "admin settings"
3718
  msgid "Sticky listing price"
3719
  msgstr ""
3720
 
3721
- #: core/class-settings.php:328
3722
  msgctxt "admin settings"
3723
  msgid "Sticky listing page description text"
3724
  msgstr ""
3725
 
3726
- #: core/class-settings.php:329
3727
  msgctxt "admin settings"
3728
  msgid ""
3729
  "You can upgrade your listing to featured status. Featured listings will "
3730
  "always appear on top of regular listings."
3731
  msgstr ""
3732
 
3733
- #: core/class-settings.php:334
3734
  msgctxt "admin settings"
3735
  msgid "E-Mail"
3736
  msgstr ""
3737
 
3738
- #: core/class-settings.php:338
3739
  msgctxt "admin settings"
3740
  msgid "Display email address fields publicly?"
3741
  msgstr ""
3742
 
3743
- #: core/class-settings.php:341
3744
  msgctxt "admin settings"
3745
  msgid ""
3746
  "Shows the email address of the listing owner to all web users. NOT "
@@ -3748,517 +3766,517 @@ msgid ""
3748
  "harvest it for future use."
3749
  msgstr ""
3750
 
3751
- #: core/class-settings.php:344
3752
  msgctxt "admin settings"
3753
  msgid "How to determine the listing's email address?"
3754
  msgstr ""
3755
 
3756
- #: core/class-settings.php:347
3757
  msgctxt "admin settings"
3758
  msgid ""
3759
  "This affects emails sent to listing owners via contact forms or when their "
3760
  "listings expire."
3761
  msgstr ""
3762
 
3763
- #: core/class-settings.php:349
3764
  msgctxt "admin settings"
3765
  msgid "Try listing's email field first, then author's email."
3766
  msgstr ""
3767
 
3768
- #: core/class-settings.php:350
3769
  msgctxt "admin settings"
3770
  msgid "Try author's email first and then listing's email field."
3771
  msgstr ""
3772
 
3773
- #: core/class-settings.php:354
3774
  msgctxt "admin settings"
3775
  msgid "E-Mail Notifications"
3776
  msgstr ""
3777
 
3778
- #: core/class-settings.php:357
3779
  msgctxt "admin settings"
3780
  msgid "Notify admin via e-mail when..."
3781
  msgstr ""
3782
 
3783
- #: core/class-settings.php:361
3784
  msgctxt "admin settings"
3785
  msgid "A new listing is submitted."
3786
  msgstr ""
3787
 
3788
- #: core/class-settings.php:362
3789
  msgctxt "admin settings"
3790
  msgid "A listing is edited."
3791
  msgstr ""
3792
 
3793
- #: core/class-settings.php:363
3794
  msgctxt "admin settings"
3795
  msgid "A listing expires."
3796
  msgstr ""
3797
 
3798
- #: core/class-settings.php:364
3799
  msgctxt "admin settings"
3800
  msgid "A contact message is sent to a listing's owner."
3801
  msgstr ""
3802
 
3803
- #: core/class-settings.php:370
3804
  msgctxt "admin settings"
3805
  msgid "CC this e-mail address too"
3806
  msgstr ""
3807
 
3808
- #: core/class-settings.php:376
3809
  msgctxt "admin settings"
3810
  msgid "Notify users via e-mail when..."
3811
  msgstr ""
3812
 
3813
- #: core/class-settings.php:379
3814
  msgctxt "admin settings"
3815
  msgid "You can modify the text template used for most of these e-mails below."
3816
  msgstr ""
3817
 
3818
- #: core/class-settings.php:380
3819
  msgctxt "admin settings"
3820
  msgid "Their listing is submitted."
3821
  msgstr ""
3822
 
3823
- #: core/class-settings.php:381
3824
  msgctxt "admin settings"
3825
  msgid "Their listing is approved/published."
3826
  msgstr ""
3827
 
3828
- #: core/class-settings.php:390
3829
  msgctxt "contact email"
3830
  msgid "You have received a reply from your listing at %s."
3831
  msgstr ""
3832
 
3833
- #: core/class-settings.php:391
3834
  msgctxt "contact email"
3835
  msgid "Name: %s"
3836
  msgstr ""
3837
 
3838
- #: core/class-settings.php:392
3839
  msgctxt "contact email"
3840
  msgid "E-Mail: %s"
3841
  msgstr ""
3842
 
3843
- #: core/class-settings.php:393
3844
  msgctxt "contact email"
3845
  msgid "Message:"
3846
  msgstr ""
3847
 
3848
- #: core/class-settings.php:395
3849
  msgctxt "contact email"
3850
  msgid "Time: %s"
3851
  msgstr ""
3852
 
3853
- #: core/class-settings.php:397
3854
  msgctxt "admin settings"
3855
  msgid "E-Mail Templates"
3856
  msgstr ""
3857
 
3858
- #: core/class-settings.php:400
3859
  msgctxt "admin settings"
3860
  msgid "Email confirmation message"
3861
  msgstr ""
3862
 
3863
- #: core/class-settings.php:404
3864
  msgctxt "admin settings"
3865
  msgid "Sent after a listing has been submitted."
3866
  msgstr ""
3867
 
3868
- #: core/class-settings.php:405 core/class-settings.php:413
3869
- #: core/class-settings.php:454
3870
  msgctxt "admin settings"
3871
  msgid "Listing's title"
3872
  msgstr ""
3873
 
3874
- #: core/class-settings.php:408
3875
  msgctxt "admin settings"
3876
  msgid "Listing published message"
3877
  msgstr ""
3878
 
3879
- #: core/class-settings.php:411
3880
  msgctxt "admin settings"
3881
  msgid ""
3882
  "Your listing \"[listing]\" is now available at [listing-url] and can be "
3883
  "viewed by the public."
3884
  msgstr ""
3885
 
3886
- #: core/class-settings.php:412
3887
  msgctxt "admin settings"
3888
  msgid "Sent when the listing has been published or approved by an admin."
3889
  msgstr ""
3890
 
3891
- #: core/class-settings.php:414
3892
  msgctxt "admin settings"
3893
  msgid "Listing's URL"
3894
  msgstr ""
3895
 
3896
- #: core/class-settings.php:418
3897
  msgctxt "admin settings"
3898
  msgid "Listing Contact Message"
3899
  msgstr ""
3900
 
3901
- #: core/class-settings.php:422
3902
  msgctxt "admin settings"
3903
  msgid ""
3904
  "Sent to listing owners when someone uses the contact form on their listing "
3905
  "pages."
3906
  msgstr ""
3907
 
3908
- #: core/class-settings.php:432
3909
  msgctxt "admin settings"
3910
  msgid "Payment related"
3911
  msgstr ""
3912
 
3913
- #: core/class-settings.php:449
3914
  msgctxt "admin settings"
3915
  msgid "Payment abandoned reminder message"
3916
  msgstr ""
3917
 
3918
- #: core/class-settings.php:453
3919
  msgctxt "admin settings"
3920
  msgid "Sent some time after a pending payment is abandoned by users."
3921
  msgstr ""
3922
 
3923
- #: core/class-settings.php:455
3924
  msgctxt "admin settings"
3925
  msgid "Checkout URL link"
3926
  msgstr ""
3927
 
3928
- #: core/class-settings.php:461
3929
  msgctxt "admin settings"
3930
  msgid "Renewal Reminders"
3931
  msgstr ""
3932
 
3933
- #: core/class-settings.php:464
3934
  msgctxt "admin settings"
3935
  msgid ""
3936
  "This section refers only to the text of the renewal/expiration notices. You "
3937
  "can also <a>configure when the e-mails are sent</a>."
3938
  msgstr ""
3939
 
3940
- #: core/class-settings.php:468
3941
  msgctxt "admin settings"
3942
  msgid "Pending expiration e-mail message"
3943
  msgstr ""
3944
 
3945
- #: core/class-settings.php:472
3946
  msgctxt "settings"
3947
  msgid ""
3948
  "Sent some time before the listing expires. Applies to non-recurring renewals "
3949
  "only."
3950
  msgstr ""
3951
 
3952
- #: core/class-settings.php:473 core/class-settings.php:486
3953
- #: core/class-settings.php:499 core/class-settings.php:512
3954
- #: core/class-settings.php:525
3955
  msgctxt "settings"
3956
  msgid "Listing's name (with link)"
3957
  msgstr ""
3958
 
3959
- #: core/class-settings.php:474 core/class-settings.php:487
3960
- #: core/class-settings.php:500 core/class-settings.php:513
3961
- #: core/class-settings.php:526
3962
  msgctxt "settings"
3963
  msgid "Author's name"
3964
  msgstr ""
3965
 
3966
- #: core/class-settings.php:475 core/class-settings.php:488
3967
- #: core/class-settings.php:527
3968
  msgctxt "settings"
3969
  msgid "Expiration date"
3970
  msgstr ""
3971
 
3972
- #: core/class-settings.php:476
3973
  msgctxt "settings"
3974
  msgid "Category that is going to expire"
3975
  msgstr ""
3976
 
3977
- #: core/class-settings.php:477 core/class-settings.php:490
3978
- #: core/class-settings.php:529
3979
  msgctxt "settings"
3980
  msgid "Link to renewal page"
3981
  msgstr ""
3982
 
3983
- #: core/class-settings.php:478 core/class-settings.php:491
3984
- #: core/class-settings.php:503 core/class-settings.php:516
3985
- #: core/class-settings.php:530
3986
  msgctxt "settings"
3987
  msgid "Link to your site"
3988
  msgstr ""
3989
 
3990
- #: core/class-settings.php:481
3991
  msgctxt "admin settings"
3992
  msgid "Listing Renewal e-mail message"
3993
  msgstr ""
3994
 
3995
- #: core/class-settings.php:485
3996
  msgctxt "settings"
3997
  msgid ""
3998
  "Sent at the time of listing expiration. Applies to non-recurring renewals "
3999
  "only."
4000
  msgstr ""
4001
 
4002
- #: core/class-settings.php:489 core/class-settings.php:528
4003
  msgctxt "settings"
4004
  msgid "Category that expired"
4005
  msgstr ""
4006
 
4007
- #: core/class-settings.php:494
4008
  msgctxt "admin settings"
4009
  msgid "Listing auto-renewal reminder (recurring payments)"
4010
  msgstr ""
4011
 
4012
- #: core/class-settings.php:498
4013
  msgctxt "settings"
4014
  msgid ""
4015
  "Sent some time before the listing is auto-renewed. Applies to recurring "
4016
  "renewals only."
4017
  msgstr ""
4018
 
4019
- #: core/class-settings.php:501 core/class-settings.php:515
4020
  msgctxt "settings"
4021
  msgid "Renewal date"
4022
  msgstr ""
4023
 
4024
- #: core/class-settings.php:502
4025
  msgctxt "settings"
4026
  msgid "Category that is going to be renewed"
4027
  msgstr ""
4028
 
4029
- #: core/class-settings.php:504
4030
  msgctxt "settings"
4031
  msgid "Link to manage subscriptions"
4032
  msgstr ""
4033
 
4034
- #: core/class-settings.php:507
4035
  msgctxt "admin settings"
4036
  msgid "Listing Renewal e-mail message (recurring payments)"
4037
  msgstr ""
4038
 
4039
- #: core/class-settings.php:511
4040
  msgctxt "settings"
4041
  msgid ""
4042
  "Sent after the listing is auto-renewed. Applies to recurring renewals only."
4043
  msgstr ""
4044
 
4045
- #: core/class-settings.php:514
4046
  msgctxt "settings"
4047
  msgid "Renewed category"
4048
  msgstr ""
4049
 
4050
- #: core/class-settings.php:520
4051
  msgctxt "admin settings"
4052
  msgid "Renewal reminder e-mail message"
4053
  msgstr ""
4054
 
4055
- #: core/class-settings.php:524
4056
  msgctxt "settings"
4057
  msgid ""
4058
  "Sent some time after listing expiration and when no renewal has occurred. "
4059
  "Applies to both recurring and non-recurring renewals."
4060
  msgstr ""
4061
 
4062
- #: core/class-settings.php:534
4063
  msgctxt "admin settings"
4064
  msgid "Payment"
4065
  msgstr ""
4066
 
4067
- #: core/class-settings.php:535
4068
  msgctxt "admin settings"
4069
  msgid "Payment Settings"
4070
  msgstr ""
4071
 
4072
- #: core/class-settings.php:538
4073
  msgctxt "admin settings"
4074
  msgid "Turn On payments?"
4075
  msgstr ""
4076
 
4077
- #: core/class-settings.php:540
4078
  msgctxt "admin settings"
4079
  msgid "Put payment gateways in test mode?"
4080
  msgstr ""
4081
 
4082
- #: core/class-settings.php:545
4083
  msgctxt "admin settings"
4084
  msgid "Perform checkouts on the secure (HTTPS) version of your site?"
4085
  msgstr ""
4086
 
4087
- #: core/class-settings.php:548
4088
  msgctxt "admin settings"
4089
  msgid ""
4090
  "Recommended for added security. For this to work you need to enable HTTPS on "
4091
  "your server and <a>obtain an SSL certificate</a>."
4092
  msgstr ""
4093
 
4094
- #: core/class-settings.php:552
4095
  msgctxt "admin settings"
4096
  msgid "Currency Code"
4097
  msgstr ""
4098
 
4099
- #: core/class-settings.php:554
4100
  msgctxt "admin settings"
4101
  msgid "Australian Dollar (AUD)"
4102
  msgstr ""
4103
 
4104
- #: core/class-settings.php:555
4105
  msgctxt "admin settings"
4106
  msgid "Brazilian Real (BRL)"
4107
  msgstr ""
4108
 
4109
- #: core/class-settings.php:556
4110
  msgctxt "admin settings"
4111
  msgid "Canadian Dollar (CAD)"
4112
  msgstr ""
4113
 
4114
- #: core/class-settings.php:557
4115
  msgctxt "admin settings"
4116
  msgid "Czech Koruna (CZK)"
4117
  msgstr ""
4118
 
4119
- #: core/class-settings.php:558
4120
  msgctxt "admin settings"
4121
  msgid "Danish Krone (DKK)"
4122
  msgstr ""
4123
 
4124
- #: core/class-settings.php:559
4125
  msgctxt "admin settings"
4126
  msgid "Euro (EUR)"
4127
  msgstr ""
4128
 
4129
- #: core/class-settings.php:560
4130
  msgctxt "admin settings"
4131
  msgid "Hong Kong Dollar (HKD)"
4132
  msgstr ""
4133
 
4134
- #: core/class-settings.php:561
4135
  msgctxt "admin settings"
4136
  msgid "Hungarian Forint (HUF)"
4137
  msgstr ""
4138
 
4139
- #: core/class-settings.php:562
4140
  msgctxt "admin settings"
4141
  msgid "Israeli New Shequel (ILS)"
4142
  msgstr ""
4143
 
4144
- #: core/class-settings.php:563
4145
  msgctxt "admin settings"
4146
  msgid "Japanese Yen (JPY)"
4147
  msgstr ""
4148
 
4149
- #: core/class-settings.php:564
4150
  msgctxt "admin settings"
4151
  msgid "Malasian Ringgit (MYR)"
4152
  msgstr ""
4153
 
4154
- #: core/class-settings.php:565
4155
  msgctxt "admin settings"
4156
  msgid "Mexican Peso (MXN)"
4157
  msgstr ""
4158
 
4159
- #: core/class-settings.php:566
4160
  msgctxt "admin settings"
4161
  msgid "Norwegian Krone (NOK)"
4162
  msgstr ""
4163
 
4164
- #: core/class-settings.php:567
4165
  msgctxt "admin settings"
4166
  msgid "New Zealand Dollar (NZD)"
4167
  msgstr ""
4168
 
4169
- #: core/class-settings.php:568
4170
  msgctxt "admin settings"
4171
  msgid "Philippine Peso (PHP)"
4172
  msgstr ""
4173
 
4174
- #: core/class-settings.php:569
4175
  msgctxt "admin settings"
4176
  msgid "Polish Zloty (PLN)"
4177
  msgstr ""
4178
 
4179
- #: core/class-settings.php:570
4180
  msgctxt "admin settings"
4181
  msgid "Pound Sterling (GBP)"
4182
  msgstr ""
4183
 
4184
- #: core/class-settings.php:571
4185
  msgctxt "admin settings"
4186
  msgid "Singapore Dollar (SGD)"
4187
  msgstr ""
4188
 
4189
- #: core/class-settings.php:572
4190
  msgctxt "admin settings"
4191
  msgid "Swedish Krona (SEK)"
4192
  msgstr ""
4193
 
4194
- #: core/class-settings.php:573
4195
  msgctxt "admin settings"
4196
  msgid "Swiss Franc (CHF)"
4197
  msgstr ""
4198
 
4199
- #: core/class-settings.php:574
4200
  msgctxt "admin settings"
4201
  msgid "Taiwan Dollar (TWD)"
4202
  msgstr ""
4203
 
4204
- #: core/class-settings.php:575
4205
  msgctxt "admin settings"
4206
  msgid "Thai Baht (THB)"
4207
  msgstr ""
4208
 
4209
- #: core/class-settings.php:576
4210
  msgctxt "admin settings"
4211
  msgid "Turkish Lira (TRY)"
4212
  msgstr ""
4213
 
4214
- #: core/class-settings.php:577
4215
  msgctxt "admin settings"
4216
  msgid "U.S. Dollar (USD)"
4217
  msgstr ""
4218
 
4219
- #: core/class-settings.php:581
4220
  msgctxt "admin settings"
4221
  msgid "Currency Symbol"
4222
  msgstr ""
4223
 
4224
- #: core/class-settings.php:586
4225
  msgctxt "admin settings"
4226
  msgid "Currency symbol display"
4227
  msgstr ""
4228
 
4229
- #: core/class-settings.php:590
4230
  msgctxt "admin settings"
4231
  msgid "Show currency symbol on the left"
4232
  msgstr ""
4233
 
4234
- #: core/class-settings.php:591
4235
  msgctxt "admin settings"
4236
  msgid "Show currency symbol on the right"
4237
  msgstr ""
4238
 
4239
- #: core/class-settings.php:592
4240
  msgctxt "admin settings"
4241
  msgid "Do not show currency symbol"
4242
  msgstr ""
4243
 
4244
- #: core/class-settings.php:594
4245
  msgctxt "admin settings"
4246
  msgid "Thank you for payment message"
4247
  msgstr ""
4248
 
4249
- #: core/class-settings.php:595
4250
  msgctxt "admin settings"
4251
  msgid ""
4252
  "Thank you for your payment. Your payment is being verified and your listing "
4253
  "reviewed. The verification and review process could take up to 48 hours."
4254
  msgstr ""
4255
 
4256
- #: core/class-settings.php:600
4257
  msgctxt "admin settings"
4258
  msgid "Ask users to come back for abandoned payments?"
4259
  msgstr ""
4260
 
4261
- #: core/class-settings.php:603
4262
  msgctxt "admin settings"
4263
  msgid ""
4264
  "An abandoned payment is when a user attempts to place a listing and gets to "
@@ -4267,49 +4285,49 @@ msgid ""
4267
  "the transaction. BD can remind them to come back and continue."
4268
  msgstr ""
4269
 
4270
- #: core/class-settings.php:609
4271
  msgctxt "admin settings"
4272
  msgid "Listing abandonment threshold (hours)"
4273
  msgstr ""
4274
 
4275
- #: core/class-settings.php:614
4276
  msgctxt "admin settings"
4277
  msgid ""
4278
  "Listings with pending payments are marked as abandoned after this time. You "
4279
  "can also <a>customize the e-mail</a> users receive."
4280
  msgstr ""
4281
 
4282
- #: core/class-settings.php:619
4283
  msgctxt "admin settings"
4284
  msgid "Themes"
4285
  msgstr ""
4286
 
4287
- #: core/class-settings.php:621
4288
  msgctxt "admin settings"
4289
  msgid "You can manage your themes on <a>Directory Themes</a>."
4290
  msgstr ""
4291
 
4292
- #: core/class-settings.php:626
4293
  msgctxt "admin settings"
4294
  msgid "Theme button style"
4295
  msgstr ""
4296
 
4297
- #: core/class-settings.php:630
4298
  msgctxt "admin settings"
4299
  msgid "Use the BD theme style for BD buttons"
4300
  msgstr ""
4301
 
4302
- #: core/class-settings.php:631
4303
  msgctxt "admin settings"
4304
  msgid "Use the WP theme style for BD buttons"
4305
  msgstr ""
4306
 
4307
- #: core/class-settings.php:638
4308
  msgctxt "admin settings"
4309
  msgid "Image"
4310
  msgstr ""
4311
 
4312
- #: core/class-settings.php:639
4313
  msgctxt "admin settings"
4314
  msgid ""
4315
  "Any changes to these settings will affect new listings only. Existing "
@@ -4318,78 +4336,78 @@ msgid ""
4318
  "here."
4319
  msgstr ""
4320
 
4321
- #: core/class-settings.php:640
4322
  msgctxt "admin settings"
4323
  msgid "Image Settings"
4324
  msgstr ""
4325
 
4326
- #: core/class-settings.php:641
4327
  msgctxt "admin settings"
4328
  msgid "Allow images?"
4329
  msgstr ""
4330
 
4331
- #: core/class-settings.php:643
4332
  msgctxt "admin settings"
4333
  msgid "Min Image File Size (KB)"
4334
  msgstr ""
4335
 
4336
- #: core/class-settings.php:644
4337
  msgctxt "admin settings"
4338
  msgid "Max Image File Size (KB)"
4339
  msgstr ""
4340
 
4341
- #: core/class-settings.php:646
4342
  msgctxt "admin settings"
4343
  msgid "Min image width (px)"
4344
  msgstr ""
4345
 
4346
- #: core/class-settings.php:647
4347
  msgctxt "admin settings"
4348
  msgid "Min image height (px)"
4349
  msgstr ""
4350
 
4351
- #: core/class-settings.php:649
4352
  msgctxt "admin settings"
4353
  msgid "Max image width (px)"
4354
  msgstr ""
4355
 
4356
- #: core/class-settings.php:650
4357
  msgctxt "admin settings"
4358
  msgid "Max image height (px)"
4359
  msgstr ""
4360
 
4361
- #: core/class-settings.php:652
4362
  msgctxt "admin settings"
4363
  msgid "Turn on thickbox/lightbox?"
4364
  msgstr ""
4365
 
4366
- #: core/class-settings.php:652
4367
  msgctxt "admin settings"
4368
  msgid ""
4369
  "Uncheck if it conflicts with other elements or plugins installed on your site"
4370
  msgstr ""
4371
 
4372
- #: core/class-settings.php:654
4373
  msgctxt "admin settings"
4374
  msgid "Thumbnails"
4375
  msgstr ""
4376
 
4377
- #: core/class-settings.php:655
4378
  msgctxt "admin settings"
4379
  msgid "Thumbnail width (px)"
4380
  msgstr ""
4381
 
4382
- #: core/class-settings.php:656
4383
  msgctxt "admin settings"
4384
  msgid "Thumbnail height (px)"
4385
  msgstr ""
4386
 
4387
- #: core/class-settings.php:659
4388
  msgctxt "admin settings"
4389
  msgid "Crop thumbnails to exact dimensions?"
4390
  msgstr ""
4391
 
4392
- #: core/class-settings.php:662
4393
  msgctxt "admin settings"
4394
  msgid ""
4395
  "When enabled images will match exactly the dimensions above but part of the "
@@ -4398,150 +4416,150 @@ msgid ""
4398
  "Depending on the uploaded images, thumbnails may have different heights."
4399
  msgstr ""
4400
 
4401
- #: core/class-settings.php:668
4402
  msgctxt "admin settings"
4403
  msgid "Number of free images"
4404
  msgstr ""
4405
 
4406
- #: core/class-settings.php:673
4407
  msgctxt "admin settings"
4408
  msgid ""
4409
  "For paid listing images, configure that by adding or editing a <a>Fee Plan</"
4410
  "a> instead of this setting, which is ignored for paid listings."
4411
  msgstr ""
4412
 
4413
- #: core/class-settings.php:676
4414
  msgctxt "admin settings"
4415
  msgid "Use default picture for listings with no picture?"
4416
  msgstr ""
4417
 
4418
- #: core/class-settings.php:677
4419
  msgctxt "admin settings"
4420
  msgid "Show Thumbnail on main listings page?"
4421
  msgstr ""
4422
 
4423
- #: core/class-settings.php:706
4424
  msgctxt "admin settings"
4425
  msgid "User"
4426
  msgstr ""
4427
 
4428
- #: core/class-settings.php:707
4429
  msgctxt "admin settings"
4430
  msgid "User registration date"
4431
  msgstr ""
4432
 
4433
- #: core/class-settings.php:733
4434
  msgctxt "admin settings"
4435
  msgid ""
4436
  "Could not copy the AJAX compatibility plugin \"%s\". Compatibility mode was "
4437
  "not activated."
4438
  msgstr ""
4439
 
4440
- #: core/class-settings.php:741
4441
  msgctxt "admin settings"
4442
  msgid ""
4443
  "Could not activate AJAX Compatibility mode: the directory \"%s\" could not "
4444
  "be created."
4445
  msgstr ""
4446
 
4447
- #: core/class-settings.php:750
4448
  msgctxt "admin settings"
4449
  msgid ""
4450
  "Could not remove the \"Business Directory Plugin - AJAX Compatibility Module"
4451
  "\". Please remove the file \"%s\" manually or deactivate the plugin."
4452
  msgstr ""
4453
 
4454
- #: core/class-settings.php:1070
4455
  msgctxt "settings"
4456
  msgid "Deactivate License"
4457
  msgstr ""
4458
 
4459
- #: core/class-settings.php:1072
4460
  msgctxt "settings"
4461
  msgid "Deactivating license..."
4462
  msgstr ""
4463
 
4464
- #: core/class-settings.php:1075
4465
  msgctxt "settings"
4466
  msgid "Activate License"
4467
  msgstr ""
4468
 
4469
- #: core/class-settings.php:1077
4470
  msgctxt "settings"
4471
  msgid "Activating license..."
4472
  msgstr ""
4473
 
4474
- #: core/class-settings.php:1100
4475
  msgctxt "admin settings"
4476
  msgid "Valid placeholders: %s"
4477
  msgstr ""
4478
 
4479
- #: core/class-settings.php:1134
4480
  msgctxt "settings email"
4481
  msgid "Click to edit e-mail"
4482
  msgstr ""
4483
 
4484
- #: core/class-settings.php:1135
4485
  msgctxt "settings email"
4486
  msgid "Click to edit"
4487
  msgstr ""
4488
 
4489
- #: core/class-settings.php:1148
4490
  msgctxt "settings email"
4491
  msgid "E-Mail Subject"
4492
  msgstr ""
4493
 
4494
- #: core/class-settings.php:1159
4495
  msgctxt "settings email"
4496
  msgid "E-Mail Body"
4497
  msgstr ""
4498
 
4499
- #: core/class-settings.php:1170
4500
  msgctxt "settings email"
4501
  msgid "You can use the following placeholders:"
4502
  msgstr ""
4503
 
4504
- #: core/class-settings.php:1193
4505
  msgctxt "settings email"
4506
  msgid "Preview e-mail"
4507
  msgstr ""
4508
 
4509
- #: core/class-settings.php:1194
4510
  msgctxt "settings email"
4511
  msgid "Cancel"
4512
  msgstr ""
4513
 
4514
- #: core/class-settings.php:1195
4515
  msgctxt "settings email"
4516
  msgid "Save Changes"
4517
  msgstr ""
4518
 
4519
- #: core/class-settings.php:1214
4520
  msgctxt "settings email"
4521
  msgid "Site title"
4522
  msgstr ""
4523
 
4524
- #: core/class-settings.php:1217
4525
  msgctxt "settings email"
4526
  msgid "Site title (with link)"
4527
  msgstr ""
4528
 
4529
- #: core/class-settings.php:1220
4530
  msgctxt "settings email"
4531
  msgid "Site address (with link)"
4532
  msgstr ""
4533
 
4534
- #: core/class-settings.php:1223
4535
  msgctxt "settings email"
4536
  msgid "Directory URL (with link)"
4537
  msgstr ""
4538
 
4539
- #: core/class-settings.php:1226
4540
  msgctxt "settings email"
4541
  msgid "Current date"
4542
  msgstr ""
4543
 
4544
- #: core/class-settings.php:1229
4545
  msgctxt "settings email"
4546
  msgid "Current time"
4547
  msgstr ""
@@ -5174,67 +5192,74 @@ msgctxt "installer"
5174
  msgid "Listing upgrade to featured"
5175
  msgstr ""
5176
 
5177
- #: core/installer.php:957
 
 
 
 
 
 
 
5178
  msgid "Business Directory - Manual Upgrade Required"
5179
  msgstr ""
5180
 
5181
- #: core/installer.php:959
5182
  msgid ""
5183
  "Business Directory features are currently disabled because the plugin needs "
5184
  "to perform a manual upgrade before continuing."
5185
  msgstr ""
5186
 
5187
- #: core/installer.php:961
5188
  msgid "Perform Manual Upgrade"
5189
  msgstr ""
5190
 
5191
- #: core/installer.php:977 core/installer.php:978 core/installer.php:989
5192
  msgid "Business Directory - Manual Upgrade"
5193
  msgstr ""
5194
 
5195
- #: core/installer.php:993
5196
  msgid ""
5197
  "Business Directory features are currently disabled because the plugin needs "
5198
  "to perform a manual upgrade before it can be used."
5199
  msgstr ""
5200
 
5201
- #: core/installer.php:995
5202
  msgid "Click \"Start Upgrade\" and wait until the process finishes."
5203
  msgstr ""
5204
 
5205
- #: core/installer.php:998
5206
  msgctxt "manual-upgrade"
5207
  msgid "Start Upgrade"
5208
  msgstr ""
5209
 
5210
- #: core/installer.php:1000
5211
  msgctxt "manual-upgrade"
5212
  msgid "Pause Upgrade"
5213
  msgstr ""
5214
 
5215
- #: core/installer.php:1006
5216
  msgctxt "manual-upgrade"
5217
  msgid ""
5218
  "The upgrade was sucessfully performed. Business Directory Plugin is now "
5219
  "available."
5220
  msgstr ""
5221
 
5222
- #: core/installer.php:1009
5223
  msgctxt "manual-upgrade"
5224
  msgid "Go to \"Directory Admin\""
5225
  msgstr ""
5226
 
5227
- #: core/installer.php:1044
5228
  msgid "Business Directory - Installation Failed"
5229
  msgstr ""
5230
 
5231
- #: core/installer.php:1046
5232
  msgid ""
5233
  "Business Directory installation failed. An exception with following message "
5234
  "was generated:"
5235
  msgstr ""
5236
 
5237
- #: core/installer.php:1051
5238
  msgid "Please <contact-link>contact customer support</a>."
5239
  msgstr ""
5240
 
@@ -5484,39 +5509,39 @@ msgctxt "templates"
5484
  msgid "No listing categories found."
5485
  msgstr ""
5486
 
5487
- #: core/templates-ui.php:193
5488
  msgid "Directory"
5489
  msgstr ""
5490
 
5491
- #: core/templates-ui.php:199
5492
  msgid "View All Listings"
5493
  msgstr ""
5494
 
5495
- #: core/templates-ui.php:205
5496
  msgid "Create A Listing"
5497
  msgstr ""
5498
 
5499
- #: core/templates-ui.php:232
5500
  msgctxt "templates"
5501
  msgid "Search Listings"
5502
  msgstr ""
5503
 
5504
- #: core/templates-ui.php:235
5505
  msgctxt "templates"
5506
  msgid "Advanced Search"
5507
  msgstr ""
5508
 
5509
- #: core/templates-ui.php:264 core/templates-ui.php:289
5510
  msgctxt "templates sort"
5511
  msgid "Sort By:"
5512
  msgstr ""
5513
 
5514
- #: core/templates-ui.php:283
5515
  msgctxt "sort"
5516
  msgid "Reset"
5517
  msgstr ""
5518
 
5519
- #: core/templates-ui.php:305
5520
  msgctxt "sort"
5521
  msgid "(Reset)"
5522
  msgstr ""
4
  msgstr ""
5
  "Project-Id-Version: Business Directory Plugin 3.6\n"
6
  "Report-Msgid-Bugs-To: http://wordpress.org/tag/business-directory-plugin\n"
7
+ "POT-Creation-Date: 2016-12-13 23:11:33+00:00\n"
8
  "PO-Revision-Date: 2015-04-07 11:11-0500\n"
9
  "Last-Translator: BD Team <support@businessdirectoryplugin.com>\n"
10
  "Language-Team: BD Team <support@businessdirectoryplugin.com>\n"
939
  msgid "Field deleted."
940
  msgstr ""
941
 
942
+ #: admin/form-fields.php:277
943
  msgctxt "form-fields admin"
944
  msgid "Required fields created successfully."
945
  msgstr ""
946
 
947
+ #: admin/form-fields.php:290
948
  msgctxt "form-fields admin"
949
  msgid "Title"
950
  msgstr ""
951
 
952
+ #: admin/form-fields.php:291
953
  msgctxt "form-fields admin"
954
  msgid "Category"
955
  msgstr ""
956
 
957
+ #: admin/form-fields.php:292
958
  msgctxt "form-fields admin"
959
  msgid "Excerpt"
960
  msgstr ""
961
 
962
+ #: admin/form-fields.php:293
963
  msgctxt "form-fields admin"
964
  msgid "Content"
965
  msgstr ""
966
 
967
+ #: admin/form-fields.php:294
968
  msgctxt "form-fields admin"
969
  msgid "Tags"
970
  msgstr ""
971
 
972
+ #: admin/form-fields.php:295
973
  msgctxt "form-fields admin"
974
  msgid "Address"
975
  msgstr ""
976
 
977
+ #: admin/form-fields.php:296
978
  msgctxt "form-fields admin"
979
  msgid "City"
980
  msgstr ""
981
 
982
+ #: admin/form-fields.php:297
983
  msgctxt "form-fields admin"
984
  msgid "State"
985
  msgstr ""
986
 
987
+ #: admin/form-fields.php:298
988
  msgctxt "form-fields admin"
989
  msgid "ZIP Code"
990
  msgstr ""
991
 
992
+ #: admin/form-fields.php:299
993
  msgctxt "form-fields admin"
994
  msgid "FAX Number"
995
  msgstr ""
996
 
997
+ #: admin/form-fields.php:300
998
  msgctxt "form-fields admin"
999
  msgid "Phone Number"
1000
  msgstr ""
1001
 
1002
+ #: admin/form-fields.php:301
1003
  msgctxt "form-fields admin"
1004
  msgid "Ratings Field"
1005
  msgstr ""
1006
 
1007
+ #: admin/form-fields.php:302
1008
  msgctxt "form-fields admin"
1009
  msgid "Twitter"
1010
  msgstr ""
1011
 
1012
+ #: admin/form-fields.php:303
1013
  msgctxt "form-fields admin"
1014
  msgid "Website"
1015
  msgstr ""
1016
 
1017
+ #: admin/form-fields.php:324
1018
  msgctxt "form-fields admin"
1019
  msgid "Tags updated."
1020
  msgstr ""
2092
  msgid "Please see the <a>Form Fields documentation</a> for more details."
2093
  msgstr ""
2094
 
2095
+ #. #-#-#-#-# WPBDM.pot (Business Directory Plugin 4.1.6) #-#-#-#-#
2096
  #. Plugin Name of the plugin/theme
2097
  #: admin/templates/header.tpl.php:4
2098
  msgid "Business Directory Plugin"
2828
  msgid "Allow Tracking"
2829
  msgstr ""
2830
 
2831
+ #: business-directory-plugin.php:668
2832
  msgctxt "admin plugins"
2833
  msgid "Settings"
2834
  msgstr ""
2835
 
2836
+ #: business-directory-plugin.php:776 business-directory-plugin.php:783
2837
  msgctxt "rss feed"
2838
  msgid "%s Feed"
2839
  msgstr ""
2840
 
2841
+ #: business-directory-plugin.php:1137 core/view-submit-listing.php:58
2842
  #: core/views/submit_listing.php:10
2843
  msgctxt "views"
2844
  msgid "Submit A Listing"
2845
  msgstr ""
2846
 
2847
+ #: business-directory-plugin.php:1142
2848
  msgctxt "title"
2849
  msgid "Find a Listing"
2850
  msgstr ""
2851
 
2852
+ #: business-directory-plugin.php:1147
2853
  msgctxt "title"
2854
  msgid "View All Listings"
2855
  msgstr ""
2856
 
2857
+ #: business-directory-plugin.php:1176
2858
  msgctxt "title"
2859
  msgid "Listings tagged: %s"
2860
  msgstr ""
2920
  msgid "Invalid form field type"
2921
  msgstr ""
2922
 
2923
+ #: core/class-form-field.php:505
2924
  msgctxt "form-fields-api"
2925
  msgid "Field label is required."
2926
  msgstr ""
2927
 
2928
+ #: core/class-form-field.php:515
2929
  msgctxt "form-fields-api"
2930
  msgid "Requested field type change is incompatible. Type will not be modified."
2931
  msgstr ""
2932
 
2933
+ #: core/class-form-field.php:535
2934
  msgctxt "form-fields-api"
2935
  msgid ""
2936
  "There can only be one field with association \"%s\". Please select another "
2937
  "association."
2938
  msgstr ""
2939
 
2940
+ #: core/class-form-field.php:545
2941
  msgctxt "form-fields-api"
2942
  msgid "\"%s\" is an invalid field type for this association."
2943
  msgstr ""
2944
 
2945
+ #: core/class-form-field.php:583
2946
  msgctxt "form-fields-api"
2947
  msgid "Invalid field ID"
2948
  msgstr ""
2949
 
2950
+ #: core/class-form-field.php:592
2951
  msgctxt "form-fields api"
2952
  msgid ""
2953
  "This form field can't be deleted because it is required for the plugin to "
2954
  "work."
2955
  msgstr ""
2956
 
2957
+ #: core/class-form-field.php:604
2958
  msgctxt "form-fields-api"
2959
  msgid "An error occurred while trying to delete this field."
2960
  msgstr ""
3014
  msgid "(Fee Unavailable)"
3015
  msgstr ""
3016
 
3017
+ #: core/class-listings-api.php:310
3018
  msgctxt "notify email"
3019
  msgid "[%s] New listing notification"
3020
  msgstr ""
3021
 
3022
+ #: core/class-listings-api.php:329
3023
  msgctxt "notify email"
3024
  msgid "[%s] Listing edit notification"
3025
  msgstr ""
3371
  msgid "Enable AJAX compatibility mode?"
3372
  msgstr ""
3373
 
3374
+ #: core/class-settings.php:181 core/class-settings.php:679
3375
  msgctxt "admin settings"
3376
  msgid "Listings"
3377
  msgstr ""
3378
 
3379
+ #: core/class-settings.php:182 core/class-settings.php:349
3380
+ #: core/class-settings.php:636
3381
  msgctxt "admin settings"
3382
  msgid "General Settings"
3383
  msgstr ""
3440
  "per day."
3441
  msgstr ""
3442
 
3443
+ #: core/class-settings.php:222
3444
  msgctxt "admin settings"
3445
  msgid "Include comment form on listing pages?"
3446
  msgstr ""
3447
 
3448
+ #: core/class-settings.php:225
3449
  msgctxt "admin settings"
3450
  msgid ""
3451
+ "BD uses the standard comment inclusion from WordPress, but most themes only "
3452
+ "allow for comments on posts, not pages. Some themes handle both. BD is "
3453
+ "displayed on a page, so we need a theme that can handle both to show "
3454
+ "comments. Use the 2nd option if you want to allow comments on listings "
3455
+ "first, and if that doesn't work, try the 3rd option instead."
3456
+ msgstr ""
3457
+
3458
+ #: core/class-settings.php:228
3459
+ msgctxt "admin settings"
3460
+ msgid "Do not include comments in listings"
3461
  msgstr ""
3462
 
3463
+ #: core/class-settings.php:229
3464
+ msgctxt "admin settings"
3465
+ msgid "Include comment form, theme invoked (standard option)"
3466
+ msgstr ""
3467
+
3468
+ #: core/class-settings.php:230
3469
+ msgctxt "admin settings"
3470
+ msgid "Include comment form, BD invoked (use only if 2nd option doesn't work)"
3471
+ msgstr ""
3472
+
3473
+ #: core/class-settings.php:238
3474
  msgctxt "admin settings"
3475
  msgid "Show listings under categories on main page?"
3476
  msgstr ""
3477
 
3478
+ #: core/class-settings.php:239
3479
  msgctxt "admin settings"
3480
  msgid "Status of listings upon uninstalling plugin"
3481
  msgstr ""
3482
 
3483
+ #: core/class-settings.php:240 core/class-settings.php:242
3484
  msgctxt "post status"
3485
  msgid "Draft"
3486
  msgstr ""
3487
 
3488
+ #: core/class-settings.php:240 core/class-settings.php:242
3489
  msgctxt "post status"
3490
  msgid "Trash"
3491
  msgstr ""
3492
 
3493
+ #: core/class-settings.php:241
3494
  msgctxt "admin settings"
3495
  msgid "Status of deleted listings"
3496
  msgstr ""
3497
 
3498
+ #: core/class-settings.php:243
3499
  msgctxt "admin settings"
3500
  msgid "Submit Listing instructions message"
3501
  msgstr ""
3502
 
3503
+ #: core/class-settings.php:243
3504
  msgctxt "admin settings"
3505
  msgid ""
3506
  "This text is displayed at the first page of the Submit Listing process for "
3508
  "form or anything you want to tell users before they get started."
3509
  msgstr ""
3510
 
3511
+ #: core/class-settings.php:245
3512
  msgctxt "admin settings"
3513
  msgid "Listing Renewal"
3514
  msgstr ""
3515
 
3516
+ #: core/class-settings.php:246
3517
  msgctxt "admin settings"
3518
  msgid "Turn on listing renewal option?"
3519
  msgstr ""
3520
 
3521
+ #: core/class-settings.php:249
3522
  msgctxt "admin settings"
3523
  msgid "Allow recurring renewal payments?"
3524
  msgstr ""
3525
 
3526
+ #: core/class-settings.php:252
3527
  msgctxt "admin settings"
3528
  msgid ""
3529
  "Allow users to opt in for automatic renewal of their listings. The fee is "
3530
  "charged at the time the listing expires without user intervention."
3531
  msgstr ""
3532
 
3533
+ #: core/class-settings.php:256
3534
  msgctxt "admin settings"
3535
  msgid "Use recurring payments as the default payment method?"
3536
  msgstr ""
3537
 
3538
+ #: core/class-settings.php:259
3539
  msgctxt "admin settings"
3540
  msgid ""
3541
  "Enable automatic renewal without having users opt in during the submit "
3542
  "process."
3543
  msgstr ""
3544
 
3545
+ #: core/class-settings.php:264
3546
  msgctxt "admin settings"
3547
  msgid "Listing renewal e-mail threshold (in days)"
3548
  msgstr ""
3549
 
3550
+ #: core/class-settings.php:267
3551
  msgctxt "admin settings"
3552
  msgid ""
3553
  "Configure how many days before listing expiration is the renewal e-mail sent."
3554
  msgstr ""
3555
 
3556
+ #: core/class-settings.php:271
3557
  msgctxt "admin settings"
3558
  msgid ""
3559
  "Send expiration notices including a cancel links to auto-renewed listings?"
3560
  msgstr ""
3561
 
3562
+ #: core/class-settings.php:278
3563
  msgctxt "admin settings"
3564
  msgid "Remind listing owners of expired listings (past due)?"
3565
  msgstr ""
3566
 
3567
+ #: core/class-settings.php:283
3568
  msgctxt "admin settings"
3569
  msgid "Listing renewal reminder e-mail threshold (in days)"
3570
  msgstr ""
3571
 
3572
+ #: core/class-settings.php:286
3573
  msgctxt "admin settings"
3574
  msgid ""
3575
  "Configure how many days after the expiration of a listing an e-mail reminder "
3576
  "should be sent to the owner."
3577
  msgstr ""
3578
 
3579
+ #: core/class-settings.php:289
3580
  msgctxt "admin settings"
3581
  msgid "Post/Category Settings"
3582
  msgstr ""
3583
 
3584
+ #: core/class-settings.php:290
3585
  msgctxt "admin settings"
3586
  msgid "Default new post status"
3587
  msgstr ""
3588
 
3589
+ #: core/class-settings.php:291 core/class-settings.php:294
3590
  msgctxt "post status"
3591
  msgid "Published"
3592
  msgstr ""
3593
 
3594
+ #: core/class-settings.php:291 core/class-settings.php:294
3595
  msgctxt "post status"
3596
  msgid "Pending"
3597
  msgstr ""
3598
 
3599
+ #: core/class-settings.php:293
3600
  msgctxt "admin settings"
3601
  msgid "Edit post status"
3602
  msgstr ""
3603
 
3604
+ #: core/class-settings.php:295
3605
  msgctxt "admin settings"
3606
  msgid "Order categories list by"
3607
  msgstr ""
3608
 
3609
+ #: core/class-settings.php:297
3610
  msgctxt "admin settings"
3611
  msgid "Name"
3612
  msgstr ""
3613
 
3614
+ #: core/class-settings.php:298
3615
  msgctxt "admin settings"
3616
  msgid "Slug"
3617
  msgstr ""
3618
 
3619
+ #: core/class-settings.php:299
3620
  msgctxt "admin settings"
3621
  msgid "Listing Count"
3622
  msgstr ""
3623
 
3624
+ #: core/class-settings.php:301
3625
  msgctxt "admin settings"
3626
  msgid "Sort order for categories"
3627
  msgstr ""
3628
 
3629
+ #: core/class-settings.php:302 core/class-settings.php:320
3630
  msgctxt "admin settings"
3631
  msgid "Ascending"
3632
  msgstr ""
3633
 
3634
+ #: core/class-settings.php:302 core/class-settings.php:320
3635
  msgctxt "admin settings"
3636
  msgid "Descending"
3637
  msgstr ""
3638
 
3639
+ #: core/class-settings.php:303
3640
  msgctxt "admin settings"
3641
  msgid "Show category post count?"
3642
  msgstr ""
3643
 
3644
+ #: core/class-settings.php:304
3645
  msgctxt "admin settings"
3646
  msgid "Hide empty categories?"
3647
  msgstr ""
3648
 
3649
+ #: core/class-settings.php:305
3650
  msgctxt "admin settings"
3651
  msgid "Show only parent categories in category list?"
3652
  msgstr ""
3653
 
3654
+ #: core/class-settings.php:307
3655
  msgctxt "admin settings"
3656
  msgid "Listings Sorting"
3657
  msgstr ""
3658
 
3659
+ #: core/class-settings.php:308
3660
  msgctxt "admin settings"
3661
  msgid "Order directory listings by"
3662
  msgstr ""
3663
 
3664
+ #: core/class-settings.php:310
3665
  msgctxt "admin settings"
3666
  msgid "Title"
3667
  msgstr ""
3668
 
3669
+ #: core/class-settings.php:311
3670
  msgctxt "admin settings"
3671
  msgid "Author"
3672
  msgstr ""
3673
 
3674
+ #: core/class-settings.php:312 core/class-settings.php:722
3675
  msgctxt "admin settings"
3676
  msgid "Date posted"
3677
  msgstr ""
3678
 
3679
+ #: core/class-settings.php:313 core/class-settings.php:723
3680
  msgctxt "admin settings"
3681
  msgid "Date last modified"
3682
  msgstr ""
3683
 
3684
+ #: core/class-settings.php:314
3685
  msgctxt "admin settings"
3686
  msgid "Random"
3687
  msgstr ""
3688
 
3689
+ #: core/class-settings.php:315
3690
  msgctxt "admin settings"
3691
  msgid "Paid first then free. Inside each group by date."
3692
  msgstr ""
3693
 
3694
+ #: core/class-settings.php:316
3695
  msgctxt "admin settings"
3696
  msgid "Paid first then free. Inside each group by title."
3697
  msgstr ""
3698
 
3699
+ #: core/class-settings.php:318
3700
  msgctxt "admin settings"
3701
  msgid "Sort directory listings by"
3702
  msgstr ""
3703
 
3704
+ #: core/class-settings.php:319
3705
  msgctxt "admin settings"
3706
  msgid "Ascending for ascending order A-Z, Descending for descending order Z-A"
3707
  msgstr ""
3708
 
3709
+ #: core/class-settings.php:324
3710
  msgctxt "admin settings"
3711
  msgid "Enable sort bar?"
3712
  msgstr ""
3713
 
3714
+ #: core/class-settings.php:329
3715
  msgctxt "admin settings"
3716
  msgid "Sortbar Fields"
3717
  msgstr ""
3718
 
3719
+ #: core/class-settings.php:338
3720
  msgctxt "admin settings"
3721
  msgid "Featured (Sticky) listing settings"
3722
  msgstr ""
3723
 
3724
+ #: core/class-settings.php:339
3725
  msgctxt "admin settings"
3726
  msgid "Offer sticky listings?"
3727
  msgstr ""
3728
 
3729
+ #: core/class-settings.php:340
3730
  msgctxt "admin settings"
3731
  msgid "Offer upgrades during submit process?"
3732
  msgstr ""
3733
 
3734
+ #: core/class-settings.php:341
3735
  msgctxt "admin settings"
3736
  msgid "Sticky listing price"
3737
  msgstr ""
3738
 
3739
+ #: core/class-settings.php:342
3740
  msgctxt "admin settings"
3741
  msgid "Sticky listing page description text"
3742
  msgstr ""
3743
 
3744
+ #: core/class-settings.php:343
3745
  msgctxt "admin settings"
3746
  msgid ""
3747
  "You can upgrade your listing to featured status. Featured listings will "
3748
  "always appear on top of regular listings."
3749
  msgstr ""
3750
 
3751
+ #: core/class-settings.php:348
3752
  msgctxt "admin settings"
3753
  msgid "E-Mail"
3754
  msgstr ""
3755
 
3756
+ #: core/class-settings.php:352
3757
  msgctxt "admin settings"
3758
  msgid "Display email address fields publicly?"
3759
  msgstr ""
3760
 
3761
+ #: core/class-settings.php:355
3762
  msgctxt "admin settings"
3763
  msgid ""
3764
  "Shows the email address of the listing owner to all web users. NOT "
3766
  "harvest it for future use."
3767
  msgstr ""
3768
 
3769
+ #: core/class-settings.php:358
3770
  msgctxt "admin settings"
3771
  msgid "How to determine the listing's email address?"
3772
  msgstr ""
3773
 
3774
+ #: core/class-settings.php:361
3775
  msgctxt "admin settings"
3776
  msgid ""
3777
  "This affects emails sent to listing owners via contact forms or when their "
3778
  "listings expire."
3779
  msgstr ""
3780
 
3781
+ #: core/class-settings.php:363
3782
  msgctxt "admin settings"
3783
  msgid "Try listing's email field first, then author's email."
3784
  msgstr ""
3785
 
3786
+ #: core/class-settings.php:364
3787
  msgctxt "admin settings"
3788
  msgid "Try author's email first and then listing's email field."
3789
  msgstr ""
3790
 
3791
+ #: core/class-settings.php:368
3792
  msgctxt "admin settings"
3793
  msgid "E-Mail Notifications"
3794
  msgstr ""
3795
 
3796
+ #: core/class-settings.php:371
3797
  msgctxt "admin settings"
3798
  msgid "Notify admin via e-mail when..."
3799
  msgstr ""
3800
 
3801
+ #: core/class-settings.php:375
3802
  msgctxt "admin settings"
3803
  msgid "A new listing is submitted."
3804
  msgstr ""
3805
 
3806
+ #: core/class-settings.php:376
3807
  msgctxt "admin settings"
3808
  msgid "A listing is edited."
3809
  msgstr ""
3810
 
3811
+ #: core/class-settings.php:377
3812
  msgctxt "admin settings"
3813
  msgid "A listing expires."
3814
  msgstr ""
3815
 
3816
+ #: core/class-settings.php:378
3817
  msgctxt "admin settings"
3818
  msgid "A contact message is sent to a listing's owner."
3819
  msgstr ""
3820
 
3821
+ #: core/class-settings.php:384
3822
  msgctxt "admin settings"
3823
  msgid "CC this e-mail address too"
3824
  msgstr ""
3825
 
3826
+ #: core/class-settings.php:390
3827
  msgctxt "admin settings"
3828
  msgid "Notify users via e-mail when..."
3829
  msgstr ""
3830
 
3831
+ #: core/class-settings.php:393
3832
  msgctxt "admin settings"
3833
  msgid "You can modify the text template used for most of these e-mails below."
3834
  msgstr ""
3835
 
3836
+ #: core/class-settings.php:394
3837
  msgctxt "admin settings"
3838
  msgid "Their listing is submitted."
3839
  msgstr ""
3840
 
3841
+ #: core/class-settings.php:395
3842
  msgctxt "admin settings"
3843
  msgid "Their listing is approved/published."
3844
  msgstr ""
3845
 
3846
+ #: core/class-settings.php:404
3847
  msgctxt "contact email"
3848
  msgid "You have received a reply from your listing at %s."
3849
  msgstr ""
3850
 
3851
+ #: core/class-settings.php:405
3852
  msgctxt "contact email"
3853
  msgid "Name: %s"
3854
  msgstr ""
3855
 
3856
+ #: core/class-settings.php:406
3857
  msgctxt "contact email"
3858
  msgid "E-Mail: %s"
3859
  msgstr ""
3860
 
3861
+ #: core/class-settings.php:407
3862
  msgctxt "contact email"
3863
  msgid "Message:"
3864
  msgstr ""
3865
 
3866
+ #: core/class-settings.php:409
3867
  msgctxt "contact email"
3868
  msgid "Time: %s"
3869
  msgstr ""
3870
 
3871
+ #: core/class-settings.php:411
3872
  msgctxt "admin settings"
3873
  msgid "E-Mail Templates"
3874
  msgstr ""
3875
 
3876
+ #: core/class-settings.php:414
3877
  msgctxt "admin settings"
3878
  msgid "Email confirmation message"
3879
  msgstr ""
3880
 
3881
+ #: core/class-settings.php:418
3882
  msgctxt "admin settings"
3883
  msgid "Sent after a listing has been submitted."
3884
  msgstr ""
3885
 
3886
+ #: core/class-settings.php:419 core/class-settings.php:427
3887
+ #: core/class-settings.php:468
3888
  msgctxt "admin settings"
3889
  msgid "Listing's title"
3890
  msgstr ""
3891
 
3892
+ #: core/class-settings.php:422
3893
  msgctxt "admin settings"
3894
  msgid "Listing published message"
3895
  msgstr ""
3896
 
3897
+ #: core/class-settings.php:425
3898
  msgctxt "admin settings"
3899
  msgid ""
3900
  "Your listing \"[listing]\" is now available at [listing-url] and can be "
3901
  "viewed by the public."
3902
  msgstr ""
3903
 
3904
+ #: core/class-settings.php:426
3905
  msgctxt "admin settings"
3906
  msgid "Sent when the listing has been published or approved by an admin."
3907
  msgstr ""
3908
 
3909
+ #: core/class-settings.php:428
3910
  msgctxt "admin settings"
3911
  msgid "Listing's URL"
3912
  msgstr ""
3913
 
3914
+ #: core/class-settings.php:432
3915
  msgctxt "admin settings"
3916
  msgid "Listing Contact Message"
3917
  msgstr ""
3918
 
3919
+ #: core/class-settings.php:436
3920
  msgctxt "admin settings"
3921
  msgid ""
3922
  "Sent to listing owners when someone uses the contact form on their listing "
3923
  "pages."
3924
  msgstr ""
3925
 
3926
+ #: core/class-settings.php:446
3927
  msgctxt "admin settings"
3928
  msgid "Payment related"
3929
  msgstr ""
3930
 
3931
+ #: core/class-settings.php:463
3932
  msgctxt "admin settings"
3933
  msgid "Payment abandoned reminder message"
3934
  msgstr ""
3935
 
3936
+ #: core/class-settings.php:467
3937
  msgctxt "admin settings"
3938
  msgid "Sent some time after a pending payment is abandoned by users."
3939
  msgstr ""
3940
 
3941
+ #: core/class-settings.php:469
3942
  msgctxt "admin settings"
3943
  msgid "Checkout URL link"
3944
  msgstr ""
3945
 
3946
+ #: core/class-settings.php:475
3947
  msgctxt "admin settings"
3948
  msgid "Renewal Reminders"
3949
  msgstr ""
3950
 
3951
+ #: core/class-settings.php:478
3952
  msgctxt "admin settings"
3953
  msgid ""
3954
  "This section refers only to the text of the renewal/expiration notices. You "
3955
  "can also <a>configure when the e-mails are sent</a>."
3956
  msgstr ""
3957
 
3958
+ #: core/class-settings.php:482
3959
  msgctxt "admin settings"
3960
  msgid "Pending expiration e-mail message"
3961
  msgstr ""
3962
 
3963
+ #: core/class-settings.php:486
3964
  msgctxt "settings"
3965
  msgid ""
3966
  "Sent some time before the listing expires. Applies to non-recurring renewals "
3967
  "only."
3968
  msgstr ""
3969
 
3970
+ #: core/class-settings.php:487 core/class-settings.php:500
3971
+ #: core/class-settings.php:513 core/class-settings.php:526
3972
+ #: core/class-settings.php:539
3973
  msgctxt "settings"
3974
  msgid "Listing's name (with link)"
3975
  msgstr ""
3976
 
3977
+ #: core/class-settings.php:488 core/class-settings.php:501
3978
+ #: core/class-settings.php:514 core/class-settings.php:527
3979
+ #: core/class-settings.php:540
3980
  msgctxt "settings"
3981
  msgid "Author's name"
3982
  msgstr ""
3983
 
3984
+ #: core/class-settings.php:489 core/class-settings.php:502
3985
+ #: core/class-settings.php:541
3986
  msgctxt "settings"
3987
  msgid "Expiration date"
3988
  msgstr ""
3989
 
3990
+ #: core/class-settings.php:490
3991
  msgctxt "settings"
3992
  msgid "Category that is going to expire"
3993
  msgstr ""
3994
 
3995
+ #: core/class-settings.php:491 core/class-settings.php:504
3996
+ #: core/class-settings.php:543
3997
  msgctxt "settings"
3998
  msgid "Link to renewal page"
3999
  msgstr ""
4000
 
4001
+ #: core/class-settings.php:492 core/class-settings.php:505
4002
+ #: core/class-settings.php:517 core/class-settings.php:530
4003
+ #: core/class-settings.php:544
4004
  msgctxt "settings"
4005
  msgid "Link to your site"
4006
  msgstr ""
4007
 
4008
+ #: core/class-settings.php:495
4009
  msgctxt "admin settings"
4010
  msgid "Listing Renewal e-mail message"
4011
  msgstr ""
4012
 
4013
+ #: core/class-settings.php:499
4014
  msgctxt "settings"
4015
  msgid ""
4016
  "Sent at the time of listing expiration. Applies to non-recurring renewals "
4017
  "only."
4018
  msgstr ""
4019
 
4020
+ #: core/class-settings.php:503 core/class-settings.php:542
4021
  msgctxt "settings"
4022
  msgid "Category that expired"
4023
  msgstr ""
4024
 
4025
+ #: core/class-settings.php:508
4026
  msgctxt "admin settings"
4027
  msgid "Listing auto-renewal reminder (recurring payments)"
4028
  msgstr ""
4029
 
4030
+ #: core/class-settings.php:512
4031
  msgctxt "settings"
4032
  msgid ""
4033
  "Sent some time before the listing is auto-renewed. Applies to recurring "
4034
  "renewals only."
4035
  msgstr ""
4036
 
4037
+ #: core/class-settings.php:515 core/class-settings.php:529
4038
  msgctxt "settings"
4039
  msgid "Renewal date"
4040
  msgstr ""
4041
 
4042
+ #: core/class-settings.php:516
4043
  msgctxt "settings"
4044
  msgid "Category that is going to be renewed"
4045
  msgstr ""
4046
 
4047
+ #: core/class-settings.php:518
4048
  msgctxt "settings"
4049
  msgid "Link to manage subscriptions"
4050
  msgstr ""
4051
 
4052
+ #: core/class-settings.php:521
4053
  msgctxt "admin settings"
4054
  msgid "Listing Renewal e-mail message (recurring payments)"
4055
  msgstr ""
4056
 
4057
+ #: core/class-settings.php:525
4058
  msgctxt "settings"
4059
  msgid ""
4060
  "Sent after the listing is auto-renewed. Applies to recurring renewals only."
4061
  msgstr ""
4062
 
4063
+ #: core/class-settings.php:528
4064
  msgctxt "settings"
4065
  msgid "Renewed category"
4066
  msgstr ""
4067
 
4068
+ #: core/class-settings.php:534
4069
  msgctxt "admin settings"
4070
  msgid "Renewal reminder e-mail message"
4071
  msgstr ""
4072
 
4073
+ #: core/class-settings.php:538
4074
  msgctxt "settings"
4075
  msgid ""
4076
  "Sent some time after listing expiration and when no renewal has occurred. "
4077
  "Applies to both recurring and non-recurring renewals."
4078
  msgstr ""
4079
 
4080
+ #: core/class-settings.php:548
4081
  msgctxt "admin settings"
4082
  msgid "Payment"
4083
  msgstr ""
4084
 
4085
+ #: core/class-settings.php:549
4086
  msgctxt "admin settings"
4087
  msgid "Payment Settings"
4088
  msgstr ""
4089
 
4090
+ #: core/class-settings.php:552
4091
  msgctxt "admin settings"
4092
  msgid "Turn On payments?"
4093
  msgstr ""
4094
 
4095
+ #: core/class-settings.php:554
4096
  msgctxt "admin settings"
4097
  msgid "Put payment gateways in test mode?"
4098
  msgstr ""
4099
 
4100
+ #: core/class-settings.php:559
4101
  msgctxt "admin settings"
4102
  msgid "Perform checkouts on the secure (HTTPS) version of your site?"
4103
  msgstr ""
4104
 
4105
+ #: core/class-settings.php:562
4106
  msgctxt "admin settings"
4107
  msgid ""
4108
  "Recommended for added security. For this to work you need to enable HTTPS on "
4109
  "your server and <a>obtain an SSL certificate</a>."
4110
  msgstr ""
4111
 
4112
+ #: core/class-settings.php:566
4113
  msgctxt "admin settings"
4114
  msgid "Currency Code"
4115
  msgstr ""
4116
 
4117
+ #: core/class-settings.php:568
4118
  msgctxt "admin settings"
4119
  msgid "Australian Dollar (AUD)"
4120
  msgstr ""
4121
 
4122
+ #: core/class-settings.php:569
4123
  msgctxt "admin settings"
4124
  msgid "Brazilian Real (BRL)"
4125
  msgstr ""
4126
 
4127
+ #: core/class-settings.php:570
4128
  msgctxt "admin settings"
4129
  msgid "Canadian Dollar (CAD)"
4130
  msgstr ""
4131
 
4132
+ #: core/class-settings.php:571
4133
  msgctxt "admin settings"
4134
  msgid "Czech Koruna (CZK)"
4135
  msgstr ""
4136
 
4137
+ #: core/class-settings.php:572
4138
  msgctxt "admin settings"
4139
  msgid "Danish Krone (DKK)"
4140
  msgstr ""
4141
 
4142
+ #: core/class-settings.php:573
4143
  msgctxt "admin settings"
4144
  msgid "Euro (EUR)"
4145
  msgstr ""
4146
 
4147
+ #: core/class-settings.php:574
4148
  msgctxt "admin settings"
4149
  msgid "Hong Kong Dollar (HKD)"
4150
  msgstr ""
4151
 
4152
+ #: core/class-settings.php:575
4153
  msgctxt "admin settings"
4154
  msgid "Hungarian Forint (HUF)"
4155
  msgstr ""
4156
 
4157
+ #: core/class-settings.php:576
4158
  msgctxt "admin settings"
4159
  msgid "Israeli New Shequel (ILS)"
4160
  msgstr ""
4161
 
4162
+ #: core/class-settings.php:577
4163
  msgctxt "admin settings"
4164
  msgid "Japanese Yen (JPY)"
4165
  msgstr ""
4166
 
4167
+ #: core/class-settings.php:578
4168
  msgctxt "admin settings"
4169
  msgid "Malasian Ringgit (MYR)"
4170
  msgstr ""
4171
 
4172
+ #: core/class-settings.php:579
4173
  msgctxt "admin settings"
4174
  msgid "Mexican Peso (MXN)"
4175
  msgstr ""
4176
 
4177
+ #: core/class-settings.php:580
4178
  msgctxt "admin settings"
4179
  msgid "Norwegian Krone (NOK)"
4180
  msgstr ""
4181
 
4182
+ #: core/class-settings.php:581
4183
  msgctxt "admin settings"
4184
  msgid "New Zealand Dollar (NZD)"
4185
  msgstr ""
4186
 
4187
+ #: core/class-settings.php:582
4188
  msgctxt "admin settings"
4189
  msgid "Philippine Peso (PHP)"
4190
  msgstr ""
4191
 
4192
+ #: core/class-settings.php:583
4193
  msgctxt "admin settings"
4194
  msgid "Polish Zloty (PLN)"
4195
  msgstr ""
4196
 
4197
+ #: core/class-settings.php:584
4198
  msgctxt "admin settings"
4199
  msgid "Pound Sterling (GBP)"
4200
  msgstr ""
4201
 
4202
+ #: core/class-settings.php:585
4203
  msgctxt "admin settings"
4204
  msgid "Singapore Dollar (SGD)"
4205
  msgstr ""
4206
 
4207
+ #: core/class-settings.php:586
4208
  msgctxt "admin settings"
4209
  msgid "Swedish Krona (SEK)"
4210
  msgstr ""
4211
 
4212
+ #: core/class-settings.php:587
4213
  msgctxt "admin settings"
4214
  msgid "Swiss Franc (CHF)"
4215
  msgstr ""
4216
 
4217
+ #: core/class-settings.php:588
4218
  msgctxt "admin settings"
4219
  msgid "Taiwan Dollar (TWD)"
4220
  msgstr ""
4221
 
4222
+ #: core/class-settings.php:589
4223
  msgctxt "admin settings"
4224
  msgid "Thai Baht (THB)"
4225
  msgstr ""
4226
 
4227
+ #: core/class-settings.php:590
4228
  msgctxt "admin settings"
4229
  msgid "Turkish Lira (TRY)"
4230
  msgstr ""
4231
 
4232
+ #: core/class-settings.php:591
4233
  msgctxt "admin settings"
4234
  msgid "U.S. Dollar (USD)"
4235
  msgstr ""
4236
 
4237
+ #: core/class-settings.php:595
4238
  msgctxt "admin settings"
4239
  msgid "Currency Symbol"
4240
  msgstr ""
4241
 
4242
+ #: core/class-settings.php:600
4243
  msgctxt "admin settings"
4244
  msgid "Currency symbol display"
4245
  msgstr ""
4246
 
4247
+ #: core/class-settings.php:604
4248
  msgctxt "admin settings"
4249
  msgid "Show currency symbol on the left"
4250
  msgstr ""
4251
 
4252
+ #: core/class-settings.php:605
4253
  msgctxt "admin settings"
4254
  msgid "Show currency symbol on the right"
4255
  msgstr ""
4256
 
4257
+ #: core/class-settings.php:606
4258
  msgctxt "admin settings"
4259
  msgid "Do not show currency symbol"
4260
  msgstr ""
4261
 
4262
+ #: core/class-settings.php:608
4263
  msgctxt "admin settings"
4264
  msgid "Thank you for payment message"
4265
  msgstr ""
4266
 
4267
+ #: core/class-settings.php:609
4268
  msgctxt "admin settings"
4269
  msgid ""
4270
  "Thank you for your payment. Your payment is being verified and your listing "
4271
  "reviewed. The verification and review process could take up to 48 hours."
4272
  msgstr ""
4273
 
4274
+ #: core/class-settings.php:614
4275
  msgctxt "admin settings"
4276
  msgid "Ask users to come back for abandoned payments?"
4277
  msgstr ""
4278
 
4279
+ #: core/class-settings.php:617
4280
  msgctxt "admin settings"
4281
  msgid ""
4282
  "An abandoned payment is when a user attempts to place a listing and gets to "
4285
  "the transaction. BD can remind them to come back and continue."
4286
  msgstr ""
4287
 
4288
+ #: core/class-settings.php:623
4289
  msgctxt "admin settings"
4290
  msgid "Listing abandonment threshold (hours)"
4291
  msgstr ""
4292
 
4293
+ #: core/class-settings.php:628
4294
  msgctxt "admin settings"
4295
  msgid ""
4296
  "Listings with pending payments are marked as abandoned after this time. You "
4297
  "can also <a>customize the e-mail</a> users receive."
4298
  msgstr ""
4299
 
4300
+ #: core/class-settings.php:633
4301
  msgctxt "admin settings"
4302
  msgid "Themes"
4303
  msgstr ""
4304
 
4305
+ #: core/class-settings.php:635
4306
  msgctxt "admin settings"
4307
  msgid "You can manage your themes on <a>Directory Themes</a>."
4308
  msgstr ""
4309
 
4310
+ #: core/class-settings.php:640
4311
  msgctxt "admin settings"
4312
  msgid "Theme button style"
4313
  msgstr ""
4314
 
4315
+ #: core/class-settings.php:644
4316
  msgctxt "admin settings"
4317
  msgid "Use the BD theme style for BD buttons"
4318
  msgstr ""
4319
 
4320
+ #: core/class-settings.php:645
4321
  msgctxt "admin settings"
4322
  msgid "Use the WP theme style for BD buttons"
4323
  msgstr ""
4324
 
4325
+ #: core/class-settings.php:652
4326
  msgctxt "admin settings"
4327
  msgid "Image"
4328
  msgstr ""
4329
 
4330
+ #: core/class-settings.php:653
4331
  msgctxt "admin settings"
4332
  msgid ""
4333
  "Any changes to these settings will affect new listings only. Existing "
4336
  "here."
4337
  msgstr ""
4338
 
4339
+ #: core/class-settings.php:654
4340
  msgctxt "admin settings"
4341
  msgid "Image Settings"
4342
  msgstr ""
4343
 
4344
+ #: core/class-settings.php:655
4345
  msgctxt "admin settings"
4346
  msgid "Allow images?"
4347
  msgstr ""
4348
 
4349
+ #: core/class-settings.php:657
4350
  msgctxt "admin settings"
4351
  msgid "Min Image File Size (KB)"
4352
  msgstr ""
4353
 
4354
+ #: core/class-settings.php:658
4355
  msgctxt "admin settings"
4356
  msgid "Max Image File Size (KB)"
4357
  msgstr ""
4358
 
4359
+ #: core/class-settings.php:660
4360
  msgctxt "admin settings"
4361
  msgid "Min image width (px)"
4362
  msgstr ""
4363
 
4364
+ #: core/class-settings.php:661
4365
  msgctxt "admin settings"
4366
  msgid "Min image height (px)"
4367
  msgstr ""
4368
 
4369
+ #: core/class-settings.php:663
4370
  msgctxt "admin settings"
4371
  msgid "Max image width (px)"
4372
  msgstr ""
4373
 
4374
+ #: core/class-settings.php:664
4375
  msgctxt "admin settings"
4376
  msgid "Max image height (px)"
4377
  msgstr ""
4378
 
4379
+ #: core/class-settings.php:666
4380
  msgctxt "admin settings"
4381
  msgid "Turn on thickbox/lightbox?"
4382
  msgstr ""
4383
 
4384
+ #: core/class-settings.php:666
4385
  msgctxt "admin settings"
4386
  msgid ""
4387
  "Uncheck if it conflicts with other elements or plugins installed on your site"
4388
  msgstr ""
4389
 
4390
+ #: core/class-settings.php:668
4391
  msgctxt "admin settings"
4392
  msgid "Thumbnails"
4393
  msgstr ""
4394
 
4395
+ #: core/class-settings.php:669
4396
  msgctxt "admin settings"
4397
  msgid "Thumbnail width (px)"
4398
  msgstr ""
4399
 
4400
+ #: core/class-settings.php:670
4401
  msgctxt "admin settings"
4402
  msgid "Thumbnail height (px)"
4403
  msgstr ""
4404
 
4405
+ #: core/class-settings.php:673
4406
  msgctxt "admin settings"
4407
  msgid "Crop thumbnails to exact dimensions?"
4408
  msgstr ""
4409
 
4410
+ #: core/class-settings.php:676
4411
  msgctxt "admin settings"
4412
  msgid ""
4413
  "When enabled images will match exactly the dimensions above but part of the "
4416
  "Depending on the uploaded images, thumbnails may have different heights."
4417
  msgstr ""
4418
 
4419
+ #: core/class-settings.php:682
4420
  msgctxt "admin settings"
4421
  msgid "Number of free images"
4422
  msgstr ""
4423
 
4424
+ #: core/class-settings.php:687
4425
  msgctxt "admin settings"
4426
  msgid ""
4427
  "For paid listing images, configure that by adding or editing a <a>Fee Plan</"
4428
  "a> instead of this setting, which is ignored for paid listings."
4429
  msgstr ""
4430
 
4431
+ #: core/class-settings.php:690
4432
  msgctxt "admin settings"
4433
  msgid "Use default picture for listings with no picture?"
4434
  msgstr ""
4435
 
4436
+ #: core/class-settings.php:691
4437
  msgctxt "admin settings"
4438
  msgid "Show Thumbnail on main listings page?"
4439
  msgstr ""
4440
 
4441
+ #: core/class-settings.php:720
4442
  msgctxt "admin settings"
4443
  msgid "User"
4444
  msgstr ""
4445
 
4446
+ #: core/class-settings.php:721
4447
  msgctxt "admin settings"
4448
  msgid "User registration date"
4449
  msgstr ""
4450
 
4451
+ #: core/class-settings.php:747
4452
  msgctxt "admin settings"
4453
  msgid ""
4454
  "Could not copy the AJAX compatibility plugin \"%s\". Compatibility mode was "
4455
  "not activated."
4456
  msgstr ""
4457
 
4458
+ #: core/class-settings.php:755
4459
  msgctxt "admin settings"
4460
  msgid ""
4461
  "Could not activate AJAX Compatibility mode: the directory \"%s\" could not "
4462
  "be created."
4463
  msgstr ""
4464
 
4465
+ #: core/class-settings.php:764
4466
  msgctxt "admin settings"
4467
  msgid ""
4468
  "Could not remove the \"Business Directory Plugin - AJAX Compatibility Module"
4469
  "\". Please remove the file \"%s\" manually or deactivate the plugin."
4470
  msgstr ""
4471
 
4472
+ #: core/class-settings.php:1084
4473
  msgctxt "settings"
4474
  msgid "Deactivate License"
4475
  msgstr ""
4476
 
4477
+ #: core/class-settings.php:1086
4478
  msgctxt "settings"
4479
  msgid "Deactivating license..."
4480
  msgstr ""
4481
 
4482
+ #: core/class-settings.php:1089
4483
  msgctxt "settings"
4484
  msgid "Activate License"
4485
  msgstr ""
4486
 
4487
+ #: core/class-settings.php:1091
4488
  msgctxt "settings"
4489
  msgid "Activating license..."
4490
  msgstr ""
4491
 
4492
+ #: core/class-settings.php:1114
4493
  msgctxt "admin settings"
4494
  msgid "Valid placeholders: %s"
4495
  msgstr ""
4496
 
4497
+ #: core/class-settings.php:1148
4498
  msgctxt "settings email"
4499
  msgid "Click to edit e-mail"
4500
  msgstr ""
4501
 
4502
+ #: core/class-settings.php:1149
4503
  msgctxt "settings email"
4504
  msgid "Click to edit"
4505
  msgstr ""
4506
 
4507
+ #: core/class-settings.php:1162
4508
  msgctxt "settings email"
4509
  msgid "E-Mail Subject"
4510
  msgstr ""
4511
 
4512
+ #: core/class-settings.php:1173
4513
  msgctxt "settings email"
4514
  msgid "E-Mail Body"
4515
  msgstr ""
4516
 
4517
+ #: core/class-settings.php:1184
4518
  msgctxt "settings email"
4519
  msgid "You can use the following placeholders:"
4520
  msgstr ""
4521
 
4522
+ #: core/class-settings.php:1207
4523
  msgctxt "settings email"
4524
  msgid "Preview e-mail"
4525
  msgstr ""
4526
 
4527
+ #: core/class-settings.php:1208
4528
  msgctxt "settings email"
4529
  msgid "Cancel"
4530
  msgstr ""
4531
 
4532
+ #: core/class-settings.php:1209
4533
  msgctxt "settings email"
4534
  msgid "Save Changes"
4535
  msgstr ""
4536
 
4537
+ #: core/class-settings.php:1228
4538
  msgctxt "settings email"
4539
  msgid "Site title"
4540
  msgstr ""
4541
 
4542
+ #: core/class-settings.php:1231
4543
  msgctxt "settings email"
4544
  msgid "Site title (with link)"
4545
  msgstr ""
4546
 
4547
+ #: core/class-settings.php:1234
4548
  msgctxt "settings email"
4549
  msgid "Site address (with link)"
4550
  msgstr ""
4551
 
4552
+ #: core/class-settings.php:1237
4553
  msgctxt "settings email"
4554
  msgid "Directory URL (with link)"
4555
  msgstr ""
4556
 
4557
+ #: core/class-settings.php:1240
4558
  msgctxt "settings email"
4559
  msgid "Current date"
4560
  msgstr ""
4561
 
4562
+ #: core/class-settings.php:1243
4563
  msgctxt "settings email"
4564
  msgid "Current time"
4565
  msgstr ""
5192
  msgid "Listing upgrade to featured"
5193
  msgstr ""
5194
 
5195
+ #: core/installer.php:1012
5196
+ msgctxt "installer"
5197
+ msgid ""
5198
+ "Cleaning up stored meta data for Checkbox, Radio and Select fields... (%d "
5199
+ "records left)"
5200
+ msgstr ""
5201
+
5202
+ #: core/installer.php:1061
5203
  msgid "Business Directory - Manual Upgrade Required"
5204
  msgstr ""
5205
 
5206
+ #: core/installer.php:1063
5207
  msgid ""
5208
  "Business Directory features are currently disabled because the plugin needs "
5209
  "to perform a manual upgrade before continuing."
5210
  msgstr ""
5211
 
5212
+ #: core/installer.php:1065
5213
  msgid "Perform Manual Upgrade"
5214
  msgstr ""
5215
 
5216
+ #: core/installer.php:1081 core/installer.php:1082 core/installer.php:1093
5217
  msgid "Business Directory - Manual Upgrade"
5218
  msgstr ""
5219
 
5220
+ #: core/installer.php:1097
5221
  msgid ""
5222
  "Business Directory features are currently disabled because the plugin needs "
5223
  "to perform a manual upgrade before it can be used."
5224
  msgstr ""
5225
 
5226
+ #: core/installer.php:1099
5227
  msgid "Click \"Start Upgrade\" and wait until the process finishes."
5228
  msgstr ""
5229
 
5230
+ #: core/installer.php:1102
5231
  msgctxt "manual-upgrade"
5232
  msgid "Start Upgrade"
5233
  msgstr ""
5234
 
5235
+ #: core/installer.php:1104
5236
  msgctxt "manual-upgrade"
5237
  msgid "Pause Upgrade"
5238
  msgstr ""
5239
 
5240
+ #: core/installer.php:1110
5241
  msgctxt "manual-upgrade"
5242
  msgid ""
5243
  "The upgrade was sucessfully performed. Business Directory Plugin is now "
5244
  "available."
5245
  msgstr ""
5246
 
5247
+ #: core/installer.php:1113
5248
  msgctxt "manual-upgrade"
5249
  msgid "Go to \"Directory Admin\""
5250
  msgstr ""
5251
 
5252
+ #: core/installer.php:1148
5253
  msgid "Business Directory - Installation Failed"
5254
  msgstr ""
5255
 
5256
+ #: core/installer.php:1150
5257
  msgid ""
5258
  "Business Directory installation failed. An exception with following message "
5259
  "was generated:"
5260
  msgstr ""
5261
 
5262
+ #: core/installer.php:1155
5263
  msgid "Please <contact-link>contact customer support</a>."
5264
  msgstr ""
5265
 
5509
  msgid "No listing categories found."
5510
  msgstr ""
5511
 
5512
+ #: core/templates-ui.php:194
5513
  msgid "Directory"
5514
  msgstr ""
5515
 
5516
+ #: core/templates-ui.php:201
5517
  msgid "View All Listings"
5518
  msgstr ""
5519
 
5520
+ #: core/templates-ui.php:208
5521
  msgid "Create A Listing"
5522
  msgstr ""
5523
 
5524
+ #: core/templates-ui.php:241
5525
  msgctxt "templates"
5526
  msgid "Search Listings"
5527
  msgstr ""
5528
 
5529
+ #: core/templates-ui.php:244
5530
  msgctxt "templates"
5531
  msgid "Advanced Search"
5532
  msgstr ""
5533
 
5534
+ #: core/templates-ui.php:273 core/templates-ui.php:298
5535
  msgctxt "templates sort"
5536
  msgid "Sort By:"
5537
  msgstr ""
5538
 
5539
+ #: core/templates-ui.php:292
5540
  msgctxt "sort"
5541
  msgid "Reset"
5542
  msgstr ""
5543
 
5544
+ #: core/templates-ui.php:314
5545
  msgctxt "sort"
5546
  msgid "(Reset)"
5547
  msgstr ""
languages/WPBDM-es_ES.mo CHANGED
Binary file
languages/WPBDM-es_ES.po CHANGED
@@ -4,15 +4,15 @@ msgid ""
4
  msgstr ""
5
  "Project-Id-Version: Business Directory Plugin 4.0.6\n"
6
  "Report-Msgid-Bugs-To: http://wordpress.org/tag/business-directory-plugin\n"
7
- "POT-Creation-Date: 2016-11-25 09:40:43+00:00\n"
8
- "PO-Revision-Date: 2016-11-01 18:28-0500\n"
9
  "Last-Translator: BD Team <support@businessdirectoryplugin.com>\n"
10
  "Language-Team: BD Team <support@businessdirectoryplugin.com>\n"
11
  "Language: es_ES\n"
12
  "MIME-Version: 1.0\n"
13
  "Content-Type: text/plain; charset=UTF-8\n"
14
  "Content-Transfer-Encoding: 8bit\n"
15
- "X-Generator: Poedit 1.8.11\n"
16
  "Plural-Forms: nplurals=2; plural=(n != 1);\n"
17
  "X-Poedit-Bookmarks: -1,-1,-1,-1,-1,-1,-1,-1,-1,543\n"
18
  "X-Poedit-SourceCharset: UTF-8\n"
@@ -1014,82 +1014,82 @@ msgctxt "form-fields admin"
1014
  msgid "Field deleted."
1015
  msgstr "Campo eliminado."
1016
 
1017
- #: admin/form-fields.php:272
1018
  msgctxt "form-fields admin"
1019
  msgid "Required fields created successfully."
1020
  msgstr "Campos requeridos creados satisfactoriamente."
1021
 
1022
- #: admin/form-fields.php:285
1023
  msgctxt "form-fields admin"
1024
  msgid "Title"
1025
  msgstr "Título"
1026
 
1027
- #: admin/form-fields.php:286
1028
  msgctxt "form-fields admin"
1029
  msgid "Category"
1030
  msgstr "Categoría"
1031
 
1032
- #: admin/form-fields.php:287
1033
  msgctxt "form-fields admin"
1034
  msgid "Excerpt"
1035
  msgstr "Resumen"
1036
 
1037
- #: admin/form-fields.php:288
1038
  msgctxt "form-fields admin"
1039
  msgid "Content"
1040
  msgstr "Contenido"
1041
 
1042
- #: admin/form-fields.php:289
1043
  msgctxt "form-fields admin"
1044
  msgid "Tags"
1045
  msgstr "Etiquetas"
1046
 
1047
- #: admin/form-fields.php:290
1048
  msgctxt "form-fields admin"
1049
  msgid "Address"
1050
  msgstr "Dirección"
1051
 
1052
- #: admin/form-fields.php:291
1053
  msgctxt "form-fields admin"
1054
  msgid "City"
1055
  msgstr "Ciudad"
1056
 
1057
- #: admin/form-fields.php:292
1058
  msgctxt "form-fields admin"
1059
  msgid "State"
1060
  msgstr "Estado"
1061
 
1062
- #: admin/form-fields.php:293
1063
  msgctxt "form-fields admin"
1064
  msgid "ZIP Code"
1065
  msgstr "Código Postal"
1066
 
1067
- #: admin/form-fields.php:294
1068
  msgctxt "form-fields admin"
1069
  msgid "FAX Number"
1070
  msgstr "Número de Fax"
1071
 
1072
- #: admin/form-fields.php:295
1073
  msgctxt "form-fields admin"
1074
  msgid "Phone Number"
1075
  msgstr "Número telefónico"
1076
 
1077
- #: admin/form-fields.php:296
1078
  msgctxt "form-fields admin"
1079
  msgid "Ratings Field"
1080
  msgstr "Campo de ratings"
1081
 
1082
- #: admin/form-fields.php:297
1083
  msgctxt "form-fields admin"
1084
  msgid "Twitter"
1085
  msgstr "Twitter"
1086
 
1087
- #: admin/form-fields.php:298
1088
  msgctxt "form-fields admin"
1089
  msgid "Website"
1090
  msgstr "Sitio web"
1091
 
1092
- #: admin/form-fields.php:319
1093
  msgctxt "form-fields admin"
1094
  msgid "Tags updated."
1095
  msgstr "Etiquetas actualizadas."
@@ -2243,7 +2243,6 @@ msgstr ""
2243
  "Por favor vea la <a>documentación de Campos de Formulario</a> para más "
2244
  "detalles."
2245
 
2246
- #. #-#-#-#-# WPBDM.pot (Business Directory Plugin 4.1.5dev6) #-#-#-#-#
2247
  #. Plugin Name of the plugin/theme
2248
  #: admin/templates/header.tpl.php:4
2249
  msgid "Business Directory Plugin"
@@ -3012,33 +3011,33 @@ msgctxt "tracking"
3012
  msgid "Allow Tracking"
3013
  msgstr "Permitir Seguimiento"
3014
 
3015
- #: business-directory-plugin.php:667
3016
  msgctxt "admin plugins"
3017
  msgid "Settings"
3018
  msgstr "Configuración"
3019
 
3020
- #: business-directory-plugin.php:775 business-directory-plugin.php:782
3021
  msgctxt "rss feed"
3022
  msgid "%s Feed"
3023
  msgstr "Feed %s"
3024
 
3025
- #: business-directory-plugin.php:1117 core/view-submit-listing.php:58
3026
  #: core/views/submit_listing.php:10
3027
  msgctxt "views"
3028
  msgid "Submit A Listing"
3029
  msgstr "Enviar un Listado"
3030
 
3031
- #: business-directory-plugin.php:1122
3032
  msgctxt "title"
3033
  msgid "Find a Listing"
3034
  msgstr "Encontrar un listado"
3035
 
3036
- #: business-directory-plugin.php:1127
3037
  msgctxt "title"
3038
  msgid "View All Listings"
3039
  msgstr "Ver Listados"
3040
 
3041
- #: business-directory-plugin.php:1156
3042
  msgctxt "title"
3043
  msgid "Listings tagged: %s"
3044
  msgstr "Listados etiquetados: %s"
@@ -3107,18 +3106,18 @@ msgctxt "form-fields-api"
3107
  msgid "Invalid form field type"
3108
  msgstr "Tipo de campo inválido"
3109
 
3110
- #: core/class-form-field.php:498
3111
  msgctxt "form-fields-api"
3112
  msgid "Field label is required."
3113
  msgstr "El nombre del campo es requerido."
3114
 
3115
- #: core/class-form-field.php:508
3116
  msgctxt "form-fields-api"
3117
  msgid "Requested field type change is incompatible. Type will not be modified."
3118
  msgstr ""
3119
  "El cambio de tipo de campo es incompatible. El tipo no será modificado."
3120
 
3121
- #: core/class-form-field.php:528
3122
  msgctxt "form-fields-api"
3123
  msgid ""
3124
  "There can only be one field with association \"%s\". Please select another "
@@ -3127,17 +3126,17 @@ msgstr ""
3127
  "Solo puede haber un campo con asociación \"%s\". Por favor elija otra "
3128
  "asociación."
3129
 
3130
- #: core/class-form-field.php:538
3131
  msgctxt "form-fields-api"
3132
  msgid "\"%s\" is an invalid field type for this association."
3133
  msgstr "\"%s\" es un tipo de campo inválido para esta asociación."
3134
 
3135
- #: core/class-form-field.php:576
3136
  msgctxt "form-fields-api"
3137
  msgid "Invalid field ID"
3138
  msgstr "ID de campo inválido"
3139
 
3140
- #: core/class-form-field.php:585
3141
  msgctxt "form-fields api"
3142
  msgid ""
3143
  "This form field can't be deleted because it is required for the plugin to "
@@ -3146,13 +3145,12 @@ msgstr ""
3146
  "Este campo de formulario no puede eliminarse porque es requerido para el "
3147
  "funcionamiento del plugin."
3148
 
3149
- #: core/class-form-field.php:597
3150
  msgctxt "form-fields-api"
3151
  msgid "An error occurred while trying to delete this field."
3152
  msgstr "Un error ocurrió mientras se trataba de eliminar este campo."
3153
 
3154
  #: core/class-gateway.php:133
3155
- #, fuzzy
3156
  msgctxt "billing info"
3157
  msgid "Please enter a valid e-mail address."
3158
  msgstr "Por favor ingrese un correo electrónico válido."
@@ -3207,12 +3205,12 @@ msgctxt "listing"
3207
  msgid "(Fee Unavailable)"
3208
  msgstr "(Comisión no disponible)"
3209
 
3210
- #: core/class-listings-api.php:306
3211
  msgctxt "notify email"
3212
  msgid "[%s] New listing notification"
3213
  msgstr "[%s] Notificación de nuevo listado"
3214
 
3215
- #: core/class-listings-api.php:325
3216
  msgctxt "notify email"
3217
  msgid "[%s] Listing edit notification"
3218
  msgstr "[%s] Notificación de listado editado"
@@ -3597,13 +3595,13 @@ msgctxt "admin settings"
3597
  msgid "Enable AJAX compatibility mode?"
3598
  msgstr "Habilitar modo de compatibilidad AJAX?"
3599
 
3600
- #: core/class-settings.php:181 core/class-settings.php:665
3601
  msgctxt "admin settings"
3602
  msgid "Listings"
3603
  msgstr "Listados"
3604
 
3605
- #: core/class-settings.php:182 core/class-settings.php:335
3606
- #: core/class-settings.php:622
3607
  msgctxt "admin settings"
3608
  msgid "General Settings"
3609
  msgstr "Configuración General"
@@ -3674,52 +3672,75 @@ msgstr ""
3674
  "Utilice esta opción para prevenir el SPAM a los dueños de los listados. 0 "
3675
  "significa ilimitados contactos por día."
3676
 
3677
- #: core/class-settings.php:220
3678
  msgctxt "admin settings"
3679
  msgid "Include comment form on listing pages?"
3680
  msgstr "Incluir formulario de comentarios en las páginas de los listados?"
3681
 
3682
- #: core/class-settings.php:223
3683
  msgctxt "admin settings"
3684
  msgid ""
3685
- "Allow visitors to discuss listings using the standard WordPress comment "
3686
- "form. Comments are public."
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
3687
  msgstr ""
3688
- "Permite a los visitantes discutir un listado utilizando el formulario de "
3689
- "comentarios estándar de WordPress. Todos los comentarios (no SPAM) son "
3690
- "públicos."
3691
 
3692
- #: core/class-settings.php:224
3693
  msgctxt "admin settings"
3694
  msgid "Show listings under categories on main page?"
3695
  msgstr "Mostrar listados bajo las categorías en la página principal?"
3696
 
3697
- #: core/class-settings.php:225
3698
  msgctxt "admin settings"
3699
  msgid "Status of listings upon uninstalling plugin"
3700
  msgstr "Estado de los listados luego de desinstalado el plugin"
3701
 
3702
- #: core/class-settings.php:226 core/class-settings.php:228
3703
  msgctxt "post status"
3704
  msgid "Draft"
3705
  msgstr "Borrador"
3706
 
3707
- #: core/class-settings.php:226 core/class-settings.php:228
3708
  msgctxt "post status"
3709
  msgid "Trash"
3710
  msgstr "Papelera"
3711
 
3712
- #: core/class-settings.php:227
3713
  msgctxt "admin settings"
3714
  msgid "Status of deleted listings"
3715
  msgstr "Estado de los listados eliminados"
3716
 
3717
- #: core/class-settings.php:229
3718
  msgctxt "admin settings"
3719
  msgid "Submit Listing instructions message"
3720
  msgstr "Mensaje de instrucciones de envío de listado"
3721
 
3722
- #: core/class-settings.php:229
3723
  msgctxt "admin settings"
3724
  msgid ""
3725
  "This text is displayed at the first page of the Submit Listing process for "
@@ -3731,22 +3752,22 @@ msgstr ""
3731
  "formulario o cualquier otra información que desee que los usuarios vean "
3732
  "antes de comenzar."
3733
 
3734
- #: core/class-settings.php:231
3735
  msgctxt "admin settings"
3736
  msgid "Listing Renewal"
3737
  msgstr "Renovación de Listados"
3738
 
3739
- #: core/class-settings.php:232
3740
  msgctxt "admin settings"
3741
  msgid "Turn on listing renewal option?"
3742
  msgstr "Habilitar la renovación de listados?"
3743
 
3744
- #: core/class-settings.php:235
3745
  msgctxt "admin settings"
3746
  msgid "Allow recurring renewal payments?"
3747
  msgstr "Permitir pagos recurrentes?"
3748
 
3749
- #: core/class-settings.php:238
3750
  msgctxt "admin settings"
3751
  msgid ""
3752
  "Allow users to opt in for automatic renewal of their listings. The fee is "
@@ -3756,12 +3777,12 @@ msgstr ""
3756
  "comisión será cobrada en el momento en el que el listado llegue a su "
3757
  "vencimiento, sin necesidad de intervención."
3758
 
3759
- #: core/class-settings.php:242
3760
  msgctxt "admin settings"
3761
  msgid "Use recurring payments as the default payment method?"
3762
  msgstr "Utilizar cobro recurrente como método de pago por defecto?"
3763
 
3764
- #: core/class-settings.php:245
3765
  msgctxt "admin settings"
3766
  msgid ""
3767
  "Enable automatic renewal without having users opt in during the submit "
@@ -3770,12 +3791,12 @@ msgstr ""
3770
  "Habilitar la renovación automática sin que los usuarios deban optar por ella "
3771
  "durante el proceso de envío del listado."
3772
 
3773
- #: core/class-settings.php:250
3774
  msgctxt "admin settings"
3775
  msgid "Listing renewal e-mail threshold (in days)"
3776
  msgstr "Rango de envío del correo electrónico de renovación (en días)"
3777
 
3778
- #: core/class-settings.php:253
3779
  msgctxt "admin settings"
3780
  msgid ""
3781
  "Configure how many days before listing expiration is the renewal e-mail sent."
@@ -3783,7 +3804,7 @@ msgstr ""
3783
  "Configure con cuántos días de anticipación debe informarse al usuario que su "
3784
  "listado está a punto de expirar."
3785
 
3786
- #: core/class-settings.php:257
3787
  msgctxt "admin settings"
3788
  msgid ""
3789
  "Send expiration notices including a cancel links to auto-renewed listings?"
@@ -3791,18 +3812,18 @@ msgstr ""
3791
  "Enviar notificaciones de expiración incluyendo enlaces para cancelar a los "
3792
  "listados auto-renovados?"
3793
 
3794
- #: core/class-settings.php:264
3795
  msgctxt "admin settings"
3796
  msgid "Remind listing owners of expired listings (past due)?"
3797
  msgstr ""
3798
  "Recordar a los dueños de listados expirados (después de su expiración)?"
3799
 
3800
- #: core/class-settings.php:269
3801
  msgctxt "admin settings"
3802
  msgid "Listing renewal reminder e-mail threshold (in days)"
3803
  msgstr "Rango de envío del recordatorio de renovación (en días)"
3804
 
3805
- #: core/class-settings.php:272
3806
  msgctxt "admin settings"
3807
  msgid ""
3808
  "Configure how many days after the expiration of a listing an e-mail reminder "
@@ -3811,174 +3832,174 @@ msgstr ""
3811
  "Configure con cuántos días después de la fecha de expiración de un listado "
3812
  "debe enviarse un recordatorio al dueño."
3813
 
3814
- #: core/class-settings.php:275
3815
  msgctxt "admin settings"
3816
  msgid "Post/Category Settings"
3817
  msgstr "Configuraciones de publicaciones/categorías"
3818
 
3819
- #: core/class-settings.php:276
3820
  msgctxt "admin settings"
3821
  msgid "Default new post status"
3822
  msgstr "Estado por defecto de nuevas publicaciones"
3823
 
3824
- #: core/class-settings.php:277 core/class-settings.php:280
3825
  msgctxt "post status"
3826
  msgid "Published"
3827
  msgstr "Publicado"
3828
 
3829
- #: core/class-settings.php:277 core/class-settings.php:280
3830
  msgctxt "post status"
3831
  msgid "Pending"
3832
  msgstr "Pendiente"
3833
 
3834
- #: core/class-settings.php:279
3835
  msgctxt "admin settings"
3836
  msgid "Edit post status"
3837
  msgstr "Estado tras edición de una publicación"
3838
 
3839
- #: core/class-settings.php:281
3840
  msgctxt "admin settings"
3841
  msgid "Order categories list by"
3842
  msgstr "Ordenar la lista de categorías por"
3843
 
3844
- #: core/class-settings.php:283
3845
  msgctxt "admin settings"
3846
  msgid "Name"
3847
  msgstr "Nombre"
3848
 
3849
- #: core/class-settings.php:284
3850
  msgctxt "admin settings"
3851
  msgid "Slug"
3852
  msgstr "Slug"
3853
 
3854
- #: core/class-settings.php:285
3855
  msgctxt "admin settings"
3856
  msgid "Listing Count"
3857
  msgstr "Conteo de Listados"
3858
 
3859
- #: core/class-settings.php:287
3860
  msgctxt "admin settings"
3861
  msgid "Sort order for categories"
3862
  msgstr "Orden de las categorías"
3863
 
3864
- #: core/class-settings.php:288 core/class-settings.php:306
3865
  msgctxt "admin settings"
3866
  msgid "Ascending"
3867
  msgstr "Ascendente"
3868
 
3869
- #: core/class-settings.php:288 core/class-settings.php:306
3870
  msgctxt "admin settings"
3871
  msgid "Descending"
3872
  msgstr "Descendente"
3873
 
3874
- #: core/class-settings.php:289
3875
  msgctxt "admin settings"
3876
  msgid "Show category post count?"
3877
  msgstr "Mostrar conteo de listados para cada categoría?"
3878
 
3879
- #: core/class-settings.php:290
3880
  msgctxt "admin settings"
3881
  msgid "Hide empty categories?"
3882
  msgstr "Ocultar categorías vacías?"
3883
 
3884
- #: core/class-settings.php:291
3885
  msgctxt "admin settings"
3886
  msgid "Show only parent categories in category list?"
3887
  msgstr ""
3888
  "Mostrar únicamente las categorías de primer nivel en la lista de categorías?"
3889
 
3890
- #: core/class-settings.php:293
3891
  msgctxt "admin settings"
3892
  msgid "Listings Sorting"
3893
  msgstr "Ordenamiento de Listados"
3894
 
3895
- #: core/class-settings.php:294
3896
  msgctxt "admin settings"
3897
  msgid "Order directory listings by"
3898
  msgstr "Ordenar los listados del Directorio por"
3899
 
3900
- #: core/class-settings.php:296
3901
  msgctxt "admin settings"
3902
  msgid "Title"
3903
  msgstr "Título"
3904
 
3905
- #: core/class-settings.php:297
3906
  msgctxt "admin settings"
3907
  msgid "Author"
3908
  msgstr "Autor"
3909
 
3910
- #: core/class-settings.php:298 core/class-settings.php:708
3911
  msgctxt "admin settings"
3912
  msgid "Date posted"
3913
  msgstr "Fecha de publicación"
3914
 
3915
- #: core/class-settings.php:299 core/class-settings.php:709
3916
  msgctxt "admin settings"
3917
  msgid "Date last modified"
3918
  msgstr "Fecha de última modificación"
3919
 
3920
- #: core/class-settings.php:300
3921
  msgctxt "admin settings"
3922
  msgid "Random"
3923
  msgstr "Aleatorio"
3924
 
3925
- #: core/class-settings.php:301
3926
  msgctxt "admin settings"
3927
  msgid "Paid first then free. Inside each group by date."
3928
  msgstr "Pagos primero, luego gratuitos. Dentro de cada grupo, por fecha."
3929
 
3930
- #: core/class-settings.php:302
3931
  msgctxt "admin settings"
3932
  msgid "Paid first then free. Inside each group by title."
3933
  msgstr "Pagos primero, luego gratuitos. Dentro de cada grupo por título."
3934
 
3935
- #: core/class-settings.php:304
3936
  msgctxt "admin settings"
3937
  msgid "Sort directory listings by"
3938
  msgstr "Orden de los listados"
3939
 
3940
- #: core/class-settings.php:305
3941
  msgctxt "admin settings"
3942
  msgid "Ascending for ascending order A-Z, Descending for descending order Z-A"
3943
  msgstr ""
3944
  "Ascendente para orden alfabético A-Z; Descendente para orden alfabético Z-A"
3945
 
3946
- #: core/class-settings.php:310
3947
  msgctxt "admin settings"
3948
  msgid "Enable sort bar?"
3949
  msgstr "Habilitar barra de ordenamiento?"
3950
 
3951
- #: core/class-settings.php:315
3952
  msgctxt "admin settings"
3953
  msgid "Sortbar Fields"
3954
  msgstr "Campos de \"barra de ordenamiento\""
3955
 
3956
- #: core/class-settings.php:324
3957
  msgctxt "admin settings"
3958
  msgid "Featured (Sticky) listing settings"
3959
  msgstr "Configuración de Listados Destacados"
3960
 
3961
- #: core/class-settings.php:325
3962
  msgctxt "admin settings"
3963
  msgid "Offer sticky listings?"
3964
  msgstr "Ofrecer listados destacados?"
3965
 
3966
- #: core/class-settings.php:326
3967
  msgctxt "admin settings"
3968
  msgid "Offer upgrades during submit process?"
3969
  msgstr "Ofrecer mejoras a destacado durante el proceso de envío?"
3970
 
3971
- #: core/class-settings.php:327
3972
  msgctxt "admin settings"
3973
  msgid "Sticky listing price"
3974
  msgstr "Precio de Listado Destacado"
3975
 
3976
- #: core/class-settings.php:328
3977
  msgctxt "admin settings"
3978
  msgid "Sticky listing page description text"
3979
  msgstr "Texto descriptivo para Listados Destacados"
3980
 
3981
- #: core/class-settings.php:329
3982
  msgctxt "admin settings"
3983
  msgid ""
3984
  "You can upgrade your listing to featured status. Featured listings will "
@@ -3987,17 +4008,17 @@ msgstr ""
3987
  "Puede actualizar su listado a Destacado. Los listados destacados aparecen "
3988
  "siempre encima de los listados regulares."
3989
 
3990
- #: core/class-settings.php:334
3991
  msgctxt "admin settings"
3992
  msgid "E-Mail"
3993
  msgstr "Correo Electrónico"
3994
 
3995
- #: core/class-settings.php:338
3996
  msgctxt "admin settings"
3997
  msgid "Display email address fields publicly?"
3998
  msgstr "Mostrar direcciones de correo electrónico públicamente?"
3999
 
4000
- #: core/class-settings.php:341
4001
  msgctxt "admin settings"
4002
  msgid ""
4003
  "Shows the email address of the listing owner to all web users. NOT "
@@ -4008,12 +4029,12 @@ msgstr ""
4008
  "a todos los usuarios. NO RECOMENDADO pues puede resultar en un aumento de "
4009
  "spam."
4010
 
4011
- #: core/class-settings.php:344
4012
  msgctxt "admin settings"
4013
  msgid "How to determine the listing's email address?"
4014
  msgstr "Cómo determinar el correo electrónico de un listado?"
4015
 
4016
- #: core/class-settings.php:347
4017
  msgctxt "admin settings"
4018
  msgid ""
4019
  "This affects emails sent to listing owners via contact forms or when their "
@@ -4022,127 +4043,127 @@ msgstr ""
4022
  "Esta configuración afecta cómo los dueños de los listados son contactados "
4023
  "cuando sus listados expiran o a través de los formularios de contacto."
4024
 
4025
- #: core/class-settings.php:349
4026
  msgctxt "admin settings"
4027
  msgid "Try listing's email field first, then author's email."
4028
  msgstr "Intentar con el correo-e del listado, luego el del autor."
4029
 
4030
- #: core/class-settings.php:350
4031
  msgctxt "admin settings"
4032
  msgid "Try author's email first and then listing's email field."
4033
  msgstr ""
4034
  "Intentar con el correo-e del autor primero, luego el del campo de correo del "
4035
  "listado."
4036
 
4037
- #: core/class-settings.php:354
4038
  msgctxt "admin settings"
4039
  msgid "E-Mail Notifications"
4040
  msgstr "Notificaciones de correo-e"
4041
 
4042
- #: core/class-settings.php:357
4043
  msgctxt "admin settings"
4044
  msgid "Notify admin via e-mail when..."
4045
  msgstr "Notificar al administrador cuando..."
4046
 
4047
- #: core/class-settings.php:361
4048
  msgctxt "admin settings"
4049
  msgid "A new listing is submitted."
4050
  msgstr "Un nuevo listado ha sido enviado."
4051
 
4052
- #: core/class-settings.php:362
4053
  msgctxt "admin settings"
4054
  msgid "A listing is edited."
4055
  msgstr "Un listado es editado."
4056
 
4057
- #: core/class-settings.php:363
4058
  msgctxt "admin settings"
4059
  msgid "A listing expires."
4060
  msgstr "Un listado expira."
4061
 
4062
- #: core/class-settings.php:364
4063
  msgctxt "admin settings"
4064
  msgid "A contact message is sent to a listing's owner."
4065
  msgstr "Un mensaje de contacto es enviado al dueño del listado."
4066
 
4067
- #: core/class-settings.php:370
4068
  msgctxt "admin settings"
4069
  msgid "CC this e-mail address too"
4070
  msgstr "Copiar a esta dirección de correo también"
4071
 
4072
- #: core/class-settings.php:376
4073
  msgctxt "admin settings"
4074
  msgid "Notify users via e-mail when..."
4075
  msgstr "Notificar usuarios vía correo-e cuando..."
4076
 
4077
- #: core/class-settings.php:379
4078
  msgctxt "admin settings"
4079
  msgid "You can modify the text template used for most of these e-mails below."
4080
  msgstr ""
4081
  "Puede modificar la plantilla de texto utilizada para la mayoría de estos "
4082
  "correos electrónicos abajo."
4083
 
4084
- #: core/class-settings.php:380
4085
  msgctxt "admin settings"
4086
  msgid "Their listing is submitted."
4087
  msgstr "Su listado ha sido recibido."
4088
 
4089
- #: core/class-settings.php:381
4090
  msgctxt "admin settings"
4091
  msgid "Their listing is approved/published."
4092
  msgstr "Su listado ha sido aprobado/publicado."
4093
 
4094
- #: core/class-settings.php:390
4095
  msgctxt "contact email"
4096
  msgid "You have received a reply from your listing at %s."
4097
  msgstr "Ha recibido una comunicación para su listado en %s."
4098
 
4099
- #: core/class-settings.php:391
4100
  msgctxt "contact email"
4101
  msgid "Name: %s"
4102
  msgstr "Nombre: %s"
4103
 
4104
- #: core/class-settings.php:392
4105
  msgctxt "contact email"
4106
  msgid "E-Mail: %s"
4107
  msgstr "Correo Electrónico: %s"
4108
 
4109
- #: core/class-settings.php:393
4110
  msgctxt "contact email"
4111
  msgid "Message:"
4112
  msgstr "Mensaje:"
4113
 
4114
- #: core/class-settings.php:395
4115
  msgctxt "contact email"
4116
  msgid "Time: %s"
4117
  msgstr "Hora: %s"
4118
 
4119
- #: core/class-settings.php:397
4120
  msgctxt "admin settings"
4121
  msgid "E-Mail Templates"
4122
  msgstr "Plantillas de Correo Electrónico"
4123
 
4124
- #: core/class-settings.php:400
4125
  msgctxt "admin settings"
4126
  msgid "Email confirmation message"
4127
  msgstr "Mensaje de Confirmación"
4128
 
4129
- #: core/class-settings.php:404
4130
  msgctxt "admin settings"
4131
  msgid "Sent after a listing has been submitted."
4132
  msgstr "Enviado luego de que el listado ha sido recibido."
4133
 
4134
- #: core/class-settings.php:405 core/class-settings.php:413
4135
- #: core/class-settings.php:454
4136
  msgctxt "admin settings"
4137
  msgid "Listing's title"
4138
  msgstr "Título del Listado"
4139
 
4140
- #: core/class-settings.php:408
4141
  msgctxt "admin settings"
4142
  msgid "Listing published message"
4143
  msgstr "Mensaje de listado publicado"
4144
 
4145
- #: core/class-settings.php:411
4146
  msgctxt "admin settings"
4147
  msgid ""
4148
  "Your listing \"[listing]\" is now available at [listing-url] and can be "
@@ -4151,23 +4172,23 @@ msgstr ""
4151
  "Su listado \"[listing]\" está ahora disponible en [listing-url] y puede ser "
4152
  "visto por el público."
4153
 
4154
- #: core/class-settings.php:412
4155
  msgctxt "admin settings"
4156
  msgid "Sent when the listing has been published or approved by an admin."
4157
  msgstr ""
4158
  "Enviado cuando el listado ha sido publicado o aprobado por un administrador."
4159
 
4160
- #: core/class-settings.php:414
4161
  msgctxt "admin settings"
4162
  msgid "Listing's URL"
4163
  msgstr "URL del listado"
4164
 
4165
- #: core/class-settings.php:418
4166
  msgctxt "admin settings"
4167
  msgid "Listing Contact Message"
4168
  msgstr "Mensaje de contacto"
4169
 
4170
- #: core/class-settings.php:422
4171
  msgctxt "admin settings"
4172
  msgid ""
4173
  "Sent to listing owners when someone uses the contact form on their listing "
@@ -4176,34 +4197,34 @@ msgstr ""
4176
  "Enviado a los dueños de listados cuando alguien utiliza el formulario de "
4177
  "contacto en sus páginas."
4178
 
4179
- #: core/class-settings.php:432
4180
  msgctxt "admin settings"
4181
  msgid "Payment related"
4182
  msgstr "Relativo al pago"
4183
 
4184
- #: core/class-settings.php:449
4185
  msgctxt "admin settings"
4186
  msgid "Payment abandoned reminder message"
4187
  msgstr "Recordatorio de pagos abandonados"
4188
 
4189
- #: core/class-settings.php:453
4190
  msgctxt "admin settings"
4191
  msgid "Sent some time after a pending payment is abandoned by users."
4192
  msgstr ""
4193
  "Enviado algún tiempo después de que un pago pendiente es abandonado por los "
4194
  "usuarios."
4195
 
4196
- #: core/class-settings.php:455
4197
  msgctxt "admin settings"
4198
  msgid "Checkout URL link"
4199
  msgstr "Link a la URL de pago"
4200
 
4201
- #: core/class-settings.php:461
4202
  msgctxt "admin settings"
4203
  msgid "Renewal Reminders"
4204
  msgstr "Recordatorios de Renovación"
4205
 
4206
- #: core/class-settings.php:464
4207
  msgctxt "admin settings"
4208
  msgid ""
4209
  "This section refers only to the text of the renewal/expiration notices. You "
@@ -4213,12 +4234,12 @@ msgstr ""
4213
  "renovación/expiración. También puede <a>configurar cuándo estos correos son "
4214
  "enviados</a>."
4215
 
4216
- #: core/class-settings.php:468
4217
  msgctxt "admin settings"
4218
  msgid "Pending expiration e-mail message"
4219
  msgstr "Mensaje correo electrónico sobre expiración pendiente"
4220
 
4221
- #: core/class-settings.php:472
4222
  msgctxt "settings"
4223
  msgid ""
4224
  "Sent some time before the listing expires. Applies to non-recurring renewals "
@@ -4227,50 +4248,50 @@ msgstr ""
4227
  "Enviado un tiempo antes de que el listado expire. Aplica para renovaciones "
4228
  "no recurrentes únicamente."
4229
 
4230
- #: core/class-settings.php:473 core/class-settings.php:486
4231
- #: core/class-settings.php:499 core/class-settings.php:512
4232
- #: core/class-settings.php:525
4233
  msgctxt "settings"
4234
  msgid "Listing's name (with link)"
4235
  msgstr "Título del listado (con enlace)"
4236
 
4237
- #: core/class-settings.php:474 core/class-settings.php:487
4238
- #: core/class-settings.php:500 core/class-settings.php:513
4239
- #: core/class-settings.php:526
4240
  msgctxt "settings"
4241
  msgid "Author's name"
4242
  msgstr "Autor del listado"
4243
 
4244
- #: core/class-settings.php:475 core/class-settings.php:488
4245
- #: core/class-settings.php:527
4246
  msgctxt "settings"
4247
  msgid "Expiration date"
4248
  msgstr "Fecha de expiración"
4249
 
4250
- #: core/class-settings.php:476
4251
  msgctxt "settings"
4252
  msgid "Category that is going to expire"
4253
  msgstr "Categoría que va a expirar"
4254
 
4255
- #: core/class-settings.php:477 core/class-settings.php:490
4256
- #: core/class-settings.php:529
4257
  msgctxt "settings"
4258
  msgid "Link to renewal page"
4259
  msgstr "Enlace a la página de renovación"
4260
 
4261
- #: core/class-settings.php:478 core/class-settings.php:491
4262
- #: core/class-settings.php:503 core/class-settings.php:516
4263
- #: core/class-settings.php:530
4264
  msgctxt "settings"
4265
  msgid "Link to your site"
4266
  msgstr "Enlace a su sitio"
4267
 
4268
- #: core/class-settings.php:481
4269
  msgctxt "admin settings"
4270
  msgid "Listing Renewal e-mail message"
4271
  msgstr "Mensaje de correo electrónico sobre Renovación del Listado"
4272
 
4273
- #: core/class-settings.php:485
4274
  msgctxt "settings"
4275
  msgid ""
4276
  "Sent at the time of listing expiration. Applies to non-recurring renewals "
@@ -4279,17 +4300,17 @@ msgstr ""
4279
  "Enviado al momento de expiración del listado. Aplica a renovaciones no "
4280
  "recurrentes únicamente."
4281
 
4282
- #: core/class-settings.php:489 core/class-settings.php:528
4283
  msgctxt "settings"
4284
  msgid "Category that expired"
4285
  msgstr "Categoría que expiró"
4286
 
4287
- #: core/class-settings.php:494
4288
  msgctxt "admin settings"
4289
  msgid "Listing auto-renewal reminder (recurring payments)"
4290
  msgstr "Recordatorio de auto-renovación del listado (pagos recurrentes)"
4291
 
4292
- #: core/class-settings.php:498
4293
  msgctxt "settings"
4294
  msgid ""
4295
  "Sent some time before the listing is auto-renewed. Applies to recurring "
@@ -4298,29 +4319,29 @@ msgstr ""
4298
  "Enviado algún tiempo antes de que el listado sea auto-renovado. Aplica a "
4299
  "renovaciones recurrentes únicamente."
4300
 
4301
- #: core/class-settings.php:501 core/class-settings.php:515
4302
  msgctxt "settings"
4303
  msgid "Renewal date"
4304
  msgstr "Fecha de renovación"
4305
 
4306
- #: core/class-settings.php:502
4307
  msgctxt "settings"
4308
  msgid "Category that is going to be renewed"
4309
  msgstr "Categoría que será renovada"
4310
 
4311
- #: core/class-settings.php:504
4312
  msgctxt "settings"
4313
  msgid "Link to manage subscriptions"
4314
  msgstr "Enlace a la página de administración de pagos recurrentes"
4315
 
4316
- #: core/class-settings.php:507
4317
  msgctxt "admin settings"
4318
  msgid "Listing Renewal e-mail message (recurring payments)"
4319
  msgstr ""
4320
  "Mensaje de correo electrónico sobre Renovación del Listado (para pago "
4321
  "automático)"
4322
 
4323
- #: core/class-settings.php:511
4324
  msgctxt "settings"
4325
  msgid ""
4326
  "Sent after the listing is auto-renewed. Applies to recurring renewals only."
@@ -4328,17 +4349,17 @@ msgstr ""
4328
  "Enviado luego de que el listado sea auto-renovado. Aplica a renovaciones "
4329
  "recurrentes únicamente."
4330
 
4331
- #: core/class-settings.php:514
4332
  msgctxt "settings"
4333
  msgid "Renewed category"
4334
  msgstr "Categoría renovada"
4335
 
4336
- #: core/class-settings.php:520
4337
  msgctxt "admin settings"
4338
  msgid "Renewal reminder e-mail message"
4339
  msgstr "Recordatorio por correo electrónico de renovación del listado"
4340
 
4341
- #: core/class-settings.php:524
4342
  msgctxt "settings"
4343
  msgid ""
4344
  "Sent some time after listing expiration and when no renewal has occurred. "
@@ -4347,32 +4368,32 @@ msgstr ""
4347
  "Enviado un tiempo después de que el listado expire y no haya sido renovado. "
4348
  "Aplica tanto a renovaciones recurrentes como no recurrentes."
4349
 
4350
- #: core/class-settings.php:534
4351
  msgctxt "admin settings"
4352
  msgid "Payment"
4353
  msgstr "Pago"
4354
 
4355
- #: core/class-settings.php:535
4356
  msgctxt "admin settings"
4357
  msgid "Payment Settings"
4358
  msgstr "Configuración de Pago"
4359
 
4360
- #: core/class-settings.php:538
4361
  msgctxt "admin settings"
4362
  msgid "Turn On payments?"
4363
  msgstr "Activar pagos?"
4364
 
4365
- #: core/class-settings.php:540
4366
  msgctxt "admin settings"
4367
  msgid "Put payment gateways in test mode?"
4368
  msgstr "Utilizar las pasarelas de pago en modo de prueba?"
4369
 
4370
- #: core/class-settings.php:545
4371
  msgctxt "admin settings"
4372
  msgid "Perform checkouts on the secure (HTTPS) version of your site?"
4373
  msgstr "Realizar pagos en la versión segura (HTTPS) de su sitio?"
4374
 
4375
- #: core/class-settings.php:548
4376
  msgctxt "admin settings"
4377
  msgid ""
4378
  "Recommended for added security. For this to work you need to enable HTTPS on "
@@ -4381,162 +4402,162 @@ msgstr ""
4381
  "Recomendado para seguridad extra. Para que funcione debe tener habilitado "
4382
  "HTTPS en su servidor y <a>obtener un certificado SSL</a>."
4383
 
4384
- #: core/class-settings.php:552
4385
  msgctxt "admin settings"
4386
  msgid "Currency Code"
4387
  msgstr "Código de Moneda"
4388
 
4389
- #: core/class-settings.php:554
4390
  msgctxt "admin settings"
4391
  msgid "Australian Dollar (AUD)"
4392
  msgstr "Dólar Australiano (AUD)"
4393
 
4394
- #: core/class-settings.php:555
4395
  msgctxt "admin settings"
4396
  msgid "Brazilian Real (BRL)"
4397
  msgstr "Real Brasilero (BRL)"
4398
 
4399
- #: core/class-settings.php:556
4400
  msgctxt "admin settings"
4401
  msgid "Canadian Dollar (CAD)"
4402
  msgstr "Dólar Canadiense (CAD)"
4403
 
4404
- #: core/class-settings.php:557
4405
  msgctxt "admin settings"
4406
  msgid "Czech Koruna (CZK)"
4407
  msgstr "Corona Checa (CZK)"
4408
 
4409
- #: core/class-settings.php:558
4410
  msgctxt "admin settings"
4411
  msgid "Danish Krone (DKK)"
4412
  msgstr "Corona Danesa (DKK)"
4413
 
4414
- #: core/class-settings.php:559
4415
  msgctxt "admin settings"
4416
  msgid "Euro (EUR)"
4417
  msgstr "Euro (EUR)"
4418
 
4419
- #: core/class-settings.php:560
4420
  msgctxt "admin settings"
4421
  msgid "Hong Kong Dollar (HKD)"
4422
  msgstr "Dólar de Hong Kong (HKD)"
4423
 
4424
- #: core/class-settings.php:561
4425
  msgctxt "admin settings"
4426
  msgid "Hungarian Forint (HUF)"
4427
  msgstr "Forinte Húngaro (HUF)"
4428
 
4429
- #: core/class-settings.php:562
4430
  msgctxt "admin settings"
4431
  msgid "Israeli New Shequel (ILS)"
4432
  msgstr "Nuevo Shékel Israelí (ILS)"
4433
 
4434
- #: core/class-settings.php:563
4435
  msgctxt "admin settings"
4436
  msgid "Japanese Yen (JPY)"
4437
  msgstr "Yen Japonés (JPY)"
4438
 
4439
- #: core/class-settings.php:564
4440
  msgctxt "admin settings"
4441
  msgid "Malasian Ringgit (MYR)"
4442
  msgstr "Ringgit de Malasia (MYR)"
4443
 
4444
- #: core/class-settings.php:565
4445
  msgctxt "admin settings"
4446
  msgid "Mexican Peso (MXN)"
4447
  msgstr "Peso Mexicano (MXN)"
4448
 
4449
- #: core/class-settings.php:566
4450
  msgctxt "admin settings"
4451
  msgid "Norwegian Krone (NOK)"
4452
  msgstr "Corona Noruega (NOK)"
4453
 
4454
- #: core/class-settings.php:567
4455
  msgctxt "admin settings"
4456
  msgid "New Zealand Dollar (NZD)"
4457
  msgstr "Dólar de Nueva Zelanda (NZD)"
4458
 
4459
- #: core/class-settings.php:568
4460
  msgctxt "admin settings"
4461
  msgid "Philippine Peso (PHP)"
4462
  msgstr "Peso Filipino (PHP)"
4463
 
4464
- #: core/class-settings.php:569
4465
  msgctxt "admin settings"
4466
  msgid "Polish Zloty (PLN)"
4467
  msgstr "Zloty Polaco (PLN)"
4468
 
4469
- #: core/class-settings.php:570
4470
  msgctxt "admin settings"
4471
  msgid "Pound Sterling (GBP)"
4472
  msgstr "Libra Esterlina (GBP)"
4473
 
4474
- #: core/class-settings.php:571
4475
  msgctxt "admin settings"
4476
  msgid "Singapore Dollar (SGD)"
4477
  msgstr "Dólar de Singapur (SGD)"
4478
 
4479
- #: core/class-settings.php:572
4480
  msgctxt "admin settings"
4481
  msgid "Swedish Krona (SEK)"
4482
  msgstr "Corona Sueca (SEK)"
4483
 
4484
- #: core/class-settings.php:573
4485
  msgctxt "admin settings"
4486
  msgid "Swiss Franc (CHF)"
4487
  msgstr "Franco Suizo (CHF)"
4488
 
4489
- #: core/class-settings.php:574
4490
  msgctxt "admin settings"
4491
  msgid "Taiwan Dollar (TWD)"
4492
  msgstr "Dólar de Taiwán (TWD)"
4493
 
4494
- #: core/class-settings.php:575
4495
  msgctxt "admin settings"
4496
  msgid "Thai Baht (THB)"
4497
  msgstr "Baht de Tailandia (THB)"
4498
 
4499
- #: core/class-settings.php:576
4500
  msgctxt "admin settings"
4501
  msgid "Turkish Lira (TRY)"
4502
  msgstr "Lira Turca (TRY)"
4503
 
4504
- #: core/class-settings.php:577
4505
  msgctxt "admin settings"
4506
  msgid "U.S. Dollar (USD)"
4507
  msgstr "Dólar Americano (USD)"
4508
 
4509
- #: core/class-settings.php:581
4510
  msgctxt "admin settings"
4511
  msgid "Currency Symbol"
4512
  msgstr "Símbolo de Moneda"
4513
 
4514
- #: core/class-settings.php:586
4515
  msgctxt "admin settings"
4516
  msgid "Currency symbol display"
4517
  msgstr "Presentación de símbolo de moneda"
4518
 
4519
- #: core/class-settings.php:590
4520
  msgctxt "admin settings"
4521
  msgid "Show currency symbol on the left"
4522
  msgstr "Mostrar el símbolo de moneda a la izquierda"
4523
 
4524
- #: core/class-settings.php:591
4525
  msgctxt "admin settings"
4526
  msgid "Show currency symbol on the right"
4527
  msgstr "Mostrar el símbolo de moneda a la derecha"
4528
 
4529
- #: core/class-settings.php:592
4530
  msgctxt "admin settings"
4531
  msgid "Do not show currency symbol"
4532
  msgstr "No mostrar el símbolo de moneda"
4533
 
4534
- #: core/class-settings.php:594
4535
  msgctxt "admin settings"
4536
  msgid "Thank you for payment message"
4537
  msgstr "Mensaje de agradecimiento por el pago"
4538
 
4539
- #: core/class-settings.php:595
4540
  msgctxt "admin settings"
4541
  msgid ""
4542
  "Thank you for your payment. Your payment is being verified and your listing "
@@ -4545,13 +4566,13 @@ msgstr ""
4545
  "Gracias por su pago. Su pago está siendo verificado y su listado revisado. "
4546
  "Este proceso puede tardar hasta 48 horas."
4547
 
4548
- #: core/class-settings.php:600
4549
  msgctxt "admin settings"
4550
  msgid "Ask users to come back for abandoned payments?"
4551
  msgstr ""
4552
  "Contactar a los usuarios para pedirles que regresen a pagar pagos pendientes?"
4553
 
4554
- #: core/class-settings.php:603
4555
  msgctxt "admin settings"
4556
  msgid ""
4557
  "An abandoned payment is when a user attempts to place a listing and gets to "
@@ -4564,12 +4585,12 @@ msgstr ""
4564
  "en listados que parece que fallaron cuando el usuario simplemente no "
4565
  "completó la transacción. BD puede recordarles para que efectúen el pago."
4566
 
4567
- #: core/class-settings.php:609
4568
  msgctxt "admin settings"
4569
  msgid "Listing abandonment threshold (hours)"
4570
  msgstr "Tiempo tras el cual el listado es considerado abandonado (en horas)"
4571
 
4572
- #: core/class-settings.php:614
4573
  msgctxt "admin settings"
4574
  msgid ""
4575
  "Listings with pending payments are marked as abandoned after this time. You "
@@ -4579,37 +4600,37 @@ msgstr ""
4579
  "tiempo. También puede <a>personalizar el correo-e</a> que los usuarios "
4580
  "reciben."
4581
 
4582
- #: core/class-settings.php:619
4583
  msgctxt "admin settings"
4584
  msgid "Themes"
4585
  msgstr "Temas"
4586
 
4587
- #: core/class-settings.php:621
4588
  msgctxt "admin settings"
4589
  msgid "You can manage your themes on <a>Directory Themes</a>."
4590
  msgstr "Puede manejar los temas en <a>Temas del Directorio</a>."
4591
 
4592
- #: core/class-settings.php:626
4593
  msgctxt "admin settings"
4594
  msgid "Theme button style"
4595
  msgstr "Estilo de botones de temas"
4596
 
4597
- #: core/class-settings.php:630
4598
  msgctxt "admin settings"
4599
  msgid "Use the BD theme style for BD buttons"
4600
  msgstr "Utilizar el estilo de BD para los botones de BD"
4601
 
4602
- #: core/class-settings.php:631
4603
  msgctxt "admin settings"
4604
  msgid "Use the WP theme style for BD buttons"
4605
  msgstr "Utilizar el estilo del tema de WP para los botones de BD"
4606
 
4607
- #: core/class-settings.php:638
4608
  msgctxt "admin settings"
4609
  msgid "Image"
4610
  msgstr "Imágenes"
4611
 
4612
- #: core/class-settings.php:639
4613
  msgctxt "admin settings"
4614
  msgid ""
4615
  "Any changes to these settings will affect new listings only. Existing "
@@ -4622,52 +4643,52 @@ msgstr ""
4622
  "existentes, deberá subir de nuevo las imágenes necesarias luego de hacer los "
4623
  "cambios aquí."
4624
 
4625
- #: core/class-settings.php:640
4626
  msgctxt "admin settings"
4627
  msgid "Image Settings"
4628
  msgstr "Configuración de Imágenes"
4629
 
4630
- #: core/class-settings.php:641
4631
  msgctxt "admin settings"
4632
  msgid "Allow images?"
4633
  msgstr "Permitir imágenes?"
4634
 
4635
- #: core/class-settings.php:643
4636
  msgctxt "admin settings"
4637
  msgid "Min Image File Size (KB)"
4638
  msgstr "Tamaño mínimo de imagen (KB)"
4639
 
4640
- #: core/class-settings.php:644
4641
  msgctxt "admin settings"
4642
  msgid "Max Image File Size (KB)"
4643
  msgstr "Tamaño máximo de imagen (KB)"
4644
 
4645
- #: core/class-settings.php:646
4646
  msgctxt "admin settings"
4647
  msgid "Min image width (px)"
4648
  msgstr "Ancho mínimo de imagen (en px)"
4649
 
4650
- #: core/class-settings.php:647
4651
  msgctxt "admin settings"
4652
  msgid "Min image height (px)"
4653
  msgstr "Alto mínimo de imagen (en px)"
4654
 
4655
- #: core/class-settings.php:649
4656
  msgctxt "admin settings"
4657
  msgid "Max image width (px)"
4658
  msgstr "Ancho máximo de imagen (px)"
4659
 
4660
- #: core/class-settings.php:650
4661
  msgctxt "admin settings"
4662
  msgid "Max image height (px)"
4663
  msgstr "Alto máximo de imagen (px)"
4664
 
4665
- #: core/class-settings.php:652
4666
  msgctxt "admin settings"
4667
  msgid "Turn on thickbox/lightbox?"
4668
  msgstr "Activar Thickbox/Lightbox?"
4669
 
4670
- #: core/class-settings.php:652
4671
  msgctxt "admin settings"
4672
  msgid ""
4673
  "Uncheck if it conflicts with other elements or plugins installed on your site"
@@ -4675,27 +4696,27 @@ msgstr ""
4675
  "Desmarque si entra en conflicto con otros elementos o plugins instalados en "
4676
  "su sitio"
4677
 
4678
- #: core/class-settings.php:654
4679
  msgctxt "admin settings"
4680
  msgid "Thumbnails"
4681
  msgstr "Imágenes de previsualización"
4682
 
4683
- #: core/class-settings.php:655
4684
  msgctxt "admin settings"
4685
  msgid "Thumbnail width (px)"
4686
  msgstr "Ancho de thumbnail (px)"
4687
 
4688
- #: core/class-settings.php:656
4689
  msgctxt "admin settings"
4690
  msgid "Thumbnail height (px)"
4691
  msgstr "Alto de thumbnail (px)"
4692
 
4693
- #: core/class-settings.php:659
4694
  msgctxt "admin settings"
4695
  msgid "Crop thumbnails to exact dimensions?"
4696
  msgstr "Cortar imágenes de previsualización a las dimensiones exactas?"
4697
 
4698
- #: core/class-settings.php:662
4699
  msgctxt "admin settings"
4700
  msgid ""
4701
  "When enabled images will match exactly the dimensions above but part of the "
@@ -4709,12 +4730,12 @@ msgstr ""
4709
  "alto será ajustado proporcionalmente. Dependiendo de las imágenes que se "
4710
  "hayan utilizado, estas podrían tener diferentes alturas."
4711
 
4712
- #: core/class-settings.php:668
4713
  msgctxt "admin settings"
4714
  msgid "Number of free images"
4715
  msgstr "Número de imágenes gratuitas"
4716
 
4717
- #: core/class-settings.php:673
4718
  msgctxt "admin settings"
4719
  msgid ""
4720
  "For paid listing images, configure that by adding or editing a <a>Fee Plan</"
@@ -4723,27 +4744,27 @@ msgstr ""
4723
  "Configure las imágenes de listados pagos agregando o editando una "
4724
  "<a>comisión</a> pues este valor será ignorado para listados pagos."
4725
 
4726
- #: core/class-settings.php:676
4727
  msgctxt "admin settings"
4728
  msgid "Use default picture for listings with no picture?"
4729
  msgstr "Utilizar imagen por defecto en listados sin imagen?"
4730
 
4731
- #: core/class-settings.php:677
4732
  msgctxt "admin settings"
4733
  msgid "Show Thumbnail on main listings page?"
4734
  msgstr "Mostrar thumbnails en las páginas principales?"
4735
 
4736
- #: core/class-settings.php:706
4737
  msgctxt "admin settings"
4738
  msgid "User"
4739
  msgstr "Usuario"
4740
 
4741
- #: core/class-settings.php:707
4742
  msgctxt "admin settings"
4743
  msgid "User registration date"
4744
  msgstr "Fecha de registro del usuario"
4745
 
4746
- #: core/class-settings.php:733
4747
  msgctxt "admin settings"
4748
  msgid ""
4749
  "Could not copy the AJAX compatibility plugin \"%s\". Compatibility mode was "
@@ -4752,7 +4773,7 @@ msgstr ""
4752
  "No se pudo copiar el plugin de compatibilidad AJAX \"%s\". El modo de "
4753
  "compatibilidad no fue activado."
4754
 
4755
- #: core/class-settings.php:741
4756
  msgctxt "admin settings"
4757
  msgid ""
4758
  "Could not activate AJAX Compatibility mode: the directory \"%s\" could not "
@@ -4761,7 +4782,7 @@ msgstr ""
4761
  "No se pudo activar el modo de compatibilidad AJAX: el directorio \"%s\" no "
4762
  "pudo ser creado."
4763
 
4764
- #: core/class-settings.php:750
4765
  msgctxt "admin settings"
4766
  msgid ""
4767
  "Could not remove the \"Business Directory Plugin - AJAX Compatibility Module"
@@ -4770,97 +4791,97 @@ msgstr ""
4770
  "No se pudo remover \"Business Directory Plugin - AJAX Compatibility Module"
4771
  "\". Por favor elimine el archivo \"%s\" manualmente o desactive el plugin."
4772
 
4773
- #: core/class-settings.php:1070
4774
  msgctxt "settings"
4775
  msgid "Deactivate License"
4776
  msgstr "Desactivar Licencia"
4777
 
4778
- #: core/class-settings.php:1072
4779
  msgctxt "settings"
4780
  msgid "Deactivating license..."
4781
  msgstr "Desactivando licencia..."
4782
 
4783
- #: core/class-settings.php:1075
4784
  msgctxt "settings"
4785
  msgid "Activate License"
4786
  msgstr "Activar Licencia"
4787
 
4788
- #: core/class-settings.php:1077
4789
  msgctxt "settings"
4790
  msgid "Activating license..."
4791
  msgstr "Activando licencia..."
4792
 
4793
- #: core/class-settings.php:1100
4794
  msgctxt "admin settings"
4795
  msgid "Valid placeholders: %s"
4796
  msgstr "Comodines válidos: %s"
4797
 
4798
- #: core/class-settings.php:1134
4799
  msgctxt "settings email"
4800
  msgid "Click to edit e-mail"
4801
  msgstr "Click para editar el correo"
4802
 
4803
- #: core/class-settings.php:1135
4804
  msgctxt "settings email"
4805
  msgid "Click to edit"
4806
  msgstr "Click para editar"
4807
 
4808
- #: core/class-settings.php:1148
4809
  msgctxt "settings email"
4810
  msgid "E-Mail Subject"
4811
  msgstr "Título del correo"
4812
 
4813
- #: core/class-settings.php:1159
4814
  msgctxt "settings email"
4815
  msgid "E-Mail Body"
4816
  msgstr "Cuerpo del correo"
4817
 
4818
- #: core/class-settings.php:1170
4819
  msgctxt "settings email"
4820
  msgid "You can use the following placeholders:"
4821
  msgstr "Puede utilizar los siguientes comodines:"
4822
 
4823
- #: core/class-settings.php:1193
4824
  msgctxt "settings email"
4825
  msgid "Preview e-mail"
4826
  msgstr "Previsualizar correo"
4827
 
4828
- #: core/class-settings.php:1194
4829
  msgctxt "settings email"
4830
  msgid "Cancel"
4831
  msgstr "Cancelar"
4832
 
4833
- #: core/class-settings.php:1195
4834
  msgctxt "settings email"
4835
  msgid "Save Changes"
4836
  msgstr "Guardar Cambios"
4837
 
4838
- #: core/class-settings.php:1214
4839
  msgctxt "settings email"
4840
  msgid "Site title"
4841
  msgstr "Título del sitio"
4842
 
4843
- #: core/class-settings.php:1217
4844
  msgctxt "settings email"
4845
  msgid "Site title (with link)"
4846
  msgstr "Título del listado (con enlace)"
4847
 
4848
- #: core/class-settings.php:1220
4849
  msgctxt "settings email"
4850
  msgid "Site address (with link)"
4851
  msgstr "Dirección del listado (con enlace)"
4852
 
4853
- #: core/class-settings.php:1223
4854
  msgctxt "settings email"
4855
  msgid "Directory URL (with link)"
4856
  msgstr "URL del Directorio (con enlace)"
4857
 
4858
- #: core/class-settings.php:1226
4859
  msgctxt "settings email"
4860
  msgid "Current date"
4861
  msgstr "Fecha actual"
4862
 
4863
- #: core/class-settings.php:1229
4864
  msgctxt "settings email"
4865
  msgid "Current time"
4866
  msgstr "Hora actual"
@@ -5023,7 +5044,7 @@ msgstr "Lista de selección múltiple"
5023
  #: core/fieldtypes/class-fieldtypes-multiselect.php:25
5024
  msgctxt "form-fields-admin"
5025
  msgid "Number of options visible without scrolling"
5026
- msgstr ""
5027
 
5028
  #: core/fieldtypes/class-fieldtypes-multiselect.php:26
5029
  msgctxt "form-fields-admin"
@@ -5031,6 +5052,8 @@ msgid ""
5031
  "The height of the list will be adjusted to accommodate the specified number "
5032
  "of options."
5033
  msgstr ""
 
 
5034
 
5035
  #: core/fieldtypes/class-fieldtypes-phone-number.php:13
5036
  msgctxt "form fields"
@@ -5513,11 +5536,20 @@ msgctxt "installer"
5513
  msgid "Listing upgrade to featured"
5514
  msgstr "Mejora a Destacado"
5515
 
5516
- #: core/installer.php:957
 
 
 
 
 
 
 
 
 
5517
  msgid "Business Directory - Manual Upgrade Required"
5518
  msgstr "Business Directory - Actualización Manual Requerida"
5519
 
5520
- #: core/installer.php:959
5521
  msgid ""
5522
  "Business Directory features are currently disabled because the plugin needs "
5523
  "to perform a manual upgrade before continuing."
@@ -5525,15 +5557,15 @@ msgstr ""
5525
  "Las características de Business Directory se encuentran deshabitadas pues es "
5526
  "necesario realizar una actualización manual antes de continuar."
5527
 
5528
- #: core/installer.php:961
5529
  msgid "Perform Manual Upgrade"
5530
  msgstr "Realizar Actualización Manual"
5531
 
5532
- #: core/installer.php:977 core/installer.php:978 core/installer.php:989
5533
  msgid "Business Directory - Manual Upgrade"
5534
  msgstr "Business Directory - Actualización Manual"
5535
 
5536
- #: core/installer.php:993
5537
  msgid ""
5538
  "Business Directory features are currently disabled because the plugin needs "
5539
  "to perform a manual upgrade before it can be used."
@@ -5542,23 +5574,23 @@ msgstr ""
5542
  "necesario realizar una actualización manual antes de que el plugin pueda ser "
5543
  "utilizado."
5544
 
5545
- #: core/installer.php:995
5546
  msgid "Click \"Start Upgrade\" and wait until the process finishes."
5547
  msgstr ""
5548
  "Haga clic en \"Iniciar Actualización\" y espere hasta que el proceso "
5549
  "finalice."
5550
 
5551
- #: core/installer.php:998
5552
  msgctxt "manual-upgrade"
5553
  msgid "Start Upgrade"
5554
  msgstr "Iniciar Actualización"
5555
 
5556
- #: core/installer.php:1000
5557
  msgctxt "manual-upgrade"
5558
  msgid "Pause Upgrade"
5559
  msgstr "Detener Actualización"
5560
 
5561
- #: core/installer.php:1006
5562
  msgctxt "manual-upgrade"
5563
  msgid ""
5564
  "The upgrade was sucessfully performed. Business Directory Plugin is now "
@@ -5567,16 +5599,16 @@ msgstr ""
5567
  "La actualización fue ejecutada con éxito. Business Directory Plugin ahora se "
5568
  "encienta disponible para su uso."
5569
 
5570
- #: core/installer.php:1009
5571
  msgctxt "manual-upgrade"
5572
  msgid "Go to \"Directory Admin\""
5573
  msgstr "Ir a \"Administración del Directorio\""
5574
 
5575
- #: core/installer.php:1044
5576
  msgid "Business Directory - Installation Failed"
5577
  msgstr "Business Directory - La Instalación Falló"
5578
 
5579
- #: core/installer.php:1046
5580
  msgid ""
5581
  "Business Directory installation failed. An exception with following message "
5582
  "was generated:"
@@ -5584,7 +5616,7 @@ msgstr ""
5584
  "La instalación de Business Directory falló. Se generó una excepción con el "
5585
  "siguiente mensaje:"
5586
 
5587
- #: core/installer.php:1051
5588
  msgid "Please <contact-link>contact customer support</a>."
5589
  msgstr "Por favor <contact-link>contacte al soporte al cliente</a>."
5590
 
@@ -5875,39 +5907,39 @@ msgctxt "templates"
5875
  msgid "No listing categories found."
5876
  msgstr "No se encontraron categorías."
5877
 
5878
- #: core/templates-ui.php:193
5879
  msgid "Directory"
5880
  msgstr "Directorio"
5881
 
5882
- #: core/templates-ui.php:199
5883
  msgid "View All Listings"
5884
  msgstr "Ver Todos los Listados"
5885
 
5886
- #: core/templates-ui.php:205
5887
  msgid "Create A Listing"
5888
  msgstr "Crear un Listado"
5889
 
5890
- #: core/templates-ui.php:232
5891
  msgctxt "templates"
5892
  msgid "Search Listings"
5893
  msgstr "Buscar Listados"
5894
 
5895
- #: core/templates-ui.php:235
5896
  msgctxt "templates"
5897
  msgid "Advanced Search"
5898
  msgstr "Búsqueda Avanzada"
5899
 
5900
- #: core/templates-ui.php:264 core/templates-ui.php:289
5901
  msgctxt "templates sort"
5902
  msgid "Sort By:"
5903
  msgstr "Ordenar Por:"
5904
 
5905
- #: core/templates-ui.php:283
5906
  msgctxt "sort"
5907
  msgid "Reset"
5908
  msgstr "Restablecer"
5909
 
5910
- #: core/templates-ui.php:305
5911
  msgctxt "sort"
5912
  msgid "(Reset)"
5913
  msgstr "(Reestablecer)"
@@ -6024,7 +6056,6 @@ msgid "You are not authorized to edit this listing."
6024
  msgstr "No está autorizado para editar este listado."
6025
 
6026
  #: core/view-submit-listing.php:58
6027
- #, fuzzy
6028
  msgctxt "views"
6029
  msgid "Edit Your Listing"
6030
  msgstr "Editar Su Listado"
@@ -6555,10 +6586,9 @@ msgid "Please enter your credit card details below."
6555
  msgstr "Por favor ingrese los datos de su tarjeta de crédito abajo."
6556
 
6557
  #: templates/billing-information-form.tpl.php:36
6558
- #, fuzzy
6559
  msgctxt "checkout form"
6560
  msgid "E-mail:"
6561
- msgstr "Correo Electrónico: %s"
6562
 
6563
  #: templates/billing-information-form.tpl.php:44
6564
  msgctxt "checkout form"
@@ -6621,10 +6651,9 @@ msgid "ZIP Code:"
6621
  msgstr "Código Postal:"
6622
 
6623
  #: templates/billing-information-form.tpl.php:151
6624
- #, fuzzy
6625
  msgctxt "checkout form"
6626
  msgid "Phone Number:"
6627
- msgstr "Número telefónico"
6628
 
6629
  #: templates/billing-information-form.tpl.php:161
6630
  msgctxt "WPBDM"
@@ -7256,6 +7285,15 @@ msgstr "D. Rodenbaugh"
7256
  msgid "http://businessdirectoryplugin.com"
7257
  msgstr "http://businessdirectoryplugin.com"
7258
 
 
 
 
 
 
 
 
 
 
7259
  #~ msgctxt "title"
7260
  #~ msgid "Submit A Listing"
7261
  #~ msgstr "Enviar Un Listado"
4
  msgstr ""
5
  "Project-Id-Version: Business Directory Plugin 4.0.6\n"
6
  "Report-Msgid-Bugs-To: http://wordpress.org/tag/business-directory-plugin\n"
7
+ "POT-Creation-Date: 2016-12-13 23:11:33+00:00\n"
8
+ "PO-Revision-Date: 2016-12-13 18:15-0500\n"
9
  "Last-Translator: BD Team <support@businessdirectoryplugin.com>\n"
10
  "Language-Team: BD Team <support@businessdirectoryplugin.com>\n"
11
  "Language: es_ES\n"
12
  "MIME-Version: 1.0\n"
13
  "Content-Type: text/plain; charset=UTF-8\n"
14
  "Content-Transfer-Encoding: 8bit\n"
15
+ "X-Generator: Poedit 1.8.5\n"
16
  "Plural-Forms: nplurals=2; plural=(n != 1);\n"
17
  "X-Poedit-Bookmarks: -1,-1,-1,-1,-1,-1,-1,-1,-1,543\n"
18
  "X-Poedit-SourceCharset: UTF-8\n"
1014
  msgid "Field deleted."
1015
  msgstr "Campo eliminado."
1016
 
1017
+ #: admin/form-fields.php:277
1018
  msgctxt "form-fields admin"
1019
  msgid "Required fields created successfully."
1020
  msgstr "Campos requeridos creados satisfactoriamente."
1021
 
1022
+ #: admin/form-fields.php:290
1023
  msgctxt "form-fields admin"
1024
  msgid "Title"
1025
  msgstr "Título"
1026
 
1027
+ #: admin/form-fields.php:291
1028
  msgctxt "form-fields admin"
1029
  msgid "Category"
1030
  msgstr "Categoría"
1031
 
1032
+ #: admin/form-fields.php:292
1033
  msgctxt "form-fields admin"
1034
  msgid "Excerpt"
1035
  msgstr "Resumen"
1036
 
1037
+ #: admin/form-fields.php:293
1038
  msgctxt "form-fields admin"
1039
  msgid "Content"
1040
  msgstr "Contenido"
1041
 
1042
+ #: admin/form-fields.php:294
1043
  msgctxt "form-fields admin"
1044
  msgid "Tags"
1045
  msgstr "Etiquetas"
1046
 
1047
+ #: admin/form-fields.php:295
1048
  msgctxt "form-fields admin"
1049
  msgid "Address"
1050
  msgstr "Dirección"
1051
 
1052
+ #: admin/form-fields.php:296
1053
  msgctxt "form-fields admin"
1054
  msgid "City"
1055
  msgstr "Ciudad"
1056
 
1057
+ #: admin/form-fields.php:297
1058
  msgctxt "form-fields admin"
1059
  msgid "State"
1060
  msgstr "Estado"
1061
 
1062
+ #: admin/form-fields.php:298
1063
  msgctxt "form-fields admin"
1064
  msgid "ZIP Code"
1065
  msgstr "Código Postal"
1066
 
1067
+ #: admin/form-fields.php:299
1068
  msgctxt "form-fields admin"
1069
  msgid "FAX Number"
1070
  msgstr "Número de Fax"
1071
 
1072
+ #: admin/form-fields.php:300
1073
  msgctxt "form-fields admin"
1074
  msgid "Phone Number"
1075
  msgstr "Número telefónico"
1076
 
1077
+ #: admin/form-fields.php:301
1078
  msgctxt "form-fields admin"
1079
  msgid "Ratings Field"
1080
  msgstr "Campo de ratings"
1081
 
1082
+ #: admin/form-fields.php:302
1083
  msgctxt "form-fields admin"
1084
  msgid "Twitter"
1085
  msgstr "Twitter"
1086
 
1087
+ #: admin/form-fields.php:303
1088
  msgctxt "form-fields admin"
1089
  msgid "Website"
1090
  msgstr "Sitio web"
1091
 
1092
+ #: admin/form-fields.php:324
1093
  msgctxt "form-fields admin"
1094
  msgid "Tags updated."
1095
  msgstr "Etiquetas actualizadas."
2243
  "Por favor vea la <a>documentación de Campos de Formulario</a> para más "
2244
  "detalles."
2245
 
 
2246
  #. Plugin Name of the plugin/theme
2247
  #: admin/templates/header.tpl.php:4
2248
  msgid "Business Directory Plugin"
3011
  msgid "Allow Tracking"
3012
  msgstr "Permitir Seguimiento"
3013
 
3014
+ #: business-directory-plugin.php:668
3015
  msgctxt "admin plugins"
3016
  msgid "Settings"
3017
  msgstr "Configuración"
3018
 
3019
+ #: business-directory-plugin.php:776 business-directory-plugin.php:783
3020
  msgctxt "rss feed"
3021
  msgid "%s Feed"
3022
  msgstr "Feed %s"
3023
 
3024
+ #: business-directory-plugin.php:1137 core/view-submit-listing.php:58
3025
  #: core/views/submit_listing.php:10
3026
  msgctxt "views"
3027
  msgid "Submit A Listing"
3028
  msgstr "Enviar un Listado"
3029
 
3030
+ #: business-directory-plugin.php:1142
3031
  msgctxt "title"
3032
  msgid "Find a Listing"
3033
  msgstr "Encontrar un listado"
3034
 
3035
+ #: business-directory-plugin.php:1147
3036
  msgctxt "title"
3037
  msgid "View All Listings"
3038
  msgstr "Ver Listados"
3039
 
3040
+ #: business-directory-plugin.php:1176
3041
  msgctxt "title"
3042
  msgid "Listings tagged: %s"
3043
  msgstr "Listados etiquetados: %s"
3106
  msgid "Invalid form field type"
3107
  msgstr "Tipo de campo inválido"
3108
 
3109
+ #: core/class-form-field.php:505
3110
  msgctxt "form-fields-api"
3111
  msgid "Field label is required."
3112
  msgstr "El nombre del campo es requerido."
3113
 
3114
+ #: core/class-form-field.php:515
3115
  msgctxt "form-fields-api"
3116
  msgid "Requested field type change is incompatible. Type will not be modified."
3117
  msgstr ""
3118
  "El cambio de tipo de campo es incompatible. El tipo no será modificado."
3119
 
3120
+ #: core/class-form-field.php:535
3121
  msgctxt "form-fields-api"
3122
  msgid ""
3123
  "There can only be one field with association \"%s\". Please select another "
3126
  "Solo puede haber un campo con asociación \"%s\". Por favor elija otra "
3127
  "asociación."
3128
 
3129
+ #: core/class-form-field.php:545
3130
  msgctxt "form-fields-api"
3131
  msgid "\"%s\" is an invalid field type for this association."
3132
  msgstr "\"%s\" es un tipo de campo inválido para esta asociación."
3133
 
3134
+ #: core/class-form-field.php:583
3135
  msgctxt "form-fields-api"
3136
  msgid "Invalid field ID"
3137
  msgstr "ID de campo inválido"
3138
 
3139
+ #: core/class-form-field.php:592
3140
  msgctxt "form-fields api"
3141
  msgid ""
3142
  "This form field can't be deleted because it is required for the plugin to "
3145
  "Este campo de formulario no puede eliminarse porque es requerido para el "
3146
  "funcionamiento del plugin."
3147
 
3148
+ #: core/class-form-field.php:604
3149
  msgctxt "form-fields-api"
3150
  msgid "An error occurred while trying to delete this field."
3151
  msgstr "Un error ocurrió mientras se trataba de eliminar este campo."
3152
 
3153
  #: core/class-gateway.php:133
 
3154
  msgctxt "billing info"
3155
  msgid "Please enter a valid e-mail address."
3156
  msgstr "Por favor ingrese un correo electrónico válido."
3205
  msgid "(Fee Unavailable)"
3206
  msgstr "(Comisión no disponible)"
3207
 
3208
+ #: core/class-listings-api.php:310
3209
  msgctxt "notify email"
3210
  msgid "[%s] New listing notification"
3211
  msgstr "[%s] Notificación de nuevo listado"
3212
 
3213
+ #: core/class-listings-api.php:329
3214
  msgctxt "notify email"
3215
  msgid "[%s] Listing edit notification"
3216
  msgstr "[%s] Notificación de listado editado"
3595
  msgid "Enable AJAX compatibility mode?"
3596
  msgstr "Habilitar modo de compatibilidad AJAX?"
3597
 
3598
+ #: core/class-settings.php:181 core/class-settings.php:679
3599
  msgctxt "admin settings"
3600
  msgid "Listings"
3601
  msgstr "Listados"
3602
 
3603
+ #: core/class-settings.php:182 core/class-settings.php:349
3604
+ #: core/class-settings.php:636
3605
  msgctxt "admin settings"
3606
  msgid "General Settings"
3607
  msgstr "Configuración General"
3672
  "Utilice esta opción para prevenir el SPAM a los dueños de los listados. 0 "
3673
  "significa ilimitados contactos por día."
3674
 
3675
+ #: core/class-settings.php:222
3676
  msgctxt "admin settings"
3677
  msgid "Include comment form on listing pages?"
3678
  msgstr "Incluir formulario de comentarios en las páginas de los listados?"
3679
 
3680
+ #: core/class-settings.php:225
3681
  msgctxt "admin settings"
3682
  msgid ""
3683
+ "BD uses the standard comment inclusion from WordPress, but most themes only "
3684
+ "allow for comments on posts, not pages. Some themes handle both. BD is "
3685
+ "displayed on a page, so we need a theme that can handle both to show "
3686
+ "comments. Use the 2nd option if you want to allow comments on listings "
3687
+ "first, and if that doesn't work, try the 3rd option instead."
3688
+ msgstr ""
3689
+ "BD hace uso de la inclusión estándar de comentarios de WordPress, pero la "
3690
+ "mayoría de los temas permiten comentarios en posts, no páginas. Algunos "
3691
+ "temas soportan ambos. BD se muestra en una página, así que require de un "
3692
+ "tema que incluya este soporte para mostrar comentarios. Utilice la 2a opción "
3693
+ "primero si desea permitir comentarios en listados, y si esto no funciona, "
3694
+ "intente con la 3a opción."
3695
+
3696
+ #: core/class-settings.php:228
3697
+ msgctxt "admin settings"
3698
+ msgid "Do not include comments in listings"
3699
+ msgstr "No incluir formulario de comentario en listados"
3700
+
3701
+ #: core/class-settings.php:229
3702
+ msgctxt "admin settings"
3703
+ msgid "Include comment form, theme invoked (standard option)"
3704
+ msgstr "Include formulario de comentarios, invocado por el tema (estándar)"
3705
+
3706
+ #: core/class-settings.php:230
3707
+ msgctxt "admin settings"
3708
+ msgid "Include comment form, BD invoked (use only if 2nd option doesn't work)"
3709
  msgstr ""
3710
+ "Incluir formulario de comentarios, invocado por BD (usar si la opción "
3711
+ "estándar no funciona)"
 
3712
 
3713
+ #: core/class-settings.php:238
3714
  msgctxt "admin settings"
3715
  msgid "Show listings under categories on main page?"
3716
  msgstr "Mostrar listados bajo las categorías en la página principal?"
3717
 
3718
+ #: core/class-settings.php:239
3719
  msgctxt "admin settings"
3720
  msgid "Status of listings upon uninstalling plugin"
3721
  msgstr "Estado de los listados luego de desinstalado el plugin"
3722
 
3723
+ #: core/class-settings.php:240 core/class-settings.php:242
3724
  msgctxt "post status"
3725
  msgid "Draft"
3726
  msgstr "Borrador"
3727
 
3728
+ #: core/class-settings.php:240 core/class-settings.php:242
3729
  msgctxt "post status"
3730
  msgid "Trash"
3731
  msgstr "Papelera"
3732
 
3733
+ #: core/class-settings.php:241
3734
  msgctxt "admin settings"
3735
  msgid "Status of deleted listings"
3736
  msgstr "Estado de los listados eliminados"
3737
 
3738
+ #: core/class-settings.php:243
3739
  msgctxt "admin settings"
3740
  msgid "Submit Listing instructions message"
3741
  msgstr "Mensaje de instrucciones de envío de listado"
3742
 
3743
+ #: core/class-settings.php:243
3744
  msgctxt "admin settings"
3745
  msgid ""
3746
  "This text is displayed at the first page of the Submit Listing process for "
3752
  "formulario o cualquier otra información que desee que los usuarios vean "
3753
  "antes de comenzar."
3754
 
3755
+ #: core/class-settings.php:245
3756
  msgctxt "admin settings"
3757
  msgid "Listing Renewal"
3758
  msgstr "Renovación de Listados"
3759
 
3760
+ #: core/class-settings.php:246
3761
  msgctxt "admin settings"
3762
  msgid "Turn on listing renewal option?"
3763
  msgstr "Habilitar la renovación de listados?"
3764
 
3765
+ #: core/class-settings.php:249
3766
  msgctxt "admin settings"
3767
  msgid "Allow recurring renewal payments?"
3768
  msgstr "Permitir pagos recurrentes?"
3769
 
3770
+ #: core/class-settings.php:252
3771
  msgctxt "admin settings"
3772
  msgid ""
3773
  "Allow users to opt in for automatic renewal of their listings. The fee is "
3777
  "comisión será cobrada en el momento en el que el listado llegue a su "
3778
  "vencimiento, sin necesidad de intervención."
3779
 
3780
+ #: core/class-settings.php:256
3781
  msgctxt "admin settings"
3782
  msgid "Use recurring payments as the default payment method?"
3783
  msgstr "Utilizar cobro recurrente como método de pago por defecto?"
3784
 
3785
+ #: core/class-settings.php:259
3786
  msgctxt "admin settings"
3787
  msgid ""
3788
  "Enable automatic renewal without having users opt in during the submit "
3791
  "Habilitar la renovación automática sin que los usuarios deban optar por ella "
3792
  "durante el proceso de envío del listado."
3793
 
3794
+ #: core/class-settings.php:264
3795
  msgctxt "admin settings"
3796
  msgid "Listing renewal e-mail threshold (in days)"
3797
  msgstr "Rango de envío del correo electrónico de renovación (en días)"
3798
 
3799
+ #: core/class-settings.php:267
3800
  msgctxt "admin settings"
3801
  msgid ""
3802
  "Configure how many days before listing expiration is the renewal e-mail sent."
3804
  "Configure con cuántos días de anticipación debe informarse al usuario que su "
3805
  "listado está a punto de expirar."
3806
 
3807
+ #: core/class-settings.php:271
3808
  msgctxt "admin settings"
3809
  msgid ""
3810
  "Send expiration notices including a cancel links to auto-renewed listings?"
3812
  "Enviar notificaciones de expiración incluyendo enlaces para cancelar a los "
3813
  "listados auto-renovados?"
3814
 
3815
+ #: core/class-settings.php:278
3816
  msgctxt "admin settings"
3817
  msgid "Remind listing owners of expired listings (past due)?"
3818
  msgstr ""
3819
  "Recordar a los dueños de listados expirados (después de su expiración)?"
3820
 
3821
+ #: core/class-settings.php:283
3822
  msgctxt "admin settings"
3823
  msgid "Listing renewal reminder e-mail threshold (in days)"
3824
  msgstr "Rango de envío del recordatorio de renovación (en días)"
3825
 
3826
+ #: core/class-settings.php:286
3827
  msgctxt "admin settings"
3828
  msgid ""
3829
  "Configure how many days after the expiration of a listing an e-mail reminder "
3832
  "Configure con cuántos días después de la fecha de expiración de un listado "
3833
  "debe enviarse un recordatorio al dueño."
3834
 
3835
+ #: core/class-settings.php:289
3836
  msgctxt "admin settings"
3837
  msgid "Post/Category Settings"
3838
  msgstr "Configuraciones de publicaciones/categorías"
3839
 
3840
+ #: core/class-settings.php:290
3841
  msgctxt "admin settings"
3842
  msgid "Default new post status"
3843
  msgstr "Estado por defecto de nuevas publicaciones"
3844
 
3845
+ #: core/class-settings.php:291 core/class-settings.php:294
3846
  msgctxt "post status"
3847
  msgid "Published"
3848
  msgstr "Publicado"
3849
 
3850
+ #: core/class-settings.php:291 core/class-settings.php:294
3851
  msgctxt "post status"
3852
  msgid "Pending"
3853
  msgstr "Pendiente"
3854
 
3855
+ #: core/class-settings.php:293
3856
  msgctxt "admin settings"
3857
  msgid "Edit post status"
3858
  msgstr "Estado tras edición de una publicación"
3859
 
3860
+ #: core/class-settings.php:295
3861
  msgctxt "admin settings"
3862
  msgid "Order categories list by"
3863
  msgstr "Ordenar la lista de categorías por"
3864
 
3865
+ #: core/class-settings.php:297
3866
  msgctxt "admin settings"
3867
  msgid "Name"
3868
  msgstr "Nombre"
3869
 
3870
+ #: core/class-settings.php:298
3871
  msgctxt "admin settings"
3872
  msgid "Slug"
3873
  msgstr "Slug"
3874
 
3875
+ #: core/class-settings.php:299
3876
  msgctxt "admin settings"
3877
  msgid "Listing Count"
3878
  msgstr "Conteo de Listados"
3879
 
3880
+ #: core/class-settings.php:301
3881
  msgctxt "admin settings"
3882
  msgid "Sort order for categories"
3883
  msgstr "Orden de las categorías"
3884
 
3885
+ #: core/class-settings.php:302 core/class-settings.php:320
3886
  msgctxt "admin settings"
3887
  msgid "Ascending"
3888
  msgstr "Ascendente"
3889
 
3890
+ #: core/class-settings.php:302 core/class-settings.php:320
3891
  msgctxt "admin settings"
3892
  msgid "Descending"
3893
  msgstr "Descendente"
3894
 
3895
+ #: core/class-settings.php:303
3896
  msgctxt "admin settings"
3897
  msgid "Show category post count?"
3898
  msgstr "Mostrar conteo de listados para cada categoría?"
3899
 
3900
+ #: core/class-settings.php:304
3901
  msgctxt "admin settings"
3902
  msgid "Hide empty categories?"
3903
  msgstr "Ocultar categorías vacías?"
3904
 
3905
+ #: core/class-settings.php:305
3906
  msgctxt "admin settings"
3907
  msgid "Show only parent categories in category list?"
3908
  msgstr ""
3909
  "Mostrar únicamente las categorías de primer nivel en la lista de categorías?"
3910
 
3911
+ #: core/class-settings.php:307
3912
  msgctxt "admin settings"
3913
  msgid "Listings Sorting"
3914
  msgstr "Ordenamiento de Listados"
3915
 
3916
+ #: core/class-settings.php:308
3917
  msgctxt "admin settings"
3918
  msgid "Order directory listings by"
3919
  msgstr "Ordenar los listados del Directorio por"
3920
 
3921
+ #: core/class-settings.php:310
3922
  msgctxt "admin settings"
3923
  msgid "Title"
3924
  msgstr "Título"
3925
 
3926
+ #: core/class-settings.php:311
3927
  msgctxt "admin settings"
3928
  msgid "Author"
3929
  msgstr "Autor"
3930
 
3931
+ #: core/class-settings.php:312 core/class-settings.php:722
3932
  msgctxt "admin settings"
3933
  msgid "Date posted"
3934
  msgstr "Fecha de publicación"
3935
 
3936
+ #: core/class-settings.php:313 core/class-settings.php:723
3937
  msgctxt "admin settings"
3938
  msgid "Date last modified"
3939
  msgstr "Fecha de última modificación"
3940
 
3941
+ #: core/class-settings.php:314
3942
  msgctxt "admin settings"
3943
  msgid "Random"
3944
  msgstr "Aleatorio"
3945
 
3946
+ #: core/class-settings.php:315
3947
  msgctxt "admin settings"
3948
  msgid "Paid first then free. Inside each group by date."
3949
  msgstr "Pagos primero, luego gratuitos. Dentro de cada grupo, por fecha."
3950
 
3951
+ #: core/class-settings.php:316
3952
  msgctxt "admin settings"
3953
  msgid "Paid first then free. Inside each group by title."
3954
  msgstr "Pagos primero, luego gratuitos. Dentro de cada grupo por título."
3955
 
3956
+ #: core/class-settings.php:318
3957
  msgctxt "admin settings"
3958
  msgid "Sort directory listings by"
3959
  msgstr "Orden de los listados"
3960
 
3961
+ #: core/class-settings.php:319
3962
  msgctxt "admin settings"
3963
  msgid "Ascending for ascending order A-Z, Descending for descending order Z-A"
3964
  msgstr ""
3965
  "Ascendente para orden alfabético A-Z; Descendente para orden alfabético Z-A"
3966
 
3967
+ #: core/class-settings.php:324
3968
  msgctxt "admin settings"
3969
  msgid "Enable sort bar?"
3970
  msgstr "Habilitar barra de ordenamiento?"
3971
 
3972
+ #: core/class-settings.php:329
3973
  msgctxt "admin settings"
3974
  msgid "Sortbar Fields"
3975
  msgstr "Campos de \"barra de ordenamiento\""
3976
 
3977
+ #: core/class-settings.php:338
3978
  msgctxt "admin settings"
3979
  msgid "Featured (Sticky) listing settings"
3980
  msgstr "Configuración de Listados Destacados"
3981
 
3982
+ #: core/class-settings.php:339
3983
  msgctxt "admin settings"
3984
  msgid "Offer sticky listings?"
3985
  msgstr "Ofrecer listados destacados?"
3986
 
3987
+ #: core/class-settings.php:340
3988
  msgctxt "admin settings"
3989
  msgid "Offer upgrades during submit process?"
3990
  msgstr "Ofrecer mejoras a destacado durante el proceso de envío?"
3991
 
3992
+ #: core/class-settings.php:341
3993
  msgctxt "admin settings"
3994
  msgid "Sticky listing price"
3995
  msgstr "Precio de Listado Destacado"
3996
 
3997
+ #: core/class-settings.php:342
3998
  msgctxt "admin settings"
3999
  msgid "Sticky listing page description text"
4000
  msgstr "Texto descriptivo para Listados Destacados"
4001
 
4002
+ #: core/class-settings.php:343
4003
  msgctxt "admin settings"
4004
  msgid ""
4005
  "You can upgrade your listing to featured status. Featured listings will "
4008
  "Puede actualizar su listado a Destacado. Los listados destacados aparecen "
4009
  "siempre encima de los listados regulares."
4010
 
4011
+ #: core/class-settings.php:348
4012
  msgctxt "admin settings"
4013
  msgid "E-Mail"
4014
  msgstr "Correo Electrónico"
4015
 
4016
+ #: core/class-settings.php:352
4017
  msgctxt "admin settings"
4018
  msgid "Display email address fields publicly?"
4019
  msgstr "Mostrar direcciones de correo electrónico públicamente?"
4020
 
4021
+ #: core/class-settings.php:355
4022
  msgctxt "admin settings"
4023
  msgid ""
4024
  "Shows the email address of the listing owner to all web users. NOT "
4029
  "a todos los usuarios. NO RECOMENDADO pues puede resultar en un aumento de "
4030
  "spam."
4031
 
4032
+ #: core/class-settings.php:358
4033
  msgctxt "admin settings"
4034
  msgid "How to determine the listing's email address?"
4035
  msgstr "Cómo determinar el correo electrónico de un listado?"
4036
 
4037
+ #: core/class-settings.php:361
4038
  msgctxt "admin settings"
4039
  msgid ""
4040
  "This affects emails sent to listing owners via contact forms or when their "
4043
  "Esta configuración afecta cómo los dueños de los listados son contactados "
4044
  "cuando sus listados expiran o a través de los formularios de contacto."
4045
 
4046
+ #: core/class-settings.php:363
4047
  msgctxt "admin settings"
4048
  msgid "Try listing's email field first, then author's email."
4049
  msgstr "Intentar con el correo-e del listado, luego el del autor."
4050
 
4051
+ #: core/class-settings.php:364
4052
  msgctxt "admin settings"
4053
  msgid "Try author's email first and then listing's email field."
4054
  msgstr ""
4055
  "Intentar con el correo-e del autor primero, luego el del campo de correo del "
4056
  "listado."
4057
 
4058
+ #: core/class-settings.php:368
4059
  msgctxt "admin settings"
4060
  msgid "E-Mail Notifications"
4061
  msgstr "Notificaciones de correo-e"
4062
 
4063
+ #: core/class-settings.php:371
4064
  msgctxt "admin settings"
4065
  msgid "Notify admin via e-mail when..."
4066
  msgstr "Notificar al administrador cuando..."
4067
 
4068
+ #: core/class-settings.php:375
4069
  msgctxt "admin settings"
4070
  msgid "A new listing is submitted."
4071
  msgstr "Un nuevo listado ha sido enviado."
4072
 
4073
+ #: core/class-settings.php:376
4074
  msgctxt "admin settings"
4075
  msgid "A listing is edited."
4076
  msgstr "Un listado es editado."
4077
 
4078
+ #: core/class-settings.php:377
4079
  msgctxt "admin settings"
4080
  msgid "A listing expires."
4081
  msgstr "Un listado expira."
4082
 
4083
+ #: core/class-settings.php:378
4084
  msgctxt "admin settings"
4085
  msgid "A contact message is sent to a listing's owner."
4086
  msgstr "Un mensaje de contacto es enviado al dueño del listado."
4087
 
4088
+ #: core/class-settings.php:384
4089
  msgctxt "admin settings"
4090
  msgid "CC this e-mail address too"
4091
  msgstr "Copiar a esta dirección de correo también"
4092
 
4093
+ #: core/class-settings.php:390
4094
  msgctxt "admin settings"
4095
  msgid "Notify users via e-mail when..."
4096
  msgstr "Notificar usuarios vía correo-e cuando..."
4097
 
4098
+ #: core/class-settings.php:393
4099
  msgctxt "admin settings"
4100
  msgid "You can modify the text template used for most of these e-mails below."
4101
  msgstr ""
4102
  "Puede modificar la plantilla de texto utilizada para la mayoría de estos "
4103
  "correos electrónicos abajo."
4104
 
4105
+ #: core/class-settings.php:394
4106
  msgctxt "admin settings"
4107
  msgid "Their listing is submitted."
4108
  msgstr "Su listado ha sido recibido."
4109
 
4110
+ #: core/class-settings.php:395
4111
  msgctxt "admin settings"
4112
  msgid "Their listing is approved/published."
4113
  msgstr "Su listado ha sido aprobado/publicado."
4114
 
4115
+ #: core/class-settings.php:404
4116
  msgctxt "contact email"
4117
  msgid "You have received a reply from your listing at %s."
4118
  msgstr "Ha recibido una comunicación para su listado en %s."
4119
 
4120
+ #: core/class-settings.php:405
4121
  msgctxt "contact email"
4122
  msgid "Name: %s"
4123
  msgstr "Nombre: %s"
4124
 
4125
+ #: core/class-settings.php:406
4126
  msgctxt "contact email"
4127
  msgid "E-Mail: %s"
4128
  msgstr "Correo Electrónico: %s"
4129
 
4130
+ #: core/class-settings.php:407
4131
  msgctxt "contact email"
4132
  msgid "Message:"
4133
  msgstr "Mensaje:"
4134
 
4135
+ #: core/class-settings.php:409
4136
  msgctxt "contact email"
4137
  msgid "Time: %s"
4138
  msgstr "Hora: %s"
4139
 
4140
+ #: core/class-settings.php:411
4141
  msgctxt "admin settings"
4142
  msgid "E-Mail Templates"
4143
  msgstr "Plantillas de Correo Electrónico"
4144
 
4145
+ #: core/class-settings.php:414
4146
  msgctxt "admin settings"
4147
  msgid "Email confirmation message"
4148
  msgstr "Mensaje de Confirmación"
4149
 
4150
+ #: core/class-settings.php:418
4151
  msgctxt "admin settings"
4152
  msgid "Sent after a listing has been submitted."
4153
  msgstr "Enviado luego de que el listado ha sido recibido."
4154
 
4155
+ #: core/class-settings.php:419 core/class-settings.php:427
4156
+ #: core/class-settings.php:468
4157
  msgctxt "admin settings"
4158
  msgid "Listing's title"
4159
  msgstr "Título del Listado"
4160
 
4161
+ #: core/class-settings.php:422
4162
  msgctxt "admin settings"
4163
  msgid "Listing published message"
4164
  msgstr "Mensaje de listado publicado"
4165
 
4166
+ #: core/class-settings.php:425
4167
  msgctxt "admin settings"
4168
  msgid ""
4169
  "Your listing \"[listing]\" is now available at [listing-url] and can be "
4172
  "Su listado \"[listing]\" está ahora disponible en [listing-url] y puede ser "
4173
  "visto por el público."
4174
 
4175
+ #: core/class-settings.php:426
4176
  msgctxt "admin settings"
4177
  msgid "Sent when the listing has been published or approved by an admin."
4178
  msgstr ""
4179
  "Enviado cuando el listado ha sido publicado o aprobado por un administrador."
4180
 
4181
+ #: core/class-settings.php:428
4182
  msgctxt "admin settings"
4183
  msgid "Listing's URL"
4184
  msgstr "URL del listado"
4185
 
4186
+ #: core/class-settings.php:432
4187
  msgctxt "admin settings"
4188
  msgid "Listing Contact Message"
4189
  msgstr "Mensaje de contacto"
4190
 
4191
+ #: core/class-settings.php:436
4192
  msgctxt "admin settings"
4193
  msgid ""
4194
  "Sent to listing owners when someone uses the contact form on their listing "
4197
  "Enviado a los dueños de listados cuando alguien utiliza el formulario de "
4198
  "contacto en sus páginas."
4199
 
4200
+ #: core/class-settings.php:446
4201
  msgctxt "admin settings"
4202
  msgid "Payment related"
4203
  msgstr "Relativo al pago"
4204
 
4205
+ #: core/class-settings.php:463
4206
  msgctxt "admin settings"
4207
  msgid "Payment abandoned reminder message"
4208
  msgstr "Recordatorio de pagos abandonados"
4209
 
4210
+ #: core/class-settings.php:467
4211
  msgctxt "admin settings"
4212
  msgid "Sent some time after a pending payment is abandoned by users."
4213
  msgstr ""
4214
  "Enviado algún tiempo después de que un pago pendiente es abandonado por los "
4215
  "usuarios."
4216
 
4217
+ #: core/class-settings.php:469
4218
  msgctxt "admin settings"
4219
  msgid "Checkout URL link"
4220
  msgstr "Link a la URL de pago"
4221
 
4222
+ #: core/class-settings.php:475
4223
  msgctxt "admin settings"
4224
  msgid "Renewal Reminders"
4225
  msgstr "Recordatorios de Renovación"
4226
 
4227
+ #: core/class-settings.php:478
4228
  msgctxt "admin settings"
4229
  msgid ""
4230
  "This section refers only to the text of the renewal/expiration notices. You "
4234
  "renovación/expiración. También puede <a>configurar cuándo estos correos son "
4235
  "enviados</a>."
4236
 
4237
+ #: core/class-settings.php:482
4238
  msgctxt "admin settings"
4239
  msgid "Pending expiration e-mail message"
4240
  msgstr "Mensaje correo electrónico sobre expiración pendiente"
4241
 
4242
+ #: core/class-settings.php:486
4243
  msgctxt "settings"
4244
  msgid ""
4245
  "Sent some time before the listing expires. Applies to non-recurring renewals "
4248
  "Enviado un tiempo antes de que el listado expire. Aplica para renovaciones "
4249
  "no recurrentes únicamente."
4250
 
4251
+ #: core/class-settings.php:487 core/class-settings.php:500
4252
+ #: core/class-settings.php:513 core/class-settings.php:526
4253
+ #: core/class-settings.php:539
4254
  msgctxt "settings"
4255
  msgid "Listing's name (with link)"
4256
  msgstr "Título del listado (con enlace)"
4257
 
4258
+ #: core/class-settings.php:488 core/class-settings.php:501
4259
+ #: core/class-settings.php:514 core/class-settings.php:527
4260
+ #: core/class-settings.php:540
4261
  msgctxt "settings"
4262
  msgid "Author's name"
4263
  msgstr "Autor del listado"
4264
 
4265
+ #: core/class-settings.php:489 core/class-settings.php:502
4266
+ #: core/class-settings.php:541
4267
  msgctxt "settings"
4268
  msgid "Expiration date"
4269
  msgstr "Fecha de expiración"
4270
 
4271
+ #: core/class-settings.php:490
4272
  msgctxt "settings"
4273
  msgid "Category that is going to expire"
4274
  msgstr "Categoría que va a expirar"
4275
 
4276
+ #: core/class-settings.php:491 core/class-settings.php:504
4277
+ #: core/class-settings.php:543
4278
  msgctxt "settings"
4279
  msgid "Link to renewal page"
4280
  msgstr "Enlace a la página de renovación"
4281
 
4282
+ #: core/class-settings.php:492 core/class-settings.php:505
4283
+ #: core/class-settings.php:517 core/class-settings.php:530
4284
+ #: core/class-settings.php:544
4285
  msgctxt "settings"
4286
  msgid "Link to your site"
4287
  msgstr "Enlace a su sitio"
4288
 
4289
+ #: core/class-settings.php:495
4290
  msgctxt "admin settings"
4291
  msgid "Listing Renewal e-mail message"
4292
  msgstr "Mensaje de correo electrónico sobre Renovación del Listado"
4293
 
4294
+ #: core/class-settings.php:499
4295
  msgctxt "settings"
4296
  msgid ""
4297
  "Sent at the time of listing expiration. Applies to non-recurring renewals "
4300
  "Enviado al momento de expiración del listado. Aplica a renovaciones no "
4301
  "recurrentes únicamente."
4302
 
4303
+ #: core/class-settings.php:503 core/class-settings.php:542
4304
  msgctxt "settings"
4305
  msgid "Category that expired"
4306
  msgstr "Categoría que expiró"
4307
 
4308
+ #: core/class-settings.php:508
4309
  msgctxt "admin settings"
4310
  msgid "Listing auto-renewal reminder (recurring payments)"
4311
  msgstr "Recordatorio de auto-renovación del listado (pagos recurrentes)"
4312
 
4313
+ #: core/class-settings.php:512
4314
  msgctxt "settings"
4315
  msgid ""
4316
  "Sent some time before the listing is auto-renewed. Applies to recurring "
4319
  "Enviado algún tiempo antes de que el listado sea auto-renovado. Aplica a "
4320
  "renovaciones recurrentes únicamente."
4321
 
4322
+ #: core/class-settings.php:515 core/class-settings.php:529
4323
  msgctxt "settings"
4324
  msgid "Renewal date"
4325
  msgstr "Fecha de renovación"
4326
 
4327
+ #: core/class-settings.php:516
4328
  msgctxt "settings"
4329
  msgid "Category that is going to be renewed"
4330
  msgstr "Categoría que será renovada"
4331
 
4332
+ #: core/class-settings.php:518
4333
  msgctxt "settings"
4334
  msgid "Link to manage subscriptions"
4335
  msgstr "Enlace a la página de administración de pagos recurrentes"
4336
 
4337
+ #: core/class-settings.php:521
4338
  msgctxt "admin settings"
4339
  msgid "Listing Renewal e-mail message (recurring payments)"
4340
  msgstr ""
4341
  "Mensaje de correo electrónico sobre Renovación del Listado (para pago "
4342
  "automático)"
4343
 
4344
+ #: core/class-settings.php:525
4345
  msgctxt "settings"
4346
  msgid ""
4347
  "Sent after the listing is auto-renewed. Applies to recurring renewals only."
4349
  "Enviado luego de que el listado sea auto-renovado. Aplica a renovaciones "
4350
  "recurrentes únicamente."
4351
 
4352
+ #: core/class-settings.php:528
4353
  msgctxt "settings"
4354
  msgid "Renewed category"
4355
  msgstr "Categoría renovada"
4356
 
4357
+ #: core/class-settings.php:534
4358
  msgctxt "admin settings"
4359
  msgid "Renewal reminder e-mail message"
4360
  msgstr "Recordatorio por correo electrónico de renovación del listado"
4361
 
4362
+ #: core/class-settings.php:538
4363
  msgctxt "settings"
4364
  msgid ""
4365
  "Sent some time after listing expiration and when no renewal has occurred. "
4368
  "Enviado un tiempo después de que el listado expire y no haya sido renovado. "
4369
  "Aplica tanto a renovaciones recurrentes como no recurrentes."
4370
 
4371
+ #: core/class-settings.php:548
4372
  msgctxt "admin settings"
4373
  msgid "Payment"
4374
  msgstr "Pago"
4375
 
4376
+ #: core/class-settings.php:549
4377
  msgctxt "admin settings"
4378
  msgid "Payment Settings"
4379
  msgstr "Configuración de Pago"
4380
 
4381
+ #: core/class-settings.php:552
4382
  msgctxt "admin settings"
4383
  msgid "Turn On payments?"
4384
  msgstr "Activar pagos?"
4385
 
4386
+ #: core/class-settings.php:554
4387
  msgctxt "admin settings"
4388
  msgid "Put payment gateways in test mode?"
4389
  msgstr "Utilizar las pasarelas de pago en modo de prueba?"
4390
 
4391
+ #: core/class-settings.php:559
4392
  msgctxt "admin settings"
4393
  msgid "Perform checkouts on the secure (HTTPS) version of your site?"
4394
  msgstr "Realizar pagos en la versión segura (HTTPS) de su sitio?"
4395
 
4396
+ #: core/class-settings.php:562
4397
  msgctxt "admin settings"
4398
  msgid ""
4399
  "Recommended for added security. For this to work you need to enable HTTPS on "
4402
  "Recomendado para seguridad extra. Para que funcione debe tener habilitado "
4403
  "HTTPS en su servidor y <a>obtener un certificado SSL</a>."
4404
 
4405
+ #: core/class-settings.php:566
4406
  msgctxt "admin settings"
4407
  msgid "Currency Code"
4408
  msgstr "Código de Moneda"
4409
 
4410
+ #: core/class-settings.php:568
4411
  msgctxt "admin settings"
4412
  msgid "Australian Dollar (AUD)"
4413
  msgstr "Dólar Australiano (AUD)"
4414
 
4415
+ #: core/class-settings.php:569
4416
  msgctxt "admin settings"
4417
  msgid "Brazilian Real (BRL)"
4418
  msgstr "Real Brasilero (BRL)"
4419
 
4420
+ #: core/class-settings.php:570
4421
  msgctxt "admin settings"
4422
  msgid "Canadian Dollar (CAD)"
4423
  msgstr "Dólar Canadiense (CAD)"
4424
 
4425
+ #: core/class-settings.php:571
4426
  msgctxt "admin settings"
4427
  msgid "Czech Koruna (CZK)"
4428
  msgstr "Corona Checa (CZK)"
4429
 
4430
+ #: core/class-settings.php:572
4431
  msgctxt "admin settings"
4432
  msgid "Danish Krone (DKK)"
4433
  msgstr "Corona Danesa (DKK)"
4434
 
4435
+ #: core/class-settings.php:573
4436
  msgctxt "admin settings"
4437
  msgid "Euro (EUR)"
4438
  msgstr "Euro (EUR)"
4439
 
4440
+ #: core/class-settings.php:574
4441
  msgctxt "admin settings"
4442
  msgid "Hong Kong Dollar (HKD)"
4443
  msgstr "Dólar de Hong Kong (HKD)"
4444
 
4445
+ #: core/class-settings.php:575
4446
  msgctxt "admin settings"
4447
  msgid "Hungarian Forint (HUF)"
4448
  msgstr "Forinte Húngaro (HUF)"
4449
 
4450
+ #: core/class-settings.php:576
4451
  msgctxt "admin settings"
4452
  msgid "Israeli New Shequel (ILS)"
4453
  msgstr "Nuevo Shékel Israelí (ILS)"
4454
 
4455
+ #: core/class-settings.php:577
4456
  msgctxt "admin settings"
4457
  msgid "Japanese Yen (JPY)"
4458
  msgstr "Yen Japonés (JPY)"
4459
 
4460
+ #: core/class-settings.php:578
4461
  msgctxt "admin settings"
4462
  msgid "Malasian Ringgit (MYR)"
4463
  msgstr "Ringgit de Malasia (MYR)"
4464
 
4465
+ #: core/class-settings.php:579
4466
  msgctxt "admin settings"
4467
  msgid "Mexican Peso (MXN)"
4468
  msgstr "Peso Mexicano (MXN)"
4469
 
4470
+ #: core/class-settings.php:580
4471
  msgctxt "admin settings"
4472
  msgid "Norwegian Krone (NOK)"
4473
  msgstr "Corona Noruega (NOK)"
4474
 
4475
+ #: core/class-settings.php:581
4476
  msgctxt "admin settings"
4477
  msgid "New Zealand Dollar (NZD)"
4478
  msgstr "Dólar de Nueva Zelanda (NZD)"
4479
 
4480
+ #: core/class-settings.php:582
4481
  msgctxt "admin settings"
4482
  msgid "Philippine Peso (PHP)"
4483
  msgstr "Peso Filipino (PHP)"
4484
 
4485
+ #: core/class-settings.php:583
4486
  msgctxt "admin settings"
4487
  msgid "Polish Zloty (PLN)"
4488
  msgstr "Zloty Polaco (PLN)"
4489
 
4490
+ #: core/class-settings.php:584
4491
  msgctxt "admin settings"
4492
  msgid "Pound Sterling (GBP)"
4493
  msgstr "Libra Esterlina (GBP)"
4494
 
4495
+ #: core/class-settings.php:585
4496
  msgctxt "admin settings"
4497
  msgid "Singapore Dollar (SGD)"
4498
  msgstr "Dólar de Singapur (SGD)"
4499
 
4500
+ #: core/class-settings.php:586
4501
  msgctxt "admin settings"
4502
  msgid "Swedish Krona (SEK)"
4503
  msgstr "Corona Sueca (SEK)"
4504
 
4505
+ #: core/class-settings.php:587
4506
  msgctxt "admin settings"
4507
  msgid "Swiss Franc (CHF)"
4508
  msgstr "Franco Suizo (CHF)"
4509
 
4510
+ #: core/class-settings.php:588
4511
  msgctxt "admin settings"
4512
  msgid "Taiwan Dollar (TWD)"
4513
  msgstr "Dólar de Taiwán (TWD)"
4514
 
4515
+ #: core/class-settings.php:589
4516
  msgctxt "admin settings"
4517
  msgid "Thai Baht (THB)"
4518
  msgstr "Baht de Tailandia (THB)"
4519
 
4520
+ #: core/class-settings.php:590
4521
  msgctxt "admin settings"
4522
  msgid "Turkish Lira (TRY)"
4523
  msgstr "Lira Turca (TRY)"
4524
 
4525
+ #: core/class-settings.php:591
4526
  msgctxt "admin settings"
4527
  msgid "U.S. Dollar (USD)"
4528
  msgstr "Dólar Americano (USD)"
4529
 
4530
+ #: core/class-settings.php:595
4531
  msgctxt "admin settings"
4532
  msgid "Currency Symbol"
4533
  msgstr "Símbolo de Moneda"
4534
 
4535
+ #: core/class-settings.php:600
4536
  msgctxt "admin settings"
4537
  msgid "Currency symbol display"
4538
  msgstr "Presentación de símbolo de moneda"
4539
 
4540
+ #: core/class-settings.php:604
4541
  msgctxt "admin settings"
4542
  msgid "Show currency symbol on the left"
4543
  msgstr "Mostrar el símbolo de moneda a la izquierda"
4544
 
4545
+ #: core/class-settings.php:605
4546
  msgctxt "admin settings"
4547
  msgid "Show currency symbol on the right"
4548
  msgstr "Mostrar el símbolo de moneda a la derecha"
4549
 
4550
+ #: core/class-settings.php:606
4551
  msgctxt "admin settings"
4552
  msgid "Do not show currency symbol"
4553
  msgstr "No mostrar el símbolo de moneda"
4554
 
4555
+ #: core/class-settings.php:608
4556
  msgctxt "admin settings"
4557
  msgid "Thank you for payment message"
4558
  msgstr "Mensaje de agradecimiento por el pago"
4559
 
4560
+ #: core/class-settings.php:609
4561
  msgctxt "admin settings"
4562
  msgid ""
4563
  "Thank you for your payment. Your payment is being verified and your listing "
4566
  "Gracias por su pago. Su pago está siendo verificado y su listado revisado. "
4567
  "Este proceso puede tardar hasta 48 horas."
4568
 
4569
+ #: core/class-settings.php:614
4570
  msgctxt "admin settings"
4571
  msgid "Ask users to come back for abandoned payments?"
4572
  msgstr ""
4573
  "Contactar a los usuarios para pedirles que regresen a pagar pagos pendientes?"
4574
 
4575
+ #: core/class-settings.php:617
4576
  msgctxt "admin settings"
4577
  msgid ""
4578
  "An abandoned payment is when a user attempts to place a listing and gets to "
4585
  "en listados que parece que fallaron cuando el usuario simplemente no "
4586
  "completó la transacción. BD puede recordarles para que efectúen el pago."
4587
 
4588
+ #: core/class-settings.php:623
4589
  msgctxt "admin settings"
4590
  msgid "Listing abandonment threshold (hours)"
4591
  msgstr "Tiempo tras el cual el listado es considerado abandonado (en horas)"
4592
 
4593
+ #: core/class-settings.php:628
4594
  msgctxt "admin settings"
4595
  msgid ""
4596
  "Listings with pending payments are marked as abandoned after this time. You "
4600
  "tiempo. También puede <a>personalizar el correo-e</a> que los usuarios "
4601
  "reciben."
4602
 
4603
+ #: core/class-settings.php:633
4604
  msgctxt "admin settings"
4605
  msgid "Themes"
4606
  msgstr "Temas"
4607
 
4608
+ #: core/class-settings.php:635
4609
  msgctxt "admin settings"
4610
  msgid "You can manage your themes on <a>Directory Themes</a>."
4611
  msgstr "Puede manejar los temas en <a>Temas del Directorio</a>."
4612
 
4613
+ #: core/class-settings.php:640
4614
  msgctxt "admin settings"
4615
  msgid "Theme button style"
4616
  msgstr "Estilo de botones de temas"
4617
 
4618
+ #: core/class-settings.php:644
4619
  msgctxt "admin settings"
4620
  msgid "Use the BD theme style for BD buttons"
4621
  msgstr "Utilizar el estilo de BD para los botones de BD"
4622
 
4623
+ #: core/class-settings.php:645
4624
  msgctxt "admin settings"
4625
  msgid "Use the WP theme style for BD buttons"
4626
  msgstr "Utilizar el estilo del tema de WP para los botones de BD"
4627
 
4628
+ #: core/class-settings.php:652
4629
  msgctxt "admin settings"
4630
  msgid "Image"
4631
  msgstr "Imágenes"
4632
 
4633
+ #: core/class-settings.php:653
4634
  msgctxt "admin settings"
4635
  msgid ""
4636
  "Any changes to these settings will affect new listings only. Existing "
4643
  "existentes, deberá subir de nuevo las imágenes necesarias luego de hacer los "
4644
  "cambios aquí."
4645
 
4646
+ #: core/class-settings.php:654
4647
  msgctxt "admin settings"
4648
  msgid "Image Settings"
4649
  msgstr "Configuración de Imágenes"
4650
 
4651
+ #: core/class-settings.php:655
4652
  msgctxt "admin settings"
4653
  msgid "Allow images?"
4654
  msgstr "Permitir imágenes?"
4655
 
4656
+ #: core/class-settings.php:657
4657
  msgctxt "admin settings"
4658
  msgid "Min Image File Size (KB)"
4659
  msgstr "Tamaño mínimo de imagen (KB)"
4660
 
4661
+ #: core/class-settings.php:658
4662
  msgctxt "admin settings"
4663
  msgid "Max Image File Size (KB)"
4664
  msgstr "Tamaño máximo de imagen (KB)"
4665
 
4666
+ #: core/class-settings.php:660
4667
  msgctxt "admin settings"
4668
  msgid "Min image width (px)"
4669
  msgstr "Ancho mínimo de imagen (en px)"
4670
 
4671
+ #: core/class-settings.php:661
4672
  msgctxt "admin settings"
4673
  msgid "Min image height (px)"
4674
  msgstr "Alto mínimo de imagen (en px)"
4675
 
4676
+ #: core/class-settings.php:663
4677
  msgctxt "admin settings"
4678
  msgid "Max image width (px)"
4679
  msgstr "Ancho máximo de imagen (px)"
4680
 
4681
+ #: core/class-settings.php:664
4682
  msgctxt "admin settings"
4683
  msgid "Max image height (px)"
4684
  msgstr "Alto máximo de imagen (px)"
4685
 
4686
+ #: core/class-settings.php:666
4687
  msgctxt "admin settings"
4688
  msgid "Turn on thickbox/lightbox?"
4689
  msgstr "Activar Thickbox/Lightbox?"
4690
 
4691
+ #: core/class-settings.php:666
4692
  msgctxt "admin settings"
4693
  msgid ""
4694
  "Uncheck if it conflicts with other elements or plugins installed on your site"
4696
  "Desmarque si entra en conflicto con otros elementos o plugins instalados en "
4697
  "su sitio"
4698
 
4699
+ #: core/class-settings.php:668
4700
  msgctxt "admin settings"
4701
  msgid "Thumbnails"
4702
  msgstr "Imágenes de previsualización"
4703
 
4704
+ #: core/class-settings.php:669
4705
  msgctxt "admin settings"
4706
  msgid "Thumbnail width (px)"
4707
  msgstr "Ancho de thumbnail (px)"
4708
 
4709
+ #: core/class-settings.php:670
4710
  msgctxt "admin settings"
4711
  msgid "Thumbnail height (px)"
4712
  msgstr "Alto de thumbnail (px)"
4713
 
4714
+ #: core/class-settings.php:673
4715
  msgctxt "admin settings"
4716
  msgid "Crop thumbnails to exact dimensions?"
4717
  msgstr "Cortar imágenes de previsualización a las dimensiones exactas?"
4718
 
4719
+ #: core/class-settings.php:676
4720
  msgctxt "admin settings"
4721
  msgid ""
4722
  "When enabled images will match exactly the dimensions above but part of the "
4730
  "alto será ajustado proporcionalmente. Dependiendo de las imágenes que se "
4731
  "hayan utilizado, estas podrían tener diferentes alturas."
4732
 
4733
+ #: core/class-settings.php:682
4734
  msgctxt "admin settings"
4735
  msgid "Number of free images"
4736
  msgstr "Número de imágenes gratuitas"
4737
 
4738
+ #: core/class-settings.php:687
4739
  msgctxt "admin settings"
4740
  msgid ""
4741
  "For paid listing images, configure that by adding or editing a <a>Fee Plan</"
4744
  "Configure las imágenes de listados pagos agregando o editando una "
4745
  "<a>comisión</a> pues este valor será ignorado para listados pagos."
4746
 
4747
+ #: core/class-settings.php:690
4748
  msgctxt "admin settings"
4749
  msgid "Use default picture for listings with no picture?"
4750
  msgstr "Utilizar imagen por defecto en listados sin imagen?"
4751
 
4752
+ #: core/class-settings.php:691
4753
  msgctxt "admin settings"
4754
  msgid "Show Thumbnail on main listings page?"
4755
  msgstr "Mostrar thumbnails en las páginas principales?"
4756
 
4757
+ #: core/class-settings.php:720
4758
  msgctxt "admin settings"
4759
  msgid "User"
4760
  msgstr "Usuario"
4761
 
4762
+ #: core/class-settings.php:721
4763
  msgctxt "admin settings"
4764
  msgid "User registration date"
4765
  msgstr "Fecha de registro del usuario"
4766
 
4767
+ #: core/class-settings.php:747
4768
  msgctxt "admin settings"
4769
  msgid ""
4770
  "Could not copy the AJAX compatibility plugin \"%s\". Compatibility mode was "
4773
  "No se pudo copiar el plugin de compatibilidad AJAX \"%s\". El modo de "
4774
  "compatibilidad no fue activado."
4775
 
4776
+ #: core/class-settings.php:755
4777
  msgctxt "admin settings"
4778
  msgid ""
4779
  "Could not activate AJAX Compatibility mode: the directory \"%s\" could not "
4782
  "No se pudo activar el modo de compatibilidad AJAX: el directorio \"%s\" no "
4783
  "pudo ser creado."
4784
 
4785
+ #: core/class-settings.php:764
4786
  msgctxt "admin settings"
4787
  msgid ""
4788
  "Could not remove the \"Business Directory Plugin - AJAX Compatibility Module"
4791
  "No se pudo remover \"Business Directory Plugin - AJAX Compatibility Module"
4792
  "\". Por favor elimine el archivo \"%s\" manualmente o desactive el plugin."
4793
 
4794
+ #: core/class-settings.php:1084
4795
  msgctxt "settings"
4796
  msgid "Deactivate License"
4797
  msgstr "Desactivar Licencia"
4798
 
4799
+ #: core/class-settings.php:1086
4800
  msgctxt "settings"
4801
  msgid "Deactivating license..."
4802
  msgstr "Desactivando licencia..."
4803
 
4804
+ #: core/class-settings.php:1089
4805
  msgctxt "settings"
4806
  msgid "Activate License"
4807
  msgstr "Activar Licencia"
4808
 
4809
+ #: core/class-settings.php:1091
4810
  msgctxt "settings"
4811
  msgid "Activating license..."
4812
  msgstr "Activando licencia..."
4813
 
4814
+ #: core/class-settings.php:1114
4815
  msgctxt "admin settings"
4816
  msgid "Valid placeholders: %s"
4817
  msgstr "Comodines válidos: %s"
4818
 
4819
+ #: core/class-settings.php:1148
4820
  msgctxt "settings email"
4821
  msgid "Click to edit e-mail"
4822
  msgstr "Click para editar el correo"
4823
 
4824
+ #: core/class-settings.php:1149
4825
  msgctxt "settings email"
4826
  msgid "Click to edit"
4827
  msgstr "Click para editar"
4828
 
4829
+ #: core/class-settings.php:1162
4830
  msgctxt "settings email"
4831
  msgid "E-Mail Subject"
4832
  msgstr "Título del correo"
4833
 
4834
+ #: core/class-settings.php:1173
4835
  msgctxt "settings email"
4836
  msgid "E-Mail Body"
4837
  msgstr "Cuerpo del correo"
4838
 
4839
+ #: core/class-settings.php:1184
4840
  msgctxt "settings email"
4841
  msgid "You can use the following placeholders:"
4842
  msgstr "Puede utilizar los siguientes comodines:"
4843
 
4844
+ #: core/class-settings.php:1207
4845
  msgctxt "settings email"
4846
  msgid "Preview e-mail"
4847
  msgstr "Previsualizar correo"
4848
 
4849
+ #: core/class-settings.php:1208
4850
  msgctxt "settings email"
4851
  msgid "Cancel"
4852
  msgstr "Cancelar"
4853
 
4854
+ #: core/class-settings.php:1209
4855
  msgctxt "settings email"
4856
  msgid "Save Changes"
4857
  msgstr "Guardar Cambios"
4858
 
4859
+ #: core/class-settings.php:1228
4860
  msgctxt "settings email"
4861
  msgid "Site title"
4862
  msgstr "Título del sitio"
4863
 
4864
+ #: core/class-settings.php:1231
4865
  msgctxt "settings email"
4866
  msgid "Site title (with link)"
4867
  msgstr "Título del listado (con enlace)"
4868
 
4869
+ #: core/class-settings.php:1234
4870
  msgctxt "settings email"
4871
  msgid "Site address (with link)"
4872
  msgstr "Dirección del listado (con enlace)"
4873
 
4874
+ #: core/class-settings.php:1237
4875
  msgctxt "settings email"
4876
  msgid "Directory URL (with link)"
4877
  msgstr "URL del Directorio (con enlace)"
4878
 
4879
+ #: core/class-settings.php:1240
4880
  msgctxt "settings email"
4881
  msgid "Current date"
4882
  msgstr "Fecha actual"
4883
 
4884
+ #: core/class-settings.php:1243
4885
  msgctxt "settings email"
4886
  msgid "Current time"
4887
  msgstr "Hora actual"
5044
  #: core/fieldtypes/class-fieldtypes-multiselect.php:25
5045
  msgctxt "form-fields-admin"
5046
  msgid "Number of options visible without scrolling"
5047
+ msgstr "Número de opciones visibles sin hacer scroll"
5048
 
5049
  #: core/fieldtypes/class-fieldtypes-multiselect.php:26
5050
  msgctxt "form-fields-admin"
5052
  "The height of the list will be adjusted to accommodate the specified number "
5053
  "of options."
5054
  msgstr ""
5055
+ "La altura de la lista será ajustada para incluir el número especificado de "
5056
+ "opciones."
5057
 
5058
  #: core/fieldtypes/class-fieldtypes-phone-number.php:13
5059
  msgctxt "form fields"
5536
  msgid "Listing upgrade to featured"
5537
  msgstr "Mejora a Destacado"
5538
 
5539
+ #: core/installer.php:1012
5540
+ msgctxt "installer"
5541
+ msgid ""
5542
+ "Cleaning up stored meta data for Checkbox, Radio and Select fields... (%d "
5543
+ "records left)"
5544
+ msgstr ""
5545
+ "Limpiando meta data para campos Checkbox, Radio y Select… (%d registros "
5546
+ "pendientes)"
5547
+
5548
+ #: core/installer.php:1061
5549
  msgid "Business Directory - Manual Upgrade Required"
5550
  msgstr "Business Directory - Actualización Manual Requerida"
5551
 
5552
+ #: core/installer.php:1063
5553
  msgid ""
5554
  "Business Directory features are currently disabled because the plugin needs "
5555
  "to perform a manual upgrade before continuing."
5557
  "Las características de Business Directory se encuentran deshabitadas pues es "
5558
  "necesario realizar una actualización manual antes de continuar."
5559
 
5560
+ #: core/installer.php:1065
5561
  msgid "Perform Manual Upgrade"
5562
  msgstr "Realizar Actualización Manual"
5563
 
5564
+ #: core/installer.php:1081 core/installer.php:1082 core/installer.php:1093
5565
  msgid "Business Directory - Manual Upgrade"
5566
  msgstr "Business Directory - Actualización Manual"
5567
 
5568
+ #: core/installer.php:1097
5569
  msgid ""
5570
  "Business Directory features are currently disabled because the plugin needs "
5571
  "to perform a manual upgrade before it can be used."
5574
  "necesario realizar una actualización manual antes de que el plugin pueda ser "
5575
  "utilizado."
5576
 
5577
+ #: core/installer.php:1099
5578
  msgid "Click \"Start Upgrade\" and wait until the process finishes."
5579
  msgstr ""
5580
  "Haga clic en \"Iniciar Actualización\" y espere hasta que el proceso "
5581
  "finalice."
5582
 
5583
+ #: core/installer.php:1102
5584
  msgctxt "manual-upgrade"
5585
  msgid "Start Upgrade"
5586
  msgstr "Iniciar Actualización"
5587
 
5588
+ #: core/installer.php:1104
5589
  msgctxt "manual-upgrade"
5590
  msgid "Pause Upgrade"
5591
  msgstr "Detener Actualización"
5592
 
5593
+ #: core/installer.php:1110
5594
  msgctxt "manual-upgrade"
5595
  msgid ""
5596
  "The upgrade was sucessfully performed. Business Directory Plugin is now "
5599
  "La actualización fue ejecutada con éxito. Business Directory Plugin ahora se "
5600
  "encienta disponible para su uso."
5601
 
5602
+ #: core/installer.php:1113
5603
  msgctxt "manual-upgrade"
5604
  msgid "Go to \"Directory Admin\""
5605
  msgstr "Ir a \"Administración del Directorio\""
5606
 
5607
+ #: core/installer.php:1148
5608
  msgid "Business Directory - Installation Failed"
5609
  msgstr "Business Directory - La Instalación Falló"
5610
 
5611
+ #: core/installer.php:1150
5612
  msgid ""
5613
  "Business Directory installation failed. An exception with following message "
5614
  "was generated:"
5616
  "La instalación de Business Directory falló. Se generó una excepción con el "
5617
  "siguiente mensaje:"
5618
 
5619
+ #: core/installer.php:1155
5620
  msgid "Please <contact-link>contact customer support</a>."
5621
  msgstr "Por favor <contact-link>contacte al soporte al cliente</a>."
5622
 
5907
  msgid "No listing categories found."
5908
  msgstr "No se encontraron categorías."
5909
 
5910
+ #: core/templates-ui.php:194
5911
  msgid "Directory"
5912
  msgstr "Directorio"
5913
 
5914
+ #: core/templates-ui.php:201
5915
  msgid "View All Listings"
5916
  msgstr "Ver Todos los Listados"
5917
 
5918
+ #: core/templates-ui.php:208
5919
  msgid "Create A Listing"
5920
  msgstr "Crear un Listado"
5921
 
5922
+ #: core/templates-ui.php:241
5923
  msgctxt "templates"
5924
  msgid "Search Listings"
5925
  msgstr "Buscar Listados"
5926
 
5927
+ #: core/templates-ui.php:244
5928
  msgctxt "templates"
5929
  msgid "Advanced Search"
5930
  msgstr "Búsqueda Avanzada"
5931
 
5932
+ #: core/templates-ui.php:273 core/templates-ui.php:298
5933
  msgctxt "templates sort"
5934
  msgid "Sort By:"
5935
  msgstr "Ordenar Por:"
5936
 
5937
+ #: core/templates-ui.php:292
5938
  msgctxt "sort"
5939
  msgid "Reset"
5940
  msgstr "Restablecer"
5941
 
5942
+ #: core/templates-ui.php:314
5943
  msgctxt "sort"
5944
  msgid "(Reset)"
5945
  msgstr "(Reestablecer)"
6056
  msgstr "No está autorizado para editar este listado."
6057
 
6058
  #: core/view-submit-listing.php:58
 
6059
  msgctxt "views"
6060
  msgid "Edit Your Listing"
6061
  msgstr "Editar Su Listado"
6586
  msgstr "Por favor ingrese los datos de su tarjeta de crédito abajo."
6587
 
6588
  #: templates/billing-information-form.tpl.php:36
 
6589
  msgctxt "checkout form"
6590
  msgid "E-mail:"
6591
+ msgstr "Correo Electrónico:"
6592
 
6593
  #: templates/billing-information-form.tpl.php:44
6594
  msgctxt "checkout form"
6651
  msgstr "Código Postal:"
6652
 
6653
  #: templates/billing-information-form.tpl.php:151
 
6654
  msgctxt "checkout form"
6655
  msgid "Phone Number:"
6656
+ msgstr "Número telefónico:"
6657
 
6658
  #: templates/billing-information-form.tpl.php:161
6659
  msgctxt "WPBDM"
7285
  msgid "http://businessdirectoryplugin.com"
7286
  msgstr "http://businessdirectoryplugin.com"
7287
 
7288
+ #~ msgctxt "admin settings"
7289
+ #~ msgid ""
7290
+ #~ "Allow visitors to discuss listings using the standard WordPress comment "
7291
+ #~ "form. Comments are public."
7292
+ #~ msgstr ""
7293
+ #~ "Permite a los visitantes discutir un listado utilizando el formulario de "
7294
+ #~ "comentarios estándar de WordPress. Todos los comentarios (no SPAM) son "
7295
+ #~ "públicos."
7296
+
7297
  #~ msgctxt "title"
7298
  #~ msgid "Submit A Listing"
7299
  #~ msgstr "Enviar Un Listado"
languages/WPBDM-fr_FR.mo CHANGED
Binary file
languages/WPBDM-fr_FR.po CHANGED
@@ -4,7 +4,7 @@ msgid ""
4
  msgstr ""
5
  "Project-Id-Version: Business Directory Plugin 3.6\n"
6
  "Report-Msgid-Bugs-To: http://wordpress.org/tag/business-directory-plugin\n"
7
- "POT-Creation-Date: 2016-11-25 09:40:43+00:00\n"
8
  "PO-Revision-Date: 2016-08-29 18:17-0300\n"
9
  "Last-Translator: BD Team <support@businessdirectoryplugin.com>\n"
10
  "Language-Team: BD Team <support@businessdirectoryplugin.com>\n"
@@ -990,84 +990,84 @@ msgctxt "form-fields admin"
990
  msgid "Field deleted."
991
  msgstr "Champ effacé."
992
 
993
- #: admin/form-fields.php:272
994
  msgctxt "form-fields admin"
995
  msgid "Required fields created successfully."
996
  msgstr "Champs requis créés avec succès."
997
 
998
- #: admin/form-fields.php:285
999
  msgctxt "form-fields admin"
1000
  msgid "Title"
1001
  msgstr "Titre"
1002
 
1003
- #: admin/form-fields.php:286
1004
  msgctxt "form-fields admin"
1005
  msgid "Category"
1006
  msgstr "Catégorie"
1007
 
1008
- #: admin/form-fields.php:287
1009
  msgctxt "form-fields admin"
1010
  msgid "Excerpt"
1011
  msgstr "Extrait"
1012
 
1013
- #: admin/form-fields.php:288
1014
  msgctxt "form-fields admin"
1015
  msgid "Content"
1016
  msgstr "Contenu"
1017
 
1018
- #: admin/form-fields.php:289
1019
  msgctxt "form-fields admin"
1020
  msgid "Tags"
1021
  msgstr "Étiquettes (tags)"
1022
 
1023
- #: admin/form-fields.php:290
1024
  msgctxt "form-fields admin"
1025
  msgid "Address"
1026
  msgstr "Adresse"
1027
 
1028
- #: admin/form-fields.php:291
1029
  #, fuzzy
1030
  msgctxt "form-fields admin"
1031
  msgid "City"
1032
  msgstr "Ville: "
1033
 
1034
- #: admin/form-fields.php:292
1035
  #, fuzzy
1036
  msgctxt "form-fields admin"
1037
  msgid "State"
1038
  msgstr "Région: "
1039
 
1040
- #: admin/form-fields.php:293
1041
  msgctxt "form-fields admin"
1042
  msgid "ZIP Code"
1043
  msgstr "Code Postal"
1044
 
1045
- #: admin/form-fields.php:294
1046
  msgctxt "form-fields admin"
1047
  msgid "FAX Number"
1048
  msgstr "Numéro de fax"
1049
 
1050
- #: admin/form-fields.php:295
1051
  msgctxt "form-fields admin"
1052
  msgid "Phone Number"
1053
  msgstr "Numéro de téléphone"
1054
 
1055
- #: admin/form-fields.php:296
1056
  msgctxt "form-fields admin"
1057
  msgid "Ratings Field"
1058
  msgstr "Champs d'évaluation"
1059
 
1060
- #: admin/form-fields.php:297
1061
  msgctxt "form-fields admin"
1062
  msgid "Twitter"
1063
  msgstr "Twitter"
1064
 
1065
- #: admin/form-fields.php:298
1066
  msgctxt "form-fields admin"
1067
  msgid "Website"
1068
  msgstr "Site Internet"
1069
 
1070
- #: admin/form-fields.php:319
1071
  msgctxt "form-fields admin"
1072
  msgid "Tags updated."
1073
  msgstr "Étiquettes mises à jour."
@@ -2228,7 +2228,7 @@ msgstr ""
2228
  "Veuillez voir la <a>Documentation de champs de formulaire</a> pour plus de "
2229
  "détails."
2230
 
2231
- #. #-#-#-#-# WPBDM.pot (Business Directory Plugin 4.1.5dev6) #-#-#-#-#
2232
  #. Plugin Name of the plugin/theme
2233
  #: admin/templates/header.tpl.php:4
2234
  msgid "Business Directory Plugin"
@@ -3021,34 +3021,34 @@ msgctxt "tracking"
3021
  msgid "Allow Tracking"
3022
  msgstr "Autoriser l'analyse"
3023
 
3024
- #: business-directory-plugin.php:667
3025
  msgctxt "admin plugins"
3026
  msgid "Settings"
3027
  msgstr "Paramètres"
3028
 
3029
- #: business-directory-plugin.php:775 business-directory-plugin.php:782
3030
  msgctxt "rss feed"
3031
  msgid "%s Feed"
3032
  msgstr "%s diffusion"
3033
 
3034
- #: business-directory-plugin.php:1117 core/view-submit-listing.php:58
3035
  #: core/views/submit_listing.php:10
3036
  #, fuzzy
3037
  msgctxt "views"
3038
  msgid "Submit A Listing"
3039
  msgstr "Soumettre une annonce"
3040
 
3041
- #: business-directory-plugin.php:1122
3042
  msgctxt "title"
3043
  msgid "Find a Listing"
3044
  msgstr "Trouver une annonce"
3045
 
3046
- #: business-directory-plugin.php:1127
3047
  msgctxt "title"
3048
  msgid "View All Listings"
3049
  msgstr "Voir toutes les annonces"
3050
 
3051
- #: business-directory-plugin.php:1156
3052
  msgctxt "title"
3053
  msgid "Listings tagged: %s"
3054
  msgstr "Annonces marquées: %s"
@@ -3117,19 +3117,19 @@ msgctxt "form-fields-api"
3117
  msgid "Invalid form field type"
3118
  msgstr "Type de champ de formulaire invalide"
3119
 
3120
- #: core/class-form-field.php:498
3121
  msgctxt "form-fields-api"
3122
  msgid "Field label is required."
3123
  msgstr "L'étiquette de champ est requise"
3124
 
3125
- #: core/class-form-field.php:508
3126
  msgctxt "form-fields-api"
3127
  msgid "Requested field type change is incompatible. Type will not be modified."
3128
  msgstr ""
3129
  "La modification du type de champ est incompatible. Le type de champ ne sera "
3130
  "pas modifié."
3131
 
3132
- #: core/class-form-field.php:528
3133
  msgctxt "form-fields-api"
3134
  msgid ""
3135
  "There can only be one field with association \"%s\". Please select another "
@@ -3138,17 +3138,17 @@ msgstr ""
3138
  "Il ne peut y avoir qu'un champ avec l'association \"% s \". Veuillez "
3139
  "sélectionner une autre association."
3140
 
3141
- #: core/class-form-field.php:538
3142
  msgctxt "form-fields-api"
3143
  msgid "\"%s\" is an invalid field type for this association."
3144
  msgstr "\" est un type de champ invalide pour cette association."
3145
 
3146
- #: core/class-form-field.php:576
3147
  msgctxt "form-fields-api"
3148
  msgid "Invalid field ID"
3149
  msgstr "ID de champ invalide"
3150
 
3151
- #: core/class-form-field.php:585
3152
  msgctxt "form-fields api"
3153
  msgid ""
3154
  "This form field can't be deleted because it is required for the plugin to "
@@ -3157,7 +3157,7 @@ msgstr ""
3157
  "Ce champ de formulaire ne peut pas être supprimé car il est nécessaire pour "
3158
  "que le plugin fonctionne."
3159
 
3160
- #: core/class-form-field.php:597
3161
  msgctxt "form-fields-api"
3162
  msgid "An error occurred while trying to delete this field."
3163
  msgstr "Une erreur est survenue en essayant de supprimer ce champ."
@@ -3218,12 +3218,12 @@ msgctxt "listing"
3218
  msgid "(Fee Unavailable)"
3219
  msgstr "(Coûts Non disponible)"
3220
 
3221
- #: core/class-listings-api.php:306
3222
  msgctxt "notify email"
3223
  msgid "[%s] New listing notification"
3224
  msgstr "[%s] Nouvelle notification d'annonce"
3225
 
3226
- #: core/class-listings-api.php:325
3227
  msgctxt "notify email"
3228
  msgid "[%s] Listing edit notification"
3229
  msgstr "[%s] Notification d'édition d'annonce"
@@ -3615,13 +3615,13 @@ msgctxt "admin settings"
3615
  msgid "Enable AJAX compatibility mode?"
3616
  msgstr "Activer le mode de comptabilité AJAX ?"
3617
 
3618
- #: core/class-settings.php:181 core/class-settings.php:665
3619
  msgctxt "admin settings"
3620
  msgid "Listings"
3621
  msgstr "Annonces"
3622
 
3623
- #: core/class-settings.php:182 core/class-settings.php:335
3624
- #: core/class-settings.php:622
3625
  msgctxt "admin settings"
3626
  msgid "General Settings"
3627
  msgstr "Paramètres généraux"
@@ -3693,52 +3693,70 @@ msgstr ""
3693
  "Utilisez ceci pour prévenir les annonces contenant des spams. 0 signifie un "
3694
  "nombre de soumission illimité par jour."
3695
 
3696
- #: core/class-settings.php:220
3697
  msgctxt "admin settings"
3698
  msgid "Include comment form on listing pages?"
3699
  msgstr "Inclure les formulaire de commentaires dans pages annonces ?"
3700
 
3701
- #: core/class-settings.php:223
3702
  msgctxt "admin settings"
3703
  msgid ""
3704
- "Allow visitors to discuss listings using the standard WordPress comment "
3705
- "form. Comments are public."
 
 
 
3706
  msgstr ""
3707
- "Permettre aux visiteurs de discuter des annonces en utilisant le formulaire "
3708
- "de commentaire standard WordPress. Les commentaires sont visibles par tous."
3709
 
3710
- #: core/class-settings.php:224
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
3711
  msgctxt "admin settings"
3712
  msgid "Show listings under categories on main page?"
3713
  msgstr "Voir les annonces catégorisées sur la page principale?"
3714
 
3715
- #: core/class-settings.php:225
3716
  msgctxt "admin settings"
3717
  msgid "Status of listings upon uninstalling plugin"
3718
  msgstr "Statut des annonces dès la désinstallation du plugin"
3719
 
3720
- #: core/class-settings.php:226 core/class-settings.php:228
3721
  msgctxt "post status"
3722
  msgid "Draft"
3723
  msgstr ""
3724
 
3725
- #: core/class-settings.php:226 core/class-settings.php:228
3726
  msgctxt "post status"
3727
  msgid "Trash"
3728
  msgstr ""
3729
 
3730
- #: core/class-settings.php:227
3731
  msgctxt "admin settings"
3732
  msgid "Status of deleted listings"
3733
  msgstr "Statut des annonces effacées"
3734
 
3735
- #: core/class-settings.php:229
3736
  #, fuzzy
3737
  msgctxt "admin settings"
3738
  msgid "Submit Listing instructions message"
3739
  msgstr "Lister des messages de contact"
3740
 
3741
- #: core/class-settings.php:229
3742
  msgctxt "admin settings"
3743
  msgid ""
3744
  "This text is displayed at the first page of the Submit Listing process for "
@@ -3746,22 +3764,22 @@ msgid ""
3746
  "form or anything you want to tell users before they get started."
3747
  msgstr ""
3748
 
3749
- #: core/class-settings.php:231
3750
  msgctxt "admin settings"
3751
  msgid "Listing Renewal"
3752
  msgstr "Renouvellement des annonces"
3753
 
3754
- #: core/class-settings.php:232
3755
  msgctxt "admin settings"
3756
  msgid "Turn on listing renewal option?"
3757
  msgstr "Activer l'option renouvellement des annonces ?"
3758
 
3759
- #: core/class-settings.php:235
3760
  msgctxt "admin settings"
3761
  msgid "Allow recurring renewal payments?"
3762
  msgstr "Autoriser les paiements récurrents de renouvellement ?"
3763
 
3764
- #: core/class-settings.php:238
3765
  msgctxt "admin settings"
3766
  msgid ""
3767
  "Allow users to opt in for automatic renewal of their listings. The fee is "
@@ -3771,13 +3789,13 @@ msgstr ""
3771
  "leurs annonces. La redevance est perçue au moment de l'inscription et expire "
3772
  "sans intervention de l'utilisateur."
3773
 
3774
- #: core/class-settings.php:242
3775
  msgctxt "admin settings"
3776
  msgid "Use recurring payments as the default payment method?"
3777
  msgstr ""
3778
  "Utiliser les paiements récurrents comme méthode de paiement par défaut?"
3779
 
3780
- #: core/class-settings.php:245
3781
  msgctxt "admin settings"
3782
  msgid ""
3783
  "Enable automatic renewal without having users opt in during the submit "
@@ -3786,13 +3804,13 @@ msgstr ""
3786
  "Activer le renouvellement automatique sans avoir à avertir les utilisateurs "
3787
  "lors du processus de soumission."
3788
 
3789
- #: core/class-settings.php:250
3790
  msgctxt "admin settings"
3791
  msgid "Listing renewal e-mail threshold (in days)"
3792
  msgstr "Seuil de renouvellement des annonces par e-mail (en jours)"
3793
 
3794
  # Todo as soon as possible. I don't understand exactly what does this sentence...
3795
- #: core/class-settings.php:253
3796
  msgctxt "admin settings"
3797
  msgid ""
3798
  "Configure how many days before listing expiration is the renewal e-mail sent."
@@ -3800,7 +3818,7 @@ msgstr ""
3800
  "Configurer le nombre de jours avant l'expiration des annonces doit se "
3801
  "dérouler le renouvellement d'envoi d'e-mail."
3802
 
3803
- #: core/class-settings.php:257
3804
  msgctxt "admin settings"
3805
  msgid ""
3806
  "Send expiration notices including a cancel links to auto-renewed listings?"
@@ -3808,19 +3826,19 @@ msgstr ""
3808
  "Envoyer des avis d'expiration y compris un lien d'annulation vers le "
3809
  "renouvellement automatique des annonces ?"
3810
 
3811
- #: core/class-settings.php:264
3812
  msgctxt "admin settings"
3813
  msgid "Remind listing owners of expired listings (past due)?"
3814
  msgstr ""
3815
  "Rappeler les propriétaires des annonces lorsque ces dernières arrives à "
3816
  "expiration (en souffrance)?"
3817
 
3818
- #: core/class-settings.php:269
3819
  msgctxt "admin settings"
3820
  msgid "Listing renewal reminder e-mail threshold (in days)"
3821
  msgstr "Seuil du renouvellement des rappels e-mail des annonces (en jours)"
3822
 
3823
- #: core/class-settings.php:272
3824
  msgctxt "admin settings"
3825
  msgid ""
3826
  "Configure how many days after the expiration of a listing an e-mail reminder "
@@ -3829,175 +3847,175 @@ msgstr ""
3829
  "Configurer le nombre de jours après l'expiration d'une annonces d'un rappel "
3830
  "avant qu'un e-mail soit envoyé au propriétaire."
3831
 
3832
- #: core/class-settings.php:275
3833
  msgctxt "admin settings"
3834
  msgid "Post/Category Settings"
3835
  msgstr "Paramètres de Messages/Catégories"
3836
 
3837
- #: core/class-settings.php:276
3838
  msgctxt "admin settings"
3839
  msgid "Default new post status"
3840
  msgstr "Statut du nouveau message par défaut"
3841
 
3842
- #: core/class-settings.php:277 core/class-settings.php:280
3843
  msgctxt "post status"
3844
  msgid "Published"
3845
  msgstr ""
3846
 
3847
- #: core/class-settings.php:277 core/class-settings.php:280
3848
  #, fuzzy
3849
  msgctxt "post status"
3850
  msgid "Pending"
3851
  msgstr "En attente"
3852
 
3853
- #: core/class-settings.php:279
3854
  msgctxt "admin settings"
3855
  msgid "Edit post status"
3856
  msgstr "Editer le statut du message"
3857
 
3858
- #: core/class-settings.php:281
3859
  msgctxt "admin settings"
3860
  msgid "Order categories list by"
3861
  msgstr "Ordonner les catégories des annonces par"
3862
 
3863
- #: core/class-settings.php:283
3864
  msgctxt "admin settings"
3865
  msgid "Name"
3866
  msgstr "Nom"
3867
 
3868
- #: core/class-settings.php:284
3869
  msgctxt "admin settings"
3870
  msgid "Slug"
3871
  msgstr "Identifiant"
3872
 
3873
- #: core/class-settings.php:285
3874
  msgctxt "admin settings"
3875
  msgid "Listing Count"
3876
  msgstr "Compteur d'annonce"
3877
 
3878
- #: core/class-settings.php:287
3879
  msgctxt "admin settings"
3880
  msgid "Sort order for categories"
3881
  msgstr "Ordre de tri pour les catégories"
3882
 
3883
- #: core/class-settings.php:288 core/class-settings.php:306
3884
  msgctxt "admin settings"
3885
  msgid "Ascending"
3886
  msgstr "Ascendant"
3887
 
3888
- #: core/class-settings.php:288 core/class-settings.php:306
3889
  msgctxt "admin settings"
3890
  msgid "Descending"
3891
  msgstr "Descendant"
3892
 
3893
- #: core/class-settings.php:289
3894
  msgctxt "admin settings"
3895
  msgid "Show category post count?"
3896
  msgstr "Montrer les catégories par messages postés ?"
3897
 
3898
- #: core/class-settings.php:290
3899
  msgctxt "admin settings"
3900
  msgid "Hide empty categories?"
3901
  msgstr "Cacher les catégories vides ?"
3902
 
3903
- #: core/class-settings.php:291
3904
  msgctxt "admin settings"
3905
  msgid "Show only parent categories in category list?"
3906
  msgstr ""
3907
  "Montrer seulement les catégories parentes dans la liste des catégories ?"
3908
 
3909
- #: core/class-settings.php:293
3910
  msgctxt "admin settings"
3911
  msgid "Listings Sorting"
3912
  msgstr "Tri des annonces"
3913
 
3914
- #: core/class-settings.php:294
3915
  msgctxt "admin settings"
3916
  msgid "Order directory listings by"
3917
  msgstr "Ordonner les annonces de l'annuaire par"
3918
 
3919
- #: core/class-settings.php:296
3920
  msgctxt "admin settings"
3921
  msgid "Title"
3922
  msgstr "Titre"
3923
 
3924
- #: core/class-settings.php:297
3925
  msgctxt "admin settings"
3926
  msgid "Author"
3927
  msgstr "Auteur"
3928
 
3929
- #: core/class-settings.php:298 core/class-settings.php:708
3930
  msgctxt "admin settings"
3931
  msgid "Date posted"
3932
  msgstr "Date d'ajout"
3933
 
3934
- #: core/class-settings.php:299 core/class-settings.php:709
3935
  msgctxt "admin settings"
3936
  msgid "Date last modified"
3937
  msgstr "Date de dernière modification"
3938
 
3939
- #: core/class-settings.php:300
3940
  msgctxt "admin settings"
3941
  msgid "Random"
3942
  msgstr "Aléatoire"
3943
 
3944
- #: core/class-settings.php:301
3945
  msgctxt "admin settings"
3946
  msgid "Paid first then free. Inside each group by date."
3947
  msgstr ""
3948
 
3949
- #: core/class-settings.php:302
3950
  msgctxt "admin settings"
3951
  msgid "Paid first then free. Inside each group by title."
3952
  msgstr ""
3953
 
3954
- #: core/class-settings.php:304
3955
  msgctxt "admin settings"
3956
  msgid "Sort directory listings by"
3957
  msgstr "Trier les annonces de l'annuaire par"
3958
 
3959
- #: core/class-settings.php:305
3960
  msgctxt "admin settings"
3961
  msgid "Ascending for ascending order A-Z, Descending for descending order Z-A"
3962
  msgstr ""
3963
  "Ascendant pour un classement de A à Z, Descendant pour un classement de Z à A"
3964
 
3965
- #: core/class-settings.php:310
3966
  msgctxt "admin settings"
3967
  msgid "Enable sort bar?"
3968
  msgstr "Activer la barre de tri ?"
3969
 
3970
- #: core/class-settings.php:315
3971
  msgctxt "admin settings"
3972
  msgid "Sortbar Fields"
3973
  msgstr "Champs de la barre de tri"
3974
 
3975
- #: core/class-settings.php:324
3976
  msgctxt "admin settings"
3977
  msgid "Featured (Sticky) listing settings"
3978
  msgstr "Paramètres sélectionnés (Post-it) des annonces"
3979
 
3980
- #: core/class-settings.php:325
3981
  msgctxt "admin settings"
3982
  msgid "Offer sticky listings?"
3983
  msgstr "Proposer des annonces par Post-it ?"
3984
 
3985
- #: core/class-settings.php:326
3986
  msgctxt "admin settings"
3987
  msgid "Offer upgrades during submit process?"
3988
  msgstr "Proposer des améliorations durant le processus de soumission ?"
3989
 
3990
- #: core/class-settings.php:327
3991
  msgctxt "admin settings"
3992
  msgid "Sticky listing price"
3993
  msgstr "Prix des annonces en Post-it"
3994
 
3995
- #: core/class-settings.php:328
3996
  msgctxt "admin settings"
3997
  msgid "Sticky listing page description text"
3998
  msgstr "Texte de description de la page annonce en Post-it"
3999
 
4000
- #: core/class-settings.php:329
4001
  msgctxt "admin settings"
4002
  msgid ""
4003
  "You can upgrade your listing to featured status. Featured listings will "
@@ -4007,17 +4025,17 @@ msgstr ""
4007
  "annonces ainsi traitées vont toujours apparaître avant les annonces "
4008
  "courantes."
4009
 
4010
- #: core/class-settings.php:334
4011
  msgctxt "admin settings"
4012
  msgid "E-Mail"
4013
  msgstr "E-Mail"
4014
 
4015
- #: core/class-settings.php:338
4016
  msgctxt "admin settings"
4017
  msgid "Display email address fields publicly?"
4018
  msgstr "Affichage des champs d'adresses e-mail au public ?"
4019
 
4020
- #: core/class-settings.php:341
4021
  msgctxt "admin settings"
4022
  msgid ""
4023
  "Shows the email address of the listing owner to all web users. NOT "
@@ -4028,12 +4046,12 @@ msgstr ""
4028
  "utilisateurs du Web. PAS RECOMMANDE car cela augmente le spam à l'adresse en "
4029
  "question et permet aux spam bots de la récolter pour une utilisation future."
4030
 
4031
- #: core/class-settings.php:344
4032
  msgctxt "admin settings"
4033
  msgid "How to determine the listing's email address?"
4034
  msgstr "Comment définir l'adresse e-mail de l'annonce ?"
4035
 
4036
- #: core/class-settings.php:347
4037
  msgctxt "admin settings"
4038
  msgid ""
4039
  "This affects emails sent to listing owners via contact forms or when their "
@@ -4042,125 +4060,125 @@ msgstr ""
4042
  "Cela affecte l'envoie des e-mails aux propriétaires des annonces via le "
4043
  "formulaire de contact ou quand leurs annonces expirent."
4044
 
4045
- #: core/class-settings.php:349
4046
  msgctxt "admin settings"
4047
  msgid "Try listing's email field first, then author's email."
4048
  msgstr ""
4049
 
4050
- #: core/class-settings.php:350
4051
  msgctxt "admin settings"
4052
  msgid "Try author's email first and then listing's email field."
4053
  msgstr ""
4054
 
4055
- #: core/class-settings.php:354
4056
  msgctxt "admin settings"
4057
  msgid "E-Mail Notifications"
4058
  msgstr "Notification mail"
4059
 
4060
- #: core/class-settings.php:357
4061
  msgctxt "admin settings"
4062
  msgid "Notify admin via e-mail when..."
4063
  msgstr "Prévenir l'administrateur via courriel quand..."
4064
 
4065
- #: core/class-settings.php:361
4066
  msgctxt "admin settings"
4067
  msgid "A new listing is submitted."
4068
  msgstr "Une nouvelle annonce a été soumise."
4069
 
4070
- #: core/class-settings.php:362
4071
  msgctxt "admin settings"
4072
  msgid "A listing is edited."
4073
  msgstr "Une annonce est éditée."
4074
 
4075
- #: core/class-settings.php:363
4076
  msgctxt "admin settings"
4077
  msgid "A listing expires."
4078
  msgstr "Une annonce expire."
4079
 
4080
- #: core/class-settings.php:364
4081
  msgctxt "admin settings"
4082
  msgid "A contact message is sent to a listing's owner."
4083
  msgstr "Un message de contact est envoyé a un propriétaire d'annonce."
4084
 
4085
- #: core/class-settings.php:370
4086
  msgctxt "admin settings"
4087
  msgid "CC this e-mail address too"
4088
  msgstr "CC cette adresse mail aussi"
4089
 
4090
- #: core/class-settings.php:376
4091
  msgctxt "admin settings"
4092
  msgid "Notify users via e-mail when..."
4093
  msgstr "Prévenir les utilisateurs via courriel quand..."
4094
 
4095
- #: core/class-settings.php:379
4096
  msgctxt "admin settings"
4097
  msgid "You can modify the text template used for most of these e-mails below."
4098
  msgstr ""
4099
  "Vous pouvez modifier le modèle de texte utilisé pour la plupart de ces e-"
4100
  "mails ci-dessous."
4101
 
4102
- #: core/class-settings.php:380
4103
  msgctxt "admin settings"
4104
  msgid "Their listing is submitted."
4105
  msgstr "Leur annonce est soumise."
4106
 
4107
- #: core/class-settings.php:381
4108
  msgctxt "admin settings"
4109
  msgid "Their listing is approved/published."
4110
  msgstr "Leur annonce est approuvée/publiée"
4111
 
4112
- #: core/class-settings.php:390
4113
  msgctxt "contact email"
4114
  msgid "You have received a reply from your listing at %s."
4115
  msgstr "Vous avez reçu une réponse à votre annonce de %s."
4116
 
4117
- #: core/class-settings.php:391
4118
  msgctxt "contact email"
4119
  msgid "Name: %s"
4120
  msgstr "Nom: %s"
4121
 
4122
- #: core/class-settings.php:392
4123
  msgctxt "contact email"
4124
  msgid "E-Mail: %s"
4125
  msgstr "E-Mail: %s"
4126
 
4127
- #: core/class-settings.php:393
4128
  msgctxt "contact email"
4129
  msgid "Message:"
4130
  msgstr "Message:"
4131
 
4132
- #: core/class-settings.php:395
4133
  msgctxt "contact email"
4134
  msgid "Time: %s"
4135
  msgstr "Date: %s"
4136
 
4137
- #: core/class-settings.php:397
4138
  msgctxt "admin settings"
4139
  msgid "E-Mail Templates"
4140
  msgstr "Template d'E-Mail"
4141
 
4142
- #: core/class-settings.php:400
4143
  msgctxt "admin settings"
4144
  msgid "Email confirmation message"
4145
  msgstr "Message de confirmation par E-Mail"
4146
 
4147
- #: core/class-settings.php:404
4148
  msgctxt "admin settings"
4149
  msgid "Sent after a listing has been submitted."
4150
  msgstr "Envoyer après qu'une annonce ait été soumise"
4151
 
4152
- #: core/class-settings.php:405 core/class-settings.php:413
4153
- #: core/class-settings.php:454
4154
  msgctxt "admin settings"
4155
  msgid "Listing's title"
4156
  msgstr "Titre de l'annonce"
4157
 
4158
- #: core/class-settings.php:408
4159
  msgctxt "admin settings"
4160
  msgid "Listing published message"
4161
  msgstr "Message publié de l'annonce"
4162
 
4163
- #: core/class-settings.php:411
4164
  msgctxt "admin settings"
4165
  msgid ""
4166
  "Your listing \"[listing]\" is now available at [listing-url] and can be "
@@ -4169,23 +4187,23 @@ msgstr ""
4169
  "Votre annonce \"[listing]\" est maintenant disponible à [listing-url] et "
4170
  "elle peut être vu par tout le monde."
4171
 
4172
- #: core/class-settings.php:412
4173
  msgctxt "admin settings"
4174
  msgid "Sent when the listing has been published or approved by an admin."
4175
  msgstr ""
4176
  "Envoyé lorsque l'annonce a été publiée ou approuvée par un administrateur."
4177
 
4178
- #: core/class-settings.php:414
4179
  msgctxt "admin settings"
4180
  msgid "Listing's URL"
4181
  msgstr "Url de l'annonce"
4182
 
4183
- #: core/class-settings.php:418
4184
  msgctxt "admin settings"
4185
  msgid "Listing Contact Message"
4186
  msgstr "Lister des messages de contact"
4187
 
4188
- #: core/class-settings.php:422
4189
  msgctxt "admin settings"
4190
  msgid ""
4191
  "Sent to listing owners when someone uses the contact form on their listing "
@@ -4194,34 +4212,34 @@ msgstr ""
4194
  "Envoyer aux propriétaires des annonces quand quelqu'un utilise le formulaire "
4195
  "de contact sur leurs pages d'annonces."
4196
 
4197
- #: core/class-settings.php:432
4198
  msgctxt "admin settings"
4199
  msgid "Payment related"
4200
  msgstr "Paiement lié"
4201
 
4202
- #: core/class-settings.php:449
4203
  msgctxt "admin settings"
4204
  msgid "Payment abandoned reminder message"
4205
  msgstr "Paiement abandonné, message de rappel"
4206
 
4207
- #: core/class-settings.php:453
4208
  msgctxt "admin settings"
4209
  msgid "Sent some time after a pending payment is abandoned by users."
4210
  msgstr ""
4211
  "Envoyer après un certain temps lorsqu'un paiement en attente est abandonné "
4212
  "par les utilisateurs."
4213
 
4214
- #: core/class-settings.php:455
4215
  msgctxt "admin settings"
4216
  msgid "Checkout URL link"
4217
  msgstr "Vérificateur de lien URL"
4218
 
4219
- #: core/class-settings.php:461
4220
  msgctxt "admin settings"
4221
  msgid "Renewal Reminders"
4222
  msgstr "Renouveller les rappels"
4223
 
4224
- #: core/class-settings.php:464
4225
  msgctxt "admin settings"
4226
  msgid ""
4227
  "This section refers only to the text of the renewal/expiration notices. You "
@@ -4231,12 +4249,12 @@ msgstr ""
4231
  "d'expiration. Vous pouvez également configurer <a> quand les e-mails seront "
4232
  "envoyés </a>."
4233
 
4234
- #: core/class-settings.php:468
4235
  msgctxt "admin settings"
4236
  msgid "Pending expiration e-mail message"
4237
  msgstr "Expiration imminente du mail"
4238
 
4239
- #: core/class-settings.php:472
4240
  msgctxt "settings"
4241
  msgid ""
4242
  "Sent some time before the listing expires. Applies to non-recurring renewals "
@@ -4245,50 +4263,50 @@ msgstr ""
4245
  "Envoyé quelque temps avant l'expiration de l'annonce. Valable seulement pour "
4246
  "les renouvellements non-récurrents."
4247
 
4248
- #: core/class-settings.php:473 core/class-settings.php:486
4249
- #: core/class-settings.php:499 core/class-settings.php:512
4250
- #: core/class-settings.php:525
4251
  msgctxt "settings"
4252
  msgid "Listing's name (with link)"
4253
  msgstr "Nom de l'annonce (avec lien)"
4254
 
4255
- #: core/class-settings.php:474 core/class-settings.php:487
4256
- #: core/class-settings.php:500 core/class-settings.php:513
4257
- #: core/class-settings.php:526
4258
  msgctxt "settings"
4259
  msgid "Author's name"
4260
  msgstr "Nom de l'auteur"
4261
 
4262
- #: core/class-settings.php:475 core/class-settings.php:488
4263
- #: core/class-settings.php:527
4264
  msgctxt "settings"
4265
  msgid "Expiration date"
4266
  msgstr "Date d'expiration"
4267
 
4268
- #: core/class-settings.php:476
4269
  msgctxt "settings"
4270
  msgid "Category that is going to expire"
4271
  msgstr "Catégorier qui va expirer"
4272
 
4273
- #: core/class-settings.php:477 core/class-settings.php:490
4274
- #: core/class-settings.php:529
4275
  msgctxt "settings"
4276
  msgid "Link to renewal page"
4277
  msgstr "Lien pour renouveller la page"
4278
 
4279
- #: core/class-settings.php:478 core/class-settings.php:491
4280
- #: core/class-settings.php:503 core/class-settings.php:516
4281
- #: core/class-settings.php:530
4282
  msgctxt "settings"
4283
  msgid "Link to your site"
4284
  msgstr "Lien vers votre site"
4285
 
4286
- #: core/class-settings.php:481
4287
  msgctxt "admin settings"
4288
  msgid "Listing Renewal e-mail message"
4289
  msgstr "Message mail de renouvellement d'annonce"
4290
 
4291
- #: core/class-settings.php:485
4292
  msgctxt "settings"
4293
  msgid ""
4294
  "Sent at the time of listing expiration. Applies to non-recurring renewals "
@@ -4297,17 +4315,17 @@ msgstr ""
4297
  "Envoyé au moment de l'expiration de l'annonce. Seulement valable pour les "
4298
  "renouvellements non-récurrents."
4299
 
4300
- #: core/class-settings.php:489 core/class-settings.php:528
4301
  msgctxt "settings"
4302
  msgid "Category that expired"
4303
  msgstr "Catégories qui ont expiré"
4304
 
4305
- #: core/class-settings.php:494
4306
  msgctxt "admin settings"
4307
  msgid "Listing auto-renewal reminder (recurring payments)"
4308
  msgstr "Rappel d'auto-renouvellement des annonces (paiements récurrents)"
4309
 
4310
- #: core/class-settings.php:498
4311
  msgctxt "settings"
4312
  msgid ""
4313
  "Sent some time before the listing is auto-renewed. Applies to recurring "
@@ -4316,27 +4334,27 @@ msgstr ""
4316
  "Envoyé un certain temps avant que l'annonce est auto-renouvellement. Valable "
4317
  "pour les renouvellements périodiques seulement."
4318
 
4319
- #: core/class-settings.php:501 core/class-settings.php:515
4320
  msgctxt "settings"
4321
  msgid "Renewal date"
4322
  msgstr "Date de renouvellement"
4323
 
4324
- #: core/class-settings.php:502
4325
  msgctxt "settings"
4326
  msgid "Category that is going to be renewed"
4327
  msgstr "Catégories qui vont être renouvelées"
4328
 
4329
- #: core/class-settings.php:504
4330
  msgctxt "settings"
4331
  msgid "Link to manage subscriptions"
4332
  msgstr "Lien pour gérer les abonnements"
4333
 
4334
- #: core/class-settings.php:507
4335
  msgctxt "admin settings"
4336
  msgid "Listing Renewal e-mail message (recurring payments)"
4337
  msgstr "Renouvellement des annonces par mail (paiements récurrents)"
4338
 
4339
- #: core/class-settings.php:511
4340
  msgctxt "settings"
4341
  msgid ""
4342
  "Sent after the listing is auto-renewed. Applies to recurring renewals only."
@@ -4344,17 +4362,17 @@ msgstr ""
4344
  "Envoyé dès que les annonces se soient auto-renouvelées. Appliqué aux "
4345
  "paiements récurrents seulement."
4346
 
4347
- #: core/class-settings.php:514
4348
  msgctxt "settings"
4349
  msgid "Renewed category"
4350
  msgstr "Catégories renouvellées"
4351
 
4352
- #: core/class-settings.php:520
4353
  msgctxt "admin settings"
4354
  msgid "Renewal reminder e-mail message"
4355
  msgstr "Renouveler le rappel par mail"
4356
 
4357
- #: core/class-settings.php:524
4358
  msgctxt "settings"
4359
  msgid ""
4360
  "Sent some time after listing expiration and when no renewal has occurred. "
@@ -4364,33 +4382,33 @@ msgstr ""
4364
  "renouvellement n'a pas eu lieu. Valable pour deux renouvellements récurrents "
4365
  "et non récurrents."
4366
 
4367
- #: core/class-settings.php:534
4368
  msgctxt "admin settings"
4369
  msgid "Payment"
4370
  msgstr "Paiement"
4371
 
4372
- #: core/class-settings.php:535
4373
  msgctxt "admin settings"
4374
  msgid "Payment Settings"
4375
  msgstr "Paramètres de paiement"
4376
 
4377
- #: core/class-settings.php:538
4378
  msgctxt "admin settings"
4379
  msgid "Turn On payments?"
4380
  msgstr "Activer les paiements ?"
4381
 
4382
- #: core/class-settings.php:540
4383
  msgctxt "admin settings"
4384
  msgid "Put payment gateways in test mode?"
4385
  msgstr "Passer les passerelles de paiement en mode test ?"
4386
 
4387
- #: core/class-settings.php:545
4388
  msgctxt "admin settings"
4389
  msgid "Perform checkouts on the secure (HTTPS) version of your site?"
4390
  msgstr ""
4391
  "Effectuer la vérification sur la version sécurisée (HTTPS) de votre site?"
4392
 
4393
- #: core/class-settings.php:548
4394
  msgctxt "admin settings"
4395
  msgid ""
4396
  "Recommended for added security. For this to work you need to enable HTTPS on "
@@ -4399,163 +4417,163 @@ msgstr ""
4399
  "Recommandé pour une sécurité accrue. Pour que cela fonctionne, vous devez "
4400
  "activer HTTPS sur votre serveur et <a> obtenir un certificat SSL </a>."
4401
 
4402
- #: core/class-settings.php:552
4403
  msgctxt "admin settings"
4404
  msgid "Currency Code"
4405
  msgstr "Code de devise"
4406
 
4407
- #: core/class-settings.php:554
4408
  msgctxt "admin settings"
4409
  msgid "Australian Dollar (AUD)"
4410
  msgstr "Dollar Australien (AUD)"
4411
 
4412
- #: core/class-settings.php:555
4413
  msgctxt "admin settings"
4414
  msgid "Brazilian Real (BRL)"
4415
  msgstr "Real Brésilien (BRL)"
4416
 
4417
- #: core/class-settings.php:556
4418
  msgctxt "admin settings"
4419
  msgid "Canadian Dollar (CAD)"
4420
  msgstr "Dollar Canadien (CAD)"
4421
 
4422
- #: core/class-settings.php:557
4423
  msgctxt "admin settings"
4424
  msgid "Czech Koruna (CZK)"
4425
  msgstr "Couronne Tchèque (CZK)"
4426
 
4427
- #: core/class-settings.php:558
4428
  msgctxt "admin settings"
4429
  msgid "Danish Krone (DKK)"
4430
  msgstr "Couronne Danoise (DKK)"
4431
 
4432
- #: core/class-settings.php:559
4433
  msgctxt "admin settings"
4434
  msgid "Euro (EUR)"
4435
  msgstr "Euro (EUR)"
4436
 
4437
- #: core/class-settings.php:560
4438
  msgctxt "admin settings"
4439
  msgid "Hong Kong Dollar (HKD)"
4440
  msgstr "Dollar de Hong Kong(HKD)"
4441
 
4442
- #: core/class-settings.php:561
4443
  msgctxt "admin settings"
4444
  msgid "Hungarian Forint (HUF)"
4445
  msgstr "Forint Hongrois (HUF)"
4446
 
4447
- #: core/class-settings.php:562
4448
  msgctxt "admin settings"
4449
  msgid "Israeli New Shequel (ILS)"
4450
  msgstr "Nouveau Shequel Israélien (ILS)"
4451
 
4452
- #: core/class-settings.php:563
4453
  msgctxt "admin settings"
4454
  msgid "Japanese Yen (JPY)"
4455
  msgstr "Yen Japonais (JPY)"
4456
 
4457
- #: core/class-settings.php:564
4458
  msgctxt "admin settings"
4459
  msgid "Malasian Ringgit (MYR)"
4460
  msgstr "Ringgit Malaisien (MYR)"
4461
 
4462
- #: core/class-settings.php:565
4463
  msgctxt "admin settings"
4464
  msgid "Mexican Peso (MXN)"
4465
  msgstr "Peso Mexicain (MXN)"
4466
 
4467
- #: core/class-settings.php:566
4468
  msgctxt "admin settings"
4469
  msgid "Norwegian Krone (NOK)"
4470
  msgstr "Couronne Norvégienne (NOK)"
4471
 
4472
- #: core/class-settings.php:567
4473
  msgctxt "admin settings"
4474
  msgid "New Zealand Dollar (NZD)"
4475
  msgstr "Dollar Néo-Zélandais (NZD)"
4476
 
4477
- #: core/class-settings.php:568
4478
  msgctxt "admin settings"
4479
  msgid "Philippine Peso (PHP)"
4480
  msgstr "Peso Phillipin (PHP)"
4481
 
4482
- #: core/class-settings.php:569
4483
  msgctxt "admin settings"
4484
  msgid "Polish Zloty (PLN)"
4485
  msgstr "Zloty Polonais (PLN)"
4486
 
4487
- #: core/class-settings.php:570
4488
  msgctxt "admin settings"
4489
  msgid "Pound Sterling (GBP)"
4490
  msgstr "Livre Sterling (GBP)"
4491
 
4492
- #: core/class-settings.php:571
4493
  msgctxt "admin settings"
4494
  msgid "Singapore Dollar (SGD)"
4495
  msgstr "Dollar Singaporien (SGD)"
4496
 
4497
- #: core/class-settings.php:572
4498
  msgctxt "admin settings"
4499
  msgid "Swedish Krona (SEK)"
4500
  msgstr "Couronne Suédoise (SEK)"
4501
 
4502
- #: core/class-settings.php:573
4503
  msgctxt "admin settings"
4504
  msgid "Swiss Franc (CHF)"
4505
  msgstr "Franc Suisse (CHF)"
4506
 
4507
- #: core/class-settings.php:574
4508
  msgctxt "admin settings"
4509
  msgid "Taiwan Dollar (TWD)"
4510
  msgstr "Dollar Taiwanais (TWD)"
4511
 
4512
- #: core/class-settings.php:575
4513
  msgctxt "admin settings"
4514
  msgid "Thai Baht (THB)"
4515
  msgstr "Baht Thaïlandais"
4516
 
4517
- #: core/class-settings.php:576
4518
  msgctxt "admin settings"
4519
  msgid "Turkish Lira (TRY)"
4520
  msgstr "Livre Turque (TRY)"
4521
 
4522
- #: core/class-settings.php:577
4523
  #, fuzzy
4524
  msgctxt "admin settings"
4525
  msgid "U.S. Dollar (USD)"
4526
  msgstr "Dollar U.S. "
4527
 
4528
- #: core/class-settings.php:581
4529
  msgctxt "admin settings"
4530
  msgid "Currency Symbol"
4531
  msgstr "Devise"
4532
 
4533
- #: core/class-settings.php:586
4534
  msgctxt "admin settings"
4535
  msgid "Currency symbol display"
4536
  msgstr "Affichage de la devise"
4537
 
4538
- #: core/class-settings.php:590
4539
  msgctxt "admin settings"
4540
  msgid "Show currency symbol on the left"
4541
  msgstr "Afficher le symbole de devise à gauche"
4542
 
4543
- #: core/class-settings.php:591
4544
  msgctxt "admin settings"
4545
  msgid "Show currency symbol on the right"
4546
  msgstr "Afficher le symbole de devise à droite"
4547
 
4548
- #: core/class-settings.php:592
4549
  msgctxt "admin settings"
4550
  msgid "Do not show currency symbol"
4551
  msgstr "Ne pas montrer la devise"
4552
 
4553
- #: core/class-settings.php:594
4554
  msgctxt "admin settings"
4555
  msgid "Thank you for payment message"
4556
  msgstr "Merci pour le message de paiement"
4557
 
4558
- #: core/class-settings.php:595
4559
  msgctxt "admin settings"
4560
  msgid ""
4561
  "Thank you for your payment. Your payment is being verified and your listing "
@@ -4565,12 +4583,12 @@ msgstr ""
4565
  "votre annonce en revue. Le processus de vérification et d'examen peut "
4566
  "prendre jusqu'à 48 heures."
4567
 
4568
- #: core/class-settings.php:600
4569
  msgctxt "admin settings"
4570
  msgid "Ask users to come back for abandoned payments?"
4571
  msgstr "Demandez aux utilisateurs de revenir pour les paiements abandonnés ?"
4572
 
4573
- #: core/class-settings.php:603
4574
  msgctxt "admin settings"
4575
  msgid ""
4576
  "An abandoned payment is when a user attempts to place a listing and gets to "
@@ -4584,12 +4602,12 @@ msgstr ""
4584
  "l'utilisateur n'a tout simplement pas compléter la transaction. Le plugin "
4585
  "peut peut rappeler les auteurs pour continuer la publication de leur annonce."
4586
 
4587
- #: core/class-settings.php:609
4588
  msgctxt "admin settings"
4589
  msgid "Listing abandonment threshold (hours)"
4590
  msgstr "Seuil d'abandon de l'annonce (heures)"
4591
 
4592
- #: core/class-settings.php:614
4593
  msgctxt "admin settings"
4594
  msgid ""
4595
  "Listings with pending payments are marked as abandoned after this time. You "
@@ -4599,37 +4617,37 @@ msgstr ""
4599
  "cette heure. Vous pouvez également personnaliser <a> l'e-mail </a> que les "
4600
  "utilisateurs reçoivent."
4601
 
4602
- #: core/class-settings.php:619
4603
  msgctxt "admin settings"
4604
  msgid "Themes"
4605
  msgstr "Thèmes"
4606
 
4607
- #: core/class-settings.php:621
4608
  msgctxt "admin settings"
4609
  msgid "You can manage your themes on <a>Directory Themes</a>."
4610
  msgstr ""
4611
 
4612
- #: core/class-settings.php:626
4613
  msgctxt "admin settings"
4614
  msgid "Theme button style"
4615
  msgstr "Boutons de thèmes"
4616
 
4617
- #: core/class-settings.php:630
4618
  msgctxt "admin settings"
4619
  msgid "Use the BD theme style for BD buttons"
4620
  msgstr "Utiliser le thème BD pour les boutons BD"
4621
 
4622
- #: core/class-settings.php:631
4623
  msgctxt "admin settings"
4624
  msgid "Use the WP theme style for BD buttons"
4625
  msgstr "Utiliser le thème WP pour les boutons BD"
4626
 
4627
- #: core/class-settings.php:638
4628
  msgctxt "admin settings"
4629
  msgid "Image"
4630
  msgstr "Image"
4631
 
4632
- #: core/class-settings.php:639
4633
  msgctxt "admin settings"
4634
  msgid ""
4635
  "Any changes to these settings will affect new listings only. Existing "
@@ -4643,52 +4661,52 @@ msgstr ""
4643
  "télécharger l'image (s) sur cette annonce, après avoir cfait les "
4644
  "modifications voulue."
4645
 
4646
- #: core/class-settings.php:640
4647
  msgctxt "admin settings"
4648
  msgid "Image Settings"
4649
  msgstr "Paraamètres des images"
4650
 
4651
- #: core/class-settings.php:641
4652
  msgctxt "admin settings"
4653
  msgid "Allow images?"
4654
  msgstr "Autoriser les images ?"
4655
 
4656
- #: core/class-settings.php:643
4657
  msgctxt "admin settings"
4658
  msgid "Min Image File Size (KB)"
4659
  msgstr "Taille minnimal des fichiers images (KB)"
4660
 
4661
- #: core/class-settings.php:644
4662
  msgctxt "admin settings"
4663
  msgid "Max Image File Size (KB)"
4664
  msgstr "Taille maximal des fichiers images (KB)"
4665
 
4666
- #: core/class-settings.php:646
4667
  msgctxt "admin settings"
4668
  msgid "Min image width (px)"
4669
  msgstr "Largeur minnimal des images (px)"
4670
 
4671
- #: core/class-settings.php:647
4672
  msgctxt "admin settings"
4673
  msgid "Min image height (px)"
4674
  msgstr "Hauteur minnimal des images (px)"
4675
 
4676
- #: core/class-settings.php:649
4677
  msgctxt "admin settings"
4678
  msgid "Max image width (px)"
4679
  msgstr "Largeur maximal des images (px)"
4680
 
4681
- #: core/class-settings.php:650
4682
  msgctxt "admin settings"
4683
  msgid "Max image height (px)"
4684
  msgstr "Hauteur maximal des images (px)"
4685
 
4686
- #: core/class-settings.php:652
4687
  msgctxt "admin settings"
4688
  msgid "Turn on thickbox/lightbox?"
4689
  msgstr "Activer thickbox/lightbox ?"
4690
 
4691
- #: core/class-settings.php:652
4692
  msgctxt "admin settings"
4693
  msgid ""
4694
  "Uncheck if it conflicts with other elements or plugins installed on your site"
@@ -4696,27 +4714,27 @@ msgstr ""
4696
  "Décochez si vela entre en conflit avec d'autres éléments ou plugins "
4697
  "installés sur votre site"
4698
 
4699
- #: core/class-settings.php:654
4700
  msgctxt "admin settings"
4701
  msgid "Thumbnails"
4702
  msgstr "Miniatures"
4703
 
4704
- #: core/class-settings.php:655
4705
  msgctxt "admin settings"
4706
  msgid "Thumbnail width (px)"
4707
  msgstr "Largeur des miniatures (en pixel)"
4708
 
4709
- #: core/class-settings.php:656
4710
  msgctxt "admin settings"
4711
  msgid "Thumbnail height (px)"
4712
  msgstr "Hauteur des miniatures (en pixel)"
4713
 
4714
- #: core/class-settings.php:659
4715
  msgctxt "admin settings"
4716
  msgid "Crop thumbnails to exact dimensions?"
4717
  msgstr "Recadrer les miniatures aux dimensions exactes ?"
4718
 
4719
- #: core/class-settings.php:662
4720
  msgctxt "admin settings"
4721
  msgid ""
4722
  "When enabled images will match exactly the dimensions above but part of the "
@@ -4731,12 +4749,12 @@ msgstr ""
4731
  "proportionnellement. Selon les images téléchargées, les miniatures peuvent "
4732
  "avoir différentes hauteurs."
4733
 
4734
- #: core/class-settings.php:668
4735
  msgctxt "admin settings"
4736
  msgid "Number of free images"
4737
  msgstr "Nombre d'images gratuites"
4738
 
4739
- #: core/class-settings.php:673
4740
  msgctxt "admin settings"
4741
  msgid ""
4742
  "For paid listing images, configure that by adding or editing a <a>Fee Plan</"
@@ -4746,28 +4764,28 @@ msgstr ""
4746
  "ou modification d'un <a>plan de frais</a> au lieu de ce paramètre, qui est "
4747
  "ignoré pour les annonces payées."
4748
 
4749
- #: core/class-settings.php:676
4750
  msgctxt "admin settings"
4751
  msgid "Use default picture for listings with no picture?"
4752
  msgstr "Utiliser l'image par défault pour les annonces sans images ?"
4753
 
4754
- #: core/class-settings.php:677
4755
  msgctxt "admin settings"
4756
  msgid "Show Thumbnail on main listings page?"
4757
  msgstr "Montrer les miniatures sur page principale des annonces ?"
4758
 
4759
- #: core/class-settings.php:706
4760
  msgctxt "admin settings"
4761
  msgid "User"
4762
  msgstr ""
4763
 
4764
- #: core/class-settings.php:707
4765
  #, fuzzy
4766
  msgctxt "admin settings"
4767
  msgid "User registration date"
4768
  msgstr "Date d'expiration de l'annonce"
4769
 
4770
- #: core/class-settings.php:733
4771
  msgctxt "admin settings"
4772
  msgid ""
4773
  "Could not copy the AJAX compatibility plugin \"%s\". Compatibility mode was "
@@ -4776,7 +4794,7 @@ msgstr ""
4776
  "Impossible de copier le plugin de compatibilité AJAX \"% s\". Le mode de "
4777
  "compatibilité n'a pas été activé."
4778
 
4779
- #: core/class-settings.php:741
4780
  msgctxt "admin settings"
4781
  msgid ""
4782
  "Could not activate AJAX Compatibility mode: the directory \"%s\" could not "
@@ -4785,7 +4803,7 @@ msgstr ""
4785
  "Impossible d'activer le mode de compatibilité AJAX: le répertoire \"% s \" "
4786
  "ne peux pas être créé."
4787
 
4788
- #: core/class-settings.php:750
4789
  msgctxt "admin settings"
4790
  msgid ""
4791
  "Could not remove the \"Business Directory Plugin - AJAX Compatibility Module"
@@ -4794,97 +4812,97 @@ msgstr ""
4794
  "Impossible de supprimer le \"Module de comptabilité AJAX du plugin \". "
4795
  "Veuillez supprimer le fichier \"% s \" manuellement ou désactiver le plugin."
4796
 
4797
- #: core/class-settings.php:1070
4798
  msgctxt "settings"
4799
  msgid "Deactivate License"
4800
  msgstr "Désactiver la licence"
4801
 
4802
- #: core/class-settings.php:1072
4803
  msgctxt "settings"
4804
  msgid "Deactivating license..."
4805
  msgstr "Désactivation de la licence..."
4806
 
4807
- #: core/class-settings.php:1075
4808
  msgctxt "settings"
4809
  msgid "Activate License"
4810
  msgstr "Activer la licence"
4811
 
4812
- #: core/class-settings.php:1077
4813
  msgctxt "settings"
4814
  msgid "Activating license..."
4815
  msgstr "Activation de la licence"
4816
 
4817
- #: core/class-settings.php:1100
4818
  msgctxt "admin settings"
4819
  msgid "Valid placeholders: %s"
4820
  msgstr "Espaces réservés valides:% s"
4821
 
4822
- #: core/class-settings.php:1134
4823
  msgctxt "settings email"
4824
  msgid "Click to edit e-mail"
4825
  msgstr "Cliquer pour éditer l'e-mail"
4826
 
4827
- #: core/class-settings.php:1135
4828
  msgctxt "settings email"
4829
  msgid "Click to edit"
4830
  msgstr "Cliquer pour éditer"
4831
 
4832
- #: core/class-settings.php:1148
4833
  msgctxt "settings email"
4834
  msgid "E-Mail Subject"
4835
  msgstr "Sujet de l'e-mail"
4836
 
4837
- #: core/class-settings.php:1159
4838
  msgctxt "settings email"
4839
  msgid "E-Mail Body"
4840
  msgstr "Corps de l'e-mail"
4841
 
4842
- #: core/class-settings.php:1170
4843
  msgctxt "settings email"
4844
  msgid "You can use the following placeholders:"
4845
  msgstr "Vous pouvez utiliser les paramètres suivantes:"
4846
 
4847
- #: core/class-settings.php:1193
4848
  msgctxt "settings email"
4849
  msgid "Preview e-mail"
4850
  msgstr "E-mail précédents"
4851
 
4852
- #: core/class-settings.php:1194
4853
  msgctxt "settings email"
4854
  msgid "Cancel"
4855
  msgstr "Annuler"
4856
 
4857
- #: core/class-settings.php:1195
4858
  msgctxt "settings email"
4859
  msgid "Save Changes"
4860
  msgstr "Sauvegarder les changements"
4861
 
4862
- #: core/class-settings.php:1214
4863
  msgctxt "settings email"
4864
  msgid "Site title"
4865
  msgstr "Titre du site"
4866
 
4867
- #: core/class-settings.php:1217
4868
  msgctxt "settings email"
4869
  msgid "Site title (with link)"
4870
  msgstr "Titre du site (avec lien)"
4871
 
4872
- #: core/class-settings.php:1220
4873
  msgctxt "settings email"
4874
  msgid "Site address (with link)"
4875
  msgstr "Adresse du site (avec lien)"
4876
 
4877
- #: core/class-settings.php:1223
4878
  msgctxt "settings email"
4879
  msgid "Directory URL (with link)"
4880
  msgstr "Annuaire des URL (avec lien)"
4881
 
4882
- #: core/class-settings.php:1226
4883
  msgctxt "settings email"
4884
  msgid "Current date"
4885
  msgstr "Date actuelle"
4886
 
4887
- #: core/class-settings.php:1229
4888
  msgctxt "settings email"
4889
  msgid "Current time"
4890
  msgstr "Heure actuelle"
@@ -5541,11 +5559,18 @@ msgctxt "installer"
5541
  msgid "Listing upgrade to featured"
5542
  msgstr "Mise à jour des annonces vers prioritaire"
5543
 
5544
- #: core/installer.php:957
 
 
 
 
 
 
 
5545
  msgid "Business Directory - Manual Upgrade Required"
5546
  msgstr "Business Directory - Mise à jour manuelle requise"
5547
 
5548
- #: core/installer.php:959
5549
  msgid ""
5550
  "Business Directory features are currently disabled because the plugin needs "
5551
  "to perform a manual upgrade before continuing."
@@ -5554,15 +5579,15 @@ msgstr ""
5554
  "désactivés car le plugin a besoin d'effectuer une mise à jour manuelle avant "
5555
  "de poursuivre."
5556
 
5557
- #: core/installer.php:961
5558
  msgid "Perform Manual Upgrade"
5559
  msgstr "Effectuer la mise à jour manuelle"
5560
 
5561
- #: core/installer.php:977 core/installer.php:978 core/installer.php:989
5562
  msgid "Business Directory - Manual Upgrade"
5563
  msgstr "Business Directory - Mise à jour manuelle"
5564
 
5565
- #: core/installer.php:993
5566
  msgid ""
5567
  "Business Directory features are currently disabled because the plugin needs "
5568
  "to perform a manual upgrade before it can be used."
@@ -5571,23 +5596,23 @@ msgstr ""
5571
  "désactivées car le plugin a besoin d'effectuer une mise à jour manuelle afin "
5572
  "d'être pleinement utilisable."
5573
 
5574
- #: core/installer.php:995
5575
  msgid "Click \"Start Upgrade\" and wait until the process finishes."
5576
  msgstr ""
5577
  "Cliquez sur \"Démarrer la mise à jour\" et patientez jusqu'à la fin du "
5578
  "processus."
5579
 
5580
- #: core/installer.php:998
5581
  msgctxt "manual-upgrade"
5582
  msgid "Start Upgrade"
5583
  msgstr "Démarrer la mise à jour"
5584
 
5585
- #: core/installer.php:1000
5586
  msgctxt "manual-upgrade"
5587
  msgid "Pause Upgrade"
5588
  msgstr "Mettre la mise à jour en pause"
5589
 
5590
- #: core/installer.php:1006
5591
  msgctxt "manual-upgrade"
5592
  msgid ""
5593
  "The upgrade was sucessfully performed. Business Directory Plugin is now "
@@ -5596,23 +5621,23 @@ msgstr ""
5596
  "La mise à jour s'est bien effectuée. Le plugin Business Directory est "
5597
  "maintenant disponible et fonctionnel."
5598
 
5599
- #: core/installer.php:1009
5600
  msgctxt "manual-upgrade"
5601
  msgid "Go to \"Directory Admin\""
5602
  msgstr "Aller à \"Administrateur de l'annuaire\""
5603
 
5604
- #: core/installer.php:1044
5605
  #, fuzzy
5606
  msgid "Business Directory - Installation Failed"
5607
  msgstr "Business Directory - Mise à jour manuelle"
5608
 
5609
- #: core/installer.php:1046
5610
  msgid ""
5611
  "Business Directory installation failed. An exception with following message "
5612
  "was generated:"
5613
  msgstr ""
5614
 
5615
- #: core/installer.php:1051
5616
  msgid "Please <contact-link>contact customer support</a>."
5617
  msgstr ""
5618
 
@@ -5905,41 +5930,41 @@ msgctxt "templates"
5905
  msgid "No listing categories found."
5906
  msgstr "Aucune catégorie d'annonce trouvée"
5907
 
5908
- #: core/templates-ui.php:193
5909
  msgid "Directory"
5910
  msgstr "Annuaire"
5911
 
5912
- #: core/templates-ui.php:199
5913
  #, fuzzy
5914
  msgid "View All Listings"
5915
  msgstr "Voir toutes les annonces"
5916
 
5917
- #: core/templates-ui.php:205
5918
  #, fuzzy
5919
  msgid "Create A Listing"
5920
  msgstr "Annonce gratuite"
5921
 
5922
- #: core/templates-ui.php:232
5923
  msgctxt "templates"
5924
  msgid "Search Listings"
5925
  msgstr "Recherche d'annonces"
5926
 
5927
- #: core/templates-ui.php:235
5928
  msgctxt "templates"
5929
  msgid "Advanced Search"
5930
  msgstr "Recherche avancée"
5931
 
5932
- #: core/templates-ui.php:264 core/templates-ui.php:289
5933
  msgctxt "templates sort"
5934
  msgid "Sort By:"
5935
  msgstr "Trier par:"
5936
 
5937
- #: core/templates-ui.php:283
5938
  msgctxt "sort"
5939
  msgid "Reset"
5940
  msgstr "Réinitialiser"
5941
 
5942
- #: core/templates-ui.php:305
5943
  msgctxt "sort"
5944
  msgid "(Reset)"
5945
  msgstr "(Réinitialiser)"
@@ -7327,6 +7352,15 @@ msgstr "D. Rodenbaugh"
7327
  msgid "http://businessdirectoryplugin.com"
7328
  msgstr "http://businessdirectoryplugin.com"
7329
 
 
 
 
 
 
 
 
 
 
7330
  #~ msgctxt "title"
7331
  #~ msgid "Submit A Listing"
7332
  #~ msgstr "Soumettre une annonce"
4
  msgstr ""
5
  "Project-Id-Version: Business Directory Plugin 3.6\n"
6
  "Report-Msgid-Bugs-To: http://wordpress.org/tag/business-directory-plugin\n"
7
+ "POT-Creation-Date: 2016-12-13 23:11:33+00:00\n"
8
  "PO-Revision-Date: 2016-08-29 18:17-0300\n"
9
  "Last-Translator: BD Team <support@businessdirectoryplugin.com>\n"
10
  "Language-Team: BD Team <support@businessdirectoryplugin.com>\n"
990
  msgid "Field deleted."
991
  msgstr "Champ effacé."
992
 
993
+ #: admin/form-fields.php:277
994
  msgctxt "form-fields admin"
995
  msgid "Required fields created successfully."
996
  msgstr "Champs requis créés avec succès."
997
 
998
+ #: admin/form-fields.php:290
999
  msgctxt "form-fields admin"
1000
  msgid "Title"
1001
  msgstr "Titre"
1002
 
1003
+ #: admin/form-fields.php:291
1004
  msgctxt "form-fields admin"
1005
  msgid "Category"
1006
  msgstr "Catégorie"
1007
 
1008
+ #: admin/form-fields.php:292
1009
  msgctxt "form-fields admin"
1010
  msgid "Excerpt"
1011
  msgstr "Extrait"
1012
 
1013
+ #: admin/form-fields.php:293
1014
  msgctxt "form-fields admin"
1015
  msgid "Content"
1016
  msgstr "Contenu"
1017
 
1018
+ #: admin/form-fields.php:294
1019
  msgctxt "form-fields admin"
1020
  msgid "Tags"
1021
  msgstr "Étiquettes (tags)"
1022
 
1023
+ #: admin/form-fields.php:295
1024
  msgctxt "form-fields admin"
1025
  msgid "Address"
1026
  msgstr "Adresse"
1027
 
1028
+ #: admin/form-fields.php:296
1029
  #, fuzzy
1030
  msgctxt "form-fields admin"
1031
  msgid "City"
1032
  msgstr "Ville: "
1033
 
1034
+ #: admin/form-fields.php:297
1035
  #, fuzzy
1036
  msgctxt "form-fields admin"
1037
  msgid "State"
1038
  msgstr "Région: "
1039
 
1040
+ #: admin/form-fields.php:298
1041
  msgctxt "form-fields admin"
1042
  msgid "ZIP Code"
1043
  msgstr "Code Postal"
1044
 
1045
+ #: admin/form-fields.php:299
1046
  msgctxt "form-fields admin"
1047
  msgid "FAX Number"
1048
  msgstr "Numéro de fax"
1049
 
1050
+ #: admin/form-fields.php:300
1051
  msgctxt "form-fields admin"
1052
  msgid "Phone Number"
1053
  msgstr "Numéro de téléphone"
1054
 
1055
+ #: admin/form-fields.php:301
1056
  msgctxt "form-fields admin"
1057
  msgid "Ratings Field"
1058
  msgstr "Champs d'évaluation"
1059
 
1060
+ #: admin/form-fields.php:302
1061
  msgctxt "form-fields admin"
1062
  msgid "Twitter"
1063
  msgstr "Twitter"
1064
 
1065
+ #: admin/form-fields.php:303
1066
  msgctxt "form-fields admin"
1067
  msgid "Website"
1068
  msgstr "Site Internet"
1069
 
1070
+ #: admin/form-fields.php:324
1071
  msgctxt "form-fields admin"
1072
  msgid "Tags updated."
1073
  msgstr "Étiquettes mises à jour."
2228
  "Veuillez voir la <a>Documentation de champs de formulaire</a> pour plus de "
2229
  "détails."
2230
 
2231
+ #. #-#-#-#-# WPBDM.pot (Business Directory Plugin 4.1.6) #-#-#-#-#
2232
  #. Plugin Name of the plugin/theme
2233
  #: admin/templates/header.tpl.php:4
2234
  msgid "Business Directory Plugin"
3021
  msgid "Allow Tracking"
3022
  msgstr "Autoriser l'analyse"
3023
 
3024
+ #: business-directory-plugin.php:668
3025
  msgctxt "admin plugins"
3026
  msgid "Settings"
3027
  msgstr "Paramètres"
3028
 
3029
+ #: business-directory-plugin.php:776 business-directory-plugin.php:783
3030
  msgctxt "rss feed"
3031
  msgid "%s Feed"
3032
  msgstr "%s diffusion"
3033
 
3034
+ #: business-directory-plugin.php:1137 core/view-submit-listing.php:58
3035
  #: core/views/submit_listing.php:10
3036
  #, fuzzy
3037
  msgctxt "views"
3038
  msgid "Submit A Listing"
3039
  msgstr "Soumettre une annonce"
3040
 
3041
+ #: business-directory-plugin.php:1142
3042
  msgctxt "title"
3043
  msgid "Find a Listing"
3044
  msgstr "Trouver une annonce"
3045
 
3046
+ #: business-directory-plugin.php:1147
3047
  msgctxt "title"
3048
  msgid "View All Listings"
3049
  msgstr "Voir toutes les annonces"
3050
 
3051
+ #: business-directory-plugin.php:1176
3052
  msgctxt "title"
3053
  msgid "Listings tagged: %s"
3054
  msgstr "Annonces marquées: %s"
3117
  msgid "Invalid form field type"
3118
  msgstr "Type de champ de formulaire invalide"
3119
 
3120
+ #: core/class-form-field.php:505
3121
  msgctxt "form-fields-api"
3122
  msgid "Field label is required."
3123
  msgstr "L'étiquette de champ est requise"
3124
 
3125
+ #: core/class-form-field.php:515
3126
  msgctxt "form-fields-api"
3127
  msgid "Requested field type change is incompatible. Type will not be modified."
3128
  msgstr ""
3129
  "La modification du type de champ est incompatible. Le type de champ ne sera "
3130
  "pas modifié."
3131
 
3132
+ #: core/class-form-field.php:535
3133
  msgctxt "form-fields-api"
3134
  msgid ""
3135
  "There can only be one field with association \"%s\". Please select another "
3138
  "Il ne peut y avoir qu'un champ avec l'association \"% s \". Veuillez "
3139
  "sélectionner une autre association."
3140
 
3141
+ #: core/class-form-field.php:545
3142
  msgctxt "form-fields-api"
3143
  msgid "\"%s\" is an invalid field type for this association."
3144
  msgstr "\" est un type de champ invalide pour cette association."
3145
 
3146
+ #: core/class-form-field.php:583
3147
  msgctxt "form-fields-api"
3148
  msgid "Invalid field ID"
3149
  msgstr "ID de champ invalide"
3150
 
3151
+ #: core/class-form-field.php:592
3152
  msgctxt "form-fields api"
3153
  msgid ""
3154
  "This form field can't be deleted because it is required for the plugin to "
3157
  "Ce champ de formulaire ne peut pas être supprimé car il est nécessaire pour "
3158
  "que le plugin fonctionne."
3159
 
3160
+ #: core/class-form-field.php:604
3161
  msgctxt "form-fields-api"
3162
  msgid "An error occurred while trying to delete this field."
3163
  msgstr "Une erreur est survenue en essayant de supprimer ce champ."
3218
  msgid "(Fee Unavailable)"
3219
  msgstr "(Coûts Non disponible)"
3220
 
3221
+ #: core/class-listings-api.php:310
3222
  msgctxt "notify email"
3223
  msgid "[%s] New listing notification"
3224
  msgstr "[%s] Nouvelle notification d'annonce"
3225
 
3226
+ #: core/class-listings-api.php:329
3227
  msgctxt "notify email"
3228
  msgid "[%s] Listing edit notification"
3229
  msgstr "[%s] Notification d'édition d'annonce"
3615
  msgid "Enable AJAX compatibility mode?"
3616
  msgstr "Activer le mode de comptabilité AJAX ?"
3617
 
3618
+ #: core/class-settings.php:181 core/class-settings.php:679
3619
  msgctxt "admin settings"
3620
  msgid "Listings"
3621
  msgstr "Annonces"
3622
 
3623
+ #: core/class-settings.php:182 core/class-settings.php:349
3624
+ #: core/class-settings.php:636
3625
  msgctxt "admin settings"
3626
  msgid "General Settings"
3627
  msgstr "Paramètres généraux"
3693
  "Utilisez ceci pour prévenir les annonces contenant des spams. 0 signifie un "
3694
  "nombre de soumission illimité par jour."
3695
 
3696
+ #: core/class-settings.php:222
3697
  msgctxt "admin settings"
3698
  msgid "Include comment form on listing pages?"
3699
  msgstr "Inclure les formulaire de commentaires dans pages annonces ?"
3700
 
3701
+ #: core/class-settings.php:225
3702
  msgctxt "admin settings"
3703
  msgid ""
3704
+ "BD uses the standard comment inclusion from WordPress, but most themes only "
3705
+ "allow for comments on posts, not pages. Some themes handle both. BD is "
3706
+ "displayed on a page, so we need a theme that can handle both to show "
3707
+ "comments. Use the 2nd option if you want to allow comments on listings "
3708
+ "first, and if that doesn't work, try the 3rd option instead."
3709
  msgstr ""
 
 
3710
 
3711
+ #: core/class-settings.php:228
3712
+ #, fuzzy
3713
+ msgctxt "admin settings"
3714
+ msgid "Do not include comments in listings"
3715
+ msgstr "Inclure les formulaire de commentaires dans pages annonces ?"
3716
+
3717
+ #: core/class-settings.php:229
3718
+ #, fuzzy
3719
+ msgctxt "admin settings"
3720
+ msgid "Include comment form, theme invoked (standard option)"
3721
+ msgstr "Inclure les formulaire de commentaires dans pages annonces ?"
3722
+
3723
+ #: core/class-settings.php:230
3724
+ msgctxt "admin settings"
3725
+ msgid "Include comment form, BD invoked (use only if 2nd option doesn't work)"
3726
+ msgstr ""
3727
+
3728
+ #: core/class-settings.php:238
3729
  msgctxt "admin settings"
3730
  msgid "Show listings under categories on main page?"
3731
  msgstr "Voir les annonces catégorisées sur la page principale?"
3732
 
3733
+ #: core/class-settings.php:239
3734
  msgctxt "admin settings"
3735
  msgid "Status of listings upon uninstalling plugin"
3736
  msgstr "Statut des annonces dès la désinstallation du plugin"
3737
 
3738
+ #: core/class-settings.php:240 core/class-settings.php:242
3739
  msgctxt "post status"
3740
  msgid "Draft"
3741
  msgstr ""
3742
 
3743
+ #: core/class-settings.php:240 core/class-settings.php:242
3744
  msgctxt "post status"
3745
  msgid "Trash"
3746
  msgstr ""
3747
 
3748
+ #: core/class-settings.php:241
3749
  msgctxt "admin settings"
3750
  msgid "Status of deleted listings"
3751
  msgstr "Statut des annonces effacées"
3752
 
3753
+ #: core/class-settings.php:243
3754
  #, fuzzy
3755
  msgctxt "admin settings"
3756
  msgid "Submit Listing instructions message"
3757
  msgstr "Lister des messages de contact"
3758
 
3759
+ #: core/class-settings.php:243
3760
  msgctxt "admin settings"
3761
  msgid ""
3762
  "This text is displayed at the first page of the Submit Listing process for "
3764
  "form or anything you want to tell users before they get started."
3765
  msgstr ""
3766
 
3767
+ #: core/class-settings.php:245
3768
  msgctxt "admin settings"
3769
  msgid "Listing Renewal"
3770
  msgstr "Renouvellement des annonces"
3771
 
3772
+ #: core/class-settings.php:246
3773
  msgctxt "admin settings"
3774
  msgid "Turn on listing renewal option?"
3775
  msgstr "Activer l'option renouvellement des annonces ?"
3776
 
3777
+ #: core/class-settings.php:249
3778
  msgctxt "admin settings"
3779
  msgid "Allow recurring renewal payments?"
3780
  msgstr "Autoriser les paiements récurrents de renouvellement ?"
3781
 
3782
+ #: core/class-settings.php:252
3783
  msgctxt "admin settings"
3784
  msgid ""
3785
  "Allow users to opt in for automatic renewal of their listings. The fee is "
3789
  "leurs annonces. La redevance est perçue au moment de l'inscription et expire "
3790
  "sans intervention de l'utilisateur."
3791
 
3792
+ #: core/class-settings.php:256
3793
  msgctxt "admin settings"
3794
  msgid "Use recurring payments as the default payment method?"
3795
  msgstr ""
3796
  "Utiliser les paiements récurrents comme méthode de paiement par défaut?"
3797
 
3798
+ #: core/class-settings.php:259
3799
  msgctxt "admin settings"
3800
  msgid ""
3801
  "Enable automatic renewal without having users opt in during the submit "
3804
  "Activer le renouvellement automatique sans avoir à avertir les utilisateurs "
3805
  "lors du processus de soumission."
3806
 
3807
+ #: core/class-settings.php:264
3808
  msgctxt "admin settings"
3809
  msgid "Listing renewal e-mail threshold (in days)"
3810
  msgstr "Seuil de renouvellement des annonces par e-mail (en jours)"
3811
 
3812
  # Todo as soon as possible. I don't understand exactly what does this sentence...
3813
+ #: core/class-settings.php:267
3814
  msgctxt "admin settings"
3815
  msgid ""
3816
  "Configure how many days before listing expiration is the renewal e-mail sent."
3818
  "Configurer le nombre de jours avant l'expiration des annonces doit se "
3819
  "dérouler le renouvellement d'envoi d'e-mail."
3820
 
3821
+ #: core/class-settings.php:271
3822
  msgctxt "admin settings"
3823
  msgid ""
3824
  "Send expiration notices including a cancel links to auto-renewed listings?"
3826
  "Envoyer des avis d'expiration y compris un lien d'annulation vers le "
3827
  "renouvellement automatique des annonces ?"
3828
 
3829
+ #: core/class-settings.php:278
3830
  msgctxt "admin settings"
3831
  msgid "Remind listing owners of expired listings (past due)?"
3832
  msgstr ""
3833
  "Rappeler les propriétaires des annonces lorsque ces dernières arrives à "
3834
  "expiration (en souffrance)?"
3835
 
3836
+ #: core/class-settings.php:283
3837
  msgctxt "admin settings"
3838
  msgid "Listing renewal reminder e-mail threshold (in days)"
3839
  msgstr "Seuil du renouvellement des rappels e-mail des annonces (en jours)"
3840
 
3841
+ #: core/class-settings.php:286
3842
  msgctxt "admin settings"
3843
  msgid ""
3844
  "Configure how many days after the expiration of a listing an e-mail reminder "
3847
  "Configurer le nombre de jours après l'expiration d'une annonces d'un rappel "
3848
  "avant qu'un e-mail soit envoyé au propriétaire."
3849
 
3850
+ #: core/class-settings.php:289
3851
  msgctxt "admin settings"
3852
  msgid "Post/Category Settings"
3853
  msgstr "Paramètres de Messages/Catégories"
3854
 
3855
+ #: core/class-settings.php:290
3856
  msgctxt "admin settings"
3857
  msgid "Default new post status"
3858
  msgstr "Statut du nouveau message par défaut"
3859
 
3860
+ #: core/class-settings.php:291 core/class-settings.php:294
3861
  msgctxt "post status"
3862
  msgid "Published"
3863
  msgstr ""
3864
 
3865
+ #: core/class-settings.php:291 core/class-settings.php:294
3866
  #, fuzzy
3867
  msgctxt "post status"
3868
  msgid "Pending"
3869
  msgstr "En attente"
3870
 
3871
+ #: core/class-settings.php:293
3872
  msgctxt "admin settings"
3873
  msgid "Edit post status"
3874
  msgstr "Editer le statut du message"
3875
 
3876
+ #: core/class-settings.php:295
3877
  msgctxt "admin settings"
3878
  msgid "Order categories list by"
3879
  msgstr "Ordonner les catégories des annonces par"
3880
 
3881
+ #: core/class-settings.php:297
3882
  msgctxt "admin settings"
3883
  msgid "Name"
3884
  msgstr "Nom"
3885
 
3886
+ #: core/class-settings.php:298
3887
  msgctxt "admin settings"
3888
  msgid "Slug"
3889
  msgstr "Identifiant"
3890
 
3891
+ #: core/class-settings.php:299
3892
  msgctxt "admin settings"
3893
  msgid "Listing Count"
3894
  msgstr "Compteur d'annonce"
3895
 
3896
+ #: core/class-settings.php:301
3897
  msgctxt "admin settings"
3898
  msgid "Sort order for categories"
3899
  msgstr "Ordre de tri pour les catégories"
3900
 
3901
+ #: core/class-settings.php:302 core/class-settings.php:320
3902
  msgctxt "admin settings"
3903
  msgid "Ascending"
3904
  msgstr "Ascendant"
3905
 
3906
+ #: core/class-settings.php:302 core/class-settings.php:320
3907
  msgctxt "admin settings"
3908
  msgid "Descending"
3909
  msgstr "Descendant"
3910
 
3911
+ #: core/class-settings.php:303
3912
  msgctxt "admin settings"
3913
  msgid "Show category post count?"
3914
  msgstr "Montrer les catégories par messages postés ?"
3915
 
3916
+ #: core/class-settings.php:304
3917
  msgctxt "admin settings"
3918
  msgid "Hide empty categories?"
3919
  msgstr "Cacher les catégories vides ?"
3920
 
3921
+ #: core/class-settings.php:305
3922
  msgctxt "admin settings"
3923
  msgid "Show only parent categories in category list?"
3924
  msgstr ""
3925
  "Montrer seulement les catégories parentes dans la liste des catégories ?"
3926
 
3927
+ #: core/class-settings.php:307
3928
  msgctxt "admin settings"
3929
  msgid "Listings Sorting"
3930
  msgstr "Tri des annonces"
3931
 
3932
+ #: core/class-settings.php:308
3933
  msgctxt "admin settings"
3934
  msgid "Order directory listings by"
3935
  msgstr "Ordonner les annonces de l'annuaire par"
3936
 
3937
+ #: core/class-settings.php:310
3938
  msgctxt "admin settings"
3939
  msgid "Title"
3940
  msgstr "Titre"
3941
 
3942
+ #: core/class-settings.php:311
3943
  msgctxt "admin settings"
3944
  msgid "Author"
3945
  msgstr "Auteur"
3946
 
3947
+ #: core/class-settings.php:312 core/class-settings.php:722
3948
  msgctxt "admin settings"
3949
  msgid "Date posted"
3950
  msgstr "Date d'ajout"
3951
 
3952
+ #: core/class-settings.php:313 core/class-settings.php:723
3953
  msgctxt "admin settings"
3954
  msgid "Date last modified"
3955
  msgstr "Date de dernière modification"
3956
 
3957
+ #: core/class-settings.php:314
3958
  msgctxt "admin settings"
3959
  msgid "Random"
3960
  msgstr "Aléatoire"
3961
 
3962
+ #: core/class-settings.php:315
3963
  msgctxt "admin settings"
3964
  msgid "Paid first then free. Inside each group by date."
3965
  msgstr ""
3966
 
3967
+ #: core/class-settings.php:316
3968
  msgctxt "admin settings"
3969
  msgid "Paid first then free. Inside each group by title."
3970
  msgstr ""
3971
 
3972
+ #: core/class-settings.php:318
3973
  msgctxt "admin settings"
3974
  msgid "Sort directory listings by"
3975
  msgstr "Trier les annonces de l'annuaire par"
3976
 
3977
+ #: core/class-settings.php:319
3978
  msgctxt "admin settings"
3979
  msgid "Ascending for ascending order A-Z, Descending for descending order Z-A"
3980
  msgstr ""
3981
  "Ascendant pour un classement de A à Z, Descendant pour un classement de Z à A"
3982
 
3983
+ #: core/class-settings.php:324
3984
  msgctxt "admin settings"
3985
  msgid "Enable sort bar?"
3986
  msgstr "Activer la barre de tri ?"
3987
 
3988
+ #: core/class-settings.php:329
3989
  msgctxt "admin settings"
3990
  msgid "Sortbar Fields"
3991
  msgstr "Champs de la barre de tri"
3992
 
3993
+ #: core/class-settings.php:338
3994
  msgctxt "admin settings"
3995
  msgid "Featured (Sticky) listing settings"
3996
  msgstr "Paramètres sélectionnés (Post-it) des annonces"
3997
 
3998
+ #: core/class-settings.php:339
3999
  msgctxt "admin settings"
4000
  msgid "Offer sticky listings?"
4001
  msgstr "Proposer des annonces par Post-it ?"
4002
 
4003
+ #: core/class-settings.php:340
4004
  msgctxt "admin settings"
4005
  msgid "Offer upgrades during submit process?"
4006
  msgstr "Proposer des améliorations durant le processus de soumission ?"
4007
 
4008
+ #: core/class-settings.php:341
4009
  msgctxt "admin settings"
4010
  msgid "Sticky listing price"
4011
  msgstr "Prix des annonces en Post-it"
4012
 
4013
+ #: core/class-settings.php:342
4014
  msgctxt "admin settings"
4015
  msgid "Sticky listing page description text"
4016
  msgstr "Texte de description de la page annonce en Post-it"
4017
 
4018
+ #: core/class-settings.php:343
4019
  msgctxt "admin settings"
4020
  msgid ""
4021
  "You can upgrade your listing to featured status. Featured listings will "
4025
  "annonces ainsi traitées vont toujours apparaître avant les annonces "
4026
  "courantes."
4027
 
4028
+ #: core/class-settings.php:348
4029
  msgctxt "admin settings"
4030
  msgid "E-Mail"
4031
  msgstr "E-Mail"
4032
 
4033
+ #: core/class-settings.php:352
4034
  msgctxt "admin settings"
4035
  msgid "Display email address fields publicly?"
4036
  msgstr "Affichage des champs d'adresses e-mail au public ?"
4037
 
4038
+ #: core/class-settings.php:355
4039
  msgctxt "admin settings"
4040
  msgid ""
4041
  "Shows the email address of the listing owner to all web users. NOT "
4046
  "utilisateurs du Web. PAS RECOMMANDE car cela augmente le spam à l'adresse en "
4047
  "question et permet aux spam bots de la récolter pour une utilisation future."
4048
 
4049
+ #: core/class-settings.php:358
4050
  msgctxt "admin settings"
4051
  msgid "How to determine the listing's email address?"
4052
  msgstr "Comment définir l'adresse e-mail de l'annonce ?"
4053
 
4054
+ #: core/class-settings.php:361
4055
  msgctxt "admin settings"
4056
  msgid ""
4057
  "This affects emails sent to listing owners via contact forms or when their "
4060
  "Cela affecte l'envoie des e-mails aux propriétaires des annonces via le "
4061
  "formulaire de contact ou quand leurs annonces expirent."
4062
 
4063
+ #: core/class-settings.php:363
4064
  msgctxt "admin settings"
4065
  msgid "Try listing's email field first, then author's email."
4066
  msgstr ""
4067
 
4068
+ #: core/class-settings.php:364
4069
  msgctxt "admin settings"
4070
  msgid "Try author's email first and then listing's email field."
4071
  msgstr ""
4072
 
4073
+ #: core/class-settings.php:368
4074
  msgctxt "admin settings"
4075
  msgid "E-Mail Notifications"
4076
  msgstr "Notification mail"
4077
 
4078
+ #: core/class-settings.php:371
4079
  msgctxt "admin settings"
4080
  msgid "Notify admin via e-mail when..."
4081
  msgstr "Prévenir l'administrateur via courriel quand..."
4082
 
4083
+ #: core/class-settings.php:375
4084
  msgctxt "admin settings"
4085
  msgid "A new listing is submitted."
4086
  msgstr "Une nouvelle annonce a été soumise."
4087
 
4088
+ #: core/class-settings.php:376
4089
  msgctxt "admin settings"
4090
  msgid "A listing is edited."
4091
  msgstr "Une annonce est éditée."
4092
 
4093
+ #: core/class-settings.php:377
4094
  msgctxt "admin settings"
4095
  msgid "A listing expires."
4096
  msgstr "Une annonce expire."
4097
 
4098
+ #: core/class-settings.php:378
4099
  msgctxt "admin settings"
4100
  msgid "A contact message is sent to a listing's owner."
4101
  msgstr "Un message de contact est envoyé a un propriétaire d'annonce."
4102
 
4103
+ #: core/class-settings.php:384
4104
  msgctxt "admin settings"
4105
  msgid "CC this e-mail address too"
4106
  msgstr "CC cette adresse mail aussi"
4107
 
4108
+ #: core/class-settings.php:390
4109
  msgctxt "admin settings"
4110
  msgid "Notify users via e-mail when..."
4111
  msgstr "Prévenir les utilisateurs via courriel quand..."
4112
 
4113
+ #: core/class-settings.php:393
4114
  msgctxt "admin settings"
4115
  msgid "You can modify the text template used for most of these e-mails below."
4116
  msgstr ""
4117
  "Vous pouvez modifier le modèle de texte utilisé pour la plupart de ces e-"
4118
  "mails ci-dessous."
4119
 
4120
+ #: core/class-settings.php:394
4121
  msgctxt "admin settings"
4122
  msgid "Their listing is submitted."
4123
  msgstr "Leur annonce est soumise."
4124
 
4125
+ #: core/class-settings.php:395
4126
  msgctxt "admin settings"
4127
  msgid "Their listing is approved/published."
4128
  msgstr "Leur annonce est approuvée/publiée"
4129
 
4130
+ #: core/class-settings.php:404
4131
  msgctxt "contact email"
4132
  msgid "You have received a reply from your listing at %s."
4133
  msgstr "Vous avez reçu une réponse à votre annonce de %s."
4134
 
4135
+ #: core/class-settings.php:405
4136
  msgctxt "contact email"
4137
  msgid "Name: %s"
4138
  msgstr "Nom: %s"
4139
 
4140
+ #: core/class-settings.php:406
4141
  msgctxt "contact email"
4142
  msgid "E-Mail: %s"
4143
  msgstr "E-Mail: %s"
4144
 
4145
+ #: core/class-settings.php:407
4146
  msgctxt "contact email"
4147
  msgid "Message:"
4148
  msgstr "Message:"
4149
 
4150
+ #: core/class-settings.php:409
4151
  msgctxt "contact email"
4152
  msgid "Time: %s"
4153
  msgstr "Date: %s"
4154
 
4155
+ #: core/class-settings.php:411
4156
  msgctxt "admin settings"
4157
  msgid "E-Mail Templates"
4158
  msgstr "Template d'E-Mail"
4159
 
4160
+ #: core/class-settings.php:414
4161
  msgctxt "admin settings"
4162
  msgid "Email confirmation message"
4163
  msgstr "Message de confirmation par E-Mail"
4164
 
4165
+ #: core/class-settings.php:418
4166
  msgctxt "admin settings"
4167
  msgid "Sent after a listing has been submitted."
4168
  msgstr "Envoyer après qu'une annonce ait été soumise"
4169
 
4170
+ #: core/class-settings.php:419 core/class-settings.php:427
4171
+ #: core/class-settings.php:468
4172
  msgctxt "admin settings"
4173
  msgid "Listing's title"
4174
  msgstr "Titre de l'annonce"
4175
 
4176
+ #: core/class-settings.php:422
4177
  msgctxt "admin settings"
4178
  msgid "Listing published message"
4179
  msgstr "Message publié de l'annonce"
4180
 
4181
+ #: core/class-settings.php:425
4182
  msgctxt "admin settings"
4183
  msgid ""
4184
  "Your listing \"[listing]\" is now available at [listing-url] and can be "
4187
  "Votre annonce \"[listing]\" est maintenant disponible à [listing-url] et "
4188
  "elle peut être vu par tout le monde."
4189
 
4190
+ #: core/class-settings.php:426
4191
  msgctxt "admin settings"
4192
  msgid "Sent when the listing has been published or approved by an admin."
4193
  msgstr ""
4194
  "Envoyé lorsque l'annonce a été publiée ou approuvée par un administrateur."
4195
 
4196
+ #: core/class-settings.php:428
4197
  msgctxt "admin settings"
4198
  msgid "Listing's URL"
4199
  msgstr "Url de l'annonce"
4200
 
4201
+ #: core/class-settings.php:432
4202
  msgctxt "admin settings"
4203
  msgid "Listing Contact Message"
4204
  msgstr "Lister des messages de contact"
4205
 
4206
+ #: core/class-settings.php:436
4207
  msgctxt "admin settings"
4208
  msgid ""
4209
  "Sent to listing owners when someone uses the contact form on their listing "
4212
  "Envoyer aux propriétaires des annonces quand quelqu'un utilise le formulaire "
4213
  "de contact sur leurs pages d'annonces."
4214
 
4215
+ #: core/class-settings.php:446
4216
  msgctxt "admin settings"
4217
  msgid "Payment related"
4218
  msgstr "Paiement lié"
4219
 
4220
+ #: core/class-settings.php:463
4221
  msgctxt "admin settings"
4222
  msgid "Payment abandoned reminder message"
4223
  msgstr "Paiement abandonné, message de rappel"
4224
 
4225
+ #: core/class-settings.php:467
4226
  msgctxt "admin settings"
4227
  msgid "Sent some time after a pending payment is abandoned by users."
4228
  msgstr ""
4229
  "Envoyer après un certain temps lorsqu'un paiement en attente est abandonné "
4230
  "par les utilisateurs."
4231
 
4232
+ #: core/class-settings.php:469
4233
  msgctxt "admin settings"
4234
  msgid "Checkout URL link"
4235
  msgstr "Vérificateur de lien URL"
4236
 
4237
+ #: core/class-settings.php:475
4238
  msgctxt "admin settings"
4239
  msgid "Renewal Reminders"
4240
  msgstr "Renouveller les rappels"
4241
 
4242
+ #: core/class-settings.php:478
4243
  msgctxt "admin settings"
4244
  msgid ""
4245
  "This section refers only to the text of the renewal/expiration notices. You "
4249
  "d'expiration. Vous pouvez également configurer <a> quand les e-mails seront "
4250
  "envoyés </a>."
4251
 
4252
+ #: core/class-settings.php:482
4253
  msgctxt "admin settings"
4254
  msgid "Pending expiration e-mail message"
4255
  msgstr "Expiration imminente du mail"
4256
 
4257
+ #: core/class-settings.php:486
4258
  msgctxt "settings"
4259
  msgid ""
4260
  "Sent some time before the listing expires. Applies to non-recurring renewals "
4263
  "Envoyé quelque temps avant l'expiration de l'annonce. Valable seulement pour "
4264
  "les renouvellements non-récurrents."
4265
 
4266
+ #: core/class-settings.php:487 core/class-settings.php:500
4267
+ #: core/class-settings.php:513 core/class-settings.php:526
4268
+ #: core/class-settings.php:539
4269
  msgctxt "settings"
4270
  msgid "Listing's name (with link)"
4271
  msgstr "Nom de l'annonce (avec lien)"
4272
 
4273
+ #: core/class-settings.php:488 core/class-settings.php:501
4274
+ #: core/class-settings.php:514 core/class-settings.php:527
4275
+ #: core/class-settings.php:540
4276
  msgctxt "settings"
4277
  msgid "Author's name"
4278
  msgstr "Nom de l'auteur"
4279
 
4280
+ #: core/class-settings.php:489 core/class-settings.php:502
4281
+ #: core/class-settings.php:541
4282
  msgctxt "settings"
4283
  msgid "Expiration date"
4284
  msgstr "Date d'expiration"
4285
 
4286
+ #: core/class-settings.php:490
4287
  msgctxt "settings"
4288
  msgid "Category that is going to expire"
4289
  msgstr "Catégorier qui va expirer"
4290
 
4291
+ #: core/class-settings.php:491 core/class-settings.php:504
4292
+ #: core/class-settings.php:543
4293
  msgctxt "settings"
4294
  msgid "Link to renewal page"
4295
  msgstr "Lien pour renouveller la page"
4296
 
4297
+ #: core/class-settings.php:492 core/class-settings.php:505
4298
+ #: core/class-settings.php:517 core/class-settings.php:530
4299
+ #: core/class-settings.php:544
4300
  msgctxt "settings"
4301
  msgid "Link to your site"
4302
  msgstr "Lien vers votre site"
4303
 
4304
+ #: core/class-settings.php:495
4305
  msgctxt "admin settings"
4306
  msgid "Listing Renewal e-mail message"
4307
  msgstr "Message mail de renouvellement d'annonce"
4308
 
4309
+ #: core/class-settings.php:499
4310
  msgctxt "settings"
4311
  msgid ""
4312
  "Sent at the time of listing expiration. Applies to non-recurring renewals "
4315
  "Envoyé au moment de l'expiration de l'annonce. Seulement valable pour les "
4316
  "renouvellements non-récurrents."
4317
 
4318
+ #: core/class-settings.php:503 core/class-settings.php:542
4319
  msgctxt "settings"
4320
  msgid "Category that expired"
4321
  msgstr "Catégories qui ont expiré"
4322
 
4323
+ #: core/class-settings.php:508
4324
  msgctxt "admin settings"
4325
  msgid "Listing auto-renewal reminder (recurring payments)"
4326
  msgstr "Rappel d'auto-renouvellement des annonces (paiements récurrents)"
4327
 
4328
+ #: core/class-settings.php:512
4329
  msgctxt "settings"
4330
  msgid ""
4331
  "Sent some time before the listing is auto-renewed. Applies to recurring "
4334
  "Envoyé un certain temps avant que l'annonce est auto-renouvellement. Valable "
4335
  "pour les renouvellements périodiques seulement."
4336
 
4337
+ #: core/class-settings.php:515 core/class-settings.php:529
4338
  msgctxt "settings"
4339
  msgid "Renewal date"
4340
  msgstr "Date de renouvellement"
4341
 
4342
+ #: core/class-settings.php:516
4343
  msgctxt "settings"
4344
  msgid "Category that is going to be renewed"
4345
  msgstr "Catégories qui vont être renouvelées"
4346
 
4347
+ #: core/class-settings.php:518
4348
  msgctxt "settings"
4349
  msgid "Link to manage subscriptions"
4350
  msgstr "Lien pour gérer les abonnements"
4351
 
4352
+ #: core/class-settings.php:521
4353
  msgctxt "admin settings"
4354
  msgid "Listing Renewal e-mail message (recurring payments)"
4355
  msgstr "Renouvellement des annonces par mail (paiements récurrents)"
4356
 
4357
+ #: core/class-settings.php:525
4358
  msgctxt "settings"
4359
  msgid ""
4360
  "Sent after the listing is auto-renewed. Applies to recurring renewals only."
4362
  "Envoyé dès que les annonces se soient auto-renouvelées. Appliqué aux "
4363
  "paiements récurrents seulement."
4364
 
4365
+ #: core/class-settings.php:528
4366
  msgctxt "settings"
4367
  msgid "Renewed category"
4368
  msgstr "Catégories renouvellées"
4369
 
4370
+ #: core/class-settings.php:534
4371
  msgctxt "admin settings"
4372
  msgid "Renewal reminder e-mail message"
4373
  msgstr "Renouveler le rappel par mail"
4374
 
4375
+ #: core/class-settings.php:538
4376
  msgctxt "settings"
4377
  msgid ""
4378
  "Sent some time after listing expiration and when no renewal has occurred. "
4382
  "renouvellement n'a pas eu lieu. Valable pour deux renouvellements récurrents "
4383
  "et non récurrents."
4384
 
4385
+ #: core/class-settings.php:548
4386
  msgctxt "admin settings"
4387
  msgid "Payment"
4388
  msgstr "Paiement"
4389
 
4390
+ #: core/class-settings.php:549
4391
  msgctxt "admin settings"
4392
  msgid "Payment Settings"
4393
  msgstr "Paramètres de paiement"
4394
 
4395
+ #: core/class-settings.php:552
4396
  msgctxt "admin settings"
4397
  msgid "Turn On payments?"
4398
  msgstr "Activer les paiements ?"
4399
 
4400
+ #: core/class-settings.php:554
4401
  msgctxt "admin settings"
4402
  msgid "Put payment gateways in test mode?"
4403
  msgstr "Passer les passerelles de paiement en mode test ?"
4404
 
4405
+ #: core/class-settings.php:559
4406
  msgctxt "admin settings"
4407
  msgid "Perform checkouts on the secure (HTTPS) version of your site?"
4408
  msgstr ""
4409
  "Effectuer la vérification sur la version sécurisée (HTTPS) de votre site?"
4410
 
4411
+ #: core/class-settings.php:562
4412
  msgctxt "admin settings"
4413
  msgid ""
4414
  "Recommended for added security. For this to work you need to enable HTTPS on "
4417
  "Recommandé pour une sécurité accrue. Pour que cela fonctionne, vous devez "
4418
  "activer HTTPS sur votre serveur et <a> obtenir un certificat SSL </a>."
4419
 
4420
+ #: core/class-settings.php:566
4421
  msgctxt "admin settings"
4422
  msgid "Currency Code"
4423
  msgstr "Code de devise"
4424
 
4425
+ #: core/class-settings.php:568
4426
  msgctxt "admin settings"
4427
  msgid "Australian Dollar (AUD)"
4428
  msgstr "Dollar Australien (AUD)"
4429
 
4430
+ #: core/class-settings.php:569
4431
  msgctxt "admin settings"
4432
  msgid "Brazilian Real (BRL)"
4433
  msgstr "Real Brésilien (BRL)"
4434
 
4435
+ #: core/class-settings.php:570
4436
  msgctxt "admin settings"
4437
  msgid "Canadian Dollar (CAD)"
4438
  msgstr "Dollar Canadien (CAD)"
4439
 
4440
+ #: core/class-settings.php:571
4441
  msgctxt "admin settings"
4442
  msgid "Czech Koruna (CZK)"
4443
  msgstr "Couronne Tchèque (CZK)"
4444
 
4445
+ #: core/class-settings.php:572
4446
  msgctxt "admin settings"
4447
  msgid "Danish Krone (DKK)"
4448
  msgstr "Couronne Danoise (DKK)"
4449
 
4450
+ #: core/class-settings.php:573
4451
  msgctxt "admin settings"
4452
  msgid "Euro (EUR)"
4453
  msgstr "Euro (EUR)"
4454
 
4455
+ #: core/class-settings.php:574
4456
  msgctxt "admin settings"
4457
  msgid "Hong Kong Dollar (HKD)"
4458
  msgstr "Dollar de Hong Kong(HKD)"
4459
 
4460
+ #: core/class-settings.php:575
4461
  msgctxt "admin settings"
4462
  msgid "Hungarian Forint (HUF)"
4463
  msgstr "Forint Hongrois (HUF)"
4464
 
4465
+ #: core/class-settings.php:576
4466
  msgctxt "admin settings"
4467
  msgid "Israeli New Shequel (ILS)"
4468
  msgstr "Nouveau Shequel Israélien (ILS)"
4469
 
4470
+ #: core/class-settings.php:577
4471
  msgctxt "admin settings"
4472
  msgid "Japanese Yen (JPY)"
4473
  msgstr "Yen Japonais (JPY)"
4474
 
4475
+ #: core/class-settings.php:578
4476
  msgctxt "admin settings"
4477
  msgid "Malasian Ringgit (MYR)"
4478
  msgstr "Ringgit Malaisien (MYR)"
4479
 
4480
+ #: core/class-settings.php:579
4481
  msgctxt "admin settings"
4482
  msgid "Mexican Peso (MXN)"
4483
  msgstr "Peso Mexicain (MXN)"
4484
 
4485
+ #: core/class-settings.php:580
4486
  msgctxt "admin settings"
4487
  msgid "Norwegian Krone (NOK)"
4488
  msgstr "Couronne Norvégienne (NOK)"
4489
 
4490
+ #: core/class-settings.php:581
4491
  msgctxt "admin settings"
4492
  msgid "New Zealand Dollar (NZD)"
4493
  msgstr "Dollar Néo-Zélandais (NZD)"
4494
 
4495
+ #: core/class-settings.php:582
4496
  msgctxt "admin settings"
4497
  msgid "Philippine Peso (PHP)"
4498
  msgstr "Peso Phillipin (PHP)"
4499
 
4500
+ #: core/class-settings.php:583
4501
  msgctxt "admin settings"
4502
  msgid "Polish Zloty (PLN)"
4503
  msgstr "Zloty Polonais (PLN)"
4504
 
4505
+ #: core/class-settings.php:584
4506
  msgctxt "admin settings"
4507
  msgid "Pound Sterling (GBP)"
4508
  msgstr "Livre Sterling (GBP)"
4509
 
4510
+ #: core/class-settings.php:585
4511
  msgctxt "admin settings"
4512
  msgid "Singapore Dollar (SGD)"
4513
  msgstr "Dollar Singaporien (SGD)"
4514
 
4515
+ #: core/class-settings.php:586
4516
  msgctxt "admin settings"
4517
  msgid "Swedish Krona (SEK)"
4518
  msgstr "Couronne Suédoise (SEK)"
4519
 
4520
+ #: core/class-settings.php:587
4521
  msgctxt "admin settings"
4522
  msgid "Swiss Franc (CHF)"
4523
  msgstr "Franc Suisse (CHF)"
4524
 
4525
+ #: core/class-settings.php:588
4526
  msgctxt "admin settings"
4527
  msgid "Taiwan Dollar (TWD)"
4528
  msgstr "Dollar Taiwanais (TWD)"
4529
 
4530
+ #: core/class-settings.php:589
4531
  msgctxt "admin settings"
4532
  msgid "Thai Baht (THB)"
4533
  msgstr "Baht Thaïlandais"
4534
 
4535
+ #: core/class-settings.php:590
4536
  msgctxt "admin settings"
4537
  msgid "Turkish Lira (TRY)"
4538
  msgstr "Livre Turque (TRY)"
4539
 
4540
+ #: core/class-settings.php:591
4541
  #, fuzzy
4542
  msgctxt "admin settings"
4543
  msgid "U.S. Dollar (USD)"
4544
  msgstr "Dollar U.S. "
4545
 
4546
+ #: core/class-settings.php:595
4547
  msgctxt "admin settings"
4548
  msgid "Currency Symbol"
4549
  msgstr "Devise"
4550
 
4551
+ #: core/class-settings.php:600
4552
  msgctxt "admin settings"
4553
  msgid "Currency symbol display"
4554
  msgstr "Affichage de la devise"
4555
 
4556
+ #: core/class-settings.php:604
4557
  msgctxt "admin settings"
4558
  msgid "Show currency symbol on the left"
4559
  msgstr "Afficher le symbole de devise à gauche"
4560
 
4561
+ #: core/class-settings.php:605
4562
  msgctxt "admin settings"
4563
  msgid "Show currency symbol on the right"
4564
  msgstr "Afficher le symbole de devise à droite"
4565
 
4566
+ #: core/class-settings.php:606
4567
  msgctxt "admin settings"
4568
  msgid "Do not show currency symbol"
4569
  msgstr "Ne pas montrer la devise"
4570
 
4571
+ #: core/class-settings.php:608
4572
  msgctxt "admin settings"
4573
  msgid "Thank you for payment message"
4574
  msgstr "Merci pour le message de paiement"
4575
 
4576
+ #: core/class-settings.php:609
4577
  msgctxt "admin settings"
4578
  msgid ""
4579
  "Thank you for your payment. Your payment is being verified and your listing "
4583
  "votre annonce en revue. Le processus de vérification et d'examen peut "
4584
  "prendre jusqu'à 48 heures."
4585
 
4586
+ #: core/class-settings.php:614
4587
  msgctxt "admin settings"
4588
  msgid "Ask users to come back for abandoned payments?"
4589
  msgstr "Demandez aux utilisateurs de revenir pour les paiements abandonnés ?"
4590
 
4591
+ #: core/class-settings.php:617
4592
  msgctxt "admin settings"
4593
  msgid ""
4594
  "An abandoned payment is when a user attempts to place a listing and gets to "
4602
  "l'utilisateur n'a tout simplement pas compléter la transaction. Le plugin "
4603
  "peut peut rappeler les auteurs pour continuer la publication de leur annonce."
4604
 
4605
+ #: core/class-settings.php:623
4606
  msgctxt "admin settings"
4607
  msgid "Listing abandonment threshold (hours)"
4608
  msgstr "Seuil d'abandon de l'annonce (heures)"
4609
 
4610
+ #: core/class-settings.php:628
4611
  msgctxt "admin settings"
4612
  msgid ""
4613
  "Listings with pending payments are marked as abandoned after this time. You "
4617
  "cette heure. Vous pouvez également personnaliser <a> l'e-mail </a> que les "
4618
  "utilisateurs reçoivent."
4619
 
4620
+ #: core/class-settings.php:633
4621
  msgctxt "admin settings"
4622
  msgid "Themes"
4623
  msgstr "Thèmes"
4624
 
4625
+ #: core/class-settings.php:635
4626
  msgctxt "admin settings"
4627
  msgid "You can manage your themes on <a>Directory Themes</a>."
4628
  msgstr ""
4629
 
4630
+ #: core/class-settings.php:640
4631
  msgctxt "admin settings"
4632
  msgid "Theme button style"
4633
  msgstr "Boutons de thèmes"
4634
 
4635
+ #: core/class-settings.php:644
4636
  msgctxt "admin settings"
4637
  msgid "Use the BD theme style for BD buttons"
4638
  msgstr "Utiliser le thème BD pour les boutons BD"
4639
 
4640
+ #: core/class-settings.php:645
4641
  msgctxt "admin settings"
4642
  msgid "Use the WP theme style for BD buttons"
4643
  msgstr "Utiliser le thème WP pour les boutons BD"
4644
 
4645
+ #: core/class-settings.php:652
4646
  msgctxt "admin settings"
4647
  msgid "Image"
4648
  msgstr "Image"
4649
 
4650
+ #: core/class-settings.php:653
4651
  msgctxt "admin settings"
4652
  msgid ""
4653
  "Any changes to these settings will affect new listings only. Existing "
4661
  "télécharger l'image (s) sur cette annonce, après avoir cfait les "
4662
  "modifications voulue."
4663
 
4664
+ #: core/class-settings.php:654
4665
  msgctxt "admin settings"
4666
  msgid "Image Settings"
4667
  msgstr "Paraamètres des images"
4668
 
4669
+ #: core/class-settings.php:655
4670
  msgctxt "admin settings"
4671
  msgid "Allow images?"
4672
  msgstr "Autoriser les images ?"
4673
 
4674
+ #: core/class-settings.php:657
4675
  msgctxt "admin settings"
4676
  msgid "Min Image File Size (KB)"
4677
  msgstr "Taille minnimal des fichiers images (KB)"
4678
 
4679
+ #: core/class-settings.php:658
4680
  msgctxt "admin settings"
4681
  msgid "Max Image File Size (KB)"
4682
  msgstr "Taille maximal des fichiers images (KB)"
4683
 
4684
+ #: core/class-settings.php:660
4685
  msgctxt "admin settings"
4686
  msgid "Min image width (px)"
4687
  msgstr "Largeur minnimal des images (px)"
4688
 
4689
+ #: core/class-settings.php:661
4690
  msgctxt "admin settings"
4691
  msgid "Min image height (px)"
4692
  msgstr "Hauteur minnimal des images (px)"
4693
 
4694
+ #: core/class-settings.php:663
4695
  msgctxt "admin settings"
4696
  msgid "Max image width (px)"
4697
  msgstr "Largeur maximal des images (px)"
4698
 
4699
+ #: core/class-settings.php:664
4700
  msgctxt "admin settings"
4701
  msgid "Max image height (px)"
4702
  msgstr "Hauteur maximal des images (px)"
4703
 
4704
+ #: core/class-settings.php:666
4705
  msgctxt "admin settings"
4706
  msgid "Turn on thickbox/lightbox?"
4707
  msgstr "Activer thickbox/lightbox ?"
4708
 
4709
+ #: core/class-settings.php:666
4710
  msgctxt "admin settings"
4711
  msgid ""
4712
  "Uncheck if it conflicts with other elements or plugins installed on your site"
4714
  "Décochez si vela entre en conflit avec d'autres éléments ou plugins "
4715
  "installés sur votre site"
4716
 
4717
+ #: core/class-settings.php:668
4718
  msgctxt "admin settings"
4719
  msgid "Thumbnails"
4720
  msgstr "Miniatures"
4721
 
4722
+ #: core/class-settings.php:669
4723
  msgctxt "admin settings"
4724
  msgid "Thumbnail width (px)"
4725
  msgstr "Largeur des miniatures (en pixel)"
4726
 
4727
+ #: core/class-settings.php:670
4728
  msgctxt "admin settings"
4729
  msgid "Thumbnail height (px)"
4730
  msgstr "Hauteur des miniatures (en pixel)"
4731
 
4732
+ #: core/class-settings.php:673
4733
  msgctxt "admin settings"
4734
  msgid "Crop thumbnails to exact dimensions?"
4735
  msgstr "Recadrer les miniatures aux dimensions exactes ?"
4736
 
4737
+ #: core/class-settings.php:676
4738
  msgctxt "admin settings"
4739
  msgid ""
4740
  "When enabled images will match exactly the dimensions above but part of the "
4749
  "proportionnellement. Selon les images téléchargées, les miniatures peuvent "
4750
  "avoir différentes hauteurs."
4751
 
4752
+ #: core/class-settings.php:682
4753
  msgctxt "admin settings"
4754
  msgid "Number of free images"
4755
  msgstr "Nombre d'images gratuites"
4756
 
4757
+ #: core/class-settings.php:687
4758
  msgctxt "admin settings"
4759
  msgid ""
4760
  "For paid listing images, configure that by adding or editing a <a>Fee Plan</"
4764
  "ou modification d'un <a>plan de frais</a> au lieu de ce paramètre, qui est "
4765
  "ignoré pour les annonces payées."
4766
 
4767
+ #: core/class-settings.php:690
4768
  msgctxt "admin settings"
4769
  msgid "Use default picture for listings with no picture?"
4770
  msgstr "Utiliser l'image par défault pour les annonces sans images ?"
4771
 
4772
+ #: core/class-settings.php:691
4773
  msgctxt "admin settings"
4774
  msgid "Show Thumbnail on main listings page?"
4775
  msgstr "Montrer les miniatures sur page principale des annonces ?"
4776
 
4777
+ #: core/class-settings.php:720
4778
  msgctxt "admin settings"
4779
  msgid "User"
4780
  msgstr ""
4781
 
4782
+ #: core/class-settings.php:721
4783
  #, fuzzy
4784
  msgctxt "admin settings"
4785
  msgid "User registration date"
4786
  msgstr "Date d'expiration de l'annonce"
4787
 
4788
+ #: core/class-settings.php:747
4789
  msgctxt "admin settings"
4790
  msgid ""
4791
  "Could not copy the AJAX compatibility plugin \"%s\". Compatibility mode was "
4794
  "Impossible de copier le plugin de compatibilité AJAX \"% s\". Le mode de "
4795
  "compatibilité n'a pas été activé."
4796
 
4797
+ #: core/class-settings.php:755
4798
  msgctxt "admin settings"
4799
  msgid ""
4800
  "Could not activate AJAX Compatibility mode: the directory \"%s\" could not "
4803
  "Impossible d'activer le mode de compatibilité AJAX: le répertoire \"% s \" "
4804
  "ne peux pas être créé."
4805
 
4806
+ #: core/class-settings.php:764
4807
  msgctxt "admin settings"
4808
  msgid ""
4809
  "Could not remove the \"Business Directory Plugin - AJAX Compatibility Module"
4812
  "Impossible de supprimer le \"Module de comptabilité AJAX du plugin \". "
4813
  "Veuillez supprimer le fichier \"% s \" manuellement ou désactiver le plugin."
4814
 
4815
+ #: core/class-settings.php:1084
4816
  msgctxt "settings"
4817
  msgid "Deactivate License"
4818
  msgstr "Désactiver la licence"
4819
 
4820
+ #: core/class-settings.php:1086
4821
  msgctxt "settings"
4822
  msgid "Deactivating license..."
4823
  msgstr "Désactivation de la licence..."
4824
 
4825
+ #: core/class-settings.php:1089
4826
  msgctxt "settings"
4827
  msgid "Activate License"
4828
  msgstr "Activer la licence"
4829
 
4830
+ #: core/class-settings.php:1091
4831
  msgctxt "settings"
4832
  msgid "Activating license..."
4833
  msgstr "Activation de la licence"
4834
 
4835
+ #: core/class-settings.php:1114
4836
  msgctxt "admin settings"
4837
  msgid "Valid placeholders: %s"
4838
  msgstr "Espaces réservés valides:% s"
4839
 
4840
+ #: core/class-settings.php:1148
4841
  msgctxt "settings email"
4842
  msgid "Click to edit e-mail"
4843
  msgstr "Cliquer pour éditer l'e-mail"
4844
 
4845
+ #: core/class-settings.php:1149
4846
  msgctxt "settings email"
4847
  msgid "Click to edit"
4848
  msgstr "Cliquer pour éditer"
4849
 
4850
+ #: core/class-settings.php:1162
4851
  msgctxt "settings email"
4852
  msgid "E-Mail Subject"
4853
  msgstr "Sujet de l'e-mail"
4854
 
4855
+ #: core/class-settings.php:1173
4856
  msgctxt "settings email"
4857
  msgid "E-Mail Body"
4858
  msgstr "Corps de l'e-mail"
4859
 
4860
+ #: core/class-settings.php:1184
4861
  msgctxt "settings email"
4862
  msgid "You can use the following placeholders:"
4863
  msgstr "Vous pouvez utiliser les paramètres suivantes:"
4864
 
4865
+ #: core/class-settings.php:1207
4866
  msgctxt "settings email"
4867
  msgid "Preview e-mail"
4868
  msgstr "E-mail précédents"
4869
 
4870
+ #: core/class-settings.php:1208
4871
  msgctxt "settings email"
4872
  msgid "Cancel"
4873
  msgstr "Annuler"
4874
 
4875
+ #: core/class-settings.php:1209
4876
  msgctxt "settings email"
4877
  msgid "Save Changes"
4878
  msgstr "Sauvegarder les changements"
4879
 
4880
+ #: core/class-settings.php:1228
4881
  msgctxt "settings email"
4882
  msgid "Site title"
4883
  msgstr "Titre du site"
4884
 
4885
+ #: core/class-settings.php:1231
4886
  msgctxt "settings email"
4887
  msgid "Site title (with link)"
4888
  msgstr "Titre du site (avec lien)"
4889
 
4890
+ #: core/class-settings.php:1234
4891
  msgctxt "settings email"
4892
  msgid "Site address (with link)"
4893
  msgstr "Adresse du site (avec lien)"
4894
 
4895
+ #: core/class-settings.php:1237
4896
  msgctxt "settings email"
4897
  msgid "Directory URL (with link)"
4898
  msgstr "Annuaire des URL (avec lien)"
4899
 
4900
+ #: core/class-settings.php:1240
4901
  msgctxt "settings email"
4902
  msgid "Current date"
4903
  msgstr "Date actuelle"
4904
 
4905
+ #: core/class-settings.php:1243
4906
  msgctxt "settings email"
4907
  msgid "Current time"
4908
  msgstr "Heure actuelle"
5559
  msgid "Listing upgrade to featured"
5560
  msgstr "Mise à jour des annonces vers prioritaire"
5561
 
5562
+ #: core/installer.php:1012
5563
+ msgctxt "installer"
5564
+ msgid ""
5565
+ "Cleaning up stored meta data for Checkbox, Radio and Select fields... (%d "
5566
+ "records left)"
5567
+ msgstr ""
5568
+
5569
+ #: core/installer.php:1061
5570
  msgid "Business Directory - Manual Upgrade Required"
5571
  msgstr "Business Directory - Mise à jour manuelle requise"
5572
 
5573
+ #: core/installer.php:1063
5574
  msgid ""
5575
  "Business Directory features are currently disabled because the plugin needs "
5576
  "to perform a manual upgrade before continuing."
5579
  "désactivés car le plugin a besoin d'effectuer une mise à jour manuelle avant "
5580
  "de poursuivre."
5581
 
5582
+ #: core/installer.php:1065
5583
  msgid "Perform Manual Upgrade"
5584
  msgstr "Effectuer la mise à jour manuelle"
5585
 
5586
+ #: core/installer.php:1081 core/installer.php:1082 core/installer.php:1093
5587
  msgid "Business Directory - Manual Upgrade"
5588
  msgstr "Business Directory - Mise à jour manuelle"
5589
 
5590
+ #: core/installer.php:1097
5591
  msgid ""
5592
  "Business Directory features are currently disabled because the plugin needs "
5593
  "to perform a manual upgrade before it can be used."
5596
  "désactivées car le plugin a besoin d'effectuer une mise à jour manuelle afin "
5597
  "d'être pleinement utilisable."
5598
 
5599
+ #: core/installer.php:1099
5600
  msgid "Click \"Start Upgrade\" and wait until the process finishes."
5601
  msgstr ""
5602
  "Cliquez sur \"Démarrer la mise à jour\" et patientez jusqu'à la fin du "
5603
  "processus."
5604
 
5605
+ #: core/installer.php:1102
5606
  msgctxt "manual-upgrade"
5607
  msgid "Start Upgrade"
5608
  msgstr "Démarrer la mise à jour"
5609
 
5610
+ #: core/installer.php:1104
5611
  msgctxt "manual-upgrade"
5612
  msgid "Pause Upgrade"
5613
  msgstr "Mettre la mise à jour en pause"
5614
 
5615
+ #: core/installer.php:1110
5616
  msgctxt "manual-upgrade"
5617
  msgid ""
5618
  "The upgrade was sucessfully performed. Business Directory Plugin is now "
5621
  "La mise à jour s'est bien effectuée. Le plugin Business Directory est "
5622
  "maintenant disponible et fonctionnel."
5623
 
5624
+ #: core/installer.php:1113
5625
  msgctxt "manual-upgrade"
5626
  msgid "Go to \"Directory Admin\""
5627
  msgstr "Aller à \"Administrateur de l'annuaire\""
5628
 
5629
+ #: core/installer.php:1148
5630
  #, fuzzy
5631
  msgid "Business Directory - Installation Failed"
5632
  msgstr "Business Directory - Mise à jour manuelle"
5633
 
5634
+ #: core/installer.php:1150
5635
  msgid ""
5636
  "Business Directory installation failed. An exception with following message "
5637
  "was generated:"
5638
  msgstr ""
5639
 
5640
+ #: core/installer.php:1155
5641
  msgid "Please <contact-link>contact customer support</a>."
5642
  msgstr ""
5643
 
5930
  msgid "No listing categories found."
5931
  msgstr "Aucune catégorie d'annonce trouvée"
5932
 
5933
+ #: core/templates-ui.php:194
5934
  msgid "Directory"
5935
  msgstr "Annuaire"
5936
 
5937
+ #: core/templates-ui.php:201
5938
  #, fuzzy
5939
  msgid "View All Listings"
5940
  msgstr "Voir toutes les annonces"
5941
 
5942
+ #: core/templates-ui.php:208
5943
  #, fuzzy
5944
  msgid "Create A Listing"
5945
  msgstr "Annonce gratuite"
5946
 
5947
+ #: core/templates-ui.php:241
5948
  msgctxt "templates"
5949
  msgid "Search Listings"
5950
  msgstr "Recherche d'annonces"
5951
 
5952
+ #: core/templates-ui.php:244
5953
  msgctxt "templates"
5954
  msgid "Advanced Search"
5955
  msgstr "Recherche avancée"
5956
 
5957
+ #: core/templates-ui.php:273 core/templates-ui.php:298
5958
  msgctxt "templates sort"
5959
  msgid "Sort By:"
5960
  msgstr "Trier par:"
5961
 
5962
+ #: core/templates-ui.php:292
5963
  msgctxt "sort"
5964
  msgid "Reset"
5965
  msgstr "Réinitialiser"
5966
 
5967
+ #: core/templates-ui.php:314
5968
  msgctxt "sort"
5969
  msgid "(Reset)"
5970
  msgstr "(Réinitialiser)"
7352
  msgid "http://businessdirectoryplugin.com"
7353
  msgstr "http://businessdirectoryplugin.com"
7354
 
7355
+ #~ msgctxt "admin settings"
7356
+ #~ msgid ""
7357
+ #~ "Allow visitors to discuss listings using the standard WordPress comment "
7358
+ #~ "form. Comments are public."
7359
+ #~ msgstr ""
7360
+ #~ "Permettre aux visiteurs de discuter des annonces en utilisant le "
7361
+ #~ "formulaire de commentaire standard WordPress. Les commentaires sont "
7362
+ #~ "visibles par tous."
7363
+
7364
  #~ msgctxt "title"
7365
  #~ msgid "Submit A Listing"
7366
  #~ msgstr "Soumettre une annonce"
languages/WPBDM-pl_PL.mo CHANGED
Binary file
languages/WPBDM-pl_PL.po CHANGED
@@ -2,265 +2,308 @@ msgid ""
2
  msgstr ""
3
  "Project-Id-Version: Business Directory Plugin v3.6.5\n"
4
  "Report-Msgid-Bugs-To: http://wordpress.org/tag/business-directory-plugin\n"
5
- "POT-Creation-Date: 2015-01-06 02:44:52+00:00\n"
6
- "PO-Revision-Date: 2015-06-17 22:19:00+0000\n"
7
  "Last-Translator: HomeSupport <admin@homesupport.pl>\n"
8
  "Language-Team: HomeSupport\n"
 
9
  "MIME-Version: 1.0\n"
10
  "Content-Type: text/plain; charset=UTF-8\n"
11
  "Content-Transfer-Encoding: 8bit\n"
12
- "Plural-Forms: nplurals=3; plural=n==1 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2;\n"
13
- "X-Generator: Poedit 1.8.1\n"
14
- "X-Poedit-Language: \n"
15
- "X-Poedit-Country: \n"
16
  "X-Poedit-SourceCharset: utf-8\n"
17
- "X-Poedit-KeywordsList: __;_e;__ngettext:1,2;_n:1,2;__ngettext_noop:1,2;_n_noop:1,2;_c,_nc:4c,1,2;_x:1,2c;_ex:1,2c;_nx:4c,1,2;_nx_noop:4c,1,2;\n"
18
- "X-Poedit-Basepath: \n"
19
- "X-Poedit-Bookmarks: \n"
20
  "X-Poedit-SearchPath-0: .\n"
21
- "X-Textdomain-Support: yes"
22
 
23
- #: admin/class-admin-listings.php:24
24
- #@ WPBDM
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
25
  msgid "Listing Information"
26
  msgstr "Informacje o firmie"
27
 
28
- #: admin/class-admin-listings.php:31
29
- #@ WPBDM
30
  msgctxt "admin"
31
  msgid "Listing Fields / Images"
32
  msgstr "Pola/Obrazy"
33
 
34
- #: admin/class-admin-listings.php:42
35
- #@ WPBDM
36
  msgctxt "admin"
37
  msgid "Categories"
38
  msgstr "Kategorie"
39
 
40
- #: admin/class-admin-listings.php:43
41
- #@ WPBDM
42
  msgid "Payment Status"
43
  msgstr "Status płatności"
44
 
45
- #: admin/class-admin-listings.php:44
46
- #@ WPBDM
47
  msgid "Featured (Sticky) Status"
48
  msgstr "Status wyróżnienia (naklejka)"
49
 
50
- #: admin/class-admin-listings.php:75
51
- #@ WPBDM
52
  msgctxt "admin"
53
  msgid "(Listing expired in this category)"
54
  msgstr "(Oferty wygasłe w tej kategorii)"
55
 
56
- #: admin/class-admin-listings.php:93
57
- #: admin/class-admin-listings.php:176
58
- #@ WPBDM
59
  msgid "Paid"
60
  msgstr "Zapłacone"
61
 
62
- #: admin/class-admin-listings.php:98
63
- #@ WPBDM
64
  msgid "Mark as"
65
  msgstr "Oznaczone jako"
66
 
67
- #: admin/class-admin-listings.php:107
68
- #: admin/class-admin-listings.php:186
69
- #@ WPBDM
70
  msgid "Pending Upgrade"
71
  msgstr "Oferty oczekujące na zatwierdzenie"
72
 
73
- #: admin/class-admin-listings.php:115
74
- #: admin/listing-metabox.php:68
75
- #, php-format
76
- #@ WPBDM
77
  msgid "Upgrade to %s"
78
  msgstr "Podnieś status do %s"
79
 
80
- #: admin/class-admin-listings.php:122
81
- #: admin/listing-metabox.php:75
82
- #, php-format
83
- #@ WPBDM
84
  msgid "Downgrade to %s"
85
  msgstr "Obniż status do %s"
86
 
87
- #: admin/class-admin-listings.php:125
88
- #: admin/class-admin-listings.php:295
89
- #@ WPBDM
90
  msgctxt "admin actions"
91
  msgid "Upgrade to Featured"
92
  msgstr "Podnieś status do \"Wyróżnione\""
93
 
94
- #: admin/class-admin-listings.php:181
95
- #@ WPBDM
96
  msgid "Unpaid"
97
  msgstr "Nie zapłacone"
98
 
99
- #: admin/class-admin-listings.php:191
100
- #@ WPBDM
101
  msgctxt "admin"
102
  msgid "Expired"
103
  msgstr "Wygasłe"
104
 
105
- #: admin/class-admin-listings.php:241
106
- #@ WPBDM
107
  msgctxt "admin actions"
108
  msgid "Edit Listing"
109
  msgstr "Edytuj Ofertę"
110
 
111
- #: admin/class-admin-listings.php:244
112
- #@ WPBDM
113
  msgctxt "admin actions"
114
  msgid "Delete Listing"
115
  msgstr "Usuń Ofertę"
116
 
117
- #: admin/class-admin-listings.php:293
118
- #@ WPBDM
119
  msgctxt "admin actions"
120
  msgid "Publish Listing"
121
  msgstr "Publikuj Ofertę"
122
 
123
- #: admin/class-admin-listings.php:296
124
- #@ WPBDM
125
  msgctxt "admin actions"
126
  msgid "Downgrade to Normal"
127
  msgstr "Obniż status do \"normalna\""
128
 
129
- #: admin/class-admin-listings.php:298
130
- #@ WPBDM
131
  msgctxt "admin actions"
132
  msgid "Mark as Paid"
133
  msgstr "Oznacz jako zapłacone"
134
 
135
- #: admin/class-admin-listings.php:300
136
- #@ WPBDM
137
  msgctxt "admin actions"
138
  msgid "Renew Listing"
139
  msgstr "Odnów Ofertę"
140
 
141
- #: admin/class-admin.php:119
142
- #@ WPBDM
 
 
 
 
 
 
143
  msgctxt "drip pointer"
144
- msgid "Find out how to create a compelling, thriving business directory from scratch in this ridiculously actionable (and FREE) 5-part email course. Get a FREE premium module just for signing up."
145
- msgstr "Dowiedz się, jak utworzyć, dobrze prosperujący Katalog Firm od podstaw w tym absurdalnie praktycznym (i darmowym), 5-częściowy kursie e-mailowym. Zdobądź darmowy moduł Premium tylko za zarejestrowanie się."
 
 
 
 
 
 
146
 
147
- #: admin/class-admin.php:121
148
- #@ WPBDM
149
  msgctxt "drip pointer"
150
  msgid "Email Address:"
151
  msgstr "Adres e-mail:"
152
 
153
- #: admin/class-admin.php:127
154
- #@ WPBDM
155
  msgctxt "drip pointer"
156
  msgid "Want to know the Secrets of Building an Awesome Business Directory?"
157
  msgstr "Chcesz poznać tajemnice budowy niesamowitego katalogu firm?"
158
 
159
- #: admin/class-admin.php:129
160
- #@ WPBDM
161
  msgctxt "drip pointer"
162
  msgid "Yes, please!"
163
  msgstr "Tak, proszę!"
164
 
165
- #: admin/class-admin.php:131
166
- #@ WPBDM
167
  msgctxt "drip pointer"
168
  msgid "No, thanks"
169
  msgstr "Nie, dziękuję"
170
 
171
- #: admin/class-admin.php:148
172
- #@ WPBDM
173
  msgctxt "admin"
174
  msgid "Business Directory"
175
  msgstr "Katalog Firm"
176
 
177
- #: admin/class-admin.php:159
178
- #@ WPBDM
179
  msgctxt "admin"
180
  msgid "You're all set. Visit your new <a>Business Directory</a> page."
181
  msgstr "Wszystko ustawione. Odwiedź swój nowy <a>Katalog Firm</a>."
182
 
183
- #: admin/class-admin.php:211
184
- #@ WPBDM
 
 
 
 
 
 
185
  msgctxt "admin menu"
186
  msgid "Business Directory Admin"
187
  msgstr "Katalog Firm Admin"
188
 
189
- #: admin/class-admin.php:212
190
- #@ WPBDM
 
 
 
 
 
 
 
191
  msgctxt "admin menu"
192
  msgid "Directory Admin"
193
  msgstr "Katalog Admin"
194
 
195
- #: admin/class-admin.php:218
196
- #: admin/class-admin.php:219
197
- #@ WPBDM
198
  msgctxt "admin menu"
199
  msgid "Add New Listing"
200
  msgstr "Dodaj nową ofertę"
201
 
202
- #: admin/class-admin.php:224
203
- #: admin/class-admin.php:225
204
- #@ WPBDM
205
  msgctxt "admin menu"
206
  msgid "Manage Options"
207
  msgstr "Zarządzaj opcjami"
208
 
209
- #: admin/class-admin.php:230
210
- #: admin/class-admin.php:231
211
- #@ WPBDM
212
  msgctxt "admin menu"
213
  msgid "Manage Fees"
214
  msgstr "Zarządzaj abonamentami"
215
 
216
- #: admin/class-admin.php:236
217
- #: admin/class-admin.php:237
218
- #@ WPBDM
219
  msgctxt "admin menu"
220
  msgid "Manage Form Fields"
221
  msgstr "Zarządzaj polami formularzy"
222
 
223
- #: admin/class-admin.php:257
224
- #: admin/class-admin.php:258
225
- #@ WPBDM
 
 
 
 
 
226
  msgctxt "admin menu"
227
  msgid "CSV Import"
228
  msgstr "CSV Import"
229
 
230
- #: admin/class-admin.php:263
231
- #: admin/class-admin.php:264
232
- #@ WPBDM
233
  msgctxt "admin menu"
234
  msgid "CSV Export"
235
  msgstr "CSV Export"
236
 
237
- #: admin/class-admin.php:269
238
- #: admin/class-admin.php:270
239
- #@ WPBDM
240
  msgctxt "admin menu"
241
  msgid "Debug"
242
  msgstr "Debug"
243
 
244
- #: admin/class-admin.php:279
245
- #@ WPBDM
246
  msgctxt "admin menu"
247
  msgid "Main Menu"
248
  msgstr "Główne menu"
249
 
250
- #: admin/class-admin.php:290
251
- #@ WPBDM
252
  msgctxt "admin menu"
253
  msgid "Uninstall Business Directory Plugin"
254
  msgstr "Odinstaluj Katalog Firm"
255
 
256
- #: admin/class-admin.php:291
257
- #@ WPBDM
258
  msgctxt "admin menu"
259
  msgid "Uninstall"
260
  msgstr "Odinstaluj "
261
 
262
- #: admin/class-admin.php:480
263
- #@ WPBDM
 
 
 
 
 
 
 
 
 
 
 
 
264
  msgctxt "admin"
265
  msgid "The listing has been published."
266
  msgid_plural "The listings have been published."
@@ -268,8 +311,8 @@ msgstr[0] "Oferta została opublikowana."
268
  msgstr[1] "Oferty zostały opublikowane."
269
  msgstr[2] "Ofert zostało opublikowanych."
270
 
271
- #: admin/class-admin.php:493
272
- #@ WPBDM
273
  msgctxt "admin"
274
  msgid "The listing status has been set as paid."
275
  msgid_plural "The listings status has been set as paid."
@@ -277,8 +320,21 @@ msgstr[0] "Zmieniono status oferty na zapłacono."
277
  msgstr[1] "Zmieniono status ofert na zapłacono."
278
  msgstr[2] "Zmieniono status ofert na zapłacono."
279
 
280
- #: admin/class-admin.php:505
281
- #@ WPBDM
 
 
 
 
 
 
 
 
 
 
 
 
 
282
  msgctxt "admin"
283
  msgid "The listing has been modified."
284
  msgid_plural "The listings have been modified."
@@ -286,8 +342,8 @@ msgstr[0] "Oferta została zmodyfikowana."
286
  msgstr[1] "Oferty zostały zmodyfikowane."
287
  msgstr[2] "Ofert zostało zmodyfikowanych."
288
 
289
- #: admin/class-admin.php:518
290
- #@ WPBDM
291
  msgctxt "admin"
292
  msgid "The listing has been upgraded."
293
  msgid_plural "The listings have been upgraded."
@@ -295,8 +351,8 @@ msgstr[0] "Podniesiono status oferty."
295
  msgstr[1] "Podniesiono status ofert."
296
  msgstr[2] "Podniesiono status ofert."
297
 
298
- #: admin/class-admin.php:530
299
- #@ WPBDM
300
  msgctxt "admin"
301
  msgid "The listing has been downgraded."
302
  msgid_plural "The listings have been downgraded."
@@ -304,28 +360,34 @@ msgstr[0] "Obniżono status oferty."
304
  msgstr[1] "Obniżono status ofert."
305
  msgstr[2] "Obniżono status ofert."
306
 
307
- #: admin/class-admin.php:542
308
- #: admin/transactions.php:243
309
- #@ WPBDM
 
 
 
 
 
 
 
310
  msgctxt "admin"
311
  msgid "The transaction has been approved."
312
  msgstr "Transakcja została zatwierdzona."
313
 
314
- #: admin/class-admin.php:550
315
- #: admin/transactions.php:254
316
- #@ WPBDM
317
  msgctxt "admin"
318
  msgid "The transaction has been rejected."
319
  msgstr "Transakcja została odrzucona."
320
 
321
- #: admin/class-admin.php:556
322
- #@ WPBDM
323
  msgctxt "admin"
324
  msgid "The fee was successfully assigned."
325
  msgstr "Abonament został przypisany do oferty."
326
 
327
- #: admin/class-admin.php:565
328
- #@ WPBDM
329
  msgctxt "admin"
330
  msgid "Listing was renewed."
331
  msgid_plural "Listings were renewed."
@@ -333,327 +395,545 @@ msgstr[0] "Odnowiono ofertę."
333
  msgstr[1] "Odnowiono oferty."
334
  msgstr[2] "Odnowiono ofert."
335
 
336
- #: admin/class-admin.php:572
337
- #@ WPBDM
338
  msgctxt "admin"
339
  msgid "Renewal email sent."
340
  msgstr "Wysłano e-mail potwierdzający odnowienie."
341
 
342
- #: admin/class-admin.php:606
343
- #@ WPBDM
344
  msgctxt "admin category id"
345
  msgid "ID"
346
  msgstr "ID"
347
 
348
- #: admin/class-admin.php:608
349
- #: admin/class-admin.php:614
350
- #@ WPBDM
351
  msgctxt "admin"
352
  msgid "Listing Count"
353
  msgstr "Licznik ofert"
354
 
355
- #: admin/class-admin.php:710
356
- #, php-format
357
- #@ WPBDM
358
  msgctxt "admin"
359
- msgid "<b>Business Directory Plugin</b> requires fields with the following associations in order to work correctly: <b>%s</b>."
360
- msgstr "<b>Katalog Firm</b>aby pracować poprawnie, potrzebuje właściwych danych w tym polu: <b>%s</b>."
 
 
 
 
361
 
362
- #: admin/class-admin.php:712
363
- #, php-format
364
- #@ WPBDM
365
  msgctxt "admin"
366
- msgid "<b>Business Directory Plugin</b> requires a field with a <b>%s</b> association in order to work correctly."
367
- msgstr "<b>Katalog Firm</b>potrzebuje pola z <b>%s</b> aby pracować poprawnie."
 
 
 
368
 
369
- #: admin/class-admin.php:716
370
- #@ WPBDM
371
  msgctxt "admin"
372
- msgid "You can create these custom fields by yourself inside \"Manage Form Fields\" or let Business Directory do this for you automatically."
373
- msgstr "Możesz tworzyć te niestandardowe pola samemu \"Zarządzanie polami formularza\" albo niech katalog firm zrobi to dla ciebie automatycznie."
 
 
 
 
374
 
375
- #: admin/class-admin.php:720
376
- #@ WPBDM
377
  msgctxt "admin"
378
  msgid "Go to \"Manage Form Fields\""
379
  msgstr "Przejdź do \"Zarządzanie polami formularza\""
380
 
381
- #: admin/class-admin.php:723
382
- #@ WPBDM
383
  msgctxt "admin"
384
  msgid "Create these required fields for me"
385
  msgstr "Stwórz te wymagane pola dla mnie"
386
 
387
- #: admin/class-admin.php:732
388
- #@ WPBDM
389
  msgctxt "admin"
390
- msgid "<b>Business Directory Plugin</b> requires a page with the <tt>[businessdirectory]</tt> shortcode to function properly."
391
- msgstr "<b>Katalog Firm</b> wymaga chociaż jednej strony z krótkim kodem <tt>[businessdirectory]</tt> aby działać prawidłowo."
 
 
 
 
392
 
393
- #: admin/class-admin.php:734
394
- #@ WPBDM
395
  msgctxt "admin"
396
- msgid "You can create this page by yourself or let Business Directory do this for you automatically."
397
- msgstr "Możesz utworzyć stronę sam, albo niech katalog firm zrobi to automatycznie."
 
 
 
 
398
 
399
- #: admin/class-admin.php:738
400
- #@ WPBDM
401
  msgctxt "admin"
402
  msgid "Create required pages for me"
403
  msgstr "Stwórz wymagane pola dla mnie"
404
 
405
- #: admin/class-admin.php:768
406
- #, php-format
407
- #@ WPBDM
408
  msgctxt "admin compat"
409
  msgid "Installed: %s"
410
  msgstr "zainstalowane: %s"
411
 
412
- #: admin/class-admin.php:768
413
- #@ WPBDM
414
  msgctxt "admin compat"
415
  msgid "N/A"
416
  msgstr "N/A"
417
 
418
- #: admin/class-admin.php:771
419
- #, php-format
420
- #@ WPBDM
421
  msgctxt "admin compat"
422
  msgid "Required: %s"
423
  msgstr "Wymagane: %s"
424
 
425
- #: admin/class-admin.php:784
426
- #@ WPBDM
427
  msgctxt "admin compat"
428
- msgid "Business Directory has detected some incompatible premium module versions installed."
429
- msgstr "Katalog Firm wykrył pewne niezgodne zainstalowane wersje modułów Premium."
 
 
 
430
 
431
- #: admin/class-admin.php:786
432
- #@ WPBDM
433
  msgctxt "admin compat"
434
- msgid "Please upgrade to the required versions indicated below to make sure everything functions properly."
435
- msgstr "Prosimy zaktualizować do wymaganych wersji jak wskazano poniżej, aby upewnić się, że wszystko będzie funkcjonować prawidłowo."
 
 
 
 
436
 
437
- #: admin/class-admin.php:801
438
- #@ WPBDM
439
  msgctxt "admin"
440
- msgid "We noticed you want your Business Directory users to register before posting listings, but Registration for your site is currently disabled. Go [here] and check \"Anyone can register\" to make sure BD works properly."
441
- msgstr "Zauważyliśmy, że chcesz, aby użytkownicy katalogu firm się zarejestrowali zanim złożą ofertę , ale Rejestracja witryny jest obecnie wyłączona. Przejdź [tutaj] i zaznacz \"Każdy może się zarejestrować\", aby upewnić się, że katalog firm będzie działał poprawnie."
 
 
 
 
 
 
 
442
 
 
443
  #: admin/class-listing-fields-metabox.php:21
444
- #@ WPBDM
445
  msgctxt "admin"
446
  msgid "Listing Fields"
447
  msgstr "Pola ofert"
448
 
 
449
  #: admin/class-listing-fields-metabox.php:40
450
  #: templates/submit-listing/images.tpl.php:12
451
- #@ WPBDM
452
  msgctxt "templates"
453
  msgid "Current Images"
454
  msgstr "Aktualne obrazy"
455
 
 
456
  #: admin/class-listing-fields-metabox.php:41
457
- #@ WPBDM
458
  msgctxt "templates"
459
  msgid "There are no images currently attached to the listing."
460
  msgstr "Obecnie nie ma żadnych obrazków dołączonych do tej oferty."
461
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
462
  #: admin/csv-export.php:136
463
- #@ WPBDM
464
  msgctxt "admin csv-export"
465
  msgid "Could not create a temporary directory for handling this CSV export."
466
- msgstr "Nie można utworzyć katalogu tymczasowego dla obsługi tego eksportu CSV."
 
467
 
 
468
  #: admin/csv-export.php:138
469
- #@ WPBDM
470
  msgctxt "admin csv-export"
471
  msgid "Could not create wpbdp-csv-exports directory."
472
  msgstr "Nie można utworzyć katalogu wpbdp-csv-eksport."
473
 
 
474
  #: admin/csv-export.php:143
475
- #, php-format
476
- #@ WPBDM
477
  msgctxt "admin csv-export"
478
  msgid "Error while creating a temporary directory for CSV export: %s"
479
  msgstr "Błąd podczas tworzenia katalogu tymczasowego dla eksportu CSV: %s"
480
 
481
- #: admin/csv-import.php:95
482
- #, php-format
483
- #@ WPBDM
484
  msgctxt "admin csv-import"
485
  msgid "Business %s"
486
  msgstr "Firmy %s"
487
 
488
- #: admin/csv-import.php:133
489
- #@ WPBDM
490
  msgctxt "admin csv-import"
491
  msgid "Whatever"
492
  msgstr "Cokolwiek"
493
 
494
- #: admin/csv-import.php:137
495
- #@ WPBDM
496
  msgctxt "admin csv-import"
497
  msgid "Example CSV Import File"
498
  msgstr "Przykład importowanego pliku CSV"
499
 
500
- #: admin/csv-import.php:138
501
- #@ WPBDM
502
  msgctxt "admin csv-import"
503
  msgid "← Return to \"CSV Import\""
504
  msgstr "← Powrót do \"CSV Import\""
505
 
506
- #: admin/csv-import.php:241
507
- #, php-format
508
- #@ csv import
509
- msgid "A valid temporary directory with write permissions is required for CSV imports to function properly. Your server is using \"%s\" but this path does not seem to be writable. Please consult with your host."
510
- msgstr "Wymagany jest katalog tymczasowy z uprawnieniami do zapisu, aby import CSV funkcjonował poprawnie. Serwer używa \"%s\" , ale ta ścieżka wydaje się nie mieć prawa zapisu. Proszę skontaktować się z hostem."
 
 
 
 
 
511
 
512
- #: admin/csv-import.php:275
513
- #@ WPBDM
514
  msgctxt "admin csv-import"
515
  msgid "There was an error uploading the CSV file."
516
  msgstr "Błąd podczas przesyłania pliku CSV."
517
 
518
- #: admin/templates/csv-import-progress.tpl.php:66
519
- #@ WPBDM
520
- msgctxt "admin csv-import"
521
- msgid "Import was completed but some rows were rejected."
522
- msgstr "Import został zakończony, ale niektóre wiersze zostały odrzucone."
523
-
524
- #: admin/templates/csv-import-progress.tpl.php:62
525
- #@ WPBDM
526
- msgctxt "admin csv-import"
527
- msgid "Import was completed successfully."
528
- msgstr "Import zakończony pełnym sukcesem."
529
-
530
- #: admin/templates/csv-import-progress.tpl.php:69
531
- #@ WPBDM
532
- msgctxt "admin csv-import"
533
- msgid "Import Summary"
534
- msgstr "Podsumowanie Importu"
535
-
536
- #: admin/templates/csv-import-progress.tpl.php:77
537
- #@ WPBDM
538
- msgctxt "admin csv-import"
539
- msgid "Rejected rows:"
540
- msgstr "Odrzucone wiersze :"
541
-
542
- #: admin/templates/csv-import-progress.tpl.php:85
543
- #@ WPBDM
544
- msgctxt "admin csv-import"
545
- msgid "Line #"
546
- msgstr "Liczba Lini"
547
-
548
- #: admin/templates/csv-import-progress.tpl.php:86
549
- #@ WPBDM
550
- msgctxt "admin csv-import"
551
- msgid "Line"
552
- msgstr "Linia"
553
-
554
- #: admin/templates/csv-import-progress.tpl.php:87
555
- #@ WPBDM
556
- msgctxt "admin csv-import"
557
- msgid "Warning"
558
- msgstr "Ostrzeżenie"
559
-
560
- #: core/class-csv-import.php:503
561
- #, php-format
562
- #@ WPBDM
563
  msgctxt "admin csv-import"
564
- msgid "Username \"%s\" does not exist"
565
- msgstr "Użytkownik \"%s\" nie istnieje"
566
 
567
- #: core/class-csv-import.php:535
568
- #, php-format
569
- #@ WPBDM
570
  msgctxt "admin csv-import"
571
- msgid "Missing required field: %s"
572
- msgstr "Brak wymaganego pola: %s"
573
 
574
- #: core/class-csv-import.php:361
575
- #, php-format
576
- #@ WPBDM
577
  msgctxt "admin csv-import"
578
- msgid "Could not create listing category \"%s\""
579
- msgstr "Nie można utworzyć kategorii ofert \"%s\""
 
 
 
 
580
 
581
- #: core/class-csv-import.php:555
582
- #, php-format
583
- #@ WPBDM
584
  msgctxt "admin csv-import"
585
- msgid "Listing category \"%s\" does not exist"
586
- msgstr "Kategoria \"%s\" nie istnieje"
 
 
587
 
 
588
  #: admin/fees.php:9
589
- #@ WPBDM
590
  msgctxt "fees admin"
591
  msgid "fee"
592
  msgstr "Abonament"
593
 
 
594
  #: admin/fees.php:10
595
- #@ WPBDM
596
  msgctxt "fees admin"
597
  msgid "fees"
598
  msgstr "Abonamenty"
599
 
600
- #: admin/fees.php:16
601
- #@ WPBDM
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
602
  msgctxt "fees admin"
603
- msgid "You do not have any listing fees setup yet."
604
- msgstr "Nie masz jeszcze ustawionych abonamentów."
 
 
 
 
 
 
 
 
 
 
 
 
 
605
 
606
- #: admin/fees.php:22
607
- #@ WPBDM
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
608
  msgctxt "fees admin"
609
  msgid "Label"
610
  msgstr "Etykieta"
611
 
612
- #: admin/fees.php:23
613
- #@ WPBDM
614
  msgctxt "fees admin"
615
  msgid "Amount"
616
  msgstr "Kwota"
617
 
618
- #: admin/fees.php:24
619
- #@ WPBDM
620
  msgctxt "fees admin"
621
  msgid "Duration"
622
  msgstr "Czas trwania"
623
 
624
- #: admin/fees.php:25
625
- #@ WPBDM
626
  msgctxt "fees admin"
627
  msgid "Images"
628
  msgstr "Obrazy"
629
 
630
- #: admin/fees.php:26
631
- #@ WPBDM
 
 
 
 
 
 
 
 
 
 
 
 
 
632
  msgctxt "fees admin"
633
- msgid "Applied To"
634
- msgstr "Stosowane do"
 
 
 
 
635
 
636
- #: admin/fees.php:50
637
- #@ WPBDM
638
  msgctxt "fees admin"
639
  msgid "Edit"
640
  msgstr "Edytuj"
641
 
642
- #: admin/fees.php:53
643
- #@ WPBDM
 
 
 
 
 
 
 
 
 
 
644
  msgctxt "fees admin"
645
  msgid "Delete"
646
  msgstr "Usuń"
647
 
648
- #: admin/fees.php:73
649
- #@ WPBDM
650
  msgctxt "fees admin"
651
  msgid "Forever"
652
  msgstr "Na zawsze"
653
 
654
- #: admin/fees.php:74
655
- #, php-format
656
- #@ WPBDM
657
  msgctxt "fees admin"
658
  msgid "%d day"
659
  msgid_plural "%d days"
@@ -661,9 +941,8 @@ msgstr[0] "%d dzień"
661
  msgstr[1] "%d dni"
662
  msgstr[2] "%d dni"
663
 
664
- #: admin/fees.php:78
665
- #, php-format
666
- #@ WPBDM
667
  msgctxt "fees admin"
668
  msgid "%d image"
669
  msgid_plural "%d images"
@@ -671,1103 +950,1746 @@ msgstr[0] "%d obraz"
671
  msgstr[1] "%d obrazy"
672
  msgstr[2] "%d obrazów"
673
 
674
- #: admin/fees.php:83
675
- #@ WPBDM
676
  msgctxt "fees admin"
677
  msgid "All categories"
678
  msgstr "Wszystkie Kategorie"
679
 
680
- #: admin/fees.php:135
681
- #@ WPBDM
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
682
  msgctxt "fees order"
683
  msgid "Label"
684
  msgstr "Etykieta"
685
 
686
- #: admin/fees.php:136
687
- #@ WPBDM
688
  msgctxt "fees order"
689
  msgid "Amount"
690
  msgstr "Kwota"
691
 
692
- #: admin/fees.php:137
693
- #@ WPBDM
694
  msgctxt "fees order"
695
  msgid "Duration"
696
  msgstr "Czas trwania"
697
 
698
- #: admin/fees.php:138
699
- #@ WPBDM
700
  msgctxt "fees order"
701
  msgid "Images"
702
  msgstr "Obrazy"
703
 
704
- #: admin/fees.php:139
705
- #@ WPBDM
706
  msgctxt "fees order"
707
  msgid "Custom Order"
708
  msgstr "Niestandardowe sortowanie"
709
 
710
- #: admin/fees.php:153
711
- #@ WPBDM
712
  msgctxt "fees admin"
713
  msgid "Fee updated."
714
  msgstr "Abonament zaktualizowany"
715
 
716
- #: admin/fees.php:179
717
- #@ WPBDM
718
  msgctxt "fees admin"
719
  msgid "Fee deleted."
720
  msgstr "Abonament usunięty "
721
 
 
722
  #: admin/form-fields.php:9
723
- #@ WPBDM
724
  msgctxt "form-fields admin"
725
  msgid "form field"
726
  msgstr "Pole formularza"
727
 
 
728
  #: admin/form-fields.php:10
729
- #@ WPBDM
730
  msgctxt "form-fields admin"
731
  msgid "form fields"
732
  msgstr "Pola formularza"
733
 
 
734
  #: admin/form-fields.php:17
735
- #@ WPBDM
736
  msgctxt "form-fields admin"
737
  msgid "Order"
738
  msgstr "Sortowanie"
739
 
 
740
  #: admin/form-fields.php:18
741
- #@ WPBDM
742
  msgctxt "form-fields admin"
743
  msgid "Label / Association"
744
  msgstr "Etykieta/Przypisanie"
745
 
 
746
  #: admin/form-fields.php:19
747
- #@ WPBDM
748
  msgctxt "form-fields admin"
749
  msgid "Type"
750
  msgstr "Rodzaj"
751
 
 
752
  #: admin/form-fields.php:20
753
- #@ WPBDM
754
  msgctxt "form-fields admin"
755
  msgid "Validator"
756
  msgstr "Weryfikator"
757
 
 
758
  #: admin/form-fields.php:21
759
- #@ WPBDM
760
  msgctxt "form-fields admin"
761
  msgid "Field Attributes"
762
  msgstr "Atrybuty pola"
763
 
 
764
  #: admin/form-fields.php:45
765
- #@ WPBDM
766
  msgctxt "form-fields admin"
767
  msgid "Edit"
768
  msgstr "Edytuj"
769
 
 
770
  #: admin/form-fields.php:50
771
- #@ WPBDM
772
  msgctxt "form-fields admin"
773
  msgid "Delete"
774
  msgstr "Usuń"
775
 
 
776
  #: admin/form-fields.php:76
777
- #@ WPBDM
778
  msgctxt "form-fields admin"
779
  msgid "Required"
780
  msgstr "Wymagane"
781
 
 
782
  #: admin/form-fields.php:76
783
- #@ WPBDM
784
  msgctxt "form-fields admin"
785
  msgid "Optional"
786
  msgstr "Opcjonalnie"
787
 
 
788
  #: admin/form-fields.php:80
789
- #@ WPBDM
790
  msgctxt "form-fields admin"
791
  msgid "This field value is shown in the excerpt view of a listing."
792
  msgstr "Wartość pola jest pokazana w widoku wyciągu z oferty."
793
 
 
794
  #: admin/form-fields.php:81
795
- #@ WPBDM
796
  msgctxt "form-fields admin"
797
  msgid "In Excerpt"
798
  msgstr "W wyciągu z oferty"
799
 
 
800
  #: admin/form-fields.php:86
801
- #@ WPBDM
802
  msgctxt "form-fields admin"
803
  msgid "This field value is shown in the single view of a listing."
804
  msgstr "Wartość pola jest pokazana w widoku pojedynczej oferty."
805
 
 
806
  #: admin/form-fields.php:87
807
- #@ WPBDM
808
  msgctxt "form-fields admin"
809
  msgid "In Listing"
810
  msgstr "W ofertach"
811
 
812
- #: admin/form-fields.php:171
813
- #@ WPBDM
814
- msgctxt "formfields-preview"
815
- msgid "This is a preview of the form as it will appear during \"Submit a Listing\". The users may not see all fields from \"Manage Form Fields\" because you have \"Featured Levels\" active and this is showing the base level."
816
- msgstr "To jest podgląd formularza, który będzie widoczny w czasie korzystania z funkcji \"Dodaj Firmę\". Użytkownicy nie mogą zobaczyć wszystkich pól z sekcji \"Zarządzaj polami formularza\" dlatego, że \"Poziomy wyróżnień\" są aktywne, a ten formularz pokazuje poziom podstawowy."
817
-
818
- #: admin/form-fields.php:177
819
- #@ WPBDM
820
  msgctxt "form-fields admin"
821
  msgid "Form Preview"
822
  msgstr "Podgląd formularza"
823
 
824
- #: admin/form-fields.php:178
825
- #@ WPBDM
826
  msgctxt "form-fields admin"
827
  msgid "← Return to \"Manage Form Fields\""
828
  msgstr "← wróć do \"Zarządzanie polami formularza\""
829
 
830
- #: admin/form-fields.php:209
831
- #@ WPBDM
832
  msgctxt "form-fields admin"
833
  msgid "Form fields updated."
834
  msgstr "Pola formularza zaktualizowane."
835
 
836
- #: admin/form-fields.php:249
837
- #@ WPBDM
 
 
 
 
 
 
 
 
 
838
  msgctxt "form-fields admin"
839
  msgid "Field deleted."
840
  msgstr "Pole usunięte."
841
 
842
- #: admin/form-fields.php:265
843
- #@ WPBDM
844
  msgctxt "form-fields admin"
845
  msgid "Required fields created successfully."
846
  msgstr "Pola wymagane zostały pomyślnie utworzone."
847
 
848
- #: admin/listing-metabox.php:11
849
- #@ WPBDM
850
- msgctxt "admin"
851
- msgid "General"
852
- msgstr "Główne"
853
-
854
- #: admin/listing-metabox.php:12
855
- #@ WPBDM
856
- msgctxt "admin"
857
- msgid "Fee Details"
858
- msgstr "Szczegóły abonamentu"
859
 
860
- #: admin/listing-metabox.php:13
861
- #@ WPBDM
862
- msgctxt "admin"
863
- msgid "Transactions"
864
- msgstr "Transakcje"
 
865
 
866
- #: admin/listing-metabox.php:42
867
- #@ WPBDM
868
- msgctxt "admin infometabox"
869
- msgid "General Info"
870
- msgstr "Główne informacje"
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
871
 
872
  #: admin/listing-metabox.php:44
873
- #@ WPBDM
 
 
 
 
 
874
  msgctxt "admin infometabox"
875
  msgid "Total Listing Cost"
876
  msgstr "Całkowity koszt oferty"
877
 
878
- #: admin/listing-metabox.php:46
879
- #@ WPBDM
880
  msgctxt "admin infometabox"
881
  msgid "Payment Status"
882
  msgstr "Status płatności"
883
 
884
- #: admin/listing-metabox.php:50
885
- #@ WPBDM
886
  msgctxt "admin infometabox"
887
  msgid "Featured (Sticky) Status"
888
  msgstr "Status wyróżnienia (naklejka)"
889
 
890
- #: admin/listing-metabox.php:58
891
- #@ WPBDM
892
  msgctxt "admin metabox"
893
  msgid "Pending Upgrade"
894
  msgstr "Oczekujące na zmianę statusu"
895
 
896
- #: admin/listing-metabox.php:81
897
- #@ WPBDM
898
  msgctxt "admin infometabox"
899
  msgid "CSV Import Sequence ID"
900
  msgstr "ID sekwencji importu CSV"
901
 
902
- #: admin/listing-metabox.php:92
903
- #@ WPBDM
904
  msgctxt "admin infometabox"
905
  msgid "Mark listing as Paid"
906
  msgstr "Oznacz ofertę jako opłaconą"
907
 
908
- #: admin/page-debug.php:15
909
- #@ WPBDM
910
  msgctxt "debug-info"
911
  msgid "BD Info"
912
  msgstr "Katalog Firm Informacje"
913
 
 
914
  #: admin/page-debug.php:28
915
- #@ WPBDM
 
 
 
 
 
916
  msgctxt "debug-info"
917
  msgid "OK"
918
  msgstr "Wszystko w porządku"
919
 
920
- #: admin/page-debug.php:36
921
- #@ WPBDM
922
  msgctxt "debug-info"
923
  msgid "BD Options"
924
  msgstr "Katalog Firm Opcje"
925
 
926
- #: admin/page-debug.php:49
927
- #@ WPBDM
928
  msgctxt "debug-info"
929
  msgid "Environment"
930
  msgstr "Środowisko"
931
 
 
 
 
 
 
 
932
  #: admin/templates/csv-export.tpl.php:9
933
- #@ WPBDM
934
  msgctxt "admin csv-export"
935
- msgid "An unknown error occurred during the export. Please make sure you have enough free disk space and memory available to PHP. Check your error logs for details."
936
- msgstr "Wystąpił nieznany błąd podczas eksportu. Upewnij się, że masz wystarczająco dużo wolnego miejsca na dysku i pamięci dostępnej dla PHP. Sprawdź logi błędów aby uzyskać szczegółowe informacje."
 
 
 
 
 
 
937
 
 
938
  #: admin/templates/csv-export.tpl.php:18
939
- #@ WPBDM
940
  msgctxt "admin csv-export"
941
- msgid "Please note that the export process is a resource intensive task. If your export does not succeed try disabling other plugins first and/or increasing the values of the 'memory_limit' and 'max_execution_time' directives in your server's php.ini configuration file."
942
- msgstr "Należy pamiętać, że proces eksportu wykonuje znaczną ilość zadań. Jeśli eksport się nie uda, spróbuj najpierw wyłączyć inne wtyczki i / lub zwiększyć wartości dla \"memory_limit\" i dyrektyw \"max_execution_time\" w pliku konfiguracyjnym php.ini Twojego serwera."
 
 
 
 
 
 
 
 
943
 
 
944
  #: admin/templates/csv-export.tpl.php:30
945
- #@ WPBDM
946
  msgctxt "admin csv-export"
947
  msgid "Export Configuration"
948
  msgstr "Konfiguracja eksportu"
949
 
 
950
  #: admin/templates/csv-export.tpl.php:33
951
- #@ WPBDM
952
  msgctxt "admin csv-export"
953
  msgid "Export settings"
954
  msgstr "Ustawienia eksportu"
955
 
 
956
  #: admin/templates/csv-export.tpl.php:37
957
- #@ WPBDM
958
  msgctxt "admin csv-export"
959
  msgid "Which listings to export?"
960
  msgstr "Które oferty chcesz wyeksportować?"
961
 
 
962
  #: admin/templates/csv-export.tpl.php:41
963
- #@ WPBDM
964
  msgctxt "admin csv-export"
965
  msgid "All"
966
  msgstr "Wszystkie"
967
 
 
968
  #: admin/templates/csv-export.tpl.php:42
969
- #@ WPBDM
970
  msgctxt "admin csv-export"
971
  msgid "Active Only"
972
  msgstr "Tylko aktywne"
973
 
 
974
  #: admin/templates/csv-export.tpl.php:43
975
- #@ WPBDM
976
  msgctxt "admin csv-export"
977
  msgid "Active + Pending Renewal"
978
  msgstr "Tylko aktywne i oczekujące na odświeżenie "
979
 
 
980
  #: admin/templates/csv-export.tpl.php:49
981
- #@ WPBDM
982
  msgctxt "admin csv-export"
983
  msgid "Export images?"
984
  msgstr "Eksportować obrazy?"
985
 
 
986
  #: admin/templates/csv-export.tpl.php:54
987
- #@ WPBDM
988
  msgctxt "admin csv-export"
989
  msgid "Export images"
990
  msgstr "Eksport obrazów"
991
 
 
992
  #: admin/templates/csv-export.tpl.php:56
993
- #@ WPBDM
994
  msgctxt "admin csv-export"
995
- msgid "When checked, instead of just a CSV file a ZIP file will be generated with both a CSV file and listing images."
996
- msgstr "Gdy zaznaczone, zamiast tylko pliku CSV, będzie generowany plik ZIP zarówno z pliku CSV i obrazów ofert."
 
 
 
 
997
 
 
998
  #: admin/templates/csv-export.tpl.php:62
999
- #@ WPBDM
1000
  msgctxt "admin csv-export"
1001
  msgid "Additional metadata to export:"
1002
  msgstr "Dodatkowe metadane do eksportu:"
1003
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1004
  #: admin/templates/csv-export.tpl.php:75
1005
- #@ WPBDM
1006
  msgctxt "admin csv-export"
1007
  msgid "Author information (username)"
1008
  msgstr "Informacje o Autorze (nazwa użytkownika)"
1009
 
 
1010
  #: admin/templates/csv-export.tpl.php:80
1011
- #@ WPBDM
1012
  msgctxt "admin csv-export"
1013
  msgid "Sticky/featured status"
1014
  msgstr "Naklejka / Wyróżniony status"
1015
 
 
1016
  #: admin/templates/csv-export.tpl.php:85
1017
- #@ WPBDM
1018
  msgctxt "admin csv-export"
1019
  msgid "Listing expiration date"
1020
  msgstr "Data zakończenia emisji oferty"
1021
 
 
1022
  #: admin/templates/csv-export.tpl.php:90
1023
- #@ WPBDM
1024
  msgctxt "admin csv-export"
1025
  msgid "CSV File Settings"
1026
  msgstr "Ustawienia pliku CSV"
1027
 
 
1028
  #: admin/templates/csv-export.tpl.php:94
1029
- #@ WPBDM
1030
  msgctxt "admin csv-export"
1031
  msgid "Column Separator"
1032
  msgstr "Separator kolumn"
1033
 
1034
- #: admin/templates/csv-export.tpl.php:94
1035
- #: admin/templates/csv-export.tpl.php:105
1036
- #: admin/templates/csv-export.tpl.php:116
1037
- #: admin/templates/csv-import.tpl.php:43
1038
  #: admin/templates/csv-import.tpl.php:109
1039
  #: admin/templates/csv-import.tpl.php:120
1040
  #: admin/templates/csv-import.tpl.php:131
1041
  #: admin/templates/csv-import.tpl.php:158
1042
- #@ default
1043
- #@ WPBDM
1044
  msgctxt "admin forms"
1045
  msgid "required"
1046
  msgstr "Wymagane"
1047
 
 
1048
  #: admin/templates/csv-export.tpl.php:105
1049
- #@ WPBDM
1050
  msgctxt "admin csv-export"
1051
  msgid "Image Separator"
1052
  msgstr "Separator obrazu"
1053
 
 
1054
  #: admin/templates/csv-export.tpl.php:116
1055
- #@ WPBDM
1056
  msgctxt "admin csv-export"
1057
  msgid "Category Separator"
1058
  msgstr "Separator kategorii"
1059
 
 
1060
  #: admin/templates/csv-export.tpl.php:128
1061
- #@ WPBDM
1062
  msgctxt "admin csv-export"
1063
  msgid "Export Listings"
1064
  msgstr "Eksport ofert"
1065
 
 
1066
  #: admin/templates/csv-export.tpl.php:134
1067
- #@ WPBDM
1068
  msgctxt "admin csv-export"
1069
  msgid "Export in Progress..."
1070
  msgstr "Wykonuję eksport....."
1071
 
 
1072
  #: admin/templates/csv-export.tpl.php:135
1073
- #@ WPBDM
1074
  msgctxt "admin csv-export"
1075
- msgid "Your export file is being prepared. Please <u>do not leave</u> this page until the export finishes."
1076
- msgstr "Plik eksportu jest przygotowywany. Proszę <u> nie opuszczaj </ u> tej strony aż do zakończenia działania eksportu."
 
 
 
 
1077
 
 
1078
  #: admin/templates/csv-export.tpl.php:138
1079
- #@ WPBDM
1080
  msgctxt "admin csv-export"
1081
  msgid "No. of listings:"
1082
  msgstr "Ilość ofert:"
1083
 
 
1084
  #: admin/templates/csv-export.tpl.php:140
1085
- #@ WPBDM
1086
  msgctxt "admin csv-export"
1087
  msgid "Approximate export file size:"
1088
  msgstr "Prawdopodobna wielkość wyeksportowanego pliku:"
1089
 
 
1090
  #: admin/templates/csv-export.tpl.php:147
1091
- #@ WPBDM
1092
  msgctxt "admin csv-export"
1093
  msgid "Cancel Export"
1094
  msgstr "Anuluj eksport"
1095
 
 
1096
  #: admin/templates/csv-export.tpl.php:152
1097
- #@ default
1098
  msgctxt "admin csv-export"
1099
  msgid "Export Complete"
1100
  msgstr "Eksport zakończony"
1101
 
 
1102
  #: admin/templates/csv-export.tpl.php:153
1103
- #@ WPBDM
1104
  msgctxt "admin csv-export"
1105
- msgid "Your export file has been successfully created and it is now ready for download."
 
 
1106
  msgstr "Plik eksportu został utworzony i jest już gotowy do pobrania."
1107
 
 
1108
  #: admin/templates/csv-export.tpl.php:156
1109
- #, php-format
1110
- #@ WPBDM
1111
  msgctxt "admin csv-export"
1112
  msgid "Download %s (%s)"
1113
  msgstr "Pobierz %s (%s)"
1114
 
 
1115
  #: admin/templates/csv-export.tpl.php:162
1116
- #@ WPBDM
1117
  msgctxt "admin csv-export"
1118
- msgid "Click \"Cleanup\" once the file has been downloaded in order to remove all temporary data created by Business Directory during the export process."
1119
- msgstr "Kliknij \"Oczyszczanie\" po pobraniu pliku w celu usunięcia wszystkich danych tymczasowych utworzonych przez Katalog Firm podczas procesu eksportu."
 
 
 
 
1120
 
 
1121
  #: admin/templates/csv-export.tpl.php:163
1122
- #@ WPBDM
1123
  msgctxt "admin csv-export"
1124
  msgid "Cleanup"
1125
  msgstr "Oczyszczanie"
1126
 
 
1127
  #: admin/templates/csv-export.tpl.php:168
1128
- #@ default
1129
  msgctxt "admin csv-export"
1130
  msgid "Export Canceled"
1131
  msgstr "Eksport anulowany"
1132
 
 
1133
  #: admin/templates/csv-export.tpl.php:169
1134
- #@ WPBDM
1135
  msgctxt "admin csv-export"
1136
  msgid "The export has been canceled."
1137
  msgstr "Eksport został anulowany."
1138
 
 
1139
  #: admin/templates/csv-export.tpl.php:170
1140
- #@ WPBDM
1141
  msgctxt "admin csv-export"
1142
  msgid "← Return to CSV Export"
1143
  msgstr "← Powrót do CSV Eksport"
1144
 
1145
- #: admin/templates/csv-import.tpl.php:12
1146
- #: admin/templates/csv-import.tpl.php:216
1147
- #@ WPBDM
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1148
  msgctxt "admin csv-import"
1149
  msgid "Help"
1150
  msgstr "Pomoc"
1151
 
 
1152
  #: admin/templates/csv-import.tpl.php:13
1153
- #@ WPBDM
1154
  msgctxt "admin csv-import"
1155
  msgid "See an example CSV import file"
1156
  msgstr "Zobacz przykład importowanego pliku CSV"
1157
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1158
  #: admin/templates/csv-import.tpl.php:38
1159
- #@ default
1160
  msgctxt "admin csv-import"
1161
  msgid "Import Files"
1162
  msgstr "Import plików"
1163
 
 
1164
  #: admin/templates/csv-import.tpl.php:43
1165
- #@ WPBDM
1166
  msgctxt "admin csv-import"
1167
  msgid "CSV File"
1168
  msgstr "Plik CSV"
1169
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1170
  #: admin/templates/csv-import.tpl.php:74
1171
- #@ WPBDM
1172
  msgctxt "admin csv-import"
1173
  msgid "ZIP file containing images"
1174
  msgstr "Plik ZIP zawierający zdjęcia"
1175
 
 
1176
  #: admin/templates/csv-import.tpl.php:105
1177
- #@ WPBDM
1178
  msgctxt "admin csv-import"
1179
  msgid "CSV File Settings"
1180
  msgstr "Ustawienia pliku CSV"
1181
 
 
1182
  #: admin/templates/csv-import.tpl.php:109
1183
- #@ WPBDM
1184
  msgctxt "admin csv-import"
1185
  msgid "Column Separator"
1186
  msgstr "Separator kolumn"
1187
 
 
1188
  #: admin/templates/csv-import.tpl.php:120
1189
- #@ WPBDM
1190
  msgctxt "admin csv-import"
1191
  msgid "Image Separator"
1192
  msgstr "Separator obrazu"
1193
 
 
1194
  #: admin/templates/csv-import.tpl.php:131
1195
- #@ WPBDM
1196
  msgctxt "admin csv-import"
1197
  msgid "Category Separator"
1198
  msgstr "Separator kategorii"
1199
 
 
1200
  #: admin/templates/csv-import.tpl.php:142
1201
- #@ WPBDM
1202
  msgctxt "admin csv-import"
1203
  msgid "Import settings"
1204
  msgstr "Ustawienia importu"
1205
 
 
 
 
 
 
 
 
1206
  #: admin/templates/csv-import.tpl.php:158
1207
- #@ WPBDM
1208
  msgctxt "admin csv-import"
1209
  msgid "Missing categories handling"
1210
  msgstr "Brakująca obsługa kategorii "
1211
 
 
1212
  #: admin/templates/csv-import.tpl.php:163
1213
- #@ WPBDM
1214
  msgctxt "admin csv-import"
1215
  msgid "Auto-create categories"
1216
  msgstr "Automatyczne tworzenie kategorii"
1217
 
 
1218
  #: admin/templates/csv-import.tpl.php:166
1219
- #@ WPBDM
1220
  msgctxt "admin csv-import"
1221
  msgid "Generate errors when a category is not found"
1222
  msgstr "Generować błędy gdy kategorii nie znaleziono"
1223
 
1224
  #: admin/templates/csv-import.tpl.php:171
1225
- #@ WPBDM
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1226
  msgctxt "admin csv-import"
1227
  msgid "Assign listings to a user?"
1228
  msgstr "Przypisać oferty do użytkownika?"
1229
 
1230
- #: admin/templates/csv-import.tpl.php:177
1231
- #@ WPBDM
1232
  msgctxt "admin csv-import"
1233
  msgid "Assign listings to a user."
1234
  msgstr "Przypisz oferty do użytkownika."
1235
 
1236
- #: admin/templates/csv-import.tpl.php:182
1237
- #@ WPBDM
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1238
  msgctxt "admin csv-import"
1239
  msgid "Default listing user"
1240
  msgstr "Domyślny użytkownik oferty"
1241
 
1242
- #: admin/templates/csv-import.tpl.php:187
1243
- #@ WPBDM
1244
  msgctxt "admin csv-import"
1245
- msgid "Use spreadsheet information only."
1246
- msgstr "Używaj tylko informacji arkusza kalkulacyjnego."
 
 
 
1247
 
1248
- #: admin/templates/csv-import.tpl.php:193
1249
- #@ WPBDM
1250
  msgctxt "admin csv-import"
1251
- msgid "This user will be used if the username column is not present in the CSV file."
1252
- msgstr "Ten użytkownik będzie używany, jeśli kolumna \"nazwa użytkownika\" nie jest obecny w pliku CSV."
 
 
 
 
 
 
1253
 
1254
- #: admin/templates/csv-import.tpl.php:209
1255
- #@ WPBDM
1256
  msgctxt "admin csv-import"
1257
  msgid "Test Import"
1258
  msgstr "Test importu"
1259
 
1260
- #: admin/templates/csv-import.tpl.php:210
1261
- #@ WPBDM
1262
  msgctxt "admin csv-import"
1263
  msgid "Import Listings"
1264
  msgstr "Import ofert"
1265
 
1266
- #: admin/templates/csv-import.tpl.php:218
1267
- #, php-format
1268
- #@ WPBDM
1269
  msgctxt "admin csv-import"
1270
- msgid "The following are the valid header names to be used in the CSV file. Multivalued fields (such as category or tags) can appear multiple times in the file. Click <a href=\"%s\">\"See an example CSV import file\"</a> to see how an import file should look like."
1271
- msgstr "Proszę się upewnić, że wartości prawidłowe dla nagłówków w pliku CSV. Pola wielowartościowe (takie jak kategoria lub tagi) może pojawić się wiele razy w pliku. Kliknij <a href=\"%s\">\"Zobacz przykładowy plik importu CSV\"</a> aby zobaczyć, jak powinien wyglądać plik importu."
 
 
 
 
 
 
 
 
1272
 
1273
- #: admin/templates/csv-import.tpl.php:225
1274
- #@ WPBDM
1275
  msgctxt "admin csv-import"
1276
  msgid "Header name/label"
1277
  msgstr "Nagłówek/Etykieta"
1278
 
1279
- #: admin/templates/csv-import.tpl.php:226
1280
- #@ WPBDM
1281
  msgctxt "admin csv-import"
1282
  msgid "Field"
1283
  msgstr "Pole"
1284
 
1285
- #: admin/templates/csv-import.tpl.php:227
1286
- #@ WPBDM
1287
  msgctxt "admin csv-import"
1288
  msgid "Type"
1289
  msgstr "Rodzaj"
1290
 
1291
- #: admin/templates/csv-import.tpl.php:228
1292
- #@ WPBDM
1293
  msgctxt "admin csv-import"
1294
  msgid "Required?"
1295
  msgstr "Wymagane?"
1296
 
1297
- #: admin/templates/csv-import.tpl.php:229
1298
- #@ WPBDM
1299
  msgctxt "admin csv-import"
1300
  msgid "Multivalued?"
1301
  msgstr "Wielowartościowe?"
1302
 
1303
- #: admin/templates/csv-import.tpl.php:251
1304
- #@ WPBDM
1305
  msgctxt "admin csv-import"
1306
  msgid "Semicolon separated list of listing images (from the ZIP file)"
1307
  msgstr "Lista rozdzielonych średnikami obrazów oferty (z pliku ZIP)"
1308
 
1309
- #: admin/templates/csv-import.tpl.php:258
1310
- #@ WPBDM
1311
  msgctxt "admin csv-import"
1312
  msgid "Listing author's username"
1313
  msgstr "Autor oferty - Nazwa Użytkownika"
1314
 
1315
- #: admin/templates/csv-import.tpl.php:265
1316
- #@ WPBDM
1317
  msgctxt "admin csv-import"
1318
- msgid "Internal Sequence ID used to allow listing updates from external sources."
1319
- msgstr "Wewnętrzny identyfikator sekwencji wykorzystywany w celu umożliwienia ofercie aktualizacji ze źródeł zewnętrznych."
 
 
 
1320
 
1321
- #: admin/templates/csv-import.tpl.php:272
1322
- #@ WPBDM
1323
  msgctxt "admin csv-import"
1324
- msgid "Date of listing expiration formatted as YYYY-MM-DD. Use this column when adding or updating listings from external sources."
1325
- msgstr "Data zakończenia ofert sformatowano jako YYYY-MM-DD. Użyj tej kolumny podczas dodawania lub aktualizowania oferty ze źródeł zewnętrznych."
1326
-
 
 
 
 
 
1327
  #: admin/templates/debug-info.tpl.php:5
1328
- #@ WPBDM
1329
  msgctxt "debug-info"
1330
- msgid "The following information can help BD developers debug possible problems with your setup."
1331
- msgstr "Następujące informacje mogą pomóc programistom Katalogu Firm w debugowaniu ewentualnych problemów z konfiguracją."
 
 
 
 
1332
 
 
1333
  #: admin/templates/debug-info.tpl.php:6
1334
- #@ WPBDM
1335
  msgctxt "debug-info"
1336
- msgid "The debug information does not contain personal or sensitive information such as passwords or private keys."
1337
- msgstr "Informacje debugowania nie zawierają osobistych lub poufnych informacji, takich jak hasła i klucze prywatne."
 
 
 
 
1338
 
 
1339
  #: admin/templates/debug-info.tpl.php:9
1340
- #@ WPBDM
1341
  msgctxt "debug-info"
1342
  msgid "Download Debug Information"
1343
  msgstr "Pobierz Informacje debugowania"
1344
 
 
1345
  #: admin/templates/fees-addoredit.tpl.php:23
1346
- #@ WPBDM
1347
  msgctxt "fees admin"
1348
  msgid "Add Listing Fee"
1349
  msgstr "Dodaj Abonament oferty"
1350
 
1351
- #: admin/templates/fees-addoredit.tpl.php:42
1352
- #@ WPBDM
 
 
 
 
 
 
 
1353
  msgctxt "fees admin"
1354
  msgid "Fee Label"
1355
  msgstr "Etykieta abonamentu"
1356
 
1357
- #: admin/templates/fees-addoredit.tpl.php:53
1358
- #@ WPBDM
1359
  msgctxt "fees admin"
1360
  msgid "Fee Amount"
1361
  msgstr "Ilość abonamentu"
1362
 
1363
- #: admin/templates/fees-addoredit.tpl.php:65
1364
- #@ WPBDM
1365
  msgctxt "fees admin"
1366
  msgid "Listing run in days"
1367
  msgstr "Emisja oferty w dniach"
1368
 
1369
- #: admin/templates/fees-addoredit.tpl.php:72
1370
- #@ WPBDM
1371
  msgctxt "fees admin"
1372
  msgid "run listing for"
1373
  msgstr "Emisja oferty do"
1374
 
1375
- #: admin/templates/fees-addoredit.tpl.php:81
1376
- #@ WPBDM
1377
  msgctxt "fees admin"
1378
  msgid "days"
1379
  msgstr "dni"
1380
 
1381
- #: admin/templates/fees-addoredit.tpl.php:84
1382
- #@ WPBDM
1383
  msgctxt "fees admin"
1384
  msgid "run listing forever"
1385
  msgstr "Emisja oferty na zawsze"
1386
 
1387
- #: admin/templates/fees-addoredit.tpl.php:89
1388
- #@ WPBDM
1389
  msgctxt "fees admin"
1390
  msgid "Number of images allowed"
1391
  msgstr "Liczba dozwolonych obrazów"
1392
 
1393
- #: admin/templates/fees-addoredit.tpl.php:105
1394
- #@ WPBDM
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1395
  msgctxt "fees admin"
1396
  msgid "Apply to category"
1397
  msgstr "Zastosuj dla kategorii"
1398
 
1399
- #: admin/templates/fees-addoredit.tpl.php:109
1400
- #@ WPBDM
 
1401
  msgctxt "fees admin"
1402
  msgid "* All Categories *"
1403
  msgstr "* Wszystkie Kategorie *"
1404
 
1405
- #: admin/templates/fees-addoredit.tpl.php:129
1406
- #@ WPBDM
 
1407
  msgctxt "fees admin"
1408
- msgid "Update Fee"
1409
- msgstr "Aktualizacja abonamentu"
1410
 
1411
- #: admin/templates/fees-addoredit.tpl.php:131
1412
- #@ WPBDM
1413
  msgctxt "fees admin"
1414
  msgid "Add Fee"
1415
  msgstr "Dodaj abonament"
1416
 
 
 
 
 
 
 
 
1417
  #: admin/templates/fees-confirm-delete.tpl.php:2
1418
- #@ WPBDM
1419
  msgctxt "fees admin"
1420
  msgid "Delete Listing Fee"
1421
  msgstr "Usuń abonament oferty"
1422
 
1423
- #: admin/templates/fees-confirm-delete.tpl.php:6
1424
- #, php-format
1425
- #@ WPBDM
 
 
 
 
 
 
1426
  msgctxt "fees admin"
1427
  msgid "Are you sure you want to delete the \"%s\" fee?"
1428
  msgstr "Jesteś pewien, że chcesz usunąć abonament \"%s\"?"
1429
 
1430
- #: admin/templates/fees-confirm-delete.tpl.php:12
1431
- #@ WPBDM
 
 
 
 
 
 
 
1432
  msgctxt "fee admin"
1433
  msgid "Delete Fee"
1434
  msgstr "Usuń abonament"
1435
 
 
1436
  #: admin/templates/fees.tpl.php:3
1437
- #@ WPBDM
1438
  msgctxt "fees admin"
1439
  msgid "Add New Listing Fee"
1440
  msgstr "Dodaj nowy abonament"
1441
 
 
1442
  #: admin/templates/fees.tpl.php:10
1443
- #@ WPBDM
1444
  msgctxt "fees admin"
1445
  msgid "Payments are currently turned off."
1446
  msgstr "Płatność jest aktualnie wyłączona."
1447
 
 
1448
  #: admin/templates/fees.tpl.php:13
1449
- #@ WPBDM
1450
  msgctxt "fees admin"
1451
- msgid "To manage fees you need to go to the <a>Manage Options - Payment</a> page and check the box next to 'Turn On Payments' under 'Payment Settings'."
1452
- msgstr "Aby zarządzać abonamentami musisz iść do <a> Opcje Zarządzania- Płatności </a> i zaznaczyć pole wyboru \"Włącz\" w \"Ustawienia płatności\"."
 
 
 
 
1453
 
1454
- #: admin/templates/fees.tpl.php:22
1455
- #@ WPBDM
1456
  msgctxt "fees admin"
1457
  msgid "Order fees on the frontend by:"
1458
  msgstr "Sortuj abonamenty według:"
1459
 
1460
- #: admin/templates/fees.tpl.php:30
1461
- #@ WPBDM
1462
  msgctxt "fees admin"
1463
  msgid "↑ Ascending"
1464
  msgstr "↑ Rosnąco"
1465
 
1466
- #: admin/templates/fees.tpl.php:30
1467
- #@ WPBDM
1468
  msgctxt "fees admin"
1469
  msgid "↓ Descending"
1470
  msgstr "↓ Malejąco"
1471
 
1472
- #: admin/templates/fees.tpl.php:36
1473
- #@ WPBDM
1474
  msgctxt "fees admin"
1475
  msgid "Drag and drop to re-order fees."
1476
  msgstr "Złap i upuść aby uporządkować abonamenty"
1477
 
1478
- #: admin/templates/fees.tpl.php:48
1479
- #: admin/templates/sidebar.tpl.php:12
1480
- #@ WPBDM
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1481
  msgctxt "admin sidebar"
1482
  msgid "PayPal Gateway Module"
1483
  msgstr "Moduł bramki PayPal"
1484
 
1485
- #: admin/templates/fees.tpl.php:49
1486
- #: admin/templates/sidebar.tpl.php:13
1487
- #@ WPBDM
1488
  msgctxt "admin sidebar"
1489
  msgid "2Checkout Gateway Module"
1490
  msgstr "Moduł bramki 2Checkout"
1491
 
1492
- #: admin/templates/fees.tpl.php:50
1493
- #: admin/templates/sidebar.tpl.php:4
1494
- #@ WPBDM
1495
  msgctxt "admin sidebar"
1496
  msgid "PayFast Payment Module"
1497
  msgstr "Moduł bramki PayFast"
1498
 
1499
- #: admin/templates/fees.tpl.php:51
1500
- #: admin/templates/sidebar.tpl.php:5
1501
- #@ WPBDM
1502
  msgctxt "admin sidebar"
1503
  msgid "Stripe Payment Module"
1504
  msgstr "Moduł bramki Stripe "
1505
 
1506
- #: admin/templates/fees.tpl.php:77
1507
- #@ WPBDM
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1508
  msgctxt "admin templates"
1509
  msgid "Already installed."
1510
  msgstr "Już zainstalowano."
1511
 
1512
- #: admin/templates/fees.tpl.php:82
1513
- #, php-format
1514
- #@ WPBDM
1515
  msgctxt "admin templates"
1516
- msgid "You can buy the <a>%s</a> to add <a>%s</a> as a payment option for your users."
1517
- msgstr "Możesz kupić <a>%s</a> aby dodać <a>%s</a> jako opcje płatności dla Twoich użytkowników."
 
 
 
 
1518
 
 
1519
  #: admin/templates/form-fields-addoredit.tpl.php:1
1520
- #@ WPBDM
1521
  msgctxt "form-fields admin"
1522
  msgid "Add Form Field"
1523
  msgstr "Dodaj Pole formularza"
1524
 
1525
- #: admin/templates/form-fields-addoredit.tpl.php:13
1526
- #@ WPBDM
1527
  msgctxt "form-fields admin"
1528
  msgid "Field Association"
1529
  msgstr "Przypiisanie pola"
1530
 
1531
- #: admin/templates/form-fields-addoredit.tpl.php:35
1532
- #@ WPBDM
 
 
 
 
 
 
 
 
 
 
1533
  msgctxt "form-fields admin"
1534
  msgid "Field Type"
1535
  msgstr "Rodzaj pola"
1536
 
1537
- #: admin/templates/form-fields-addoredit.tpl.php:59
1538
- #@ WPBDM
1539
  msgctxt "form-fields admin"
1540
  msgid "Field Label"
1541
  msgstr "Etykieta pola"
1542
 
1543
- #: admin/templates/form-fields-addoredit.tpl.php:69
1544
- #@ WPBDM
1545
  msgctxt "form-fields admin"
1546
  msgid "Field description"
1547
  msgstr "Opis pola"
1548
 
1549
- #: admin/templates/form-fields-addoredit.tpl.php:86
1550
- #@ WPBDM
 
 
 
 
 
 
 
1551
  msgctxt "form-fields admin"
1552
  msgid "Field-specific settings"
1553
  msgstr "Ustawienia pola specyficznego"
1554
 
1555
- #: admin/templates/form-fields-addoredit.tpl.php:95
1556
- #@ WPBDM
1557
  msgctxt "form-fields admin"
1558
  msgid "Field validation options"
1559
  msgstr "Opcje weryfikacji pola"
1560
 
1561
- #: admin/templates/form-fields-addoredit.tpl.php:99
1562
- #@ WPBDM
1563
  msgctxt "form-fields admin"
1564
  msgid "Field Validator"
1565
  msgstr "Weryfikator pola"
1566
 
1567
- #: admin/templates/form-fields-addoredit.tpl.php:103
1568
- #@ WPBDM
1569
  msgctxt "form-fields admin"
1570
  msgid "No validation"
1571
  msgstr "Bez weryfikacji"
1572
 
1573
- #: admin/templates/form-fields-addoredit.tpl.php:112
1574
- #@ WPBDM
1575
  msgctxt "form-fields admin"
1576
  msgid "Is field required?"
1577
  msgstr "Czy pole jest wymagane?"
1578
 
1579
- #: admin/templates/form-fields-addoredit.tpl.php:118
1580
- #@ WPBDM
1581
  msgctxt "form-fields admin"
1582
  msgid "This field is required."
1583
  msgstr "To pole jest wymagane."
1584
 
1585
- #: admin/templates/form-fields-addoredit.tpl.php:126
1586
- #@ WPBDM
1587
  msgctxt "form-fields admin"
1588
  msgid "Field display options"
1589
  msgstr "Opcje wyświetlania pola"
1590
 
1591
- #: admin/templates/form-fields-addoredit.tpl.php:130
1592
- #@ WPBDM
1593
  msgctxt "form-fields admin"
1594
  msgid "Show this value in excerpt view?"
1595
  msgstr "Pokazać wartość pola w wyciągu z wpisu?"
1596
 
1597
- #: admin/templates/form-fields-addoredit.tpl.php:136
1598
- #@ WPBDM
1599
  msgctxt "form-fields admin"
1600
  msgid "Display this value in post excerpt view."
1601
  msgstr "Wyświetlanie wartości pola w wyciągu z wpisu."
1602
 
1603
- #: admin/templates/form-fields-addoredit.tpl.php:142
1604
- #@ WPBDM
1605
  msgctxt "form-fields admin"
1606
  msgid "Show this value in listing view?"
1607
  msgstr "Pokazywać tą wartość w widoku oferty?"
1608
 
1609
- #: admin/templates/form-fields-addoredit.tpl.php:148
1610
- #@ WPBDM
1611
  msgctxt "form-fields admin"
1612
  msgid "Display this value in the listing view."
1613
  msgstr "Wyświetlanie tej wartości w widoku oferty."
1614
 
1615
- #: admin/templates/form-fields-addoredit.tpl.php:154
1616
- #@ WPBDM
1617
  msgctxt "form-fields admin"
1618
  msgid "Include this field in the search form?"
1619
  msgstr "Dołączyć to pole do formularza wyszukiwania?"
1620
 
1621
- #: admin/templates/form-fields-addoredit.tpl.php:160
1622
- #@ WPBDM
1623
  msgctxt "form-fields admin"
1624
  msgid "Include this field in the search form."
1625
  msgstr "Dołącz to pole do formularza wyszukiwania"
1626
 
1627
- #: admin/templates/form-fields-addoredit.tpl.php:166
1628
- #@ WPBDM
1629
  msgctxt "form-fields admin"
1630
  msgid "Hide this field's label?"
1631
  msgstr "Ukryć etykiety pól?"
1632
 
1633
- #: admin/templates/form-fields-addoredit.tpl.php:172
1634
- #@ WPBDM
1635
  msgctxt "form-fields admin"
1636
  msgid "Hide this field's label when displaying it."
1637
  msgstr "Ukryj etykiety pól, kiedy pola są wyświetlane."
1638
 
1639
- #: admin/templates/form-fields-addoredit.tpl.php:179
1640
- #@ WPBDM
1641
  msgctxt "form-fields admin"
1642
  msgid "Update Field"
1643
  msgstr "Aktualizacja pola"
1644
 
1645
- #: admin/templates/form-fields-addoredit.tpl.php:181
1646
- #@ WPBDM
1647
  msgctxt "form-fields admin"
1648
  msgid "Add Field"
1649
  msgstr "Dodaj Pole "
1650
 
 
1651
  #: admin/templates/form-fields-confirm-delete.tpl.php:2
1652
- #@ WPBDM
1653
  msgctxt "form-fields admin"
1654
  msgid "Delete Form Field"
1655
  msgstr "Usuń Pole formularza"
1656
 
 
1657
  #: admin/templates/form-fields-confirm-delete.tpl.php:6
1658
- #, php-format
1659
- #@ WPBDM
1660
  msgctxt "form-fields admin"
1661
  msgid "Are you sure you want to delete the \"%s\" field?"
1662
  msgstr "Jesteś pewien, że chcesz usunąć pole \"%s\"?"
1663
 
 
1664
  #: admin/templates/form-fields-confirm-delete.tpl.php:12
1665
- #@ WPBDM
1666
  msgctxt "form-fields admin"
1667
  msgid "Delete Field"
1668
  msgstr "Usuń pole"
1669
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1670
  #: admin/templates/form-fields.tpl.php:3
1671
- #@ WPBDM
1672
  msgctxt "form-fields admin"
1673
  msgid "Add New Form Field"
1674
  msgstr "Dodaj nowe pole formularza"
1675
 
 
1676
  #: admin/templates/form-fields.tpl.php:4
1677
- #@ WPBDM
1678
  msgctxt "form-fields admin"
1679
  msgid "Preview Form"
1680
  msgstr "Podgląd formularza"
1681
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1682
  #: admin/templates/header.tpl.php:4
1683
- #@ WPBDM
1684
  msgid "Business Directory Plugin"
1685
  msgstr "Plugin Katalog Firm"
1686
 
 
1687
  #: admin/templates/home.tpl.php:4
1688
- #, php-format
1689
- #@ WPBDM
1690
  msgctxt "admin home"
1691
  msgid "Welcome to Business Directory Plugin. You are using %s."
1692
  msgstr "Witamy w Katalogu Firm. Używasz %s."
1693
 
 
1694
  #: admin/templates/home.tpl.php:5
1695
- #@ WPBDM
1696
  msgctxt "admin home"
1697
- msgid "Thanks for choosing us. There's a lot you probably want to get done, so let's jump right in!"
1698
- msgstr "Dziękujemy, że nas wybrałeś. Jest tu wiele rzeczy, które prawdopodobnie chciałbyś zrobić. Poprostu zacznij zabawę."
 
 
 
 
1699
 
 
1700
  #: admin/templates/home.tpl.php:11
1701
- #@ WPBDM
1702
  msgctxt "admin home"
1703
- msgid "Our complete documentation is <a>here</a> which we encourage you to use while setting things up."
1704
- msgstr "Pełną dokumentację znajdziesz <a>tutaj</a>. Korzystaj z niej, aby skonfirgurować nasz plugin."
 
 
 
 
1705
 
 
1706
  #: admin/templates/home.tpl.php:14
1707
- #@ WPBDM
1708
  msgctxt "admin home"
1709
- msgid "We have some quick-start scenarios that you will find useful regarding setup and configuration <a>here</a>."
1710
- msgstr "Kilka scenariuszy szybkiego startu, w kótrych znajdziesz przydatne opcje i informacje na temat konfiguracji znajdziesz<a>tutaj</a>."
 
 
 
 
1711
 
 
1712
  #: admin/templates/home.tpl.php:18
1713
- #@ WPBDM
1714
  msgctxt "admin home"
1715
- msgid "If you have questions, please post a comment on <a>support forum</a> and we'll answer it within 24 hours most days."
1716
- msgstr "Jeśli masz pytania, napisz komentarz na <a>forum wsparcia</a>, a my postaramy sie odpowiedzieć w ciągu 24 godzin."
 
 
 
 
1717
 
 
1718
  #: admin/templates/home.tpl.php:25
1719
- #@ WPBDM
1720
  msgid "Configure/Manage Options"
1721
  msgstr "Zarządzaj Opcjami"
1722
 
 
1723
  #: admin/templates/home.tpl.php:28
1724
- #@ WPBDM
1725
  msgid "Setup/Manage Form Fields"
1726
  msgstr "Zarządzaj polami formularzy"
1727
 
 
1728
  #: admin/templates/home.tpl.php:31
1729
- #@ WPBDM
1730
  msgid "Setup/Manage Fees"
1731
  msgstr "Zarządzaj abonamentami"
1732
 
 
1733
  #: admin/templates/home.tpl.php:37
1734
- #@ WPBDM
1735
  msgid "Featured Listings Pending Upgrade"
1736
  msgstr "Wyróżniona oferta oczekuje na zmianę statusu"
1737
 
 
1738
  #: admin/templates/home.tpl.php:44
1739
- #@ WPBDM
1740
  msgid "Manage Paid Listings"
1741
  msgstr "Zarządzaj ofertami płatnymi"
1742
 
 
1743
  #: admin/templates/listing-change-fee.tpl.php:3
1744
- #@ WPBDM
1745
  msgctxt "admin listing fee"
1746
  msgid "Listing Fee Selection"
1747
  msgstr "Wybór Abonamentu"
1748
 
 
1749
  #: admin/templates/listing-change-fee.tpl.php:5
1750
- #, php-format
1751
- #@ WPBDM
1752
  msgctxt "admin listing fee"
1753
  msgid "Select a fee plan to be used for this listing in the \"%s\" category."
1754
  msgstr "Wybierz abonament dla tego ogłoszenia w kategoreiii \"%s\"."
1755
 
 
1756
  #: admin/templates/listing-change-fee.tpl.php:11
1757
- #@ WPBDM
1758
  msgctxt "admin listing fee"
1759
  msgid "Current"
1760
  msgstr "Aktualny"
1761
 
 
1762
  #: admin/templates/listing-change-fee.tpl.php:14
1763
- #@ WPBDM
1764
  msgctxt "admin listing fee"
1765
  msgid "Use this fee"
1766
  msgstr "Użyj tego abonamentu"
1767
 
 
1768
  #: admin/templates/listing-change-fee.tpl.php:21
1769
- #, php-format
1770
- #@ WPBDM
1771
  msgctxt "admin infometabox"
1772
  msgid "%d image"
1773
  msgid_plural "%d images"
@@ -1775,15 +2697,14 @@ msgstr[0] "%d obraz"
1775
  msgstr[1] "%d obrazy"
1776
  msgstr[2] "%d obrazów"
1777
 
 
1778
  #: admin/templates/listing-change-fee.tpl.php:23
1779
- #@ WPBDM
1780
  msgctxt "admin infometabox"
1781
  msgid "Listing never expires"
1782
  msgstr "Bezterminowy okres ważności"
1783
 
 
1784
  #: admin/templates/listing-change-fee.tpl.php:25
1785
- #, php-format
1786
- #@ WPBDM
1787
  msgctxt "admin infometabox"
1788
  msgid "%d day"
1789
  msgid_plural "%d days"
@@ -1791,4086 +2712,5362 @@ msgstr[0] "%d dzień"
1791
  msgstr[1] "%d dni"
1792
  msgstr[2] "%d dni"
1793
 
 
1794
  #: admin/templates/listing-metabox-categories.tpl.php:22
1795
- #@ WPBDM
1796
  msgctxt "admin infometabox"
1797
  msgid "No categories on this listing. Please add one to associate fees."
1798
  msgstr "Nie ma kategorii dla tej oferty. Dodaj jedną aby stosować abonamenty."
1799
 
 
1800
  #: admin/templates/listing-metabox-categories.tpl.php:29
1801
- #@ WPBDM
1802
  msgctxt "admin infometabox"
1803
  msgid "(recurring)"
1804
  msgstr "(powtarzające się)"
1805
 
 
1806
  #: admin/templates/listing-metabox-categories.tpl.php:34
1807
- #@ WPBDM
1808
  msgctxt "admin infometabox"
1809
  msgid "Expired"
1810
  msgstr "Upłynął termin ważności"
1811
 
 
1812
  #: admin/templates/listing-metabox-categories.tpl.php:37
1813
- #@ WPBDM
1814
  msgctxt "admin infometabox"
1815
  msgid "Payment Pending"
1816
  msgstr "Oczekujące na płatność"
1817
 
 
1818
  #: admin/templates/listing-metabox-categories.tpl.php:41
1819
- #@ WPBDM
1820
  msgctxt "admin infometabox"
1821
  msgid "OK"
1822
  msgstr "Wszystko w porządku"
1823
 
 
1824
  #: admin/templates/listing-metabox-categories.tpl.php:49
1825
- #@ WPBDM
1826
  msgctxt "admin infometabox"
1827
  msgid "Fee"
1828
  msgstr "Abonament"
1829
 
 
1830
  #: admin/templates/listing-metabox-categories.tpl.php:54
1831
- #@ WPBDM
1832
  msgctxt "admin infometabox"
1833
  msgid "# Images"
1834
  msgstr "Liczba Obrazów"
1835
 
 
1836
  #: admin/templates/listing-metabox-categories.tpl.php:62
1837
- #@ WPBDM
1838
  msgctxt "admin infometabox"
1839
  msgid "Expired on"
1840
  msgstr "Upłynął termin ważności "
1841
 
 
1842
  #: admin/templates/listing-metabox-categories.tpl.php:64
1843
- #@ WPBDM
1844
  msgctxt "admin infometabox"
1845
  msgid "Expires on"
1846
  msgstr "Upłynął okres ważności "
1847
 
1848
- #: admin/class-admin.php:400
1849
- #: admin/templates/listing-metabox-categories.tpl.php:69
1850
- #@ WPBDM
1851
- msgctxt "admin infometabox"
1852
- msgid "never"
1853
- msgstr "nigdy"
1854
-
1855
  #: admin/templates/listing-metabox-categories.tpl.php:72
1856
- #@ WPBDM
1857
  msgctxt "admin infometabox"
1858
  msgid "Click to manually change expiration date."
1859
  msgstr "Kliknij aby ręcznie ustawić datę wygaśnięcia oferty."
1860
 
 
 
 
 
 
 
 
1861
  #: admin/templates/listing-metabox-categories.tpl.php:75
1862
- #@ WPBDM
1863
  msgctxt "admin infometabox"
1864
  msgid "Edit"
1865
  msgstr "Edytuj"
1866
 
 
1867
  #: admin/templates/listing-metabox-categories.tpl.php:87
1868
- #@ WPBDM
1869
  msgctxt "admin infometabox"
1870
  msgid "See payment info"
1871
  msgstr "Zobacz informacje o płatności"
1872
 
 
1873
  #: admin/templates/listing-metabox-categories.tpl.php:92
1874
- #@ WPBDM
1875
  msgctxt "admin infometabox"
1876
  msgid "Renewal URL (copy & paste)"
1877
  msgstr "Adres URL odnowienia (kopiuj i wklej)"
1878
 
 
1879
  #: admin/templates/listing-metabox-categories.tpl.php:92
1880
- #@ WPBDM
1881
  msgctxt "admin infometabox"
1882
  msgid "Show renewal link"
1883
  msgstr "Pokaż adres URL odnowienie"
1884
 
 
1885
  #: admin/templates/listing-metabox-categories.tpl.php:99
1886
- #@ WPBDM
1887
  msgctxt "admin infometabox"
1888
  msgid "Send renewal e-mail to user"
1889
  msgstr "Wysyłaj do użytkownika e-mail o odnowieniu "
1890
 
 
1891
  #: admin/templates/listing-metabox-categories.tpl.php:107
1892
- #@ WPBDM
1893
  msgctxt "admin infometabox"
1894
  msgid "Renew manually..."
1895
  msgstr "Ręczne Odnowienie oferty"
1896
 
 
1897
  #: admin/templates/listing-metabox-categories.tpl.php:107
1898
- #@ WPBDM
1899
  msgctxt "admin infometabox"
1900
  msgid "Change fee..."
1901
  msgstr "Zmień Abonament"
1902
 
 
1903
  #: admin/templates/listing-metabox-categories.tpl.php:115
1904
- #@ WPBDM
1905
  msgctxt "admin infometabox"
1906
  msgid "Remove category"
1907
  msgstr "Usuń Ktegorię"
1908
 
 
1909
  #: admin/templates/listing-metabox-fees.tpl.php:1
1910
- #@ WPBDM
1911
  msgctxt "admin infometabox"
1912
  msgid "Fee Information"
1913
  msgstr "Informacje o abonamencie"
1914
 
 
1915
  #: admin/templates/listing-metabox-fees.tpl.php:3
1916
- #@ WPBDM
1917
  msgctxt "admin infometabox"
1918
  msgid "Payment Mode:"
1919
  msgstr "Tryb Płatny"
1920
 
 
1921
  #: admin/templates/listing-metabox-fees.tpl.php:3
1922
- #@ WPBDM
1923
  msgctxt "admin infometabox"
1924
  msgid "Paid"
1925
  msgstr "Zapłacone"
1926
 
 
1927
  #: admin/templates/listing-metabox-fees.tpl.php:3
1928
- #@ WPBDM
1929
  msgctxt "admin infometabox"
1930
  msgid "Free"
1931
  msgstr "Tryb Bezpłatny"
1932
 
 
1933
  #: admin/templates/listing-metabox-fees.tpl.php:6
1934
- #, php-format
1935
- #@ WPBDM
1936
  msgctxt "admin infometabox"
1937
  msgid "To change your payment mode, go to <a href=\"%s\">Payment Settings</a>."
1938
- msgstr "Aby zmienić Tryb Bezpłatny na Płatny i odwrotnie, przejdź do <a href=\"%s\">Ustawienia Płatności</a>."
 
 
1939
 
 
1940
  #: admin/templates/listing-metabox-fees.tpl.php:12
1941
- #@ WPBDM
1942
  msgctxt "admin infometabox"
1943
- msgid "Note: In Free mode, the fee plans will always be set to \"Free Listing\" below."
1944
- msgstr "nformacja: W trybie bezpłatnym, abonamenty zawsze będą ustawione jako \"Bezpłatny Katalog\"."
 
 
 
 
1945
 
 
1946
  #: admin/templates/listing-metabox-fees.tpl.php:22
1947
  #: admin/templates/listing-metabox-feesummary.tpl.php:12
1948
- #@ WPBDM
1949
  msgctxt "admin infometabox"
1950
  msgid "Renew listing in all expired categories"
1951
  msgstr "Odnowienie ofert we wszystkich wygasłych kategoriach"
1952
 
 
1953
  #: admin/templates/listing-metabox-feesummary.tpl.php:1
1954
- #@ WPBDM
1955
  msgctxt "admin infometabox"
1956
  msgid "Categories for this listing"
1957
  msgstr "Kategorie dla tej oferty"
1958
 
 
1959
  #: admin/templates/listing-metabox-transactions.tpl.php:3
1960
- #@ WPBDM
1961
  msgctxt "admin infometabox"
1962
  msgid "Initial Payment"
1963
  msgstr "Inicjacja Płatności"
1964
 
 
1965
  #: admin/templates/listing-metabox-transactions.tpl.php:4
1966
- #@ WPBDM
1967
  msgctxt "admin infometabox"
1968
  msgid "Listing Edit"
1969
  msgstr "Edycja oferty"
1970
 
 
1971
  #: admin/templates/listing-metabox-transactions.tpl.php:5
1972
- #@ WPBDM
1973
  msgctxt "admin infometabox"
1974
  msgid "Listing Renewal"
1975
  msgstr "Odświeżenie oferty"
1976
 
 
1977
  #: admin/templates/listing-metabox-transactions.tpl.php:6
1978
- #@ WPBDM
1979
  msgctxt "admin infometabox"
1980
  msgid "Upgrade to sticky"
1981
  msgstr "Podnieś status do \"Wyróżnione/Naklejka\""
1982
 
 
1983
  #: admin/templates/listing-metabox-transactions.tpl.php:10
1984
- #@ WPBDM
1985
  msgctxt "admin"
1986
  msgid "Payments History"
1987
  msgstr "Historia płatności"
1988
 
 
1989
  #: admin/templates/listing-metabox-transactions.tpl.php:12
1990
- #@ WPBDM
1991
  msgctxt "admin listing metabox"
1992
  msgid "Click a payment to see the details or approve/reject the transaction."
1993
- msgstr "Kliknij płatności aby zobaczyć szczegóły albo zatwierdzić lub odrzucić transakcję."
 
 
1994
 
 
1995
  #: admin/templates/listing-metabox-transactions.tpl.php:16
1996
- #@ WPBDM
1997
  msgctxt "listing metabox"
1998
  msgid "There are no transactions associated to this listing."
1999
  msgstr "Nie ma aktualnie przypisanej żadnej transakcji do tej oferty."
2000
 
 
2001
  #: admin/templates/payment-details.tpl.php:7
2002
- #@ WPBDM
2003
  msgctxt "admin payments"
2004
  msgid "Payment Details"
2005
  msgstr "Szczegóły płatności"
2006
 
 
2007
  #: admin/templates/payment-details.tpl.php:9
2008
- #, php-format
2009
- #@ WPBDM
2010
  msgctxt "admin payments"
2011
  msgid "Payment #%d"
2012
  msgstr "Płatność #%d"
2013
 
 
2014
  #: admin/templates/payment-details.tpl.php:16
2015
- #@ WPBDM
2016
  msgctxt "admin payments"
2017
  msgid "Created on"
2018
  msgstr "Utworzony przez"
2019
 
 
2020
  #: admin/templates/payment-details.tpl.php:19
2021
- #@ WPBDM
2022
  msgctxt "admin infometabox"
2023
  msgid "Amount"
2024
  msgstr "Kwota"
2025
 
 
2026
  #: admin/templates/payment-details.tpl.php:22
2027
- #@ WPBDM
2028
  msgctxt "admin infometabox"
2029
  msgid "Gateway"
2030
  msgstr "Bramka"
2031
 
 
2032
  #: admin/templates/payment-details.tpl.php:26
2033
- #@ WPBDM
2034
  msgctxt "admin infometabox"
2035
  msgid "Processed on"
2036
  msgstr "Przetwarzane na"
2037
 
2038
- #: admin/templates/settings.tpl.php:36
2039
- #@ WPBDM
2040
- msgid "Use this option if you want to go back to the original factory settings for BD. <b>Please note that all of your existing settings will be lost.</b>"
2041
- msgstr "Użyj tej opcji, jeśli chcesz przywrócić Katalog Firm do ustawień fabrycznych.<b>Pamiętaj - wszystkie Twoje poprzednie ustawienia zostaną utracone..</b>"
2042
-
2043
- #: admin/templates/form-fields.tpl.php:9
2044
- #@ WPBDM
2045
- msgctxt "form-fields admin"
2046
- msgid "Here, you can create new fields for your listings, edit or delete existing ones, change the order and visibility of the fields as well as configure special options for them."
2047
- msgstr "Tutaj możesz stworzyć nowe pola dla Twoich Ofert, edytować lub usuwać istniejące, porządkować i ustawiać widoczność tych pól przy użyciu specjalnych funkcji."
2048
-
2049
- #: admin/templates/form-fields.tpl.php:15
2050
- #@ WPBDM
2051
- msgctxt "form-fields admin"
2052
- msgid "Please see the <a>Form Fields documentation</a> for more details."
2053
- msgstr "Proszę zapoznać się z <a>Dokumentacją dotyczącą formularzy Pól</a> aby poznać wiecej możliwości."
2054
-
2055
  #: admin/templates/payment-details.tpl.php:28
2056
- #@ WPBDM
2057
  msgctxt "admin infometabox"
2058
  msgid "Processed by"
2059
  msgstr "Przetwarzane przez"
2060
 
2061
- #: admin/templates/payment-details.tpl.php:40
2062
- #@ WPBDM
2063
  msgctxt "admin payments"
2064
  msgid "Approve payment"
2065
  msgstr "Zatwierdzenie płatności"
2066
 
2067
- #: admin/templates/payment-details.tpl.php:44
2068
- #@ WPBDM
2069
  msgctxt "admin payments"
2070
  msgid "Reject payment"
2071
  msgstr "Odrzucenie płatności"
2072
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
2073
  #: admin/templates/settings.tpl.php:2
2074
- #@ WPBDM
2075
  msgid "Business Directory Settings"
2076
  msgstr "Katalog Firm Ustawienia"
2077
 
2078
- #: admin/templates/settings.tpl.php:18
2079
- #@ WPBDM
 
 
 
 
 
 
 
2080
  msgid "Settings updated."
2081
  msgstr "Ustawienia zapisane"
2082
 
2083
- #: admin/templates/settings.tpl.php:30
2084
- #: admin/templates/settings.tpl.php:39
2085
- #@ WPBDM
2086
- msgid "Reset Defaults"
2087
- msgstr "Przywróć ustawienia fabryczne"
 
 
 
 
 
 
 
2088
 
2089
- #: admin/templates/sidebar.tpl.php:6
2090
- #@ WPBDM
2091
  msgctxt "admin sidebar"
2092
  msgid "File Upload Module"
2093
  msgstr "Moduł przesyłania plików"
2094
 
2095
- #: admin/templates/sidebar.tpl.php:7
2096
- #@ WPBDM
2097
  msgctxt "admin sidebar"
2098
  msgid "Featured Levels Module"
2099
  msgstr "Moduł poziomów wyróżnień"
2100
 
2101
- #: admin/templates/sidebar.tpl.php:8
2102
- #@ WPBDM
2103
  msgctxt "admin sidebar"
2104
  msgid "ZIP Code Search Module"
2105
  msgstr "Moduł wyszukiwania kodu pocztowego"
2106
 
2107
- #: admin/templates/sidebar.tpl.php:9
2108
- #@ WPBDM
2109
  msgctxt "admin sidebar"
2110
  msgid "Regions Module"
2111
  msgstr "Moduł regionów"
2112
 
2113
- #: admin/templates/sidebar.tpl.php:10
2114
- #@ WPBDM
2115
  msgctxt "admin sidebar"
2116
  msgid "Ratings Module"
2117
  msgstr "Moduł oceniania"
2118
 
2119
- #: admin/templates/sidebar.tpl.php:11
2120
- #@ WPBDM
2121
  msgctxt "admin sidebar"
2122
  msgid "Google Maps Module"
2123
  msgstr "Moduł google mapy"
2124
 
 
 
 
 
 
 
 
 
 
 
 
 
2125
  #: admin/templates/sidebar.tpl.php:20
2126
- #@ WPBDM
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
2127
  msgctxt "admin sidebar"
2128
  msgid "Like this plugin?"
2129
  msgstr "Lubisz tą wtyczkę?"
2130
 
2131
- #: admin/templates/sidebar.tpl.php:22
2132
- #@ WPBDM
2133
  msgctxt "admin sidebar"
2134
  msgid "Why not do any or all of the following:"
2135
  msgstr "Czemu nie zrobić czegoś z poniższych:"
2136
 
2137
- #: admin/templates/sidebar.tpl.php:24
2138
- #@ WPBDM
2139
  msgctxt "admin sidebar"
2140
  msgid "Give it a good rating on WordPress.org."
2141
  msgstr "Oceń nas na WordPress.org."
2142
 
2143
- #: admin/templates/sidebar.tpl.php:25
2144
- #@ WPBDM
2145
  msgctxt "admin sidebar"
2146
  msgid "Let other people know that it works with your WordPress setup."
2147
  msgstr "Daj znać innym użytkownikom że ta wtyczka działa na Twoim Wordpressie."
2148
 
2149
- #: admin/templates/sidebar.tpl.php:26
2150
- #@ WPBDM
2151
  msgctxt "admin sidebar"
2152
  msgid "Buy a Premium Module"
2153
  msgstr "Kup moduł premium"
2154
 
2155
- #: admin/templates/sidebar.tpl.php:33
2156
- #@ WPBDM
2157
  msgctxt "admin sidebar"
2158
  msgid "Get a Premium Module"
2159
  msgstr "Pobierz moduł premium"
2160
 
2161
- #: admin/templates/sidebar.tpl.php:42
2162
- #@ WPBDM
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
2163
  msgctxt "admin sidebar"
2164
- msgid "Single Site License Combo Pack"
2165
- msgstr "Multi paczka licencji dla pojedynczej strony"
2166
 
2167
- #: admin/templates/sidebar.tpl.php:43
2168
- #@ WPBDM
2169
  msgctxt "admin sidebar"
2170
- msgid "Multi Site License Combo Pack"
2171
- msgstr "Multi paczka licencji dla wielu stron"
2172
 
2173
- #: admin/templates/sidebar.tpl.php:50
2174
- #@ WPBDM
2175
  msgctxt "admin sidebar"
2176
  msgid "Found a bug? Need support?"
2177
  msgstr "Znalazłeś błąd? Potrzebujesz pomocy?"
2178
 
2179
- #: admin/templates/sidebar.tpl.php:55
2180
- #@ WPBDM
2181
  msgctxt "admin sidebar"
2182
  msgid "If you've found a bug or need support <a>visit the forums!</a>"
2183
  msgstr "Jeśli znalazłeś błąd lub potrzebujesz pomocy zajrzyj na <a>forum!</a>"
2184
 
2185
- #: admin/templates/sidebar.tpl.php:58
2186
- #@ WPBDM
2187
  msgctxt "admin sidebar"
2188
  msgid "Full plugin documentation"
2189
  msgstr "Pełna Dokumentacja Pluginu"
2190
 
2191
- #: admin/templates/sidebar.tpl.php:59
2192
- #@ WPBDM
2193
  msgctxt "admin sidebar"
2194
  msgid "Quick Start Guide"
2195
  msgstr "Szybki Start Instrukcja"
2196
 
2197
- #: admin/templates/sidebar.tpl.php:68
2198
- #@ WPBDM
 
 
 
 
 
 
2199
  msgctxt "admin sidebar"
2200
  msgid "Installed Modules"
2201
  msgstr "Zainstalowane moduły"
2202
 
2203
- #: admin/templates/sidebar.tpl.php:79
2204
- #: admin/templates/sidebar.tpl.php:88
2205
- #@ WPBDM
2206
  msgctxt "admin sidebar"
2207
  msgid "Installed"
2208
  msgstr "Zainstalowane "
2209
 
2210
- #: admin/templates/sidebar.tpl.php:81
2211
- #: admin/templates/sidebar.tpl.php:88
2212
- #@ WPBDM
2213
  msgctxt "admin sidebar"
2214
  msgid "Not Installed"
2215
  msgstr "Nie zainstalowane"
2216
 
2217
- #: admin/templates/sidebar.tpl.php:87
2218
- #@ WPBDM
2219
  msgctxt "admin sidebar"
2220
  msgid "Enhanced Categories Module"
2221
  msgstr "Moduł zaawansowane kategorie"
2222
 
2223
- #: admin/templates/transactions.tpl.php:2
2224
- #@ WPBDM
2225
- msgctxt "admin transactions"
2226
- msgid "Transactions"
2227
- msgstr "Transakcje"
2228
 
2229
- #: admin/templates/uninstall-capture-form.tpl.php:5
2230
- #@ WPBDM
2231
- msgctxt "uninstall"
2232
- msgid "It doesn't work with my theme/plugins/site"
2233
- msgstr "To nie działa z moim szablonem/pluginem/stroną"
 
2234
 
2235
- #: admin/templates/uninstall-capture-form.tpl.php:6
2236
- #@ WPBDM
2237
- msgctxt "uninstall"
2238
- msgid "I can't set it up/Too complicated"
2239
- msgstr "Nie mogę ustawić / Zbyt skomplikowane"
 
2240
 
2241
- #: admin/templates/uninstall-capture-form.tpl.php:7
2242
- #@ WPBDM
2243
- msgctxt "uninstall"
2244
- msgid "Doesn't solve my problem"
2245
- msgstr "Nie rozwiązano mojego problemu"
2246
 
2247
- #: admin/templates/uninstall-capture-form.tpl.php:8
2248
- #@ WPBDM
2249
- msgctxt "uninstall"
2250
- msgid "Don't need it anymore/Not using it"
2251
- msgstr "Więcej go nie potrzebuje/Nie używam go"
2252
 
2253
- #: admin/templates/uninstall-capture-form.tpl.php:9
2254
- #@ WPBDM
2255
- msgctxt "uninstall"
2256
- msgid "Other"
2257
- msgstr "Inne"
2258
 
2259
- #: admin/templates/uninstall-capture-form.tpl.php:16
2260
- #@ WPBDM
2261
- msgctxt "uninstall"
2262
- msgid "We're sorry to see you leave. Could you take 10 seconds and answer one question for us to help us make the product better for everyone in the future?"
2263
- msgstr "Jest nam przykro, że nas opuszczasz. Czy możesz poświęcić nam 10sekund i odpowidzieć na kilka pytań, abyśmy mogli lepiej dostosować nasz produkt dla potrzeb innych użytkowników?"
2264
 
2265
- #: admin/templates/uninstall-capture-form.tpl.php:19
2266
- #@ WPBDM
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
2267
  msgctxt "uninstall"
2268
  msgid "Why are you deleting Business Directory Plugin?"
2269
  msgstr "Dla czego odinstalowujesz Katalog Firm?"
2270
 
 
2271
  #: admin/templates/uninstall-capture-form.tpl.php:29
2272
- #@ WPBDM
2273
  msgctxt "uninstall"
2274
  msgid "Please tell us why are you deleting Business Directory Plugin."
2275
  msgstr "Prosimy Napisz nam dla czego odinstalowujesz Katalog Firm?"
2276
 
 
2277
  #: admin/templates/uninstall-capture-form.tpl.php:36
2278
- #@ WPBDM
2279
  msgctxt "uninstall"
2280
  msgid "Uninstall Plugin"
2281
  msgstr "Odinstaluj Plugin"
2282
 
 
2283
  #: admin/templates/uninstall-complete.tpl.php:2
2284
- #@ WPBDM
2285
  msgctxt "admin uninstall"
2286
  msgid "Uninstall Business Directory"
2287
  msgstr "Odinstaluj Katalog Firm"
2288
 
 
2289
  #: admin/templates/uninstall-complete.tpl.php:7
2290
- #@ WPBDM
2291
  msgctxt "admin uninstall"
2292
  msgid "Uninstall completed."
2293
  msgstr "Deinstalacja zakończona."
2294
 
 
2295
  #: admin/templates/uninstall-complete.tpl.php:8
2296
- #@ WPBDM
2297
  msgctxt "admin uninstall"
2298
  msgid "Return to Dashboard."
2299
  msgstr "Powrót do Panelu Admina WP."
2300
 
 
2301
  #: admin/templates/uninstall-confirm.tpl.php:1
2302
- #@ WPBDM
2303
  msgctxt "uninstall"
2304
  msgid "Uninstall Business Directory Plugin"
2305
  msgstr "Odinstaluj Katalog Firm"
2306
 
 
2307
  #: admin/tracking.php:188
2308
- #@ WPBDM
2309
  msgctxt "tracking"
2310
  msgid "Help Improve Business Directory"
2311
  msgstr "Pomóż doskonalić Katalog Firm"
2312
 
 
2313
  #: admin/tracking.php:190
2314
- #@ WPBDM
2315
  msgctxt "tracking"
2316
- msgid "Can Business Directory keep track of your theme, plugins, and other non-personal, non-identifying information to help us in testing the plugin for future releases?"
2317
- msgstr "Czy Katalog Firm może śledzić, templatki, wtyczki i inne informacje niebędące danymi osobowymi, nieidentyfikujące aby pomóc nam w testowaniu pluginu dla przyszłych wersji?"
 
 
 
 
 
 
2318
 
 
2319
  #: admin/tracking.php:192
2320
- #@ WPBDM
2321
  msgctxt "tracking"
2322
  msgid "What do you track?"
2323
  msgstr "Co śledzicie?"
2324
 
 
2325
  #: admin/tracking.php:214
2326
- #@ WPBDM
2327
  msgctxt "tracking"
2328
  msgid "No, Thanks."
2329
  msgstr "Nie, dziękuję"
2330
 
 
2331
  #: admin/tracking.php:221
2332
- #@ WPBDM
2333
  msgctxt "tracking"
2334
  msgid "Allow Tracking"
2335
  msgstr "Zezwalam na śledzenie"
2336
 
2337
- #: admin/transactions.php:9
2338
- #@ WPBDM
2339
- msgctxt "admin transactions"
2340
- msgid "transaction"
2341
- msgstr "transakcja"
2342
-
2343
- #: admin/transactions.php:10
2344
- #@ WPBDM
2345
- msgctxt "admin transactions"
2346
- msgid "transactions"
2347
- msgstr "transakcje"
2348
-
2349
- #: admin/transactions.php:17
2350
- #@ WPBDM
2351
- msgctxt "admin transactions"
2352
- msgid "ID"
2353
- msgstr "ID"
2354
-
2355
- #: admin/transactions.php:18
2356
- #@ WPBDM
2357
- msgctxt "admin transactions"
2358
- msgid "Type"
2359
- msgstr "Rodzaj"
2360
-
2361
- #: admin/transactions.php:19
2362
- #@ WPBDM
2363
- msgctxt "admin transactions"
2364
- msgid "Listing"
2365
- msgstr "Oferta"
2366
-
2367
- #: admin/transactions.php:20
2368
- #@ WPBDM
2369
- msgctxt "admin transactions"
2370
- msgid "Status"
2371
- msgstr "Status"
2372
-
2373
- #: admin/transactions.php:21
2374
- #@ WPBDM
2375
- msgctxt "admin transactions"
2376
- msgid "Amount"
2377
- msgstr "Kwota"
2378
-
2379
- #: admin/transactions.php:22
2380
- #@ WPBDM
2381
- msgctxt "admin transactions"
2382
- msgid "Date"
2383
- msgstr "Data"
2384
-
2385
- #: admin/transactions.php:33
2386
- #@ WPBDM
2387
- msgctxt "admin transactions"
2388
- msgid "Listing Submit (Initial Payment)"
2389
- msgstr "Prześlij ofertę"
2390
-
2391
- #: admin/transactions.php:34
2392
- #@ WPBDM
2393
- msgctxt "admin transactions"
2394
- msgid "Listing Edit (Category Fee)"
2395
- msgstr "Edytuj ofertę"
2396
-
2397
- #: admin/transactions.php:35
2398
- #@ WPBDM
2399
- msgctxt "admin transactions"
2400
- msgid "Renewal"
2401
- msgstr "Odśwież"
2402
-
2403
- #: admin/transactions.php:36
2404
- #@ WPBDM
2405
- msgctxt "admin transactions"
2406
- msgid "Upgrade to Featured"
2407
- msgstr "Podnieś status do \"Wyróżnione\""
2408
-
2409
- #: admin/transactions.php:53
2410
- #@ WPBDM
2411
- msgctxt "admin transactions"
2412
- msgid "Gateway"
2413
- msgstr "Bramka"
2414
-
2415
- #: admin/transactions.php:55
2416
- #@ WPBDM
2417
- msgctxt "admin transactions"
2418
- msgid "Payer Info"
2419
- msgstr "Informacje o płatniku"
2420
-
2421
- #: admin/transactions.php:57
2422
- #@ WPBDM
2423
- msgctxt "admin transactions"
2424
- msgid "Name"
2425
- msgstr "Nazwisko"
2426
-
2427
- #: admin/transactions.php:59
2428
- #@ WPBDM
2429
- msgctxt "admin transactions"
2430
- msgid "E-Mail"
2431
- msgstr "E-mail"
2432
-
2433
- #: admin/transactions.php:63
2434
- #@ WPBDM
2435
- msgctxt "admin transactions"
2436
- msgid "Processed On"
2437
- msgstr "Przetwarzane na"
2438
-
2439
- #: admin/transactions.php:65
2440
- #@ WPBDM
2441
- msgctxt "admin transactions"
2442
- msgid "Processed By"
2443
- msgstr "Przetwarzane przez"
2444
-
2445
- #: admin/transactions.php:101
2446
- #@ WPBDM
2447
- msgctxt "admin transactions"
2448
- msgid "Approve"
2449
- msgstr "Zatwierdzenie"
2450
-
2451
- #: admin/transactions.php:105
2452
- #@ WPBDM
2453
- msgctxt "admin transactions"
2454
- msgid "Reject"
2455
- msgstr "Odrzucoenie"
2456
-
2457
- #: admin/transactions.php:111
2458
- #@ WPBDM
2459
- msgctxt "admin transactions"
2460
- msgid "+ Details"
2461
- msgstr "+ Szczegóły"
2462
-
2463
- #: admin/transactions.php:116
2464
- #@ WPBDM
2465
- msgctxt "admin transactions"
2466
- msgid "Delete"
2467
- msgstr "Usuń"
2468
-
2469
- #: admin/transactions.php:140
2470
- #@ WPBDM
2471
- msgctxt "admin transactions"
2472
- msgid "All"
2473
- msgstr "Wszystkie"
2474
-
2475
- #: admin/transactions.php:148
2476
- #@ WPBDM
2477
- msgctxt "admin transactions"
2478
- msgid "Approved"
2479
- msgstr "Zatwierdzono"
2480
-
2481
- #: admin/transactions.php:156
2482
- #@ WPBDM
2483
- msgctxt "admin transactions"
2484
- msgid "Pending"
2485
- msgstr "Oczekujące"
2486
-
2487
- #: admin/transactions.php:164
2488
- #@ WPBDM
2489
- msgctxt "admin transactions"
2490
- msgid "Rejected"
2491
- msgstr "Odrzucono"
2492
-
2493
- #: admin/transactions.php:259
2494
- #@ WPBDM
2495
- msgctxt "admin"
2496
- msgid "The transaction has been deleted."
2497
- msgstr "Transakcja została usunięta."
2498
-
2499
- #: business-directory-plugin.php:655
2500
- #@ WPBDM
2501
  msgctxt "admin plugins"
2502
  msgid "Settings"
2503
  msgstr "Ustawienia"
2504
 
2505
- #: business-directory-plugin.php:665
2506
- #@ WPBDM
2507
- msgctxt "post type general name"
2508
- msgid "Directory"
2509
- msgstr "Katalog"
2510
-
2511
- #: business-directory-plugin.php:666
2512
- #@ WPBDM
2513
- msgctxt "post type singular name"
2514
- msgid "Directory"
2515
- msgstr "Katalog"
2516
-
2517
- #: business-directory-plugin.php:667
2518
- #@ WPBDM
2519
- msgctxt "listing"
2520
- msgid "Add New Listing"
2521
- msgstr "Dodaj nową ofertę"
2522
-
2523
- #: business-directory-plugin.php:668
2524
- #@ WPBDM
2525
- msgctxt "post type"
2526
- msgid "Add New Listing"
2527
- msgstr "Dodaj nową ofertę"
2528
-
2529
- #: business-directory-plugin.php:669
2530
- #: core/compatibility/deprecated.php:255
2531
- #@ WPBDM
2532
- msgid "Edit Listing"
2533
- msgstr "Edycja Firmy"
2534
-
2535
- #: business-directory-plugin.php:670
2536
- #@ WPBDM
2537
- msgid "New Listing"
2538
- msgstr "Nowa Firma"
2539
-
2540
- #: business-directory-plugin.php:671
2541
- #@ WPBDM
2542
- msgid "View Listing"
2543
- msgstr "Widok"
2544
-
2545
- #: business-directory-plugin.php:672
2546
- #@ WPBDM
2547
- msgid "Search Listings"
2548
- msgstr "Szukaj Firmy"
2549
-
2550
- #: business-directory-plugin.php:673
2551
- #@ WPBDM
2552
- msgid "No listings found"
2553
- msgstr "Nie znaleziono "
2554
-
2555
- #: business-directory-plugin.php:674
2556
- #@ WPBDM
2557
- msgid "No listings found in trash"
2558
- msgstr "Nie znaleziono "
2559
-
2560
- #: business-directory-plugin.php:696
2561
- #@ WPBDM
2562
- msgid "Directory Categories"
2563
- msgstr "Kategorie Katalogu"
2564
-
2565
- #: business-directory-plugin.php:822
2566
- #: business-directory-plugin.php:829
2567
- #, php-format
2568
- #@ WPBDM
2569
  msgctxt "rss feed"
2570
  msgid "%s Feed"
2571
  msgstr "%s RSS"
2572
 
2573
- #: business-directory-plugin.php:1187
2574
- #@ WPBDM
2575
- msgctxt "title"
 
 
2576
  msgid "Submit A Listing"
2577
  msgstr "Dodaj Firmę"
2578
 
2579
- #: business-directory-plugin.php:1197
2580
- #@ WPBDM
2581
  msgctxt "title"
2582
  msgid "Find a Listing"
2583
  msgstr "Znajdź Firmę"
2584
 
2585
- #: business-directory-plugin.php:1207
2586
- #@ WPBDM
2587
  msgctxt "title"
2588
  msgid "View All Listings"
2589
  msgstr "Zobacz wszystkie Firmy"
2590
 
2591
- #: business-directory-plugin.php:1227
2592
- #, php-format
2593
- #@ WPBDM
2594
  msgctxt "title"
2595
  msgid "Listings tagged: %s"
2596
  msgstr "Oferty otagowane: %s"
2597
 
2598
- #: business-directory-plugin.php:1452
2599
- #@ WPBDM
2600
- msgctxt "comment-form"
2601
- msgid "The reCAPTCHA wasn't entered correctly."
2602
- msgstr "ReCaptcha nie została poprawnie wprowadzona."
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
2603
 
2604
- #: core/class-form-field.php:51
2605
- #@ WPBDM
2606
  msgctxt "form-fields-api"
2607
  msgid "Invalid form field type"
2608
  msgstr "Niewłaściwy typ Pola"
2609
 
2610
- #: core/class-form-field.php:402
2611
- #@ WPBDM
2612
  msgctxt "form-fields-api"
2613
  msgid "Field label is required."
2614
  msgstr "Etykieta pola jest wymagana."
2615
 
2616
- #: core/class-form-field.php:419
2617
- #, php-format
2618
- #@ WPBDM
 
 
 
 
2619
  msgctxt "form-fields-api"
2620
- msgid "There can only be one field with association \"%s\". Please select another association."
2621
- msgstr "Może być użyte tylko jedno pole z przypisaniem \"%s\". Prosze wybrać inne przypisanie."
 
 
 
 
2622
 
2623
- #: core/class-form-field.php:429
2624
- #, php-format
2625
- #@ WPBDM
2626
  msgctxt "form-fields-api"
2627
  msgid "\"%s\" is an invalid field type for this association."
2628
  msgstr "\"%s\" jest niewłaściwym typem pola do tego przypisania"
2629
 
2630
- #: core/class-form-field.php:460
2631
- #@ WPBDM
2632
  msgctxt "form-fields-api"
2633
  msgid "Invalid field ID"
2634
  msgstr "Niewłaściwe ID Pola"
2635
 
2636
- #: core/class-form-field.php:469
2637
- #@ WPBDM
2638
  msgctxt "form-fields api"
2639
- msgid "This form field can't be deleted because it is required for the plugin to work."
2640
- msgstr "To pole formularza nie może zostac usunięte, ponieważ jest ono nie zbędne do działania pluginu."
 
 
 
 
2641
 
2642
- #: core/class-form-field.php:481
2643
- #@ WPBDM
2644
  msgctxt "form-fields-api"
2645
  msgid "An error occurred while trying to delete this field."
2646
  msgstr "Wykryto błąd w trakcie próby usunięcia tego pola."
2647
 
2648
- #: core/class-listing-upgrade-api.php:16
2649
- #@ WPBDM
2650
- msgctxt "listings-api"
2651
- msgid "Normal Listing"
2652
- msgstr "Normalna oferta"
2653
-
2654
- #: core/class-listing-upgrade-api.php:20
2655
- #@ WPBDM
2656
- msgctxt "listings-api"
2657
- msgid "Featured Listing"
2658
- msgstr "Wyróżniona oferta"
2659
 
2660
- #: core/class-listing.php:287
2661
- #: core/class-listing.php:313
2662
- #@ WPBDM
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
2663
  msgctxt "listing"
2664
  msgid "(Fee Unavailable)"
2665
  msgstr "(Abonament niedostępny)"
2666
 
2667
- #: core/class-listings-api.php:294
2668
- #, php-format
2669
- #@ WPBDM
2670
  msgctxt "notify email"
2671
  msgid "[%s] New listing notification"
2672
  msgstr "[%s] Powiadomienie o Nowej ofercie"
2673
 
2674
- #: core/class-listings-api.php:313
2675
- #, php-format
2676
- #@ WPBDM
2677
  msgctxt "notify email"
2678
  msgid "[%s] Listing edit notification"
2679
  msgstr "[%s] Powiadomienie o Edycji oferty"
2680
 
2681
- #: core/class-listings-widget.php:45
2682
- #: core/widget-search.php:22
2683
- #@ WPBDM
2684
  msgctxt "widgets"
2685
  msgid "Title:"
2686
  msgstr "Tytuł:"
2687
 
 
2688
  #: core/class-listings-widget.php:51
2689
- #@ WPBDM
2690
  msgctxt "widgets"
2691
  msgid "Number of listings to display:"
2692
  msgstr "Liczba wyświetlanych ofert"
2693
 
 
2694
  #: core/class-listings-widget.php:60
2695
- #@ WPBDM
2696
  msgctxt "widgets"
2697
  msgid "Thumbnails"
2698
  msgstr "Miniatury"
2699
 
 
2700
  #: core/class-listings-widget.php:68
2701
- #@ WPBDM
2702
  msgctxt "widgets"
2703
  msgid "Show thumbnails"
2704
  msgstr "Pokaż Miniatury"
2705
 
2706
- #: core/class-settings.php:593
2707
- #@ WPBDM
2708
- msgctxt "admin settings"
2709
- msgid "Thumbnails"
2710
- msgstr "Miniatury"
2711
-
2712
- #: core/class-settings.php:594
2713
- #@ WPBDM
2714
- msgctxt "admin settings"
2715
- msgid "Thumbnail width (px)"
2716
- msgstr "Szerokość miniatury (px)"
2717
-
2718
- #: core/class-settings.php:595
2719
- #@ WPBDM
2720
- msgctxt "admin settings"
2721
- msgid "Thumbnail height (px)"
2722
- msgstr "Wysokość miniatury (px)"
2723
-
2724
- #: core/class-settings.php:598
2725
- #@ WPBDM
2726
- msgctxt "admin settings"
2727
- msgid "Crop thumbnails to exact dimensions?"
2728
- msgstr "Przyciąć miniaturę do dokładnych wymiarów?"
2729
-
2730
- #: core/class-settings.php:601
2731
- #@ WPBDM
2732
- msgctxt "admin settings"
2733
- msgid "When enabled images will match exactly the dimensions above but part of the image may be cropped out. If disabled, image thumbnails will be resized to match the specified width and their height will be adjusted proportionally. Depending on the uploaded images, thumbnails may have different heights."
2734
- msgstr "Jeśli zaznaczysz tą opcje - Obrazy zostaną docięte dokładnie do wymiarów podanych powyżej, ale część obrazu może zostać odcięta. Jeśli nie zaznaczysz tej opcji - Obrazy zostaną przeskalowane do wymaganej szerokości a ich wysokość będzie dopasowana proporcjonalnie. Każdy z dodanych obrazów przy tej opcji, może mieć inną wysokość."
2735
-
2736
  #: core/class-listings-widget.php:72
2737
- #@ WPBDM
2738
  msgctxt "widgets"
2739
  msgid "Image width (in px):"
2740
  msgstr "Szerokość Obrazu (w px):"
2741
 
 
2742
  #: core/class-listings-widget.php:78
2743
- #@ WPBDM
2744
  msgctxt "widgets"
2745
  msgid "Leave blank for automatic width."
2746
  msgstr "Zostaw puste, aby automatycznie ustawić szerokość."
2747
 
 
2748
  #: core/class-listings-widget.php:83
2749
- #@ WPBDM
2750
  msgctxt "widgets"
2751
  msgid "Image height (in px):"
2752
  msgstr "Wysokość Obrazu (w px)"
2753
 
 
2754
  #: core/class-listings-widget.php:89
2755
- #@ WPBDM
2756
  msgctxt "widgets"
2757
  msgid "Leave blank for automatic height."
2758
  msgstr "Zostaw puste, aby automatycznie ustawić wysokość."
2759
 
2760
- #: core/class-payment.php:218
2761
- #, php-format
2762
- #@ WPBDM
2763
  msgctxt "listings"
2764
- msgid "Fee \"%s\" for category \"%s\""
2765
  msgstr "Abonament \"%s\" dla kategorii \"%s\""
2766
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
2767
  #: core/class-settings.php:24
2768
- #@ WPBDM
2769
  msgctxt "admin settings"
2770
  msgid "General"
2771
  msgstr "Główne"
2772
 
 
2773
  #: core/class-settings.php:26
2774
- #@ WPBDM
2775
  msgctxt "admin settings"
2776
  msgid "Data Collection"
2777
  msgstr "Zbiór danych"
2778
 
 
2779
  #: core/class-settings.php:29
2780
- #@ WPBDM
2781
  msgctxt "admin settings"
2782
- msgid "Allow BD to anonymously collect information about your installed plugins, themes and WP version?"
2783
- msgstr "Pozwalać Pluginowi BD na zbieranie danych dotyczących zainstalowanych szblonów, pluginów i wersji WP?"
 
 
 
 
2784
 
 
2785
  #: core/class-settings.php:34
2786
- #@ WPBDM
2787
  msgctxt "admin settings"
2788
  msgid "<a>Learn more</a> about what BD does and does NOT track."
2789
  msgstr "<a>Dowiedz się więcej</a> na temat danych jakie zbiera plugin BD."
2790
 
 
2791
  #: core/class-settings.php:37
2792
- #@ WPBDM
2793
  msgctxt "admin settings"
2794
  msgid "Permalink Settings"
2795
  msgstr "Ustawienia linków"
2796
 
 
2797
  #: core/class-settings.php:38
2798
- #@ WPBDM
2799
  msgctxt "admin settings"
2800
  msgid "Directory Listings Slug"
2801
  msgstr "Slug Katalogu Firm"
2802
 
 
2803
  #: core/class-settings.php:39
2804
- #@ WPBDM
2805
  msgctxt "admin settings"
2806
  msgid "Categories Slug"
2807
  msgstr "Slug Kategorii"
2808
 
 
2809
  #: core/class-settings.php:39
2810
- #@ WPBDM
2811
  msgctxt "admin settings"
2812
- msgid "The slug can't be in use by another term. Avoid \"category\", for instance."
2813
- msgstr "Slug nie może być użyty dla innych warunków. Unikać dla przykładu \"kategoria\"."
 
 
 
2814
 
 
2815
  #: core/class-settings.php:40
2816
- #@ WPBDM
2817
  msgctxt "admin settings"
2818
  msgid "Tags Slug"
2819
  msgstr "Slug Tagów"
2820
 
 
2821
  #: core/class-settings.php:40
2822
- #@ WPBDM
2823
  msgctxt "admin settings"
2824
  msgid "The slug can't be in use by another term. Avoid \"tag\", for instance."
2825
- msgstr "Slug nie może być użyty dla innych warunków. Unikać dla przykładu \"tag\"."
 
2826
 
 
2827
  #: core/class-settings.php:43
2828
- #@ WPBDM
2829
  msgctxt "admin settings"
2830
  msgid "Remove listing ID from directory URLs?"
2831
  msgstr "Usuwać ID oferty z linków URL?"
2832
 
 
 
 
 
 
 
 
 
 
 
 
 
 
2833
  #: core/class-settings.php:50
2834
- #@ WPBDM
2835
  msgctxt "admin settings"
2836
  msgid "reCAPTCHA Settings"
2837
  msgstr "Ustawienia reCAPTCHA"
2838
 
 
2839
  #: core/class-settings.php:53
2840
- #@ WPBDM
2841
  msgctxt "admin settings"
2842
  msgid "Need API keys for reCAPTCHA? Get them <a>here</a>."
2843
  msgstr "Potrzebujesz klucza API dla reCAPTCHA? Jest <a>tutaj</a>."
2844
 
 
2845
  #: core/class-settings.php:55
2846
- #@ WPBDM
2847
  msgctxt "admin settings"
2848
  msgid "Use reCAPTCHA for contact forms"
2849
  msgstr "Użyj reCAPTCHA dla formularza kontaktu."
2850
 
2851
  #: core/class-settings.php:56
2852
- #@ WPBDM
 
 
 
 
 
2853
  msgctxt "admin settings"
2854
  msgid "Use reCAPTCHA for listing submits"
2855
  msgstr "Użyj reCAPTCHA dla wiadomości do właściciela oferty."
2856
 
2857
- #: core/class-settings.php:59
2858
- #@ WPBDM
2859
  msgctxt "admin settings"
2860
  msgid "Use reCAPTCHA for listing comments?"
2861
  msgstr "Użyć reCAPTCHA dla komentarzy ofert?"
2862
 
2863
- #: core/class-settings.php:62
2864
- #@ WPBDM
2865
  msgctxt "admin settings"
2866
  msgid "reCAPTCHA Public Key"
2867
  msgstr "reCAPTCHA Klucz publiczny"
2868
 
2869
- #: core/class-settings.php:63
2870
- #@ WPBDM
2871
  msgctxt "admin settings"
2872
  msgid "reCAPTCHA Private Key"
2873
  msgstr "reCAPTCHA Klucz prywatny"
2874
 
2875
- #: core/class-settings.php:67
2876
- #: core/class-settings.php:76
2877
- #@ WPBDM
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
2878
  msgctxt "admin settings"
2879
  msgid "Terms and Conditions"
2880
  msgstr "Warunki i regulamin korzystania z serwisu."
2881
 
2882
- #: core/class-settings.php:70
2883
- #@ WPBDM
2884
  msgctxt "admin settings"
2885
  msgid "Display and require user agreement to Terms and Conditions"
2886
- msgstr "Pokaż i żądaj od użytkownika przeczytania \"Warunki i regulamin korzystania z serwisu\"."
 
 
2887
 
2888
- #: core/class-settings.php:79
2889
- #@ WPBDM
 
 
 
 
 
 
 
 
 
2890
  msgctxt "admin settings"
2891
- msgid "Enter text or a URL starting with http. If you use a URL, the Terms and Conditions text will be replaced by a link to the appropiate page."
2892
- msgstr "Wprowadź tekst lub adres url zaczynając od http://. Jeśli wprowadzisz adres url, regulamin i warunki korzystania z serwisu zostaną zastąpione linkiem do odpowiedniej strony."
 
 
 
 
 
2893
 
2894
- #: core/class-settings.php:83
2895
- #@ WPBDM
2896
  msgctxt "admin settings"
2897
  msgid "Directory Display Options"
2898
  msgstr "Opcje wyświetlania Katalogu"
2899
 
2900
- #: core/class-settings.php:84
2901
- #@ WPBDM
 
 
 
 
 
2902
  msgctxt "admin settings"
2903
  msgid "Show the \"Submit listing\" button."
2904
  msgstr "Wyświetl przycisk \"Dodaj Firmę\" ."
2905
 
2906
- #: core/class-settings.php:85
2907
- #@ WPBDM
2908
  msgctxt "admin settings"
2909
  msgid "Show \"Search listings\"."
2910
  msgstr "Wyświetl \"Szukaj Firmy\"."
2911
 
2912
- #: core/class-settings.php:86
2913
- #@ WPBDM
2914
  msgctxt "admin settings"
2915
  msgid "Show the \"View Listings\" button."
2916
  msgstr "Wyświetl przycisk \"Pokaż Firmy\" ."
2917
 
2918
- #: core/class-settings.php:87
2919
- #@ WPBDM
2920
  msgctxt "admin settings"
2921
  msgid "Show the \"Directory\" button."
2922
  msgstr "Wyświetl przycisk \"Katalog\" ."
2923
 
2924
- #: core/class-settings.php:92
2925
- #@ WPBDM
 
 
 
 
 
2926
  msgctxt "admin settings"
2927
  msgid "Directory Search"
2928
  msgstr "Katalog Szukanie"
2929
 
2930
- #: core/class-settings.php:95
2931
- #@ WPBDM
2932
  msgctxt "admin settings"
2933
- msgid "Display search form when displaying search results?"
2934
- msgstr "Wyświetlać formularz wyszukiwania gdu pokazywane są wyniki wyszukiwania?"
2935
 
2936
- #: core/class-settings.php:102
2937
- #@ WPBDM
2938
  msgctxt "admin settings"
2939
- msgid "You have selected a textarea field to be included in quick searches. Searches involving those fields are very expensive and could result in timeouts and/or general slowness."
2940
- msgstr "Zaznaczyłeś, aby pole tekstowe było dostępne w trybie szybkiego wyszukiwania. Wyszukiwania z udziałem tych pól są bardzo długie i mogą doprowadzić do przekroczenia limitu czasu i /lub ogólnego spowolnienia."
2941
 
2942
- #: core/class-settings.php:107
2943
- #@ WPBDM
2944
  msgctxt "admin settings"
2945
- msgid "Quick search fields"
2946
- msgstr "Pola szybkiego wyszukiwania"
2947
 
2948
- #: core/class-settings.php:123
2949
- #@ WPBDM
2950
  msgctxt "admin settings"
2951
- msgid "Miscellaneous Settings"
2952
- msgstr "Ustawienia Pozostałych funkcji"
2953
 
2954
- #: core/class-settings.php:141
2955
- #: core/class-settings.php:604
2956
- #@ WPBDM
2957
  msgctxt "admin settings"
2958
- msgid "Listings"
2959
- msgstr "Oferty"
 
 
 
 
 
 
2960
 
2961
- #: admin/class-admin.php:242
2962
- #: admin/class-admin.php:243
2963
- #@ WPBDM
2964
- msgctxt "admin menu"
2965
- msgid "Listings"
2966
- msgstr "Oferty"
 
 
 
 
2967
 
2968
- #: core/class-settings.php:142
2969
- #: core/class-settings.php:288
2970
- #@ WPBDM
2971
  msgctxt "admin settings"
2972
- msgid "General Settings"
2973
- msgstr "Ustawienia Główne"
2974
 
2975
- #: core/class-settings.php:115
2976
- #@ WPBDM
2977
  msgctxt "admin settings"
2978
  msgid "Enable high performance searches?"
2979
  msgstr "Włączyć zaawansowane wyszsukiwanie?"
2980
 
2981
- #: core/class-settings.php:118
2982
- #@ WPBDM
 
 
 
 
 
 
 
 
 
 
 
 
2983
  msgctxt "admin settings"
2984
- msgid "Enabling this makes BD sacrifice result quality to improve speed. This is helpful if you're on shared hosting plans, where database performance is an issue."
2985
- msgstr "Włączenie tej funkcji, spowoduje że Katalog Firm poświęci jakość wyszukiwania aby przyśpieszyć działanie wyszukiwarki. Pomocne w przypadku niektórych, wolniejszych hostingów."
2986
 
2987
- #: core/class-settings.php:127
2988
- #@ WPBDM
2989
  msgctxt "admin settings"
2990
- msgid "Check this if you are having trouble with BD, particularly when importing or exporting CSV files."
2991
- msgstr "Zaznacz opcję, jeśli Katalog Firm ma problemy z Importem lub Exportem Plików CSV."
 
 
 
 
2992
 
2993
- #: core/class-settings.php:130
2994
- #@ WPBDM
2995
  msgctxt "admin settings"
2996
- msgid "If this compatibility mode doesn't solve your issue, you may be experiencing a more serious conflict. <a>Here is an article</a> about how to test for theme and plugin conflicts with Business Directory."
2997
- msgstr "Jesli ten tryb kompatybilności nie rozwiązał Twojego problemu, możesz mieć do czynienia z poważniejszym konfliktem. <a>Tu znajduje się artykuł</a> o tym jak sprawdzać konflikty szablonów i pluginów działających w środowisku Katalogu Firm."
 
 
 
 
 
 
 
2998
 
2999
- #: core/class-settings.php:133
3000
- #@ WPBDM
3001
  msgctxt "admin settings"
3002
  msgid "Enable AJAX compatibility mode?"
3003
  msgstr "Włączyć tryb kompatybilności AJAX?"
3004
 
3005
- #: core/class-settings.php:144
3006
- #@ WPBDM
 
 
 
 
 
 
 
 
 
 
 
 
 
3007
  msgctxt "admin settings"
3008
  msgid "Listings per page"
3009
  msgstr "Firm na stronę"
3010
 
3011
- #: core/class-settings.php:145
3012
- #@ WPBDM
3013
  msgctxt "admin settings"
3014
- msgid "Number of listings to show per page. Use a value of \"0\" to show all listings."
3015
- msgstr "Ilość ofert wyświetlanych na jednej stronie. Użyj wartości \"0\", aby pokazać wszystkie oferty."
 
 
 
 
3016
 
3017
- #: core/class-settings.php:147
3018
- #@ WPBDM
3019
  msgctxt "admin settings"
3020
  msgid "Listing duration for no-fee sites (in days)"
3021
  msgstr "Okres ważności oferty dla trybu bezpłatnego (w dniach)"
3022
 
3023
- #: core/class-settings.php:148
3024
- #@ WPBDM
3025
  msgctxt "admin settings"
3026
- msgid "Use a value of \"0\" to keep a listing alive indefinitely or enter a number less than 10 years (3650 days)."
3027
- msgstr "Użyj wartości \"0\" dla okresu ważności oferty - na zawsze, lub wprowadź liczbę mniejszą od 10 lat (3650 dni)."
 
 
 
 
3028
 
3029
- #: core/class-settings.php:154
3030
- #@ WPBDM
3031
  msgctxt "admin settings"
3032
  msgid "Include listing contact form on listing pages?"
3033
  msgstr "Dołączyć formularz kontaktu z właścicielem na stronie oferty?"
3034
 
3035
- #: core/class-settings.php:157
3036
- #@ WPBDM
3037
  msgctxt "admin settings"
3038
- msgid "Allows visitors to contact listing authors privately. Authors will receive the messages via email."
3039
- msgstr "Pozwolić użytkownikom na kontakt bezpośredni z włascicielem ofert. Właściciel otrzyma e-mail ze strony."
 
 
 
 
 
 
 
 
 
3040
 
3041
- #: core/class-settings.php:160
3042
- #@ WPBDM
3043
  msgctxt "admin settings"
3044
  msgid "Require login for using the contact form?"
3045
  msgstr "Wymagać logowania, aby używać formularza kontaktu?"
3046
 
3047
- #: core/class-settings.php:166
3048
- #@ WPBDM
3049
  msgctxt "admin settings"
3050
  msgid "Maximum number of contact form submits per day"
3051
  msgstr "Maksymalna liczba wiadomości wysłanych do właściciela w ciągu doby"
3052
 
3053
- #: core/class-settings.php:169
3054
- #@ WPBDM
3055
  msgctxt "admin settings"
3056
- msgid "Use this to prevent spamming of listing owners. 0 means unlimited submits per day."
 
 
3057
  msgstr "Użyj aby ograniczyć spam do właściciela oferty. 0 oznacza brak limitu."
3058
 
3059
- #: core/class-settings.php:175
3060
- #@ WPBDM
3061
  msgctxt "admin settings"
3062
  msgid "Include comment form on listing pages?"
3063
  msgstr "Pozwolić na komentarze na stronie oferty?"
3064
 
3065
- #: core/class-settings.php:178
3066
- #@ WPBDM
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
3067
  msgctxt "admin settings"
3068
- msgid "Allow visitors to discuss listings using the standard WordPress comment form. Comments are public."
3069
- msgstr "Pozwolić użytkownikom na dyskuję za pomocą standardowych komentarzy WordPress. Komentarze będą upublicznione."
3070
 
3071
- #: core/class-settings.php:179
3072
- #@ WPBDM
3073
  msgctxt "admin settings"
3074
  msgid "Show listings under categories on main page?"
3075
  msgstr "Wyświetlać oferty pod kategoriami na stronie głównej?"
3076
 
3077
- #: core/class-settings.php:180
3078
- #@ WPBDM
3079
  msgctxt "admin settings"
3080
  msgid "Status of listings upon uninstalling plugin"
3081
  msgstr "Status dla ofert, gdy odinstalowujesz plugin"
3082
 
3083
- #: core/class-settings.php:182
3084
- #@ WPBDM
 
 
 
 
 
 
 
 
 
 
3085
  msgctxt "admin settings"
3086
  msgid "Status of deleted listings"
3087
  msgstr "Status dla ofert usuniętych"
3088
 
3089
- #: core/class-settings.php:185
3090
- #@ WPBDM
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
3091
  msgctxt "admin settings"
3092
  msgid "Listing Renewal"
3093
  msgstr "Oferta Odświeżona"
3094
 
3095
- #: core/class-settings.php:186
3096
- #@ WPBDM
3097
  msgctxt "admin settings"
3098
  msgid "Turn on listing renewal option?"
3099
  msgstr "Włączyć opcję odnawiania ofert?"
3100
 
3101
- #: core/class-settings.php:189
3102
- #@ WPBDM
3103
  msgctxt "admin settings"
3104
  msgid "Allow recurring renewal payments?"
3105
  msgstr "Pozwalać na cykliczne płatności dla odnawiania ofert?"
3106
 
3107
- #: core/class-settings.php:192
3108
- #@ WPBDM
3109
  msgctxt "admin settings"
3110
- msgid "Allow users to opt in for automatic renewal of their listings. The fee is charged at the time the listing expires without user intervention."
3111
- msgstr "Pozwól użytkownikom zdecydować się na automatyczne przedłużenie ich ofert.Opłata pobierana jest w momencie gdy oferta wygasa, bez interwencji użytkownika."
 
 
 
 
 
3112
 
3113
- #: core/class-settings.php:196
3114
- #@ WPBDM
3115
  msgctxt "admin settings"
3116
  msgid "Use recurring payments as the default payment method?"
3117
  msgstr "Używać cyklicznych płatności jako standardowej metody płatności?"
3118
 
3119
- #: core/class-settings.php:199
3120
- #@ WPBDM
3121
  msgctxt "admin settings"
3122
- msgid "Enable automatic renewal without having users opt in during the submit process."
3123
- msgstr "Włączyć utomatyczne odnawianie ofert bez konieczności informowania użytkowników w trakcie dodawania oferty."
 
 
 
 
3124
 
3125
- #: core/class-settings.php:204
3126
- #@ WPBDM
3127
  msgctxt "admin settings"
3128
  msgid "Listing renewal e-mail threshold (in days)"
3129
  msgstr "Powiadomienie o konieczności odnowienia oferty (w dniach)"
3130
 
3131
- #: core/class-settings.php:207
3132
- #@ WPBDM
3133
  msgctxt "admin settings"
3134
- msgid "Configure how many days before listing expiration is the renewal e-mail sent."
3135
- msgstr "Ustaw na ile dni przed wygaśnięciem oferty wysłać e-mail o konieczności odnowienia."
 
 
 
3136
 
3137
- #: core/class-settings.php:211
3138
- #@ WPBDM
3139
  msgctxt "admin settings"
3140
- msgid "Send expiration notices including a cancel links to auto-renewed listings?"
3141
- msgstr "Wysyłać powiadomienie o zbliżającym się końcu ważności ofert wraz z linkiem do auto-odnawiania ofert?"
 
 
 
3142
 
3143
- #: core/class-settings.php:218
3144
- #@ WPBDM
3145
  msgctxt "admin settings"
3146
  msgid "Remind listing owners of expired listings (past due)?"
3147
- msgstr "Przypominać właścicielom ofert o wygaśnięciu okresu ważności oferty (po terminie)?"
 
 
3148
 
3149
- #: core/class-settings.php:223
3150
- #@ WPBDM
3151
  msgctxt "admin settings"
3152
  msgid "Listing renewal reminder e-mail threshold (in days)"
3153
  msgstr "Przypomnienie o konieczności odnowienia oferty (w dniach)"
3154
 
3155
- #: core/class-settings.php:226
3156
- #@ WPBDM
3157
  msgctxt "admin settings"
3158
- msgid "Configure how many days after the expiration of a listing an e-mail reminder should be sent to the owner."
3159
- msgstr "Ustaw po ilu dniach od wygaśnięcia oferty wysłać na dres e-mail właściciela przypomnienie o konieczności odnowienia oferty."
 
 
 
 
3160
 
3161
- #: core/class-settings.php:229
3162
- #@ WPBDM
3163
  msgctxt "admin settings"
3164
  msgid "Post/Category Settings"
3165
  msgstr "Ustawienia Postu/Kategori"
3166
 
3167
- #: core/class-settings.php:230
3168
- #@ WPBDM
3169
  msgctxt "admin settings"
3170
  msgid "Default new post status"
3171
  msgstr "Domyślny Status Nowego Postu"
3172
 
3173
- #: core/class-settings.php:233
3174
- #@ WPBDM
 
 
 
 
 
 
 
 
 
 
 
 
3175
  msgctxt "admin settings"
3176
  msgid "Edit post status"
3177
  msgstr "Status Postu po Edycji "
3178
 
3179
- #: core/class-settings.php:235
3180
- #@ WPBDM
3181
  msgctxt "admin settings"
3182
  msgid "Order categories list by"
3183
  msgstr "Sortuj Kategorie według "
3184
 
3185
- #: core/class-settings.php:237
3186
- #@ WPBDM
3187
  msgctxt "admin settings"
3188
  msgid "Name"
3189
  msgstr "Nazwa"
3190
 
3191
- #: core/class-settings.php:238
3192
- #@ WPBDM
3193
  msgctxt "admin settings"
3194
  msgid "Slug"
3195
  msgstr "Slug"
3196
 
3197
- #: core/class-settings.php:239
3198
- #@ WPBDM
3199
  msgctxt "admin settings"
3200
  msgid "Listing Count"
3201
  msgstr "Licznik ofert"
3202
 
3203
- #: core/class-settings.php:241
3204
- #@ WPBDM
3205
  msgctxt "admin settings"
3206
  msgid "Sort order for categories"
3207
  msgstr "Porządek wyświatlania dla kategorii"
3208
 
3209
- #: core/class-settings.php:242
3210
- #: core/class-settings.php:259
3211
- #@ WPBDM
3212
  msgctxt "admin settings"
3213
  msgid "Ascending"
3214
  msgstr "Rosnąco"
3215
 
3216
- #: core/class-settings.php:242
3217
- #: core/class-settings.php:259
3218
- #@ WPBDM
3219
  msgctxt "admin settings"
3220
  msgid "Descending"
3221
  msgstr "Malejąco"
3222
 
3223
- #: core/class-settings.php:243
3224
- #@ WPBDM
3225
  msgctxt "admin settings"
3226
  msgid "Show category post count?"
3227
  msgstr "Pokazywać liczbę ofert w kategorii?"
3228
 
3229
- #: core/class-settings.php:244
3230
- #@ WPBDM
3231
  msgctxt "admin settings"
3232
  msgid "Hide empty categories?"
3233
  msgstr "Ukryć puste kategorie?"
3234
 
3235
- #: core/class-settings.php:245
3236
- #@ WPBDM
3237
  msgctxt "admin settings"
3238
  msgid "Show only parent categories in category list?"
3239
  msgstr "Pokazywać tylko Nadrzędne kategorie na liście kategorii?"
3240
 
3241
- #: core/class-settings.php:247
3242
- #@ WPBDM
3243
  msgctxt "admin settings"
3244
  msgid "Listings Sorting"
3245
  msgstr "Porządkowanie Firm"
3246
 
3247
- #: core/class-settings.php:248
3248
- #@ WPBDM
3249
  msgctxt "admin settings"
3250
  msgid "Order directory listings by"
3251
  msgstr "Porządkuj listę według"
3252
 
3253
- #: core/class-settings.php:250
3254
- #@ WPBDM
3255
  msgctxt "admin settings"
3256
  msgid "Title"
3257
  msgstr "Tytuł"
3258
 
3259
- #: core/class-settings.php:251
3260
- #@ WPBDM
3261
  msgctxt "admin settings"
3262
  msgid "Author"
3263
  msgstr "Autor"
3264
 
3265
- #: core/class-settings.php:252
3266
- #@ WPBDM
3267
  msgctxt "admin settings"
3268
  msgid "Date posted"
3269
  msgstr "Data publikacji"
3270
 
3271
- #: core/class-settings.php:253
3272
- #@ WPBDM
3273
  msgctxt "admin settings"
3274
  msgid "Date last modified"
3275
  msgstr "Data ostatnij modyfikacji"
3276
 
3277
- #: core/class-settings.php:254
3278
- #@ WPBDM
3279
  msgctxt "admin settings"
3280
  msgid "Random"
3281
  msgstr "Losowo"
3282
 
3283
- #: core/class-settings.php:255
3284
- #@ WPBDM
 
 
 
 
3285
  msgctxt "admin settings"
3286
- msgid "Paid first then free"
3287
- msgstr "Najpierw płatne potem bezpłatne"
3288
 
3289
- #: core/class-settings.php:257
3290
- #@ WPBDM
3291
  msgctxt "admin settings"
3292
  msgid "Sort directory listings by"
3293
  msgstr "Porządkuj oferty "
3294
 
3295
- #: core/class-settings.php:258
3296
- #@ WPBDM
3297
  msgctxt "admin settings"
3298
  msgid "Ascending for ascending order A-Z, Descending for descending order Z-A"
3299
  msgstr "Rosnąco (od A do Z). Malejąco (od Z do A)."
3300
 
3301
- #: core/class-settings.php:263
3302
- #@ WPBDM
3303
  msgctxt "admin settings"
3304
  msgid "Enable sort bar?"
3305
  msgstr "Włączyć pasek sortowania?"
3306
 
3307
- #: core/class-settings.php:268
3308
- #@ WPBDM
3309
  msgctxt "admin settings"
3310
  msgid "Sortbar Fields"
3311
  msgstr "Pola paska sortowania"
3312
 
3313
- #: core/class-settings.php:277
3314
- #@ WPBDM
3315
  msgctxt "admin settings"
3316
  msgid "Featured (Sticky) listing settings"
3317
  msgstr "Ustawienia Wyróżnienie (naklejka) oferty"
3318
 
3319
- #: core/class-settings.php:278
3320
- #@ WPBDM
3321
  msgctxt "admin settings"
3322
  msgid "Offer sticky listings?"
3323
  msgstr "Oferować wyróżnienia (naklejki)?"
3324
 
3325
- #: core/class-settings.php:279
3326
- #@ WPBDM
3327
  msgctxt "admin settings"
3328
  msgid "Offer upgrades during submit process?"
3329
  msgstr "Oferować wyróżnienia podczas rejestracji firmy?"
3330
 
3331
- #: core/class-settings.php:280
3332
- #@ WPBDM
3333
  msgctxt "admin settings"
3334
  msgid "Sticky listing price"
3335
  msgstr "Koszt naklejki"
3336
 
3337
- #: core/class-settings.php:281
3338
- #@ WPBDM
3339
  msgctxt "admin settings"
3340
  msgid "Sticky listing page description text"
3341
  msgstr "Strona opisu wyróżnienia oferty naklejką"
3342
 
3343
- #: core/class-settings.php:282
3344
- #@ WPBDM
3345
  msgctxt "admin settings"
3346
- msgid "You can upgrade your listing to featured status. Featured listings will always appear on top of regular listings."
3347
- msgstr "Możesz podnieść status Twojej oferty do statusu wyróżniona. Wyróżnione oferty zawsze wyświetlane na górze strony, przed ofertami ze zwykłym statusem."
 
 
 
 
 
3348
 
3349
- #: core/class-settings.php:287
3350
- #@ WPBDM
3351
  msgctxt "admin settings"
3352
  msgid "E-Mail"
3353
  msgstr "E-mail"
3354
 
3355
- #: core/class-settings.php:291
3356
- #@ WPBDM
3357
  msgctxt "admin settings"
3358
  msgid "Display email address fields publicly?"
3359
  msgstr "Wyświetlać publicznie pole \"adres e-mail\"?"
3360
 
3361
- #: core/class-settings.php:294
3362
- #@ WPBDM
3363
  msgctxt "admin settings"
3364
- msgid "Shows the email address of the listing owner to all web users. NOT RECOMMENDED as this increases spam to the address and allows spam bots to harvest it for future use."
3365
- msgstr "Wyświetla adres e-mail właściciela oferty wszystkim użytkownikom. NIE ZALECANE - może to zwiększyć ruch niepożądanych widomości na poczcie właściciela (spam)."
 
 
 
 
 
 
3366
 
3367
- #: core/class-settings.php:297
3368
- #@ WPBDM
3369
  msgctxt "admin settings"
3370
  msgid "How to determine the listing's email address?"
3371
  msgstr "Jak określić listę adresów e-mail?"
3372
 
3373
- #: core/class-settings.php:300
3374
- #@ WPBDM
3375
  msgctxt "admin settings"
3376
- msgid "This affects emails sent to listing owners via contact forms or when their listings expire."
3377
- msgstr "Wpływa to na e-maile wysyłane do właścicieli ofert za pośrednictwem formularzy kontaktowych lub gdy ich oferta wygasa."
 
 
 
 
3378
 
3379
- #: core/class-settings.php:307
3380
- #@ WPBDM
 
 
 
 
 
 
 
 
 
 
3381
  msgctxt "admin settings"
3382
  msgid "E-Mail Notifications"
3383
  msgstr "Powiadomienia E-mail"
3384
 
3385
- #: core/class-settings.php:310
3386
- #@ WPBDM
3387
  msgctxt "admin settings"
3388
  msgid "Notify admin via e-mail when..."
3389
  msgstr "Powiadom Administratora przez e-mail, kiedy..."
3390
 
3391
- #: core/class-settings.php:314
3392
- #@ WPBDM
3393
  msgctxt "admin settings"
3394
  msgid "A new listing is submitted."
3395
  msgstr "Dodano nową ofertę."
3396
 
3397
- #: core/class-settings.php:315
3398
- #@ WPBDM
3399
  msgctxt "admin settings"
3400
  msgid "A listing is edited."
3401
  msgstr "Edytowano ofertę."
3402
 
3403
- #: core/class-settings.php:316
3404
- #@ WPBDM
3405
  msgctxt "admin settings"
3406
  msgid "A listing expires."
3407
  msgstr "Upłynął okres ważności oferty."
3408
 
3409
- #: core/class-settings.php:317
3410
- #@ WPBDM
3411
  msgctxt "admin settings"
3412
  msgid "A contact message is sent to a listing's owner."
3413
  msgstr "Została wysłana wiadomość kontaktowa do właściciela oferty."
3414
 
3415
- #: core/class-settings.php:323
3416
- #@ WPBDM
3417
  msgctxt "admin settings"
3418
  msgid "CC this e-mail address too"
3419
  msgstr "Prześlij także na ten adres e-mail"
3420
 
3421
- #: core/class-settings.php:329
3422
- #@ WPBDM
3423
  msgctxt "admin settings"
3424
  msgid "Notify users via e-mail when..."
3425
  msgstr "Poinformuj użytkownika mailem gdy..."
3426
 
3427
- #: core/class-settings.php:332
3428
- #@ WPBDM
3429
  msgctxt "admin settings"
3430
  msgid "You can modify the text template used for most of these e-mails below."
3431
  msgstr "Możesz edytować szablony tekstowe dla poniższych wiadomości e-mail."
3432
 
3433
- #: core/class-settings.php:333
3434
- #@ WPBDM
3435
  msgctxt "admin settings"
3436
  msgid "Their listing is submitted."
3437
  msgstr "Twoja oferta została przesłana."
3438
 
3439
- #: core/class-settings.php:334
3440
- #@ WPBDM
3441
  msgctxt "admin settings"
3442
  msgid "Their listing is approved/published."
3443
  msgstr "Twoja oferta została zatwierdzona i opublikowana."
3444
 
3445
- #: core/class-settings.php:343
3446
- #, php-format
3447
- #@ WPBDM
3448
  msgctxt "contact email"
3449
  msgid "You have received a reply from your listing at %s."
3450
  msgstr "Otrzymano wiadomość dotyczącą oferty %s."
3451
 
3452
- #: core/class-settings.php:344
3453
- #, php-format
3454
- #@ WPBDM
3455
  msgctxt "contact email"
3456
  msgid "Name: %s"
3457
  msgstr "Nazwa: %s"
3458
 
3459
- #: core/class-settings.php:345
3460
- #, php-format
3461
- #@ WPBDM
3462
  msgctxt "contact email"
3463
  msgid "E-Mail: %s"
3464
  msgstr "E-Mail: %s"
3465
 
3466
- #: core/class-settings.php:346
3467
- #@ WPBDM
3468
  msgctxt "contact email"
3469
  msgid "Message:"
3470
  msgstr "Wiadomość:"
3471
 
3472
- #: core/class-settings.php:348
3473
- #, php-format
3474
- #@ WPBDM
3475
  msgctxt "contact email"
3476
  msgid "Time: %s"
3477
  msgstr "Czas: %s"
3478
 
3479
- #: core/class-settings.php:350
3480
- #@ WPBDM
3481
  msgctxt "admin settings"
3482
  msgid "E-Mail Templates"
3483
  msgstr "Szablony wiadomości e-Mail"
3484
 
3485
- #: core/class-settings.php:353
3486
- #@ WPBDM
3487
  msgctxt "admin settings"
3488
  msgid "Email confirmation message"
3489
  msgstr "Wiadomość e-mail z potwierdzeniem odbioru"
3490
 
3491
- #: core/class-settings.php:357
3492
- #@ WPBDM
3493
  msgctxt "admin settings"
3494
  msgid "Sent after a listing has been submitted."
3495
  msgstr "Wysłane po zapisaniu oferty."
3496
 
3497
- #: core/class-settings.php:358
3498
- #: core/class-settings.php:366
3499
- #: core/class-settings.php:407
3500
- #@ WPBDM
3501
  msgctxt "admin settings"
3502
  msgid "Listing's title"
3503
  msgstr "Tytuł oferty"
3504
 
3505
- #: core/class-settings.php:361
3506
- #@ WPBDM
3507
  msgctxt "admin settings"
3508
  msgid "Listing published message"
3509
  msgstr "Wiadomość o opublikowaniu oferty"
3510
 
3511
- #: core/class-settings.php:46
3512
- #@ WPBDM
3513
- msgctxt "admin settings"
3514
- msgid "Prior to 3.5.1, we included the ID in the listing URL, like \"/business-directory/1809/listing-title\". Check this setting to remove the ID for better SEO."
3515
- msgstr "Zgodnie z zaleceniami wersji 3.5.1, dołączamy nr ID do linku URL. Wygląda to następująco \"/business-directory/1809/listing-title\". Zaznacz tą opcje aby polepszyć SEO."
3516
-
3517
- #: core/class-settings.php:104
3518
- #@ WPBDM
3519
- msgctxt "admin settings"
3520
- msgid "Use Ctrl-Click to include multiple fields in the search. Choosing too many fields for inclusion into Quick Search can result in very slow search performance."
3521
- msgstr "Użyj Ctrl + Kliknięcie aby zaznaczyć kilka naraz. Jeśli zaznaczysz zbyt dużo pól, może to znacząco spowolnić działanie wyszukiwarki."
3522
-
3523
- #: core/class-settings.php:364
3524
- #@ WPBDM
3525
- msgctxt "admin settings"
3526
- msgid "Your listing \"[listing]\" is now available at [listing-url] and can be viewed by the public."
3527
- msgstr "Twoja oferta \"[listing]\" jest dostępna pod adresem [listing-url] i posiada status oferty publicznej."
3528
-
3529
- #: core/class-settings.php:543
3530
- #@ WPBDM
3531
- msgctxt "admin settings"
3532
- msgid "Ask users to come back for abandoned payments?"
3533
- msgstr "Pytać użytkowników o powrót do porzuconych płatności?"
3534
-
3535
- #: core/class-settings.php:546
3536
- #@ WPBDM
3537
  msgctxt "admin settings"
3538
- msgid "An abandoned payment is when a user attempts to place a listing and gets to the end, but fails to complete their payment for the listing. This results in listings that look like they failed, when the user simply didn't complete the transaction. BD can remind them to come back and continue."
3539
- msgstr "Porzucona płatność może wystąpić w przypadku, gdy użytkownik zamieszcza ofertę, ale z przyczyn niezależnych od niego doszło do błędu i niedokończenia transakcji płatności.vWygląda to tak, jakby został błędnie przesłany formularz oferty, a tak na prawdę to tylko nie dokończona transakcja płatności.vKatalog Firm może przypominać użytkownikom o potrzebie powrotu i dokończenia transakcji."
 
 
 
 
3540
 
3541
- #: core/class-settings.php:552
3542
- #@ WPBDM
3543
  msgctxt "admin settings"
3544
- msgid "Listing abandonment threshold (hours)"
3545
- msgstr "Maksymalny Czas dla porzuconych płątności (godzin)"
 
3546
 
3547
- #: core/class-settings.php:557
3548
- #@ WPBDM
3549
  msgctxt "admin settings"
3550
- msgid "Listings with pending payments are marked as abandoned after this time. You can also <a>customize the e-mail</a> users receive."
3551
- msgstr "Oferty oczekujące na płatność zostaną oznaczone jako porzucone - po upływie tego czasu. Możesz także <a>wprowadzić zmiany w szablonie wiadomości e-mail</a> dostarczanym do użytkowników."
3552
 
3553
- #: core/class-settings.php:406
3554
- #@ WPBDM
3555
  msgctxt "admin settings"
3556
- msgid "Sent some time after a pending payment is abandoned by users."
3557
- msgstr "Wysyłany do użytkowników, po pewnym czasie od zmiany statusu na \"porzucone\"."
3558
 
3559
- #: core/class-settings.php:402
3560
- #@ WPBDM
3561
  msgctxt "admin settings"
3562
- msgid "Payment abandoned reminder message"
3563
- msgstr "Wiadomość przypomnienia o porzuconej płatności "
 
 
 
 
3564
 
3565
- #: core/class-settings.php:385
3566
- #@ WPBDM
3567
  msgctxt "admin settings"
3568
  msgid "Payment related"
3569
  msgstr "Powiązania płatności"
3570
 
3571
- #: core/class-settings.php:365
3572
- #@ WPBDM
3573
  msgctxt "admin settings"
3574
- msgid "Sent when the listing has been published or approved by an admin."
3575
- msgstr "Wyślij gdy oferta została zatwierdzona lub opublikowana przez administratora."
3576
-
3577
- #: core/class-settings.php:367
3578
- #@ WPBDM
3579
- msgctxt "admin settings"
3580
- msgid "Listing's URL"
3581
- msgstr "URL oferty"
3582
 
3583
- #: core/class-settings.php:371
3584
- #@ WPBDM
3585
  msgctxt "admin settings"
3586
- msgid "Listing Contact Message"
3587
- msgstr "Wiadomość do osoby kontaktowej z Oferty"
 
 
3588
 
3589
- #: core/class-settings.php:375
3590
- #@ WPBDM
3591
  msgctxt "admin settings"
3592
- msgid "Sent to listing owners when someone uses the contact form on their listing pages."
3593
- msgstr "Wyślij do właściciela oferty gdy ktoś użył formularza kontaktu na stronie jego oferty."
3594
 
3595
- #: core/class-settings.php:414
3596
- #@ WPBDM
3597
  msgctxt "admin settings"
3598
  msgid "Renewal Reminders"
3599
  msgstr "Przypomnienie o Odnowieniu"
3600
 
3601
- #: core/class-settings.php:417
3602
- #@ WPBDM
3603
  msgctxt "admin settings"
3604
- msgid "This section refers only to the text of the renewal/expiration notices. You can also <a>configure when the e-mails are sent</a>."
3605
- msgstr "Ta sekcja odnosi się tylko do tekstu informacyjnego na temat odnowienia/wygaśnięcia oferty. Możesz także ustawic, <a>kiedy wysyłać e-mail</a>."
 
 
 
 
3606
 
3607
- #: core/class-settings.php:421
3608
- #@ WPBDM
3609
  msgctxt "admin settings"
3610
  msgid "Pending expiration e-mail message"
3611
  msgstr "Wiadomość e-mail dotycząca okresu ważności oferty"
3612
 
3613
- #: core/class-settings.php:425
3614
- #@ WPBDM
3615
  msgctxt "settings"
3616
- msgid "Sent some time before the listing expires. Applies to non-recurring renewals only."
3617
- msgstr "Wysyłane przed upływem okresu ważności oferty. Dotyczy tylko jednorazowych odnowień( \"nie powtarzających się\" - dostępne w opcjach)."
 
 
 
 
3618
 
3619
- #: core/class-settings.php:426
3620
- #: core/class-settings.php:439
3621
- #: core/class-settings.php:452
3622
- #: core/class-settings.php:465
3623
- #: core/class-settings.php:478
3624
- #@ WPBDM
3625
  msgctxt "settings"
3626
  msgid "Listing's name (with link)"
3627
  msgstr "Nazwa Oferty (z linkiem)"
3628
 
3629
- #: core/class-settings.php:427
3630
- #: core/class-settings.php:440
3631
- #: core/class-settings.php:453
3632
- #: core/class-settings.php:466
3633
- #: core/class-settings.php:479
3634
- #@ WPBDM
3635
  msgctxt "settings"
3636
  msgid "Author's name"
3637
  msgstr "Nazwisko Autora"
3638
 
3639
- #: core/class-settings.php:428
3640
- #: core/class-settings.php:441
3641
- #: core/class-settings.php:480
3642
- #@ WPBDM
3643
  msgctxt "settings"
3644
  msgid "Expiration date"
3645
  msgstr "Data zakończenia emisji oferty"
3646
 
3647
- #: core/class-settings.php:429
3648
- #@ WPBDM
3649
  msgctxt "settings"
3650
  msgid "Category that is going to expire"
3651
  msgstr "Oferta, której upływa termin ważności"
3652
 
3653
- #: core/class-settings.php:430
3654
- #: core/class-settings.php:443
3655
- #: core/class-settings.php:482
3656
- #@ WPBDM
3657
  msgctxt "settings"
3658
  msgid "Link to renewal page"
3659
  msgstr "Link do strony Odnawiania ofert"
3660
 
3661
- #: core/class-settings.php:431
3662
- #: core/class-settings.php:444
3663
- #: core/class-settings.php:456
3664
- #: core/class-settings.php:469
3665
- #: core/class-settings.php:483
3666
- #@ WPBDM
3667
  msgctxt "settings"
3668
  msgid "Link to your site"
3669
  msgstr "Link do Twojej strony"
3670
 
3671
- #: core/class-settings.php:434
3672
- #@ WPBDM
3673
  msgctxt "admin settings"
3674
  msgid "Listing Renewal e-mail message"
3675
  msgstr "Wiadomość e-mail dotycząca odnowienia oferty"
3676
 
3677
- #: core/class-settings.php:438
3678
- #@ WPBDM
3679
  msgctxt "settings"
3680
- msgid "Sent at the time of listing expiration. Applies to non-recurring renewals only."
3681
- msgstr "Wysyłane w chwili zakończenia okresu ważności oferty. Dotyczy tylko jednorazowych odnowień( \"nie powtarzających się\" - dostępne w opcjach)."
 
 
 
 
3682
 
3683
- #: core/class-settings.php:442
3684
- #: core/class-settings.php:481
3685
- #@ WPBDM
3686
  msgctxt "settings"
3687
  msgid "Category that expired"
3688
  msgstr "Oferta, której upłynął okres ważności"
3689
 
3690
- #: core/class-settings.php:447
3691
- #@ WPBDM
3692
  msgctxt "admin settings"
3693
  msgid "Listing auto-renewal reminder (recurring payments)"
3694
- msgstr "Przypomnienie o automatycznym odnowieniu oferty ( powtarzające się płatności )"
 
 
3695
 
3696
- #: core/class-settings.php:451
3697
- #@ WPBDM
3698
  msgctxt "settings"
3699
- msgid "Sent some time before the listing is auto-renewed. Applies to recurring renewals only."
3700
- msgstr "Wysyłane przed odnowieniem oferty. Dotyczy tylko powtarzających się płatności."
 
 
 
 
3701
 
3702
- #: core/class-settings.php:454
3703
- #: core/class-settings.php:468
3704
- #@ WPBDM
3705
  msgctxt "settings"
3706
  msgid "Renewal date"
3707
  msgstr "Data odświeżenia"
3708
 
3709
- #: core/class-settings.php:455
3710
- #@ WPBDM
3711
  msgctxt "settings"
3712
  msgid "Category that is going to be renewed"
3713
  msgstr "Oferta, której zbliża się termin odnowienia"
3714
 
3715
- #: core/class-settings.php:457
3716
- #@ WPBDM
3717
  msgctxt "settings"
3718
  msgid "Link to manage subscriptions"
3719
  msgstr "Link do zarządzania subskrypcjami"
3720
 
3721
- #: core/class-settings.php:460
3722
- #@ WPBDM
3723
  msgctxt "admin settings"
3724
  msgid "Listing Renewal e-mail message (recurring payments)"
3725
- msgstr "Wiadomość e-mail dotycząca odnowienia oferty ( powtarzające się płatności)"
 
3726
 
3727
- #: core/class-settings.php:464
3728
- #@ WPBDM
3729
  msgctxt "settings"
3730
- msgid "Sent after the listing is auto-renewed. Applies to recurring renewals only."
3731
- msgstr "Wysyłane po odnowieniu oferty. Dotyczy tylko powtarzających się płatności."
 
 
3732
 
3733
- #: core/class-settings.php:467
3734
- #@ WPBDM
3735
  msgctxt "settings"
3736
  msgid "Renewed category"
3737
  msgstr "Kategoria Odnowiona"
3738
 
3739
- #: core/class-settings.php:473
3740
- #@ WPBDM
3741
  msgctxt "admin settings"
3742
  msgid "Renewal reminder e-mail message"
3743
  msgstr "Wiadomość e-mail dotytcząca przypomnienia o odnowieniu"
3744
 
3745
- #: core/class-settings.php:477
3746
- #@ WPBDM
3747
  msgctxt "settings"
3748
- msgid "Sent some time after listing expiration and when no renewal has occurred. Applies to both recurring and non-recurring renewals."
3749
- msgstr "Wysyłane po zakończeniu okresu ważności, a gdy nie odnowieno oferty. Dotyczy wszystkich form płatności."
 
 
 
 
3750
 
3751
- #: core/class-settings.php:487
3752
- #@ WPBDM
3753
  msgctxt "admin settings"
3754
  msgid "Payment"
3755
  msgstr "Płatność"
3756
 
3757
- #: core/class-settings.php:488
3758
- #@ WPBDM
3759
  msgctxt "admin settings"
3760
  msgid "Payment Settings"
3761
  msgstr "Ustawienia Płatności"
3762
 
3763
- #: core/class-settings.php:491
3764
- #@ WPBDM
3765
  msgctxt "admin settings"
3766
  msgid "Turn On payments?"
3767
  msgstr "Włączyć Płatność?"
3768
 
3769
- #: core/class-settings.php:493
3770
- #@ WPBDM
3771
  msgctxt "admin settings"
3772
  msgid "Put payment gateways in test mode?"
3773
  msgstr "Włączyć tryb testu dla bramki płatności?"
3774
 
3775
- #: core/class-settings.php:498
3776
- #@ WPBDM
3777
  msgctxt "admin settings"
3778
  msgid "Perform checkouts on the secure (HTTPS) version of your site?"
3779
- msgstr "Proferować przełączenie koszyka do bezpiecznej wersji strony (https://)?"
 
3780
 
3781
- #: core/class-settings.php:501
3782
- #@ WPBDM
3783
  msgctxt "admin settings"
3784
- msgid "Recommended for added security. For this to work you need to enable HTTPS on your server and <a>obtain an SSL certificate</a>."
3785
- msgstr "Rekomendowane dla bezpieczeństwa. Aby zadziałało musisz uruchomić Szyfrowanie SSL ( https ) na Twoim serwerze, a tu znajdziesz <a>informacje o certyfikatach SSL</a>."
 
 
 
 
 
3786
 
3787
- #: core/class-settings.php:505
3788
- #@ WPBDM
3789
  msgctxt "admin settings"
3790
  msgid "Currency Code"
3791
  msgstr "Kod Waluty"
3792
 
3793
- #: core/class-settings.php:507
3794
- #@ WPBDM
3795
  msgctxt "admin settings"
3796
  msgid "Australian Dollar (AUD)"
3797
  msgstr "Dolar Australijski (AUD)"
3798
 
3799
- #: core/class-settings.php:508
3800
- #@ WPBDM
3801
  msgctxt "admin settings"
3802
  msgid "Brazilian Real (BRL)"
3803
  msgstr "Real Brazylijski (BRL)"
3804
 
3805
- #: core/class-settings.php:509
3806
- #@ WPBDM
3807
  msgctxt "admin settings"
3808
  msgid "Canadian Dollar (CAD)"
3809
  msgstr "Dolar Kanadyjski (CAD)"
3810
 
3811
- #: core/class-settings.php:510
3812
- #@ WPBDM
3813
  msgctxt "admin settings"
3814
  msgid "Czech Koruna (CZK)"
3815
  msgstr "Korona Czeska (CZK)"
3816
 
3817
- #: core/class-settings.php:511
3818
- #@ WPBDM
3819
  msgctxt "admin settings"
3820
  msgid "Danish Krone (DKK)"
3821
  msgstr "Korona Duńska (DKK)"
3822
 
3823
- #: core/class-settings.php:512
3824
- #@ WPBDM
3825
  msgctxt "admin settings"
3826
  msgid "Euro (EUR)"
3827
  msgstr "Euro (EUR)"
3828
 
3829
- #: core/class-settings.php:513
3830
- #@ WPBDM
3831
  msgctxt "admin settings"
3832
  msgid "Hong Kong Dollar (HKD)"
3833
  msgstr "Dolar Hong Kong (HKD)"
3834
 
3835
- #: core/class-settings.php:514
3836
- #@ WPBDM
3837
  msgctxt "admin settings"
3838
  msgid "Hungarian Forint (HUF)"
3839
  msgstr "Forint Węgierski (HUF)"
3840
 
3841
- #: core/class-settings.php:515
3842
- #@ WPBDM
3843
  msgctxt "admin settings"
3844
  msgid "Israeli New Shequel (ILS)"
3845
  msgstr "Nowy Shequel Izraelski (ILS)"
3846
 
3847
- #: core/class-settings.php:516
3848
- #@ WPBDM
3849
  msgctxt "admin settings"
3850
  msgid "Japanese Yen (JPY)"
3851
  msgstr "Jen Japoński (JPY)"
3852
 
3853
- #: core/class-settings.php:517
3854
- #@ WPBDM
3855
  msgctxt "admin settings"
3856
  msgid "Malasian Ringgit (MYR)"
3857
  msgstr "Ringgit Malezyjski (MYR)"
3858
 
3859
- #: core/class-settings.php:518
3860
- #@ WPBDM
3861
  msgctxt "admin settings"
3862
  msgid "Mexican Peso (MXN)"
3863
  msgstr "Peso Meksykańskie (MXN)"
3864
 
3865
- #: core/class-settings.php:519
3866
- #@ WPBDM
3867
  msgctxt "admin settings"
3868
  msgid "Norwegian Krone (NOK)"
3869
  msgstr "Korona Norweska (NOK)"
3870
 
3871
- #: core/class-settings.php:520
3872
- #@ WPBDM
3873
  msgctxt "admin settings"
3874
  msgid "New Zealand Dollar (NZD)"
3875
  msgstr "Dolar Nowo Zelandzki (NZD)"
3876
 
3877
- #: core/class-settings.php:521
3878
- #@ WPBDM
3879
  msgctxt "admin settings"
3880
  msgid "Philippine Peso (PHP)"
3881
  msgstr "Peso Filipińskie (PHP)"
3882
 
3883
- #: core/class-settings.php:522
3884
- #@ WPBDM
3885
  msgctxt "admin settings"
3886
  msgid "Polish Zloty (PLN)"
3887
  msgstr "Złoty Polski (PLN)"
3888
 
3889
- #: core/class-settings.php:523
3890
- #@ WPBDM
3891
  msgctxt "admin settings"
3892
  msgid "Pound Sterling (GBP)"
3893
  msgstr "Funt Brytyjski (GBP)"
3894
 
3895
- #: core/class-settings.php:524
3896
- #@ WPBDM
3897
  msgctxt "admin settings"
3898
  msgid "Singapore Dollar (SGD)"
3899
  msgstr "Dolar Singapórski (SGD)"
3900
 
3901
- #: core/class-settings.php:525
3902
- #@ WPBDM
3903
  msgctxt "admin settings"
3904
  msgid "Swedish Krona (SEK)"
3905
  msgstr "Korona Szwedzka (SEK)"
3906
 
3907
- #: core/class-settings.php:526
3908
- #@ WPBDM
3909
  msgctxt "admin settings"
3910
  msgid "Swiss Franc (CHF)"
3911
  msgstr "Frank Szwajcarski (CHF)"
3912
 
3913
- #: core/class-settings.php:527
3914
- #@ WPBDM
3915
  msgctxt "admin settings"
3916
  msgid "Taiwan Dollar (TWD)"
3917
  msgstr "Dolar Taiwandzki (TWD)"
3918
 
3919
- #: core/class-settings.php:528
3920
- #@ WPBDM
3921
  msgctxt "admin settings"
3922
  msgid "Thai Baht (THB)"
3923
  msgstr "Baht Tajski (THB)"
3924
 
3925
- #: core/class-settings.php:529
3926
- #@ WPBDM
3927
  msgctxt "admin settings"
3928
  msgid "Turkish Lira (TRY)"
3929
  msgstr "Lir Turecki (TRY)"
3930
 
3931
- #: core/class-settings.php:530
3932
- #@ WPBDM
 
3933
  msgctxt "admin settings"
3934
- msgid "U.S. Dollar"
3935
  msgstr "Dolar Amerykański"
3936
 
3937
- #: core/class-settings.php:534
3938
- #@ WPBDM
3939
  msgctxt "admin settings"
3940
  msgid "Currency Symbol"
3941
  msgstr "Symbol Waluty"
3942
 
3943
- #: core/class-settings.php:537
3944
- #@ WPBDM
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
3945
  msgctxt "admin settings"
3946
  msgid "Thank you for payment message"
3947
  msgstr "Wiadomość - Dziękujemy za płatność."
3948
 
3949
- #: core/class-settings.php:538
3950
- #@ WPBDM
3951
  msgctxt "admin settings"
3952
- msgid "Thank you for your payment. Your payment is being verified and your listing reviewed. The verification and review process could take up to 48 hours."
3953
- msgstr "Dziękujemy za dokonanie płątności. Trwa weryfikacja płatnosci. Weryfikacja płatnosci i publikacja oferty mogą potrwać do 48 godzin."
 
 
 
 
3954
 
3955
- #: core/class-settings.php:563
3956
- #@ WPBDM
3957
  msgctxt "admin settings"
3958
- msgid "Registration"
3959
- msgstr "Rejestracja"
3960
 
3961
- #: core/class-settings.php:564
3962
- #@ WPBDM
3963
  msgctxt "admin settings"
3964
- msgid "Registration Settings"
3965
- msgstr "Ustawienia Rejestracji"
 
 
 
 
 
 
 
 
 
 
3966
 
3967
- #: core/class-settings.php:570
3968
- #@ WPBDM
3969
  msgctxt "admin settings"
3970
- msgid "Registration URL"
3971
- msgstr "Rejestracja na URL"
3972
 
3973
- #: core/class-settings.php:573
3974
- #@ WPBDM
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
3975
  msgctxt "admin settings"
3976
- msgid "URL of your membership plugin's registration page. Only enter this if using a membership plugin or custom registration page."
3977
- msgstr "Adres URL do strony rejestracji pluginów (tylko członkostwo). Wprowadź, jeśli jesteś zarejestrowanym członkiem i posiadasz pluginy lub indywidualne ustawienia stron."
3978
 
3979
- #: core/class-settings.php:577
3980
- #@ WPBDM
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
3981
  msgctxt "admin settings"
3982
  msgid "Image"
3983
  msgstr "Obraz"
3984
 
3985
- #: core/class-settings.php:578
3986
- #@ WPBDM
3987
  msgctxt "admin settings"
3988
- msgid "Any changes to these settings will affect new listings only. Existing listings will not be affected. If you wish to change existing listings, you will need to re-upload the image(s) on that listing after changing things here."
3989
- msgstr "Jakiekolwiek zmiany w tych ustawieniach przyniosą efekt tylko dla nowych ofert. Istniejące oferty pozostaną niezmienione. Jeśli chcesz zmienić istniejące oferty musisz ponownie załadować obrazy do tych ofert po uprzedniej zmianie tych ustawień."
 
 
 
 
 
 
 
 
3990
 
3991
- #: core/class-settings.php:579
3992
- #@ WPBDM
3993
  msgctxt "admin settings"
3994
  msgid "Image Settings"
3995
  msgstr "Ustawienia Obrazu"
3996
 
3997
- #: core/class-settings.php:580
3998
- #@ WPBDM
3999
  msgctxt "admin settings"
4000
  msgid "Allow images?"
4001
  msgstr "Pozwolić na Obrazy?"
4002
 
4003
- #: core/class-settings.php:583
4004
- #@ WPBDM
 
 
 
 
 
 
4005
  msgctxt "admin settings"
4006
  msgid "Max Image File Size (KB)"
4007
  msgstr "Maksymalny rozmiar pliku Obrazu (KB)"
4008
 
4009
- #: core/class-settings.php:591
4010
- #@ WPBDM
4011
  msgctxt "admin settings"
4012
- msgid "Turn on thickbox/lightbox?"
4013
- msgstr "Włączyć thickbox/lightbox?"
4014
 
4015
- #: core/class-settings.php:591
4016
- #@ WPBDM
4017
  msgctxt "admin settings"
4018
- msgid "Uncheck if it conflicts with other elements or plugins installed on your site"
4019
- msgstr "Odznacz jeśli występują konflikty z innymi elementami lub pluginami na Twojej stronie"
4020
 
4021
- #: core/class-settings.php:607
4022
- #@ WPBDM
4023
  msgctxt "admin settings"
4024
- msgid "Number of free images"
4025
- msgstr "Liczba obrazów, za które nie trzeba płacić"
4026
 
4027
- #: core/class-settings.php:612
4028
- #@ WPBDM
4029
  msgctxt "admin settings"
4030
- msgid "For paid listing images, configure that by adding or editing a <a>Fee Plan</a> instead of this setting, which is ignored for paid listings."
4031
- msgstr "Dla konfiguracji obrazów płatnych ofert, dodaj lub edytuj <a>abonamet</a> zamiast używać ustawień, które są ignorowane przez oferty płatne."
4032
 
4033
- #: core/class-settings.php:613
4034
- #@ WPBDM
4035
  msgctxt "admin settings"
4036
- msgid "Use default picture for listings with no picture?"
4037
- msgstr "Użyj domyślnego obrazu dla ofert, które nie posiadają żadnych obrazów?"
4038
 
4039
- #: core/class-settings.php:614
4040
- #@ WPBDM
4041
  msgctxt "admin settings"
4042
- msgid "Show Thumbnail on main listings page?"
4043
- msgstr "Pokazywać miniaturkę na stronie głównej oferty?"
 
 
 
4044
 
4045
- #: core/class-settings.php:986
4046
- #@ WPBDM
4047
- msgctxt "settings"
4048
- msgid "Deactivate License"
4049
- msgstr "Dezaktywacja Licencji"
4050
 
4051
- #: core/class-settings.php:988
4052
- #@ WPBDM
4053
- msgctxt "settings"
4054
- msgid "Deactivating license..."
4055
- msgstr "Dezaktywowanie Licencji"
4056
 
4057
- #: core/class-settings.php:991
4058
- #@ WPBDM
4059
- msgctxt "settings"
4060
- msgid "Activate License"
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
4061
  msgstr "Aktywacja Licencji"
4062
 
4063
- #: core/class-settings.php:993
4064
- #@ WPBDM
4065
  msgctxt "settings"
4066
  msgid "Activating license..."
4067
  msgstr "Aktywowanie Licencji"
4068
 
4069
- #: core/class-settings.php:1017
4070
- #, php-format
4071
- #@ WPBDM
4072
  msgctxt "admin settings"
4073
  msgid "Valid placeholders: %s"
4074
  msgstr "Dopuszczalne wypełnienie pola: %s"
4075
 
4076
- #: core/class-settings.php:1051
4077
- #@ WPBDM
4078
  msgctxt "settings email"
4079
  msgid "Click to edit e-mail"
4080
  msgstr "Kliknij, aby edytować e-mail"
4081
 
4082
- #: core/class-settings.php:1052
4083
- #@ WPBDM
4084
  msgctxt "settings email"
4085
  msgid "Click to edit"
4086
  msgstr "Kliknij, aby edytować"
4087
 
4088
- #: core/class-settings.php:1065
4089
- #@ WPBDM
4090
  msgctxt "settings email"
4091
  msgid "E-Mail Subject"
4092
  msgstr "Tytuł E-Maila"
4093
 
4094
- #: core/class-settings.php:1076
4095
- #@ WPBDM
4096
  msgctxt "settings email"
4097
  msgid "E-Mail Body"
4098
  msgstr "Forma E-Maila"
4099
 
4100
- #: core/class-settings.php:1087
4101
- #@ WPBDM
4102
  msgctxt "settings email"
4103
  msgid "You can use the following placeholders:"
4104
  msgstr "Możesz użyc następujących wypełnień pól:"
4105
 
4106
- #: core/class-settings.php:1110
4107
- #@ WPBDM
4108
  msgctxt "settings email"
4109
  msgid "Preview e-mail"
4110
  msgstr "Podgląd e-maila"
4111
 
4112
- #: core/class-settings.php:1111
4113
- #@ WPBDM
4114
  msgctxt "settings email"
4115
  msgid "Cancel"
4116
  msgstr "Anuluj"
4117
 
4118
- #: core/class-settings.php:1112
4119
- #@ WPBDM
4120
  msgctxt "settings email"
4121
  msgid "Save Changes"
4122
  msgstr "Zapisz zmiany"
4123
 
4124
- #: core/class-settings.php:1131
4125
- #@ WPBDM
4126
  msgctxt "settings email"
4127
  msgid "Site title"
4128
  msgstr "Tytuł strony"
4129
 
4130
- #: core/class-settings.php:1134
4131
- #@ WPBDM
4132
  msgctxt "settings email"
4133
  msgid "Site title (with link)"
4134
  msgstr "Tytuł strony (z linkiem)"
4135
 
4136
- #: core/class-settings.php:1137
4137
- #@ WPBDM
4138
  msgctxt "settings email"
4139
  msgid "Site address (with link)"
4140
  msgstr "Adres strony (z linkiem)"
4141
 
4142
- #: core/class-settings.php:1140
4143
- #@ WPBDM
4144
  msgctxt "settings email"
4145
  msgid "Directory URL (with link)"
4146
  msgstr "URL Katalogu (z linkiem)"
4147
 
4148
- #: core/class-settings.php:1143
4149
- #@ WPBDM
4150
  msgctxt "settings email"
4151
  msgid "Current date"
4152
  msgstr "Aktualna data"
4153
 
4154
- #: core/class-settings.php:1146
4155
- #@ WPBDM
4156
  msgctxt "settings email"
4157
  msgid "Current time"
4158
  msgstr "Aktualny czas"
4159
 
4160
- #: core/compatibility/deprecated.php:144
4161
- #@ WPBDM
4162
- msgid "View"
4163
- msgstr "Pokaż"
 
4164
 
4165
- #: core/compatibility/deprecated.php:147
4166
- #@ WPBDM
4167
- msgid "Edit"
4168
- msgstr "Edytuj"
 
 
4169
 
4170
- #: core/compatibility/deprecated.php:147
4171
- #@ WPBDM
4172
- msgid "Delete"
4173
- msgstr "Usuń"
 
4174
 
4175
- #: core/compatibility/deprecated.php:160
4176
- #@ WPBDM
4177
- msgid "Upgrade Listing"
4178
- msgstr "Podnieś status Oferty"
 
4179
 
4180
- #: core/compatibility/deprecated.php:214
4181
- #: core/templates-ui.php:182
4182
- #@ WPBDM
4183
- msgid "Submit A Listing"
4184
- msgstr "Dodaj Firmę"
4185
 
4186
- #: core/compatibility/deprecated.php:227
4187
- #: core/templates-ui.php:191
4188
- #@ WPBDM
4189
- msgid "View Listings"
4190
- msgstr "Pokaż Firmy"
4191
 
4192
- #: core/compatibility/deprecated.php:238
4193
- #: core/templates-ui.php:201
4194
- #@ WPBDM
4195
- msgid "Directory"
4196
- msgstr "Katalog"
4197
 
4198
- #: core/compatibility/templates/wpbusdirman-index-categories.php:12
4199
- #: core/templates-ui.php:228
4200
- #@ WPBDM
4201
- msgctxt "templates"
4202
  msgid "Search Listings"
4203
  msgstr "Szukaj Firmy"
4204
 
4205
- #: core/form-fields-types.php:12
4206
- #@ WPBDM
4207
- msgctxt "form-fields api"
4208
- msgid "Textfield"
4209
- msgstr "Pole tekstowe"
4210
 
4211
- #: core/form-fields-types.php:47
4212
- #@ WPBDM
4213
- msgctxt "form-fields api"
4214
- msgid "Format 01/31/1969"
4215
- msgstr "Format 01/31/1969"
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
4216
 
4217
- #: core/form-fields-types.php:67
4218
- #@ WPBDM
4219
  msgctxt "form-fields api"
4220
- msgid "URL Field"
4221
- msgstr "Pole URL"
4222
 
4223
- #: core/form-fields-types.php:84
4224
- #@ WPBDM
 
 
4225
  msgctxt "form-fields admin"
4226
- msgid "Open link in a new window?"
4227
- msgstr "Otworzyć łącze w nowym oknie?"
4228
 
4229
- #: core/form-fields-types.php:87
4230
- #@ WPBDM
 
 
4231
  msgctxt "form-fields admin"
4232
- msgid "Use rel=\"nofollow\" when displaying the link?"
4233
- msgstr "Użyj rel=\"nofollow\" kiedy wyświetlany jest link?"
4234
 
4235
- #: core/form-fields-types.php:191
4236
- #@ WPBDM
4237
  msgctxt "form-fields api"
4238
- msgid "URL:"
4239
- msgstr "URL:"
 
 
 
 
 
4240
 
4241
- #: core/form-fields-types.php:198
4242
- #@ WPBDM
4243
  msgctxt "form-fields api"
4244
- msgid "Link Text (optional):"
4245
- msgstr "Tekst alternatywny(opcjonalnie):"
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
4246
 
4247
- #: core/form-fields-types.php:214
4248
- #@ WPBDM
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
4249
  msgctxt "form-fields api"
4250
  msgid "Select List"
4251
  msgstr "Lista Wyboru"
4252
 
4253
- #: core/form-fields-types.php:270
4254
- #@ WPBDM
4255
  msgctxt "form-fields-api category-select"
4256
  msgid "-- Choose Terms --"
4257
  msgstr "-- Wybierz Warunki --"
4258
 
4259
- #: core/form-fields-types.php:270
4260
- #: core/form-fields-types.php:305
4261
- #@ WPBDM
4262
  msgctxt "form-fields-api category-select"
4263
  msgid "-- Choose One --"
4264
  msgstr "-- Wybierz Jeden --"
4265
 
4266
- #: core/form-fields-types.php:340
4267
- #: core/form-fields-types.php:587
4268
- #: core/form-fields-types.php:718
4269
- #@ WPBDM
4270
- msgctxt "form-fields admin"
4271
- msgid "Field Options (for select lists, radio buttons and checkboxes)."
4272
- msgstr "Opcje Pola (aby wybrać listy, przycisk radio i czeklisty)."
4273
-
4274
- #: core/form-fields-types.php:351
4275
- #@ WPBDM
4276
  msgctxt "form-fields admin"
4277
  msgid "Allow empty selection on search?"
4278
  msgstr "Zezwolić na wyszukiwanie pustych pól wyborów?"
4279
 
4280
- #: core/form-fields-types.php:368
4281
- #: core/form-fields-types.php:606
4282
- #: core/form-fields-types.php:739
4283
- #@ WPBDM
4284
- msgctxt "form-fields admin"
4285
- msgid "Field list of options is required."
4286
- msgstr "Pole listy opcji wymagane."
4287
-
4288
- #: core/form-fields-types.php:448
4289
- #@ WPBDM
4290
  msgctxt "form-fields api"
4291
  msgid "Textarea"
4292
  msgstr "Pole tekstowe / z możliwością html"
4293
 
4294
- #: core/form-fields-types.php:477
4295
- #@ WPBDM
4296
  msgctxt "form-fields admin"
4297
  msgid "Allow HTML input for this field?"
4298
  msgstr "Zezwolić na wprowadzanie HTML w tym polu?"
4299
 
4300
- #: core/form-fields-types.php:481
4301
- #@ WPBDM
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
4302
  msgctxt "form-fields admin"
4303
  msgid "Allow WordPress shortcodes in this field?"
4304
  msgstr "Zezwolić na krótkie kody WordPress'a w tm polu?"
4305
 
4306
- #: core/form-fields-types.php:485
4307
- #@ WPBDM
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
4308
  msgctxt "form-fields admin"
4309
- msgid "<b>Advanced users only!</b> Unless you've been told to change this, don't switch it unless you know what you're doing."
4310
- msgstr "<b>Tylko zaawansowani Użytkownicy!</b>. O ile nie powiedziano by to zmienić, nie zaznaczaj tej opcji, no chyba że wiesz co robisz."
 
 
 
 
4311
 
4312
- #: core/form-fields-types.php:486
4313
- #@ WPBDM
4314
  msgctxt "form-fields admin"
4315
  msgid "Apply \"the_content\" filter before displaying this field?"
4316
  msgstr "Zastosować filtr \"the_content\" przed wyświetlaniem tego pola?"
4317
 
4318
- #: core/form-fields-types.php:528
4319
- #@ WPBDM
4320
- msgctxt "form-fields api"
4321
- msgid "Radio button"
4322
- msgstr "Przycisk Radio"
4323
-
4324
- #: core/form-fields-types.php:634
4325
- #@ WPBDM
4326
- msgctxt "form-fields api"
4327
- msgid "Multiple select list"
4328
- msgstr "Lista wielokrotnego wyboru"
4329
 
4330
- #: core/form-fields-types.php:639
4331
- #@ WPBDM
4332
  msgctxt "form-fields api"
4333
- msgid "Multiselect List"
4334
- msgstr "Lista wielokrotnego zaznaczania"
4335
 
4336
- #: core/form-fields-types.php:655
4337
- #@ WPBDM
4338
  msgctxt "form-fields api"
4339
- msgid "Checkbox"
4340
- msgstr "Czeklista"
4341
 
4342
- #: core/form-fields-types.php:813
4343
- #@ WPBDM
4344
  msgctxt "form-fields api"
4345
  msgid "Social Site (Twitter handle)"
4346
  msgstr "Strona Społeczności (Twitter)"
4347
 
4348
- #: core/form-fields-types.php:862
4349
- #@ WPBDM
4350
  msgctxt "form-fields api"
4351
- msgid "Social Site (Facebook page)"
4352
- msgstr "Strona Społeczności (Faacebook)"
 
 
 
 
 
 
 
 
 
 
 
 
4353
 
4354
- #: core/form-fields-types.php:910
4355
- #@ WPBDM
4356
  msgctxt "form-fields api"
4357
- msgid "Social Site (LinkedIn profile)"
4358
- msgstr "Strona Społeczności (LinkedIn)"
4359
 
4360
- #: core/form-fields-types.php:955
4361
- #@ WPBDM
4362
  msgctxt "form-fields api"
4363
- msgid "Image (file upload)"
4364
- msgstr "Obraz (plik ładowany)"
4365
-
4366
- #: core/form-fields-types.php:987
4367
- #@ WPBDM
4368
- msgctxt "form-fields-api"
4369
- msgid "Remove"
4370
- msgstr "Usuń"
4371
 
 
4372
  #: core/form-fields.php:31
4373
- #@ WPBDM
4374
  msgctxt "form-fields api"
4375
  msgid "Post Title"
4376
  msgstr "Tytuł Posta"
4377
 
 
4378
  #: core/form-fields.php:32
4379
- #@ WPBDM
4380
  msgctxt "form-fields api"
4381
  msgid "Post Content"
4382
  msgstr "Zawartość Posta"
4383
 
 
4384
  #: core/form-fields.php:33
4385
- #@ WPBDM
4386
  msgctxt "form-fields api"
4387
  msgid "Post Excerpt"
4388
  msgstr "Wyciąg z Posta"
4389
 
 
4390
  #: core/form-fields.php:34
4391
- #@ WPBDM
4392
  msgctxt "form-fields api"
4393
  msgid "Post Category"
4394
  msgstr "Kategoria Posta"
4395
 
 
4396
  #: core/form-fields.php:35
4397
- #@ WPBDM
4398
  msgctxt "form-fields api"
4399
  msgid "Post Tags"
4400
  msgstr "Tagi Oferty"
4401
 
 
4402
  #: core/form-fields.php:36
4403
- #@ WPBDM
4404
  msgctxt "form-fields api"
4405
  msgid "Post Metadata"
4406
  msgstr "Metadane Posta"
4407
 
 
4408
  #: core/form-fields.php:38
4409
- #@ WPBDM
4410
  msgctxt "form-fields api"
4411
  msgid "Custom"
4412
  msgstr "Niestandardowe"
4413
 
4414
- #: core/form-fields.php:300
4415
- #@ WPBDM
4416
  msgid "Business Name"
4417
  msgstr "Nazwa Firmy"
4418
 
4419
- #: core/form-fields.php:302
4420
- #@ WPBDM
4421
  msgid "Business Genre"
4422
  msgstr "Województwo"
4423
 
4424
- #: core/form-fields.php:304
4425
- #@ WPBDM
4426
  msgid "Short Business Description"
4427
  msgstr "Krótke Info"
4428
 
4429
- #: core/form-fields.php:306
4430
- #@ WPBDM
4431
  msgid "Long Business Description"
4432
  msgstr "Długi Opis Firmy"
4433
 
4434
- #: core/form-fields.php:308
4435
- #@ WPBDM
4436
  msgid "Business Website Address"
4437
  msgstr "Strona Firmowa"
4438
 
4439
- #: core/form-fields.php:310
4440
- #@ WPBDM
4441
  msgid "Business Phone Number"
4442
  msgstr "Telefon"
4443
 
4444
- #: core/form-fields.php:312
4445
- #@ WPBDM
4446
  msgid "Business Fax"
4447
  msgstr "Fax"
4448
 
4449
- #: core/form-fields.php:314
4450
- #@ WPBDM
4451
  msgid "Business Contact Email"
4452
  msgstr "Kontaktowy adres e-mail"
4453
 
4454
- #: core/form-fields.php:316
4455
- #@ WPBDM
4456
  msgid "Business Tags"
4457
  msgstr "Firmowe Tagi"
4458
 
4459
- #: core/form-fields.php:411
4460
- #@ WPBDM
 
 
 
 
 
 
 
 
 
 
4461
  msgctxt "form-fields-api"
4462
  msgid "Email Validator"
4463
  msgstr "Weryfikator E-mail"
4464
 
4465
- #: core/form-fields.php:412
4466
- #@ WPBDM
4467
  msgctxt "form-fields-api"
4468
  msgid "URL Validator"
4469
  msgstr "Weryfikator URL"
4470
 
4471
- #: core/form-fields.php:413
4472
- #@ WPBDM
4473
  msgctxt "form-fields-api"
4474
  msgid "Whole Number Validator"
4475
  msgstr "Weryfikator liczb całkowitych"
4476
 
4477
- #: core/form-fields.php:414
4478
- #@ WPBDM
4479
  msgctxt "form-fields-api"
4480
  msgid "Decimal Number Validator"
4481
  msgstr "Weryfikator liczb dziesiętnych"
4482
 
4483
- #: core/form-fields.php:415
4484
- #@ WPBDM
4485
  msgctxt "form-fields-api"
4486
  msgid "Date Validator"
4487
  msgstr "Weryfikator daty"
4488
 
4489
- #: core/form-fields.php:422
4490
- #@ WPBDM
4491
  msgctxt "form-fields-api validation"
4492
  msgid "Field"
4493
  msgstr "Pole"
4494
 
4495
- #: core/form-fields.php:438
4496
- #: core/form-fields.php:442
4497
- #, php-format
4498
- #@ WPBDM
4499
  msgctxt "form-fields-api validation"
4500
  msgid "%s is required."
4501
  msgstr "%s jest wymagane."
4502
 
4503
- #: core/form-fields.php:451
4504
- #: core/form-fields.php:458
4505
- #, php-format
4506
- #@ WPBDM
4507
  msgctxt "form-fields-api validation"
4508
  msgid "%s is badly formatted. Valid URL format required. Include http://"
4509
- msgstr "%s jest źle sformatowany. Wymagamy właściwego adresu URL. Sprawdź czy nie zapomniałeś o http://"
 
 
4510
 
4511
- #: core/form-fields.php:472
4512
- #, php-format
4513
- #@ WPBDM
4514
  msgctxt "form-fields-api validation"
4515
  msgid "%s is badly formatted. Valid Email format required."
4516
  msgstr "%s jest źle sformatowany. Wymagamy właściwego adresu E-mail."
4517
 
4518
- #: core/form-fields.php:478
4519
- #, php-format
4520
- #@ WPBDM
4521
  msgctxt "form-fields-api validation"
4522
  msgid "%s must be a number. Decimal values are not allowed."
4523
  msgstr "%s musi być liczbą. Dziesiętne nie są dozwolone. "
4524
 
4525
- #: core/form-fields.php:484
4526
- #, php-format
4527
- #@ WPBDM
4528
  msgctxt "form-fields-api validation"
4529
  msgid "%s must be a number."
4530
  msgstr "%s musi być liczbą."
4531
 
4532
- #: core/form-fields.php:540
4533
- #, php-format
4534
- #@ WPBDM
 
 
 
 
 
 
 
 
 
 
 
4535
  msgctxt "form-fields-api validation"
4536
  msgid "%s is invalid. Value most be one of %s."
4537
  msgstr "%s jest niewłaściwe. Wartość musi być jedną z %s."
4538
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
4539
  #: core/gateways-dummy.php:15
4540
- #@ WPBDM
4541
  msgctxt "dummy gateway"
4542
  msgid "Dummy"
4543
  msgstr "Atrapa"
4544
 
 
4545
  #: core/gateways-dummy.php:38
4546
- #@ WPBDM
4547
  msgctxt "dummy gateway"
4548
  msgid "Dummy Gateway"
4549
  msgstr "Atrapa Bramki"
4550
 
 
4551
  #: core/gateways-dummy.php:39
4552
- #@ WPBDM
4553
  msgctxt "dummy gateway"
4554
  msgid "New Status:"
4555
  msgstr "Nowy status:"
4556
 
 
4557
  #: core/gateways-dummy.php:41
4558
- #@ WPBDM
4559
  msgctxt "dummy gateway"
4560
  msgid "Completed"
4561
  msgstr "Zakończona"
4562
 
 
4563
  #: core/gateways-dummy.php:43
4564
- #@ WPBDM
4565
  msgctxt "dummy gateway"
4566
  msgid "Pending"
4567
  msgstr "Oczekujące"
4568
 
 
4569
  #: core/gateways-dummy.php:45
4570
- #@ WPBDM
4571
  msgctxt "dummy gateway"
4572
  msgid "Canceled"
4573
  msgstr "Anulowana"
4574
 
 
4575
  #: core/gateways-dummy.php:47
4576
- #@ WPBDM
4577
  msgctxt "dummy gateway"
4578
  msgid "Rejected"
4579
  msgstr "Odrzucona"
4580
 
 
4581
  #: core/gateways-dummy.php:49
4582
- #@ WPBDM
4583
  msgctxt "dummy gateway"
4584
  msgid "Process Payment"
4585
  msgstr "Proces Płatności"
4586
 
4587
- #: core/class-settings.php:565
4588
- #@ WPBDM
4589
- msgctxt "admin settings"
4590
- msgid "Require login to post listings?"
4591
- msgstr "Żądać zalogowania aby umożliwić zamieszczanie ofert?"
 
4592
 
4593
- #: core/class-settings.php:582
4594
- #@ WPBDM
4595
- msgctxt "admin settings"
4596
- msgid "Min Image File Size (KB)"
4597
- msgstr "Minimalny rozmiar obrazu (KB)"
4598
 
4599
- #: core/class-settings.php:585
4600
- #@ WPBDM
4601
- msgctxt "admin settings"
4602
- msgid "Min image width (px)"
4603
- msgstr "Minimalna szerokość obrazu (px)"
 
4604
 
4605
- #: core/class-settings.php:586
4606
- #@ WPBDM
4607
- msgctxt "admin settings"
4608
- msgid "Min image height (px)"
4609
- msgstr "Minimalna wysokość obrazu (px)"
4610
 
4611
- #: core/class-settings.php:588
4612
- #@ WPBDM
4613
- msgctxt "admin settings"
4614
- msgid "Max image width (px)"
4615
- msgstr "Maksymalna szerokość obrazu (px)"
 
4616
 
4617
- #: core/class-settings.php:589
4618
- #@ WPBDM
4619
- msgctxt "admin settings"
4620
- msgid "Max image height (px)"
4621
- msgstr "Maksymalna wysokość obrazu (px)"
 
4622
 
4623
- #: core/gateways-googlewallet.php:18
4624
- #@ google-wallet
4625
- msgid "Google Wallet"
4626
- msgstr "Portfel Google"
4627
-
4628
- #: core/gateways-googlewallet.php:68
4629
- #@ WPBDM
4630
- msgctxt "google-wallet"
4631
- msgid "For recurring payments to work you need to <a>specify a postback URL</a> in your Google Wallet settings."
4632
- msgstr "Dla prawidłowej pracy powtarzających się płatności potrzebny będzie Ci <a>odpowiedni zwrotny adres URL</a> w ustawieniach Twojego Portfela Google."
4633
-
4634
- #: core/gateways-googlewallet.php:69
4635
- #, php-format
4636
- #@ WPBDM
4637
- msgctxt "google-wallet"
4638
- msgid "Please use %s as the postback URL."
4639
- msgstr "Proszę użyć %s jako zwrotnego adresu URL."
4640
-
4641
- #: core/gateways-googlewallet.php:105
4642
- #@ WPBDM
4643
- msgctxt "google-wallet"
4644
- msgid "Seller ID is missing."
4645
- msgstr "Zagubiono ID sprzedawcy."
4646
-
4647
- #: core/gateways-googlewallet.php:108
4648
- #@ WPBDM
4649
- msgctxt "google-wallet"
4650
- msgid "Seller Secret is missing."
4651
- msgstr "Zagubiono SECRET sprzedawcy."
4652
-
4653
- #: core/gateways-googlewallet.php:137
4654
- #@ WPBDM
4655
- msgctxt "google-wallet"
4656
- msgid "One time payment + recurring payment for renewal fees"
4657
- msgstr "Jednorazowa płatność + płatności powtarzające się dla odnawianych abonamentów"
4658
-
4659
- #: core/gateways-googlewallet.php:233
4660
- #@ WPBDM
4661
- msgctxt "google-wallet"
4662
- msgid "Payment was rejected because internal data does not look like a valid Google Wallet transaction."
4663
- msgstr "Płatność została odrzucona poniewaź informacje wskazują, że nie była to transakcja Portfela Google."
4664
-
4665
- #: core/gateways-googlewallet.php:248
4666
- #@ WPBDM
4667
- msgctxt "google-wallet"
4668
- msgid "Payment has been rejected because an internal error occurred."
4669
- msgstr "Płatność została odrzucona, ponieważ wystąpił błąd wewnętrzny."
4670
-
4671
- #: core/gateways-googlewallet.php:254
4672
- #@ WPBDM
4673
- msgctxt "google-wallet"
4674
- msgid "The transaction has been canceled at user's request."
4675
- msgstr "Płatność została anulowana, na polecenie Użytkownika."
4676
-
4677
- #: core/installer.php:38
4678
- #@ WPBDM
4679
  msgctxt "default category name"
4680
  msgid "General"
4681
  msgstr "Główna"
4682
 
4683
- #: core/installer.php:460
4684
- #@ WPBDM
 
4685
  msgctxt "installer"
4686
- msgid "<b>Business Directory Plugin - Regions Module</b> was disabled because it is incompatible with the current version of Business Directory. Please update the Regions module."
4687
- msgstr "<b>Katalog Firm - Moduł Regionów</b> został wyłączony, ponieważ używana wersja nie jest kompatybilna z wersją Katalogu Firm. Proszę zaktualizować Moduł Regionów do nowej wersji."
 
 
 
 
 
 
 
 
 
 
 
 
4688
 
4689
- #: core/installer.php:526
4690
- #, php-format
4691
- #@ WPBDM
4692
  msgctxt "installer"
4693
  msgid "Cleaning up listing fees information... %d/%d"
4694
  msgstr "Czyszczenie informacji o abonamentach... %d/%d"
4695
 
4696
- #: core/installer.php:576
4697
- #, php-format
4698
- #@ WPBDM
4699
  msgctxt "installer"
4700
  msgid "Migrating previous transactions to new Payments API... %d/%d"
4701
- msgstr "Migracja poprzednich transakcji do nowych ustawień API płatności... %d/%d"
 
4702
 
4703
- #: core/installer.php:605
4704
- #@ WPBDM
4705
  msgctxt "installer"
4706
  msgid "Initial listing payment (BD < 3.4)"
4707
  msgstr "Inicjacja płatności (BD < 3.4)"
4708
 
4709
- #: core/installer.php:616
4710
- #@ WPBDM
4711
  msgctxt "installer"
4712
  msgid "Listing edit payment (BD < 3.4)"
4713
  msgstr "Edycja płatności (BD < 3.4)"
4714
 
4715
- #: core/installer.php:637
4716
- #, php-format
4717
- #@ WPBDM
4718
  msgctxt "installer"
4719
  msgid "Renewal fee \"%s\" for category \"%s\""
4720
  msgstr "Odnowienie abonamentu \"%s\" dla kategorii \"%s\""
4721
 
4722
- #: core/installer.php:656
4723
- #@ WPBDM
4724
  msgctxt "installer"
4725
  msgid "Listing upgrade to featured"
4726
  msgstr "Podniesienie statusu do WYRÓŻNIONE"
4727
 
4728
- #: core/installer.php:859
4729
- #@ WPBDM
 
 
 
 
 
 
 
4730
  msgid "Business Directory - Manual Upgrade Required"
4731
  msgstr "Katalog firm - wymagana ręczna aktualizacja"
4732
 
4733
- #: core/installer.php:861
4734
- #@ WPBDM
4735
- msgid "Business Directory features are currently disabled because the plugin needs to perform a manual upgrade before continuing."
4736
- msgstr "Funkcje pluginu KATALOG FIRM chwilowo wyłączone, ponieważ plugin oczekuje na ręczną aktualizację, przed kontynuacją."
 
 
 
 
4737
 
4738
- #: core/installer.php:863
4739
- #@ WPBDM
4740
  msgid "Perform Manual Upgrade"
4741
  msgstr "Wykonać ręczne uaktualnienie"
4742
 
4743
- #: core/installer.php:879
4744
- #: core/installer.php:880
4745
- #: core/installer.php:891
4746
- #@ WPBDM
4747
  msgid "Business Directory - Manual Upgrade"
4748
  msgstr "Katalog Firm - Ręczna Aktualizacja"
4749
 
4750
- #: core/installer.php:895
4751
- #@ WPBDM
4752
- msgid "Business Directory features are currently disabled because the plugin needs to perform a manual upgrade before it can be used."
4753
- msgstr "Funkcje pluginu KATALOG FIRM chwilowo wyłączone, ponieważ plugin oczekuje na ręczną aktualizację, zanim będzie mógł być użyty."
 
 
 
 
4754
 
4755
- #: core/installer.php:897
4756
- #@ WPBDM
4757
  msgid "Click \"Start Upgrade\" and wait until the process finishes."
4758
- msgstr "Kliknij \"Start Aktualizacji\" i czekaj do zakończenia procesuand wait until the process finishes."
 
 
4759
 
4760
- #: core/installer.php:900
4761
- #@ WPBDM
4762
  msgctxt "manual-upgrade"
4763
  msgid "Start Upgrade"
4764
  msgstr "Rozpocznij Aktualizację"
4765
 
4766
- #: core/installer.php:902
4767
- #@ WPBDM
4768
  msgctxt "manual-upgrade"
4769
  msgid "Pause Upgrade"
4770
  msgstr "Wstrzymaj Aktualizację"
4771
 
4772
- #: core/installer.php:908
4773
- #@ WPBDM
4774
  msgctxt "manual-upgrade"
4775
- msgid "The upgrade was sucessfully performed. Business Directory Plugin is now available."
 
 
4776
  msgstr "Aktualizacja przebiegła pomyślnie. Katalog Firm jest teraz dostępny."
4777
 
4778
- #: core/installer.php:911
4779
- #@ WPBDM
4780
  msgctxt "manual-upgrade"
4781
  msgid "Go to \"Directory Admin\""
4782
  msgstr "Przejdź do \"Katalog Administracja\""
4783
 
4784
- #: core/licensing.php:43
4785
- #: core/licensing.php:65
4786
- #: core/licensing.php:66
4787
- #@ WPBDM
 
 
 
 
 
 
 
 
 
 
 
 
 
 
4788
  msgctxt "settings"
4789
  msgid "Licenses"
4790
  msgstr "Licencje"
4791
 
4792
- #: core/licensing.php:46
4793
- #@ WPBDM
4794
  msgctxt "settings"
4795
  msgid "Premium Modules"
4796
  msgstr "Moduły Premium"
4797
 
4798
- #: core/licensing.php:107
4799
- #: core/licensing.php:141
4800
- #@ WPBDM
4801
  msgctxt "licensing"
4802
  msgid "Invalid module ID"
4803
  msgstr "Niewłaściwe ID Modułu"
4804
 
4805
- #: core/licensing.php:112
4806
- #@ WPBDM
4807
  msgctxt "licensing"
4808
  msgid "No license key provided"
4809
  msgstr "Nie wprowadzono klucz licencji"
4810
 
4811
- #: core/licensing.php:127
4812
- #: core/licensing.php:159
4813
- #@ WPBDM
4814
- msgctxt "licensing"
4815
- msgid "Could not contact licensing server"
4816
- msgstr "Nie można połączyć z serwerem danych licencji"
4817
-
4818
- #: core/licensing.php:132
4819
- #: core/licensing.php:166
4820
- #@ WPBDM
4821
- msgctxt "licensing"
4822
- msgid "License key is invalid"
4823
- msgstr "Niewłaściwy Klucz Licencji"
4824
-
4825
- #: core/licensing.php:169
4826
- #@ WPBDM
4827
  msgctxt "licensing"
4828
  msgid "Deactivation failed"
4829
  msgstr "Błąd Deaktywacji"
4830
 
4831
- #: core/licensing.php:230
4832
- #@ WPBDM
4833
  msgctxt "licensing"
4834
  msgid "Business Directory - License Key Required"
4835
  msgstr "Katalog firm - wymagany Klucz Licencji"
4836
 
4837
- #: core/licensing.php:233
4838
- #@ WPBDM
4839
  msgctxt "licensing"
4840
- msgid "The following premium modules will not work until a valid license key is provided. Go to <a>Manage Options - Licenses</a> to enter your license information."
4841
- msgstr "Poniższye moduły premium nie będą pracowały do momentu wprowadzenia klucza licencji. Przejdź do <a>Zarządzanie opcjami - Licencje</a>aby wprowadzić informacje o licencji."
 
 
 
 
 
 
4842
 
4843
- #: core/licensing.php:254
4844
- #@ WPBDM
4845
  msgctxt "licensing"
4846
  msgid "Business Directory - License Key Expired"
4847
  msgstr "Katalog firm - wygasł Klucz Licencji"
4848
 
4849
- #: core/licensing.php:255
4850
- #, php-format
4851
- #@ WPBDM
4852
  msgctxt "licensing"
4853
- msgid "The license key for <span class=\"module-name\">%s %s</span> has expired. The module will continue to work but you will not receive any more updates until the license is renewed."
4854
- msgstr "Klucz licencyjny <span class=\"module-name\">do% s% s</span> wygasł. Moduł będzie nadal działać, ale nie będzie już otrzymywać żadnych aktualizacji do czasu odnowienia licencji."
 
 
 
 
 
 
4855
 
4856
- #: core/licensing.php:259
4857
- #@ WPBDM
4858
  msgctxt "licensing"
4859
  msgid "Remind me later"
4860
  msgstr "Przypomnij później"
4861
 
4862
- #: core/licensing.php:261
4863
- #@ WPBDM
4864
  msgctxt "licensing"
4865
  msgid "Renew License Key"
4866
  msgstr "Odśwież Klucz Licencji"
4867
 
4868
- #: core/licensing.php:330
4869
- #, php-format
4870
- #@ WPBDM
4871
- msgctxt "licensing"
4872
- msgid "Could not activate license: %s."
4873
- msgstr "Nie możemy aktywować Licencji: %s."
4874
-
4875
- #: core/licensing.php:332
4876
- #@ WPBDM
4877
- msgctxt "licensing"
4878
- msgid "License activated"
4879
- msgstr "Licencja została aktywowana"
4880
-
4881
- #: core/licensing.php:348
4882
- #, php-format
4883
- #@ WPBDM
4884
  msgctxt "licensing"
4885
  msgid "Could not deactivate license: %s."
4886
  msgstr "Nie możemy deaktywować Licencji: %s."
4887
 
4888
- #: core/licensing.php:350
4889
- #@ WPBDM
4890
- msgctxt "licensing"
4891
- msgid "License deactivated"
4892
- msgstr "Licencja deaktywowana"
4893
-
4894
- #: core/payment.php:18
4895
- #@ WPBDM
4896
- msgctxt "fees-api"
4897
- msgid "Free Listing"
4898
- msgstr "Oferta Bezpłatna"
4899
-
4900
- #: core/payment.php:135
4901
- #@ WPBDM
4902
- msgctxt "fees-api"
4903
- msgid "Fee label is required."
4904
- msgstr "Etykieta abonamentu jest wymagana."
4905
-
4906
- #: core/payment.php:138
4907
- #@ WPBDM
4908
- msgctxt "fees-api"
4909
- msgid "Fee amount must be a non-negative decimal number."
4910
- msgstr "Kwota abonamentu musi być dodatnią liczbą dziesiętną."
4911
-
4912
- #: core/payment.php:141
4913
- #: core/payment.php:144
4914
- #@ WPBDM
4915
- msgctxt "fees-api"
4916
- msgid "Fee must apply to at least one category."
4917
- msgstr "Abonament musi być stosowany do co najmniej jednej kategorii."
4918
 
4919
- #: core/payment.php:147
4920
- #@ WPBDM
4921
- msgctxt "fees-api"
4922
- msgid "Fee allowed images must be a non-negative integer."
4923
- msgstr "Abonament dla dozwolonej ilości obrazów musi zawierać się w liczbie dodatniej, całkowitej."
 
 
 
 
 
 
4924
 
4925
- #: core/payment.php:150
4926
- #@ WPBDM
4927
- msgctxt "fees-api"
4928
- msgid "Fee listing run must be a non-negative integer."
4929
- msgstr "Abonament dla biegu oferty musi zawierać się w liczbie dodatniej, całkowitej."
 
 
 
 
 
 
 
 
4930
 
4931
- #: core/payment.php:155
4932
- #@ WPBDM
4933
- msgctxt "fees-api"
4934
- msgid "Fee listing duration must be a number less than 10 years (3650 days)."
4935
- msgstr "Abonament dla okresu ważności oferty musi zawierać się w liczbie dodatniej, całkowitej."
 
 
 
 
 
4936
 
4937
- #: core/payment.php:325
4938
- #, php-format
4939
- #@ WPBDM
4940
- msgctxt "payments-api"
4941
- msgid "You are offering featured listings but have payments turned off. Go to <a href=\"%s\">Manage Options - Payment</a> to change the payment settings. Until you change this, the <i>Upgrade to Featured</i> option will be disabled."
4942
- msgstr "Oferujesz wyróżnienia ale masz wyłączone opcje płatności. Przejdź do <a href=\"%s\">Opcje zarządzania - Płatności </a> aby zmienić te ustawienia. Do czasu zmiany tych ustawień opcja <i>Zmień status na wyróżnione</i> będzie niedostępna."
 
 
 
 
 
 
4943
 
4944
- #: core/payment.php:343
4945
- #, php-format
4946
- #@ WPBDM
4947
- msgctxt "payments-api"
4948
- msgid "The <b>%s</b> gateway is active but not properly configured. The gateway won't be available until the following problems are fixed: <b>%s</b>. <br/> Check the <a href=\"%s\">payment settings</a>."
4949
- msgstr "Bramka <b>%s</b> jest aktywna, ale nie jest skonfigurowana. Bramka nie będzie dostępna do czasu usunięcia tych problemów: <b>%s</b>. Sprawdź <a href=\"%s\">Ustawienia Płatności</a>."
4950
 
4951
- #: core/payment.php:353
4952
- #, php-format
4953
- #@ WPBDM
4954
- msgctxt "admin"
4955
- msgid "You have payments turned on but no gateway is active and properly configured. Go to <a href=\"%s\">Manage Options - Payment</a> to change the payment settings. Until you change this, the directory will operate in <i>Free Mode</i>."
4956
- msgstr "Masz włączone płatności, ale nie masz aktywnej i właściwie skonfigurowanej bramki. Przejdź do <a href=\"%s\">Zarządzaj Opcjami - Płatności</a> aby zmienić ustawienia. Do czasu wprowadzenia zmian, plugin będzie działał w <i>Trybie Bezpłatnym</i>."
4957
-
4958
- #: core/payment.php:357
4959
- #@ admin
4960
- msgid "BD detected PayFast and another gateway were enabled. This setup is not recommended due to PayFast supporting only ZAR and the other gateways not supporting this currency."
4961
- msgstr "Katalog Firm wykrył włączoną bramkę PayFast oraz inne włączone bramki. To ustawienie nie jest zalecane ze względu na to, że PayFast wspiera tylko ZAR, a inne bramki nie wspierają tej waluty."
4962
-
4963
- #: core/payment.php:361
4964
- #@ WPBDM
4965
- msgid "You have recurring renewal of listing fees enabled but the payment gateways installed don't support recurring payments. Until a gateway that supports recurring payments (such as PayPal) is enabled automatic renewals will be disabled."
4966
- msgstr "Masz włączone powtarzające się odnowienia abonamentów, ale zainstalowana bramka płatności nie obsługuje powtarzających się płatności. Dopóki bramka, która obsługuje powtarzające się płatności (taka jak PayPal) nie zostanie włączona, automatyczne odnowienie zostaną wyłączone."
4967
-
4968
- #: core/payment.php:366
4969
- #@ WPBDM
4970
- msgid "Due to Google Wallet limitations only monthly (30 days) recurring fees are supported by the gateway. All other fees will be charged as non-recurring."
4971
- msgstr "Ze względu na ograniczenia w Portfelu Google, tylko opłaty cykliczne (30 dniowe), są obsługiwane przez bramkę. Wszystkie pozostałe opłaty będą pobierane jako jednorazowe."
4972
-
4973
- #: core/payment.php:399
4974
- #@ WPBDM
4975
  msgctxt "payments-api"
4976
  msgid "Checkout"
4977
  msgstr "Przejdź do Kasy"
4978
 
4979
- #: core/payment.php:400
4980
- #, php-format
4981
- #@ WPBDM
4982
  msgctxt "payments-api"
4983
  msgid "Pay %1$s through %2$s"
4984
  msgstr "Zapłać %1$s z %2$s"
4985
 
4986
- #: core/payment.php:407
4987
- #@ WPBDM
4988
  msgctxt "payments-api"
4989
  msgid "Your transaction has been approved."
4990
  msgstr "Transakcja została zatwierdzona."
4991
 
4992
- #: core/payment.php:588
4993
- #@ WPBDM
4994
  msgctxt "payments"
4995
  msgid "Payment Details"
4996
  msgstr "Szczegóły płatności"
4997
 
4998
- #: core/payment.php:615
4999
- #@ WPBDM
5000
  msgctxt "checkout"
5001
  msgid "Payment Method"
5002
  msgstr "Sposób Zapłaty"
5003
 
5004
- #: core/payment.php:644
5005
- #@ WPBDM
5006
  msgctxt "payment"
5007
  msgid "Return to Directory."
5008
  msgstr "Powrót do Katalogu."
5009
 
5010
- #: core/payment.php:650
5011
- #@ WPBDM
5012
  msgctxt "payments"
5013
- msgid "Your payment is being processed by the payment gateway. Please reload this page in a moment to see if the status has changed or contact the site administrator."
5014
- msgstr "Twoja płatność jest przetwarzana przez bramki płatności. Odśwież stronę po chwili, aby zobaczyć czy status się zmienił, lub skontaktuj się z administratorem serwisu."
 
 
 
 
 
 
5015
 
5016
- #: core/payment.php:653
5017
- #@ WPBDM
5018
  msgctxt "payments"
5019
- msgid "The payment has been rejected by the payment gateway. Please contact the site administrator if you think there is an error or click \"Change Payment Method\" to select another payment method and try again."
5020
- msgstr "Płatność została odrzucona przez bramkę płatności. Proszę skontaktować się z administratorem strony jeśli uważasz, że jest to błąd lub kliknij \"Zmiana metody płatności \", aby wybrać inną metodę płatności i spróbuj ponownie."
 
 
 
 
 
 
5021
 
5022
- #: core/payment.php:654
5023
- #@ WPBDM
5024
  msgctxt "payments"
5025
  msgid "Change Payment Method"
5026
  msgstr "Zmień Sposób Zapłaty"
5027
 
5028
- #: core/payment.php:656
5029
- #@ WPBDM
5030
  msgctxt "payments"
5031
- msgid "The payment has been rejected by the payment gateway. Please contact the site administrator if you think there is an error."
5032
- msgstr "Płatność została odrzucona przez bramkę płatności. Proszę skontaktować się z administratorem strony jeśli uważasz, że jest to błąd."
 
 
 
 
5033
 
5034
- #: core/payment.php:659
5035
- #@ WPBDM
5036
  msgctxt "payments"
5037
  msgid "The payment has been canceled at your request."
5038
  msgstr "Płatność została anulowana na Twoje polecenie."
5039
 
5040
- #: core/templates-listings.php:54
5041
- #@ WPBDM
 
 
 
 
 
 
 
 
 
 
 
 
 
5042
  msgctxt "templates"
5043
  msgid "Featured Listing"
5044
  msgstr "Wyróżniona oferta"
5045
 
5046
- #: core/templates-ui.php:158
5047
- #@ WPBDM
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
5048
  msgctxt "templates"
5049
  msgid "No listing categories found."
5050
  msgstr "Nie znaleziono kategorii ofert."
5051
 
5052
- #: core/templates-ui.php:231
5053
- #@ WPBDM
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
5054
  msgctxt "templates"
5055
  msgid "Advanced Search"
5056
  msgstr "Zaawansowane szukanie"
5057
 
5058
- #: core/templates-ui.php:257
5059
- #: core/templates-ui.php:282
5060
- #@ WPBDM
5061
  msgctxt "templates sort"
5062
  msgid "Sort By:"
5063
  msgstr "Sortuj według: "
5064
 
5065
- #: core/templates-ui.php:276
5066
- #@ WPBDM
5067
  msgctxt "sort"
5068
  msgid "Reset"
5069
  msgstr "Resetuj"
5070
 
5071
- #: core/utils.php:104
5072
- #@ WPBDM
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
5073
  msgctxt "utils"
5074
- msgid "POSTed data exceeds PHP config. maximum. See \"post_max_size\" directive."
5075
- msgstr "Opublikowana wartość przekracza maksymalne ustawienia zapisane w PHP config. Zobacz dyrektywę \"post_max_size\"."
 
 
 
5076
 
5077
- #: core/utils.php:157
5078
- #, php-format
5079
- #@ WPBDM
5080
  msgctxt "utils"
5081
  msgid "File size (%s) exceeds maximum file size of %s"
5082
  msgstr "Rozmiar pliku (%s) przekracz maksymalny dozwolony rozmiar %s"
5083
 
5084
- #: core/utils.php:174
5085
- #: core/utils.php:181
5086
- #, php-format
5087
- #@ WPBDM
5088
  msgctxt "utils"
5089
- msgid "File type \"%s\" is not allowed"
5090
- msgstr "Pliki typu \"%s\" , nie dozwolone"
 
 
 
 
 
 
5091
 
5092
- #: core/utils.php:188
5093
- #@ WPBDM
5094
  msgctxt "utils"
5095
  msgid "Unkown error while uploading file."
5096
  msgstr "Nieznany błąd podczas przesyłania pliku."
5097
 
5098
- #: core/utils.php:207
5099
- #@ WPBDM
5100
  msgctxt "utils"
5101
  msgid "Uploaded file is not an image"
5102
  msgstr "Ładowany plik nie jest plikiem obrazu."
5103
 
5104
- #: core/utils.php:248
5105
- #@ WPBDM
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
5106
  msgctxt "utils"
5107
  msgid "Error while uploading file"
5108
  msgstr "Błąd podczas przesyłania pliku."
5109
 
5110
- #: core/view-checkout.php:34
5111
- #@ WPBDM
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
5112
  msgctxt "payments"
5113
  msgid "Invalid payment id."
5114
  msgstr "Niewłaściwe ID płatności"
5115
 
5116
- #: core/view-checkout.php:92
5117
- #@ WPBDM
5118
  msgctxt "checkout"
5119
  msgid "Continue"
5120
  msgstr "Kontynuacja"
5121
 
5122
- #: core/view-checkout.php:103
5123
- #@ WPBDM
5124
  msgctxt "checkout"
5125
- msgid "Payments are not allowed on the non-secure version of this site. Please <a>continue to the secure server to proceed with your payment</a>."
5126
- msgstr "Płatności nie dozwolone na niezabezpieczonej wersji tej strony. Proszę <a>przejść do bezpiecznego serwera, aby dokonać płatności</a>."
 
 
 
 
5127
 
5128
- #: core/view-checkout.php:118
5129
- #@ WPBDM
5130
  msgctxt "checkout"
5131
- msgid "Your payment is being verified. This usually takes a few minutes but can take up to 24 hours."
5132
- msgstr "Twoja płatność jest weryfikowana. Najczęściej zajmuje to kilka minut, ale może się zdażyć, że potrwa to nawet do 24 godzin."
 
 
 
 
5133
 
5134
- #: core/view-checkout.php:126
5135
- #: core/view-checkout.php:147
5136
- #@ WPBDM
5137
  msgctxt "checkout"
5138
  msgid "← Return to Directory."
5139
  msgstr "← Powrót do Katalogu."
5140
 
5141
- #: core/view-checkout.php:136
5142
- #@ WPBDM
5143
  msgctxt "checkout"
5144
  msgid "Your payment was received sucessfully."
5145
  msgstr "Otrzymaliśmy Zapłatę. Dziękujemy."
5146
 
5147
- #: core/view-checkout.php:143
5148
- #@ WPBDM
5149
  msgctxt "checkout"
5150
  msgid "← Return to your listing."
5151
  msgstr "← Powrót do Twojej oferty."
5152
 
5153
- #: core/view-delete-listing.php:10
5154
- #@ WPBDM
5155
  msgctxt "delete listing"
5156
  msgid "Please log in to delete the listing."
5157
  msgstr "Zaloguj się aby usunąć ofertę."
5158
 
5159
- #: core/view-delete-listing.php:23
5160
- #@ WPBDM
5161
  msgctxt "delete listing"
5162
  msgid "Your listing has been deleted."
5163
  msgstr "Twoja oferta została usunięta."
5164
 
5165
- #: core/view-listing-contact.php:49
5166
- #@ WPBDM
5167
  msgctxt "contact-message"
5168
  msgid "Please enter your name."
5169
  msgstr "Proszę wprowadzić Imię"
5170
 
5171
- #: core/view-listing-contact.php:52
5172
- #@ WPBDM
5173
  msgctxt "contact-message"
5174
  msgid "Please enter a valid email."
5175
  msgstr "Proszę wprowadzić poprawny adres e-mail."
5176
 
5177
- #: core/view-listing-contact.php:55
5178
- #@ WPBDM
5179
  msgctxt "contact-message"
5180
  msgid "You did not enter a message."
5181
  msgstr "Nie wpisałeś wiadomości."
5182
 
5183
- #: core/view-listing-contact.php:58
5184
- #@ WPBDM
5185
  msgctxt "contact-message"
5186
  msgid "The reCAPTCHA wasn't entered correctly."
5187
  msgstr "ReCaptcha nie została poprawnie wprowadzona."
5188
 
5189
- #: core/view-listing-contact.php:67
5190
- #@ WPBDM
5191
  msgctxt "contact form"
5192
  msgid "Please <a>log in</a> to be able to send messages to the listing owner."
5193
- msgstr "Proszę się <a>zalogować</a>, aby wysłąć wiadomość do osoby odpowiedzialnej za kontakt z klientem."
 
 
5194
 
5195
- #: core/view-listing-contact.php:86
5196
- #@ WPBDM
5197
  msgctxt "contact form"
5198
  msgid "This contact form is temporarily disabled. Please try again later."
5199
- msgstr "Ten formularz kontaktu jest chwilowo wyłączony. Możesz spróbować pózniej."
 
 
 
 
 
 
 
5200
 
5201
- #: core/view-listing-contact.php:125
5202
- #@ WPBDM
5203
  msgctxt "templates"
5204
  msgid "Send Message to listing owner"
5205
  msgstr "Wyślij wiadomość do właściciela oferty"
5206
 
5207
- #: core/view-listing-contact.php:171
5208
- #@ default
5209
  msgid "l F j, Y \\a\\t g:i a"
5210
  msgstr "l F j, Y \\a\\t g:i a"
5211
 
5212
- #: core/view-listing-contact.php:192
5213
- #@ WPBDM
 
 
 
 
 
 
 
 
 
 
 
 
 
 
5214
  msgctxt "contact-message"
5215
  msgid "There was a problem encountered. Your message has not been sent"
5216
  msgstr "Wystąpił problem. Twoja wiadomość nie została wysłana"
5217
 
5218
- #: core/view-listing-contact.php:195
5219
- #@ WPBDM
5220
  msgctxt "contact-message"
5221
  msgid "Return to listing."
5222
  msgstr "Powrót do oferty."
5223
 
5224
- #: core/view-manage-recurring.php:23
5225
- #@ WPBDM
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
5226
  msgctxt "manage subscriptions"
5227
  msgid "You are not on recurring payments for any of your listings."
5228
- msgstr "Nie masz włączonych powtarzających się płatności dla żadnej z Twoich ofert."
 
5229
 
5230
- #: core/view-manage-recurring.php:95
5231
- #@ WPBDM
5232
  msgctxt "manage subscriptions"
5233
  msgid "Invalid subscription."
5234
  msgstr "Niepoprawna subkrypcja."
5235
 
5236
- #: core/view-renew-listing.php:18
5237
- #@ WPBDM
 
 
 
 
 
 
 
 
 
 
 
 
 
 
5238
  msgctxt "renewal"
5239
  msgid "Listing renewal is disabled at this moment. Please try again later."
5240
  msgstr "Odnawianie ofert jest chwilowo wyłączone. spróbuj ponownie później."
5241
 
5242
- #: core/view-renew-listing.php:21
5243
- #@ WPBDM
5244
  msgctxt "renewal"
5245
- msgid "Your renewal ID is invalid. Please use the URL you were given on the renewal e-mail message."
5246
- msgstr "Twoja ID odnowienia jest nieprawidłowe. Proszę kliknąć na adres URL, podany w wiadomości e-mail dotyczącej odnowienia."
 
 
 
 
5247
 
5248
- #: core/view-renew-listing.php:47
5249
- #@ WPBDM
5250
  msgctxt "renewal"
5251
  msgid "Your renewal was successfully cancelled."
5252
  msgstr "Twoje odnowienie zostało pomyślnie anulowane."
5253
 
5254
- #: core/view-renew-listing.php:59
5255
- #, php-format
5256
- #@ WPBDM
5257
  msgctxt "listings"
5258
  msgid "Fee \"%s\" renewal for category \"%s\""
5259
  msgstr "Abonament \"%s\" odnowienia dla kategorii \"%s\""
5260
 
5261
- #: core/view-renew-listing.php:79
5262
- #@ WPBDM
5263
  msgctxt "renewal"
5264
  msgid "Invalid renewal state."
5265
  msgstr "Niepoprawny Kraj."
5266
 
5267
- #: core/view-renew-listing.php:91
5268
- #@ WPBDM
5269
  msgctxt "templates"
5270
  msgid "Recurring Fee Management"
5271
  msgstr "Zarządzanie powtarzającymi sie Abonamentami"
5272
 
5273
- #: core/view-renew-listing.php:92
5274
- #@ WPBDM
5275
  msgctxt "renew"
5276
- msgid "Because you are on a recurring fee plan you don't have to renew your listing right now as this will be handled automatically when renewal comes."
5277
- msgstr "Ponieważ używasz powtarzających się płatności abonamentów, nie musisz odnawiać oferty teraz, odnowienie zostanie wykonane automatycznie, gdy zajdzie taka potrzeba."
 
 
 
 
 
5278
 
5279
- #: core/view-renew-listing.php:94
5280
- #@ WPBDM
5281
  msgctxt "renewal"
5282
  msgid "Current Fee Details"
5283
  msgstr "Aktualne Szczegóły Abonamentu"
5284
 
5285
- #: core/view-renew-listing.php:96
5286
- #@ WPBDM
5287
  msgctxt "renewal"
5288
  msgid "Number of images:"
5289
  msgstr "Liczba obrazów:"
5290
 
5291
- #: core/view-renew-listing.php:98
5292
- #@ WPBDM
5293
  msgctxt "renewal"
5294
  msgid "Expiration date:"
5295
  msgstr "Data ważności:"
5296
 
5297
- #: core/view-renew-listing.php:102
5298
- #@ WPBDM
5299
  msgctxt "renew"
5300
- msgid "However, if you want to cancel your subscription you can do that on this page. When the renewal time comes you'll be able to change your settings again."
5301
- msgstr "Jednakże, jeśli chcesz zrezygnować z subskrypcji możesz to zrobić na tej stronie. Kiedy nadejdzie czas odnowienia, będzie można ponownie zmienić swoje ustawienia."
5302
-
5303
- #: core/view-submit-listing.php:29
5304
- #@ WPBDM
5305
- msgctxt "templates"
5306
- msgid "There are no categories assigned to the business directory yet. You need to assign some categories to the business directory. Only admins can see this message. Regular users are seeing a message that they cannot add their listing at this time. Listings cannot be added until you assign categories to the business directory."
5307
- msgstr "Nie masz jeszcze żadnej kategorii przypisanej do Katalogu Firm. Musisz przypisać pewne kategorie do Katalogu Firm. Tylko administratorzy mogą zobaczyć tę wiadomość. Zwykli użytkownicy widzą komunikat, że nie można teraz dodać swojej oferty. Oferty nie mogą zostać dodane do momentu przypisania kategorii do Katalogu Firm."
5308
-
5309
- #: core/view-submit-listing.php:31
5310
- #@ WPBDM
5311
- msgctxt "templates"
5312
- msgid "Your listing cannot be added at this time. Please try again later. If this is not the first time you see this warning, please ask the site administrator to set up one or more categories inside the Directory."
5313
- msgstr "Listą Nie można dodać w tym czasie. Proszę spróbuj ponownie później. Jeśli nie jest to pierwszy raz widzisz to ostrzeżenie, poproś administratora o utworzenie jednej lub więcej kategorii wewnątrz katalogu."
5314
-
5315
- #: core/view-submit-listing.php:43
5316
- #@ WPBDM
5317
- msgctxt "templates"
5318
- msgid "You are not authorized to edit this listing."
5319
- msgstr "Nie masz uprawnień do edycji tej oferty."
5320
-
5321
- #: core/view-submit-listing.php:58
5322
- #@ WPBDM
5323
- msgctxt "templates"
5324
- msgid "Edit Your Listing"
5325
- msgstr "Edycja oferty"
5326
-
5327
- #: core/view-submit-listing.php:58
5328
- #@ WPBDM
5329
- msgctxt "templates"
5330
- msgid "Submit A Listing"
5331
- msgstr "Dodaj Firmę"
5332
 
5333
- #: core/view-submit-listing.php:65
5334
- #@ WPBDM
5335
- msgctxt "templates"
5336
- msgid "You are logged in as an administrator. Any payment steps will be skipped."
5337
- msgstr "Jesteś zalogowany jako administrator. Wszelkie kroki płatności zostaną pominięte."
 
5338
 
5339
- #: core/view-submit-listing.php:199
5340
- #, php-format
5341
- #@ WPBDM
5342
- msgctxt "templates"
5343
- msgid "Please select a fee option for the \"%s\" category."
5344
- msgstr "Wybierz abonament dla tegj kategori \"%s\"."
5345
 
5346
- #: core/view-submit-listing.php:267
5347
- #@ WPBDM
5348
- msgctxt "templates"
5349
- msgid "Please agree to the Terms and Conditions."
5350
- msgstr "Musisz zaakceptować nasze warunki i regulamin korzystania z serwisu."
5351
 
5352
- #: core/view-submit-listing.php:273
5353
- #@ WPBDM
5354
- msgctxt "templates"
5355
- msgid "The reCAPTCHA wasn't entered correctly."
5356
- msgstr "ReCaptcha nie została poprawnie wprowadzona."
 
5357
 
5358
- #: core/view-submit-listing.php:290
5359
- #@ WPBDM
5360
- msgctxt "templates"
5361
- msgid "Read our Terms and Conditions"
5362
- msgstr "Zapoznaj się z warunkami i regulaminem korzystania z serwisu."
 
5363
 
5364
- #: core/view-submit-listing.php:295
5365
- #@ WPBDM
5366
  msgctxt "templates"
5367
- msgid "Terms and Conditions:"
5368
- msgstr "Warunki i regulamin:"
 
 
5369
 
5370
- #: core/view-submit-listing.php:306
5371
- #@ WPBDM
 
5372
  msgctxt "templates"
5373
- msgid "I agree to the Terms and Conditions"
5374
- msgstr "Akceptuję rwarunki i regulamin korzystania z witryny."
5375
-
5376
- #: core/view-submit-listing.php:404
5377
- #, php-format
5378
- #@ WPBDM
5379
- msgctxt "listings"
5380
- msgid "Fee \"%s\" for category \"%s\"%s"
5381
- msgstr "Abonament \"%s\" dla kategorii \"%s\""
5382
-
5383
- #: core/view-submit-listing.php:407
5384
- #@ WPBDM
5385
- msgctxt "listings"
5386
- msgid "(recurring)"
5387
- msgstr "(powtarzające się)"
5388
-
5389
- #: core/view-submit-listing.php:417
5390
- #: core/view-upgrade-listing.php:54
5391
- #@ WPBDM
5392
- msgctxt "submit"
5393
- msgid "Listing upgrade to featured"
5394
- msgstr "Podniesiono status Oferty do \"Wyróżniona\""
5395
-
5396
- #: core/view-submit-listing.php:450
5397
- #@ WPBDM
5398
- msgctxt "submit_state"
5399
- msgid "Invalid submit state."
5400
- msgstr "Niepoprawny Kraj."
5401
 
5402
- #: core/view-upgrade-listing.php:21
5403
- #@ WPBDM
5404
  msgctxt "listing upgrade"
5405
  msgid "Invalid link followed."
5406
  msgstr "Niepoprawny link"
5407
 
5408
- #: core/view-upgrade-listing.php:27
5409
- #@ WPBDM
5410
  msgctxt "templates"
5411
  msgid "Your listing is already pending approval for \"featured\" status."
5412
  msgstr "Twoja oferta już oczekuje na status \"Wyróżniona\"."
5413
 
5414
- #: core/view-upgrade-listing.php:28
5415
- #@ WPBDM
5416
  msgctxt "templates"
5417
  msgid "Return to listing."
5418
  msgstr "Powrót do oferty."
5419
 
5420
- #: core/views.php:23
5421
- #@ WPBDM
5422
- msgid "You need to create a page with the [businessdirectory] shortcode for the Business Directory plugin to work correctly."
5423
- msgstr "Musisz utworzyć stronę z krótkim kodem [businessdirectory] , aby Katalog Firm mógł działać prawidłowo."
5424
-
5425
- #: core/views.php:25
5426
- #@ WPBDM
5427
- msgid "The directory is temporarily disabled."
5428
- msgstr "Katalog jest tymczasowo wyłączony."
5429
-
5430
- #: core/views.php:154
5431
- #@ WPBDM
5432
- msgctxt "preview"
5433
- msgid "This is just a preview. The listing has not been published yet."
5434
- msgstr "To jest tylko podgląd. Oferta nie została jeszcze opublikowana."
5435
-
5436
- #: core/views.php:368
5437
- #@ WPBDM
5438
- msgctxt "templates"
5439
- msgid "There are no categories assigned to the business directory yet. You need to assign some categories to the business directory. Only admins can see this message. Regular users are seeing a message that there are currently no listings in the directory. Listings cannot be added until you assign categories to the business directory."
5440
- msgstr "Nie masz jeszcze żadnej kategorii przypisanej do Katalogu Firm. Musisz przypisać pewne kategorie do Katalogu Firm. Tylko administratorzy mogą zobaczyć tę wiadomość. Zwykli użytkownicy widzą komunikat, że nie można teraz dodać swojej oferty. Oferty nie mogą zostać dodane do momentu przypisania kategorii do Katalogu Firm."
5441
-
5442
- #: core/views.php:370
5443
- #@ WPBDM
5444
- msgctxt "templates"
5445
- msgid "There are currently no listings in the directory."
5446
- msgstr "Chwilowo brak ofert w Katalogu."
5447
-
5448
- #: core/views.php:388
5449
- #@ WPBDM
5450
- msgctxt "templates"
5451
- msgid "You have \"Hide Empty Categories\" on and some categories that don't have listings in them. That means they won't show up on the front end of your site. If you didn't want that, click <a>here</a> to change the setting."
5452
- msgstr "Masz ustawione \"Ukryj Puste Kategorie\" i pewne kategorie, które nie zawierają ofert. To oznacza, że te kategorie nie będą wyświetlane na stornach Katalogu. Jeśli chcesz to zmienić kliknij <a>tutaj</a>."
5453
-
5454
  #: core/widget-featured-listings.php:11
5455
- #@ WPBDM
5456
  msgctxt "widgets"
5457
  msgid "Business Directory - Featured Listings"
5458
  msgstr "Katalog Firm - Wyróżnione Oferty"
5459
 
 
5460
  #: core/widget-featured-listings.php:12
5461
- #@ WPBDM
5462
  msgctxt "widgets"
5463
  msgid "Displays a list of the featured/sticky listings in the directory."
5464
  msgstr "Wyświetlanie wyróżnionych ofert na stronie kategori katalogu."
5465
 
 
5466
  #: core/widget-featured-listings.php:14
5467
- #@ WPBDM
5468
  msgctxt "widgets"
5469
  msgid "Featured Listings"
5470
  msgstr "Wyróżnione Firmy"
5471
 
 
5472
  #: core/widget-featured-listings.php:23
5473
- #@ WPBDM
5474
  msgctxt "widgets"
5475
  msgid "Display listings in random order"
5476
  msgstr "Wyświetl Firmy losowo"
5477
 
 
5478
  #: core/widget-latest-listings.php:11
5479
- #@ WPBDM
5480
  msgctxt "widgets"
5481
  msgid "Business Directory - Latest Listings"
5482
  msgstr "Katalog Firm - Najświeższe Firmy"
5483
 
 
5484
  #: core/widget-latest-listings.php:12
5485
- #@ WPBDM
5486
  msgctxt "widgets"
5487
  msgid "Displays a list of the latest listings in the Business Directory."
5488
  msgstr "Wyświetl najnowszą Listę Firm z Katalogu Firm"
5489
 
 
5490
  #: core/widget-latest-listings.php:14
5491
- #@ WPBDM
5492
  msgctxt "widgets"
5493
  msgid "Latest Listings"
5494
  msgstr "Najświeższe Firmy"
5495
 
 
5496
  #: core/widget-random-listings.php:11
5497
- #@ WPBDM
5498
  msgctxt "widgets"
5499
  msgid "Business Directory - Random Listings"
5500
  msgstr "Katalog Firm - Losowe Firmy"
5501
 
 
5502
  #: core/widget-random-listings.php:12
5503
- #@ WPBDM
5504
  msgctxt "widgets"
5505
  msgid "Displays a list of random listings from the Business Directory."
5506
  msgstr "Wyświetl Losową Listę Firm z Katalogu Firm"
5507
 
 
5508
  #: core/widget-random-listings.php:14
5509
- #@ WPBDM
5510
  msgctxt "widgets"
5511
  msgid "Random Listings"
5512
  msgstr "Losowe Firmy"
5513
 
 
5514
  #: core/widget-search.php:10
5515
- #@ WPBDM
5516
  msgctxt "widgets"
5517
  msgid "Business Directory - Search"
5518
  msgstr "Katalog Firm - Szukaj"
5519
 
 
5520
  #: core/widget-search.php:11
5521
- #@ WPBDM
5522
  msgctxt "widgets"
5523
  msgid "Displays a search form to look for Business Directory listings."
5524
  msgstr "Wyświetlanie formularza wyszukiwania ofert w katalogu firm."
5525
 
 
5526
  #: core/widget-search.php:18
5527
- #@ WPBDM
5528
  msgctxt "widgets"
5529
  msgid "Search the Business Directory"
5530
  msgstr "Przeszukaj Katalog Firm "
5531
 
 
5532
  #: core/widget-search.php:29
5533
- #@ WPBDM
5534
  msgctxt "widgets"
5535
  msgid "Form Style:"
5536
  msgstr "Styl Formularza:"
5537
 
 
5538
  #: core/widget-search.php:37
5539
- #@ WPBDM
5540
  msgctxt "widgets"
5541
  msgid "Basic"
5542
  msgstr "Prosty"
5543
 
 
5544
  #: core/widget-search.php:45
5545
- #@ WPBDM
5546
  msgctxt "widgets"
5547
  msgid "Advanced"
5548
  msgstr "Zaawansowany"
5549
 
 
5550
  #: core/widget-search.php:49
5551
- #@ WPBDM
5552
  msgctxt "widgets"
5553
  msgid "Search Fields (advanced mode):"
5554
  msgstr "Pola wyszukiwania"
5555
 
 
5556
  #: core/widget-search.php:50
5557
- #@ WPBDM
5558
  msgctxt "widgets"
5559
  msgid "Display the following fields in the form."
5560
  msgstr "Wyświetl poniższe pola w formularzu."
5561
 
5562
- #: core/widget-search.php:102
5563
- #@ WPBDM
5564
  msgctxt "widgets"
5565
  msgid "Search"
5566
  msgstr "Szukaj..."
5567
 
5568
- #: templates/businessdirectory-listings.tpl.php:27
5569
- #: templates/search.tpl.php:41
5570
- #@ WPBDM
5571
- msgctxt "templates"
5572
- msgid "No listings found."
5573
- msgstr "Nie znaleziono Firm"
5574
 
5575
- #: templates/businessdirectory-listings.tpl.php:38
5576
- #@ WPBDM
5577
- msgctxt "templates"
5578
- msgid "&laquo; Previous "
5579
- msgstr "&laquo; Poprzednie"
5580
 
5581
- #: templates/businessdirectory-listings.tpl.php:39
5582
- #@ WPBDM
5583
- msgctxt "templates"
5584
- msgid "Next &raquo;"
5585
- msgstr "Następne &raquo;"
5586
 
5587
- #: templates/category.tpl.php:17
5588
- #, php-format
5589
- #@ WPBDM
5590
- msgctxt "templates"
5591
- msgid "Listings tagged: %s"
5592
- msgstr "Oferty Otagowane: %s"
5593
 
5594
- #: templates/delete-listing-confirm.tpl.php:3
5595
- #@ WPBDM
5596
- msgctxt "manage recurring"
5597
- msgid "Delete Listing"
5598
- msgstr "Usuń Firmę"
5599
 
5600
- #: templates/delete-listing-confirm.tpl.php:7
5601
- #@ WPBDM
5602
- msgctxt "delete listing"
5603
- msgid "Your listing is associated to a recurring payment. If you don't cancel the recurring payment before deleting the listing, you might be charged for additional periods even though your listing won't be available."
5604
- msgstr "Twoja oferta powiązana jest z powtarzającymi się płatnościami. Jeśli nie anulujesz cyklicznych płatności przed usunięciem oferty, możesz zostać obciążony dodatkowymi kosztami za następny okres rozliczeniowy, mimo braku Twojej oferty."
5605
 
5606
- #: templates/delete-listing-confirm.tpl.php:12
5607
- #@ WPBDM
5608
- msgctxt "delete listing"
5609
- msgid "Please visit <a>Manage recurring payments</a> to review your current recurring payments."
5610
- msgstr "Proszę odwiedzić <a> Zarządzaj powtarzającymi się płatnościami </a> aby przejżeć bieżące płatności powtarzające się."
5611
 
5612
- #: templates/delete-listing-confirm.tpl.php:18
5613
- #, php-format
5614
- #@ WPBDM
5615
- msgctxt "delete listing"
5616
- msgid "You are about to remove your listing \"%s\" from the directory."
5617
- msgstr "Zamierzasz usunąć swoją ofertę \"% s \" z katalogu."
5618
 
5619
- #: templates/delete-listing-confirm.tpl.php:19
5620
- #@ WPBDM
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
5621
  msgctxt "delete listing"
5622
  msgid "Are you sure you want to do this?"
5623
  msgstr "Jesteś pewien że chcesz to zrobić?"
5624
 
 
5625
  #: templates/delete-listing-confirm.tpl.php:24
5626
- #@ WPBDM
5627
  msgctxt "delete listing"
5628
  msgid "No. Take me back to the directory."
5629
  msgstr "NIE. Zabierz mnie z powrotem do Katalogu."
5630
 
 
5631
  #: templates/delete-listing-confirm.tpl.php:25
5632
- #@ WPBDM
5633
  msgctxt "delete listing"
5634
  msgid "Yes. Delete my listing."
5635
  msgstr "TAK. Usuń Firmę."
5636
 
 
5637
  #: templates/email/listing-added.tpl.php:2
5638
- #@ WPBDM
5639
  msgctxt "emails"
5640
- msgid "A new listing has been submitted to the directory. Listing details can be found below."
5641
- msgstr "Nowa ofert została przesłana do katalogu. Szczegóły oferty możesz znaleźć poniżej."
 
 
 
 
5642
 
 
5643
  #: templates/email/listing-added.tpl.php:7
5644
  #: templates/email/listing-edited.tpl.php:7
5645
- #@ WPBDM
5646
  msgctxt "notify email"
5647
  msgid "ID"
5648
  msgstr "ID"
5649
 
 
5650
  #: templates/email/listing-added.tpl.php:10
5651
  #: templates/email/listing-edited.tpl.php:10
5652
- #@ WPBDM
5653
  msgctxt "notify email"
5654
  msgid "Title"
5655
  msgstr "Nazwa"
5656
 
 
5657
  #: templates/email/listing-added.tpl.php:13
5658
  #: templates/email/listing-edited.tpl.php:13
5659
- #@ WPBDM
5660
  msgctxt "notify email"
5661
  msgid "URL"
5662
  msgstr "URL"
5663
 
 
5664
  #: templates/email/listing-added.tpl.php:13
5665
  #: templates/email/listing-edited.tpl.php:13
5666
- #@ WPBDM
5667
  msgctxt "notify email"
5668
  msgid "(not published yet)"
5669
  msgstr "(jeszcze nie opublikowana)"
5670
 
5671
- #: templates/email/listing-added.tpl.php:16
5672
- #: templates/email/listing-edited.tpl.php:16
5673
- #@ WPBDM
 
 
 
 
 
 
5674
  msgctxt "notify email"
5675
  msgid "Categories"
5676
  msgstr "Kategorie"
5677
 
5678
- #: templates/email/listing-added.tpl.php:19
5679
- #: templates/email/listing-edited.tpl.php:19
5680
- #@ WPBDM
5681
  msgctxt "notify email"
5682
  msgid "Posted By"
5683
  msgstr "Napisany przez"
5684
 
 
5685
  #: templates/email/listing-edited.tpl.php:2
5686
- #@ WPBDM
5687
  msgctxt "emails"
5688
- msgid "A listing in the directory has been edited recently. Listing details can be found below."
5689
- msgstr "Oferta została niedawno zmieniona w katalogu. Szczegóły oferty możesz znaleźć poniżej."
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
5690
 
 
5691
  #: templates/listing-contactform.tpl.php:9
5692
- #@ WPBDM
5693
  msgctxt "templates"
5694
  msgid "Listing Title: "
5695
  msgstr "Nazwa Firmy:"
5696
 
5697
- #: templates/listing-contactform.tpl.php:18
5698
- #, php-format
5699
- #@ WPBDM
5700
  msgctxt "templates"
5701
- msgid "You are currently logged in as %s. Your message will be sent using your logged in contact email."
5702
- msgstr "Jesteś zalogowany jako %s. Twoja wiadomość zostanie wysłana używając Twojego adresu email podanego przy logowaniu."
 
 
 
 
5703
 
5704
- #: templates/listing-contactform.tpl.php:23
5705
- #@ WPBDM
5706
  msgctxt "templates"
5707
  msgid "Your Name"
5708
  msgstr "Nazwisko"
5709
 
5710
- #: templates/listing-contactform.tpl.php:27
5711
- #@ WPBDM
5712
  msgctxt "templates"
5713
  msgid "Your Email"
5714
  msgstr "E-mail"
5715
 
5716
- #: templates/listing-contactform.tpl.php:32
5717
- #@ WPBDM
5718
  msgctxt "templates"
5719
  msgid "Message"
5720
  msgstr "Wiadomość"
5721
 
5722
- #: templates/listing-contactform.tpl.php:40
5723
- #@ WPBDM
5724
  msgctxt "templates"
5725
  msgid "Send"
5726
  msgstr "Wyślij"
5727
 
 
5728
  #: templates/listing-upgradetosticky.tpl.php:1
5729
- #@ WPBDM
5730
  msgctxt "templates"
5731
  msgid "Upgrade listing"
5732
  msgstr "Podnieś status "
5733
 
 
5734
  #: templates/listing-upgradetosticky.tpl.php:10
5735
- #, php-format
5736
- #@ WPBDM
5737
  msgctxt "templates"
5738
  msgid "Upgrade listing to %s for %s."
5739
  msgstr "Podnieś status do %s for %s."
5740
 
5741
- #: templates/manage-listings.tpl.php:6
5742
- #@ WPBDM
5743
- msgctxt "templates"
5744
- msgid "Your current listings are shown below. To edit a listing click the edit button. To delete a listing click the delete button."
5745
- msgstr "Twoje oferty pokazane poniżej. Kliknij \"Edytuj\" aby edytować ofertę lub \"Usun\" aby usunąć ofertę."
 
5746
 
5747
- #: templates/manage-listings.tpl.php:9
5748
- #@ WPBDM
5749
- msgctxt "templates"
5750
- msgid "You do not currently have any listings in the directory."
5751
- msgstr "Nie masz aktualnie ofert w katalogu."
 
5752
 
5753
- #: templates/manage-listings.tpl.php:11
5754
- #: templates/search.tpl.php:44
5755
- #@ WPBDM
5756
- msgctxt "templates"
5757
- msgid "Return to directory"
5758
- msgstr "Powrót do Katalogu."
5759
 
 
5760
  #: templates/manage-recurring-cancel.tpl.php:1
5761
- #@ WPBDM
5762
  msgctxt "manage recurring"
5763
  msgid "Manage Recurring Payments - Cancel"
5764
  msgstr "Zarządzaj powtarzającymi się płatnościami - Cofnij"
5765
 
 
5766
  #: templates/manage-recurring-cancel.tpl.php:5
5767
- #@ WPBDM
5768
  msgctxt "manage recurring"
5769
  msgid "Plan Details"
5770
  msgstr "Szczegóły Planu"
5771
 
 
5772
  #: templates/manage-recurring-cancel.tpl.php:9
5773
- #@ WPBDM
5774
  msgctxt "manage recurring"
5775
  msgid "Name:"
5776
  msgstr "Nazwisko:"
5777
 
 
5778
  #: templates/manage-recurring-cancel.tpl.php:15
5779
- #@ WPBDM
5780
  msgctxt "manage recurring"
5781
  msgid "Cost:"
5782
  msgstr "Koszt:"
5783
 
 
5784
  #: templates/manage-recurring-cancel.tpl.php:18
5785
- #, php-format
5786
- #@ WPBDM
5787
  msgctxt "manage recurring"
5788
  msgid "%s every %s days."
5789
  msgstr "%s każde %s dni."
5790
 
 
5791
  #: templates/manage-recurring-cancel.tpl.php:23
5792
- #@ WPBDM
5793
  msgctxt "manage recurring"
5794
  msgid "Number of images:"
5795
  msgstr "Liczba obrazów"
5796
 
 
5797
  #: templates/manage-recurring-cancel.tpl.php:29
5798
- #@ WPBDM
5799
  msgctxt "manage recurring"
5800
  msgid "Expires on:"
5801
  msgstr "Termin ważności upłynął:"
5802
 
 
5803
  #: templates/manage-recurring.tpl.php:1
5804
- #@ WPBDM
5805
  msgctxt "manage recurring"
5806
  msgid "Manage Recurring Payments"
5807
  msgstr "Zarządzaj powtarzającymi się płatnościami"
5808
 
 
5809
  #: templates/manage-recurring.tpl.php:5
5810
- #@ WPBDM
5811
  msgctxt "manage recurring"
5812
  msgid "Listing"
5813
  msgstr "Firma"
5814
 
 
5815
  #: templates/manage-recurring.tpl.php:6
5816
- #@ WPBDM
5817
  msgctxt "manage subscriptions"
5818
  msgid "Subscription / Fee Plan"
5819
  msgstr "Plan Subskrypcji/Abonamentu"
5820
 
 
5821
  #: templates/manage-recurring.tpl.php:27
5822
- #, php-format
5823
- #@ WPBDM
5824
  msgctxt "manage recurring"
5825
  msgid "%s each %s days. Next renewal is on %s."
5826
  msgstr "%s z %s dni. Następne odnowienie w dniu %s."
5827
 
 
5828
  #: templates/manage-recurring.tpl.php:31
5829
- #@ WPBDM
5830
  msgctxt "manage recurring"
5831
  msgid "Cancel recurring payment"
5832
  msgstr "Anuluj Płatność Powtarzającą się"
5833
 
 
5834
  #: templates/parts/category-fee-selection.tpl.php:13
5835
- #, php-format
5836
- #@ WPBDM
5837
  msgctxt "templates"
5838
  msgid "\"%s\" fee options"
5839
  msgstr "\"%s\" opcje płatności"
5840
 
 
5841
  #: templates/parts/category-fee-selection.tpl.php:18
5842
- #@ WPBDM
5843
  msgctxt "templates"
5844
  msgid "Fee"
5845
  msgstr "Abonament"
5846
 
 
5847
  #: templates/parts/category-fee-selection.tpl.php:19
5848
- #@ WPBDM
5849
  msgctxt "templates"
5850
  msgid "Price"
5851
  msgstr "Cena"
5852
 
 
5853
  #: templates/parts/category-fee-selection.tpl.php:20
5854
- #@ WPBDM
5855
  msgctxt "templates"
5856
  msgid "Duration"
5857
  msgstr "Czas trwania"
5858
 
 
5859
  #: templates/parts/category-fee-selection.tpl.php:21
5860
- #@ WPBDM
5861
  msgctxt "templates"
5862
  msgid "Images Allowed"
5863
  msgstr "Liczba dozwolonych obrazów"
5864
 
5865
- #: templates/parts/category-fee-selection.tpl.php:43
5866
- #@ WPBDM
 
 
 
 
 
 
 
5867
  msgctxt "templates"
5868
  msgid "Unlimited"
5869
  msgstr "Nieograniczona"
5870
 
5871
- #: templates/parts/category-fee-selection.tpl.php:45
5872
- #, php-format
5873
- #@ WPBDM
5874
  msgctxt "templates"
5875
  msgid "%d day"
5876
  msgid_plural "%d days"
@@ -5878,981 +8075,770 @@ msgstr[0] "%d dzień"
5878
  msgstr[1] "%d dni"
5879
  msgstr[2] "%d dni"
5880
 
 
5881
  #: templates/parts/listing-buttons.tpl.php:4
5882
  #: templates/parts/listing-buttons.tpl.php:18
5883
- #: templates/parts/listing-buttons.tpl.php:22
5884
- #@ WPBDM
5885
  msgctxt "templates"
5886
  msgid "Edit"
5887
  msgstr "Edytuj"
5888
 
 
5889
  #: templates/parts/listing-buttons.tpl.php:7
5890
- #@ WPBDM
5891
  msgctxt "templates"
5892
  msgid "Upgrade Listing"
5893
  msgstr "Podnieś status Oferty"
5894
 
 
5895
  #: templates/parts/listing-buttons.tpl.php:10
5896
  #: templates/parts/listing-buttons.tpl.php:19
5897
- #: templates/parts/listing-buttons.tpl.php:23
5898
- #@ WPBDM
5899
  msgctxt "templates"
5900
  msgid "Delete"
5901
  msgstr "Usuń"
5902
 
 
5903
  #: templates/parts/listing-buttons.tpl.php:10
5904
- #: templates/parts/listing-buttons.tpl.php:23
5905
- #@ WPBDM
5906
  msgctxt "templates"
5907
  msgid "Are you sure you wish to delete this listing?"
5908
  msgstr "Jesteś pewien, że chcesz usunąć tą firmę?"
5909
 
 
5910
  #: templates/parts/listing-buttons.tpl.php:13
5911
- #@ WPBDM
5912
  msgid "← Back to Directory"
5913
  msgstr "← Powrót do Katalogu."
5914
 
 
5915
  #: templates/parts/listing-buttons.tpl.php:17
5916
- #: templates/parts/listing-buttons.tpl.php:21
5917
- #@ WPBDM
5918
  msgctxt "templates"
5919
  msgid "View"
5920
  msgstr "Widok"
5921
 
 
5922
  #: templates/parts/login-required.tpl.php:5
5923
- #@ WPBDM
5924
  msgctxt "templates"
5925
- msgid "You are not currently logged in. Please login or register first. When registering, you will receive an activation email. Be sure to check your spam if you don't see it in your email within 60 minutes."
5926
- msgstr "Musisz się zalogować lub zarejestrować aby kontynuować. Po rejestracji otrzymasz link aktywacyjny na podany adres e-mail. Jeśli po upływie 60minut nadal nie widzisz wiadomości, którą do ciebie wysłaliśmy - sprawdź opcje spamu w Twojej poczcie."
 
 
 
 
 
 
 
5927
 
 
5928
  #: templates/parts/login-required.tpl.php:10
5929
- #@ WPBDM
5930
  msgctxt "templates"
5931
  msgid "Login"
5932
  msgstr "Logowanie"
5933
 
 
5934
  #: templates/parts/login-required.tpl.php:31
5935
- #@ WPBDM
5936
  msgctxt "templates"
5937
  msgid "Not yet registered?"
5938
  msgstr "Nie jesteś jeszcze zarejestrowany?"
5939
 
 
5940
  #: templates/parts/login-required.tpl.php:33
5941
- #@ WPBDM
5942
  msgctxt "templates"
5943
  msgid "Lost your password?"
5944
  msgstr "Zapomniałeś lub zgubiłeś hasło?"
5945
 
 
5946
  #: templates/payment/payment_items.tpl.php:5
5947
- #@ WPBDM
5948
  msgctxt "payment_items"
5949
  msgid "Item"
5950
  msgstr "Element"
5951
 
 
5952
  #: templates/payment/payment_items.tpl.php:6
5953
- #@ WPBDM
5954
  msgctxt "payment_items"
5955
  msgid "Amount"
5956
  msgstr "Kwota"
5957
 
 
5958
  #: templates/payment/payment_items.tpl.php:19
5959
- #@ WPBDM
5960
  msgctxt "payment_items"
5961
  msgid "Total"
5962
  msgstr "Całkowity koszt"
5963
 
 
5964
  #: templates/payment-page.tpl.php:17
5965
- #@ WPBDM
5966
  msgctxt "templates"
5967
  msgid "We can not process your payment at this moment. Please try again later."
5968
- msgstr "Nie możemy przetworzyć płatności w tym momencie. Proszę spróbuj ponownie później."
 
 
5969
 
 
5970
  #: templates/renew-listing.tpl.php:3
5971
- #@ WPBDM
5972
  msgctxt "templates"
5973
  msgid "Renew Listing"
5974
  msgstr "Odnowienie oferty"
5975
 
 
5976
  #: templates/renew-listing.tpl.php:7
5977
- #@ WPBDM
5978
  msgctxt "renewal"
5979
  msgid "Proceed to Checkout"
5980
  msgstr "Przejdź do Kasy"
5981
 
 
5982
  #: templates/renew-listing.tpl.php:10
5983
- #, php-format
5984
- #@ WPBDM
5985
  msgctxt "templates"
5986
- msgid "You are about to renew your listing \"%s\" publication inside category \"%s\"."
 
 
5987
  msgstr "Masz zamiar odnowić ofertę \"%s\" w kategorii \"%s\"."
5988
 
 
5989
  #: templates/renew-listing.tpl.php:15
5990
- #@ default
5991
  msgctxt "WPBDM"
5992
- msgid "Please select a fee option or click \"Do not renew my listing\" to cancel your renewal."
5993
- msgstr "Proszę wybrać odpowiedni abonament lub kliknąć \"Nie odświeżaj mojej oferty\" aby anulować odnowienie."
 
 
 
 
5994
 
 
5995
  #: templates/renew-listing.tpl.php:22
5996
  #: templates/submit-listing/category-selection.tpl.php:8
5997
  #: templates/submit-listing/fee-selection.tpl.php:37
5998
- #: templates/submit-listing/images.tpl.php:35
5999
  #: templates/submit-listing/listing-fields.tpl.php:34
6000
- #@ WPBDM
6001
  msgctxt "templates"
6002
  msgid "Continue"
6003
  msgstr "Kontynuacja"
6004
 
 
6005
  #: templates/renew-listing.tpl.php:25
6006
- #@ WPBDM
6007
  msgctxt "renewal"
6008
  msgid "Cancel Listing Renewal"
6009
  msgstr "Anuluj Odświeżenie oferty"
6010
 
 
6011
  #: templates/renew-listing.tpl.php:26
6012
- #@ WPBDM
6013
  msgctxt "templates"
6014
  msgid "Do not renew my listing"
6015
  msgstr "Nie odnawiaj mojej Oferty"
6016
 
6017
- #: templates/search.tpl.php:8
6018
- #: templates/search.tpl.php:27
6019
- #@ WPBDM
6020
- msgctxt "search"
6021
- msgid "Search"
6022
- msgstr "Szukaj..."
6023
-
6024
- #: templates/search.tpl.php:10
6025
- #@ WPBDM
6026
- msgctxt "search"
6027
- msgid "Return to Advanced Search"
6028
- msgstr "Powrót do zaawansowanego wyszukiwania"
6029
-
6030
- #: templates/search.tpl.php:15
6031
- #@ WPBDM
6032
  msgctxt "templates"
6033
  msgid "Find a listing"
6034
  msgstr "Znajdź Firmę"
6035
 
6036
- #: templates/search.tpl.php:26
6037
- #@ WPBDM
6038
  msgctxt "search"
6039
  msgid "Clear"
6040
  msgstr "Wyczyść"
6041
 
6042
- #: templates/search.tpl.php:34
6043
- #@ WPBDM
6044
- msgctxt "search"
6045
- msgid "Search Results"
6046
- msgstr "Wyniki wyszukiwania"
 
6047
 
 
 
 
 
 
 
 
 
6048
  #: templates/submit-listing/category-selection.tpl.php:1
6049
- #@ WPBDM
6050
  msgctxt "templates"
6051
  msgid "Category Selection"
6052
  msgstr "Wybór Kategorii"
6053
 
 
6054
  #: templates/submit-listing/done.tpl.php:1
6055
- #@ WPBDM
6056
  msgctxt "templates"
6057
  msgid "Submission Received"
6058
  msgstr "Formularz rejstracyjny został odebrany."
6059
 
 
6060
  #: templates/submit-listing/done.tpl.php:4
6061
- #@ WPBDM
6062
  msgctxt "templates"
6063
  msgid "Your listing has been submitted."
6064
  msgstr "Twoja Firma została zapisana."
6065
 
 
6066
  #: templates/submit-listing/done.tpl.php:6
6067
- #@ WPBDM
6068
  msgctxt "templates"
6069
  msgid "Your listing changes were saved."
6070
  msgstr "Zapisano zmiany w Twojej Ofercie."
6071
 
 
6072
  #: templates/submit-listing/done.tpl.php:11
6073
- #@ WPBDM
6074
  msgctxt "templates"
6075
  msgid "Go to your listing"
6076
  msgstr "Przejdź do Twojej oferty."
6077
 
 
6078
  #: templates/submit-listing/done.tpl.php:13
6079
- #@ WPBDM
6080
  msgctxt "templates"
6081
  msgid "Return to directory."
6082
  msgstr "Powrót do Katalogu."
6083
 
 
6084
  #: templates/submit-listing/extra-sections.tpl.php:1
6085
- #@ WPBDM
6086
  msgctxt "templates"
6087
  msgid "Additional Information"
6088
  msgstr "Dodatkowe informacje"
6089
 
 
6090
  #: templates/submit-listing/extra-sections.tpl.php:6
6091
- #@ WPBDM
6092
  msgctxt "templates"
6093
  msgid "Continue with listing submit"
6094
  msgstr "Kontynuuj i Prześlij ofertę"
6095
 
 
6096
  #: templates/submit-listing/fee-selection.tpl.php:1
6097
- #@ WPBDM
6098
  msgctxt "templates"
6099
  msgid "Fee/Upgrade Selection"
6100
  msgstr "Wybór Abonamentu/Podwyższenia Statusu"
6101
 
 
6102
  #: templates/submit-listing/fee-selection.tpl.php:18
6103
- #, php-format
6104
- #@ WPBDM
6105
  msgctxt "templates"
6106
  msgid "Would you like to upgrade your listing to \"%s\" for %s more?"
6107
- msgstr "Czy chiałbyś(chciałabyś) podnieść status oferty do \"%s\" na %s dłużej?"
 
6108
 
 
6109
  #: templates/submit-listing/fee-selection.tpl.php:21
6110
- #@ WPBDM
6111
  msgctxt "templates"
6112
  msgid "Yes, upgrade my listing now."
6113
  msgstr "TAK. Podnieś status mojej Oferty."
6114
 
 
6115
  #: templates/submit-listing/fee-selection.tpl.php:31
6116
- #@ WPBDM
6117
  msgctxt "submit"
6118
- msgid "Would you like to make your fee renew automatically at the end of the period?"
6119
- msgstr "Czy chciałbyś odnawiać abonament automatycznie po zakończeniu wybranego okresu ważności oferty?"
 
 
 
6120
 
6121
- #: templates/submit-listing/images-single.tpl.php:9
6122
- #@ WPBDM
6123
  msgctxt "templates"
6124
  msgid "Delete Image"
6125
  msgstr "Usuń Obraz"
6126
 
6127
- #: templates/submit-listing/images-single.tpl.php:16
6128
- #@ WPBDM
6129
  msgctxt "templates"
6130
  msgid "Set this image as the listing thumbnail."
6131
  msgstr "Ustaw jako Miniaturkę Firmy."
6132
 
 
6133
  #: templates/submit-listing/images-upload-form.tpl.php:17
6134
- #@ WPBDM
6135
  msgctxt "templates"
6136
  msgid "Upload Images"
6137
  msgstr "Załaduj obraz"
6138
 
 
6139
  #: templates/submit-listing/images-upload-form.tpl.php:22
6140
- #@ WPBDM
6141
  msgctxt "templates"
6142
  msgid "Drop files here"
6143
  msgstr "Przeciągnij i upuść obraz TUTAJ"
6144
 
6145
- #: templates/submit-listing/images-upload-form.tpl.php:26
6146
- #@ WPBDM
 
 
 
 
 
6147
  msgctxt "templates"
6148
  msgid "Select images from your hard drive"
6149
  msgstr "Wybierz obraz z Twojego dysku twardego"
6150
 
6151
- #: templates/submit-listing/images-upload-form.tpl.php:32
6152
- #, php-format
6153
- #@ WPBDM
6154
  msgctxt "templates"
6155
  msgid "Uploading %s file(s)... Please wait."
6156
  msgstr "Przesyłanie %s file(s)... Proszę czekać."
6157
 
6158
- #: templates/submit-listing/images-upload-form.tpl.php:36
6159
- #@ WPBDM
6160
  msgctxt "templates"
6161
- msgid "Your image slots are all full at this time. You may click \"Continue\" if you are done, or \"Delete Image\" to upload a new image in place of a current one."
6162
- msgstr "Wykorzystałeś(aś) dostępne miejsca na obrazy. Kliknij \"Kontynuuj\" aby zakończyć, lub \"Usuń Obraz\" aby wstawić inny obraz w to miejsce."
 
 
 
 
 
6163
 
6164
- #: templates/submit-listing/images-upload-form.tpl.php:44
6165
- #@ WPBDM
6166
  msgctxt "templates"
6167
  msgid "Image slots available:"
6168
  msgstr "Dostępne miejsca na Obrazy:"
6169
 
6170
- #: templates/submit-listing/images-upload-form.tpl.php:49
6171
- #@ WPBDM
 
6172
  msgctxt "templates"
6173
- msgid "Max. file size:"
6174
  msgstr "Maksymalny rozmiar pliku"
6175
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
6176
  #: templates/submit-listing/images.tpl.php:4
6177
- #@ WPBDM
6178
  msgctxt "templates"
6179
  msgid "Listing Images"
6180
  msgstr "Obrazy"
6181
 
 
6182
  #: templates/submit-listing/images.tpl.php:7
6183
- #@ WPBDM
6184
  msgctxt "templates"
6185
- msgid "There is an image pending upload. Would you still like to continue without saving the image?"
6186
- msgstr "Jest tu jeden obraz oczekujący na przesłanie. Czy nadal chcesz kontynuować bez zapisywania obrazu?"
 
 
 
 
6187
 
 
6188
  #: templates/submit-listing/images.tpl.php:13
6189
- #@ WPBDM
6190
  msgctxt "templates"
6191
  msgid "There are no images currently attached to your listing."
6192
  msgstr "Obecnie nie ma żadnych obrazków dołączonych do tej oferty."
6193
 
 
6194
  #: templates/submit-listing/listing-fields.tpl.php:1
6195
- #@ WPBDM
6196
  msgctxt "templates"
6197
  msgid "Listing Information"
6198
  msgstr "Informacje o ogłoszeniu"
6199
 
 
6200
  #: templates/submit-listing/listing-fields.tpl.php:15
6201
- #@ WPBDM
6202
  msgctxt "templates"
6203
  msgid "* Indicates required fields."
6204
  msgstr "* Oznacza wymagane pola."
6205
 
6206
- #: admin/class-admin.php:180
6207
- #@ WPBDM
6208
- msgctxt "drip pointer"
6209
- msgid "Invalid e-mail address."
6210
- msgstr "Nieprawidłowy adres e-mail"
6211
-
6212
- #: admin/csv-import.php:281
6213
- #@ WPBDM
6214
- msgctxt "admin csv-import"
6215
- msgid "Please upload or select a CSV file."
6216
- msgstr "Proszę załadować nowy lub wybrać istniejący plik CSV."
6217
-
6218
- #: admin/csv-import.php:294
6219
- #@ WPBDM
6220
- msgctxt "admin csv-import"
6221
- msgid "There was an error uploading the images ZIP file."
6222
- msgstr "Wystąpił problem podczas ładowania obrazów w pliku ZIP."
6223
-
6224
- #: admin/csv-import.php:315
6225
- #@ WPBDM
6226
- msgctxt "admin csv-import"
6227
- msgid "An error was detected while validating the CSV file for import. Please fix this before proceeding."
6228
- msgstr "Wykryto błąd podczas sprawdzania pliku CSV przed importem. Proszę to sprawdzić przed kontynuacją."
6229
-
6230
- #: admin/csv-import.php:324
6231
- #@ WPBDM
6232
- msgctxt "admin csv-import"
6233
- msgid "Import is in \"test mode\". Nothing will be inserted into the database."
6234
- msgstr "IMPORT jest obecnie w \"trybie testowym\". Niec nie zostanie dodane do bazy danych."
6235
-
6236
- #: admin/templates/csv-export.tpl.php:67
6237
- #@ WPBDM
6238
- msgctxt "admin csv-export"
6239
- msgid "Include unique IDs for each listing (sequence_id column)."
6240
- msgstr "Zawiera unikalne ID dla każdej z ofert (sekwencyjne_id kolumny)."
6241
-
6242
- #: admin/templates/csv-export.tpl.php:69
6243
- #@ WPBDM
6244
- msgctxt "admin csv-export"
6245
- msgid "If you plan to re-import the listings into BD and don't want new ones created, select this option!"
6246
- msgstr "Jeśli planujesz re-import ofert do Katalogu Firm i nie chcesz aby zostały dodane nowe oferty - zaznacz tą opcję."
6247
 
6248
- #: admin/templates/csv-import-progress.tpl.php:6
6249
- #, php-format
6250
- #@ WPBDM
6251
- msgctxt "admin csv-import"
6252
- msgid "A fatal error occurred during the import. The reason given was: \"%s\"."
6253
- msgstr "Podczas importu wystąpił problem, którego powodem był \"%s\"."
6254
 
6255
- #: admin/templates/csv-import-progress.tpl.php:10
6256
- #@ WPBDM
6257
- msgctxt "admin csv-import"
6258
- msgid "A fatal error occurred during the import. If connection wasn't lost during the import, please make sure that you have enough free disk space and memory available to PHP. Check your error logs for details."
6259
  msgstr ""
6260
- "\n"
6261
- "Wystąpił błąd krytyczny podczas importu. Jeśli połączenie nie zostało utracone podczas importu, upewnij się, że masz wystarczająco dużo wolnego miejsca na dysku i pamięci dostępnej dla PHP. Sprawdź logi błędów aby poznać szczegóły."
6262
-
6263
- #: admin/templates/csv-import-progress.tpl.php:14
6264
- #@ WPBDM
6265
- msgctxt "admin csv-import"
6266
- msgid "Last imported line from file:"
6267
- msgstr "Ostatnia zaimportowana linia z pliku:"
6268
-
6269
- #: admin/templates/csv-import-progress.tpl.php:18
6270
- #: admin/templates/csv-import-progress.tpl.php:25
6271
- #@ WPBDM
6272
- msgctxt "admin csv-import"
6273
- msgid "← Return to CSV Import"
6274
- msgstr "← Powrót do importu CSV"
6275
-
6276
- #: admin/templates/csv-import-progress.tpl.php:23
6277
- #@ WPBDM
6278
- msgctxt "admin csv-import"
6279
- msgid "Import Canceled"
6280
- msgstr "Import anulowany"
6281
-
6282
- #: admin/templates/csv-import-progress.tpl.php:24
6283
- #@ WPBDM
6284
- msgctxt "admin csv-import"
6285
- msgid "The import has been canceled."
6286
- msgstr "Import został anulowany"
6287
-
6288
- #: admin/templates/csv-import-progress.tpl.php:31
6289
- #@ admin csv-import
6290
- msgid "Import Progress"
6291
- msgstr "Proces Importu"
6292
-
6293
- #: admin/templates/csv-import-progress.tpl.php:34
6294
- #@ WPBDM
6295
- msgctxt "admin csv-import"
6296
- msgid "Files"
6297
- msgstr "Pliki"
6298
-
6299
- #: admin/templates/csv-import-progress.tpl.php:37
6300
- #@ WPBDM
6301
- msgctxt "admin csv-import"
6302
- msgid "Rows in file"
6303
- msgstr "Wierszy w pliku"
6304
-
6305
- #: admin/templates/csv-import-progress.tpl.php:40
6306
- #@ WPBDM
6307
- msgctxt "admin csv-import"
6308
- msgid "Progress"
6309
- msgstr "Postęp"
6310
-
6311
- #: admin/templates/csv-import-progress.tpl.php:44
6312
- #@ WPBDM
6313
- msgctxt "admin csv-import"
6314
- msgid "Import has not started. Click \"Start Import\" to begin."
6315
- msgstr "Import nie zostal uruchomiony. Kliknij \"Start Import\" aby zacząć."
6316
 
6317
- #: admin/templates/csv-import-progress.tpl.php:45
6318
- #@ WPBDM
6319
- msgctxt "admin csv-import"
6320
- msgid "Importing CSV file..."
6321
- msgstr "Importowanie pliku CSV....."
6322
 
6323
- #: admin/templates/csv-import-progress.tpl.php:51
6324
- #@ WPBDM
6325
- msgctxt "admin csv-import"
6326
- msgid "Start Import"
6327
- msgstr "Start Import"
6328
-
6329
- #: admin/templates/csv-import-progress.tpl.php:52
6330
- #@ WPBDM
6331
- msgctxt "admin csv-import"
6332
- msgid "Cancel Import"
6333
- msgstr "Anuluj import"
6334
-
6335
- #: admin/templates/csv-import-progress.tpl.php:59
6336
- #@ WPBDM
6337
- msgctxt "admin csv-import"
6338
- msgid "Import finished"
6339
- msgstr "Import zakończony"
6340
-
6341
- #: admin/templates/csv-import-progress.tpl.php:71
6342
- #@ WPBDM
6343
- msgctxt "admin csv-import"
6344
- msgid "Rows in file:"
6345
- msgstr "Wierszy w pliku"
6346
-
6347
- #: admin/templates/csv-import-progress.tpl.php:74
6348
- #@ WPBDM
6349
- msgctxt "admin csv-import"
6350
- msgid "Imported rows:"
6351
- msgstr "Zaimportowane wiersze"
6352
-
6353
- #: admin/templates/csv-import-progress.tpl.php:82
6354
- #@ WPBDM
6355
- msgctxt "admin csv-import"
6356
- msgid "Import Warnings"
6357
- msgstr "Ostrzeżenie"
6358
-
6359
- #: admin/templates/csv-import.tpl.php:21
6360
- #@ WPBDM
6361
- msgctxt "admin csv-import"
6362
- msgid "Here, you can import data into your directory using the CSV format."
6363
- msgstr "Tutaj możesz zaimportować dane używając plików CSV."
6364
-
6365
- #: admin/templates/csv-import.tpl.php:29
6366
- #@ WPBDM
6367
- msgctxt "admin csv-import"
6368
- msgid "We strongly recommend reading our <a>CSV import documentation</a> first to help you do things in the right order."
6369
- msgstr "Zalecamy (poważnie) zapoznanie się z naszą <a> dokumentacją dotyczącą importowania plików CSV</a>, aby wszystko przebiegło pomyślnie i w odpowiedniej kolejności."
6370
-
6371
- #: admin/templates/csv-import.tpl.php:55
6372
- #: admin/templates/csv-import.tpl.php:86
6373
- #@ WPBDM
6374
- msgctxt "admin csv-import"
6375
- msgid "... or <a>select a file uploaded to the imports folder</a>"
6376
- msgstr "... albo <a>wybierz plik, który chcesz załadować do folderu</a>"
6377
-
6378
- #: admin/templates/csv-import.tpl.php:65
6379
- #: admin/templates/csv-import.tpl.php:96
6380
- #@ WPBDM
6381
- msgctxt "admin csv-import"
6382
- msgid "(Upload new file)"
6383
- msgstr "(załaduj nowy plik)"
6384
-
6385
- #: admin/templates/csv-import.tpl.php:146
6386
- #@ WPBDM
6387
- msgctxt "admin csv-import"
6388
- msgid "Post status of imported listings"
6389
- msgstr "Status dla zaimportowanych plików"
6390
-
6391
- #: admin/templates/csv-import.tpl.php:198
6392
- #@ WPBDM
6393
- msgctxt "admin csv-import"
6394
- msgid "Disable e-mail notifications during import?"
6395
- msgstr "Wyłączyć powiadomienia e-mail podczas importu?"
6396
-
6397
- #: admin/templates/csv-import.tpl.php:203
6398
- #@ WPBDM
6399
- msgctxt "admin csv-import"
6400
- msgid "Disable e-mail notifications."
6401
- msgstr "Wyłącz powiadomienia e-mail."
6402
-
6403
- #: admin/templates/fees.tpl.php:61
6404
- #, php-format
6405
- #@ WPBDM
6406
- msgctxt "admin templates"
6407
- msgid "It does not appear you have any of the payment gateway modules enabled. Either <a>enable the default Authorize.net gateway</a> with your account info, or purchase a different payment gateway module in order to charge a fee for listings. To purchase additional payment gateways use the buttons below or visit %s."
6408
- msgstr "Nie wydaje się, aby jakieś bramki płatności były włączone. Albo <a>skorzystaj z bramki domyślnej - Authorize.net</a> z informacjami z Twojego konta, albo zdecyduj się na zakup innego modułu płatności w celu pobierania opłat. Aby zakupić dodatkowe bramki płatności skorzystaj z przycisków poniżej lub odwiedź %s."
6409
-
6410
- #: admin/templates/listing-metabox-categories.tpl.php:75
6411
- #@ WPBDM
6412
- msgctxt "admin infometabox"
6413
- msgid "Never expires"
6414
- msgstr "Na zawsze"
6415
-
6416
- #: admin/templates/sidebar.tpl.php:3
6417
- #@ WPBDM
6418
- msgctxt "admin sidebar"
6419
- msgid "Claim Listings Module"
6420
- msgstr "Moduł Zastrzeżeń"
6421
-
6422
- #: admin/templates/sidebar.tpl.php:60
6423
- #@ WPBDM
6424
- msgctxt "admin sidebar"
6425
- msgid "Video Tutorials"
6426
- msgstr "Poradnik Wideo"
6427
-
6428
- #: core/class-gateway.php:130
6429
- #@ WPBDM
6430
- msgctxt "billing info"
6431
- msgid "First name is required."
6432
- msgstr "Imię jest wymagane."
6433
-
6434
- #: core/class-gateway.php:133
6435
- #@ WPBDM
6436
- msgctxt "billing info"
6437
- msgid "Last name is required."
6438
- msgstr "Nazwisko jest wymagane."
6439
-
6440
- #: core/class-gateway.php:136
6441
- #@ WPBDM
6442
- msgctxt "billing info"
6443
- msgid "Credit card number is required."
6444
- msgstr "Numer karty kredytowej jest wymagany."
6445
-
6446
- #: core/class-gateway.php:139
6447
- #@ WPBDM
6448
- msgctxt "billing info"
6449
- msgid "Credit card expiration date is invalid."
6450
- msgstr "Nieprawidłowa data ważności karty kredytowej."
6451
-
6452
- #: core/class-gateway.php:142
6453
- #@ WPBDM
6454
- msgctxt "billing info"
6455
- msgid "Credit card CVC number is required."
6456
- msgstr "Nieprawidłowy numer CVC karty kredytowej."
6457
-
6458
- #: core/class-gateway.php:145
6459
- #@ WPBDM
6460
- msgctxt "billing info"
6461
- msgid "Country is required."
6462
- msgstr "Kraj jest wymagany."
6463
-
6464
- #: core/class-gateway.php:148
6465
- #@ WPBDM
6466
- msgctxt "billing info"
6467
- msgid "Address is required."
6468
- msgstr "Adres jest wymagany."
6469
-
6470
- #: core/class-settings.php:408
6471
- #@ WPBDM
6472
- msgctxt "admin settings"
6473
- msgid "Checkout URL link"
6474
- msgstr "Sprawdzanie link URL"
6475
-
6476
- #: core/class-settings.php:670
6477
- #, php-format
6478
- #@ WPBDM
6479
- msgctxt "admin settings"
6480
- msgid "Could not copy the AJAX compatibility plugin \"%s\". Compatibility mode was not activated."
6481
- msgstr "Nie można skopiować pluginu kompatybilności AJAX \"%s\". Tryb Kompatybilności nie został aktywowany."
6482
-
6483
- #: core/class-settings.php:678
6484
- #, php-format
6485
- #@ WPBDM
6486
- msgctxt "admin settings"
6487
- msgid "Could not activate AJAX Compatibility mode: the directory \"%s\" could not be created."
6488
- msgstr "Nie można aktywować trybu kompatybilności AJAX: Nie można utworzyć katalogu \"%s\"."
6489
-
6490
- #: core/class-settings.php:687
6491
- #, php-format
6492
- #@ WPBDM
6493
- msgctxt "admin settings"
6494
- msgid "Could not remove the \"Business Directory Plugin - AJAX Compatibility Module\". Please remove the file \"%s\" manually or deactivate the plugin."
6495
- msgstr "Nie można usunąć \"Katalog Firm - Moduł Kompatybilności AJAX \".Proszę ręcznie usunąć plik \"%s\" lub de-aktywować plugin."
6496
-
6497
- #: core/compatibility/class-navxt-integration.php:159
6498
- #@ WPBDM
6499
- msgctxt "navxt"
6500
- msgid "Submit Listing"
6501
- msgstr "Prześlij Ofertę"
6502
-
6503
- #: core/compatibility/class-navxt-integration.php:163
6504
- #@ WPBDM
6505
- msgctxt "navxt"
6506
- msgid "Edit Listing"
6507
- msgstr "Edytuj Ofertę"
6508
-
6509
- #: core/compatibility/class-navxt-integration.php:167
6510
- #@ WPBDM
6511
- msgctxt "navxt"
6512
- msgid "Search"
6513
- msgstr "Szukaj"
6514
-
6515
- #: core/form-fields-types.php:1067
6516
- #@ WPBDM
6517
- msgctxt "form-fields api"
6518
- msgid "Date Field"
6519
- msgstr "Pole daty"
6520
-
6521
- #: core/form-fields-types.php:1090
6522
- #, php-format
6523
- #@ form-fields api
6524
- msgid "%s (ex. %s)"
6525
- msgstr "%s (bez %s)"
6526
-
6527
- #: core/form-fields-types.php:1094
6528
- #@ WPBDM
6529
- msgctxt "form-fields api"
6530
- msgid "Date Format"
6531
- msgstr "Format daty"
6532
-
6533
- #: core/form-fields.php:497
6534
- #, php-format
6535
- #@ WPBDM
6536
- msgctxt "form-fields-api validation"
6537
- msgid "%s must be in the format %s."
6538
- msgstr "%s musi być w formacie %s."
6539
-
6540
- #: core/form-fields.php:529
6541
- #, php-format
6542
- #@ WPBDM
6543
- msgctxt "form-fields-api validation"
6544
- msgid "%s must be a valid date."
6545
- msgstr "%s musi być datą poprawną."
6546
-
6547
- #: core/gateways-authorize-net.php:19
6548
- #@ authorize-net
6549
- msgid "Activate Authorize.net?"
6550
- msgstr "Aktywować Authorize.net?"
6551
-
6552
- #: core/gateways-authorize-net.php:25
6553
- #@ authorize-net
6554
- msgid "Login ID"
6555
- msgstr "ID Loginu"
6556
-
6557
- #: core/gateways-authorize-net.php:29
6558
- #@ authorize-net
6559
- msgid "Transaction Key"
6560
- msgstr "Klucz Transakcji"
6561
-
6562
- #: core/gateways-authorize-net.php:40
6563
- #@ WPBDM
6564
- msgctxt "authorize-net"
6565
- msgid "Login ID is missing."
6566
- msgstr "Nie znaleziono ID Loginu"
6567
-
6568
- #: core/gateways-authorize-net.php:43
6569
- #@ WPBDM
6570
- msgctxt "authorize-net"
6571
- msgid "Transaction Key is missing."
6572
- msgstr "Nie znaleziono klucza transakcji."
6573
-
6574
- #: core/gateways-authorize-net.php:121
6575
- #, php-format
6576
- #@ WPBDM
6577
- msgctxt "authorize-net"
6578
- msgid "The payment gateway didn't accept your credit card or billing information. The following reason was given: \"%s\"."
6579
- msgstr "Bramka płatności nie akceptuje Twojej Karty Kredytowej lub informacji bilingowych. Powodem może być: \"%s\"."
6580
-
6581
- #: core/gateways-authorize-net.php:125
6582
- #, php-format
6583
- #@ WPBDM
6584
- msgctxt "authorize-net"
6585
- msgid "Your payment is being held for review by the payment gateway. The following reason was given: \"%s\"."
6586
- msgstr "Twoja płatność została wstrzymana przez bramkę płatności. Powodem może być: \"%s\"."
6587
-
6588
- #: core/gateways-authorize-net.php:128
6589
- #, php-format
6590
- #@ WPBDM
6591
- msgctxt "authorize-net"
6592
- msgid "Payment was rejected. The following reason was given: \"%s\"."
6593
- msgstr "Płatność została odrzucona. Powodem może być: \"%s\"."
6594
-
6595
- #: core/gateways-authorize-net.php:176
6596
- #@ WPBDM
6597
- msgctxt "authorize-net"
6598
- msgid "Could not process payment."
6599
- msgstr "Nie można kontynuować płatności."
6600
-
6601
- #: core/gateways-googlewallet.php:84
6602
- #@ google-wallet
6603
- msgid "Activate Google Wallet?"
6604
- msgstr "Aktywować portfel Google?"
6605
-
6606
- #: core/gateways-googlewallet.php:89
6607
- #@ google-wallet
6608
- msgid "Seller Identifier"
6609
- msgstr "Identyfikator sprzedawcy"
6610
-
6611
- #: core/gateways-googlewallet.php:94
6612
- #@ google-wallet
6613
- msgid "Seller Secret"
6614
- msgstr "Secret sprzedawcy"
6615
-
6616
- #: core/payment.php:755
6617
- #@ WPBDM
6618
- msgctxt "admin"
6619
- msgid "Pending Abandonment"
6620
- msgstr "Oczekujące na abonament"
6621
-
6622
- #: core/payment.php:760
6623
- #@ WPBDM
6624
- msgctxt "admin"
6625
- msgid "Abandoned"
6626
- msgstr "Porzucone"
6627
-
6628
- #: core/templates-ui.php:298
6629
- #@ WPBDM
6630
- msgctxt "sort"
6631
- msgid "(Reset)"
6632
- msgstr "(Resetuj)"
6633
-
6634
- #: core/utils.php:165
6635
- #, php-format
6636
- #@ WPBDM
6637
- msgctxt "utils"
6638
- msgid "File size (%s) is inferior to the required minimum file size of %s"
6639
- msgstr "Rozmiar pliku (%s) jest mniejszyod wymaganego minimum: %s"
6640
-
6641
- #: core/utils.php:216
6642
- #, php-format
6643
- #@ WPBDM
6644
- msgctxt "utils"
6645
- msgid "Image width (%s px) is inferior to minimum required width of %s px."
6646
- msgstr "Szerokość obrazu (%s px) jest mniejsza od wymaganego minimum: %s px."
6647
-
6648
- #: core/utils.php:222
6649
- #, php-format
6650
- #@ WPBDM
6651
- msgctxt "utils"
6652
- msgid "Image height (%s px) is inferior to minimum required height of %s px."
6653
- msgstr "Wysokość obrazu (%s px) jest mniejsza od wymaganego minimum: %s px."
6654
-
6655
- #: core/utils.php:228
6656
- #, php-format
6657
- #@ WPBDM
6658
- msgctxt "utils"
6659
- msgid "Image width (%s px) is greater than maximum allowed width of %s px."
6660
- msgstr "Szerokość obrazu (%s px) jest większa od dozwolonego maksimum: %s px."
6661
-
6662
- #: core/utils.php:234
6663
- #, php-format
6664
- #@ WPBDM
6665
- msgctxt "utils"
6666
- msgid "Image height (%s px) is greater than maximum required height of %s px."
6667
- msgstr "Wysokość obrazu (%s px) jest większa od dozwolonego maksimum: %s px."
6668
-
6669
- #: core/view-listing-contact.php:121
6670
- #@ WPBDM
6671
- msgctxt "templates"
6672
- msgid "Contact listing owner"
6673
- msgstr "Skontaktuj się z właścicielem oferty"
6674
-
6675
- #: templates/billing-information-form.tpl.php:3
6676
- #@ WPBDM
6677
- msgctxt "months"
6678
- msgid "Jan"
6679
- msgstr "STY"
6680
-
6681
- #: templates/billing-information-form.tpl.php:4
6682
- #@ WPBDM
6683
- msgctxt "months"
6684
- msgid "Feb"
6685
- msgstr "LUT"
6686
-
6687
- #: templates/billing-information-form.tpl.php:5
6688
- #@ WPBDM
6689
- msgctxt "months"
6690
- msgid "Mar"
6691
- msgstr "MAR"
6692
-
6693
- #: templates/billing-information-form.tpl.php:6
6694
- #@ WPBDM
6695
- msgctxt "months"
6696
- msgid "Apr"
6697
- msgstr "KWI"
6698
-
6699
- #: templates/billing-information-form.tpl.php:7
6700
- #@ WPBDM
6701
- msgctxt "months"
6702
- msgid "May"
6703
- msgstr "MAJ"
6704
-
6705
- #: templates/billing-information-form.tpl.php:8
6706
- #@ WPBDM
6707
- msgctxt "months"
6708
- msgid "Jun"
6709
- msgstr "CZE"
6710
-
6711
- #: templates/billing-information-form.tpl.php:9
6712
- #@ WPBDM
6713
- msgctxt "months"
6714
- msgid "Jul"
6715
- msgstr "LIP"
6716
-
6717
- #: templates/billing-information-form.tpl.php:10
6718
- #@ WPBDM
6719
- msgctxt "months"
6720
- msgid "Aug"
6721
- msgstr "SIE"
6722
-
6723
- #: templates/billing-information-form.tpl.php:11
6724
- #@ WPBDM
6725
- msgctxt "months"
6726
- msgid "Sep"
6727
- msgstr "WRZ"
6728
-
6729
- #: templates/billing-information-form.tpl.php:12
6730
- #@ WPBDM
6731
- msgctxt "months"
6732
- msgid "Oct"
6733
- msgstr "PAŹ"
6734
-
6735
- #: templates/billing-information-form.tpl.php:13
6736
- #@ WPBDM
6737
- msgctxt "months"
6738
- msgid "Nov"
6739
- msgstr "LIS"
6740
-
6741
- #: templates/billing-information-form.tpl.php:14
6742
- #@ WPBDM
6743
- msgctxt "months"
6744
- msgid "Dec"
6745
- msgstr "GRU"
6746
-
6747
- #: templates/billing-information-form.tpl.php:29
6748
- #@ WPBDM
6749
- msgctxt "checkout form"
6750
- msgid "Credit Card Details"
6751
- msgstr "Szczegóły Karty Kredytowej"
6752
-
6753
- #: templates/billing-information-form.tpl.php:30
6754
- #@ WPBDM
6755
- msgctxt "checkout form"
6756
- msgid "Please enter your credit card details below."
6757
- msgstr "Proszę poniżej podać szczegóły karty kredytowej."
6758
-
6759
- #: templates/billing-information-form.tpl.php:35
6760
- #@ WPBDM
6761
- msgctxt "checkout form"
6762
- msgid "First Name:"
6763
- msgstr "Nazwisko:"
6764
-
6765
- #: templates/billing-information-form.tpl.php:43
6766
- #@ WPBDM
6767
- msgctxt "checkout form"
6768
- msgid "Last Name:"
6769
- msgstr "Imię:"
6770
-
6771
- #: templates/billing-information-form.tpl.php:51
6772
- #@ WPBDM
6773
- msgctxt "checkout form"
6774
- msgid "Card Number:"
6775
- msgstr "Numer karty kredytowej:"
6776
-
6777
- #: templates/billing-information-form.tpl.php:59
6778
- #@ WPBDM
6779
- msgctxt "checkout form"
6780
- msgid "Expiration Date (MM/YYYY):"
6781
- msgstr "Data ważności (MM/YYYY):"
6782
-
6783
- #: templates/billing-information-form.tpl.php:72
6784
- #@ WPBDM
6785
- msgctxt "checkout form"
6786
- msgid "CVC:"
6787
- msgstr "CVC:"
6788
-
6789
- #: templates/billing-information-form.tpl.php:82
6790
- #@ WPBDM
6791
- msgctxt "checkout form"
6792
- msgid "Billing Address"
6793
- msgstr "Adres rozliczeniowy"
6794
-
6795
- #: templates/billing-information-form.tpl.php:87
6796
- #@ WPBDM
6797
- msgctxt "checkout form"
6798
- msgid "Country:"
6799
- msgstr "Kraj:"
6800
-
6801
- #: templates/billing-information-form.tpl.php:95
6802
- #@ WPBDM
6803
- msgctxt "checkout form"
6804
- msgid "State:"
6805
- msgstr "Województwo:"
6806
-
6807
- #: templates/billing-information-form.tpl.php:103
6808
- #@ WPBDM
6809
- msgctxt "checkout form"
6810
- msgid "City:"
6811
- msgstr "Miasto:"
6812
-
6813
- #: templates/billing-information-form.tpl.php:111
6814
- #@ WPBDM
6815
- msgctxt "checkout form"
6816
- msgid "Address Line 1:"
6817
- msgstr "Adres - linia1:"
6818
-
6819
- #: templates/billing-information-form.tpl.php:119
6820
- #@ WPBDM
6821
- msgctxt "checkout form"
6822
- msgid "Address Line 2:"
6823
- msgstr "Adres - linia2:"
6824
-
6825
- #: templates/billing-information-form.tpl.php:129
6826
- #@ default
6827
- msgctxt "WPBDM"
6828
- msgid "Cancel"
6829
- msgstr "Anuluj"
6830
-
6831
- #: templates/billing-information-form.tpl.php:130
6832
- #@ default
6833
- msgctxt "WPBDM"
6834
- msgid "Submit Payment"
6835
- msgstr "Prześlij Płatność."
6836
-
6837
- #: vendors/edd/EDD_SL_Plugin_Updater.php:178
6838
- #, php-format
6839
- #@ edd
6840
- msgid "There is a new version of %1$s available. <a target=\"_blank\" class=\"thickbox\" href=\"%2$s\">View version %3$s details</a>."
6841
- msgstr "Tu jest dostępna nowa wersja %1$s . <a target=\"_blank\" class=\"thickbox\" href=\"%2$s\">Zobacz szczegóły wersji %3$s </a>."
6842
-
6843
- #: vendors/edd/EDD_SL_Plugin_Updater.php:185
6844
- #, php-format
6845
- #@ edd
6846
- msgid "There is a new version of %1$s available. <a target=\"_blank\" class=\"thickbox\" href=\"%2$s\">View version %3$s details</a> or <a href=\"%4$s\">update now</a>."
6847
- msgstr "Tu jest dostępna nowa wersja %1$s . <a target=\"_blank\" class=\"thickbox\" href=\"%2$s\">Zobacz szczegóły wersji %3$s </a> lub <a href=\"%4$s\">zaktualizuj</a>."
6848
-
6849
- #: vendors/edd/EDD_SL_Plugin_Updater.php:325
6850
- #@ edd
6851
- msgid "You do not have permission to install plugin updates"
6852
- msgstr "Nie masz uprawnień do aktualizacji pluginów."
6853
-
6854
- #: vendors/edd/EDD_SL_Plugin_Updater.php:325
6855
- #@ edd
6856
- msgid "Error"
6857
- msgstr "BŁĄD"
6858
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
2
  msgstr ""
3
  "Project-Id-Version: Business Directory Plugin v3.6.5\n"
4
  "Report-Msgid-Bugs-To: http://wordpress.org/tag/business-directory-plugin\n"
5
+ "POT-Creation-Date: 2016-12-13 23:12:36+00:00\n"
6
+ "PO-Revision-Date: 2016-12-13 18:12-0500\n"
7
  "Last-Translator: HomeSupport <admin@homesupport.pl>\n"
8
  "Language-Team: HomeSupport\n"
9
+ "Language: pl_PL\n"
10
  "MIME-Version: 1.0\n"
11
  "Content-Type: text/plain; charset=UTF-8\n"
12
  "Content-Transfer-Encoding: 8bit\n"
13
+ "Plural-Forms: nplurals=3; plural=n==1 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 "
14
+ "|| n%100>=20) ? 1 : 2;\n"
15
+ "X-Generator: Poedit 1.8.5\n"
 
16
  "X-Poedit-SourceCharset: utf-8\n"
17
+ "X-Poedit-KeywordsList: __;_e;__ngettext:1,2;_n:1,2;__ngettext_noop:1,2;"
18
+ "_n_noop:1,2;_c,_nc:4c,1,2;_x:1,2c;_ex:1,2c;_nx:4c,1,2;_nx_noop:4c,1,2\n"
19
+ "X-Textdomain-Support: yes\n"
20
  "X-Poedit-SearchPath-0: .\n"
 
21
 
22
+ # @ WPBDM
23
+ #: admin/class-admin-listings.php:40
24
+ #, fuzzy
25
+ msgctxt "admin category filter"
26
+ msgid "All categories"
27
+ msgstr "Wszystkie Kategorie"
28
+
29
+ #: admin/class-admin-listings.php:133
30
+ msgctxt "admin listings"
31
+ msgid ""
32
+ "This listing doesn't have any category assigned. At least one category (and "
33
+ "its respective fee) is required in order to determine the features available "
34
+ "to this listing, as well as handling renewals."
35
+ msgstr ""
36
+
37
+ # @ WPBDM
38
+ #: admin/class-admin-listings.php:138
39
  msgid "Listing Information"
40
  msgstr "Informacje o firmie"
41
 
42
+ # @ WPBDM
43
+ #: admin/class-admin-listings.php:145
44
  msgctxt "admin"
45
  msgid "Listing Fields / Images"
46
  msgstr "Pola/Obrazy"
47
 
48
+ # @ WPBDM
49
+ #: admin/class-admin-listings.php:156
50
  msgctxt "admin"
51
  msgid "Categories"
52
  msgstr "Kategorie"
53
 
54
+ # @ WPBDM
55
+ #: admin/class-admin-listings.php:157
56
  msgid "Payment Status"
57
  msgstr "Status płatności"
58
 
59
+ # @ WPBDM
60
+ #: admin/class-admin-listings.php:158
61
  msgid "Featured (Sticky) Status"
62
  msgstr "Status wyróżnienia (naklejka)"
63
 
64
+ # @ WPBDM
65
+ #: admin/class-admin-listings.php:189
66
  msgctxt "admin"
67
  msgid "(Listing expired in this category)"
68
  msgstr "(Oferty wygasłe w tej kategorii)"
69
 
70
+ # @ WPBDM
71
+ #: admin/class-admin-listings.php:207 admin/class-admin-listings.php:290
 
72
  msgid "Paid"
73
  msgstr "Zapłacone"
74
 
75
+ # @ WPBDM
76
+ #: admin/class-admin-listings.php:212
77
  msgid "Mark as"
78
  msgstr "Oznaczone jako"
79
 
80
+ # @ WPBDM
81
+ #: admin/class-admin-listings.php:221 admin/class-admin-listings.php:300
 
82
  msgid "Pending Upgrade"
83
  msgstr "Oferty oczekujące na zatwierdzenie"
84
 
85
+ # @ WPBDM
86
+ #: admin/class-admin-listings.php:229 admin/listing-metabox.php:70
 
 
87
  msgid "Upgrade to %s"
88
  msgstr "Podnieś status do %s"
89
 
90
+ # @ WPBDM
91
+ #: admin/class-admin-listings.php:236 admin/listing-metabox.php:77
 
 
92
  msgid "Downgrade to %s"
93
  msgstr "Obniż status do %s"
94
 
95
+ # @ WPBDM
96
+ #: admin/class-admin-listings.php:239 admin/class-admin-listings.php:418
 
97
  msgctxt "admin actions"
98
  msgid "Upgrade to Featured"
99
  msgstr "Podnieś status do \"Wyróżnione\""
100
 
101
+ # @ WPBDM
102
+ #: admin/class-admin-listings.php:295
103
  msgid "Unpaid"
104
  msgstr "Nie zapłacone"
105
 
106
+ # @ WPBDM
107
+ #: admin/class-admin-listings.php:305
108
  msgctxt "admin"
109
  msgid "Expired"
110
  msgstr "Wygasłe"
111
 
112
+ # @ WPBDM
113
+ #: admin/class-admin-listings.php:354
114
  msgctxt "admin actions"
115
  msgid "Edit Listing"
116
  msgstr "Edytuj Ofertę"
117
 
118
+ # @ WPBDM
119
+ #: admin/class-admin-listings.php:357
120
  msgctxt "admin actions"
121
  msgid "Delete Listing"
122
  msgstr "Usuń Ofertę"
123
 
124
+ # @ WPBDM
125
+ #: admin/class-admin-listings.php:416
126
  msgctxt "admin actions"
127
  msgid "Publish Listing"
128
  msgstr "Publikuj Ofertę"
129
 
130
+ # @ WPBDM
131
+ #: admin/class-admin-listings.php:419
132
  msgctxt "admin actions"
133
  msgid "Downgrade to Normal"
134
  msgstr "Obniż status do \"normalna\""
135
 
136
+ # @ WPBDM
137
+ #: admin/class-admin-listings.php:421
138
  msgctxt "admin actions"
139
  msgid "Mark as Paid"
140
  msgstr "Oznacz jako zapłacone"
141
 
142
+ # @ WPBDM
143
+ #: admin/class-admin-listings.php:423
144
  msgctxt "admin actions"
145
  msgid "Renew Listing"
146
  msgstr "Odnów Ofertę"
147
 
148
+ #: admin/class-admin.php:102
149
+ msgid ""
150
+ "Preview is only available after you've saved the first draft. This is due\n"
151
+ "to how WordPress stores the data."
152
+ msgstr ""
153
+
154
+ # @ WPBDM
155
+ #: admin/class-admin.php:135
156
  msgctxt "drip pointer"
157
+ msgid ""
158
+ "Find out how to create a compelling, thriving business directory from "
159
+ "scratch in this ridiculously actionable (and FREE) 5-part email course. Get "
160
+ "a FREE premium module just for signing up."
161
+ msgstr ""
162
+ "Dowiedz się, jak utworzyć, dobrze prosperujący Katalog Firm od podstaw w tym "
163
+ "absurdalnie praktycznym (i darmowym), 5-częściowy kursie e-mailowym. Zdobądź "
164
+ "darmowy moduł Premium tylko za zarejestrowanie się."
165
 
166
+ # @ WPBDM
167
+ #: admin/class-admin.php:137
168
  msgctxt "drip pointer"
169
  msgid "Email Address:"
170
  msgstr "Adres e-mail:"
171
 
172
+ # @ WPBDM
173
+ #: admin/class-admin.php:143
174
  msgctxt "drip pointer"
175
  msgid "Want to know the Secrets of Building an Awesome Business Directory?"
176
  msgstr "Chcesz poznać tajemnice budowy niesamowitego katalogu firm?"
177
 
178
+ # @ WPBDM
179
+ #: admin/class-admin.php:145
180
  msgctxt "drip pointer"
181
  msgid "Yes, please!"
182
  msgstr "Tak, proszę!"
183
 
184
+ # @ WPBDM
185
+ #: admin/class-admin.php:147
186
  msgctxt "drip pointer"
187
  msgid "No, thanks"
188
  msgstr "Nie, dziękuję"
189
 
190
+ # @ WPBDM
191
+ #: admin/class-admin.php:164
192
  msgctxt "admin"
193
  msgid "Business Directory"
194
  msgstr "Katalog Firm"
195
 
196
+ # @ WPBDM
197
+ #: admin/class-admin.php:175
198
  msgctxt "admin"
199
  msgid "You're all set. Visit your new <a>Business Directory</a> page."
200
  msgstr "Wszystko ustawione. Odwiedź swój nowy <a>Katalog Firm</a>."
201
 
202
+ # @ WPBDM
203
+ #: admin/class-admin.php:196
204
+ msgctxt "drip pointer"
205
+ msgid "Invalid e-mail address."
206
+ msgstr "Nieprawidłowy adres e-mail"
207
+
208
+ # @ WPBDM
209
+ #: admin/class-admin.php:230
210
  msgctxt "admin menu"
211
  msgid "Business Directory Admin"
212
  msgstr "Katalog Firm Admin"
213
 
214
+ # @ WPBDM
215
+ #: admin/class-admin.php:231
216
+ #, fuzzy
217
+ msgctxt "admin menu"
218
+ msgid "Dir. Admin"
219
+ msgstr "Katalog Admin"
220
+
221
+ # @ WPBDM
222
+ #: admin/class-admin.php:231
223
  msgctxt "admin menu"
224
  msgid "Directory Admin"
225
  msgstr "Katalog Admin"
226
 
227
+ # @ WPBDM
228
+ #: admin/class-admin.php:237 admin/class-admin.php:238
 
229
  msgctxt "admin menu"
230
  msgid "Add New Listing"
231
  msgstr "Dodaj nową ofertę"
232
 
233
+ # @ WPBDM
234
+ #: admin/class-admin.php:243 admin/class-admin.php:244
 
235
  msgctxt "admin menu"
236
  msgid "Manage Options"
237
  msgstr "Zarządzaj opcjami"
238
 
239
+ # @ WPBDM
240
+ #: admin/class-admin.php:249 admin/class-admin.php:250
 
241
  msgctxt "admin menu"
242
  msgid "Manage Fees"
243
  msgstr "Zarządzaj abonamentami"
244
 
245
+ # @ WPBDM
246
+ #: admin/class-admin.php:255 admin/class-admin.php:256
 
247
  msgctxt "admin menu"
248
  msgid "Manage Form Fields"
249
  msgstr "Zarządzaj polami formularzy"
250
 
251
+ # @ WPBDM
252
+ #: admin/class-admin.php:261 admin/class-admin.php:262
253
+ msgctxt "admin menu"
254
+ msgid "Listings"
255
+ msgstr "Oferty"
256
+
257
+ # @ WPBDM
258
+ #: admin/class-admin.php:276 admin/class-admin.php:277
259
  msgctxt "admin menu"
260
  msgid "CSV Import"
261
  msgstr "CSV Import"
262
 
263
+ # @ WPBDM
264
+ #: admin/class-admin.php:282 admin/class-admin.php:283
 
265
  msgctxt "admin menu"
266
  msgid "CSV Export"
267
  msgstr "CSV Export"
268
 
269
+ # @ WPBDM
270
+ #: admin/class-admin.php:288 admin/class-admin.php:289
 
271
  msgctxt "admin menu"
272
  msgid "Debug"
273
  msgstr "Debug"
274
 
275
+ # @ WPBDM
276
+ #: admin/class-admin.php:298
277
  msgctxt "admin menu"
278
  msgid "Main Menu"
279
  msgstr "Główne menu"
280
 
281
+ # @ WPBDM
282
+ #: admin/class-admin.php:309
283
  msgctxt "admin menu"
284
  msgid "Uninstall Business Directory Plugin"
285
  msgstr "Odinstaluj Katalog Firm"
286
 
287
+ # @ WPBDM
288
+ #: admin/class-admin.php:310
289
  msgctxt "admin menu"
290
  msgid "Uninstall"
291
  msgstr "Odinstaluj "
292
 
293
+ # @ WPBDM
294
+ #: admin/class-admin.php:424
295
+ #: admin/templates/listing-metabox-categories.tpl.php:69
296
+ msgctxt "admin infometabox"
297
+ msgid "never"
298
+ msgstr "nigdy"
299
+
300
+ #: admin/class-admin.php:518
301
+ msgctxt "admin"
302
+ msgid "Dismiss this notice."
303
+ msgstr ""
304
+
305
+ # @ WPBDM
306
+ #: admin/class-admin.php:546
307
  msgctxt "admin"
308
  msgid "The listing has been published."
309
  msgid_plural "The listings have been published."
311
  msgstr[1] "Oferty zostały opublikowane."
312
  msgstr[2] "Ofert zostało opublikowanych."
313
 
314
+ # @ WPBDM
315
+ #: admin/class-admin.php:564
316
  msgctxt "admin"
317
  msgid "The listing status has been set as paid."
318
  msgid_plural "The listings status has been set as paid."
320
  msgstr[1] "Zmieniono status ofert na zapłacono."
321
  msgstr[2] "Zmieniono status ofert na zapłacono."
322
 
323
+ #: admin/class-admin.php:570
324
+ msgctxt "admin"
325
+ msgid ""
326
+ "Only invoices containing non-recurring items were marked as paid. Please "
327
+ "review the <a>Transactions</a> tab for the listing to manage recurring items "
328
+ "or check the gateway's backend."
329
+ msgid_plural ""
330
+ "Only invoices containing non-recurring items were marked as paid. Recurring "
331
+ "payments have to be managed through the gateway."
332
+ msgstr[0] ""
333
+ msgstr[1] ""
334
+ msgstr[2] ""
335
+
336
+ # @ WPBDM
337
+ #: admin/class-admin.php:589
338
  msgctxt "admin"
339
  msgid "The listing has been modified."
340
  msgid_plural "The listings have been modified."
342
  msgstr[1] "Oferty zostały zmodyfikowane."
343
  msgstr[2] "Ofert zostało zmodyfikowanych."
344
 
345
+ # @ WPBDM
346
+ #: admin/class-admin.php:602
347
  msgctxt "admin"
348
  msgid "The listing has been upgraded."
349
  msgid_plural "The listings have been upgraded."
351
  msgstr[1] "Podniesiono status ofert."
352
  msgstr[2] "Podniesiono status ofert."
353
 
354
+ # @ WPBDM
355
+ #: admin/class-admin.php:614
356
  msgctxt "admin"
357
  msgid "The listing has been downgraded."
358
  msgid_plural "The listings have been downgraded."
360
  msgstr[1] "Obniżono status ofert."
361
  msgstr[2] "Obniżono status ofert."
362
 
363
+ #: admin/class-admin.php:625
364
+ msgctxt "admin payments"
365
+ msgid ""
366
+ "The payment status was not changed. Recurring payments can't be manually "
367
+ "approved. Please check your gateway's backend to see if the payment really "
368
+ "went through."
369
+ msgstr ""
370
+
371
+ # @ WPBDM
372
+ #: admin/class-admin.php:630
373
  msgctxt "admin"
374
  msgid "The transaction has been approved."
375
  msgstr "Transakcja została zatwierdzona."
376
 
377
+ # @ WPBDM
378
+ #: admin/class-admin.php:640
 
379
  msgctxt "admin"
380
  msgid "The transaction has been rejected."
381
  msgstr "Transakcja została odrzucona."
382
 
383
+ # @ WPBDM
384
+ #: admin/class-admin.php:646
385
  msgctxt "admin"
386
  msgid "The fee was successfully assigned."
387
  msgstr "Abonament został przypisany do oferty."
388
 
389
+ # @ WPBDM
390
+ #: admin/class-admin.php:655
391
  msgctxt "admin"
392
  msgid "Listing was renewed."
393
  msgid_plural "Listings were renewed."
395
  msgstr[1] "Odnowiono oferty."
396
  msgstr[2] "Odnowiono ofert."
397
 
398
+ # @ WPBDM
399
+ #: admin/class-admin.php:662
400
  msgctxt "admin"
401
  msgid "Renewal email sent."
402
  msgstr "Wysłano e-mail potwierdzający odnowienie."
403
 
404
+ # @ WPBDM
405
+ #: admin/class-admin.php:696
406
  msgctxt "admin category id"
407
  msgid "ID"
408
  msgstr "ID"
409
 
410
+ # @ WPBDM
411
+ #: admin/class-admin.php:698 admin/class-admin.php:704
 
412
  msgctxt "admin"
413
  msgid "Listing Count"
414
  msgstr "Licznik ofert"
415
 
416
+ # @ WPBDM
417
+ #: admin/class-admin.php:813
 
418
  msgctxt "admin"
419
+ msgid ""
420
+ "<b>Business Directory Plugin</b> requires fields with the following "
421
+ "associations in order to work correctly: <b>%s</b>."
422
+ msgstr ""
423
+ "<b>Katalog Firm</b>aby pracować poprawnie, potrzebuje właściwych danych w "
424
+ "tym polu: <b>%s</b>."
425
 
426
+ # @ WPBDM
427
+ #: admin/class-admin.php:815
 
428
  msgctxt "admin"
429
+ msgid ""
430
+ "<b>Business Directory Plugin</b> requires a field with a <b>%s</b> "
431
+ "association in order to work correctly."
432
+ msgstr ""
433
+ "<b>Katalog Firm</b>potrzebuje pola z <b>%s</b> aby pracować poprawnie."
434
 
435
+ # @ WPBDM
436
+ #: admin/class-admin.php:819
437
  msgctxt "admin"
438
+ msgid ""
439
+ "You can create these custom fields by yourself inside \"Manage Form Fields\" "
440
+ "or let Business Directory do this for you automatically."
441
+ msgstr ""
442
+ "Możesz tworzyć te niestandardowe pola samemu w  \"Zarządzanie polami "
443
+ "formularza\" albo niech katalog firm zrobi to dla ciebie automatycznie."
444
 
445
+ # @ WPBDM
446
+ #: admin/class-admin.php:823
447
  msgctxt "admin"
448
  msgid "Go to \"Manage Form Fields\""
449
  msgstr "Przejdź do \"Zarządzanie polami formularza\""
450
 
451
+ # @ WPBDM
452
+ #: admin/class-admin.php:826
453
  msgctxt "admin"
454
  msgid "Create these required fields for me"
455
  msgstr "Stwórz te wymagane pola dla mnie"
456
 
457
+ # @ WPBDM
458
+ #: admin/class-admin.php:835
459
  msgctxt "admin"
460
+ msgid ""
461
+ "<b>Business Directory Plugin</b> requires a page with the "
462
+ "<tt>[businessdirectory]</tt> shortcode to function properly."
463
+ msgstr ""
464
+ "<b>Katalog Firm</b> wymaga chociaż jednej strony z krótkim kodem "
465
+ "<tt>[businessdirectory]</tt> aby działać prawidłowo."
466
 
467
+ # @ WPBDM
468
+ #: admin/class-admin.php:837
469
  msgctxt "admin"
470
+ msgid ""
471
+ "You can create this page by yourself or let Business Directory do this for "
472
+ "you automatically."
473
+ msgstr ""
474
+ "Możesz utworzyć tę stronę sam, albo niech katalog firm zrobi to "
475
+ "automatycznie."
476
 
477
+ # @ WPBDM
478
+ #: admin/class-admin.php:841
479
  msgctxt "admin"
480
  msgid "Create required pages for me"
481
  msgstr "Stwórz wymagane pola dla mnie"
482
 
483
+ # @ WPBDM
484
+ #: admin/class-admin.php:881
 
485
  msgctxt "admin compat"
486
  msgid "Installed: %s"
487
  msgstr "zainstalowane: %s"
488
 
489
+ # @ WPBDM
490
+ #: admin/class-admin.php:881
491
  msgctxt "admin compat"
492
  msgid "N/A"
493
  msgstr "N/A"
494
 
495
+ # @ WPBDM
496
+ #: admin/class-admin.php:884
 
497
  msgctxt "admin compat"
498
  msgid "Required: %s"
499
  msgstr "Wymagane: %s"
500
 
501
+ # @ WPBDM
502
+ #: admin/class-admin.php:896
503
  msgctxt "admin compat"
504
+ msgid ""
505
+ "Business Directory has detected some incompatible premium module versions "
506
+ "installed."
507
+ msgstr ""
508
+ "Katalog Firm wykrył pewne niezgodne zainstalowane wersje modułów Premium."
509
 
510
+ # @ WPBDM
511
+ #: admin/class-admin.php:898
512
  msgctxt "admin compat"
513
+ msgid ""
514
+ "Please upgrade to the required versions indicated below to make sure "
515
+ "everything functions properly."
516
+ msgstr ""
517
+ "Prosimy zaktualizować do wymaganych wersji jak wskazano poniżej, aby upewnić "
518
+ "się, że wszystko będzie funkcjonować prawidłowo."
519
 
520
+ # @ WPBDM
521
+ #: admin/class-admin.php:918
522
  msgctxt "admin"
523
+ msgid ""
524
+ "We noticed you want your Business Directory users to register before posting "
525
+ "listings, but Registration for your site is currently disabled. Go [here] "
526
+ "and check \"Anyone can register\" to make sure BD works properly."
527
+ msgstr ""
528
+ "Zauważyliśmy, że chcesz, aby użytkownicy katalogu firm się zarejestrowali "
529
+ "zanim złożą ofertę , ale Rejestracja witryny jest obecnie wyłączona. Przejdź "
530
+ "[tutaj] i zaznacz \"Każdy może się zarejestrować\", aby upewnić się, że "
531
+ "katalog firm będzie działał poprawnie."
532
 
533
+ # @ WPBDM
534
  #: admin/class-listing-fields-metabox.php:21
 
535
  msgctxt "admin"
536
  msgid "Listing Fields"
537
  msgstr "Pola ofert"
538
 
539
+ # @ WPBDM
540
  #: admin/class-listing-fields-metabox.php:40
541
  #: templates/submit-listing/images.tpl.php:12
 
542
  msgctxt "templates"
543
  msgid "Current Images"
544
  msgstr "Aktualne obrazy"
545
 
546
+ # @ WPBDM
547
  #: admin/class-listing-fields-metabox.php:41
 
548
  msgctxt "templates"
549
  msgid "There are no images currently attached to the listing."
550
  msgstr "Obecnie nie ma żadnych obrazków dołączonych do tej oferty."
551
 
552
+ # @ WPBDM
553
+ #: admin/class-themes-admin.php:47
554
+ #, fuzzy
555
+ msgctxt "themes"
556
+ msgid "Directory Themes"
557
+ msgstr "Kategorie Katalogu"
558
+
559
+ # @ WPBDM
560
+ #: admin/class-themes-admin.php:48
561
+ #, fuzzy
562
+ msgctxt "themes"
563
+ msgid "Directory Themes %s"
564
+ msgstr "Kategorie Katalogu"
565
+
566
+ #: admin/class-themes-admin.php:94
567
+ msgctxt "admin themes"
568
+ msgid ""
569
+ "Business Directory Plugin - Your template overrides need to be reviewed!"
570
+ msgstr ""
571
+
572
+ #: admin/class-themes-admin.php:96
573
+ msgctxt "admin themes"
574
+ msgid ""
575
+ "Starting with version 4.0, Business Directory is using a new theming system "
576
+ "that is not compatible with the templates used in previous versions."
577
+ msgstr ""
578
+
579
+ #: admin/class-themes-admin.php:98
580
+ msgctxt "admin themes"
581
+ msgid ""
582
+ "Because of this, your template overrides below have been disabled. You "
583
+ "should <a>review our documentation on customization</a> in order adjust your "
584
+ "templates."
585
+ msgstr ""
586
+
587
+ #: admin/class-themes-admin.php:127
588
+ msgctxt "admin themes"
589
+ msgid ""
590
+ "You need to <a>activate your theme's license key</a> before you can activate "
591
+ "the theme. <a>Click here</a> to do that."
592
+ msgstr ""
593
+
594
+ # @ WPBDM
595
+ #: admin/class-themes-admin.php:157
596
+ #, fuzzy
597
+ msgctxt "themes"
598
+ msgid "Could not change the active theme to \"%s\"."
599
+ msgstr "Nie można utworzyć kategorii ofert \"%s\""
600
+
601
+ #: admin/class-themes-admin.php:204
602
+ msgctxt "themes"
603
+ msgid "Active theme changed to \"%s\"."
604
+ msgstr ""
605
+
606
+ #: admin/class-themes-admin.php:207
607
+ msgctxt "themes"
608
+ msgid ""
609
+ "%s requires that you tag your existing fields to match some places we want "
610
+ "to put your data on the theme. Below are fields we think are missing."
611
+ msgstr ""
612
+
613
+ # @ WPBDM
614
+ #: admin/class-themes-admin.php:216
615
+ #, fuzzy
616
+ msgctxt "themes"
617
+ msgid "Map My Fields"
618
+ msgstr "Zarządzaj polami formularzy"
619
+
620
+ # @ WPBDM
621
+ #: admin/class-themes-admin.php:223
622
+ #, fuzzy
623
+ msgctxt "themes"
624
+ msgid "Suggested fields created successfully."
625
+ msgstr "Pola wymagane zostały pomyślnie utworzone."
626
+
627
+ # @ WPBDM
628
+ #: admin/class-themes-admin.php:226
629
+ #, fuzzy
630
+ msgctxt "themes"
631
+ msgid "Theme installed successfully."
632
+ msgstr "Pola wymagane zostały pomyślnie utworzone."
633
+
634
+ # @ WPBDM
635
+ #: admin/class-themes-admin.php:229
636
+ #, fuzzy
637
+ msgctxt "themes"
638
+ msgid "Theme was deleted sucessfully."
639
+ msgstr "Import zakończony pełnym sukcesem."
640
+
641
+ #: admin/class-themes-admin.php:232
642
+ msgctxt "themes"
643
+ msgid "Could not delete theme directory. Check permissions."
644
+ msgstr ""
645
+
646
+ # @ WPBDM
647
+ #: admin/class-themes-admin.php:258
648
+ #, fuzzy
649
+ msgctxt "themes"
650
+ msgid "Please upload a valid theme file."
651
+ msgstr "Proszę wprowadzić poprawny adres e-mail."
652
+
653
+ # @ WPBDM
654
+ #: admin/class-themes-admin.php:265
655
+ #, fuzzy
656
+ msgctxt "themes"
657
+ msgid "Could not move \"%s\" to a temporary directory."
658
+ msgstr "Nie można utworzyć katalogu wpbdp-csv-eksport."
659
+
660
+ # @ WPBDM
661
+ #: admin/class-themes-admin.php:366 admin/class-themes-admin.php:427
662
+ #: core/licensing.php:126 core/licensing.php:158
663
+ msgctxt "licensing"
664
+ msgid "Could not contact licensing server"
665
+ msgstr "Nie można połączyć z serwerem danych licencji"
666
+
667
+ # @ WPBDM
668
+ #: admin/class-themes-admin.php:372 core/licensing.php:131
669
+ #: core/licensing.php:165
670
+ msgctxt "licensing"
671
+ msgid "License key is invalid"
672
+ msgstr "Niewłaściwy Klucz Licencji"
673
+
674
+ # @ WPBDM
675
+ #: admin/class-themes-admin.php:377 core/licensing.php:320
676
+ msgctxt "licensing"
677
+ msgid "Could not activate license: %s."
678
+ msgstr "Nie możemy aktywować Licencji: %s."
679
+
680
+ # @ WPBDM
681
+ #: admin/class-themes-admin.php:390 core/licensing.php:322
682
+ msgctxt "licensing"
683
+ msgid "License activated"
684
+ msgstr "Licencja została aktywowana"
685
+
686
+ #: admin/class-themes-admin.php:433
687
+ msgctxt "licensing"
688
+ msgid "Invalid response from server"
689
+ msgstr ""
690
+
691
+ # @ WPBDM
692
+ #: admin/class-themes-admin.php:450 core/licensing.php:340
693
+ msgctxt "licensing"
694
+ msgid "License deactivated"
695
+ msgstr "Licencja deaktywowana"
696
+
697
+ #: admin/class-themes-admin.php:466
698
+ msgctxt "themes"
699
+ msgid "Activate your <a>license key</a> to use this theme."
700
+ msgstr ""
701
+
702
+ # @ WPBDM
703
  #: admin/csv-export.php:136
 
704
  msgctxt "admin csv-export"
705
  msgid "Could not create a temporary directory for handling this CSV export."
706
+ msgstr ""
707
+ "Nie można utworzyć katalogu tymczasowego dla obsługi tego eksportu CSV."
708
 
709
+ # @ WPBDM
710
  #: admin/csv-export.php:138
 
711
  msgctxt "admin csv-export"
712
  msgid "Could not create wpbdp-csv-exports directory."
713
  msgstr "Nie można utworzyć katalogu wpbdp-csv-eksport."
714
 
715
+ # @ WPBDM
716
  #: admin/csv-export.php:143
 
 
717
  msgctxt "admin csv-export"
718
  msgid "Error while creating a temporary directory for CSV export: %s"
719
  msgstr "Błąd podczas tworzenia katalogu tymczasowego dla eksportu CSV: %s"
720
 
721
+ # @ WPBDM
722
+ #: admin/csv-import.php:109
 
723
  msgctxt "admin csv-import"
724
  msgid "Business %s"
725
  msgstr "Firmy %s"
726
 
727
+ # @ WPBDM
728
+ #: admin/csv-import.php:147
729
  msgctxt "admin csv-import"
730
  msgid "Whatever"
731
  msgstr "Cokolwiek"
732
 
733
+ # @ WPBDM
734
+ #: admin/csv-import.php:151
735
  msgctxt "admin csv-import"
736
  msgid "Example CSV Import File"
737
  msgstr "Przykład importowanego pliku CSV"
738
 
739
+ # @ WPBDM
740
+ #: admin/csv-import.php:152
741
  msgctxt "admin csv-import"
742
  msgid "← Return to \"CSV Import\""
743
  msgstr "← Powrót do \"CSV Import\""
744
 
745
+ # @ csv import
746
+ #: admin/csv-import.php:255
747
+ msgid ""
748
+ "A valid temporary directory with write permissions is required for CSV "
749
+ "imports to function properly. Your server is using \"%s\" but this path does "
750
+ "not seem to be writable. Please consult with your host."
751
+ msgstr ""
752
+ "Wymagany jest katalog tymczasowy z uprawnieniami do zapisu, aby import CSV "
753
+ "funkcjonował poprawnie. Serwer używa \"%s\" , ale ta ścieżka wydaje się nie "
754
+ "mieć prawa zapisu. Proszę skontaktować się z hostem."
755
 
756
+ # @ WPBDM
757
+ #: admin/csv-import.php:289
758
  msgctxt "admin csv-import"
759
  msgid "There was an error uploading the CSV file."
760
  msgstr "Błąd podczas przesyłania pliku CSV."
761
 
762
+ # @ WPBDM
763
+ #: admin/csv-import.php:295
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
764
  msgctxt "admin csv-import"
765
+ msgid "Please upload or select a CSV file."
766
+ msgstr "Proszę załadować nowy lub wybrać istniejący plik CSV."
767
 
768
+ # @ WPBDM
769
+ #: admin/csv-import.php:308
 
770
  msgctxt "admin csv-import"
771
+ msgid "There was an error uploading the images ZIP file."
772
+ msgstr "Wystąpił problem podczas ładowania obrazów w pliku ZIP."
773
 
774
+ # @ WPBDM
775
+ #: admin/csv-import.php:329
 
776
  msgctxt "admin csv-import"
777
+ msgid ""
778
+ "An error was detected while validating the CSV file for import. Please fix "
779
+ "this before proceeding."
780
+ msgstr ""
781
+ "Wykryto błąd podczas sprawdzania pliku CSV przed importem. Proszę to "
782
+ "sprawdzić przed kontynuacją."
783
 
784
+ # @ WPBDM
785
+ #: admin/csv-import.php:338
 
786
  msgctxt "admin csv-import"
787
+ msgid "Import is in \"test mode\". Nothing will be inserted into the database."
788
+ msgstr ""
789
+ "IMPORT jest obecnie w \"trybie testowym\". Niec nie zostanie dodane do bazy "
790
+ "danych."
791
 
792
+ # @ WPBDM
793
  #: admin/fees.php:9
 
794
  msgctxt "fees admin"
795
  msgid "fee"
796
  msgstr "Abonament"
797
 
798
+ # @ WPBDM
799
  #: admin/fees.php:10
 
800
  msgctxt "fees admin"
801
  msgid "fees"
802
  msgstr "Abonamenty"
803
 
804
+ #: admin/fees.php:19
805
+ msgctxt "fees admin"
806
+ msgid "There are no fees right now. You can <a>create one</a>, if you want."
807
+ msgstr ""
808
+
809
+ # @ WPBDM
810
+ #: admin/fees.php:25 admin/fees.php:260
811
+ #, fuzzy
812
+ msgctxt "fees admin"
813
+ msgid "Active"
814
+ msgstr "Tylko aktywne"
815
+
816
+ # @ WPBDM
817
+ #: admin/fees.php:28 admin/fees.php:258
818
+ #, fuzzy
819
+ msgctxt "fees admin"
820
+ msgid "Not Available"
821
+ msgstr "Dostępne miejsca na Obrazy:"
822
+
823
+ #: admin/fees.php:31 admin/fees.php:255
824
  msgctxt "fees admin"
825
+ msgid "Disabled"
826
+ msgstr ""
827
+
828
+ #: admin/fees.php:39
829
+ msgctxt "fees admin"
830
+ msgid ""
831
+ "There are no \"%s\" fees right now. You can <a>create one</a>, if you want."
832
+ msgstr ""
833
+
834
+ # @ WPBDM
835
+ #: admin/fees.php:56
836
+ #, fuzzy
837
+ msgctxt "admin fees table"
838
+ msgid "All"
839
+ msgstr "Wszystkie"
840
 
841
+ # @ WPBDM
842
+ #: admin/fees.php:68
843
+ #, fuzzy
844
+ msgctxt "admin fees table"
845
+ msgid "Active"
846
+ msgstr "Tylko aktywne"
847
+
848
+ # @ WPBDM
849
+ #: admin/fees.php:78
850
+ #, fuzzy
851
+ msgctxt "admin fees table"
852
+ msgid "Not Available"
853
+ msgstr "Dostępne miejsca na Obrazy:"
854
+
855
+ #: admin/fees.php:85
856
+ msgctxt "admin fees table"
857
+ msgid "Disabled"
858
+ msgstr ""
859
+
860
+ # @ WPBDM
861
+ #: admin/fees.php:94
862
  msgctxt "fees admin"
863
  msgid "Label"
864
  msgstr "Etykieta"
865
 
866
+ # @ WPBDM
867
+ #: admin/fees.php:95
868
  msgctxt "fees admin"
869
  msgid "Amount"
870
  msgstr "Kwota"
871
 
872
+ # @ WPBDM
873
+ #: admin/fees.php:96
874
  msgctxt "fees admin"
875
  msgid "Duration"
876
  msgstr "Czas trwania"
877
 
878
+ # @ WPBDM
879
+ #: admin/fees.php:97
880
  msgctxt "fees admin"
881
  msgid "Images"
882
  msgstr "Obrazy"
883
 
884
+ # @ WPBDM
885
+ #: admin/fees.php:98
886
+ #, fuzzy
887
+ msgctxt "fees admin"
888
+ msgid "Featured/Sticky"
889
+ msgstr "Status wyróżnienia (naklejka)"
890
+
891
+ # @ WPBDM
892
+ #: admin/fees.php:102
893
+ #, fuzzy
894
+ msgctxt "fees admin"
895
+ msgid "Status"
896
+ msgstr "Status"
897
+
898
+ #: admin/fees.php:155
899
  msgctxt "fees admin"
900
+ msgid ""
901
+ "This is the default free plan for your directory. You can't delete it and "
902
+ "it's always free, but you can edit the name and other settings. It's only "
903
+ "available when the directory is in Free mode. You can always create other "
904
+ "fee plans, including ones for 0.00 (free) if you wish."
905
+ msgstr ""
906
 
907
+ # @ WPBDM
908
+ #: admin/fees.php:187
909
  msgctxt "fees admin"
910
  msgid "Edit"
911
  msgstr "Edytuj"
912
 
913
+ #: admin/fees.php:197
914
+ msgctxt "fees admin"
915
+ msgid "Disable"
916
+ msgstr ""
917
+
918
+ #: admin/fees.php:201
919
+ msgctxt "fees admin"
920
+ msgid "Enable"
921
+ msgstr ""
922
+
923
+ # @ WPBDM
924
+ #: admin/fees.php:205
925
  msgctxt "fees admin"
926
  msgid "Delete"
927
  msgstr "Usuń"
928
 
929
+ # @ WPBDM
930
+ #: admin/fees.php:226
931
  msgctxt "fees admin"
932
  msgid "Forever"
933
  msgstr "Na zawsze"
934
 
935
+ # @ WPBDM
936
+ #: admin/fees.php:227
 
937
  msgctxt "fees admin"
938
  msgid "%d day"
939
  msgid_plural "%d days"
941
  msgstr[1] "%d dni"
942
  msgstr[2] "%d dni"
943
 
944
+ # @ WPBDM
945
+ #: admin/fees.php:231
 
946
  msgctxt "fees admin"
947
  msgid "%d image"
948
  msgid_plural "%d images"
950
  msgstr[1] "%d obrazy"
951
  msgstr[2] "%d obrazów"
952
 
953
+ # @ WPBDM
954
+ #: admin/fees.php:236
955
  msgctxt "fees admin"
956
  msgid "All categories"
957
  msgstr "Wszystkie Kategorie"
958
 
959
+ #: admin/fees.php:250
960
+ msgctxt "fees admin"
961
+ msgid "Yes"
962
+ msgstr ""
963
+
964
+ # @ WPBDM
965
+ #: admin/fees.php:250
966
+ #, fuzzy
967
+ msgctxt "fees admin"
968
+ msgid "No"
969
+ msgstr "LIS"
970
+
971
+ # @ WPBDM
972
+ #: admin/fees.php:285
973
+ #, fuzzy
974
+ msgctxt "fees admin"
975
+ msgid "Fee enabled."
976
+ msgstr "Abonament usunięty "
977
+
978
+ # @ WPBDM
979
+ #: admin/fees.php:293
980
+ #, fuzzy
981
+ msgctxt "fees admin"
982
+ msgid "Fee disabled."
983
+ msgstr "Abonament usunięty "
984
+
985
+ # @ WPBDM
986
+ #: admin/fees.php:318
987
  msgctxt "fees order"
988
  msgid "Label"
989
  msgstr "Etykieta"
990
 
991
+ # @ WPBDM
992
+ #: admin/fees.php:319
993
  msgctxt "fees order"
994
  msgid "Amount"
995
  msgstr "Kwota"
996
 
997
+ # @ WPBDM
998
+ #: admin/fees.php:320
999
  msgctxt "fees order"
1000
  msgid "Duration"
1001
  msgstr "Czas trwania"
1002
 
1003
+ # @ WPBDM
1004
+ #: admin/fees.php:321
1005
  msgctxt "fees order"
1006
  msgid "Images"
1007
  msgstr "Obrazy"
1008
 
1009
+ # @ WPBDM
1010
+ #: admin/fees.php:322
1011
  msgctxt "fees order"
1012
  msgid "Custom Order"
1013
  msgstr "Niestandardowe sortowanie"
1014
 
1015
+ # @ WPBDM
1016
+ #: admin/fees.php:342
1017
  msgctxt "fees admin"
1018
  msgid "Fee updated."
1019
  msgstr "Abonament zaktualizowany"
1020
 
1021
+ # @ WPBDM
1022
+ #: admin/fees.php:367
1023
  msgctxt "fees admin"
1024
  msgid "Fee deleted."
1025
  msgstr "Abonament usunięty "
1026
 
1027
+ # @ WPBDM
1028
  #: admin/form-fields.php:9
 
1029
  msgctxt "form-fields admin"
1030
  msgid "form field"
1031
  msgstr "Pole formularza"
1032
 
1033
+ # @ WPBDM
1034
  #: admin/form-fields.php:10
 
1035
  msgctxt "form-fields admin"
1036
  msgid "form fields"
1037
  msgstr "Pola formularza"
1038
 
1039
+ # @ WPBDM
1040
  #: admin/form-fields.php:17
 
1041
  msgctxt "form-fields admin"
1042
  msgid "Order"
1043
  msgstr "Sortowanie"
1044
 
1045
+ # @ WPBDM
1046
  #: admin/form-fields.php:18
 
1047
  msgctxt "form-fields admin"
1048
  msgid "Label / Association"
1049
  msgstr "Etykieta/Przypisanie"
1050
 
1051
+ # @ WPBDM
1052
  #: admin/form-fields.php:19
 
1053
  msgctxt "form-fields admin"
1054
  msgid "Type"
1055
  msgstr "Rodzaj"
1056
 
1057
+ # @ WPBDM
1058
  #: admin/form-fields.php:20
 
1059
  msgctxt "form-fields admin"
1060
  msgid "Validator"
1061
  msgstr "Weryfikator"
1062
 
1063
+ # @ WPBDM
1064
  #: admin/form-fields.php:21
 
1065
  msgctxt "form-fields admin"
1066
  msgid "Field Attributes"
1067
  msgstr "Atrybuty pola"
1068
 
1069
+ # @ WPBDM
1070
  #: admin/form-fields.php:45
 
1071
  msgctxt "form-fields admin"
1072
  msgid "Edit"
1073
  msgstr "Edytuj"
1074
 
1075
+ # @ WPBDM
1076
  #: admin/form-fields.php:50
 
1077
  msgctxt "form-fields admin"
1078
  msgid "Delete"
1079
  msgstr "Usuń"
1080
 
1081
+ # @ WPBDM
1082
  #: admin/form-fields.php:76
 
1083
  msgctxt "form-fields admin"
1084
  msgid "Required"
1085
  msgstr "Wymagane"
1086
 
1087
+ # @ WPBDM
1088
  #: admin/form-fields.php:76
 
1089
  msgctxt "form-fields admin"
1090
  msgid "Optional"
1091
  msgstr "Opcjonalnie"
1092
 
1093
+ # @ WPBDM
1094
  #: admin/form-fields.php:80
 
1095
  msgctxt "form-fields admin"
1096
  msgid "This field value is shown in the excerpt view of a listing."
1097
  msgstr "Wartość pola jest pokazana w widoku wyciągu z oferty."
1098
 
1099
+ # @ WPBDM
1100
  #: admin/form-fields.php:81
 
1101
  msgctxt "form-fields admin"
1102
  msgid "In Excerpt"
1103
  msgstr "W wyciągu z oferty"
1104
 
1105
+ # @ WPBDM
1106
  #: admin/form-fields.php:86
 
1107
  msgctxt "form-fields admin"
1108
  msgid "This field value is shown in the single view of a listing."
1109
  msgstr "Wartość pola jest pokazana w widoku pojedynczej oferty."
1110
 
1111
+ # @ WPBDM
1112
  #: admin/form-fields.php:87
 
1113
  msgctxt "form-fields admin"
1114
  msgid "In Listing"
1115
  msgstr "W ofertach"
1116
 
1117
+ # @ WPBDM
1118
+ #: admin/form-fields.php:175
 
 
 
 
 
 
1119
  msgctxt "form-fields admin"
1120
  msgid "Form Preview"
1121
  msgstr "Podgląd formularza"
1122
 
1123
+ # @ WPBDM
1124
+ #: admin/form-fields.php:176
1125
  msgctxt "form-fields admin"
1126
  msgid "← Return to \"Manage Form Fields\""
1127
  msgstr "← wróć do \"Zarządzanie polami formularza\""
1128
 
1129
+ # @ WPBDM
1130
+ #: admin/form-fields.php:206
1131
  msgctxt "form-fields admin"
1132
  msgid "Form fields updated."
1133
  msgstr "Pola formularza zaktualizowane."
1134
 
1135
+ #: admin/form-fields.php:222
1136
+ msgctxt "form-fields admin"
1137
+ msgid ""
1138
+ "<b>Important</b>: Since the \"<a>Display email address fields publicly?</a>"
1139
+ "\" setting is disabled, display settings below will not be honored and this "
1140
+ "field will not be displayed on the frontend. If you want e-mail addresses to "
1141
+ "show on the frontend, you can <a>enable public display of e-mails</a>."
1142
+ msgstr ""
1143
+
1144
+ # @ WPBDM
1145
+ #: admin/form-fields.php:256
1146
  msgctxt "form-fields admin"
1147
  msgid "Field deleted."
1148
  msgstr "Pole usunięte."
1149
 
1150
+ # @ WPBDM
1151
+ #: admin/form-fields.php:277
1152
  msgctxt "form-fields admin"
1153
  msgid "Required fields created successfully."
1154
  msgstr "Pola wymagane zostały pomyślnie utworzone."
1155
 
1156
+ # @ WPBDM
1157
+ #: admin/form-fields.php:290
1158
+ #, fuzzy
1159
+ msgctxt "form-fields admin"
1160
+ msgid "Title"
1161
+ msgstr "Tytuł"
 
 
 
 
 
1162
 
1163
+ # @ WPBDM
1164
+ #: admin/form-fields.php:291
1165
+ #, fuzzy
1166
+ msgctxt "form-fields admin"
1167
+ msgid "Category"
1168
+ msgstr "Kategorie"
1169
 
1170
+ # @ WPBDM
1171
+ #: admin/form-fields.php:292
1172
+ #, fuzzy
1173
+ msgctxt "form-fields admin"
1174
+ msgid "Excerpt"
1175
+ msgstr "W wyciągu z oferty"
1176
+
1177
+ # @ WPBDM
1178
+ #: admin/form-fields.php:293
1179
+ #, fuzzy
1180
+ msgctxt "form-fields admin"
1181
+ msgid "Content"
1182
+ msgstr "Zawartość Posta"
1183
+
1184
+ # @ WPBDM
1185
+ #: admin/form-fields.php:294
1186
+ #, fuzzy
1187
+ msgctxt "form-fields admin"
1188
+ msgid "Tags"
1189
+ msgstr "Slug Tagów"
1190
+
1191
+ # @ WPBDM
1192
+ #: admin/form-fields.php:295
1193
+ #, fuzzy
1194
+ msgctxt "form-fields admin"
1195
+ msgid "Address"
1196
+ msgstr "Adres e-mail:"
1197
+
1198
+ # @ WPBDM
1199
+ #: admin/form-fields.php:296
1200
+ #, fuzzy
1201
+ msgctxt "form-fields admin"
1202
+ msgid "City"
1203
+ msgstr "Miasto:"
1204
+
1205
+ # @ WPBDM
1206
+ #: admin/form-fields.php:297
1207
+ #, fuzzy
1208
+ msgctxt "form-fields admin"
1209
+ msgid "State"
1210
+ msgstr "Województwo:"
1211
+
1212
+ #: admin/form-fields.php:298
1213
+ msgctxt "form-fields admin"
1214
+ msgid "ZIP Code"
1215
+ msgstr ""
1216
+
1217
+ # @ WPBDM
1218
+ #: admin/form-fields.php:299
1219
+ #, fuzzy
1220
+ msgctxt "form-fields admin"
1221
+ msgid "FAX Number"
1222
+ msgstr "Numer karty kredytowej:"
1223
+
1224
+ # @ WPBDM
1225
+ #: admin/form-fields.php:300
1226
+ #, fuzzy
1227
+ msgctxt "form-fields admin"
1228
+ msgid "Phone Number"
1229
+ msgstr "Telefon"
1230
+
1231
+ # @ WPBDM
1232
+ #: admin/form-fields.php:301
1233
+ #, fuzzy
1234
+ msgctxt "form-fields admin"
1235
+ msgid "Ratings Field"
1236
+ msgstr "Pola ofert"
1237
+
1238
+ #: admin/form-fields.php:302
1239
+ msgctxt "form-fields admin"
1240
+ msgid "Twitter"
1241
+ msgstr ""
1242
+
1243
+ #: admin/form-fields.php:303
1244
+ msgctxt "form-fields admin"
1245
+ msgid "Website"
1246
+ msgstr ""
1247
+
1248
+ # @ WPBDM
1249
+ #: admin/form-fields.php:324
1250
+ #, fuzzy
1251
+ msgctxt "form-fields admin"
1252
+ msgid "Tags updated."
1253
+ msgstr "Ustawienia zapisane"
1254
+
1255
+ # @ WPBDM
1256
+ #: admin/listing-metabox.php:11
1257
+ msgctxt "admin"
1258
+ msgid "General"
1259
+ msgstr "Główne"
1260
+
1261
+ # @ WPBDM
1262
+ #: admin/listing-metabox.php:12
1263
+ msgctxt "admin"
1264
+ msgid "Fee Details"
1265
+ msgstr "Szczegóły abonamentu"
1266
+
1267
+ # @ WPBDM
1268
+ #: admin/listing-metabox.php:13
1269
+ msgctxt "admin"
1270
+ msgid "Transactions"
1271
+ msgstr "Transakcje"
1272
+
1273
+ # @ WPBDM
1274
+ #: admin/listing-metabox.php:42
1275
+ msgctxt "admin infometabox"
1276
+ msgid "General Info"
1277
+ msgstr "Główne informacje"
1278
 
1279
  #: admin/listing-metabox.php:44
1280
+ msgctxt "admin infometabox"
1281
+ msgid "Access Key"
1282
+ msgstr ""
1283
+
1284
+ # @ WPBDM
1285
+ #: admin/listing-metabox.php:46
1286
  msgctxt "admin infometabox"
1287
  msgid "Total Listing Cost"
1288
  msgstr "Całkowity koszt oferty"
1289
 
1290
+ # @ WPBDM
1291
+ #: admin/listing-metabox.php:48
1292
  msgctxt "admin infometabox"
1293
  msgid "Payment Status"
1294
  msgstr "Status płatności"
1295
 
1296
+ # @ WPBDM
1297
+ #: admin/listing-metabox.php:52
1298
  msgctxt "admin infometabox"
1299
  msgid "Featured (Sticky) Status"
1300
  msgstr "Status wyróżnienia (naklejka)"
1301
 
1302
+ # @ WPBDM
1303
+ #: admin/listing-metabox.php:60
1304
  msgctxt "admin metabox"
1305
  msgid "Pending Upgrade"
1306
  msgstr "Oczekujące na zmianę statusu"
1307
 
1308
+ # @ WPBDM
1309
+ #: admin/listing-metabox.php:83
1310
  msgctxt "admin infometabox"
1311
  msgid "CSV Import Sequence ID"
1312
  msgstr "ID sekwencji importu CSV"
1313
 
1314
+ # @ WPBDM
1315
+ #: admin/listing-metabox.php:94
1316
  msgctxt "admin infometabox"
1317
  msgid "Mark listing as Paid"
1318
  msgstr "Oznacz ofertę jako opłaconą"
1319
 
1320
+ # @ WPBDM
1321
+ #: admin/page-debug.php:16
1322
  msgctxt "debug-info"
1323
  msgid "BD Info"
1324
  msgstr "Katalog Firm Informacje"
1325
 
1326
+ # @ WPBDM
1327
  #: admin/page-debug.php:28
1328
+ #, fuzzy
1329
+ msgid "Missing tables: %s"
1330
+ msgstr "Oferty otagowane: %s"
1331
+
1332
+ # @ WPBDM
1333
+ #: admin/page-debug.php:29
1334
  msgctxt "debug-info"
1335
  msgid "OK"
1336
  msgstr "Wszystko w porządku"
1337
 
1338
+ # @ WPBDM
1339
+ #: admin/page-debug.php:37
1340
  msgctxt "debug-info"
1341
  msgid "BD Options"
1342
  msgstr "Katalog Firm Opcje"
1343
 
1344
+ # @ WPBDM
1345
+ #: admin/page-debug.php:50
1346
  msgctxt "debug-info"
1347
  msgid "Environment"
1348
  msgstr "Środowisko"
1349
 
1350
+ #: admin/page-debug.php:72
1351
+ msgctxt "debug info"
1352
+ msgid "Test SSL setup..."
1353
+ msgstr ""
1354
+
1355
+ # @ WPBDM
1356
  #: admin/templates/csv-export.tpl.php:9
 
1357
  msgctxt "admin csv-export"
1358
+ msgid ""
1359
+ "An unknown error occurred during the export. Please make sure you have "
1360
+ "enough free disk space and memory available to PHP. Check your error logs "
1361
+ "for details."
1362
+ msgstr ""
1363
+ "Wystąpił nieznany błąd podczas eksportu. Upewnij się, że masz wystarczająco "
1364
+ "dużo wolnego miejsca na dysku i pamięci dostępnej dla PHP. Sprawdź logi "
1365
+ "błędów aby uzyskać szczegółowe informacje."
1366
 
1367
+ # @ WPBDM
1368
  #: admin/templates/csv-export.tpl.php:18
 
1369
  msgctxt "admin csv-export"
1370
+ msgid ""
1371
+ "Please note that the export process is a resource intensive task. If your "
1372
+ "export does not succeed try disabling other plugins first and/or increasing "
1373
+ "the values of the 'memory_limit' and 'max_execution_time' directives in your "
1374
+ "server's php.ini configuration file."
1375
+ msgstr ""
1376
+ "Należy pamiętać, że proces eksportu wykonuje znaczną ilość zadań. Jeśli "
1377
+ "eksport się nie uda, spróbuj najpierw wyłączyć inne wtyczki i / lub "
1378
+ "zwiększyć wartości dla \"memory_limit\" i dyrektyw \"max_execution_time\" w "
1379
+ "pliku konfiguracyjnym php.ini Twojego serwera."
1380
 
1381
+ # @ WPBDM
1382
  #: admin/templates/csv-export.tpl.php:30
 
1383
  msgctxt "admin csv-export"
1384
  msgid "Export Configuration"
1385
  msgstr "Konfiguracja eksportu"
1386
 
1387
+ # @ WPBDM
1388
  #: admin/templates/csv-export.tpl.php:33
 
1389
  msgctxt "admin csv-export"
1390
  msgid "Export settings"
1391
  msgstr "Ustawienia eksportu"
1392
 
1393
+ # @ WPBDM
1394
  #: admin/templates/csv-export.tpl.php:37
 
1395
  msgctxt "admin csv-export"
1396
  msgid "Which listings to export?"
1397
  msgstr "Które oferty chcesz wyeksportować?"
1398
 
1399
+ # @ WPBDM
1400
  #: admin/templates/csv-export.tpl.php:41
 
1401
  msgctxt "admin csv-export"
1402
  msgid "All"
1403
  msgstr "Wszystkie"
1404
 
1405
+ # @ WPBDM
1406
  #: admin/templates/csv-export.tpl.php:42
 
1407
  msgctxt "admin csv-export"
1408
  msgid "Active Only"
1409
  msgstr "Tylko aktywne"
1410
 
1411
+ # @ WPBDM
1412
  #: admin/templates/csv-export.tpl.php:43
 
1413
  msgctxt "admin csv-export"
1414
  msgid "Active + Pending Renewal"
1415
  msgstr "Tylko aktywne i oczekujące na odświeżenie "
1416
 
1417
+ # @ WPBDM
1418
  #: admin/templates/csv-export.tpl.php:49
 
1419
  msgctxt "admin csv-export"
1420
  msgid "Export images?"
1421
  msgstr "Eksportować obrazy?"
1422
 
1423
+ # @ WPBDM
1424
  #: admin/templates/csv-export.tpl.php:54
 
1425
  msgctxt "admin csv-export"
1426
  msgid "Export images"
1427
  msgstr "Eksport obrazów"
1428
 
1429
+ # @ WPBDM
1430
  #: admin/templates/csv-export.tpl.php:56
 
1431
  msgctxt "admin csv-export"
1432
+ msgid ""
1433
+ "When checked, instead of just a CSV file a ZIP file will be generated with "
1434
+ "both a CSV file and listing images."
1435
+ msgstr ""
1436
+ "Gdy zaznaczone, zamiast tylko pliku CSV, będzie generowany plik ZIP zarówno "
1437
+ "z pliku CSV i obrazów ofert."
1438
 
1439
+ # @ WPBDM
1440
  #: admin/templates/csv-export.tpl.php:62
 
1441
  msgctxt "admin csv-export"
1442
  msgid "Additional metadata to export:"
1443
  msgstr "Dodatkowe metadane do eksportu:"
1444
 
1445
+ # @ WPBDM
1446
+ #: admin/templates/csv-export.tpl.php:67
1447
+ msgctxt "admin csv-export"
1448
+ msgid "Include unique IDs for each listing (sequence_id column)."
1449
+ msgstr "Zawiera unikalne ID dla każdej z ofert (sekwencyjne_id kolumny)."
1450
+
1451
+ # @ WPBDM
1452
+ #: admin/templates/csv-export.tpl.php:69
1453
+ msgctxt "admin csv-export"
1454
+ msgid ""
1455
+ "If you plan to re-import the listings into BD and don't want new ones "
1456
+ "created, select this option!"
1457
+ msgstr ""
1458
+ "Jeśli planujesz re-import ofert do Katalogu Firm i nie chcesz aby zostały "
1459
+ "dodane nowe oferty - zaznacz tą opcję."
1460
+
1461
+ # @ WPBDM
1462
  #: admin/templates/csv-export.tpl.php:75
 
1463
  msgctxt "admin csv-export"
1464
  msgid "Author information (username)"
1465
  msgstr "Informacje o Autorze (nazwa użytkownika)"
1466
 
1467
+ # @ WPBDM
1468
  #: admin/templates/csv-export.tpl.php:80
 
1469
  msgctxt "admin csv-export"
1470
  msgid "Sticky/featured status"
1471
  msgstr "Naklejka / Wyróżniony status"
1472
 
1473
+ # @ WPBDM
1474
  #: admin/templates/csv-export.tpl.php:85
 
1475
  msgctxt "admin csv-export"
1476
  msgid "Listing expiration date"
1477
  msgstr "Data zakończenia emisji oferty"
1478
 
1479
+ # @ WPBDM
1480
  #: admin/templates/csv-export.tpl.php:90
 
1481
  msgctxt "admin csv-export"
1482
  msgid "CSV File Settings"
1483
  msgstr "Ustawienia pliku CSV"
1484
 
1485
+ # @ WPBDM
1486
  #: admin/templates/csv-export.tpl.php:94
 
1487
  msgctxt "admin csv-export"
1488
  msgid "Column Separator"
1489
  msgstr "Separator kolumn"
1490
 
1491
+ # @ default
1492
+ # @ WPBDM
1493
+ #: admin/templates/csv-export.tpl.php:94 admin/templates/csv-export.tpl.php:105
1494
+ #: admin/templates/csv-export.tpl.php:116 admin/templates/csv-import.tpl.php:43
1495
  #: admin/templates/csv-import.tpl.php:109
1496
  #: admin/templates/csv-import.tpl.php:120
1497
  #: admin/templates/csv-import.tpl.php:131
1498
  #: admin/templates/csv-import.tpl.php:158
 
 
1499
  msgctxt "admin forms"
1500
  msgid "required"
1501
  msgstr "Wymagane"
1502
 
1503
+ # @ WPBDM
1504
  #: admin/templates/csv-export.tpl.php:105
 
1505
  msgctxt "admin csv-export"
1506
  msgid "Image Separator"
1507
  msgstr "Separator obrazu"
1508
 
1509
+ # @ WPBDM
1510
  #: admin/templates/csv-export.tpl.php:116
 
1511
  msgctxt "admin csv-export"
1512
  msgid "Category Separator"
1513
  msgstr "Separator kategorii"
1514
 
1515
+ # @ WPBDM
1516
  #: admin/templates/csv-export.tpl.php:128
 
1517
  msgctxt "admin csv-export"
1518
  msgid "Export Listings"
1519
  msgstr "Eksport ofert"
1520
 
1521
+ # @ WPBDM
1522
  #: admin/templates/csv-export.tpl.php:134
 
1523
  msgctxt "admin csv-export"
1524
  msgid "Export in Progress..."
1525
  msgstr "Wykonuję eksport....."
1526
 
1527
+ # @ WPBDM
1528
  #: admin/templates/csv-export.tpl.php:135
 
1529
  msgctxt "admin csv-export"
1530
+ msgid ""
1531
+ "Your export file is being prepared. Please <u>do not leave</u> this page "
1532
+ "until the export finishes."
1533
+ msgstr ""
1534
+ "Plik eksportu jest przygotowywany. Proszę <u> nie opuszczaj </ u> tej strony "
1535
+ "aż do zakończenia działania eksportu."
1536
 
1537
+ # @ WPBDM
1538
  #: admin/templates/csv-export.tpl.php:138
 
1539
  msgctxt "admin csv-export"
1540
  msgid "No. of listings:"
1541
  msgstr "Ilość ofert:"
1542
 
1543
+ # @ WPBDM
1544
  #: admin/templates/csv-export.tpl.php:140
 
1545
  msgctxt "admin csv-export"
1546
  msgid "Approximate export file size:"
1547
  msgstr "Prawdopodobna wielkość wyeksportowanego pliku:"
1548
 
1549
+ # @ WPBDM
1550
  #: admin/templates/csv-export.tpl.php:147
 
1551
  msgctxt "admin csv-export"
1552
  msgid "Cancel Export"
1553
  msgstr "Anuluj eksport"
1554
 
1555
+ # @ default
1556
  #: admin/templates/csv-export.tpl.php:152
 
1557
  msgctxt "admin csv-export"
1558
  msgid "Export Complete"
1559
  msgstr "Eksport zakończony"
1560
 
1561
+ # @ WPBDM
1562
  #: admin/templates/csv-export.tpl.php:153
 
1563
  msgctxt "admin csv-export"
1564
+ msgid ""
1565
+ "Your export file has been successfully created and it is now ready for "
1566
+ "download."
1567
  msgstr "Plik eksportu został utworzony i jest już gotowy do pobrania."
1568
 
1569
+ # @ WPBDM
1570
  #: admin/templates/csv-export.tpl.php:156
 
 
1571
  msgctxt "admin csv-export"
1572
  msgid "Download %s (%s)"
1573
  msgstr "Pobierz %s (%s)"
1574
 
1575
+ # @ WPBDM
1576
  #: admin/templates/csv-export.tpl.php:162
 
1577
  msgctxt "admin csv-export"
1578
+ msgid ""
1579
+ "Click \"Cleanup\" once the file has been downloaded in order to remove all "
1580
+ "temporary data created by Business Directory during the export process."
1581
+ msgstr ""
1582
+ "Kliknij \"Oczyszczanie\" po pobraniu pliku w celu usunięcia wszystkich "
1583
+ "danych tymczasowych utworzonych przez Katalog Firm podczas procesu eksportu."
1584
 
1585
+ # @ WPBDM
1586
  #: admin/templates/csv-export.tpl.php:163
 
1587
  msgctxt "admin csv-export"
1588
  msgid "Cleanup"
1589
  msgstr "Oczyszczanie"
1590
 
1591
+ # @ default
1592
  #: admin/templates/csv-export.tpl.php:168
 
1593
  msgctxt "admin csv-export"
1594
  msgid "Export Canceled"
1595
  msgstr "Eksport anulowany"
1596
 
1597
+ # @ WPBDM
1598
  #: admin/templates/csv-export.tpl.php:169
 
1599
  msgctxt "admin csv-export"
1600
  msgid "The export has been canceled."
1601
  msgstr "Eksport został anulowany."
1602
 
1603
+ # @ WPBDM
1604
  #: admin/templates/csv-export.tpl.php:170
 
1605
  msgctxt "admin csv-export"
1606
  msgid "← Return to CSV Export"
1607
  msgstr "← Powrót do CSV Eksport"
1608
 
1609
+ # @ WPBDM
1610
+ #: admin/templates/csv-import-progress.tpl.php:6
1611
+ msgctxt "admin csv-import"
1612
+ msgid "A fatal error occurred during the import. The reason given was: \"%s\"."
1613
+ msgstr "Podczas importu wystąpił problem, którego powodem był \"%s\"."
1614
+
1615
+ # @ WPBDM
1616
+ #: admin/templates/csv-import-progress.tpl.php:10
1617
+ msgctxt "admin csv-import"
1618
+ msgid ""
1619
+ "A fatal error occurred during the import. If connection wasn't lost during "
1620
+ "the import, please make sure that you have enough free disk space and memory "
1621
+ "available to PHP. Check your error logs for details."
1622
+ msgstr ""
1623
+ "Wystąpił błąd krytyczny podczas importu. Jeśli połączenie nie zostało "
1624
+ "utracone podczas importu, upewnij się, że masz wystarczająco dużo wolnego "
1625
+ "miejsca na dysku i pamięci dostępnej dla PHP. Sprawdź logi błędów aby poznać "
1626
+ "szczegóły."
1627
+
1628
+ # @ WPBDM
1629
+ #: admin/templates/csv-import-progress.tpl.php:13
1630
+ #: admin/templates/csv-import-progress.tpl.php:20
1631
+ msgctxt "admin csv-import"
1632
+ msgid "← Return to CSV Import"
1633
+ msgstr "← Powrót do importu CSV"
1634
+
1635
+ # @ WPBDM
1636
+ #: admin/templates/csv-import-progress.tpl.php:18
1637
+ msgctxt "admin csv-import"
1638
+ msgid "Import Canceled"
1639
+ msgstr "Import anulowany"
1640
+
1641
+ # @ WPBDM
1642
+ #: admin/templates/csv-import-progress.tpl.php:19
1643
+ msgctxt "admin csv-import"
1644
+ msgid "The import has been canceled."
1645
+ msgstr "Import został anulowany"
1646
+
1647
+ # @ admin csv-import
1648
+ #: admin/templates/csv-import-progress.tpl.php:26
1649
+ msgid "Import Progress"
1650
+ msgstr "Proces Importu"
1651
+
1652
+ # @ WPBDM
1653
+ #: admin/templates/csv-import-progress.tpl.php:29
1654
+ msgctxt "admin csv-import"
1655
+ msgid "Files"
1656
+ msgstr "Pliki"
1657
+
1658
+ # @ WPBDM
1659
+ #: admin/templates/csv-import-progress.tpl.php:32
1660
+ msgctxt "admin csv-import"
1661
+ msgid "Rows in file"
1662
+ msgstr "Wierszy w pliku"
1663
+
1664
+ # @ WPBDM
1665
+ #: admin/templates/csv-import-progress.tpl.php:35
1666
+ msgctxt "admin csv-import"
1667
+ msgid "Progress"
1668
+ msgstr "Postęp"
1669
+
1670
+ # @ WPBDM
1671
+ #: admin/templates/csv-import-progress.tpl.php:39
1672
+ msgctxt "admin csv-import"
1673
+ msgid "Import has not started. Click \"Start Import\" to begin."
1674
+ msgstr "Import nie zostal uruchomiony. Kliknij \"Start Import\" aby zacząć."
1675
+
1676
+ # @ WPBDM
1677
+ #: admin/templates/csv-import-progress.tpl.php:40
1678
+ msgctxt "admin csv-import"
1679
+ msgid "Importing CSV file..."
1680
+ msgstr "Importowanie pliku CSV....."
1681
+
1682
+ # @ WPBDM
1683
+ #: admin/templates/csv-import-progress.tpl.php:46
1684
+ msgctxt "admin csv-import"
1685
+ msgid "Start Import"
1686
+ msgstr "Start Import"
1687
+
1688
+ # @ WPBDM
1689
+ #: admin/templates/csv-import-progress.tpl.php:47
1690
+ msgctxt "admin csv-import"
1691
+ msgid "Cancel Import"
1692
+ msgstr "Anuluj import"
1693
+
1694
+ # @ WPBDM
1695
+ #: admin/templates/csv-import-progress.tpl.php:54
1696
+ msgctxt "admin csv-import"
1697
+ msgid "Import finished"
1698
+ msgstr "Import zakończony"
1699
+
1700
+ # @ WPBDM
1701
+ #: admin/templates/csv-import-progress.tpl.php:57
1702
+ msgctxt "admin csv-import"
1703
+ msgid "Import was completed successfully."
1704
+ msgstr "Import zakończony pełnym sukcesem."
1705
+
1706
+ # @ WPBDM
1707
+ #: admin/templates/csv-import-progress.tpl.php:61
1708
+ msgctxt "admin csv-import"
1709
+ msgid "Import was completed but some rows were rejected."
1710
+ msgstr "Import został zakończony, ale niektóre wiersze zostały odrzucone."
1711
+
1712
+ # @ WPBDM
1713
+ #: admin/templates/csv-import-progress.tpl.php:64
1714
+ msgctxt "admin csv-import"
1715
+ msgid "Import Summary"
1716
+ msgstr "Podsumowanie Importu"
1717
+
1718
+ # @ WPBDM
1719
+ #: admin/templates/csv-import-progress.tpl.php:66
1720
+ msgctxt "admin csv-import"
1721
+ msgid "Rows in file:"
1722
+ msgstr "Wierszy w pliku"
1723
+
1724
+ # @ WPBDM
1725
+ #: admin/templates/csv-import-progress.tpl.php:69
1726
+ msgctxt "admin csv-import"
1727
+ msgid "Imported rows:"
1728
+ msgstr "Zaimportowane wiersze"
1729
+
1730
+ # @ WPBDM
1731
+ #: admin/templates/csv-import-progress.tpl.php:72
1732
+ msgctxt "admin csv-import"
1733
+ msgid "Rejected rows:"
1734
+ msgstr "Odrzucone wiersze :"
1735
+
1736
+ # @ WPBDM
1737
+ #: admin/templates/csv-import-progress.tpl.php:77
1738
+ msgctxt "admin csv-import"
1739
+ msgid "Import Warnings"
1740
+ msgstr "Ostrzeżenie"
1741
+
1742
+ # @ WPBDM
1743
+ #: admin/templates/csv-import-progress.tpl.php:80
1744
+ msgctxt "admin csv-import"
1745
+ msgid "Line #"
1746
+ msgstr "Liczba Lini"
1747
+
1748
+ # @ WPBDM
1749
+ #: admin/templates/csv-import-progress.tpl.php:81
1750
+ msgctxt "admin csv-import"
1751
+ msgid "Line"
1752
+ msgstr "Linia"
1753
+
1754
+ # @ WPBDM
1755
+ #: admin/templates/csv-import-progress.tpl.php:82
1756
+ msgctxt "admin csv-import"
1757
+ msgid "Warning"
1758
+ msgstr "Ostrzeżenie"
1759
+
1760
+ # @ WPBDM
1761
+ #: admin/templates/csv-import.tpl.php:12 admin/templates/csv-import.tpl.php:233
1762
  msgctxt "admin csv-import"
1763
  msgid "Help"
1764
  msgstr "Pomoc"
1765
 
1766
+ # @ WPBDM
1767
  #: admin/templates/csv-import.tpl.php:13
 
1768
  msgctxt "admin csv-import"
1769
  msgid "See an example CSV import file"
1770
  msgstr "Zobacz przykład importowanego pliku CSV"
1771
 
1772
+ # @ WPBDM
1773
+ #: admin/templates/csv-import.tpl.php:21
1774
+ msgctxt "admin csv-import"
1775
+ msgid "Here, you can import data into your directory using the CSV format."
1776
+ msgstr "Tutaj możesz zaimportować dane używając plików CSV."
1777
+
1778
+ # @ WPBDM
1779
+ #: admin/templates/csv-import.tpl.php:29
1780
+ msgctxt "admin csv-import"
1781
+ msgid ""
1782
+ "We strongly recommend reading our <a>CSV import documentation</a> first to "
1783
+ "help you do things in the right order."
1784
+ msgstr ""
1785
+ "Zalecamy (poważnie) zapoznanie się z naszą <a> dokumentacją dotyczącą "
1786
+ "importowania plików CSV</a>, aby wszystko przebiegło pomyślnie i w "
1787
+ "odpowiedniej kolejności."
1788
+
1789
+ # @ default
1790
  #: admin/templates/csv-import.tpl.php:38
 
1791
  msgctxt "admin csv-import"
1792
  msgid "Import Files"
1793
  msgstr "Import plików"
1794
 
1795
+ # @ WPBDM
1796
  #: admin/templates/csv-import.tpl.php:43
 
1797
  msgctxt "admin csv-import"
1798
  msgid "CSV File"
1799
  msgstr "Plik CSV"
1800
 
1801
+ # @ WPBDM
1802
+ #: admin/templates/csv-import.tpl.php:55 admin/templates/csv-import.tpl.php:86
1803
+ msgctxt "admin csv-import"
1804
+ msgid "... or <a>select a file uploaded to the imports folder</a>"
1805
+ msgstr "... albo <a>wybierz plik, który chcesz załadować do folderu</a>"
1806
+
1807
+ # @ WPBDM
1808
+ #: admin/templates/csv-import.tpl.php:65 admin/templates/csv-import.tpl.php:96
1809
+ msgctxt "admin csv-import"
1810
+ msgid "(Upload new file)"
1811
+ msgstr "(załaduj nowy plik)"
1812
+
1813
+ # @ WPBDM
1814
  #: admin/templates/csv-import.tpl.php:74
 
1815
  msgctxt "admin csv-import"
1816
  msgid "ZIP file containing images"
1817
  msgstr "Plik ZIP zawierający zdjęcia"
1818
 
1819
+ # @ WPBDM
1820
  #: admin/templates/csv-import.tpl.php:105
 
1821
  msgctxt "admin csv-import"
1822
  msgid "CSV File Settings"
1823
  msgstr "Ustawienia pliku CSV"
1824
 
1825
+ # @ WPBDM
1826
  #: admin/templates/csv-import.tpl.php:109
 
1827
  msgctxt "admin csv-import"
1828
  msgid "Column Separator"
1829
  msgstr "Separator kolumn"
1830
 
1831
+ # @ WPBDM
1832
  #: admin/templates/csv-import.tpl.php:120
 
1833
  msgctxt "admin csv-import"
1834
  msgid "Image Separator"
1835
  msgstr "Separator obrazu"
1836
 
1837
+ # @ WPBDM
1838
  #: admin/templates/csv-import.tpl.php:131
 
1839
  msgctxt "admin csv-import"
1840
  msgid "Category Separator"
1841
  msgstr "Separator kategorii"
1842
 
1843
+ # @ WPBDM
1844
  #: admin/templates/csv-import.tpl.php:142
 
1845
  msgctxt "admin csv-import"
1846
  msgid "Import settings"
1847
  msgstr "Ustawienia importu"
1848
 
1849
+ # @ WPBDM
1850
+ #: admin/templates/csv-import.tpl.php:146
1851
+ msgctxt "admin csv-import"
1852
+ msgid "Post status of imported listings"
1853
+ msgstr "Status dla zaimportowanych plików"
1854
+
1855
+ # @ WPBDM
1856
  #: admin/templates/csv-import.tpl.php:158
 
1857
  msgctxt "admin csv-import"
1858
  msgid "Missing categories handling"
1859
  msgstr "Brakująca obsługa kategorii "
1860
 
1861
+ # @ WPBDM
1862
  #: admin/templates/csv-import.tpl.php:163
 
1863
  msgctxt "admin csv-import"
1864
  msgid "Auto-create categories"
1865
  msgstr "Automatyczne tworzenie kategorii"
1866
 
1867
+ # @ WPBDM
1868
  #: admin/templates/csv-import.tpl.php:166
 
1869
  msgctxt "admin csv-import"
1870
  msgid "Generate errors when a category is not found"
1871
  msgstr "Generować błędy gdy kategorii nie znaleziono"
1872
 
1873
  #: admin/templates/csv-import.tpl.php:171
1874
+ msgctxt "admin csv-import"
1875
+ msgid "Keep existing listing images?"
1876
+ msgstr ""
1877
+
1878
+ # @ WPBDM
1879
+ #: admin/templates/csv-import.tpl.php:176
1880
+ #, fuzzy
1881
+ msgctxt "admin csv-import"
1882
+ msgid "Keep existing images."
1883
+ msgstr "Obrazy"
1884
+
1885
+ #: admin/templates/csv-import.tpl.php:177
1886
+ msgctxt "admin csv-import"
1887
+ msgid "Appends new images while keeping current ones."
1888
+ msgstr ""
1889
+
1890
+ # @ WPBDM
1891
+ #: admin/templates/csv-import.tpl.php:182
1892
  msgctxt "admin csv-import"
1893
  msgid "Assign listings to a user?"
1894
  msgstr "Przypisać oferty do użytkownika?"
1895
 
1896
+ # @ WPBDM
1897
+ #: admin/templates/csv-import.tpl.php:188
1898
  msgctxt "admin csv-import"
1899
  msgid "Assign listings to a user."
1900
  msgstr "Przypisz oferty do użytkownika."
1901
 
1902
+ # @ WPBDM
1903
+ #: admin/templates/csv-import.tpl.php:193
1904
+ #, fuzzy
1905
+ msgctxt "admin csv-import"
1906
+ msgid "Use a default user for listings?"
1907
+ msgstr "Użyj domyślnego obrazu dla ofert, które nie posiadają żadnych obrazów?"
1908
+
1909
+ # @ WPBDM
1910
+ #: admin/templates/csv-import.tpl.php:199
1911
+ #, fuzzy
1912
+ msgctxt "admin csv-import"
1913
+ msgid ""
1914
+ "Select a default user to be used if the username column is not present in "
1915
+ "the CSV file."
1916
+ msgstr ""
1917
+ "Ten użytkownik będzie używany, jeśli kolumna \"nazwa użytkownika\" nie jest "
1918
+ "obecny w pliku CSV."
1919
+
1920
+ # @ WPBDM
1921
+ #: admin/templates/csv-import.tpl.php:204
1922
  msgctxt "admin csv-import"
1923
  msgid "Default listing user"
1924
  msgstr "Domyślny użytkownik oferty"
1925
 
1926
+ # @ WPBDM
1927
+ #: admin/templates/csv-import.tpl.php:210
1928
  msgctxt "admin csv-import"
1929
+ msgid ""
1930
+ "This user will be used if the username column is not present in the CSV file."
1931
+ msgstr ""
1932
+ "Ten użytkownik będzie używany, jeśli kolumna \"nazwa użytkownika\" nie jest "
1933
+ "obecny w pliku CSV."
1934
 
1935
+ # @ WPBDM
1936
+ #: admin/templates/csv-import.tpl.php:215
1937
  msgctxt "admin csv-import"
1938
+ msgid "Disable e-mail notifications during import?"
1939
+ msgstr "Wyłączyć powiadomienia e-mail podczas importu?"
1940
+
1941
+ # @ WPBDM
1942
+ #: admin/templates/csv-import.tpl.php:220
1943
+ msgctxt "admin csv-import"
1944
+ msgid "Disable e-mail notifications."
1945
+ msgstr "Wyłącz powiadomienia e-mail."
1946
 
1947
+ # @ WPBDM
1948
+ #: admin/templates/csv-import.tpl.php:226
1949
  msgctxt "admin csv-import"
1950
  msgid "Test Import"
1951
  msgstr "Test importu"
1952
 
1953
+ # @ WPBDM
1954
+ #: admin/templates/csv-import.tpl.php:227
1955
  msgctxt "admin csv-import"
1956
  msgid "Import Listings"
1957
  msgstr "Import ofert"
1958
 
1959
+ # @ WPBDM
1960
+ #: admin/templates/csv-import.tpl.php:235
 
1961
  msgctxt "admin csv-import"
1962
+ msgid ""
1963
+ "The following are the valid header names to be used in the CSV file. "
1964
+ "Multivalued fields (such as category or tags) can appear multiple times in "
1965
+ "the file. Click <a href=\"%s\">\"See an example CSV import file\"</a> to see "
1966
+ "how an import file should look like."
1967
+ msgstr ""
1968
+ "Proszę się upewnić, że wartości są prawidłowe dla nagłówków w pliku CSV. "
1969
+ "Pola wielowartościowe (takie jak kategoria lub tagi) może pojawić się wiele "
1970
+ "razy w pliku. Kliknij <a href=\"%s\">\"Zobacz przykładowy plik importu CSV"
1971
+ "\"</a> aby zobaczyć, jak powinien wyglądać plik importu."
1972
 
1973
+ # @ WPBDM
1974
+ #: admin/templates/csv-import.tpl.php:242
1975
  msgctxt "admin csv-import"
1976
  msgid "Header name/label"
1977
  msgstr "Nagłówek/Etykieta"
1978
 
1979
+ # @ WPBDM
1980
+ #: admin/templates/csv-import.tpl.php:243
1981
  msgctxt "admin csv-import"
1982
  msgid "Field"
1983
  msgstr "Pole"
1984
 
1985
+ # @ WPBDM
1986
+ #: admin/templates/csv-import.tpl.php:244
1987
  msgctxt "admin csv-import"
1988
  msgid "Type"
1989
  msgstr "Rodzaj"
1990
 
1991
+ # @ WPBDM
1992
+ #: admin/templates/csv-import.tpl.php:245
1993
  msgctxt "admin csv-import"
1994
  msgid "Required?"
1995
  msgstr "Wymagane?"
1996
 
1997
+ # @ WPBDM
1998
+ #: admin/templates/csv-import.tpl.php:246
1999
  msgctxt "admin csv-import"
2000
  msgid "Multivalued?"
2001
  msgstr "Wielowartościowe?"
2002
 
2003
+ # @ WPBDM
2004
+ #: admin/templates/csv-import.tpl.php:268
2005
  msgctxt "admin csv-import"
2006
  msgid "Semicolon separated list of listing images (from the ZIP file)"
2007
  msgstr "Lista rozdzielonych średnikami obrazów oferty (z pliku ZIP)"
2008
 
2009
+ # @ WPBDM
2010
+ #: admin/templates/csv-import.tpl.php:275
2011
  msgctxt "admin csv-import"
2012
  msgid "Listing author's username"
2013
  msgstr "Autor oferty - Nazwa Użytkownika"
2014
 
2015
+ # @ WPBDM
2016
+ #: admin/templates/csv-import.tpl.php:282
2017
  msgctxt "admin csv-import"
2018
+ msgid ""
2019
+ "Internal Sequence ID used to allow listing updates from external sources."
2020
+ msgstr ""
2021
+ "Wewnętrzny identyfikator sekwencji wykorzystywany w celu umożliwienia "
2022
+ "ofercie aktualizacji ze źródeł zewnętrznych."
2023
 
2024
+ # @ WPBDM
2025
+ #: admin/templates/csv-import.tpl.php:289
2026
  msgctxt "admin csv-import"
2027
+ msgid ""
2028
+ "Date of listing expiration formatted as YYYY-MM-DD. Use this column when "
2029
+ "adding or updating listings from external sources."
2030
+ msgstr ""
2031
+ "Data zakończenia ofert sformatowano jako YYYY-MM-DD. Użyj tej kolumny "
2032
+ "podczas dodawania lub aktualizowania oferty ze źródeł zewnętrznych."
2033
+
2034
+ # @ WPBDM
2035
  #: admin/templates/debug-info.tpl.php:5
 
2036
  msgctxt "debug-info"
2037
+ msgid ""
2038
+ "The following information can help BD developers debug possible problems "
2039
+ "with your setup."
2040
+ msgstr ""
2041
+ "Następujące informacje mogą pomóc programistom Katalogu Firm w debugowaniu "
2042
+ "ewentualnych problemów z konfiguracją."
2043
 
2044
+ # @ WPBDM
2045
  #: admin/templates/debug-info.tpl.php:6
 
2046
  msgctxt "debug-info"
2047
+ msgid ""
2048
+ "The debug information does not contain personal or sensitive information "
2049
+ "such as passwords or private keys."
2050
+ msgstr ""
2051
+ "Informacje debugowania nie zawierają osobistych lub poufnych informacji, "
2052
+ "takich jak hasła i klucze prywatne."
2053
 
2054
+ # @ WPBDM
2055
  #: admin/templates/debug-info.tpl.php:9
 
2056
  msgctxt "debug-info"
2057
  msgid "Download Debug Information"
2058
  msgstr "Pobierz Informacje debugowania"
2059
 
2060
+ # @ WPBDM
2061
  #: admin/templates/fees-addoredit.tpl.php:23
 
2062
  msgctxt "fees admin"
2063
  msgid "Add Listing Fee"
2064
  msgstr "Dodaj Abonament oferty"
2065
 
2066
+ # @ WPBDM
2067
+ #: admin/templates/fees-addoredit.tpl.php:23
2068
+ #, fuzzy
2069
+ msgctxt "fees admin"
2070
+ msgid "Edit Listing Fee"
2071
+ msgstr "Edycja Firmy"
2072
+
2073
+ # @ WPBDM
2074
+ #: admin/templates/fees-addoredit.tpl.php:35
2075
  msgctxt "fees admin"
2076
  msgid "Fee Label"
2077
  msgstr "Etykieta abonamentu"
2078
 
2079
+ # @ WPBDM
2080
+ #: admin/templates/fees-addoredit.tpl.php:46
2081
  msgctxt "fees admin"
2082
  msgid "Fee Amount"
2083
  msgstr "Ilość abonamentu"
2084
 
2085
+ # @ WPBDM
2086
+ #: admin/templates/fees-addoredit.tpl.php:62
2087
  msgctxt "fees admin"
2088
  msgid "Listing run in days"
2089
  msgstr "Emisja oferty w dniach"
2090
 
2091
+ # @ WPBDM
2092
+ #: admin/templates/fees-addoredit.tpl.php:65
2093
  msgctxt "fees admin"
2094
  msgid "run listing for"
2095
  msgstr "Emisja oferty do"
2096
 
2097
+ # @ WPBDM
2098
+ #: admin/templates/fees-addoredit.tpl.php:74
2099
  msgctxt "fees admin"
2100
  msgid "days"
2101
  msgstr "dni"
2102
 
2103
+ # @ WPBDM
2104
+ #: admin/templates/fees-addoredit.tpl.php:77
2105
  msgctxt "fees admin"
2106
  msgid "run listing forever"
2107
  msgstr "Emisja oferty na zawsze"
2108
 
2109
+ # @ WPBDM
2110
+ #: admin/templates/fees-addoredit.tpl.php:82
2111
  msgctxt "fees admin"
2112
  msgid "Number of images allowed"
2113
  msgstr "Liczba dozwolonych obrazów"
2114
 
2115
+ # @ WPBDM
2116
+ #: admin/templates/fees-addoredit.tpl.php:94
2117
+ #, fuzzy
2118
+ msgctxt "fees admin"
2119
+ msgid "Is featured listing/sticky?"
2120
+ msgstr "Wyróżnione Firmy"
2121
+
2122
+ #: admin/templates/fees-addoredit.tpl.php:102
2123
+ msgctxt "fees admin"
2124
+ msgid ""
2125
+ "This floats the listing to the top of search results and browsing the "
2126
+ "directory when the user buys this plan."
2127
+ msgstr ""
2128
+
2129
+ # @ WPBDM
2130
+ #: admin/templates/fees-addoredit.tpl.php:107
2131
  msgctxt "fees admin"
2132
  msgid "Apply to category"
2133
  msgstr "Zastosuj dla kategorii"
2134
 
2135
+ # @ WPBDM
2136
+ #: admin/templates/fees-addoredit.tpl.php:111
2137
+ #: admin/templates/fees-addoredit.tpl.php:114
2138
  msgctxt "fees admin"
2139
  msgid "* All Categories *"
2140
  msgstr "* Wszystkie Kategorie *"
2141
 
2142
+ # @ WPBDM
2143
+ #: admin/templates/fees-addoredit.tpl.php:128
2144
+ #, fuzzy
2145
  msgctxt "fees admin"
2146
+ msgid "Fee Description"
2147
+ msgstr "Opis pola"
2148
 
2149
+ # @ WPBDM
2150
+ #: admin/templates/fees-addoredit.tpl.php:143
2151
  msgctxt "fees admin"
2152
  msgid "Add Fee"
2153
  msgstr "Dodaj abonament"
2154
 
2155
+ # @ WPBDM
2156
+ #: admin/templates/fees-addoredit.tpl.php:143
2157
+ msgctxt "fees admin"
2158
+ msgid "Update Fee"
2159
+ msgstr "Aktualizacja abonamentu"
2160
+
2161
+ # @ WPBDM
2162
  #: admin/templates/fees-confirm-delete.tpl.php:2
 
2163
  msgctxt "fees admin"
2164
  msgid "Delete Listing Fee"
2165
  msgstr "Usuń abonament oferty"
2166
 
2167
+ # @ WPBDM
2168
+ #: admin/templates/fees-confirm-delete.tpl.php:7
2169
+ #, fuzzy
2170
+ msgctxt "fees admin"
2171
+ msgid "Are you sure you want to disable the \"%s\" fee?"
2172
+ msgstr "Jesteś pewien, że chcesz usunąć abonament \"%s\"?"
2173
+
2174
+ # @ WPBDM
2175
+ #: admin/templates/fees-confirm-delete.tpl.php:9
2176
  msgctxt "fees admin"
2177
  msgid "Are you sure you want to delete the \"%s\" fee?"
2178
  msgstr "Jesteś pewien, że chcesz usunąć abonament \"%s\"?"
2179
 
2180
+ # @ WPBDM
2181
+ #: admin/templates/fees-confirm-delete.tpl.php:16
2182
+ #, fuzzy
2183
+ msgctxt "fee admin"
2184
+ msgid "Disable Fee"
2185
+ msgstr "Usuń abonament"
2186
+
2187
+ # @ WPBDM
2188
+ #: admin/templates/fees-confirm-delete.tpl.php:16
2189
  msgctxt "fee admin"
2190
  msgid "Delete Fee"
2191
  msgstr "Usuń abonament"
2192
 
2193
+ # @ WPBDM
2194
  #: admin/templates/fees.tpl.php:3
 
2195
  msgctxt "fees admin"
2196
  msgid "Add New Listing Fee"
2197
  msgstr "Dodaj nowy abonament"
2198
 
2199
+ # @ WPBDM
2200
  #: admin/templates/fees.tpl.php:10
 
2201
  msgctxt "fees admin"
2202
  msgid "Payments are currently turned off."
2203
  msgstr "Płatność jest aktualnie wyłączona."
2204
 
2205
+ # @ WPBDM
2206
  #: admin/templates/fees.tpl.php:13
 
2207
  msgctxt "fees admin"
2208
+ msgid ""
2209
+ "To manage fees you need to go to the <a>Manage Options - Payment</a> page "
2210
+ "and check the box next to 'Turn On Payments' under 'Payment Settings'."
2211
+ msgstr ""
2212
+ "Aby zarządzać abonamentami musisz iść do <a> Opcje Zarządzania- Płatności </"
2213
+ "a> i zaznaczyć pole wyboru \"Włącz\" w \"Ustawienia płatności\"."
2214
 
2215
+ # @ WPBDM
2216
+ #: admin/templates/fees.tpl.php:24
2217
  msgctxt "fees admin"
2218
  msgid "Order fees on the frontend by:"
2219
  msgstr "Sortuj abonamenty według:"
2220
 
2221
+ # @ WPBDM
2222
+ #: admin/templates/fees.tpl.php:32
2223
  msgctxt "fees admin"
2224
  msgid "↑ Ascending"
2225
  msgstr "↑ Rosnąco"
2226
 
2227
+ # @ WPBDM
2228
+ #: admin/templates/fees.tpl.php:32
2229
  msgctxt "fees admin"
2230
  msgid "↓ Descending"
2231
  msgstr "↓ Malejąco"
2232
 
2233
+ # @ WPBDM
2234
+ #: admin/templates/fees.tpl.php:38
2235
  msgctxt "fees admin"
2236
  msgid "Drag and drop to re-order fees."
2237
  msgstr "Złap i upuść aby uporządkować abonamenty"
2238
 
2239
+ #: admin/templates/fees.tpl.php:54
2240
+ msgctxt "fees admin"
2241
+ msgid ""
2242
+ "These are all of the fee plans displayed to the user when they place a "
2243
+ "listing. Your current mode of \"%s\" restricts what you see here. Those on "
2244
+ "the <a>Not Available</a> filter will become active when you change the "
2245
+ "payment mode."
2246
+ msgstr ""
2247
+
2248
+ # @ WPBDM
2249
+ #: admin/templates/fees.tpl.php:57 admin/templates/fees.tpl.php:63
2250
+ #: admin/templates/fees.tpl.php:77
2251
+ #, fuzzy
2252
+ msgctxt "fees admin"
2253
+ msgid "Paid"
2254
+ msgstr "Zapłacone"
2255
+
2256
+ # @ WPBDM
2257
+ #: admin/templates/fees.tpl.php:57 admin/templates/fees.tpl.php:63
2258
+ #: admin/templates/fees.tpl.php:77
2259
+ #, fuzzy
2260
+ msgctxt "fees admin"
2261
+ msgid "Free"
2262
+ msgstr "Tryb Bezpłatny"
2263
+
2264
+ #: admin/templates/fees.tpl.php:60
2265
+ msgctxt "fees admin"
2266
+ msgid ""
2267
+ "These are all of the fee plans that aren't available because you're in \"%s"
2268
+ "\" mode. Those on the Active filter will become Not Available when you "
2269
+ "change the payment mode."
2270
+ msgstr ""
2271
+
2272
+ #: admin/templates/fees.tpl.php:66
2273
+ msgctxt "fees admin"
2274
+ msgid ""
2275
+ "These fee plans were disabled by the admin and will not show to the end user "
2276
+ "regardless of mode until you enable them."
2277
+ msgstr ""
2278
+
2279
+ #: admin/templates/fees.tpl.php:74
2280
+ msgctxt "fees admin"
2281
+ msgid ""
2282
+ "These are all of the fee plans you have configured. Not all of them are "
2283
+ "available for the current mode (currently set to \"%s\"). To see the fee "
2284
+ "plans for this mode click <a>Active</a>."
2285
+ msgstr ""
2286
+
2287
+ # @ WPBDM
2288
+ #: admin/templates/fees.tpl.php:89 admin/templates/sidebar.tpl.php:13
2289
  msgctxt "admin sidebar"
2290
  msgid "PayPal Gateway Module"
2291
  msgstr "Moduł bramki PayPal"
2292
 
2293
+ # @ WPBDM
2294
+ #: admin/templates/fees.tpl.php:90 admin/templates/sidebar.tpl.php:14
 
2295
  msgctxt "admin sidebar"
2296
  msgid "2Checkout Gateway Module"
2297
  msgstr "Moduł bramki 2Checkout"
2298
 
2299
+ # @ WPBDM
2300
+ #: admin/templates/fees.tpl.php:91 admin/templates/sidebar.tpl.php:5
 
2301
  msgctxt "admin sidebar"
2302
  msgid "PayFast Payment Module"
2303
  msgstr "Moduł bramki PayFast"
2304
 
2305
+ # @ WPBDM
2306
+ #: admin/templates/fees.tpl.php:92 admin/templates/sidebar.tpl.php:6
 
2307
  msgctxt "admin sidebar"
2308
  msgid "Stripe Payment Module"
2309
  msgstr "Moduł bramki Stripe "
2310
 
2311
+ # @ WPBDM
2312
+ #: admin/templates/fees.tpl.php:102
2313
+ msgctxt "admin templates"
2314
+ msgid ""
2315
+ "It does not appear you have any of the payment gateway modules enabled. "
2316
+ "Either <a>enable the default Authorize.net gateway</a> with your account "
2317
+ "info, or purchase a different payment gateway module in order to charge a "
2318
+ "fee for listings. To purchase additional payment gateways use the buttons "
2319
+ "below or visit %s."
2320
+ msgstr ""
2321
+ "Nie wydaje się, aby jakieś bramki płatności były włączone. Albo "
2322
+ "<a>skorzystaj z bramki domyślnej - Authorize.net</a> z informacjami z "
2323
+ "Twojego konta, albo zdecyduj się na zakup innego modułu płatności w celu "
2324
+ "pobierania opłat. Aby zakupić dodatkowe bramki płatności skorzystaj z "
2325
+ "przycisków poniżej lub odwiedź %s."
2326
+
2327
+ # @ WPBDM
2328
+ #: admin/templates/fees.tpl.php:118
2329
  msgctxt "admin templates"
2330
  msgid "Already installed."
2331
  msgstr "Już zainstalowano."
2332
 
2333
+ # @ WPBDM
2334
+ #: admin/templates/fees.tpl.php:123
 
2335
  msgctxt "admin templates"
2336
+ msgid ""
2337
+ "You can buy the <a>%s</a> to add <a>%s</a> as a payment option for your "
2338
+ "users."
2339
+ msgstr ""
2340
+ "Możesz kupić <a>%s</a> aby dodać <a>%s</a> jako opcje płatności dla Twoich "
2341
+ "użytkowników."
2342
 
2343
+ # @ WPBDM
2344
  #: admin/templates/form-fields-addoredit.tpl.php:1
 
2345
  msgctxt "form-fields admin"
2346
  msgid "Add Form Field"
2347
  msgstr "Dodaj Pole formularza"
2348
 
2349
+ # @ WPBDM
2350
+ #: admin/templates/form-fields-addoredit.tpl.php:14
2351
  msgctxt "form-fields admin"
2352
  msgid "Field Association"
2353
  msgstr "Przypiisanie pola"
2354
 
2355
+ # @ default
2356
+ # @ WPBDM
2357
+ #: admin/templates/form-fields-addoredit.tpl.php:14
2358
+ #: admin/templates/form-fields-addoredit.tpl.php:36
2359
+ #: admin/templates/form-fields-addoredit.tpl.php:60
2360
+ #, fuzzy
2361
+ msgctxt "form-fields admin"
2362
+ msgid "required"
2363
+ msgstr "Wymagane"
2364
+
2365
+ # @ WPBDM
2366
+ #: admin/templates/form-fields-addoredit.tpl.php:36
2367
  msgctxt "form-fields admin"
2368
  msgid "Field Type"
2369
  msgstr "Rodzaj pola"
2370
 
2371
+ # @ WPBDM
2372
+ #: admin/templates/form-fields-addoredit.tpl.php:60
2373
  msgctxt "form-fields admin"
2374
  msgid "Field Label"
2375
  msgstr "Etykieta pola"
2376
 
2377
+ # @ WPBDM
2378
+ #: admin/templates/form-fields-addoredit.tpl.php:70
2379
  msgctxt "form-fields admin"
2380
  msgid "Field description"
2381
  msgstr "Opis pola"
2382
 
2383
+ # @ WPBDM
2384
+ #: admin/templates/form-fields-addoredit.tpl.php:70
2385
+ #, fuzzy
2386
+ msgctxt "form-fields admin"
2387
+ msgid "optional"
2388
+ msgstr "Opcjonalnie"
2389
+
2390
+ # @ WPBDM
2391
+ #: admin/templates/form-fields-addoredit.tpl.php:87
2392
  msgctxt "form-fields admin"
2393
  msgid "Field-specific settings"
2394
  msgstr "Ustawienia pola specyficznego"
2395
 
2396
+ # @ WPBDM
2397
+ #: admin/templates/form-fields-addoredit.tpl.php:96
2398
  msgctxt "form-fields admin"
2399
  msgid "Field validation options"
2400
  msgstr "Opcje weryfikacji pola"
2401
 
2402
+ # @ WPBDM
2403
+ #: admin/templates/form-fields-addoredit.tpl.php:100
2404
  msgctxt "form-fields admin"
2405
  msgid "Field Validator"
2406
  msgstr "Weryfikator pola"
2407
 
2408
+ # @ WPBDM
2409
+ #: admin/templates/form-fields-addoredit.tpl.php:104
2410
  msgctxt "form-fields admin"
2411
  msgid "No validation"
2412
  msgstr "Bez weryfikacji"
2413
 
2414
+ # @ WPBDM
2415
+ #: admin/templates/form-fields-addoredit.tpl.php:116
2416
  msgctxt "form-fields admin"
2417
  msgid "Is field required?"
2418
  msgstr "Czy pole jest wymagane?"
2419
 
2420
+ # @ WPBDM
2421
+ #: admin/templates/form-fields-addoredit.tpl.php:122
2422
  msgctxt "form-fields admin"
2423
  msgid "This field is required."
2424
  msgstr "To pole jest wymagane."
2425
 
2426
+ # @ WPBDM
2427
+ #: admin/templates/form-fields-addoredit.tpl.php:130
2428
  msgctxt "form-fields admin"
2429
  msgid "Field display options"
2430
  msgstr "Opcje wyświetlania pola"
2431
 
2432
+ # @ WPBDM
2433
+ #: admin/templates/form-fields-addoredit.tpl.php:134
2434
  msgctxt "form-fields admin"
2435
  msgid "Show this value in excerpt view?"
2436
  msgstr "Pokazać wartość pola w wyciągu z wpisu?"
2437
 
2438
+ # @ WPBDM
2439
+ #: admin/templates/form-fields-addoredit.tpl.php:140
2440
  msgctxt "form-fields admin"
2441
  msgid "Display this value in post excerpt view."
2442
  msgstr "Wyświetlanie wartości pola w wyciągu z wpisu."
2443
 
2444
+ # @ WPBDM
2445
+ #: admin/templates/form-fields-addoredit.tpl.php:146
2446
  msgctxt "form-fields admin"
2447
  msgid "Show this value in listing view?"
2448
  msgstr "Pokazywać tą wartość w widoku oferty?"
2449
 
2450
+ # @ WPBDM
2451
+ #: admin/templates/form-fields-addoredit.tpl.php:152
2452
  msgctxt "form-fields admin"
2453
  msgid "Display this value in the listing view."
2454
  msgstr "Wyświetlanie tej wartości w widoku oferty."
2455
 
2456
+ # @ WPBDM
2457
+ #: admin/templates/form-fields-addoredit.tpl.php:158
2458
  msgctxt "form-fields admin"
2459
  msgid "Include this field in the search form?"
2460
  msgstr "Dołączyć to pole do formularza wyszukiwania?"
2461
 
2462
+ # @ WPBDM
2463
+ #: admin/templates/form-fields-addoredit.tpl.php:164
2464
  msgctxt "form-fields admin"
2465
  msgid "Include this field in the search form."
2466
  msgstr "Dołącz to pole do formularza wyszukiwania"
2467
 
2468
+ # @ WPBDM
2469
+ #: admin/templates/form-fields-addoredit.tpl.php:170
2470
  msgctxt "form-fields admin"
2471
  msgid "Hide this field's label?"
2472
  msgstr "Ukryć etykiety pól?"
2473
 
2474
+ # @ WPBDM
2475
+ #: admin/templates/form-fields-addoredit.tpl.php:176
2476
  msgctxt "form-fields admin"
2477
  msgid "Hide this field's label when displaying it."
2478
  msgstr "Ukryj etykiety pól, kiedy pola są wyświetlane."
2479
 
2480
+ # @ WPBDM
2481
+ #: admin/templates/form-fields-addoredit.tpl.php:183
2482
  msgctxt "form-fields admin"
2483
  msgid "Update Field"
2484
  msgstr "Aktualizacja pola"
2485
 
2486
+ # @ WPBDM
2487
+ #: admin/templates/form-fields-addoredit.tpl.php:185
2488
  msgctxt "form-fields admin"
2489
  msgid "Add Field"
2490
  msgstr "Dodaj Pole "
2491
 
2492
+ # @ WPBDM
2493
  #: admin/templates/form-fields-confirm-delete.tpl.php:2
 
2494
  msgctxt "form-fields admin"
2495
  msgid "Delete Form Field"
2496
  msgstr "Usuń Pole formularza"
2497
 
2498
+ # @ WPBDM
2499
  #: admin/templates/form-fields-confirm-delete.tpl.php:6
 
 
2500
  msgctxt "form-fields admin"
2501
  msgid "Are you sure you want to delete the \"%s\" field?"
2502
  msgstr "Jesteś pewien, że chcesz usunąć pole \"%s\"?"
2503
 
2504
+ # @ WPBDM
2505
  #: admin/templates/form-fields-confirm-delete.tpl.php:12
 
2506
  msgctxt "form-fields admin"
2507
  msgid "Delete Field"
2508
  msgstr "Usuń pole"
2509
 
2510
+ # @ WPBDM
2511
+ #: admin/templates/form-fields-tags.tpl.php:5
2512
+ #, fuzzy
2513
+ msgctxt "form-fields admin"
2514
+ msgid "-- None --"
2515
+ msgstr "-- Wybierz Jeden --"
2516
+
2517
+ #: admin/templates/form-fields-tags.tpl.php:14
2518
+ msgctxt "form-fields admin"
2519
+ msgid "Theme Tags"
2520
+ msgstr ""
2521
+
2522
+ #: admin/templates/form-fields-tags.tpl.php:19
2523
+ msgctxt "form-fields admin"
2524
+ msgid ""
2525
+ "Before you create fields, make sure you've mapped all of your EXISTING ones "
2526
+ "first, otherwise you'll appear to be \"missing data\" on your listings."
2527
+ msgstr ""
2528
+
2529
+ # @ WPBDM
2530
+ #: admin/templates/form-fields-tags.tpl.php:22
2531
+ #, fuzzy
2532
+ msgctxt "form-fields admin"
2533
+ msgid "Create Missing Fields"
2534
+ msgstr "Pola ofert"
2535
+
2536
+ # @ WPBDM
2537
+ #: admin/templates/form-fields-tags.tpl.php:30
2538
+ #, fuzzy
2539
+ msgctxt "form-fields admin"
2540
+ msgid "Field Tag"
2541
+ msgstr "Rodzaj pola"
2542
+
2543
+ # @ WPBDM
2544
+ #: admin/templates/form-fields-tags.tpl.php:31
2545
+ #, fuzzy
2546
+ msgctxt "form-fields admin"
2547
+ msgid "Field"
2548
+ msgstr "Pole"
2549
+
2550
+ # @ WPBDM
2551
  #: admin/templates/form-fields.tpl.php:3
 
2552
  msgctxt "form-fields admin"
2553
  msgid "Add New Form Field"
2554
  msgstr "Dodaj nowe pole formularza"
2555
 
2556
+ # @ WPBDM
2557
  #: admin/templates/form-fields.tpl.php:4
 
2558
  msgctxt "form-fields admin"
2559
  msgid "Preview Form"
2560
  msgstr "Podgląd formularza"
2561
 
2562
+ # @ WPBDM
2563
+ #: admin/templates/form-fields.tpl.php:6 admin/templates/themes.tpl.php:4
2564
+ #, fuzzy
2565
+ msgctxt "form-fields admin"
2566
+ msgid "Manage Theme Tags"
2567
+ msgstr "Zarządzaj abonamentami"
2568
+
2569
+ # @ WPBDM
2570
+ #: admin/templates/form-fields.tpl.php:12
2571
+ msgctxt "form-fields admin"
2572
+ msgid ""
2573
+ "Here, you can create new fields for your listings, edit or delete existing "
2574
+ "ones, change the order and visibility of the fields as well as configure "
2575
+ "special options for them."
2576
+ msgstr ""
2577
+ "Tutaj możesz stworzyć nowe pola dla Twoich Ofert, edytować lub usuwać "
2578
+ "istniejące, porządkować i ustawiać widoczność tych pól przy użyciu "
2579
+ "specjalnych funkcji."
2580
+
2581
+ # @ WPBDM
2582
+ #: admin/templates/form-fields.tpl.php:18
2583
+ msgctxt "form-fields admin"
2584
+ msgid "Please see the <a>Form Fields documentation</a> for more details."
2585
+ msgstr ""
2586
+ "Proszę zapoznać się z <a>Dokumentacją dotyczącą formularzy Pól</a> aby "
2587
+ "poznać wiecej możliwości."
2588
+
2589
+ # @ WPBDM
2590
+ #. #-#-#-#-# WPBDM.pot (Business Directory Plugin 4.1.6) #-#-#-#-#
2591
+ #. Plugin Name of the plugin/theme
2592
  #: admin/templates/header.tpl.php:4
 
2593
  msgid "Business Directory Plugin"
2594
  msgstr "Plugin Katalog Firm"
2595
 
2596
+ # @ WPBDM
2597
  #: admin/templates/home.tpl.php:4
 
 
2598
  msgctxt "admin home"
2599
  msgid "Welcome to Business Directory Plugin. You are using %s."
2600
  msgstr "Witamy w Katalogu Firm. Używasz %s."
2601
 
2602
+ # @ WPBDM
2603
  #: admin/templates/home.tpl.php:5
 
2604
  msgctxt "admin home"
2605
+ msgid ""
2606
+ "Thanks for choosing us. There's a lot you probably want to get done, so "
2607
+ "let's jump right in!"
2608
+ msgstr ""
2609
+ "Dziękujemy, że nas wybrałeś. Jest tu wiele rzeczy, które prawdopodobnie "
2610
+ "chciałbyś zrobić. Poprostu zacznij zabawę."
2611
 
2612
+ # @ WPBDM
2613
  #: admin/templates/home.tpl.php:11
 
2614
  msgctxt "admin home"
2615
+ msgid ""
2616
+ "Our complete documentation is <a>here</a> which we encourage you to use "
2617
+ "while setting things up."
2618
+ msgstr ""
2619
+ "Pełną dokumentację znajdziesz <a>tutaj</a>. Korzystaj z niej, aby "
2620
+ "skonfirgurować nasz plugin."
2621
 
2622
+ # @ WPBDM
2623
  #: admin/templates/home.tpl.php:14
 
2624
  msgctxt "admin home"
2625
+ msgid ""
2626
+ "We have some quick-start scenarios that you will find useful regarding setup "
2627
+ "and configuration <a>here</a>."
2628
+ msgstr ""
2629
+ "Kilka scenariuszy szybkiego startu, w kótrych znajdziesz przydatne opcje i "
2630
+ "informacje na temat konfiguracji znajdziesz<a>tutaj</a>."
2631
 
2632
+ # @ WPBDM
2633
  #: admin/templates/home.tpl.php:18
 
2634
  msgctxt "admin home"
2635
+ msgid ""
2636
+ "If you have questions, please post a comment on <a>support forum</a> and "
2637
+ "we'll answer it within 24 hours most days."
2638
+ msgstr ""
2639
+ "Jeśli masz pytania, napisz komentarz na <a>forum wsparcia</a>, a my "
2640
+ "postaramy sie odpowiedzieć w ciągu 24 godzin."
2641
 
2642
+ # @ WPBDM
2643
  #: admin/templates/home.tpl.php:25
 
2644
  msgid "Configure/Manage Options"
2645
  msgstr "Zarządzaj Opcjami"
2646
 
2647
+ # @ WPBDM
2648
  #: admin/templates/home.tpl.php:28
 
2649
  msgid "Setup/Manage Form Fields"
2650
  msgstr "Zarządzaj polami formularzy"
2651
 
2652
+ # @ WPBDM
2653
  #: admin/templates/home.tpl.php:31
 
2654
  msgid "Setup/Manage Fees"
2655
  msgstr "Zarządzaj abonamentami"
2656
 
2657
+ # @ WPBDM
2658
  #: admin/templates/home.tpl.php:37
 
2659
  msgid "Featured Listings Pending Upgrade"
2660
  msgstr "Wyróżniona oferta oczekuje na zmianę statusu"
2661
 
2662
+ # @ WPBDM
2663
  #: admin/templates/home.tpl.php:44
 
2664
  msgid "Manage Paid Listings"
2665
  msgstr "Zarządzaj ofertami płatnymi"
2666
 
2667
+ # @ WPBDM
2668
  #: admin/templates/listing-change-fee.tpl.php:3
 
2669
  msgctxt "admin listing fee"
2670
  msgid "Listing Fee Selection"
2671
  msgstr "Wybór Abonamentu"
2672
 
2673
+ # @ WPBDM
2674
  #: admin/templates/listing-change-fee.tpl.php:5
 
 
2675
  msgctxt "admin listing fee"
2676
  msgid "Select a fee plan to be used for this listing in the \"%s\" category."
2677
  msgstr "Wybierz abonament dla tego ogłoszenia w kategoreiii \"%s\"."
2678
 
2679
+ # @ WPBDM
2680
  #: admin/templates/listing-change-fee.tpl.php:11
 
2681
  msgctxt "admin listing fee"
2682
  msgid "Current"
2683
  msgstr "Aktualny"
2684
 
2685
+ # @ WPBDM
2686
  #: admin/templates/listing-change-fee.tpl.php:14
 
2687
  msgctxt "admin listing fee"
2688
  msgid "Use this fee"
2689
  msgstr "Użyj tego abonamentu"
2690
 
2691
+ # @ WPBDM
2692
  #: admin/templates/listing-change-fee.tpl.php:21
 
 
2693
  msgctxt "admin infometabox"
2694
  msgid "%d image"
2695
  msgid_plural "%d images"
2697
  msgstr[1] "%d obrazy"
2698
  msgstr[2] "%d obrazów"
2699
 
2700
+ # @ WPBDM
2701
  #: admin/templates/listing-change-fee.tpl.php:23
 
2702
  msgctxt "admin infometabox"
2703
  msgid "Listing never expires"
2704
  msgstr "Bezterminowy okres ważności"
2705
 
2706
+ # @ WPBDM
2707
  #: admin/templates/listing-change-fee.tpl.php:25
 
 
2708
  msgctxt "admin infometabox"
2709
  msgid "%d day"
2710
  msgid_plural "%d days"
2712
  msgstr[1] "%d dni"
2713
  msgstr[2] "%d dni"
2714
 
2715
+ # @ WPBDM
2716
  #: admin/templates/listing-metabox-categories.tpl.php:22
 
2717
  msgctxt "admin infometabox"
2718
  msgid "No categories on this listing. Please add one to associate fees."
2719
  msgstr "Nie ma kategorii dla tej oferty. Dodaj jedną aby stosować abonamenty."
2720
 
2721
+ # @ WPBDM
2722
  #: admin/templates/listing-metabox-categories.tpl.php:29
 
2723
  msgctxt "admin infometabox"
2724
  msgid "(recurring)"
2725
  msgstr "(powtarzające się)"
2726
 
2727
+ # @ WPBDM
2728
  #: admin/templates/listing-metabox-categories.tpl.php:34
 
2729
  msgctxt "admin infometabox"
2730
  msgid "Expired"
2731
  msgstr "Upłynął termin ważności"
2732
 
2733
+ # @ WPBDM
2734
  #: admin/templates/listing-metabox-categories.tpl.php:37
 
2735
  msgctxt "admin infometabox"
2736
  msgid "Payment Pending"
2737
  msgstr "Oczekujące na płatność"
2738
 
2739
+ # @ WPBDM
2740
  #: admin/templates/listing-metabox-categories.tpl.php:41
 
2741
  msgctxt "admin infometabox"
2742
  msgid "OK"
2743
  msgstr "Wszystko w porządku"
2744
 
2745
+ # @ WPBDM
2746
  #: admin/templates/listing-metabox-categories.tpl.php:49
 
2747
  msgctxt "admin infometabox"
2748
  msgid "Fee"
2749
  msgstr "Abonament"
2750
 
2751
+ # @ WPBDM
2752
  #: admin/templates/listing-metabox-categories.tpl.php:54
 
2753
  msgctxt "admin infometabox"
2754
  msgid "# Images"
2755
  msgstr "Liczba Obrazów"
2756
 
2757
+ # @ WPBDM
2758
  #: admin/templates/listing-metabox-categories.tpl.php:62
 
2759
  msgctxt "admin infometabox"
2760
  msgid "Expired on"
2761
  msgstr "Upłynął termin ważności "
2762
 
2763
+ # @ WPBDM
2764
  #: admin/templates/listing-metabox-categories.tpl.php:64
 
2765
  msgctxt "admin infometabox"
2766
  msgid "Expires on"
2767
  msgstr "Upłynął okres ważności "
2768
 
2769
+ # @ WPBDM
 
 
 
 
 
 
2770
  #: admin/templates/listing-metabox-categories.tpl.php:72
 
2771
  msgctxt "admin infometabox"
2772
  msgid "Click to manually change expiration date."
2773
  msgstr "Kliknij aby ręcznie ustawić datę wygaśnięcia oferty."
2774
 
2775
+ # @ WPBDM
2776
+ #: admin/templates/listing-metabox-categories.tpl.php:75
2777
+ msgctxt "admin infometabox"
2778
+ msgid "Never expires"
2779
+ msgstr "Na zawsze"
2780
+
2781
+ # @ WPBDM
2782
  #: admin/templates/listing-metabox-categories.tpl.php:75
 
2783
  msgctxt "admin infometabox"
2784
  msgid "Edit"
2785
  msgstr "Edytuj"
2786
 
2787
+ # @ WPBDM
2788
  #: admin/templates/listing-metabox-categories.tpl.php:87
 
2789
  msgctxt "admin infometabox"
2790
  msgid "See payment info"
2791
  msgstr "Zobacz informacje o płatności"
2792
 
2793
+ # @ WPBDM
2794
  #: admin/templates/listing-metabox-categories.tpl.php:92
 
2795
  msgctxt "admin infometabox"
2796
  msgid "Renewal URL (copy & paste)"
2797
  msgstr "Adres URL odnowienia (kopiuj i wklej)"
2798
 
2799
+ # @ WPBDM
2800
  #: admin/templates/listing-metabox-categories.tpl.php:92
 
2801
  msgctxt "admin infometabox"
2802
  msgid "Show renewal link"
2803
  msgstr "Pokaż adres URL odnowienie"
2804
 
2805
+ # @ WPBDM
2806
  #: admin/templates/listing-metabox-categories.tpl.php:99
 
2807
  msgctxt "admin infometabox"
2808
  msgid "Send renewal e-mail to user"
2809
  msgstr "Wysyłaj do użytkownika e-mail o odnowieniu "
2810
 
2811
+ # @ WPBDM
2812
  #: admin/templates/listing-metabox-categories.tpl.php:107
 
2813
  msgctxt "admin infometabox"
2814
  msgid "Renew manually..."
2815
  msgstr "Ręczne Odnowienie oferty"
2816
 
2817
+ # @ WPBDM
2818
  #: admin/templates/listing-metabox-categories.tpl.php:107
 
2819
  msgctxt "admin infometabox"
2820
  msgid "Change fee..."
2821
  msgstr "Zmień Abonament"
2822
 
2823
+ # @ WPBDM
2824
  #: admin/templates/listing-metabox-categories.tpl.php:115
 
2825
  msgctxt "admin infometabox"
2826
  msgid "Remove category"
2827
  msgstr "Usuń Ktegorię"
2828
 
2829
+ # @ WPBDM
2830
  #: admin/templates/listing-metabox-fees.tpl.php:1
 
2831
  msgctxt "admin infometabox"
2832
  msgid "Fee Information"
2833
  msgstr "Informacje o abonamencie"
2834
 
2835
+ # @ WPBDM
2836
  #: admin/templates/listing-metabox-fees.tpl.php:3
 
2837
  msgctxt "admin infometabox"
2838
  msgid "Payment Mode:"
2839
  msgstr "Tryb Płatny"
2840
 
2841
+ # @ WPBDM
2842
  #: admin/templates/listing-metabox-fees.tpl.php:3
 
2843
  msgctxt "admin infometabox"
2844
  msgid "Paid"
2845
  msgstr "Zapłacone"
2846
 
2847
+ # @ WPBDM
2848
  #: admin/templates/listing-metabox-fees.tpl.php:3
 
2849
  msgctxt "admin infometabox"
2850
  msgid "Free"
2851
  msgstr "Tryb Bezpłatny"
2852
 
2853
+ # @ WPBDM
2854
  #: admin/templates/listing-metabox-fees.tpl.php:6
 
 
2855
  msgctxt "admin infometabox"
2856
  msgid "To change your payment mode, go to <a href=\"%s\">Payment Settings</a>."
2857
+ msgstr ""
2858
+ "Aby zmienić Tryb Bezpłatny na Płatny i odwrotnie, przejdź do <a href=\"%s"
2859
+ "\">Ustawienia Płatności</a>."
2860
 
2861
+ # @ WPBDM
2862
  #: admin/templates/listing-metabox-fees.tpl.php:12
 
2863
  msgctxt "admin infometabox"
2864
+ msgid ""
2865
+ "Note: In Free mode, the fee plans will always be set to \"Free Listing\" "
2866
+ "below."
2867
+ msgstr ""
2868
+ "nformacja: W trybie bezpłatnym, abonamenty zawsze będą ustawione jako "
2869
+ "\"Bezpłatny Katalog\"."
2870
 
2871
+ # @ WPBDM
2872
  #: admin/templates/listing-metabox-fees.tpl.php:22
2873
  #: admin/templates/listing-metabox-feesummary.tpl.php:12
 
2874
  msgctxt "admin infometabox"
2875
  msgid "Renew listing in all expired categories"
2876
  msgstr "Odnowienie ofert we wszystkich wygasłych kategoriach"
2877
 
2878
+ # @ WPBDM
2879
  #: admin/templates/listing-metabox-feesummary.tpl.php:1
 
2880
  msgctxt "admin infometabox"
2881
  msgid "Categories for this listing"
2882
  msgstr "Kategorie dla tej oferty"
2883
 
2884
+ # @ WPBDM
2885
  #: admin/templates/listing-metabox-transactions.tpl.php:3
 
2886
  msgctxt "admin infometabox"
2887
  msgid "Initial Payment"
2888
  msgstr "Inicjacja Płatności"
2889
 
2890
+ # @ WPBDM
2891
  #: admin/templates/listing-metabox-transactions.tpl.php:4
 
2892
  msgctxt "admin infometabox"
2893
  msgid "Listing Edit"
2894
  msgstr "Edycja oferty"
2895
 
2896
+ # @ WPBDM
2897
  #: admin/templates/listing-metabox-transactions.tpl.php:5
 
2898
  msgctxt "admin infometabox"
2899
  msgid "Listing Renewal"
2900
  msgstr "Odświeżenie oferty"
2901
 
2902
+ # @ WPBDM
2903
  #: admin/templates/listing-metabox-transactions.tpl.php:6
 
2904
  msgctxt "admin infometabox"
2905
  msgid "Upgrade to sticky"
2906
  msgstr "Podnieś status do \"Wyróżnione/Naklejka\""
2907
 
2908
+ # @ WPBDM
2909
  #: admin/templates/listing-metabox-transactions.tpl.php:10
 
2910
  msgctxt "admin"
2911
  msgid "Payments History"
2912
  msgstr "Historia płatności"
2913
 
2914
+ # @ WPBDM
2915
  #: admin/templates/listing-metabox-transactions.tpl.php:12
 
2916
  msgctxt "admin listing metabox"
2917
  msgid "Click a payment to see the details or approve/reject the transaction."
2918
+ msgstr ""
2919
+ "Kliknij płatności aby zobaczyć szczegóły albo zatwierdzić lub odrzucić "
2920
+ "transakcję."
2921
 
2922
+ # @ WPBDM
2923
  #: admin/templates/listing-metabox-transactions.tpl.php:16
 
2924
  msgctxt "listing metabox"
2925
  msgid "There are no transactions associated to this listing."
2926
  msgstr "Nie ma aktualnie przypisanej żadnej transakcji do tej oferty."
2927
 
2928
+ # @ WPBDM
2929
  #: admin/templates/payment-details.tpl.php:7
 
2930
  msgctxt "admin payments"
2931
  msgid "Payment Details"
2932
  msgstr "Szczegóły płatności"
2933
 
2934
+ # @ WPBDM
2935
  #: admin/templates/payment-details.tpl.php:9
 
 
2936
  msgctxt "admin payments"
2937
  msgid "Payment #%d"
2938
  msgstr "Płatność #%d"
2939
 
2940
+ # @ WPBDM
2941
  #: admin/templates/payment-details.tpl.php:16
 
2942
  msgctxt "admin payments"
2943
  msgid "Created on"
2944
  msgstr "Utworzony przez"
2945
 
2946
+ # @ WPBDM
2947
  #: admin/templates/payment-details.tpl.php:19
 
2948
  msgctxt "admin infometabox"
2949
  msgid "Amount"
2950
  msgstr "Kwota"
2951
 
2952
+ # @ WPBDM
2953
  #: admin/templates/payment-details.tpl.php:22
 
2954
  msgctxt "admin infometabox"
2955
  msgid "Gateway"
2956
  msgstr "Bramka"
2957
 
2958
+ # @ WPBDM
2959
  #: admin/templates/payment-details.tpl.php:26
 
2960
  msgctxt "admin infometabox"
2961
  msgid "Processed on"
2962
  msgstr "Przetwarzane na"
2963
 
2964
+ # @ WPBDM
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
2965
  #: admin/templates/payment-details.tpl.php:28
 
2966
  msgctxt "admin infometabox"
2967
  msgid "Processed by"
2968
  msgstr "Przetwarzane przez"
2969
 
2970
+ # @ WPBDM
2971
+ #: admin/templates/payment-details.tpl.php:41
2972
  msgctxt "admin payments"
2973
  msgid "Approve payment"
2974
  msgstr "Zatwierdzenie płatności"
2975
 
2976
+ # @ WPBDM
2977
+ #: admin/templates/payment-details.tpl.php:46
2978
  msgctxt "admin payments"
2979
  msgid "Reject payment"
2980
  msgstr "Odrzucenie płatności"
2981
 
2982
+ # @ WPBDM
2983
+ #: admin/templates/settings-reset.tpl.php:2
2984
+ #, fuzzy
2985
+ msgid "Business Directory - Reset Defaults"
2986
+ msgstr "Katalog Firm - Najświeższe Firmy"
2987
+
2988
+ # @ WPBDM
2989
+ #: admin/templates/settings-reset.tpl.php:4
2990
+ #, fuzzy
2991
+ msgctxt "settings"
2992
+ msgid "← Return to \"Manage Options\""
2993
+ msgstr "← wróć do \"Zarządzanie polami formularza\""
2994
+
2995
+ # @ WPBDM
2996
+ #: admin/templates/settings-reset.tpl.php:10
2997
+ #, fuzzy
2998
+ msgid ""
2999
+ "Use this option if you want to go back to the original factory settings for "
3000
+ "BD."
3001
+ msgstr ""
3002
+ "Użyj tej opcji, jeśli chcesz przywrócić Katalog Firm do ustawień fabrycznych."
3003
+ "<b>Pamiętaj - wszystkie Twoje poprzednie ustawienia zostaną utracone..</b>"
3004
+
3005
+ #: admin/templates/settings-reset.tpl.php:11
3006
+ msgid "Please note that all of your existing settings will be lost."
3007
+ msgstr ""
3008
+
3009
+ # @ WPBDM
3010
+ #: admin/templates/settings-reset.tpl.php:17
3011
+ msgid "Reset Defaults"
3012
+ msgstr "Przywróć ustawienia fabryczne"
3013
+
3014
+ # @ WPBDM
3015
  #: admin/templates/settings.tpl.php:2
 
3016
  msgid "Business Directory Settings"
3017
  msgstr "Katalog Firm Ustawienia"
3018
 
3019
+ # @ WPBDM
3020
+ #: admin/templates/settings.tpl.php:4
3021
+ #, fuzzy
3022
+ msgctxt "settings"
3023
+ msgid "Reset Defaults"
3024
+ msgstr "Przywróć ustawienia fabryczne"
3025
+
3026
+ # @ WPBDM
3027
+ #: admin/templates/settings.tpl.php:21
3028
  msgid "Settings updated."
3029
  msgstr "Ustawienia zapisane"
3030
 
3031
+ # @ WPBDM
3032
+ #: admin/templates/sidebar.tpl.php:3
3033
+ #, fuzzy
3034
+ msgctxt "admin sidebar"
3035
+ msgid "Discount Codes Module"
3036
+ msgstr "Moduł regionów"
3037
+
3038
+ # @ WPBDM
3039
+ #: admin/templates/sidebar.tpl.php:4
3040
+ msgctxt "admin sidebar"
3041
+ msgid "Claim Listings Module"
3042
+ msgstr "Moduł Zastrzeżeń"
3043
 
3044
+ # @ WPBDM
3045
+ #: admin/templates/sidebar.tpl.php:7
3046
  msgctxt "admin sidebar"
3047
  msgid "File Upload Module"
3048
  msgstr "Moduł przesyłania plików"
3049
 
3050
+ # @ WPBDM
3051
+ #: admin/templates/sidebar.tpl.php:8
3052
  msgctxt "admin sidebar"
3053
  msgid "Featured Levels Module"
3054
  msgstr "Moduł poziomów wyróżnień"
3055
 
3056
+ # @ WPBDM
3057
+ #: admin/templates/sidebar.tpl.php:9
3058
  msgctxt "admin sidebar"
3059
  msgid "ZIP Code Search Module"
3060
  msgstr "Moduł wyszukiwania kodu pocztowego"
3061
 
3062
+ # @ WPBDM
3063
+ #: admin/templates/sidebar.tpl.php:10
3064
  msgctxt "admin sidebar"
3065
  msgid "Regions Module"
3066
  msgstr "Moduł regionów"
3067
 
3068
+ # @ WPBDM
3069
+ #: admin/templates/sidebar.tpl.php:11
3070
  msgctxt "admin sidebar"
3071
  msgid "Ratings Module"
3072
  msgstr "Moduł oceniania"
3073
 
3074
+ # @ WPBDM
3075
+ #: admin/templates/sidebar.tpl.php:12
3076
  msgctxt "admin sidebar"
3077
  msgid "Google Maps Module"
3078
  msgstr "Moduł google mapy"
3079
 
3080
+ # @ WPBDM
3081
+ #: admin/templates/sidebar.tpl.php:18
3082
+ #, fuzzy
3083
+ msgctxt "admin sidebar"
3084
+ msgid "Business Card Theme"
3085
+ msgstr "Nazwa Firmy"
3086
+
3087
+ #: admin/templates/sidebar.tpl.php:19
3088
+ msgctxt "admin sidebar"
3089
+ msgid "Mobile Compact Theme"
3090
+ msgstr ""
3091
+
3092
  #: admin/templates/sidebar.tpl.php:20
3093
+ msgctxt "admin sidebar"
3094
+ msgid "Restaurant Theme"
3095
+ msgstr ""
3096
+
3097
+ # @ WPBDM
3098
+ #: admin/templates/sidebar.tpl.php:21
3099
+ #, fuzzy
3100
+ msgctxt "admin sidebar"
3101
+ msgid "Tabbed Business Theme"
3102
+ msgstr "Nazwa Firmy"
3103
+
3104
+ # @ WPBDM
3105
+ #: admin/templates/sidebar.tpl.php:22
3106
+ #, fuzzy
3107
+ msgctxt "admin sidebar"
3108
+ msgid "Elegant Business Theme"
3109
+ msgstr "Nazwa Firmy"
3110
+
3111
+ # @ WPBDM
3112
+ #: admin/templates/sidebar.tpl.php:29
3113
  msgctxt "admin sidebar"
3114
  msgid "Like this plugin?"
3115
  msgstr "Lubisz tą wtyczkę?"
3116
 
3117
+ # @ WPBDM
3118
+ #: admin/templates/sidebar.tpl.php:31
3119
  msgctxt "admin sidebar"
3120
  msgid "Why not do any or all of the following:"
3121
  msgstr "Czemu nie zrobić czegoś z poniższych:"
3122
 
3123
+ # @ WPBDM
3124
+ #: admin/templates/sidebar.tpl.php:33
3125
  msgctxt "admin sidebar"
3126
  msgid "Give it a good rating on WordPress.org."
3127
  msgstr "Oceń nas na WordPress.org."
3128
 
3129
+ # @ WPBDM
3130
+ #: admin/templates/sidebar.tpl.php:34
3131
  msgctxt "admin sidebar"
3132
  msgid "Let other people know that it works with your WordPress setup."
3133
  msgstr "Daj znać innym użytkownikom że ta wtyczka działa na Twoim Wordpressie."
3134
 
3135
+ # @ WPBDM
3136
+ #: admin/templates/sidebar.tpl.php:35
3137
  msgctxt "admin sidebar"
3138
  msgid "Buy a Premium Module"
3139
  msgstr "Kup moduł premium"
3140
 
3141
+ # @ WPBDM
3142
+ #: admin/templates/sidebar.tpl.php:42
3143
  msgctxt "admin sidebar"
3144
  msgid "Get a Premium Module"
3145
  msgstr "Pobierz moduł premium"
3146
 
3147
+ #: admin/templates/sidebar.tpl.php:45 admin/templates/sidebar.tpl.php:61
3148
+ msgctxt "admin sidebar"
3149
+ msgid "best deal"
3150
+ msgstr ""
3151
+
3152
+ #: admin/templates/sidebar.tpl.php:45
3153
+ msgctxt "admin sidebar"
3154
+ msgid "Combo Pack"
3155
+ msgstr ""
3156
+
3157
+ # @ WPBDM
3158
+ #: admin/templates/sidebar.tpl.php:45
3159
+ #, fuzzy
3160
+ msgctxt "admin sidebar"
3161
+ msgid "(All Modules)"
3162
+ msgstr "Zainstalowane moduły"
3163
+
3164
+ #: admin/templates/sidebar.tpl.php:48 admin/templates/sidebar.tpl.php:64
3165
+ msgctxt "admin sidebar"
3166
+ msgid "new"
3167
+ msgstr ""
3168
+
3169
+ # @ WPBDM
3170
+ #: admin/templates/sidebar.tpl.php:58
3171
+ #, fuzzy
3172
+ msgctxt "admin sidebar"
3173
+ msgid "Get a Directory Theme"
3174
+ msgstr "Przejdź do \"Katalog Administracja\""
3175
+
3176
+ #: admin/templates/sidebar.tpl.php:61
3177
  msgctxt "admin sidebar"
3178
+ msgid "Theme Pack"
3179
+ msgstr ""
3180
 
3181
+ #: admin/templates/sidebar.tpl.php:61
 
3182
  msgctxt "admin sidebar"
3183
+ msgid "(All Themes)"
3184
+ msgstr ""
3185
 
3186
+ # @ WPBDM
3187
+ #: admin/templates/sidebar.tpl.php:74
3188
  msgctxt "admin sidebar"
3189
  msgid "Found a bug? Need support?"
3190
  msgstr "Znalazłeś błąd? Potrzebujesz pomocy?"
3191
 
3192
+ # @ WPBDM
3193
+ #: admin/templates/sidebar.tpl.php:79
3194
  msgctxt "admin sidebar"
3195
  msgid "If you've found a bug or need support <a>visit the forums!</a>"
3196
  msgstr "Jeśli znalazłeś błąd lub potrzebujesz pomocy zajrzyj na <a>forum!</a>"
3197
 
3198
+ # @ WPBDM
3199
+ #: admin/templates/sidebar.tpl.php:82
3200
  msgctxt "admin sidebar"
3201
  msgid "Full plugin documentation"
3202
  msgstr "Pełna Dokumentacja Pluginu"
3203
 
3204
+ # @ WPBDM
3205
+ #: admin/templates/sidebar.tpl.php:83
3206
  msgctxt "admin sidebar"
3207
  msgid "Quick Start Guide"
3208
  msgstr "Szybki Start Instrukcja"
3209
 
3210
+ # @ WPBDM
3211
+ #: admin/templates/sidebar.tpl.php:84
3212
+ msgctxt "admin sidebar"
3213
+ msgid "Video Tutorials"
3214
+ msgstr "Poradnik Wideo"
3215
+
3216
+ # @ WPBDM
3217
+ #: admin/templates/sidebar.tpl.php:92
3218
  msgctxt "admin sidebar"
3219
  msgid "Installed Modules"
3220
  msgstr "Zainstalowane moduły"
3221
 
3222
+ # @ WPBDM
3223
+ #: admin/templates/sidebar.tpl.php:103 admin/templates/sidebar.tpl.php:112
 
3224
  msgctxt "admin sidebar"
3225
  msgid "Installed"
3226
  msgstr "Zainstalowane "
3227
 
3228
+ # @ WPBDM
3229
+ #: admin/templates/sidebar.tpl.php:105 admin/templates/sidebar.tpl.php:112
 
3230
  msgctxt "admin sidebar"
3231
  msgid "Not Installed"
3232
  msgstr "Nie zainstalowane"
3233
 
3234
+ # @ WPBDM
3235
+ #: admin/templates/sidebar.tpl.php:111
3236
  msgctxt "admin sidebar"
3237
  msgid "Enhanced Categories Module"
3238
  msgstr "Moduł zaawansowane kategorie"
3239
 
3240
+ #: admin/templates/themes-delete-confirm.tpl.php:1
3241
+ #: admin/templates/themes-delete-confirm.tpl.php:13
3242
+ msgctxt "themes admin"
3243
+ msgid "Delete Directory Theme"
3244
+ msgstr ""
3245
 
3246
+ # @ WPBDM
3247
+ #: admin/templates/themes-delete-confirm.tpl.php:3
3248
+ #, fuzzy
3249
+ msgctxt "themes admin"
3250
+ msgid "Are you sure you want to delete the directory theme \"%s\"?"
3251
+ msgstr "Jesteś pewien, że chcesz usunąć abonament \"%s\"?"
3252
 
3253
+ # @ WPBDM
3254
+ #: admin/templates/themes-delete-confirm.tpl.php:12
3255
+ #, fuzzy
3256
+ msgctxt "themes admin"
3257
+ msgid "Cancel"
3258
+ msgstr "Anuluj"
3259
 
3260
+ #: admin/templates/themes-install.tpl.php:2
3261
+ #: admin/templates/themes-licenses.tpl.php:3 admin/templates/themes.tpl.php:3
3262
+ msgctxt "themes"
3263
+ msgid "Upload Directory Theme"
3264
+ msgstr ""
3265
 
3266
+ #: admin/templates/themes-install.tpl.php:8
3267
+ msgctxt "themes"
3268
+ msgid "This is a theme or skin from %s and is NOT a regular WordPress theme."
3269
+ msgstr ""
 
3270
 
3271
+ #: admin/templates/themes-install.tpl.php:21
3272
+ msgctxt "themes"
3273
+ msgid "BD Theme archive (ZIP file)"
3274
+ msgstr ""
 
3275
 
3276
+ #: admin/templates/themes-install.tpl.php:30
3277
+ msgctxt "themes"
3278
+ msgid "Begin Upload"
3279
+ msgstr ""
 
3280
 
3281
+ # @ WPBDM
3282
+ #: admin/templates/themes-item.tpl.php:3
3283
+ #, fuzzy
3284
+ msgctxt "themes"
3285
+ msgid "Active:"
3286
+ msgstr "Tylko aktywne"
3287
+
3288
+ # @ WPBDM
3289
+ #: admin/templates/themes-item.tpl.php:17
3290
+ #, fuzzy
3291
+ msgctxt "themes"
3292
+ msgid "Activate"
3293
+ msgstr "Aktywacja Licencji"
3294
+
3295
+ #: admin/templates/themes-item.tpl.php:35
3296
+ msgctxt "themes"
3297
+ msgid "Version:"
3298
+ msgstr ""
3299
+
3300
+ # @ WPBDM
3301
+ #: admin/templates/themes-item.tpl.php:38
3302
+ #, fuzzy
3303
+ msgctxt "themes"
3304
+ msgid "Author:"
3305
+ msgstr "Autor"
3306
+
3307
+ # @ WPBDM
3308
+ #: admin/templates/themes-licenses.tpl.php:24
3309
+ #, fuzzy
3310
+ msgctxt "themes"
3311
+ msgid "Deactivate License"
3312
+ msgstr "Dezaktywacja Licencji"
3313
+
3314
+ # @ WPBDM
3315
+ #: admin/templates/themes-licenses.tpl.php:27
3316
+ #, fuzzy
3317
+ msgctxt "themes"
3318
+ msgid "Deactivating license..."
3319
+ msgstr "Dezaktywowanie Licencji"
3320
+
3321
+ # @ WPBDM
3322
+ #: admin/templates/themes-licenses.tpl.php:29
3323
+ #, fuzzy
3324
+ msgctxt "themes"
3325
+ msgid "Activate License"
3326
+ msgstr "Aktywacja Licencji"
3327
+
3328
+ # @ WPBDM
3329
+ #: admin/templates/themes-licenses.tpl.php:30
3330
+ #, fuzzy
3331
+ msgctxt "themes"
3332
+ msgid "Activating license..."
3333
+ msgstr "Aktywowanie Licencji"
3334
+
3335
+ #: admin/templates/themes-tabs.tpl.php:6
3336
+ msgctxt "admin themes"
3337
+ msgid "Available Themes"
3338
+ msgstr ""
3339
+
3340
+ # @ WPBDM
3341
+ #: admin/templates/themes-tabs.tpl.php:7
3342
+ #, fuzzy
3343
+ msgctxt "admin themes"
3344
+ msgid "Licenses"
3345
+ msgstr "Licencje"
3346
+
3347
+ # @ WPBDM
3348
+ #: admin/templates/themes.tpl.php:5
3349
+ #, fuzzy
3350
+ msgctxt "themes"
3351
+ msgid "Settings"
3352
+ msgstr "Ustawienia"
3353
+
3354
+ #: admin/templates/themes.tpl.php:15
3355
+ msgctxt "themes"
3356
+ msgid ""
3357
+ "<a><b>Directory Themes</b></a> are pre-made templates for the <i>Business "
3358
+ "Directory Plugin</i> to change the look of the directory quickly and easily. "
3359
+ "We have a number of them available for purchase <a>here</a>."
3360
+ msgstr ""
3361
+
3362
+ #: admin/templates/themes.tpl.php:16
3363
+ msgctxt "themes"
3364
+ msgid ""
3365
+ "They are <strong>different</strong> than your regular WordPress theme and "
3366
+ "they are <strong>not</strong> a replacement for WP themes either. They will "
3367
+ "change the look and feel of your business directory only."
3368
+ msgstr ""
3369
+
3370
+ # @ WPBDM
3371
+ #: admin/templates/transactions.tpl.php:2
3372
+ msgctxt "admin transactions"
3373
+ msgid "Transactions"
3374
+ msgstr "Transakcje"
3375
+
3376
+ # @ WPBDM
3377
+ #: admin/templates/uninstall-capture-form.tpl.php:5
3378
+ msgctxt "uninstall"
3379
+ msgid "It doesn't work with my theme/plugins/site"
3380
+ msgstr "To nie działa z moim szablonem/pluginem/stroną"
3381
+
3382
+ # @ WPBDM
3383
+ #: admin/templates/uninstall-capture-form.tpl.php:6
3384
+ msgctxt "uninstall"
3385
+ msgid "I can't set it up/Too complicated"
3386
+ msgstr "Nie mogę ustawić / Zbyt skomplikowane"
3387
+
3388
+ # @ WPBDM
3389
+ #: admin/templates/uninstall-capture-form.tpl.php:7
3390
+ msgctxt "uninstall"
3391
+ msgid "Doesn't solve my problem"
3392
+ msgstr "Nie rozwiązano mojego problemu"
3393
+
3394
+ # @ WPBDM
3395
+ #: admin/templates/uninstall-capture-form.tpl.php:8
3396
+ msgctxt "uninstall"
3397
+ msgid "Don't need it anymore/Not using it"
3398
+ msgstr "Więcej go nie potrzebuje/Nie używam go"
3399
+
3400
+ # @ WPBDM
3401
+ #: admin/templates/uninstall-capture-form.tpl.php:9
3402
+ msgctxt "uninstall"
3403
+ msgid "Other"
3404
+ msgstr "Inne"
3405
+
3406
+ # @ WPBDM
3407
+ #: admin/templates/uninstall-capture-form.tpl.php:16
3408
+ msgctxt "uninstall"
3409
+ msgid ""
3410
+ "We're sorry to see you leave. Could you take 10 seconds and answer one "
3411
+ "question for us to help us make the product better for everyone in the "
3412
+ "future?"
3413
+ msgstr ""
3414
+ "Jest nam przykro, że nas opuszczasz. Czy możesz poświęcić nam 10sekund i "
3415
+ "odpowidzieć na kilka pytań, abyśmy mogli lepiej dostosować nasz produkt dla "
3416
+ "potrzeb innych użytkowników?"
3417
+
3418
+ # @ WPBDM
3419
+ #: admin/templates/uninstall-capture-form.tpl.php:19
3420
  msgctxt "uninstall"
3421
  msgid "Why are you deleting Business Directory Plugin?"
3422
  msgstr "Dla czego odinstalowujesz Katalog Firm?"
3423
 
3424
+ # @ WPBDM
3425
  #: admin/templates/uninstall-capture-form.tpl.php:29
 
3426
  msgctxt "uninstall"
3427
  msgid "Please tell us why are you deleting Business Directory Plugin."
3428
  msgstr "Prosimy Napisz nam dla czego odinstalowujesz Katalog Firm?"
3429
 
3430
+ # @ WPBDM
3431
  #: admin/templates/uninstall-capture-form.tpl.php:36
 
3432
  msgctxt "uninstall"
3433
  msgid "Uninstall Plugin"
3434
  msgstr "Odinstaluj Plugin"
3435
 
3436
+ # @ WPBDM
3437
  #: admin/templates/uninstall-complete.tpl.php:2
 
3438
  msgctxt "admin uninstall"
3439
  msgid "Uninstall Business Directory"
3440
  msgstr "Odinstaluj Katalog Firm"
3441
 
3442
+ # @ WPBDM
3443
  #: admin/templates/uninstall-complete.tpl.php:7
 
3444
  msgctxt "admin uninstall"
3445
  msgid "Uninstall completed."
3446
  msgstr "Deinstalacja zakończona."
3447
 
3448
+ # @ WPBDM
3449
  #: admin/templates/uninstall-complete.tpl.php:8
 
3450
  msgctxt "admin uninstall"
3451
  msgid "Return to Dashboard."
3452
  msgstr "Powrót do Panelu Admina WP."
3453
 
3454
+ # @ WPBDM
3455
  #: admin/templates/uninstall-confirm.tpl.php:1
 
3456
  msgctxt "uninstall"
3457
  msgid "Uninstall Business Directory Plugin"
3458
  msgstr "Odinstaluj Katalog Firm"
3459
 
3460
+ # @ WPBDM
3461
  #: admin/tracking.php:188
 
3462
  msgctxt "tracking"
3463
  msgid "Help Improve Business Directory"
3464
  msgstr "Pomóż doskonalić Katalog Firm"
3465
 
3466
+ # @ WPBDM
3467
  #: admin/tracking.php:190
 
3468
  msgctxt "tracking"
3469
+ msgid ""
3470
+ "Can Business Directory keep track of your theme, plugins, and other non-"
3471
+ "personal, non-identifying information to help us in testing the plugin for "
3472
+ "future releases?"
3473
+ msgstr ""
3474
+ "Czy Katalog Firm może śledzić, templatki, wtyczki i inne informacje "
3475
+ "niebędące danymi osobowymi, nieidentyfikujące aby pomóc nam w testowaniu "
3476
+ "pluginu dla przyszłych wersji?"
3477
 
3478
+ # @ WPBDM
3479
  #: admin/tracking.php:192
 
3480
  msgctxt "tracking"
3481
  msgid "What do you track?"
3482
  msgstr "Co śledzicie?"
3483
 
3484
+ # @ WPBDM
3485
  #: admin/tracking.php:214
 
3486
  msgctxt "tracking"
3487
  msgid "No, Thanks."
3488
  msgstr "Nie, dziękuję"
3489
 
3490
+ # @ WPBDM
3491
  #: admin/tracking.php:221
 
3492
  msgctxt "tracking"
3493
  msgid "Allow Tracking"
3494
  msgstr "Zezwalam na śledzenie"
3495
 
3496
+ # @ WPBDM
3497
+ #: business-directory-plugin.php:668
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
3498
  msgctxt "admin plugins"
3499
  msgid "Settings"
3500
  msgstr "Ustawienia"
3501
 
3502
+ # @ WPBDM
3503
+ #: business-directory-plugin.php:776 business-directory-plugin.php:783
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
3504
  msgctxt "rss feed"
3505
  msgid "%s Feed"
3506
  msgstr "%s RSS"
3507
 
3508
+ # @ WPBDM
3509
+ #: business-directory-plugin.php:1137 core/view-submit-listing.php:58
3510
+ #: core/views/submit_listing.php:10
3511
+ #, fuzzy
3512
+ msgctxt "views"
3513
  msgid "Submit A Listing"
3514
  msgstr "Dodaj Firmę"
3515
 
3516
+ # @ WPBDM
3517
+ #: business-directory-plugin.php:1142
3518
  msgctxt "title"
3519
  msgid "Find a Listing"
3520
  msgstr "Znajdź Firmę"
3521
 
3522
+ # @ WPBDM
3523
+ #: business-directory-plugin.php:1147
3524
  msgctxt "title"
3525
  msgid "View All Listings"
3526
  msgstr "Zobacz wszystkie Firmy"
3527
 
3528
+ # @ WPBDM
3529
+ #: business-directory-plugin.php:1176
 
3530
  msgctxt "title"
3531
  msgid "Listings tagged: %s"
3532
  msgstr "Oferty otagowane: %s"
3533
 
3534
+ # @ WPBDM
3535
+ #: core/api.php:401
3536
+ #, fuzzy
3537
+ msgid "Free"
3538
+ msgstr "Tryb Bezpłatny"
3539
+
3540
+ #: core/class-csv-import.php:394
3541
+ msgctxt "admin csv-import"
3542
+ msgid ""
3543
+ "Could not create listing category \"<category-name>\". The operation failed "
3544
+ "with the following error: <error-message>."
3545
+ msgstr ""
3546
+
3547
+ # @ WPBDM
3548
+ #: core/class-csv-import.php:400
3549
+ msgctxt "admin csv-import"
3550
+ msgid "Could not create listing category \"%s\""
3551
+ msgstr "Nie można utworzyć kategorii ofert \"%s\""
3552
+
3553
+ # @ WPBDM
3554
+ #: core/class-csv-import.php:544
3555
+ msgctxt "admin csv-import"
3556
+ msgid "Username \"%s\" does not exist"
3557
+ msgstr "Użytkownik \"%s\" nie istnieje"
3558
+
3559
+ # @ WPBDM
3560
+ #: core/class-csv-import.php:576
3561
+ msgctxt "admin csv-import"
3562
+ msgid "Missing required field: %s"
3563
+ msgstr "Brak wymaganego pola: %s"
3564
+
3565
+ # @ WPBDM
3566
+ #: core/class-csv-import.php:596
3567
+ msgctxt "admin csv-import"
3568
+ msgid "Listing category \"%s\" does not exist"
3569
+ msgstr "Kategoria \"%s\" nie istnieje"
3570
+
3571
+ # @ WPBDM
3572
+ #: core/class-fee-plan.php:46
3573
+ msgctxt "fees-api"
3574
+ msgid "Fee label is required."
3575
+ msgstr "Etykieta abonamentu jest wymagana."
3576
+
3577
+ # @ WPBDM
3578
+ #: core/class-fee-plan.php:49
3579
+ msgctxt "fees-api"
3580
+ msgid "Fee amount must be a non-negative decimal number."
3581
+ msgstr "Kwota abonamentu musi być dodatnią liczbą dziesiętną."
3582
+
3583
+ # @ WPBDM
3584
+ #: core/class-fee-plan.php:52
3585
+ msgctxt "fees-api"
3586
+ msgid "Fee must apply to at least one category."
3587
+ msgstr "Abonament musi być stosowany do co najmniej jednej kategorii."
3588
+
3589
+ # @ WPBDM
3590
+ #: core/class-fee-plan.php:57
3591
+ msgctxt "fees-api"
3592
+ msgid "Fee listing duration must be a number less than 10 years (3650 days)."
3593
+ msgstr ""
3594
+ "Abonament dla okresu ważności oferty musi zawierać się w liczbie dodatniej, "
3595
+ "całkowitej."
3596
+
3597
+ # @ WPBDM
3598
+ #: core/class-fees-api.php:20
3599
+ msgctxt "fees-api"
3600
+ msgid "Free Listing"
3601
+ msgstr "Oferta Bezpłatna"
3602
 
3603
+ # @ WPBDM
3604
+ #: core/class-form-field.php:56
3605
  msgctxt "form-fields-api"
3606
  msgid "Invalid form field type"
3607
  msgstr "Niewłaściwy typ Pola"
3608
 
3609
+ # @ WPBDM
3610
+ #: core/class-form-field.php:505
3611
  msgctxt "form-fields-api"
3612
  msgid "Field label is required."
3613
  msgstr "Etykieta pola jest wymagana."
3614
 
3615
+ #: core/class-form-field.php:515
3616
+ msgctxt "form-fields-api"
3617
+ msgid "Requested field type change is incompatible. Type will not be modified."
3618
+ msgstr ""
3619
+
3620
+ # @ WPBDM
3621
+ #: core/class-form-field.php:535
3622
  msgctxt "form-fields-api"
3623
+ msgid ""
3624
+ "There can only be one field with association \"%s\". Please select another "
3625
+ "association."
3626
+ msgstr ""
3627
+ "Może być użyte tylko jedno pole z przypisaniem \"%s\". Prosze wybrać inne "
3628
+ "przypisanie."
3629
 
3630
+ # @ WPBDM
3631
+ #: core/class-form-field.php:545
 
3632
  msgctxt "form-fields-api"
3633
  msgid "\"%s\" is an invalid field type for this association."
3634
  msgstr "\"%s\" jest niewłaściwym typem pola do tego przypisania"
3635
 
3636
+ # @ WPBDM
3637
+ #: core/class-form-field.php:583
3638
  msgctxt "form-fields-api"
3639
  msgid "Invalid field ID"
3640
  msgstr "Niewłaściwe ID Pola"
3641
 
3642
+ # @ WPBDM
3643
+ #: core/class-form-field.php:592
3644
  msgctxt "form-fields api"
3645
+ msgid ""
3646
+ "This form field can't be deleted because it is required for the plugin to "
3647
+ "work."
3648
+ msgstr ""
3649
+ "To pole formularza nie może zostac usunięte, ponieważ jest ono nie zbędne do "
3650
+ "działania pluginu."
3651
 
3652
+ # @ WPBDM
3653
+ #: core/class-form-field.php:604
3654
  msgctxt "form-fields-api"
3655
  msgid "An error occurred while trying to delete this field."
3656
  msgstr "Wykryto błąd w trakcie próby usunięcia tego pola."
3657
 
3658
+ # @ WPBDM
3659
+ #: core/class-gateway.php:133
3660
+ #, fuzzy
3661
+ msgctxt "billing info"
3662
+ msgid "Please enter a valid e-mail address."
3663
+ msgstr "Proszę wprowadzić poprawny adres e-mail."
 
 
 
 
 
3664
 
3665
+ # @ WPBDM
3666
+ #: core/class-gateway.php:136
3667
+ msgctxt "billing info"
3668
+ msgid "First name is required."
3669
+ msgstr "Imię jest wymagane."
3670
+
3671
+ # @ WPBDM
3672
+ #: core/class-gateway.php:139
3673
+ msgctxt "billing info"
3674
+ msgid "Last name is required."
3675
+ msgstr "Nazwisko jest wymagane."
3676
+
3677
+ # @ WPBDM
3678
+ #: core/class-gateway.php:142
3679
+ msgctxt "billing info"
3680
+ msgid "Credit card number is required."
3681
+ msgstr "Numer karty kredytowej jest wymagany."
3682
+
3683
+ # @ WPBDM
3684
+ #: core/class-gateway.php:145
3685
+ msgctxt "billing info"
3686
+ msgid "Credit card expiration date is invalid."
3687
+ msgstr "Nieprawidłowa data ważności karty kredytowej."
3688
+
3689
+ # @ WPBDM
3690
+ #: core/class-gateway.php:148
3691
+ msgctxt "billing info"
3692
+ msgid "Credit card CVC number is required."
3693
+ msgstr "Nieprawidłowy numer CVC karty kredytowej."
3694
+
3695
+ # @ WPBDM
3696
+ #: core/class-gateway.php:151
3697
+ msgctxt "billing info"
3698
+ msgid "Country is required."
3699
+ msgstr "Kraj jest wymagany."
3700
+
3701
+ # @ WPBDM
3702
+ #: core/class-gateway.php:154
3703
+ msgctxt "billing info"
3704
+ msgid "Address is required."
3705
+ msgstr "Adres jest wymagany."
3706
+
3707
+ # @ WPBDM
3708
+ #: core/class-listing-upgrade-api.php:16
3709
+ msgctxt "listings-api"
3710
+ msgid "Normal Listing"
3711
+ msgstr "Normalna oferta"
3712
+
3713
+ # @ WPBDM
3714
+ #: core/class-listing-upgrade-api.php:20
3715
+ msgctxt "listings-api"
3716
+ msgid "Featured Listing"
3717
+ msgstr "Wyróżniona oferta"
3718
+
3719
+ # @ WPBDM
3720
+ #: core/class-listing.php:319 core/class-listing.php:345
3721
  msgctxt "listing"
3722
  msgid "(Fee Unavailable)"
3723
  msgstr "(Abonament niedostępny)"
3724
 
3725
+ # @ WPBDM
3726
+ #: core/class-listings-api.php:310
 
3727
  msgctxt "notify email"
3728
  msgid "[%s] New listing notification"
3729
  msgstr "[%s] Powiadomienie o Nowej ofercie"
3730
 
3731
+ # @ WPBDM
3732
+ #: core/class-listings-api.php:329
 
3733
  msgctxt "notify email"
3734
  msgid "[%s] Listing edit notification"
3735
  msgstr "[%s] Powiadomienie o Edycji oferty"
3736
 
3737
+ # @ WPBDM
3738
+ #: core/class-listings-widget.php:45 core/widget-search.php:22
 
3739
  msgctxt "widgets"
3740
  msgid "Title:"
3741
  msgstr "Tytuł:"
3742
 
3743
+ # @ WPBDM
3744
  #: core/class-listings-widget.php:51
 
3745
  msgctxt "widgets"
3746
  msgid "Number of listings to display:"
3747
  msgstr "Liczba wyświetlanych ofert"
3748
 
3749
+ # @ WPBDM
3750
  #: core/class-listings-widget.php:60
 
3751
  msgctxt "widgets"
3752
  msgid "Thumbnails"
3753
  msgstr "Miniatury"
3754
 
3755
+ # @ WPBDM
3756
  #: core/class-listings-widget.php:68
 
3757
  msgctxt "widgets"
3758
  msgid "Show thumbnails"
3759
  msgstr "Pokaż Miniatury"
3760
 
3761
+ # @ WPBDM
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
3762
  #: core/class-listings-widget.php:72
 
3763
  msgctxt "widgets"
3764
  msgid "Image width (in px):"
3765
  msgstr "Szerokość Obrazu (w px):"
3766
 
3767
+ # @ WPBDM
3768
  #: core/class-listings-widget.php:78
 
3769
  msgctxt "widgets"
3770
  msgid "Leave blank for automatic width."
3771
  msgstr "Zostaw puste, aby automatycznie ustawić szerokość."
3772
 
3773
+ # @ WPBDM
3774
  #: core/class-listings-widget.php:83
 
3775
  msgctxt "widgets"
3776
  msgid "Image height (in px):"
3777
  msgstr "Wysokość Obrazu (w px)"
3778
 
3779
+ # @ WPBDM
3780
  #: core/class-listings-widget.php:89
 
3781
  msgctxt "widgets"
3782
  msgid "Leave blank for automatic height."
3783
  msgstr "Zostaw puste, aby automatycznie ustawić wysokość."
3784
 
3785
+ # @ WPBDM
3786
+ #: core/class-payment.php:223 core/view-submit-listing.php:488
 
3787
  msgctxt "listings"
3788
+ msgid "Fee \"%s\" for category \"%s\"%s"
3789
  msgstr "Abonament \"%s\" dla kategorii \"%s\""
3790
 
3791
+ # @ WPBDM
3792
+ #: core/class-payment.php:226 core/view-submit-listing.php:491
3793
+ msgctxt "listings"
3794
+ msgid "(recurring)"
3795
+ msgstr "(powtarzające się)"
3796
+
3797
+ # @ WPBDM
3798
+ #: core/class-recaptcha.php:100 core/class-recaptcha.php:115
3799
+ #, fuzzy
3800
+ msgctxt "recaptcha"
3801
+ msgid "The reCAPTCHA wasn't entered correctly."
3802
+ msgstr "ReCaptcha nie została poprawnie wprowadzona."
3803
+
3804
+ # @ WPBDM
3805
  #: core/class-settings.php:24
 
3806
  msgctxt "admin settings"
3807
  msgid "General"
3808
  msgstr "Główne"
3809
 
3810
+ # @ WPBDM
3811
  #: core/class-settings.php:26
 
3812
  msgctxt "admin settings"
3813
  msgid "Data Collection"
3814
  msgstr "Zbiór danych"
3815
 
3816
+ # @ WPBDM
3817
  #: core/class-settings.php:29
 
3818
  msgctxt "admin settings"
3819
+ msgid ""
3820
+ "Allow BD to anonymously collect information about your installed plugins, "
3821
+ "themes and WP version?"
3822
+ msgstr ""
3823
+ "Pozwalać Pluginowi BD na zbieranie danych dotyczących zainstalowanych "
3824
+ "szblonów, pluginów i wersji WP?"
3825
 
3826
+ # @ WPBDM
3827
  #: core/class-settings.php:34
 
3828
  msgctxt "admin settings"
3829
  msgid "<a>Learn more</a> about what BD does and does NOT track."
3830
  msgstr "<a>Dowiedz się więcej</a> na temat danych jakie zbiera plugin BD."
3831
 
3832
+ # @ WPBDM
3833
  #: core/class-settings.php:37
 
3834
  msgctxt "admin settings"
3835
  msgid "Permalink Settings"
3836
  msgstr "Ustawienia linków"
3837
 
3838
+ # @ WPBDM
3839
  #: core/class-settings.php:38
 
3840
  msgctxt "admin settings"
3841
  msgid "Directory Listings Slug"
3842
  msgstr "Slug Katalogu Firm"
3843
 
3844
+ # @ WPBDM
3845
  #: core/class-settings.php:39
 
3846
  msgctxt "admin settings"
3847
  msgid "Categories Slug"
3848
  msgstr "Slug Kategorii"
3849
 
3850
+ # @ WPBDM
3851
  #: core/class-settings.php:39
 
3852
  msgctxt "admin settings"
3853
+ msgid ""
3854
+ "The slug can't be in use by another term. Avoid \"category\", for instance."
3855
+ msgstr ""
3856
+ "Slug nie może być użyty dla innych warunków. Unikać dla przykładu \"kategoria"
3857
+ "\"."
3858
 
3859
+ # @ WPBDM
3860
  #: core/class-settings.php:40
 
3861
  msgctxt "admin settings"
3862
  msgid "Tags Slug"
3863
  msgstr "Slug Tagów"
3864
 
3865
+ # @ WPBDM
3866
  #: core/class-settings.php:40
 
3867
  msgctxt "admin settings"
3868
  msgid "The slug can't be in use by another term. Avoid \"tag\", for instance."
3869
+ msgstr ""
3870
+ "Slug nie może być użyty dla innych warunków. Unikać dla przykładu \"tag\"."
3871
 
3872
+ # @ WPBDM
3873
  #: core/class-settings.php:43
 
3874
  msgctxt "admin settings"
3875
  msgid "Remove listing ID from directory URLs?"
3876
  msgstr "Usuwać ID oferty z linków URL?"
3877
 
3878
+ # @ WPBDM
3879
+ #: core/class-settings.php:46
3880
+ msgctxt "admin settings"
3881
+ msgid ""
3882
+ "Prior to 3.5.1, we included the ID in the listing URL, like \"/business-"
3883
+ "directory/1809/listing-title\". Check this setting to remove the ID for "
3884
+ "better SEO."
3885
+ msgstr ""
3886
+ "Zgodnie z zaleceniami wersji 3.5.1, dołączamy nr ID do linku URL. Wygląda to "
3887
+ "następująco \"/business-directory/1809/listing-title\". Zaznacz tą opcje aby "
3888
+ "polepszyć SEO."
3889
+
3890
+ # @ WPBDM
3891
  #: core/class-settings.php:50
 
3892
  msgctxt "admin settings"
3893
  msgid "reCAPTCHA Settings"
3894
  msgstr "Ustawienia reCAPTCHA"
3895
 
3896
+ # @ WPBDM
3897
  #: core/class-settings.php:53
 
3898
  msgctxt "admin settings"
3899
  msgid "Need API keys for reCAPTCHA? Get them <a>here</a>."
3900
  msgstr "Potrzebujesz klucza API dla reCAPTCHA? Jest <a>tutaj</a>."
3901
 
3902
+ # @ WPBDM
3903
  #: core/class-settings.php:55
 
3904
  msgctxt "admin settings"
3905
  msgid "Use reCAPTCHA for contact forms"
3906
  msgstr "Użyj reCAPTCHA dla formularza kontaktu."
3907
 
3908
  #: core/class-settings.php:56
3909
+ msgctxt "admin settings"
3910
+ msgid "Turn off reCAPTCHA for logged in users?"
3911
+ msgstr ""
3912
+
3913
+ # @ WPBDM
3914
+ #: core/class-settings.php:57
3915
  msgctxt "admin settings"
3916
  msgid "Use reCAPTCHA for listing submits"
3917
  msgstr "Użyj reCAPTCHA dla wiadomości do właściciela oferty."
3918
 
3919
+ # @ WPBDM
3920
+ #: core/class-settings.php:60
3921
  msgctxt "admin settings"
3922
  msgid "Use reCAPTCHA for listing comments?"
3923
  msgstr "Użyć reCAPTCHA dla komentarzy ofert?"
3924
 
3925
+ # @ WPBDM
3926
+ #: core/class-settings.php:63
3927
  msgctxt "admin settings"
3928
  msgid "reCAPTCHA Public Key"
3929
  msgstr "reCAPTCHA Klucz publiczny"
3930
 
3931
+ # @ WPBDM
3932
+ #: core/class-settings.php:64
3933
  msgctxt "admin settings"
3934
  msgid "reCAPTCHA Private Key"
3935
  msgstr "reCAPTCHA Klucz prywatny"
3936
 
3937
+ #: core/class-settings.php:70
3938
+ msgctxt "admin settings"
3939
+ msgid ""
3940
+ "We expect that a membership plugin supports the 'redirect_to' parameter for "
3941
+ "the URLs below to work. If the plugin does not support them, these settings "
3942
+ "will not function as expected. Please contact the membership plugin and ask "
3943
+ "them to support the WP standard 'redirect_to' query parameter."
3944
+ msgstr ""
3945
+
3946
+ # @ WPBDM
3947
+ #: core/class-settings.php:73
3948
+ msgctxt "admin settings"
3949
+ msgid "Registration Settings"
3950
+ msgstr "Ustawienia Rejestracji"
3951
+
3952
+ # @ WPBDM
3953
+ #: core/class-settings.php:74
3954
+ msgctxt "admin settings"
3955
+ msgid "Require login to post listings?"
3956
+ msgstr "Żądać zalogowania aby umożliwić zamieszczanie ofert?"
3957
+
3958
+ # @ WPBDM
3959
+ #: core/class-settings.php:79
3960
+ #, fuzzy
3961
+ msgctxt "admin settings"
3962
+ msgid "Login URL"
3963
+ msgstr "Logowanie"
3964
+
3965
+ # @ WPBDM
3966
+ #: core/class-settings.php:82
3967
+ #, fuzzy
3968
+ msgctxt "admin settings"
3969
+ msgid ""
3970
+ "URL of your membership plugin's login page. Only enter this if using a "
3971
+ "membership plugin or custom login page."
3972
+ msgstr ""
3973
+ "Adres URL do strony rejestracji pluginów (tylko członkostwo). Wprowadź, "
3974
+ "jeśli jesteś zarejestrowanym członkiem i posiadasz pluginy lub indywidualne "
3975
+ "ustawienia stron."
3976
+
3977
+ # @ WPBDM
3978
+ #: core/class-settings.php:87
3979
+ msgctxt "admin settings"
3980
+ msgid "Registration URL"
3981
+ msgstr "Rejestracja na URL"
3982
+
3983
+ # @ WPBDM
3984
+ #: core/class-settings.php:90
3985
+ msgctxt "admin settings"
3986
+ msgid ""
3987
+ "URL of your membership plugin's registration page. Only enter this if using "
3988
+ "a membership plugin or custom registration page."
3989
+ msgstr ""
3990
+ "Adres URL do strony rejestracji pluginów (tylko członkostwo). Wprowadź, "
3991
+ "jeśli jesteś zarejestrowanym członkiem i posiadasz pluginy lub indywidualne "
3992
+ "ustawienia stron."
3993
+
3994
+ # @ WPBDM
3995
+ #: core/class-settings.php:95 core/class-settings.php:104
3996
  msgctxt "admin settings"
3997
  msgid "Terms and Conditions"
3998
  msgstr "Warunki i regulamin korzystania z serwisu."
3999
 
4000
+ # @ WPBDM
4001
+ #: core/class-settings.php:98
4002
  msgctxt "admin settings"
4003
  msgid "Display and require user agreement to Terms and Conditions"
4004
+ msgstr ""
4005
+ "Pokaż i żądaj od użytkownika przeczytania \"Warunki i regulamin korzystania "
4006
+ "z serwisu\"."
4007
 
4008
+ # @ WPBDM
4009
+ #: core/class-settings.php:106
4010
+ #, fuzzy
4011
+ msgctxt "admin settings"
4012
+ msgid ""
4013
+ "Terms and Conditions text goes here...\n"
4014
+ "\n"
4015
+ msgstr "Warunki i regulamin korzystania z serwisu."
4016
+
4017
+ # @ WPBDM
4018
+ #: core/class-settings.php:107
4019
  msgctxt "admin settings"
4020
+ msgid ""
4021
+ "Enter text or a URL starting with http. If you use a URL, the Terms and "
4022
+ "Conditions text will be replaced by a link to the appropiate page."
4023
+ msgstr ""
4024
+ "Wprowadź tekst lub adres url zaczynając od http://. Jeśli wprowadzisz adres "
4025
+ "url, regulamin i warunki korzystania z serwisu zostaną zastąpione linkiem "
4026
+ "do odpowiedniej strony."
4027
 
4028
+ # @ WPBDM
4029
+ #: core/class-settings.php:111
4030
  msgctxt "admin settings"
4031
  msgid "Directory Display Options"
4032
  msgstr "Opcje wyświetlania Katalogu"
4033
 
4034
+ #: core/class-settings.php:112
4035
+ msgctxt "admin settings"
4036
+ msgid "Disable Frontend Listing Submission?"
4037
+ msgstr ""
4038
+
4039
+ # @ WPBDM
4040
+ #: core/class-settings.php:113
4041
  msgctxt "admin settings"
4042
  msgid "Show the \"Submit listing\" button."
4043
  msgstr "Wyświetl przycisk \"Dodaj Firmę\" ."
4044
 
4045
+ # @ WPBDM
4046
+ #: core/class-settings.php:115
4047
  msgctxt "admin settings"
4048
  msgid "Show \"Search listings\"."
4049
  msgstr "Wyświetl \"Szukaj Firmy\"."
4050
 
4051
+ # @ WPBDM
4052
+ #: core/class-settings.php:116
4053
  msgctxt "admin settings"
4054
  msgid "Show the \"View Listings\" button."
4055
  msgstr "Wyświetl przycisk \"Pokaż Firmy\" ."
4056
 
4057
+ # @ WPBDM
4058
+ #: core/class-settings.php:117
4059
  msgctxt "admin settings"
4060
  msgid "Show the \"Directory\" button."
4061
  msgstr "Wyświetl przycisk \"Katalog\" ."
4062
 
4063
+ #: core/class-settings.php:118
4064
+ msgctxt "admin settings"
4065
+ msgid "Disable advanced CPT integration?"
4066
+ msgstr ""
4067
+
4068
+ # @ WPBDM
4069
+ #: core/class-settings.php:123
4070
  msgctxt "admin settings"
4071
  msgid "Directory Search"
4072
  msgstr "Katalog Szukanie"
4073
 
4074
+ #: core/class-settings.php:131
 
4075
  msgctxt "admin settings"
4076
+ msgid "Search form display"
4077
+ msgstr ""
4078
 
4079
+ #: core/class-settings.php:135
 
4080
  msgctxt "admin settings"
4081
+ msgid "Above results"
4082
+ msgstr ""
4083
 
4084
+ #: core/class-settings.php:136
 
4085
  msgctxt "admin settings"
4086
+ msgid "Below results"
4087
+ msgstr ""
4088
 
4089
+ #: core/class-settings.php:137
 
4090
  msgctxt "admin settings"
4091
+ msgid "Don't show with results"
4092
+ msgstr ""
4093
 
4094
+ # @ WPBDM
4095
+ #: core/class-settings.php:142
 
4096
  msgctxt "admin settings"
4097
+ msgid ""
4098
+ "You have selected a textarea field to be included in quick searches. "
4099
+ "Searches involving those fields are very expensive and could result in "
4100
+ "timeouts and/or general slowness."
4101
+ msgstr ""
4102
+ "Zaznaczyłeś, aby pole tekstowe było dostępne w trybie szybkiego "
4103
+ "wyszukiwania. Wyszukiwania z udziałem tych pól są bardzo długie i mogą "
4104
+ "doprowadzić do przekroczenia limitu czasu i /lub ogólnego spowolnienia."
4105
 
4106
+ # @ WPBDM
4107
+ #: core/class-settings.php:144
4108
+ msgctxt "admin settings"
4109
+ msgid ""
4110
+ "Use Ctrl-Click to include multiple fields in the search. Choosing too many "
4111
+ "fields for inclusion into Quick Search can result in very slow search "
4112
+ "performance."
4113
+ msgstr ""
4114
+ "Użyj Ctrl + Kliknięcie aby zaznaczyć kilka naraz. Jeśli zaznaczysz zbyt dużo "
4115
+ "pól, może to znacząco spowolnić działanie wyszukiwarki."
4116
 
4117
+ # @ WPBDM
4118
+ #: core/class-settings.php:147
 
4119
  msgctxt "admin settings"
4120
+ msgid "Quick search fields"
4121
+ msgstr "Pola szybkiego wyszukiwania"
4122
 
4123
+ # @ WPBDM
4124
+ #: core/class-settings.php:155
4125
  msgctxt "admin settings"
4126
  msgid "Enable high performance searches?"
4127
  msgstr "Włączyć zaawansowane wyszsukiwanie?"
4128
 
4129
+ # @ WPBDM
4130
+ #: core/class-settings.php:158
4131
+ msgctxt "admin settings"
4132
+ msgid ""
4133
+ "Enabling this makes BD sacrifice result quality to improve speed. This is "
4134
+ "helpful if you're on shared hosting plans, where database performance is an "
4135
+ "issue."
4136
+ msgstr ""
4137
+ "Włączenie tej funkcji, spowoduje że Katalog Firm poświęci jakość "
4138
+ "wyszukiwania aby przyśpieszyć działanie wyszukiwarki. Pomocne w przypadku "
4139
+ "niektórych, wolniejszych hostingów."
4140
+
4141
+ # @ WPBDM
4142
+ #: core/class-settings.php:163
4143
  msgctxt "admin settings"
4144
+ msgid "Miscellaneous Settings"
4145
+ msgstr "Ustawienia Pozostałych funkcji"
4146
 
4147
+ # @ WPBDM
4148
+ #: core/class-settings.php:167
4149
  msgctxt "admin settings"
4150
+ msgid ""
4151
+ "Check this if you are having trouble with BD, particularly when importing or "
4152
+ "exporting CSV files."
4153
+ msgstr ""
4154
+ "Zaznacz tą opcję, jeśli Katalog Firm ma problemy z Importem lub Exportem "
4155
+ "Plików CSV."
4156
 
4157
+ # @ WPBDM
4158
+ #: core/class-settings.php:170
4159
  msgctxt "admin settings"
4160
+ msgid ""
4161
+ "If this compatibility mode doesn't solve your issue, you may be experiencing "
4162
+ "a more serious conflict. <a>Here is an article</a> about how to test for "
4163
+ "theme and plugin conflicts with Business Directory."
4164
+ msgstr ""
4165
+ "Jesli ten tryb kompatybilności nie rozwiązał Twojego problemu, możesz mieć "
4166
+ "do czynienia z poważniejszym konfliktem. <a>Tu znajduje się artykuł</a> o "
4167
+ "tym jak sprawdzać konflikty szablonów i pluginów działających w środowisku "
4168
+ "Katalogu Firm."
4169
 
4170
+ # @ WPBDM
4171
+ #: core/class-settings.php:173
4172
  msgctxt "admin settings"
4173
  msgid "Enable AJAX compatibility mode?"
4174
  msgstr "Włączyć tryb kompatybilności AJAX?"
4175
 
4176
+ # @ WPBDM
4177
+ #: core/class-settings.php:181 core/class-settings.php:679
4178
+ msgctxt "admin settings"
4179
+ msgid "Listings"
4180
+ msgstr "Oferty"
4181
+
4182
+ # @ WPBDM
4183
+ #: core/class-settings.php:182 core/class-settings.php:349
4184
+ #: core/class-settings.php:636
4185
+ msgctxt "admin settings"
4186
+ msgid "General Settings"
4187
+ msgstr "Ustawienia Główne"
4188
+
4189
+ # @ WPBDM
4190
+ #: core/class-settings.php:184
4191
  msgctxt "admin settings"
4192
  msgid "Listings per page"
4193
  msgstr "Firm na stronę"
4194
 
4195
+ # @ WPBDM
4196
+ #: core/class-settings.php:185
4197
  msgctxt "admin settings"
4198
+ msgid ""
4199
+ "Number of listings to show per page. Use a value of \"0\" to show all "
4200
+ "listings."
4201
+ msgstr ""
4202
+ "Ilość ofert wyświetlanych na jednej stronie. Użyj wartości \"0\", aby "
4203
+ "pokazać wszystkie oferty."
4204
 
4205
+ # @ WPBDM
4206
+ #: core/class-settings.php:187
4207
  msgctxt "admin settings"
4208
  msgid "Listing duration for no-fee sites (in days)"
4209
  msgstr "Okres ważności oferty dla trybu bezpłatnego (w dniach)"
4210
 
4211
+ # @ WPBDM
4212
+ #: core/class-settings.php:188
4213
  msgctxt "admin settings"
4214
+ msgid ""
4215
+ "Use a value of \"0\" to keep a listing alive indefinitely or enter a number "
4216
+ "less than 10 years (3650 days)."
4217
+ msgstr ""
4218
+ "Użyj wartości \"0\" dla okresu ważności oferty - na zawsze, lub wprowadź "
4219
+ "liczbę mniejszą od 10 lat (3650 dni)."
4220
 
4221
+ # @ WPBDM
4222
+ #: core/class-settings.php:194
4223
  msgctxt "admin settings"
4224
  msgid "Include listing contact form on listing pages?"
4225
  msgstr "Dołączyć formularz kontaktu z właścicielem na stronie oferty?"
4226
 
4227
+ # @ WPBDM
4228
+ #: core/class-settings.php:197
4229
  msgctxt "admin settings"
4230
+ msgid ""
4231
+ "Allows visitors to contact listing authors privately. Authors will receive "
4232
+ "the messages via email."
4233
+ msgstr ""
4234
+ "Pozwolić użytkownikom na kontakt bezpośredni z włascicielem ofert. "
4235
+ "Właściciel otrzyma e-mail ze strony."
4236
+
4237
+ #: core/class-settings.php:200
4238
+ msgctxt "admin settings"
4239
+ msgid "Open detailed view of listing in new tab?"
4240
+ msgstr ""
4241
 
4242
+ # @ WPBDM
4243
+ #: core/class-settings.php:205
4244
  msgctxt "admin settings"
4245
  msgid "Require login for using the contact form?"
4246
  msgstr "Wymagać logowania, aby używać formularza kontaktu?"
4247
 
4248
+ # @ WPBDM
4249
+ #: core/class-settings.php:211
4250
  msgctxt "admin settings"
4251
  msgid "Maximum number of contact form submits per day"
4252
  msgstr "Maksymalna liczba wiadomości wysłanych do właściciela w ciągu doby"
4253
 
4254
+ # @ WPBDM
4255
+ #: core/class-settings.php:214
4256
  msgctxt "admin settings"
4257
+ msgid ""
4258
+ "Use this to prevent spamming of listing owners. 0 means unlimited submits "
4259
+ "per day."
4260
  msgstr "Użyj aby ograniczyć spam do właściciela oferty. 0 oznacza brak limitu."
4261
 
4262
+ # @ WPBDM
4263
+ #: core/class-settings.php:222
4264
  msgctxt "admin settings"
4265
  msgid "Include comment form on listing pages?"
4266
  msgstr "Pozwolić na komentarze na stronie oferty?"
4267
 
4268
+ #: core/class-settings.php:225
4269
+ msgctxt "admin settings"
4270
+ msgid ""
4271
+ "BD uses the standard comment inclusion from WordPress, but most themes only "
4272
+ "allow for comments on posts, not pages. Some themes handle both. BD is "
4273
+ "displayed on a page, so we need a theme that can handle both to show "
4274
+ "comments. Use the 2nd option if you want to allow comments on listings "
4275
+ "first, and if that doesn't work, try the 3rd option instead."
4276
+ msgstr ""
4277
+
4278
+ # @ WPBDM
4279
+ #: core/class-settings.php:228
4280
+ #, fuzzy
4281
+ msgctxt "admin settings"
4282
+ msgid "Do not include comments in listings"
4283
+ msgstr "Pozwolić na komentarze na stronie oferty?"
4284
+
4285
+ # @ WPBDM
4286
+ #: core/class-settings.php:229
4287
+ #, fuzzy
4288
+ msgctxt "admin settings"
4289
+ msgid "Include comment form, theme invoked (standard option)"
4290
+ msgstr "Pozwolić na komentarze na stronie oferty?"
4291
+
4292
+ #: core/class-settings.php:230
4293
  msgctxt "admin settings"
4294
+ msgid "Include comment form, BD invoked (use only if 2nd option doesn't work)"
4295
+ msgstr ""
4296
 
4297
+ # @ WPBDM
4298
+ #: core/class-settings.php:238
4299
  msgctxt "admin settings"
4300
  msgid "Show listings under categories on main page?"
4301
  msgstr "Wyświetlać oferty pod kategoriami na stronie głównej?"
4302
 
4303
+ # @ WPBDM
4304
+ #: core/class-settings.php:239
4305
  msgctxt "admin settings"
4306
  msgid "Status of listings upon uninstalling plugin"
4307
  msgstr "Status dla ofert, gdy odinstalowujesz plugin"
4308
 
4309
+ #: core/class-settings.php:240 core/class-settings.php:242
4310
+ msgctxt "post status"
4311
+ msgid "Draft"
4312
+ msgstr ""
4313
+
4314
+ #: core/class-settings.php:240 core/class-settings.php:242
4315
+ msgctxt "post status"
4316
+ msgid "Trash"
4317
+ msgstr ""
4318
+
4319
+ # @ WPBDM
4320
+ #: core/class-settings.php:241
4321
  msgctxt "admin settings"
4322
  msgid "Status of deleted listings"
4323
  msgstr "Status dla ofert usuniętych"
4324
 
4325
+ # @ WPBDM
4326
+ #: core/class-settings.php:243
4327
+ #, fuzzy
4328
+ msgctxt "admin settings"
4329
+ msgid "Submit Listing instructions message"
4330
+ msgstr "Wiadomość do osoby kontaktowej z Oferty"
4331
+
4332
+ #: core/class-settings.php:243
4333
+ msgctxt "admin settings"
4334
+ msgid ""
4335
+ "This text is displayed at the first page of the Submit Listing process for "
4336
+ "Business Directory. You can use it for instructions about filling out the "
4337
+ "form or anything you want to tell users before they get started."
4338
+ msgstr ""
4339
+
4340
+ # @ WPBDM
4341
+ #: core/class-settings.php:245
4342
  msgctxt "admin settings"
4343
  msgid "Listing Renewal"
4344
  msgstr "Oferta Odświeżona"
4345
 
4346
+ # @ WPBDM
4347
+ #: core/class-settings.php:246
4348
  msgctxt "admin settings"
4349
  msgid "Turn on listing renewal option?"
4350
  msgstr "Włączyć opcję odnawiania ofert?"
4351
 
4352
+ # @ WPBDM
4353
+ #: core/class-settings.php:249
4354
  msgctxt "admin settings"
4355
  msgid "Allow recurring renewal payments?"
4356
  msgstr "Pozwalać na cykliczne płatności dla odnawiania ofert?"
4357
 
4358
+ # @ WPBDM
4359
+ #: core/class-settings.php:252
4360
  msgctxt "admin settings"
4361
+ msgid ""
4362
+ "Allow users to opt in for automatic renewal of their listings. The fee is "
4363
+ "charged at the time the listing expires without user intervention."
4364
+ msgstr ""
4365
+ "Pozwól użytkownikom zdecydować się na automatyczne przedłużenie ich ofert."
4366
+ "Opłata pobierana jest w momencie gdy oferta wygasa, bez interwencji "
4367
+ "użytkownika."
4368
 
4369
+ # @ WPBDM
4370
+ #: core/class-settings.php:256
4371
  msgctxt "admin settings"
4372
  msgid "Use recurring payments as the default payment method?"
4373
  msgstr "Używać cyklicznych płatności jako standardowej metody płatności?"
4374
 
4375
+ # @ WPBDM
4376
+ #: core/class-settings.php:259
4377
  msgctxt "admin settings"
4378
+ msgid ""
4379
+ "Enable automatic renewal without having users opt in during the submit "
4380
+ "process."
4381
+ msgstr ""
4382
+ "Włączyć utomatyczne odnawianie ofert bez konieczności informowania "
4383
+ "użytkowników w trakcie dodawania oferty."
4384
 
4385
+ # @ WPBDM
4386
+ #: core/class-settings.php:264
4387
  msgctxt "admin settings"
4388
  msgid "Listing renewal e-mail threshold (in days)"
4389
  msgstr "Powiadomienie o konieczności odnowienia oferty (w dniach)"
4390
 
4391
+ # @ WPBDM
4392
+ #: core/class-settings.php:267
4393
  msgctxt "admin settings"
4394
+ msgid ""
4395
+ "Configure how many days before listing expiration is the renewal e-mail sent."
4396
+ msgstr ""
4397
+ "Ustaw na ile dni przed wygaśnięciem oferty wysłać e-mail o konieczności "
4398
+ "odnowienia."
4399
 
4400
+ # @ WPBDM
4401
+ #: core/class-settings.php:271
4402
  msgctxt "admin settings"
4403
+ msgid ""
4404
+ "Send expiration notices including a cancel links to auto-renewed listings?"
4405
+ msgstr ""
4406
+ "Wysyłać powiadomienie o zbliżającym się końcu ważności ofert wraz z linkiem "
4407
+ "do auto-odnawiania ofert?"
4408
 
4409
+ # @ WPBDM
4410
+ #: core/class-settings.php:278
4411
  msgctxt "admin settings"
4412
  msgid "Remind listing owners of expired listings (past due)?"
4413
+ msgstr ""
4414
+ "Przypominać właścicielom ofert o wygaśnięciu okresu ważności oferty (po "
4415
+ "terminie)?"
4416
 
4417
+ # @ WPBDM
4418
+ #: core/class-settings.php:283
4419
  msgctxt "admin settings"
4420
  msgid "Listing renewal reminder e-mail threshold (in days)"
4421
  msgstr "Przypomnienie o konieczności odnowienia oferty (w dniach)"
4422
 
4423
+ # @ WPBDM
4424
+ #: core/class-settings.php:286
4425
  msgctxt "admin settings"
4426
+ msgid ""
4427
+ "Configure how many days after the expiration of a listing an e-mail reminder "
4428
+ "should be sent to the owner."
4429
+ msgstr ""
4430
+ "Ustaw po ilu dniach od wygaśnięcia oferty wysłać na dres e-mail właściciela "
4431
+ "przypomnienie o konieczności odnowienia oferty."
4432
 
4433
+ # @ WPBDM
4434
+ #: core/class-settings.php:289
4435
  msgctxt "admin settings"
4436
  msgid "Post/Category Settings"
4437
  msgstr "Ustawienia Postu/Kategori"
4438
 
4439
+ # @ WPBDM
4440
+ #: core/class-settings.php:290
4441
  msgctxt "admin settings"
4442
  msgid "Default new post status"
4443
  msgstr "Domyślny Status Nowego Postu"
4444
 
4445
+ #: core/class-settings.php:291 core/class-settings.php:294
4446
+ msgctxt "post status"
4447
+ msgid "Published"
4448
+ msgstr ""
4449
+
4450
+ # @ WPBDM
4451
+ #: core/class-settings.php:291 core/class-settings.php:294
4452
+ #, fuzzy
4453
+ msgctxt "post status"
4454
+ msgid "Pending"
4455
+ msgstr "Oczekujące"
4456
+
4457
+ # @ WPBDM
4458
+ #: core/class-settings.php:293
4459
  msgctxt "admin settings"
4460
  msgid "Edit post status"
4461
  msgstr "Status Postu po Edycji "
4462
 
4463
+ # @ WPBDM
4464
+ #: core/class-settings.php:295
4465
  msgctxt "admin settings"
4466
  msgid "Order categories list by"
4467
  msgstr "Sortuj Kategorie według "
4468
 
4469
+ # @ WPBDM
4470
+ #: core/class-settings.php:297
4471
  msgctxt "admin settings"
4472
  msgid "Name"
4473
  msgstr "Nazwa"
4474
 
4475
+ # @ WPBDM
4476
+ #: core/class-settings.php:298
4477
  msgctxt "admin settings"
4478
  msgid "Slug"
4479
  msgstr "Slug"
4480
 
4481
+ # @ WPBDM
4482
+ #: core/class-settings.php:299
4483
  msgctxt "admin settings"
4484
  msgid "Listing Count"
4485
  msgstr "Licznik ofert"
4486
 
4487
+ # @ WPBDM
4488
+ #: core/class-settings.php:301
4489
  msgctxt "admin settings"
4490
  msgid "Sort order for categories"
4491
  msgstr "Porządek wyświatlania dla kategorii"
4492
 
4493
+ # @ WPBDM
4494
+ #: core/class-settings.php:302 core/class-settings.php:320
 
4495
  msgctxt "admin settings"
4496
  msgid "Ascending"
4497
  msgstr "Rosnąco"
4498
 
4499
+ # @ WPBDM
4500
+ #: core/class-settings.php:302 core/class-settings.php:320
 
4501
  msgctxt "admin settings"
4502
  msgid "Descending"
4503
  msgstr "Malejąco"
4504
 
4505
+ # @ WPBDM
4506
+ #: core/class-settings.php:303
4507
  msgctxt "admin settings"
4508
  msgid "Show category post count?"
4509
  msgstr "Pokazywać liczbę ofert w kategorii?"
4510
 
4511
+ # @ WPBDM
4512
+ #: core/class-settings.php:304
4513
  msgctxt "admin settings"
4514
  msgid "Hide empty categories?"
4515
  msgstr "Ukryć puste kategorie?"
4516
 
4517
+ # @ WPBDM
4518
+ #: core/class-settings.php:305
4519
  msgctxt "admin settings"
4520
  msgid "Show only parent categories in category list?"
4521
  msgstr "Pokazywać tylko Nadrzędne kategorie na liście kategorii?"
4522
 
4523
+ # @ WPBDM
4524
+ #: core/class-settings.php:307
4525
  msgctxt "admin settings"
4526
  msgid "Listings Sorting"
4527
  msgstr "Porządkowanie Firm"
4528
 
4529
+ # @ WPBDM
4530
+ #: core/class-settings.php:308
4531
  msgctxt "admin settings"
4532
  msgid "Order directory listings by"
4533
  msgstr "Porządkuj listę według"
4534
 
4535
+ # @ WPBDM
4536
+ #: core/class-settings.php:310
4537
  msgctxt "admin settings"
4538
  msgid "Title"
4539
  msgstr "Tytuł"
4540
 
4541
+ # @ WPBDM
4542
+ #: core/class-settings.php:311
4543
  msgctxt "admin settings"
4544
  msgid "Author"
4545
  msgstr "Autor"
4546
 
4547
+ # @ WPBDM
4548
+ #: core/class-settings.php:312 core/class-settings.php:722
4549
  msgctxt "admin settings"
4550
  msgid "Date posted"
4551
  msgstr "Data publikacji"
4552
 
4553
+ # @ WPBDM
4554
+ #: core/class-settings.php:313 core/class-settings.php:723
4555
  msgctxt "admin settings"
4556
  msgid "Date last modified"
4557
  msgstr "Data ostatnij modyfikacji"
4558
 
4559
+ # @ WPBDM
4560
+ #: core/class-settings.php:314
4561
  msgctxt "admin settings"
4562
  msgid "Random"
4563
  msgstr "Losowo"
4564
 
4565
+ #: core/class-settings.php:315
4566
+ msgctxt "admin settings"
4567
+ msgid "Paid first then free. Inside each group by date."
4568
+ msgstr ""
4569
+
4570
+ #: core/class-settings.php:316
4571
  msgctxt "admin settings"
4572
+ msgid "Paid first then free. Inside each group by title."
4573
+ msgstr ""
4574
 
4575
+ # @ WPBDM
4576
+ #: core/class-settings.php:318
4577
  msgctxt "admin settings"
4578
  msgid "Sort directory listings by"
4579
  msgstr "Porządkuj oferty "
4580
 
4581
+ # @ WPBDM
4582
+ #: core/class-settings.php:319
4583
  msgctxt "admin settings"
4584
  msgid "Ascending for ascending order A-Z, Descending for descending order Z-A"
4585
  msgstr "Rosnąco (od A do Z). Malejąco (od Z do A)."
4586
 
4587
+ # @ WPBDM
4588
+ #: core/class-settings.php:324
4589
  msgctxt "admin settings"
4590
  msgid "Enable sort bar?"
4591
  msgstr "Włączyć pasek sortowania?"
4592
 
4593
+ # @ WPBDM
4594
+ #: core/class-settings.php:329
4595
  msgctxt "admin settings"
4596
  msgid "Sortbar Fields"
4597
  msgstr "Pola paska sortowania"
4598
 
4599
+ # @ WPBDM
4600
+ #: core/class-settings.php:338
4601
  msgctxt "admin settings"
4602
  msgid "Featured (Sticky) listing settings"
4603
  msgstr "Ustawienia Wyróżnienie (naklejka) oferty"
4604
 
4605
+ # @ WPBDM
4606
+ #: core/class-settings.php:339
4607
  msgctxt "admin settings"
4608
  msgid "Offer sticky listings?"
4609
  msgstr "Oferować wyróżnienia (naklejki)?"
4610
 
4611
+ # @ WPBDM
4612
+ #: core/class-settings.php:340
4613
  msgctxt "admin settings"
4614
  msgid "Offer upgrades during submit process?"
4615
  msgstr "Oferować wyróżnienia podczas rejestracji firmy?"
4616
 
4617
+ # @ WPBDM
4618
+ #: core/class-settings.php:341
4619
  msgctxt "admin settings"
4620
  msgid "Sticky listing price"
4621
  msgstr "Koszt naklejki"
4622
 
4623
+ # @ WPBDM
4624
+ #: core/class-settings.php:342
4625
  msgctxt "admin settings"
4626
  msgid "Sticky listing page description text"
4627
  msgstr "Strona opisu wyróżnienia oferty naklejką"
4628
 
4629
+ # @ WPBDM
4630
+ #: core/class-settings.php:343
4631
  msgctxt "admin settings"
4632
+ msgid ""
4633
+ "You can upgrade your listing to featured status. Featured listings will "
4634
+ "always appear on top of regular listings."
4635
+ msgstr ""
4636
+ "Możesz podnieść status Twojej oferty do statusu wyróżniona. Wyróżnione "
4637
+ "oferty są zawsze wyświetlane na górze strony, przed ofertami ze zwykłym "
4638
+ "statusem."
4639
 
4640
+ # @ WPBDM
4641
+ #: core/class-settings.php:348
4642
  msgctxt "admin settings"
4643
  msgid "E-Mail"
4644
  msgstr "E-mail"
4645
 
4646
+ # @ WPBDM
4647
+ #: core/class-settings.php:352
4648
  msgctxt "admin settings"
4649
  msgid "Display email address fields publicly?"
4650
  msgstr "Wyświetlać publicznie pole \"adres e-mail\"?"
4651
 
4652
+ # @ WPBDM
4653
+ #: core/class-settings.php:355
4654
  msgctxt "admin settings"
4655
+ msgid ""
4656
+ "Shows the email address of the listing owner to all web users. NOT "
4657
+ "RECOMMENDED as this increases spam to the address and allows spam bots to "
4658
+ "harvest it for future use."
4659
+ msgstr ""
4660
+ "Wyświetla adres e-mail właściciela oferty wszystkim użytkownikom. NIE "
4661
+ "ZALECANE - może to zwiększyć ruch niepożądanych widomości na poczcie "
4662
+ "właściciela (spam)."
4663
 
4664
+ # @ WPBDM
4665
+ #: core/class-settings.php:358
4666
  msgctxt "admin settings"
4667
  msgid "How to determine the listing's email address?"
4668
  msgstr "Jak określić listę adresów e-mail?"
4669
 
4670
+ # @ WPBDM
4671
+ #: core/class-settings.php:361
4672
  msgctxt "admin settings"
4673
+ msgid ""
4674
+ "This affects emails sent to listing owners via contact forms or when their "
4675
+ "listings expire."
4676
+ msgstr ""
4677
+ "Wpływa to na e-maile wysyłane do właścicieli ofert za pośrednictwem "
4678
+ "formularzy kontaktowych lub gdy ich oferta wygasa."
4679
 
4680
+ #: core/class-settings.php:363
4681
+ msgctxt "admin settings"
4682
+ msgid "Try listing's email field first, then author's email."
4683
+ msgstr ""
4684
+
4685
+ #: core/class-settings.php:364
4686
+ msgctxt "admin settings"
4687
+ msgid "Try author's email first and then listing's email field."
4688
+ msgstr ""
4689
+
4690
+ # @ WPBDM
4691
+ #: core/class-settings.php:368
4692
  msgctxt "admin settings"
4693
  msgid "E-Mail Notifications"
4694
  msgstr "Powiadomienia E-mail"
4695
 
4696
+ # @ WPBDM
4697
+ #: core/class-settings.php:371
4698
  msgctxt "admin settings"
4699
  msgid "Notify admin via e-mail when..."
4700
  msgstr "Powiadom Administratora przez e-mail, kiedy..."
4701
 
4702
+ # @ WPBDM
4703
+ #: core/class-settings.php:375
4704
  msgctxt "admin settings"
4705
  msgid "A new listing is submitted."
4706
  msgstr "Dodano nową ofertę."
4707
 
4708
+ # @ WPBDM
4709
+ #: core/class-settings.php:376
4710
  msgctxt "admin settings"
4711
  msgid "A listing is edited."
4712
  msgstr "Edytowano ofertę."
4713
 
4714
+ # @ WPBDM
4715
+ #: core/class-settings.php:377
4716
  msgctxt "admin settings"
4717
  msgid "A listing expires."
4718
  msgstr "Upłynął okres ważności oferty."
4719
 
4720
+ # @ WPBDM
4721
+ #: core/class-settings.php:378
4722
  msgctxt "admin settings"
4723
  msgid "A contact message is sent to a listing's owner."
4724
  msgstr "Została wysłana wiadomość kontaktowa do właściciela oferty."
4725
 
4726
+ # @ WPBDM
4727
+ #: core/class-settings.php:384
4728
  msgctxt "admin settings"
4729
  msgid "CC this e-mail address too"
4730
  msgstr "Prześlij także na ten adres e-mail"
4731
 
4732
+ # @ WPBDM
4733
+ #: core/class-settings.php:390
4734
  msgctxt "admin settings"
4735
  msgid "Notify users via e-mail when..."
4736
  msgstr "Poinformuj użytkownika mailem gdy..."
4737
 
4738
+ # @ WPBDM
4739
+ #: core/class-settings.php:393
4740
  msgctxt "admin settings"
4741
  msgid "You can modify the text template used for most of these e-mails below."
4742
  msgstr "Możesz edytować szablony tekstowe dla poniższych wiadomości e-mail."
4743
 
4744
+ # @ WPBDM
4745
+ #: core/class-settings.php:394
4746
  msgctxt "admin settings"
4747
  msgid "Their listing is submitted."
4748
  msgstr "Twoja oferta została przesłana."
4749
 
4750
+ # @ WPBDM
4751
+ #: core/class-settings.php:395
4752
  msgctxt "admin settings"
4753
  msgid "Their listing is approved/published."
4754
  msgstr "Twoja oferta została zatwierdzona i opublikowana."
4755
 
4756
+ # @ WPBDM
4757
+ #: core/class-settings.php:404
 
4758
  msgctxt "contact email"
4759
  msgid "You have received a reply from your listing at %s."
4760
  msgstr "Otrzymano wiadomość dotyczącą oferty %s."
4761
 
4762
+ # @ WPBDM
4763
+ #: core/class-settings.php:405
 
4764
  msgctxt "contact email"
4765
  msgid "Name: %s"
4766
  msgstr "Nazwa: %s"
4767
 
4768
+ # @ WPBDM
4769
+ #: core/class-settings.php:406
 
4770
  msgctxt "contact email"
4771
  msgid "E-Mail: %s"
4772
  msgstr "E-Mail: %s"
4773
 
4774
+ # @ WPBDM
4775
+ #: core/class-settings.php:407
4776
  msgctxt "contact email"
4777
  msgid "Message:"
4778
  msgstr "Wiadomość:"
4779
 
4780
+ # @ WPBDM
4781
+ #: core/class-settings.php:409
 
4782
  msgctxt "contact email"
4783
  msgid "Time: %s"
4784
  msgstr "Czas: %s"
4785
 
4786
+ # @ WPBDM
4787
+ #: core/class-settings.php:411
4788
  msgctxt "admin settings"
4789
  msgid "E-Mail Templates"
4790
  msgstr "Szablony wiadomości e-Mail"
4791
 
4792
+ # @ WPBDM
4793
+ #: core/class-settings.php:414
4794
  msgctxt "admin settings"
4795
  msgid "Email confirmation message"
4796
  msgstr "Wiadomość e-mail z potwierdzeniem odbioru"
4797
 
4798
+ # @ WPBDM
4799
+ #: core/class-settings.php:418
4800
  msgctxt "admin settings"
4801
  msgid "Sent after a listing has been submitted."
4802
  msgstr "Wysłane po zapisaniu oferty."
4803
 
4804
+ # @ WPBDM
4805
+ #: core/class-settings.php:419 core/class-settings.php:427
4806
+ #: core/class-settings.php:468
 
4807
  msgctxt "admin settings"
4808
  msgid "Listing's title"
4809
  msgstr "Tytuł oferty"
4810
 
4811
+ # @ WPBDM
4812
+ #: core/class-settings.php:422
4813
  msgctxt "admin settings"
4814
  msgid "Listing published message"
4815
  msgstr "Wiadomość o opublikowaniu oferty"
4816
 
4817
+ # @ WPBDM
4818
+ #: core/class-settings.php:425
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
4819
  msgctxt "admin settings"
4820
+ msgid ""
4821
+ "Your listing \"[listing]\" is now available at [listing-url] and can be "
4822
+ "viewed by the public."
4823
+ msgstr ""
4824
+ "Twoja oferta \"[listing]\" jest dostępna pod adresem [listing-url] i posiada "
4825
+ "status oferty publicznej."
4826
 
4827
+ # @ WPBDM
4828
+ #: core/class-settings.php:426
4829
  msgctxt "admin settings"
4830
+ msgid "Sent when the listing has been published or approved by an admin."
4831
+ msgstr ""
4832
+ "Wyślij gdy oferta została zatwierdzona lub opublikowana przez administratora."
4833
 
4834
+ # @ WPBDM
4835
+ #: core/class-settings.php:428
4836
  msgctxt "admin settings"
4837
+ msgid "Listing's URL"
4838
+ msgstr "URL oferty"
4839
 
4840
+ # @ WPBDM
4841
+ #: core/class-settings.php:432
4842
  msgctxt "admin settings"
4843
+ msgid "Listing Contact Message"
4844
+ msgstr "Wiadomość do osoby kontaktowej z Oferty"
4845
 
4846
+ # @ WPBDM
4847
+ #: core/class-settings.php:436
4848
  msgctxt "admin settings"
4849
+ msgid ""
4850
+ "Sent to listing owners when someone uses the contact form on their listing "
4851
+ "pages."
4852
+ msgstr ""
4853
+ "Wyślij do właściciela oferty gdy ktoś użył formularza kontaktu na stronie "
4854
+ "jego oferty."
4855
 
4856
+ # @ WPBDM
4857
+ #: core/class-settings.php:446
4858
  msgctxt "admin settings"
4859
  msgid "Payment related"
4860
  msgstr "Powiązania płatności"
4861
 
4862
+ # @ WPBDM
4863
+ #: core/class-settings.php:463
4864
  msgctxt "admin settings"
4865
+ msgid "Payment abandoned reminder message"
4866
+ msgstr "Wiadomość przypomnienia o porzuconej płatności "
 
 
 
 
 
 
4867
 
4868
+ # @ WPBDM
4869
+ #: core/class-settings.php:467
4870
  msgctxt "admin settings"
4871
+ msgid "Sent some time after a pending payment is abandoned by users."
4872
+ msgstr ""
4873
+ "Wysyłany do użytkowników, po pewnym czasie od zmiany statusu na \"porzucone"
4874
+ "\"."
4875
 
4876
+ # @ WPBDM
4877
+ #: core/class-settings.php:469
4878
  msgctxt "admin settings"
4879
+ msgid "Checkout URL link"
4880
+ msgstr "Sprawdzanie link URL"
4881
 
4882
+ # @ WPBDM
4883
+ #: core/class-settings.php:475
4884
  msgctxt "admin settings"
4885
  msgid "Renewal Reminders"
4886
  msgstr "Przypomnienie o Odnowieniu"
4887
 
4888
+ # @ WPBDM
4889
+ #: core/class-settings.php:478
4890
  msgctxt "admin settings"
4891
+ msgid ""
4892
+ "This section refers only to the text of the renewal/expiration notices. You "
4893
+ "can also <a>configure when the e-mails are sent</a>."
4894
+ msgstr ""
4895
+ "Ta sekcja odnosi się tylko do tekstu informacyjnego na temat odnowienia/"
4896
+ "wygaśnięcia oferty. Możesz także ustawic, <a>kiedy wysyłać e-mail</a>."
4897
 
4898
+ # @ WPBDM
4899
+ #: core/class-settings.php:482
4900
  msgctxt "admin settings"
4901
  msgid "Pending expiration e-mail message"
4902
  msgstr "Wiadomość e-mail dotycząca okresu ważności oferty"
4903
 
4904
+ # @ WPBDM
4905
+ #: core/class-settings.php:486
4906
  msgctxt "settings"
4907
+ msgid ""
4908
+ "Sent some time before the listing expires. Applies to non-recurring renewals "
4909
+ "only."
4910
+ msgstr ""
4911
+ "Wysyłane przed upływem okresu ważności oferty. Dotyczy tylko jednorazowych "
4912
+ "odnowień( \"nie powtarzających się\" - dostępne w opcjach)."
4913
 
4914
+ # @ WPBDM
4915
+ #: core/class-settings.php:487 core/class-settings.php:500
4916
+ #: core/class-settings.php:513 core/class-settings.php:526
4917
+ #: core/class-settings.php:539
 
 
4918
  msgctxt "settings"
4919
  msgid "Listing's name (with link)"
4920
  msgstr "Nazwa Oferty (z linkiem)"
4921
 
4922
+ # @ WPBDM
4923
+ #: core/class-settings.php:488 core/class-settings.php:501
4924
+ #: core/class-settings.php:514 core/class-settings.php:527
4925
+ #: core/class-settings.php:540
 
 
4926
  msgctxt "settings"
4927
  msgid "Author's name"
4928
  msgstr "Nazwisko Autora"
4929
 
4930
+ # @ WPBDM
4931
+ #: core/class-settings.php:489 core/class-settings.php:502
4932
+ #: core/class-settings.php:541
 
4933
  msgctxt "settings"
4934
  msgid "Expiration date"
4935
  msgstr "Data zakończenia emisji oferty"
4936
 
4937
+ # @ WPBDM
4938
+ #: core/class-settings.php:490
4939
  msgctxt "settings"
4940
  msgid "Category that is going to expire"
4941
  msgstr "Oferta, której upływa termin ważności"
4942
 
4943
+ # @ WPBDM
4944
+ #: core/class-settings.php:491 core/class-settings.php:504
4945
+ #: core/class-settings.php:543
 
4946
  msgctxt "settings"
4947
  msgid "Link to renewal page"
4948
  msgstr "Link do strony Odnawiania ofert"
4949
 
4950
+ # @ WPBDM
4951
+ #: core/class-settings.php:492 core/class-settings.php:505
4952
+ #: core/class-settings.php:517 core/class-settings.php:530
4953
+ #: core/class-settings.php:544
 
 
4954
  msgctxt "settings"
4955
  msgid "Link to your site"
4956
  msgstr "Link do Twojej strony"
4957
 
4958
+ # @ WPBDM
4959
+ #: core/class-settings.php:495
4960
  msgctxt "admin settings"
4961
  msgid "Listing Renewal e-mail message"
4962
  msgstr "Wiadomość e-mail dotycząca odnowienia oferty"
4963
 
4964
+ # @ WPBDM
4965
+ #: core/class-settings.php:499
4966
  msgctxt "settings"
4967
+ msgid ""
4968
+ "Sent at the time of listing expiration. Applies to non-recurring renewals "
4969
+ "only."
4970
+ msgstr ""
4971
+ "Wysyłane w chwili zakończenia okresu ważności oferty. Dotyczy tylko "
4972
+ "jednorazowych odnowień( \"nie powtarzających się\" - dostępne w opcjach)."
4973
 
4974
+ # @ WPBDM
4975
+ #: core/class-settings.php:503 core/class-settings.php:542
 
4976
  msgctxt "settings"
4977
  msgid "Category that expired"
4978
  msgstr "Oferta, której upłynął okres ważności"
4979
 
4980
+ # @ WPBDM
4981
+ #: core/class-settings.php:508
4982
  msgctxt "admin settings"
4983
  msgid "Listing auto-renewal reminder (recurring payments)"
4984
+ msgstr ""
4985
+ "Przypomnienie o automatycznym odnowieniu oferty ( powtarzające się "
4986
+ "płatności )"
4987
 
4988
+ # @ WPBDM
4989
+ #: core/class-settings.php:512
4990
  msgctxt "settings"
4991
+ msgid ""
4992
+ "Sent some time before the listing is auto-renewed. Applies to recurring "
4993
+ "renewals only."
4994
+ msgstr ""
4995
+ "Wysyłane przed odnowieniem oferty. Dotyczy tylko powtarzających się "
4996
+ "płatności."
4997
 
4998
+ # @ WPBDM
4999
+ #: core/class-settings.php:515 core/class-settings.php:529
 
5000
  msgctxt "settings"
5001
  msgid "Renewal date"
5002
  msgstr "Data odświeżenia"
5003
 
5004
+ # @ WPBDM
5005
+ #: core/class-settings.php:516
5006
  msgctxt "settings"
5007
  msgid "Category that is going to be renewed"
5008
  msgstr "Oferta, której zbliża się termin odnowienia"
5009
 
5010
+ # @ WPBDM
5011
+ #: core/class-settings.php:518
5012
  msgctxt "settings"
5013
  msgid "Link to manage subscriptions"
5014
  msgstr "Link do zarządzania subskrypcjami"
5015
 
5016
+ # @ WPBDM
5017
+ #: core/class-settings.php:521
5018
  msgctxt "admin settings"
5019
  msgid "Listing Renewal e-mail message (recurring payments)"
5020
+ msgstr ""
5021
+ "Wiadomość e-mail dotycząca odnowienia oferty ( powtarzające się płatności)"
5022
 
5023
+ # @ WPBDM
5024
+ #: core/class-settings.php:525
5025
  msgctxt "settings"
5026
+ msgid ""
5027
+ "Sent after the listing is auto-renewed. Applies to recurring renewals only."
5028
+ msgstr ""
5029
+ "Wysyłane po odnowieniu oferty. Dotyczy tylko powtarzających się płatności."
5030
 
5031
+ # @ WPBDM
5032
+ #: core/class-settings.php:528
5033
  msgctxt "settings"
5034
  msgid "Renewed category"
5035
  msgstr "Kategoria Odnowiona"
5036
 
5037
+ # @ WPBDM
5038
+ #: core/class-settings.php:534
5039
  msgctxt "admin settings"
5040
  msgid "Renewal reminder e-mail message"
5041
  msgstr "Wiadomość e-mail dotytcząca przypomnienia o odnowieniu"
5042
 
5043
+ # @ WPBDM
5044
+ #: core/class-settings.php:538
5045
  msgctxt "settings"
5046
+ msgid ""
5047
+ "Sent some time after listing expiration and when no renewal has occurred. "
5048
+ "Applies to both recurring and non-recurring renewals."
5049
+ msgstr ""
5050
+ "Wysyłane po zakończeniu okresu ważności, a gdy nie odnowieno oferty. Dotyczy "
5051
+ "wszystkich form płatności."
5052
 
5053
+ # @ WPBDM
5054
+ #: core/class-settings.php:548
5055
  msgctxt "admin settings"
5056
  msgid "Payment"
5057
  msgstr "Płatność"
5058
 
5059
+ # @ WPBDM
5060
+ #: core/class-settings.php:549
5061
  msgctxt "admin settings"
5062
  msgid "Payment Settings"
5063
  msgstr "Ustawienia Płatności"
5064
 
5065
+ # @ WPBDM
5066
+ #: core/class-settings.php:552
5067
  msgctxt "admin settings"
5068
  msgid "Turn On payments?"
5069
  msgstr "Włączyć Płatność?"
5070
 
5071
+ # @ WPBDM
5072
+ #: core/class-settings.php:554
5073
  msgctxt "admin settings"
5074
  msgid "Put payment gateways in test mode?"
5075
  msgstr "Włączyć tryb testu dla bramki płatności?"
5076
 
5077
+ # @ WPBDM
5078
+ #: core/class-settings.php:559
5079
  msgctxt "admin settings"
5080
  msgid "Perform checkouts on the secure (HTTPS) version of your site?"
5081
+ msgstr ""
5082
+ "Proferować przełączenie koszyka do bezpiecznej wersji strony (https://)?"
5083
 
5084
+ # @ WPBDM
5085
+ #: core/class-settings.php:562
5086
  msgctxt "admin settings"
5087
+ msgid ""
5088
+ "Recommended for added security. For this to work you need to enable HTTPS on "
5089
+ "your server and <a>obtain an SSL certificate</a>."
5090
+ msgstr ""
5091
+ "Rekomendowane dla bezpieczeństwa. Aby zadziałało musisz uruchomić "
5092
+ "Szyfrowanie SSL ( https ) na Twoim serwerze, a tu znajdziesz <a>informacje o "
5093
+ "certyfikatach SSL</a>."
5094
 
5095
+ # @ WPBDM
5096
+ #: core/class-settings.php:566
5097
  msgctxt "admin settings"
5098
  msgid "Currency Code"
5099
  msgstr "Kod Waluty"
5100
 
5101
+ # @ WPBDM
5102
+ #: core/class-settings.php:568
5103
  msgctxt "admin settings"
5104
  msgid "Australian Dollar (AUD)"
5105
  msgstr "Dolar Australijski (AUD)"
5106
 
5107
+ # @ WPBDM
5108
+ #: core/class-settings.php:569
5109
  msgctxt "admin settings"
5110
  msgid "Brazilian Real (BRL)"
5111
  msgstr "Real Brazylijski (BRL)"
5112
 
5113
+ # @ WPBDM
5114
+ #: core/class-settings.php:570
5115
  msgctxt "admin settings"
5116
  msgid "Canadian Dollar (CAD)"
5117
  msgstr "Dolar Kanadyjski (CAD)"
5118
 
5119
+ # @ WPBDM
5120
+ #: core/class-settings.php:571
5121
  msgctxt "admin settings"
5122
  msgid "Czech Koruna (CZK)"
5123
  msgstr "Korona Czeska (CZK)"
5124
 
5125
+ # @ WPBDM
5126
+ #: core/class-settings.php:572
5127
  msgctxt "admin settings"
5128
  msgid "Danish Krone (DKK)"
5129
  msgstr "Korona Duńska (DKK)"
5130
 
5131
+ # @ WPBDM
5132
+ #: core/class-settings.php:573
5133
  msgctxt "admin settings"
5134
  msgid "Euro (EUR)"
5135
  msgstr "Euro (EUR)"
5136
 
5137
+ # @ WPBDM
5138
+ #: core/class-settings.php:574
5139
  msgctxt "admin settings"
5140
  msgid "Hong Kong Dollar (HKD)"
5141
  msgstr "Dolar Hong Kong (HKD)"
5142
 
5143
+ # @ WPBDM
5144
+ #: core/class-settings.php:575
5145
  msgctxt "admin settings"
5146
  msgid "Hungarian Forint (HUF)"
5147
  msgstr "Forint Węgierski (HUF)"
5148
 
5149
+ # @ WPBDM
5150
+ #: core/class-settings.php:576
5151
  msgctxt "admin settings"
5152
  msgid "Israeli New Shequel (ILS)"
5153
  msgstr "Nowy Shequel Izraelski (ILS)"
5154
 
5155
+ # @ WPBDM
5156
+ #: core/class-settings.php:577
5157
  msgctxt "admin settings"
5158
  msgid "Japanese Yen (JPY)"
5159
  msgstr "Jen Japoński (JPY)"
5160
 
5161
+ # @ WPBDM
5162
+ #: core/class-settings.php:578
5163
  msgctxt "admin settings"
5164
  msgid "Malasian Ringgit (MYR)"
5165
  msgstr "Ringgit Malezyjski (MYR)"
5166
 
5167
+ # @ WPBDM
5168
+ #: core/class-settings.php:579
5169
  msgctxt "admin settings"
5170
  msgid "Mexican Peso (MXN)"
5171
  msgstr "Peso Meksykańskie (MXN)"
5172
 
5173
+ # @ WPBDM
5174
+ #: core/class-settings.php:580
5175
  msgctxt "admin settings"
5176
  msgid "Norwegian Krone (NOK)"
5177
  msgstr "Korona Norweska (NOK)"
5178
 
5179
+ # @ WPBDM
5180
+ #: core/class-settings.php:581
5181
  msgctxt "admin settings"
5182
  msgid "New Zealand Dollar (NZD)"
5183
  msgstr "Dolar Nowo Zelandzki (NZD)"
5184
 
5185
+ # @ WPBDM
5186
+ #: core/class-settings.php:582
5187
  msgctxt "admin settings"
5188
  msgid "Philippine Peso (PHP)"
5189
  msgstr "Peso Filipińskie (PHP)"
5190
 
5191
+ # @ WPBDM
5192
+ #: core/class-settings.php:583
5193
  msgctxt "admin settings"
5194
  msgid "Polish Zloty (PLN)"
5195
  msgstr "Złoty Polski (PLN)"
5196
 
5197
+ # @ WPBDM
5198
+ #: core/class-settings.php:584
5199
  msgctxt "admin settings"
5200
  msgid "Pound Sterling (GBP)"
5201
  msgstr "Funt Brytyjski (GBP)"
5202
 
5203
+ # @ WPBDM
5204
+ #: core/class-settings.php:585
5205
  msgctxt "admin settings"
5206
  msgid "Singapore Dollar (SGD)"
5207
  msgstr "Dolar Singapórski (SGD)"
5208
 
5209
+ # @ WPBDM
5210
+ #: core/class-settings.php:586
5211
  msgctxt "admin settings"
5212
  msgid "Swedish Krona (SEK)"
5213
  msgstr "Korona Szwedzka (SEK)"
5214
 
5215
+ # @ WPBDM
5216
+ #: core/class-settings.php:587
5217
  msgctxt "admin settings"
5218
  msgid "Swiss Franc (CHF)"
5219
  msgstr "Frank Szwajcarski (CHF)"
5220
 
5221
+ # @ WPBDM
5222
+ #: core/class-settings.php:588
5223
  msgctxt "admin settings"
5224
  msgid "Taiwan Dollar (TWD)"
5225
  msgstr "Dolar Taiwandzki (TWD)"
5226
 
5227
+ # @ WPBDM
5228
+ #: core/class-settings.php:589
5229
  msgctxt "admin settings"
5230
  msgid "Thai Baht (THB)"
5231
  msgstr "Baht Tajski (THB)"
5232
 
5233
+ # @ WPBDM
5234
+ #: core/class-settings.php:590
5235
  msgctxt "admin settings"
5236
  msgid "Turkish Lira (TRY)"
5237
  msgstr "Lir Turecki (TRY)"
5238
 
5239
+ # @ WPBDM
5240
+ #: core/class-settings.php:591
5241
+ #, fuzzy
5242
  msgctxt "admin settings"
5243
+ msgid "U.S. Dollar (USD)"
5244
  msgstr "Dolar Amerykański"
5245
 
5246
+ # @ WPBDM
5247
+ #: core/class-settings.php:595
5248
  msgctxt "admin settings"
5249
  msgid "Currency Symbol"
5250
  msgstr "Symbol Waluty"
5251
 
5252
+ # @ WPBDM
5253
+ #: core/class-settings.php:600
5254
+ #, fuzzy
5255
+ msgctxt "admin settings"
5256
+ msgid "Currency symbol display"
5257
+ msgstr "Symbol Waluty"
5258
+
5259
+ #: core/class-settings.php:604
5260
+ msgctxt "admin settings"
5261
+ msgid "Show currency symbol on the left"
5262
+ msgstr ""
5263
+
5264
+ #: core/class-settings.php:605
5265
+ msgctxt "admin settings"
5266
+ msgid "Show currency symbol on the right"
5267
+ msgstr ""
5268
+
5269
+ # @ WPBDM
5270
+ #: core/class-settings.php:606
5271
+ #, fuzzy
5272
+ msgctxt "admin settings"
5273
+ msgid "Do not show currency symbol"
5274
+ msgstr "Symbol Waluty"
5275
+
5276
+ # @ WPBDM
5277
+ #: core/class-settings.php:608
5278
  msgctxt "admin settings"
5279
  msgid "Thank you for payment message"
5280
  msgstr "Wiadomość - Dziękujemy za płatność."
5281
 
5282
+ # @ WPBDM
5283
+ #: core/class-settings.php:609
5284
  msgctxt "admin settings"
5285
+ msgid ""
5286
+ "Thank you for your payment. Your payment is being verified and your listing "
5287
+ "reviewed. The verification and review process could take up to 48 hours."
5288
+ msgstr ""
5289
+ "Dziękujemy za dokonanie płątności. Trwa weryfikacja płatnosci. Weryfikacja "
5290
+ "płatnosci i publikacja oferty mogą potrwać do 48 godzin."
5291
 
5292
+ # @ WPBDM
5293
+ #: core/class-settings.php:614
5294
  msgctxt "admin settings"
5295
+ msgid "Ask users to come back for abandoned payments?"
5296
+ msgstr "Pytać użytkowników o powrót do porzuconych płatności?"
5297
 
5298
+ # @ WPBDM
5299
+ #: core/class-settings.php:617
5300
  msgctxt "admin settings"
5301
+ msgid ""
5302
+ "An abandoned payment is when a user attempts to place a listing and gets to "
5303
+ "the end, but fails to complete their payment for the listing. This results "
5304
+ "in listings that look like they failed, when the user simply didn't complete "
5305
+ "the transaction. BD can remind them to come back and continue."
5306
+ msgstr ""
5307
+ "Porzucona płatność może wystąpić w przypadku, gdy użytkownik zamieszcza "
5308
+ "ofertę, ale z przyczyn niezależnych od niego doszło do błędu i "
5309
+ "niedokończenia transakcji płatności.vWygląda to tak, jakby został błędnie "
5310
+ "przesłany formularz oferty, a tak na prawdę to tylko nie dokończona "
5311
+ "transakcja płatności.vKatalog Firm może przypominać użytkownikom o potrzebie "
5312
+ "powrotu i dokończenia transakcji."
5313
 
5314
+ # @ WPBDM
5315
+ #: core/class-settings.php:623
5316
  msgctxt "admin settings"
5317
+ msgid "Listing abandonment threshold (hours)"
5318
+ msgstr "Maksymalny Czas dla porzuconych płątności (godzin)"
5319
 
5320
+ # @ WPBDM
5321
+ #: core/class-settings.php:628
5322
+ msgctxt "admin settings"
5323
+ msgid ""
5324
+ "Listings with pending payments are marked as abandoned after this time. You "
5325
+ "can also <a>customize the e-mail</a> users receive."
5326
+ msgstr ""
5327
+ "Oferty oczekujące na płatność zostaną oznaczone jako porzucone - po upływie "
5328
+ "tego czasu. Możesz także <a>wprowadzić zmiany w szablonie wiadomości e-mail</"
5329
+ "a> dostarczanym do użytkowników."
5330
+
5331
+ #: core/class-settings.php:633
5332
+ msgctxt "admin settings"
5333
+ msgid "Themes"
5334
+ msgstr ""
5335
+
5336
+ #: core/class-settings.php:635
5337
  msgctxt "admin settings"
5338
+ msgid "You can manage your themes on <a>Directory Themes</a>."
5339
+ msgstr ""
5340
 
5341
+ #: core/class-settings.php:640
5342
+ msgctxt "admin settings"
5343
+ msgid "Theme button style"
5344
+ msgstr ""
5345
+
5346
+ #: core/class-settings.php:644
5347
+ msgctxt "admin settings"
5348
+ msgid "Use the BD theme style for BD buttons"
5349
+ msgstr ""
5350
+
5351
+ #: core/class-settings.php:645
5352
+ msgctxt "admin settings"
5353
+ msgid "Use the WP theme style for BD buttons"
5354
+ msgstr ""
5355
+
5356
+ # @ WPBDM
5357
+ #: core/class-settings.php:652
5358
  msgctxt "admin settings"
5359
  msgid "Image"
5360
  msgstr "Obraz"
5361
 
5362
+ # @ WPBDM
5363
+ #: core/class-settings.php:653
5364
  msgctxt "admin settings"
5365
+ msgid ""
5366
+ "Any changes to these settings will affect new listings only. Existing "
5367
+ "listings will not be affected. If you wish to change existing listings, you "
5368
+ "will need to re-upload the image(s) on that listing after changing things "
5369
+ "here."
5370
+ msgstr ""
5371
+ "Jakiekolwiek zmiany w tych ustawieniach przyniosą efekt tylko dla nowych "
5372
+ "ofert. Istniejące oferty pozostaną niezmienione. Jeśli chcesz zmienić "
5373
+ "istniejące oferty musisz ponownie załadować obrazy do tych ofert po "
5374
+ "uprzedniej zmianie tych ustawień."
5375
 
5376
+ # @ WPBDM
5377
+ #: core/class-settings.php:654
5378
  msgctxt "admin settings"
5379
  msgid "Image Settings"
5380
  msgstr "Ustawienia Obrazu"
5381
 
5382
+ # @ WPBDM
5383
+ #: core/class-settings.php:655
5384
  msgctxt "admin settings"
5385
  msgid "Allow images?"
5386
  msgstr "Pozwolić na Obrazy?"
5387
 
5388
+ # @ WPBDM
5389
+ #: core/class-settings.php:657
5390
+ msgctxt "admin settings"
5391
+ msgid "Min Image File Size (KB)"
5392
+ msgstr "Minimalny rozmiar obrazu (KB)"
5393
+
5394
+ # @ WPBDM
5395
+ #: core/class-settings.php:658
5396
  msgctxt "admin settings"
5397
  msgid "Max Image File Size (KB)"
5398
  msgstr "Maksymalny rozmiar pliku Obrazu (KB)"
5399
 
5400
+ # @ WPBDM
5401
+ #: core/class-settings.php:660
5402
  msgctxt "admin settings"
5403
+ msgid "Min image width (px)"
5404
+ msgstr "Minimalna szerokość obrazu (px)"
5405
 
5406
+ # @ WPBDM
5407
+ #: core/class-settings.php:661
5408
  msgctxt "admin settings"
5409
+ msgid "Min image height (px)"
5410
+ msgstr "Minimalna wysokość obrazu (px)"
5411
 
5412
+ # @ WPBDM
5413
+ #: core/class-settings.php:663
5414
  msgctxt "admin settings"
5415
+ msgid "Max image width (px)"
5416
+ msgstr "Maksymalna szerokość obrazu (px)"
5417
 
5418
+ # @ WPBDM
5419
+ #: core/class-settings.php:664
5420
  msgctxt "admin settings"
5421
+ msgid "Max image height (px)"
5422
+ msgstr "Maksymalna wysokość obrazu (px)"
5423
 
5424
+ # @ WPBDM
5425
+ #: core/class-settings.php:666
5426
  msgctxt "admin settings"
5427
+ msgid "Turn on thickbox/lightbox?"
5428
+ msgstr "Włączyć thickbox/lightbox?"
5429
 
5430
+ # @ WPBDM
5431
+ #: core/class-settings.php:666
5432
  msgctxt "admin settings"
5433
+ msgid ""
5434
+ "Uncheck if it conflicts with other elements or plugins installed on your site"
5435
+ msgstr ""
5436
+ "Odznacz jeśli występują konflikty z innymi elementami lub pluginami na "
5437
+ "Twojej stronie"
5438
 
5439
+ # @ WPBDM
5440
+ #: core/class-settings.php:668
5441
+ msgctxt "admin settings"
5442
+ msgid "Thumbnails"
5443
+ msgstr "Miniatury"
5444
 
5445
+ # @ WPBDM
5446
+ #: core/class-settings.php:669
5447
+ msgctxt "admin settings"
5448
+ msgid "Thumbnail width (px)"
5449
+ msgstr "Szerokość miniatury (px)"
5450
 
5451
+ # @ WPBDM
5452
+ #: core/class-settings.php:670
5453
+ msgctxt "admin settings"
5454
+ msgid "Thumbnail height (px)"
5455
+ msgstr "Wysokość miniatury (px)"
5456
+
5457
+ # @ WPBDM
5458
+ #: core/class-settings.php:673
5459
+ msgctxt "admin settings"
5460
+ msgid "Crop thumbnails to exact dimensions?"
5461
+ msgstr "Przyciąć miniaturę do dokładnych wymiarów?"
5462
+
5463
+ # @ WPBDM
5464
+ #: core/class-settings.php:676
5465
+ msgctxt "admin settings"
5466
+ msgid ""
5467
+ "When enabled images will match exactly the dimensions above but part of the "
5468
+ "image may be cropped out. If disabled, image thumbnails will be resized to "
5469
+ "match the specified width and their height will be adjusted proportionally. "
5470
+ "Depending on the uploaded images, thumbnails may have different heights."
5471
+ msgstr ""
5472
+ "Jeśli zaznaczysz tą opcje - Obrazy zostaną docięte dokładnie do wymiarów "
5473
+ "podanych powyżej, ale część obrazu może zostać odcięta. Jeśli nie zaznaczysz "
5474
+ "tej opcji - Obrazy zostaną przeskalowane do wymaganej szerokości a ich "
5475
+ "wysokość będzie dopasowana proporcjonalnie. Każdy z dodanych obrazów przy "
5476
+ "tej opcji, może mieć inną wysokość."
5477
+
5478
+ # @ WPBDM
5479
+ #: core/class-settings.php:682
5480
+ msgctxt "admin settings"
5481
+ msgid "Number of free images"
5482
+ msgstr "Liczba obrazów, za które nie trzeba płacić"
5483
+
5484
+ # @ WPBDM
5485
+ #: core/class-settings.php:687
5486
+ msgctxt "admin settings"
5487
+ msgid ""
5488
+ "For paid listing images, configure that by adding or editing a <a>Fee Plan</"
5489
+ "a> instead of this setting, which is ignored for paid listings."
5490
+ msgstr ""
5491
+ "Dla konfiguracji obrazów płatnych ofert, dodaj lub edytuj <a>abonamet</a> "
5492
+ "zamiast używać ustawień, które są ignorowane przez oferty płatne."
5493
+
5494
+ # @ WPBDM
5495
+ #: core/class-settings.php:690
5496
+ msgctxt "admin settings"
5497
+ msgid "Use default picture for listings with no picture?"
5498
+ msgstr "Użyj domyślnego obrazu dla ofert, które nie posiadają żadnych obrazów?"
5499
+
5500
+ # @ WPBDM
5501
+ #: core/class-settings.php:691
5502
+ msgctxt "admin settings"
5503
+ msgid "Show Thumbnail on main listings page?"
5504
+ msgstr "Pokazywać miniaturkę na stronie głównej oferty?"
5505
+
5506
+ #: core/class-settings.php:720
5507
+ msgctxt "admin settings"
5508
+ msgid "User"
5509
+ msgstr ""
5510
+
5511
+ # @ WPBDM
5512
+ #: core/class-settings.php:721
5513
+ #, fuzzy
5514
+ msgctxt "admin settings"
5515
+ msgid "User registration date"
5516
+ msgstr "Data zakończenia emisji oferty"
5517
+
5518
+ # @ WPBDM
5519
+ #: core/class-settings.php:747
5520
+ msgctxt "admin settings"
5521
+ msgid ""
5522
+ "Could not copy the AJAX compatibility plugin \"%s\". Compatibility mode was "
5523
+ "not activated."
5524
+ msgstr ""
5525
+ "Nie można skopiować pluginu kompatybilności AJAX \"%s\". Tryb "
5526
+ "Kompatybilności nie został aktywowany."
5527
+
5528
+ # @ WPBDM
5529
+ #: core/class-settings.php:755
5530
+ msgctxt "admin settings"
5531
+ msgid ""
5532
+ "Could not activate AJAX Compatibility mode: the directory \"%s\" could not "
5533
+ "be created."
5534
+ msgstr ""
5535
+ "Nie można aktywować trybu kompatybilności AJAX: Nie można utworzyć katalogu "
5536
+ "\"%s\"."
5537
+
5538
+ # @ WPBDM
5539
+ #: core/class-settings.php:764
5540
+ msgctxt "admin settings"
5541
+ msgid ""
5542
+ "Could not remove the \"Business Directory Plugin - AJAX Compatibility Module"
5543
+ "\". Please remove the file \"%s\" manually or deactivate the plugin."
5544
+ msgstr ""
5545
+ "Nie można usunąć \"Katalog Firm - Moduł Kompatybilności AJAX \".Proszę "
5546
+ "ręcznie usunąć plik \"%s\" lub de-aktywować plugin."
5547
+
5548
+ # @ WPBDM
5549
+ #: core/class-settings.php:1084
5550
+ msgctxt "settings"
5551
+ msgid "Deactivate License"
5552
+ msgstr "Dezaktywacja Licencji"
5553
+
5554
+ # @ WPBDM
5555
+ #: core/class-settings.php:1086
5556
+ msgctxt "settings"
5557
+ msgid "Deactivating license..."
5558
+ msgstr "Dezaktywowanie Licencji"
5559
+
5560
+ # @ WPBDM
5561
+ #: core/class-settings.php:1089
5562
+ msgctxt "settings"
5563
+ msgid "Activate License"
5564
  msgstr "Aktywacja Licencji"
5565
 
5566
+ # @ WPBDM
5567
+ #: core/class-settings.php:1091
5568
  msgctxt "settings"
5569
  msgid "Activating license..."
5570
  msgstr "Aktywowanie Licencji"
5571
 
5572
+ # @ WPBDM
5573
+ #: core/class-settings.php:1114
 
5574
  msgctxt "admin settings"
5575
  msgid "Valid placeholders: %s"
5576
  msgstr "Dopuszczalne wypełnienie pola: %s"
5577
 
5578
+ # @ WPBDM
5579
+ #: core/class-settings.php:1148
5580
  msgctxt "settings email"
5581
  msgid "Click to edit e-mail"
5582
  msgstr "Kliknij, aby edytować e-mail"
5583
 
5584
+ # @ WPBDM
5585
+ #: core/class-settings.php:1149
5586
  msgctxt "settings email"
5587
  msgid "Click to edit"
5588
  msgstr "Kliknij, aby edytować"
5589
 
5590
+ # @ WPBDM
5591
+ #: core/class-settings.php:1162
5592
  msgctxt "settings email"
5593
  msgid "E-Mail Subject"
5594
  msgstr "Tytuł E-Maila"
5595
 
5596
+ # @ WPBDM
5597
+ #: core/class-settings.php:1173
5598
  msgctxt "settings email"
5599
  msgid "E-Mail Body"
5600
  msgstr "Forma E-Maila"
5601
 
5602
+ # @ WPBDM
5603
+ #: core/class-settings.php:1184
5604
  msgctxt "settings email"
5605
  msgid "You can use the following placeholders:"
5606
  msgstr "Możesz użyc następujących wypełnień pól:"
5607
 
5608
+ # @ WPBDM
5609
+ #: core/class-settings.php:1207
5610
  msgctxt "settings email"
5611
  msgid "Preview e-mail"
5612
  msgstr "Podgląd e-maila"
5613
 
5614
+ # @ WPBDM
5615
+ #: core/class-settings.php:1208
5616
  msgctxt "settings email"
5617
  msgid "Cancel"
5618
  msgstr "Anuluj"
5619
 
5620
+ # @ WPBDM
5621
+ #: core/class-settings.php:1209
5622
  msgctxt "settings email"
5623
  msgid "Save Changes"
5624
  msgstr "Zapisz zmiany"
5625
 
5626
+ # @ WPBDM
5627
+ #: core/class-settings.php:1228
5628
  msgctxt "settings email"
5629
  msgid "Site title"
5630
  msgstr "Tytuł strony"
5631
 
5632
+ # @ WPBDM
5633
+ #: core/class-settings.php:1231
5634
  msgctxt "settings email"
5635
  msgid "Site title (with link)"
5636
  msgstr "Tytuł strony (z linkiem)"
5637
 
5638
+ # @ WPBDM
5639
+ #: core/class-settings.php:1234
5640
  msgctxt "settings email"
5641
  msgid "Site address (with link)"
5642
  msgstr "Adres strony (z linkiem)"
5643
 
5644
+ # @ WPBDM
5645
+ #: core/class-settings.php:1237
5646
  msgctxt "settings email"
5647
  msgid "Directory URL (with link)"
5648
  msgstr "URL Katalogu (z linkiem)"
5649
 
5650
+ # @ WPBDM
5651
+ #: core/class-settings.php:1240
5652
  msgctxt "settings email"
5653
  msgid "Current date"
5654
  msgstr "Aktualna data"
5655
 
5656
+ # @ WPBDM
5657
+ #: core/class-settings.php:1243
5658
  msgctxt "settings email"
5659
  msgid "Current time"
5660
  msgstr "Aktualny czas"
5661
 
5662
+ # @ WPBDM
5663
+ #: core/class-wpbdp.php:30
5664
+ msgctxt "post type general name"
5665
+ msgid "Directory"
5666
+ msgstr "Katalog"
5667
 
5668
+ # @ WPBDM
5669
+ #: core/class-wpbdp.php:31
5670
+ #, fuzzy
5671
+ msgctxt "post type singular name"
5672
+ msgid "Listing"
5673
+ msgstr "Oferta"
5674
 
5675
+ # @ WPBDM
5676
+ #: core/class-wpbdp.php:32
5677
+ msgctxt "listing"
5678
+ msgid "Add New Listing"
5679
+ msgstr "Dodaj nową ofertę"
5680
 
5681
+ # @ WPBDM
5682
+ #: core/class-wpbdp.php:33
5683
+ msgctxt "post type"
5684
+ msgid "Add New Listing"
5685
+ msgstr "Dodaj nową ofertę"
5686
 
5687
+ # @ WPBDM
5688
+ #: core/class-wpbdp.php:34
5689
+ msgid "Edit Listing"
5690
+ msgstr "Edycja Firmy"
 
5691
 
5692
+ # @ WPBDM
5693
+ #: core/class-wpbdp.php:35
5694
+ msgid "New Listing"
5695
+ msgstr "Nowa Firma"
 
5696
 
5697
+ # @ WPBDM
5698
+ #: core/class-wpbdp.php:36
5699
+ msgid "View Listing"
5700
+ msgstr "Widok"
 
5701
 
5702
+ # @ WPBDM
5703
+ #: core/class-wpbdp.php:37
 
 
5704
  msgid "Search Listings"
5705
  msgstr "Szukaj Firmy"
5706
 
5707
+ # @ WPBDM
5708
+ #: core/class-wpbdp.php:38
5709
+ msgid "No listings found"
5710
+ msgstr "Nie znaleziono "
 
5711
 
5712
+ # @ WPBDM
5713
+ #: core/class-wpbdp.php:39
5714
+ msgid "No listings found in trash"
5715
+ msgstr "Nie znaleziono "
5716
+
5717
+ # @ WPBDM
5718
+ #: core/class-wpbdp.php:55
5719
+ msgid "Directory Categories"
5720
+ msgstr "Kategorie Katalogu"
5721
+
5722
+ # @ WPBDM
5723
+ #: core/class-wpbdp.php:56
5724
+ #, fuzzy
5725
+ msgid "Directory Category"
5726
+ msgstr "Kategorie Katalogu"
5727
+
5728
+ # @ WPBDM
5729
+ #: core/class-wpbdp.php:67
5730
+ #, fuzzy
5731
+ msgid "Directory Tags"
5732
+ msgstr "Katalog"
5733
+
5734
+ # @ WPBDM
5735
+ #: core/class-wpbdp.php:68
5736
+ #, fuzzy
5737
+ msgid "Directory Tag"
5738
+ msgstr "Katalog"
5739
+
5740
+ # @ WPBDM
5741
+ #: core/compatibility/class-navxt-integration.php:159
5742
+ msgctxt "navxt"
5743
+ msgid "Submit Listing"
5744
+ msgstr "Prześlij Ofertę"
5745
+
5746
+ # @ WPBDM
5747
+ #: core/compatibility/class-navxt-integration.php:163
5748
+ msgctxt "navxt"
5749
+ msgid "Edit Listing"
5750
+ msgstr "Edytuj Ofertę"
5751
+
5752
+ # @ WPBDM
5753
+ #: core/compatibility/class-navxt-integration.php:167
5754
+ msgctxt "navxt"
5755
+ msgid "Search"
5756
+ msgstr "Szukaj"
5757
 
5758
+ # @ WPBDM
5759
+ #: core/fieldtypes/class-fieldtypes-checkbox.php:9
5760
  msgctxt "form-fields api"
5761
+ msgid "Checkbox"
5762
+ msgstr "Czeklista"
5763
 
5764
+ # @ WPBDM
5765
+ #: core/fieldtypes/class-fieldtypes-checkbox.php:72
5766
+ #: core/fieldtypes/class-fieldtypes-radiobutton.php:68
5767
+ #: core/fieldtypes/class-fieldtypes-select.php:144
5768
  msgctxt "form-fields admin"
5769
+ msgid "Field Options (for select lists, radio buttons and checkboxes)."
5770
+ msgstr "Opcje Pola (aby wybrać listy, przycisk radio i czeklisty)."
5771
 
5772
+ # @ WPBDM
5773
+ #: core/fieldtypes/class-fieldtypes-checkbox.php:93
5774
+ #: core/fieldtypes/class-fieldtypes-radiobutton.php:87
5775
+ #: core/fieldtypes/class-fieldtypes-select.php:172
5776
  msgctxt "form-fields admin"
5777
+ msgid "Field list of options is required."
5778
+ msgstr "Pole listy opcji wymagane."
5779
 
5780
+ # @ WPBDM
5781
+ #: core/fieldtypes/class-fieldtypes-date.php:9
5782
  msgctxt "form-fields api"
5783
+ msgid "Date Field"
5784
+ msgstr "Pole daty"
5785
+
5786
+ # @ form-fields api
5787
+ #: core/fieldtypes/class-fieldtypes-date.php:32
5788
+ msgid "%s (ex. %s)"
5789
+ msgstr "%s (bez %s)"
5790
 
5791
+ # @ WPBDM
5792
+ #: core/fieldtypes/class-fieldtypes-date.php:36
5793
  msgctxt "form-fields api"
5794
+ msgid "Date Format"
5795
+ msgstr "Format daty"
5796
+
5797
+ # @ WPBDM
5798
+ #: core/fieldtypes/class-fieldtypes-date.php:61
5799
+ #, fuzzy
5800
+ msgctxt "date field"
5801
+ msgid "%s must be in the format %s."
5802
+ msgstr "%s musi być w formacie %s."
5803
+
5804
+ # @ WPBDM
5805
+ #: core/fieldtypes/class-fieldtypes-date.php:64
5806
+ #, fuzzy
5807
+ msgctxt "date field"
5808
+ msgid "%s must be a valid date."
5809
+ msgstr "%s musi być datą poprawną."
5810
+
5811
+ # @ WPBDM
5812
+ #: core/fieldtypes/class-fieldtypes-facebook.php:6
5813
+ msgctxt "form-fields api"
5814
+ msgid "Social Site (Facebook page)"
5815
+ msgstr "Strona Społeczności (Faacebook)"
5816
+
5817
+ # @ WPBDM
5818
+ #: core/fieldtypes/class-fieldtypes-image.php:6
5819
+ msgctxt "form-fields api"
5820
+ msgid "Image (file upload)"
5821
+ msgstr "Obraz (plik ładowany)"
5822
 
5823
+ # @ WPBDM
5824
+ #: core/fieldtypes/class-fieldtypes-image.php:38
5825
+ msgctxt "form-fields-api"
5826
+ msgid "Remove"
5827
+ msgstr "Usuń"
5828
+
5829
+ # @ WPBDM
5830
+ #: core/fieldtypes/class-fieldtypes-linkedin.php:6
5831
+ msgctxt "form-fields api"
5832
+ msgid "Social Site (LinkedIn profile)"
5833
+ msgstr "Strona Społeczności (LinkedIn)"
5834
+
5835
+ #: core/fieldtypes/class-fieldtypes-linkedin.php:21
5836
+ msgctxt "form-fields api"
5837
+ msgid "You can add your Company ID or profile URL here."
5838
+ msgstr ""
5839
+
5840
+ # @ WPBDM
5841
+ #: core/fieldtypes/class-fieldtypes-multiselect.php:6
5842
+ msgctxt "form-fields api"
5843
+ msgid "Multiple select list"
5844
+ msgstr "Lista wielokrotnego wyboru"
5845
+
5846
+ # @ WPBDM
5847
+ #: core/fieldtypes/class-fieldtypes-multiselect.php:11
5848
+ msgctxt "form-fields api"
5849
+ msgid "Multiselect List"
5850
+ msgstr "Lista wielokrotnego zaznaczania"
5851
+
5852
+ #: core/fieldtypes/class-fieldtypes-multiselect.php:25
5853
+ msgctxt "form-fields-admin"
5854
+ msgid "Number of options visible without scrolling"
5855
+ msgstr ""
5856
+
5857
+ #: core/fieldtypes/class-fieldtypes-multiselect.php:26
5858
+ msgctxt "form-fields-admin"
5859
+ msgid ""
5860
+ "The height of the list will be adjusted to accommodate the specified number "
5861
+ "of options."
5862
+ msgstr ""
5863
+
5864
+ # @ WPBDM
5865
+ #: core/fieldtypes/class-fieldtypes-phone-number.php:13
5866
+ #, fuzzy
5867
+ msgctxt "form fields"
5868
+ msgid "Phone Number"
5869
+ msgstr "Telefon"
5870
+
5871
+ # @ WPBDM
5872
+ #: core/fieldtypes/class-fieldtypes-radiobutton.php:9
5873
+ msgctxt "form-fields api"
5874
+ msgid "Radio button"
5875
+ msgstr "Przycisk Radio"
5876
+
5877
+ # @ WPBDM
5878
+ #: core/fieldtypes/class-fieldtypes-select.php:8
5879
  msgctxt "form-fields api"
5880
  msgid "Select List"
5881
  msgstr "Lista Wyboru"
5882
 
5883
+ # @ WPBDM
5884
+ #: core/fieldtypes/class-fieldtypes-select.php:68
5885
  msgctxt "form-fields-api category-select"
5886
  msgid "-- Choose Terms --"
5887
  msgstr "-- Wybierz Warunki --"
5888
 
5889
+ # @ WPBDM
5890
+ #: core/fieldtypes/class-fieldtypes-select.php:68
5891
+ #: core/fieldtypes/class-fieldtypes-select.php:105
5892
  msgctxt "form-fields-api category-select"
5893
  msgid "-- Choose One --"
5894
  msgstr "-- Wybierz Jeden --"
5895
 
5896
+ # @ WPBDM
5897
+ #: core/fieldtypes/class-fieldtypes-select.php:155
 
 
 
 
 
 
 
 
5898
  msgctxt "form-fields admin"
5899
  msgid "Allow empty selection on search?"
5900
  msgstr "Zezwolić na wyszukiwanie pustych pól wyborów?"
5901
 
5902
+ # @ WPBDM
5903
+ #: core/fieldtypes/class-fieldtypes-textarea.php:6
 
 
 
 
 
 
 
 
5904
  msgctxt "form-fields api"
5905
  msgid "Textarea"
5906
  msgstr "Pole tekstowe / z możliwością html"
5907
 
5908
+ # @ WPBDM
5909
+ #: core/fieldtypes/class-fieldtypes-textarea.php:50
5910
  msgctxt "form-fields admin"
5911
  msgid "Allow HTML input for this field?"
5912
  msgstr "Zezwolić na wprowadzanie HTML w tym polu?"
5913
 
5914
+ #: core/fieldtypes/class-fieldtypes-textarea.php:53
5915
+ msgctxt "form-fields admin"
5916
+ msgid "Allow IFRAME tags in content?"
5917
+ msgstr ""
5918
+
5919
+ #: core/fieldtypes/class-fieldtypes-textarea.php:56
5920
+ msgctxt "admin form-fields"
5921
+ msgid ""
5922
+ "Enabling iframe support in your listings can allow users to execute "
5923
+ "arbitrary scripts on a page if they want, which can possibly infect your "
5924
+ "site with malware. We do NOT recommend using this setting UNLESS you are "
5925
+ "posting the listings yourself and have sole control over the content. Are "
5926
+ "you sure you want to enable this?"
5927
+ msgstr ""
5928
+
5929
+ # @ WPBDM
5930
+ #: core/fieldtypes/class-fieldtypes-textarea.php:57
5931
+ #, fuzzy
5932
+ msgctxt "form-fields admin"
5933
+ msgid "No"
5934
+ msgstr "LIS"
5935
+
5936
+ #: core/fieldtypes/class-fieldtypes-textarea.php:58
5937
+ msgctxt "form-fields admin"
5938
+ msgid "Yes"
5939
+ msgstr ""
5940
+
5941
+ # @ WPBDM
5942
+ #: core/fieldtypes/class-fieldtypes-textarea.php:63
5943
  msgctxt "form-fields admin"
5944
  msgid "Allow WordPress shortcodes in this field?"
5945
  msgstr "Zezwolić na krótkie kody WordPress'a w tm polu?"
5946
 
5947
+ #: core/fieldtypes/class-fieldtypes-textarea.php:66
5948
+ msgctxt "form-fields admin"
5949
+ msgid "Display a WYSIWYG editor on the frontend?"
5950
+ msgstr ""
5951
+
5952
+ #: core/fieldtypes/class-fieldtypes-textarea.php:69
5953
+ msgctxt "form-fields admin"
5954
+ msgid ""
5955
+ "<b>Warning:</b> Users can use this feature to get around your image limits "
5956
+ "in fee plans."
5957
+ msgstr ""
5958
+
5959
+ #: core/fieldtypes/class-fieldtypes-textarea.php:70
5960
+ msgctxt "form-fields admin"
5961
+ msgid "Allow images in WYSIWYG editor?"
5962
+ msgstr ""
5963
+
5964
+ # @ WPBDM
5965
+ #: core/fieldtypes/class-fieldtypes-textarea.php:73
5966
  msgctxt "form-fields admin"
5967
+ msgid ""
5968
+ "<b>Advanced users only!</b> Unless you've been told to change this, don't "
5969
+ "switch it unless you know what you're doing."
5970
+ msgstr ""
5971
+ "<b>Tylko zaawansowani Użytkownicy!</b>. O ile nie powiedziano by to zmienić, "
5972
+ "nie zaznaczaj tej opcji, no chyba że wiesz co robisz."
5973
 
5974
+ # @ WPBDM
5975
+ #: core/fieldtypes/class-fieldtypes-textarea.php:74
5976
  msgctxt "form-fields admin"
5977
  msgid "Apply \"the_content\" filter before displaying this field?"
5978
  msgstr "Zastosować filtr \"the_content\" przed wyświetlaniem tego pola?"
5979
 
5980
+ #: core/fieldtypes/class-fieldtypes-textarea.php:79
5981
+ msgctxt "form-fields admin"
5982
+ msgid "Automatically generate excerpt from content field?"
5983
+ msgstr ""
 
 
 
 
 
 
 
5984
 
5985
+ # @ WPBDM
5986
+ #: core/fieldtypes/class-fieldtypes-textfield.php:5
5987
  msgctxt "form-fields api"
5988
+ msgid "Textfield"
5989
+ msgstr "Pole tekstowe"
5990
 
5991
+ # @ WPBDM
5992
+ #: core/fieldtypes/class-fieldtypes-textfield.php:41
5993
  msgctxt "form-fields api"
5994
+ msgid "Format 01/31/1969"
5995
+ msgstr "Format 01/31/1969"
5996
 
5997
+ # @ WPBDM
5998
+ #: core/fieldtypes/class-fieldtypes-twitter.php:6
5999
  msgctxt "form-fields api"
6000
  msgid "Social Site (Twitter handle)"
6001
  msgstr "Strona Społeczności (Twitter)"
6002
 
6003
+ # @ WPBDM
6004
+ #: core/fieldtypes/class-fieldtypes-url.php:5
6005
  msgctxt "form-fields api"
6006
+ msgid "URL Field"
6007
+ msgstr "Pole URL"
6008
+
6009
+ # @ WPBDM
6010
+ #: core/fieldtypes/class-fieldtypes-url.php:22
6011
+ msgctxt "form-fields admin"
6012
+ msgid "Open link in a new window?"
6013
+ msgstr "Otworzyć łącze w nowym oknie?"
6014
+
6015
+ # @ WPBDM
6016
+ #: core/fieldtypes/class-fieldtypes-url.php:25
6017
+ msgctxt "form-fields admin"
6018
+ msgid "Use rel=\"nofollow\" when displaying the link?"
6019
+ msgstr "Użyj rel=\"nofollow\" kiedy wyświetlany jest link?"
6020
 
6021
+ # @ WPBDM
6022
+ #: core/fieldtypes/class-fieldtypes-url.php:134
6023
  msgctxt "form-fields api"
6024
+ msgid "URL:"
6025
+ msgstr "URL:"
6026
 
6027
+ # @ WPBDM
6028
+ #: core/fieldtypes/class-fieldtypes-url.php:141
6029
  msgctxt "form-fields api"
6030
+ msgid "Link Text (optional):"
6031
+ msgstr "Tekst alternatywny(opcjonalnie):"
 
 
 
 
 
 
6032
 
6033
+ # @ WPBDM
6034
  #: core/form-fields.php:31
 
6035
  msgctxt "form-fields api"
6036
  msgid "Post Title"
6037
  msgstr "Tytuł Posta"
6038
 
6039
+ # @ WPBDM
6040
  #: core/form-fields.php:32
 
6041
  msgctxt "form-fields api"
6042
  msgid "Post Content"
6043
  msgstr "Zawartość Posta"
6044
 
6045
+ # @ WPBDM
6046
  #: core/form-fields.php:33
 
6047
  msgctxt "form-fields api"
6048
  msgid "Post Excerpt"
6049
  msgstr "Wyciąg z Posta"
6050
 
6051
+ # @ WPBDM
6052
  #: core/form-fields.php:34
 
6053
  msgctxt "form-fields api"
6054
  msgid "Post Category"
6055
  msgstr "Kategoria Posta"
6056
 
6057
+ # @ WPBDM
6058
  #: core/form-fields.php:35
 
6059
  msgctxt "form-fields api"
6060
  msgid "Post Tags"
6061
  msgstr "Tagi Oferty"
6062
 
6063
+ # @ WPBDM
6064
  #: core/form-fields.php:36
 
6065
  msgctxt "form-fields api"
6066
  msgid "Post Metadata"
6067
  msgstr "Metadane Posta"
6068
 
6069
+ # @ WPBDM
6070
  #: core/form-fields.php:38
 
6071
  msgctxt "form-fields api"
6072
  msgid "Custom"
6073
  msgstr "Niestandardowe"
6074
 
6075
+ # @ WPBDM
6076
+ #: core/form-fields.php:318
6077
  msgid "Business Name"
6078
  msgstr "Nazwa Firmy"
6079
 
6080
+ # @ WPBDM
6081
+ #: core/form-fields.php:320
6082
  msgid "Business Genre"
6083
  msgstr "Województwo"
6084
 
6085
+ # @ WPBDM
6086
+ #: core/form-fields.php:322
6087
  msgid "Short Business Description"
6088
  msgstr "Krótke Info"
6089
 
6090
+ # @ WPBDM
6091
+ #: core/form-fields.php:324
6092
  msgid "Long Business Description"
6093
  msgstr "Długi Opis Firmy"
6094
 
6095
+ # @ WPBDM
6096
+ #: core/form-fields.php:326
6097
  msgid "Business Website Address"
6098
  msgstr "Strona Firmowa"
6099
 
6100
+ # @ WPBDM
6101
+ #: core/form-fields.php:328
6102
  msgid "Business Phone Number"
6103
  msgstr "Telefon"
6104
 
6105
+ # @ WPBDM
6106
+ #: core/form-fields.php:330
6107
  msgid "Business Fax"
6108
  msgstr "Fax"
6109
 
6110
+ # @ WPBDM
6111
+ #: core/form-fields.php:332
6112
  msgid "Business Contact Email"
6113
  msgstr "Kontaktowy adres e-mail"
6114
 
6115
+ # @ WPBDM
6116
+ #: core/form-fields.php:334
6117
  msgid "Business Tags"
6118
  msgstr "Firmowe Tagi"
6119
 
6120
+ # @ WPBDM
6121
+ #: core/form-fields.php:336
6122
+ #, fuzzy
6123
+ msgid "Business Address"
6124
+ msgstr "Strona Firmowa"
6125
+
6126
+ #: core/form-fields.php:338
6127
+ msgid "ZIP Code"
6128
+ msgstr ""
6129
+
6130
+ # @ WPBDM
6131
+ #: core/form-fields.php:458
6132
  msgctxt "form-fields-api"
6133
  msgid "Email Validator"
6134
  msgstr "Weryfikator E-mail"
6135
 
6136
+ # @ WPBDM
6137
+ #: core/form-fields.php:459
6138
  msgctxt "form-fields-api"
6139
  msgid "URL Validator"
6140
  msgstr "Weryfikator URL"
6141
 
6142
+ # @ WPBDM
6143
+ #: core/form-fields.php:460
6144
  msgctxt "form-fields-api"
6145
  msgid "Whole Number Validator"
6146
  msgstr "Weryfikator liczb całkowitych"
6147
 
6148
+ # @ WPBDM
6149
+ #: core/form-fields.php:461
6150
  msgctxt "form-fields-api"
6151
  msgid "Decimal Number Validator"
6152
  msgstr "Weryfikator liczb dziesiętnych"
6153
 
6154
+ # @ WPBDM
6155
+ #: core/form-fields.php:462
6156
  msgctxt "form-fields-api"
6157
  msgid "Date Validator"
6158
  msgstr "Weryfikator daty"
6159
 
6160
+ # @ WPBDM
6161
+ #: core/form-fields.php:469
6162
  msgctxt "form-fields-api validation"
6163
  msgid "Field"
6164
  msgstr "Pole"
6165
 
6166
+ # @ WPBDM
6167
+ #: core/form-fields.php:485 core/form-fields.php:489
 
 
6168
  msgctxt "form-fields-api validation"
6169
  msgid "%s is required."
6170
  msgstr "%s jest wymagane."
6171
 
6172
+ # @ WPBDM
6173
+ #: core/form-fields.php:498 core/form-fields.php:505
 
 
6174
  msgctxt "form-fields-api validation"
6175
  msgid "%s is badly formatted. Valid URL format required. Include http://"
6176
+ msgstr ""
6177
+ "%s jest źle sformatowany. Wymagamy właściwego adresu URL. Sprawdź czy nie "
6178
+ "zapomniałeś o http://"
6179
 
6180
+ # @ WPBDM
6181
+ #: core/form-fields.php:519
 
6182
  msgctxt "form-fields-api validation"
6183
  msgid "%s is badly formatted. Valid Email format required."
6184
  msgstr "%s jest źle sformatowany. Wymagamy właściwego adresu E-mail."
6185
 
6186
+ # @ WPBDM
6187
+ #: core/form-fields.php:525
 
6188
  msgctxt "form-fields-api validation"
6189
  msgid "%s must be a number. Decimal values are not allowed."
6190
  msgstr "%s musi być liczbą. Dziesiętne nie są dozwolone. "
6191
 
6192
+ # @ WPBDM
6193
+ #: core/form-fields.php:531
 
6194
  msgctxt "form-fields-api validation"
6195
  msgid "%s must be a number."
6196
  msgstr "%s musi być liczbą."
6197
 
6198
+ # @ WPBDM
6199
+ #: core/form-fields.php:544
6200
+ msgctxt "form-fields-api validation"
6201
+ msgid "%s must be in the format %s."
6202
+ msgstr "%s musi być w formacie %s."
6203
+
6204
+ # @ WPBDM
6205
+ #: core/form-fields.php:579
6206
+ msgctxt "form-fields-api validation"
6207
+ msgid "%s must be a valid date."
6208
+ msgstr "%s musi być datą poprawną."
6209
+
6210
+ # @ WPBDM
6211
+ #: core/form-fields.php:590
6212
  msgctxt "form-fields-api validation"
6213
  msgid "%s is invalid. Value most be one of %s."
6214
  msgstr "%s jest niewłaściwe. Wartość musi być jedną z %s."
6215
 
6216
+ # @ authorize-net
6217
+ #: core/gateways-authorize-net.php:19
6218
+ msgid "Activate Authorize.net?"
6219
+ msgstr "Aktywować Authorize.net?"
6220
+
6221
+ # @ authorize-net
6222
+ #: core/gateways-authorize-net.php:25
6223
+ msgid "Login ID"
6224
+ msgstr "ID Loginu"
6225
+
6226
+ # @ authorize-net
6227
+ #: core/gateways-authorize-net.php:29
6228
+ msgid "Transaction Key"
6229
+ msgstr "Klucz Transakcji"
6230
+
6231
+ # @ WPBDM
6232
+ #: core/gateways-authorize-net.php:40
6233
+ msgctxt "authorize-net"
6234
+ msgid "Login ID is missing."
6235
+ msgstr "Nie znaleziono ID Loginu"
6236
+
6237
+ # @ WPBDM
6238
+ #: core/gateways-authorize-net.php:43
6239
+ msgctxt "authorize-net"
6240
+ msgid "Transaction Key is missing."
6241
+ msgstr "Nie znaleziono klucza transakcji."
6242
+
6243
+ # @ WPBDM
6244
+ #: core/gateways-authorize-net.php:92
6245
+ msgctxt "authorize-net"
6246
+ msgid ""
6247
+ "The payment gateway didn't accept your credit card or billing information. "
6248
+ "The following reason was given: \"%s\"."
6249
+ msgstr ""
6250
+ "Bramka płatności nie akceptuje Twojej Karty Kredytowej lub informacji "
6251
+ "bilingowych. Powodem może być: \"%s\"."
6252
+
6253
+ # @ WPBDM
6254
+ #: core/gateways-authorize-net.php:96
6255
+ msgctxt "authorize-net"
6256
+ msgid ""
6257
+ "Your payment is being held for review by the payment gateway. The following "
6258
+ "reason was given: \"%s\"."
6259
+ msgstr ""
6260
+ "Twoja płatność została wstrzymana przez bramkę płatności. Powodem może być: "
6261
+ "\"%s\"."
6262
+
6263
+ # @ WPBDM
6264
+ #: core/gateways-authorize-net.php:99 core/gateways-authorize-net.php:122
6265
+ msgctxt "authorize-net"
6266
+ msgid "Payment was rejected. The following reason was given: \"%s\"."
6267
+ msgstr "Płatność została odrzucona. Powodem może być: \"%s\"."
6268
+
6269
+ # @ WPBDM
6270
+ #: core/gateways-authorize-net.php:116
6271
+ #, fuzzy
6272
+ msgctxt "authorize-net"
6273
+ msgid "Setup fee"
6274
+ msgstr "Zarządzaj abonamentami"
6275
+
6276
+ # @ WPBDM
6277
+ #: core/gateways-authorize-net.php:175
6278
+ msgctxt "authorize-net"
6279
+ msgid "Could not process payment."
6280
+ msgstr "Nie można kontynuować płatności."
6281
+
6282
+ # @ WPBDM
6283
  #: core/gateways-dummy.php:15
 
6284
  msgctxt "dummy gateway"
6285
  msgid "Dummy"
6286
  msgstr "Atrapa"
6287
 
6288
+ # @ WPBDM
6289
  #: core/gateways-dummy.php:38
 
6290
  msgctxt "dummy gateway"
6291
  msgid "Dummy Gateway"
6292
  msgstr "Atrapa Bramki"
6293
 
6294
+ # @ WPBDM
6295
  #: core/gateways-dummy.php:39
 
6296
  msgctxt "dummy gateway"
6297
  msgid "New Status:"
6298
  msgstr "Nowy status:"
6299
 
6300
+ # @ WPBDM
6301
  #: core/gateways-dummy.php:41
 
6302
  msgctxt "dummy gateway"
6303
  msgid "Completed"
6304
  msgstr "Zakończona"
6305
 
6306
+ # @ WPBDM
6307
  #: core/gateways-dummy.php:43
 
6308
  msgctxt "dummy gateway"
6309
  msgid "Pending"
6310
  msgstr "Oczekujące"
6311
 
6312
+ # @ WPBDM
6313
  #: core/gateways-dummy.php:45
 
6314
  msgctxt "dummy gateway"
6315
  msgid "Canceled"
6316
  msgstr "Anulowana"
6317
 
6318
+ # @ WPBDM
6319
  #: core/gateways-dummy.php:47
 
6320
  msgctxt "dummy gateway"
6321
  msgid "Rejected"
6322
  msgstr "Odrzucona"
6323
 
6324
+ # @ WPBDM
6325
  #: core/gateways-dummy.php:49
 
6326
  msgctxt "dummy gateway"
6327
  msgid "Process Payment"
6328
  msgstr "Proces Płatności"
6329
 
6330
+ # @ WPBDM
6331
+ #: core/helpers/class-fs.php:112
6332
+ #, fuzzy
6333
+ msgctxt "fs helper"
6334
+ msgid "Destination dir \"%s\" is not writable."
6335
+ msgstr "Kategoria \"%s\" nie istnieje"
6336
 
6337
+ #: core/helpers/class-themes-updater.php:128
6338
+ msgctxt "themes"
6339
+ msgid "Updating theme..."
6340
+ msgstr ""
 
6341
 
6342
+ # @ WPBDM
6343
+ #: core/helpers/class-themes-updater.php:129
6344
+ #, fuzzy
6345
+ msgctxt "themes"
6346
+ msgid "Theme updated."
6347
+ msgstr "Abonament zaktualizowany"
6348
 
6349
+ #: core/helpers/class-themes-updater.php:131
6350
+ msgctxt "themes"
6351
+ msgid "New version available (<b>%s</b>). <a>Update now.</a>"
6352
+ msgstr ""
 
6353
 
6354
+ # @ WPBDM
6355
+ #: core/helpers/class-themes-updater.php:159
6356
+ #, fuzzy
6357
+ msgctxt "themes"
6358
+ msgid "Could not update theme: %s"
6359
+ msgstr "Nie możemy deaktywować Licencji: %s."
6360
 
6361
+ # @ WPBDM
6362
+ #: core/helpers/class-themes-updater.php:165
6363
+ #, fuzzy
6364
+ msgctxt "themes"
6365
+ msgid "Theme was updated sucessfully."
6366
+ msgstr "Import zakończony pełnym sukcesem."
6367
 
6368
+ # @ WPBDM
6369
+ #: core/installer.php:43
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
6370
  msgctxt "default category name"
6371
  msgid "General"
6372
  msgstr "Główna"
6373
 
6374
+ # @ WPBDM
6375
+ #: core/installer.php:51
6376
+ #, fuzzy
6377
  msgctxt "installer"
6378
+ msgid "Default Fee"
6379
+ msgstr "Usuń abonament"
6380
+
6381
+ # @ WPBDM
6382
+ #: core/installer.php:502
6383
+ msgctxt "installer"
6384
+ msgid ""
6385
+ "<b>Business Directory Plugin - Regions Module</b> was disabled because it is "
6386
+ "incompatible with the current version of Business Directory. Please update "
6387
+ "the Regions module."
6388
+ msgstr ""
6389
+ "<b>Katalog Firm - Moduł Regionów</b> został wyłączony, ponieważ używana "
6390
+ "wersja nie jest kompatybilna z wersją Katalogu Firm. Proszę zaktualizować "
6391
+ "Moduł Regionów do nowej wersji."
6392
 
6393
+ # @ WPBDM
6394
+ #: core/installer.php:568
 
6395
  msgctxt "installer"
6396
  msgid "Cleaning up listing fees information... %d/%d"
6397
  msgstr "Czyszczenie informacji o abonamentach... %d/%d"
6398
 
6399
+ # @ WPBDM
6400
+ #: core/installer.php:618
 
6401
  msgctxt "installer"
6402
  msgid "Migrating previous transactions to new Payments API... %d/%d"
6403
+ msgstr ""
6404
+ "Migracja poprzednich transakcji do nowych ustawień API płatności... %d/%d"
6405
 
6406
+ # @ WPBDM
6407
+ #: core/installer.php:647
6408
  msgctxt "installer"
6409
  msgid "Initial listing payment (BD < 3.4)"
6410
  msgstr "Inicjacja płatności (BD < 3.4)"
6411
 
6412
+ # @ WPBDM
6413
+ #: core/installer.php:658
6414
  msgctxt "installer"
6415
  msgid "Listing edit payment (BD < 3.4)"
6416
  msgstr "Edycja płatności (BD < 3.4)"
6417
 
6418
+ # @ WPBDM
6419
+ #: core/installer.php:679
 
6420
  msgctxt "installer"
6421
  msgid "Renewal fee \"%s\" for category \"%s\""
6422
  msgstr "Odnowienie abonamentu \"%s\" dla kategorii \"%s\""
6423
 
6424
+ # @ WPBDM
6425
+ #: core/installer.php:698
6426
  msgctxt "installer"
6427
  msgid "Listing upgrade to featured"
6428
  msgstr "Podniesienie statusu do WYRÓŻNIONE"
6429
 
6430
+ #: core/installer.php:1012
6431
+ msgctxt "installer"
6432
+ msgid ""
6433
+ "Cleaning up stored meta data for Checkbox, Radio and Select fields... (%d "
6434
+ "records left)"
6435
+ msgstr ""
6436
+
6437
+ # @ WPBDM
6438
+ #: core/installer.php:1061
6439
  msgid "Business Directory - Manual Upgrade Required"
6440
  msgstr "Katalog firm - wymagana ręczna aktualizacja"
6441
 
6442
+ # @ WPBDM
6443
+ #: core/installer.php:1063
6444
+ msgid ""
6445
+ "Business Directory features are currently disabled because the plugin needs "
6446
+ "to perform a manual upgrade before continuing."
6447
+ msgstr ""
6448
+ "Funkcje pluginu KATALOG FIRM są chwilowo wyłączone, ponieważ plugin oczekuje "
6449
+ "na ręczną aktualizację, przed kontynuacją."
6450
 
6451
+ # @ WPBDM
6452
+ #: core/installer.php:1065
6453
  msgid "Perform Manual Upgrade"
6454
  msgstr "Wykonać ręczne uaktualnienie"
6455
 
6456
+ # @ WPBDM
6457
+ #: core/installer.php:1081 core/installer.php:1082 core/installer.php:1093
 
 
6458
  msgid "Business Directory - Manual Upgrade"
6459
  msgstr "Katalog Firm - Ręczna Aktualizacja"
6460
 
6461
+ # @ WPBDM
6462
+ #: core/installer.php:1097
6463
+ msgid ""
6464
+ "Business Directory features are currently disabled because the plugin needs "
6465
+ "to perform a manual upgrade before it can be used."
6466
+ msgstr ""
6467
+ "Funkcje pluginu KATALOG FIRM są chwilowo wyłączone, ponieważ plugin oczekuje "
6468
+ "na ręczną aktualizację, zanim będzie mógł być użyty."
6469
 
6470
+ # @ WPBDM
6471
+ #: core/installer.php:1099
6472
  msgid "Click \"Start Upgrade\" and wait until the process finishes."
6473
+ msgstr ""
6474
+ "Kliknij \"Start Aktualizacji\" i czekaj do zakończenia procesuand wait until "
6475
+ "the process finishes."
6476
 
6477
+ # @ WPBDM
6478
+ #: core/installer.php:1102
6479
  msgctxt "manual-upgrade"
6480
  msgid "Start Upgrade"
6481
  msgstr "Rozpocznij Aktualizację"
6482
 
6483
+ # @ WPBDM
6484
+ #: core/installer.php:1104
6485
  msgctxt "manual-upgrade"
6486
  msgid "Pause Upgrade"
6487
  msgstr "Wstrzymaj Aktualizację"
6488
 
6489
+ # @ WPBDM
6490
+ #: core/installer.php:1110
6491
  msgctxt "manual-upgrade"
6492
+ msgid ""
6493
+ "The upgrade was sucessfully performed. Business Directory Plugin is now "
6494
+ "available."
6495
  msgstr "Aktualizacja przebiegła pomyślnie. Katalog Firm jest teraz dostępny."
6496
 
6497
+ # @ WPBDM
6498
+ #: core/installer.php:1113
6499
  msgctxt "manual-upgrade"
6500
  msgid "Go to \"Directory Admin\""
6501
  msgstr "Przejdź do \"Katalog Administracja\""
6502
 
6503
+ # @ WPBDM
6504
+ #: core/installer.php:1148
6505
+ #, fuzzy
6506
+ msgid "Business Directory - Installation Failed"
6507
+ msgstr "Katalog Firm - Ręczna Aktualizacja"
6508
+
6509
+ #: core/installer.php:1150
6510
+ msgid ""
6511
+ "Business Directory installation failed. An exception with following message "
6512
+ "was generated:"
6513
+ msgstr ""
6514
+
6515
+ #: core/installer.php:1155
6516
+ msgid "Please <contact-link>contact customer support</a>."
6517
+ msgstr ""
6518
+
6519
+ # @ WPBDM
6520
+ #: core/licensing.php:42 core/licensing.php:64 core/licensing.php:65
6521
  msgctxt "settings"
6522
  msgid "Licenses"
6523
  msgstr "Licencje"
6524
 
6525
+ # @ WPBDM
6526
+ #: core/licensing.php:45
6527
  msgctxt "settings"
6528
  msgid "Premium Modules"
6529
  msgstr "Moduły Premium"
6530
 
6531
+ # @ WPBDM
6532
+ #: core/licensing.php:106 core/licensing.php:140
 
6533
  msgctxt "licensing"
6534
  msgid "Invalid module ID"
6535
  msgstr "Niewłaściwe ID Modułu"
6536
 
6537
+ # @ WPBDM
6538
+ #: core/licensing.php:111
6539
  msgctxt "licensing"
6540
  msgid "No license key provided"
6541
  msgstr "Nie wprowadzono klucz licencji"
6542
 
6543
+ # @ WPBDM
6544
+ #: core/licensing.php:168
 
 
 
 
 
 
 
 
 
 
 
 
 
 
6545
  msgctxt "licensing"
6546
  msgid "Deactivation failed"
6547
  msgstr "Błąd Deaktywacji"
6548
 
6549
+ # @ WPBDM
6550
+ #: core/licensing.php:220
6551
  msgctxt "licensing"
6552
  msgid "Business Directory - License Key Required"
6553
  msgstr "Katalog firm - wymagany Klucz Licencji"
6554
 
6555
+ # @ WPBDM
6556
+ #: core/licensing.php:223
6557
  msgctxt "licensing"
6558
+ msgid ""
6559
+ "The following premium modules will not work until a valid license key is "
6560
+ "provided. Go to <a>Manage Options - Licenses</a> to enter your license "
6561
+ "information."
6562
+ msgstr ""
6563
+ "Poniższye moduły premium nie będą pracowały do momentu wprowadzenia klucza "
6564
+ "licencji. Przejdź do <a>Zarządzanie opcjami - Licencje</a>aby wprowadzić "
6565
+ "informacje o licencji."
6566
 
6567
+ # @ WPBDM
6568
+ #: core/licensing.php:244
6569
  msgctxt "licensing"
6570
  msgid "Business Directory - License Key Expired"
6571
  msgstr "Katalog firm - wygasł Klucz Licencji"
6572
 
6573
+ # @ WPBDM
6574
+ #: core/licensing.php:245
 
6575
  msgctxt "licensing"
6576
+ msgid ""
6577
+ "The license key for <span class=\"module-name\">%s %s</span> has expired. "
6578
+ "The module will continue to work but you will not receive any more updates "
6579
+ "until the license is renewed."
6580
+ msgstr ""
6581
+ "Klucz licencyjny <span class=\"module-name\">do% s% s</span> wygasł. Moduł "
6582
+ "będzie nadal działać, ale nie będzie już otrzymywać żadnych aktualizacji do "
6583
+ "czasu odnowienia licencji."
6584
 
6585
+ # @ WPBDM
6586
+ #: core/licensing.php:249
6587
  msgctxt "licensing"
6588
  msgid "Remind me later"
6589
  msgstr "Przypomnij później"
6590
 
6591
+ # @ WPBDM
6592
+ #: core/licensing.php:251
6593
  msgctxt "licensing"
6594
  msgid "Renew License Key"
6595
  msgstr "Odśwież Klucz Licencji"
6596
 
6597
+ # @ WPBDM
6598
+ #: core/licensing.php:338
 
 
 
 
 
 
 
 
 
 
 
 
 
 
6599
  msgctxt "licensing"
6600
  msgid "Could not deactivate license: %s."
6601
  msgstr "Nie możemy deaktywować Licencji: %s."
6602
 
6603
+ # @ WPBDM
6604
+ #: core/payment.php:91
6605
+ msgctxt "payments-api"
6606
+ msgid ""
6607
+ "You are offering featured listings but have payments turned off. Go to <a "
6608
+ "href=\"%s\">Manage Options - Payment</a> to change the payment settings. "
6609
+ "Until you change this, the <i>Upgrade to Featured</i> option will be "
6610
+ "disabled."
6611
+ msgstr ""
6612
+ "Oferujesz wyróżnienia ale masz wyłączone opcje płatności. Przejdź do <a href="
6613
+ "\"%s\">Opcje zarządzania - Płatności </a> aby zmienić te ustawienia. Do "
6614
+ "czasu zmiany tych ustawień opcja <i>Zmień status na wyróżnione</i> będzie "
6615
+ "niedostępna."
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
6616
 
6617
+ # @ WPBDM
6618
+ #: core/payment.php:109
6619
+ msgctxt "payments-api"
6620
+ msgid ""
6621
+ "The <b>%s</b> gateway is active but not properly configured. The gateway "
6622
+ "won't be available until the following problems are fixed: <b>%s</b>. <br/> "
6623
+ "Check the <a href=\"%s\">payment settings</a>."
6624
+ msgstr ""
6625
+ "Bramka <b>%s</b> jest aktywna, ale nie jest skonfigurowana. Bramka nie "
6626
+ "będzie dostępna do czasu usunięcia tych problemów: <b>%s</b>. Sprawdź <a "
6627
+ "href=\"%s\">Ustawienia Płatności</a>."
6628
 
6629
+ # @ WPBDM
6630
+ #: core/payment.php:119
6631
+ msgctxt "admin"
6632
+ msgid ""
6633
+ "You have payments turned on but no gateway is active and properly "
6634
+ "configured. Go to <a href=\"%s\">Manage Options - Payment</a> to change the "
6635
+ "payment settings. Until you change this, the directory will operate in "
6636
+ "<i>Free Mode</i>."
6637
+ msgstr ""
6638
+ "Masz włączone płatności, ale nie masz aktywnej i właściwie skonfigurowanej "
6639
+ "bramki. Przejdź do <a href=\"%s\">Zarządzaj Opcjami - Płatności</a> aby "
6640
+ "zmienić ustawienia. Do czasu wprowadzenia zmian, plugin będzie działał w "
6641
+ "<i>Trybie Bezpłatnym</i>."
6642
 
6643
+ # @ admin
6644
+ #: core/payment.php:123
6645
+ msgid ""
6646
+ "BD detected PayFast and another gateway were enabled. This setup is not "
6647
+ "recommended due to PayFast supporting only ZAR and the other gateways not "
6648
+ "supporting this currency."
6649
+ msgstr ""
6650
+ "Katalog Firm wykrył włączoną bramkę PayFast oraz inne włączone bramki. To "
6651
+ "ustawienie nie jest zalecane ze względu na to, że PayFast wspiera tylko "
6652
+ "ZAR, a inne bramki nie wspierają tej waluty."
6653
 
6654
+ # @ WPBDM
6655
+ #: core/payment.php:127
6656
+ msgid ""
6657
+ "You have recurring renewal of listing fees enabled but the payment gateways "
6658
+ "installed don't support recurring payments. Until a gateway that supports "
6659
+ "recurring payments (such as PayPal) is enabled automatic renewals will be "
6660
+ "disabled."
6661
+ msgstr ""
6662
+ "Masz włączone powtarzające się odnowienia abonamentów, ale zainstalowana "
6663
+ "bramka płatności nie obsługuje powtarzających się płatności. Dopóki bramka, "
6664
+ "która obsługuje powtarzające się płatności (taka jak PayPal) nie zostanie "
6665
+ "włączona, automatyczne odnowienie zostaną wyłączone."
6666
 
6667
+ #: core/payment.php:135
6668
+ msgid ""
6669
+ "You have payments enabled but there are no fees available. Users won't be "
6670
+ "able to post listings. Please <a href=\"fees\">create some fees</a> or <a "
6671
+ "href=\"settings\">configure the Directory</a> to operate in \"Free Mode\"."
6672
+ msgstr ""
6673
 
6674
+ # @ WPBDM
6675
+ #: core/payment.php:169
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
6676
  msgctxt "payments-api"
6677
  msgid "Checkout"
6678
  msgstr "Przejdź do Kasy"
6679
 
6680
+ # @ WPBDM
6681
+ #: core/payment.php:170
 
6682
  msgctxt "payments-api"
6683
  msgid "Pay %1$s through %2$s"
6684
  msgstr "Zapłać %1$s z %2$s"
6685
 
6686
+ # @ WPBDM
6687
+ #: core/payment.php:177
6688
  msgctxt "payments-api"
6689
  msgid "Your transaction has been approved."
6690
  msgstr "Transakcja została zatwierdzona."
6691
 
6692
+ # @ WPBDM
6693
+ #: core/payment.php:363
6694
  msgctxt "payments"
6695
  msgid "Payment Details"
6696
  msgstr "Szczegóły płatności"
6697
 
6698
+ # @ WPBDM
6699
+ #: core/payment.php:390
6700
  msgctxt "checkout"
6701
  msgid "Payment Method"
6702
  msgstr "Sposób Zapłaty"
6703
 
6704
+ # @ WPBDM
6705
+ #: core/payment.php:424
6706
  msgctxt "payment"
6707
  msgid "Return to Directory."
6708
  msgstr "Powrót do Katalogu."
6709
 
6710
+ # @ WPBDM
6711
+ #: core/payment.php:431
6712
  msgctxt "payments"
6713
+ msgid ""
6714
+ "Your payment is being processed by the payment gateway. Please reload this "
6715
+ "page in a moment to see if the status has changed or contact the site "
6716
+ "administrator."
6717
+ msgstr ""
6718
+ "Twoja płatność jest przetwarzana przez bramki płatności. Odśwież stronę po "
6719
+ "chwili, aby zobaczyć czy status się zmienił, lub skontaktuj się z "
6720
+ "administratorem serwisu."
6721
 
6722
+ # @ WPBDM
6723
+ #: core/payment.php:434
6724
  msgctxt "payments"
6725
+ msgid ""
6726
+ "The payment has been rejected by the payment gateway. Please contact the "
6727
+ "site administrator if you think there is an error or click \"Change Payment "
6728
+ "Method\" to select another payment method and try again."
6729
+ msgstr ""
6730
+ "Płatność została odrzucona przez bramkę płatności. Proszę skontaktować się z "
6731
+ "administratorem strony jeśli uważasz, że jest to błąd lub kliknij \"Zmiana "
6732
+ "metody płatności \", aby wybrać inną metodę płatności i spróbuj ponownie."
6733
 
6734
+ # @ WPBDM
6735
+ #: core/payment.php:435
6736
  msgctxt "payments"
6737
  msgid "Change Payment Method"
6738
  msgstr "Zmień Sposób Zapłaty"
6739
 
6740
+ # @ WPBDM
6741
+ #: core/payment.php:437
6742
  msgctxt "payments"
6743
+ msgid ""
6744
+ "The payment has been rejected by the payment gateway. Please contact the "
6745
+ "site administrator if you think there is an error."
6746
+ msgstr ""
6747
+ "Płatność została odrzucona przez bramkę płatności. Proszę skontaktować się z "
6748
+ "administratorem strony jeśli uważasz, że jest to błąd."
6749
 
6750
+ # @ WPBDM
6751
+ #: core/payment.php:440
6752
  msgctxt "payments"
6753
  msgid "The payment has been canceled at your request."
6754
  msgstr "Płatność została anulowana na Twoje polecenie."
6755
 
6756
+ # @ WPBDM
6757
+ #: core/payment.php:538
6758
+ msgctxt "admin"
6759
+ msgid "Pending Abandonment"
6760
+ msgstr "Oczekujące na abonament"
6761
+
6762
+ # @ WPBDM
6763
+ #: core/payment.php:543
6764
+ msgctxt "admin"
6765
+ msgid "Abandoned"
6766
+ msgstr "Porzucone"
6767
+
6768
+ # @ WPBDM
6769
+ #: core/templates/listing-sticky-tag.tpl.php:3
6770
+ #: core/templates/listing-sticky-tag.tpl.php:4 core/templates-listings.php:55
6771
  msgctxt "templates"
6772
  msgid "Featured Listing"
6773
  msgstr "Wyróżniona oferta"
6774
 
6775
+ # @ WPBDM
6776
+ #: core/templates/listings.tpl.php:6 core/templates/search.tpl.php:17
6777
+ #: templates/businessdirectory-listings.tpl.php:27
6778
+ #: templates/deprecated/search.tpl.php:21
6779
+ msgctxt "templates"
6780
+ msgid "No listings found."
6781
+ msgstr "Nie znaleziono Firm"
6782
+
6783
+ # @ WPBDM
6784
+ #: core/templates/listings.tpl.php:17
6785
+ #: templates/businessdirectory-listings.tpl.php:38
6786
+ msgctxt "templates"
6787
+ msgid "&laquo; Previous "
6788
+ msgstr "&laquo; Poprzednie"
6789
+
6790
+ # @ WPBDM
6791
+ #: core/templates/listings.tpl.php:18
6792
+ #: templates/businessdirectory-listings.tpl.php:39
6793
+ msgctxt "templates"
6794
+ msgid "Next &raquo;"
6795
+ msgstr "Następne &raquo;"
6796
+
6797
+ # @ WPBDM
6798
+ #: core/templates/manage_listings.tpl.php:3 templates/manage-listings.tpl.php:3
6799
+ msgctxt "templates"
6800
+ msgid ""
6801
+ "Your current listings are shown below. To edit a listing click the edit "
6802
+ "button. To delete a listing click the delete button."
6803
+ msgstr ""
6804
+ "Twoje oferty są pokazane poniżej. Kliknij \"Edytuj\" aby edytować ofertę lub "
6805
+ "\"Usun\" aby usunąć ofertę."
6806
+
6807
+ # @ WPBDM
6808
+ #: core/templates/manage_listings.tpl.php:6 templates/manage-listings.tpl.php:6
6809
+ msgctxt "templates"
6810
+ msgid "You do not currently have any listings in the directory."
6811
+ msgstr "Nie masz aktualnie ofert w katalogu."
6812
+
6813
+ # @ WPBDM
6814
+ #: core/templates/manage_listings.tpl.php:8 core/templates/search.tpl.php:20
6815
+ #: templates/deprecated/search.tpl.php:24 templates/manage-listings.tpl.php:8
6816
+ msgctxt "templates"
6817
+ msgid "Return to directory"
6818
+ msgstr "Powrót do Katalogu."
6819
+
6820
+ # @ WPBDM
6821
+ #: core/templates/search.tpl.php:3 templates/deprecated/search.tpl.php:6
6822
+ #: templates/search-form.tpl.php:18
6823
+ msgctxt "search"
6824
+ msgid "Search"
6825
+ msgstr "Szukaj..."
6826
+
6827
+ # @ WPBDM
6828
+ #: core/templates/search.tpl.php:10 templates/deprecated/search.tpl.php:14
6829
+ msgctxt "search"
6830
+ msgid "Search Results"
6831
+ msgstr "Wyniki wyszukiwania"
6832
+
6833
+ # @ WPBDM
6834
+ #: core/templates-ui.php:169
6835
  msgctxt "templates"
6836
  msgid "No listing categories found."
6837
  msgstr "Nie znaleziono kategorii ofert."
6838
 
6839
+ # @ WPBDM
6840
+ #: core/templates-ui.php:194
6841
+ msgid "Directory"
6842
+ msgstr "Katalog"
6843
+
6844
+ # @ WPBDM
6845
+ #: core/templates-ui.php:201
6846
+ #, fuzzy
6847
+ msgid "View All Listings"
6848
+ msgstr "Zobacz wszystkie Firmy"
6849
+
6850
+ # @ WPBDM
6851
+ #: core/templates-ui.php:208
6852
+ #, fuzzy
6853
+ msgid "Create A Listing"
6854
+ msgstr "Oferta Bezpłatna"
6855
+
6856
+ # @ WPBDM
6857
+ #: core/templates-ui.php:241
6858
+ msgctxt "templates"
6859
+ msgid "Search Listings"
6860
+ msgstr "Szukaj Firmy"
6861
+
6862
+ # @ WPBDM
6863
+ #: core/templates-ui.php:244
6864
  msgctxt "templates"
6865
  msgid "Advanced Search"
6866
  msgstr "Zaawansowane szukanie"
6867
 
6868
+ # @ WPBDM
6869
+ #: core/templates-ui.php:273 core/templates-ui.php:298
 
6870
  msgctxt "templates sort"
6871
  msgid "Sort By:"
6872
  msgstr "Sortuj według: "
6873
 
6874
+ # @ WPBDM
6875
+ #: core/templates-ui.php:292
6876
  msgctxt "sort"
6877
  msgid "Reset"
6878
  msgstr "Resetuj"
6879
 
6880
+ # @ WPBDM
6881
+ #: core/templates-ui.php:314
6882
+ msgctxt "sort"
6883
+ msgid "(Reset)"
6884
+ msgstr "(Resetuj)"
6885
+
6886
+ # @ WPBDM
6887
+ #: core/themes.php:749
6888
+ #, fuzzy
6889
+ msgctxt "themes"
6890
+ msgid "ZIP file is not a valid BD theme file."
6891
+ msgstr "Proszę wprowadzić poprawny adres e-mail."
6892
+
6893
+ # @ WPBDM
6894
+ #: core/themes.php:755
6895
+ #, fuzzy
6896
+ msgctxt "themes"
6897
+ msgid "Could not create themes directory."
6898
+ msgstr "Nie można utworzyć katalogu wpbdp-csv-eksport."
6899
+
6900
+ # @ WPBDM
6901
+ #: core/themes.php:763
6902
+ #, fuzzy
6903
+ msgctxt "themes"
6904
+ msgid "Could not remove previous theme directory \"%s\"."
6905
+ msgstr "Nie można utworzyć kategorii ofert \"%s\""
6906
+
6907
+ # @ WPBDM
6908
+ #: core/themes.php:769
6909
+ #, fuzzy
6910
+ msgctxt "themes"
6911
+ msgid "Could not move new theme into theme directory."
6912
+ msgstr "Nie masz aktualnie ofert w katalogu."
6913
+
6914
+ # @ WPBDM
6915
+ #: core/utils.php:106
6916
  msgctxt "utils"
6917
+ msgid ""
6918
+ "POSTed data exceeds PHP config. maximum. See \"post_max_size\" directive."
6919
+ msgstr ""
6920
+ "Opublikowana wartość przekracza maksymalne ustawienia zapisane w PHP config. "
6921
+ "Zobacz dyrektywę \"post_max_size\"."
6922
 
6923
+ # @ WPBDM
6924
+ #: core/utils.php:164
 
6925
  msgctxt "utils"
6926
  msgid "File size (%s) exceeds maximum file size of %s"
6927
  msgstr "Rozmiar pliku (%s) przekracz maksymalny dozwolony rozmiar %s"
6928
 
6929
+ # @ WPBDM
6930
+ #: core/utils.php:172
 
 
6931
  msgctxt "utils"
6932
+ msgid "File size (%s) is inferior to the required minimum file size of %s"
6933
+ msgstr "Rozmiar pliku (%s) jest mniejszyod wymaganego minimum: %s"
6934
+
6935
+ # @ WPBDM
6936
+ #: core/utils.php:181 core/utils.php:188
6937
+ msgctxt "utils"
6938
+ msgid "File type \"%s\" is not allowed"
6939
+ msgstr "Pliki typu \"%s\" , nie są dozwolone"
6940
 
6941
+ # @ WPBDM
6942
+ #: core/utils.php:195
6943
  msgctxt "utils"
6944
  msgid "Unkown error while uploading file."
6945
  msgstr "Nieznany błąd podczas przesyłania pliku."
6946
 
6947
+ # @ WPBDM
6948
+ #: core/utils.php:214
6949
  msgctxt "utils"
6950
  msgid "Uploaded file is not an image"
6951
  msgstr "Ładowany plik nie jest plikiem obrazu."
6952
 
6953
+ # @ WPBDM
6954
+ #: core/utils.php:223
6955
+ msgctxt "utils"
6956
+ msgid "Image width (%s px) is inferior to minimum required width of %s px."
6957
+ msgstr "Szerokość obrazu (%s px) jest mniejsza od wymaganego minimum: %s px."
6958
+
6959
+ # @ WPBDM
6960
+ #: core/utils.php:229
6961
+ msgctxt "utils"
6962
+ msgid "Image height (%s px) is inferior to minimum required height of %s px."
6963
+ msgstr "Wysokość obrazu (%s px) jest mniejsza od wymaganego minimum: %s px."
6964
+
6965
+ # @ WPBDM
6966
+ #: core/utils.php:235
6967
+ msgctxt "utils"
6968
+ msgid "Image width (%s px) is greater than maximum allowed width of %s px."
6969
+ msgstr "Szerokość obrazu (%s px) jest większa od dozwolonego maksimum: %s px."
6970
+
6971
+ # @ WPBDM
6972
+ #: core/utils.php:241
6973
+ msgctxt "utils"
6974
+ msgid "Image height (%s px) is greater than maximum required height of %s px."
6975
+ msgstr "Wysokość obrazu (%s px) jest większa od dozwolonego maksimum: %s px."
6976
+
6977
+ # @ WPBDM
6978
+ #: core/utils.php:255
6979
  msgctxt "utils"
6980
  msgid "Error while uploading file"
6981
  msgstr "Błąd podczas przesyłania pliku."
6982
 
6983
+ # @ WPBDM
6984
+ #: core/view-submit-listing.php:29
6985
+ msgctxt "templates"
6986
+ msgid ""
6987
+ "There are no categories assigned to the business directory yet. You need to "
6988
+ "assign some categories to the business directory. Only admins can see this "
6989
+ "message. Regular users are seeing a message that they cannot add their "
6990
+ "listing at this time. Listings cannot be added until you assign categories "
6991
+ "to the business directory."
6992
+ msgstr ""
6993
+ "Nie masz jeszcze żadnej kategorii przypisanej do Katalogu Firm. Musisz "
6994
+ "przypisać pewne kategorie do Katalogu Firm. Tylko administratorzy mogą "
6995
+ "zobaczyć tę wiadomość. Zwykli użytkownicy widzą komunikat, że nie można "
6996
+ "teraz dodać swojej oferty. Oferty nie mogą zostać dodane do momentu "
6997
+ "przypisania kategorii do Katalogu Firm."
6998
+
6999
+ # @ WPBDM
7000
+ #: core/view-submit-listing.php:31
7001
+ msgctxt "templates"
7002
+ msgid ""
7003
+ "Your listing cannot be added at this time. Please try again later. If this "
7004
+ "is not the first time you see this warning, please ask the site "
7005
+ "administrator to set up one or more categories inside the Directory."
7006
+ msgstr ""
7007
+ "Listą Nie można dodać w tym czasie. Proszę spróbuj ponownie później. Jeśli "
7008
+ "nie jest to pierwszy raz widzisz to ostrzeżenie, poproś administratora o "
7009
+ "utworzenie jednej lub więcej kategorii wewnątrz katalogu."
7010
+
7011
+ # @ WPBDM
7012
+ #: core/view-submit-listing.php:43
7013
+ msgctxt "templates"
7014
+ msgid "You are not authorized to edit this listing."
7015
+ msgstr "Nie masz uprawnień do edycji tej oferty."
7016
+
7017
+ # @ WPBDM
7018
+ #: core/view-submit-listing.php:58
7019
+ #, fuzzy
7020
+ msgctxt "views"
7021
+ msgid "Edit Your Listing"
7022
+ msgstr "Edycja oferty"
7023
+
7024
+ # @ WPBDM
7025
+ #: core/view-submit-listing.php:65
7026
+ msgctxt "templates"
7027
+ msgid ""
7028
+ "You are logged in as an administrator. Any payment steps will be skipped."
7029
+ msgstr ""
7030
+ "Jesteś zalogowany jako administrator. Wszelkie kroki płatności zostaną "
7031
+ "pominięte."
7032
+
7033
+ # @ WPBDM
7034
+ #: core/view-submit-listing.php:221
7035
+ msgctxt "templates"
7036
+ msgid "Please select a fee option for the \"%s\" category."
7037
+ msgstr "Wybierz abonament dla tegj kategori \"%s\"."
7038
+
7039
+ # @ WPBDM
7040
+ #: core/view-submit-listing.php:299
7041
+ msgctxt "templates"
7042
+ msgid "Please agree to the Terms and Conditions."
7043
+ msgstr "Musisz zaakceptować nasze warunki i regulamin korzystania z serwisu."
7044
+
7045
+ # @ WPBDM
7046
+ #: core/view-submit-listing.php:305
7047
+ msgctxt "templates"
7048
+ msgid "The reCAPTCHA wasn't entered correctly."
7049
+ msgstr "ReCaptcha nie została poprawnie wprowadzona."
7050
+
7051
+ # @ WPBDM
7052
+ #: core/view-submit-listing.php:322
7053
+ msgctxt "templates"
7054
+ msgid "Read our Terms and Conditions"
7055
+ msgstr "Zapoznaj się z warunkami i regulaminem korzystania z serwisu."
7056
+
7057
+ # @ WPBDM
7058
+ #: core/view-submit-listing.php:327
7059
+ msgctxt "templates"
7060
+ msgid "Terms and Conditions:"
7061
+ msgstr "Warunki i regulamin:"
7062
+
7063
+ # @ WPBDM
7064
+ #: core/view-submit-listing.php:338
7065
+ msgctxt "templates"
7066
+ msgid "I agree to the Terms and Conditions"
7067
+ msgstr "Akceptuję rwarunki i regulamin korzystania z witryny."
7068
+
7069
+ # @ WPBDM
7070
+ #: core/view-submit-listing.php:501 core/views/upgrade_listing.php:49
7071
+ msgctxt "submit"
7072
+ msgid "Listing upgrade to featured"
7073
+ msgstr "Podniesiono status Oferty do \"Wyróżniona\""
7074
+
7075
+ # @ WPBDM
7076
+ #: core/view-submit-listing.php:534
7077
+ msgctxt "submit_state"
7078
+ msgid "Invalid submit state."
7079
+ msgstr "Niepoprawny Kraj."
7080
+
7081
+ # @ WPBDM
7082
+ #: core/views/all_listings.php:6
7083
+ #, fuzzy
7084
+ msgctxt "views"
7085
+ msgid "View All Listings"
7086
+ msgstr "Zobacz wszystkie Firmy"
7087
+
7088
+ # @ WPBDM
7089
+ #: core/views/checkout.php:28
7090
  msgctxt "payments"
7091
  msgid "Invalid payment id."
7092
  msgstr "Niewłaściwe ID płatności"
7093
 
7094
+ # @ WPBDM
7095
+ #: core/views/checkout.php:86
7096
  msgctxt "checkout"
7097
  msgid "Continue"
7098
  msgstr "Kontynuacja"
7099
 
7100
+ # @ WPBDM
7101
+ #: core/views/checkout.php:97
7102
  msgctxt "checkout"
7103
+ msgid ""
7104
+ "Payments are not allowed on the non-secure version of this site. Please "
7105
+ "<a>continue to the secure server to proceed with your payment</a>."
7106
+ msgstr ""
7107
+ "Płatności nie są dozwolone na niezabezpieczonej wersji tej strony. Proszę "
7108
+ "<a>przejść do bezpiecznego serwera, aby dokonać płatności</a>."
7109
 
7110
+ # @ WPBDM
7111
+ #: core/views/checkout.php:112
7112
  msgctxt "checkout"
7113
+ msgid ""
7114
+ "Your payment is being verified. This usually takes a few minutes but can "
7115
+ "take up to 24 hours."
7116
+ msgstr ""
7117
+ "Twoja płatność jest weryfikowana. Najczęściej zajmuje to kilka minut, ale "
7118
+ "może się zdażyć, że potrwa to nawet do 24 godzin."
7119
 
7120
+ # @ WPBDM
7121
+ #: core/views/checkout.php:120 core/views/checkout.php:141
 
7122
  msgctxt "checkout"
7123
  msgid "← Return to Directory."
7124
  msgstr "← Powrót do Katalogu."
7125
 
7126
+ # @ WPBDM
7127
+ #: core/views/checkout.php:130
7128
  msgctxt "checkout"
7129
  msgid "Your payment was received sucessfully."
7130
  msgstr "Otrzymaliśmy Zapłatę. Dziękujemy."
7131
 
7132
+ # @ WPBDM
7133
+ #: core/views/checkout.php:137
7134
  msgctxt "checkout"
7135
  msgid "← Return to your listing."
7136
  msgstr "← Powrót do Twojej oferty."
7137
 
7138
+ # @ WPBDM
7139
+ #: core/views/delete_listing.php:11
7140
  msgctxt "delete listing"
7141
  msgid "Please log in to delete the listing."
7142
  msgstr "Zaloguj się aby usunąć ofertę."
7143
 
7144
+ # @ WPBDM
7145
+ #: core/views/delete_listing.php:24
7146
  msgctxt "delete listing"
7147
  msgid "Your listing has been deleted."
7148
  msgstr "Twoja oferta została usunięta."
7149
 
7150
+ # @ WPBDM
7151
+ #: core/views/listing_contact.php:39
7152
  msgctxt "contact-message"
7153
  msgid "Please enter your name."
7154
  msgstr "Proszę wprowadzić Imię"
7155
 
7156
+ # @ WPBDM
7157
+ #: core/views/listing_contact.php:42
7158
  msgctxt "contact-message"
7159
  msgid "Please enter a valid email."
7160
  msgstr "Proszę wprowadzić poprawny adres e-mail."
7161
 
7162
+ # @ WPBDM
7163
+ #: core/views/listing_contact.php:45
7164
  msgctxt "contact-message"
7165
  msgid "You did not enter a message."
7166
  msgstr "Nie wpisałeś wiadomości."
7167
 
7168
+ # @ WPBDM
7169
+ #: core/views/listing_contact.php:48
7170
  msgctxt "contact-message"
7171
  msgid "The reCAPTCHA wasn't entered correctly."
7172
  msgstr "ReCaptcha nie została poprawnie wprowadzona."
7173
 
7174
+ # @ WPBDM
7175
+ #: core/views/listing_contact.php:57
7176
  msgctxt "contact form"
7177
  msgid "Please <a>log in</a> to be able to send messages to the listing owner."
7178
+ msgstr ""
7179
+ "Proszę się <a>zalogować</a>, aby wysłąć wiadomość do osoby odpowiedzialnej "
7180
+ "za kontakt z klientem."
7181
 
7182
+ # @ WPBDM
7183
+ #: core/views/listing_contact.php:76
7184
  msgctxt "contact form"
7185
  msgid "This contact form is temporarily disabled. Please try again later."
7186
+ msgstr ""
7187
+ "Ten formularz kontaktu jest chwilowo wyłączony. Możesz spróbować pózniej."
7188
+
7189
+ # @ WPBDM
7190
+ #: core/views/listing_contact.php:113
7191
+ msgctxt "templates"
7192
+ msgid "Contact listing owner"
7193
+ msgstr "Skontaktuj się z właścicielem oferty"
7194
 
7195
+ # @ WPBDM
7196
+ #: core/views/listing_contact.php:117
7197
  msgctxt "templates"
7198
  msgid "Send Message to listing owner"
7199
  msgstr "Wyślij wiadomość do właściciela oferty"
7200
 
7201
+ # @ default
7202
+ #: core/views/listing_contact.php:163
7203
  msgid "l F j, Y \\a\\t g:i a"
7204
  msgstr "l F j, Y \\a\\t g:i a"
7205
 
7206
+ # @ WPBDM
7207
+ #: core/views/listing_contact.php:173
7208
+ #, fuzzy
7209
+ msgctxt "contact-message"
7210
+ msgid "Your message has been sent."
7211
+ msgstr "Twoja oferta została usunięta."
7212
+
7213
+ # @ form-fields api
7214
+ #: core/views/listing_contact.php:178
7215
+ #, fuzzy
7216
+ msgctxt "contact-message"
7217
+ msgid "%s (admin: %s)"
7218
+ msgstr "%s (bez %s)"
7219
+
7220
+ # @ WPBDM
7221
+ #: core/views/listing_contact.php:191
7222
  msgctxt "contact-message"
7223
  msgid "There was a problem encountered. Your message has not been sent"
7224
  msgstr "Wystąpił problem. Twoja wiadomość nie została wysłana"
7225
 
7226
+ # @ WPBDM
7227
+ #: core/views/listing_contact.php:194
7228
  msgctxt "contact-message"
7229
  msgid "Return to listing."
7230
  msgstr "Powrót do oferty."
7231
 
7232
+ # @ WPBDM
7233
+ #: core/views/main.php:9
7234
+ msgctxt "templates"
7235
+ msgid ""
7236
+ "There are no categories assigned to the business directory yet. You need to "
7237
+ "assign some categories to the business directory. Only admins can see this "
7238
+ "message. Regular users are seeing a message that there are currently no "
7239
+ "listings in the directory. Listings cannot be added until you assign "
7240
+ "categories to the business directory."
7241
+ msgstr ""
7242
+ "Nie masz jeszcze żadnej kategorii przypisanej do Katalogu Firm. Musisz "
7243
+ "przypisać pewne kategorie do Katalogu Firm. Tylko administratorzy mogą "
7244
+ "zobaczyć tę wiadomość. Zwykli użytkownicy widzą komunikat, że nie można "
7245
+ "teraz dodać swojej oferty. Oferty nie mogą zostać dodane do momentu "
7246
+ "przypisania kategorii do Katalogu Firm."
7247
+
7248
+ # @ WPBDM
7249
+ #: core/views/main.php:11
7250
+ msgctxt "templates"
7251
+ msgid "There are currently no listings in the directory."
7252
+ msgstr "Chwilowo brak ofert w Katalogu."
7253
+
7254
+ # @ WPBDM
7255
+ #: core/views/main.php:25
7256
+ msgctxt "templates"
7257
+ msgid ""
7258
+ "You have \"Hide Empty Categories\" on and some categories that don't have "
7259
+ "listings in them. That means they won't show up on the front end of your "
7260
+ "site. If you didn't want that, click <a>here</a> to change the setting."
7261
+ msgstr ""
7262
+ "Masz ustawione \"Ukryj Puste Kategorie\" i pewne kategorie, które nie "
7263
+ "zawierają ofert. To oznacza, że te kategorie nie będą wyświetlane na "
7264
+ "stornach Katalogu. Jeśli chcesz to zmienić kliknij <a>tutaj</a>."
7265
+
7266
+ # @ WPBDM
7267
+ #: core/views/manage_recurring.php:20
7268
  msgctxt "manage subscriptions"
7269
  msgid "You are not on recurring payments for any of your listings."
7270
+ msgstr ""
7271
+ "Nie masz włączonych powtarzających się płatności dla żadnej z Twoich ofert."
7272
 
7273
+ # @ WPBDM
7274
+ #: core/views/manage_recurring.php:92
7275
  msgctxt "manage subscriptions"
7276
  msgid "Invalid subscription."
7277
  msgstr "Niepoprawna subkrypcja."
7278
 
7279
+ # @ WPBDM
7280
+ #: core/views/manage_recurring.php:97
7281
+ #, fuzzy
7282
+ msgctxt "manage subscriptions"
7283
+ msgid "← Return to \"Delete Listing\"."
7284
+ msgstr "← Powrót do Twojej oferty."
7285
+
7286
+ # @ WPBDM
7287
+ #: core/views/manage_recurring.php:103
7288
+ #, fuzzy
7289
+ msgctxt "manage subscriptions"
7290
+ msgid "Subscription canceled."
7291
+ msgstr "Plan Subskrypcji/Abonamentu"
7292
+
7293
+ # @ WPBDM
7294
+ #: core/views/renew_listing.php:13
7295
  msgctxt "renewal"
7296
  msgid "Listing renewal is disabled at this moment. Please try again later."
7297
  msgstr "Odnawianie ofert jest chwilowo wyłączone. spróbuj ponownie później."
7298
 
7299
+ # @ WPBDM
7300
+ #: core/views/renew_listing.php:16
7301
  msgctxt "renewal"
7302
+ msgid ""
7303
+ "Your renewal ID is invalid. Please use the URL you were given on the renewal "
7304
+ "e-mail message."
7305
+ msgstr ""
7306
+ "Twoja ID odnowienia jest nieprawidłowe. Proszę kliknąć na adres URL, podany "
7307
+ "w wiadomości e-mail dotyczącej odnowienia."
7308
 
7309
+ # @ WPBDM
7310
+ #: core/views/renew_listing.php:42
7311
  msgctxt "renewal"
7312
  msgid "Your renewal was successfully cancelled."
7313
  msgstr "Twoje odnowienie zostało pomyślnie anulowane."
7314
 
7315
+ # @ WPBDM
7316
+ #: core/views/renew_listing.php:54
 
7317
  msgctxt "listings"
7318
  msgid "Fee \"%s\" renewal for category \"%s\""
7319
  msgstr "Abonament \"%s\" odnowienia dla kategorii \"%s\""
7320
 
7321
+ # @ WPBDM
7322
+ #: core/views/renew_listing.php:74
7323
  msgctxt "renewal"
7324
  msgid "Invalid renewal state."
7325
  msgstr "Niepoprawny Kraj."
7326
 
7327
+ # @ WPBDM
7328
+ #: core/views/renew_listing.php:85
7329
  msgctxt "templates"
7330
  msgid "Recurring Fee Management"
7331
  msgstr "Zarządzanie powtarzającymi sie Abonamentami"
7332
 
7333
+ # @ WPBDM
7334
+ #: core/views/renew_listing.php:86
7335
  msgctxt "renew"
7336
+ msgid ""
7337
+ "Because you are on a recurring fee plan you don't have to renew your listing "
7338
+ "right now as this will be handled automatically when renewal comes."
7339
+ msgstr ""
7340
+ "Ponieważ używasz powtarzających się płatności abonamentów, nie musisz "
7341
+ "odnawiać oferty teraz, odnowienie zostanie wykonane automatycznie, gdy "
7342
+ "zajdzie taka potrzeba."
7343
 
7344
+ # @ WPBDM
7345
+ #: core/views/renew_listing.php:88
7346
  msgctxt "renewal"
7347
  msgid "Current Fee Details"
7348
  msgstr "Aktualne Szczegóły Abonamentu"
7349
 
7350
+ # @ WPBDM
7351
+ #: core/views/renew_listing.php:90
7352
  msgctxt "renewal"
7353
  msgid "Number of images:"
7354
  msgstr "Liczba obrazów:"
7355
 
7356
+ # @ WPBDM
7357
+ #: core/views/renew_listing.php:92
7358
  msgctxt "renewal"
7359
  msgid "Expiration date:"
7360
  msgstr "Data ważności:"
7361
 
7362
+ # @ WPBDM
7363
+ #: core/views/renew_listing.php:96
7364
  msgctxt "renew"
7365
+ msgid ""
7366
+ "However, if you want to cancel your subscription you can do that on this "
7367
+ "page. When the renewal time comes you'll be able to change your settings "
7368
+ "again."
7369
+ msgstr ""
7370
+ "Jednakże, jeśli chcesz zrezygnować z subskrypcji możesz to zrobić na tej "
7371
+ "stronie. Kiedy nadejdzie czas odnowienia, będzie można ponownie zmienić "
7372
+ "swoje ustawienia."
7373
+
7374
+ # @ WPBDM
7375
+ #: core/views/request_access_keys.php:17
7376
+ #, fuzzy
7377
+ msgctxt "request_access_keys"
7378
+ msgid "Please enter a valid e-mail address."
7379
+ msgstr "Proszę wprowadzić poprawny adres e-mail."
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
7380
 
7381
+ # @ WPBDM
7382
+ #: core/views/request_access_keys.php:22
7383
+ #, fuzzy
7384
+ msgctxt "request_access_keys"
7385
+ msgid "There are no listings associated to your e-mail address."
7386
+ msgstr "Nie ma aktualnie przypisanej żadnej transakcji do tej oferty."
7387
 
7388
+ # @ WPBDM
7389
+ #: core/views/request_access_keys.php:26
7390
+ #, fuzzy
7391
+ msgctxt "request_access_keys"
7392
+ msgid "Listing Access Keys"
7393
+ msgstr "Pola/Obrazy"
7394
 
7395
+ #: core/views/request_access_keys.php:30
7396
+ msgctxt "request_access_keys"
7397
+ msgid "Access keys have been sent to your e-mail address."
7398
+ msgstr ""
 
7399
 
7400
+ #: core/views/request_access_keys.php:32
7401
+ msgctxt "request_access_keys"
7402
+ msgid ""
7403
+ "An error occurred while sending the access keys to your e-mail address. "
7404
+ "Please try again."
7405
+ msgstr ""
7406
 
7407
+ # @ WPBDM
7408
+ #: core/views/search.php:8
7409
+ #, fuzzy
7410
+ msgctxt "views"
7411
+ msgid "Find A Listing"
7412
+ msgstr "Znajdź Firmę"
7413
 
7414
+ #: core/views/submit_listing.php:16
 
7415
  msgctxt "templates"
7416
+ msgid ""
7417
+ "<b>View not available</b>. Do you have the \"Disable Frontend Listing "
7418
+ "Submission?\" setting checked?"
7419
+ msgstr ""
7420
 
7421
+ # @ WPBDM
7422
+ #: core/views/submit_listing.php:18
7423
+ #, fuzzy
7424
  msgctxt "templates"
7425
+ msgid "View not available."
7426
+ msgstr "Dostępne miejsca na Obrazy:"
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
7427
 
7428
+ # @ WPBDM
7429
+ #: core/views/upgrade_listing.php:16
7430
  msgctxt "listing upgrade"
7431
  msgid "Invalid link followed."
7432
  msgstr "Niepoprawny link"
7433
 
7434
+ # @ WPBDM
7435
+ #: core/views/upgrade_listing.php:22
7436
  msgctxt "templates"
7437
  msgid "Your listing is already pending approval for \"featured\" status."
7438
  msgstr "Twoja oferta już oczekuje na status \"Wyróżniona\"."
7439
 
7440
+ # @ WPBDM
7441
+ #: core/views/upgrade_listing.php:23
7442
  msgctxt "templates"
7443
  msgid "Return to listing."
7444
  msgstr "Powrót do oferty."
7445
 
7446
+ # @ WPBDM
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
7447
  #: core/widget-featured-listings.php:11
 
7448
  msgctxt "widgets"
7449
  msgid "Business Directory - Featured Listings"
7450
  msgstr "Katalog Firm - Wyróżnione Oferty"
7451
 
7452
+ # @ WPBDM
7453
  #: core/widget-featured-listings.php:12
 
7454
  msgctxt "widgets"
7455
  msgid "Displays a list of the featured/sticky listings in the directory."
7456
  msgstr "Wyświetlanie wyróżnionych ofert na stronie kategori katalogu."
7457
 
7458
+ # @ WPBDM
7459
  #: core/widget-featured-listings.php:14
 
7460
  msgctxt "widgets"
7461
  msgid "Featured Listings"
7462
  msgstr "Wyróżnione Firmy"
7463
 
7464
+ # @ WPBDM
7465
  #: core/widget-featured-listings.php:23
 
7466
  msgctxt "widgets"
7467
  msgid "Display listings in random order"
7468
  msgstr "Wyświetl Firmy losowo"
7469
 
7470
+ # @ WPBDM
7471
  #: core/widget-latest-listings.php:11
 
7472
  msgctxt "widgets"
7473
  msgid "Business Directory - Latest Listings"
7474
  msgstr "Katalog Firm - Najświeższe Firmy"
7475
 
7476
+ # @ WPBDM
7477
  #: core/widget-latest-listings.php:12
 
7478
  msgctxt "widgets"
7479
  msgid "Displays a list of the latest listings in the Business Directory."
7480
  msgstr "Wyświetl najnowszą Listę Firm z Katalogu Firm"
7481
 
7482
+ # @ WPBDM
7483
  #: core/widget-latest-listings.php:14
 
7484
  msgctxt "widgets"
7485
  msgid "Latest Listings"
7486
  msgstr "Najświeższe Firmy"
7487
 
7488
+ # @ WPBDM
7489
  #: core/widget-random-listings.php:11
 
7490
  msgctxt "widgets"
7491
  msgid "Business Directory - Random Listings"
7492
  msgstr "Katalog Firm - Losowe Firmy"
7493
 
7494
+ # @ WPBDM
7495
  #: core/widget-random-listings.php:12
 
7496
  msgctxt "widgets"
7497
  msgid "Displays a list of random listings from the Business Directory."
7498
  msgstr "Wyświetl Losową Listę Firm z Katalogu Firm"
7499
 
7500
+ # @ WPBDM
7501
  #: core/widget-random-listings.php:14
 
7502
  msgctxt "widgets"
7503
  msgid "Random Listings"
7504
  msgstr "Losowe Firmy"
7505
 
7506
+ # @ WPBDM
7507
  #: core/widget-search.php:10
 
7508
  msgctxt "widgets"
7509
  msgid "Business Directory - Search"
7510
  msgstr "Katalog Firm - Szukaj"
7511
 
7512
+ # @ WPBDM
7513
  #: core/widget-search.php:11
 
7514
  msgctxt "widgets"
7515
  msgid "Displays a search form to look for Business Directory listings."
7516
  msgstr "Wyświetlanie formularza wyszukiwania ofert w katalogu firm."
7517
 
7518
+ # @ WPBDM
7519
  #: core/widget-search.php:18
 
7520
  msgctxt "widgets"
7521
  msgid "Search the Business Directory"
7522
  msgstr "Przeszukaj Katalog Firm "
7523
 
7524
+ # @ WPBDM
7525
  #: core/widget-search.php:29
 
7526
  msgctxt "widgets"
7527
  msgid "Form Style:"
7528
  msgstr "Styl Formularza:"
7529
 
7530
+ # @ WPBDM
7531
  #: core/widget-search.php:37
 
7532
  msgctxt "widgets"
7533
  msgid "Basic"
7534
  msgstr "Prosty"
7535
 
7536
+ # @ WPBDM
7537
  #: core/widget-search.php:45
 
7538
  msgctxt "widgets"
7539
  msgid "Advanced"
7540
  msgstr "Zaawansowany"
7541
 
7542
+ # @ WPBDM
7543
  #: core/widget-search.php:49
 
7544
  msgctxt "widgets"
7545
  msgid "Search Fields (advanced mode):"
7546
  msgstr "Pola wyszukiwania"
7547
 
7548
+ # @ WPBDM
7549
  #: core/widget-search.php:50
 
7550
  msgctxt "widgets"
7551
  msgid "Display the following fields in the form."
7552
  msgstr "Wyświetl poniższe pola w formularzu."
7553
 
7554
+ # @ WPBDM
7555
+ #: core/widget-search.php:107
7556
  msgctxt "widgets"
7557
  msgid "Search"
7558
  msgstr "Szukaj..."
7559
 
7560
+ # @ WPBDM
7561
+ #: templates/billing-information-form.tpl.php:4
7562
+ msgctxt "months"
7563
+ msgid "Jan"
7564
+ msgstr "STY"
 
7565
 
7566
+ # @ WPBDM
7567
+ #: templates/billing-information-form.tpl.php:5
7568
+ msgctxt "months"
7569
+ msgid "Feb"
7570
+ msgstr "LUT"
7571
 
7572
+ # @ WPBDM
7573
+ #: templates/billing-information-form.tpl.php:6
7574
+ msgctxt "months"
7575
+ msgid "Mar"
7576
+ msgstr "MAR"
7577
 
7578
+ # @ WPBDM
7579
+ #: templates/billing-information-form.tpl.php:7
7580
+ msgctxt "months"
7581
+ msgid "Apr"
7582
+ msgstr "KWI"
 
7583
 
7584
+ # @ WPBDM
7585
+ #: templates/billing-information-form.tpl.php:8
7586
+ msgctxt "months"
7587
+ msgid "May"
7588
+ msgstr "MAJ"
7589
 
7590
+ # @ WPBDM
7591
+ #: templates/billing-information-form.tpl.php:9
7592
+ msgctxt "months"
7593
+ msgid "Jun"
7594
+ msgstr "CZE"
7595
 
7596
+ # @ WPBDM
7597
+ #: templates/billing-information-form.tpl.php:10
7598
+ msgctxt "months"
7599
+ msgid "Jul"
7600
+ msgstr "LIP"
7601
 
7602
+ # @ WPBDM
7603
+ #: templates/billing-information-form.tpl.php:11
7604
+ msgctxt "months"
7605
+ msgid "Aug"
7606
+ msgstr "SIE"
 
7607
 
7608
+ # @ WPBDM
7609
+ #: templates/billing-information-form.tpl.php:12
7610
+ msgctxt "months"
7611
+ msgid "Sep"
7612
+ msgstr "WRZ"
7613
+
7614
+ # @ WPBDM
7615
+ #: templates/billing-information-form.tpl.php:13
7616
+ msgctxt "months"
7617
+ msgid "Oct"
7618
+ msgstr "PAŹ"
7619
+
7620
+ # @ WPBDM
7621
+ #: templates/billing-information-form.tpl.php:14
7622
+ msgctxt "months"
7623
+ msgid "Nov"
7624
+ msgstr "LIS"
7625
+
7626
+ # @ WPBDM
7627
+ #: templates/billing-information-form.tpl.php:15
7628
+ msgctxt "months"
7629
+ msgid "Dec"
7630
+ msgstr "GRU"
7631
+
7632
+ # @ WPBDM
7633
+ #: templates/billing-information-form.tpl.php:30
7634
+ msgctxt "checkout form"
7635
+ msgid "Credit Card Details"
7636
+ msgstr "Szczegóły Karty Kredytowej"
7637
+
7638
+ # @ WPBDM
7639
+ #: templates/billing-information-form.tpl.php:31
7640
+ msgctxt "checkout form"
7641
+ msgid "Please enter your credit card details below."
7642
+ msgstr "Proszę poniżej podać szczegóły karty kredytowej."
7643
+
7644
+ # @ WPBDM
7645
+ #: templates/billing-information-form.tpl.php:36
7646
+ #, fuzzy
7647
+ msgctxt "checkout form"
7648
+ msgid "E-mail:"
7649
+ msgstr "E-Mail: %s"
7650
+
7651
+ # @ WPBDM
7652
+ #: templates/billing-information-form.tpl.php:44
7653
+ msgctxt "checkout form"
7654
+ msgid "First Name:"
7655
+ msgstr "Nazwisko:"
7656
+
7657
+ # @ WPBDM
7658
+ #: templates/billing-information-form.tpl.php:52
7659
+ msgctxt "checkout form"
7660
+ msgid "Last Name:"
7661
+ msgstr "Imię:"
7662
+
7663
+ # @ WPBDM
7664
+ #: templates/billing-information-form.tpl.php:60
7665
+ msgctxt "checkout form"
7666
+ msgid "Card Number:"
7667
+ msgstr "Numer karty kredytowej:"
7668
+
7669
+ # @ WPBDM
7670
+ #: templates/billing-information-form.tpl.php:68
7671
+ msgctxt "checkout form"
7672
+ msgid "Expiration Date (MM/YYYY):"
7673
+ msgstr "Data ważności (MM/YYYY):"
7674
+
7675
+ # @ WPBDM
7676
+ #: templates/billing-information-form.tpl.php:88
7677
+ msgctxt "checkout form"
7678
+ msgid "CVC:"
7679
+ msgstr "CVC:"
7680
+
7681
+ # @ WPBDM
7682
+ #: templates/billing-information-form.tpl.php:98
7683
+ msgctxt "checkout form"
7684
+ msgid "Billing Address"
7685
+ msgstr "Adres rozliczeniowy"
7686
+
7687
+ # @ WPBDM
7688
+ #: templates/billing-information-form.tpl.php:103
7689
+ msgctxt "checkout form"
7690
+ msgid "Country:"
7691
+ msgstr "Kraj:"
7692
+
7693
+ # @ WPBDM
7694
+ #: templates/billing-information-form.tpl.php:111
7695
+ msgctxt "checkout form"
7696
+ msgid "State:"
7697
+ msgstr "Województwo:"
7698
+
7699
+ # @ WPBDM
7700
+ #: templates/billing-information-form.tpl.php:119
7701
+ msgctxt "checkout form"
7702
+ msgid "City:"
7703
+ msgstr "Miasto:"
7704
+
7705
+ # @ WPBDM
7706
+ #: templates/billing-information-form.tpl.php:127
7707
+ msgctxt "checkout form"
7708
+ msgid "Address Line 1:"
7709
+ msgstr "Adres - linia1:"
7710
+
7711
+ # @ WPBDM
7712
+ #: templates/billing-information-form.tpl.php:135
7713
+ msgctxt "checkout form"
7714
+ msgid "Address Line 2:"
7715
+ msgstr "Adres - linia2:"
7716
+
7717
+ #: templates/billing-information-form.tpl.php:143
7718
+ msgctxt "checkout form"
7719
+ msgid "ZIP Code:"
7720
+ msgstr ""
7721
+
7722
+ # @ WPBDM
7723
+ #: templates/billing-information-form.tpl.php:151
7724
+ #, fuzzy
7725
+ msgctxt "checkout form"
7726
+ msgid "Phone Number:"
7727
+ msgstr "Telefon"
7728
+
7729
+ # @ default
7730
+ #: templates/billing-information-form.tpl.php:161
7731
+ msgctxt "WPBDM"
7732
+ msgid "Cancel"
7733
+ msgstr "Anuluj"
7734
+
7735
+ # @ default
7736
+ #: templates/billing-information-form.tpl.php:162
7737
+ msgctxt "WPBDM"
7738
+ msgid "Submit Payment"
7739
+ msgstr "Prześlij Płatność."
7740
+
7741
+ # @ WPBDM
7742
+ #: templates/delete-listing-confirm.tpl.php:3
7743
+ msgctxt "manage recurring"
7744
+ msgid "Delete Listing"
7745
+ msgstr "Usuń Firmę"
7746
+
7747
+ # @ WPBDM
7748
+ #: templates/delete-listing-confirm.tpl.php:7
7749
+ msgctxt "delete listing"
7750
+ msgid ""
7751
+ "Your listing is associated to a recurring payment. If you don't cancel the "
7752
+ "recurring payment before deleting the listing, you might be charged for "
7753
+ "additional periods even though your listing won't be available."
7754
+ msgstr ""
7755
+ "Twoja oferta powiązana jest z powtarzającymi się płatnościami. Jeśli nie "
7756
+ "anulujesz cyklicznych płatności przed usunięciem oferty, możesz zostać "
7757
+ "obciążony dodatkowymi kosztami za następny okres rozliczeniowy, mimo braku "
7758
+ "Twojej oferty."
7759
+
7760
+ # @ WPBDM
7761
+ #: templates/delete-listing-confirm.tpl.php:12
7762
+ msgctxt "delete listing"
7763
+ msgid ""
7764
+ "Please visit <a>Manage recurring payments</a> to review your current "
7765
+ "recurring payments."
7766
+ msgstr ""
7767
+ "Proszę odwiedzić <a> Zarządzaj powtarzającymi się płatnościami </a> aby "
7768
+ "przejżeć bieżące płatności powtarzające się."
7769
+
7770
+ # @ WPBDM
7771
+ #: templates/delete-listing-confirm.tpl.php:18
7772
+ msgctxt "delete listing"
7773
+ msgid "You are about to remove your listing \"%s\" from the directory."
7774
+ msgstr "Zamierzasz usunąć swoją ofertę \"% s \" z katalogu."
7775
+
7776
+ # @ WPBDM
7777
+ #: templates/delete-listing-confirm.tpl.php:19
7778
  msgctxt "delete listing"
7779
  msgid "Are you sure you want to do this?"
7780
  msgstr "Jesteś pewien że chcesz to zrobić?"
7781
 
7782
+ # @ WPBDM
7783
  #: templates/delete-listing-confirm.tpl.php:24
 
7784
  msgctxt "delete listing"
7785
  msgid "No. Take me back to the directory."
7786
  msgstr "NIE. Zabierz mnie z powrotem do Katalogu."
7787
 
7788
+ # @ WPBDM
7789
  #: templates/delete-listing-confirm.tpl.php:25
 
7790
  msgctxt "delete listing"
7791
  msgid "Yes. Delete my listing."
7792
  msgstr "TAK. Usuń Firmę."
7793
 
7794
+ # @ WPBDM
7795
  #: templates/email/listing-added.tpl.php:2
 
7796
  msgctxt "emails"
7797
+ msgid ""
7798
+ "A new listing has been submitted to the directory. Listing details can be "
7799
+ "found below."
7800
+ msgstr ""
7801
+ "Nowa ofert została przesłana do katalogu. Szczegóły oferty możesz znaleźć "
7802
+ "poniżej."
7803
 
7804
+ # @ WPBDM
7805
  #: templates/email/listing-added.tpl.php:7
7806
  #: templates/email/listing-edited.tpl.php:7
 
7807
  msgctxt "notify email"
7808
  msgid "ID"
7809
  msgstr "ID"
7810
 
7811
+ # @ WPBDM
7812
  #: templates/email/listing-added.tpl.php:10
7813
  #: templates/email/listing-edited.tpl.php:10
 
7814
  msgctxt "notify email"
7815
  msgid "Title"
7816
  msgstr "Nazwa"
7817
 
7818
+ # @ WPBDM
7819
  #: templates/email/listing-added.tpl.php:13
7820
  #: templates/email/listing-edited.tpl.php:13
 
7821
  msgctxt "notify email"
7822
  msgid "URL"
7823
  msgstr "URL"
7824
 
7825
+ # @ WPBDM
7826
  #: templates/email/listing-added.tpl.php:13
7827
  #: templates/email/listing-edited.tpl.php:13
 
7828
  msgctxt "notify email"
7829
  msgid "(not published yet)"
7830
  msgstr "(jeszcze nie opublikowana)"
7831
 
7832
+ #: templates/email/listing-added.tpl.php:15
7833
+ #: templates/email/listing-edited.tpl.php:15
7834
+ msgctxt "notify email"
7835
+ msgid "Admin URL"
7836
+ msgstr ""
7837
+
7838
+ # @ WPBDM
7839
+ #: templates/email/listing-added.tpl.php:17
7840
+ #: templates/email/listing-edited.tpl.php:17
7841
  msgctxt "notify email"
7842
  msgid "Categories"
7843
  msgstr "Kategorie"
7844
 
7845
+ # @ WPBDM
7846
+ #: templates/email/listing-added.tpl.php:20
7847
+ #: templates/email/listing-edited.tpl.php:20
7848
  msgctxt "notify email"
7849
  msgid "Posted By"
7850
  msgstr "Napisany przez"
7851
 
7852
+ # @ WPBDM
7853
  #: templates/email/listing-edited.tpl.php:2
 
7854
  msgctxt "emails"
7855
+ msgid ""
7856
+ "A listing in the directory has been edited recently. Listing details can be "
7857
+ "found below."
7858
+ msgstr ""
7859
+ "Oferta została niedawno zmieniona w katalogu. Szczegóły oferty możesz "
7860
+ "znaleźć poniżej."
7861
+
7862
+ #: templates/email-access-keys.tpl.php:1
7863
+ msgctxt "request_access_keys"
7864
+ msgid ""
7865
+ "Below you'll find the access keys for all the listings registered with your "
7866
+ "e-mail address on our site."
7867
+ msgstr ""
7868
+
7869
+ #: templates/email-access-keys.tpl.php:5
7870
+ msgctxt "request_access_keys"
7871
+ msgid "Access Key:"
7872
+ msgstr ""
7873
+
7874
+ # @ WPBDM
7875
+ #: templates/email-access-keys.tpl.php:6
7876
+ #, fuzzy
7877
+ msgctxt "request_access_keys"
7878
+ msgid "URL:"
7879
+ msgstr "URL:"
7880
 
7881
+ # @ WPBDM
7882
  #: templates/listing-contactform.tpl.php:9
 
7883
  msgctxt "templates"
7884
  msgid "Listing Title: "
7885
  msgstr "Nazwa Firmy:"
7886
 
7887
+ # @ WPBDM
7888
+ #: templates/listing-contactform.tpl.php:16
 
7889
  msgctxt "templates"
7890
+ msgid ""
7891
+ "You are currently logged in as %s. Your message will be sent using your "
7892
+ "logged in contact email."
7893
+ msgstr ""
7894
+ "Jesteś zalogowany jako %s. Twoja wiadomość zostanie wysłana używając Twojego "
7895
+ "adresu email podanego przy logowaniu."
7896
 
7897
+ # @ WPBDM
7898
+ #: templates/listing-contactform.tpl.php:21
7899
  msgctxt "templates"
7900
  msgid "Your Name"
7901
  msgstr "Nazwisko"
7902
 
7903
+ # @ WPBDM
7904
+ #: templates/listing-contactform.tpl.php:25
7905
  msgctxt "templates"
7906
  msgid "Your Email"
7907
  msgstr "E-mail"
7908
 
7909
+ # @ WPBDM
7910
+ #: templates/listing-contactform.tpl.php:30
7911
  msgctxt "templates"
7912
  msgid "Message"
7913
  msgstr "Wiadomość"
7914
 
7915
+ # @ WPBDM
7916
+ #: templates/listing-contactform.tpl.php:38
7917
  msgctxt "templates"
7918
  msgid "Send"
7919
  msgstr "Wyślij"
7920
 
7921
+ # @ WPBDM
7922
  #: templates/listing-upgradetosticky.tpl.php:1
 
7923
  msgctxt "templates"
7924
  msgid "Upgrade listing"
7925
  msgstr "Podnieś status "
7926
 
7927
+ # @ WPBDM
7928
  #: templates/listing-upgradetosticky.tpl.php:10
 
 
7929
  msgctxt "templates"
7930
  msgid "Upgrade listing to %s for %s."
7931
  msgstr "Podnieś status do %s for %s."
7932
 
7933
+ # @ WPBDM
7934
+ #: templates/main-box.tpl.php:13
7935
+ #, fuzzy
7936
+ msgctxt "main box"
7937
+ msgid "Find listings for <keywords>"
7938
+ msgstr "Emisja oferty na zawsze"
7939
 
7940
+ # @ WPBDM
7941
+ #: templates/main-box.tpl.php:19
7942
+ #, fuzzy
7943
+ msgctxt "main box"
7944
+ msgid "Find Listings"
7945
+ msgstr "Znajdź Firmę"
7946
 
7947
+ # @ WPBDM
7948
+ #: templates/main-box.tpl.php:20
7949
+ #, fuzzy
7950
+ msgctxt "main box"
7951
+ msgid "Advanced Search"
7952
+ msgstr "Zaawansowane szukanie"
7953
 
7954
+ # @ WPBDM
7955
  #: templates/manage-recurring-cancel.tpl.php:1
 
7956
  msgctxt "manage recurring"
7957
  msgid "Manage Recurring Payments - Cancel"
7958
  msgstr "Zarządzaj powtarzającymi się płatnościami - Cofnij"
7959
 
7960
+ # @ WPBDM
7961
  #: templates/manage-recurring-cancel.tpl.php:5
 
7962
  msgctxt "manage recurring"
7963
  msgid "Plan Details"
7964
  msgstr "Szczegóły Planu"
7965
 
7966
+ # @ WPBDM
7967
  #: templates/manage-recurring-cancel.tpl.php:9
 
7968
  msgctxt "manage recurring"
7969
  msgid "Name:"
7970
  msgstr "Nazwisko:"
7971
 
7972
+ # @ WPBDM
7973
  #: templates/manage-recurring-cancel.tpl.php:15
 
7974
  msgctxt "manage recurring"
7975
  msgid "Cost:"
7976
  msgstr "Koszt:"
7977
 
7978
+ # @ WPBDM
7979
  #: templates/manage-recurring-cancel.tpl.php:18
 
 
7980
  msgctxt "manage recurring"
7981
  msgid "%s every %s days."
7982
  msgstr "%s każde %s dni."
7983
 
7984
+ # @ WPBDM
7985
  #: templates/manage-recurring-cancel.tpl.php:23
 
7986
  msgctxt "manage recurring"
7987
  msgid "Number of images:"
7988
  msgstr "Liczba obrazów"
7989
 
7990
+ # @ WPBDM
7991
  #: templates/manage-recurring-cancel.tpl.php:29
 
7992
  msgctxt "manage recurring"
7993
  msgid "Expires on:"
7994
  msgstr "Termin ważności upłynął:"
7995
 
7996
+ # @ WPBDM
7997
  #: templates/manage-recurring.tpl.php:1
 
7998
  msgctxt "manage recurring"
7999
  msgid "Manage Recurring Payments"
8000
  msgstr "Zarządzaj powtarzającymi się płatnościami"
8001
 
8002
+ # @ WPBDM
8003
  #: templates/manage-recurring.tpl.php:5
 
8004
  msgctxt "manage recurring"
8005
  msgid "Listing"
8006
  msgstr "Firma"
8007
 
8008
+ # @ WPBDM
8009
  #: templates/manage-recurring.tpl.php:6
 
8010
  msgctxt "manage subscriptions"
8011
  msgid "Subscription / Fee Plan"
8012
  msgstr "Plan Subskrypcji/Abonamentu"
8013
 
8014
+ # @ WPBDM
8015
  #: templates/manage-recurring.tpl.php:27
 
 
8016
  msgctxt "manage recurring"
8017
  msgid "%s each %s days. Next renewal is on %s."
8018
  msgstr "%s z %s dni. Następne odnowienie w dniu %s."
8019
 
8020
+ # @ WPBDM
8021
  #: templates/manage-recurring.tpl.php:31
 
8022
  msgctxt "manage recurring"
8023
  msgid "Cancel recurring payment"
8024
  msgstr "Anuluj Płatność Powtarzającą się"
8025
 
8026
+ # @ WPBDM
8027
  #: templates/parts/category-fee-selection.tpl.php:13
 
 
8028
  msgctxt "templates"
8029
  msgid "\"%s\" fee options"
8030
  msgstr "\"%s\" opcje płatności"
8031
 
8032
+ # @ WPBDM
8033
  #: templates/parts/category-fee-selection.tpl.php:18
 
8034
  msgctxt "templates"
8035
  msgid "Fee"
8036
  msgstr "Abonament"
8037
 
8038
+ # @ WPBDM
8039
  #: templates/parts/category-fee-selection.tpl.php:19
 
8040
  msgctxt "templates"
8041
  msgid "Price"
8042
  msgstr "Cena"
8043
 
8044
+ # @ WPBDM
8045
  #: templates/parts/category-fee-selection.tpl.php:20
 
8046
  msgctxt "templates"
8047
  msgid "Duration"
8048
  msgstr "Czas trwania"
8049
 
8050
+ # @ WPBDM
8051
  #: templates/parts/category-fee-selection.tpl.php:21
 
8052
  msgctxt "templates"
8053
  msgid "Images Allowed"
8054
  msgstr "Liczba dozwolonych obrazów"
8055
 
8056
+ # @ WPBDM
8057
+ #: templates/parts/category-fee-selection.tpl.php:28
8058
+ #, fuzzy
8059
+ msgctxt "templates"
8060
+ msgid "There are no fees available for this category."
8061
+ msgstr "Wybierz abonament dla tegj kategori \"%s\"."
8062
+
8063
+ # @ WPBDM
8064
+ #: templates/parts/category-fee-selection.tpl.php:50
8065
  msgctxt "templates"
8066
  msgid "Unlimited"
8067
  msgstr "Nieograniczona"
8068
 
8069
+ # @ WPBDM
8070
+ #: templates/parts/category-fee-selection.tpl.php:52
 
8071
  msgctxt "templates"
8072
  msgid "%d day"
8073
  msgid_plural "%d days"
8075
  msgstr[1] "%d dni"
8076
  msgstr[2] "%d dni"
8077
 
8078
+ # @ WPBDM
8079
  #: templates/parts/listing-buttons.tpl.php:4
8080
  #: templates/parts/listing-buttons.tpl.php:18
 
 
8081
  msgctxt "templates"
8082
  msgid "Edit"
8083
  msgstr "Edytuj"
8084
 
8085
+ # @ WPBDM
8086
  #: templates/parts/listing-buttons.tpl.php:7
 
8087
  msgctxt "templates"
8088
  msgid "Upgrade Listing"
8089
  msgstr "Podnieś status Oferty"
8090
 
8091
+ # @ WPBDM
8092
  #: templates/parts/listing-buttons.tpl.php:10
8093
  #: templates/parts/listing-buttons.tpl.php:19
 
 
8094
  msgctxt "templates"
8095
  msgid "Delete"
8096
  msgstr "Usuń"
8097
 
8098
+ # @ WPBDM
8099
  #: templates/parts/listing-buttons.tpl.php:10
 
 
8100
  msgctxt "templates"
8101
  msgid "Are you sure you wish to delete this listing?"
8102
  msgstr "Jesteś pewien, że chcesz usunąć tą firmę?"
8103
 
8104
+ # @ WPBDM
8105
  #: templates/parts/listing-buttons.tpl.php:13
 
8106
  msgid "← Back to Directory"
8107
  msgstr "← Powrót do Katalogu."
8108
 
8109
+ # @ WPBDM
8110
  #: templates/parts/listing-buttons.tpl.php:17
 
 
8111
  msgctxt "templates"
8112
  msgid "View"
8113
  msgstr "Widok"
8114
 
8115
+ # @ WPBDM
8116
  #: templates/parts/login-required.tpl.php:5
 
8117
  msgctxt "templates"
8118
+ msgid ""
8119
+ "You are not currently logged in. Please login or register first. When "
8120
+ "registering, you will receive an activation email. Be sure to check your "
8121
+ "spam if you don't see it in your email within 60 minutes."
8122
+ msgstr ""
8123
+ "Musisz się zalogować lub zarejestrować aby kontynuować. Po rejestracji "
8124
+ "otrzymasz link aktywacyjny na podany adres e-mail. Jeśli po upływie 60minut "
8125
+ "nadal nie widzisz wiadomości, którą do ciebie wysłaliśmy - sprawdź opcje "
8126
+ "spamu w Twojej poczcie."
8127
 
8128
+ # @ WPBDM
8129
  #: templates/parts/login-required.tpl.php:10
 
8130
  msgctxt "templates"
8131
  msgid "Login"
8132
  msgstr "Logowanie"
8133
 
8134
+ # @ WPBDM
8135
  #: templates/parts/login-required.tpl.php:31
 
8136
  msgctxt "templates"
8137
  msgid "Not yet registered?"
8138
  msgstr "Nie jesteś jeszcze zarejestrowany?"
8139
 
8140
+ # @ WPBDM
8141
  #: templates/parts/login-required.tpl.php:33
 
8142
  msgctxt "templates"
8143
  msgid "Lost your password?"
8144
  msgstr "Zapomniałeś lub zgubiłeś hasło?"
8145
 
8146
+ # @ WPBDM
8147
  #: templates/payment/payment_items.tpl.php:5
 
8148
  msgctxt "payment_items"
8149
  msgid "Item"
8150
  msgstr "Element"
8151
 
8152
+ # @ WPBDM
8153
  #: templates/payment/payment_items.tpl.php:6
 
8154
  msgctxt "payment_items"
8155
  msgid "Amount"
8156
  msgstr "Kwota"
8157
 
8158
+ # @ WPBDM
8159
  #: templates/payment/payment_items.tpl.php:19
 
8160
  msgctxt "payment_items"
8161
  msgid "Total"
8162
  msgstr "Całkowity koszt"
8163
 
8164
+ # @ WPBDM
8165
  #: templates/payment-page.tpl.php:17
 
8166
  msgctxt "templates"
8167
  msgid "We can not process your payment at this moment. Please try again later."
8168
+ msgstr ""
8169
+ "Nie możemy przetworzyć płatności w tym momencie. Proszę spróbuj ponownie "
8170
+ "później."
8171
 
8172
+ # @ WPBDM
8173
  #: templates/renew-listing.tpl.php:3
 
8174
  msgctxt "templates"
8175
  msgid "Renew Listing"
8176
  msgstr "Odnowienie oferty"
8177
 
8178
+ # @ WPBDM
8179
  #: templates/renew-listing.tpl.php:7
 
8180
  msgctxt "renewal"
8181
  msgid "Proceed to Checkout"
8182
  msgstr "Przejdź do Kasy"
8183
 
8184
+ # @ WPBDM
8185
  #: templates/renew-listing.tpl.php:10
 
 
8186
  msgctxt "templates"
8187
+ msgid ""
8188
+ "You are about to renew your listing \"%s\" publication inside category \"%s"
8189
+ "\"."
8190
  msgstr "Masz zamiar odnowić ofertę \"%s\" w kategorii \"%s\"."
8191
 
8192
+ # @ default
8193
  #: templates/renew-listing.tpl.php:15
 
8194
  msgctxt "WPBDM"
8195
+ msgid ""
8196
+ "Please select a fee option or click \"Do not renew my listing\" to cancel "
8197
+ "your renewal."
8198
+ msgstr ""
8199
+ "Proszę wybrać odpowiedni abonament lub kliknąć \"Nie odświeżaj mojej oferty"
8200
+ "\" aby anulować odnowienie."
8201
 
8202
+ # @ WPBDM
8203
  #: templates/renew-listing.tpl.php:22
8204
  #: templates/submit-listing/category-selection.tpl.php:8
8205
  #: templates/submit-listing/fee-selection.tpl.php:37
8206
+ #: templates/submit-listing/images.tpl.php:42
8207
  #: templates/submit-listing/listing-fields.tpl.php:34
 
8208
  msgctxt "templates"
8209
  msgid "Continue"
8210
  msgstr "Kontynuacja"
8211
 
8212
+ # @ WPBDM
8213
  #: templates/renew-listing.tpl.php:25
 
8214
  msgctxt "renewal"
8215
  msgid "Cancel Listing Renewal"
8216
  msgstr "Anuluj Odświeżenie oferty"
8217
 
8218
+ # @ WPBDM
8219
  #: templates/renew-listing.tpl.php:26
 
8220
  msgctxt "templates"
8221
  msgid "Do not renew my listing"
8222
  msgstr "Nie odnawiaj mojej Oferty"
8223
 
8224
+ # @ WPBDM
8225
+ #: templates/search-form.tpl.php:3
 
 
 
 
 
 
 
 
 
 
 
 
 
8226
  msgctxt "templates"
8227
  msgid "Find a listing"
8228
  msgstr "Znajdź Firmę"
8229
 
8230
+ # @ WPBDM
8231
+ #: templates/search-form.tpl.php:17
8232
  msgctxt "search"
8233
  msgid "Clear"
8234
  msgstr "Wyczyść"
8235
 
8236
+ # @ WPBDM
8237
+ #: templates/send-access-keys.tpl.php:5
8238
+ #, fuzzy
8239
+ msgctxt "send-access-keys"
8240
+ msgid "Enter your e-mail address"
8241
+ msgstr "Nieprawidłowy adres e-mail"
8242
 
8243
+ # @ WPBDM
8244
+ #: templates/send-access-keys.tpl.php:9
8245
+ #, fuzzy
8246
+ msgctxt "send-access-keys"
8247
+ msgid "Continue"
8248
+ msgstr "Kontynuacja"
8249
+
8250
+ # @ WPBDM
8251
  #: templates/submit-listing/category-selection.tpl.php:1
 
8252
  msgctxt "templates"
8253
  msgid "Category Selection"
8254
  msgstr "Wybór Kategorii"
8255
 
8256
+ # @ WPBDM
8257
  #: templates/submit-listing/done.tpl.php:1
 
8258
  msgctxt "templates"
8259
  msgid "Submission Received"
8260
  msgstr "Formularz rejstracyjny został odebrany."
8261
 
8262
+ # @ WPBDM
8263
  #: templates/submit-listing/done.tpl.php:4
 
8264
  msgctxt "templates"
8265
  msgid "Your listing has been submitted."
8266
  msgstr "Twoja Firma została zapisana."
8267
 
8268
+ # @ WPBDM
8269
  #: templates/submit-listing/done.tpl.php:6
 
8270
  msgctxt "templates"
8271
  msgid "Your listing changes were saved."
8272
  msgstr "Zapisano zmiany w Twojej Ofercie."
8273
 
8274
+ # @ WPBDM
8275
  #: templates/submit-listing/done.tpl.php:11
 
8276
  msgctxt "templates"
8277
  msgid "Go to your listing"
8278
  msgstr "Przejdź do Twojej oferty."
8279
 
8280
+ # @ WPBDM
8281
  #: templates/submit-listing/done.tpl.php:13
 
8282
  msgctxt "templates"
8283
  msgid "Return to directory."
8284
  msgstr "Powrót do Katalogu."
8285
 
8286
+ # @ WPBDM
8287
  #: templates/submit-listing/extra-sections.tpl.php:1
 
8288
  msgctxt "templates"
8289
  msgid "Additional Information"
8290
  msgstr "Dodatkowe informacje"
8291
 
8292
+ # @ WPBDM
8293
  #: templates/submit-listing/extra-sections.tpl.php:6
 
8294
  msgctxt "templates"
8295
  msgid "Continue with listing submit"
8296
  msgstr "Kontynuuj i Prześlij ofertę"
8297
 
8298
+ # @ WPBDM
8299
  #: templates/submit-listing/fee-selection.tpl.php:1
 
8300
  msgctxt "templates"
8301
  msgid "Fee/Upgrade Selection"
8302
  msgstr "Wybór Abonamentu/Podwyższenia Statusu"
8303
 
8304
+ # @ WPBDM
8305
  #: templates/submit-listing/fee-selection.tpl.php:18
 
 
8306
  msgctxt "templates"
8307
  msgid "Would you like to upgrade your listing to \"%s\" for %s more?"
8308
+ msgstr ""
8309
+ "Czy chiałbyś(chciałabyś) podnieść status oferty do \"%s\" na %s dłużej?"
8310
 
8311
+ # @ WPBDM
8312
  #: templates/submit-listing/fee-selection.tpl.php:21
 
8313
  msgctxt "templates"
8314
  msgid "Yes, upgrade my listing now."
8315
  msgstr "TAK. Podnieś status mojej Oferty."
8316
 
8317
+ # @ WPBDM
8318
  #: templates/submit-listing/fee-selection.tpl.php:31
 
8319
  msgctxt "submit"
8320
+ msgid ""
8321
+ "Would you like to make your fee renew automatically at the end of the period?"
8322
+ msgstr ""
8323
+ "Czy chciałbyś odnawiać abonament automatycznie po zakończeniu wybranego "
8324
+ "okresu ważności oferty?"
8325
 
8326
+ # @ WPBDM
8327
+ #: templates/submit-listing/images-single.tpl.php:18
8328
  msgctxt "templates"
8329
  msgid "Delete Image"
8330
  msgstr "Usuń Obraz"
8331
 
8332
+ # @ WPBDM
8333
+ #: templates/submit-listing/images-single.tpl.php:24
8334
  msgctxt "templates"
8335
  msgid "Set this image as the listing thumbnail."
8336
  msgstr "Ustaw jako Miniaturkę Firmy."
8337
 
8338
+ # @ WPBDM
8339
  #: templates/submit-listing/images-upload-form.tpl.php:17
 
8340
  msgctxt "templates"
8341
  msgid "Upload Images"
8342
  msgstr "Załaduj obraz"
8343
 
8344
+ # @ WPBDM
8345
  #: templates/submit-listing/images-upload-form.tpl.php:22
 
8346
  msgctxt "templates"
8347
  msgid "Drop files here"
8348
  msgstr "Przeciągnij i upuść obraz TUTAJ"
8349
 
8350
+ #: templates/submit-listing/images-upload-form.tpl.php:23
8351
+ msgctxt "templates image upload"
8352
+ msgid "or"
8353
+ msgstr ""
8354
+
8355
+ # @ WPBDM
8356
+ #: templates/submit-listing/images-upload-form.tpl.php:24
8357
  msgctxt "templates"
8358
  msgid "Select images from your hard drive"
8359
  msgstr "Wybierz obraz z Twojego dysku twardego"
8360
 
8361
+ # @ WPBDM
8362
+ #: templates/submit-listing/images-upload-form.tpl.php:27
 
8363
  msgctxt "templates"
8364
  msgid "Uploading %s file(s)... Please wait."
8365
  msgstr "Przesyłanie %s file(s)... Proszę czekać."
8366
 
8367
+ # @ WPBDM
8368
+ #: templates/submit-listing/images-upload-form.tpl.php:31
8369
  msgctxt "templates"
8370
+ msgid ""
8371
+ "Your image slots are all full at this time. You may click \"Continue\" if "
8372
+ "you are done, or \"Delete Image\" to upload a new image in place of a "
8373
+ "current one."
8374
+ msgstr ""
8375
+ "Wykorzystałeś(aś) dostępne miejsca na obrazy. Kliknij \"Kontynuuj\" aby "
8376
+ "zakończyć, lub \"Usuń Obraz\" aby wstawić inny obraz w to miejsce."
8377
 
8378
+ # @ WPBDM
8379
+ #: templates/submit-listing/images-upload-form.tpl.php:39
8380
  msgctxt "templates"
8381
  msgid "Image slots available:"
8382
  msgstr "Dostępne miejsca na Obrazy:"
8383
 
8384
+ # @ WPBDM
8385
+ #: templates/submit-listing/images-upload-form.tpl.php:45
8386
+ #, fuzzy
8387
  msgctxt "templates"
8388
+ msgid "File size:"
8389
  msgstr "Maksymalny rozmiar pliku"
8390
 
8391
+ #: templates/submit-listing/images-upload-form.tpl.php:47
8392
+ #: templates/submit-listing/images-upload-form.tpl.php:54
8393
+ #: templates/submit-listing/images-upload-form.tpl.php:61
8394
+ msgctxt "templates"
8395
+ msgid "No limit"
8396
+ msgstr ""
8397
+
8398
+ # @ WPBDM
8399
+ #: templates/submit-listing/images-upload-form.tpl.php:52
8400
+ #, fuzzy
8401
+ msgctxt "templates"
8402
+ msgid "Image width:"
8403
+ msgstr "Szerokość Obrazu (w px):"
8404
+
8405
+ # @ WPBDM
8406
+ #: templates/submit-listing/images-upload-form.tpl.php:59
8407
+ #, fuzzy
8408
+ msgctxt "templates"
8409
+ msgid "Image height:"
8410
+ msgstr "Wysokość Obrazu (w px)"
8411
+
8412
+ # @ WPBDM
8413
  #: templates/submit-listing/images.tpl.php:4
 
8414
  msgctxt "templates"
8415
  msgid "Listing Images"
8416
  msgstr "Obrazy"
8417
 
8418
+ # @ WPBDM
8419
  #: templates/submit-listing/images.tpl.php:7
 
8420
  msgctxt "templates"
8421
+ msgid ""
8422
+ "There is an image pending upload. Would you still like to continue without "
8423
+ "saving the image?"
8424
+ msgstr ""
8425
+ "Jest tu jeden obraz oczekujący na przesłanie. Czy nadal chcesz kontynuować "
8426
+ "bez zapisywania obrazu?"
8427
 
8428
+ # @ WPBDM
8429
  #: templates/submit-listing/images.tpl.php:13
 
8430
  msgctxt "templates"
8431
  msgid "There are no images currently attached to your listing."
8432
  msgstr "Obecnie nie ma żadnych obrazków dołączonych do tej oferty."
8433
 
8434
+ # @ WPBDM
8435
  #: templates/submit-listing/listing-fields.tpl.php:1
 
8436
  msgctxt "templates"
8437
  msgid "Listing Information"
8438
  msgstr "Informacje o ogłoszeniu"
8439
 
8440
+ # @ WPBDM
8441
  #: templates/submit-listing/listing-fields.tpl.php:15
 
8442
  msgctxt "templates"
8443
  msgid "* Indicates required fields."
8444
  msgstr "* Oznacza wymagane pola."
8445
 
8446
+ # @ WPBDM
8447
+ #: themes/default/templates/excerpt_content.tpl.php:13
8448
+ #, fuzzy
8449
+ msgctxt "themes/default"
8450
+ msgid "Address"
8451
+ msgstr "Adres e-mail:"
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
8452
 
8453
+ # @ WPBDM
8454
+ #. Plugin URI of the plugin/theme
8455
+ #, fuzzy
8456
+ msgid "http://www.businessdirectoryplugin.com"
8457
+ msgstr "Plugin Katalog Firm"
 
8458
 
8459
+ #. Description of the plugin/theme
8460
+ msgid ""
8461
+ "Provides the ability to maintain a free or paid business directory on your "
8462
+ "WordPress powered site."
8463
  msgstr ""
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
8464
 
8465
+ #. Author of the plugin/theme
8466
+ msgid "D. Rodenbaugh"
8467
+ msgstr ""
 
 
8468
 
8469
+ # @ WPBDM
8470
+ #. Author URI of the plugin/theme
8471
+ #, fuzzy
8472
+ msgid "http://businessdirectoryplugin.com"
8473
+ msgstr "Plugin Katalog Firm"
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
8474
 
8475
+ # @ WPBDM
8476
+ #~ msgctxt "fees admin"
8477
+ #~ msgid "You do not have any listing fees setup yet."
8478
+ #~ msgstr "Nie masz jeszcze ustawionych abonamentów."
8479
+
8480
+ # @ WPBDM
8481
+ #~ msgctxt "fees admin"
8482
+ #~ msgid "Applied To"
8483
+ #~ msgstr "Stosowane do"
8484
+
8485
+ # @ WPBDM
8486
+ #~ msgctxt "formfields-preview"
8487
+ #~ msgid ""
8488
+ #~ "This is a preview of the form as it will appear during \"Submit a Listing"
8489
+ #~ "\". The users may not see all fields from \"Manage Form Fields\" because "
8490
+ #~ "you have \"Featured Levels\" active and this is showing the base level."
8491
+ #~ msgstr ""
8492
+ #~ "To jest podgląd formularza, który będzie widoczny w czasie korzystania z "
8493
+ #~ "funkcji \"Dodaj Firmę\". Użytkownicy nie mogą zobaczyć wszystkich pól z "
8494
+ #~ "sekcji \"Zarządzaj polami formularza\" dlatego, że \"Poziomy wyróżnień\" "
8495
+ #~ "są aktywne, a ten formularz pokazuje poziom podstawowy."
8496
+
8497
+ # @ WPBDM
8498
+ #~ msgctxt "admin csv-import"
8499
+ #~ msgid "Use spreadsheet information only."
8500
+ #~ msgstr "Używaj tylko informacji arkusza kalkulacyjnego."
8501
+
8502
+ # @ WPBDM
8503
+ #~ msgctxt "admin sidebar"
8504
+ #~ msgid "Single Site License Combo Pack"
8505
+ #~ msgstr "Multi paczka licencji dla pojedynczej strony"
8506
+
8507
+ # @ WPBDM
8508
+ #~ msgctxt "admin sidebar"
8509
+ #~ msgid "Multi Site License Combo Pack"
8510
+ #~ msgstr "Multi paczka licencji dla wielu stron"
8511
+
8512
+ # @ WPBDM
8513
+ #~ msgctxt "admin transactions"
8514
+ #~ msgid "transaction"
8515
+ #~ msgstr "transakcja"
8516
+
8517
+ # @ WPBDM
8518
+ #~ msgctxt "admin transactions"
8519
+ #~ msgid "transactions"
8520
+ #~ msgstr "transakcje"
8521
+
8522
+ # @ WPBDM
8523
+ #~ msgctxt "admin transactions"
8524
+ #~ msgid "ID"
8525
+ #~ msgstr "ID"
8526
+
8527
+ # @ WPBDM
8528
+ #~ msgctxt "admin transactions"
8529
+ #~ msgid "Type"
8530
+ #~ msgstr "Rodzaj"
8531
+
8532
+ # @ WPBDM
8533
+ #~ msgctxt "admin transactions"
8534
+ #~ msgid "Amount"
8535
+ #~ msgstr "Kwota"
8536
+
8537
+ # @ WPBDM
8538
+ #~ msgctxt "admin transactions"
8539
+ #~ msgid "Date"
8540
+ #~ msgstr "Data"
8541
+
8542
+ # @ WPBDM
8543
+ #~ msgctxt "admin transactions"
8544
+ #~ msgid "Listing Submit (Initial Payment)"
8545
+ #~ msgstr "Prześlij ofertę"
8546
+
8547
+ # @ WPBDM
8548
+ #~ msgctxt "admin transactions"
8549
+ #~ msgid "Listing Edit (Category Fee)"
8550
+ #~ msgstr "Edytuj ofertę"
8551
+
8552
+ # @ WPBDM
8553
+ #~ msgctxt "admin transactions"
8554
+ #~ msgid "Renewal"
8555
+ #~ msgstr "Odśwież"
8556
+
8557
+ # @ WPBDM
8558
+ #~ msgctxt "admin transactions"
8559
+ #~ msgid "Upgrade to Featured"
8560
+ #~ msgstr "Podnieś status do \"Wyróżnione\""
8561
+
8562
+ # @ WPBDM
8563
+ #~ msgctxt "admin transactions"
8564
+ #~ msgid "Gateway"
8565
+ #~ msgstr "Bramka"
8566
+
8567
+ # @ WPBDM
8568
+ #~ msgctxt "admin transactions"
8569
+ #~ msgid "Payer Info"
8570
+ #~ msgstr "Informacje o płatniku"
8571
+
8572
+ # @ WPBDM
8573
+ #~ msgctxt "admin transactions"
8574
+ #~ msgid "Name"
8575
+ #~ msgstr "Nazwisko"
8576
+
8577
+ # @ WPBDM
8578
+ #~ msgctxt "admin transactions"
8579
+ #~ msgid "E-Mail"
8580
+ #~ msgstr "E-mail"
8581
+
8582
+ # @ WPBDM
8583
+ #~ msgctxt "admin transactions"
8584
+ #~ msgid "Processed On"
8585
+ #~ msgstr "Przetwarzane na"
8586
+
8587
+ # @ WPBDM
8588
+ #~ msgctxt "admin transactions"
8589
+ #~ msgid "Processed By"
8590
+ #~ msgstr "Przetwarzane przez"
8591
+
8592
+ # @ WPBDM
8593
+ #~ msgctxt "admin transactions"
8594
+ #~ msgid "Approve"
8595
+ #~ msgstr "Zatwierdzenie"
8596
+
8597
+ # @ WPBDM
8598
+ #~ msgctxt "admin transactions"
8599
+ #~ msgid "Reject"
8600
+ #~ msgstr "Odrzucoenie"
8601
+
8602
+ # @ WPBDM
8603
+ #~ msgctxt "admin transactions"
8604
+ #~ msgid "+ Details"
8605
+ #~ msgstr "+ Szczegóły"
8606
+
8607
+ # @ WPBDM
8608
+ #~ msgctxt "admin transactions"
8609
+ #~ msgid "Delete"
8610
+ #~ msgstr "Usuń"
8611
+
8612
+ # @ WPBDM
8613
+ #~ msgctxt "admin transactions"
8614
+ #~ msgid "All"
8615
+ #~ msgstr "Wszystkie"
8616
+
8617
+ # @ WPBDM
8618
+ #~ msgctxt "admin transactions"
8619
+ #~ msgid "Approved"
8620
+ #~ msgstr "Zatwierdzono"
8621
+
8622
+ # @ WPBDM
8623
+ #~ msgctxt "admin transactions"
8624
+ #~ msgid "Rejected"
8625
+ #~ msgstr "Odrzucono"
8626
+
8627
+ # @ WPBDM
8628
+ #~ msgctxt "admin"
8629
+ #~ msgid "The transaction has been deleted."
8630
+ #~ msgstr "Transakcja została usunięta."
8631
+
8632
+ # @ WPBDM
8633
+ #~ msgctxt "post type singular name"
8634
+ #~ msgid "Directory"
8635
+ #~ msgstr "Katalog"
8636
+
8637
+ # @ WPBDM
8638
+ #~ msgctxt "title"
8639
+ #~ msgid "Submit A Listing"
8640
+ #~ msgstr "Dodaj Firmę"
8641
+
8642
+ # @ WPBDM
8643
+ #~ msgctxt "listings"
8644
+ #~ msgid "Fee \"%s\" for category \"%s\""
8645
+ #~ msgstr "Abonament \"%s\" dla kategorii \"%s\""
8646
+
8647
+ # @ WPBDM
8648
+ #~ msgctxt "admin settings"
8649
+ #~ msgid "Display search form when displaying search results?"
8650
+ #~ msgstr ""
8651
+ #~ "Wyświetlać formularz wyszukiwania gdu pokazywane są wyniki wyszukiwania?"
8652
+
8653
+ # @ WPBDM
8654
+ #~ msgctxt "admin settings"
8655
+ #~ msgid ""
8656
+ #~ "Allow visitors to discuss listings using the standard WordPress comment "
8657
+ #~ "form. Comments are public."
8658
+ #~ msgstr ""
8659
+ #~ "Pozwolić użytkownikom na dyskuję za pomocą standardowych komentarzy "
8660
+ #~ "WordPress. Komentarze będą upublicznione."
8661
+
8662
+ # @ WPBDM
8663
+ #~ msgctxt "admin settings"
8664
+ #~ msgid "Paid first then free"
8665
+ #~ msgstr "Najpierw płatne potem bezpłatne"
8666
+
8667
+ # @ WPBDM
8668
+ #~ msgctxt "admin settings"
8669
+ #~ msgid "Registration"
8670
+ #~ msgstr "Rejestracja"
8671
+
8672
+ # @ WPBDM
8673
+ #~ msgid "View"
8674
+ #~ msgstr "Pokaż"
8675
+
8676
+ # @ WPBDM
8677
+ #~ msgid "Edit"
8678
+ #~ msgstr "Edytuj"
8679
+
8680
+ # @ WPBDM
8681
+ #~ msgid "Delete"
8682
+ #~ msgstr "Usuń"
8683
+
8684
+ # @ WPBDM
8685
+ #~ msgid "Upgrade Listing"
8686
+ #~ msgstr "Podnieś status Oferty"
8687
+
8688
+ # @ WPBDM
8689
+ #~ msgid "View Listings"
8690
+ #~ msgstr "Pokaż Firmy"
8691
+
8692
+ # @ google-wallet
8693
+ #~ msgid "Google Wallet"
8694
+ #~ msgstr "Portfel Google"
8695
+
8696
+ # @ WPBDM
8697
+ #~ msgctxt "google-wallet"
8698
+ #~ msgid ""
8699
+ #~ "For recurring payments to work you need to <a>specify a postback URL</a> "
8700
+ #~ "in your Google Wallet settings."
8701
+ #~ msgstr ""
8702
+ #~ "Dla prawidłowej pracy powtarzających się płatności potrzebny będzie Ci "
8703
+ #~ "<a>odpowiedni zwrotny adres URL</a> w ustawieniach Twojego Portfela "
8704
+ #~ "Google."
8705
+
8706
+ # @ WPBDM
8707
+ #~ msgctxt "google-wallet"
8708
+ #~ msgid "Please use %s as the postback URL."
8709
+ #~ msgstr "Proszę użyć %s jako zwrotnego adresu URL."
8710
+
8711
+ # @ WPBDM
8712
+ #~ msgctxt "google-wallet"
8713
+ #~ msgid "Seller ID is missing."
8714
+ #~ msgstr "Zagubiono ID sprzedawcy."
8715
+
8716
+ # @ WPBDM
8717
+ #~ msgctxt "google-wallet"
8718
+ #~ msgid "Seller Secret is missing."
8719
+ #~ msgstr "Zagubiono SECRET sprzedawcy."
8720
+
8721
+ # @ WPBDM
8722
+ #~ msgctxt "google-wallet"
8723
+ #~ msgid "One time payment + recurring payment for renewal fees"
8724
+ #~ msgstr ""
8725
+ #~ "Jednorazowa płatność + płatności powtarzające się dla odnawianych "
8726
+ #~ "abonamentów"
8727
+
8728
+ # @ WPBDM
8729
+ #~ msgctxt "google-wallet"
8730
+ #~ msgid ""
8731
+ #~ "Payment was rejected because internal data does not look like a valid "
8732
+ #~ "Google Wallet transaction."
8733
+ #~ msgstr ""
8734
+ #~ "Płatność została odrzucona poniewaź informacje wskazują, że nie była to "
8735
+ #~ "transakcja Portfela Google."
8736
+
8737
+ # @ WPBDM
8738
+ #~ msgctxt "google-wallet"
8739
+ #~ msgid "Payment has been rejected because an internal error occurred."
8740
+ #~ msgstr "Płatność została odrzucona, ponieważ wystąpił błąd wewnętrzny."
8741
+
8742
+ # @ WPBDM
8743
+ #~ msgctxt "google-wallet"
8744
+ #~ msgid "The transaction has been canceled at user's request."
8745
+ #~ msgstr "Płatność została anulowana, na polecenie Użytkownika."
8746
+
8747
+ # @ WPBDM
8748
+ #~ msgctxt "fees-api"
8749
+ #~ msgid "Fee allowed images must be a non-negative integer."
8750
+ #~ msgstr ""
8751
+ #~ "Abonament dla dozwolonej ilości obrazów musi zawierać się w liczbie "
8752
+ #~ "dodatniej, całkowitej."
8753
+
8754
+ # @ WPBDM
8755
+ #~ msgctxt "fees-api"
8756
+ #~ msgid "Fee listing run must be a non-negative integer."
8757
+ #~ msgstr ""
8758
+ #~ "Abonament dla biegu oferty musi zawierać się w liczbie dodatniej, "
8759
+ #~ "całkowitej."
8760
+
8761
+ # @ WPBDM
8762
+ #~ msgid ""
8763
+ #~ "Due to Google Wallet limitations only monthly (30 days) recurring fees "
8764
+ #~ "are supported by the gateway. All other fees will be charged as non-"
8765
+ #~ "recurring."
8766
+ #~ msgstr ""
8767
+ #~ "Ze względu na ograniczenia w Portfelu Google, tylko opłaty cykliczne (30 "
8768
+ #~ "dniowe), są obsługiwane przez bramkę. Wszystkie pozostałe opłaty będą "
8769
+ #~ "pobierane jako jednorazowe."
8770
+
8771
+ # @ WPBDM
8772
+ #~ msgctxt "templates"
8773
+ #~ msgid "Submit A Listing"
8774
+ #~ msgstr "Dodaj Firmę"
8775
+
8776
+ # @ WPBDM
8777
+ #~ msgid ""
8778
+ #~ "You need to create a page with the [businessdirectory] shortcode for the "
8779
+ #~ "Business Directory plugin to work correctly."
8780
+ #~ msgstr ""
8781
+ #~ "Musisz utworzyć stronę z krótkim kodem [businessdirectory] , aby Katalog "
8782
+ #~ "Firm mógł działać prawidłowo."
8783
+
8784
+ # @ WPBDM
8785
+ #~ msgid "The directory is temporarily disabled."
8786
+ #~ msgstr "Katalog jest tymczasowo wyłączony."
8787
+
8788
+ # @ WPBDM
8789
+ #~ msgctxt "preview"
8790
+ #~ msgid "This is just a preview. The listing has not been published yet."
8791
+ #~ msgstr "To jest tylko podgląd. Oferta nie została jeszcze opublikowana."
8792
+
8793
+ # @ WPBDM
8794
+ #~ msgctxt "templates"
8795
+ #~ msgid "Listings tagged: %s"
8796
+ #~ msgstr "Oferty Otagowane: %s"
8797
+
8798
+ # @ WPBDM
8799
+ #~ msgctxt "search"
8800
+ #~ msgid "Return to Advanced Search"
8801
+ #~ msgstr "Powrót do zaawansowanego wyszukiwania"
8802
+
8803
+ # @ WPBDM
8804
+ #~ msgctxt "admin csv-import"
8805
+ #~ msgid "Last imported line from file:"
8806
+ #~ msgstr "Ostatnia zaimportowana linia z pliku:"
8807
+
8808
+ # @ google-wallet
8809
+ #~ msgid "Activate Google Wallet?"
8810
+ #~ msgstr "Aktywować portfel Google?"
8811
+
8812
+ # @ google-wallet
8813
+ #~ msgid "Seller Identifier"
8814
+ #~ msgstr "Identyfikator sprzedawcy"
8815
+
8816
+ # @ google-wallet
8817
+ #~ msgid "Seller Secret"
8818
+ #~ msgstr "Secret sprzedawcy"
8819
+
8820
+ # @ edd
8821
+ #~ msgid ""
8822
+ #~ "There is a new version of %1$s available. <a target=\"_blank\" class="
8823
+ #~ "\"thickbox\" href=\"%2$s\">View version %3$s details</a>."
8824
+ #~ msgstr ""
8825
+ #~ "Tu jest dostępna nowa wersja %1$s . <a target=\"_blank\" class=\"thickbox"
8826
+ #~ "\" href=\"%2$s\">Zobacz szczegóły wersji %3$s </a>."
8827
+
8828
+ # @ edd
8829
+ #~ msgid ""
8830
+ #~ "There is a new version of %1$s available. <a target=\"_blank\" class="
8831
+ #~ "\"thickbox\" href=\"%2$s\">View version %3$s details</a> or <a href=\"%4$s"
8832
+ #~ "\">update now</a>."
8833
+ #~ msgstr ""
8834
+ #~ "Tu jest dostępna nowa wersja %1$s . <a target=\"_blank\" class=\"thickbox"
8835
+ #~ "\" href=\"%2$s\">Zobacz szczegóły wersji %3$s </a> lub <a href=\"%4$s"
8836
+ #~ "\">zaktualizuj</a>."
8837
+
8838
+ # @ edd
8839
+ #~ msgid "You do not have permission to install plugin updates"
8840
+ #~ msgstr "Nie masz uprawnień do aktualizacji pluginów."
8841
+
8842
+ # @ edd
8843
+ #~ msgid "Error"
8844
+ #~ msgstr "BŁĄD"
languages/WPBDM-ru_RU.mo CHANGED
Binary file
languages/WPBDM-ru_RU.po CHANGED
@@ -1,6686 +1,7518 @@
1
- msgid ""
2
- msgstr ""
3
- "Project-Id-Version: Business Directory Plugin 3.6.11\n"
4
- "Report-Msgid-Bugs-To: http://wordpress.org/tag/business-directory-plugin\n"
5
- "POT-Creation-Date: 2015-12-14 16:55-0500\n"
6
- "PO-Revision-Date: Mon Jan 11 2016 23:30:49 GMT-0800 (Pacific Standard Time)\n"
7
- "Last-Translator: Mick Levin <mikhaillevin@hotmail.com>\n"
8
- "Language-Team: BD Team <support@businessdirectoryplugin.com>\n"
9
- "Language: Russian\n"
10
- "Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10 >= 2 && "
11
- "n%10<=4 &&(n%100<10||n%100 >= 20)? 1 : 2)\n"
12
- "MIME-Version: 1.0\n"
13
- "Content-Type: text/plain; charset=UTF-8\n"
14
- "Content-Transfer-Encoding: 8bit\n"
15
- "X-Poedit-SourceCharset: UTF-8\n"
16
- "X-Generator: Loco - https://localise.biz/\n"
17
- "X-Poedit-Basepath: .\n"
18
- "X-Poedit-SearchPath-0: ../../plugins/business-directory-plugin\n"
19
- "X-Poedit-KeywordsList: _:1;gettext:1;dgettext:2;ngettext:1,2;dngettext:2,3;"
20
- "__:1;_e:1;_c:1;_n:1,2;_n_noop:1,2;_nc:1,2;__ngettext:1,2;__ngettext_noop:1,2;"
21
- "_x:1,2c;_ex:1,2c;_nx:1,2,4c;_nx_noop:1,2,3c;_n_js:1,2;_nx_js:1,2,3c;"
22
- "esc_attr__:1;esc_html__:1;esc_attr_e:1;esc_html_e:1;esc_attr_x:1,2c;"
23
- "esc_html_x:1,2c;comments_number_link:2,3;t:1;st:1;trans:1;transChoice:1,2\n"
24
- "X-Loco-Target-Locale: ru_RU"
25
-
26
- msgid "Business Directory Plugin"
27
- msgstr "Справочник Услуг"
28
-
29
- msgid "http://www.businessdirectoryplugin.com"
30
- msgstr "http://www.businessdirectoryplugin.com"
31
-
32
- msgid ""
33
- "Provides the ability to maintain a free or paid business directory on your "
34
- "WordPress powered site."
35
- msgstr ""
36
- "Предоставляет возможность создания на Вашем сайте WordPress бесплатного или "
37
- "коммерческого справочника компаний."
38
-
39
- msgid "D. Rodenbaugh"
40
- msgstr "D. Rodenbaugh"
41
-
42
- msgid "http://businessdirectoryplugin.com"
43
- msgstr "http://businessdirectoryplugin.com"
44
-
45
- #: ../business-directory-plugin.php:701
46
- msgctxt "admin plugins"
47
- msgid "Settings"
48
- msgstr "Настройки"
49
-
50
- #: ../business-directory-plugin.php:711
51
- msgctxt "post type general name"
52
- msgid "Directory"
53
- msgstr "Справочник"
54
-
55
- #: ../business-directory-plugin.php:712
56
- msgctxt "post type singular name"
57
- msgid "Directory"
58
- msgstr "Справочник"
59
-
60
- #: ../business-directory-plugin.php:713
61
- msgctxt "listing"
62
- msgid "Add New Listing"
63
- msgstr "Добавить запись"
64
-
65
- #: ../business-directory-plugin.php:714
66
- msgctxt "post type"
67
- msgid "Add New Listing"
68
- msgstr "Добавить новую запись"
69
-
70
- #: ../business-directory-plugin.php:715 ../core/compatibility/deprecated.php:255
71
- msgid "Edit Listing"
72
- msgstr "Изменить запись"
73
-
74
- #: ../business-directory-plugin.php:716
75
- msgid "New Listing"
76
- msgstr "Новая запись"
77
-
78
- #: ../business-directory-plugin.php:717
79
- msgid "View Listing"
80
- msgstr "Показать запись"
81
-
82
- #: ../business-directory-plugin.php:718
83
- msgid "Search Listings"
84
- msgstr "Искать записи"
85
-
86
- #: ../business-directory-plugin.php:719
87
- msgid "No listings found"
88
- msgstr "Записи не найдены"
89
-
90
- #: ../business-directory-plugin.php:720
91
- msgid "No listings found in trash"
92
- msgstr "В корзине записи не найдены"
93
-
94
- #: ../business-directory-plugin.php:742
95
- msgid "Directory Categories"
96
- msgstr "Рубрики справочника"
97
-
98
- #: ../business-directory-plugin.php:855 ../business-directory-plugin.php:862
99
- #, php-format
100
- msgctxt "rss feed"
101
- msgid "%s Feed"
102
- msgstr "Лента "
103
-
104
- #: ../business-directory-plugin.php:1266
105
- msgctxt "title"
106
- msgid "Submit A Listing"
107
- msgstr "Добавить запись"
108
-
109
- #: ../business-directory-plugin.php:1276
110
- msgctxt "title"
111
- msgid "Find a Listing"
112
- msgstr "Найти запись"
113
-
114
- #: ../business-directory-plugin.php:1286
115
- msgctxt "title"
116
- msgid "View All Listings"
117
- msgstr "Показать все записи"
118
-
119
- #: ../business-directory-plugin.php:1306
120
- #, php-format
121
- msgctxt "title"
122
- msgid "Listings tagged: %s"
123
- msgstr "Записи помеченные меткой \"%s\""
124
-
125
- #: ../themes/default/templates/excerpt_content.tpl.php:13
126
- msgctxt "themes/default"
127
- msgid "Address"
128
- msgstr "Адрес"
129
-
130
- #: ../vendors/edd/EDD_SL_Plugin_Updater.php:178
131
- #, php-format
132
- msgid ""
133
- "There is a new version of %1$s available. <a target=\"_blank\" "
134
- "class=\"thickbox\" href=\"%2$s\">View version %3$s details</a>."
135
- msgstr ""
136
- "Появилась новая версия для %1$s. <a target=\"_blank\" class=\"thickbox\" "
137
- "href=\"%2$s\">Показать детали версии %3$s</a>."
138
-
139
- #: ../vendors/edd/EDD_SL_Plugin_Updater.php:185
140
- #, php-format
141
- msgid ""
142
- "There is a new version of %1$s available. <a target=\"_blank\" "
143
- "class=\"thickbox\" href=\"%2$s\">View version %3$s details</a> or <a "
144
- "href=\"%4$s\">update now</a>."
145
- msgstr ""
146
- "Появилась новая версия для %1$s. <a target=\"_blank\" class=\"thickbox\" "
147
- "href=\"%2$s\">Показать детали версии %3$s</a> или <a href=\"%4$s\">установить "
148
- "обновление</a>."
149
-
150
- #: ../vendors/edd/EDD_SL_Plugin_Updater.php:325
151
- msgid "You do not have permission to install plugin updates"
152
- msgstr "У Вас нет полномочий для установки обновлений плагинов"
153
-
154
- #: ../vendors/edd/EDD_SL_Plugin_Updater.php:325
155
- msgid "Error"
156
- msgstr "Ошибка"
157
-
158
- #: ../templates/search-form.tpl.php:3
159
- msgctxt "templates"
160
- msgid "Find a listing"
161
- msgstr "Найти запись"
162
-
163
- #: ../templates/search-form.tpl.php:14
164
- msgctxt "search"
165
- msgid "Clear"
166
- msgstr "Очистить форму"
167
-
168
- #: ../templates/search-form.tpl.php:15 ../templates/search.tpl.php:6
169
- msgctxt "search"
170
- msgid "Search"
171
- msgstr "Поиск"
172
-
173
- #: ../templates/manage-recurring.tpl.php:1
174
- msgctxt "manage recurring"
175
- msgid "Manage Recurring Payments"
176
- msgstr "Периодические платежи"
177
-
178
- #: ../templates/manage-recurring.tpl.php:5
179
- msgctxt "manage recurring"
180
- msgid "Listing"
181
- msgstr "Запись"
182
-
183
- #: ../templates/manage-recurring.tpl.php:6
184
- msgctxt "manage subscriptions"
185
- msgid "Subscription / Fee Plan"
186
- msgstr "Подписка / Бесплатный План"
187
-
188
- #: ../templates/manage-recurring.tpl.php:27
189
- #, php-format
190
- msgctxt "manage recurring"
191
- msgid "%s each %s days. Next renewal is on %s."
192
- msgstr "%s каждые %s дней(я). Следующее обновление - %s."
193
-
194
- #: ../templates/manage-recurring.tpl.php:31
195
- msgctxt "manage recurring"
196
- msgid "Cancel recurring payment"
197
- msgstr "Прекратить периодический платёж"
198
-
199
- #: ../templates/listing-contactform.tpl.php:9
200
- msgctxt "templates"
201
- msgid "Listing Title: "
202
- msgstr "Название записи:"
203
-
204
- #: ../templates/listing-contactform.tpl.php:18
205
- #, php-format
206
- msgctxt "templates"
207
- msgid ""
208
- "You are currently logged in as %s. Your message will be sent using your "
209
- "logged in contact email."
210
- msgstr ""
211
- "Вы вошли в сайт под учётной записью \"%s\". Ваше сообщение будет отправлено "
212
- "используя Ваш контактный электронный адрес в качестве адреса отправителя."
213
-
214
- #: ../templates/listing-contactform.tpl.php:23
215
- msgctxt "templates"
216
- msgid "Your Name"
217
- msgstr "Ваше имя"
218
-
219
- #: ../templates/listing-contactform.tpl.php:27
220
- msgctxt "templates"
221
- msgid "Your Email"
222
- msgstr "Электронный адрес"
223
-
224
- #: ../templates/listing-contactform.tpl.php:32
225
- msgctxt "templates"
226
- msgid "Message"
227
- msgstr "Сообщение"
228
-
229
- #: ../templates/listing-contactform.tpl.php:40
230
- msgctxt "templates"
231
- msgid "Send"
232
- msgstr "Отправить"
233
-
234
- #: ../templates/search.tpl.php:14
235
- msgctxt "search"
236
- msgid "Search Results"
237
- msgstr "Результаты поиска"
238
-
239
- #: ../templates/search.tpl.php:21 ../templates/businessdirectory-listings.tpl.php:
240
- #: 27 ../core/templates/listings.tpl.php:6
241
- msgctxt "templates"
242
- msgid "No listings found."
243
- msgstr "Записи не найдены."
244
-
245
- #: ../templates/search.tpl.php:24 ../templates/manage-listings.tpl.php:11
246
- msgctxt "templates"
247
- msgid "Return to directory"
248
- msgstr "Вернуться к справочнику"
249
-
250
- #: ../templates/delete-listing-confirm.tpl.php:3
251
- msgctxt "manage recurring"
252
- msgid "Delete Listing"
253
- msgstr "Удалить запись"
254
-
255
- #: ../templates/delete-listing-confirm.tpl.php:7
256
- msgctxt "delete listing"
257
- msgid ""
258
- "Your listing is associated to a recurring payment. If you don't cancel the "
259
- "recurring payment before deleting the listing, you might be charged for "
260
- "additional periods even though your listing won't be available."
261
- msgstr ""
262
- "Ваша запись ассоциирована с периодическим платежём! Если Вы не удалите этот "
263
- "периодический платёж до удаления Вашей записи, то с Вас могут продолжать "
264
- "снимать деньги, даже при отсутствующей в базе записи."
265
-
266
- #: ../templates/delete-listing-confirm.tpl.php:12
267
- msgctxt "delete listing"
268
- msgid ""
269
- "Please visit <a>Manage recurring payments</a> to review your current "
270
- "recurring payments."
271
- msgstr ""
272
- "Пожалуйста перейдите в раздел <a>Периодические платежи</a> и рассмотрите "
273
- "Ваши платежи, настроены ли они происходить периодически."
274
-
275
- #: ../templates/delete-listing-confirm.tpl.php:18
276
- #, php-format
277
- msgctxt "delete listing"
278
- msgid "You are about to remove your listing \"%s\" from the directory."
279
- msgstr "Вы приступаете к удалению вашей записи \"%s\" из справочника услуг."
280
-
281
- #: ../templates/delete-listing-confirm.tpl.php:19
282
- msgctxt "delete listing"
283
- msgid "Are you sure you want to do this?"
284
- msgstr "Вы уверены, что хотите это сделать?"
285
-
286
- #: ../templates/delete-listing-confirm.tpl.php:24
287
- msgctxt "delete listing"
288
- msgid "No. Take me back to the directory."
289
- msgstr "Нет! Вернуться обратно в справочник."
290
-
291
- #: ../templates/delete-listing-confirm.tpl.php:25
292
- msgctxt "delete listing"
293
- msgid "Yes. Delete my listing."
294
- msgstr "Да... Удалить мою запись."
295
-
296
- #: ../templates/payment-page.tpl.php:17
297
- msgctxt "templates"
298
- msgid "We can not process your payment at this moment. Please try again later."
299
- msgstr ""
300
- "В настоящее время вы не можем провести Вашу оплату. Попробуйте позже "
301
- "пожалуйста."
302
-
303
- #: ../templates/renew-listing.tpl.php:3
304
- msgctxt "templates"
305
- msgid "Renew Listing"
306
- msgstr "Продлить запись"
307
-
308
- #: ../templates/renew-listing.tpl.php:7
309
- msgctxt "renewal"
310
- msgid "Proceed to Checkout"
311
- msgstr "Перейти к завершению покупки"
312
-
313
- #: ../templates/renew-listing.tpl.php:10
314
- #, php-format
315
- msgctxt "templates"
316
- msgid "You are about to renew your listing \"%s\" publication inside category \"%s\"."
317
- msgstr "Вы приступаете к продлению вашей записи \"%s\" в рубрике \"%s\"."
318
-
319
- #: ../templates/renew-listing.tpl.php:15
320
- msgctxt "WPBDM"
321
- msgid ""
322
- "Please select a fee option or click \"Do not renew my listing\" to cancel your "
323
- "renewal."
324
- msgstr ""
325
- "Пожалуйста выберите вариант оплаты. Или кликните на \"Не продлевать мою "
326
- "запись\" чтобы отказаться от продления записи."
327
-
328
- #: ../templates/renew-listing.tpl.php:22 ../templates/submit-listing/fee-
329
- #: selection.tpl.php:37 ../templates/submit-listing/images.tpl.php:38 ..
330
- #: templates/submit-listing/category-selection.tpl.php:8 ../templates/submit-
331
- #: listing/listing-fields.tpl.php:34
332
- msgctxt "templates"
333
- msgid "Continue"
334
- msgstr "Далее"
335
-
336
- #: ../templates/renew-listing.tpl.php:25
337
- msgctxt "renewal"
338
- msgid "Cancel Listing Renewal"
339
- msgstr "Отменить продление записи"
340
-
341
- #: ../templates/renew-listing.tpl.php:26
342
- msgctxt "templates"
343
- msgid "Do not renew my listing"
344
- msgstr "Не продлевать мою запись"
345
-
346
- #: ../templates/manage-recurring-cancel.tpl.php:1
347
- msgctxt "manage recurring"
348
- msgid "Manage Recurring Payments - Cancel"
349
- msgstr "Периодические платежи - Отмена"
350
-
351
- #: ../templates/manage-recurring-cancel.tpl.php:5
352
- msgctxt "manage recurring"
353
- msgid "Plan Details"
354
- msgstr "Детали плана"
355
-
356
- #: ../templates/manage-recurring-cancel.tpl.php:9
357
- msgctxt "manage recurring"
358
- msgid "Name:"
359
- msgstr "Название:"
360
-
361
- #: ../templates/manage-recurring-cancel.tpl.php:15
362
- msgctxt "manage recurring"
363
- msgid "Cost:"
364
- msgstr "Цена:"
365
-
366
- #: ../templates/manage-recurring-cancel.tpl.php:18
367
- #, php-format
368
- msgctxt "manage recurring"
369
- msgid "%s every %s days."
370
- msgstr "%s каждые %s дней(я)."
371
-
372
- #: ../templates/manage-recurring-cancel.tpl.php:23
373
- msgctxt "manage recurring"
374
- msgid "Number of images:"
375
- msgstr "Количество изображений"
376
-
377
- #: ../templates/manage-recurring-cancel.tpl.php:29
378
- msgctxt "manage recurring"
379
- msgid "Expires on:"
380
- msgstr "Истечёт:"
381
-
382
- #: ../templates/businessdirectory-listings.tpl.php:38 ../core/templates/listings.
383
- #: tpl.php:17
384
- msgctxt "templates"
385
- msgid "&laquo; Previous "
386
- msgstr "&laquo; Предыдущая "
387
-
388
- #: ../templates/businessdirectory-listings.tpl.php:39 ../core/templates/listings.
389
- #: tpl.php:18
390
- msgctxt "templates"
391
- msgid "Next &raquo;"
392
- msgstr "Следующая &raquo;"
393
-
394
- #: ../templates/listing-upgradetosticky.tpl.php:1
395
- msgctxt "templates"
396
- msgid "Upgrade listing"
397
- msgstr "Поднять статус записи"
398
-
399
- #: ../templates/listing-upgradetosticky.tpl.php:10
400
- #, php-format
401
- msgctxt "templates"
402
- msgid "Upgrade listing to %s for %s."
403
- msgstr "Поднять статус до %s за %s."
404
-
405
- #: ../templates/billing-information-form.tpl.php:3
406
- msgctxt "months"
407
- msgid "Jan"
408
- msgstr "Янв"
409
-
410
- #: ../templates/billing-information-form.tpl.php:4
411
- msgctxt "months"
412
- msgid "Feb"
413
- msgstr "Фев"
414
-
415
- #: ../templates/billing-information-form.tpl.php:5
416
- msgctxt "months"
417
- msgid "Mar"
418
- msgstr "Мар"
419
-
420
- #: ../templates/billing-information-form.tpl.php:6
421
- msgctxt "months"
422
- msgid "Apr"
423
- msgstr "Апр"
424
-
425
- #: ../templates/billing-information-form.tpl.php:7
426
- msgctxt "months"
427
- msgid "May"
428
- msgstr "Май"
429
-
430
- #: ../templates/billing-information-form.tpl.php:8
431
- msgctxt "months"
432
- msgid "Jun"
433
- msgstr "Июн"
434
-
435
- #: ../templates/billing-information-form.tpl.php:9
436
- msgctxt "months"
437
- msgid "Jul"
438
- msgstr "Июл"
439
-
440
- #: ../templates/billing-information-form.tpl.php:10
441
- msgctxt "months"
442
- msgid "Aug"
443
- msgstr "Авг"
444
-
445
- #: ../templates/billing-information-form.tpl.php:11
446
- msgctxt "months"
447
- msgid "Sep"
448
- msgstr "Сен"
449
-
450
- #: ../templates/billing-information-form.tpl.php:12
451
- msgctxt "months"
452
- msgid "Oct"
453
- msgstr "Окт"
454
-
455
- #: ../templates/billing-information-form.tpl.php:13
456
- msgctxt "months"
457
- msgid "Nov"
458
- msgstr "Ноя"
459
-
460
- #: ../templates/billing-information-form.tpl.php:14
461
- msgctxt "months"
462
- msgid "Dec"
463
- msgstr "Дек"
464
-
465
- #: ../templates/billing-information-form.tpl.php:29
466
- msgctxt "checkout form"
467
- msgid "Credit Card Details"
468
- msgstr "Данный кредитки"
469
-
470
- #: ../templates/billing-information-form.tpl.php:30
471
- msgctxt "checkout form"
472
- msgid "Please enter your credit card details below."
473
- msgstr "Пожалуйста введите данные Вашей кредитной карточки."
474
-
475
- #: ../templates/billing-information-form.tpl.php:35
476
- msgctxt "checkout form"
477
- msgid "First Name:"
478
- msgstr "Имя:"
479
-
480
- #: ../templates/billing-information-form.tpl.php:43
481
- msgctxt "checkout form"
482
- msgid "Last Name:"
483
- msgstr "Фамилия:"
484
-
485
- #: ../templates/billing-information-form.tpl.php:51
486
- msgctxt "checkout form"
487
- msgid "Card Number:"
488
- msgstr "Номер карточки:"
489
-
490
- #: ../templates/billing-information-form.tpl.php:59
491
- msgctxt "checkout form"
492
- msgid "Expiration Date (MM/YYYY):"
493
- msgstr "Действует до:"
494
-
495
- #: ../templates/billing-information-form.tpl.php:72
496
- msgctxt "checkout form"
497
- msgid "CVC:"
498
- msgstr "CVC:"
499
-
500
- #: ../templates/billing-information-form.tpl.php:82
501
- msgctxt "checkout form"
502
- msgid "Billing Address"
503
- msgstr "Платёжный адрес"
504
-
505
- #: ../templates/billing-information-form.tpl.php:87
506
- msgctxt "checkout form"
507
- msgid "Country:"
508
- msgstr "Страна:"
509
-
510
- #: ../templates/billing-information-form.tpl.php:95
511
- msgctxt "checkout form"
512
- msgid "State:"
513
- msgstr "Провинция/Штат:"
514
-
515
- #: ../templates/billing-information-form.tpl.php:103
516
- msgctxt "checkout form"
517
- msgid "City:"
518
- msgstr "Город:"
519
-
520
- #: ../templates/billing-information-form.tpl.php:111
521
- msgctxt "checkout form"
522
- msgid "Address Line 1:"
523
- msgstr "Адрес:"
524
-
525
- #: ../templates/billing-information-form.tpl.php:119
526
- msgctxt "checkout form"
527
- msgid "Address Line 2:"
528
- msgstr "Адрес (дополнительно)"
529
-
530
- #: ../templates/billing-information-form.tpl.php:127
531
- msgctxt "checkout form"
532
- msgid "ZIP Code:"
533
- msgstr "Почтовый индекс:"
534
-
535
- #: ../templates/billing-information-form.tpl.php:137
536
- msgctxt "WPBDM"
537
- msgid "Cancel"
538
- msgstr "Отменить"
539
-
540
- #: ../templates/billing-information-form.tpl.php:138
541
- msgctxt "WPBDM"
542
- msgid "Submit Payment"
543
- msgstr "Провести оплату"
544
-
545
- #: ../templates/manage-listings.tpl.php:6
546
- msgctxt "templates"
547
- msgid ""
548
- "Your current listings are shown below. To edit a listing click the edit "
549
- "button. To delete a listing click the delete button."
550
- msgstr ""
551
- "Ваши записи показаны ниже. Для изменения записи кликните на кнопку "
552
- "\"Изменить\". Для удаления записи кликните на кнопку \"Удалить\"."
553
-
554
- #: ../templates/manage-listings.tpl.php:9
555
- msgctxt "templates"
556
- msgid "You do not currently have any listings in the directory."
557
- msgstr "У Вас нет ни одной записи в справочнике."
558
-
559
- #: ../templates/payment/payment_items.tpl.php:5
560
- msgctxt "payment_items"
561
- msgid "Item"
562
- msgstr "Пункт"
563
-
564
- #: ../templates/payment/payment_items.tpl.php:6
565
- msgctxt "payment_items"
566
- msgid "Amount"
567
- msgstr "Сумма"
568
-
569
- #: ../templates/payment/payment_items.tpl.php:19
570
- msgctxt "payment_items"
571
- msgid "Total"
572
- msgstr "Всего"
573
-
574
- #: ../templates/email/listing-edited.tpl.php:2
575
- msgctxt "emails"
576
- msgid ""
577
- "A listing in the directory has been edited recently. Listing details can be "
578
- "found below."
579
- msgstr "Запись недавно была изменена. Ниже приведены детали этой записи."
580
-
581
- #: ../templates/email/listing-edited.tpl.php:7 ../templates/email/listing-added.
582
- #: tpl.php:7
583
- msgctxt "notify email"
584
- msgid "ID"
585
- msgstr ""
586
-
587
- #: ../templates/email/listing-edited.tpl.php:10 ../templates/email/listing-added.
588
- #: tpl.php:10
589
- msgctxt "notify email"
590
- msgid "Title"
591
- msgstr "Название"
592
-
593
- #: ../templates/email/listing-edited.tpl.php:13 ../templates/email/listing-added.
594
- #: tpl.php:13
595
- msgctxt "notify email"
596
- msgid "URL"
597
- msgstr "Адрес URL"
598
-
599
- #: ../templates/email/listing-edited.tpl.php:13 ../templates/email/listing-added.
600
- #: tpl.php:13
601
- msgctxt "notify email"
602
- msgid "(not published yet)"
603
- msgstr "(ещё не опубликовано)"
604
-
605
- #: ../templates/email/listing-edited.tpl.php:16 ../templates/email/listing-added.
606
- #: tpl.php:16
607
- msgctxt "notify email"
608
- msgid "Categories"
609
- msgstr "Рубрики"
610
-
611
- #: ../templates/email/listing-edited.tpl.php:19 ../templates/email/listing-added.
612
- #: tpl.php:19
613
- msgctxt "notify email"
614
- msgid "Posted By"
615
- msgstr "Создано"
616
-
617
- #: ../templates/email/listing-added.tpl.php:2
618
- msgctxt "emails"
619
- msgid ""
620
- "A new listing has been submitted to the directory. Listing details can be "
621
- "found below."
622
- msgstr "В справочник добавлена новая запись. Ниже приведены детали этой записи."
623
-
624
- #: ../templates/parts/login-required.tpl.php:5
625
- msgctxt "templates"
626
- msgid ""
627
- "You are not currently logged in. Please login or register first. When "
628
- "registering, you will receive an activation email. Be sure to check your "
629
- "spam if you don't see it in your email within 60 minutes."
630
- msgstr ""
631
- "Вы не вошли на сайт. Пожалуйста войдите в сайт или зарегистрируйтесь. После "
632
- "регистрации Вы получите электронной письмо с кодом активации. Убедитесь, что "
633
- "это письмо не попадёт в папку Спама в вашей почтовой системе."
634
-
635
- #: ../templates/parts/login-required.tpl.php:10
636
- msgctxt "templates"
637
- msgid "Login"
638
- msgstr "Войти в сайт"
639
-
640
- #: ../templates/parts/login-required.tpl.php:31
641
- msgctxt "templates"
642
- msgid "Not yet registered?"
643
- msgstr "Ещё не зарегистрированы?"
644
-
645
- #: ../templates/parts/login-required.tpl.php:33
646
- msgctxt "templates"
647
- msgid "Lost your password?"
648
- msgstr "Забыли пароль?"
649
-
650
- #: ../templates/parts/category-fee-selection.tpl.php:13
651
- #, php-format
652
- msgctxt "templates"
653
- msgid "\"%s\" fee options"
654
- msgstr "Варианты тарифов для рубрики \"%s\""
655
-
656
- #: ../templates/parts/category-fee-selection.tpl.php:18
657
- msgctxt "templates"
658
- msgid "Fee"
659
- msgstr "Тариф"
660
-
661
- #: ../templates/parts/category-fee-selection.tpl.php:19
662
- msgctxt "templates"
663
- msgid "Price"
664
- msgstr "Цена"
665
-
666
- #: ../templates/parts/category-fee-selection.tpl.php:20
667
- msgctxt "templates"
668
- msgid "Duration"
669
- msgstr "Срок действия"
670
-
671
- #: ../templates/parts/category-fee-selection.tpl.php:21
672
- msgctxt "templates"
673
- msgid "Images Allowed"
674
- msgstr "Разрешено изображений"
675
-
676
- #: ../templates/parts/category-fee-selection.tpl.php:43
677
- msgctxt "templates"
678
- msgid "Unlimited"
679
- msgstr "Неограниченно"
680
-
681
- #: ../templates/parts/category-fee-selection.tpl.php:45
682
- #, php-format
683
- msgctxt "templates"
684
- msgid "%d day"
685
- msgid_plural "%d days"
686
- msgstr[0] "%d день"
687
- msgstr[1] "%d дней(я)"
688
-
689
- #: ../templates/parts/listing-buttons.tpl.php:4 ../templates/parts/listing-
690
- #: buttons.tpl.php:18 ../templates/parts/listing-buttons.tpl.php:22
691
- msgctxt "templates"
692
- msgid "Edit"
693
- msgstr "Изменить"
694
-
695
- #: ../templates/parts/listing-buttons.tpl.php:7
696
- msgctxt "templates"
697
- msgid "Upgrade Listing"
698
- msgstr "Поднять статус записи"
699
-
700
- #: ../templates/parts/listing-buttons.tpl.php:10 ../templates/parts/listing-
701
- #: buttons.tpl.php:19 ../templates/parts/listing-buttons.tpl.php:23
702
- msgctxt "templates"
703
- msgid "Delete"
704
- msgstr "Удалить"
705
-
706
- #: ../templates/parts/listing-buttons.tpl.php:10 ../templates/parts/listing-
707
- #: buttons.tpl.php:23
708
- msgctxt "templates"
709
- msgid "Are you sure you wish to delete this listing?"
710
- msgstr "Вы уверены, что Вы хотите удалить эту запись?"
711
-
712
- #: ../templates/parts/listing-buttons.tpl.php:13
713
- msgid "← Back to Directory"
714
- msgstr " Назад в справочник"
715
-
716
- #: ../templates/parts/listing-buttons.tpl.php:17 ../templates/parts/listing-
717
- #: buttons.tpl.php:21
718
- msgctxt "templates"
719
- msgid "View"
720
- msgstr "Показать"
721
-
722
- #: ../templates/submit-listing/images-single.tpl.php:18
723
- msgctxt "templates"
724
- msgid "Delete Image"
725
- msgstr "Удалить изображение"
726
-
727
- #: ../templates/submit-listing/images-single.tpl.php:24
728
- msgctxt "templates"
729
- msgid "Set this image as the listing thumbnail."
730
- msgstr "Миниатюра"
731
-
732
- #: ../templates/submit-listing/fee-selection.tpl.php:1
733
- msgctxt "templates"
734
- msgid "Fee/Upgrade Selection"
735
- msgstr "Выбор Бесплатно/Платно"
736
-
737
- #: ../templates/submit-listing/fee-selection.tpl.php:18
738
- #, php-format
739
- msgctxt "templates"
740
- msgid "Would you like to upgrade your listing to \"%s\" for %s more?"
741
- msgstr "Желаете ли Вы поднять статус Вашей записи до \"%s\" за дополнительные %s?"
742
-
743
- #: ../templates/submit-listing/fee-selection.tpl.php:21
744
- msgctxt "templates"
745
- msgid "Yes, upgrade my listing now."
746
- msgstr "Да, поднять статус моей записи."
747
-
748
- #: ../templates/submit-listing/fee-selection.tpl.php:31
749
- msgctxt "submit"
750
- msgid "Would you like to make your fee renew automatically at the end of the period?"
751
- msgstr ""
752
- "Хотите ли Вы включить автоматическую оплату продления записи по окончании "
753
- "срока публикации?"
754
-
755
- #: ../templates/submit-listing/images.tpl.php:4
756
- msgctxt "templates"
757
- msgid "Listing Images"
758
- msgstr "Изображение записи"
759
-
760
- #: ../templates/submit-listing/images.tpl.php:7
761
- msgctxt "templates"
762
- msgid ""
763
- "There is an image pending upload. Would you still like to continue without "
764
- "saving the image?"
765
- msgstr ""
766
- "Ожидается загрузка изображения. Хотите ли Вы продолжить не дожидаясь "
767
- "загрузки и отказавшись от этого изображения?"
768
-
769
- #: ../templates/submit-listing/images.tpl.php:12 ../admin/class-listing-fields-
770
- #: metabox.php:40
771
- msgctxt "templates"
772
- msgid "Current Images"
773
- msgstr "Существующие изображения:"
774
-
775
- #: ../templates/submit-listing/images.tpl.php:13
776
- msgctxt "templates"
777
- msgid "There are no images currently attached to your listing."
778
- msgstr "К Вашей записи не прикреплено ни одного изображения."
779
-
780
- #: ../templates/submit-listing/images-upload-form.tpl.php:17
781
- msgctxt "templates"
782
- msgid "Upload Images"
783
- msgstr "Загрузить изображение"
784
-
785
- #: ../templates/submit-listing/images-upload-form.tpl.php:22
786
- msgctxt "templates"
787
- msgid "Drop files here"
788
- msgstr "Перетащите файлы сюда"
789
-
790
- #: ../templates/submit-listing/images-upload-form.tpl.php:23
791
- msgctxt "templates image upload"
792
- msgid "or"
793
- msgstr "или"
794
-
795
- #: ../templates/submit-listing/images-upload-form.tpl.php:26
796
- msgctxt "templates"
797
- msgid "Select images from your hard drive"
798
- msgstr "Выберите файл на диске Вашего компьютера"
799
-
800
- #: ../templates/submit-listing/images-upload-form.tpl.php:32
801
- #, php-format
802
- msgctxt "templates"
803
- msgid "Uploading %s file(s)... Please wait."
804
- msgstr "Подождите пожалуйста, идёт загрузка %s файла(ов)..."
805
-
806
- #: ../templates/submit-listing/images-upload-form.tpl.php:36
807
- msgctxt "templates"
808
- msgid ""
809
- "Your image slots are all full at this time. You may click \"Continue\" if you "
810
- "are done, or \"Delete Image\" to upload a new image in place of a current one."
811
- msgstr ""
812
- "Уже загружено максимально разрешённое количество изображений. Вы можете "
813
- "кликнуть по кнопке \"Далее\", если с эта часть записи уже готова, либо "
814
- "\"Удалить изображение\" и загрузить новый файл вместо текущего."
815
-
816
- #: ../templates/submit-listing/images-upload-form.tpl.php:44
817
- msgctxt "templates"
818
- msgid "Image slots available:"
819
- msgstr "Свободных мест для загрузки изображений:"
820
-
821
- #: ../templates/submit-listing/images-upload-form.tpl.php:50
822
- msgctxt "templates"
823
- msgid "Min. file size:"
824
- msgstr "Минимальный размер файла:"
825
-
826
- #: ../templates/submit-listing/images-upload-form.tpl.php:56
827
- msgctxt "templates"
828
- msgid "Max. file size:"
829
- msgstr "Максимальный размер файла:"
830
-
831
- #: ../templates/submit-listing/done.tpl.php:1
832
- msgctxt "templates"
833
- msgid "Submission Received"
834
- msgstr "Запись принята на сервер"
835
-
836
- #: ../templates/submit-listing/done.tpl.php:4
837
- msgctxt "templates"
838
- msgid "Your listing has been submitted."
839
- msgstr "Ваша запись принята на сервер."
840
-
841
- #: ../templates/submit-listing/done.tpl.php:6
842
- msgctxt "templates"
843
- msgid "Your listing changes were saved."
844
- msgstr "Изменения в Вашей записи были сохранены."
845
-
846
- #: ../templates/submit-listing/done.tpl.php:11
847
- msgctxt "templates"
848
- msgid "Go to your listing"
849
- msgstr "Перейти к Вашей записи"
850
-
851
- #: ../templates/submit-listing/done.tpl.php:13
852
- msgctxt "templates"
853
- msgid "Return to directory."
854
- msgstr "Вернуться в справочник."
855
-
856
- #: ../templates/submit-listing/category-selection.tpl.php:1
857
- msgctxt "templates"
858
- msgid "Category Selection"
859
- msgstr "Выбор рубрики"
860
-
861
- #: ../templates/submit-listing/extra-sections.tpl.php:1
862
- msgctxt "templates"
863
- msgid "Additional Information"
864
- msgstr "Дополнительная информация"
865
-
866
- #: ../templates/submit-listing/extra-sections.tpl.php:6
867
- msgctxt "templates"
868
- msgid "Continue with listing submit"
869
- msgstr "Продолжить создание записи"
870
-
871
- #: ../templates/submit-listing/listing-fields.tpl.php:1
872
- msgctxt "templates"
873
- msgid "Listing Information"
874
- msgstr "Информация о бизнесе"
875
-
876
- #: ../templates/submit-listing/listing-fields.tpl.php:15
877
- msgctxt "templates"
878
- msgid "* Indicates required fields."
879
- msgstr "<b>*</b> - обязательное поле."
880
-
881
- #: ../admin/listing-metabox.php:11
882
- msgctxt "admin"
883
- msgid "General"
884
- msgstr "Основное"
885
-
886
- #: ../admin/listing-metabox.php:12
887
- msgctxt "admin"
888
- msgid "Fee Details"
889
- msgstr "Тарифы"
890
-
891
- #: ../admin/listing-metabox.php:13
892
- msgctxt "admin"
893
- msgid "Transactions"
894
- msgstr "Транзакции"
895
-
896
- #: ../admin/listing-metabox.php:42
897
- msgctxt "admin infometabox"
898
- msgid "General Info"
899
- msgstr "Основная информация"
900
-
901
- #: ../admin/listing-metabox.php:44
902
- msgctxt "admin infometabox"
903
- msgid "Total Listing Cost"
904
- msgstr "Стоимость записи"
905
-
906
- #: ../admin/listing-metabox.php:46
907
- msgctxt "admin infometabox"
908
- msgid "Payment Status"
909
- msgstr "Статус оплаты"
910
-
911
- #: ../admin/listing-metabox.php:50
912
- msgctxt "admin infometabox"
913
- msgid "Featured (Sticky) Status"
914
- msgstr "Статус специальной записи"
915
-
916
- #: ../admin/listing-metabox.php:58
917
- msgctxt "admin metabox"
918
- msgid "Pending Upgrade"
919
- msgstr "Ожидается подтверждение"
920
-
921
- #: ../admin/listing-metabox.php:68 ../admin/class-admin-listings.php:168
922
- #, php-format
923
- msgid "Upgrade to %s"
924
- msgstr "Поднять статус до %s"
925
-
926
- #: ../admin/listing-metabox.php:75 ../admin/class-admin-listings.php:175
927
- #, php-format
928
- msgid "Downgrade to %s"
929
- msgstr "Опустить статус до %s"
930
-
931
- #: ../admin/listing-metabox.php:81
932
- msgctxt "admin infometabox"
933
- msgid "CSV Import Sequence ID"
934
- msgstr "Последовательный № импорта CSV"
935
-
936
- #: ../admin/listing-metabox.php:92
937
- msgctxt "admin infometabox"
938
- msgid "Mark listing as Paid"
939
- msgstr "Пометить запись как Оплачена"
940
-
941
- #: ../admin/csv-export.php:136
942
- msgctxt "admin csv-export"
943
- msgid "Could not create a temporary directory for handling this CSV export."
944
- msgstr "Не удалось создать временную директорию для создания экспортных файлов."
945
-
946
- #: ../admin/csv-export.php:138
947
- msgctxt "admin csv-export"
948
- msgid "Could not create wpbdp-csv-exports directory."
949
- msgstr "Не удалось создать директорию \"wpbdp-csv-exports\"."
950
-
951
- #: ../admin/csv-export.php:143
952
- #, php-format
953
- msgctxt "admin csv-export"
954
- msgid "Error while creating a temporary directory for CSV export: %s"
955
- msgstr "Ошибка при создании временной директории для экспорта в CSV файл: %s"
956
-
957
- #: ../admin/csv-import.php:95
958
- #, php-format
959
- msgctxt "admin csv-import"
960
- msgid "Business %s"
961
- msgstr "Запись %s"
962
-
963
- #: ../admin/csv-import.php:133
964
- msgctxt "admin csv-import"
965
- msgid "Whatever"
966
- msgstr "Ну ладно"
967
-
968
- #: ../admin/csv-import.php:137
969
- msgctxt "admin csv-import"
970
- msgid "Example CSV Import File"
971
- msgstr "Образец файла импорта CSV"
972
-
973
- #: ../admin/csv-import.php:138
974
- msgctxt "admin csv-import"
975
- msgid "← Return to \"CSV Import\""
976
- msgstr " Вернуться к \"Импорту из CSV\""
977
-
978
- #: ../admin/csv-import.php:241
979
- #, php-format
980
- msgid ""
981
- "A valid temporary directory with write permissions is required for CSV "
982
- "imports to function properly. Your server is using \"%s\" but this path does "
983
- "not seem to be writable. Please consult with your host."
984
- msgstr ""
985
- "Для корректной работы требуется возможность создать временную директорию с "
986
- "правами на запись, чтобы произвести в ней разбор импортируемого файла CSV. "
987
- "Ваш сервер использует \"%s\", но эта директория, похоже, не доступна для "
988
- "записи. Проверьте этот вопрос со своим хостингом."
989
-
990
- #: ../admin/csv-import.php:275
991
- msgctxt "admin csv-import"
992
- msgid "There was an error uploading the CSV file."
993
- msgstr "Произошла ошибка при загрузке файла CSV."
994
-
995
- #: ../admin/csv-import.php:281
996
- msgctxt "admin csv-import"
997
- msgid "Please upload or select a CSV file."
998
- msgstr "Пожалуйста загрузите или выберите файл CSV."
999
-
1000
- #: ../admin/csv-import.php:294
1001
- msgctxt "admin csv-import"
1002
- msgid "There was an error uploading the images ZIP file."
1003
- msgstr "Произошла ошибка при загрузке архива ZIP с изображениями."
1004
-
1005
- #: ../admin/csv-import.php:315
1006
- msgctxt "admin csv-import"
1007
- msgid ""
1008
- "An error was detected while validating the CSV file for import. Please fix "
1009
- "this before proceeding."
1010
- msgstr ""
1011
- "Произошла ошибка при проверке импортного файла CSV. Пожалуйста исправьте "
1012
- "ошибки перед тем, как попытаться импортировать файл ещё раз."
1013
-
1014
- #: ../admin/csv-import.php:324
1015
- msgctxt "admin csv-import"
1016
- msgid "Import is in \"test mode\". Nothing will be inserted into the database."
1017
- msgstr ""
1018
- "Импорт происходит в \"тестовом режиме\". В базу данных ничего не будет "
1019
- "загружено."
1020
-
1021
- #: ../admin/page-debug.php:15
1022
- msgctxt "debug-info"
1023
- msgid "BD Info"
1024
- msgstr "Информация о плагине"
1025
-
1026
- #: ../admin/page-debug.php:27
1027
- #, php-format
1028
- msgid "Missing tables: %s"
1029
- msgstr "Отсутствующие таблицы: %s"
1030
-
1031
- #: ../admin/page-debug.php:28
1032
- msgctxt "debug-info"
1033
- msgid "OK"
1034
- msgstr "OK"
1035
-
1036
- #: ../admin/page-debug.php:36
1037
- msgctxt "debug-info"
1038
- msgid "BD Options"
1039
- msgstr "Параметры плагина"
1040
-
1041
- #: ../admin/page-debug.php:49
1042
- msgctxt "debug-info"
1043
- msgid "Environment"
1044
- msgstr "Параметры сервера"
1045
-
1046
- #: ../admin/class-admin-listings.php:36
1047
- msgctxt "admin category filter"
1048
- msgid "All categories"
1049
- msgstr "Все рубрики"
1050
-
1051
- #: ../admin/class-admin-listings.php:77
1052
- msgid "Listing Information"
1053
- msgstr "Информация о бизнесе"
1054
-
1055
- #: ../admin/class-admin-listings.php:84
1056
- msgctxt "admin"
1057
- msgid "Listing Fields / Images"
1058
- msgstr "Поля и Изображения записи"
1059
-
1060
- #: ../admin/class-admin-listings.php:95
1061
- msgctxt "admin"
1062
- msgid "Categories"
1063
- msgstr "Рубрики"
1064
-
1065
- #: ../admin/class-admin-listings.php:96
1066
- msgid "Payment Status"
1067
- msgstr "Статус оплаты"
1068
-
1069
- #: ../admin/class-admin-listings.php:97
1070
- msgid "Featured (Sticky) Status"
1071
- msgstr "Статус \"Особая\""
1072
-
1073
- #: ../admin/class-admin-listings.php:128
1074
- msgctxt "admin"
1075
- msgid "(Listing expired in this category)"
1076
- msgstr "(В этой рубрике запись истекла)"
1077
-
1078
- #: ../admin/class-admin-listings.php:146 ../admin/class-admin-listings.php:229
1079
- msgid "Paid"
1080
- msgstr "Оплачено"
1081
-
1082
- #: ../admin/class-admin-listings.php:151
1083
- msgid "Mark as"
1084
- msgstr "Помечено как"
1085
-
1086
- #: ../admin/class-admin-listings.php:160 ../admin/class-admin-listings.php:239
1087
- msgid "Pending Upgrade"
1088
- msgstr "Ожидается подтверждение"
1089
-
1090
- #: ../admin/class-admin-listings.php:178 ../admin/class-admin-listings.php:358
1091
- msgctxt "admin actions"
1092
- msgid "Upgrade to Featured"
1093
- msgstr "Поднять статус до Особой"
1094
-
1095
- #: ../admin/class-admin-listings.php:234
1096
- msgid "Unpaid"
1097
- msgstr "Не оплачено"
1098
-
1099
- #: ../admin/class-admin-listings.php:244
1100
- msgctxt "admin"
1101
- msgid "Expired"
1102
- msgstr "Истекло"
1103
-
1104
- #: ../admin/class-admin-listings.php:294
1105
- msgctxt "admin actions"
1106
- msgid "Edit Listing"
1107
- msgstr "Изменить запись"
1108
-
1109
- #: ../admin/class-admin-listings.php:297
1110
- msgctxt "admin actions"
1111
- msgid "Delete Listing"
1112
- msgstr "Удалить запись"
1113
-
1114
- #: ../admin/class-admin-listings.php:356
1115
- msgctxt "admin actions"
1116
- msgid "Publish Listing"
1117
- msgstr "Опубликовать запись"
1118
-
1119
- #: ../admin/class-admin-listings.php:359
1120
- msgctxt "admin actions"
1121
- msgid "Downgrade to Normal"
1122
- msgstr "Опустить статус до Обычная"
1123
-
1124
- #: ../admin/class-admin-listings.php:361
1125
- msgctxt "admin actions"
1126
- msgid "Mark as Paid"
1127
- msgstr "Пометить как оплачено"
1128
-
1129
- #: ../admin/class-admin-listings.php:363
1130
- msgctxt "admin actions"
1131
- msgid "Renew Listing"
1132
- msgstr "Продлить запись"
1133
-
1134
- #: ../admin/fees.php:9
1135
- msgctxt "fees admin"
1136
- msgid "fee"
1137
- msgstr "тариф"
1138
-
1139
- #: ../admin/fees.php:10
1140
- msgctxt "fees admin"
1141
- msgid "fees"
1142
- msgstr "тарифы"
1143
-
1144
- #: ../admin/fees.php:16
1145
- msgctxt "fees admin"
1146
- msgid "You do not have any listing fees setup yet."
1147
- msgstr "Вы не задали пока ни одного тарифа для записей."
1148
-
1149
- #: ../admin/fees.php:22
1150
- msgctxt "fees admin"
1151
- msgid "Label"
1152
- msgstr "Метка"
1153
-
1154
- #: ../admin/fees.php:23
1155
- msgctxt "fees admin"
1156
- msgid "Amount"
1157
- msgstr "Стоимость"
1158
-
1159
- #: ../admin/fees.php:24
1160
- msgctxt "fees admin"
1161
- msgid "Duration"
1162
- msgstr "Срок действия"
1163
-
1164
- #: ../admin/fees.php:25
1165
- msgctxt "fees admin"
1166
- msgid "Images"
1167
- msgstr "Изображений"
1168
-
1169
- #: ../admin/fees.php:26
1170
- msgctxt "fees admin"
1171
- msgid "Applied To"
1172
- msgstr "Применимо к..."
1173
-
1174
- #: ../admin/fees.php:50
1175
- msgctxt "fees admin"
1176
- msgid "Edit"
1177
- msgstr "Изменить"
1178
-
1179
- #: ../admin/fees.php:53
1180
- msgctxt "fees admin"
1181
- msgid "Delete"
1182
- msgstr "Удалить"
1183
-
1184
- #: ../admin/fees.php:73
1185
- msgctxt "fees admin"
1186
- msgid "Forever"
1187
- msgstr "Вечно"
1188
-
1189
- #: ../admin/fees.php:74
1190
- #, php-format
1191
- msgctxt "fees admin"
1192
- msgid "%d day"
1193
- msgid_plural "%d days"
1194
- msgstr[0] "%d день"
1195
- msgstr[1] "%d дней"
1196
-
1197
- #: ../admin/fees.php:78
1198
- #, php-format
1199
- msgctxt "fees admin"
1200
- msgid "%d image"
1201
- msgid_plural "%d images"
1202
- msgstr[0] "%d изображение"
1203
- msgstr[1] "%d изображений"
1204
-
1205
- #: ../admin/fees.php:83
1206
- msgctxt "fees admin"
1207
- msgid "All categories"
1208
- msgstr "Все рубрики"
1209
-
1210
- #: ../admin/fees.php:135
1211
- msgctxt "fees order"
1212
- msgid "Label"
1213
- msgstr "По метке"
1214
-
1215
- #: ../admin/fees.php:136
1216
- msgctxt "fees order"
1217
- msgid "Amount"
1218
- msgstr "Стоимость"
1219
-
1220
- #: ../admin/fees.php:137
1221
- msgctxt "fees order"
1222
- msgid "Duration"
1223
- msgstr "По сроку действия"
1224
-
1225
- #: ../admin/fees.php:138
1226
- msgctxt "fees order"
1227
- msgid "Images"
1228
- msgstr "По изображениям"
1229
-
1230
- #: ../admin/fees.php:139
1231
- msgctxt "fees order"
1232
- msgid "Custom Order"
1233
- msgstr "Собственный порядок"
1234
-
1235
- #: ../admin/fees.php:153
1236
- msgctxt "fees admin"
1237
- msgid "Fee updated."
1238
- msgstr "Тариф сохранён."
1239
-
1240
- #: ../admin/fees.php:179
1241
- msgctxt "fees admin"
1242
- msgid "Fee deleted."
1243
- msgstr "Тариф удалён."
1244
-
1245
- #: ../admin/class-themes-admin.php:41
1246
- msgctxt "themes"
1247
- msgid "Directory Themes"
1248
- msgstr "Темы справочника"
1249
-
1250
- #: ../admin/class-themes-admin.php:42
1251
- #, php-format
1252
- msgctxt "themes"
1253
- msgid "Directory Themes %s"
1254
- msgstr "Темы справочника %s"
1255
-
1256
- #: ../admin/class-themes-admin.php:97
1257
- #, php-format
1258
- msgctxt "themes"
1259
- msgid "Could not change the active theme to \"%s\"."
1260
- msgstr "Не удалось сменить активную тему на \"%s\"."
1261
-
1262
- #: ../admin/class-themes-admin.php:144
1263
- #, php-format
1264
- msgctxt "themes"
1265
- msgid "Active theme changed to \"%s\"."
1266
- msgstr "Активная тема была сменена на \"%s\"."
1267
-
1268
- #: ../admin/class-themes-admin.php:147
1269
- #, php-format
1270
- msgctxt "themes"
1271
- msgid ""
1272
- "For better results, \"%s\" theme suggests the following form fields to be "
1273
- "created."
1274
- msgstr "Для лучшего результата тема \"%s\" рекомендует создать следующие поля формы."
1275
-
1276
- #: ../admin/class-themes-admin.php:154
1277
- msgctxt "themes"
1278
- msgid "Dismiss this warning"
1279
- msgstr "Убрать это предупреждение"
1280
-
1281
- #: ../admin/class-themes-admin.php:157
1282
- msgctxt "themes"
1283
- msgid "Create suggested fields"
1284
- msgstr "Создать рекомендуемые поля"
1285
-
1286
- #: ../admin/class-themes-admin.php:164
1287
- msgctxt "themes"
1288
- msgid "Suggested fields created successfully."
1289
- msgstr "Рекомендуемые поля успешно созданы."
1290
-
1291
- #: ../admin/class-themes-admin.php:167
1292
- msgctxt "themes"
1293
- msgid "Theme installed successfully."
1294
- msgstr "Тема успешно установлена."
1295
-
1296
- #: ../admin/class-themes-admin.php:170
1297
- msgctxt "themes"
1298
- msgid "Theme was deleted sucessfully."
1299
- msgstr "Тема успешно удалена."
1300
-
1301
- #: ../admin/class-themes-admin.php:173
1302
- msgctxt "themes"
1303
- msgid "Could not delete theme directory. Check permissions."
1304
- msgstr "Не удалось удалить директорию темы - проверьте права доступа к файлам."
1305
-
1306
- #: ../admin/class-themes-admin.php:199
1307
- msgctxt "themes"
1308
- msgid "Please upload a valid theme file."
1309
- msgstr "Пожалуйста загрузите корректный файл темы."
1310
-
1311
- #: ../admin/class-themes-admin.php:206
1312
- #, php-format
1313
- msgctxt "themes"
1314
- msgid "Could not move \"%s\" to a temporary directory."
1315
- msgstr "Не удалось перемести \"%s\" во временную директорию."
1316
-
1317
- #: ../admin/class-themes-admin.php:307 ../core/licensing.php:127 ..
1318
- #: core/licensing.php:159
1319
- msgctxt "licensing"
1320
- msgid "Could not contact licensing server"
1321
- msgstr "Не удалось связаться с сервером лицензий"
1322
-
1323
- #: ../admin/class-themes-admin.php:313 ../core/licensing.php:132 ..
1324
- #: core/licensing.php:166
1325
- msgctxt "licensing"
1326
- msgid "License key is invalid"
1327
- msgstr "Лицензионный ключ не правильный"
1328
-
1329
- #: ../admin/class-themes-admin.php:318 ../core/licensing.php:330
1330
- #, php-format
1331
- msgctxt "licensing"
1332
- msgid "Could not activate license: %s."
1333
- msgstr "Не удалось активировать лицензию: %s."
1334
-
1335
- #: ../admin/class-themes-admin.php:331 ../core/licensing.php:332
1336
- msgctxt "licensing"
1337
- msgid "License activated"
1338
- msgstr "Лицензия активирована"
1339
-
1340
- #: ../admin/form-fields.php:9
1341
- msgctxt "form-fields admin"
1342
- msgid "form field"
1343
- msgstr "поле формы"
1344
-
1345
- #: ../admin/form-fields.php:10
1346
- msgctxt "form-fields admin"
1347
- msgid "form fields"
1348
- msgstr "поля формы"
1349
-
1350
- #: ../admin/form-fields.php:17
1351
- msgctxt "form-fields admin"
1352
- msgid "Order"
1353
- msgstr "Порядок"
1354
-
1355
- #: ../admin/form-fields.php:18
1356
- msgctxt "form-fields admin"
1357
- msgid "Label / Association"
1358
- msgstr "Метка / Ассоциация"
1359
-
1360
- #: ../admin/form-fields.php:19
1361
- msgctxt "form-fields admin"
1362
- msgid "Type"
1363
- msgstr "Тип"
1364
-
1365
- #: ../admin/form-fields.php:20
1366
- msgctxt "form-fields admin"
1367
- msgid "Validator"
1368
- msgstr "Требование"
1369
-
1370
- #: ../admin/form-fields.php:21
1371
- msgctxt "form-fields admin"
1372
- msgid "Field Attributes"
1373
- msgstr "Атрибуты"
1374
-
1375
- #: ../admin/form-fields.php:45
1376
- msgctxt "form-fields admin"
1377
- msgid "Edit"
1378
- msgstr "Изменить"
1379
-
1380
- #: ../admin/form-fields.php:50
1381
- msgctxt "form-fields admin"
1382
- msgid "Delete"
1383
- msgstr "Удалить"
1384
-
1385
- #: ../admin/form-fields.php:76
1386
- msgctxt "form-fields admin"
1387
- msgid "Required"
1388
- msgstr "Обязательное"
1389
-
1390
- #: ../admin/form-fields.php:76
1391
- msgctxt "form-fields admin"
1392
- msgid "Optional"
1393
- msgstr "Необязательное"
1394
-
1395
- #: ../admin/form-fields.php:80
1396
- msgctxt "form-fields admin"
1397
- msgid "This field value is shown in the excerpt view of a listing."
1398
- msgstr "Значение поля показывается в составе цитаты записи."
1399
-
1400
- #: ../admin/form-fields.php:81
1401
- msgctxt "form-fields admin"
1402
- msgid "In Excerpt"
1403
- msgstr "В&nbsp;цитате"
1404
-
1405
- #: ../admin/form-fields.php:86
1406
- msgctxt "form-fields admin"
1407
- msgid "This field value is shown in the single view of a listing."
1408
- msgstr "Значение поля показывается в полном просмотре записи."
1409
-
1410
- #: ../admin/form-fields.php:87
1411
- msgctxt "form-fields admin"
1412
- msgid "In Listing"
1413
- msgstr "В полном виде"
1414
-
1415
- #: ../admin/form-fields.php:174
1416
- msgctxt "formfields-preview"
1417
- msgid ""
1418
- "This is a preview of the form as it will appear during \"Submit a Listing\". "
1419
- "The users may not see all fields from \"Manage Form Fields\" because you have "
1420
- "\"Featured Levels\" active and this is showing the base level."
1421
- msgstr ""
1422
- "Это - предварительный просмотр формы в том виде, как она будет отображена во "
1423
- "время создания записи. Автор может не видеть всех полей, если Вы "
1424
- "активировали модуль Специальных Платных Функций, а автор может видеть только "
1425
- "основные функции."
1426
-
1427
- #: ../admin/form-fields.php:180
1428
- msgctxt "form-fields admin"
1429
- msgid "Form Preview"
1430
- msgstr "Предварительный просмотр"
1431
-
1432
- #: ../admin/form-fields.php:181
1433
- msgctxt "form-fields admin"
1434
- msgid " Return to \"Manage Form Fields\""
1435
- msgstr "← Вернуться к \"Управлению Полями Формы\""
1436
-
1437
- #: ../admin/form-fields.php:212
1438
- msgctxt "form-fields admin"
1439
- msgid "Form fields updated."
1440
- msgstr "Поля формы сохранены."
1441
-
1442
- #: ../admin/form-fields.php:228
1443
- msgctxt "form-fields admin"
1444
- msgid ""
1445
- "<b>Important</b>: Since the \"<a>Display email address fields publicly?</a>\" "
1446
- "setting is disabled, display settings below will not be honored and this "
1447
- "field will not be displayed on the frontend. If you want e-mail addresses to "
1448
- "show on the frontend, you can <a>enable public display of e-mails</a>."
1449
- msgstr ""
1450
- "<b>ВАЖНО</b>: Как так параметр \"<a>Показывать электронные адреса?</a>\" "
1451
- "выключен, настройка видимости ниже будет проигнорирована, и это поле всё "
1452
- "таки не будет показано на сайте. Если же Вы хотите чтобы электронный адрес "
1453
- "показывался всем посетителям, то Вым нужно <a>разрешить соответствующую "
1454
- "настройку</a>."
1455
-
1456
- #: ../admin/form-fields.php:262
1457
- msgctxt "form-fields admin"
1458
- msgid "Field deleted."
1459
- msgstr "Поле удалено."
1460
-
1461
- #: ../admin/form-fields.php:278
1462
- msgctxt "form-fields admin"
1463
- msgid "Required fields created successfully."
1464
- msgstr "Обязательное поле удачно создано."
1465
-
1466
- #: ../admin/form-fields.php:286
1467
- msgctxt "form-fields admin"
1468
- msgid "Title"
1469
- msgstr "Название"
1470
-
1471
- #: ../admin/form-fields.php:287
1472
- msgctxt "form-fields admin"
1473
- msgid "Category"
1474
- msgstr "Рубрика"
1475
-
1476
- #: ../admin/form-fields.php:288
1477
- msgctxt "form-fields admin"
1478
- msgid "Excerpt"
1479
- msgstr "Цитата"
1480
-
1481
- #: ../admin/form-fields.php:289
1482
- msgctxt "form-fields admin"
1483
- msgid "Content"
1484
- msgstr "Содержимое"
1485
-
1486
- #: ../admin/form-fields.php:290
1487
- msgctxt "form-fields admin"
1488
- msgid "Tags"
1489
- msgstr "Метки"
1490
-
1491
- #: ../admin/form-fields.php:291
1492
- msgctxt "form-fields admin"
1493
- msgid "Address"
1494
- msgstr "Адрес"
1495
-
1496
- #: ../admin/form-fields.php:292
1497
- msgctxt "form-fields admin"
1498
- msgid "ZIP Code"
1499
- msgstr "Почтовый индекс"
1500
-
1501
- #: ../admin/form-fields.php:293
1502
- msgctxt "form-fields admin"
1503
- msgid "FAX Number"
1504
- msgstr "Номер факса"
1505
-
1506
- #: ../admin/form-fields.php:294
1507
- msgctxt "form-fields admin"
1508
- msgid "Phone Number"
1509
- msgstr "Номер телефона"
1510
-
1511
- #: ../admin/form-fields.php:295
1512
- msgctxt "form-fields admin"
1513
- msgid "Ratings Field"
1514
- msgstr "Рейтинг"
1515
-
1516
- #: ../admin/form-fields.php:296
1517
- msgctxt "form-fields admin"
1518
- msgid "Twitter"
1519
- msgstr "Twitter"
1520
-
1521
- #: ../admin/form-fields.php:297
1522
- msgctxt "form-fields admin"
1523
- msgid "Website"
1524
- msgstr "адрес сайта"
1525
-
1526
- #: ../admin/form-fields.php:318
1527
- msgctxt "form-fields admin"
1528
- msgid "Tags updated."
1529
- msgstr "Метки сохранены."
1530
-
1531
- #: ../admin/tracking.php:188
1532
- msgctxt "tracking"
1533
- msgid "Help Improve Business Directory"
1534
- msgstr "Помогите нам улучшить Справочник Услуг"
1535
-
1536
- #: ../admin/tracking.php:190
1537
- msgctxt "tracking"
1538
- msgid ""
1539
- "Can Business Directory keep track of your theme, plugins, and other non-"
1540
- "personal, non-identifying information to help us in testing the plugin for "
1541
- "future releases?"
1542
- msgstr ""
1543
- "Разрешаете ли вы плагину Справочник Услуг оправлять нам сведения о Вашей "
1544
- "теме, плагинах и другую анонимную информацию о Вашем сайте, чтобы помочь нам "
1545
- "тестировать будущие версии плагина?"
1546
-
1547
- #: ../admin/tracking.php:192
1548
- msgctxt "tracking"
1549
- msgid "What do you track?"
1550
- msgstr "Что отслеживается?"
1551
-
1552
- #: ../admin/tracking.php:214
1553
- msgctxt "tracking"
1554
- msgid "No, Thanks."
1555
- msgstr "Нет, спасибо"
1556
-
1557
- #: ../admin/tracking.php:221
1558
- msgctxt "tracking"
1559
- msgid "Allow Tracking"
1560
- msgstr "Разрешаю"
1561
-
1562
- #: ../admin/class-admin.php:121
1563
- msgctxt "drip pointer"
1564
- msgid ""
1565
- "Find out how to create a compelling, thriving business directory from "
1566
- "scratch in this ridiculously actionable (and FREE) 5-part email course. Get "
1567
- "a FREE premium module just for signing up."
1568
- msgstr ""
1569
- "Узнайте как можно создать убедительный и процветающий справочник с нуля в "
1570
- "этом невероятно действенном (и БЕСПЛАТНОМ) уроке из 5 частей, отправляемом "
1571
- "по электронной почте. Если Вы подпишитесь на этот урок, то Вы получите "
1572
- "БЕСПЛАТНО один платный модуль."
1573
-
1574
- #: ../admin/class-admin.php:123
1575
- msgctxt "drip pointer"
1576
- msgid "Email Address:"
1577
- msgstr "Электронный адрес:"
1578
-
1579
- #: ../admin/class-admin.php:129
1580
- msgctxt "drip pointer"
1581
- msgid "Want to know the Secrets of Building an Awesome Business Directory?"
1582
- msgstr "Хотите узнать секрет создания классного справочника услуг?"
1583
-
1584
- #: ../admin/class-admin.php:131
1585
- msgctxt "drip pointer"
1586
- msgid "Yes, please!"
1587
- msgstr "Да, конечно!"
1588
-
1589
- #: ../admin/class-admin.php:133
1590
- msgctxt "drip pointer"
1591
- msgid "No, thanks"
1592
- msgstr "Нет, спасибо"
1593
-
1594
- #: ../admin/class-admin.php:150
1595
- msgctxt "admin"
1596
- msgid "Business Directory"
1597
- msgstr "Справочник услуг"
1598
-
1599
- #: ../admin/class-admin.php:161
1600
- msgctxt "admin"
1601
- msgid "You're all set. Visit your new <a>Business Directory</a> page."
1602
- msgstr "Всё настроено. Откройте страницу Вашего нового <a>Справочника услуг</a> "
1603
-
1604
- #: ../admin/class-admin.php:182
1605
- msgctxt "drip pointer"
1606
- msgid "Invalid e-mail address."
1607
- msgstr "Некорректный электронный адрес."
1608
-
1609
- #: ../admin/class-admin.php:213
1610
- msgctxt "admin menu"
1611
- msgid "Business Directory Admin"
1612
- msgstr "Управление справочником"
1613
-
1614
- #: ../admin/class-admin.php:214
1615
- msgctxt "admin menu"
1616
- msgid "Directory Admin"
1617
- msgstr "Управление Справочником"
1618
-
1619
- #: ../admin/class-admin.php:220 ../admin/class-admin.php:221
1620
- msgctxt "admin menu"
1621
- msgid "Add New Listing"
1622
- msgstr "Добавить Запись"
1623
-
1624
- #: ../admin/class-admin.php:226 ../admin/class-admin.php:227
1625
- msgctxt "admin menu"
1626
- msgid "Manage Options"
1627
- msgstr "Настройки"
1628
-
1629
- #: ../admin/class-admin.php:232 ../admin/class-admin.php:233
1630
- msgctxt "admin menu"
1631
- msgid "Manage Fees"
1632
- msgstr "Тарифы"
1633
-
1634
- #: ../admin/class-admin.php:238 ../admin/class-admin.php:239
1635
- msgctxt "admin menu"
1636
- msgid "Manage Form Fields"
1637
- msgstr "Форма"
1638
-
1639
- #: ../admin/class-admin.php:244 ../admin/class-admin.php:245
1640
- msgctxt "admin menu"
1641
- msgid "Listings"
1642
- msgstr "Записи"
1643
-
1644
- #: ../admin/class-admin.php:259 ../admin/class-admin.php:260
1645
- msgctxt "admin menu"
1646
- msgid "CSV Import"
1647
- msgstr "Импорт из CSV"
1648
-
1649
- #: ../admin/class-admin.php:265 ../admin/class-admin.php:266
1650
- msgctxt "admin menu"
1651
- msgid "CSV Export"
1652
- msgstr "Экспорт в CSV"
1653
-
1654
- #: ../admin/class-admin.php:271 ../admin/class-admin.php:272
1655
- msgctxt "admin menu"
1656
- msgid "Debug"
1657
- msgstr "Отладка"
1658
-
1659
- #: ../admin/class-admin.php:281
1660
- msgctxt "admin menu"
1661
- msgid "Main Menu"
1662
- msgstr "Панель управления"
1663
-
1664
- #: ../admin/class-admin.php:292
1665
- msgctxt "admin menu"
1666
- msgid "Uninstall Business Directory Plugin"
1667
- msgstr "Удалить плагин Справочника Услуг"
1668
-
1669
- #: ../admin/class-admin.php:293
1670
- msgctxt "admin menu"
1671
- msgid "Uninstall"
1672
- msgstr "Удалить"
1673
-
1674
- #: ../admin/class-admin.php:405 ../admin/templates/listing-metabox-categories.tpl.
1675
- #: php:69
1676
- msgctxt "admin infometabox"
1677
- msgid "never"
1678
- msgstr "никогда"
1679
-
1680
- #: ../admin/class-admin.php:487
1681
- msgctxt "admin"
1682
- msgid "The listing has been published."
1683
- msgid_plural "The listings have been published."
1684
- msgstr[0] "Запись была опубликована."
1685
- msgstr[1] "Записи были опубликованы."
1686
-
1687
- #: ../admin/class-admin.php:500
1688
- msgctxt "admin"
1689
- msgid "The listing status has been set as paid."
1690
- msgid_plural "The listings status has been set as paid."
1691
- msgstr[0] "Статус записи помечен как оплачено."
1692
- msgstr[1] "Статусы записей помечены как оплачены."
1693
-
1694
- #: ../admin/class-admin.php:512
1695
- msgctxt "admin"
1696
- msgid "The listing has been modified."
1697
- msgid_plural "The listings have been modified."
1698
- msgstr[0] "Запись была изменена."
1699
- msgstr[1] "Записи были изменены."
1700
-
1701
- #: ../admin/class-admin.php:525
1702
- msgctxt "admin"
1703
- msgid "The listing has been upgraded."
1704
- msgid_plural "The listings have been upgraded."
1705
- msgstr[0] "Статус записи был поднят."
1706
- msgstr[1] "Статус записей был поднят."
1707
-
1708
- #: ../admin/class-admin.php:537
1709
- msgctxt "admin"
1710
- msgid "The listing has been downgraded."
1711
- msgid_plural "The listings have been downgraded."
1712
- msgstr[0] "Статус записи был опущен."
1713
- msgstr[1] "Статусы записей были опущены."
1714
-
1715
- #: ../admin/class-admin.php:549
1716
- msgctxt "admin"
1717
- msgid "The transaction has been approved."
1718
- msgstr "Транзакция была утверждена."
1719
-
1720
- #: ../admin/class-admin.php:557
1721
- msgctxt "admin"
1722
- msgid "The transaction has been rejected."
1723
- msgstr "Транзакция была отвергнута."
1724
-
1725
- #: ../admin/class-admin.php:563
1726
- msgctxt "admin"
1727
- msgid "The fee was successfully assigned."
1728
- msgstr "Тариф был успешно назначен."
1729
-
1730
- #: ../admin/class-admin.php:572
1731
- msgctxt "admin"
1732
- msgid "Listing was renewed."
1733
- msgid_plural "Listings were renewed."
1734
- msgstr[0] "Запись была продлена."
1735
- msgstr[1] "Записи были продлены."
1736
-
1737
- #: ../admin/class-admin.php:579
1738
- msgctxt "admin"
1739
- msgid "Renewal email sent."
1740
- msgstr "Оповещение о продлении было отправлено по электронной почте."
1741
-
1742
- #: ../admin/class-admin.php:613
1743
- msgctxt "admin category id"
1744
- msgid "ID"
1745
- msgstr "№"
1746
-
1747
- #: ../admin/class-admin.php:615 ../admin/class-admin.php:621
1748
- msgctxt "admin"
1749
- msgid "Listing Count"
1750
- msgstr "Количество записей"
1751
-
1752
- #: ../admin/class-admin.php:717
1753
- #, php-format
1754
- msgctxt "admin"
1755
- msgid ""
1756
- "<b>Business Directory Plugin</b> requires fields with the following "
1757
- "associations in order to work correctly: <b>%s</b>."
1758
- msgstr ""
1759
- "<b>Плагин Справочник Услуг</b> для нормальной работы требует наличие полей "
1760
- "со следующими ассоциациям: <b>%s</b>."
1761
-
1762
- #: ../admin/class-admin.php:719
1763
- #, php-format
1764
- msgctxt "admin"
1765
- msgid ""
1766
- "<b>Business Directory Plugin</b> requires a field with a <b>%s</b> "
1767
- "association in order to work correctly."
1768
- msgstr ""
1769
- "<b>Плагин Справочник Услуг</b> для корректной работы требует наличия поля, "
1770
- "имеющего ассоциацию с <b>%s</b>."
1771
-
1772
- #: ../admin/class-admin.php:723
1773
- msgctxt "admin"
1774
- msgid ""
1775
- "You can create these custom fields by yourself inside \"Manage Form Fields\" "
1776
- "or let Business Directory do this for you automatically."
1777
- msgstr ""
1778
- "Вы можете сами создать эти поля в разделе \"Управление / Форма\", или "
1779
- "позвольте плагину сделать это автоматически."
1780
-
1781
- #: ../admin/class-admin.php:727
1782
- msgctxt "admin"
1783
- msgid "Go to \"Manage Form Fields\""
1784
- msgstr "Перейти в раздел \"Управление / Форма\""
1785
-
1786
- #: ../admin/class-admin.php:730
1787
- msgctxt "admin"
1788
- msgid "Create these required fields for me"
1789
- msgstr "Создать эти поля автоматически"
1790
-
1791
- #: ../admin/class-admin.php:739
1792
- msgctxt "admin"
1793
- msgid ""
1794
- "<b>Business Directory Plugin</b> requires a page with the "
1795
- "<tt>[businessdirectory]</tt> shortcode to function properly."
1796
- msgstr ""
1797
- "Плагин <b>Справочник Услуг</b> для нормальной работы требует наличия "
1798
- "страницы, в которой есть шорткод <tt>[businessdirectory]</tt>."
1799
-
1800
- #: ../admin/class-admin.php:741
1801
- msgctxt "admin"
1802
- msgid ""
1803
- "You can create this page by yourself or let Business Directory do this for "
1804
- "you automatically."
1805
- msgstr ""
1806
- "Вы можете создать такую страницу сами, или позвольте плагину создать её для "
1807
- "Вас автоматически."
1808
-
1809
- #: ../admin/class-admin.php:745
1810
- msgctxt "admin"
1811
- msgid "Create required pages for me"
1812
- msgstr "Создать необходимые страницы автоматически"
1813
-
1814
- #: ../admin/class-admin.php:785
1815
- #, php-format
1816
- msgctxt "admin compat"
1817
- msgid "Installed: %s"
1818
- msgstr "Установлено: %s"
1819
-
1820
- #: ../admin/class-admin.php:785
1821
- msgctxt "admin compat"
1822
- msgid "N/A"
1823
- msgstr "Х/З"
1824
-
1825
- #: ../admin/class-admin.php:788
1826
- #, php-format
1827
- msgctxt "admin compat"
1828
- msgid "Required: %s"
1829
- msgstr "Требуется: %s"
1830
-
1831
- #: ../admin/class-admin.php:801
1832
- msgctxt "admin compat"
1833
- msgid ""
1834
- "Business Directory has detected some incompatible premium module versions "
1835
- "installed."
1836
- msgstr "Плагин обнаружил некоторые несовместимые платные модули."
1837
-
1838
- #: ../admin/class-admin.php:803
1839
- msgctxt "admin compat"
1840
- msgid ""
1841
- "Please upgrade to the required versions indicated below to make sure "
1842
- "everything functions properly."
1843
- msgstr ""
1844
- "Пожалуйста обновите до необходимой версии, указанной ниже, чтобы убедиться, "
1845
- "что все функции будут работать правильно."
1846
-
1847
- #: ../admin/class-admin.php:818
1848
- msgctxt "admin"
1849
- msgid ""
1850
- "We noticed you want your Business Directory users to register before posting "
1851
- "listings, but Registration for your site is currently disabled. Go [here] "
1852
- "and check \"Anyone can register\" to make sure BD works properly."
1853
- msgstr ""
1854
- "Нам кажется, что Вы настроили плагин чтобы он разрешал публикацию записей "
1855
- "только для зарегистрированных пользователей. Однако в настоящий момент "
1856
- "регистрация на Вашем сайта запрещена. Перейдите в раздел [Общие Настройки "
1857
- "WordPress] и включите режим \"Любой может зарегистрироваться\", чтобы "
1858
- "позволить нашему плагину правильно работать."
1859
-
1860
- #: ../admin/class-listing-fields-metabox.php:21
1861
- msgctxt "admin"
1862
- msgid "Listing Fields"
1863
- msgstr "Поля записи:"
1864
-
1865
- #: ../admin/class-listing-fields-metabox.php:41
1866
- msgctxt "templates"
1867
- msgid "There are no images currently attached to the listing."
1868
- msgstr "К записи не прикреплено ни одного изображения."
1869
-
1870
- #: ../admin/templates/themes.tpl.php:3 ../admin/templates/themes-licenses.tpl.php:
1871
- #: 3 ../admin/templates/themes-install.tpl.php:2
1872
- msgctxt "themes"
1873
- msgid "Upload Directory Theme"
1874
- msgstr "Загрузить тему справочника"
1875
-
1876
- #: ../admin/templates/fees.tpl.php:3
1877
- msgctxt "fees admin"
1878
- msgid "Add New Listing Fee"
1879
- msgstr "Добавить тариф"
1880
-
1881
- #: ../admin/templates/fees.tpl.php:10
1882
- msgctxt "fees admin"
1883
- msgid "Payments are currently turned off."
1884
- msgstr "Платежи на настоящее время отключены."
1885
-
1886
- #: ../admin/templates/fees.tpl.php:13
1887
- msgctxt "fees admin"
1888
- msgid ""
1889
- "To manage fees you need to go to the <a>Manage Options - Payment</a> page "
1890
- "and check the box next to 'Turn On Payments' under 'Payment Settings'."
1891
- msgstr ""
1892
- "Для управления тарифами Вам надо перейти в раздел <a>Настройки / Оплата</a> "
1893
- включить параметр \"Включить поддержку платного режима\"."
1894
-
1895
- #: ../admin/templates/fees.tpl.php:22
1896
- msgctxt "fees admin"
1897
- msgid "Order fees on the frontend by:"
1898
- msgstr "Сортировать тарифы:"
1899
-
1900
- #: ../admin/templates/fees.tpl.php:30
1901
- msgctxt "fees admin"
1902
- msgid " Ascending"
1903
- msgstr "↑ По возрастанию"
1904
-
1905
- #: ../admin/templates/fees.tpl.php:30
1906
- msgctxt "fees admin"
1907
- msgid "↓ Descending"
1908
- msgstr " По убыванию"
1909
-
1910
- #: ../admin/templates/fees.tpl.php:36
1911
- msgctxt "fees admin"
1912
- msgid "Drag and drop to re-order fees."
1913
- msgstr "Поменяйте порядок тарифов перетаскивая их здесь."
1914
-
1915
- #: ../admin/templates/fees.tpl.php:48 ../admin/templates/sidebar.tpl.php:13
1916
- msgctxt "admin sidebar"
1917
- msgid "PayPal Gateway Module"
1918
- msgstr "Платёжный шлюз PayPal"
1919
-
1920
- #: ../admin/templates/fees.tpl.php:49 ../admin/templates/sidebar.tpl.php:14
1921
- msgctxt "admin sidebar"
1922
- msgid "2Checkout Gateway Module"
1923
- msgstr "Платёжный шлюз 2Checkout"
1924
-
1925
- #: ../admin/templates/fees.tpl.php:50 ../admin/templates/sidebar.tpl.php:5
1926
- msgctxt "admin sidebar"
1927
- msgid "PayFast Payment Module"
1928
- msgstr "Платёжный шлюз PayFast"
1929
-
1930
- #: ../admin/templates/fees.tpl.php:51 ../admin/templates/sidebar.tpl.php:6
1931
- msgctxt "admin sidebar"
1932
- msgid "Stripe Payment Module"
1933
- msgstr "Платёжный шлюз Stripe"
1934
-
1935
- #: ../admin/templates/fees.tpl.php:61
1936
- #, php-format
1937
- msgctxt "admin templates"
1938
- msgid ""
1939
- "It does not appear you have any of the payment gateway modules enabled. "
1940
- "Either <a>enable the default Authorize.net gateway</a> with your account "
1941
- "info, or purchase a different payment gateway module in order to charge a "
1942
- "fee for listings. To purchase additional payment gateways use the buttons "
1943
- "below or visit %s."
1944
- msgstr ""
1945
- "Похоже, что у Вас не установлен ни один платёжный шлюз. Либо <a>включите "
1946
- "шлюз по-умолчанию (Authorize.net)</a>, либо купите модуль другого платёжного "
1947
- "шлюза. Пока Вы этого не сделаете, Вы не сможете создать тарифные планы.<br "
1948
- "/><br />Чтобы купить модули платёжных шлюзов используйте следующие кнопки "
1949
- "или посетите наш магазин по адресу %s."
1950
-
1951
- #: ../admin/templates/fees.tpl.php:77
1952
- msgctxt "admin templates"
1953
- msgid "Already installed."
1954
- msgstr "Уже устновлен."
1955
-
1956
- #: ../admin/templates/fees.tpl.php:82
1957
- #, php-format
1958
- msgctxt "admin templates"
1959
- msgid ""
1960
- "You can buy the <a>%s</a> to add <a>%s</a> as a payment option for your "
1961
- "users."
1962
- msgstr ""
1963
- "Вы можете купить модуль \"<a>%s</a>\" чтобы добавить систему <a>%s</a> в "
1964
- "качестве одного из возможных способов оплаты для пользователей Вашего сайта."
1965
-
1966
- #: ../admin/templates/sidebar.tpl.php:3
1967
- msgctxt "admin sidebar"
1968
- msgid "Discount Codes Module"
1969
- msgstr "Коды для скидок"
1970
-
1971
- #: ../admin/templates/sidebar.tpl.php:4
1972
- msgctxt "admin sidebar"
1973
- msgid "Claim Listings Module"
1974
- msgstr "Запрос авторства"
1975
-
1976
- #: ../admin/templates/sidebar.tpl.php:7
1977
- msgctxt "admin sidebar"
1978
- msgid "File Upload Module"
1979
- msgstr "Загрузка файлов"
1980
-
1981
- #: ../admin/templates/sidebar.tpl.php:8
1982
- msgctxt "admin sidebar"
1983
- msgid "Featured Levels Module"
1984
- msgstr "Специальные платные функции"
1985
-
1986
- #: ../admin/templates/sidebar.tpl.php:9
1987
- msgctxt "admin sidebar"
1988
- msgid "ZIP Code Search Module"
1989
- msgstr "Поиск по почтовому индексу"
1990
-
1991
- #: ../admin/templates/sidebar.tpl.php:10
1992
- msgctxt "admin sidebar"
1993
- msgid "Regions Module"
1994
- msgstr "Географический фильтр"
1995
-
1996
- #: ../admin/templates/sidebar.tpl.php:11
1997
- msgctxt "admin sidebar"
1998
- msgid "Ratings Module"
1999
- msgstr "Рейтинги"
2000
-
2001
- #: ../admin/templates/sidebar.tpl.php:12
2002
- msgctxt "admin sidebar"
2003
- msgid "Google Maps Module"
2004
- msgstr "Карты Google"
2005
-
2006
- #: ../admin/templates/sidebar.tpl.php:21
2007
- msgctxt "admin sidebar"
2008
- msgid "Like this plugin?"
2009
- msgstr "Нравится этот плагин?"
2010
-
2011
- #: ../admin/templates/sidebar.tpl.php:23
2012
- msgctxt "admin sidebar"
2013
- msgid "Why not do any or all of the following:"
2014
- msgstr "Почему бы не сделать следующий шаг?"
2015
-
2016
- #: ../admin/templates/sidebar.tpl.php:25
2017
- msgctxt "admin sidebar"
2018
- msgid "Give it a good rating on WordPress.org."
2019
- msgstr "Поставьте хорошую оценку на сервере WordPress.org."
2020
-
2021
- #: ../admin/templates/sidebar.tpl.php:26
2022
- msgctxt "admin sidebar"
2023
- msgid "Let other people know that it works with your WordPress setup."
2024
- msgstr "Дайте знать другим людям, что этот плагин работает с Вашим сайтом."
2025
-
2026
- #: ../admin/templates/sidebar.tpl.php:27
2027
- msgctxt "admin sidebar"
2028
- msgid "Buy a Premium Module"
2029
- msgstr "Купите платный модуль."
2030
-
2031
- #: ../admin/templates/sidebar.tpl.php:34
2032
- msgctxt "admin sidebar"
2033
- msgid "Get a Premium Module"
2034
- msgstr "Получите платные модули:"
2035
-
2036
- #: ../admin/templates/sidebar.tpl.php:43
2037
- msgctxt "admin sidebar"
2038
- msgid "Single Site License Combo Pack"
2039
- msgstr "Комбинированный пакет модулей для одного сайта"
2040
-
2041
- #: ../admin/templates/sidebar.tpl.php:44
2042
- msgctxt "admin sidebar"
2043
- msgid "Multi Site License Combo Pack"
2044
- msgstr "Комбинированный пакет модулей для нескольких сайтов"
2045
-
2046
- #: ../admin/templates/sidebar.tpl.php:51
2047
- msgctxt "admin sidebar"
2048
- msgid "Found a bug? Need support?"
2049
- msgstr "Нашли глюк? Или нужна поддержка?"
2050
-
2051
- #: ../admin/templates/sidebar.tpl.php:56
2052
- msgctxt "admin sidebar"
2053
- msgid "If you've found a bug or need support <a>visit the forums!</a>"
2054
- msgstr ""
2055
- "Если Вы натолкнулись на глюк в программе, или Вам нужна техническая "
2056
- "поддержка, посетите <a>форум поддержки!</a>"
2057
-
2058
- #: ../admin/templates/sidebar.tpl.php:59
2059
- msgctxt "admin sidebar"
2060
- msgid "Full plugin documentation"
2061
- msgstr "Полная документация по плагину"
2062
-
2063
- #: ../admin/templates/sidebar.tpl.php:60
2064
- msgctxt "admin sidebar"
2065
- msgid "Quick Start Guide"
2066
- msgstr "Руководство по быстрому старту"
2067
-
2068
- #: ../admin/templates/sidebar.tpl.php:61
2069
- msgctxt "admin sidebar"
2070
- msgid "Video Tutorials"
2071
- msgstr "Видео-уроки"
2072
-
2073
- #: ../admin/templates/sidebar.tpl.php:69
2074
- msgctxt "admin sidebar"
2075
- msgid "Installed Modules"
2076
- msgstr "Установленные модули:"
2077
-
2078
- #: ../admin/templates/sidebar.tpl.php:80 ../admin/templates/sidebar.tpl.php:89
2079
- msgctxt "admin sidebar"
2080
- msgid "Installed"
2081
- msgstr "Установлен"
2082
-
2083
- #: ../admin/templates/sidebar.tpl.php:82 ../admin/templates/sidebar.tpl.php:89
2084
- msgctxt "admin sidebar"
2085
- msgid "Not Installed"
2086
- msgstr "Не установлен"
2087
-
2088
- #: ../admin/templates/sidebar.tpl.php:88
2089
- msgctxt "admin sidebar"
2090
- msgid "Enhanced Categories Module"
2091
- msgstr "Модуль продвинутых рубрик"
2092
-
2093
- #: ../admin/templates/fees-addoredit.tpl.php:23
2094
- msgctxt "fees admin"
2095
- msgid "Add Listing Fee"
2096
- msgstr "Добавить тариф"
2097
-
2098
- #: ../admin/templates/fees-addoredit.tpl.php:42
2099
- msgctxt "fees admin"
2100
- msgid "Fee Label"
2101
- msgstr "Название тарифа"
2102
-
2103
- #: ../admin/templates/fees-addoredit.tpl.php:53
2104
- msgctxt "fees admin"
2105
- msgid "Fee Amount"
2106
- msgstr "Стоимость"
2107
-
2108
- #: ../admin/templates/fees-addoredit.tpl.php:65
2109
- msgctxt "fees admin"
2110
- msgid "Listing run in days"
2111
- msgstr "Длительность действия записи"
2112
-
2113
- #: ../admin/templates/fees-addoredit.tpl.php:72
2114
- msgctxt "fees admin"
2115
- msgid "run listing for"
2116
- msgstr "показывать запись в течение"
2117
-
2118
- #: ../admin/templates/fees-addoredit.tpl.php:81
2119
- msgctxt "fees admin"
2120
- msgid "days"
2121
- msgstr "дней(я)"
2122
-
2123
- #: ../admin/templates/fees-addoredit.tpl.php:84
2124
- msgctxt "fees admin"
2125
- msgid "run listing forever"
2126
- msgstr "показывать запись пожизненно"
2127
-
2128
- #: ../admin/templates/fees-addoredit.tpl.php:89
2129
- msgctxt "fees admin"
2130
- msgid "Number of images allowed"
2131
- msgstr "Количество разрешённых изображений"
2132
-
2133
- #: ../admin/templates/fees-addoredit.tpl.php:101
2134
- msgctxt "fees admin"
2135
- msgid "Is sticky?"
2136
- msgstr "Специальная?"
2137
-
2138
- #: ../admin/templates/fees-addoredit.tpl.php:116
2139
- msgctxt "fees admin"
2140
- msgid "Apply to category"
2141
- msgstr "Применить к рубрике"
2142
-
2143
- #: ../admin/templates/fees-addoredit.tpl.php:120
2144
- msgctxt "fees admin"
2145
- msgid "* All Categories *"
2146
- msgstr "* Все рубрики *"
2147
-
2148
- #: ../admin/templates/fees-addoredit.tpl.php:140
2149
- msgctxt "fees admin"
2150
- msgid "Update Fee"
2151
- msgstr "Обновить тариф"
2152
-
2153
- #: ../admin/templates/fees-addoredit.tpl.php:142
2154
- msgctxt "fees admin"
2155
- msgid "Add Fee"
2156
- msgstr "Добавить тариф"
2157
-
2158
- #: ../admin/templates/form-fields-confirm-delete.tpl.php:2
2159
- msgctxt "form-fields admin"
2160
- msgid "Delete Form Field"
2161
- msgstr "Удалить поле формы"
2162
-
2163
- #: ../admin/templates/form-fields-confirm-delete.tpl.php:6
2164
- #, php-format
2165
- msgctxt "form-fields admin"
2166
- msgid "Are you sure you want to delete the \"%s\" field?"
2167
- msgstr "Вы уверены, что хотите удалить поле \"%s\"?"
2168
-
2169
- #: ../admin/templates/form-fields-confirm-delete.tpl.php:12
2170
- msgctxt "form-fields admin"
2171
- msgid "Delete Field"
2172
- msgstr "Удалить поле"
2173
-
2174
- #: ../admin/templates/themes-delete-confirm.tpl.php:1 ../admin/templates/themes-
2175
- #: delete-confirm.tpl.php:13
2176
- msgctxt "themes admin"
2177
- msgid "Delete Directory Theme"
2178
- msgstr "Удалить тему справочника"
2179
-
2180
- #: ../admin/templates/themes-delete-confirm.tpl.php:3
2181
- #, php-format
2182
- msgctxt "themes admin"
2183
- msgid "Are you sure you want to delete the directory theme \"%s\"?"
2184
- msgstr "Вы уверены, что хотите удалить тему справочника \"%s\"?"
2185
-
2186
- #: ../admin/templates/themes-delete-confirm.tpl.php:12
2187
- msgctxt "themes admin"
2188
- msgid "Cancel"
2189
- msgstr "Отменить"
2190
-
2191
- #: ../admin/templates/home.tpl.php:4
2192
- #, php-format
2193
- msgctxt "admin home"
2194
- msgid "Welcome to Business Directory Plugin. You are using %s."
2195
- msgstr "Добро пожаловать в Справочник Услуг. На Вашем сайте установлена версия %s."
2196
-
2197
- #: ../admin/templates/home.tpl.php:5
2198
- msgctxt "admin home"
2199
- msgid ""
2200
- "Thanks for choosing us. There's a lot you probably want to get done, so "
2201
- "let's jump right in!"
2202
- msgstr ""
2203
- "Спасибо за то, что Вы выбрали наш плагин. Скорее всего есть много вещей, "
2204
- "которые Вы хотите сделать с этим плагином, и потому - давайте приступим к "
2205
- "делам прямо сейчас!"
2206
-
2207
- #: ../admin/templates/home.tpl.php:11
2208
- msgctxt "admin home"
2209
- msgid ""
2210
- "Our complete documentation is <a>here</a> which we encourage you to use "
2211
- "while setting things up."
2212
- msgstr ""
2213
- "Полна документация по плагину доступна на <a>этой странице</a>, и мы "
2214
- "рекомендуем Вам держать её открытой пока Вы всё настраиваете."
2215
-
2216
- #: ../admin/templates/home.tpl.php:14
2217
- msgctxt "admin home"
2218
- msgid ""
2219
- "We have some quick-start scenarios that you will find useful regarding setup "
2220
- "and configuration <a>here</a>."
2221
- msgstr ""
2222
- "Также у нас есть <a>несколько примеров сценариев</a>, которым могут "
2223
- "оказаться Вам полезными с точки зрения настроек."
2224
-
2225
- #: ../admin/templates/home.tpl.php:18
2226
- msgctxt "admin home"
2227
- msgid ""
2228
- "If you have questions, please post a comment on <a>support forum</a> and "
2229
- "we'll answer it within 24 hours most days."
2230
- msgstr ""
2231
- если у Вас появятся вопросы, то Вы можете задать из на нашем <a>форуме "
2232
- "поддержки</a>, и мы обычно отвечаем на них в течение суток."
2233
-
2234
- #: ../admin/templates/home.tpl.php:25
2235
- msgid "Configure/Manage Options"
2236
- msgstr "Основные настройки"
2237
-
2238
- #: ../admin/templates/home.tpl.php:28
2239
- msgid "Setup/Manage Form Fields"
2240
- msgstr "Настроить поля форм"
2241
-
2242
- #: ../admin/templates/home.tpl.php:31
2243
- msgid "Setup/Manage Fees"
2244
- msgstr "Настроить тарифы"
2245
-
2246
- #: ../admin/templates/home.tpl.php:37
2247
- msgid "Featured Listings Pending Upgrade"
2248
- msgstr "Специальные записи, ожидающие утверждения"
2249
-
2250
- #: ../admin/templates/home.tpl.php:44
2251
- msgid "Manage Paid Listings"
2252
- msgstr "Платные записи"
2253
-
2254
- #: ../admin/templates/listing-metabox-fees.tpl.php:1
2255
- msgctxt "admin infometabox"
2256
- msgid "Fee Information"
2257
- msgstr "Информация о тарифах"
2258
-
2259
- #: ../admin/templates/listing-metabox-fees.tpl.php:3
2260
- msgctxt "admin infometabox"
2261
- msgid "Payment Mode:"
2262
- msgstr "Режим оплаты:"
2263
-
2264
- #: ../admin/templates/listing-metabox-fees.tpl.php:3
2265
- msgctxt "admin infometabox"
2266
- msgid "Paid"
2267
- msgstr "Платный"
2268
-
2269
- #: ../admin/templates/listing-metabox-fees.tpl.php:3
2270
- msgctxt "admin infometabox"
2271
- msgid "Free"
2272
- msgstr "Бесплатно"
2273
-
2274
- #: ../admin/templates/listing-metabox-fees.tpl.php:6
2275
- #, php-format
2276
- msgctxt "admin infometabox"
2277
- msgid "To change your payment mode, go to <a href=\"%s\">Payment Settings</a>."
2278
- msgstr ""
2279
- "Чтобы настроить режим оплаты, перейдите в панель <a href=\"%s\">Настройки "
2280
- "Платежей</a>."
2281
-
2282
- #: ../admin/templates/listing-metabox-fees.tpl.php:12
2283
- msgctxt "admin infometabox"
2284
- msgid "Note: In Free mode, the fee plans will always be set to \"Free Listing\" below."
2285
- msgstr ""
2286
- "Примечание: в Бесплатном режиме тарифы всегда будут равны тому, как указано "
2287
- "для \"Бесплатной Записи\"."
2288
-
2289
- #: ../admin/templates/listing-metabox-fees.tpl.php:22 ../admin/templates/listing-
2290
- #: metabox-feesummary.tpl.php:12
2291
- msgctxt "admin infometabox"
2292
- msgid "Renew listing in all expired categories"
2293
- msgstr "Продлить записи во всех истекших рубриках"
2294
-
2295
- #: ../admin/templates/uninstall-complete.tpl.php:2
2296
- msgctxt "admin uninstall"
2297
- msgid "Uninstall Business Directory"
2298
- msgstr "Удалить плагин Справочник Услуг"
2299
-
2300
- #: ../admin/templates/uninstall-complete.tpl.php:7
2301
- msgctxt "admin uninstall"
2302
- msgid "Uninstall completed."
2303
- msgstr "Удаление завершено."
2304
-
2305
- #: ../admin/templates/uninstall-complete.tpl.php:8
2306
- msgctxt "admin uninstall"
2307
- msgid "Return to Dashboard."
2308
- msgstr "Вернуться в Консоль."
2309
-
2310
- #: ../admin/templates/transactions.tpl.php:2
2311
- msgctxt "admin transactions"
2312
- msgid "Transactions"
2313
- msgstr "Транзакции"
2314
-
2315
- #: ../admin/templates/form-fields-tags.tpl.php:5
2316
- msgctxt "form-fields admin"
2317
- msgid "-- None --"
2318
- msgstr "-- нет --"
2319
-
2320
- #: ../admin/templates/form-fields-tags.tpl.php:14
2321
- msgctxt "form-fields admin"
2322
- msgid "Theme Tags"
2323
- msgstr "Метки темы"
2324
-
2325
- #: ../admin/templates/form-fields-tags.tpl.php:21
2326
- msgctxt "form-fields admin"
2327
- msgid "Field Tag"
2328
- msgstr "Метка поля"
2329
-
2330
- #: ../admin/templates/form-fields-tags.tpl.php:22
2331
- msgctxt "form-fields admin"
2332
- msgid "Field"
2333
- msgstr "Поле"
2334
-
2335
- #: ../admin/templates/payment-details.tpl.php:7
2336
- msgctxt "admin payments"
2337
- msgid "Payment Details"
2338
- msgstr "Детали платежа"
2339
-
2340
- #: ../admin/templates/payment-details.tpl.php:9
2341
- #, php-format
2342
- msgctxt "admin payments"
2343
- msgid "Payment #%d"
2344
- msgstr "Платёж № %d"
2345
-
2346
- #: ../admin/templates/payment-details.tpl.php:16
2347
- msgctxt "admin payments"
2348
- msgid "Created on"
2349
- msgstr "Создан"
2350
-
2351
- #: ../admin/templates/payment-details.tpl.php:19
2352
- msgctxt "admin infometabox"
2353
- msgid "Amount"
2354
- msgstr "Сумма"
2355
-
2356
- #: ../admin/templates/payment-details.tpl.php:22
2357
- msgctxt "admin infometabox"
2358
- msgid "Gateway"
2359
- msgstr "Шлюз"
2360
-
2361
- #: ../admin/templates/payment-details.tpl.php:26
2362
- msgctxt "admin infometabox"
2363
- msgid "Processed on"
2364
- msgstr "Обработано"
2365
-
2366
- #: ../admin/templates/payment-details.tpl.php:28
2367
- msgctxt "admin infometabox"
2368
- msgid "Processed by"
2369
- msgstr "Обработано"
2370
-
2371
- #: ../admin/templates/payment-details.tpl.php:40
2372
- msgctxt "admin payments"
2373
- msgid "Approve payment"
2374
- msgstr "Утвердить платёж"
2375
-
2376
- #: ../admin/templates/payment-details.tpl.php:44
2377
- msgctxt "admin payments"
2378
- msgid "Reject payment"
2379
- msgstr "Отказать в платеже"
2380
-
2381
- #: ../admin/templates/settings.tpl.php:2
2382
- msgid "Business Directory Settings"
2383
- msgstr "Настройки Справочника Услуг"
2384
-
2385
- #: ../admin/templates/settings.tpl.php:18
2386
- msgid "Settings updated."
2387
- msgstr "Параметры сохранены."
2388
-
2389
- #: ../admin/templates/settings.tpl.php:30 ../admin/templates/settings.tpl.php:39
2390
- msgid "Reset Defaults"
2391
- msgstr "Сбросить настройки"
2392
-
2393
- #: ../admin/templates/settings.tpl.php:36
2394
- msgid ""
2395
- "Use this option if you want to go back to the original factory settings for "
2396
- "BD. <b>Please note that all of your existing settings will be lost.</b>"
2397
- msgstr ""
2398
- "Используйте эту команду если Вы хотите сбросить все настройки на "
2399
- "поставляемые по-умолчанию с плагином. <b>Имейте в виду, что все Ваши "
2400
- "настройки будут очищены!</b>"
2401
-
2402
- #: ../admin/templates/debug-info.tpl.php:5
2403
- msgctxt "debug-info"
2404
- msgid ""
2405
- "The following information can help BD developers debug possible problems "
2406
- "with your setup."
2407
- msgstr ""
2408
- "Следующая информация может помочь разработчикам плагина отладить возможные "
2409
- "проблемы и конфликты с Вашим сервером."
2410
-
2411
- #: ../admin/templates/debug-info.tpl.php:6
2412
- msgctxt "debug-info"
2413
- msgid ""
2414
- "The debug information does not contain personal or sensitive information "
2415
- "such as passwords or private keys."
2416
- msgstr ""
2417
- "<br /><br />Отладочная информация НЕ СОДЕРЖИТ никакой персональной или "
2418
- "конфиденциальной информации - ничего вроде паролей или частных ключей "
2419
- "шифрования."
2420
-
2421
- #: ../admin/templates/debug-info.tpl.php:9
2422
- msgctxt "debug-info"
2423
- msgid "Download Debug Information"
2424
- msgstr "Скачать отладочную информацию"
2425
-
2426
- #: ../admin/templates/uninstall-confirm.tpl.php:1
2427
- msgctxt "uninstall"
2428
- msgid "Uninstall Business Directory Plugin"
2429
- msgstr "Удалить плагин Справочник Услуг"
2430
-
2431
- #: ../admin/templates/themes-item.tpl.php:3
2432
- msgctxt "themes"
2433
- msgid "Active:"
2434
- msgstr "Активно:"
2435
-
2436
- #: ../admin/templates/themes-item.tpl.php:12
2437
- msgctxt "themes"
2438
- msgid "Activate"
2439
- msgstr "Активировать"
2440
-
2441
- #: ../admin/templates/themes-item.tpl.php:29
2442
- msgctxt "themes"
2443
- msgid "Version:"
2444
- msgstr "Версия:"
2445
-
2446
- #: ../admin/templates/themes-item.tpl.php:32
2447
- msgctxt "themes"
2448
- msgid "Author:"
2449
- msgstr "Автор:"
2450
-
2451
- #: ../admin/templates/csv-export.tpl.php:9
2452
- msgctxt "admin csv-export"
2453
- msgid ""
2454
- "An unknown error occurred during the export. Please make sure you have "
2455
- "enough free disk space and memory available to PHP. Check your error logs "
2456
- "for details."
2457
- msgstr ""
2458
- "Во время экспорта произошла неизвестная ошибка. Пожалуйста убедитесь, что на "
2459
- "сервере имеется достаточно свободного места на диске и в памяти. Для "
2460
- "дополнительной информации проверьте протоколы ошибок сервера."
2461
-
2462
- #: ../admin/templates/csv-export.tpl.php:18
2463
- msgctxt "admin csv-export"
2464
- msgid ""
2465
- "Please note that the export process is a resource intensive task. If your "
2466
- "export does not succeed try disabling other plugins first and/or increasing "
2467
- "the values of the 'memory_limit' and 'max_execution_time' directives in your "
2468
- "server's php.ini configuration file."
2469
- msgstr ""
2470
- "Обратите внимание на то, что процесс экспортирования данных является жадной "
2471
- "до ресурсов задачей. Если экспорт завершится неудачей, то попробуйте сначала "
2472
- "отключить другие плагины, или увеличить объём выделяемой PHP памяти через "
2473
- "следующие команды конфигурационного файла \"php.ini\": memory_limit и "
2474
- "max_execution_time."
2475
-
2476
- #: ../admin/templates/csv-export.tpl.php:30
2477
- msgctxt "admin csv-export"
2478
- msgid "Export Configuration"
2479
- msgstr "Настройки экспорта"
2480
-
2481
- #: ../admin/templates/csv-export.tpl.php:33
2482
- msgctxt "admin csv-export"
2483
- msgid "Export settings"
2484
- msgstr "Параметры экспорта"
2485
-
2486
- #: ../admin/templates/csv-export.tpl.php:37
2487
- msgctxt "admin csv-export"
2488
- msgid "Which listings to export?"
2489
- msgstr "Записи?"
2490
-
2491
- #: ../admin/templates/csv-export.tpl.php:41
2492
- msgctxt "admin csv-export"
2493
- msgid "All"
2494
- msgstr "Экспортировать всё"
2495
-
2496
- #: ../admin/templates/csv-export.tpl.php:42
2497
- msgctxt "admin csv-export"
2498
- msgid "Active Only"
2499
- msgstr "Только активные записи"
2500
-
2501
- #: ../admin/templates/csv-export.tpl.php:43
2502
- msgctxt "admin csv-export"
2503
- msgid "Active + Pending Renewal"
2504
- msgstr "Активные + ожидающие продление"
2505
-
2506
- #: ../admin/templates/csv-export.tpl.php:49
2507
- msgctxt "admin csv-export"
2508
- msgid "Export images?"
2509
- msgstr "Изображения?"
2510
-
2511
- #: ../admin/templates/csv-export.tpl.php:54
2512
- msgctxt "admin csv-export"
2513
- msgid "Export images"
2514
- msgstr "Экспортировать изображения"
2515
-
2516
- #: ../admin/templates/csv-export.tpl.php:56
2517
- msgctxt "admin csv-export"
2518
- msgid ""
2519
- "When checked, instead of just a CSV file a ZIP file will be generated with "
2520
- "both a CSV file and listing images."
2521
- msgstr ""
2522
- "Включите этот параметр, и вместо одного CSV файла будет создан архив ZIP, "
2523
- "который будет содержать CSV файл + файлы изображений."
2524
-
2525
- #: ../admin/templates/csv-export.tpl.php:62
2526
- msgctxt "admin csv-export"
2527
- msgid "Additional metadata to export:"
2528
- msgstr "Метаданные?"
2529
-
2530
- #: ../admin/templates/csv-export.tpl.php:67
2531
- msgctxt "admin csv-export"
2532
- msgid "Include unique IDs for each listing (sequence_id column)."
2533
- msgstr ""
2534
- "Добавить уникальные номера для каждой записи (колонка базы данных: "
2535
- "sequence_id)."
2536
-
2537
- #: ../admin/templates/csv-export.tpl.php:69
2538
- msgctxt "admin csv-export"
2539
- msgid ""
2540
- "If you plan to re-import the listings into BD and don't want new ones "
2541
- "created, select this option!"
2542
- msgstr ""
2543
- "Включите этот параметр если Вы планируете использовать экспортированный файл "
2544
- "для последующего импорта на этом же сервере, и желаете, чтобы импортируемые "
2545
- "записи заменили существующие, вместо добавления как дубликаты."
2546
-
2547
- #: ../admin/templates/csv-export.tpl.php:75
2548
- msgctxt "admin csv-export"
2549
- msgid "Author information (username)"
2550
- msgstr "Информация об авторе (имя учётной записи)"
2551
-
2552
- #: ../admin/templates/csv-export.tpl.php:80
2553
- msgctxt "admin csv-export"
2554
- msgid "Sticky/featured status"
2555
- msgstr "Статус особой записи"
2556
-
2557
- #: ../admin/templates/csv-export.tpl.php:85
2558
- msgctxt "admin csv-export"
2559
- msgid "Listing expiration date"
2560
- msgstr "Дата окончания срока действия"
2561
-
2562
- #: ../admin/templates/csv-export.tpl.php:90
2563
- msgctxt "admin csv-export"
2564
- msgid "CSV File Settings"
2565
- msgstr "Параметры файла CSV"
2566
-
2567
- #: ../admin/templates/csv-export.tpl.php:94
2568
- msgctxt "admin csv-export"
2569
- msgid "Column Separator"
2570
- msgstr "Разделитель колонок"
2571
-
2572
- #: ../admin/templates/csv-export.tpl.php:94 ../admin/templates/csv-export.tpl.php:
2573
- #: 105 ../admin/templates/csv-export.tpl.php:116 ../admin/templates/csv-import.
2574
- #: tpl.php:43 ../admin/templates/csv-import.tpl.php:109 ../admin/templates/csv-
2575
- #: import.tpl.php:120 ../admin/templates/csv-import.tpl.php:131 ..
2576
- #: admin/templates/csv-import.tpl.php:158
2577
- msgctxt "admin forms"
2578
- msgid "required"
2579
- msgstr "обязательно"
2580
-
2581
- #: ../admin/templates/csv-export.tpl.php:105
2582
- msgctxt "admin csv-export"
2583
- msgid "Image Separator"
2584
- msgstr "Разделитель изображений"
2585
-
2586
- #: ../admin/templates/csv-export.tpl.php:116
2587
- msgctxt "admin csv-export"
2588
- msgid "Category Separator"
2589
- msgstr "Разделитель рубрик"
2590
-
2591
- #: ../admin/templates/csv-export.tpl.php:128
2592
- msgctxt "admin csv-export"
2593
- msgid "Export Listings"
2594
- msgstr "Экспортировать записи"
2595
-
2596
- #: ../admin/templates/csv-export.tpl.php:134
2597
- msgctxt "admin csv-export"
2598
- msgid "Export in Progress..."
2599
- msgstr "Экспорт работает..."
2600
-
2601
- #: ../admin/templates/csv-export.tpl.php:135
2602
- msgctxt "admin csv-export"
2603
- msgid ""
2604
- "Your export file is being prepared. Please <u>do not leave</u> this page "
2605
- "until the export finishes."
2606
- msgstr ""
2607
- "Ваш файл экспорта собирается. Пожалуйста <u>не закрывайте</u> эту страницу "
2608
- "до тех пор, пока экспорт не закончится."
2609
-
2610
- #: ../admin/templates/csv-export.tpl.php:138
2611
- msgctxt "admin csv-export"
2612
- msgid "No. of listings:"
2613
- msgstr "Количество записей:"
2614
-
2615
- #: ../admin/templates/csv-export.tpl.php:140
2616
- msgctxt "admin csv-export"
2617
- msgid "Approximate export file size:"
2618
- msgstr "Приблизительный размер экспортного файла:"
2619
-
2620
- #: ../admin/templates/csv-export.tpl.php:147
2621
- msgctxt "admin csv-export"
2622
- msgid "Cancel Export"
2623
- msgstr "Прекратить экспорт"
2624
-
2625
- #: ../admin/templates/csv-export.tpl.php:152
2626
- msgctxt "admin csv-export"
2627
- msgid "Export Complete"
2628
- msgstr "Экспорт завершился"
2629
-
2630
- #: ../admin/templates/csv-export.tpl.php:153
2631
- msgctxt "admin csv-export"
2632
- msgid ""
2633
- "Your export file has been successfully created and it is now ready for "
2634
- "download."
2635
- msgstr "Ваш файл экспорта был успешно создан и готов к скачиванию."
2636
-
2637
- #: ../admin/templates/csv-export.tpl.php:156
2638
- #, php-format
2639
- msgctxt "admin csv-export"
2640
- msgid "Download %s (%s)"
2641
- msgstr "Скачать %s (%s)"
2642
-
2643
- #: ../admin/templates/csv-export.tpl.php:162
2644
- msgctxt "admin csv-export"
2645
- msgid ""
2646
- "Click \"Cleanup\" once the file has been downloaded in order to remove all "
2647
- "temporary data created by Business Directory during the export process."
2648
- msgstr ""
2649
- "Как только файл скачается, нажмите кнопку \"Очистить\" чтобы удалить все "
2650
- "временные данные, созданные плагином во время подготовки экспортного файла."
2651
-
2652
- #: ../admin/templates/csv-export.tpl.php:163
2653
- msgctxt "admin csv-export"
2654
- msgid "Cleanup"
2655
- msgstr "Очистить"
2656
-
2657
- #: ../admin/templates/csv-export.tpl.php:168
2658
- msgctxt "admin csv-export"
2659
- msgid "Export Canceled"
2660
- msgstr "Экспорт прерван"
2661
-
2662
- #: ../admin/templates/csv-export.tpl.php:169
2663
- msgctxt "admin csv-export"
2664
- msgid "The export has been canceled."
2665
- msgstr "Процесс экспорта был прекращён."
2666
-
2667
- #: ../admin/templates/csv-export.tpl.php:170
2668
- msgctxt "admin csv-export"
2669
- msgid "← Return to CSV Export"
2670
- msgstr "← Вернуться к экспорту CSV"
2671
-
2672
- #: ../admin/templates/form-fields.tpl.php:3
2673
- msgctxt "form-fields admin"
2674
- msgid "Add New Form Field"
2675
- msgstr "Добавить новое поле формы"
2676
-
2677
- #: ../admin/templates/form-fields.tpl.php:4
2678
- msgctxt "form-fields admin"
2679
- msgid "Preview Form"
2680
- msgstr "Предварительный просмотр формы"
2681
-
2682
- #: ../admin/templates/form-fields.tpl.php:7
2683
- msgctxt "form-fields admin"
2684
- msgid "Manage Theme Tags"
2685
- msgstr "Настроить метки темы"
2686
-
2687
- #: ../admin/templates/form-fields.tpl.php:13
2688
- msgctxt "form-fields admin"
2689
- msgid ""
2690
- "Here, you can create new fields for your listings, edit or delete existing "
2691
- "ones, change the order and visibility of the fields as well as configure "
2692
- "special options for them."
2693
- msgstr ""
2694
- "Здесь Вы можете создать новые поля данных для Ваших записей, или изменить "
2695
- "(или удалить) существующие. Можно изменить порядок их следования, "
2696
- "необходимость их отображения и другие их параметры."
2697
-
2698
- #: ../admin/templates/form-fields.tpl.php:19
2699
- msgctxt "form-fields admin"
2700
- msgid "Please see the <a>Form Fields documentation</a> for more details."
2701
- msgstr ""
2702
- "<br />Для дополнительной информации обратитесь к <a>Документации по полям "
2703
- "форм</a>."
2704
-
2705
- #: ../admin/templates/uninstall-capture-form.tpl.php:5
2706
- msgctxt "uninstall"
2707
- msgid "It doesn't work with my theme/plugins/site"
2708
- msgstr "Он не работает с Вашей темой, или с Вашими плагинами, или с Вашим сайтом."
2709
-
2710
- #: ../admin/templates/uninstall-capture-form.tpl.php:6
2711
- msgctxt "uninstall"
2712
- msgid "I can't set it up/Too complicated"
2713
- msgstr "Вы не можете его настроить, или он слишком сложен."
2714
-
2715
- #: ../admin/templates/uninstall-capture-form.tpl.php:7
2716
- msgctxt "uninstall"
2717
- msgid "Doesn't solve my problem"
2718
- msgstr "Он не решает Вашу задачу."
2719
-
2720
- #: ../admin/templates/uninstall-capture-form.tpl.php:8
2721
- msgctxt "uninstall"
2722
- msgid "Don't need it anymore/Not using it"
2723
- msgstr "Он Вам больше не нужен, или Вы прекратили им пользоваться."
2724
-
2725
- #: ../admin/templates/uninstall-capture-form.tpl.php:9
2726
- msgctxt "uninstall"
2727
- msgid "Other"
2728
- msgstr "Другая причина:.."
2729
-
2730
- #: ../admin/templates/uninstall-capture-form.tpl.php:16
2731
- msgctxt "uninstall"
2732
- msgid ""
2733
- "We're sorry to see you leave. Could you take 10 seconds and answer one "
2734
- "question for us to help us make the product better for everyone in the "
2735
- "future?"
2736
- msgstr ""
2737
- "Нам очень жаль, что Вы решили расстаться с нашим плагином. Напоследок, могли "
2738
- "бы Вы уделить нам 10 секунд и ответить на один вопрос, чтобы помочь нам "
2739
- "сделать наш продукт ещё лучше для всех?"
2740
-
2741
- #: ../admin/templates/uninstall-capture-form.tpl.php:19
2742
- msgctxt "uninstall"
2743
- msgid "Why are you deleting Business Directory Plugin?"
2744
- msgstr "Вопрос: Почему Вы решили удалить плагин \"Справочник Услуг\"?"
2745
-
2746
- #: ../admin/templates/uninstall-capture-form.tpl.php:29
2747
- msgctxt "uninstall"
2748
- msgid "Please tell us why are you deleting Business Directory Plugin."
2749
- msgstr ""
2750
- "Пожалуйста, оставьте нам сообщение о том, почему Вы удаляете плагин "
2751
- "\"Справочник Услуг\"."
2752
-
2753
- #: ../admin/templates/uninstall-capture-form.tpl.php:36
2754
- msgctxt "uninstall"
2755
- msgid "Uninstall Plugin"
2756
- msgstr "Удалить плагин"
2757
-
2758
- #: ../admin/templates/csv-import.tpl.php:12 ../admin/templates/csv-import.tpl.php:
2759
- #: 227
2760
- msgctxt "admin csv-import"
2761
- msgid "Help"
2762
- msgstr "Подсказка"
2763
-
2764
- #: ../admin/templates/csv-import.tpl.php:13
2765
- msgctxt "admin csv-import"
2766
- msgid "See an example CSV import file"
2767
- msgstr "Посмотрите образец файла CSV для иморта"
2768
-
2769
- #: ../admin/templates/csv-import.tpl.php:21
2770
- msgctxt "admin csv-import"
2771
- msgid "Here, you can import data into your directory using the CSV format."
2772
- msgstr ""
2773
- "В этом разделе Вы можете импортировать данные в Ваш справочник используя "
2774
- "файл в формате CSV."
2775
-
2776
- #: ../admin/templates/csv-import.tpl.php:29
2777
- msgctxt "admin csv-import"
2778
- msgid ""
2779
- "We strongly recommend reading our <a>CSV import documentation</a> first to "
2780
- "help you do things in the right order."
2781
- msgstr ""
2782
- "Мы настоятельно рекомендуем сначала Вам ознакомиться с <a>Документацией по "
2783
- "импорту из файла CSV</a>, чтобы Вы могли всё сделать правильно."
2784
-
2785
- #: ../admin/templates/csv-import.tpl.php:38
2786
- msgctxt "admin csv-import"
2787
- msgid "Import Files"
2788
- msgstr "Импорт файлов"
2789
-
2790
- #: ../admin/templates/csv-import.tpl.php:43
2791
- msgctxt "admin csv-import"
2792
- msgid "CSV File"
2793
- msgstr "Файл CSV"
2794
-
2795
- #: ../admin/templates/csv-import.tpl.php:55 ../admin/templates/csv-import.tpl.php:
2796
- #: 86
2797
- msgctxt "admin csv-import"
2798
- msgid "... or <a>select a file uploaded to the imports folder</a>"
2799
- msgstr "... или <a>выберите файл, который уже загружен в директорию импорта</a>"
2800
-
2801
- #: ../admin/templates/csv-import.tpl.php:65 ../admin/templates/csv-import.tpl.php:
2802
- #: 96
2803
- msgctxt "admin csv-import"
2804
- msgid "(Upload new file)"
2805
- msgstr "(Загрузить новый файл)"
2806
-
2807
- #: ../admin/templates/csv-import.tpl.php:74
2808
- msgctxt "admin csv-import"
2809
- msgid "ZIP file containing images"
2810
- msgstr "Архив ZIP, содержащий изображения"
2811
-
2812
- #: ../admin/templates/csv-import.tpl.php:105
2813
- msgctxt "admin csv-import"
2814
- msgid "CSV File Settings"
2815
- msgstr "Настройки файла CSV"
2816
-
2817
- #: ../admin/templates/csv-import.tpl.php:109
2818
- msgctxt "admin csv-import"
2819
- msgid "Column Separator"
2820
- msgstr "Разделитель колонок"
2821
-
2822
- #: ../admin/templates/csv-import.tpl.php:120
2823
- msgctxt "admin csv-import"
2824
- msgid "Image Separator"
2825
- msgstr "Разделитель изображений"
2826
-
2827
- #: ../admin/templates/csv-import.tpl.php:131
2828
- msgctxt "admin csv-import"
2829
- msgid "Category Separator"
2830
- msgstr "Разделитель рубрик"
2831
-
2832
- #: ../admin/templates/csv-import.tpl.php:142
2833
- msgctxt "admin csv-import"
2834
- msgid "Import settings"
2835
- msgstr "Настройки импорта"
2836
-
2837
- #: ../admin/templates/csv-import.tpl.php:146
2838
- msgctxt "admin csv-import"
2839
- msgid "Post status of imported listings"
2840
- msgstr "Статус записей по окончании импорта"
2841
-
2842
- #: ../admin/templates/csv-import.tpl.php:158
2843
- msgctxt "admin csv-import"
2844
- msgid "Missing categories handling"
2845
- msgstr "Обработка новых рубрик"
2846
-
2847
- #: ../admin/templates/csv-import.tpl.php:163
2848
- msgctxt "admin csv-import"
2849
- msgid "Auto-create categories"
2850
- msgstr "Автоматически создавать"
2851
-
2852
- #: ../admin/templates/csv-import.tpl.php:166
2853
- msgctxt "admin csv-import"
2854
- msgid "Generate errors when a category is not found"
2855
- msgstr "Выдавать ошибку \"рубрика не найдена\""
2856
-
2857
- #: ../admin/templates/csv-import.tpl.php:171
2858
- msgctxt "admin csv-import"
2859
- msgid "Keep existing listing images?"
2860
- msgstr "Существующие изображения?"
2861
-
2862
- #: ../admin/templates/csv-import.tpl.php:176
2863
- msgctxt "admin csv-import"
2864
- msgid "Keep existing images."
2865
- msgstr "Соранить."
2866
-
2867
- #: ../admin/templates/csv-import.tpl.php:177
2868
- msgctxt "admin csv-import"
2869
- msgid "Appends new images while keeping current ones."
2870
- msgstr "Будет добавлять новые изображения и не удалит существующие."
2871
-
2872
- #: ../admin/templates/csv-import.tpl.php:182
2873
- msgctxt "admin csv-import"
2874
- msgid "Assign listings to a user?"
2875
- msgstr "Автор?"
2876
-
2877
- #: ../admin/templates/csv-import.tpl.php:188
2878
- msgctxt "admin csv-import"
2879
- msgid "Assign listings to a user."
2880
- msgstr "Назначить новые записи существующему пользователю."
2881
-
2882
- #: ../admin/templates/csv-import.tpl.php:193
2883
- msgctxt "admin csv-import"
2884
- msgid "Default listing user"
2885
- msgstr "Пользователь по-умолчанию для новых записей:"
2886
-
2887
- #: ../admin/templates/csv-import.tpl.php:198
2888
- msgctxt "admin csv-import"
2889
- msgid "Use spreadsheet information only."
2890
- msgstr "Используя информацию из CSV файла"
2891
-
2892
- #: ../admin/templates/csv-import.tpl.php:204
2893
- msgctxt "admin csv-import"
2894
- msgid "This user will be used if the username column is not present in the CSV file."
2895
- msgstr ""
2896
- "<br />Выберите зарегистрированного пользователя сайта, чтобы ему были "
2897
- "назначены новые записи, не имеющие имени пользователя в файле CSV."
2898
-
2899
- #: ../admin/templates/csv-import.tpl.php:209
2900
- msgctxt "admin csv-import"
2901
- msgid "Disable e-mail notifications during import?"
2902
- msgstr "Оповещения по электронной почте:"
2903
-
2904
- #: ../admin/templates/csv-import.tpl.php:214
2905
- msgctxt "admin csv-import"
2906
- msgid "Disable e-mail notifications."
2907
- msgstr "Запретить оповещения пока производится импорт новых записей."
2908
-
2909
- #: ../admin/templates/csv-import.tpl.php:220
2910
- msgctxt "admin csv-import"
2911
- msgid "Test Import"
2912
- msgstr "Тест импорта"
2913
-
2914
- #: ../admin/templates/csv-import.tpl.php:221
2915
- msgctxt "admin csv-import"
2916
- msgid "Import Listings"
2917
- msgstr "Импортировать записи"
2918
-
2919
- #: ../admin/templates/csv-import.tpl.php:229
2920
- #, php-format
2921
- msgctxt "admin csv-import"
2922
- msgid ""
2923
- "The following are the valid header names to be used in the CSV file. "
2924
- "Multivalued fields (such as category or tags) can appear multiple times in "
2925
- "the file. Click <a href=\"%s\">\"See an example CSV import file\"</a> to see how "
2926
- "an import file should look like."
2927
- msgstr ""
2928
- "Далее приведены правильные имена заголовков, которые будут использованы в "
2929
- "файле CSV. поля со множественными значениями, такие как рубрики или метки, "
2930
- "могут оказаться в файле в нескольких местах. Посмотрите на \"<a "
2931
- "href=\"%s\">Образец файла CSV для импорта</a>\" чтобы узнать, как такой файл "
2932
- "должен выглядеть."
2933
-
2934
- #: ../admin/templates/csv-import.tpl.php:236
2935
- msgctxt "admin csv-import"
2936
- msgid "Header name/label"
2937
- msgstr "Имя или метка заголовка"
2938
-
2939
- #: ../admin/templates/csv-import.tpl.php:237
2940
- msgctxt "admin csv-import"
2941
- msgid "Field"
2942
- msgstr "Поле"
2943
-
2944
- #: ../admin/templates/csv-import.tpl.php:238
2945
- msgctxt "admin csv-import"
2946
- msgid "Type"
2947
- msgstr "Тип"
2948
-
2949
- #: ../admin/templates/csv-import.tpl.php:239
2950
- msgctxt "admin csv-import"
2951
- msgid "Required?"
2952
- msgstr "Обязательно?"
2953
-
2954
- #: ../admin/templates/csv-import.tpl.php:240
2955
- msgctxt "admin csv-import"
2956
- msgid "Multivalued?"
2957
- msgstr "Множественные значения?"
2958
-
2959
- #: ../admin/templates/csv-import.tpl.php:262
2960
- msgctxt "admin csv-import"
2961
- msgid "Semicolon separated list of listing images (from the ZIP file)"
2962
- msgstr "Знак \"точка с запятой\" разделяет список изображений (в файле ZIP)"
2963
-
2964
- #: ../admin/templates/csv-import.tpl.php:269
2965
- msgctxt "admin csv-import"
2966
- msgid "Listing author's username"
2967
- msgstr "Учётная запись автора записи"
2968
-
2969
- #: ../admin/templates/csv-import.tpl.php:276
2970
- msgctxt "admin csv-import"
2971
- msgid "Internal Sequence ID used to allow listing updates from external sources."
2972
- msgstr ""
2973
- "Был использован внутренний последовательный номер, чтобы позволить загрузку "
2974
- "данных из справочника с другого сайта."
2975
-
2976
- #: ../admin/templates/csv-import.tpl.php:283
2977
- msgctxt "admin csv-import"
2978
- msgid ""
2979
- "Date of listing expiration formatted as YYYY-MM-DD. Use this column when "
2980
- "adding or updating listings from external sources."
2981
- msgstr ""
2982
- "Дата окончания срока действия отформатирована как ГГГГ-ММ-ДД. Используйте "
2983
- "эту колонку при добавлении или изменении записей."
2984
-
2985
- #: ../admin/templates/themes-install.tpl.php:8
2986
- #, php-format
2987
- msgctxt "themes"
2988
- msgid "This is a theme or skin from %s and is NOT a regular WordPress theme."
2989
- msgstr "Это тема, созданная %s, а НЕ обычная тема WordPress."
2990
-
2991
- #: ../admin/templates/themes-install.tpl.php:21
2992
- msgctxt "themes"
2993
- msgid "BD Theme archive (ZIP file)"
2994
- msgstr "Архив темы справочника (файл ZIP)"
2995
-
2996
- #: ../admin/templates/themes-install.tpl.php:30
2997
- msgctxt "themes"
2998
- msgid "Begin Upload"
2999
- msgstr "Начать загрузку"
3000
-
3001
- #: ../admin/templates/listing-metabox-transactions.tpl.php:3
3002
- msgctxt "admin infometabox"
3003
- msgid "Initial Payment"
3004
- msgstr "Начальный платёж"
3005
-
3006
- #: ../admin/templates/listing-metabox-transactions.tpl.php:4
3007
- msgctxt "admin infometabox"
3008
- msgid "Listing Edit"
3009
- msgstr "Изменить"
3010
-
3011
- #: ../admin/templates/listing-metabox-transactions.tpl.php:5
3012
- msgctxt "admin infometabox"
3013
- msgid "Listing Renewal"
3014
- msgstr "Продление"
3015
-
3016
- #: ../admin/templates/listing-metabox-transactions.tpl.php:6
3017
- msgctxt "admin infometabox"
3018
- msgid "Upgrade to sticky"
3019
- msgstr "Поднять статус до Особой"
3020
-
3021
- #: ../admin/templates/listing-metabox-transactions.tpl.php:10
3022
- msgctxt "admin"
3023
- msgid "Payments History"
3024
- msgstr "История платежа"
3025
-
3026
- #: ../admin/templates/listing-metabox-transactions.tpl.php:12
3027
- msgctxt "admin listing metabox"
3028
- msgid "Click a payment to see the details or approve/reject the transaction."
3029
- msgstr ""
3030
- "Кликните на платёж, чтобы увидеть его статус, или чтобы утвердить или "
3031
- "отменить транзакцию."
3032
-
3033
- #: ../admin/templates/listing-metabox-transactions.tpl.php:16
3034
- msgctxt "listing metabox"
3035
- msgid "There are no transactions associated to this listing."
3036
- msgstr "Для этой записи не было платежей."
3037
-
3038
- #: ../admin/templates/listing-metabox-categories.tpl.php:22
3039
- msgctxt "admin infometabox"
3040
- msgid "No categories on this listing. Please add one to associate fees."
3041
- msgstr ""
3042
- "У этой записи нет рубрик. Пожалуйста выберите рубрику, чтобы определить цену "
3043
- "публикации."
3044
-
3045
- #: ../admin/templates/listing-metabox-categories.tpl.php:29
3046
- msgctxt "admin infometabox"
3047
- msgid "(recurring)"
3048
- msgstr "(периодически)"
3049
-
3050
- #: ../admin/templates/listing-metabox-categories.tpl.php:34
3051
- msgctxt "admin infometabox"
3052
- msgid "Expired"
3053
- msgstr "Истекло"
3054
-
3055
- #: ../admin/templates/listing-metabox-categories.tpl.php:37
3056
- msgctxt "admin infometabox"
3057
- msgid "Payment Pending"
3058
- msgstr "Ожидается платёж"
3059
-
3060
- #: ../admin/templates/listing-metabox-categories.tpl.php:41
3061
- msgctxt "admin infometabox"
3062
- msgid "OK"
3063
- msgstr "ДА"
3064
-
3065
- #: ../admin/templates/listing-metabox-categories.tpl.php:49
3066
- msgctxt "admin infometabox"
3067
- msgid "Fee"
3068
- msgstr "Тариф"
3069
-
3070
- #: ../admin/templates/listing-metabox-categories.tpl.php:54
3071
- msgctxt "admin infometabox"
3072
- msgid "# Images"
3073
- msgstr "Картинок"
3074
-
3075
- #: ../admin/templates/listing-metabox-categories.tpl.php:62
3076
- msgctxt "admin infometabox"
3077
- msgid "Expired on"
3078
- msgstr "Истекло"
3079
-
3080
- #: ../admin/templates/listing-metabox-categories.tpl.php:64
3081
- msgctxt "admin infometabox"
3082
- msgid "Expires on"
3083
- msgstr "Истекает"
3084
-
3085
- #: ../admin/templates/listing-metabox-categories.tpl.php:72
3086
- msgctxt "admin infometabox"
3087
- msgid "Click to manually change expiration date."
3088
- msgstr "Изменить дату истечения вручную."
3089
-
3090
- #: ../admin/templates/listing-metabox-categories.tpl.php:75
3091
- msgctxt "admin infometabox"
3092
- msgid "Never expires"
3093
- msgstr "Никогда не истечёт"
3094
-
3095
- #: ../admin/templates/listing-metabox-categories.tpl.php:75
3096
- msgctxt "admin infometabox"
3097
- msgid "Edit"
3098
- msgstr "Изменить"
3099
-
3100
- #: ../admin/templates/listing-metabox-categories.tpl.php:87
3101
- msgctxt "admin infometabox"
3102
- msgid "See payment info"
3103
- msgstr "Показать информацию о платеже"
3104
-
3105
- #: ../admin/templates/listing-metabox-categories.tpl.php:92
3106
- msgctxt "admin infometabox"
3107
- msgid "Renewal URL (copy & paste)"
3108
- msgstr "Ссылка для продления (для копирования)"
3109
-
3110
- #: ../admin/templates/listing-metabox-categories.tpl.php:92
3111
- msgctxt "admin infometabox"
3112
- msgid "Show renewal link"
3113
- msgstr "Показать ссылку на продление"
3114
-
3115
- #: ../admin/templates/listing-metabox-categories.tpl.php:99
3116
- msgctxt "admin infometabox"
3117
- msgid "Send renewal e-mail to user"
3118
- msgstr "Послать уведомление о продлении автору по электронной почте"
3119
-
3120
- #: ../admin/templates/listing-metabox-categories.tpl.php:107
3121
- msgctxt "admin infometabox"
3122
- msgid "Renew manually..."
3123
- msgstr "Продлить вручную..."
3124
-
3125
- #: ../admin/templates/listing-metabox-categories.tpl.php:107
3126
- msgctxt "admin infometabox"
3127
- msgid "Change fee..."
3128
- msgstr "Изменить цену..."
3129
-
3130
- #: ../admin/templates/listing-metabox-categories.tpl.php:115
3131
- msgctxt "admin infometabox"
3132
- msgid "Remove category"
3133
- msgstr "Удалить рубрику"
3134
-
3135
- #: ../admin/templates/csv-import-progress.tpl.php:6
3136
- #, php-format
3137
- msgctxt "admin csv-import"
3138
- msgid "A fatal error occurred during the import. The reason given was: \"%s\"."
3139
- msgstr "При импорте произошла фатальная ошибка. Причина: %s."
3140
-
3141
- #: ../admin/templates/csv-import-progress.tpl.php:10
3142
- msgctxt "admin csv-import"
3143
- msgid ""
3144
- "A fatal error occurred during the import. If connection wasn't lost during "
3145
- "the import, please make sure that you have enough free disk space and memory "
3146
- "available to PHP. Check your error logs for details."
3147
- msgstr ""
3148
- "При импорте произошла фатальная ошибка. Если соединение с сайтом не "
3149
- "прерывалось, то убедитесь, что на сервере имеется достаточно свободного "
3150
- "места на диске и в памяти. Для дополнительной информации проверьте протокол "
3151
- "ошибок сервера."
3152
-
3153
- #: ../admin/templates/csv-import-progress.tpl.php:14
3154
- msgctxt "admin csv-import"
3155
- msgid "Last imported line from file:"
3156
- msgstr "Номер последней импортированной строки файла:"
3157
-
3158
- #: ../admin/templates/csv-import-progress.tpl.php:18 ../admin/templates/csv-
3159
- #: import-progress.tpl.php:25
3160
- msgctxt "admin csv-import"
3161
- msgid " Return to CSV Import"
3162
- msgstr " Вернуться к \"Импорту из CSV\""
3163
-
3164
- #: ../admin/templates/csv-import-progress.tpl.php:23
3165
- msgctxt "admin csv-import"
3166
- msgid "Import Canceled"
3167
- msgstr "Импорт прерван"
3168
-
3169
- #: ../admin/templates/csv-import-progress.tpl.php:24
3170
- msgctxt "admin csv-import"
3171
- msgid "The import has been canceled."
3172
- msgstr "Процесс импорта был прерван."
3173
-
3174
- #: ../admin/templates/csv-import-progress.tpl.php:31
3175
- msgid "Import Progress"
3176
- msgstr "Прогресс загрузки"
3177
-
3178
- #: ../admin/templates/csv-import-progress.tpl.php:34
3179
- msgctxt "admin csv-import"
3180
- msgid "Files"
3181
- msgstr "Файлы"
3182
-
3183
- #: ../admin/templates/csv-import-progress.tpl.php:37
3184
- msgctxt "admin csv-import"
3185
- msgid "Rows in file"
3186
- msgstr "Строки файла"
3187
-
3188
- #: ../admin/templates/csv-import-progress.tpl.php:40
3189
- msgctxt "admin csv-import"
3190
- msgid "Progress"
3191
- msgstr "Процесс"
3192
-
3193
- #: ../admin/templates/csv-import-progress.tpl.php:44
3194
- msgctxt "admin csv-import"
3195
- msgid "Import has not started. Click \"Start Import\" to begin."
3196
- msgstr "Импорт ещё не начался. Нажмите кнопку \"Начать импорт\" для старта."
3197
-
3198
- #: ../admin/templates/csv-import-progress.tpl.php:45
3199
- msgctxt "admin csv-import"
3200
- msgid "Importing CSV file..."
3201
- msgstr "Импорт файла CSV..."
3202
-
3203
- #: ../admin/templates/csv-import-progress.tpl.php:51
3204
- msgctxt "admin csv-import"
3205
- msgid "Start Import"
3206
- msgstr "Начать импорт"
3207
-
3208
- #: ../admin/templates/csv-import-progress.tpl.php:52
3209
- msgctxt "admin csv-import"
3210
- msgid "Cancel Import"
3211
- msgstr "Прервать импорт"
3212
-
3213
- #: ../admin/templates/csv-import-progress.tpl.php:59
3214
- msgctxt "admin csv-import"
3215
- msgid "Import finished"
3216
- msgstr "Импорт завершился"
3217
-
3218
- #: ../admin/templates/csv-import-progress.tpl.php:62
3219
- msgctxt "admin csv-import"
3220
- msgid "Import was completed successfully."
3221
- msgstr "Импорт успешно завершился."
3222
-
3223
- #: ../admin/templates/csv-import-progress.tpl.php:66
3224
- msgctxt "admin csv-import"
3225
- msgid "Import was completed but some rows were rejected."
3226
- msgstr "Импорт завершился, но некоторые строки были отброшены."
3227
-
3228
- #: ../admin/templates/csv-import-progress.tpl.php:69
3229
- msgctxt "admin csv-import"
3230
- msgid "Import Summary"
3231
- msgstr "Отчёт о импорте"
3232
-
3233
- #: ../admin/templates/csv-import-progress.tpl.php:71
3234
- msgctxt "admin csv-import"
3235
- msgid "Rows in file:"
3236
- msgstr "Строк в файле:"
3237
-
3238
- #: ../admin/templates/csv-import-progress.tpl.php:74
3239
- msgctxt "admin csv-import"
3240
- msgid "Imported rows:"
3241
- msgstr "Импортировано строк:"
3242
-
3243
- #: ../admin/templates/csv-import-progress.tpl.php:77
3244
- msgctxt "admin csv-import"
3245
- msgid "Rejected rows:"
3246
- msgstr "Отброшено строк:"
3247
-
3248
- #: ../admin/templates/csv-import-progress.tpl.php:82
3249
- msgctxt "admin csv-import"
3250
- msgid "Import Warnings"
3251
- msgstr "Предупреждения при импорте"
3252
-
3253
- #: ../admin/templates/csv-import-progress.tpl.php:85
3254
- msgctxt "admin csv-import"
3255
- msgid "Line #"
3256
- msgstr "Строка №"
3257
-
3258
- #: ../admin/templates/csv-import-progress.tpl.php:86
3259
- msgctxt "admin csv-import"
3260
- msgid "Line"
3261
- msgstr "Строка"
3262
-
3263
- #: ../admin/templates/csv-import-progress.tpl.php:87
3264
- msgctxt "admin csv-import"
3265
- msgid "Warning"
3266
- msgstr "Предупреждение"
3267
-
3268
- #: ../admin/templates/listing-change-fee.tpl.php:3
3269
- msgctxt "admin listing fee"
3270
- msgid "Listing Fee Selection"
3271
- msgstr "Выбрать тариф для записи"
3272
-
3273
- #: ../admin/templates/listing-change-fee.tpl.php:5
3274
- #, php-format
3275
- msgctxt "admin listing fee"
3276
- msgid "Select a fee plan to be used for this listing in the \"%s\" category."
3277
- msgstr "Выберите тарифный план для использования с этой записью в рубрике \"%s\"."
3278
-
3279
- #: ../admin/templates/listing-change-fee.tpl.php:11
3280
- msgctxt "admin listing fee"
3281
- msgid "Current"
3282
- msgstr "Текущий"
3283
-
3284
- #: ../admin/templates/listing-change-fee.tpl.php:14
3285
- msgctxt "admin listing fee"
3286
- msgid "Use this fee"
3287
- msgstr "Использовать этот тариф"
3288
-
3289
- #: ../admin/templates/listing-change-fee.tpl.php:21
3290
- #, php-format
3291
- msgctxt "admin infometabox"
3292
- msgid "%d image"
3293
- msgid_plural "%d images"
3294
- msgstr[0] "%d изображение"
3295
- msgstr[1] "%d изображения(й)"
3296
-
3297
- #: ../admin/templates/listing-change-fee.tpl.php:23
3298
- msgctxt "admin infometabox"
3299
- msgid "Listing never expires"
3300
- msgstr "Запись никогда не истекает"
3301
-
3302
- #: ../admin/templates/listing-change-fee.tpl.php:25
3303
- #, php-format
3304
- msgctxt "admin infometabox"
3305
- msgid "%d day"
3306
- msgid_plural "%d days"
3307
- msgstr[0] "%d день"
3308
- msgstr[1] "%d дней(я)"
3309
-
3310
- #: ../admin/templates/form-fields-addoredit.tpl.php:1
3311
- msgctxt "form-fields admin"
3312
- msgid "Add Form Field"
3313
- msgstr "Добавить поле формы"
3314
-
3315
- #: ../admin/templates/form-fields-addoredit.tpl.php:13
3316
- msgctxt "form-fields admin"
3317
- msgid "Field Association"
3318
- msgstr "Ассоциация"
3319
-
3320
- #: ../admin/templates/form-fields-addoredit.tpl.php:35
3321
- msgctxt "form-fields admin"
3322
- msgid "Field Type"
3323
- msgstr "Тип"
3324
-
3325
- #: ../admin/templates/form-fields-addoredit.tpl.php:59
3326
- msgctxt "form-fields admin"
3327
- msgid "Field Label"
3328
- msgstr "Метка"
3329
-
3330
- #: ../admin/templates/form-fields-addoredit.tpl.php:69
3331
- msgctxt "form-fields admin"
3332
- msgid "Field description"
3333
- msgstr "Описание"
3334
-
3335
- #: ../admin/templates/form-fields-addoredit.tpl.php:86
3336
- msgctxt "form-fields admin"
3337
- msgid "Field-specific settings"
3338
- msgstr "Настройки, связанные с полем"
3339
-
3340
- #: ../admin/templates/form-fields-addoredit.tpl.php:95
3341
- msgctxt "form-fields admin"
3342
- msgid "Field validation options"
3343
- msgstr "Параметры проверки поля"
3344
-
3345
- #: ../admin/templates/form-fields-addoredit.tpl.php:99
3346
- msgctxt "form-fields admin"
3347
- msgid "Field Validator"
3348
- msgstr "Требования поля"
3349
-
3350
- #: ../admin/templates/form-fields-addoredit.tpl.php:103
3351
- msgctxt "form-fields admin"
3352
- msgid "No validation"
3353
- msgstr "Без проверки"
3354
-
3355
- #: ../admin/templates/form-fields-addoredit.tpl.php:115
3356
- msgctxt "form-fields admin"
3357
- msgid "Is field required?"
3358
- msgstr "Обязательное поле?"
3359
-
3360
- #: ../admin/templates/form-fields-addoredit.tpl.php:121
3361
- msgctxt "form-fields admin"
3362
- msgid "This field is required."
3363
- msgstr "Включите чтобы сделать это поле обязательным для заполнения."
3364
-
3365
- #: ../admin/templates/form-fields-addoredit.tpl.php:129
3366
- msgctxt "form-fields admin"
3367
- msgid "Field display options"
3368
- msgstr "Параметры отображения поля"
3369
-
3370
- #: ../admin/templates/form-fields-addoredit.tpl.php:133
3371
- msgctxt "form-fields admin"
3372
- msgid "Show this value in excerpt view?"
3373
- msgstr "Показать это поле в составе цитаты?"
3374
-
3375
- #: ../admin/templates/form-fields-addoredit.tpl.php:139
3376
- msgctxt "form-fields admin"
3377
- msgid "Display this value in post excerpt view."
3378
- msgstr "Включите чтобы показать это поле в составе цитаты."
3379
-
3380
- #: ../admin/templates/form-fields-addoredit.tpl.php:145
3381
- msgctxt "form-fields admin"
3382
- msgid "Show this value in listing view?"
3383
- msgstr "Показать это поле в полном виде?"
3384
-
3385
- #: ../admin/templates/form-fields-addoredit.tpl.php:151
3386
- msgctxt "form-fields admin"
3387
- msgid "Display this value in the listing view."
3388
- msgstr ""
3389
- "Включите чтобы показывать значение этого поля на странице полной информации "
3390
- "о записи."
3391
-
3392
- #: ../admin/templates/form-fields-addoredit.tpl.php:157
3393
- msgctxt "form-fields admin"
3394
- msgid "Include this field in the search form?"
3395
- msgstr "Включить в форму поиска?"
3396
-
3397
- #: ../admin/templates/form-fields-addoredit.tpl.php:163
3398
- msgctxt "form-fields admin"
3399
- msgid "Include this field in the search form."
3400
- msgstr "Включите чтобы можно было использовать это поле в форме поиска."
3401
-
3402
- #: ../admin/templates/form-fields-addoredit.tpl.php:169
3403
- msgctxt "form-fields admin"
3404
- msgid "Hide this field's label?"
3405
- msgstr "Скрыть метку этого поля?"
3406
-
3407
- #: ../admin/templates/form-fields-addoredit.tpl.php:175
3408
- msgctxt "form-fields admin"
3409
- msgid "Hide this field's label when displaying it."
3410
- msgstr "Включите чтобы при отображении этого поля скрыть его метку."
3411
-
3412
- #: ../admin/templates/form-fields-addoredit.tpl.php:182
3413
- msgctxt "form-fields admin"
3414
- msgid "Update Field"
3415
- msgstr "Сохранить поле"
3416
-
3417
- #: ../admin/templates/form-fields-addoredit.tpl.php:184
3418
- msgctxt "form-fields admin"
3419
- msgid "Add Field"
3420
- msgstr "Добавить поле"
3421
-
3422
- #: ../admin/templates/listing-metabox-feesummary.tpl.php:1
3423
- msgctxt "admin infometabox"
3424
- msgid "Categories for this listing"
3425
- msgstr "Рубрики этой записи"
3426
-
3427
- #: ../admin/templates/fees-confirm-delete.tpl.php:2
3428
- msgctxt "fees admin"
3429
- msgid "Delete Listing Fee"
3430
- msgstr "Удалить тариф записи"
3431
-
3432
- #: ../admin/templates/fees-confirm-delete.tpl.php:6
3433
- #, php-format
3434
- msgctxt "fees admin"
3435
- msgid "Are you sure you want to delete the \"%s\" fee?"
3436
- msgstr "Вы уверены, что хотите удалить тариф \"%s\"?"
3437
-
3438
- #: ../admin/templates/fees-confirm-delete.tpl.php:12
3439
- msgctxt "fee admin"
3440
- msgid "Delete Fee"
3441
- msgstr "Удалить тариф"
3442
-
3443
- #: ../core/views.php:32
3444
- msgid ""
3445
- "You need to create a page with the [businessdirectory] shortcode for the "
3446
- "Business Directory plugin to work correctly."
3447
- msgstr ""
3448
- "Для корректной работы плагина Справочник Услуг Вам необходимо создать "
3449
- "страницу, содержащую шорткод [businessdirectory]."
3450
-
3451
- #: ../core/views.php:34
3452
- msgid "The directory is temporarily disabled."
3453
- msgstr "Справочник временно отключен."
3454
-
3455
- #: ../core/views.php:203
3456
- msgctxt "preview"
3457
- msgid "This is just a preview. The listing has not been published yet."
3458
- msgstr "Это просто предварительный просмотр. Запись ещё не была опубликована."
3459
-
3460
- #: ../core/views.php:355
3461
- #, php-format
3462
- msgctxt "templates"
3463
- msgid "Listings tagged: %s"
3464
- msgstr "Записи помечены: %s"
3465
-
3466
- #: ../core/views.php:472
3467
- msgctxt "templates"
3468
- msgid ""
3469
- "There are no categories assigned to the business directory yet. You need to "
3470
- "assign some categories to the business directory. Only admins can see this "
3471
- "message. Regular users are seeing a message that there are currently no "
3472
- "listings in the directory. Listings cannot be added until you assign "
3473
- "categories to the business directory."
3474
- msgstr ""
3475
- "В справочнике пока нет ни одной рубрики. Вам необходимо задать несколько "
3476
- "рубрик Вашему справочнику.<br /><br />Это сообщение показывается только "
3477
- "администрации. Обычные пользователи видят другое сообщение: в справочнике "
3478
- "нет ни одной записи. Записи не могут быть добавлены пока не будут созданы "
3479
- "рубрики."
3480
-
3481
- #: ../core/views.php:474
3482
- msgctxt "templates"
3483
- msgid "There are currently no listings in the directory."
3484
- msgstr "В справочнике нет ни одного изображения."
3485
-
3486
- #: ../core/views.php:492
3487
- msgctxt "templates"
3488
- msgid ""
3489
- "You have \"Hide Empty Categories\" on and some categories that don't have "
3490
- "listings in them. That means they won't show up on the front end of your "
3491
- "site. If you didn't want that, click <a>here</a> to change the setting."
3492
- msgstr ""
3493
- "Параметр \"Скрыть пустые рубрики\" включён, и в справочнике есть рубрики, в "
3494
- "которых нет ни одной записи. Это означает, что такие рубрики не будут "
3495
- "показаны посетителям сайта. Если Вы хотите изменить такое поведение, "
3496
- "перейдите в <a>Настройки</a> и отключите этот параметр."
3497
-
3498
- #: ../core/installer.php:38
3499
- msgctxt "default category name"
3500
- msgid "General"
3501
- msgstr "Основное"
3502
-
3503
- #: ../core/installer.php:469
3504
- msgctxt "installer"
3505
- msgid ""
3506
- "<b>Business Directory Plugin - Regions Module</b> was disabled because it is "
3507
- "incompatible with the current version of Business Directory. Please update "
3508
- "the Regions module."
3509
- msgstr ""
3510
- "<b>Плаги Справочник Услуш - Модуль Регионов</b> был отключен по причине его "
3511
- "несовместимости с текущей версией плагина. Пожалуйста обновите модуль "
3512
- "регионов."
3513
-
3514
- #: ../core/installer.php:535
3515
- #, php-format
3516
- msgctxt "installer"
3517
- msgid "Cleaning up listing fees information... %d/%d"
3518
- msgstr "Очистка информации об оплате записи... %d / %d"
3519
-
3520
- #: ../core/installer.php:585
3521
- #, php-format
3522
- msgctxt "installer"
3523
- msgid "Migrating previous transactions to new Payments API... %d/%d"
3524
- msgstr "Перевод предыдущих транзакций на новый программный интерфейс... %d / %d"
3525
-
3526
- #: ../core/installer.php:614
3527
- msgctxt "installer"
3528
- msgid "Initial listing payment (BD < 3.4)"
3529
- msgstr "Начальный платёж за запись (плагин версии ниже 3.4)"
3530
-
3531
- #: ../core/installer.php:625
3532
- msgctxt "installer"
3533
- msgid "Listing edit payment (BD < 3.4)"
3534
- msgstr "Изменить платёж записи (плагин версии ниже 3.4)"
3535
-
3536
- #: ../core/installer.php:646
3537
- #, php-format
3538
- msgctxt "installer"
3539
- msgid "Renewal fee \"%s\" for category \"%s\""
3540
- msgstr "Плата \"%s\" за обновление рубрики \"%s\""
3541
-
3542
- #: ../core/installer.php:665
3543
- msgctxt "installer"
3544
- msgid "Listing upgrade to featured"
3545
- msgstr "Сделать запись Особой"
3546
-
3547
- #: ../core/installer.php:907
3548
- msgid "Business Directory - Manual Upgrade Required"
3549
- msgstr "Справочник Услуг - требуется произвести ручное обновление"
3550
-
3551
- #: ../core/installer.php:909
3552
- msgid ""
3553
- "Business Directory features are currently disabled because the plugin needs "
3554
- "to perform a manual upgrade before continuing."
3555
- msgstr ""
3556
- "Функции Справочника Услуг на настоящий момент отключены, потому что "
3557
- "необходимо произвести ручное обновление плагина."
3558
-
3559
- #: ../core/installer.php:911
3560
- msgid "Perform Manual Upgrade"
3561
- msgstr "Запустить ручное обновление"
3562
-
3563
- #: ../core/installer.php:927 ../core/installer.php:928 ../core/installer.php:939
3564
- msgid "Business Directory - Manual Upgrade"
3565
- msgstr "Справочник Услуг - ручное обновление"
3566
-
3567
- #: ../core/installer.php:943
3568
- msgid ""
3569
- "Business Directory features are currently disabled because the plugin needs "
3570
- "to perform a manual upgrade before it can be used."
3571
- msgstr ""
3572
- "Функции Справочника Услуг на настоящий момент отключены, потому что "
3573
- "необходимо произвести ручное обновление плагина."
3574
-
3575
- #: ../core/installer.php:945
3576
- msgid "Click \"Start Upgrade\" and wait until the process finishes."
3577
- msgstr "Нажмите \"Начать обновление\" и подождите пока процесс завершится."
3578
-
3579
- #: ../core/installer.php:948
3580
- msgctxt "manual-upgrade"
3581
- msgid "Start Upgrade"
3582
- msgstr "Начать обновление"
3583
-
3584
- #: ../core/installer.php:950
3585
- msgctxt "manual-upgrade"
3586
- msgid "Pause Upgrade"
3587
- msgstr "Поставить на паузу"
3588
-
3589
- #: ../core/installer.php:956
3590
- msgctxt "manual-upgrade"
3591
- msgid ""
3592
- "The upgrade was sucessfully performed. Business Directory Plugin is now "
3593
- "available."
3594
- msgstr ""
3595
- "Обновление успешно завершилось. Все функции плагина Справочник Услуг сейчас "
3596
- "доступны."
3597
-
3598
- #: ../core/installer.php:959
3599
- msgctxt "manual-upgrade"
3600
- msgid "Go to \"Directory Admin\""
3601
- msgstr "Перейти в \"Управление Справочником\""
3602
-
3603
- #: ../core/class-settings.php:24
3604
- msgctxt "admin settings"
3605
- msgid "General"
3606
- msgstr "Основное"
3607
-
3608
- #: ../core/class-settings.php:26
3609
- msgctxt "admin settings"
3610
- msgid "Data Collection"
3611
- msgstr "Сбор данных"
3612
-
3613
- #: ../core/class-settings.php:29
3614
- msgctxt "admin settings"
3615
- msgid ""
3616
- "Allow BD to anonymously collect information about your installed plugins, "
3617
- "themes and WP version?"
3618
- msgstr ""
3619
- "Разрешить плагину собирать анонимную информацию об установленных у Вас "
3620
- "плагинах, темах и версии WordPress?"
3621
-
3622
- #: ../core/class-settings.php:34
3623
- msgctxt "admin settings"
3624
- msgid "<a>Learn more</a> about what BD does and does NOT track."
3625
- msgstr ""
3626
- "<br /><a>Узнайте подробнее</a> о том, какую информацию плагин собирает, а "
3627
- "какую - не трогает."
3628
-
3629
- #: ../core/class-settings.php:37
3630
- msgctxt "admin settings"
3631
- msgid "Permalink Settings"
3632
- msgstr "Постоянные ссылки"
3633
-
3634
- #: ../core/class-settings.php:38
3635
- msgctxt "admin settings"
3636
- msgid "Directory Listings Slug"
3637
- msgstr "Ярлык раздела справочник"
3638
-
3639
- #: ../core/class-settings.php:39
3640
- msgctxt "admin settings"
3641
- msgid "Categories Slug"
3642
- msgstr "Ярлык рубрик справочника"
3643
-
3644
- #: ../core/class-settings.php:39
3645
- msgctxt "admin settings"
3646
- msgid "The slug can't be in use by another term. Avoid \"category\", for instance."
3647
- msgstr ""
3648
- "<br />ВНИМАНИЕ: этот ярлык должен отличаться от любых других ярлыков "
3649
- "WordPress. Например, нельзя использовать ярлык \"category\"."
3650
-
3651
- #: ../core/class-settings.php:40
3652
- msgctxt "admin settings"
3653
- msgid "Tags Slug"
3654
- msgstr "Ярлык меток справочника"
3655
-
3656
- #: ../core/class-settings.php:40
3657
- msgctxt "admin settings"
3658
- msgid "The slug can't be in use by another term. Avoid \"tag\", for instance."
3659
- msgstr ""
3660
- "<br />ВНИМАНИЕ: этот ярлык должен отличаться от любых других ярлыков "
3661
- "WordPress. Например, нельзя использовать ярлык \"tag\"."
3662
-
3663
- #: ../core/class-settings.php:43
3664
- msgctxt "admin settings"
3665
- msgid "Remove listing ID from directory URLs?"
3666
- msgstr "Удалить номер записи из адреса URL?"
3667
-
3668
- #: ../core/class-settings.php:46
3669
- msgctxt "admin settings"
3670
- msgid ""
3671
- "Prior to 3.5.1, we included the ID in the listing URL, like \"/business-"
3672
- "directory/1809/listing-title\". Check this setting to remove the ID for "
3673
- "better SEO."
3674
- msgstr ""
3675
- "<br />До версии 3.5.1 плагина мы включали номер записи в адрес URL, например "
3676
- "\"/business-directory/1809/listing-title\". Для лучшей поисковой оптимизации "
3677
- "установите этот параметр."
3678
-
3679
- #: ../core/class-settings.php:50
3680
- msgctxt "admin settings"
3681
- msgid "reCAPTCHA Settings"
3682
- msgstr "Настройки reCAPTCHA"
3683
-
3684
- #: ../core/class-settings.php:53
3685
- msgctxt "admin settings"
3686
- msgid "Need API keys for reCAPTCHA? Get them <a>here</a>."
3687
- msgstr ""
3688
- "Если Вам требуется получить новые ключи API для reCAPTCHA, то откройте "
3689
- "<a>эту страницу</a>."
3690
-
3691
- #: ../core/class-settings.php:55
3692
- msgctxt "admin settings"
3693
- msgid "Use reCAPTCHA for contact forms"
3694
- msgstr "Использовать reCAPTCHA в контактных формах?"
3695
-
3696
- #: ../core/class-settings.php:56
3697
- msgctxt "admin settings"
3698
- msgid "Use reCAPTCHA for listing submits"
3699
- msgstr "Использовать reCAPTCHA при создании записи?"
3700
-
3701
- #: ../core/class-settings.php:59
3702
- msgctxt "admin settings"
3703
- msgid "Use reCAPTCHA for listing comments?"
3704
- msgstr "Использовать reCAPTCHA в форме комментариев?"
3705
-
3706
- #: ../core/class-settings.php:62
3707
- msgctxt "admin settings"
3708
- msgid "reCAPTCHA Public Key"
3709
- msgstr "Публичный ключ reCAPTCHA"
3710
-
3711
- #: ../core/class-settings.php:63
3712
- msgctxt "admin settings"
3713
- msgid "reCAPTCHA Private Key"
3714
- msgstr "Секретный ключ reCAPTCHA"
3715
-
3716
- #: ../core/class-settings.php:67 ../core/class-settings.php:76
3717
- msgctxt "admin settings"
3718
- msgid "Terms and Conditions"
3719
- msgstr "Условия и положения"
3720
-
3721
- #: ../core/class-settings.php:70
3722
- msgctxt "admin settings"
3723
- msgid "Display and require user agreement to Terms and Conditions"
3724
- msgstr "Показать текст \"Условия и Положения\" и потребовать от пользователя принять их"
3725
-
3726
- #: ../core/class-settings.php:79
3727
- msgctxt "admin settings"
3728
- msgid ""
3729
- "Enter text or a URL starting with http. If you use a URL, the Terms and "
3730
- "Conditions text will be replaced by a link to the appropiate page."
3731
- msgstr ""
3732
- "Введите текст Ваших Условий и Положений. Альтернативно можно указать адрес "
3733
- "URL страницы, содержащей текст. Адрес должен обязательно начинаться с \"http\"."
3734
- " Если Вы укажете адрес, то пользователи увидят ссылку вместо собственно "
3735
- "текста."
3736
-
3737
- #: ../core/class-settings.php:83
3738
- msgctxt "admin settings"
3739
- msgid "Directory Display Options"
3740
- msgstr "Настройки отображения справочника"
3741
-
3742
- #: ../core/class-settings.php:84
3743
- msgctxt "admin settings"
3744
- msgid "Show the \"Submit listing\" button."
3745
- msgstr "Показать кнопку \"Создать запись\""
3746
-
3747
- #: ../core/class-settings.php:85
3748
- msgctxt "admin settings"
3749
- msgid "Show \"Search listings\"."
3750
- msgstr "Показать кнопку \"Поиск в справочнике\""
3751
-
3752
- #: ../core/class-settings.php:86
3753
- msgctxt "admin settings"
3754
- msgid "Show the \"View Listings\" button."
3755
- msgstr "Показать кнопку \"Все записи\""
3756
-
3757
- #: ../core/class-settings.php:87
3758
- msgctxt "admin settings"
3759
- msgid "Show the \"Directory\" button."
3760
- msgstr "Показать кнопку \"Все рубрики\""
3761
-
3762
- #: ../core/class-settings.php:92
3763
- msgctxt "admin settings"
3764
- msgid "Directory Search"
3765
- msgstr "Поиск в справочнике"
3766
-
3767
- #: ../core/class-settings.php:100
3768
- msgctxt "admin settings"
3769
- msgid "Search form display"
3770
- msgstr "Показать форму поиска"
3771
-
3772
- #: ../core/class-settings.php:104
3773
- msgctxt "admin settings"
3774
- msgid "Above results"
3775
- msgstr "Над результатами поиска"
3776
-
3777
- #: ../core/class-settings.php:105
3778
- msgctxt "admin settings"
3779
- msgid "Below results"
3780
- msgstr "Под результатами поиска"
3781
-
3782
- #: ../core/class-settings.php:106
3783
- msgctxt "admin settings"
3784
- msgid "Don't show with results"
3785
- msgstr "Не показывать на странице результатов поиска"
3786
-
3787
- #: ../core/class-settings.php:111
3788
- msgctxt "admin settings"
3789
- msgid ""
3790
- "You have selected a textarea field to be included in quick searches. "
3791
- "Searches involving those fields are very expensive and could result in "
3792
- "timeouts and/or general slowness."
3793
- msgstr ""
3794
- "Вы указали, что в результатах поиска должно было включено поле ввода "
3795
- "многострочного текста. Поиск по полям данных такого типа занимает много "
3796
- "процессорного времени и приводит к замедлению работы сайта."
3797
-
3798
- #: ../core/class-settings.php:113
3799
- msgctxt "admin settings"
3800
- msgid ""
3801
- "Use Ctrl-Click to include multiple fields in the search. Choosing too many "
3802
- "fields for inclusion into Quick Search can result in very slow search "
3803
- "performance."
3804
- msgstr ""
3805
- "<br clear=\"all\" />Используйте комбинацию клавиши CTRL и клика мыши чтобы "
3806
- "выбрать несколько полей для поиска. Помните, что выбирая слишком много полей "
3807
- "для Быстрого Поиска Вы можете привести к замедлению сайта."
3808
-
3809
- #: ../core/class-settings.php:116
3810
- msgctxt "admin settings"
3811
- msgid "Quick search fields"
3812
- msgstr "Поля для Быстрого Поиска"
3813
-
3814
- #: ../core/class-settings.php:124
3815
- msgctxt "admin settings"
3816
- msgid "Enable high performance searches?"
3817
- msgstr "Включить поиск с высокой скоростью?"
3818
-
3819
- #: ../core/class-settings.php:127
3820
- msgctxt "admin settings"
3821
- msgid ""
3822
- "Enabling this makes BD sacrifice result quality to improve speed. This is "
3823
- "helpful if you're on shared hosting plans, where database performance is an "
3824
- "issue."
3825
- msgstr ""
3826
- "<br />Этот параметр заставит плагин пожертвовать качеством поиска в пользу "
3827
- "скорости работы. Это бывает полезным для сайтов, находящемся на общем "
3828
- "хостинге, где производительность базы данных может представлять проблему."
3829
-
3830
- #: ../core/class-settings.php:132
3831
- msgctxt "admin settings"
3832
- msgid "Miscellaneous Settings"
3833
- msgstr "Дополнительные настройки"
3834
-
3835
- #: ../core/class-settings.php:136
3836
- msgctxt "admin settings"
3837
- msgid ""
3838
- "Check this if you are having trouble with BD, particularly when importing or "
3839
- "exporting CSV files."
3840
- msgstr ""
3841
- "<br />Включите этот параметр, если у плагина возникают проблемы, особенно "
3842
- "при импорте и экспорте CSV файлов. "
3843
-
3844
- #: ../core/class-settings.php:139
3845
- msgctxt "admin settings"
3846
- msgid ""
3847
- "If this compatibility mode doesn't solve your issue, you may be experiencing "
3848
- "a more serious conflict. <a>Here is an article</a> about how to test for "
3849
- "theme and plugin conflicts with Business Directory."
3850
- msgstr ""
3851
- "Если этот режим совместимости не решает проблем, то, возможно, на Вашем "
3852
- "сайте есть более серьёзный конфликт плагинов. Мы можете открыть <a>эту "
3853
- "страницу</a> для информации о том, как провести тест совместимости темы и "
3854
- "плагина с нашим плагином Справочник Услуг."
3855
-
3856
- #: ../core/class-settings.php:142
3857
- msgctxt "admin settings"
3858
- msgid "Enable AJAX compatibility mode?"
3859
- msgstr "Включить режим совместимости AJAX?"
3860
-
3861
- #: ../core/class-settings.php:150 ../core/class-settings.php:651
3862
- msgctxt "admin settings"
3863
- msgid "Listings"
3864
- msgstr "Записи"
3865
-
3866
- #: ../core/class-settings.php:151 ../core/class-settings.php:298 ../core/class-
3867
- #: settings.php:584
3868
- msgctxt "admin settings"
3869
- msgid "General Settings"
3870
- msgstr "Основные настройки"
3871
-
3872
- #: ../core/class-settings.php:153
3873
- msgctxt "admin settings"
3874
- msgid "Listings per page"
3875
- msgstr "Количество записей на одной странице"
3876
-
3877
- #: ../core/class-settings.php:154
3878
- msgctxt "admin settings"
3879
- msgid "Number of listings to show per page. Use a value of \"0\" to show all listings."
3880
- msgstr ""
3881
- "<br />Количество записей для показа на одной странице. Укажите 0, чтобы "
3882
- "показать все записи."
3883
-
3884
- #: ../core/class-settings.php:156
3885
- msgctxt "admin settings"
3886
- msgid "Listing duration for no-fee sites (in days)"
3887
- msgstr "Длительность действия (в днях) записи в бесплатном режиме"
3888
-
3889
- #: ../core/class-settings.php:157
3890
- msgctxt "admin settings"
3891
- msgid ""
3892
- "Use a value of \"0\" to keep a listing alive indefinitely or enter a number "
3893
- "less than 10 years (3650 days)."
3894
- msgstr ""
3895
- "<br />Укажите 0 чтобы держать записи в базе неограниченное время, или "
3896
- "укажите количество дней, составляющее менее 10 лет (менее 3650 дней)."
3897
-
3898
- #: ../core/class-settings.php:163
3899
- msgctxt "admin settings"
3900
- msgid "Include listing contact form on listing pages?"
3901
- msgstr "Показать контактную форму на странице записей?"
3902
-
3903
- #: ../core/class-settings.php:166
3904
- msgctxt "admin settings"
3905
- msgid ""
3906
- "Allows visitors to contact listing authors privately. Authors will receive "
3907
- "the messages via email."
3908
- msgstr ""
3909
- "<br />Разрешить посетителям связываться с авторами записей. Авторы получат "
3910
- "сообщение через электронную почту."
3911
-
3912
- #: ../core/class-settings.php:169
3913
- msgctxt "admin settings"
3914
- msgid "Require login for using the contact form?"
3915
- msgstr ""
3916
- "Разрешить пользоваться контактной формой только зарегистрированным "
3917
- "пользователям?"
3918
-
3919
- #: ../core/class-settings.php:175
3920
- msgctxt "admin settings"
3921
- msgid "Maximum number of contact form submits per day"
3922
- msgstr "Максимально количество сообщений, передаваемых в день через контактную форму"
3923
-
3924
- #: ../core/class-settings.php:178
3925
- msgctxt "admin settings"
3926
- msgid ""
3927
- "Use this to prevent spamming of listing owners. 0 means unlimited submits "
3928
- "per day."
3929
- msgstr ""
3930
- "<br />Используйте этот параметр для контроля спама, отправляемого авторам "
3931
- "записей. Укажите 0 для снятия ограничения."
3932
-
3933
- #: ../core/class-settings.php:184
3934
- msgctxt "admin settings"
3935
- msgid "Include comment form on listing pages?"
3936
- msgstr "Показать форму комментариев на странице записей?"
3937
-
3938
- #: ../core/class-settings.php:187
3939
- msgctxt "admin settings"
3940
- msgid ""
3941
- "Allow visitors to discuss listings using the standard WordPress comment form."
3942
- " Comments are public."
3943
- msgstr ""
3944
- "<br />Разрешить посетителям обсуждать записи используя стандартную форму "
3945
- "комментариев WordPress. Все комментарии видны всем посетителям."
3946
-
3947
- #: ../core/class-settings.php:188
3948
- msgctxt "admin settings"
3949
- msgid "Show listings under categories on main page?"
3950
- msgstr "Показывать записи на первой странице под списком рубрик?"
3951
-
3952
- #: ../core/class-settings.php:189
3953
- msgctxt "admin settings"
3954
- msgid "Status of listings upon uninstalling plugin"
3955
- msgstr "Статус записей после удаления этого плагина"
3956
-
3957
- #: ../core/class-settings.php:191
3958
- msgctxt "admin settings"
3959
- msgid "Status of deleted listings"
3960
- msgstr "Статус удалённых записей"
3961
-
3962
- #: ../core/class-settings.php:194
3963
- msgctxt "admin settings"
3964
- msgid "Listing Renewal"
3965
- msgstr "Продление срока действия"
3966
-
3967
- #: ../core/class-settings.php:195
3968
- msgctxt "admin settings"
3969
- msgid "Turn on listing renewal option?"
3970
- msgstr "Включить режим автоматического продления срока действия записей?"
3971
-
3972
- #: ../core/class-settings.php:198
3973
- msgctxt "admin settings"
3974
- msgid "Allow recurring renewal payments?"
3975
- msgstr "Включить режим периодических платежей за продление?"
3976
-
3977
- #: ../core/class-settings.php:201
3978
- msgctxt "admin settings"
3979
- msgid ""
3980
- "Allow users to opt in for automatic renewal of their listings. The fee is "
3981
- "charged at the time the listing expires without user intervention."
3982
- msgstr ""
3983
- "<br />Разрешить пользователям пользоваться автоматическим продлением срока "
3984
- "действия их записей. Деньги будут сниматься со счёта пользователя "
3985
- "автоматически по окончании срока действия записи."
3986
-
3987
- #: ../core/class-settings.php:205
3988
- msgctxt "admin settings"
3989
- msgid "Use recurring payments as the default payment method?"
3990
- msgstr "Использовать периодические платежи как средство платежей по-умолчанию?"
3991
-
3992
- #: ../core/class-settings.php:208
3993
- msgctxt "admin settings"
3994
- msgid ""
3995
- "Enable automatic renewal without having users opt in during the submit "
3996
- "process."
3997
- msgstr "<br />Разрешить автоматическое продление во время создания записи."
3998
-
3999
- #: ../core/class-settings.php:213
4000
- msgctxt "admin settings"
4001
- msgid "Listing renewal e-mail threshold (in days)"
4002
- msgstr "Отправлять предупреждение об обновлении по электронной почте заранее (в днях)"
4003
-
4004
- #: ../core/class-settings.php:216
4005
- msgctxt "admin settings"
4006
- msgid "Configure how many days before listing expiration is the renewal e-mail sent."
4007
- msgstr ""
4008
- "<br />Укажите за сколько дней до истечения срока действия записи потребуется "
4009
- "отправить предупреждение по электронной почте."
4010
-
4011
- #: ../core/class-settings.php:220
4012
- msgctxt "admin settings"
4013
- msgid "Send expiration notices including a cancel links to auto-renewed listings?"
4014
- msgstr "Включить ссылку для удаления записи в уведомляющее об обновлении письмо?"
4015
-
4016
- #: ../core/class-settings.php:227
4017
- msgctxt "admin settings"
4018
- msgid "Remind listing owners of expired listings (past due)?"
4019
- msgstr "Напоминать авторам о записях с истекшим сроком действия?"
4020
-
4021
- #: ../core/class-settings.php:232
4022
- msgctxt "admin settings"
4023
- msgid "Listing renewal reminder e-mail threshold (in days)"
4024
- msgstr "Срок (в днях), по истечении которого послать это напоминание"
4025
-
4026
- #: ../core/class-settings.php:235
4027
- msgctxt "admin settings"
4028
- msgid ""
4029
- "Configure how many days after the expiration of a listing an e-mail reminder "
4030
- "should be sent to the owner."
4031
- msgstr ""
4032
- "<br />Укажите через сколько дней после истечения срока действия записи нужно "
4033
- "послать автору напоминание по электронной почте"
4034
-
4035
- #: ../core/class-settings.php:238
4036
- msgctxt "admin settings"
4037
- msgid "Post/Category Settings"
4038
- msgstr "Настройки записей и рубрик"
4039
-
4040
- #: ../core/class-settings.php:239
4041
- msgctxt "admin settings"
4042
- msgid "Default new post status"
4043
- msgstr "Статус по-умолчанию новых записей"
4044
-
4045
- #: ../core/class-settings.php:242
4046
- msgctxt "admin settings"
4047
- msgid "Edit post status"
4048
- msgstr "Статус записей после изменения"
4049
-
4050
- #: ../core/class-settings.php:244
4051
- msgctxt "admin settings"
4052
- msgid "Order categories list by"
4053
- msgstr "Сортировка списка рубрик"
4054
-
4055
- #: ../core/class-settings.php:246
4056
- msgctxt "admin settings"
4057
- msgid "Name"
4058
- msgstr "По имени"
4059
-
4060
- #: ../core/class-settings.php:247
4061
- msgctxt "admin settings"
4062
- msgid "Slug"
4063
- msgstr "По ярлыку"
4064
-
4065
- #: ../core/class-settings.php:248
4066
- msgctxt "admin settings"
4067
- msgid "Listing Count"
4068
- msgstr "По количеству записей"
4069
-
4070
- #: ../core/class-settings.php:250
4071
- msgctxt "admin settings"
4072
- msgid "Sort order for categories"
4073
- msgstr "Порядок сортировки рубрик"
4074
-
4075
- #: ../core/class-settings.php:251 ../core/class-settings.php:269
4076
- msgctxt "admin settings"
4077
- msgid "Ascending"
4078
- msgstr "По возрастанию"
4079
-
4080
- #: ../core/class-settings.php:251 ../core/class-settings.php:269
4081
- msgctxt "admin settings"
4082
- msgid "Descending"
4083
- msgstr "По убыванию"
4084
-
4085
- #: ../core/class-settings.php:252
4086
- msgctxt "admin settings"
4087
- msgid "Show category post count?"
4088
- msgstr "Показать количества записей для каждой рубрики?"
4089
-
4090
- #: ../core/class-settings.php:253
4091
- msgctxt "admin settings"
4092
- msgid "Hide empty categories?"
4093
- msgstr "Скрыть пустые рубрики?"
4094
-
4095
- #: ../core/class-settings.php:254
4096
- msgctxt "admin settings"
4097
- msgid "Show only parent categories in category list?"
4098
- msgstr "Показать только рубрики верхнего уровня в списке рубрик?"
4099
-
4100
- #: ../core/class-settings.php:256
4101
- msgctxt "admin settings"
4102
- msgid "Listings Sorting"
4103
- msgstr "Сортировка записей"
4104
-
4105
- #: ../core/class-settings.php:257
4106
- msgctxt "admin settings"
4107
- msgid "Order directory listings by"
4108
- msgstr "Сортировка списка записей"
4109
-
4110
- #: ../core/class-settings.php:259
4111
- msgctxt "admin settings"
4112
- msgid "Title"
4113
- msgstr "По названию"
4114
-
4115
- #: ../core/class-settings.php:260
4116
- msgctxt "admin settings"
4117
- msgid "Author"
4118
- msgstr "По автору"
4119
-
4120
- #: ../core/class-settings.php:261
4121
- msgctxt "admin settings"
4122
- msgid "Date posted"
4123
- msgstr "По дате публикации"
4124
-
4125
- #: ../core/class-settings.php:262
4126
- msgctxt "admin settings"
4127
- msgid "Date last modified"
4128
- msgstr "По дате изменения"
4129
-
4130
- #: ../core/class-settings.php:263
4131
- msgctxt "admin settings"
4132
- msgid "Random"
4133
- msgstr "В случайном порядке"
4134
-
4135
- #: ../core/class-settings.php:264
4136
- msgctxt "admin settings"
4137
- msgid "Paid first then free. Inside each group by date."
4138
- msgstr "По дате, но сначала идут платные"
4139
-
4140
- #: ../core/class-settings.php:265
4141
- msgctxt "admin settings"
4142
- msgid "Paid first then free. Inside each group by title."
4143
- msgstr "По названию, но сначала идут платные"
4144
-
4145
- #: ../core/class-settings.php:267
4146
- msgctxt "admin settings"
4147
- msgid "Sort directory listings by"
4148
- msgstr "Порядок сортировки записей"
4149
-
4150
- #: ../core/class-settings.php:268
4151
- msgctxt "admin settings"
4152
- msgid "Ascending for ascending order A-Z, Descending for descending order Z-A"
4153
- msgstr "<br />В алфавитном порядке"
4154
-
4155
- #: ../core/class-settings.php:273
4156
- msgctxt "admin settings"
4157
- msgid "Enable sort bar?"
4158
- msgstr "Показать строку сортировки?"
4159
-
4160
- #: ../core/class-settings.php:278
4161
- msgctxt "admin settings"
4162
- msgid "Sortbar Fields"
4163
- msgstr "Поля в строке сортировки"
4164
-
4165
- #: ../core/class-settings.php:287
4166
- msgctxt "admin settings"
4167
- msgid "Featured (Sticky) listing settings"
4168
- msgstr "Настройки специальных (прикрепленных) записей"
4169
-
4170
- #: ../core/class-settings.php:288
4171
- msgctxt "admin settings"
4172
- msgid "Offer sticky listings?"
4173
- msgstr "Предлагать делать запись специальной?"
4174
-
4175
- #: ../core/class-settings.php:289
4176
- msgctxt "admin settings"
4177
- msgid "Offer upgrades during submit process?"
4178
- msgstr "Предлагать поднять статус во время создания записи?"
4179
-
4180
- #: ../core/class-settings.php:290
4181
- msgctxt "admin settings"
4182
- msgid "Sticky listing price"
4183
- msgstr "Цена за специальный статус"
4184
-
4185
- #: ../core/class-settings.php:291
4186
- msgctxt "admin settings"
4187
- msgid "Sticky listing page description text"
4188
- msgstr "Описание специального статуса"
4189
-
4190
- #: ../core/class-settings.php:292
4191
- msgctxt "admin settings"
4192
- msgid ""
4193
- "You can upgrade your listing to featured status. Featured listings will "
4194
- "always appear on top of regular listings."
4195
- msgstr ""
4196
- "Вы можете поднять профиль своего бизнеса до VIP статуса, с некоторыми "
4197
- "привилегированными условиями размещения. Например, VIP-бизнес будет показан "
4198
- "впереди всех остальных."
4199
-
4200
- #: ../core/class-settings.php:297
4201
- msgctxt "admin settings"
4202
- msgid "E-Mail"
4203
- msgstr "Электронная почта"
4204
-
4205
- #: ../core/class-settings.php:301
4206
- msgctxt "admin settings"
4207
- msgid "Display email address fields publicly?"
4208
- msgstr "Показывать адреса электронной почты на сайте?"
4209
-
4210
- #: ../core/class-settings.php:304
4211
- msgctxt "admin settings"
4212
- msgid ""
4213
- "Shows the email address of the listing owner to all web users. NOT "
4214
- "RECOMMENDED as this increases spam to the address and allows spam bots to "
4215
- "harvest it for future use."
4216
- msgstr ""
4217
- "<br />Показывает адреса электронной почты авторов записей. <br />ЭТО НЕ "
4218
- "РЕКОМЕНДУЕТСЯ ДЕЛАТЬ, так как может вызвать поток спама в почтовые ящики "
4219
- "авторов."
4220
-
4221
- #: ../core/class-settings.php:307
4222
- msgctxt "admin settings"
4223
- msgid "How to determine the listing's email address?"
4224
- msgstr "Нахождение адреса электронной почты автора"
4225
-
4226
- #: ../core/class-settings.php:310
4227
- msgctxt "admin settings"
4228
- msgid ""
4229
- "This affects emails sent to listing owners via contact forms or when their "
4230
- "listings expire."
4231
- msgstr ""
4232
- "<br />Это влияет на то, какой адрес получателя будет использоваться при "
4233
- "отправке сообщений, полученных через контактную форму, или оповещений об "
4234
- "окончании срока действия."
4235
-
4236
- #: ../core/class-settings.php:317
4237
- msgctxt "admin settings"
4238
- msgid "E-Mail Notifications"
4239
- msgstr "Оповещения по электронной почте"
4240
-
4241
- #: ../core/class-settings.php:320
4242
- msgctxt "admin settings"
4243
- msgid "Notify admin via e-mail when..."
4244
- msgstr "Оповещать администрацию сайта по электронной почте в случаях:"
4245
-
4246
- #: ../core/class-settings.php:324
4247
- msgctxt "admin settings"
4248
- msgid "A new listing is submitted."
4249
- msgstr "Добавлена новая запись"
4250
-
4251
- #: ../core/class-settings.php:325
4252
- msgctxt "admin settings"
4253
- msgid "A listing is edited."
4254
- msgstr "Запись была изменена"
4255
-
4256
- #: ../core/class-settings.php:326
4257
- msgctxt "admin settings"
4258
- msgid "A listing expires."
4259
- msgstr "Срок действия записи истёк"
4260
-
4261
- #: ../core/class-settings.php:327
4262
- msgctxt "admin settings"
4263
- msgid "A contact message is sent to a listing's owner."
4264
- msgstr "Автору было отправлено сообщение через контактную форму"
4265
-
4266
- #: ../core/class-settings.php:333
4267
- msgctxt "admin settings"
4268
- msgid "CC this e-mail address too"
4269
- msgstr "Отправить копию (CC) на этот электронный адрес:"
4270
-
4271
- #: ../core/class-settings.php:339
4272
- msgctxt "admin settings"
4273
- msgid "Notify users via e-mail when..."
4274
- msgstr "Оповещать авторов в случаях:"
4275
-
4276
- #: ../core/class-settings.php:342
4277
- msgctxt "admin settings"
4278
- msgid "You can modify the text template used for most of these e-mails below."
4279
- msgstr "Ниже Вы можете настроить текст шаблонов писем-оповещений."
4280
-
4281
- #: ../core/class-settings.php:343
4282
- msgctxt "admin settings"
4283
- msgid "Their listing is submitted."
4284
- msgstr "Их запись попала в базу данных"
4285
-
4286
- #: ../core/class-settings.php:344
4287
- msgctxt "admin settings"
4288
- msgid "Their listing is approved/published."
4289
- msgstr "Их запись была утверждена или опубликована"
4290
-
4291
- #: ../core/class-settings.php:353
4292
- #, php-format
4293
- msgctxt "contact email"
4294
- msgid "You have received a reply from your listing at %s."
4295
- msgstr "Вы получили сообщение для вашего бизнеса через Справочник Услуг (%s)."
4296
-
4297
- #: ../core/class-settings.php:354
4298
- #, php-format
4299
- msgctxt "contact email"
4300
- msgid "Name: %s"
4301
- msgstr "Имя: %s"
4302
-
4303
- #: ../core/class-settings.php:355
4304
- #, php-format
4305
- msgctxt "contact email"
4306
- msgid "E-Mail: %s"
4307
- msgstr "Адрес: %s"
4308
-
4309
- #: ../core/class-settings.php:356
4310
- msgctxt "contact email"
4311
- msgid "Message:"
4312
- msgstr "Сообщение:"
4313
-
4314
- #: ../core/class-settings.php:358
4315
- #, php-format
4316
- msgctxt "contact email"
4317
- msgid "Time: %s"
4318
- msgstr "Время: %s"
4319
-
4320
- #: ../core/class-settings.php:360
4321
- msgctxt "admin settings"
4322
- msgid "E-Mail Templates"
4323
- msgstr "Шаблоны электронных писем"
4324
-
4325
- #: ../core/class-settings.php:363
4326
- msgctxt "admin settings"
4327
- msgid "Email confirmation message"
4328
- msgstr "Подтверждение получения записи"
4329
-
4330
- #: ../core/class-settings.php:367
4331
- msgctxt "admin settings"
4332
- msgid "Sent after a listing has been submitted."
4333
- msgstr "Посылается как только новая запись была помещена в базу данных."
4334
-
4335
- #: ../core/class-settings.php:368 ../core/class-settings.php:376 ../core/class-
4336
- #: settings.php:417
4337
- msgctxt "admin settings"
4338
- msgid "Listing's title"
4339
- msgstr "Название записи"
4340
-
4341
- #: ../core/class-settings.php:371
4342
- msgctxt "admin settings"
4343
- msgid "Listing published message"
4344
- msgstr "Подтверждение опубликования записи"
4345
-
4346
- #: ../core/class-settings.php:374
4347
- msgctxt "admin settings"
4348
- msgid ""
4349
- "Your listing \"[listing]\" is now available at [listing-url] and can be viewed "
4350
- "by the public."
4351
- msgstr ""
4352
- "Ваша запись \"[listing]\" была опубликована по адресу [listing-url], и стала "
4353
- "доступна всем посетителям сайта."
4354
-
4355
- #: ../core/class-settings.php:375
4356
- msgctxt "admin settings"
4357
- msgid "Sent when the listing has been published or approved by an admin."
4358
- msgstr ""
4359
- "Посылается как только новая запись была утверждена администрацией и/или "
4360
- "опубликована."
4361
-
4362
- #: ../core/class-settings.php:377
4363
- msgctxt "admin settings"
4364
- msgid "Listing's URL"
4365
- msgstr "Адрес URL записи"
4366
-
4367
- #: ../core/class-settings.php:381
4368
- msgctxt "admin settings"
4369
- msgid "Listing Contact Message"
4370
- msgstr "Получено сообщение через контактную форму"
4371
-
4372
- #: ../core/class-settings.php:385
4373
- msgctxt "admin settings"
4374
- msgid ""
4375
- "Sent to listing owners when someone uses the contact form on their listing "
4376
- "pages."
4377
- msgstr ""
4378
- "Посылается когда кто-нибудь использовал контактную форму для отправки "
4379
- "сообщения автору записи."
4380
-
4381
- #: ../core/class-settings.php:395
4382
- msgctxt "admin settings"
4383
- msgid "Payment related"
4384
- msgstr "Оповещения, связанные с оплатой"
4385
-
4386
- #: ../core/class-settings.php:412
4387
- msgctxt "admin settings"
4388
- msgid "Payment abandoned reminder message"
4389
- msgstr "Напоминание о пропущенном платеже"
4390
-
4391
- #: ../core/class-settings.php:416
4392
- msgctxt "admin settings"
4393
- msgid "Sent some time after a pending payment is abandoned by users."
4394
- msgstr ""
4395
- "Отправляется через некоторое время после того, как оплата за продление "
4396
- "записи не была получена от автора."
4397
-
4398
- #: ../core/class-settings.php:418
4399
- msgctxt "admin settings"
4400
- msgid "Checkout URL link"
4401
- msgstr "Адрес URL страницы оплаты"
4402
-
4403
- #: ../core/class-settings.php:424
4404
- msgctxt "admin settings"
4405
- msgid "Renewal Reminders"
4406
- msgstr "Оповещения об окончании срока действия"
4407
-
4408
- #: ../core/class-settings.php:427
4409
- msgctxt "admin settings"
4410
- msgid ""
4411
- "This section refers only to the text of the renewal/expiration notices. You "
4412
- "can also <a>configure when the e-mails are sent</a>."
4413
- msgstr ""
4414
- "Этот раздел содержит только тексты оповещений, отправляемых по электронной "
4415
- "почте. В <a>другом разделе</a> Вы можете настроить когда именно отправлять "
4416
- "какие оповещения."
4417
-
4418
- #: ../core/class-settings.php:431
4419
- msgctxt "admin settings"
4420
- msgid "Pending expiration e-mail message"
4421
- msgstr "Предупреждение об окончании срока действия"
4422
-
4423
- #: ../core/class-settings.php:435
4424
- msgctxt "settings"
4425
- msgid ""
4426
- "Sent some time before the listing expires. Applies to non-recurring renewals "
4427
- "only."
4428
- msgstr ""
4429
- "Посылается за несколько дней до истечения срока действия записи. Применяется "
4430
- "только к записям, не имеющим автоматического продления."
4431
-
4432
- #: ../core/class-settings.php:436 ../core/class-settings.php:449 ../core/class-
4433
- #: settings.php:462 ../core/class-settings.php:475 ../core/class-settings.php:488
4434
- msgctxt "settings"
4435
- msgid "Listing's name (with link)"
4436
- msgstr "Имя записи (вместе со ссылкой)"
4437
-
4438
- #: ../core/class-settings.php:437 ../core/class-settings.php:450 ../core/class-
4439
- #: settings.php:463 ../core/class-settings.php:476 ../core/class-settings.php:489
4440
- msgctxt "settings"
4441
- msgid "Author's name"
4442
- msgstr "Имя автора"
4443
-
4444
- #: ../core/class-settings.php:438 ../core/class-settings.php:451 ../core/class-
4445
- #: settings.php:490
4446
- msgctxt "settings"
4447
- msgid "Expiration date"
4448
- msgstr "Дата окончания срока действия"
4449
-
4450
- #: ../core/class-settings.php:439
4451
- msgctxt "settings"
4452
- msgid "Category that is going to expire"
4453
- msgstr "Рубрика, истекающая вскорости"
4454
-
4455
- #: ../core/class-settings.php:440 ../core/class-settings.php:453 ../core/class-
4456
- #: settings.php:492
4457
- msgctxt "settings"
4458
- msgid "Link to renewal page"
4459
- msgstr "Ссылка URL на страницу продления"
4460
-
4461
- #: ../core/class-settings.php:441 ../core/class-settings.php:454 ../core/class-
4462
- #: settings.php:466 ../core/class-settings.php:479 ../core/class-settings.php:493
4463
- msgctxt "settings"
4464
- msgid "Link to your site"
4465
- msgstr "Ссылка URL на Ваг сайт"
4466
-
4467
- #: ../core/class-settings.php:444
4468
- msgctxt "admin settings"
4469
- msgid "Listing Renewal e-mail message"
4470
- msgstr "Напоминание об истечении"
4471
-
4472
- #: ../core/class-settings.php:448
4473
- msgctxt "settings"
4474
- msgid ""
4475
- "Sent at the time of listing expiration. Applies to non-recurring renewals "
4476
- "only."
4477
- msgstr ""
4478
- "Посылается как только запись истекла. Применимо только к записям, не имеющим "
4479
- "автоматического продления."
4480
-
4481
- #: ../core/class-settings.php:452 ../core/class-settings.php:491
4482
- msgctxt "settings"
4483
- msgid "Category that expired"
4484
- msgstr "Истёкшая рубрика"
4485
-
4486
- #: ../core/class-settings.php:457
4487
- msgctxt "admin settings"
4488
- msgid "Listing auto-renewal reminder (recurring payments)"
4489
- msgstr "Напоминание об автоматическом обновлении"
4490
-
4491
- #: ../core/class-settings.php:461
4492
- msgctxt "settings"
4493
- msgid ""
4494
- "Sent some time before the listing is auto-renewed. Applies to recurring "
4495
- "renewals only."
4496
- msgstr ""
4497
- "Посылается за некоторое время перед автоматическим обновлением записи. "
4498
- "Применимо к записям, имеющим автоматическое продление и оплату."
4499
-
4500
- #: ../core/class-settings.php:464 ../core/class-settings.php:478
4501
- msgctxt "settings"
4502
- msgid "Renewal date"
4503
- msgstr "Дата продления"
4504
-
4505
- #: ../core/class-settings.php:465
4506
- msgctxt "settings"
4507
- msgid "Category that is going to be renewed"
4508
- msgstr "Рубрика, которая будет продлена"
4509
-
4510
- #: ../core/class-settings.php:467
4511
- msgctxt "settings"
4512
- msgid "Link to manage subscriptions"
4513
- msgstr "Ссылка URL на страницу управления подписками"
4514
-
4515
- #: ../core/class-settings.php:470
4516
- msgctxt "admin settings"
4517
- msgid "Listing Renewal e-mail message (recurring payments)"
4518
- msgstr "Оповещение об автоматическом продлении"
4519
-
4520
- #: ../core/class-settings.php:474
4521
- msgctxt "settings"
4522
- msgid "Sent after the listing is auto-renewed. Applies to recurring renewals only."
4523
- msgstr ""
4524
- "Посылается после того как запись была автоматически продлена. Применимо "
4525
- "только к записям, имеющим автоматическое продление."
4526
-
4527
- #: ../core/class-settings.php:477
4528
- msgctxt "settings"
4529
- msgid "Renewed category"
4530
- msgstr "Продлённая рубрика"
4531
-
4532
- #: ../core/class-settings.php:483
4533
- msgctxt "admin settings"
4534
- msgid "Renewal reminder e-mail message"
4535
- msgstr "Напоминание о пропущенном продлении"
4536
-
4537
- #: ../core/class-settings.php:487
4538
- msgctxt "settings"
4539
- msgid ""
4540
- "Sent some time after listing expiration and when no renewal has occurred. "
4541
- "Applies to both recurring and non-recurring renewals."
4542
- msgstr ""
4543
- "Посылается через некоторое время после истечения записи и когда продление не "
4544
- "было произведено."
4545
-
4546
- #: ../core/class-settings.php:497
4547
- msgctxt "admin settings"
4548
- msgid "Payment"
4549
- msgstr "Оплата"
4550
-
4551
- #: ../core/class-settings.php:498
4552
- msgctxt "admin settings"
4553
- msgid "Payment Settings"
4554
- msgstr "Настройки оплаты"
4555
-
4556
- #: ../core/class-settings.php:501
4557
- msgctxt "admin settings"
4558
- msgid "Turn On payments?"
4559
- msgstr "Включить поддержку платного режима?"
4560
-
4561
- #: ../core/class-settings.php:503
4562
- msgctxt "admin settings"
4563
- msgid "Put payment gateways in test mode?"
4564
- msgstr "Включить ТЕСТОВЫЙ РЕЖИМ шлюза оплаты?"
4565
-
4566
- #: ../core/class-settings.php:508
4567
- msgctxt "admin settings"
4568
- msgid "Perform checkouts on the secure (HTTPS) version of your site?"
4569
- msgstr ""
4570
- "Производить процедуру оплаты на безопасной версии (HTTPS) страницы Вашего "
4571
- "сайта?"
4572
-
4573
- #: ../core/class-settings.php:511
4574
- msgctxt "admin settings"
4575
- msgid ""
4576
- "Recommended for added security. For this to work you need to enable HTTPS on "
4577
- "your server and <a>obtain an SSL certificate</a>."
4578
- msgstr ""
4579
- "<br />Рекомендуется для усиления безопасности платежей. Перед включением "
4580
- "этого параметра Вы должны <a>купить сертификат SSL</a> и настроить Ваш сайт "
4581
- "для работы через HTTPS."
4582
-
4583
- #: ../core/class-settings.php:515
4584
- msgctxt "admin settings"
4585
- msgid "Currency Code"
4586
- msgstr "Код валюты"
4587
-
4588
- #: ../core/class-settings.php:517
4589
- msgctxt "admin settings"
4590
- msgid "Australian Dollar (AUD)"
4591
- msgstr "AUD - Австралийский доллар"
4592
-
4593
- #: ../core/class-settings.php:518
4594
- msgctxt "admin settings"
4595
- msgid "Brazilian Real (BRL)"
4596
- msgstr "BRL - Бразильский реал"
4597
-
4598
- #: ../core/class-settings.php:519
4599
- msgctxt "admin settings"
4600
- msgid "Canadian Dollar (CAD)"
4601
- msgstr "CAD - Канадский доллар"
4602
-
4603
- #: ../core/class-settings.php:520
4604
- msgctxt "admin settings"
4605
- msgid "Czech Koruna (CZK)"
4606
- msgstr "CZK - Чешская крона"
4607
-
4608
- #: ../core/class-settings.php:521
4609
- msgctxt "admin settings"
4610
- msgid "Danish Krone (DKK)"
4611
- msgstr "DKK - Датская крона"
4612
-
4613
- #: ../core/class-settings.php:522
4614
- msgctxt "admin settings"
4615
- msgid "Euro (EUR)"
4616
- msgstr "EUR - Евро"
4617
-
4618
- #: ../core/class-settings.php:523
4619
- msgctxt "admin settings"
4620
- msgid "Hong Kong Dollar (HKD)"
4621
- msgstr "HKD - Доллар Гонконга "
4622
-
4623
- #: ../core/class-settings.php:524
4624
- msgctxt "admin settings"
4625
- msgid "Hungarian Forint (HUF)"
4626
- msgstr "HUF - Венгерский форинт"
4627
-
4628
- #: ../core/class-settings.php:525
4629
- msgctxt "admin settings"
4630
- msgid "Israeli New Shequel (ILS)"
4631
- msgstr "ILS - Израильский новый шекель"
4632
-
4633
- #: ../core/class-settings.php:526
4634
- msgctxt "admin settings"
4635
- msgid "Japanese Yen (JPY)"
4636
- msgstr "JPY - Японская йена"
4637
-
4638
- #: ../core/class-settings.php:527
4639
- msgctxt "admin settings"
4640
- msgid "Malasian Ringgit (MYR)"
4641
- msgstr "MYR - Малайзийский ринггит"
4642
-
4643
- #: ../core/class-settings.php:528
4644
- msgctxt "admin settings"
4645
- msgid "Mexican Peso (MXN)"
4646
- msgstr "MXN - Мексиканское песо"
4647
-
4648
- #: ../core/class-settings.php:529
4649
- msgctxt "admin settings"
4650
- msgid "Norwegian Krone (NOK)"
4651
- msgstr "NOK - Норвежская крона"
4652
-
4653
- #: ../core/class-settings.php:530
4654
- msgctxt "admin settings"
4655
- msgid "New Zealand Dollar (NZD)"
4656
- msgstr "NZD - Новозеландский доллар"
4657
-
4658
- #: ../core/class-settings.php:531
4659
- msgctxt "admin settings"
4660
- msgid "Philippine Peso (PHP)"
4661
- msgstr "PHP - Филиппинский песо"
4662
-
4663
- #: ../core/class-settings.php:532
4664
- msgctxt "admin settings"
4665
- msgid "Polish Zloty (PLN)"
4666
- msgstr "PLN - Польский злотый"
4667
-
4668
- #: ../core/class-settings.php:533
4669
- msgctxt "admin settings"
4670
- msgid "Pound Sterling (GBP)"
4671
- msgstr "GBP - Фунт стерлингов"
4672
-
4673
- #: ../core/class-settings.php:534
4674
- msgctxt "admin settings"
4675
- msgid "Singapore Dollar (SGD)"
4676
- msgstr "SGD - Сингапурский доллар"
4677
-
4678
- #: ../core/class-settings.php:535
4679
- msgctxt "admin settings"
4680
- msgid "Swedish Krona (SEK)"
4681
- msgstr "SEK - Шведская крона"
4682
-
4683
- #: ../core/class-settings.php:536
4684
- msgctxt "admin settings"
4685
- msgid "Swiss Franc (CHF)"
4686
- msgstr "CHF - Швейцарский франк"
4687
-
4688
- #: ../core/class-settings.php:537
4689
- msgctxt "admin settings"
4690
- msgid "Taiwan Dollar (TWD)"
4691
- msgstr "TWD - Тайваньский доллар"
4692
-
4693
- #: ../core/class-settings.php:538
4694
- msgctxt "admin settings"
4695
- msgid "Thai Baht (THB)"
4696
- msgstr "THB - Тайский бат"
4697
-
4698
- #: ../core/class-settings.php:539
4699
- msgctxt "admin settings"
4700
- msgid "Turkish Lira (TRY)"
4701
- msgstr "TRY - Турецкая лира"
4702
-
4703
- #: ../core/class-settings.php:540
4704
- msgctxt "admin settings"
4705
- msgid "U.S. Dollar (USD)"
4706
- msgstr "USD - Доллар США"
4707
-
4708
- #: ../core/class-settings.php:544
4709
- msgctxt "admin settings"
4710
- msgid "Currency Symbol"
4711
- msgstr "Символ валюты"
4712
-
4713
- #: ../core/class-settings.php:549
4714
- msgctxt "admin settings"
4715
- msgid "Currency symbol display"
4716
- msgstr "Показывать символ валюты"
4717
-
4718
- #: ../core/class-settings.php:553
4719
- msgctxt "admin settings"
4720
- msgid "Show currency symbol on the left"
4721
- msgstr "Слева"
4722
-
4723
- #: ../core/class-settings.php:554
4724
- msgctxt "admin settings"
4725
- msgid "Show currency symbol on the right"
4726
- msgstr "Справа"
4727
-
4728
- #: ../core/class-settings.php:555
4729
- msgctxt "admin settings"
4730
- msgid "Do not show currency symbol"
4731
- msgstr "Не показывать"
4732
-
4733
- #: ../core/class-settings.php:557
4734
- msgctxt "admin settings"
4735
- msgid "Thank you for payment message"
4736
- msgstr "Сообщение \"спасибо за оплату\""
4737
-
4738
- #: ../core/class-settings.php:558
4739
- msgctxt "admin settings"
4740
- msgid ""
4741
- "Thank you for your payment. Your payment is being verified and your listing "
4742
- "reviewed. The verification and review process could take up to 48 hours."
4743
- msgstr ""
4744
- "Спасибо за оплату. Эта операция сейчас проходит проверку, и информация о "
4745
- "Вашем бизнесе рассматривается администрацией. Проверка и рассмотрение могут "
4746
- "занять до 48 часов."
4747
-
4748
- #: ../core/class-settings.php:563
4749
- msgctxt "admin settings"
4750
- msgid "Ask users to come back for abandoned payments?"
4751
- msgstr "Просить авторов вернуться к неоплаченным записям?"
4752
-
4753
- #: ../core/class-settings.php:566
4754
- msgctxt "admin settings"
4755
- msgid ""
4756
- "An abandoned payment is when a user attempts to place a listing and gets to "
4757
- "the end, but fails to complete their payment for the listing. This results "
4758
- "in listings that look like they failed, when the user simply didn't complete "
4759
- "the transaction. BD can remind them to come back and continue."
4760
- msgstr ""
4761
- "<br />Неоплаченная запись получается тогда, когда автор пытается создать "
4762
- "запись, но не проводит оплату за неё. В результате запись будет находится в "
4763
- "незавершённом состоянии. Плагин может напомнить автору вернуться к форме "
4764
- "записи и завершить оплату."
4765
-
4766
- #: ../core/class-settings.php:572
4767
- msgctxt "admin settings"
4768
- msgid "Listing abandonment threshold (hours)"
4769
- msgstr "Когда запись помечается как неоплаченная (в часах)"
4770
-
4771
- #: ../core/class-settings.php:577
4772
- msgctxt "admin settings"
4773
- msgid ""
4774
- "Listings with pending payments are marked as abandoned after this time. You "
4775
- "can also <a>customize the e-mail</a> users receive."
4776
- msgstr ""
4777
- "<br />Записи, для которых не была проведена оплата в течении этого времени, "
4778
- "помечаются как неоплаченные. В разделе <a>Оповещения об оплате</a> Вы можете "
4779
- "настроить текст электронного письма, отправляемого автору как напоминание."
4780
-
4781
- #: ../core/class-settings.php:583
4782
- msgctxt "admin settings"
4783
- msgid "Themes"
4784
- msgstr "Темы"
4785
-
4786
- #: ../core/class-settings.php:588
4787
- msgctxt "admin settings"
4788
- msgid "Theme button style"
4789
- msgstr "Стиль кнопки темы"
4790
-
4791
- #: ../core/class-settings.php:592
4792
- msgctxt "admin settings"
4793
- msgid "Use the BD theme style for BD buttons"
4794
- msgstr "Использовать стиль плагина для кнопок"
4795
-
4796
- #: ../core/class-settings.php:593
4797
- msgctxt "admin settings"
4798
- msgid "Use the WP theme style for BD buttons"
4799
- msgstr "Использовать стиль WordPress для кнопок"
4800
-
4801
- #: ../core/class-settings.php:599
4802
- msgctxt "admin settings"
4803
- msgid "Registration"
4804
- msgstr "Регистрация"
4805
-
4806
- #: ../core/class-settings.php:600
4807
- msgid ""
4808
- "We expect that a membership plugin supports the 'redirect_to' parameter for "
4809
- "the URLs below to work. If the plugin does not support them, these settings "
4810
- "will not function as expected. Please contact the membership plugin and ask "
4811
- "them to support the WP standard 'redirect_to' query parameter."
4812
- msgstr ""
4813
- "Мы предполагаем, что плагин для управлением членством на Вашем сайте "
4814
- "поддерживает параметр URL называемый 'redirect_to'. Если такой плагин "
4815
- "установлен на Вашем сайте, и он не совместим с этим параметром, то мы просим "
4816
- "Вас связаться с его разработчиками и попросить включить поддержку "
4817
- "'redirect_to' - стандартного параметра запроса WordPress."
4818
-
4819
- #: ../core/class-settings.php:603
4820
- msgctxt "admin settings"
4821
- msgid "Registration Settings"
4822
- msgstr "Настройки регистрации"
4823
-
4824
- #: ../core/class-settings.php:604
4825
- msgctxt "admin settings"
4826
- msgid "Require login to post listings?"
4827
- msgstr "Требовать регистрацию для авторов записей?"
4828
-
4829
- #: ../core/class-settings.php:609
4830
- msgctxt "admin settings"
4831
- msgid "Login URL"
4832
- msgstr "Cтраница входа в сайт"
4833
-
4834
- #: ../core/class-settings.php:612
4835
- msgctxt "admin settings"
4836
- msgid ""
4837
- "URL of your membership plugin's login page. Only enter this if using a "
4838
- "membership plugin or custom login page."
4839
- msgstr ""
4840
- "<br />Адрес URL <u>страницы входа</u> на Ваш сайт, с учётом плагина членства,"
4841
- " если таковой установлен. Указывайте адрес только тогда, когда Вы "
4842
- "пользуетесь плагином членства, или когда адрес страницы входа отличается от "
4843
- "стандартной для WordPress."
4844
-
4845
- #: ../core/class-settings.php:617
4846
- msgctxt "admin settings"
4847
- msgid "Registration URL"
4848
- msgstr "Страница регистрации"
4849
-
4850
- #: ../core/class-settings.php:620
4851
- msgctxt "admin settings"
4852
- msgid ""
4853
- "URL of your membership plugin's registration page. Only enter this if using "
4854
- "a membership plugin or custom registration page."
4855
- msgstr ""
4856
- "<br />Адрес URL <u>страницы регистрации</u> на Вашем сайте, с учётом плагина "
4857
- "членства, если таковой установлен. Указывайте адрес только тогда, когда Вы "
4858
- "пользуетесь плагином членства, или когда адрес страницы регистрации "
4859
- "отличается от стандартной для WordPress."
4860
-
4861
- #: ../core/class-settings.php:624
4862
- msgctxt "admin settings"
4863
- msgid "Image"
4864
- msgstr "Изображение"
4865
-
4866
- #: ../core/class-settings.php:625
4867
- msgctxt "admin settings"
4868
- msgid ""
4869
- "Any changes to these settings will affect new listings only. Existing "
4870
- "listings will not be affected. If you wish to change existing listings, you "
4871
- "will need to re-upload the image(s) on that listing after changing things "
4872
- "here."
4873
- msgstr ""
4874
- "<br />Любые изменения в следующих параметрах будут применяться только к "
4875
- "новым записям. Существующие записи не изменятся.<br /><br />Если Вы хотите "
4876
- "изменить такие параметры и для существующих записей, то Вам придётся заново "
4877
- "загрузить на сайт их изображения."
4878
-
4879
- #: ../core/class-settings.php:626
4880
- msgctxt "admin settings"
4881
- msgid "Image Settings"
4882
- msgstr "Настройки изображений"
4883
-
4884
- #: ../core/class-settings.php:627
4885
- msgctxt "admin settings"
4886
- msgid "Allow images?"
4887
- msgstr "Разрешить загружать изображения?"
4888
-
4889
- #: ../core/class-settings.php:629
4890
- msgctxt "admin settings"
4891
- msgid "Min Image File Size (KB)"
4892
- msgstr "Минимальный размер файла (в Кб)"
4893
-
4894
- #: ../core/class-settings.php:630
4895
- msgctxt "admin settings"
4896
- msgid "Max Image File Size (KB)"
4897
- msgstr "Максимальный размер файла (в Кб)"
4898
-
4899
- #: ../core/class-settings.php:632
4900
- msgctxt "admin settings"
4901
- msgid "Min image width (px)"
4902
- msgstr "Минимальная ширина изображения (пикселы)"
4903
-
4904
- #: ../core/class-settings.php:633
4905
- msgctxt "admin settings"
4906
- msgid "Min image height (px)"
4907
- msgstr "Минимальная высота изображения (пикселы)"
4908
-
4909
- #: ../core/class-settings.php:635
4910
- msgctxt "admin settings"
4911
- msgid "Max image width (px)"
4912
- msgstr "Максимальная ширина изображения (пикселы)"
4913
-
4914
- #: ../core/class-settings.php:636
4915
- msgctxt "admin settings"
4916
- msgid "Max image height (px)"
4917
- msgstr "Максимальная высота изображения (пикселы)"
4918
-
4919
- #: ../core/class-settings.php:638
4920
- msgctxt "admin settings"
4921
- msgid "Turn on thickbox/lightbox?"
4922
- msgstr "Включить ThickBox или LightBox?"
4923
-
4924
- #: ../core/class-settings.php:638
4925
- msgctxt "admin settings"
4926
- msgid "Uncheck if it conflicts with other elements or plugins installed on your site"
4927
- msgstr ""
4928
- "<br />Отключите, если возникает конфликт с другим плагином всплывающих "
4929
- "изображений."
4930
-
4931
- #: ../core/class-settings.php:640
4932
- msgctxt "admin settings"
4933
- msgid "Thumbnails"
4934
- msgstr "Миниатюры"
4935
-
4936
- #: ../core/class-settings.php:641
4937
- msgctxt "admin settings"
4938
- msgid "Thumbnail width (px)"
4939
- msgstr "Ширина миниатюры (пикселы)"
4940
-
4941
- #: ../core/class-settings.php:642
4942
- msgctxt "admin settings"
4943
- msgid "Thumbnail height (px)"
4944
- msgstr "Высота миниатюры (пикселы)"
4945
-
4946
- #: ../core/class-settings.php:645
4947
- msgctxt "admin settings"
4948
- msgid "Crop thumbnails to exact dimensions?"
4949
- msgstr "Обрезать миниатюру?"
4950
-
4951
- #: ../core/class-settings.php:648
4952
- msgctxt "admin settings"
4953
- msgid ""
4954
- "When enabled images will match exactly the dimensions above but part of the "
4955
- "image may be cropped out. If disabled, image thumbnails will be resized to "
4956
- "match the specified width and their height will be adjusted proportionally. "
4957
- "Depending on the uploaded images, thumbnails may have different heights."
4958
- msgstr ""
4959
- "<br />Когда включено, миниатюра будет сделана в точности по этому размеру, "
4960
- "хотя часть изображения и будет вырезана.<br /><br />Если это выключено, то "
4961
- "миниатюра сохранит пропорции оригинального изображения, и будет вписана в "
4962
- "прямоугольник с указанными размерами."
4963
-
4964
- #: ../core/class-settings.php:654
4965
- msgctxt "admin settings"
4966
- msgid "Number of free images"
4967
- msgstr "Количество изображений"
4968
-
4969
- #: ../core/class-settings.php:659
4970
- msgctxt "admin settings"
4971
- msgid ""
4972
- "For paid listing images, configure that by adding or editing a <a>Fee "
4973
- "Plan</a> instead of this setting, which is ignored for paid listings."
4974
- msgstr ""
4975
- "<br />Этот параметр только для <u>бесплатных</u> справочников.<br /><br "
4976
- "/>Когда включены платные записи, то подобный параметр настраивается как "
4977
- "часть <a>Бесплатного тарифа</a>, а этот конкретный параметр будет "
4978
- "проигнорирован."
4979
-
4980
- #: ../core/class-settings.php:660
4981
- msgctxt "admin settings"
4982
- msgid "Use default picture for listings with no picture?"
4983
- msgstr "Использовать изображение по-умолчанию, если ни одного не было загружено?"
4984
-
4985
- #: ../core/class-settings.php:661
4986
- msgctxt "admin settings"
4987
- msgid "Show Thumbnail on main listings page?"
4988
- msgstr "Показывать миниатюры на главной странице списков записей?"
4989
-
4990
- #: ../core/class-settings.php:717
4991
- #, php-format
4992
- msgctxt "admin settings"
4993
- msgid ""
4994
- "Could not copy the AJAX compatibility plugin \"%s\". Compatibility mode was "
4995
- "not activated."
4996
- msgstr ""
4997
- "Не удалось скопировать плагин совместимости с AJAX \"%s\". Режим совместимости "
4998
- "не был активирован."
4999
-
5000
- #: ../core/class-settings.php:725
5001
- #, php-format
5002
- msgctxt "admin settings"
5003
- msgid ""
5004
- "Could not activate AJAX Compatibility mode: the directory \"%s\" could not be "
5005
- "created."
5006
- msgstr ""
5007
- "Не удалось активировать режим совместимости с AJAX: директория \"%s\" не была "
5008
- "создана."
5009
-
5010
- #: ../core/class-settings.php:734
5011
- #, php-format
5012
- msgctxt "admin settings"
5013
- msgid ""
5014
- "Could not remove the \"Business Directory Plugin - AJAX Compatibility Module\"."
5015
- " Please remove the file \"%s\" manually or deactivate the plugin."
5016
- msgstr ""
5017
- "Не удалось удалить плагин \"Справочник Услуг - Модуль Совместимости с AJAX\". "
5018
- "Пожалуйста удалите файл \"%s\" вручную или деактивируйте плагин."
5019
-
5020
- #: ../core/class-settings.php:1033
5021
- msgctxt "settings"
5022
- msgid "Deactivate License"
5023
- msgstr "Деактивировать лицензию"
5024
-
5025
- #: ../core/class-settings.php:1035
5026
- msgctxt "settings"
5027
- msgid "Deactivating license..."
5028
- msgstr "Деактивация лицензии..."
5029
-
5030
- #: ../core/class-settings.php:1038
5031
- msgctxt "settings"
5032
- msgid "Activate License"
5033
- msgstr "Активировать лицензию"
5034
-
5035
- #: ../core/class-settings.php:1040
5036
- msgctxt "settings"
5037
- msgid "Activating license..."
5038
- msgstr "Активация лицензии..."
5039
-
5040
- #: ../core/class-settings.php:1064
5041
- #, php-format
5042
- msgctxt "admin settings"
5043
- msgid "Valid placeholders: %s"
5044
- msgstr "Корректные служебные слова: %s"
5045
-
5046
- #: ../core/class-settings.php:1098
5047
- msgctxt "settings email"
5048
- msgid "Click to edit e-mail"
5049
- msgstr "Кликните для изменения электронного письма"
5050
-
5051
- #: ../core/class-settings.php:1099
5052
- msgctxt "settings email"
5053
- msgid "Click to edit"
5054
- msgstr "Изменить"
5055
-
5056
- #: ../core/class-settings.php:1112
5057
- msgctxt "settings email"
5058
- msgid "E-Mail Subject"
5059
- msgstr "Тема письма"
5060
-
5061
- #: ../core/class-settings.php:1123
5062
- msgctxt "settings email"
5063
- msgid "E-Mail Body"
5064
- msgstr "Тело письма"
5065
-
5066
- #: ../core/class-settings.php:1134
5067
- msgctxt "settings email"
5068
- msgid "You can use the following placeholders:"
5069
- msgstr "Вы можете использовать следующие служебные слова:"
5070
-
5071
- #: ../core/class-settings.php:1157
5072
- msgctxt "settings email"
5073
- msgid "Preview e-mail"
5074
- msgstr "Предварительный просмотр"
5075
-
5076
- #: ../core/class-settings.php:1158
5077
- msgctxt "settings email"
5078
- msgid "Cancel"
5079
- msgstr "Отменить"
5080
-
5081
- #: ../core/class-settings.php:1159
5082
- msgctxt "settings email"
5083
- msgid "Save Changes"
5084
- msgstr "Сохранить изменения"
5085
-
5086
- #: ../core/class-settings.php:1178
5087
- msgctxt "settings email"
5088
- msgid "Site title"
5089
- msgstr "Название сайта"
5090
-
5091
- #: ../core/class-settings.php:1181
5092
- msgctxt "settings email"
5093
- msgid "Site title (with link)"
5094
- msgstr "Название сайта (со ссылкой)"
5095
-
5096
- #: ../core/class-settings.php:1184
5097
- msgctxt "settings email"
5098
- msgid "Site address (with link)"
5099
- msgstr "Адрес сайта (со ссылкой)"
5100
-
5101
- #: ../core/class-settings.php:1187
5102
- msgctxt "settings email"
5103
- msgid "Directory URL (with link)"
5104
- msgstr "Адрес URL справочника (со ссылкой)"
5105
-
5106
- #: ../core/class-settings.php:1190
5107
- msgctxt "settings email"
5108
- msgid "Current date"
5109
- msgstr "Текущая дата"
5110
-
5111
- #: ../core/class-settings.php:1193
5112
- msgctxt "settings email"
5113
- msgid "Current time"
5114
- msgstr "Текущее время"
5115
-
5116
- #: ../core/view-renew-listing.php:18
5117
- msgctxt "renewal"
5118
- msgid "Listing renewal is disabled at this moment. Please try again later."
5119
- msgstr "Продление записей на настоящий момент отключено. Попробуйте ещё раз позже."
5120
-
5121
- #: ../core/view-renew-listing.php:21
5122
- msgctxt "renewal"
5123
- msgid ""
5124
- "Your renewal ID is invalid. Please use the URL you were given on the renewal "
5125
- "e-mail message."
5126
- msgstr ""
5127
- "Номер Вашего продления неправилен. Пожалуйста воспользуйтесь ссылкой, "
5128
- "которая была отправлена Вам по электронной почте."
5129
-
5130
- #: ../core/view-renew-listing.php:47
5131
- msgctxt "renewal"
5132
- msgid "Your renewal was successfully cancelled."
5133
- msgstr "Продление Вашей записи было отменено."
5134
-
5135
- #: ../core/view-renew-listing.php:59
5136
- #, php-format
5137
- msgctxt "listings"
5138
- msgid "Fee \"%s\" renewal for category \"%s\""
5139
- msgstr "Плата \"%s\" за обновление рубрики \"%s\""
5140
-
5141
- #: ../core/view-renew-listing.php:79
5142
- msgctxt "renewal"
5143
- msgid "Invalid renewal state."
5144
- msgstr "Некорректное состояние продления."
5145
-
5146
- #: ../core/view-renew-listing.php:91
5147
- msgctxt "templates"
5148
- msgid "Recurring Fee Management"
5149
- msgstr "Управление периодический оплатой"
5150
-
5151
- #: ../core/view-renew-listing.php:92
5152
- msgctxt "renew"
5153
- msgid ""
5154
- "Because you are on a recurring fee plan you don't have to renew your listing "
5155
- "right now as this will be handled automatically when renewal comes."
5156
- msgstr ""
5157
- "Так как Вы находитесь на плане с периодическими платежами, то Вам нет "
5158
- "необходимости продлевать срок действия Вашей записи - продление произойдёт "
5159
- "автоматически в нужное время."
5160
-
5161
- #: ../core/view-renew-listing.php:94
5162
- msgctxt "renewal"
5163
- msgid "Current Fee Details"
5164
- msgstr "Детали текущего платежа"
5165
-
5166
- #: ../core/view-renew-listing.php:96
5167
- msgctxt "renewal"
5168
- msgid "Number of images:"
5169
- msgstr "Количество изображений:"
5170
-
5171
- #: ../core/view-renew-listing.php:98
5172
- msgctxt "renewal"
5173
- msgid "Expiration date:"
5174
- msgstr "Истекает:"
5175
-
5176
- #: ../core/view-renew-listing.php:102
5177
- msgctxt "renew"
5178
- msgid ""
5179
- "However, if you want to cancel your subscription you can do that on this "
5180
- "page. When the renewal time comes you'll be able to change your settings "
5181
- "again."
5182
- msgstr ""
5183
- "Однако если Вы хотите отменить свою подписку, то Вы сможете это сделать на "
5184
- "этой страницу. Когда придёт время для продления, Вы сможете изменить "
5185
- "настройки ещё раз."
5186
-
5187
- #: ../core/widget-random-listings.php:11
5188
- msgctxt "widgets"
5189
- msgid "Business Directory - Random Listings"
5190
- msgstr "Справочник Услуг - Случайные Записи"
5191
-
5192
- #: ../core/widget-random-listings.php:12
5193
- msgctxt "widgets"
5194
- msgid "Displays a list of random listings from the Business Directory."
5195
- msgstr "Отображает список случайных записей из Справочника Услуг."
5196
-
5197
- #: ../core/widget-random-listings.php:14
5198
- msgctxt "widgets"
5199
- msgid "Random Listings"
5200
- msgstr "Случайные Записи"
5201
-
5202
- #: ../core/view-manage-recurring.php:23
5203
- msgctxt "manage subscriptions"
5204
- msgid "You are not on recurring payments for any of your listings."
5205
- msgstr "Ни для одной из Ваших записей не включены периодические платежи."
5206
-
5207
- #: ../core/view-manage-recurring.php:95
5208
- msgctxt "manage subscriptions"
5209
- msgid "Invalid subscription."
5210
- msgstr "Некорректная подписка."
5211
-
5212
- #: ../core/view-upgrade-listing.php:21
5213
- msgctxt "listing upgrade"
5214
- msgid "Invalid link followed."
5215
- msgstr "Была выбрана неправильная ссылка."
5216
-
5217
- #: ../core/view-upgrade-listing.php:27
5218
- msgctxt "templates"
5219
- msgid "Your listing is already pending approval for \"featured\" status."
5220
- msgstr "Ваша запись уже ожидает подтверждения статуса Особая."
5221
-
5222
- #: ../core/view-upgrade-listing.php:28
5223
- msgctxt "templates"
5224
- msgid "Return to listing."
5225
- msgstr "Вернуться в справочник."
5226
-
5227
- #: ../core/view-upgrade-listing.php:54 ../core/view-submit-listing.php:456
5228
- msgctxt "submit"
5229
- msgid "Listing upgrade to featured"
5230
- msgstr "Сделать запись Особой"
5231
-
5232
- #: ../core/class-csv-import.php:375
5233
- #, php-format
5234
- msgctxt "admin csv-import"
5235
- msgid "Could not create listing category \"%s\""
5236
- msgstr "Не удалось создать рубрику \"%s\""
5237
-
5238
- #: ../core/class-csv-import.php:519
5239
- #, php-format
5240
- msgctxt "admin csv-import"
5241
- msgid "Username \"%s\" does not exist"
5242
- msgstr "Имя учётной записи \"%s\" не существует"
5243
-
5244
- #: ../core/class-csv-import.php:551
5245
- #, php-format
5246
- msgctxt "admin csv-import"
5247
- msgid "Missing required field: %s"
5248
- msgstr "Отсутствует обязательное поле: %s"
5249
-
5250
- #: ../core/class-csv-import.php:571
5251
- #, php-format
5252
- msgctxt "admin csv-import"
5253
- msgid "Listing category \"%s\" does not exist"
5254
- msgstr "Рубрика \"%s\" не существует"
5255
-
5256
- #: ../core/class-listings-widget.php:45 ../core/widget-search.php:22
5257
- msgctxt "widgets"
5258
- msgid "Title:"
5259
- msgstr "Заголовок:"
5260
-
5261
- #: ../core/class-listings-widget.php:51
5262
- msgctxt "widgets"
5263
- msgid "Number of listings to display:"
5264
- msgstr "Количество записей:"
5265
-
5266
- #: ../core/class-listings-widget.php:60
5267
- msgctxt "widgets"
5268
- msgid "Thumbnails"
5269
- msgstr "Миниатюры"
5270
-
5271
- #: ../core/class-listings-widget.php:68
5272
- msgctxt "widgets"
5273
- msgid "Show thumbnails"
5274
- msgstr "Показать миниятюры"
5275
-
5276
- #: ../core/class-listings-widget.php:72
5277
- msgctxt "widgets"
5278
- msgid "Image width (in px):"
5279
- msgstr "Ширина изображения (пикселы):"
5280
-
5281
- #: ../core/class-listings-widget.php:78
5282
- msgctxt "widgets"
5283
- msgid "Leave blank for automatic width."
5284
- msgstr "Оставьте поле пустым для автоматической ширины."
5285
-
5286
- #: ../core/class-listings-widget.php:83
5287
- msgctxt "widgets"
5288
- msgid "Image height (in px):"
5289
- msgstr "Высота изображения (пикселы):"
5290
-
5291
- #: ../core/class-listings-widget.php:89
5292
- msgctxt "widgets"
5293
- msgid "Leave blank for automatic height."
5294
- msgstr "Оставьте поле пустым для автоматической высоты."
5295
-
5296
- #: ../core/class-form-field.php:56
5297
- msgctxt "form-fields-api"
5298
- msgid "Invalid form field type"
5299
- msgstr "Неверный тип поля формы"
5300
-
5301
- #: ../core/class-form-field.php:450
5302
- msgctxt "form-fields-api"
5303
- msgid "Field label is required."
5304
- msgstr "Метка поля обязательна."
5305
-
5306
- #: ../core/class-form-field.php:460
5307
- msgctxt "form-fields-api"
5308
- msgid "Requested field type change is incompatible. Type will not be modified."
5309
- msgstr ""
5310
- "Запрошенное изменение типа поля не совместимо с предыдущим типом. В "
5311
- "изменении типа отказано."
5312
-
5313
- #: ../core/class-form-field.php:480
5314
- #, php-format
5315
- msgctxt "form-fields-api"
5316
- msgid ""
5317
- "There can only be one field with association \"%s\". Please select another "
5318
- "association."
5319
- msgstr ""
5320
- "Ассоциация с полем \"%s\" может быть только одна. Пожалуйста, выберите другую "
5321
- "ассоциацию."
5322
-
5323
- #: ../core/class-form-field.php:490
5324
- #, php-format
5325
- msgctxt "form-fields-api"
5326
- msgid "\"%s\" is an invalid field type for this association."
5327
- msgstr "Поле \"%s\" не является корректной ассоциацией для этого поля."
5328
-
5329
- #: ../core/class-form-field.php:527
5330
- msgctxt "form-fields-api"
5331
- msgid "Invalid field ID"
5332
- msgstr "Некорректный номер поля"
5333
-
5334
- #: ../core/class-form-field.php:536
5335
- msgctxt "form-fields api"
5336
- msgid ""
5337
- "This form field can't be deleted because it is required for the plugin to "
5338
- "work."
5339
- msgstr "Это поле формы нельзя удалить, так как оно требуется для работы плагина."
5340
-
5341
- #: ../core/class-form-field.php:548
5342
- msgctxt "form-fields-api"
5343
- msgid "An error occurred while trying to delete this field."
5344
- msgstr "Произошла ошибка при попытке удаления этого поля."
5345
-
5346
- #: ../core/payment.php:18
5347
- msgctxt "fees-api"
5348
- msgid "Free Listing"
5349
- msgstr "Бесплатные записи"
5350
-
5351
- #: ../core/payment.php:145
5352
- msgctxt "fees-api"
5353
- msgid "Fee label is required."
5354
- msgstr "Название тарифа обязательна."
5355
-
5356
- #: ../core/payment.php:148
5357
- msgctxt "fees-api"
5358
- msgid "Fee amount must be a non-negative decimal number."
5359
- msgstr "Стоимость тарифа должна быть десятичным положительным числом."
5360
-
5361
- #: ../core/payment.php:151 ../core/payment.php:154
5362
- msgctxt "fees-api"
5363
- msgid "Fee must apply to at least one category."
5364
- msgstr "Тариф должен быть ассоциирован по крайней мере с одной рубрикой."
5365
-
5366
- #: ../core/payment.php:157
5367
- msgctxt "fees-api"
5368
- msgid "Fee allowed images must be a non-negative integer."
5369
- msgstr "Количество разрешённых изображений должно быть положительным целым числом."
5370
-
5371
- #: ../core/payment.php:160
5372
- msgctxt "fees-api"
5373
- msgid "Fee listing run must be a non-negative integer."
5374
- msgstr "Срок действия тарифа должен быть положительным целым числом."
5375
-
5376
- #: ../core/payment.php:165
5377
- msgctxt "fees-api"
5378
- msgid "Fee listing duration must be a number less than 10 years (3650 days)."
5379
- msgstr "Срок действия тарифа должен быть меньше 10 лет (3650 дней)."
5380
-
5381
- #: ../core/payment.php:340
5382
- #, php-format
5383
- msgctxt "payments-api"
5384
- msgid ""
5385
- "You are offering featured listings but have payments turned off. Go to <a "
5386
- "href=\"%s\">Manage Options - Payment</a> to change the payment settings. Until "
5387
- "you change this, the <i>Upgrade to Featured</i> option will be disabled."
5388
- msgstr ""
5389
- "Вы предлагаете возможность делать записи Особыми, но платёжные параметры "
5390
- "выключены. Перейдите в раздел <a href=\"%s\">Тарифы</a> для настроек "
5391
- "параметров платежей. Пока это не будет сделано команда <i>Сделать запись "
5392
- "Особой</i> будет запрещена."
5393
-
5394
- #: ../core/payment.php:358
5395
- #, php-format
5396
- msgctxt "payments-api"
5397
- msgid ""
5398
- "The <b>%s</b> gateway is active but not properly configured. The gateway "
5399
- "won't be available until the following problems are fixed: <b>%s</b>. <br/> "
5400
- "Check the <a href=\"%s\">payment settings</a>."
5401
- msgstr ""
5402
- "Шлюз <b>%s</b> активен, но неправильно настроен. Шлюзом нельзя будет "
5403
- "воспользоваться пока не будет устранена следующие проблемы: <b>%s</b>. <br/> "
5404
- "Проверьте <a href=\"%s\">настройки платежей</a>."
5405
-
5406
- #: ../core/payment.php:368
5407
- #, php-format
5408
- msgctxt "admin"
5409
- msgid ""
5410
- "You have payments turned on but no gateway is active and properly configured."
5411
- " Go to <a href=\"%s\">Manage Options - Payment</a> to change the payment "
5412
- "settings. Until you change this, the directory will operate in <i>Free "
5413
- "Mode</i>."
5414
- msgstr ""
5415
- "В настройках включен платный режим, но платёжные шлюзы не активированы, или "
5416
- "настроены не правильно. Перейдите в раздел <a href=\"%s\">Управление "
5417
- "Справочником - Тарифы</a> и настройте параметры платежей. Пока настройки не "
5418
- "будут правильно сделаны, этот плагин будет работать в <i>Бесплатном "
5419
- "Режиме</i>."
5420
-
5421
- #: ../core/payment.php:372
5422
- msgid ""
5423
- "BD detected PayFast and another gateway were enabled. This setup is not "
5424
- "recommended due to PayFast supporting only ZAR and the other gateways not "
5425
- "supporting this currency."
5426
- msgstr ""
5427
- "Плагин обнаружил, что включены оба PayFast и другой платёжный шлюз. Такая "
5428
- "комбинация не рекомендуется, так как PayFast поддерживает только ZAR, а "
5429
- "другой шлюз эту валюту не поддерживает."
5430
-
5431
- #: ../core/payment.php:376
5432
- msgid ""
5433
- "You have recurring renewal of listing fees enabled but the payment gateways "
5434
- "installed don't support recurring payments. Until a gateway that supports "
5435
- "recurring payments (such as PayPal) is enabled automatic renewals will be "
5436
- "disabled."
5437
- msgstr ""
5438
- "В настройках включена поддержка периодических платежей для записей, но "
5439
- "установленные платёжные шлюзы не поддерживают периодичность снятия денег. "
5440
- "Пока не будет включен такой шлюз платежей, который поддерживает "
5441
- "периодическое снятие денег (например PayPal) режим периодических платежей "
5442
- "будет оставаться отключенным."
5443
-
5444
- #: ../core/payment.php:381
5445
- msgid ""
5446
- "Due to Google Wallet limitations only monthly (30 days) recurring fees are "
5447
- "supported by the gateway. All other fees will be charged as non-recurring."
5448
- msgstr ""
5449
- "Из-за ограничений системы Google Wallet её платёжных шлюз поддерживает "
5450
- "только ежемесячную оплату. Все другие платежи задаются как разовые."
5451
-
5452
- #: ../core/payment.php:414
5453
- msgctxt "payments-api"
5454
- msgid "Checkout"
5455
- msgstr "Завершение покупки"
5456
-
5457
- #: ../core/payment.php:415
5458
- #, php-format
5459
- msgctxt "payments-api"
5460
- msgid "Pay %1$s through %2$s"
5461
- msgstr "Заплатить %1$s через %2$s"
5462
-
5463
- #: ../core/payment.php:422
5464
- msgctxt "payments-api"
5465
- msgid "Your transaction has been approved."
5466
- msgstr "Ваш платёж был утверждён."
5467
-
5468
- #: ../core/payment.php:603
5469
- msgctxt "payments"
5470
- msgid "Payment Details"
5471
- msgstr "Детали платежей"
5472
-
5473
- #: ../core/payment.php:630
5474
- msgctxt "checkout"
5475
- msgid "Payment Method"
5476
- msgstr "Метод оплаты"
5477
-
5478
- #: ../core/payment.php:659
5479
- msgctxt "payment"
5480
- msgid "Return to Directory."
5481
- msgstr "Вернуться в Справочник."
5482
-
5483
- #: ../core/payment.php:665
5484
- msgctxt "payments"
5485
- msgid ""
5486
- "Your payment is being processed by the payment gateway. Please reload this "
5487
- "page in a moment to see if the status has changed or contact the site "
5488
- "administrator."
5489
- msgstr ""
5490
- "Ваш платёж проводится шлюзом платёжной системы. Вы можете обновить эту "
5491
- "страницу, чтобы увидеть, прошёл ли платёж или ещё нет. Или свяжитесь с "
5492
- "администрацией сайта для дополнительной информации."
5493
-
5494
- #: ../core/payment.php:668
5495
- msgctxt "payments"
5496
- msgid ""
5497
- "The payment has been rejected by the payment gateway. Please contact the "
5498
- "site administrator if you think there is an error or click \"Change Payment "
5499
- "Method\" to select another payment method and try again."
5500
- msgstr ""
5501
- "Платёж был отвергнут платёжной системой. Пожалуйста свяжитесь с "
5502
- "администрацией, если Вы считаете, что произошла ошибка. Или нажмите на "
5503
- "\"Сменить метод платежа\", чтобы попробовать через другую платёжную систему."
5504
-
5505
- #: ../core/payment.php:669
5506
- msgctxt "payments"
5507
- msgid "Change Payment Method"
5508
- msgstr "Сменить метод платежа"
5509
-
5510
- #: ../core/payment.php:671
5511
- msgctxt "payments"
5512
- msgid ""
5513
- "The payment has been rejected by the payment gateway. Please contact the "
5514
- "site administrator if you think there is an error."
5515
- msgstr ""
5516
- "Платёж был отвергнут платёжной системой. Пожалуйста свяжитесь с "
5517
- "администрацией, если Вы считаете, что произошла ошибка."
5518
-
5519
- #: ../core/payment.php:674
5520
- msgctxt "payments"
5521
- msgid "The payment has been canceled at your request."
5522
- msgstr "Платёж был прерван по Вашему запросу."
5523
-
5524
- #: ../core/payment.php:770
5525
- msgctxt "admin"
5526
- msgid "Pending Abandonment"
5527
- msgstr "Платёж был заброшен."
5528
-
5529
- #: ../core/payment.php:775
5530
- msgctxt "admin"
5531
- msgid "Abandoned"
5532
- msgstr "Заброшено"
5533
-
5534
- #: ../core/class-listings-api.php:300
5535
- #, php-format
5536
- msgctxt "notify email"
5537
- msgid "[%s] New listing notification"
5538
- msgstr "[%s] Оповещение о новой записи"
5539
-
5540
- #: ../core/class-listings-api.php:319
5541
- #, php-format
5542
- msgctxt "notify email"
5543
- msgid "[%s] Listing edit notification"
5544
- msgstr "[%s] Оповещение об изменении записи"
5545
-
5546
- #: ../core/class-gateway.php:131
5547
- msgctxt "billing info"
5548
- msgid "First name is required."
5549
- msgstr "Имя обязательно."
5550
-
5551
- #: ../core/class-gateway.php:134
5552
- msgctxt "billing info"
5553
- msgid "Last name is required."
5554
- msgstr "Фамилия обязательна."
5555
-
5556
- #: ../core/class-gateway.php:137
5557
- msgctxt "billing info"
5558
- msgid "Credit card number is required."
5559
- msgstr "Номер кредитной карточки обязателен."
5560
-
5561
- #: ../core/class-gateway.php:140
5562
- msgctxt "billing info"
5563
- msgid "Credit card expiration date is invalid."
5564
- msgstr "Срок истекания кредитной карточки некорректен."
5565
-
5566
- #: ../core/class-gateway.php:143
5567
- msgctxt "billing info"
5568
- msgid "Credit card CVC number is required."
5569
- msgstr "Секретный номер кредитной карточки обязателен."
5570
-
5571
- #: ../core/class-gateway.php:146
5572
- msgctxt "billing info"
5573
- msgid "Country is required."
5574
- msgstr "Страна обязательна."
5575
-
5576
- #: ../core/class-gateway.php:149
5577
- msgctxt "billing info"
5578
- msgid "Address is required."
5579
- msgstr "Адрес обязателен."
5580
-
5581
- #: ../core/gateways-authorize-net.php:19
5582
- msgid "Activate Authorize.net?"
5583
- msgstr "Активировать шлюз Authorize.net?"
5584
-
5585
- #: ../core/gateways-authorize-net.php:25
5586
- msgid "Login ID"
5587
- msgstr "Имя пользователя"
5588
-
5589
- #: ../core/gateways-authorize-net.php:29
5590
- msgid "Transaction Key"
5591
- msgstr "Ключ транзакции"
5592
-
5593
- #: ../core/gateways-authorize-net.php:40
5594
- msgctxt "authorize-net"
5595
- msgid "Login ID is missing."
5596
- msgstr "Имя пользователя не указано."
5597
-
5598
- #: ../core/gateways-authorize-net.php:43
5599
- msgctxt "authorize-net"
5600
- msgid "Transaction Key is missing."
5601
- msgstr "Ключ транзакции не указан."
5602
-
5603
- #: ../core/gateways-authorize-net.php:92
5604
- #, php-format
5605
- msgctxt "authorize-net"
5606
- msgid ""
5607
- "The payment gateway didn't accept your credit card or billing information. "
5608
- "The following reason was given: \"%s\"."
5609
- msgstr ""
5610
- "Платёжный шлюз отверг Вашу кредитную карту или платёжную информацию по "
5611
- "причине: \"%s\"."
5612
-
5613
- #: ../core/gateways-authorize-net.php:96
5614
- #, php-format
5615
- msgctxt "authorize-net"
5616
- msgid ""
5617
- "Your payment is being held for review by the payment gateway. The following "
5618
- "reason was given: \"%s\"."
5619
- msgstr "Ваш платёж проходит рассмотрение в платёжном шлюзе по причине: \"%s\"."
5620
-
5621
- #: ../core/gateways-authorize-net.php:99 ../core/gateways-authorize-net.php:122
5622
- #, php-format
5623
- msgctxt "authorize-net"
5624
- msgid "Payment was rejected. The following reason was given: \"%s\"."
5625
- msgstr "Платёж был отвергнут по причине: \"%s\""
5626
-
5627
- #: ../core/gateways-authorize-net.php:116
5628
- msgctxt "authorize-net"
5629
- msgid "Setup fee"
5630
- msgstr "Настроить тариф"
5631
-
5632
- #: ../core/gateways-authorize-net.php:173
5633
- msgctxt "authorize-net"
5634
- msgid "Could not process payment."
5635
- msgstr "Не удалось провести платёж."
5636
-
5637
- #: ../core/gateways-dummy.php:15
5638
- msgctxt "dummy gateway"
5639
- msgid "Dummy"
5640
- msgstr "Тестовый"
5641
-
5642
- #: ../core/gateways-dummy.php:38
5643
- msgctxt "dummy gateway"
5644
- msgid "Dummy Gateway"
5645
- msgstr "Тестовый шлюз"
5646
-
5647
- #: ../core/gateways-dummy.php:39
5648
- msgctxt "dummy gateway"
5649
- msgid "New Status:"
5650
- msgstr "Новый статус:"
5651
-
5652
- #: ../core/gateways-dummy.php:41
5653
- msgctxt "dummy gateway"
5654
- msgid "Completed"
5655
- msgstr "Завершено"
5656
-
5657
- #: ../core/gateways-dummy.php:43
5658
- msgctxt "dummy gateway"
5659
- msgid "Pending"
5660
- msgstr "Ожидается"
5661
-
5662
- #: ../core/gateways-dummy.php:45
5663
- msgctxt "dummy gateway"
5664
- msgid "Canceled"
5665
- msgstr "Отменено"
5666
-
5667
- #: ../core/gateways-dummy.php:47
5668
- msgctxt "dummy gateway"
5669
- msgid "Rejected"
5670
- msgstr "Отвергнуто"
5671
-
5672
- #: ../core/gateways-dummy.php:49
5673
- msgctxt "dummy gateway"
5674
- msgid "Process Payment"
5675
- msgstr "Провести платёж"
5676
-
5677
- #: ../core/gateways-googlewallet.php:18
5678
- msgid "Google Wallet"
5679
- msgstr "Кошелёк Google"
5680
-
5681
- #: ../core/gateways-googlewallet.php:68
5682
- msgctxt "google-wallet"
5683
- msgid ""
5684
- "For recurring payments to work you need to <a>specify a postback URL</a> in "
5685
- "your Google Wallet settings."
5686
- msgstr ""
5687
- "Чтобы периодические платежи работали Вы должны <a>указать адрес URL страницы "
5688
- "возврата</a> в настройках Вашего кошелька Google Wallet."
5689
-
5690
- #: ../core/gateways-googlewallet.php:69
5691
- #, php-format
5692
- msgctxt "google-wallet"
5693
- msgid "Please use %s as the postback URL."
5694
- msgstr "Пожалуйста используйте \"%s\" в качестве обратной ссылки."
5695
-
5696
- #: ../core/gateways-googlewallet.php:84
5697
- msgid "Activate Google Wallet?"
5698
- msgstr "Активировать Кошелёк Google?"
5699
-
5700
- #: ../core/gateways-googlewallet.php:89
5701
- msgid "Seller Identifier"
5702
- msgstr "Номер продавца"
5703
-
5704
- #: ../core/gateways-googlewallet.php:94
5705
- msgid "Seller Secret"
5706
- msgstr "Секретный код продавца"
5707
-
5708
- #: ../core/gateways-googlewallet.php:105
5709
- msgctxt "google-wallet"
5710
- msgid "Seller ID is missing."
5711
- msgstr "Номер продавца не указан."
5712
-
5713
- #: ../core/gateways-googlewallet.php:108
5714
- msgctxt "google-wallet"
5715
- msgid "Seller Secret is missing."
5716
- msgstr "Секретный ключ не указан."
5717
-
5718
- #: ../core/gateways-googlewallet.php:137
5719
- msgctxt "google-wallet"
5720
- msgid "One time payment + recurring payment for renewal fees"
5721
- msgstr "Стоимость одноразового платежа и периодических платежей за продление записей"
5722
-
5723
- #: ../core/gateways-googlewallet.php:233
5724
- msgctxt "google-wallet"
5725
- msgid ""
5726
- "Payment was rejected because internal data does not look like a valid Google "
5727
- "Wallet transaction."
5728
- msgstr ""
5729
- "Платёж был отвергнут из-за того, что его внутренние данные не выглядят как "
5730
- "правильная транзакция Кошелька Google."
5731
-
5732
- #: ../core/gateways-googlewallet.php:248
5733
- msgctxt "google-wallet"
5734
- msgid "Payment has been rejected because an internal error occurred."
5735
- msgstr "Платёж был отвергнут из-за внутренней ошибки."
5736
-
5737
- #: ../core/gateways-googlewallet.php:254
5738
- msgctxt "google-wallet"
5739
- msgid "The transaction has been canceled at user's request."
5740
- msgstr "Платёж был отменён по запросу пользователя. "
5741
-
5742
- #: ../core/templates-ui.php:159
5743
- msgctxt "templates"
5744
- msgid "No listing categories found."
5745
- msgstr "Рубрики не обнаружены."
5746
-
5747
- #: ../core/templates-ui.php:183 ../core/compatibility/deprecated.php:214
5748
- msgid "Submit A Listing"
5749
- msgstr "Создать запись"
5750
-
5751
- #: ../core/templates-ui.php:192 ../core/compatibility/deprecated.php:227
5752
- msgid "View Listings"
5753
- msgstr "Все записи"
5754
-
5755
- #: ../core/templates-ui.php:202 ../core/compatibility/deprecated.php:238
5756
- msgid "Directory"
5757
- msgstr "Все рубрики"
5758
-
5759
- #: ../core/templates-ui.php:229 ../core/compatibility/templates/wpbusdirman-index-
5760
- #: categories.php:12
5761
- msgctxt "templates"
5762
- msgid "Search Listings"
5763
- msgstr "Найти"
5764
-
5765
- #: ../core/templates-ui.php:232
5766
- msgctxt "templates"
5767
- msgid "Advanced Search"
5768
- msgstr "Расширенный поиск"
5769
-
5770
- #: ../core/templates-ui.php:258 ../core/templates-ui.php:283
5771
- msgctxt "templates sort"
5772
- msgid "Sort By:"
5773
- msgstr "Сортировка по:"
5774
-
5775
- #: ../core/templates-ui.php:277
5776
- msgctxt "sort"
5777
- msgid "Reset"
5778
- msgstr "Сбросить"
5779
-
5780
- #: ../core/templates-ui.php:299
5781
- msgctxt "sort"
5782
- msgid "(Reset)"
5783
- msgstr "(Сбросить)"
5784
-
5785
- #: ../core/view-checkout.php:34
5786
- msgctxt "payments"
5787
- msgid "Invalid payment id."
5788
- msgstr "Некорректный номер платежа."
5789
-
5790
- #: ../core/view-checkout.php:92
5791
- msgctxt "checkout"
5792
- msgid "Continue"
5793
- msgstr "Далее"
5794
-
5795
- #: ../core/view-checkout.php:103
5796
- msgctxt "checkout"
5797
- msgid ""
5798
- "Payments are not allowed on the non-secure version of this site. Please "
5799
- "<a>continue to the secure server to proceed with your payment</a>."
5800
- msgstr ""
5801
- "Платежи запрещены на не-безопасной версии этого сайта. Пожалуйста "
5802
- "<a>перейдите на безопасную версию для проведения Вашего платежа</a>."
5803
-
5804
- #: ../core/view-checkout.php:118
5805
- msgctxt "checkout"
5806
- msgid ""
5807
- "Your payment is being verified. This usually takes a few minutes but can "
5808
- "take up to 24 hours."
5809
- msgstr ""
5810
- "Ваш платёж проходит проверку. Обычно это занимает несколько минут, но может "
5811
- "иногда занять до одного дня."
5812
-
5813
- #: ../core/view-checkout.php:126 ../core/view-checkout.php:147
5814
- msgctxt "checkout"
5815
- msgid "← Return to Directory."
5816
- msgstr "← Вернуться в справочник."
5817
-
5818
- #: ../core/view-checkout.php:136
5819
- msgctxt "checkout"
5820
- msgid "Your payment was received sucessfully."
5821
- msgstr "Ваш платёж был успешно получен."
5822
-
5823
- #: ../core/view-checkout.php:143
5824
- msgctxt "checkout"
5825
- msgid "← Return to your listing."
5826
- msgstr "← Вернуться к Вашей записи."
5827
-
5828
- #: ../core/class-listing.php:319 ../core/class-listing.php:345
5829
- msgctxt "listing"
5830
- msgid "(Fee Unavailable)"
5831
- msgstr "(Тариф недоступен)"
5832
-
5833
- #: ../core/licensing.php:43 ../core/licensing.php:65 ../core/licensing.php:66
5834
- msgctxt "settings"
5835
- msgid "Licenses"
5836
- msgstr "Лицензии"
5837
-
5838
- #: ../core/licensing.php:46
5839
- msgctxt "settings"
5840
- msgid "Premium Modules"
5841
- msgstr "Платные модули"
5842
-
5843
- #: ../core/licensing.php:107 ../core/licensing.php:141
5844
- msgctxt "licensing"
5845
- msgid "Invalid module ID"
5846
- msgstr "Неправильный номер модуля"
5847
-
5848
- #: ../core/licensing.php:112
5849
- msgctxt "licensing"
5850
- msgid "No license key provided"
5851
- msgstr "Не указан лицензионный ключ"
5852
-
5853
- #: ../core/licensing.php:169
5854
- msgctxt "licensing"
5855
- msgid "Deactivation failed"
5856
- msgstr "Деактивация не удалась"
5857
-
5858
- #: ../core/licensing.php:230
5859
- msgctxt "licensing"
5860
- msgid "Business Directory - License Key Required"
5861
- msgstr "Справочник Услуг - Требуется Лицензионный Ключ"
5862
-
5863
- #: ../core/licensing.php:233
5864
- msgctxt "licensing"
5865
- msgid ""
5866
- "The following premium modules will not work until a valid license key is "
5867
- "provided. Go to <a>Manage Options - Licenses</a> to enter your license "
5868
- "information."
5869
- msgstr ""
5870
- "Следующие платные модули не будут работать пока не будет предоставлен "
5871
- "корректный лицензионный ключ. Перейдите в раздел <a>Управление / "
5872
- "Лицензии</a> и введите Вашу лицензионную информацию."
5873
-
5874
- #: ../core/licensing.php:254
5875
- msgctxt "licensing"
5876
- msgid "Business Directory - License Key Expired"
5877
- msgstr "Справочник Услуг - Лицензионный Ключ Истёк"
5878
-
5879
- #: ../core/licensing.php:255
5880
- #, php-format
5881
- msgctxt "licensing"
5882
- msgid ""
5883
- "The license key for <span class=\"module-name\">%s %s</span> has expired. The "
5884
- "module will continue to work but you will not receive any more updates until "
5885
- "the license is renewed."
5886
- msgstr ""
5887
- "Лицензионный ключ для модуля <span class=\"module-name\">%s %s</span> истёк. "
5888
- "Модуль продолжить работать, но обновлений для него Вы больше не получите, "
5889
- "пока лицензия не будет продлена."
5890
-
5891
- #: ../core/licensing.php:259
5892
- msgctxt "licensing"
5893
- msgid "Remind me later"
5894
- msgstr "Напомнить мне позже"
5895
-
5896
- #: ../core/licensing.php:261
5897
- msgctxt "licensing"
5898
- msgid "Renew License Key"
5899
- msgstr "Обновить лицензионный ключ"
5900
-
5901
- #: ../core/licensing.php:348
5902
- #, php-format
5903
- msgctxt "licensing"
5904
- msgid "Could not deactivate license: %s."
5905
- msgstr "Не удалось деактивировать лицензию: %s."
5906
-
5907
- #: ../core/licensing.php:350
5908
- msgctxt "licensing"
5909
- msgid "License deactivated"
5910
- msgstr "Лицензия была деактивирована."
5911
-
5912
- #: ../core/view-delete-listing.php:10
5913
- msgctxt "delete listing"
5914
- msgid "Please log in to delete the listing."
5915
- msgstr "Пожалуйста войдите в сайт чтобы получить возможность удалить запись."
5916
-
5917
- #: ../core/view-delete-listing.php:23
5918
- msgctxt "delete listing"
5919
- msgid "Your listing has been deleted."
5920
- msgstr "Запись была удалена."
5921
-
5922
- #: ../core/class-recaptcha.php:90 ../core/class-recaptcha.php:105
5923
- msgctxt "recaptcha"
5924
- msgid "The reCAPTCHA wasn't entered correctly."
5925
- msgstr "Код reCAPTCHA был введён неправильно."
5926
-
5927
- #: ../core/templates-listings.php:60 ../core/templates/listing-sticky-tag.tpl.php:
5928
- #: 3 ../core/templates/listing-sticky-tag.tpl.php:4
5929
- msgctxt "templates"
5930
- msgid "Featured Listing"
5931
- msgstr "Особая запись"
5932
-
5933
- #: ../core/form-fields.php:31
5934
- msgctxt "form-fields api"
5935
- msgid "Post Title"
5936
- msgstr "Название записи"
5937
-
5938
- #: ../core/form-fields.php:32
5939
- msgctxt "form-fields api"
5940
- msgid "Post Content"
5941
- msgstr "Текст записи"
5942
-
5943
- #: ../core/form-fields.php:33
5944
- msgctxt "form-fields api"
5945
- msgid "Post Excerpt"
5946
- msgstr "Цитата записи"
5947
-
5948
- #: ../core/form-fields.php:34
5949
- msgctxt "form-fields api"
5950
- msgid "Post Category"
5951
- msgstr "Рубрика записи"
5952
-
5953
- #: ../core/form-fields.php:35
5954
- msgctxt "form-fields api"
5955
- msgid "Post Tags"
5956
- msgstr "Метки записей"
5957
-
5958
- #: ../core/form-fields.php:36
5959
- msgctxt "form-fields api"
5960
- msgid "Post Metadata"
5961
- msgstr "Метаданные записи"
5962
-
5963
- #: ../core/form-fields.php:38
5964
- msgctxt "form-fields api"
5965
- msgid "Custom"
5966
- msgstr "Настраиваемое"
5967
-
5968
- #: ../core/form-fields.php:303
5969
- msgid "Business Name"
5970
- msgstr "Наименование"
5971
-
5972
- #: ../core/form-fields.php:305
5973
- msgid "Business Genre"
5974
- msgstr "Рубрика"
5975
-
5976
- #: ../core/form-fields.php:307
5977
- msgid "Short Business Description"
5978
- msgstr "Краткое описание"
5979
-
5980
- #: ../core/form-fields.php:309
5981
- msgid "Long Business Description"
5982
- msgstr "Полное описание"
5983
-
5984
- #: ../core/form-fields.php:311
5985
- msgid "Business Website Address"
5986
- msgstr "Вебсайт"
5987
-
5988
- #: ../core/form-fields.php:313
5989
- msgid "Business Phone Number"
5990
- msgstr "Телефон"
5991
-
5992
- #: ../core/form-fields.php:315
5993
- msgid "Business Fax"
5994
- msgstr "Факс"
5995
-
5996
- #: ../core/form-fields.php:317
5997
- msgid "Business Contact Email"
5998
- msgstr "Электронный адрес"
5999
-
6000
- #: ../core/form-fields.php:319
6001
- msgid "Business Tags"
6002
- msgstr "Метки"
6003
-
6004
- #: ../core/form-fields.php:321
6005
- msgid "Business Address"
6006
- msgstr "Почтовый адрес"
6007
-
6008
- #: ../core/form-fields.php:323
6009
- msgid "ZIP Code"
6010
- msgstr "Почтовый индекс"
6011
-
6012
- #: ../core/form-fields.php:446
6013
- msgctxt "form-fields-api"
6014
- msgid "Email Validator"
6015
- msgstr "Проверка электронного адреса"
6016
-
6017
- #: ../core/form-fields.php:447
6018
- msgctxt "form-fields-api"
6019
- msgid "URL Validator"
6020
- msgstr "Проверка адреса ссылки"
6021
-
6022
- #: ../core/form-fields.php:448
6023
- msgctxt "form-fields-api"
6024
- msgid "Whole Number Validator"
6025
- msgstr "Проверка целого числа"
6026
-
6027
- #: ../core/form-fields.php:449
6028
- msgctxt "form-fields-api"
6029
- msgid "Decimal Number Validator"
6030
- msgstr "Проверка дробного числа"
6031
-
6032
- #: ../core/form-fields.php:450
6033
- msgctxt "form-fields-api"
6034
- msgid "Date Validator"
6035
- msgstr "Проверка даты"
6036
-
6037
- #: ../core/form-fields.php:457
6038
- msgctxt "form-fields-api validation"
6039
- msgid "Field"
6040
- msgstr "Поле"
6041
-
6042
- #: ../core/form-fields.php:473 ../core/form-fields.php:477
6043
- #, php-format
6044
- msgctxt "form-fields-api validation"
6045
- msgid "%s is required."
6046
- msgstr "%s - обязательно."
6047
-
6048
- #: ../core/form-fields.php:486 ../core/form-fields.php:493
6049
- #, php-format
6050
- msgctxt "form-fields-api validation"
6051
- msgid "%s is badly formatted. Valid URL format required. Include http://"
6052
- msgstr ""
6053
- "%s - некорректно. Правильный адрес URL должен начинаться с http:// или https:"
6054
- "//"
6055
-
6056
- #: ../core/form-fields.php:507
6057
- #, php-format
6058
- msgctxt "form-fields-api validation"
6059
- msgid "%s is badly formatted. Valid Email format required."
6060
- msgstr "%s - некорректно. Требуется ввести правильный электронный адрес."
6061
-
6062
- #: ../core/form-fields.php:513
6063
- #, php-format
6064
- msgctxt "form-fields-api validation"
6065
- msgid "%s must be a number. Decimal values are not allowed."
6066
- msgstr "%s должно быть целым числом."
6067
-
6068
- #: ../core/form-fields.php:519
6069
- #, php-format
6070
- msgctxt "form-fields-api validation"
6071
- msgid "%s must be a number."
6072
- msgstr "%s должно быть числом."
6073
-
6074
- #: ../core/form-fields.php:532
6075
- #, php-format
6076
- msgctxt "form-fields-api validation"
6077
- msgid "%s must be in the format %s."
6078
- msgstr "%s должно быть в формате %s."
6079
-
6080
- #: ../core/form-fields.php:567
6081
- #, php-format
6082
- msgctxt "form-fields-api validation"
6083
- msgid "%s must be a valid date."
6084
- msgstr "%s должно быть корректной датой."
6085
-
6086
- #: ../core/form-fields.php:578
6087
- #, php-format
6088
- msgctxt "form-fields-api validation"
6089
- msgid "%s is invalid. Value most be one of %s."
6090
- msgstr "%s - не корректно. Значение должно быть одним из %s."
6091
-
6092
- #: ../core/themes.php:587
6093
- msgctxt "themes"
6094
- msgid "ZIP file is not a valid BD theme file."
6095
- msgstr "Файл ZIP - не является файлом темы плагина."
6096
-
6097
- #: ../core/themes.php:593
6098
- msgctxt "themes"
6099
- msgid "Could not create themes directory."
6100
- msgstr "Не удалось создать директорию для темы плагина."
6101
-
6102
- #: ../core/themes.php:601
6103
- #, php-format
6104
- msgctxt "themes"
6105
- msgid "Could not remove previous theme directory \"%s\"."
6106
- msgstr "Не удалось удалить предыдущую директорию темы \"%s\"."
6107
-
6108
- #: ../core/themes.php:607
6109
- msgctxt "themes"
6110
- msgid "Could not move new theme into theme directory."
6111
- msgstr "Не удалось переместить новую тему в директорию темы."
6112
-
6113
- #: ../core/view-listing-contact.php:48
6114
- msgctxt "contact-message"
6115
- msgid "Please enter your name."
6116
- msgstr "Пожалуйста введите Ваше имя."
6117
-
6118
- #: ../core/view-listing-contact.php:51
6119
- msgctxt "contact-message"
6120
- msgid "Please enter a valid email."
6121
- msgstr "Пожалуйста введите правильный электронный адрес."
6122
-
6123
- #: ../core/view-listing-contact.php:54
6124
- msgctxt "contact-message"
6125
- msgid "You did not enter a message."
6126
- msgstr "Вы не ввели текст в поле сообщения."
6127
-
6128
- #: ../core/view-listing-contact.php:57
6129
- msgctxt "contact-message"
6130
- msgid "The reCAPTCHA wasn't entered correctly."
6131
- msgstr "Код reCAPTCHA был введён неправильно."
6132
-
6133
- #: ../core/view-listing-contact.php:66
6134
- msgctxt "contact form"
6135
- msgid "Please <a>log in</a> to be able to send messages to the listing owner."
6136
- msgstr ""
6137
- "Пожалуйста <a>войдите в сайт</a> чтобы получить возможность отправить "
6138
- "сообщение владельцу бизнеса."
6139
-
6140
- #: ../core/view-listing-contact.php:85
6141
- msgctxt "contact form"
6142
- msgid "This contact form is temporarily disabled. Please try again later."
6143
- msgstr ""
6144
- "Эта контактная форма временно отключена. Попробуйте открыть её ещё раз "
6145
- "позднее."
6146
-
6147
- #: ../core/view-listing-contact.php:122
6148
- msgctxt "templates"
6149
- msgid "Contact listing owner"
6150
- msgstr "Свяжитесь с владельцем бизнеса"
6151
-
6152
- #: ../core/view-listing-contact.php:126
6153
- msgctxt "templates"
6154
- msgid "Send Message to listing owner"
6155
- msgstr "Послать сообщение автору записи"
6156
-
6157
- #: ../core/view-listing-contact.php:172
6158
- msgid "l F j, Y \\a\\t g:i a"
6159
- msgstr "l j F Y, \\a\\t H:i"
6160
-
6161
- #: ../core/view-listing-contact.php:193
6162
- msgctxt "contact-message"
6163
- msgid "There was a problem encountered. Your message has not been sent"
6164
- msgstr "Произошла ошибка, в результате чего Ваше сообщение не было послано"
6165
-
6166
- #: ../core/view-listing-contact.php:196
6167
- msgctxt "contact-message"
6168
- msgid "Return to listing."
6169
- msgstr "Вернуться к записям."
6170
-
6171
- #: ../core/widget-search.php:10
6172
- msgctxt "widgets"
6173
- msgid "Business Directory - Search"
6174
- msgstr "Справочник Услуг - Поиск"
6175
-
6176
- #: ../core/widget-search.php:11
6177
- msgctxt "widgets"
6178
- msgid "Displays a search form to look for Business Directory listings."
6179
- msgstr "Показывает форму поиска в Справочнике Услуг."
6180
-
6181
- #: ../core/widget-search.php:18
6182
- msgctxt "widgets"
6183
- msgid "Search the Business Directory"
6184
- msgstr "Поиск в Справочнике Услуг"
6185
-
6186
- #: ../core/widget-search.php:29
6187
- msgctxt "widgets"
6188
- msgid "Form Style:"
6189
- msgstr "Стиль формы:"
6190
-
6191
- #: ../core/widget-search.php:37
6192
- msgctxt "widgets"
6193
- msgid "Basic"
6194
- msgstr "Основное"
6195
-
6196
- #: ../core/widget-search.php:45
6197
- msgctxt "widgets"
6198
- msgid "Advanced"
6199
- msgstr "Расширенное"
6200
-
6201
- #: ../core/widget-search.php:49
6202
- msgctxt "widgets"
6203
- msgid "Search Fields (advanced mode):"
6204
- msgstr "Поля поиска (расширенный режим):"
6205
-
6206
- #: ../core/widget-search.php:50
6207
- msgctxt "widgets"
6208
- msgid "Display the following fields in the form."
6209
- msgstr "Показать следующие поля в форме."
6210
-
6211
- #: ../core/widget-search.php:102
6212
- msgctxt "widgets"
6213
- msgid "Search"
6214
- msgstr "Поиск"
6215
-
6216
- #: ../core/utils.php:106
6217
- msgctxt "utils"
6218
- msgid "POSTed data exceeds PHP config. maximum. See \"post_max_size\" directive."
6219
- msgstr ""
6220
- "Данные, переданные на сервер методом POST превышают максимальный размер для "
6221
- "PHP. Обратите внимание на параметр \"post_max_size\" в вашем файле php.ini."
6222
-
6223
- #: ../core/utils.php:159
6224
- #, php-format
6225
- msgctxt "utils"
6226
- msgid "File size (%s) exceeds maximum file size of %s"
6227
- msgstr "Размер файла (%s) превышает максимальный размер файла - %s"
6228
-
6229
- #: ../core/utils.php:167
6230
- #, php-format
6231
- msgctxt "utils"
6232
- msgid "File size (%s) is inferior to the required minimum file size of %s"
6233
- msgstr "Размер файла (%s) меньше, чем минимальный разрешённый размер - %s"
6234
-
6235
- #: ../core/utils.php:176 ../core/utils.php:183
6236
- #, php-format
6237
- msgctxt "utils"
6238
- msgid "File type \"%s\" is not allowed"
6239
- msgstr "Файл типа \"%s\" не допускается к загрузке"
6240
-
6241
- #: ../core/utils.php:190
6242
- msgctxt "utils"
6243
- msgid "Unkown error while uploading file."
6244
- msgstr "Неизвестная ошибка при загрузке файла."
6245
-
6246
- #: ../core/utils.php:209
6247
- msgctxt "utils"
6248
- msgid "Uploaded file is not an image"
6249
- msgstr "Загруженный файл не является изображением."
6250
-
6251
- #: ../core/utils.php:218
6252
- #, php-format
6253
- msgctxt "utils"
6254
- msgid "Image width (%s px) is inferior to minimum required width of %s px."
6255
- msgstr "Ширина изображения меньше минимально разрешённой ширины - %s пиксел."
6256
-
6257
- #: ../core/utils.php:224
6258
- #, php-format
6259
- msgctxt "utils"
6260
- msgid "Image height (%s px) is inferior to minimum required height of %s px."
6261
- msgstr "Высота изображения меньше минимально разрешённой высоты - %s пиксел."
6262
-
6263
- #: ../core/utils.php:230
6264
- #, php-format
6265
- msgctxt "utils"
6266
- msgid "Image width (%s px) is greater than maximum allowed width of %s px."
6267
- msgstr ""
6268
- "Ширина изображения (%s пиксел) больше чем разрешённая максимальная ширина - "
6269
- "%s пиксел."
6270
-
6271
- #: ../core/utils.php:236
6272
- #, php-format
6273
- msgctxt "utils"
6274
- msgid "Image height (%s px) is greater than maximum required height of %s px."
6275
- msgstr ""
6276
- "Высота изображения (%s пиксел) больше чем разрешённая максимальная высота - "
6277
- "%s пиксел."
6278
-
6279
- #: ../core/utils.php:250
6280
- msgctxt "utils"
6281
- msgid "Error while uploading file"
6282
- msgstr "Ошибка при загрузке файла"
6283
-
6284
- #: ../core/widget-featured-listings.php:11
6285
- msgctxt "widgets"
6286
- msgid "Business Directory - Featured Listings"
6287
- msgstr "Справочник Услуг - Особые записи"
6288
-
6289
- #: ../core/widget-featured-listings.php:12
6290
- msgctxt "widgets"
6291
- msgid "Displays a list of the featured/sticky listings in the directory."
6292
- msgstr "Показывает список особых записей справочника."
6293
-
6294
- #: ../core/widget-featured-listings.php:14
6295
- msgctxt "widgets"
6296
- msgid "Featured Listings"
6297
- msgstr "Особые записи"
6298
-
6299
- #: ../core/widget-featured-listings.php:23
6300
- msgctxt "widgets"
6301
- msgid "Display listings in random order"
6302
- msgstr "Показать записи в случайном порядке"
6303
-
6304
- #: ../core/class-payment.php:221
6305
- #, php-format
6306
- msgctxt "listings"
6307
- msgid "Fee \"%s\" for category \"%s\""
6308
- msgstr "Тариф \"%s\" для рубрики \"%s\""
6309
-
6310
- #: ../core/view-submit-listing.php:29
6311
- msgctxt "templates"
6312
- msgid ""
6313
- "There are no categories assigned to the business directory yet. You need to "
6314
- "assign some categories to the business directory. Only admins can see this "
6315
- "message. Regular users are seeing a message that they cannot add their "
6316
- "listing at this time. Listings cannot be added until you assign categories "
6317
- "to the business directory."
6318
- msgstr ""
6319
- "В справочнике пока нет ни одной рубрики. Вам необходимо задать несколько "
6320
- "рубрик Вашему справочнику.<br /><br />Это сообщение показывается только "
6321
- "администрации. Обычные пользователи видят другое сообщение: невозможно "
6322
- "добавить новые записи. Записи не могут быть добавлены пока не будут созданы "
6323
- "рубрики."
6324
-
6325
- #: ../core/view-submit-listing.php:31
6326
- msgctxt "templates"
6327
- msgid ""
6328
- "Your listing cannot be added at this time. Please try again later. If this "
6329
- "is not the first time you see this warning, please ask the site "
6330
- "administrator to set up one or more categories inside the Directory."
6331
- msgstr ""
6332
- "Ваша запись не может сейчас быть добавлена, попробуйте ещё раз позже. Если "
6333
- "Вы видите эту ошибку не впервые, то сообщите администрации сайта, что "
6334
- "требуется создать рубрики справочника."
6335
-
6336
- #: ../core/view-submit-listing.php:43
6337
- msgctxt "templates"
6338
- msgid "You are not authorized to edit this listing."
6339
- msgstr "Вам не разрешено изменять эту запись."
6340
-
6341
- #: ../core/view-submit-listing.php:58
6342
- msgctxt "templates"
6343
- msgid "Edit Your Listing"
6344
- msgstr "Изменить Вашу запись"
6345
-
6346
- #: ../core/view-submit-listing.php:58
6347
- msgctxt "templates"
6348
- msgid "Submit A Listing"
6349
- msgstr "Добавить запись"
6350
-
6351
- #: ../core/view-submit-listing.php:65
6352
- msgctxt "templates"
6353
- msgid "You are logged in as an administrator. Any payment steps will be skipped."
6354
- msgstr "Вы вошли на сайт как Администратор. Все шаги оплаты будут пропущены."
6355
-
6356
- #: ../core/view-submit-listing.php:199
6357
- #, php-format
6358
- msgctxt "templates"
6359
- msgid "Please select a fee option for the \"%s\" category."
6360
- msgstr "Пожалуйста выберите тариф для рубрики \"%s\"."
6361
-
6362
- #: ../core/view-submit-listing.php:267
6363
- msgctxt "templates"
6364
- msgid "Please agree to the Terms and Conditions."
6365
- msgstr "Пожалуйста примите наши Условия и Положения."
6366
-
6367
- #: ../core/view-submit-listing.php:273
6368
- msgctxt "templates"
6369
- msgid "The reCAPTCHA wasn't entered correctly."
6370
- msgstr "Код reCAPTCHA был введён неправильно."
6371
-
6372
- #: ../core/view-submit-listing.php:290
6373
- msgctxt "templates"
6374
- msgid "Read our Terms and Conditions"
6375
- msgstr "Прочитайте наши Условия и Положения"
6376
-
6377
- #: ../core/view-submit-listing.php:295
6378
- msgctxt "templates"
6379
- msgid "Terms and Conditions:"
6380
- msgstr "Условия и Положения:"
6381
-
6382
- #: ../core/view-submit-listing.php:306
6383
- msgctxt "templates"
6384
- msgid "I agree to the Terms and Conditions"
6385
- msgstr "Я согласен с Условиями и Положениями"
6386
-
6387
- #: ../core/view-submit-listing.php:443
6388
- #, php-format
6389
- msgctxt "listings"
6390
- msgid "Fee \"%s\" for category \"%s\"%s"
6391
- msgstr "Тариф \"%s\" для рубрики \"%s\"%s"
6392
-
6393
- #: ../core/view-submit-listing.php:446
6394
- msgctxt "listings"
6395
- msgid "(recurring)"
6396
- msgstr "(повторяющееся)"
6397
-
6398
- #: ../core/view-submit-listing.php:489
6399
- msgctxt "submit_state"
6400
- msgid "Invalid submit state."
6401
- msgstr "Некорректная дата создания."
6402
-
6403
- #: ../core/widget-latest-listings.php:11
6404
- msgctxt "widgets"
6405
- msgid "Business Directory - Latest Listings"
6406
- msgstr "Справочник Услуг - Новые Записи"
6407
-
6408
- #: ../core/widget-latest-listings.php:12
6409
- msgctxt "widgets"
6410
- msgid "Displays a list of the latest listings in the Business Directory."
6411
- msgstr "Показывает список последних записей в Справочнике Услуг"
6412
-
6413
- #: ../core/widget-latest-listings.php:14
6414
- msgctxt "widgets"
6415
- msgid "Latest Listings"
6416
- msgstr "Новые записи"
6417
-
6418
- #: ../core/class-listing-upgrade-api.php:16
6419
- msgctxt "listings-api"
6420
- msgid "Normal Listing"
6421
- msgstr "Обычная запись"
6422
-
6423
- #: ../core/class-listing-upgrade-api.php:20
6424
- msgctxt "listings-api"
6425
- msgid "Featured Listing"
6426
- msgstr "Особая запись"
6427
-
6428
- #: ../core/helpers/class-themes-updater.php:126
6429
- msgctxt "themes"
6430
- msgid "Updating theme..."
6431
- msgstr "Тема обновляется..."
6432
-
6433
- #: ../core/helpers/class-themes-updater.php:127
6434
- msgctxt "themes"
6435
- msgid "Theme updated."
6436
- msgstr "Тема обновлена."
6437
-
6438
- #: ../core/helpers/class-themes-updater.php:129
6439
- #, php-format
6440
- msgctxt "themes"
6441
- msgid "New version available (<b>%s</b>). <a>Update now.</a>"
6442
- msgstr "Доступна новая версия - <b>%s</b>. <a>Обновите сейчас</a>."
6443
-
6444
- #: ../core/helpers/class-themes-updater.php:157
6445
- #, php-format
6446
- msgctxt "themes"
6447
- msgid "Could not update theme: %s"
6448
- msgstr "Не удалось обновить тему: %s"
6449
-
6450
- #: ../core/helpers/class-themes-updater.php:163
6451
- msgctxt "themes"
6452
- msgid "Theme was updated sucessfully."
6453
- msgstr "Тема была успешно обновлена."
6454
-
6455
- #: ../core/helpers/class-fs.php:112
6456
- #, php-format
6457
- msgctxt "fs helper"
6458
- msgid "Destination dir \"%s\" is not writable."
6459
- msgstr "Директория назначения \"%s\" не доступна для записи."
6460
-
6461
- #: ../core/fieldtypes/class-fieldtypes-textfield.php:5
6462
- msgctxt "form-fields api"
6463
- msgid "Textfield"
6464
- msgstr "Текстовое поле"
6465
-
6466
- #: ../core/fieldtypes/class-fieldtypes-textfield.php:41
6467
- msgctxt "form-fields api"
6468
- msgid "Format 01/31/1969"
6469
- msgstr "Формат ММ/ДД/ГГГГ"
6470
-
6471
- #: ../core/fieldtypes/class-fieldtypes-linkedin.php:6
6472
- msgctxt "form-fields api"
6473
- msgid "Social Site (LinkedIn profile)"
6474
- msgstr "Адрес страницы на сайте LinkedIn"
6475
-
6476
- #: ../core/fieldtypes/class-fieldtypes-linkedin.php:21
6477
- msgctxt "form-fields api"
6478
- msgid "Put only the Company ID here. Links will not work."
6479
- msgstr "Сюда можно поместить только номер компании; ссылки здесь не будут работать."
6480
-
6481
- #: ../core/fieldtypes/class-fieldtypes-date.php:9
6482
- msgctxt "form-fields api"
6483
- msgid "Date Field"
6484
- msgstr "Поле даты"
6485
-
6486
- #: ../core/fieldtypes/class-fieldtypes-date.php:32
6487
- #, php-format
6488
- msgid "%s (ex. %s)"
6489
- msgstr "%s (например %s)"
6490
-
6491
- #: ../core/fieldtypes/class-fieldtypes-date.php:36
6492
- msgctxt "form-fields api"
6493
- msgid "Date Format"
6494
- msgstr "Формат даты"
6495
-
6496
- #: ../core/fieldtypes/class-fieldtypes-date.php:61
6497
- #, php-format
6498
- msgctxt "date field"
6499
- msgid "%s must be in the format %s."
6500
- msgstr "Значение \"%s\" должно соответствовать формату \"%s\"."
6501
-
6502
- #: ../core/fieldtypes/class-fieldtypes-date.php:64
6503
- #, php-format
6504
- msgctxt "date field"
6505
- msgid "%s must be a valid date."
6506
- msgstr "Значение \"%s\" должно быть корректной датой."
6507
-
6508
- #: ../core/fieldtypes/class-fieldtypes-facebook.php:6
6509
- msgctxt "form-fields api"
6510
- msgid "Social Site (Facebook page)"
6511
- msgstr "Адрес страницы на сайте Facebook"
6512
-
6513
- #: ../core/fieldtypes/class-fieldtypes-image.php:6
6514
- msgctxt "form-fields api"
6515
- msgid "Image (file upload)"
6516
- msgstr "Изображение (прикреплённый файл)"
6517
-
6518
- #: ../core/fieldtypes/class-fieldtypes-image.php:38
6519
- msgctxt "form-fields-api"
6520
- msgid "Remove"
6521
- msgstr "Удалить"
6522
-
6523
- #: ../core/fieldtypes/class-fieldtypes-multiselect.php:6
6524
- msgctxt "form-fields api"
6525
- msgid "Multiple select list"
6526
- msgstr "Список множественного выбора"
6527
-
6528
- #: ../core/fieldtypes/class-fieldtypes-multiselect.php:11
6529
- msgctxt "form-fields api"
6530
- msgid "Multiselect List"
6531
- msgstr "Список множественного выбора"
6532
-
6533
- #: ../core/fieldtypes/class-fieldtypes-textarea.php:6
6534
- msgctxt "form-fields api"
6535
- msgid "Textarea"
6536
- msgstr "Текстовый блок"
6537
-
6538
- #: ../core/fieldtypes/class-fieldtypes-textarea.php:50
6539
- msgctxt "form-fields admin"
6540
- msgid "Allow HTML input for this field?"
6541
- msgstr "Разрегить HTML коды в этом поле?"
6542
-
6543
- #: ../core/fieldtypes/class-fieldtypes-textarea.php:54
6544
- msgctxt "form-fields admin"
6545
- msgid "Allow WordPress shortcodes in this field?"
6546
- msgstr "Разрешить шорт-коды WordPress в этом поле?"
6547
-
6548
- #: ../core/fieldtypes/class-fieldtypes-textarea.php:57
6549
- msgctxt "form-fields admin"
6550
- msgid "Display a WYSIWYG editor on the frontend?"
6551
- msgstr "Использовать визуальный редактор на сайте?"
6552
-
6553
- #: ../core/fieldtypes/class-fieldtypes-textarea.php:60
6554
- msgctxt "form-fields admin"
6555
- msgid ""
6556
- "<b>Warning:</b> Users can use this feature to get around your image limits "
6557
- "in fee plans."
6558
- msgstr ""
6559
- "<b>ВНИМАНИЕ:</b> Авторы могут использовать этот режим для обхода ограничения "
6560
- "на количество изображений в бесплатном режиме."
6561
-
6562
- #: ../core/fieldtypes/class-fieldtypes-textarea.php:61
6563
- msgctxt "form-fields admin"
6564
- msgid "Allow images in WYSIWYG editor?"
6565
- msgstr "Разрешить изображения в визуальном редакторе?"
6566
-
6567
- #: ../core/fieldtypes/class-fieldtypes-textarea.php:64
6568
- msgctxt "form-fields admin"
6569
- msgid ""
6570
- "<b>Advanced users only!</b> Unless you've been told to change this, don't "
6571
- "switch it unless you know what you're doing."
6572
- msgstr ""
6573
- "<b>Только для профессионалов!</b> Если только Вам не было об этом сказано, "
6574
- "не включайте это, если не знаете, что это делает."
6575
-
6576
- #: ../core/fieldtypes/class-fieldtypes-textarea.php:65
6577
- msgctxt "form-fields admin"
6578
- msgid "Apply \"the_content\" filter before displaying this field?"
6579
- msgstr "Применить фильтр \"the_content\" перед отображением поля?"
6580
-
6581
- #: ../core/fieldtypes/class-fieldtypes-twitter.php:6
6582
- msgctxt "form-fields api"
6583
- msgid "Social Site (Twitter handle)"
6584
- msgstr "Имя на сайте Twitter"
6585
-
6586
- #: ../core/fieldtypes/class-fieldtypes-checkbox.php:9
6587
- msgctxt "form-fields api"
6588
- msgid "Checkbox"
6589
- msgstr "Кнопка выбора"
6590
-
6591
- #: ../core/fieldtypes/class-fieldtypes-checkbox.php:72 ../core/fieldtypes/class-
6592
- #: fieldtypes-select.php:134 ../core/fieldtypes/class-fieldtypes-radiobutton.php:68
6593
- msgctxt "form-fields admin"
6594
- msgid "Field Options (for select lists, radio buttons and checkboxes)."
6595
- msgstr "Параметры поля (для выбранных списков и кнопок)."
6596
-
6597
- #: ../core/fieldtypes/class-fieldtypes-checkbox.php:93 ../core/fieldtypes/class-
6598
- #: fieldtypes-select.php:162 ../core/fieldtypes/class-fieldtypes-radiobutton.php:87
6599
- msgctxt "form-fields admin"
6600
- msgid "Field list of options is required."
6601
- msgstr "Список вариантов поля обязателен."
6602
-
6603
- #: ../core/fieldtypes/class-fieldtypes-select.php:8
6604
- msgctxt "form-fields api"
6605
- msgid "Select List"
6606
- msgstr "Список выбора"
6607
-
6608
- #: ../core/fieldtypes/class-fieldtypes-select.php:64
6609
- msgctxt "form-fields-api category-select"
6610
- msgid "-- Choose Terms --"
6611
- msgstr "-- Выберите --"
6612
-
6613
- #: ../core/fieldtypes/class-fieldtypes-select.php:64 ../core/fieldtypes/class-
6614
- #: fieldtypes-select.php:99
6615
- msgctxt "form-fields-api category-select"
6616
- msgid "-- Choose One --"
6617
- msgstr "-- Выберите --"
6618
-
6619
- #: ../core/fieldtypes/class-fieldtypes-select.php:145
6620
- msgctxt "form-fields admin"
6621
- msgid "Allow empty selection on search?"
6622
- msgstr "Разрешить поиск по пустой строке?"
6623
-
6624
- #: ../core/fieldtypes/class-fieldtypes-radiobutton.php:9
6625
- msgctxt "form-fields api"
6626
- msgid "Radio button"
6627
- msgstr "Радио кнопка"
6628
-
6629
- #: ../core/fieldtypes/class-fieldtypes-url.php:5
6630
- msgctxt "form-fields api"
6631
- msgid "URL Field"
6632
- msgstr "Поле адреса URL"
6633
-
6634
- #: ../core/fieldtypes/class-fieldtypes-url.php:22
6635
- msgctxt "form-fields admin"
6636
- msgid "Open link in a new window?"
6637
- msgstr "Открыть ссылку в новом окне?"
6638
-
6639
- #: ../core/fieldtypes/class-fieldtypes-url.php:25
6640
- msgctxt "form-fields admin"
6641
- msgid "Use rel=\"nofollow\" when displaying the link?"
6642
- msgstr "Использовать \"rel=nofollow\" при отображении ссылки?"
6643
-
6644
- #: ../core/fieldtypes/class-fieldtypes-url.php:134
6645
- msgctxt "form-fields api"
6646
- msgid "URL:"
6647
- msgstr "Ссылка:"
6648
-
6649
- #: ../core/fieldtypes/class-fieldtypes-url.php:141
6650
- msgctxt "form-fields api"
6651
- msgid "Link Text (optional):"
6652
- msgstr "Текст ссылки (не обязательно)"
6653
-
6654
- msgid "Business Directory Plugin - AJAX Compatibility Module"
6655
- msgstr "Плагин Справочник Услуг - Модуль совместимости с AJAX"
6656
-
6657
- #: ../core/compatibility/deprecated.php:144
6658
- msgid "View"
6659
- msgstr "Открыть"
6660
-
6661
- #: ../core/compatibility/deprecated.php:147
6662
- msgid "Edit"
6663
- msgstr "Изменить"
6664
-
6665
- #: ../core/compatibility/deprecated.php:147
6666
- msgid "Delete"
6667
- msgstr "Удалить"
6668
-
6669
- #: ../core/compatibility/deprecated.php:160
6670
- msgid "Upgrade Listing"
6671
- msgstr "Поднять статус записи"
6672
-
6673
- #: ../core/compatibility/class-navxt-integration.php:159
6674
- msgctxt "navxt"
6675
- msgid "Submit Listing"
6676
- msgstr "Добавить"
6677
-
6678
- #: ../core/compatibility/class-navxt-integration.php:163
6679
- msgctxt "navxt"
6680
- msgid "Edit Listing"
6681
- msgstr "Изменить"
6682
-
6683
- #: ../core/compatibility/class-navxt-integration.php:167
6684
- msgctxt "navxt"
6685
- msgid "Search"
6686
- msgstr "Поиск"
1
+ msgid ""
2
+ msgstr ""
3
+ "Project-Id-Version: Business Directory Plugin 3.6.11\n"
4
+ "Report-Msgid-Bugs-To: http://wordpress.org/tag/business-directory-plugin\n"
5
+ "POT-Creation-Date: 2016-12-13 23:12:36+00:00\n"
6
+ "PO-Revision-Date: Mon Jan 11 2016 23:30:49 GMT-0800 (Pacific Standard Time)\n"
7
+ "Last-Translator: Mick Levin <mikhaillevin@hotmail.com>\n"
8
+ "Language-Team: BD Team <support@businessdirectoryplugin.com>\n"
9
+ "Language: Russian\n"
10
+ "MIME-Version: 1.0\n"
11
+ "Content-Type: text/plain; charset=UTF-8\n"
12
+ "Content-Transfer-Encoding: 8bit\n"
13
+ "Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10 >= 2 && n"
14
+ "%10<=4 &&(n%100<10||n%100 >= 20)? 1 : 2)\n"
15
+ "X-Poedit-SourceCharset: UTF-8\n"
16
+ "X-Generator: Loco - https://localise.biz/\n"
17
+ "X-Poedit-Basepath: .\n"
18
+ "X-Poedit-SearchPath-0: ../../plugins/business-directory-plugin\n"
19
+ "X-Poedit-KeywordsList: _:1;gettext:1;dgettext:2;ngettext:1,2;dngettext:2,3;"
20
+ "__:1;_e:1;_c:1;_n:1,2;_n_noop:1,2;_nc:1,2;__ngettext:1,2;__ngettext_noop:1,2;"
21
+ "_x:1,2c;_ex:1,2c;_nx:1,2,4c;_nx_noop:1,2,3c;_n_js:1,2;_nx_js:1,2,3c;"
22
+ "esc_attr__:1;esc_html__:1;esc_attr_e:1;esc_html_e:1;esc_attr_x:1,2c;"
23
+ "esc_html_x:1,2c;comments_number_link:2,3;t:1;st:1;trans:1;transChoice:1,2\n"
24
+ "X-Loco-Target-Locale: ru_RU\n"
25
+
26
+ #: admin/class-admin-listings.php:40
27
+ msgctxt "admin category filter"
28
+ msgid "All categories"
29
+ msgstr "Все рубрики"
30
+
31
+ #: admin/class-admin-listings.php:133
32
+ msgctxt "admin listings"
33
+ msgid ""
34
+ "This listing doesn't have any category assigned. At least one category (and "
35
+ "its respective fee) is required in order to determine the features available "
36
+ "to this listing, as well as handling renewals."
37
+ msgstr ""
38
+
39
+ #: admin/class-admin-listings.php:138
40
+ msgid "Listing Information"
41
+ msgstr "Информация о бизнесе"
42
+
43
+ #: admin/class-admin-listings.php:145
44
+ msgctxt "admin"
45
+ msgid "Listing Fields / Images"
46
+ msgstr "Поля и Изображения записи"
47
+
48
+ #: admin/class-admin-listings.php:156
49
+ msgctxt "admin"
50
+ msgid "Categories"
51
+ msgstr "Рубрики"
52
+
53
+ #: admin/class-admin-listings.php:157
54
+ msgid "Payment Status"
55
+ msgstr "Статус оплаты"
56
+
57
+ #: admin/class-admin-listings.php:158
58
+ msgid "Featured (Sticky) Status"
59
+ msgstr "Статус \"Особая\""
60
+
61
+ #: admin/class-admin-listings.php:189
62
+ msgctxt "admin"
63
+ msgid "(Listing expired in this category)"
64
+ msgstr "(В этой рубрике запись истекла)"
65
+
66
+ #: admin/class-admin-listings.php:207 admin/class-admin-listings.php:290
67
+ msgid "Paid"
68
+ msgstr "Оплачено"
69
+
70
+ #: admin/class-admin-listings.php:212
71
+ msgid "Mark as"
72
+ msgstr "Помечено как"
73
+
74
+ #: admin/class-admin-listings.php:221 admin/class-admin-listings.php:300
75
+ msgid "Pending Upgrade"
76
+ msgstr "Ожидается подтверждение"
77
+
78
+ #: admin/class-admin-listings.php:229 admin/listing-metabox.php:70
79
+ msgid "Upgrade to %s"
80
+ msgstr "Поднять статус до %s"
81
+
82
+ #: admin/class-admin-listings.php:236 admin/listing-metabox.php:77
83
+ msgid "Downgrade to %s"
84
+ msgstr "Опустить статус до %s"
85
+
86
+ #: admin/class-admin-listings.php:239 admin/class-admin-listings.php:418
87
+ msgctxt "admin actions"
88
+ msgid "Upgrade to Featured"
89
+ msgstr "Поднять статус до Особой"
90
+
91
+ #: admin/class-admin-listings.php:295
92
+ msgid "Unpaid"
93
+ msgstr "Не оплачено"
94
+
95
+ #: admin/class-admin-listings.php:305
96
+ msgctxt "admin"
97
+ msgid "Expired"
98
+ msgstr "Истекло"
99
+
100
+ #: admin/class-admin-listings.php:354
101
+ msgctxt "admin actions"
102
+ msgid "Edit Listing"
103
+ msgstr "Изменить запись"
104
+
105
+ #: admin/class-admin-listings.php:357
106
+ msgctxt "admin actions"
107
+ msgid "Delete Listing"
108
+ msgstr "Удалить запись"
109
+
110
+ #: admin/class-admin-listings.php:416
111
+ msgctxt "admin actions"
112
+ msgid "Publish Listing"
113
+ msgstr "Опубликовать запись"
114
+
115
+ #: admin/class-admin-listings.php:419
116
+ msgctxt "admin actions"
117
+ msgid "Downgrade to Normal"
118
+ msgstr "Опустить статус до Обычная"
119
+
120
+ #: admin/class-admin-listings.php:421
121
+ msgctxt "admin actions"
122
+ msgid "Mark as Paid"
123
+ msgstr "Пометить как оплачено"
124
+
125
+ #: admin/class-admin-listings.php:423
126
+ msgctxt "admin actions"
127
+ msgid "Renew Listing"
128
+ msgstr "Продлить запись"
129
+
130
+ #: admin/class-admin.php:102
131
+ msgid ""
132
+ "Preview is only available after you've saved the first draft. This is due\n"
133
+ "to how WordPress stores the data."
134
+ msgstr ""
135
+
136
+ #: admin/class-admin.php:135
137
+ msgctxt "drip pointer"
138
+ msgid ""
139
+ "Find out how to create a compelling, thriving business directory from "
140
+ "scratch in this ridiculously actionable (and FREE) 5-part email course. Get "
141
+ "a FREE premium module just for signing up."
142
+ msgstr ""
143
+ "Узнайте как можно создать убедительный и процветающий справочник с нуля в "
144
+ "этом невероятно действенном (и БЕСПЛАТНОМ) уроке из 5 частей, отправляемом "
145
+ "по электронной почте. Если Вы подпишитесь на этот урок, то Вы получите "
146
+ "БЕСПЛАТНО один платный модуль."
147
+
148
+ #: admin/class-admin.php:137
149
+ msgctxt "drip pointer"
150
+ msgid "Email Address:"
151
+ msgstr "Электронный адрес:"
152
+
153
+ #: admin/class-admin.php:143
154
+ msgctxt "drip pointer"
155
+ msgid "Want to know the Secrets of Building an Awesome Business Directory?"
156
+ msgstr "Хотите узнать секрет создания классного справочника услуг?"
157
+
158
+ #: admin/class-admin.php:145
159
+ msgctxt "drip pointer"
160
+ msgid "Yes, please!"
161
+ msgstr "Да, конечно!"
162
+
163
+ #: admin/class-admin.php:147
164
+ msgctxt "drip pointer"
165
+ msgid "No, thanks"
166
+ msgstr "Нет, спасибо"
167
+
168
+ #: admin/class-admin.php:164
169
+ msgctxt "admin"
170
+ msgid "Business Directory"
171
+ msgstr "Справочник услуг"
172
+
173
+ #: admin/class-admin.php:175
174
+ msgctxt "admin"
175
+ msgid "You're all set. Visit your new <a>Business Directory</a> page."
176
+ msgstr ""
177
+ "Всё настроено. Откройте страницу Вашего нового <a>Справочника услуг</a> "
178
+
179
+ #: admin/class-admin.php:196
180
+ msgctxt "drip pointer"
181
+ msgid "Invalid e-mail address."
182
+ msgstr "Некорректный электронный адрес."
183
+
184
+ #: admin/class-admin.php:230
185
+ msgctxt "admin menu"
186
+ msgid "Business Directory Admin"
187
+ msgstr "Управление справочником"
188
+
189
+ #: admin/class-admin.php:231
190
+ #, fuzzy
191
+ msgctxt "admin menu"
192
+ msgid "Dir. Admin"
193
+ msgstr "Управление Справочником"
194
+
195
+ #: admin/class-admin.php:231
196
+ msgctxt "admin menu"
197
+ msgid "Directory Admin"
198
+ msgstr "Управление Справочником"
199
+
200
+ #: admin/class-admin.php:237 admin/class-admin.php:238
201
+ msgctxt "admin menu"
202
+ msgid "Add New Listing"
203
+ msgstr "Добавить Запись"
204
+
205
+ #: admin/class-admin.php:243 admin/class-admin.php:244
206
+ msgctxt "admin menu"
207
+ msgid "Manage Options"
208
+ msgstr "Настройки"
209
+
210
+ #: admin/class-admin.php:249 admin/class-admin.php:250
211
+ msgctxt "admin menu"
212
+ msgid "Manage Fees"
213
+ msgstr "Тарифы"
214
+
215
+ #: admin/class-admin.php:255 admin/class-admin.php:256
216
+ msgctxt "admin menu"
217
+ msgid "Manage Form Fields"
218
+ msgstr "Форма"
219
+
220
+ #: admin/class-admin.php:261 admin/class-admin.php:262
221
+ msgctxt "admin menu"
222
+ msgid "Listings"
223
+ msgstr "Записи"
224
+
225
+ #: admin/class-admin.php:276 admin/class-admin.php:277
226
+ msgctxt "admin menu"
227
+ msgid "CSV Import"
228
+ msgstr "Импорт из CSV"
229
+
230
+ #: admin/class-admin.php:282 admin/class-admin.php:283
231
+ msgctxt "admin menu"
232
+ msgid "CSV Export"
233
+ msgstr "Экспорт в CSV"
234
+
235
+ #: admin/class-admin.php:288 admin/class-admin.php:289
236
+ msgctxt "admin menu"
237
+ msgid "Debug"
238
+ msgstr "Отладка"
239
+
240
+ #: admin/class-admin.php:298
241
+ msgctxt "admin menu"
242
+ msgid "Main Menu"
243
+ msgstr "Панель управления"
244
+
245
+ #: admin/class-admin.php:309
246
+ msgctxt "admin menu"
247
+ msgid "Uninstall Business Directory Plugin"
248
+ msgstr "Удалить плагин Справочника Услуг"
249
+
250
+ #: admin/class-admin.php:310
251
+ msgctxt "admin menu"
252
+ msgid "Uninstall"
253
+ msgstr "Удалить"
254
+
255
+ #: admin/class-admin.php:424
256
+ #: admin/templates/listing-metabox-categories.tpl.php:69
257
+ msgctxt "admin infometabox"
258
+ msgid "never"
259
+ msgstr "никогда"
260
+
261
+ #: admin/class-admin.php:518
262
+ #, fuzzy
263
+ msgctxt "admin"
264
+ msgid "Dismiss this notice."
265
+ msgstr "Убрать это предупреждение"
266
+
267
+ #: admin/class-admin.php:546
268
+ msgctxt "admin"
269
+ msgid "The listing has been published."
270
+ msgid_plural "The listings have been published."
271
+ msgstr[0] "Запись была опубликована."
272
+ msgstr[1] "Записи были опубликованы."
273
+
274
+ #: admin/class-admin.php:564
275
+ msgctxt "admin"
276
+ msgid "The listing status has been set as paid."
277
+ msgid_plural "The listings status has been set as paid."
278
+ msgstr[0] "Статус записи помечен как оплачено."
279
+ msgstr[1] "Статусы записей помечены как оплачены."
280
+
281
+ #: admin/class-admin.php:570
282
+ msgctxt "admin"
283
+ msgid ""
284
+ "Only invoices containing non-recurring items were marked as paid. Please "
285
+ "review the <a>Transactions</a> tab for the listing to manage recurring items "
286
+ "or check the gateway's backend."
287
+ msgid_plural ""
288
+ "Only invoices containing non-recurring items were marked as paid. Recurring "
289
+ "payments have to be managed through the gateway."
290
+ msgstr[0] ""
291
+ msgstr[1] ""
292
+ msgstr[2] ""
293
+
294
+ #: admin/class-admin.php:589
295
+ msgctxt "admin"
296
+ msgid "The listing has been modified."
297
+ msgid_plural "The listings have been modified."
298
+ msgstr[0] "Запись была изменена."
299
+ msgstr[1] "Записи были изменены."
300
+
301
+ #: admin/class-admin.php:602
302
+ msgctxt "admin"
303
+ msgid "The listing has been upgraded."
304
+ msgid_plural "The listings have been upgraded."
305
+ msgstr[0] "Статус записи был поднят."
306
+ msgstr[1] "Статус записей был поднят."
307
+
308
+ #: admin/class-admin.php:614
309
+ msgctxt "admin"
310
+ msgid "The listing has been downgraded."
311
+ msgid_plural "The listings have been downgraded."
312
+ msgstr[0] "Статус записи был опущен."
313
+ msgstr[1] "Статусы записей были опущены."
314
+
315
+ #: admin/class-admin.php:625
316
+ msgctxt "admin payments"
317
+ msgid ""
318
+ "The payment status was not changed. Recurring payments can't be manually "
319
+ "approved. Please check your gateway's backend to see if the payment really "
320
+ "went through."
321
+ msgstr ""
322
+
323
+ #: admin/class-admin.php:630
324
+ msgctxt "admin"
325
+ msgid "The transaction has been approved."
326
+ msgstr "Транзакция была утверждена."
327
+
328
+ #: admin/class-admin.php:640
329
+ msgctxt "admin"
330
+ msgid "The transaction has been rejected."
331
+ msgstr "Транзакция была отвергнута."
332
+
333
+ #: admin/class-admin.php:646
334
+ msgctxt "admin"
335
+ msgid "The fee was successfully assigned."
336
+ msgstr "Тариф был успешно назначен."
337
+
338
+ #: admin/class-admin.php:655
339
+ msgctxt "admin"
340
+ msgid "Listing was renewed."
341
+ msgid_plural "Listings were renewed."
342
+ msgstr[0] "Запись была продлена."
343
+ msgstr[1] "Записи были продлены."
344
+
345
+ #: admin/class-admin.php:662
346
+ msgctxt "admin"
347
+ msgid "Renewal email sent."
348
+ msgstr "Оповещение о продлении было отправлено по электронной почте."
349
+
350
+ #: admin/class-admin.php:696
351
+ msgctxt "admin category id"
352
+ msgid "ID"
353
+ msgstr ""
354
+
355
+ #: admin/class-admin.php:698 admin/class-admin.php:704
356
+ msgctxt "admin"
357
+ msgid "Listing Count"
358
+ msgstr "Количество записей"
359
+
360
+ #: admin/class-admin.php:813
361
+ msgctxt "admin"
362
+ msgid ""
363
+ "<b>Business Directory Plugin</b> requires fields with the following "
364
+ "associations in order to work correctly: <b>%s</b>."
365
+ msgstr ""
366
+ "<b>Плагин Справочник Услуг</b> для нормальной работы требует наличие полей "
367
+ "со следующими ассоциациям: <b>%s</b>."
368
+
369
+ #: admin/class-admin.php:815
370
+ msgctxt "admin"
371
+ msgid ""
372
+ "<b>Business Directory Plugin</b> requires a field with a <b>%s</b> "
373
+ "association in order to work correctly."
374
+ msgstr ""
375
+ "<b>Плагин Справочник Услуг</b> для корректной работы требует наличия поля, "
376
+ "имеющего ассоциацию с <b>%s</b>."
377
+
378
+ #: admin/class-admin.php:819
379
+ msgctxt "admin"
380
+ msgid ""
381
+ "You can create these custom fields by yourself inside \"Manage Form Fields\" "
382
+ "or let Business Directory do this for you automatically."
383
+ msgstr ""
384
+ "Вы можете сами создать эти поля в разделе \"Управление / Форма\", или "
385
+ "позвольте плагину сделать это автоматически."
386
+
387
+ #: admin/class-admin.php:823
388
+ msgctxt "admin"
389
+ msgid "Go to \"Manage Form Fields\""
390
+ msgstr "Перейти в раздел \"Управление / Форма\""
391
+
392
+ #: admin/class-admin.php:826
393
+ msgctxt "admin"
394
+ msgid "Create these required fields for me"
395
+ msgstr "Создать эти поля автоматически"
396
+
397
+ #: admin/class-admin.php:835
398
+ msgctxt "admin"
399
+ msgid ""
400
+ "<b>Business Directory Plugin</b> requires a page with the "
401
+ "<tt>[businessdirectory]</tt> shortcode to function properly."
402
+ msgstr ""
403
+ "Плагин <b>Справочник Услуг</b> для нормальной работы требует наличия "
404
+ "страницы, в которой есть шорткод <tt>[businessdirectory]</tt>."
405
+
406
+ #: admin/class-admin.php:837
407
+ msgctxt "admin"
408
+ msgid ""
409
+ "You can create this page by yourself or let Business Directory do this for "
410
+ "you automatically."
411
+ msgstr ""
412
+ "Вы можете создать такую страницу сами, или позвольте плагину создать её для "
413
+ "Вас автоматически."
414
+
415
+ #: admin/class-admin.php:841
416
+ msgctxt "admin"
417
+ msgid "Create required pages for me"
418
+ msgstr "Создать необходимые страницы автоматически"
419
+
420
+ #: admin/class-admin.php:881
421
+ msgctxt "admin compat"
422
+ msgid "Installed: %s"
423
+ msgstr "Установлено: %s"
424
+
425
+ #: admin/class-admin.php:881
426
+ msgctxt "admin compat"
427
+ msgid "N/A"
428
+ msgstr "Х/З"
429
+
430
+ #: admin/class-admin.php:884
431
+ msgctxt "admin compat"
432
+ msgid "Required: %s"
433
+ msgstr "Требуется: %s"
434
+
435
+ #: admin/class-admin.php:896
436
+ msgctxt "admin compat"
437
+ msgid ""
438
+ "Business Directory has detected some incompatible premium module versions "
439
+ "installed."
440
+ msgstr "Плагин обнаружил некоторые несовместимые платные модули."
441
+
442
+ #: admin/class-admin.php:898
443
+ msgctxt "admin compat"
444
+ msgid ""
445
+ "Please upgrade to the required versions indicated below to make sure "
446
+ "everything functions properly."
447
+ msgstr ""
448
+ "Пожалуйста обновите до необходимой версии, указанной ниже, чтобы убедиться, "
449
+ "что все функции будут работать правильно."
450
+
451
+ #: admin/class-admin.php:918
452
+ msgctxt "admin"
453
+ msgid ""
454
+ "We noticed you want your Business Directory users to register before posting "
455
+ "listings, but Registration for your site is currently disabled. Go [here] "
456
+ "and check \"Anyone can register\" to make sure BD works properly."
457
+ msgstr ""
458
+ "Нам кажется, что Вы настроили плагин чтобы он разрешал публикацию записей "
459
+ "только для зарегистрированных пользователей. Однако в настоящий момент "
460
+ "регистрация на Вашем сайта запрещена. Перейдите в раздел [Общие Настройки "
461
+ "WordPress] и включите режим \"Любой может зарегистрироваться\", чтобы "
462
+ "позволить нашему плагину правильно работать."
463
+
464
+ #: admin/class-listing-fields-metabox.php:21
465
+ msgctxt "admin"
466
+ msgid "Listing Fields"
467
+ msgstr "Поля записи:"
468
+
469
+ #: admin/class-listing-fields-metabox.php:40
470
+ #: templates/submit-listing/images.tpl.php:12
471
+ msgctxt "templates"
472
+ msgid "Current Images"
473
+ msgstr "Существующие изображения:"
474
+
475
+ #: admin/class-listing-fields-metabox.php:41
476
+ msgctxt "templates"
477
+ msgid "There are no images currently attached to the listing."
478
+ msgstr "К записи не прикреплено ни одного изображения."
479
+
480
+ #: admin/class-themes-admin.php:47
481
+ msgctxt "themes"
482
+ msgid "Directory Themes"
483
+ msgstr "Темы справочника"
484
+
485
+ #: admin/class-themes-admin.php:48
486
+ msgctxt "themes"
487
+ msgid "Directory Themes %s"
488
+ msgstr "Темы справочника %s"
489
+
490
+ #: admin/class-themes-admin.php:94
491
+ msgctxt "admin themes"
492
+ msgid ""
493
+ "Business Directory Plugin - Your template overrides need to be reviewed!"
494
+ msgstr ""
495
+
496
+ #: admin/class-themes-admin.php:96
497
+ msgctxt "admin themes"
498
+ msgid ""
499
+ "Starting with version 4.0, Business Directory is using a new theming system "
500
+ "that is not compatible with the templates used in previous versions."
501
+ msgstr ""
502
+
503
+ #: admin/class-themes-admin.php:98
504
+ msgctxt "admin themes"
505
+ msgid ""
506
+ "Because of this, your template overrides below have been disabled. You "
507
+ "should <a>review our documentation on customization</a> in order adjust your "
508
+ "templates."
509
+ msgstr ""
510
+
511
+ #: admin/class-themes-admin.php:127
512
+ msgctxt "admin themes"
513
+ msgid ""
514
+ "You need to <a>activate your theme's license key</a> before you can activate "
515
+ "the theme. <a>Click here</a> to do that."
516
+ msgstr ""
517
+
518
+ #: admin/class-themes-admin.php:157
519
+ msgctxt "themes"
520
+ msgid "Could not change the active theme to \"%s\"."
521
+ msgstr "Не удалось сменить активную тему на \"%s\"."
522
+
523
+ #: admin/class-themes-admin.php:204
524
+ msgctxt "themes"
525
+ msgid "Active theme changed to \"%s\"."
526
+ msgstr "Активная тема была сменена на \"%s\"."
527
+
528
+ #: admin/class-themes-admin.php:207
529
+ msgctxt "themes"
530
+ msgid ""
531
+ "%s requires that you tag your existing fields to match some places we want "
532
+ "to put your data on the theme. Below are fields we think are missing."
533
+ msgstr ""
534
+
535
+ #: admin/class-themes-admin.php:216
536
+ #, fuzzy
537
+ msgctxt "themes"
538
+ msgid "Map My Fields"
539
+ msgstr "Форма"
540
+
541
+ #: admin/class-themes-admin.php:223
542
+ msgctxt "themes"
543
+ msgid "Suggested fields created successfully."
544
+ msgstr "Рекомендуемые поля успешно созданы."
545
+
546
+ #: admin/class-themes-admin.php:226
547
+ msgctxt "themes"
548
+ msgid "Theme installed successfully."
549
+ msgstr "Тема успешно установлена."
550
+
551
+ #: admin/class-themes-admin.php:229
552
+ msgctxt "themes"
553
+ msgid "Theme was deleted sucessfully."
554
+ msgstr "Тема успешно удалена."
555
+
556
+ #: admin/class-themes-admin.php:232
557
+ msgctxt "themes"
558
+ msgid "Could not delete theme directory. Check permissions."
559
+ msgstr "Не удалось удалить директорию темы - проверьте права доступа к файлам."
560
+
561
+ #: admin/class-themes-admin.php:258
562
+ msgctxt "themes"
563
+ msgid "Please upload a valid theme file."
564
+ msgstr "Пожалуйста загрузите корректный файл темы."
565
+
566
+ #: admin/class-themes-admin.php:265
567
+ msgctxt "themes"
568
+ msgid "Could not move \"%s\" to a temporary directory."
569
+ msgstr "Не удалось перемести \"%s\" во временную директорию."
570
+
571
+ #: admin/class-themes-admin.php:366 admin/class-themes-admin.php:427
572
+ #: core/licensing.php:126 core/licensing.php:158
573
+ msgctxt "licensing"
574
+ msgid "Could not contact licensing server"
575
+ msgstr "Не удалось связаться с сервером лицензий"
576
+
577
+ #: admin/class-themes-admin.php:372 core/licensing.php:131
578
+ #: core/licensing.php:165
579
+ msgctxt "licensing"
580
+ msgid "License key is invalid"
581
+ msgstr "Лицензионный ключ не правильный"
582
+
583
+ #: admin/class-themes-admin.php:377 core/licensing.php:320
584
+ msgctxt "licensing"
585
+ msgid "Could not activate license: %s."
586
+ msgstr "Не удалось активировать лицензию: %s."
587
+
588
+ #: admin/class-themes-admin.php:390 core/licensing.php:322
589
+ msgctxt "licensing"
590
+ msgid "License activated"
591
+ msgstr "Лицензия активирована"
592
+
593
+ #: admin/class-themes-admin.php:433
594
+ msgctxt "licensing"
595
+ msgid "Invalid response from server"
596
+ msgstr ""
597
+
598
+ #: admin/class-themes-admin.php:450 core/licensing.php:340
599
+ msgctxt "licensing"
600
+ msgid "License deactivated"
601
+ msgstr "Лицензия была деактивирована."
602
+
603
+ #: admin/class-themes-admin.php:466
604
+ msgctxt "themes"
605
+ msgid "Activate your <a>license key</a> to use this theme."
606
+ msgstr ""
607
+
608
+ #: admin/csv-export.php:136
609
+ msgctxt "admin csv-export"
610
+ msgid "Could not create a temporary directory for handling this CSV export."
611
+ msgstr ""
612
+ "Не удалось создать временную директорию для создания экспортных файлов."
613
+
614
+ #: admin/csv-export.php:138
615
+ msgctxt "admin csv-export"
616
+ msgid "Could not create wpbdp-csv-exports directory."
617
+ msgstr "Не удалось создать директорию \"wpbdp-csv-exports\"."
618
+
619
+ #: admin/csv-export.php:143
620
+ msgctxt "admin csv-export"
621
+ msgid "Error while creating a temporary directory for CSV export: %s"
622
+ msgstr "Ошибка при создании временной директории для экспорта в CSV файл: %s"
623
+
624
+ #: admin/csv-import.php:109
625
+ msgctxt "admin csv-import"
626
+ msgid "Business %s"
627
+ msgstr "Запись %s"
628
+
629
+ #: admin/csv-import.php:147
630
+ msgctxt "admin csv-import"
631
+ msgid "Whatever"
632
+ msgstr "Ну ладно"
633
+
634
+ #: admin/csv-import.php:151
635
+ msgctxt "admin csv-import"
636
+ msgid "Example CSV Import File"
637
+ msgstr "Образец файла импорта CSV"
638
+
639
+ #: admin/csv-import.php:152
640
+ msgctxt "admin csv-import"
641
+ msgid "← Return to \"CSV Import\""
642
+ msgstr " Вернуться к \"Импорту из CSV\""
643
+
644
+ #: admin/csv-import.php:255
645
+ msgid ""
646
+ "A valid temporary directory with write permissions is required for CSV "
647
+ "imports to function properly. Your server is using \"%s\" but this path does "
648
+ "not seem to be writable. Please consult with your host."
649
+ msgstr ""
650
+ "Для корректной работы требуется возможность создать временную директорию с "
651
+ "правами на запись, чтобы произвести в ней разбор импортируемого файла CSV. "
652
+ "Ваш сервер использует \"%s\", но эта директория, похоже, не доступна для "
653
+ "записи. Проверьте этот вопрос со своим хостингом."
654
+
655
+ #: admin/csv-import.php:289
656
+ msgctxt "admin csv-import"
657
+ msgid "There was an error uploading the CSV file."
658
+ msgstr "Произошла ошибка при загрузке файла CSV."
659
+
660
+ #: admin/csv-import.php:295
661
+ msgctxt "admin csv-import"
662
+ msgid "Please upload or select a CSV file."
663
+ msgstr "Пожалуйста загрузите или выберите файл CSV."
664
+
665
+ #: admin/csv-import.php:308
666
+ msgctxt "admin csv-import"
667
+ msgid "There was an error uploading the images ZIP file."
668
+ msgstr "Произошла ошибка при загрузке архива ZIP с изображениями."
669
+
670
+ #: admin/csv-import.php:329
671
+ msgctxt "admin csv-import"
672
+ msgid ""
673
+ "An error was detected while validating the CSV file for import. Please fix "
674
+ "this before proceeding."
675
+ msgstr ""
676
+ "Произошла ошибка при проверке импортного файла CSV. Пожалуйста исправьте "
677
+ "ошибки перед тем, как попытаться импортировать файл ещё раз."
678
+
679
+ #: admin/csv-import.php:338
680
+ msgctxt "admin csv-import"
681
+ msgid "Import is in \"test mode\". Nothing will be inserted into the database."
682
+ msgstr ""
683
+ "Импорт происходит в \"тестовом режиме\". В базу данных ничего не будет "
684
+ "загружено."
685
+
686
+ #: admin/fees.php:9
687
+ msgctxt "fees admin"
688
+ msgid "fee"
689
+ msgstr "тариф"
690
+
691
+ #: admin/fees.php:10
692
+ msgctxt "fees admin"
693
+ msgid "fees"
694
+ msgstr "тарифы"
695
+
696
+ #: admin/fees.php:19
697
+ msgctxt "fees admin"
698
+ msgid "There are no fees right now. You can <a>create one</a>, if you want."
699
+ msgstr ""
700
+
701
+ #: admin/fees.php:25 admin/fees.php:260
702
+ #, fuzzy
703
+ msgctxt "fees admin"
704
+ msgid "Active"
705
+ msgstr "Активно:"
706
+
707
+ #: admin/fees.php:28 admin/fees.php:258
708
+ #, fuzzy
709
+ msgctxt "fees admin"
710
+ msgid "Not Available"
711
+ msgstr "Свободных мест для загрузки изображений:"
712
+
713
+ #: admin/fees.php:31 admin/fees.php:255
714
+ msgctxt "fees admin"
715
+ msgid "Disabled"
716
+ msgstr ""
717
+
718
+ #: admin/fees.php:39
719
+ msgctxt "fees admin"
720
+ msgid ""
721
+ "There are no \"%s\" fees right now. You can <a>create one</a>, if you want."
722
+ msgstr ""
723
+
724
+ #: admin/fees.php:56
725
+ #, fuzzy
726
+ msgctxt "admin fees table"
727
+ msgid "All"
728
+ msgstr "Экспортировать всё"
729
+
730
+ #: admin/fees.php:68
731
+ #, fuzzy
732
+ msgctxt "admin fees table"
733
+ msgid "Active"
734
+ msgstr "Активно:"
735
+
736
+ #: admin/fees.php:78
737
+ #, fuzzy
738
+ msgctxt "admin fees table"
739
+ msgid "Not Available"
740
+ msgstr "Свободных мест для загрузки изображений:"
741
+
742
+ #: admin/fees.php:85
743
+ msgctxt "admin fees table"
744
+ msgid "Disabled"
745
+ msgstr ""
746
+
747
+ #: admin/fees.php:94
748
+ msgctxt "fees admin"
749
+ msgid "Label"
750
+ msgstr "Метка"
751
+
752
+ #: admin/fees.php:95
753
+ msgctxt "fees admin"
754
+ msgid "Amount"
755
+ msgstr "Стоимость"
756
+
757
+ #: admin/fees.php:96
758
+ msgctxt "fees admin"
759
+ msgid "Duration"
760
+ msgstr "Срок действия"
761
+
762
+ #: admin/fees.php:97
763
+ msgctxt "fees admin"
764
+ msgid "Images"
765
+ msgstr "Изображений"
766
+
767
+ #: admin/fees.php:98
768
+ #, fuzzy
769
+ msgctxt "fees admin"
770
+ msgid "Featured/Sticky"
771
+ msgstr "Статус \"Особая\""
772
+
773
+ #: admin/fees.php:102
774
+ #, fuzzy
775
+ msgctxt "fees admin"
776
+ msgid "Status"
777
+ msgstr "Новый статус:"
778
+
779
+ #: admin/fees.php:155
780
+ msgctxt "fees admin"
781
+ msgid ""
782
+ "This is the default free plan for your directory. You can't delete it and "
783
+ "it's always free, but you can edit the name and other settings. It's only "
784
+ "available when the directory is in Free mode. You can always create other "
785
+ "fee plans, including ones for 0.00 (free) if you wish."
786
+ msgstr ""
787
+
788
+ #: admin/fees.php:187
789
+ msgctxt "fees admin"
790
+ msgid "Edit"
791
+ msgstr "Изменить"
792
+
793
+ #: admin/fees.php:197
794
+ msgctxt "fees admin"
795
+ msgid "Disable"
796
+ msgstr ""
797
+
798
+ #: admin/fees.php:201
799
+ msgctxt "fees admin"
800
+ msgid "Enable"
801
+ msgstr ""
802
+
803
+ #: admin/fees.php:205
804
+ msgctxt "fees admin"
805
+ msgid "Delete"
806
+ msgstr "Удалить"
807
+
808
+ #: admin/fees.php:226
809
+ msgctxt "fees admin"
810
+ msgid "Forever"
811
+ msgstr "Вечно"
812
+
813
+ #: admin/fees.php:227
814
+ msgctxt "fees admin"
815
+ msgid "%d day"
816
+ msgid_plural "%d days"
817
+ msgstr[0] "%d день"
818
+ msgstr[1] "%d дней"
819
+
820
+ #: admin/fees.php:231
821
+ msgctxt "fees admin"
822
+ msgid "%d image"
823
+ msgid_plural "%d images"
824
+ msgstr[0] "%d изображение"
825
+ msgstr[1] "%d изображений"
826
+
827
+ #: admin/fees.php:236
828
+ msgctxt "fees admin"
829
+ msgid "All categories"
830
+ msgstr "Все рубрики"
831
+
832
+ #: admin/fees.php:250
833
+ msgctxt "fees admin"
834
+ msgid "Yes"
835
+ msgstr ""
836
+
837
+ #: admin/fees.php:250
838
+ #, fuzzy
839
+ msgctxt "fees admin"
840
+ msgid "No"
841
+ msgstr "Ноя"
842
+
843
+ #: admin/fees.php:285
844
+ #, fuzzy
845
+ msgctxt "fees admin"
846
+ msgid "Fee enabled."
847
+ msgstr "Тариф удалён."
848
+
849
+ #: admin/fees.php:293
850
+ #, fuzzy
851
+ msgctxt "fees admin"
852
+ msgid "Fee disabled."
853
+ msgstr "Тариф удалён."
854
+
855
+ #: admin/fees.php:318
856
+ msgctxt "fees order"
857
+ msgid "Label"
858
+ msgstr "По метке"
859
+
860
+ #: admin/fees.php:319
861
+ msgctxt "fees order"
862
+ msgid "Amount"
863
+ msgstr "Стоимость"
864
+
865
+ #: admin/fees.php:320
866
+ msgctxt "fees order"
867
+ msgid "Duration"
868
+ msgstr "По сроку действия"
869
+
870
+ #: admin/fees.php:321
871
+ msgctxt "fees order"
872
+ msgid "Images"
873
+ msgstr "По изображениям"
874
+
875
+ #: admin/fees.php:322
876
+ msgctxt "fees order"
877
+ msgid "Custom Order"
878
+ msgstr "Собственный порядок"
879
+
880
+ #: admin/fees.php:342
881
+ msgctxt "fees admin"
882
+ msgid "Fee updated."
883
+ msgstr "Тариф сохранён."
884
+
885
+ #: admin/fees.php:367
886
+ msgctxt "fees admin"
887
+ msgid "Fee deleted."
888
+ msgstr "Тариф удалён."
889
+
890
+ #: admin/form-fields.php:9
891
+ msgctxt "form-fields admin"
892
+ msgid "form field"
893
+ msgstr "поле формы"
894
+
895
+ #: admin/form-fields.php:10
896
+ msgctxt "form-fields admin"
897
+ msgid "form fields"
898
+ msgstr "поля формы"
899
+
900
+ #: admin/form-fields.php:17
901
+ msgctxt "form-fields admin"
902
+ msgid "Order"
903
+ msgstr "Порядок"
904
+
905
+ #: admin/form-fields.php:18
906
+ msgctxt "form-fields admin"
907
+ msgid "Label / Association"
908
+ msgstr "Метка / Ассоциация"
909
+
910
+ #: admin/form-fields.php:19
911
+ msgctxt "form-fields admin"
912
+ msgid "Type"
913
+ msgstr "Тип"
914
+
915
+ #: admin/form-fields.php:20
916
+ msgctxt "form-fields admin"
917
+ msgid "Validator"
918
+ msgstr "Требование"
919
+
920
+ #: admin/form-fields.php:21
921
+ msgctxt "form-fields admin"
922
+ msgid "Field Attributes"
923
+ msgstr "Атрибуты"
924
+
925
+ #: admin/form-fields.php:45
926
+ msgctxt "form-fields admin"
927
+ msgid "Edit"
928
+ msgstr "Изменить"
929
+
930
+ #: admin/form-fields.php:50
931
+ msgctxt "form-fields admin"
932
+ msgid "Delete"
933
+ msgstr "Удалить"
934
+
935
+ #: admin/form-fields.php:76
936
+ msgctxt "form-fields admin"
937
+ msgid "Required"
938
+ msgstr "Обязательное"
939
+
940
+ #: admin/form-fields.php:76
941
+ msgctxt "form-fields admin"
942
+ msgid "Optional"
943
+ msgstr "Необязательное"
944
+
945
+ #: admin/form-fields.php:80
946
+ msgctxt "form-fields admin"
947
+ msgid "This field value is shown in the excerpt view of a listing."
948
+ msgstr "Значение поля показывается в составе цитаты записи."
949
+
950
+ #: admin/form-fields.php:81
951
+ msgctxt "form-fields admin"
952
+ msgid "In Excerpt"
953
+ msgstr "В&nbsp;цитате"
954
+
955
+ #: admin/form-fields.php:86
956
+ msgctxt "form-fields admin"
957
+ msgid "This field value is shown in the single view of a listing."
958
+ msgstr "Значение поля показывается в полном просмотре записи."
959
+
960
+ #: admin/form-fields.php:87
961
+ msgctxt "form-fields admin"
962
+ msgid "In Listing"
963
+ msgstr "В полном виде"
964
+
965
+ #: admin/form-fields.php:175
966
+ msgctxt "form-fields admin"
967
+ msgid "Form Preview"
968
+ msgstr "Предварительный просмотр"
969
+
970
+ #: admin/form-fields.php:176
971
+ msgctxt "form-fields admin"
972
+ msgid "← Return to \"Manage Form Fields\""
973
+ msgstr "← Вернуться к \"Управлению Полями Формы\""
974
+
975
+ #: admin/form-fields.php:206
976
+ msgctxt "form-fields admin"
977
+ msgid "Form fields updated."
978
+ msgstr "Поля формы сохранены."
979
+
980
+ #: admin/form-fields.php:222
981
+ msgctxt "form-fields admin"
982
+ msgid ""
983
+ "<b>Important</b>: Since the \"<a>Display email address fields publicly?</a>"
984
+ "\" setting is disabled, display settings below will not be honored and this "
985
+ "field will not be displayed on the frontend. If you want e-mail addresses to "
986
+ "show on the frontend, you can <a>enable public display of e-mails</a>."
987
+ msgstr ""
988
+ "<b>ВАЖНО</b>: Как так параметр \"<a>Показывать электронные адреса?</a>\" "
989
+ "выключен, настройка видимости ниже будет проигнорирована, и это поле всё "
990
+ "таки не будет показано на сайте. Если же Вы хотите чтобы электронный адрес "
991
+ "показывался всем посетителям, то Вым нужно <a>разрешить соответствующую "
992
+ "настройку</a>."
993
+
994
+ #: admin/form-fields.php:256
995
+ msgctxt "form-fields admin"
996
+ msgid "Field deleted."
997
+ msgstr "Поле удалено."
998
+
999
+ #: admin/form-fields.php:277
1000
+ msgctxt "form-fields admin"
1001
+ msgid "Required fields created successfully."
1002
+ msgstr "Обязательное поле удачно создано."
1003
+
1004
+ #: admin/form-fields.php:290
1005
+ msgctxt "form-fields admin"
1006
+ msgid "Title"
1007
+ msgstr "Название"
1008
+
1009
+ #: admin/form-fields.php:291
1010
+ msgctxt "form-fields admin"
1011
+ msgid "Category"
1012
+ msgstr "Рубрика"
1013
+
1014
+ #: admin/form-fields.php:292
1015
+ msgctxt "form-fields admin"
1016
+ msgid "Excerpt"
1017
+ msgstr "Цитата"
1018
+
1019
+ #: admin/form-fields.php:293
1020
+ msgctxt "form-fields admin"
1021
+ msgid "Content"
1022
+ msgstr "Содержимое"
1023
+
1024
+ #: admin/form-fields.php:294
1025
+ msgctxt "form-fields admin"
1026
+ msgid "Tags"
1027
+ msgstr "Метки"
1028
+
1029
+ #: admin/form-fields.php:295
1030
+ msgctxt "form-fields admin"
1031
+ msgid "Address"
1032
+ msgstr "Адрес"
1033
+
1034
+ #: admin/form-fields.php:296
1035
+ #, fuzzy
1036
+ msgctxt "form-fields admin"
1037
+ msgid "City"
1038
+ msgstr "Город:"
1039
+
1040
+ #: admin/form-fields.php:297
1041
+ #, fuzzy
1042
+ msgctxt "form-fields admin"
1043
+ msgid "State"
1044
+ msgstr "Провинция/Штат:"
1045
+
1046
+ #: admin/form-fields.php:298
1047
+ msgctxt "form-fields admin"
1048
+ msgid "ZIP Code"
1049
+ msgstr "Почтовый индекс"
1050
+
1051
+ #: admin/form-fields.php:299
1052
+ msgctxt "form-fields admin"
1053
+ msgid "FAX Number"
1054
+ msgstr "Номер факса"
1055
+
1056
+ #: admin/form-fields.php:300
1057
+ msgctxt "form-fields admin"
1058
+ msgid "Phone Number"
1059
+ msgstr "Номер телефона"
1060
+
1061
+ #: admin/form-fields.php:301
1062
+ msgctxt "form-fields admin"
1063
+ msgid "Ratings Field"
1064
+ msgstr "Рейтинг"
1065
+
1066
+ #: admin/form-fields.php:302
1067
+ msgctxt "form-fields admin"
1068
+ msgid "Twitter"
1069
+ msgstr "Twitter"
1070
+
1071
+ #: admin/form-fields.php:303
1072
+ msgctxt "form-fields admin"
1073
+ msgid "Website"
1074
+ msgstr "адрес сайта"
1075
+
1076
+ #: admin/form-fields.php:324
1077
+ msgctxt "form-fields admin"
1078
+ msgid "Tags updated."
1079
+ msgstr "Метки сохранены."
1080
+
1081
+ #: admin/listing-metabox.php:11
1082
+ msgctxt "admin"
1083
+ msgid "General"
1084
+ msgstr "Основное"
1085
+
1086
+ #: admin/listing-metabox.php:12
1087
+ msgctxt "admin"
1088
+ msgid "Fee Details"
1089
+ msgstr "Тарифы"
1090
+
1091
+ #: admin/listing-metabox.php:13
1092
+ msgctxt "admin"
1093
+ msgid "Transactions"
1094
+ msgstr "Транзакции"
1095
+
1096
+ #: admin/listing-metabox.php:42
1097
+ msgctxt "admin infometabox"
1098
+ msgid "General Info"
1099
+ msgstr "Основная информация"
1100
+
1101
+ #: admin/listing-metabox.php:44
1102
+ msgctxt "admin infometabox"
1103
+ msgid "Access Key"
1104
+ msgstr ""
1105
+
1106
+ #: admin/listing-metabox.php:46
1107
+ msgctxt "admin infometabox"
1108
+ msgid "Total Listing Cost"
1109
+ msgstr "Стоимость записи"
1110
+
1111
+ #: admin/listing-metabox.php:48
1112
+ msgctxt "admin infometabox"
1113
+ msgid "Payment Status"
1114
+ msgstr "Статус оплаты"
1115
+
1116
+ #: admin/listing-metabox.php:52
1117
+ msgctxt "admin infometabox"
1118
+ msgid "Featured (Sticky) Status"
1119
+ msgstr "Статус специальной записи"
1120
+
1121
+ #: admin/listing-metabox.php:60
1122
+ msgctxt "admin metabox"
1123
+ msgid "Pending Upgrade"
1124
+ msgstr "Ожидается подтверждение"
1125
+
1126
+ #: admin/listing-metabox.php:83
1127
+ msgctxt "admin infometabox"
1128
+ msgid "CSV Import Sequence ID"
1129
+ msgstr "Последовательный № импорта CSV"
1130
+
1131
+ #: admin/listing-metabox.php:94
1132
+ msgctxt "admin infometabox"
1133
+ msgid "Mark listing as Paid"
1134
+ msgstr "Пометить запись как Оплачена"
1135
+
1136
+ #: admin/page-debug.php:16
1137
+ msgctxt "debug-info"
1138
+ msgid "BD Info"
1139
+ msgstr "Информация о плагине"
1140
+
1141
+ #: admin/page-debug.php:28
1142
+ msgid "Missing tables: %s"
1143
+ msgstr "Отсутствующие таблицы: %s"
1144
+
1145
+ #: admin/page-debug.php:29
1146
+ msgctxt "debug-info"
1147
+ msgid "OK"
1148
+ msgstr "OK"
1149
+
1150
+ #: admin/page-debug.php:37
1151
+ msgctxt "debug-info"
1152
+ msgid "BD Options"
1153
+ msgstr "Параметры плагина"
1154
+
1155
+ #: admin/page-debug.php:50
1156
+ msgctxt "debug-info"
1157
+ msgid "Environment"
1158
+ msgstr "Параметры сервера"
1159
+
1160
+ #: admin/page-debug.php:72
1161
+ msgctxt "debug info"
1162
+ msgid "Test SSL setup..."
1163
+ msgstr ""
1164
+
1165
+ #: admin/templates/csv-export.tpl.php:9
1166
+ msgctxt "admin csv-export"
1167
+ msgid ""
1168
+ "An unknown error occurred during the export. Please make sure you have "
1169
+ "enough free disk space and memory available to PHP. Check your error logs "
1170
+ "for details."
1171
+ msgstr ""
1172
+ "Во время экспорта произошла неизвестная ошибка. Пожалуйста убедитесь, что на "
1173
+ "сервере имеется достаточно свободного места на диске и в памяти. Для "
1174
+ "дополнительной информации проверьте протоколы ошибок сервера."
1175
+
1176
+ #: admin/templates/csv-export.tpl.php:18
1177
+ msgctxt "admin csv-export"
1178
+ msgid ""
1179
+ "Please note that the export process is a resource intensive task. If your "
1180
+ "export does not succeed try disabling other plugins first and/or increasing "
1181
+ "the values of the 'memory_limit' and 'max_execution_time' directives in your "
1182
+ "server's php.ini configuration file."
1183
+ msgstr ""
1184
+ "Обратите внимание на то, что процесс экспортирования данных является жадной "
1185
+ "до ресурсов задачей. Если экспорт завершится неудачей, то попробуйте сначала "
1186
+ "отключить другие плагины, или увеличить объём выделяемой PHP памяти через "
1187
+ "следующие команды конфигурационного файла \"php.ini\": memory_limit и "
1188
+ "max_execution_time."
1189
+
1190
+ #: admin/templates/csv-export.tpl.php:30
1191
+ msgctxt "admin csv-export"
1192
+ msgid "Export Configuration"
1193
+ msgstr "Настройки экспорта"
1194
+
1195
+ #: admin/templates/csv-export.tpl.php:33
1196
+ msgctxt "admin csv-export"
1197
+ msgid "Export settings"
1198
+ msgstr "Параметры экспорта"
1199
+
1200
+ #: admin/templates/csv-export.tpl.php:37
1201
+ msgctxt "admin csv-export"
1202
+ msgid "Which listings to export?"
1203
+ msgstr "Записи?"
1204
+
1205
+ #: admin/templates/csv-export.tpl.php:41
1206
+ msgctxt "admin csv-export"
1207
+ msgid "All"
1208
+ msgstr "Экспортировать всё"
1209
+
1210
+ #: admin/templates/csv-export.tpl.php:42
1211
+ msgctxt "admin csv-export"
1212
+ msgid "Active Only"
1213
+ msgstr "Только активные записи"
1214
+
1215
+ #: admin/templates/csv-export.tpl.php:43
1216
+ msgctxt "admin csv-export"
1217
+ msgid "Active + Pending Renewal"
1218
+ msgstr "Активные + ожидающие продление"
1219
+
1220
+ #: admin/templates/csv-export.tpl.php:49
1221
+ msgctxt "admin csv-export"
1222
+ msgid "Export images?"
1223
+ msgstr "Изображения?"
1224
+
1225
+ #: admin/templates/csv-export.tpl.php:54
1226
+ msgctxt "admin csv-export"
1227
+ msgid "Export images"
1228
+ msgstr "Экспортировать изображения"
1229
+
1230
+ #: admin/templates/csv-export.tpl.php:56
1231
+ msgctxt "admin csv-export"
1232
+ msgid ""
1233
+ "When checked, instead of just a CSV file a ZIP file will be generated with "
1234
+ "both a CSV file and listing images."
1235
+ msgstr ""
1236
+ "Включите этот параметр, и вместо одного CSV файла будет создан архив ZIP, "
1237
+ "который будет содержать CSV файл + файлы изображений."
1238
+
1239
+ #: admin/templates/csv-export.tpl.php:62
1240
+ msgctxt "admin csv-export"
1241
+ msgid "Additional metadata to export:"
1242
+ msgstr "Метаданные?"
1243
+
1244
+ #: admin/templates/csv-export.tpl.php:67
1245
+ msgctxt "admin csv-export"
1246
+ msgid "Include unique IDs for each listing (sequence_id column)."
1247
+ msgstr ""
1248
+ "Добавить уникальные номера для каждой записи (колонка базы данных: "
1249
+ "sequence_id)."
1250
+
1251
+ #: admin/templates/csv-export.tpl.php:69
1252
+ msgctxt "admin csv-export"
1253
+ msgid ""
1254
+ "If you plan to re-import the listings into BD and don't want new ones "
1255
+ "created, select this option!"
1256
+ msgstr ""
1257
+ "Включите этот параметр если Вы планируете использовать экспортированный файл "
1258
+ "для последующего импорта на этом же сервере, и желаете, чтобы импортируемые "
1259
+ "записи заменили существующие, вместо добавления как дубликаты."
1260
+
1261
+ #: admin/templates/csv-export.tpl.php:75
1262
+ msgctxt "admin csv-export"
1263
+ msgid "Author information (username)"
1264
+ msgstr "Информация об авторе (имя учётной записи)"
1265
+
1266
+ #: admin/templates/csv-export.tpl.php:80
1267
+ msgctxt "admin csv-export"
1268
+ msgid "Sticky/featured status"
1269
+ msgstr "Статус особой записи"
1270
+
1271
+ #: admin/templates/csv-export.tpl.php:85
1272
+ msgctxt "admin csv-export"
1273
+ msgid "Listing expiration date"
1274
+ msgstr "Дата окончания срока действия"
1275
+
1276
+ #: admin/templates/csv-export.tpl.php:90
1277
+ msgctxt "admin csv-export"
1278
+ msgid "CSV File Settings"
1279
+ msgstr "Параметры файла CSV"
1280
+
1281
+ #: admin/templates/csv-export.tpl.php:94
1282
+ msgctxt "admin csv-export"
1283
+ msgid "Column Separator"
1284
+ msgstr "Разделитель колонок"
1285
+
1286
+ #: admin/templates/csv-export.tpl.php:94 admin/templates/csv-export.tpl.php:105
1287
+ #: admin/templates/csv-export.tpl.php:116 admin/templates/csv-import.tpl.php:43
1288
+ #: admin/templates/csv-import.tpl.php:109
1289
+ #: admin/templates/csv-import.tpl.php:120
1290
+ #: admin/templates/csv-import.tpl.php:131
1291
+ #: admin/templates/csv-import.tpl.php:158
1292
+ msgctxt "admin forms"
1293
+ msgid "required"
1294
+ msgstr "обязательно"
1295
+
1296
+ #: admin/templates/csv-export.tpl.php:105
1297
+ msgctxt "admin csv-export"
1298
+ msgid "Image Separator"
1299
+ msgstr "Разделитель изображений"
1300
+
1301
+ #: admin/templates/csv-export.tpl.php:116
1302
+ msgctxt "admin csv-export"
1303
+ msgid "Category Separator"
1304
+ msgstr "Разделитель рубрик"
1305
+
1306
+ #: admin/templates/csv-export.tpl.php:128
1307
+ msgctxt "admin csv-export"
1308
+ msgid "Export Listings"
1309
+ msgstr "Экспортировать записи"
1310
+
1311
+ #: admin/templates/csv-export.tpl.php:134
1312
+ msgctxt "admin csv-export"
1313
+ msgid "Export in Progress..."
1314
+ msgstr "Экспорт работает..."
1315
+
1316
+ #: admin/templates/csv-export.tpl.php:135
1317
+ msgctxt "admin csv-export"
1318
+ msgid ""
1319
+ "Your export file is being prepared. Please <u>do not leave</u> this page "
1320
+ "until the export finishes."
1321
+ msgstr ""
1322
+ "Ваш файл экспорта собирается. Пожалуйста <u>не закрывайте</u> эту страницу "
1323
+ "до тех пор, пока экспорт не закончится."
1324
+
1325
+ #: admin/templates/csv-export.tpl.php:138
1326
+ msgctxt "admin csv-export"
1327
+ msgid "No. of listings:"
1328
+ msgstr "Количество записей:"
1329
+
1330
+ #: admin/templates/csv-export.tpl.php:140
1331
+ msgctxt "admin csv-export"
1332
+ msgid "Approximate export file size:"
1333
+ msgstr "Приблизительный размер экспортного файла:"
1334
+
1335
+ #: admin/templates/csv-export.tpl.php:147
1336
+ msgctxt "admin csv-export"
1337
+ msgid "Cancel Export"
1338
+ msgstr "Прекратить экспорт"
1339
+
1340
+ #: admin/templates/csv-export.tpl.php:152
1341
+ msgctxt "admin csv-export"
1342
+ msgid "Export Complete"
1343
+ msgstr "Экспорт завершился"
1344
+
1345
+ #: admin/templates/csv-export.tpl.php:153
1346
+ msgctxt "admin csv-export"
1347
+ msgid ""
1348
+ "Your export file has been successfully created and it is now ready for "
1349
+ "download."
1350
+ msgstr "Ваш файл экспорта был успешно создан и готов к скачиванию."
1351
+
1352
+ #: admin/templates/csv-export.tpl.php:156
1353
+ msgctxt "admin csv-export"
1354
+ msgid "Download %s (%s)"
1355
+ msgstr "Скачать %s (%s)"
1356
+
1357
+ #: admin/templates/csv-export.tpl.php:162
1358
+ msgctxt "admin csv-export"
1359
+ msgid ""
1360
+ "Click \"Cleanup\" once the file has been downloaded in order to remove all "
1361
+ "temporary data created by Business Directory during the export process."
1362
+ msgstr ""
1363
+ "Как только файл скачается, нажмите кнопку \"Очистить\" чтобы удалить все "
1364
+ "временные данные, созданные плагином во время подготовки экспортного файла."
1365
+
1366
+ #: admin/templates/csv-export.tpl.php:163
1367
+ msgctxt "admin csv-export"
1368
+ msgid "Cleanup"
1369
+ msgstr "Очистить"
1370
+
1371
+ #: admin/templates/csv-export.tpl.php:168
1372
+ msgctxt "admin csv-export"
1373
+ msgid "Export Canceled"
1374
+ msgstr "Экспорт прерван"
1375
+
1376
+ #: admin/templates/csv-export.tpl.php:169
1377
+ msgctxt "admin csv-export"
1378
+ msgid "The export has been canceled."
1379
+ msgstr "Процесс экспорта был прекращён."
1380
+
1381
+ #: admin/templates/csv-export.tpl.php:170
1382
+ msgctxt "admin csv-export"
1383
+ msgid "← Return to CSV Export"
1384
+ msgstr "← Вернуться к экспорту CSV"
1385
+
1386
+ #: admin/templates/csv-import-progress.tpl.php:6
1387
+ msgctxt "admin csv-import"
1388
+ msgid "A fatal error occurred during the import. The reason given was: \"%s\"."
1389
+ msgstr "При импорте произошла фатальная ошибка. Причина: %s."
1390
+
1391
+ #: admin/templates/csv-import-progress.tpl.php:10
1392
+ msgctxt "admin csv-import"
1393
+ msgid ""
1394
+ "A fatal error occurred during the import. If connection wasn't lost during "
1395
+ "the import, please make sure that you have enough free disk space and memory "
1396
+ "available to PHP. Check your error logs for details."
1397
+ msgstr ""
1398
+ "При импорте произошла фатальная ошибка. Если соединение с сайтом не "
1399
+ "прерывалось, то убедитесь, что на сервере имеется достаточно свободного "
1400
+ "места на диске и в памяти. Для дополнительной информации проверьте протокол "
1401
+ "ошибок сервера."
1402
+
1403
+ #: admin/templates/csv-import-progress.tpl.php:13
1404
+ #: admin/templates/csv-import-progress.tpl.php:20
1405
+ msgctxt "admin csv-import"
1406
+ msgid " Return to CSV Import"
1407
+ msgstr " Вернуться к \"Импорту из CSV\""
1408
+
1409
+ #: admin/templates/csv-import-progress.tpl.php:18
1410
+ msgctxt "admin csv-import"
1411
+ msgid "Import Canceled"
1412
+ msgstr "Импорт прерван"
1413
+
1414
+ #: admin/templates/csv-import-progress.tpl.php:19
1415
+ msgctxt "admin csv-import"
1416
+ msgid "The import has been canceled."
1417
+ msgstr "Процесс импорта был прерван."
1418
+
1419
+ #: admin/templates/csv-import-progress.tpl.php:26
1420
+ msgid "Import Progress"
1421
+ msgstr "Прогресс загрузки"
1422
+
1423
+ #: admin/templates/csv-import-progress.tpl.php:29
1424
+ msgctxt "admin csv-import"
1425
+ msgid "Files"
1426
+ msgstr "Файлы"
1427
+
1428
+ #: admin/templates/csv-import-progress.tpl.php:32
1429
+ msgctxt "admin csv-import"
1430
+ msgid "Rows in file"
1431
+ msgstr "Строки файла"
1432
+
1433
+ #: admin/templates/csv-import-progress.tpl.php:35
1434
+ msgctxt "admin csv-import"
1435
+ msgid "Progress"
1436
+ msgstr "Процесс"
1437
+
1438
+ #: admin/templates/csv-import-progress.tpl.php:39
1439
+ msgctxt "admin csv-import"
1440
+ msgid "Import has not started. Click \"Start Import\" to begin."
1441
+ msgstr "Импорт ещё не начался. Нажмите кнопку \"Начать импорт\" для старта."
1442
+
1443
+ #: admin/templates/csv-import-progress.tpl.php:40
1444
+ msgctxt "admin csv-import"
1445
+ msgid "Importing CSV file..."
1446
+ msgstr "Импорт файла CSV..."
1447
+
1448
+ #: admin/templates/csv-import-progress.tpl.php:46
1449
+ msgctxt "admin csv-import"
1450
+ msgid "Start Import"
1451
+ msgstr "Начать импорт"
1452
+
1453
+ #: admin/templates/csv-import-progress.tpl.php:47
1454
+ msgctxt "admin csv-import"
1455
+ msgid "Cancel Import"
1456
+ msgstr "Прервать импорт"
1457
+
1458
+ #: admin/templates/csv-import-progress.tpl.php:54
1459
+ msgctxt "admin csv-import"
1460
+ msgid "Import finished"
1461
+ msgstr "Импорт завершился"
1462
+
1463
+ #: admin/templates/csv-import-progress.tpl.php:57
1464
+ msgctxt "admin csv-import"
1465
+ msgid "Import was completed successfully."
1466
+ msgstr "Импорт успешно завершился."
1467
+
1468
+ #: admin/templates/csv-import-progress.tpl.php:61
1469
+ msgctxt "admin csv-import"
1470
+ msgid "Import was completed but some rows were rejected."
1471
+ msgstr "Импорт завершился, но некоторые строки были отброшены."
1472
+
1473
+ #: admin/templates/csv-import-progress.tpl.php:64
1474
+ msgctxt "admin csv-import"
1475
+ msgid "Import Summary"
1476
+ msgstr "Отчёт о импорте"
1477
+
1478
+ #: admin/templates/csv-import-progress.tpl.php:66
1479
+ msgctxt "admin csv-import"
1480
+ msgid "Rows in file:"
1481
+ msgstr "Строк в файле:"
1482
+
1483
+ #: admin/templates/csv-import-progress.tpl.php:69
1484
+ msgctxt "admin csv-import"
1485
+ msgid "Imported rows:"
1486
+ msgstr "Импортировано строк:"
1487
+
1488
+ #: admin/templates/csv-import-progress.tpl.php:72
1489
+ msgctxt "admin csv-import"
1490
+ msgid "Rejected rows:"
1491
+ msgstr "Отброшено строк:"
1492
+
1493
+ #: admin/templates/csv-import-progress.tpl.php:77
1494
+ msgctxt "admin csv-import"
1495
+ msgid "Import Warnings"
1496
+ msgstr "Предупреждения при импорте"
1497
+
1498
+ #: admin/templates/csv-import-progress.tpl.php:80
1499
+ msgctxt "admin csv-import"
1500
+ msgid "Line #"
1501
+ msgstr "Строка №"
1502
+
1503
+ #: admin/templates/csv-import-progress.tpl.php:81
1504
+ msgctxt "admin csv-import"
1505
+ msgid "Line"
1506
+ msgstr "Строка"
1507
+
1508
+ #: admin/templates/csv-import-progress.tpl.php:82
1509
+ msgctxt "admin csv-import"
1510
+ msgid "Warning"
1511
+ msgstr "Предупреждение"
1512
+
1513
+ #: admin/templates/csv-import.tpl.php:12 admin/templates/csv-import.tpl.php:233
1514
+ msgctxt "admin csv-import"
1515
+ msgid "Help"
1516
+ msgstr "Подсказка"
1517
+
1518
+ #: admin/templates/csv-import.tpl.php:13
1519
+ msgctxt "admin csv-import"
1520
+ msgid "See an example CSV import file"
1521
+ msgstr "Посмотрите образец файла CSV для иморта"
1522
+
1523
+ #: admin/templates/csv-import.tpl.php:21
1524
+ msgctxt "admin csv-import"
1525
+ msgid "Here, you can import data into your directory using the CSV format."
1526
+ msgstr ""
1527
+ "В этом разделе Вы можете импортировать данные в Ваш справочник используя "
1528
+ "файл в формате CSV."
1529
+
1530
+ #: admin/templates/csv-import.tpl.php:29
1531
+ msgctxt "admin csv-import"
1532
+ msgid ""
1533
+ "We strongly recommend reading our <a>CSV import documentation</a> first to "
1534
+ "help you do things in the right order."
1535
+ msgstr ""
1536
+ "Мы настоятельно рекомендуем сначала Вам ознакомиться с <a>Документацией по "
1537
+ "импорту из файла CSV</a>, чтобы Вы могли всё сделать правильно."
1538
+
1539
+ #: admin/templates/csv-import.tpl.php:38
1540
+ msgctxt "admin csv-import"
1541
+ msgid "Import Files"
1542
+ msgstr "Импорт файлов"
1543
+
1544
+ #: admin/templates/csv-import.tpl.php:43
1545
+ msgctxt "admin csv-import"
1546
+ msgid "CSV File"
1547
+ msgstr "Файл CSV"
1548
+
1549
+ #: admin/templates/csv-import.tpl.php:55 admin/templates/csv-import.tpl.php:86
1550
+ msgctxt "admin csv-import"
1551
+ msgid "... or <a>select a file uploaded to the imports folder</a>"
1552
+ msgstr ""
1553
+ "... или <a>выберите файл, который уже загружен в директорию импорта</a>"
1554
+
1555
+ #: admin/templates/csv-import.tpl.php:65 admin/templates/csv-import.tpl.php:96
1556
+ msgctxt "admin csv-import"
1557
+ msgid "(Upload new file)"
1558
+ msgstr "(Загрузить новый файл)"
1559
+
1560
+ #: admin/templates/csv-import.tpl.php:74
1561
+ msgctxt "admin csv-import"
1562
+ msgid "ZIP file containing images"
1563
+ msgstr "Архив ZIP, содержащий изображения"
1564
+
1565
+ #: admin/templates/csv-import.tpl.php:105
1566
+ msgctxt "admin csv-import"
1567
+ msgid "CSV File Settings"
1568
+ msgstr "Настройки файла CSV"
1569
+
1570
+ #: admin/templates/csv-import.tpl.php:109
1571
+ msgctxt "admin csv-import"
1572
+ msgid "Column Separator"
1573
+ msgstr "Разделитель колонок"
1574
+
1575
+ #: admin/templates/csv-import.tpl.php:120
1576
+ msgctxt "admin csv-import"
1577
+ msgid "Image Separator"
1578
+ msgstr "Разделитель изображений"
1579
+
1580
+ #: admin/templates/csv-import.tpl.php:131
1581
+ msgctxt "admin csv-import"
1582
+ msgid "Category Separator"
1583
+ msgstr "Разделитель рубрик"
1584
+
1585
+ #: admin/templates/csv-import.tpl.php:142
1586
+ msgctxt "admin csv-import"
1587
+ msgid "Import settings"
1588
+ msgstr "Настройки импорта"
1589
+
1590
+ #: admin/templates/csv-import.tpl.php:146
1591
+ msgctxt "admin csv-import"
1592
+ msgid "Post status of imported listings"
1593
+ msgstr "Статус записей по окончании импорта"
1594
+
1595
+ #: admin/templates/csv-import.tpl.php:158
1596
+ msgctxt "admin csv-import"
1597
+ msgid "Missing categories handling"
1598
+ msgstr "Обработка новых рубрик"
1599
+
1600
+ #: admin/templates/csv-import.tpl.php:163
1601
+ msgctxt "admin csv-import"
1602
+ msgid "Auto-create categories"
1603
+ msgstr "Автоматически создавать"
1604
+
1605
+ #: admin/templates/csv-import.tpl.php:166
1606
+ msgctxt "admin csv-import"
1607
+ msgid "Generate errors when a category is not found"
1608
+ msgstr "Выдавать ошибку \"рубрика не найдена\""
1609
+
1610
+ #: admin/templates/csv-import.tpl.php:171
1611
+ msgctxt "admin csv-import"
1612
+ msgid "Keep existing listing images?"
1613
+ msgstr "Существующие изображения?"
1614
+
1615
+ #: admin/templates/csv-import.tpl.php:176
1616
+ msgctxt "admin csv-import"
1617
+ msgid "Keep existing images."
1618
+ msgstr "Соранить."
1619
+
1620
+ #: admin/templates/csv-import.tpl.php:177
1621
+ msgctxt "admin csv-import"
1622
+ msgid "Appends new images while keeping current ones."
1623
+ msgstr "Будет добавлять новые изображения и не удалит существующие."
1624
+
1625
+ #: admin/templates/csv-import.tpl.php:182
1626
+ msgctxt "admin csv-import"
1627
+ msgid "Assign listings to a user?"
1628
+ msgstr "Автор?"
1629
+
1630
+ #: admin/templates/csv-import.tpl.php:188
1631
+ msgctxt "admin csv-import"
1632
+ msgid "Assign listings to a user."
1633
+ msgstr "Назначить новые записи существующему пользователю."
1634
+
1635
+ #: admin/templates/csv-import.tpl.php:193
1636
+ #, fuzzy
1637
+ msgctxt "admin csv-import"
1638
+ msgid "Use a default user for listings?"
1639
+ msgstr ""
1640
+ "Использовать изображение по-умолчанию, если ни одного не было загружено?"
1641
+
1642
+ #: admin/templates/csv-import.tpl.php:199
1643
+ #, fuzzy
1644
+ msgctxt "admin csv-import"
1645
+ msgid ""
1646
+ "Select a default user to be used if the username column is not present in "
1647
+ "the CSV file."
1648
+ msgstr ""
1649
+ "<br />Выберите зарегистрированного пользователя сайта, чтобы ему были "
1650
+ "назначены новые записи, не имеющие имени пользователя в файле CSV."
1651
+
1652
+ #: admin/templates/csv-import.tpl.php:204
1653
+ msgctxt "admin csv-import"
1654
+ msgid "Default listing user"
1655
+ msgstr "Пользователь по-умолчанию для новых записей:"
1656
+
1657
+ #: admin/templates/csv-import.tpl.php:210
1658
+ msgctxt "admin csv-import"
1659
+ msgid ""
1660
+ "This user will be used if the username column is not present in the CSV file."
1661
+ msgstr ""
1662
+ "<br />Выберите зарегистрированного пользователя сайта, чтобы ему были "
1663
+ "назначены новые записи, не имеющие имени пользователя в файле CSV."
1664
+
1665
+ #: admin/templates/csv-import.tpl.php:215
1666
+ msgctxt "admin csv-import"
1667
+ msgid "Disable e-mail notifications during import?"
1668
+ msgstr "Оповещения по электронной почте:"
1669
+
1670
+ #: admin/templates/csv-import.tpl.php:220
1671
+ msgctxt "admin csv-import"
1672
+ msgid "Disable e-mail notifications."
1673
+ msgstr "Запретить оповещения пока производится импорт новых записей."
1674
+
1675
+ #: admin/templates/csv-import.tpl.php:226
1676
+ msgctxt "admin csv-import"
1677
+ msgid "Test Import"
1678
+ msgstr "Тест импорта"
1679
+
1680
+ #: admin/templates/csv-import.tpl.php:227
1681
+ msgctxt "admin csv-import"
1682
+ msgid "Import Listings"
1683
+ msgstr "Импортировать записи"
1684
+
1685
+ #: admin/templates/csv-import.tpl.php:235
1686
+ msgctxt "admin csv-import"
1687
+ msgid ""
1688
+ "The following are the valid header names to be used in the CSV file. "
1689
+ "Multivalued fields (such as category or tags) can appear multiple times in "
1690
+ "the file. Click <a href=\"%s\">\"See an example CSV import file\"</a> to see "
1691
+ "how an import file should look like."
1692
+ msgstr ""
1693
+ "Далее приведены правильные имена заголовков, которые будут использованы в "
1694
+ "файле CSV. поля со множественными значениями, такие как рубрики или метки, "
1695
+ "могут оказаться в файле в нескольких местах. Посмотрите на \"<a href=\"%s"
1696
+ "\">Образец файла CSV для импорта</a>\" чтобы узнать, как такой файл должен "
1697
+ "выглядеть."
1698
+
1699
+ #: admin/templates/csv-import.tpl.php:242
1700
+ msgctxt "admin csv-import"
1701
+ msgid "Header name/label"
1702
+ msgstr "Имя или метка заголовка"
1703
+
1704
+ #: admin/templates/csv-import.tpl.php:243
1705
+ msgctxt "admin csv-import"
1706
+ msgid "Field"
1707
+ msgstr "Поле"
1708
+
1709
+ #: admin/templates/csv-import.tpl.php:244
1710
+ msgctxt "admin csv-import"
1711
+ msgid "Type"
1712
+ msgstr "Тип"
1713
+
1714
+ #: admin/templates/csv-import.tpl.php:245
1715
+ msgctxt "admin csv-import"
1716
+ msgid "Required?"
1717
+ msgstr "Обязательно?"
1718
+
1719
+ #: admin/templates/csv-import.tpl.php:246
1720
+ msgctxt "admin csv-import"
1721
+ msgid "Multivalued?"
1722
+ msgstr "Множественные значения?"
1723
+
1724
+ #: admin/templates/csv-import.tpl.php:268
1725
+ msgctxt "admin csv-import"
1726
+ msgid "Semicolon separated list of listing images (from the ZIP file)"
1727
+ msgstr "Знак \"точка с запятой\" разделяет список изображений (в файле ZIP)"
1728
+
1729
+ #: admin/templates/csv-import.tpl.php:275
1730
+ msgctxt "admin csv-import"
1731
+ msgid "Listing author's username"
1732
+ msgstr "Учётная запись автора записи"
1733
+
1734
+ #: admin/templates/csv-import.tpl.php:282
1735
+ msgctxt "admin csv-import"
1736
+ msgid ""
1737
+ "Internal Sequence ID used to allow listing updates from external sources."
1738
+ msgstr ""
1739
+ "Был использован внутренний последовательный номер, чтобы позволить загрузку "
1740
+ "данных из справочника с другого сайта."
1741
+
1742
+ #: admin/templates/csv-import.tpl.php:289
1743
+ msgctxt "admin csv-import"
1744
+ msgid ""
1745
+ "Date of listing expiration formatted as YYYY-MM-DD. Use this column when "
1746
+ "adding or updating listings from external sources."
1747
+ msgstr ""
1748
+ "Дата окончания срока действия отформатирована как ГГГГ-ММ-ДД. Используйте "
1749
+ "эту колонку при добавлении или изменении записей."
1750
+
1751
+ #: admin/templates/debug-info.tpl.php:5
1752
+ msgctxt "debug-info"
1753
+ msgid ""
1754
+ "The following information can help BD developers debug possible problems "
1755
+ "with your setup."
1756
+ msgstr ""
1757
+ "Следующая информация может помочь разработчикам плагина отладить возможные "
1758
+ "проблемы и конфликты с Вашим сервером."
1759
+
1760
+ #: admin/templates/debug-info.tpl.php:6
1761
+ msgctxt "debug-info"
1762
+ msgid ""
1763
+ "The debug information does not contain personal or sensitive information "
1764
+ "such as passwords or private keys."
1765
+ msgstr ""
1766
+ "<br /><br />Отладочная информация НЕ СОДЕРЖИТ никакой персональной или "
1767
+ "конфиденциальной информации - ничего вроде паролей или частных ключей "
1768
+ "шифрования."
1769
+
1770
+ #: admin/templates/debug-info.tpl.php:9
1771
+ msgctxt "debug-info"
1772
+ msgid "Download Debug Information"
1773
+ msgstr "Скачать отладочную информацию"
1774
+
1775
+ #: admin/templates/fees-addoredit.tpl.php:23
1776
+ msgctxt "fees admin"
1777
+ msgid "Add Listing Fee"
1778
+ msgstr "Добавить тариф"
1779
+
1780
+ #: admin/templates/fees-addoredit.tpl.php:23
1781
+ #, fuzzy
1782
+ msgctxt "fees admin"
1783
+ msgid "Edit Listing Fee"
1784
+ msgstr "Изменить запись"
1785
+
1786
+ #: admin/templates/fees-addoredit.tpl.php:35
1787
+ msgctxt "fees admin"
1788
+ msgid "Fee Label"
1789
+ msgstr "Название тарифа"
1790
+
1791
+ #: admin/templates/fees-addoredit.tpl.php:46
1792
+ msgctxt "fees admin"
1793
+ msgid "Fee Amount"
1794
+ msgstr "Стоимость"
1795
+
1796
+ #: admin/templates/fees-addoredit.tpl.php:62
1797
+ msgctxt "fees admin"
1798
+ msgid "Listing run in days"
1799
+ msgstr "Длительность действия записи"
1800
+
1801
+ #: admin/templates/fees-addoredit.tpl.php:65
1802
+ msgctxt "fees admin"
1803
+ msgid "run listing for"
1804
+ msgstr "показывать запись в течение"
1805
+
1806
+ #: admin/templates/fees-addoredit.tpl.php:74
1807
+ msgctxt "fees admin"
1808
+ msgid "days"
1809
+ msgstr "дней(я)"
1810
+
1811
+ #: admin/templates/fees-addoredit.tpl.php:77
1812
+ msgctxt "fees admin"
1813
+ msgid "run listing forever"
1814
+ msgstr "показывать запись пожизненно"
1815
+
1816
+ #: admin/templates/fees-addoredit.tpl.php:82
1817
+ msgctxt "fees admin"
1818
+ msgid "Number of images allowed"
1819
+ msgstr "Количество разрешённых изображений"
1820
+
1821
+ #: admin/templates/fees-addoredit.tpl.php:94
1822
+ #, fuzzy
1823
+ msgctxt "fees admin"
1824
+ msgid "Is featured listing/sticky?"
1825
+ msgstr "Особые записи"
1826
+
1827
+ #: admin/templates/fees-addoredit.tpl.php:102
1828
+ msgctxt "fees admin"
1829
+ msgid ""
1830
+ "This floats the listing to the top of search results and browsing the "
1831
+ "directory when the user buys this plan."
1832
+ msgstr ""
1833
+
1834
+ #: admin/templates/fees-addoredit.tpl.php:107
1835
+ msgctxt "fees admin"
1836
+ msgid "Apply to category"
1837
+ msgstr "Применить к рубрике"
1838
+
1839
+ #: admin/templates/fees-addoredit.tpl.php:111
1840
+ #: admin/templates/fees-addoredit.tpl.php:114
1841
+ msgctxt "fees admin"
1842
+ msgid "* All Categories *"
1843
+ msgstr "* Все рубрики *"
1844
+
1845
+ #: admin/templates/fees-addoredit.tpl.php:128
1846
+ #, fuzzy
1847
+ msgctxt "fees admin"
1848
+ msgid "Fee Description"
1849
+ msgstr "Описание"
1850
+
1851
+ #: admin/templates/fees-addoredit.tpl.php:143
1852
+ msgctxt "fees admin"
1853
+ msgid "Add Fee"
1854
+ msgstr "Добавить тариф"
1855
+
1856
+ #: admin/templates/fees-addoredit.tpl.php:143
1857
+ msgctxt "fees admin"
1858
+ msgid "Update Fee"
1859
+ msgstr "Обновить тариф"
1860
+
1861
+ #: admin/templates/fees-confirm-delete.tpl.php:2
1862
+ msgctxt "fees admin"
1863
+ msgid "Delete Listing Fee"
1864
+ msgstr "Удалить тариф записи"
1865
+
1866
+ #: admin/templates/fees-confirm-delete.tpl.php:7
1867
+ #, fuzzy
1868
+ msgctxt "fees admin"
1869
+ msgid "Are you sure you want to disable the \"%s\" fee?"
1870
+ msgstr "Вы уверены, что хотите удалить тариф \"%s\"?"
1871
+
1872
+ #: admin/templates/fees-confirm-delete.tpl.php:9
1873
+ msgctxt "fees admin"
1874
+ msgid "Are you sure you want to delete the \"%s\" fee?"
1875
+ msgstr "Вы уверены, что хотите удалить тариф \"%s\"?"
1876
+
1877
+ #: admin/templates/fees-confirm-delete.tpl.php:16
1878
+ #, fuzzy
1879
+ msgctxt "fee admin"
1880
+ msgid "Disable Fee"
1881
+ msgstr "Удалить тариф"
1882
+
1883
+ #: admin/templates/fees-confirm-delete.tpl.php:16
1884
+ msgctxt "fee admin"
1885
+ msgid "Delete Fee"
1886
+ msgstr "Удалить тариф"
1887
+
1888
+ #: admin/templates/fees.tpl.php:3
1889
+ msgctxt "fees admin"
1890
+ msgid "Add New Listing Fee"
1891
+ msgstr "Добавить тариф"
1892
+
1893
+ #: admin/templates/fees.tpl.php:10
1894
+ msgctxt "fees admin"
1895
+ msgid "Payments are currently turned off."
1896
+ msgstr "Платежи на настоящее время отключены."
1897
+
1898
+ #: admin/templates/fees.tpl.php:13
1899
+ msgctxt "fees admin"
1900
+ msgid ""
1901
+ "To manage fees you need to go to the <a>Manage Options - Payment</a> page "
1902
+ "and check the box next to 'Turn On Payments' under 'Payment Settings'."
1903
+ msgstr ""
1904
+ "Для управления тарифами Вам надо перейти в раздел <a>Настройки / Оплата</a> "
1905
+ включить параметр \"Включить поддержку платного режима\"."
1906
+
1907
+ #: admin/templates/fees.tpl.php:24
1908
+ msgctxt "fees admin"
1909
+ msgid "Order fees on the frontend by:"
1910
+ msgstr "Сортировать тарифы:"
1911
+
1912
+ #: admin/templates/fees.tpl.php:32
1913
+ msgctxt "fees admin"
1914
+ msgid "↑ Ascending"
1915
+ msgstr "↑ По возрастанию"
1916
+
1917
+ #: admin/templates/fees.tpl.php:32
1918
+ msgctxt "fees admin"
1919
+ msgid "↓ Descending"
1920
+ msgstr "↓ По убыванию"
1921
+
1922
+ #: admin/templates/fees.tpl.php:38
1923
+ msgctxt "fees admin"
1924
+ msgid "Drag and drop to re-order fees."
1925
+ msgstr "Поменяйте порядок тарифов перетаскивая их здесь."
1926
+
1927
+ #: admin/templates/fees.tpl.php:54
1928
+ msgctxt "fees admin"
1929
+ msgid ""
1930
+ "These are all of the fee plans displayed to the user when they place a "
1931
+ "listing. Your current mode of \"%s\" restricts what you see here. Those on "
1932
+ "the <a>Not Available</a> filter will become active when you change the "
1933
+ "payment mode."
1934
+ msgstr ""
1935
+
1936
+ #: admin/templates/fees.tpl.php:57 admin/templates/fees.tpl.php:63
1937
+ #: admin/templates/fees.tpl.php:77
1938
+ #, fuzzy
1939
+ msgctxt "fees admin"
1940
+ msgid "Paid"
1941
+ msgstr "Оплачено"
1942
+
1943
+ #: admin/templates/fees.tpl.php:57 admin/templates/fees.tpl.php:63
1944
+ #: admin/templates/fees.tpl.php:77
1945
+ #, fuzzy
1946
+ msgctxt "fees admin"
1947
+ msgid "Free"
1948
+ msgstr "Бесплатно"
1949
+
1950
+ #: admin/templates/fees.tpl.php:60
1951
+ msgctxt "fees admin"
1952
+ msgid ""
1953
+ "These are all of the fee plans that aren't available because you're in \"%s"
1954
+ "\" mode. Those on the Active filter will become Not Available when you "
1955
+ "change the payment mode."
1956
+ msgstr ""
1957
+
1958
+ #: admin/templates/fees.tpl.php:66
1959
+ msgctxt "fees admin"
1960
+ msgid ""
1961
+ "These fee plans were disabled by the admin and will not show to the end user "
1962
+ "regardless of mode until you enable them."
1963
+ msgstr ""
1964
+
1965
+ #: admin/templates/fees.tpl.php:74
1966
+ msgctxt "fees admin"
1967
+ msgid ""
1968
+ "These are all of the fee plans you have configured. Not all of them are "
1969
+ "available for the current mode (currently set to \"%s\"). To see the fee "
1970
+ "plans for this mode click <a>Active</a>."
1971
+ msgstr ""
1972
+
1973
+ #: admin/templates/fees.tpl.php:89 admin/templates/sidebar.tpl.php:13
1974
+ msgctxt "admin sidebar"
1975
+ msgid "PayPal Gateway Module"
1976
+ msgstr "Платёжный шлюз PayPal"
1977
+
1978
+ #: admin/templates/fees.tpl.php:90 admin/templates/sidebar.tpl.php:14
1979
+ msgctxt "admin sidebar"
1980
+ msgid "2Checkout Gateway Module"
1981
+ msgstr "Платёжный шлюз 2Checkout"
1982
+
1983
+ #: admin/templates/fees.tpl.php:91 admin/templates/sidebar.tpl.php:5
1984
+ msgctxt "admin sidebar"
1985
+ msgid "PayFast Payment Module"
1986
+ msgstr "Платёжный шлюз PayFast"
1987
+
1988
+ #: admin/templates/fees.tpl.php:92 admin/templates/sidebar.tpl.php:6
1989
+ msgctxt "admin sidebar"
1990
+ msgid "Stripe Payment Module"
1991
+ msgstr "Платёжный шлюз Stripe"
1992
+
1993
+ #: admin/templates/fees.tpl.php:102
1994
+ msgctxt "admin templates"
1995
+ msgid ""
1996
+ "It does not appear you have any of the payment gateway modules enabled. "
1997
+ "Either <a>enable the default Authorize.net gateway</a> with your account "
1998
+ "info, or purchase a different payment gateway module in order to charge a "
1999
+ "fee for listings. To purchase additional payment gateways use the buttons "
2000
+ "below or visit %s."
2001
+ msgstr ""
2002
+ "Похоже, что у Вас не установлен ни один платёжный шлюз. Либо <a>включите "
2003
+ "шлюз по-умолчанию (Authorize.net)</a>, либо купите модуль другого платёжного "
2004
+ "шлюза. Пока Вы этого не сделаете, Вы не сможете создать тарифные планы.<br /"
2005
+ "><br />Чтобы купить модули платёжных шлюзов используйте следующие кнопки или "
2006
+ "посетите наш магазин по адресу %s."
2007
+
2008
+ #: admin/templates/fees.tpl.php:118
2009
+ msgctxt "admin templates"
2010
+ msgid "Already installed."
2011
+ msgstr "Уже устновлен."
2012
+
2013
+ #: admin/templates/fees.tpl.php:123
2014
+ msgctxt "admin templates"
2015
+ msgid ""
2016
+ "You can buy the <a>%s</a> to add <a>%s</a> as a payment option for your "
2017
+ "users."
2018
+ msgstr ""
2019
+ "Вы можете купить модуль \"<a>%s</a>\" чтобы добавить систему <a>%s</a> в "
2020
+ "качестве одного из возможных способов оплаты для пользователей Вашего сайта."
2021
+
2022
+ #: admin/templates/form-fields-addoredit.tpl.php:1
2023
+ msgctxt "form-fields admin"
2024
+ msgid "Add Form Field"
2025
+ msgstr "Добавить поле формы"
2026
+
2027
+ #: admin/templates/form-fields-addoredit.tpl.php:14
2028
+ msgctxt "form-fields admin"
2029
+ msgid "Field Association"
2030
+ msgstr "Ассоциация"
2031
+
2032
+ #: admin/templates/form-fields-addoredit.tpl.php:14
2033
+ #: admin/templates/form-fields-addoredit.tpl.php:36
2034
+ #: admin/templates/form-fields-addoredit.tpl.php:60
2035
+ #, fuzzy
2036
+ msgctxt "form-fields admin"
2037
+ msgid "required"
2038
+ msgstr "обязательно"
2039
+
2040
+ #: admin/templates/form-fields-addoredit.tpl.php:36
2041
+ msgctxt "form-fields admin"
2042
+ msgid "Field Type"
2043
+ msgstr "Тип"
2044
+
2045
+ #: admin/templates/form-fields-addoredit.tpl.php:60
2046
+ msgctxt "form-fields admin"
2047
+ msgid "Field Label"
2048
+ msgstr "Метка"
2049
+
2050
+ #: admin/templates/form-fields-addoredit.tpl.php:70
2051
+ msgctxt "form-fields admin"
2052
+ msgid "Field description"
2053
+ msgstr "Описание"
2054
+
2055
+ #: admin/templates/form-fields-addoredit.tpl.php:70
2056
+ #, fuzzy
2057
+ msgctxt "form-fields admin"
2058
+ msgid "optional"
2059
+ msgstr "Необязательное"
2060
+
2061
+ #: admin/templates/form-fields-addoredit.tpl.php:87
2062
+ msgctxt "form-fields admin"
2063
+ msgid "Field-specific settings"
2064
+ msgstr "Настройки, связанные с полем"
2065
+
2066
+ #: admin/templates/form-fields-addoredit.tpl.php:96
2067
+ msgctxt "form-fields admin"
2068
+ msgid "Field validation options"
2069
+ msgstr "Параметры проверки поля"
2070
+
2071
+ #: admin/templates/form-fields-addoredit.tpl.php:100
2072
+ msgctxt "form-fields admin"
2073
+ msgid "Field Validator"
2074
+ msgstr "Требования поля"
2075
+
2076
+ #: admin/templates/form-fields-addoredit.tpl.php:104
2077
+ msgctxt "form-fields admin"
2078
+ msgid "No validation"
2079
+ msgstr "Без проверки"
2080
+
2081
+ #: admin/templates/form-fields-addoredit.tpl.php:116
2082
+ msgctxt "form-fields admin"
2083
+ msgid "Is field required?"
2084
+ msgstr "Обязательное поле?"
2085
+
2086
+ #: admin/templates/form-fields-addoredit.tpl.php:122
2087
+ msgctxt "form-fields admin"
2088
+ msgid "This field is required."
2089
+ msgstr "Включите чтобы сделать это поле обязательным для заполнения."
2090
+
2091
+ #: admin/templates/form-fields-addoredit.tpl.php:130
2092
+ msgctxt "form-fields admin"
2093
+ msgid "Field display options"
2094
+ msgstr "Параметры отображения поля"
2095
+
2096
+ #: admin/templates/form-fields-addoredit.tpl.php:134
2097
+ msgctxt "form-fields admin"
2098
+ msgid "Show this value in excerpt view?"
2099
+ msgstr "Показать это поле в составе цитаты?"
2100
+
2101
+ #: admin/templates/form-fields-addoredit.tpl.php:140
2102
+ msgctxt "form-fields admin"
2103
+ msgid "Display this value in post excerpt view."
2104
+ msgstr "Включите чтобы показать это поле в составе цитаты."
2105
+
2106
+ #: admin/templates/form-fields-addoredit.tpl.php:146
2107
+ msgctxt "form-fields admin"
2108
+ msgid "Show this value in listing view?"
2109
+ msgstr "Показать это поле в полном виде?"
2110
+
2111
+ #: admin/templates/form-fields-addoredit.tpl.php:152
2112
+ msgctxt "form-fields admin"
2113
+ msgid "Display this value in the listing view."
2114
+ msgstr ""
2115
+ "Включите чтобы показывать значение этого поля на странице полной информации "
2116
+ "о записи."
2117
+
2118
+ #: admin/templates/form-fields-addoredit.tpl.php:158
2119
+ msgctxt "form-fields admin"
2120
+ msgid "Include this field in the search form?"
2121
+ msgstr "Включить в форму поиска?"
2122
+
2123
+ #: admin/templates/form-fields-addoredit.tpl.php:164
2124
+ msgctxt "form-fields admin"
2125
+ msgid "Include this field in the search form."
2126
+ msgstr "Включите чтобы можно было использовать это поле в форме поиска."
2127
+
2128
+ #: admin/templates/form-fields-addoredit.tpl.php:170
2129
+ msgctxt "form-fields admin"
2130
+ msgid "Hide this field's label?"
2131
+ msgstr "Скрыть метку этого поля?"
2132
+
2133
+ #: admin/templates/form-fields-addoredit.tpl.php:176
2134
+ msgctxt "form-fields admin"
2135
+ msgid "Hide this field's label when displaying it."
2136
+ msgstr "Включите чтобы при отображении этого поля скрыть его метку."
2137
+
2138
+ #: admin/templates/form-fields-addoredit.tpl.php:183
2139
+ msgctxt "form-fields admin"
2140
+ msgid "Update Field"
2141
+ msgstr "Сохранить поле"
2142
+
2143
+ #: admin/templates/form-fields-addoredit.tpl.php:185
2144
+ msgctxt "form-fields admin"
2145
+ msgid "Add Field"
2146
+ msgstr "Добавить поле"
2147
+
2148
+ #: admin/templates/form-fields-confirm-delete.tpl.php:2
2149
+ msgctxt "form-fields admin"
2150
+ msgid "Delete Form Field"
2151
+ msgstr "Удалить поле формы"
2152
+
2153
+ #: admin/templates/form-fields-confirm-delete.tpl.php:6
2154
+ msgctxt "form-fields admin"
2155
+ msgid "Are you sure you want to delete the \"%s\" field?"
2156
+ msgstr "Вы уверены, что хотите удалить поле \"%s\"?"
2157
+
2158
+ #: admin/templates/form-fields-confirm-delete.tpl.php:12
2159
+ msgctxt "form-fields admin"
2160
+ msgid "Delete Field"
2161
+ msgstr "Удалить поле"
2162
+
2163
+ #: admin/templates/form-fields-tags.tpl.php:5
2164
+ msgctxt "form-fields admin"
2165
+ msgid "-- None --"
2166
+ msgstr "-- нет --"
2167
+
2168
+ #: admin/templates/form-fields-tags.tpl.php:14
2169
+ msgctxt "form-fields admin"
2170
+ msgid "Theme Tags"
2171
+ msgstr "Метки темы"
2172
+
2173
+ #: admin/templates/form-fields-tags.tpl.php:19
2174
+ msgctxt "form-fields admin"
2175
+ msgid ""
2176
+ "Before you create fields, make sure you've mapped all of your EXISTING ones "
2177
+ "first, otherwise you'll appear to be \"missing data\" on your listings."
2178
+ msgstr ""
2179
+
2180
+ #: admin/templates/form-fields-tags.tpl.php:22
2181
+ #, fuzzy
2182
+ msgctxt "form-fields admin"
2183
+ msgid "Create Missing Fields"
2184
+ msgstr "Поля записи:"
2185
+
2186
+ #: admin/templates/form-fields-tags.tpl.php:30
2187
+ msgctxt "form-fields admin"
2188
+ msgid "Field Tag"
2189
+ msgstr "Метка поля"
2190
+
2191
+ #: admin/templates/form-fields-tags.tpl.php:31
2192
+ msgctxt "form-fields admin"
2193
+ msgid "Field"
2194
+ msgstr "Поле"
2195
+
2196
+ #: admin/templates/form-fields.tpl.php:3
2197
+ msgctxt "form-fields admin"
2198
+ msgid "Add New Form Field"
2199
+ msgstr "Добавить новое поле формы"
2200
+
2201
+ #: admin/templates/form-fields.tpl.php:4
2202
+ msgctxt "form-fields admin"
2203
+ msgid "Preview Form"
2204
+ msgstr "Предварительный просмотр формы"
2205
+
2206
+ #: admin/templates/form-fields.tpl.php:6 admin/templates/themes.tpl.php:4
2207
+ msgctxt "form-fields admin"
2208
+ msgid "Manage Theme Tags"
2209
+ msgstr "Настроить метки темы"
2210
+
2211
+ #: admin/templates/form-fields.tpl.php:12
2212
+ msgctxt "form-fields admin"
2213
+ msgid ""
2214
+ "Here, you can create new fields for your listings, edit or delete existing "
2215
+ "ones, change the order and visibility of the fields as well as configure "
2216
+ "special options for them."
2217
+ msgstr ""
2218
+ "Здесь Вы можете создать новые поля данных для Ваших записей, или изменить "
2219
+ "(или удалить) существующие. Можно изменить порядок их следования, "
2220
+ "необходимость их отображения и другие их параметры."
2221
+
2222
+ #: admin/templates/form-fields.tpl.php:18
2223
+ msgctxt "form-fields admin"
2224
+ msgid "Please see the <a>Form Fields documentation</a> for more details."
2225
+ msgstr ""
2226
+ "<br />Для дополнительной информации обратитесь к <a>Документации по полям "
2227
+ "форм</a>."
2228
+
2229
+ #. #-#-#-#-# WPBDM.pot (Business Directory Plugin 4.1.6) #-#-#-#-#
2230
+ #. Plugin Name of the plugin/theme
2231
+ #: admin/templates/header.tpl.php:4
2232
+ msgid "Business Directory Plugin"
2233
+ msgstr "Справочник Услуг"
2234
+
2235
+ #: admin/templates/home.tpl.php:4
2236
+ msgctxt "admin home"
2237
+ msgid "Welcome to Business Directory Plugin. You are using %s."
2238
+ msgstr ""
2239
+ "Добро пожаловать в Справочник Услуг. На Вашем сайте установлена версия %s."
2240
+
2241
+ #: admin/templates/home.tpl.php:5
2242
+ msgctxt "admin home"
2243
+ msgid ""
2244
+ "Thanks for choosing us. There's a lot you probably want to get done, so "
2245
+ "let's jump right in!"
2246
+ msgstr ""
2247
+ "Спасибо за то, что Вы выбрали наш плагин. Скорее всего есть много вещей, "
2248
+ "которые Вы хотите сделать с этим плагином, и потому - давайте приступим к "
2249
+ "делам прямо сейчас!"
2250
+
2251
+ #: admin/templates/home.tpl.php:11
2252
+ msgctxt "admin home"
2253
+ msgid ""
2254
+ "Our complete documentation is <a>here</a> which we encourage you to use "
2255
+ "while setting things up."
2256
+ msgstr ""
2257
+ "Полна документация по плагину доступна на <a>этой странице</a>, и мы "
2258
+ "рекомендуем Вам держать её открытой пока Вы всё настраиваете."
2259
+
2260
+ #: admin/templates/home.tpl.php:14
2261
+ msgctxt "admin home"
2262
+ msgid ""
2263
+ "We have some quick-start scenarios that you will find useful regarding setup "
2264
+ "and configuration <a>here</a>."
2265
+ msgstr ""
2266
+ "Также у нас есть <a>несколько примеров сценариев</a>, которым могут "
2267
+ "оказаться Вам полезными с точки зрения настроек."
2268
+
2269
+ #: admin/templates/home.tpl.php:18
2270
+ msgctxt "admin home"
2271
+ msgid ""
2272
+ "If you have questions, please post a comment on <a>support forum</a> and "
2273
+ "we'll answer it within 24 hours most days."
2274
+ msgstr ""
2275
+ если у Вас появятся вопросы, то Вы можете задать из на нашем <a>форуме "
2276
+ "поддержки</a>, и мы обычно отвечаем на них в течение суток."
2277
+
2278
+ #: admin/templates/home.tpl.php:25
2279
+ msgid "Configure/Manage Options"
2280
+ msgstr "Основные настройки"
2281
+
2282
+ #: admin/templates/home.tpl.php:28
2283
+ msgid "Setup/Manage Form Fields"
2284
+ msgstr "Настроить поля форм"
2285
+
2286
+ #: admin/templates/home.tpl.php:31
2287
+ msgid "Setup/Manage Fees"
2288
+ msgstr "Настроить тарифы"
2289
+
2290
+ #: admin/templates/home.tpl.php:37
2291
+ msgid "Featured Listings Pending Upgrade"
2292
+ msgstr "Специальные записи, ожидающие утверждения"
2293
+
2294
+ #: admin/templates/home.tpl.php:44
2295
+ msgid "Manage Paid Listings"
2296
+ msgstr "Платные записи"
2297
+
2298
+ #: admin/templates/listing-change-fee.tpl.php:3
2299
+ msgctxt "admin listing fee"
2300
+ msgid "Listing Fee Selection"
2301
+ msgstr "Выбрать тариф для записи"
2302
+
2303
+ #: admin/templates/listing-change-fee.tpl.php:5
2304
+ msgctxt "admin listing fee"
2305
+ msgid "Select a fee plan to be used for this listing in the \"%s\" category."
2306
+ msgstr ""
2307
+ "Выберите тарифный план для использования с этой записью в рубрике \"%s\"."
2308
+
2309
+ #: admin/templates/listing-change-fee.tpl.php:11
2310
+ msgctxt "admin listing fee"
2311
+ msgid "Current"
2312
+ msgstr "Текущий"
2313
+
2314
+ #: admin/templates/listing-change-fee.tpl.php:14
2315
+ msgctxt "admin listing fee"
2316
+ msgid "Use this fee"
2317
+ msgstr "Использовать этот тариф"
2318
+
2319
+ #: admin/templates/listing-change-fee.tpl.php:21
2320
+ msgctxt "admin infometabox"
2321
+ msgid "%d image"
2322
+ msgid_plural "%d images"
2323
+ msgstr[0] "%d изображение"
2324
+ msgstr[1] "%d изображения(й)"
2325
+
2326
+ #: admin/templates/listing-change-fee.tpl.php:23
2327
+ msgctxt "admin infometabox"
2328
+ msgid "Listing never expires"
2329
+ msgstr "Запись никогда не истекает"
2330
+
2331
+ #: admin/templates/listing-change-fee.tpl.php:25
2332
+ msgctxt "admin infometabox"
2333
+ msgid "%d day"
2334
+ msgid_plural "%d days"
2335
+ msgstr[0] "%d день"
2336
+ msgstr[1] "%d дней(я)"
2337
+
2338
+ #: admin/templates/listing-metabox-categories.tpl.php:22
2339
+ msgctxt "admin infometabox"
2340
+ msgid "No categories on this listing. Please add one to associate fees."
2341
+ msgstr ""
2342
+ "У этой записи нет рубрик. Пожалуйста выберите рубрику, чтобы определить цену "
2343
+ "публикации."
2344
+
2345
+ #: admin/templates/listing-metabox-categories.tpl.php:29
2346
+ msgctxt "admin infometabox"
2347
+ msgid "(recurring)"
2348
+ msgstr "(периодически)"
2349
+
2350
+ #: admin/templates/listing-metabox-categories.tpl.php:34
2351
+ msgctxt "admin infometabox"
2352
+ msgid "Expired"
2353
+ msgstr "Истекло"
2354
+
2355
+ #: admin/templates/listing-metabox-categories.tpl.php:37
2356
+ msgctxt "admin infometabox"
2357
+ msgid "Payment Pending"
2358
+ msgstr "Ожидается платёж"
2359
+
2360
+ #: admin/templates/listing-metabox-categories.tpl.php:41
2361
+ msgctxt "admin infometabox"
2362
+ msgid "OK"
2363
+ msgstr "ДА"
2364
+
2365
+ #: admin/templates/listing-metabox-categories.tpl.php:49
2366
+ msgctxt "admin infometabox"
2367
+ msgid "Fee"
2368
+ msgstr "Тариф"
2369
+
2370
+ #: admin/templates/listing-metabox-categories.tpl.php:54
2371
+ msgctxt "admin infometabox"
2372
+ msgid "# Images"
2373
+ msgstr "Картинок"
2374
+
2375
+ #: admin/templates/listing-metabox-categories.tpl.php:62
2376
+ msgctxt "admin infometabox"
2377
+ msgid "Expired on"
2378
+ msgstr "Истекло"
2379
+
2380
+ #: admin/templates/listing-metabox-categories.tpl.php:64
2381
+ msgctxt "admin infometabox"
2382
+ msgid "Expires on"
2383
+ msgstr "Истекает"
2384
+
2385
+ #: admin/templates/listing-metabox-categories.tpl.php:72
2386
+ msgctxt "admin infometabox"
2387
+ msgid "Click to manually change expiration date."
2388
+ msgstr "Изменить дату истечения вручную."
2389
+
2390
+ #: admin/templates/listing-metabox-categories.tpl.php:75
2391
+ msgctxt "admin infometabox"
2392
+ msgid "Never expires"
2393
+ msgstr "Никогда не истечёт"
2394
+
2395
+ #: admin/templates/listing-metabox-categories.tpl.php:75
2396
+ msgctxt "admin infometabox"
2397
+ msgid "Edit"
2398
+ msgstr "Изменить"
2399
+
2400
+ #: admin/templates/listing-metabox-categories.tpl.php:87
2401
+ msgctxt "admin infometabox"
2402
+ msgid "See payment info"
2403
+ msgstr "Показать информацию о платеже"
2404
+
2405
+ #: admin/templates/listing-metabox-categories.tpl.php:92
2406
+ msgctxt "admin infometabox"
2407
+ msgid "Renewal URL (copy & paste)"
2408
+ msgstr "Ссылка для продления (для копирования)"
2409
+
2410
+ #: admin/templates/listing-metabox-categories.tpl.php:92
2411
+ msgctxt "admin infometabox"
2412
+ msgid "Show renewal link"
2413
+ msgstr "Показать ссылку на продление"
2414
+
2415
+ #: admin/templates/listing-metabox-categories.tpl.php:99
2416
+ msgctxt "admin infometabox"
2417
+ msgid "Send renewal e-mail to user"
2418
+ msgstr "Послать уведомление о продлении автору по электронной почте"
2419
+
2420
+ #: admin/templates/listing-metabox-categories.tpl.php:107
2421
+ msgctxt "admin infometabox"
2422
+ msgid "Renew manually..."
2423
+ msgstr "Продлить вручную..."
2424
+
2425
+ #: admin/templates/listing-metabox-categories.tpl.php:107
2426
+ msgctxt "admin infometabox"
2427
+ msgid "Change fee..."
2428
+ msgstr "Изменить цену..."
2429
+
2430
+ #: admin/templates/listing-metabox-categories.tpl.php:115
2431
+ msgctxt "admin infometabox"
2432
+ msgid "Remove category"
2433
+ msgstr "Удалить рубрику"
2434
+
2435
+ #: admin/templates/listing-metabox-fees.tpl.php:1
2436
+ msgctxt "admin infometabox"
2437
+ msgid "Fee Information"
2438
+ msgstr "Информация о тарифах"
2439
+
2440
+ #: admin/templates/listing-metabox-fees.tpl.php:3
2441
+ msgctxt "admin infometabox"
2442
+ msgid "Payment Mode:"
2443
+ msgstr "Режим оплаты:"
2444
+
2445
+ #: admin/templates/listing-metabox-fees.tpl.php:3
2446
+ msgctxt "admin infometabox"
2447
+ msgid "Paid"
2448
+ msgstr "Платный"
2449
+
2450
+ #: admin/templates/listing-metabox-fees.tpl.php:3
2451
+ msgctxt "admin infometabox"
2452
+ msgid "Free"
2453
+ msgstr "Бесплатно"
2454
+
2455
+ #: admin/templates/listing-metabox-fees.tpl.php:6
2456
+ msgctxt "admin infometabox"
2457
+ msgid "To change your payment mode, go to <a href=\"%s\">Payment Settings</a>."
2458
+ msgstr ""
2459
+ "Чтобы настроить режим оплаты, перейдите в панель <a href=\"%s\">Настройки "
2460
+ "Платежей</a>."
2461
+
2462
+ #: admin/templates/listing-metabox-fees.tpl.php:12
2463
+ msgctxt "admin infometabox"
2464
+ msgid ""
2465
+ "Note: In Free mode, the fee plans will always be set to \"Free Listing\" "
2466
+ "below."
2467
+ msgstr ""
2468
+ "Примечание: в Бесплатном режиме тарифы всегда будут равны тому, как указано "
2469
+ "для \"Бесплатной Записи\"."
2470
+
2471
+ #: admin/templates/listing-metabox-fees.tpl.php:22
2472
+ #: admin/templates/listing-metabox-feesummary.tpl.php:12
2473
+ msgctxt "admin infometabox"
2474
+ msgid "Renew listing in all expired categories"
2475
+ msgstr "Продлить записи во всех истекших рубриках"
2476
+
2477
+ #: admin/templates/listing-metabox-feesummary.tpl.php:1
2478
+ msgctxt "admin infometabox"
2479
+ msgid "Categories for this listing"
2480
+ msgstr "Рубрики этой записи"
2481
+
2482
+ #: admin/templates/listing-metabox-transactions.tpl.php:3
2483
+ msgctxt "admin infometabox"
2484
+ msgid "Initial Payment"
2485
+ msgstr "Начальный платёж"
2486
+
2487
+ #: admin/templates/listing-metabox-transactions.tpl.php:4
2488
+ msgctxt "admin infometabox"
2489
+ msgid "Listing Edit"
2490
+ msgstr "Изменить"
2491
+
2492
+ #: admin/templates/listing-metabox-transactions.tpl.php:5
2493
+ msgctxt "admin infometabox"
2494
+ msgid "Listing Renewal"
2495
+ msgstr "Продление"
2496
+
2497
+ #: admin/templates/listing-metabox-transactions.tpl.php:6
2498
+ msgctxt "admin infometabox"
2499
+ msgid "Upgrade to sticky"
2500
+ msgstr "Поднять статус до Особой"
2501
+
2502
+ #: admin/templates/listing-metabox-transactions.tpl.php:10
2503
+ msgctxt "admin"
2504
+ msgid "Payments History"
2505
+ msgstr "История платежа"
2506
+
2507
+ #: admin/templates/listing-metabox-transactions.tpl.php:12
2508
+ msgctxt "admin listing metabox"
2509
+ msgid "Click a payment to see the details or approve/reject the transaction."
2510
+ msgstr ""
2511
+ "Кликните на платёж, чтобы увидеть его статус, или чтобы утвердить или "
2512
+ "отменить транзакцию."
2513
+
2514
+ #: admin/templates/listing-metabox-transactions.tpl.php:16
2515
+ msgctxt "listing metabox"
2516
+ msgid "There are no transactions associated to this listing."
2517
+ msgstr "Для этой записи не было платежей."
2518
+
2519
+ #: admin/templates/payment-details.tpl.php:7
2520
+ msgctxt "admin payments"
2521
+ msgid "Payment Details"
2522
+ msgstr "Детали платежа"
2523
+
2524
+ #: admin/templates/payment-details.tpl.php:9
2525
+ msgctxt "admin payments"
2526
+ msgid "Payment #%d"
2527
+ msgstr "Платёж %d"
2528
+
2529
+ #: admin/templates/payment-details.tpl.php:16
2530
+ msgctxt "admin payments"
2531
+ msgid "Created on"
2532
+ msgstr "Создан"
2533
+
2534
+ #: admin/templates/payment-details.tpl.php:19
2535
+ msgctxt "admin infometabox"
2536
+ msgid "Amount"
2537
+ msgstr "Сумма"
2538
+
2539
+ #: admin/templates/payment-details.tpl.php:22
2540
+ msgctxt "admin infometabox"
2541
+ msgid "Gateway"
2542
+ msgstr "Шлюз"
2543
+
2544
+ #: admin/templates/payment-details.tpl.php:26
2545
+ msgctxt "admin infometabox"
2546
+ msgid "Processed on"
2547
+ msgstr "Обработано"
2548
+
2549
+ #: admin/templates/payment-details.tpl.php:28
2550
+ msgctxt "admin infometabox"
2551
+ msgid "Processed by"
2552
+ msgstr "Обработано"
2553
+
2554
+ #: admin/templates/payment-details.tpl.php:41
2555
+ msgctxt "admin payments"
2556
+ msgid "Approve payment"
2557
+ msgstr "Утвердить платёж"
2558
+
2559
+ #: admin/templates/payment-details.tpl.php:46
2560
+ msgctxt "admin payments"
2561
+ msgid "Reject payment"
2562
+ msgstr "Отказать в платеже"
2563
+
2564
+ #: admin/templates/settings-reset.tpl.php:2
2565
+ #, fuzzy
2566
+ msgid "Business Directory - Reset Defaults"
2567
+ msgstr "Справочник Услуг - Новые Записи"
2568
+
2569
+ #: admin/templates/settings-reset.tpl.php:4
2570
+ #, fuzzy
2571
+ msgctxt "settings"
2572
+ msgid "← Return to \"Manage Options\""
2573
+ msgstr "← Вернуться к \"Управлению Полями Формы\""
2574
+
2575
+ #: admin/templates/settings-reset.tpl.php:10
2576
+ #, fuzzy
2577
+ msgid ""
2578
+ "Use this option if you want to go back to the original factory settings for "
2579
+ "BD."
2580
+ msgstr ""
2581
+ "Используйте эту команду если Вы хотите сбросить все настройки на "
2582
+ "поставляемые по-умолчанию с плагином. <b>Имейте в виду, что все Ваши "
2583
+ "настройки будут очищены!</b>"
2584
+
2585
+ #: admin/templates/settings-reset.tpl.php:11
2586
+ msgid "Please note that all of your existing settings will be lost."
2587
+ msgstr ""
2588
+
2589
+ #: admin/templates/settings-reset.tpl.php:17
2590
+ msgid "Reset Defaults"
2591
+ msgstr "Сбросить настройки"
2592
+
2593
+ #: admin/templates/settings.tpl.php:2
2594
+ msgid "Business Directory Settings"
2595
+ msgstr "Настройки Справочника Услуг"
2596
+
2597
+ #: admin/templates/settings.tpl.php:4
2598
+ #, fuzzy
2599
+ msgctxt "settings"
2600
+ msgid "Reset Defaults"
2601
+ msgstr "Сбросить настройки"
2602
+
2603
+ #: admin/templates/settings.tpl.php:21
2604
+ msgid "Settings updated."
2605
+ msgstr "Параметры сохранены."
2606
+
2607
+ #: admin/templates/sidebar.tpl.php:3
2608
+ msgctxt "admin sidebar"
2609
+ msgid "Discount Codes Module"
2610
+ msgstr "Коды для скидок"
2611
+
2612
+ #: admin/templates/sidebar.tpl.php:4
2613
+ msgctxt "admin sidebar"
2614
+ msgid "Claim Listings Module"
2615
+ msgstr "Запрос авторства"
2616
+
2617
+ #: admin/templates/sidebar.tpl.php:7
2618
+ msgctxt "admin sidebar"
2619
+ msgid "File Upload Module"
2620
+ msgstr "Загрузка файлов"
2621
+
2622
+ #: admin/templates/sidebar.tpl.php:8
2623
+ msgctxt "admin sidebar"
2624
+ msgid "Featured Levels Module"
2625
+ msgstr "Специальные платные функции"
2626
+
2627
+ #: admin/templates/sidebar.tpl.php:9
2628
+ msgctxt "admin sidebar"
2629
+ msgid "ZIP Code Search Module"
2630
+ msgstr "Поиск по почтовому индексу"
2631
+
2632
+ #: admin/templates/sidebar.tpl.php:10
2633
+ msgctxt "admin sidebar"
2634
+ msgid "Regions Module"
2635
+ msgstr "Географический фильтр"
2636
+
2637
+ #: admin/templates/sidebar.tpl.php:11
2638
+ msgctxt "admin sidebar"
2639
+ msgid "Ratings Module"
2640
+ msgstr "Рейтинги"
2641
+
2642
+ #: admin/templates/sidebar.tpl.php:12
2643
+ msgctxt "admin sidebar"
2644
+ msgid "Google Maps Module"
2645
+ msgstr "Карты Google"
2646
+
2647
+ #: admin/templates/sidebar.tpl.php:18
2648
+ #, fuzzy
2649
+ msgctxt "admin sidebar"
2650
+ msgid "Business Card Theme"
2651
+ msgstr "Наименование"
2652
+
2653
+ #: admin/templates/sidebar.tpl.php:19
2654
+ msgctxt "admin sidebar"
2655
+ msgid "Mobile Compact Theme"
2656
+ msgstr ""
2657
+
2658
+ #: admin/templates/sidebar.tpl.php:20
2659
+ msgctxt "admin sidebar"
2660
+ msgid "Restaurant Theme"
2661
+ msgstr ""
2662
+
2663
+ #: admin/templates/sidebar.tpl.php:21
2664
+ #, fuzzy
2665
+ msgctxt "admin sidebar"
2666
+ msgid "Tabbed Business Theme"
2667
+ msgstr "Наименование"
2668
+
2669
+ #: admin/templates/sidebar.tpl.php:22
2670
+ #, fuzzy
2671
+ msgctxt "admin sidebar"
2672
+ msgid "Elegant Business Theme"
2673
+ msgstr "Наименование"
2674
+
2675
+ #: admin/templates/sidebar.tpl.php:29
2676
+ msgctxt "admin sidebar"
2677
+ msgid "Like this plugin?"
2678
+ msgstr "Нравится этот плагин?"
2679
+
2680
+ #: admin/templates/sidebar.tpl.php:31
2681
+ msgctxt "admin sidebar"
2682
+ msgid "Why not do any or all of the following:"
2683
+ msgstr "Почему бы не сделать следующий шаг?"
2684
+
2685
+ #: admin/templates/sidebar.tpl.php:33
2686
+ msgctxt "admin sidebar"
2687
+ msgid "Give it a good rating on WordPress.org."
2688
+ msgstr "Поставьте хорошую оценку на сервере WordPress.org."
2689
+
2690
+ #: admin/templates/sidebar.tpl.php:34
2691
+ msgctxt "admin sidebar"
2692
+ msgid "Let other people know that it works with your WordPress setup."
2693
+ msgstr "Дайте знать другим людям, что этот плагин работает с Вашим сайтом."
2694
+
2695
+ #: admin/templates/sidebar.tpl.php:35
2696
+ msgctxt "admin sidebar"
2697
+ msgid "Buy a Premium Module"
2698
+ msgstr "Купите платный модуль."
2699
+
2700
+ #: admin/templates/sidebar.tpl.php:42
2701
+ msgctxt "admin sidebar"
2702
+ msgid "Get a Premium Module"
2703
+ msgstr "Получите платные модули:"
2704
+
2705
+ #: admin/templates/sidebar.tpl.php:45 admin/templates/sidebar.tpl.php:61
2706
+ msgctxt "admin sidebar"
2707
+ msgid "best deal"
2708
+ msgstr ""
2709
+
2710
+ #: admin/templates/sidebar.tpl.php:45
2711
+ msgctxt "admin sidebar"
2712
+ msgid "Combo Pack"
2713
+ msgstr ""
2714
+
2715
+ #: admin/templates/sidebar.tpl.php:45
2716
+ #, fuzzy
2717
+ msgctxt "admin sidebar"
2718
+ msgid "(All Modules)"
2719
+ msgstr "Установленные модули:"
2720
+
2721
+ #: admin/templates/sidebar.tpl.php:48 admin/templates/sidebar.tpl.php:64
2722
+ msgctxt "admin sidebar"
2723
+ msgid "new"
2724
+ msgstr ""
2725
+
2726
+ #: admin/templates/sidebar.tpl.php:58
2727
+ #, fuzzy
2728
+ msgctxt "admin sidebar"
2729
+ msgid "Get a Directory Theme"
2730
+ msgstr "Удалить тему справочника"
2731
+
2732
+ #: admin/templates/sidebar.tpl.php:61
2733
+ #, fuzzy
2734
+ msgctxt "admin sidebar"
2735
+ msgid "Theme Pack"
2736
+ msgstr "Метки темы"
2737
+
2738
+ #: admin/templates/sidebar.tpl.php:61
2739
+ #, fuzzy
2740
+ msgctxt "admin sidebar"
2741
+ msgid "(All Themes)"
2742
+ msgstr "Темы"
2743
+
2744
+ #: admin/templates/sidebar.tpl.php:74
2745
+ msgctxt "admin sidebar"
2746
+ msgid "Found a bug? Need support?"
2747
+ msgstr "Нашли глюк? Или нужна поддержка?"
2748
+
2749
+ #: admin/templates/sidebar.tpl.php:79
2750
+ msgctxt "admin sidebar"
2751
+ msgid "If you've found a bug or need support <a>visit the forums!</a>"
2752
+ msgstr ""
2753
+ "Если Вы натолкнулись на глюк в программе, или Вам нужна техническая "
2754
+ "поддержка, посетите <a>форум поддержки!</a>"
2755
+
2756
+ #: admin/templates/sidebar.tpl.php:82
2757
+ msgctxt "admin sidebar"
2758
+ msgid "Full plugin documentation"
2759
+ msgstr "Полная документация по плагину"
2760
+
2761
+ #: admin/templates/sidebar.tpl.php:83
2762
+ msgctxt "admin sidebar"
2763
+ msgid "Quick Start Guide"
2764
+ msgstr "Руководство по быстрому старту"
2765
+
2766
+ #: admin/templates/sidebar.tpl.php:84
2767
+ msgctxt "admin sidebar"
2768
+ msgid "Video Tutorials"
2769
+ msgstr "Видео-уроки"
2770
+
2771
+ #: admin/templates/sidebar.tpl.php:92
2772
+ msgctxt "admin sidebar"
2773
+ msgid "Installed Modules"
2774
+ msgstr "Установленные модули:"
2775
+
2776
+ #: admin/templates/sidebar.tpl.php:103 admin/templates/sidebar.tpl.php:112
2777
+ msgctxt "admin sidebar"
2778
+ msgid "Installed"
2779
+ msgstr "Установлен"
2780
+
2781
+ #: admin/templates/sidebar.tpl.php:105 admin/templates/sidebar.tpl.php:112
2782
+ msgctxt "admin sidebar"
2783
+ msgid "Not Installed"
2784
+ msgstr "Не установлен"
2785
+
2786
+ #: admin/templates/sidebar.tpl.php:111
2787
+ msgctxt "admin sidebar"
2788
+ msgid "Enhanced Categories Module"
2789
+ msgstr "Модуль продвинутых рубрик"
2790
+
2791
+ #: admin/templates/themes-delete-confirm.tpl.php:1
2792
+ #: admin/templates/themes-delete-confirm.tpl.php:13
2793
+ msgctxt "themes admin"
2794
+ msgid "Delete Directory Theme"
2795
+ msgstr "Удалить тему справочника"
2796
+
2797
+ #: admin/templates/themes-delete-confirm.tpl.php:3
2798
+ msgctxt "themes admin"
2799
+ msgid "Are you sure you want to delete the directory theme \"%s\"?"
2800
+ msgstr "Вы уверены, что хотите удалить тему справочника \"%s\"?"
2801
+
2802
+ #: admin/templates/themes-delete-confirm.tpl.php:12
2803
+ msgctxt "themes admin"
2804
+ msgid "Cancel"
2805
+ msgstr "Отменить"
2806
+
2807
+ #: admin/templates/themes-install.tpl.php:2
2808
+ #: admin/templates/themes-licenses.tpl.php:3 admin/templates/themes.tpl.php:3
2809
+ msgctxt "themes"
2810
+ msgid "Upload Directory Theme"
2811
+ msgstr "Загрузить тему справочника"
2812
+
2813
+ #: admin/templates/themes-install.tpl.php:8
2814
+ msgctxt "themes"
2815
+ msgid "This is a theme or skin from %s and is NOT a regular WordPress theme."
2816
+ msgstr "Это тема, созданная %s, а НЕ обычная тема WordPress."
2817
+
2818
+ #: admin/templates/themes-install.tpl.php:21
2819
+ msgctxt "themes"
2820
+ msgid "BD Theme archive (ZIP file)"
2821
+ msgstr "Архив темы справочника (файл ZIP)"
2822
+
2823
+ #: admin/templates/themes-install.tpl.php:30
2824
+ msgctxt "themes"
2825
+ msgid "Begin Upload"
2826
+ msgstr "Начать загрузку"
2827
+
2828
+ #: admin/templates/themes-item.tpl.php:3
2829
+ msgctxt "themes"
2830
+ msgid "Active:"
2831
+ msgstr "Активно:"
2832
+
2833
+ #: admin/templates/themes-item.tpl.php:17
2834
+ msgctxt "themes"
2835
+ msgid "Activate"
2836
+ msgstr "Активировать"
2837
+
2838
+ #: admin/templates/themes-item.tpl.php:35
2839
+ msgctxt "themes"
2840
+ msgid "Version:"
2841
+ msgstr "Версия:"
2842
+
2843
+ #: admin/templates/themes-item.tpl.php:38
2844
+ msgctxt "themes"
2845
+ msgid "Author:"
2846
+ msgstr "Автор:"
2847
+
2848
+ #: admin/templates/themes-licenses.tpl.php:24
2849
+ #, fuzzy
2850
+ msgctxt "themes"
2851
+ msgid "Deactivate License"
2852
+ msgstr "Деактивировать лицензию"
2853
+
2854
+ #: admin/templates/themes-licenses.tpl.php:27
2855
+ #, fuzzy
2856
+ msgctxt "themes"
2857
+ msgid "Deactivating license..."
2858
+ msgstr "Деактивация лицензии..."
2859
+
2860
+ #: admin/templates/themes-licenses.tpl.php:29
2861
+ #, fuzzy
2862
+ msgctxt "themes"
2863
+ msgid "Activate License"
2864
+ msgstr "Активировать лицензию"
2865
+
2866
+ #: admin/templates/themes-licenses.tpl.php:30
2867
+ #, fuzzy
2868
+ msgctxt "themes"
2869
+ msgid "Activating license..."
2870
+ msgstr "Активация лицензии..."
2871
+
2872
+ #: admin/templates/themes-tabs.tpl.php:6
2873
+ #, fuzzy
2874
+ msgctxt "admin themes"
2875
+ msgid "Available Themes"
2876
+ msgstr "Настроить метки темы"
2877
+
2878
+ #: admin/templates/themes-tabs.tpl.php:7
2879
+ #, fuzzy
2880
+ msgctxt "admin themes"
2881
+ msgid "Licenses"
2882
+ msgstr "Лицензии"
2883
+
2884
+ #: admin/templates/themes.tpl.php:5
2885
+ #, fuzzy
2886
+ msgctxt "themes"
2887
+ msgid "Settings"
2888
+ msgstr "Настройки"
2889
+
2890
+ #: admin/templates/themes.tpl.php:15
2891
+ msgctxt "themes"
2892
+ msgid ""
2893
+ "<a><b>Directory Themes</b></a> are pre-made templates for the <i>Business "
2894
+ "Directory Plugin</i> to change the look of the directory quickly and easily. "
2895
+ "We have a number of them available for purchase <a>here</a>."
2896
+ msgstr ""
2897
+
2898
+ #: admin/templates/themes.tpl.php:16
2899
+ msgctxt "themes"
2900
+ msgid ""
2901
+ "They are <strong>different</strong> than your regular WordPress theme and "
2902
+ "they are <strong>not</strong> a replacement for WP themes either. They will "
2903
+ "change the look and feel of your business directory only."
2904
+ msgstr ""
2905
+
2906
+ #: admin/templates/transactions.tpl.php:2
2907
+ msgctxt "admin transactions"
2908
+ msgid "Transactions"
2909
+ msgstr "Транзакции"
2910
+
2911
+ #: admin/templates/uninstall-capture-form.tpl.php:5
2912
+ msgctxt "uninstall"
2913
+ msgid "It doesn't work with my theme/plugins/site"
2914
+ msgstr ""
2915
+ "Он не работает с Вашей темой, или с Вашими плагинами, или с Вашим сайтом."
2916
+
2917
+ #: admin/templates/uninstall-capture-form.tpl.php:6
2918
+ msgctxt "uninstall"
2919
+ msgid "I can't set it up/Too complicated"
2920
+ msgstr "Вы не можете его настроить, или он слишком сложен."
2921
+
2922
+ #: admin/templates/uninstall-capture-form.tpl.php:7
2923
+ msgctxt "uninstall"
2924
+ msgid "Doesn't solve my problem"
2925
+ msgstr "Он не решает Вашу задачу."
2926
+
2927
+ #: admin/templates/uninstall-capture-form.tpl.php:8
2928
+ msgctxt "uninstall"
2929
+ msgid "Don't need it anymore/Not using it"
2930
+ msgstr "Он Вам больше не нужен, или Вы прекратили им пользоваться."
2931
+
2932
+ #: admin/templates/uninstall-capture-form.tpl.php:9
2933
+ msgctxt "uninstall"
2934
+ msgid "Other"
2935
+ msgstr "Другая причина:.."
2936
+
2937
+ #: admin/templates/uninstall-capture-form.tpl.php:16
2938
+ msgctxt "uninstall"
2939
+ msgid ""
2940
+ "We're sorry to see you leave. Could you take 10 seconds and answer one "
2941
+ "question for us to help us make the product better for everyone in the "
2942
+ "future?"
2943
+ msgstr ""
2944
+ "Нам очень жаль, что Вы решили расстаться с нашим плагином. Напоследок, могли "
2945
+ "бы Вы уделить нам 10 секунд и ответить на один вопрос, чтобы помочь нам "
2946
+ "сделать наш продукт ещё лучше для всех?"
2947
+
2948
+ #: admin/templates/uninstall-capture-form.tpl.php:19
2949
+ msgctxt "uninstall"
2950
+ msgid "Why are you deleting Business Directory Plugin?"
2951
+ msgstr "Вопрос: Почему Вы решили удалить плагин \"Справочник Услуг\"?"
2952
+
2953
+ #: admin/templates/uninstall-capture-form.tpl.php:29
2954
+ msgctxt "uninstall"
2955
+ msgid "Please tell us why are you deleting Business Directory Plugin."
2956
+ msgstr ""
2957
+ "Пожалуйста, оставьте нам сообщение о том, почему Вы удаляете плагин "
2958
+ "\"Справочник Услуг\"."
2959
+
2960
+ #: admin/templates/uninstall-capture-form.tpl.php:36
2961
+ msgctxt "uninstall"
2962
+ msgid "Uninstall Plugin"
2963
+ msgstr "Удалить плагин"
2964
+
2965
+ #: admin/templates/uninstall-complete.tpl.php:2
2966
+ msgctxt "admin uninstall"
2967
+ msgid "Uninstall Business Directory"
2968
+ msgstr "Удалить плагин Справочник Услуг"
2969
+
2970
+ #: admin/templates/uninstall-complete.tpl.php:7
2971
+ msgctxt "admin uninstall"
2972
+ msgid "Uninstall completed."
2973
+ msgstr "Удаление завершено."
2974
+
2975
+ #: admin/templates/uninstall-complete.tpl.php:8
2976
+ msgctxt "admin uninstall"
2977
+ msgid "Return to Dashboard."
2978
+ msgstr "Вернуться в Консоль."
2979
+
2980
+ #: admin/templates/uninstall-confirm.tpl.php:1
2981
+ msgctxt "uninstall"
2982
+ msgid "Uninstall Business Directory Plugin"
2983
+ msgstr "Удалить плагин Справочник Услуг"
2984
+
2985
+ #: admin/tracking.php:188
2986
+ msgctxt "tracking"
2987
+ msgid "Help Improve Business Directory"
2988
+ msgstr "Помогите нам улучшить Справочник Услуг"
2989
+
2990
+ #: admin/tracking.php:190
2991
+ msgctxt "tracking"
2992
+ msgid ""
2993
+ "Can Business Directory keep track of your theme, plugins, and other non-"
2994
+ "personal, non-identifying information to help us in testing the plugin for "
2995
+ "future releases?"
2996
+ msgstr ""
2997
+ "Разрешаете ли вы плагину Справочник Услуг оправлять нам сведения о Вашей "
2998
+ "теме, плагинах и другую анонимную информацию о Вашем сайте, чтобы помочь нам "
2999
+ "тестировать будущие версии плагина?"
3000
+
3001
+ #: admin/tracking.php:192
3002
+ msgctxt "tracking"
3003
+ msgid "What do you track?"
3004
+ msgstr "Что отслеживается?"
3005
+
3006
+ #: admin/tracking.php:214
3007
+ msgctxt "tracking"
3008
+ msgid "No, Thanks."
3009
+ msgstr "Нет, спасибо"
3010
+
3011
+ #: admin/tracking.php:221
3012
+ msgctxt "tracking"
3013
+ msgid "Allow Tracking"
3014
+ msgstr "Разрешаю"
3015
+
3016
+ #: business-directory-plugin.php:668
3017
+ msgctxt "admin plugins"
3018
+ msgid "Settings"
3019
+ msgstr "Настройки"
3020
+
3021
+ #: business-directory-plugin.php:776 business-directory-plugin.php:783
3022
+ msgctxt "rss feed"
3023
+ msgid "%s Feed"
3024
+ msgstr "Лента "
3025
+
3026
+ #: business-directory-plugin.php:1137 core/view-submit-listing.php:58
3027
+ #: core/views/submit_listing.php:10
3028
+ #, fuzzy
3029
+ msgctxt "views"
3030
+ msgid "Submit A Listing"
3031
+ msgstr "Создать запись"
3032
+
3033
+ #: business-directory-plugin.php:1142
3034
+ msgctxt "title"
3035
+ msgid "Find a Listing"
3036
+ msgstr "Найти запись"
3037
+
3038
+ #: business-directory-plugin.php:1147
3039
+ msgctxt "title"
3040
+ msgid "View All Listings"
3041
+ msgstr "Показать все записи"
3042
+
3043
+ #: business-directory-plugin.php:1176
3044
+ msgctxt "title"
3045
+ msgid "Listings tagged: %s"
3046
+ msgstr "Записи помеченные меткой \"%s\""
3047
+
3048
+ #: core/api.php:401
3049
+ #, fuzzy
3050
+ msgid "Free"
3051
+ msgstr "Бесплатно"
3052
+
3053
+ #: core/class-csv-import.php:394
3054
+ msgctxt "admin csv-import"
3055
+ msgid ""
3056
+ "Could not create listing category \"<category-name>\". The operation failed "
3057
+ "with the following error: <error-message>."
3058
+ msgstr ""
3059
+
3060
+ #: core/class-csv-import.php:400
3061
+ msgctxt "admin csv-import"
3062
+ msgid "Could not create listing category \"%s\""
3063
+ msgstr "Не удалось создать рубрику \"%s\""
3064
+
3065
+ #: core/class-csv-import.php:544
3066
+ msgctxt "admin csv-import"
3067
+ msgid "Username \"%s\" does not exist"
3068
+ msgstr "Имя учётной записи \"%s\" не существует"
3069
+
3070
+ #: core/class-csv-import.php:576
3071
+ msgctxt "admin csv-import"
3072
+ msgid "Missing required field: %s"
3073
+ msgstr "Отсутствует обязательное поле: %s"
3074
+
3075
+ #: core/class-csv-import.php:596
3076
+ msgctxt "admin csv-import"
3077
+ msgid "Listing category \"%s\" does not exist"
3078
+ msgstr "Рубрика \"%s\" не существует"
3079
+
3080
+ #: core/class-fee-plan.php:46
3081
+ msgctxt "fees-api"
3082
+ msgid "Fee label is required."
3083
+ msgstr "Название тарифа обязательна."
3084
+
3085
+ #: core/class-fee-plan.php:49
3086
+ msgctxt "fees-api"
3087
+ msgid "Fee amount must be a non-negative decimal number."
3088
+ msgstr "Стоимость тарифа должна быть десятичным положительным числом."
3089
+
3090
+ #: core/class-fee-plan.php:52
3091
+ msgctxt "fees-api"
3092
+ msgid "Fee must apply to at least one category."
3093
+ msgstr "Тариф должен быть ассоциирован по крайней мере с одной рубрикой."
3094
+
3095
+ #: core/class-fee-plan.php:57
3096
+ msgctxt "fees-api"
3097
+ msgid "Fee listing duration must be a number less than 10 years (3650 days)."
3098
+ msgstr "Срок действия тарифа должен быть меньше 10 лет (3650 дней)."
3099
+
3100
+ #: core/class-fees-api.php:20
3101
+ msgctxt "fees-api"
3102
+ msgid "Free Listing"
3103
+ msgstr "Бесплатные записи"
3104
+
3105
+ #: core/class-form-field.php:56
3106
+ msgctxt "form-fields-api"
3107
+ msgid "Invalid form field type"
3108
+ msgstr "Неверный тип поля формы"
3109
+
3110
+ #: core/class-form-field.php:505
3111
+ msgctxt "form-fields-api"
3112
+ msgid "Field label is required."
3113
+ msgstr "Метка поля обязательна."
3114
+
3115
+ #: core/class-form-field.php:515
3116
+ msgctxt "form-fields-api"
3117
+ msgid "Requested field type change is incompatible. Type will not be modified."
3118
+ msgstr ""
3119
+ "Запрошенное изменение типа поля не совместимо с предыдущим типом. В "
3120
+ "изменении типа отказано."
3121
+
3122
+ #: core/class-form-field.php:535
3123
+ msgctxt "form-fields-api"
3124
+ msgid ""
3125
+ "There can only be one field with association \"%s\". Please select another "
3126
+ "association."
3127
+ msgstr ""
3128
+ "Ассоциация с полем \"%s\" может быть только одна. Пожалуйста, выберите "
3129
+ "другую ассоциацию."
3130
+
3131
+ #: core/class-form-field.php:545
3132
+ msgctxt "form-fields-api"
3133
+ msgid "\"%s\" is an invalid field type for this association."
3134
+ msgstr "Поле \"%s\" не является корректной ассоциацией для этого поля."
3135
+
3136
+ #: core/class-form-field.php:583
3137
+ msgctxt "form-fields-api"
3138
+ msgid "Invalid field ID"
3139
+ msgstr "Некорректный номер поля"
3140
+
3141
+ #: core/class-form-field.php:592
3142
+ msgctxt "form-fields api"
3143
+ msgid ""
3144
+ "This form field can't be deleted because it is required for the plugin to "
3145
+ "work."
3146
+ msgstr ""
3147
+ "Это поле формы нельзя удалить, так как оно требуется для работы плагина."
3148
+
3149
+ #: core/class-form-field.php:604
3150
+ msgctxt "form-fields-api"
3151
+ msgid "An error occurred while trying to delete this field."
3152
+ msgstr "Произошла ошибка при попытке удаления этого поля."
3153
+
3154
+ #: core/class-gateway.php:133
3155
+ #, fuzzy
3156
+ msgctxt "billing info"
3157
+ msgid "Please enter a valid e-mail address."
3158
+ msgstr "Пожалуйста введите правильный электронный адрес."
3159
+
3160
+ #: core/class-gateway.php:136
3161
+ msgctxt "billing info"
3162
+ msgid "First name is required."
3163
+ msgstr "Имя обязательно."
3164
+
3165
+ #: core/class-gateway.php:139
3166
+ msgctxt "billing info"
3167
+ msgid "Last name is required."
3168
+ msgstr "Фамилия обязательна."
3169
+
3170
+ #: core/class-gateway.php:142
3171
+ msgctxt "billing info"
3172
+ msgid "Credit card number is required."
3173
+ msgstr "Номер кредитной карточки обязателен."
3174
+
3175
+ #: core/class-gateway.php:145
3176
+ msgctxt "billing info"
3177
+ msgid "Credit card expiration date is invalid."
3178
+ msgstr "Срок истекания кредитной карточки некорректен."
3179
+
3180
+ #: core/class-gateway.php:148
3181
+ msgctxt "billing info"
3182
+ msgid "Credit card CVC number is required."
3183
+ msgstr "Секретный номер кредитной карточки обязателен."
3184
+
3185
+ #: core/class-gateway.php:151
3186
+ msgctxt "billing info"
3187
+ msgid "Country is required."
3188
+ msgstr "Страна обязательна."
3189
+
3190
+ #: core/class-gateway.php:154
3191
+ msgctxt "billing info"
3192
+ msgid "Address is required."
3193
+ msgstr "Адрес обязателен."
3194
+
3195
+ #: core/class-listing-upgrade-api.php:16
3196
+ msgctxt "listings-api"
3197
+ msgid "Normal Listing"
3198
+ msgstr "Обычная запись"
3199
+
3200
+ #: core/class-listing-upgrade-api.php:20
3201
+ msgctxt "listings-api"
3202
+ msgid "Featured Listing"
3203
+ msgstr "Особая запись"
3204
+
3205
+ #: core/class-listing.php:319 core/class-listing.php:345
3206
+ msgctxt "listing"
3207
+ msgid "(Fee Unavailable)"
3208
+ msgstr "(Тариф недоступен)"
3209
+
3210
+ #: core/class-listings-api.php:310
3211
+ msgctxt "notify email"
3212
+ msgid "[%s] New listing notification"
3213
+ msgstr "[%s] Оповещение о новой записи"
3214
+
3215
+ #: core/class-listings-api.php:329
3216
+ msgctxt "notify email"
3217
+ msgid "[%s] Listing edit notification"
3218
+ msgstr "[%s] Оповещение об изменении записи"
3219
+
3220
+ #: core/class-listings-widget.php:45 core/widget-search.php:22
3221
+ msgctxt "widgets"
3222
+ msgid "Title:"
3223
+ msgstr "Заголовок:"
3224
+
3225
+ #: core/class-listings-widget.php:51
3226
+ msgctxt "widgets"
3227
+ msgid "Number of listings to display:"
3228
+ msgstr "Количество записей:"
3229
+
3230
+ #: core/class-listings-widget.php:60
3231
+ msgctxt "widgets"
3232
+ msgid "Thumbnails"
3233
+ msgstr "Миниатюры"
3234
+
3235
+ #: core/class-listings-widget.php:68
3236
+ msgctxt "widgets"
3237
+ msgid "Show thumbnails"
3238
+ msgstr "Показать миниятюры"
3239
+
3240
+ #: core/class-listings-widget.php:72
3241
+ msgctxt "widgets"
3242
+ msgid "Image width (in px):"
3243
+ msgstr "Ширина изображения (пикселы):"
3244
+
3245
+ #: core/class-listings-widget.php:78
3246
+ msgctxt "widgets"
3247
+ msgid "Leave blank for automatic width."
3248
+ msgstr "Оставьте поле пустым для автоматической ширины."
3249
+
3250
+ #: core/class-listings-widget.php:83
3251
+ msgctxt "widgets"
3252
+ msgid "Image height (in px):"
3253
+ msgstr "Высота изображения (пикселы):"
3254
+
3255
+ #: core/class-listings-widget.php:89
3256
+ msgctxt "widgets"
3257
+ msgid "Leave blank for automatic height."
3258
+ msgstr "Оставьте поле пустым для автоматической высоты."
3259
+
3260
+ #: core/class-payment.php:223 core/view-submit-listing.php:488
3261
+ msgctxt "listings"
3262
+ msgid "Fee \"%s\" for category \"%s\"%s"
3263
+ msgstr "Тариф \"%s\" для рубрики \"%s\"%s"
3264
+
3265
+ #: core/class-payment.php:226 core/view-submit-listing.php:491
3266
+ msgctxt "listings"
3267
+ msgid "(recurring)"
3268
+ msgstr "(повторяющееся)"
3269
+
3270
+ #: core/class-recaptcha.php:100 core/class-recaptcha.php:115
3271
+ msgctxt "recaptcha"
3272
+ msgid "The reCAPTCHA wasn't entered correctly."
3273
+ msgstr "Код reCAPTCHA был введён неправильно."
3274
+
3275
+ #: core/class-settings.php:24
3276
+ msgctxt "admin settings"
3277
+ msgid "General"
3278
+ msgstr "Основное"
3279
+
3280
+ #: core/class-settings.php:26
3281
+ msgctxt "admin settings"
3282
+ msgid "Data Collection"
3283
+ msgstr "Сбор данных"
3284
+
3285
+ #: core/class-settings.php:29
3286
+ msgctxt "admin settings"
3287
+ msgid ""
3288
+ "Allow BD to anonymously collect information about your installed plugins, "
3289
+ "themes and WP version?"
3290
+ msgstr ""
3291
+ "Разрешить плагину собирать анонимную информацию об установленных у Вас "
3292
+ "плагинах, темах и версии WordPress?"
3293
+
3294
+ #: core/class-settings.php:34
3295
+ msgctxt "admin settings"
3296
+ msgid "<a>Learn more</a> about what BD does and does NOT track."
3297
+ msgstr ""
3298
+ "<br /><a>Узнайте подробнее</a> о том, какую информацию плагин собирает, а "
3299
+ "какую - не трогает."
3300
+
3301
+ #: core/class-settings.php:37
3302
+ msgctxt "admin settings"
3303
+ msgid "Permalink Settings"
3304
+ msgstr "Постоянные ссылки"
3305
+
3306
+ #: core/class-settings.php:38
3307
+ msgctxt "admin settings"
3308
+ msgid "Directory Listings Slug"
3309
+ msgstr "Ярлык раздела справочник"
3310
+
3311
+ #: core/class-settings.php:39
3312
+ msgctxt "admin settings"
3313
+ msgid "Categories Slug"
3314
+ msgstr "Ярлык рубрик справочника"
3315
+
3316
+ #: core/class-settings.php:39
3317
+ msgctxt "admin settings"
3318
+ msgid ""
3319
+ "The slug can't be in use by another term. Avoid \"category\", for instance."
3320
+ msgstr ""
3321
+ "<br />ВНИМАНИЕ: этот ярлык должен отличаться от любых других ярлыков "
3322
+ "WordPress. Например, нельзя использовать ярлык \"category\"."
3323
+
3324
+ #: core/class-settings.php:40
3325
+ msgctxt "admin settings"
3326
+ msgid "Tags Slug"
3327
+ msgstr "Ярлык меток справочника"
3328
+
3329
+ #: core/class-settings.php:40
3330
+ msgctxt "admin settings"
3331
+ msgid "The slug can't be in use by another term. Avoid \"tag\", for instance."
3332
+ msgstr ""
3333
+ "<br />ВНИМАНИЕ: этот ярлык должен отличаться от любых других ярлыков "
3334
+ "WordPress. Например, нельзя использовать ярлык \"tag\"."
3335
+
3336
+ #: core/class-settings.php:43
3337
+ msgctxt "admin settings"
3338
+ msgid "Remove listing ID from directory URLs?"
3339
+ msgstr "Удалить номер записи из адреса URL?"
3340
+
3341
+ #: core/class-settings.php:46
3342
+ msgctxt "admin settings"
3343
+ msgid ""
3344
+ "Prior to 3.5.1, we included the ID in the listing URL, like \"/business-"
3345
+ "directory/1809/listing-title\". Check this setting to remove the ID for "
3346
+ "better SEO."
3347
+ msgstr ""
3348
+ "<br />До версии 3.5.1 плагина мы включали номер записи в адрес URL, например "
3349
+ "\"/business-directory/1809/listing-title\". Для лучшей поисковой оптимизации "
3350
+ "установите этот параметр."
3351
+
3352
+ #: core/class-settings.php:50
3353
+ msgctxt "admin settings"
3354
+ msgid "reCAPTCHA Settings"
3355
+ msgstr "Настройки reCAPTCHA"
3356
+
3357
+ #: core/class-settings.php:53
3358
+ msgctxt "admin settings"
3359
+ msgid "Need API keys for reCAPTCHA? Get them <a>here</a>."
3360
+ msgstr ""
3361
+ "Если Вам требуется получить новые ключи API для reCAPTCHA, то откройте "
3362
+ "<a>эту страницу</a>."
3363
+
3364
+ #: core/class-settings.php:55
3365
+ msgctxt "admin settings"
3366
+ msgid "Use reCAPTCHA for contact forms"
3367
+ msgstr "Использовать reCAPTCHA в контактных формах?"
3368
+
3369
+ #: core/class-settings.php:56
3370
+ msgctxt "admin settings"
3371
+ msgid "Turn off reCAPTCHA for logged in users?"
3372
+ msgstr ""
3373
+
3374
+ #: core/class-settings.php:57
3375
+ msgctxt "admin settings"
3376
+ msgid "Use reCAPTCHA for listing submits"
3377
+ msgstr "Использовать reCAPTCHA при создании записи?"
3378
+
3379
+ #: core/class-settings.php:60
3380
+ msgctxt "admin settings"
3381
+ msgid "Use reCAPTCHA for listing comments?"
3382
+ msgstr "Использовать reCAPTCHA в форме комментариев?"
3383
+
3384
+ #: core/class-settings.php:63
3385
+ msgctxt "admin settings"
3386
+ msgid "reCAPTCHA Public Key"
3387
+ msgstr "Публичный ключ reCAPTCHA"
3388
+
3389
+ #: core/class-settings.php:64
3390
+ msgctxt "admin settings"
3391
+ msgid "reCAPTCHA Private Key"
3392
+ msgstr "Секретный ключ reCAPTCHA"
3393
+
3394
+ #: core/class-settings.php:70
3395
+ #, fuzzy
3396
+ msgctxt "admin settings"
3397
+ msgid ""
3398
+ "We expect that a membership plugin supports the 'redirect_to' parameter for "
3399
+ "the URLs below to work. If the plugin does not support them, these settings "
3400
+ "will not function as expected. Please contact the membership plugin and ask "
3401
+ "them to support the WP standard 'redirect_to' query parameter."
3402
+ msgstr ""
3403
+ "Мы предполагаем, что плагин для управлением членством на Вашем сайте "
3404
+ "поддерживает параметр URL называемый 'redirect_to'. Если такой плагин "
3405
+ "установлен на Вашем сайте, и он не совместим с этим параметром, то мы просим "
3406
+ "Вас связаться с его разработчиками и попросить включить поддержку "
3407
+ "'redirect_to' - стандартного параметра запроса WordPress."
3408
+
3409
+ #: core/class-settings.php:73
3410
+ msgctxt "admin settings"
3411
+ msgid "Registration Settings"
3412
+ msgstr "Настройки регистрации"
3413
+
3414
+ #: core/class-settings.php:74