Business Directory Plugin - Version 4.0.8

Version Description

Download this release

Release Info

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

Code changes from version 4.0.7 to 4.0.8

README.TXT CHANGED
@@ -4,8 +4,8 @@ Donate link: http://businessdirectoryplugin.com/premium-modules/
4
  Tags: address book, business directory, chamber of commerce business directory, church directory, company business directory, contact directory, custom business directory, directory, listings directory, local business directory, link directory, member directory, staff directory, directory plugin
5
  Requires at least: 4.1
6
  Tested up to: 4.5
7
- Last Updated: 2016-June-21
8
- Stable tag: tags/4.0.7
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!
@@ -129,7 +129,19 @@ If you are having problems please visit [support forum](http://www.businessdirec
129
 
130
 
131
  == Changelog ==
132
-
 
 
 
 
 
 
 
 
 
 
 
 
133
  = Version 4.0.7 =
134
  * Improve excerpt display on mobile devices.
135
  * Show themes update badge inside main menu item too.
4
  Tags: address book, business directory, chamber of commerce business directory, church directory, company business directory, contact directory, custom business directory, directory, listings directory, local business directory, link directory, member directory, staff directory, directory plugin
5
  Requires at least: 4.1
6
  Tested up to: 4.5
7
+ Last Updated: 2016-Jul-6
8
+ Stable tag: tags/4.0.8
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!
129
 
130
 
131
  == Changelog ==
132
+
133
+ = Version 4.0.8 =
134
+ * Added Arabic translation to core
135
+ * Some query improvements when in CPT compatibility mode.
136
+ * Work around a bug in U-Design theme.
137
+ * Improve compatibility with fullwidth template in takeawaywp theme.
138
+ * Translate some settings that were missing a translation.
139
+ * Fix comments and comment form not appearing eve when enabled.
140
+ * Fixes for mobile devices.
141
+ * Add filtering to allow overriding security policty in `wpbdp_user_can()`.
142
+ * Fallback implementation for `wpbdp_detect_encoding()` when `iconv` is not available.
143
+ * Improve security inside dispatching subsystem.
144
+
145
  = Version 4.0.7 =
146
  * Improve excerpt display on mobile devices.
147
  * Show themes update badge inside main menu item too.
admin/templates/csv-export.tpl.php CHANGED
@@ -91,7 +91,7 @@ echo $notice;
91
  <table class="form-table">
92
  <tr class="form-required">
93
  <th scope="row">
94
- <label> <?php _ex('Column Separator', 'admin csv-export', 'WPBDM'); ?> <span class="description">(<?php _ex('required', 'admin forms'); ?>)</span></label>
95
  </th>
96
  <td>
97
  <input name="settings[csv-file-separator]"
@@ -102,7 +102,7 @@ echo $notice;
102
  </tr>
103
  <tr class="form-required">
104
  <th scope="row">
105
- <label> <?php _ex('Image Separator', 'admin csv-export', 'WPBDM'); ?> <span class="description">(<?php _ex('required', 'admin forms'); ?>)</span></label>
106
  </th>
107
  <td>
108
  <input name="settings[images-separator]"
@@ -113,7 +113,7 @@ echo $notice;
113
  </tr>
114
  <tr class="form-required">
115
  <th scope="row">
116
- <label> <?php _ex('Category Separator', 'admin csv-export', 'WPBDM'); ?> <span class="description">(<?php _ex('required', 'admin forms'); ?>)</span></label>
117
  </th>
118
  <td>
119
  <input name="settings[category-separator]"
91
  <table class="form-table">
92
  <tr class="form-required">
93
  <th scope="row">
94
+ <label> <?php _ex('Column Separator', 'admin csv-export', 'WPBDM'); ?> <span class="description">(<?php _ex('required', 'admin forms', 'WPBDM'); ?>)</span></label>
95
  </th>
96
  <td>
97
  <input name="settings[csv-file-separator]"
102
  </tr>
103
  <tr class="form-required">
104
  <th scope="row">
105
+ <label> <?php _ex('Image Separator', 'admin csv-export', 'WPBDM'); ?> <span class="description">(<?php _ex('required', 'admin forms', 'WPBDM'); ?>)</span></label>
106
  </th>
107
  <td>
108
  <input name="settings[images-separator]"
113
  </tr>
114
  <tr class="form-required">
115
  <th scope="row">
116
+ <label> <?php _ex('Category Separator', 'admin csv-export', 'WPBDM'); ?> <span class="description">(<?php _ex('required', 'admin forms', 'WPBDM'); ?>)</span></label>
117
  </th>
118
  <td>
119
  <input name="settings[category-separator]"
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.0.7
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.0.7' );
35
 
36
  define( 'WPBDP_PATH', plugin_dir_path( __FILE__ ) );
37
  define( 'WPBDP_URL', trailingslashit( plugins_url( '/', __FILE__ ) ) );
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.0.8
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.0.8' );
35
 
36
  define( 'WPBDP_PATH', plugin_dir_path( __FILE__ ) );
37
  define( 'WPBDP_URL', trailingslashit( plugins_url( '/', __FILE__ ) ) );
core/api.php CHANGED
@@ -283,27 +283,27 @@ function wpbdp_user_can($action, $listing_id=null, $user_id=null) {
283
  if ( isset($_GET['preview']) )
284
  return false;
285
 
 
 
286
  switch ($action) {
287
  case 'view':
288
- return true;
 
289
  break;
290
  case 'edit':
291
  case 'delete':
292
- return user_can($user_id, 'administrator') || ( $post->post_author && $post->post_author == $user_id );
293
  break;
294
  case 'upgrade-to-sticky':
295
- if ( !wpbdp_get_option('featured-on') || !wpbdp_get_option('payments-on') )
296
- return false;
297
-
298
- if ( !wpbdp_payments_possible() )
299
- return false;
300
-
301
  $sticky_info = wpbdp_listing_upgrades_api()->get_info( $listing_id );
302
- return $sticky_info->upgradeable && (user_can($user_id, 'administrator') || ($post->post_author == $user_id));
303
  break;
304
  }
305
 
306
- return false;
 
 
 
307
  }
308
 
309
  function wpbdp_get_post_by_slug($slug, $post_type=null) {
283
  if ( isset($_GET['preview']) )
284
  return false;
285
 
286
+ $res = false;
287
+
288
  switch ($action) {
289
  case 'view':
290
+ $res = true;
291
+ // return apply_filters( 'wpbdp_user_can_view', true, $action, $listing_id );
292
  break;
293
  case 'edit':
294
  case 'delete':
295
+ $res = user_can($user_id, 'administrator') || ( $post->post_author && $post->post_author == $user_id );
296
  break;
297
  case 'upgrade-to-sticky':
 
 
 
 
 
 
298
  $sticky_info = wpbdp_listing_upgrades_api()->get_info( $listing_id );
299
+ $res = wpbdp_get_option( 'featured-on' ) && wpbdp_payments_possible() && $sticky_info->upgradeable && ( user_can($user_id, 'administrator') || ( $post->post_author == $user_id ) );
300
  break;
301
  }
302
 
303
+ $res = apply_filters( 'wpbdp_user_can', $res, $action, $listing_id, $user_id );
304
+ $res = apply_filters( 'wpbdp_user_can_' . $action, $res, $listing_id, $user_id );
305
+
306
+ return $res;
307
  }
308
 
309
  function wpbdp_get_post_by_slug($slug, $post_type=null) {
core/class-dispatcher.php CHANGED
@@ -35,6 +35,9 @@ class WPBDP__Dispatcher {
35
  $this->current_view = apply_filters( 'wpbdp_current_view', $this->current_view );
36
  $this->current_view_obj = $this->load_view( $this->current_view );
37
 
 
 
 
38
  wpbdp_debug( '[Dispatching Details] view = ' . $this->current_view . ', is_main_page = ' . $wp_query->wpbdp_is_main_page );
39
  }
40
 
35
  $this->current_view = apply_filters( 'wpbdp_current_view', $this->current_view );
36
  $this->current_view_obj = $this->load_view( $this->current_view );
37
 
38
+ // if ( ! $this->current_view_obj )
39
+ // $this->current_view = '';
40
+
41
  wpbdp_debug( '[Dispatching Details] view = ' . $this->current_view . ', is_main_page = ' . $wp_query->wpbdp_is_main_page );
42
  }
43
 
core/class-query-integration.php CHANGED
@@ -71,6 +71,10 @@ class WPBDP__Query_Integration {
71
  if ( ! empty( $query->query_vars['wpbdp_main_query'] ) )
72
  $query->wpbdp_our_query = true;
73
 
 
 
 
 
74
  do_action_ref_array( 'wpbdp_query_flags', array( $query ) );
75
  }
76
 
71
  if ( ! empty( $query->query_vars['wpbdp_main_query'] ) )
72
  $query->wpbdp_our_query = true;
73
 
74
+ // Normalize view name.
75
+ if ( ! empty( $query->wpbdp_view ) )
76
+ $query->wpbdp_view = WPBDP_Utils::normalize( $query->wpbdp_view );
77
+
78
  do_action_ref_array( 'wpbdp_query_flags', array( $query ) );
79
  }
80
 
core/class-settings.php CHANGED
@@ -103,7 +103,7 @@ class WPBDP_Settings {
103
  'terms-and-conditions',
104
  _x( 'Terms and Conditions', 'admin settings', 'WPBDM' ),
105
  'text',
106
- "Terms and Conditions text goes here...\n\n",
107
  _x( '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.', 'admin settings', 'WPBDM' ),
108
  array( 'use_textarea' => true )
109
  );
@@ -216,13 +216,11 @@ class WPBDP_Settings {
216
  _x( 'Allow visitors to discuss listings using the standard WordPress comment form. Comments are public.', 'admin settings', 'WPBDM' ) );
217
  $this->add_setting($s, 'show-listings-under-categories', _x('Show listings under categories on main page?', 'admin settings', 'WPBDM'), 'boolean', false);
218
  $this->add_setting($s, 'status-on-uninstall', _x('Status of listings upon uninstalling plugin', 'admin settings', 'WPBDM'), 'choice', 'trash', '',
219
- array('choices' => array('draft', 'trash')));
220
  $this->add_setting($s, 'deleted-status', _x('Status of deleted listings', 'admin settings', 'WPBDM'), 'choice', 'trash', '',
221
- array('choices' => array('draft', 'trash')));
222
-
223
  $this->add_setting( $s, 'submit-instructions', _x( 'Submit Listing instructions message', 'admin settings', 'WPBDM' ), 'text','', _x( 'This text is displayed at the first page of the Submit Listing process for Business Directory. You can use it for instructions about filling out the form or anything you want to tell users before they get started.', 'admin settings', 'WPBDM' ), array( 'use_textarea' => true ) );
224
 
225
-
226
  $s = $this->add_section($g, 'listings/renewals', _x('Listing Renewal', 'admin settings', 'WPBDM'));
227
  $this->add_setting($s, 'listing-renewal', _x('Turn on listing renewal option?', 'admin settings', 'WPBDM'), 'boolean', true);
228
  $this->add_setting( $s,
@@ -269,10 +267,10 @@ class WPBDP_Settings {
269
 
270
  $s = $this->add_section($g, 'post/category', _x('Post/Category Settings', 'admin settings', 'WPBDM'));
271
  $this->add_setting($s, 'new-post-status', _x('Default new post status', 'admin settings', 'WPBDM'), 'choice', 'pending', '',
272
- array('choices' => array('publish', 'pending'))
273
  );
274
  $this->add_setting($s, 'edit-post-status', _x('Edit post status', 'admin settings', 'WPBDM'), 'choice', 'publish', '',
275
- array('choices' => array('publish', 'pending')));
276
  $this->add_setting( $s, 'categories-order-by', _x('Order categories list by', 'admin settings', 'WPBDM'), 'choice', 'name', '',
277
  array('choices' => array(
278
  array( 'name', _x( 'Name', 'admin settings', 'WPBDM' ) ),
103
  'terms-and-conditions',
104
  _x( 'Terms and Conditions', 'admin settings', 'WPBDM' ),
105
  'text',
106
+ _x( "Terms and Conditions text goes here...\n\n", 'admin settings', 'WPBDM' ),
107
  _x( '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.', 'admin settings', 'WPBDM' ),
108
  array( 'use_textarea' => true )
109
  );
216
  _x( 'Allow visitors to discuss listings using the standard WordPress comment form. Comments are public.', 'admin settings', 'WPBDM' ) );
217
  $this->add_setting($s, 'show-listings-under-categories', _x('Show listings under categories on main page?', 'admin settings', 'WPBDM'), 'boolean', false);
218
  $this->add_setting($s, 'status-on-uninstall', _x('Status of listings upon uninstalling plugin', 'admin settings', 'WPBDM'), 'choice', 'trash', '',
219
+ array('choices' => array( array( 'draft', _x( 'Draft', 'post status' ) ), array( 'trash', _x( 'Trash', 'post status' ) ) )));
220
  $this->add_setting($s, 'deleted-status', _x('Status of deleted listings', 'admin settings', 'WPBDM'), 'choice', 'trash', '',
221
+ array('choices' => array( array( 'draft', _x( 'Draft', 'post status' ) ), array( 'trash', _x( 'Trash', 'post status' ) ) )));
 
222
  $this->add_setting( $s, 'submit-instructions', _x( 'Submit Listing instructions message', 'admin settings', 'WPBDM' ), 'text','', _x( 'This text is displayed at the first page of the Submit Listing process for Business Directory. You can use it for instructions about filling out the form or anything you want to tell users before they get started.', 'admin settings', 'WPBDM' ), array( 'use_textarea' => true ) );
223
 
 
224
  $s = $this->add_section($g, 'listings/renewals', _x('Listing Renewal', 'admin settings', 'WPBDM'));
225
  $this->add_setting($s, 'listing-renewal', _x('Turn on listing renewal option?', 'admin settings', 'WPBDM'), 'boolean', true);
226
  $this->add_setting( $s,
267
 
268
  $s = $this->add_section($g, 'post/category', _x('Post/Category Settings', 'admin settings', 'WPBDM'));
269
  $this->add_setting($s, 'new-post-status', _x('Default new post status', 'admin settings', 'WPBDM'), 'choice', 'pending', '',
270
+ array('choices' => array( array( 'publish', _x( 'Published', 'post status' ) ), array( 'pending', _x( 'Pending', 'post status' ) ) ))
271
  );
272
  $this->add_setting($s, 'edit-post-status', _x('Edit post status', 'admin settings', 'WPBDM'), 'choice', 'publish', '',
273
+ array('choices' => array( array( 'publish', _x( 'Published', 'post status' ) ), array( 'pending', _x( 'Pending', 'post status' ) ) ) ) );
274
  $this->add_setting( $s, 'categories-order-by', _x('Order categories list by', 'admin settings', 'WPBDM'), 'choice', 'name', '',
275
  array('choices' => array(
276
  array( 'name', _x( 'Name', 'admin settings', 'WPBDM' ) ),
core/class-wordpress-template-integration.php CHANGED
@@ -177,18 +177,21 @@ class WPBDP__WordPress_Template_Integration {
177
 
178
  // FIXME: we need a better way to handle this, since it might be that a shortcode is being used and not something
179
  // really dispatched through BD.
180
- if ( $wp_query->wpbdp_view ) {
181
- $classes[] = 'business-directory';
182
- $classes[] = 'wpbdp-view-' . $wp_query->wpbdp_view;
183
 
184
- if ( $theme = wp_get_theme() ) {
185
- $classes[] = 'wpbdp-wp-theme-' . $theme->get_stylesheet();
186
- $classes[] = 'wpbdp-wp-theme-' . $theme->get_template();
187
- }
188
 
189
- $classes[] = 'wpbdp-theme-' . $wpbdp->themes->get_active_theme();
 
 
 
 
 
190
  }
191
 
 
 
192
  return $classes;
193
  }
194
 
177
 
178
  // FIXME: we need a better way to handle this, since it might be that a shortcode is being used and not something
179
  // really dispatched through BD.
180
+ $view = wpbdp_current_view();
 
 
181
 
182
+ if ( ! $view )
183
+ return $classes;
 
 
184
 
185
+ $classes[] = 'business-directory';
186
+ $classes[] = 'wpbdp-view-' . $view;
187
+
188
+ if ( $theme = wp_get_theme() ) {
189
+ $classes[] = 'wpbdp-wp-theme-' . $theme->get_stylesheet();
190
+ $classes[] = 'wpbdp-wp-theme-' . $theme->get_template();
191
  }
192
 
193
+ $classes[] = 'wpbdp-theme-' . $wpbdp->themes->get_active_theme();
194
+
195
  return $classes;
196
  }
197
 
core/compatibility/class-cpt-compat-mode.php CHANGED
@@ -78,6 +78,7 @@ class WPBDP__CPT_Compat_Mode {
78
  private function get_archive_query( $args ) {
79
  $args['wpbdp_main_query'] = true;
80
  $args['paged'] = get_query_var( 'paged' );
 
81
 
82
  // $args = wp_parse_args( $args, array(
83
  // 'wpbdp_main_query' => true,
78
  private function get_archive_query( $args ) {
79
  $args['wpbdp_main_query'] = true;
80
  $args['paged'] = get_query_var( 'paged' );
81
+ $args['post_type'] = WPBDP_POST_TYPE;
82
 
83
  // $args = wp_parse_args( $args, array(
84
  // 'wpbdp_main_query' => true,
core/compatibility/class-themes-compat.php CHANGED
@@ -51,7 +51,8 @@ class WPBDP__Themes_Compat {
51
 
52
  public function get_themes_with_fixes() {
53
  $themes_with_fixes = array(
54
- 'atahualpa', 'genesis', 'hmtpro5', 'customizr', 'customizr-pro', 'canvas', 'builder', 'Divi', 'longevity', 'x'
 
55
  );
56
 
57
  return apply_filters( 'wpbdp_themes_with_fixes_list', $themes_with_fixes );
@@ -231,7 +232,7 @@ class WPBDP__Themes_Compat {
231
  }
232
 
233
  /**
234
- * @since next-release
235
  */
236
  public function theme_x() {
237
  if ( ! in_array( wpbdp_current_view(), array( 'show_category', 'show_tag' ), true ) )
@@ -246,6 +247,47 @@ class WPBDP__Themes_Compat {
246
  $wp_query->is_singular = ! $wp_query->is_singular;
247
  }
248
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
249
  //
250
  // }}
251
  //
51
 
52
  public function get_themes_with_fixes() {
53
  $themes_with_fixes = array(
54
+ 'atahualpa', 'genesis', 'hmtpro5', 'customizr', 'customizr-pro', 'canvas', 'builder', 'Divi', 'longevity', 'x', 'u-design', 'thesis',
55
+ 'takeawaywp'
56
  );
57
 
58
  return apply_filters( 'wpbdp_themes_with_fixes_list', $themes_with_fixes );
232
  }
233
 
234
  /**
235
+ * @since 4.0.6
236
  */
237
  public function theme_x() {
238
  if ( ! in_array( wpbdp_current_view(), array( 'show_category', 'show_tag' ), true ) )
247
  $wp_query->is_singular = ! $wp_query->is_singular;
248
  }
249
 
250
+ // public function theme_thesis() {
251
+ // add_action( 'thesis_hook_before_post', array( $this, 'theme_thesis_before_post' ) );
252
+ // // wpbdp_debug_e( wpbdp_current_view_output() );
253
+ // }
254
+ //
255
+ // public function theme_thesis_before_post() {
256
+ // add_filter( 'the_content', array( $this, 'theme_thesis_the_content' ), 999 );
257
+ // }
258
+ //
259
+ // public function theme_thesis_the_content( $content = '' ) {
260
+ // global $post;
261
+ //
262
+ // if ( 0 == $post->ID )
263
+ // return wpbdp_current_view_output();
264
+ //
265
+ // return '';
266
+ // }
267
+
268
+ /**
269
+ * @since 4.0.8
270
+ */
271
+ public function theme_u_design() {
272
+ remove_filter( 'the_content', 'autoinsert_rel_prettyPhoto', 10 );
273
+ }
274
+
275
+ /**
276
+ * @since 4.0.8
277
+ */
278
+ public function theme_takeawaywp() {
279
+ $main_id = wpbdp_get_page_id( 'main' );
280
+
281
+ if ( ! $main_id )
282
+ return;
283
+
284
+ if ( 'page-fullwidth.php' != get_page_template_slug( $main_id ) )
285
+ return;
286
+
287
+ // page-fullwidth.php has a bug. It doesn't call the_post(), so we do it for them :/.
288
+ add_action( 'wp_head', 'the_post', 999 );
289
+ }
290
+
291
  //
292
  // }}
293
  //
core/css/wpbdp.css CHANGED
@@ -704,13 +704,15 @@ table#wpbdp-manage-recurring a.cancel-subscription {
704
  display: block;
705
  }
706
 
707
- .wpbdp-listing.wpbdp-listing-excerpt .listing-thumbnail {
 
708
  /*width: 40%;*/
709
  float: none;
710
  padding: 5px;
711
  }
712
 
713
- .wpbdp-listing.wpbdp-listing-excerpt .listing-details {
 
714
  margin: 0 5px;
715
  float: none;
716
  display: block;
704
  display: block;
705
  }
706
 
707
+ .wpbdp-listing.wpbdp-listing-excerpt .listing-thumbnail,
708
+ .wpbdp-listing.wpbdp-listing-single .listing-thumbnail {
709
  /*width: 40%;*/
710
  float: none;
711
  padding: 5px;
712
  }
713
 
714
+ .wpbdp-listing.wpbdp-listing-excerpt .listing-details,
715
+ .wpbdp-listing.wpbdp-listing-single .listing-details {
716
  margin: 0 5px;
717
  float: none;
718
  display: block;
core/css/wpbdp.min.css CHANGED
@@ -1 +1 @@
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"]{width:100px;float:none;margin:auto}.cf:before,.cf:after{content:" ";display:table}.cf:after{clear:both}.cf{*zoom:1}.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 .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{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 .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-bottom:5px}#wpbdp-billing-information .billing-info-section table{margin:10px 0 0 20px}#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{float:none;padding:5px}.wpbdp-listing.wpbdp-listing-excerpt .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}.single-wpbdp_listing header.entry-header,.wpbdp-view-show_category header.entry-header,.wpbdp-view-show_tag header.entry-header,.wpbdp-view-search header.entry-header,.wpbdp-view-submit_listing 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
+ 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"]{width:100px;float:none;margin:auto}.cf:before,.cf:after{content:" ";display:table}.cf:after{clear:both}.cf{*zoom:1}.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 .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{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 .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-bottom:5px}#wpbdp-billing-information .billing-info-section table{margin:10px 0 0 20px}#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}.single-wpbdp_listing header.entry-header,.wpbdp-view-show_category header.entry-header,.wpbdp-view-show_tag header.entry-header,.wpbdp-view-search header.entry-header,.wpbdp-view-submit_listing 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/template-sections.php CHANGED
@@ -31,6 +31,9 @@ class _WPBDP_Template_Sections {
31
  if ( 'single' != $template )
32
  return $vars;
33
 
 
 
 
34
  return $vars;
35
  }
36
 
@@ -38,9 +41,15 @@ class _WPBDP_Template_Sections {
38
  if ( ! wpbdp_get_option( 'show-comment-form' ) )
39
  return;
40
 
41
- echo '<div class="comments">';
 
 
42
  comments_template( null, true );
43
- echo '</div>';
 
 
 
 
44
  }
45
 
46
 
31
  if ( 'single' != $template )
32
  return $vars;
33
 
34
+ $vars['#comments'] = array( 'callback' => array( $this, 'listing_comments' ),
35
+ 'position' => 'after',
36
+ 'weight' => 100 );
37
  return $vars;
38
  }
39
 
41
  if ( ! wpbdp_get_option( 'show-comment-form' ) )
42
  return;
43
 
44
+ $html = '<div class="comments">';
45
+
46
+ ob_start();
47
  comments_template( null, true );
48
+ $html .= ob_get_clean();
49
+
50
+ $html .= '</div>';
51
+
52
+ return $html;
53
  }
54
 
55
 
core/utils.php CHANGED
@@ -633,7 +633,10 @@ function wpbdp_detect_encoding( $content ) {
633
  if ( function_exists( 'mb_detect_encoding' ) ) {
634
  return mb_detect_encoding( $content, $encodings, true );
635
  } else {
636
- return wpbdp_mb_detect_encoding( $content, $encodings );
 
 
 
637
  }
638
  }
639
 
633
  if ( function_exists( 'mb_detect_encoding' ) ) {
634
  return mb_detect_encoding( $content, $encodings, true );
635
  } else {
636
+ if ( ! function_exists( 'iconv' ) )
637
+ return 'UTF-8';
638
+ else
639
+ return wpbdp_mb_detect_encoding( $content, $encodings );
640
  }
641
  }
642
 
core/views/show_listing.php CHANGED
@@ -3,6 +3,10 @@
3
  class WPBDP__Views__Show_Listing extends WPBDP_NView {
4
 
5
  public function dispatch() {
 
 
 
 
6
  // if ( 'publish' != get_post_status( $listing_id ) ) {
7
  // if ( current_user_can( 'edit_posts' ) )
8
  // $html .= wpbdp_render_msg( _x('This is just a preview. The listing has not been published yet.', 'preview', 'WPBDM') );
3
  class WPBDP__Views__Show_Listing extends WPBDP_NView {
4
 
5
  public function dispatch() {
6
+ if ( ! wpbdp_user_can( 'view', null ) )
7
+ $this->_http_404();
8
+
9
+
10
  // if ( 'publish' != get_post_status( $listing_id ) ) {
11
  // if ( current_user_can( 'edit_posts' ) )
12
  // $html .= wpbdp_render_msg( _x('This is just a preview. The listing has not been published yet.', 'preview', 'WPBDM') );
languages/WPBDM-ar.mo ADDED
Binary file
languages/WPBDM-ar.po ADDED
@@ -0,0 +1,7182 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ # Copyright (C) 2013
2
+ # This file is distributed under the same license as the package.
3
+ 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-06-17 01:09+0000\n"
8
+ "PO-Revision-Date: 2016-06-22 15:26+0000\n"
9
+ "Last-Translator: BD Team <support@businessdirectoryplugin.com>\n"
10
+ "Language-Team: BD Team <support@businessdirectoryplugin.com>\n"
11
+ "Language: ar_001\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.8\n"
16
+ "Plural-Forms: nplurals=6; plural=(n==0 ? 0 : n==1 ? 1 : n==2 ? 2 : n%100>=3 && n"
17
+ "%100<=10 ? 3 : n%100>=11 && n%100<=99 ? 4 : 5);\n"
18
+ "X-Poedit-SourceCharset: UTF-8\n"
19
+
20
+ #: admin/class-admin-listings.php:40
21
+ msgctxt "admin category filter"
22
+ msgid "All categories"
23
+ msgstr "جميع التصنيفات"
24
+
25
+ #: admin/class-admin-listings.php:133
26
+ msgctxt "admin listings"
27
+ msgid ""
28
+ "This listing doesn't have any category assigned. At least one category (and its "
29
+ "respective fee) is required in order to determine the features available to this "
30
+ "listing, as well as handling renewals."
31
+ msgstr ""
32
+ "هذا الإعلان لا يملك أي تصنيف معين. تصنيف واحد على الأقل (والرسوم الخاصة به) "
33
+ "مطلوب من أجل تحديد الميزات المتوفرة لهذا الإعلان، زائد التعامل مع تجديد الاشتراك."
34
+
35
+ #: admin/class-admin-listings.php:138
36
+ msgid "Listing Information"
37
+ msgstr "معلومات حول الإعلان"
38
+
39
+ #: admin/class-admin-listings.php:145
40
+ msgctxt "admin"
41
+ msgid "Listing Fields / Images"
42
+ msgstr "حقول / صور الإعلان"
43
+
44
+ #: admin/class-admin-listings.php:156
45
+ msgctxt "admin"
46
+ msgid "Categories"
47
+ msgstr "التصنيفات"
48
+
49
+ #: admin/class-admin-listings.php:157
50
+ msgid "Payment Status"
51
+ msgstr "حالة الدفع"
52
+
53
+ #: admin/class-admin-listings.php:158
54
+ msgid "Featured (Sticky) Status"
55
+ msgstr "حالة مميز (مثبت)"
56
+
57
+ #: admin/class-admin-listings.php:189
58
+ msgctxt "admin"
59
+ msgid "(Listing expired in this category)"
60
+ msgstr "(إعلان منتهي الصلاحية في هذا التصنيف)"
61
+
62
+ #: admin/class-admin-listings.php:207 admin/class-admin-listings.php:290
63
+ msgid "Paid"
64
+ msgstr "تم الدفع"
65
+
66
+ #: admin/class-admin-listings.php:212
67
+ msgid "Mark as"
68
+ msgstr "إجعلها"
69
+
70
+ #: admin/class-admin-listings.php:221 admin/class-admin-listings.php:300
71
+ msgid "Pending Upgrade"
72
+ msgstr " في انتظار الترقية"
73
+
74
+ #: admin/class-admin-listings.php:229 admin/listing-metabox.php:70
75
+ msgid "Upgrade to %s"
76
+ msgstr "ترقية إلى %s"
77
+
78
+ #: admin/class-admin-listings.php:236 admin/listing-metabox.php:77
79
+ msgid "Downgrade to %s"
80
+ msgstr "الرجوع إلى %s"
81
+
82
+ #: admin/class-admin-listings.php:239 admin/class-admin-listings.php:418
83
+ msgctxt "admin actions"
84
+ msgid "Upgrade to Featured"
85
+ msgstr "ترقية إلى الخطة المميزة"
86
+
87
+ #: admin/class-admin-listings.php:295
88
+ msgid "Unpaid"
89
+ msgstr "غير مدفوع"
90
+
91
+ #: admin/class-admin-listings.php:305
92
+ msgctxt "admin"
93
+ msgid "Expired"
94
+ msgstr "منتهي الصلاحية"
95
+
96
+ #: admin/class-admin-listings.php:354
97
+ msgctxt "admin actions"
98
+ msgid "Edit Listing"
99
+ msgstr "تحرير الإعلان"
100
+
101
+ #: admin/class-admin-listings.php:357
102
+ msgctxt "admin actions"
103
+ msgid "Delete Listing"
104
+ msgstr "حذف الإعلان"
105
+
106
+ #: admin/class-admin-listings.php:416
107
+ msgctxt "admin actions"
108
+ msgid "Publish Listing"
109
+ msgstr "نشر إعلان"
110
+
111
+ #: admin/class-admin-listings.php:419
112
+ msgctxt "admin actions"
113
+ msgid "Downgrade to Normal"
114
+ msgstr "الرجوع إلى النظام العادي"
115
+
116
+ #: admin/class-admin-listings.php:421
117
+ msgctxt "admin actions"
118
+ msgid "Mark as Paid"
119
+ msgstr "إجعلها مدفوعة"
120
+
121
+ #: admin/class-admin-listings.php:423
122
+ msgctxt "admin actions"
123
+ msgid "Renew Listing"
124
+ msgstr "تجديد الإعلان"
125
+
126
+ #: admin/class-admin.php:124
127
+ msgctxt "drip pointer"
128
+ msgid ""
129
+ "Find out how to create a compelling, thriving business directory from scratch in "
130
+ "this ridiculously actionable (and FREE) 5-part email course. Get a FREE premium "
131
+ "module just for signing up."
132
+ msgstr ""
133
+ "تعرف على كيفية إنشاء دليل أعمال مقنع ومزدهر انطلاقا من الصفر في هذه الدروس (مجانا) "
134
+ "مكونة من 5 أجزاء (ترسل عبر البريد الإلكتروني). أحصل على وحدة ممتازة (premium "
135
+ "module) مجانا بمجرد تسجيلك."
136
+
137
+ #: admin/class-admin.php:126
138
+ msgctxt "drip pointer"
139
+ msgid "Email Address:"
140
+ msgstr "عنوان البريد الإلكتروني:"
141
+
142
+ #: admin/class-admin.php:132
143
+ msgctxt "drip pointer"
144
+ msgid "Want to know the Secrets of Building an Awesome Business Directory?"
145
+ msgstr "هل تريد معرفة \"أسرار بناء\" \"دليل أعمال مدهش\"؟"
146
+
147
+ #: admin/class-admin.php:134
148
+ msgctxt "drip pointer"
149
+ msgid "Yes, please!"
150
+ msgstr "نعم، من فضلك!"
151
+
152
+ #: admin/class-admin.php:136
153
+ msgctxt "drip pointer"
154
+ msgid "No, thanks"
155
+ msgstr "لا، شكرًا"
156
+
157
+ #: admin/class-admin.php:153
158
+ msgctxt "admin"
159
+ msgid "Business Directory"
160
+ msgstr "دليل الأعمال"
161
+
162
+ #: admin/class-admin.php:164
163
+ msgctxt "admin"
164
+ msgid "You're all set. Visit your new <a>Business Directory</a> page."
165
+ msgstr "أنت مستعد. قم بزيارة صفحة <a>دليل الأعمال</a> الجديدة."
166
+
167
+ #: admin/class-admin.php:185
168
+ msgctxt "drip pointer"
169
+ msgid "Invalid e-mail address."
170
+ msgstr "عنوان البريد الإلكتروني غير صالح!"
171
+
172
+ #: admin/class-admin.php:216
173
+ msgctxt "admin menu"
174
+ msgid "Business Directory Admin"
175
+ msgstr "مدير دليل الأعمال"
176
+
177
+ #: admin/class-admin.php:217
178
+ msgctxt "admin menu"
179
+ msgid "Directory Admin"
180
+ msgstr "مدير الدليل"
181
+
182
+ #: admin/class-admin.php:223 admin/class-admin.php:224
183
+ msgctxt "admin menu"
184
+ msgid "Add New Listing"
185
+ msgstr "إضافة إعلان جديد"
186
+
187
+ #: admin/class-admin.php:229 admin/class-admin.php:230
188
+ msgctxt "admin menu"
189
+ msgid "Manage Options"
190
+ msgstr "إدارة الخيارات"
191
+
192
+ #: admin/class-admin.php:235 admin/class-admin.php:236
193
+ msgctxt "admin menu"
194
+ msgid "Manage Fees"
195
+ msgstr "إدارة الرسوم"
196
+
197
+ #: admin/class-admin.php:241 admin/class-admin.php:242
198
+ msgctxt "admin menu"
199
+ msgid "Manage Form Fields"
200
+ msgstr "إدارة حقول الاستمارة"
201
+
202
+ #: admin/class-admin.php:247 admin/class-admin.php:248
203
+ msgctxt "admin menu"
204
+ msgid "Listings"
205
+ msgstr "الإعلانات"
206
+
207
+ #: admin/class-admin.php:262 admin/class-admin.php:263
208
+ msgctxt "admin menu"
209
+ msgid "CSV Import"
210
+ msgstr "استيراد CSV"
211
+
212
+ #: admin/class-admin.php:268 admin/class-admin.php:269
213
+ msgctxt "admin menu"
214
+ msgid "CSV Export"
215
+ msgstr "تصدير CSV"
216
+
217
+ #: admin/class-admin.php:274 admin/class-admin.php:275
218
+ msgctxt "admin menu"
219
+ msgid "Debug"
220
+ msgstr "تصحيح الأخطاء"
221
+
222
+ #: admin/class-admin.php:284
223
+ msgctxt "admin menu"
224
+ msgid "Main Menu"
225
+ msgstr "القائمة الرئيسية"
226
+
227
+ #: admin/class-admin.php:295
228
+ msgctxt "admin menu"
229
+ msgid "Uninstall Business Directory Plugin"
230
+ msgstr "حذف إضافة دليل الأعمال"
231
+
232
+ #: admin/class-admin.php:296
233
+ msgctxt "admin menu"
234
+ msgid "Uninstall"
235
+ msgstr "حذف"
236
+
237
+ #: admin/class-admin.php:410 admin/templates/listing-metabox-categories.tpl.php:69
238
+ msgctxt "admin infometabox"
239
+ msgid "never"
240
+ msgstr "أبداً"
241
+
242
+ #: admin/class-admin.php:504
243
+ msgctxt "admin"
244
+ msgid "Dismiss this notice."
245
+ msgstr "إخفاء هذا التنبيه."
246
+
247
+ #: admin/class-admin.php:532
248
+ msgctxt "admin"
249
+ msgid "The listing has been published."
250
+ msgid_plural "The listings have been published."
251
+ msgstr[0] "تم نشر الإعلان."
252
+ msgstr[1] "تم نشر الإعلان."
253
+ msgstr[2] "تم نشر الإعلانين."
254
+ msgstr[3] "تم نشر الإعلانات."
255
+ msgstr[4] "تم نشر الإعلانات."
256
+ msgstr[5] "تم نشر الإعلانات."
257
+
258
+ #: admin/class-admin.php:550
259
+ msgctxt "admin"
260
+ msgid "The listing status has been set as paid."
261
+ msgid_plural "The listings status has been set as paid."
262
+ msgstr[0] "تم تعيين الإعلان مدفوع."
263
+ msgstr[1] "تم تعيين الإعلان مدفوع."
264
+ msgstr[2] "تم تعيين الإعلانين مدفوعان."
265
+ msgstr[3] "تم تعيين الإعلانات مدفوعة."
266
+ msgstr[4] "تم تعيين الإعلانات مدفوعة."
267
+ msgstr[5] "تم تعيين الإعلانات مدفوعة."
268
+
269
+ #: admin/class-admin.php:556
270
+ msgctxt "admin"
271
+ msgid ""
272
+ "Only invoices containing non-recurring items were marked as paid. Please review "
273
+ "the <a>Transactions</a> tab for the listing to manage recurring items or check the "
274
+ "gateway's backend."
275
+ msgid_plural ""
276
+ "Only invoices containing non-recurring items were marked as paid. Recurring "
277
+ "payments have to be managed through the gateway."
278
+ msgstr[0] ""
279
+ "فقط الفواتير التي تحتوي على البنود غير المتكررة تسجل كمدفوعة. الرجاء مراجعة "
280
+ "التبويب <a>معاملات مالية</a> للإعلانات لإدارة البنود المتكررة أو التحقق من لوحة "
281
+ "التحكم الخاصة بك."
282
+ msgstr[1] ""
283
+ "فقط الفواتير التي تحتوي على البنود غير المتكررة تسجل كمدفوعة. الرجاء مراجعة "
284
+ "التبويب <a>معاملات مالية</a> للإعلانات لإدارة البنود المتكررة أو التحقق من لوحة "
285
+ "التحكم الخاصة بك."
286
+ msgstr[2] ""
287
+ "فقط الفواتير التي تحتوي على البنود غير المتكررة تسجل كمدفوعة. المدفوعات المتكررة "
288
+ "يجب إدارتها من خلال لوحة التحكم الخاصة بك."
289
+ msgstr[3] ""
290
+ "فقط الفواتير التي تحتوي على البنود غير المتكررة تسجل كمدفوعة. المدفوعات المتكررة "
291
+ "يجب إدارتها من خلال لوحة التحكم الخاصة بك."
292
+ msgstr[4] ""
293
+ "فقط الفواتير التي تحتوي على البنود غير المتكررة تسجل كمدفوعة. المدفوعات المتكررة "
294
+ "يجب إدارتها من خلال لوحة التحكم الخاصة بك."
295
+ msgstr[5] ""
296
+ "فقط الفواتير التي تحتوي على البنود غير المتكررة تسجل كمدفوعة. المدفوعات المتكررة "
297
+ "يجب إدارتها من خلال لوحة التحكم الخاصة بك."
298
+
299
+ #: admin/class-admin.php:575
300
+ msgctxt "admin"
301
+ msgid "The listing has been modified."
302
+ msgid_plural "The listings have been modified."
303
+ msgstr[0] "تم تعديل الإعلان."
304
+ msgstr[1] "تم تعديل الإعلان."
305
+ msgstr[2] "تم تعديل الإعلانين."
306
+ msgstr[3] "تم تعديل الإعلانات."
307
+ msgstr[4] "تم تعديل الإعلانات."
308
+ msgstr[5] "تم تعديل الإعلانات."
309
+
310
+ #: admin/class-admin.php:588
311
+ msgctxt "admin"
312
+ msgid "The listing has been upgraded."
313
+ msgid_plural "The listings have been upgraded."
314
+ msgstr[0] "تمت ترقية الإعلان."
315
+ msgstr[1] "تمت ترقية الإعلان."
316
+ msgstr[2] "تمت ترقية الإعلانين."
317
+ msgstr[3] "تمت ترقية الإعلانات."
318
+ msgstr[4] "تمت ترقية الإعلانات."
319
+ msgstr[5] "تمت ترقية الإعلانات."
320
+
321
+ #: admin/class-admin.php:600
322
+ msgctxt "admin"
323
+ msgid "The listing has been downgraded."
324
+ msgid_plural "The listings have been downgraded."
325
+ msgstr[0] "تم خفض اشتراك الإعلان."
326
+ msgstr[1] "تم خفض اشتراك الإعلان."
327
+ msgstr[2] "تم خفض اشتراك الإعلانين."
328
+ msgstr[3] "تم خفض اشتراك الإعلانات."
329
+ msgstr[4] "تم خفض اشتراك الإعلانات."
330
+ msgstr[5] "تم خفض اشتراك الإعلانات."
331
+
332
+ #: admin/class-admin.php:611
333
+ msgctxt "admin payments"
334
+ msgid ""
335
+ "The payment status was not changed. Recurring payments can't be manually approved. "
336
+ "Please check your gateway's backend to see if the payment really went through."
337
+ msgstr ""
338
+ "لم يتم تغيير حالة الدفع. لا يمكن الموافقة على المدفوعات المتكررة يدوياً. الرجاء "
339
+ "التحقق في لوحة التحكم الخاصة بك لمعرفة إذا كان الدفع ذهب حقاً من خلالها."
340
+
341
+ #: admin/class-admin.php:616
342
+ msgctxt "admin"
343
+ msgid "The transaction has been approved."
344
+ msgstr "تمت الموافقة على المعاملة."
345
+
346
+ #: admin/class-admin.php:626
347
+ msgctxt "admin"
348
+ msgid "The transaction has been rejected."
349
+ msgstr "المعاملة رفضت."
350
+
351
+ #: admin/class-admin.php:632
352
+ msgctxt "admin"
353
+ msgid "The fee was successfully assigned."
354
+ msgstr "تم تعيين الرسوم بنجاح."
355
+
356
+ #: admin/class-admin.php:641
357
+ msgctxt "admin"
358
+ msgid "Listing was renewed."
359
+ msgid_plural "Listings were renewed."
360
+ msgstr[0] "تم تجديد الإعلان."
361
+ msgstr[1] "تم تجديد الإعلان."
362
+ msgstr[2] "تم تجديد الإعلانين."
363
+ msgstr[3] "تم تجديد الإعلانات."
364
+ msgstr[4] "تم تجديد الإعلانات."
365
+ msgstr[5] "تم تجديد الإعلانات."
366
+
367
+ #: admin/class-admin.php:648
368
+ msgctxt "admin"
369
+ msgid "Renewal email sent."
370
+ msgstr "تم إرسال بريد التجديد."
371
+
372
+ #: admin/class-admin.php:682
373
+ msgctxt "admin category id"
374
+ msgid "ID"
375
+ msgstr "المعرف"
376
+
377
+ #: admin/class-admin.php:684 admin/class-admin.php:690
378
+ msgctxt "admin"
379
+ msgid "Listing Count"
380
+ msgstr "عدد الإعلانات"
381
+
382
+ #: admin/class-admin.php:799
383
+ msgctxt "admin"
384
+ msgid ""
385
+ "<b>Business Directory Plugin</b> requires fields with the following associations "
386
+ "in order to work correctly: <b>%s</b>."
387
+ msgstr ""
388
+ "<b>إضافة دليل الأعمال</b> تتطلب حقول مع المرتبطات التالية بالترتيب لكي تعمل بشكل "
389
+ "صحيح: <b>%s</b>."
390
+
391
+ #: admin/class-admin.php:801
392
+ msgctxt "admin"
393
+ msgid ""
394
+ "<b>Business Directory Plugin</b> requires a field with a <b>%s</b> association in "
395
+ "order to work correctly."
396
+ msgstr ""
397
+ "<b>إضافة دليل الأعمال</b> تتطلب حقل مع <b>%s</b> المرتبطات التالية بالترتيب لكي "
398
+ "تعمل بشكل صحيح."
399
+
400
+ #: admin/class-admin.php:805
401
+ msgctxt "admin"
402
+ msgid ""
403
+ "You can create these custom fields by yourself inside \"Manage Form Fields\" or "
404
+ "let Business Directory do this for you automatically."
405
+ msgstr ""
406
+ "يمكنك إنشاء هذه الحقول المخصصة بنفسك داخل \"إدارة الحقول\" أو السماح لدليل الأعمال "
407
+ "للقيام بذلك نيابة عنك تلقائياً."
408
+
409
+ #: admin/class-admin.php:809
410
+ msgctxt "admin"
411
+ msgid "Go to \"Manage Form Fields\""
412
+ msgstr "إنتقل إلى \"إدارة حقول\""
413
+
414
+ #: admin/class-admin.php:812
415
+ msgctxt "admin"
416
+ msgid "Create these required fields for me"
417
+ msgstr "إنشاء هذه الحقول المطلوبة نيابة عني"
418
+
419
+ #: admin/class-admin.php:821
420
+ msgctxt "admin"
421
+ msgid ""
422
+ "<b>Business Directory Plugin</b> requires a page with the <tt>[businessdirectory]</"
423
+ "tt> shortcode to function properly."
424
+ msgstr ""
425
+ "<b>إضافة دليل الأعمال</b> تتطلب صفحة فيها الكود القصير <tt>[businessdirectory]</"
426
+ "tt> لكي تعمل بشكل صحيح."
427
+
428
+ #: admin/class-admin.php:823
429
+ msgctxt "admin"
430
+ msgid ""
431
+ "You can create this page by yourself or let Business Directory do this for you "
432
+ "automatically."
433
+ msgstr ""
434
+ "يمكنك إنشاء هذه الصفحة بنفسك أو ترك دليل الأعمال القيام بذلك نيابة عنك تلقائياً."
435
+
436
+ #: admin/class-admin.php:827
437
+ msgctxt "admin"
438
+ msgid "Create required pages for me"
439
+ msgstr "إنشاء الصفحات المطلوب نيابة عني"
440
+
441
+ #: admin/class-admin.php:867
442
+ msgctxt "admin compat"
443
+ msgid "Installed: %s"
444
+ msgstr "تم التنصيب: %s"
445
+
446
+ #: admin/class-admin.php:867
447
+ msgctxt "admin compat"
448
+ msgid "N/A"
449
+ msgstr "N/A غير قابل للتطبيق"
450
+
451
+ #: admin/class-admin.php:870
452
+ msgctxt "admin compat"
453
+ msgid "Required: %s"
454
+ msgstr "مطلوب: %s"
455
+
456
+ #: admin/class-admin.php:882
457
+ msgctxt "admin compat"
458
+ msgid ""
459
+ "Business Directory has detected some incompatible premium module versions "
460
+ "installed."
461
+ msgstr ""
462
+ "الإضافة اكتشفت أن هناك إصدارات مثبتة لوحدة ممتازة (premium module) أو أكثر غير "
463
+ "متوافقة."
464
+
465
+ #: admin/class-admin.php:884
466
+ msgctxt "admin compat"
467
+ msgid ""
468
+ "Please upgrade to the required versions indicated below to make sure everything "
469
+ "functions properly."
470
+ msgstr ""
471
+ "الرجاء الترقية إلى الإصدارات المطلوبة المبينة أسفله للتأكد من أن كل شيء يعمل بشكل "
472
+ "صحيح."
473
+
474
+ #: admin/class-admin.php:904
475
+ msgctxt "admin"
476
+ msgid ""
477
+ "We noticed you want your Business Directory users to register before posting "
478
+ "listings, but Registration for your site is currently disabled. Go [here] and "
479
+ "check \"Anyone can register\" to make sure BD works properly."
480
+ msgstr ""
481
+ "لاحظنا أنك تريد من مستخدمي دليل الأعمال التسجيل قبل نشر الإعلانات، ولكنك حاليا "
482
+ "تعطل التسجيل في موقعك. إذهب [هنا] واختر \"السماح بالتسجيل\" لجعل دليل الأعمال يعمل "
483
+ "بشكل صحيح."
484
+
485
+ #: admin/class-listing-fields-metabox.php:21
486
+ msgctxt "admin"
487
+ msgid "Listing Fields"
488
+ msgstr "حقول الإعلان"
489
+
490
+ #: admin/class-listing-fields-metabox.php:40
491
+ #: templates/submit-listing/images.tpl.php:12
492
+ msgctxt "templates"
493
+ msgid "Current Images"
494
+ msgstr "الصور الحالية"
495
+
496
+ #: admin/class-listing-fields-metabox.php:41
497
+ msgctxt "templates"
498
+ msgid "There are no images currently attached to the listing."
499
+ msgstr "لا توجد أي صور مرفقة حاليا بالإعلان."
500
+
501
+ #: admin/class-themes-admin.php:45
502
+ msgctxt "themes"
503
+ msgid "Directory Themes"
504
+ msgstr "قوالب الدليل"
505
+
506
+ #: admin/class-themes-admin.php:46
507
+ msgctxt "themes"
508
+ msgid "Directory Themes %s"
509
+ msgstr "قوالب الدليل"
510
+
511
+ #: admin/class-themes-admin.php:88
512
+ msgctxt "admin themes"
513
+ msgid "Business Directory Plugin - Your template overrides need to be reviewed!"
514
+ msgstr "إضافة دليل الأعمال - تجاوز القالب الخاص بك يحتاج إلى مراجعة!"
515
+
516
+ #: admin/class-themes-admin.php:90
517
+ msgctxt "admin themes"
518
+ msgid ""
519
+ "Starting with version 4.0, Business Directory is using a new theming system that "
520
+ "is not compatible with the templates used in previous versions."
521
+ msgstr ""
522
+ "بدءاً من الإصدار 4.0، \"دليل الأعمال\" يستخدام نظام قوالب جديد غير متوافق مع "
523
+ "القوالب المستخدمة في الإصدارات السابقة."
524
+
525
+ #: admin/class-themes-admin.php:92
526
+ msgctxt "admin themes"
527
+ msgid ""
528
+ "Because of this, your template overrides below have been disabled. You should "
529
+ "<a>review our documentation on customization</a> in order adjust your templates."
530
+ msgstr ""
531
+ "وبسبب هذا، تم تعطيل تجاوز القالب الخاص بك أدناه. يجب عليك <a>مراجعة وثائق الشرح "
532
+ "بشأن التخصيص</a> لتعديل القوالب الخاصة بك."
533
+
534
+ #: admin/class-themes-admin.php:121
535
+ msgctxt "admin themes"
536
+ msgid ""
537
+ "You need to <a>activate your theme's license key</a> before you can activate the "
538
+ "theme. <a>Click here</a> to do that."
539
+ msgstr ""
540
+ "تحتاج إلى <a>تنشيط مفتاح ترخيص القالب الخاص بك</a> قبل أن تتمكن من تنشيط القالب. "
541
+ "<a>أنقر هنا</a> للقيام بذلك."
542
+
543
+ #: admin/class-themes-admin.php:149
544
+ msgctxt "themes"
545
+ msgid "Could not change the active theme to \"%s\"."
546
+ msgstr "تعذر تغيير القالب النشط إلى \"%s\"."
547
+
548
+ #: admin/class-themes-admin.php:196
549
+ msgctxt "themes"
550
+ msgid "Active theme changed to \"%s\"."
551
+ msgstr "القالب النشط تغير إلى \"%s\"."
552
+
553
+ #: admin/class-themes-admin.php:199
554
+ msgctxt "themes"
555
+ msgid ""
556
+ "%s requires that you tag your existing fields to match some places we want to put "
557
+ "your data on the theme. Below are fields we think are missing."
558
+ msgstr ""
559
+ "%s يتطلب أن تضيف وسوم في الحقول الموجودة الخاصة بك لمطابقة بعض الأماكن لأننا نريد "
560
+ "وضع البيانات الخاصة بك في القالب. وفيما يلي الحقول التي نظن أنها مفقودة."
561
+
562
+ #: admin/class-themes-admin.php:208
563
+ msgctxt "themes"
564
+ msgid "Map My Fields"
565
+ msgstr "أنشئ خريطة لحقولي"
566
+
567
+ #: admin/class-themes-admin.php:215
568
+ msgctxt "themes"
569
+ msgid "Suggested fields created successfully."
570
+ msgstr " تم إنشاء الحقول المقترحة بنجاح."
571
+
572
+ #: admin/class-themes-admin.php:218
573
+ msgctxt "themes"
574
+ msgid "Theme installed successfully."
575
+ msgstr "تم تثبيت القالب بنجاح."
576
+
577
+ #: admin/class-themes-admin.php:221
578
+ msgctxt "themes"
579
+ msgid "Theme was deleted sucessfully."
580
+ msgstr "تم حذف القالب بنجاح."
581
+
582
+ #: admin/class-themes-admin.php:224
583
+ msgctxt "themes"
584
+ msgid "Could not delete theme directory. Check permissions."
585
+ msgstr "تعذر حذف مجلد القالب. تحقق من الصلاحيات."
586
+
587
+ #: admin/class-themes-admin.php:250
588
+ msgctxt "themes"
589
+ msgid "Please upload a valid theme file."
590
+ msgstr "المرجو رفع ملف قالب صالح."
591
+
592
+ #: admin/class-themes-admin.php:257
593
+ msgctxt "themes"
594
+ msgid "Could not move \"%s\" to a temporary directory."
595
+ msgstr "لا يمكن نقل \"%s\" إلى مجلد مؤقت."
596
+
597
+ #: admin/class-themes-admin.php:358 admin/class-themes-admin.php:419
598
+ #: core/licensing.php:127 core/licensing.php:159
599
+ msgctxt "licensing"
600
+ msgid "Could not contact licensing server"
601
+ msgstr "لا يمكن الاتصال بخادم الترخيص"
602
+
603
+ #: admin/class-themes-admin.php:364 core/licensing.php:132 core/licensing.php:166
604
+ msgctxt "licensing"
605
+ msgid "License key is invalid"
606
+ msgstr "مفتاح الترخيص غير صالح"
607
+
608
+ #: admin/class-themes-admin.php:369 core/licensing.php:333
609
+ msgctxt "licensing"
610
+ msgid "Could not activate license: %s."
611
+ msgstr "لا يمكن تفعيل الترخيص: %s."
612
+
613
+ #: admin/class-themes-admin.php:382 core/licensing.php:335
614
+ msgctxt "licensing"
615
+ msgid "License activated"
616
+ msgstr "تم تفعيل ترخيص"
617
+
618
+ #: admin/class-themes-admin.php:425
619
+ msgctxt "licensing"
620
+ msgid "Invalid response from server"
621
+ msgstr "جواب غير صالح من الخادم"
622
+
623
+ #: admin/class-themes-admin.php:442 core/licensing.php:353
624
+ msgctxt "licensing"
625
+ msgid "License deactivated"
626
+ msgstr "تم إلغاء تفعيل الترخيص"
627
+
628
+ #: admin/class-themes-admin.php:458
629
+ msgctxt "themes"
630
+ msgid "Activate your <a>license key</a> to use this theme."
631
+ msgstr "فعِّل <a>مفتاح الترخيص</a> الخاص بك لاستخدام هذا القالب."
632
+
633
+ #: admin/csv-export.php:136
634
+ msgctxt "admin csv-export"
635
+ msgid "Could not create a temporary directory for handling this CSV export."
636
+ msgstr "لا يمكن إنشاء مجلد مؤقت للتعامل مع تصدير CSV."
637
+
638
+ #: admin/csv-export.php:138
639
+ msgctxt "admin csv-export"
640
+ msgid "Could not create wpbdp-csv-exports directory."
641
+ msgstr "تعذر إنشاء مجلد wpbdp-csv-exports."
642
+
643
+ #: admin/csv-export.php:143
644
+ msgctxt "admin csv-export"
645
+ msgid "Error while creating a temporary directory for CSV export: %s"
646
+ msgstr "حدث خطأ أثناء إنشاء مجلد مؤقت لتصدير CSV: %s"
647
+
648
+ #: admin/csv-import.php:109
649
+ msgctxt "admin csv-import"
650
+ msgid "Business %s"
651
+ msgstr "الأعمال %s"
652
+
653
+ #: admin/csv-import.php:147
654
+ msgctxt "admin csv-import"
655
+ msgid "Whatever"
656
+ msgstr "أيا كان"
657
+
658
+ #: admin/csv-import.php:151
659
+ msgctxt "admin csv-import"
660
+ msgid "Example CSV Import File"
661
+ msgstr "مثال لملف الاستيراد CSV"
662
+
663
+ #: admin/csv-import.php:152
664
+ msgctxt "admin csv-import"
665
+ msgid "← Return to \"CSV Import\""
666
+ msgstr "← العودة إلى \"استيراد CSV\""
667
+
668
+ #: admin/csv-import.php:255
669
+ msgid ""
670
+ "A valid temporary directory with write permissions is required for CSV imports to "
671
+ "function properly. Your server is using \"%s\" but this path does not seem to be "
672
+ "writable. Please consult with your host."
673
+ msgstr ""
674
+ "مطلوب مجلد مؤقت صالح مع صلاحية الكتابة لاستيراد CSV لكي يعمل بشكل صحيح. الخادم "
675
+ "الخاص بك يستخدام \"%s\" ولكن هذا المسار لا يبدو أنه قابل للكتابة. يرجى استشارة "
676
+ "الاستضافة الخاص بك."
677
+
678
+ #: admin/csv-import.php:289
679
+ msgctxt "admin csv-import"
680
+ msgid "There was an error uploading the CSV file."
681
+ msgstr "حدث خطأ أثناء رفع ملف CSV."
682
+
683
+ #: admin/csv-import.php:295
684
+ msgctxt "admin csv-import"
685
+ msgid "Please upload or select a CSV file."
686
+ msgstr "المرجو رفع أو حدد ملف CSV."
687
+
688
+ #: admin/csv-import.php:308
689
+ msgctxt "admin csv-import"
690
+ msgid "There was an error uploading the images ZIP file."
691
+ msgstr "حدث خطأ أثناء رفع ملف الصور المضغوط ."
692
+
693
+ #: admin/csv-import.php:329
694
+ msgctxt "admin csv-import"
695
+ msgid ""
696
+ "An error was detected while validating the CSV file for import. Please fix this "
697
+ "before proceeding."
698
+ msgstr ""
699
+ "تم اكتشاف خطأ أثناء التحقق من صحة ملف CSV للاستيراد. المرجو إصلاح هذا قبل المتابعة."
700
+
701
+ #: admin/csv-import.php:338
702
+ msgctxt "admin csv-import"
703
+ msgid "Import is in \"test mode\". Nothing will be inserted into the database."
704
+ msgstr "الاستيراد في \"وضع الاختبار\". لن يتم إدراج أي شيء في قاعدة البيانات."
705
+
706
+ #: admin/fees.php:9
707
+ msgctxt "fees admin"
708
+ msgid "fee"
709
+ msgstr "الرسم"
710
+
711
+ #: admin/fees.php:10
712
+ msgctxt "fees admin"
713
+ msgid "fees"
714
+ msgstr "الرسوم"
715
+
716
+ #: admin/fees.php:19
717
+ msgctxt "fees admin"
718
+ msgid "There are no fees right now. You can <a>create one</a>, if you want."
719
+ msgstr "لا توجد أي رسوم الآن. يمكنك <a>إنشاء واحد</a>، إذا كنت تريد."
720
+
721
+ #: admin/fees.php:25 admin/fees.php:260
722
+ msgctxt "fees admin"
723
+ msgid "Active"
724
+ msgstr "مفعل"
725
+
726
+ #: admin/fees.php:28 admin/fees.php:258
727
+ msgctxt "fees admin"
728
+ msgid "Not Available"
729
+ msgstr "غير متاح"
730
+
731
+ #: admin/fees.php:31 admin/fees.php:255
732
+ msgctxt "fees admin"
733
+ msgid "Disabled"
734
+ msgstr "معطل"
735
+
736
+ #: admin/fees.php:39
737
+ msgctxt "fees admin"
738
+ msgid "There are no \"%s\" fees right now. You can <a>create one</a>, if you want."
739
+ msgstr "لا توجد أي \"%s\" رسوم الآن. يمكنك <a>إنشاء واحد</a>، إذا كنت تريد."
740
+
741
+ #: admin/fees.php:56
742
+ msgctxt "admin fees table"
743
+ msgid "All"
744
+ msgstr "الكل"
745
+
746
+ #: admin/fees.php:68
747
+ msgctxt "admin fees table"
748
+ msgid "Active"
749
+ msgstr "مفعل"
750
+
751
+ #: admin/fees.php:78
752
+ msgctxt "admin fees table"
753
+ msgid "Not Available"
754
+ msgstr "غير متاح"
755
+
756
+ #: admin/fees.php:85
757
+ msgctxt "admin fees table"
758
+ msgid "Disabled"
759
+ msgstr "معطل"
760
+
761
+ #: admin/fees.php:94
762
+ msgctxt "fees admin"
763
+ msgid "Label"
764
+ msgstr "التسمية"
765
+
766
+ #: admin/fees.php:95
767
+ msgctxt "fees admin"
768
+ msgid "Amount"
769
+ msgstr "القدر"
770
+
771
+ #: admin/fees.php:96
772
+ msgctxt "fees admin"
773
+ msgid "Duration"
774
+ msgstr "المدة"
775
+
776
+ #: admin/fees.php:97
777
+ msgctxt "fees admin"
778
+ msgid "Images"
779
+ msgstr "الصور"
780
+
781
+ #: admin/fees.php:98
782
+ msgctxt "fees admin"
783
+ msgid "Featured/Sticky"
784
+ msgstr "حالة مميزة (مثبت)"
785
+
786
+ #: admin/fees.php:102
787
+ msgctxt "fees admin"
788
+ msgid "Status"
789
+ msgstr "الحالة"
790
+
791
+ #: admin/fees.php:155
792
+ msgctxt "fees admin"
793
+ msgid ""
794
+ "This is the default free plan for your directory. You can't delete it and it's "
795
+ "always free, but you can edit the name and other settings. It's only available "
796
+ "when the directory is in Free mode. You can always create other fee plans, "
797
+ "including ones for 0.00 (free) if you wish."
798
+ msgstr ""
799
+ "هذه هي الخطة الافتراضية المجانية للدليل الخاص بك. لا يمكنك حذفه، وهي دائما "
800
+ "مجانية، ولكن يمكنك تعديل الإسم وإعدادات أخرى. إنه يتوفر فقط عندما يكون الدليل في "
801
+ "الوضع المجاني. ويمكنك دائماً إنشاء خطط رسوم أخرى، بما في ذلك تلك الخاصة بـ 0.00 "
802
+ "(مجاناً) إذا كنت ترغب."
803
+
804
+ #: admin/fees.php:187
805
+ msgctxt "fees admin"
806
+ msgid "Edit"
807
+ msgstr "تحرير"
808
+
809
+ #: admin/fees.php:197
810
+ msgctxt "fees admin"
811
+ msgid "Disable"
812
+ msgstr "تعطيل"
813
+
814
+ #: admin/fees.php:201
815
+ msgctxt "fees admin"
816
+ msgid "Enable"
817
+ msgstr "تفعيل"
818
+
819
+ #: admin/fees.php:205
820
+ msgctxt "fees admin"
821
+ msgid "Delete"
822
+ msgstr "حذف"
823
+
824
+ #: admin/fees.php:226
825
+ msgctxt "fees admin"
826
+ msgid "Forever"
827
+ msgstr "دائما"
828
+
829
+ #: admin/fees.php:227
830
+ msgctxt "fees admin"
831
+ msgid "%d day"
832
+ msgid_plural "%d days"
833
+ msgstr[0] "%d يوم"
834
+ msgstr[1] "%d يوم"
835
+ msgstr[2] "%d يومين"
836
+ msgstr[3] "%d أيام"
837
+ msgstr[4] "%d يوم"
838
+ msgstr[5] "%d يوم"
839
+
840
+ #: admin/fees.php:231
841
+ msgctxt "fees admin"
842
+ msgid "%d image"
843
+ msgid_plural "%d images"
844
+ msgstr[0] "%d صورة"
845
+ msgstr[1] "%d صورتين"
846
+ msgstr[2] "%d صور"
847
+ msgstr[3] "%d صور"
848
+ msgstr[4] "%d صور"
849
+ msgstr[5] "%d صور"
850
+
851
+ #: admin/fees.php:236
852
+ msgctxt "fees admin"
853
+ msgid "All categories"
854
+ msgstr "جميع التصنيفات"
855
+
856
+ #: admin/fees.php:250
857
+ msgctxt "fees admin"
858
+ msgid "Yes"
859
+ msgstr "نعم"
860
+
861
+ #: admin/fees.php:250
862
+ msgctxt "fees admin"
863
+ msgid "No"
864
+ msgstr "لا"
865
+
866
+ #: admin/fees.php:285
867
+ msgctxt "fees admin"
868
+ msgid "Fee enabled."
869
+ msgstr "رسوم ممكنة."
870
+
871
+ #: admin/fees.php:293
872
+ msgctxt "fees admin"
873
+ msgid "Fee disabled."
874
+ msgstr "رسوم معطلة."
875
+
876
+ #: admin/fees.php:318
877
+ msgctxt "fees order"
878
+ msgid "Label"
879
+ msgstr "التسمية"
880
+
881
+ #: admin/fees.php:319
882
+ msgctxt "fees order"
883
+ msgid "Amount"
884
+ msgstr "القدر"
885
+
886
+ #: admin/fees.php:320
887
+ msgctxt "fees order"
888
+ msgid "Duration"
889
+ msgstr "المدة"
890
+
891
+ #: admin/fees.php:321
892
+ msgctxt "fees order"
893
+ msgid "Images"
894
+ msgstr "الصور"
895
+
896
+ #: admin/fees.php:322
897
+ msgctxt "fees order"
898
+ msgid "Custom Order"
899
+ msgstr "ترتيب مخصص"
900
+
901
+ #: admin/fees.php:342
902
+ msgctxt "fees admin"
903
+ msgid "Fee updated."
904
+ msgstr "الرسوم حدثت."
905
+
906
+ #: admin/fees.php:367
907
+ msgctxt "fees admin"
908
+ msgid "Fee deleted."
909
+ msgstr "الرسوم حذفت."
910
+
911
+ #: admin/form-fields.php:9
912
+ msgctxt "form-fields admin"
913
+ msgid "form field"
914
+ msgstr "حقل الاستمارة"
915
+
916
+ #: admin/form-fields.php:10
917
+ msgctxt "form-fields admin"
918
+ msgid "form fields"
919
+ msgstr "حقول الاستمارة"
920
+
921
+ #: admin/form-fields.php:17
922
+ msgctxt "form-fields admin"
923
+ msgid "Order"
924
+ msgstr "ترتيب"
925
+
926
+ #: admin/form-fields.php:18
927
+ msgctxt "form-fields admin"
928
+ msgid "Label / Association"
929
+ msgstr "تسمية/رابطة"
930
+
931
+ #: admin/form-fields.php:19
932
+ msgctxt "form-fields admin"
933
+ msgid "Type"
934
+ msgstr "نوع"
935
+
936
+ #: admin/form-fields.php:20
937
+ msgctxt "form-fields admin"
938
+ msgid "Validator"
939
+ msgstr "مدقق"
940
+
941
+ #: admin/form-fields.php:21
942
+ msgctxt "form-fields admin"
943
+ msgid "Field Attributes"
944
+ msgstr "سمات الحقل"
945
+
946
+ #: admin/form-fields.php:45
947
+ msgctxt "form-fields admin"
948
+ msgid "Edit"
949
+ msgstr "تحرير"
950
+
951
+ #: admin/form-fields.php:50
952
+ msgctxt "form-fields admin"
953
+ msgid "Delete"
954
+ msgstr "حذف"
955
+
956
+ #: admin/form-fields.php:76
957
+ msgctxt "form-fields admin"
958
+ msgid "Required"
959
+ msgstr "مطلوب"
960
+
961
+ #: admin/form-fields.php:76
962
+ msgctxt "form-fields admin"
963
+ msgid "Optional"
964
+ msgstr "إختياري"
965
+
966
+ #: admin/form-fields.php:80
967
+ msgctxt "form-fields admin"
968
+ msgid "This field value is shown in the excerpt view of a listing."
969
+ msgstr "قيمة هذا الحقل ظاهرة في عرض المقتطفات للإعلان."
970
+
971
+ #: admin/form-fields.php:81
972
+ msgctxt "form-fields admin"
973
+ msgid "In Excerpt"
974
+ msgstr "في مقتطف"
975
+
976
+ #: admin/form-fields.php:86
977
+ msgctxt "form-fields admin"
978
+ msgid "This field value is shown in the single view of a listing."
979
+ msgstr "قيمة هذا الحقل ظاهرة في العرض المفرد للإعلان."
980
+
981
+ #: admin/form-fields.php:87
982
+ msgctxt "form-fields admin"
983
+ msgid "In Listing"
984
+ msgstr "في الإعلان"
985
+
986
+ #: admin/form-fields.php:174
987
+ msgctxt "formfields-preview"
988
+ msgid ""
989
+ "This is a preview of the form as it will appear during \"Submit a Listing\". The "
990
+ "users may not see all fields from \"Manage Form Fields\" because you have "
991
+ "\"Featured Levels\" active and this is showing the base level."
992
+ msgstr ""
993
+ "هذا عرض مسبق لشكل الاستمارة كما ستظهر خلال \"إضافة إعلان\". المستخدمين قد لا ترون "
994
+ "كافة الحقول من \"إدارة حقول الاستمارة\" لأنه لديك \"مستويات مميزة\" مفعلة وهذا "
995
+ "يظهر المستوى الأساسي."
996
+
997
+ #: admin/form-fields.php:180
998
+ msgctxt "form-fields admin"
999
+ msgid "Form Preview"
1000
+ msgstr "معاينة الاستمارة"
1001
+
1002
+ #: admin/form-fields.php:181
1003
+ msgctxt "form-fields admin"
1004
+ msgid "← Return to \"Manage Form Fields\""
1005
+ msgstr "← العودة إلى \"إدارة حقول الاستمارة\""
1006
+
1007
+ #: admin/form-fields.php:212
1008
+ msgctxt "form-fields admin"
1009
+ msgid "Form fields updated."
1010
+ msgstr "تم تحديث الاستمارة."
1011
+
1012
+ #: admin/form-fields.php:228
1013
+ msgctxt "form-fields admin"
1014
+ msgid ""
1015
+ "<b>Important</b>: Since the \"<a>Display email address fields publicly?</a>\" "
1016
+ "setting is disabled, display settings below will not be honored and this field "
1017
+ "will not be displayed on the frontend. If you want e-mail addresses to show on the "
1018
+ "frontend, you can <a>enable public display of e-mails</a>."
1019
+ msgstr ""
1020
+ "<b>هام</b>: نظرا لأن إعدادات \"<a>عرض حقول عنوان البريد الإلكتروني للعموم؟</a>\" "
1021
+ "معطلة، عرض الإعدادات أدناه لن يتم إظهاره ولن يتم عرض هذا الحقل على الواجهة. إذا "
1022
+ "كنت تريد إظهار عناوين البريد الإلكتروني في الواجهة، يمكنك <a>تمكين عرض البريد "
1023
+ "الإلكتروني للعموم</a>."
1024
+
1025
+ #: admin/form-fields.php:262
1026
+ msgctxt "form-fields admin"
1027
+ msgid "Field deleted."
1028
+ msgstr "تم حذف الحقل."
1029
+
1030
+ #: admin/form-fields.php:278
1031
+ msgctxt "form-fields admin"
1032
+ msgid "Required fields created successfully."
1033
+ msgstr "الحقول المطلوبة أنشئت بنجاح."
1034
+
1035
+ #: admin/form-fields.php:291
1036
+ msgctxt "form-fields admin"
1037
+ msgid "Title"
1038
+ msgstr "العنوان"
1039
+
1040
+ #: admin/form-fields.php:292
1041
+ msgctxt "form-fields admin"
1042
+ msgid "Category"
1043
+ msgstr "التصنيف"
1044
+
1045
+ #: admin/form-fields.php:293
1046
+ msgctxt "form-fields admin"
1047
+ msgid "Excerpt"
1048
+ msgstr "مقتطف"
1049
+
1050
+ #: admin/form-fields.php:294
1051
+ msgctxt "form-fields admin"
1052
+ msgid "Content"
1053
+ msgstr "المحتوى"
1054
+
1055
+ #: admin/form-fields.php:295
1056
+ msgctxt "form-fields admin"
1057
+ msgid "Tags"
1058
+ msgstr "الوسوم"
1059
+
1060
+ #: admin/form-fields.php:296
1061
+ msgctxt "form-fields admin"
1062
+ msgid "Address"
1063
+ msgstr "العنوان"
1064
+
1065
+ #: admin/form-fields.php:297
1066
+ msgctxt "form-fields admin"
1067
+ msgid "City"
1068
+ msgstr "المدينة"
1069
+
1070
+ #: admin/form-fields.php:298
1071
+ msgctxt "form-fields admin"
1072
+ msgid "State"
1073
+ msgstr "الولاية"
1074
+
1075
+ #: admin/form-fields.php:299
1076
+ msgctxt "form-fields admin"
1077
+ msgid "ZIP Code"
1078
+ msgstr "الرمز البريدي"
1079
+
1080
+ #: admin/form-fields.php:300
1081
+ msgctxt "form-fields admin"
1082
+ msgid "FAX Number"
1083
+ msgstr "رقم الفاكس"
1084
+
1085
+ #: admin/form-fields.php:301
1086
+ msgctxt "form-fields admin"
1087
+ msgid "Phone Number"
1088
+ msgstr "رقم الهاتف"
1089
+
1090
+ #: admin/form-fields.php:302
1091
+ msgctxt "form-fields admin"
1092
+ msgid "Ratings Field"
1093
+ msgstr "حقول التقييم"
1094
+
1095
+ #: admin/form-fields.php:303
1096
+ msgctxt "form-fields admin"
1097
+ msgid "Twitter"
1098
+ msgstr "تويتر"
1099
+
1100
+ #: admin/form-fields.php:304
1101
+ msgctxt "form-fields admin"
1102
+ msgid "Website"
1103
+ msgstr "موقع الأنترنيت"
1104
+
1105
+ #: admin/form-fields.php:325
1106
+ msgctxt "form-fields admin"
1107
+ msgid "Tags updated."
1108
+ msgstr "تم تحديث الوسوم"
1109
+
1110
+ #: admin/listing-metabox.php:11
1111
+ msgctxt "admin"
1112
+ msgid "General"
1113
+ msgstr "عام"
1114
+
1115
+ #: admin/listing-metabox.php:12
1116
+ msgctxt "admin"
1117
+ msgid "Fee Details"
1118
+ msgstr "تفاصيل الرسوم"
1119
+
1120
+ #: admin/listing-metabox.php:13
1121
+ msgctxt "admin"
1122
+ msgid "Transactions"
1123
+ msgstr "المعاملات المالية"
1124
+
1125
+ #: admin/listing-metabox.php:42
1126
+ msgctxt "admin infometabox"
1127
+ msgid "General Info"
1128
+ msgstr "معلومات عامة"
1129
+
1130
+ #: admin/listing-metabox.php:44
1131
+ msgctxt "admin infometabox"
1132
+ msgid "Access Key"
1133
+ msgstr "مفتاح الوصول"
1134
+
1135
+ #: admin/listing-metabox.php:46
1136
+ msgctxt "admin infometabox"
1137
+ msgid "Total Listing Cost"
1138
+ msgstr "القيمة الإجمالية للإعلان"
1139
+
1140
+ #: admin/listing-metabox.php:48
1141
+ msgctxt "admin infometabox"
1142
+ msgid "Payment Status"
1143
+ msgstr "حالة الدفع"
1144
+
1145
+ #: admin/listing-metabox.php:52
1146
+ msgctxt "admin infometabox"
1147
+ msgid "Featured (Sticky) Status"
1148
+ msgstr "حالة مميزة (مثبت)"
1149
+
1150
+ #: admin/listing-metabox.php:60
1151
+ msgctxt "admin metabox"
1152
+ msgid "Pending Upgrade"
1153
+ msgstr " الترقية في الانتظار"
1154
+
1155
+ #: admin/listing-metabox.php:83
1156
+ msgctxt "admin infometabox"
1157
+ msgid "CSV Import Sequence ID"
1158
+ msgstr "معرف تسلسل استيراد CSV"
1159
+
1160
+ #: admin/listing-metabox.php:94
1161
+ msgctxt "admin infometabox"
1162
+ msgid "Mark listing as Paid"
1163
+ msgstr "جعل الإعلان مدفوع"
1164
+
1165
+ #: admin/page-debug.php:16
1166
+ msgctxt "debug-info"
1167
+ msgid "BD Info"
1168
+ msgstr "معلومات دليل الأعمال"
1169
+
1170
+ #: admin/page-debug.php:28
1171
+ msgid "Missing tables: %s"
1172
+ msgstr "الجداول المفقودة: %s"
1173
+
1174
+ #: admin/page-debug.php:29
1175
+ msgctxt "debug-info"
1176
+ msgid "OK"
1177
+ msgstr "حسناً"
1178
+
1179
+ #: admin/page-debug.php:37
1180
+ msgctxt "debug-info"
1181
+ msgid "BD Options"
1182
+ msgstr "خيارات دليل الأعمال"
1183
+
1184
+ #: admin/page-debug.php:50
1185
+ msgctxt "debug-info"
1186
+ msgid "Environment"
1187
+ msgstr "البيئة"
1188
+
1189
+ #: admin/page-debug.php:75
1190
+ msgctxt "debug info"
1191
+ msgid "Test SSL setup..."
1192
+ msgstr "اختبار إعداد SSL..."
1193
+
1194
+ #: admin/templates/csv-export.tpl.php:9
1195
+ msgctxt "admin csv-export"
1196
+ msgid ""
1197
+ "An unknown error occurred during the export. Please make sure you have enough free "
1198
+ "disk space and memory available to PHP. Check your error logs for details."
1199
+ msgstr ""
1200
+ "حدث خطأ غير معروف أثناء عملية التصدير. الرجاء التأكد من أن لديك ما يكفي من المساحة "
1201
+ "الفارغة على القرص والذاكرة المتاحة إلى بي إتش بي. تحقق من سجلات الخطأ الخاص بك "
1202
+ "للحصول على التفاصيل."
1203
+
1204
+ #: admin/templates/csv-export.tpl.php:18
1205
+ msgctxt "admin csv-export"
1206
+ msgid ""
1207
+ "Please note that the export process is a resource intensive task. If your export "
1208
+ "does not succeed try disabling other plugins first and/or increasing the values of "
1209
+ "the 'memory_limit' and 'max_execution_time' directives in your server's php.ini "
1210
+ "configuration file."
1211
+ msgstr ""
1212
+ "يرجى ملاحظة أن عملية التصدير مهمة تتطلب موارد كثيرة. إذا لم تنجح في التصدير حاول "
1213
+ "تعطيل إضافات أخرى أولاً و/أو زيادة قيم التوجيهات 'memory_limit' و "
1214
+ "'max_execution_time' في الخادم الخاص بك بتعديل ملف الإعدادات php.ini."
1215
+
1216
+ #: admin/templates/csv-export.tpl.php:30
1217
+ msgctxt "admin csv-export"
1218
+ msgid "Export Configuration"
1219
+ msgstr "ضبط التصدير"
1220
+
1221
+ #: admin/templates/csv-export.tpl.php:33
1222
+ msgctxt "admin csv-export"
1223
+ msgid "Export settings"
1224
+ msgstr "إعدادات التصدير"
1225
+
1226
+ #: admin/templates/csv-export.tpl.php:37
1227
+ msgctxt "admin csv-export"
1228
+ msgid "Which listings to export?"
1229
+ msgstr "أي لائحة تريد التصدير؟"
1230
+
1231
+ #: admin/templates/csv-export.tpl.php:41
1232
+ msgctxt "admin csv-export"
1233
+ msgid "All"
1234
+ msgstr "الكل"
1235
+
1236
+ #: admin/templates/csv-export.tpl.php:42
1237
+ msgctxt "admin csv-export"
1238
+ msgid "Active Only"
1239
+ msgstr "المفعل فقط"
1240
+
1241
+ #: admin/templates/csv-export.tpl.php:43
1242
+ msgctxt "admin csv-export"
1243
+ msgid "Active + Pending Renewal"
1244
+ msgstr "مفعل + ريثما يتم التجديد"
1245
+
1246
+ #: admin/templates/csv-export.tpl.php:49
1247
+ msgctxt "admin csv-export"
1248
+ msgid "Export images?"
1249
+ msgstr "تصدير الصور؟"
1250
+
1251
+ #: admin/templates/csv-export.tpl.php:54
1252
+ msgctxt "admin csv-export"
1253
+ msgid "Export images"
1254
+ msgstr "تصدير الصور"
1255
+
1256
+ #: admin/templates/csv-export.tpl.php:56
1257
+ msgctxt "admin csv-export"
1258
+ msgid ""
1259
+ "When checked, instead of just a CSV file a ZIP file will be generated with both a "
1260
+ "CSV file and listing images."
1261
+ msgstr ""
1262
+ "عند اختيار الخانة، بدلاً من مجرد ملف CSV سيتم إنشاء ملف مضغوط مع ملف CSV ولائحة "
1263
+ "الصور."
1264
+
1265
+ #: admin/templates/csv-export.tpl.php:62
1266
+ msgctxt "admin csv-export"
1267
+ msgid "Additional metadata to export:"
1268
+ msgstr "بيانات تعريف إضافية للتصدير:"
1269
+
1270
+ #: admin/templates/csv-export.tpl.php:67
1271
+ msgctxt "admin csv-export"
1272
+ msgid "Include unique IDs for each listing (sequence_id column)."
1273
+ msgstr "تتضمن معرفات (IDs) فريدة لكل إعلان (عمود sequence_id)."
1274
+
1275
+ #: admin/templates/csv-export.tpl.php:69
1276
+ msgctxt "admin csv-export"
1277
+ msgid ""
1278
+ "If you plan to re-import the listings into BD and don't want new ones created, "
1279
+ "select this option!"
1280
+ msgstr ""
1281
+ "إذا كنت تخطط لإعادة استيراد الإعلانات إلى \"دليل الأعمال\" ولا تريد إنشاء أخرى "
1282
+ "جديدة، قم بتحديد هذا الخيار!"
1283
+
1284
+ #: admin/templates/csv-export.tpl.php:75
1285
+ msgctxt "admin csv-export"
1286
+ msgid "Author information (username)"
1287
+ msgstr "معلومات الكاتب (إسم المستخدم)"
1288
+
1289
+ #: admin/templates/csv-export.tpl.php:80
1290
+ msgctxt "admin csv-export"
1291
+ msgid "Sticky/featured status"
1292
+ msgstr "مثبت/حالة مميزة"
1293
+
1294
+ #: admin/templates/csv-export.tpl.php:85
1295
+ msgctxt "admin csv-export"
1296
+ msgid "Listing expiration date"
1297
+ msgstr "إنتهاء صلاحية الإعلان"
1298
+
1299
+ #: admin/templates/csv-export.tpl.php:90
1300
+ msgctxt "admin csv-export"
1301
+ msgid "CSV File Settings"
1302
+ msgstr "إعدادات ملف CSV"
1303
+
1304
+ #: admin/templates/csv-export.tpl.php:94
1305
+ msgctxt "admin csv-export"
1306
+ msgid "Column Separator"
1307
+ msgstr "فاصلة الأعمدة"
1308
+
1309
+ #: admin/templates/csv-export.tpl.php:94 admin/templates/csv-export.tpl.php:105
1310
+ #: admin/templates/csv-export.tpl.php:116 admin/templates/csv-import.tpl.php:43
1311
+ #: admin/templates/csv-import.tpl.php:109 admin/templates/csv-import.tpl.php:120
1312
+ #: admin/templates/csv-import.tpl.php:131 admin/templates/csv-import.tpl.php:158
1313
+ msgctxt "admin forms"
1314
+ msgid "required"
1315
+ msgstr "مطلوب"
1316
+
1317
+ #: admin/templates/csv-export.tpl.php:105
1318
+ msgctxt "admin csv-export"
1319
+ msgid "Image Separator"
1320
+ msgstr "فاصلة الصورة "
1321
+
1322
+ #: admin/templates/csv-export.tpl.php:116
1323
+ msgctxt "admin csv-export"
1324
+ msgid "Category Separator"
1325
+ msgstr "فاصلة التصنيف"
1326
+
1327
+ #: admin/templates/csv-export.tpl.php:128
1328
+ msgctxt "admin csv-export"
1329
+ msgid "Export Listings"
1330
+ msgstr "الإعلانات المصدرة"
1331
+
1332
+ #: admin/templates/csv-export.tpl.php:134
1333
+ msgctxt "admin csv-export"
1334
+ msgid "Export in Progress..."
1335
+ msgstr "جاري التصدير..."
1336
+
1337
+ #: admin/templates/csv-export.tpl.php:135
1338
+ msgctxt "admin csv-export"
1339
+ msgid ""
1340
+ "Your export file is being prepared. Please <u>do not leave</u> this page until the "
1341
+ "export finishes."
1342
+ msgstr "جاري إعداد ملف التصدير. المرجو <u>عدم ترك</u> هذه الصفحة حتى انتهاء التصدير."
1343
+
1344
+ #: admin/templates/csv-export.tpl.php:138
1345
+ msgctxt "admin csv-export"
1346
+ msgid "No. of listings:"
1347
+ msgstr "أرقام الإعلانات:"
1348
+
1349
+ #: admin/templates/csv-export.tpl.php:140
1350
+ msgctxt "admin csv-export"
1351
+ msgid "Approximate export file size:"
1352
+ msgstr "الحجم التقريبي لملف التصدير:"
1353
+
1354
+ #: admin/templates/csv-export.tpl.php:147
1355
+ msgctxt "admin csv-export"
1356
+ msgid "Cancel Export"
1357
+ msgstr "إلغاء التصدير"
1358
+
1359
+ #: admin/templates/csv-export.tpl.php:152
1360
+ msgctxt "admin csv-export"
1361
+ msgid "Export Complete"
1362
+ msgstr "تم التصدير"
1363
+
1364
+ #: admin/templates/csv-export.tpl.php:153
1365
+ msgctxt "admin csv-export"
1366
+ msgid ""
1367
+ "Your export file has been successfully created and it is now ready for download."
1368
+ msgstr "تم بنجاح إنشاء ملف التصدير، والآن جاهز للتحميل."
1369
+
1370
+ #: admin/templates/csv-export.tpl.php:156
1371
+ msgctxt "admin csv-export"
1372
+ msgid "Download %s (%s)"
1373
+ msgstr "تحميل %s (%s)"
1374
+
1375
+ #: admin/templates/csv-export.tpl.php:162
1376
+ msgctxt "admin csv-export"
1377
+ msgid ""
1378
+ "Click \"Cleanup\" once the file has been downloaded in order to remove all "
1379
+ "temporary data created by Business Directory during the export process."
1380
+ msgstr ""
1381
+ "إضغط على \"تنظيف\" بعد تحميل الملف بغية إزالة جميع البيانات المؤقتة التي تم "
1382
+ "إنشاؤها بواسطة \"دليل الأعمال\" أثناء عملية التصدير."
1383
+
1384
+ #: admin/templates/csv-export.tpl.php:163
1385
+ msgctxt "admin csv-export"
1386
+ msgid "Cleanup"
1387
+ msgstr "نظف"
1388
+
1389
+ #: admin/templates/csv-export.tpl.php:168
1390
+ msgctxt "admin csv-export"
1391
+ msgid "Export Canceled"
1392
+ msgstr "ألغي التصدير"
1393
+
1394
+ #: admin/templates/csv-export.tpl.php:169
1395
+ msgctxt "admin csv-export"
1396
+ msgid "The export has been canceled."
1397
+ msgstr "تم إلغاء التصدير"
1398
+
1399
+ #: admin/templates/csv-export.tpl.php:170
1400
+ msgctxt "admin csv-export"
1401
+ msgid "← Return to CSV Export"
1402
+ msgstr "← العودة إلى تصدير CSV"
1403
+
1404
+ #: admin/templates/csv-import-progress.tpl.php:6
1405
+ msgctxt "admin csv-import"
1406
+ msgid "A fatal error occurred during the import. The reason given was: \"%s\"."
1407
+ msgstr "حدث خطأ فادح أثناء عملية الاستيراد. وكان السبب الذي أعطي: \"%s\"."
1408
+
1409
+ #: admin/templates/csv-import-progress.tpl.php:10
1410
+ msgctxt "admin csv-import"
1411
+ msgid ""
1412
+ "A fatal error occurred during the import. If connection wasn't lost during the "
1413
+ "import, please make sure that you have enough free disk space and memory available "
1414
+ "to PHP. Check your error logs for details."
1415
+ msgstr ""
1416
+ "حدث خطأ فادح أثناء عملية الاستيراد. إذا لم يكن الاتصال قد قطع أثناء عملية "
1417
+ "الاستيراد، الرجاء التأكد من أن لديك ما يكفي من المساحة الفارغة على القرص والذاكرة "
1418
+ "المتاحة إلى بي إتش بي. تحقق من سجلات الخطأ الخاص بك للحصول على التفاصيل."
1419
+
1420
+ #: admin/templates/csv-import-progress.tpl.php:14
1421
+ msgctxt "admin csv-import"
1422
+ msgid "Last imported line from file:"
1423
+ msgstr "السطر الأخير الذي تم استيراده من الملف:"
1424
+
1425
+ #: admin/templates/csv-import-progress.tpl.php:18
1426
+ #: admin/templates/csv-import-progress.tpl.php:25
1427
+ msgctxt "admin csv-import"
1428
+ msgid "← Return to CSV Import"
1429
+ msgstr "← العودة إلى \"استيراد CSV\""
1430
+
1431
+ #: admin/templates/csv-import-progress.tpl.php:23
1432
+ msgctxt "admin csv-import"
1433
+ msgid "Import Canceled"
1434
+ msgstr "ألغي الاستيراد"
1435
+
1436
+ #: admin/templates/csv-import-progress.tpl.php:24
1437
+ msgctxt "admin csv-import"
1438
+ msgid "The import has been canceled."
1439
+ msgstr "تم إلغاء الاستيراد."
1440
+
1441
+ #: admin/templates/csv-import-progress.tpl.php:31
1442
+ msgid "Import Progress"
1443
+ msgstr "تقدم الاستيراد"
1444
+
1445
+ #: admin/templates/csv-import-progress.tpl.php:34
1446
+ msgctxt "admin csv-import"
1447
+ msgid "Files"
1448
+ msgstr "ملفات"
1449
+
1450
+ #: admin/templates/csv-import-progress.tpl.php:37
1451
+ msgctxt "admin csv-import"
1452
+ msgid "Rows in file"
1453
+ msgstr "السطور في ملف"
1454
+
1455
+ #: admin/templates/csv-import-progress.tpl.php:40
1456
+ msgctxt "admin csv-import"
1457
+ msgid "Progress"
1458
+ msgstr "التقدم"
1459
+
1460
+ #: admin/templates/csv-import-progress.tpl.php:44
1461
+ msgctxt "admin csv-import"
1462
+ msgid "Import has not started. Click \"Start Import\" to begin."
1463
+ msgstr "لم يبدأ الاستيراد. إضغط على \"استيراد\" للبدء."
1464
+
1465
+ #: admin/templates/csv-import-progress.tpl.php:45
1466
+ msgctxt "admin csv-import"
1467
+ msgid "Importing CSV file..."
1468
+ msgstr "استيراد ملف CSV..."
1469
+
1470
+ #: admin/templates/csv-import-progress.tpl.php:51
1471
+ msgctxt "admin csv-import"
1472
+ msgid "Start Import"
1473
+ msgstr "بدء الاستيراد"
1474
+
1475
+ #: admin/templates/csv-import-progress.tpl.php:52
1476
+ msgctxt "admin csv-import"
1477
+ msgid "Cancel Import"
1478
+ msgstr "إلغاء الاستيراد"
1479
+
1480
+ #: admin/templates/csv-import-progress.tpl.php:59
1481
+ msgctxt "admin csv-import"
1482
+ msgid "Import finished"
1483
+ msgstr "إنتهاء الاستيراد"
1484
+
1485
+ #: admin/templates/csv-import-progress.tpl.php:62
1486
+ msgctxt "admin csv-import"
1487
+ msgid "Import was completed successfully."
1488
+ msgstr "تم الاستيراد بنجاح."
1489
+
1490
+ #: admin/templates/csv-import-progress.tpl.php:66
1491
+ msgctxt "admin csv-import"
1492
+ msgid "Import was completed but some rows were rejected."
1493
+ msgstr "تم إكمال عملية الاستيراد ولكن رفضت بعض السطور."
1494
+
1495
+ #: admin/templates/csv-import-progress.tpl.php:69
1496
+ msgctxt "admin csv-import"
1497
+ msgid "Import Summary"
1498
+ msgstr "ملخص الاستيراد"
1499
+
1500
+ #: admin/templates/csv-import-progress.tpl.php:71
1501
+ msgctxt "admin csv-import"
1502
+ msgid "Rows in file:"
1503
+ msgstr "السطور في ملف:"
1504
+
1505
+ #: admin/templates/csv-import-progress.tpl.php:74
1506
+ msgctxt "admin csv-import"
1507
+ msgid "Imported rows:"
1508
+ msgstr "السطور المستوردة:"
1509
+
1510
+ #: admin/templates/csv-import-progress.tpl.php:77
1511
+ msgctxt "admin csv-import"
1512
+ msgid "Rejected rows:"
1513
+ msgstr "السطور المرفوضة:"
1514
+
1515
+ #: admin/templates/csv-import-progress.tpl.php:82
1516
+ msgctxt "admin csv-import"
1517
+ msgid "Import Warnings"
1518
+ msgstr "تحذيرات الاستيراد "
1519
+
1520
+ #: admin/templates/csv-import-progress.tpl.php:85
1521
+ msgctxt "admin csv-import"
1522
+ msgid "Line #"
1523
+ msgstr "سطر #"
1524
+
1525
+ #: admin/templates/csv-import-progress.tpl.php:86
1526
+ msgctxt "admin csv-import"
1527
+ msgid "Line"
1528
+ msgstr "سطر"
1529
+
1530
+ #: admin/templates/csv-import-progress.tpl.php:87
1531
+ msgctxt "admin csv-import"
1532
+ msgid "Warning"
1533
+ msgstr "تحذير"
1534
+
1535
+ #: admin/templates/csv-import.tpl.php:12 admin/templates/csv-import.tpl.php:233
1536
+ msgctxt "admin csv-import"
1537
+ msgid "Help"
1538
+ msgstr "المساعدة"
1539
+
1540
+ #: admin/templates/csv-import.tpl.php:13
1541
+ msgctxt "admin csv-import"
1542
+ msgid "See an example CSV import file"
1543
+ msgstr "مشاهدة مثال لملف استيراد CSV"
1544
+
1545
+ #: admin/templates/csv-import.tpl.php:21
1546
+ msgctxt "admin csv-import"
1547
+ msgid "Here, you can import data into your directory using the CSV format."
1548
+ msgstr "هنا، يمكنك استيراد البيانات إلى الدليل الخاص بك باستخدام تنسيق CSV."
1549
+
1550
+ #: admin/templates/csv-import.tpl.php:29
1551
+ msgctxt "admin csv-import"
1552
+ msgid ""
1553
+ "We strongly recommend reading our <a>CSV import documentation</a> first to help "
1554
+ "you do things in the right order."
1555
+ msgstr ""
1556
+ "نوصي بشدة بقراءة <a>وثائق شرح استيراد CSV</a> أولاً لتساعدك على القيام بالأشياء "
1557
+ "بالترتيب الصحيح."
1558
+
1559
+ #: admin/templates/csv-import.tpl.php:38
1560
+ msgctxt "admin csv-import"
1561
+ msgid "Import Files"
1562
+ msgstr "استيراد الملفات"
1563
+
1564
+ #: admin/templates/csv-import.tpl.php:43
1565
+ msgctxt "admin csv-import"
1566
+ msgid "CSV File"
1567
+ msgstr "ملف CSV"
1568
+
1569
+ #: admin/templates/csv-import.tpl.php:55 admin/templates/csv-import.tpl.php:86
1570
+ msgctxt "admin csv-import"
1571
+ msgid "... or <a>select a file uploaded to the imports folder</a>"
1572
+ msgstr ".. أو <a>حدد ملفا تم تحميله إلى مجلد الاستراد</a>"
1573
+
1574
+ #: admin/templates/csv-import.tpl.php:65 admin/templates/csv-import.tpl.php:96
1575
+ msgctxt "admin csv-import"
1576
+ msgid "(Upload new file)"
1577
+ msgstr "(رفع ملف جديد)"
1578
+
1579
+ #: admin/templates/csv-import.tpl.php:74
1580
+ msgctxt "admin csv-import"
1581
+ msgid "ZIP file containing images"
1582
+ msgstr "ملف مضغوط يحتوي على صور"
1583
+
1584
+ #: admin/templates/csv-import.tpl.php:105
1585
+ msgctxt "admin csv-import"
1586
+ msgid "CSV File Settings"
1587
+ msgstr "إعدادات ملف CSV"
1588
+
1589
+ #: admin/templates/csv-import.tpl.php:109
1590
+ msgctxt "admin csv-import"
1591
+ msgid "Column Separator"
1592
+ msgstr "فاصلة الأعمدة"
1593
+
1594
+ #: admin/templates/csv-import.tpl.php:120
1595
+ msgctxt "admin csv-import"
1596
+ msgid "Image Separator"
1597
+ msgstr "فاصلة الصورة "
1598
+
1599
+ #: admin/templates/csv-import.tpl.php:131
1600
+ msgctxt "admin csv-import"
1601
+ msgid "Category Separator"
1602
+ msgstr "فاصلة التصنيف"
1603
+
1604
+ #: admin/templates/csv-import.tpl.php:142
1605
+ msgctxt "admin csv-import"
1606
+ msgid "Import settings"
1607
+ msgstr "إعدادات الاستيراد"
1608
+
1609
+ #: admin/templates/csv-import.tpl.php:146
1610
+ msgctxt "admin csv-import"
1611
+ msgid "Post status of imported listings"
1612
+ msgstr "حالة مقالة الإعلانات المستوردة"
1613
+
1614
+ #: admin/templates/csv-import.tpl.php:158
1615
+ msgctxt "admin csv-import"
1616
+ msgid "Missing categories handling"
1617
+ msgstr "معالجة التصنيفات المفقودة"
1618
+
1619
+ #: admin/templates/csv-import.tpl.php:163
1620
+ msgctxt "admin csv-import"
1621
+ msgid "Auto-create categories"
1622
+ msgstr "الإنشاء التلقائي للتصنيفات"
1623
+
1624
+ #: admin/templates/csv-import.tpl.php:166
1625
+ msgctxt "admin csv-import"
1626
+ msgid "Generate errors when a category is not found"
1627
+ msgstr "إنشاء أخطاء عند عدم العثور على تصنيف"
1628
+
1629
+ #: admin/templates/csv-import.tpl.php:171
1630
+ msgctxt "admin csv-import"
1631
+ msgid "Keep existing listing images?"
1632
+ msgstr "الاحتفاظ بصور الإعلانات الموجودة؟"
1633
+
1634
+ #: admin/templates/csv-import.tpl.php:176
1635
+ msgctxt "admin csv-import"
1636
+ msgid "Keep existing images."
1637
+ msgstr "الاحتفاظ بالصور الموجودة."
1638
+
1639
+ #: admin/templates/csv-import.tpl.php:177
1640
+ msgctxt "admin csv-import"
1641
+ msgid "Appends new images while keeping current ones."
1642
+ msgstr "إلحاق الصور الجديدة مع الاحتفاظ بالموجودة حاليا."
1643
+
1644
+ #: admin/templates/csv-import.tpl.php:182
1645
+ msgctxt "admin csv-import"
1646
+ msgid "Assign listings to a user?"
1647
+ msgstr "تعيين إعلانات للمستخدم؟"
1648
+
1649
+ #: admin/templates/csv-import.tpl.php:188
1650
+ msgctxt "admin csv-import"
1651
+ msgid "Assign listings to a user."
1652
+ msgstr "تعيين إعلانات للمستخدم."
1653
+
1654
+ #: admin/templates/csv-import.tpl.php:193
1655
+ msgctxt "admin csv-import"
1656
+ msgid "Use a default user for listings?"
1657
+ msgstr "استخدام المستخدم الافتراضي للأعلانات؟"
1658
+
1659
+ #: admin/templates/csv-import.tpl.php:199
1660
+ msgctxt "admin csv-import"
1661
+ msgid ""
1662
+ "Select a default user to be used if the username column is not present in the CSV "
1663
+ "file."
1664
+ msgstr ""
1665
+ "حدد المستخدم الافتراضي لاستخدامه إذا كان العمود إسم المستخدم غير موجود في ملف CSV."
1666
+
1667
+ #: admin/templates/csv-import.tpl.php:204
1668
+ msgctxt "admin csv-import"
1669
+ msgid "Default listing user"
1670
+ msgstr "إعلان المستخدم الافتراضي"
1671
+
1672
+ #: admin/templates/csv-import.tpl.php:210
1673
+ msgctxt "admin csv-import"
1674
+ msgid "This user will be used if the username column is not present in the CSV file."
1675
+ msgstr "سيتم استخدام هذا المستخدم إذا كان عمود إسم المستخدم غير موجود في ملف CSV."
1676
+
1677
+ #: admin/templates/csv-import.tpl.php:215
1678
+ msgctxt "admin csv-import"
1679
+ msgid "Disable e-mail notifications during import?"
1680
+ msgstr "تعطيل تنبيهات البريد الإلكتروني أثناء عملية الاستيراد؟"
1681
+
1682
+ #: admin/templates/csv-import.tpl.php:220
1683
+ msgctxt "admin csv-import"
1684
+ msgid "Disable e-mail notifications."
1685
+ msgstr "تعطيل التنبيهات."
1686
+
1687
+ #: admin/templates/csv-import.tpl.php:226
1688
+ msgctxt "admin csv-import"
1689
+ msgid "Test Import"
1690
+ msgstr "اختبار الاستيراد"
1691
+
1692
+ #: admin/templates/csv-import.tpl.php:227
1693
+ msgctxt "admin csv-import"
1694
+ msgid "Import Listings"
1695
+ msgstr "استيراد الإعلانات"
1696
+
1697
+ #: admin/templates/csv-import.tpl.php:235
1698
+ msgctxt "admin csv-import"
1699
+ msgid ""
1700
+ "The following are the valid header names to be used in the CSV file. Multivalued "
1701
+ "fields (such as category or tags) can appear multiple times in the file. Click <a "
1702
+ "href=\"%s\">\"See an example CSV import file\"</a> to see how an import file "
1703
+ "should look like."
1704
+ msgstr ""
1705
+ "فيما يلي أسماء رؤوس صالحة لاستخدامها في ملف CSV. يمكن أن تظهر حقول متعددة القيم "
1706
+ "(مثل تصنيف أو وسوم) عدة مرات في الملف. إضغط فوق <a href=\"%s\">\"انظر مثال لملف "
1707
+ "استيراد CSV\"</a> لمعرفة كيف يجب أن يبدو ملف الاستيراد."
1708
+
1709
+ #: admin/templates/csv-import.tpl.php:242
1710
+ msgctxt "admin csv-import"
1711
+ msgid "Header name/label"
1712
+ msgstr "إسم رأس/التسمية"
1713
+
1714
+ #: admin/templates/csv-import.tpl.php:243
1715
+ msgctxt "admin csv-import"
1716
+ msgid "Field"
1717
+ msgstr "حقل"
1718
+
1719
+ #: admin/templates/csv-import.tpl.php:244
1720
+ msgctxt "admin csv-import"
1721
+ msgid "Type"
1722
+ msgstr "نوع"
1723
+
1724
+ #: admin/templates/csv-import.tpl.php:245
1725
+ msgctxt "admin csv-import"
1726
+ msgid "Required?"
1727
+ msgstr "مطلوب؟"
1728
+
1729
+ #: admin/templates/csv-import.tpl.php:246
1730
+ msgctxt "admin csv-import"
1731
+ msgid "Multivalued?"
1732
+ msgstr "متعدد القيم؟"
1733
+
1734
+ #: admin/templates/csv-import.tpl.php:268
1735
+ msgctxt "admin csv-import"
1736
+ msgid "Semicolon separated list of listing images (from the ZIP file)"
1737
+ msgstr "لائحة مفصولة بفاصلة منقوطة لصور الإعلانات (من ملف مضغوط)"
1738
+
1739
+ #: admin/templates/csv-import.tpl.php:275
1740
+ msgctxt "admin csv-import"
1741
+ msgid "Listing author's username"
1742
+ msgstr "إسم مستخدم كاتب الإعلان"
1743
+
1744
+ #: admin/templates/csv-import.tpl.php:282
1745
+ msgctxt "admin csv-import"
1746
+ msgid "Internal Sequence ID used to allow listing updates from external sources."
1747
+ msgstr "معرف (ID) تسلسل داخلي يستخدم للسماح للإعلان بالتحديثات من مصادر خارجية."
1748
+
1749
+ #: admin/templates/csv-import.tpl.php:289
1750
+ msgctxt "admin csv-import"
1751
+ msgid ""
1752
+ "Date of listing expiration formatted as YYYY-MM-DD. Use this column when adding or "
1753
+ "updating listings from external sources."
1754
+ msgstr ""
1755
+ "تاريخ انتهاء صلاحية الإعلان بهذا التنسيق YYYY-MM-dd. \"استخدام\" هذا العمود عند "
1756
+ "إضافة أو تحديث الإعلانات من مصادر خارجية."
1757
+
1758
+ #: admin/templates/debug-info.tpl.php:5
1759
+ msgctxt "debug-info"
1760
+ msgid ""
1761
+ "The following information can help BD developers debug possible problems with your "
1762
+ "setup."
1763
+ msgstr ""
1764
+ "المعلومات التالية يمكن أن تساعد مطورين \"دليل الأعمال\" لتصحيح المشاكل المحتملة مع "
1765
+ "الإعدادات الخاص بك."
1766
+
1767
+ #: admin/templates/debug-info.tpl.php:6
1768
+ msgctxt "debug-info"
1769
+ msgid ""
1770
+ "The debug information does not contain personal or sensitive information such as "
1771
+ "passwords or private keys."
1772
+ msgstr ""
1773
+ "بيانات تصحيح الأخطاء لا تحتوي على معلومات شخصية أو حساسة مثل كلمات السر أو "
1774
+ "المفاتيح الخاصة."
1775
+
1776
+ #: admin/templates/debug-info.tpl.php:9
1777
+ msgctxt "debug-info"
1778
+ msgid "Download Debug Information"
1779
+ msgstr "تحميل معلومات التصحيح"
1780
+
1781
+ #: admin/templates/fees-addoredit.tpl.php:23
1782
+ msgctxt "fees admin"
1783
+ msgid "Add Listing Fee"
1784
+ msgstr "إضافة رسوم الإعلان"
1785
+
1786
+ #: admin/templates/fees-addoredit.tpl.php:23
1787
+ msgctxt "fees admin"
1788
+ msgid "Edit Listing Fee"
1789
+ msgstr "تعديل رسوم الإعلان"
1790
+
1791
+ #: admin/templates/fees-addoredit.tpl.php:35
1792
+ msgctxt "fees admin"
1793
+ msgid "Fee Label"
1794
+ msgstr "تسمية الرسوم"
1795
+
1796
+ #: admin/templates/fees-addoredit.tpl.php:46
1797
+ msgctxt "fees admin"
1798
+ msgid "Fee Amount"
1799
+ msgstr "مبلغ الرسوم"
1800
+
1801
+ #: admin/templates/fees-addoredit.tpl.php:62
1802
+ msgctxt "fees admin"
1803
+ msgid "Listing run in days"
1804
+ msgstr "الإعلان يعمل طيلة أيام"
1805
+
1806
+ #: admin/templates/fees-addoredit.tpl.php:65
1807
+ msgctxt "fees admin"
1808
+ msgid "run listing for"
1809
+ msgstr "تشغيل الإعلان لـ"
1810
+
1811
+ #: admin/templates/fees-addoredit.tpl.php:74
1812
+ msgctxt "fees admin"
1813
+ msgid "days"
1814
+ msgstr "يوم"
1815
+
1816
+ #: admin/templates/fees-addoredit.tpl.php:77
1817
+ msgctxt "fees admin"
1818
+ msgid "run listing forever"
1819
+ msgstr "تشغيل الإعلان إلى الأبد"
1820
+
1821
+ #: admin/templates/fees-addoredit.tpl.php:82
1822
+ msgctxt "fees admin"
1823
+ msgid "Number of images allowed"
1824
+ msgstr "عدد الصور المسموح بها"
1825
+
1826
+ #: admin/templates/fees-addoredit.tpl.php:94
1827
+ msgctxt "fees admin"
1828
+ msgid "Is featured listing/sticky?"
1829
+ msgstr "هذا إعلان مميز/مثبت"
1830
+
1831
+ #: admin/templates/fees-addoredit.tpl.php:102
1832
+ msgctxt "fees admin"
1833
+ msgid ""
1834
+ "This floats the listing to the top of search results and browsing the directory "
1835
+ "when the user buys this plan."
1836
+ msgstr ""
1837
+ "هذا يظهر الإعلان أعلى نتائج البحث وأثناء تصفح الدليل عندما يشتري المستخدم هذه "
1838
+ "الخطة."
1839
+
1840
+ #: admin/templates/fees-addoredit.tpl.php:107
1841
+ msgctxt "fees admin"
1842
+ msgid "Apply to category"
1843
+ msgstr "تنطبق على التصنيف"
1844
+
1845
+ #: admin/templates/fees-addoredit.tpl.php:111
1846
+ #: admin/templates/fees-addoredit.tpl.php:114
1847
+ msgctxt "fees admin"
1848
+ msgid "* All Categories *"
1849
+ msgstr "* جميع التصنيفات *"
1850
+
1851
+ #: admin/templates/fees-addoredit.tpl.php:134
1852
+ msgctxt "fees admin"
1853
+ msgid "Add Fee"
1854
+ msgstr "إضافة رسم"
1855
+
1856
+ #: admin/templates/fees-addoredit.tpl.php:134
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
+ msgctxt "fees admin"
1868
+ msgid "Are you sure you want to disable the \"%s\" fee?"
1869
+ msgstr "هل أنت متأكد من أنك تريد تعطيل الرسم \"%s\"؟"
1870
+
1871
+ #: admin/templates/fees-confirm-delete.tpl.php:9
1872
+ msgctxt "fees admin"
1873
+ msgid "Are you sure you want to delete the \"%s\" fee?"
1874
+ msgstr "هل أنت متأكد من أنك تريد حذف رسم \"%s\"؟"
1875
+
1876
+ #: admin/templates/fees-confirm-delete.tpl.php:16
1877
+ msgctxt "fee admin"
1878
+ msgid "Disable Fee"
1879
+ msgstr "تعطيل الرسم"
1880
+
1881
+ #: admin/templates/fees-confirm-delete.tpl.php:16
1882
+ msgctxt "fee admin"
1883
+ msgid "Delete Fee"
1884
+ msgstr "حذف الرسم"
1885
+
1886
+ #: admin/templates/fees.tpl.php:3
1887
+ msgctxt "fees admin"
1888
+ msgid "Add New Listing Fee"
1889
+ msgstr "إضافة رسم إعلان جديد"
1890
+
1891
+ #: admin/templates/fees.tpl.php:10
1892
+ msgctxt "fees admin"
1893
+ msgid "Payments are currently turned off."
1894
+ msgstr "نظام الدفع متوقف حاليا."
1895
+
1896
+ #: admin/templates/fees.tpl.php:13
1897
+ msgctxt "fees admin"
1898
+ msgid ""
1899
+ "To manage fees you need to go to the <a>Manage Options - Payment</a> page and "
1900
+ "check the box next to 'Turn On Payments' under 'Payment Settings'."
1901
+ msgstr ""
1902
+ "لإدارة الرسوم أنت بحاجة للذهاب إلى صفحة <a>إدارة الخيارات - الدفع</a> وحدد المربع "
1903
+ "بجوار 'تشغيل الدفعات' تحت 'إعدادات الدفع'."
1904
+
1905
+ #: admin/templates/fees.tpl.php:24
1906
+ msgctxt "fees admin"
1907
+ msgid "Order fees on the frontend by:"
1908
+ msgstr "رسوم الترتيب على الواجهة بواسطة:"
1909
+
1910
+ #: admin/templates/fees.tpl.php:32
1911
+ msgctxt "fees admin"
1912
+ msgid "↑ Ascending"
1913
+ msgstr "↑ تصاعدي"
1914
+
1915
+ #: admin/templates/fees.tpl.php:32
1916
+ msgctxt "fees admin"
1917
+ msgid "↓ Descending"
1918
+ msgstr "↓ تنازلي"
1919
+
1920
+ #: admin/templates/fees.tpl.php:38
1921
+ msgctxt "fees admin"
1922
+ msgid "Drag and drop to re-order fees."
1923
+ msgstr "سحب وإسقاط لإعادة ترتيب الرسوم."
1924
+
1925
+ #: admin/templates/fees.tpl.php:54
1926
+ msgctxt "fees admin"
1927
+ msgid ""
1928
+ "These are all of the fee plans displayed to the user when they place a listing. "
1929
+ "Your current mode of \"%s\" restricts what you see here. Those on the <a>Not "
1930
+ "Available</a> filter will become active when you change the payment mode."
1931
+ msgstr ""
1932
+ "هذه جميع خطط الرسوم المعروضة للمستخدم عندما يضع إعلانا. الوضع الحالي الخاص بك هو "
1933
+ "\"%s\" يحصر ما تراه هنا. بالنسبة لتلك التي في عامل التصفية <a>غير متوفرة</a> سوف "
1934
+ "تصبح مفعلة عندما تقوم بتغيير وضع الدفع."
1935
+
1936
+ #: admin/templates/fees.tpl.php:57 admin/templates/fees.tpl.php:63
1937
+ #: admin/templates/fees.tpl.php:77
1938
+ msgctxt "fees admin"
1939
+ msgid "Paid"
1940
+ msgstr "تم الدفع"
1941
+
1942
+ #: admin/templates/fees.tpl.php:57 admin/templates/fees.tpl.php:63
1943
+ #: admin/templates/fees.tpl.php:77
1944
+ msgctxt "fees admin"
1945
+ msgid "Free"
1946
+ msgstr "مجاني"
1947
+
1948
+ #: admin/templates/fees.tpl.php:60
1949
+ msgctxt "fees admin"
1950
+ msgid ""
1951
+ "These are all of the fee plans that aren't available because you're in \"%s\" "
1952
+ "mode. Those on the Active filter will become Not Available when you change the "
1953
+ "payment mode."
1954
+ msgstr ""
1955
+ "هذه كلها من خطط الرسوم التي لم تكن متوفرة لأنك في وضع \"%s\". تلك المتعلقة "
1956
+ "بالتصفية المفعلة سوف تصبح \"غير متوفرة\" عندما تقوم بتغيير وضع الدفع."
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
+ "تقوم بفعيلها."
1966
+
1967
+ #: admin/templates/fees.tpl.php:74
1968
+ msgctxt "fees admin"
1969
+ msgid ""
1970
+ "These are all of the fee plans you have configured. Not all of them are available "
1971
+ "for the current mode (currently set to \"%s\"). To see the fee plans for this mode "
1972
+ "click <a>Active</a>."
1973
+ msgstr ""
1974
+ "هذه كلها من خطط الرسوم التي قمت بإعدادها. ليست كلها متاحة للوضع الحالي (حاليا "
1975
+ "الوضع في \"%s\"). لمشاهدة خطط الرسوم لهذا الوضع إضغط <a>مفعل</a>."
1976
+
1977
+ #: admin/templates/fees.tpl.php:89 admin/templates/sidebar.tpl.php:13
1978
+ msgctxt "admin sidebar"
1979
+ msgid "PayPal Gateway Module"
1980
+ msgstr "وحدة البوابة باي بال (PayPal)"
1981
+
1982
+ #: admin/templates/fees.tpl.php:90 admin/templates/sidebar.tpl.php:14
1983
+ msgctxt "admin sidebar"
1984
+ msgid "2Checkout Gateway Module"
1985
+ msgstr "وحدة البوابة توتشيك أوت (2Checkout)"
1986
+
1987
+ #: admin/templates/fees.tpl.php:91 admin/templates/sidebar.tpl.php:5
1988
+ msgctxt "admin sidebar"
1989
+ msgid "PayFast Payment Module"
1990
+ msgstr "وحدة الدفع بايفاست (PayFast)"
1991
+
1992
+ #: admin/templates/fees.tpl.php:92 admin/templates/sidebar.tpl.php:6
1993
+ msgctxt "admin sidebar"
1994
+ msgid "Stripe Payment Module"
1995
+ msgstr "وحدة الدفع سترايب (Stripe)"
1996
+
1997
+ #: admin/templates/fees.tpl.php:102
1998
+ msgctxt "admin templates"
1999
+ msgid ""
2000
+ "It does not appear you have any of the payment gateway modules enabled. Either "
2001
+ "<a>enable the default Authorize.net gateway</a> with your account info, or "
2002
+ "purchase a different payment gateway module in order to charge a fee for listings. "
2003
+ "To purchase additional payment gateways use the buttons below or visit %s."
2004
+ msgstr ""
2005
+ "لا يظهر لديك أي من وحدات بوابات الدفع مفعلة. إما <a>فعل بوابة Authorize.net "
2006
+ "الافتراضية</a> مع معلومات الحساب الخاص بك، أو قم بشراء وحدة بوابة دفع مختلفة من "
2007
+ "أجل فرض رسوم على إضافة الإعلانات. لشراء بوابة دفع إضافية استخدام الأزرار الموجودة "
2008
+ "أدناه، أو قم بزيارة %s."
2009
+
2010
+ #: admin/templates/fees.tpl.php:118
2011
+ msgctxt "admin templates"
2012
+ msgid "Already installed."
2013
+ msgstr "مُركب مسبقا"
2014
+
2015
+ #: admin/templates/fees.tpl.php:123
2016
+ msgctxt "admin templates"
2017
+ msgid ""
2018
+ "You can buy the <a>%s</a> to add <a>%s</a> as a payment option for your users."
2019
+ msgstr "يمكنك شراء <a>%s</a> لإضافة <a>%s</a> كخيار دفع للمستخدمين."
2020
+
2021
+ #: admin/templates/form-fields-addoredit.tpl.php:1
2022
+ msgctxt "form-fields admin"
2023
+ msgid "Add Form Field"
2024
+ msgstr "أضف حقل الاستمارة"
2025
+
2026
+ #: admin/templates/form-fields-addoredit.tpl.php:14
2027
+ msgctxt "form-fields admin"
2028
+ msgid "Field Association"
2029
+ msgstr "رابطة الحقل"
2030
+
2031
+ #: admin/templates/form-fields-addoredit.tpl.php:36
2032
+ msgctxt "form-fields admin"
2033
+ msgid "Field Type"
2034
+ msgstr "نوع الحقل"
2035
+
2036
+ #: admin/templates/form-fields-addoredit.tpl.php:60
2037
+ msgctxt "form-fields admin"
2038
+ msgid "Field Label"
2039
+ msgstr "تسمية الحقل"
2040
+
2041
+ #: admin/templates/form-fields-addoredit.tpl.php:70
2042
+ msgctxt "form-fields admin"
2043
+ msgid "Field description"
2044
+ msgstr "وصف الحقل"
2045
+
2046
+ #: admin/templates/form-fields-addoredit.tpl.php:87
2047
+ msgctxt "form-fields admin"
2048
+ msgid "Field-specific settings"
2049
+ msgstr "إعدادات حقل خاص"
2050
+
2051
+ #: admin/templates/form-fields-addoredit.tpl.php:96
2052
+ msgctxt "form-fields admin"
2053
+ msgid "Field validation options"
2054
+ msgstr "خيارات التحقق من صحة الحقل"
2055
+
2056
+ #: admin/templates/form-fields-addoredit.tpl.php:100
2057
+ msgctxt "form-fields admin"
2058
+ msgid "Field Validator"
2059
+ msgstr "مصادقة الحقول"
2060
+
2061
+ #: admin/templates/form-fields-addoredit.tpl.php:104
2062
+ msgctxt "form-fields admin"
2063
+ msgid "No validation"
2064
+ msgstr "لا يوجد تحقق من الصحة"
2065
+
2066
+ #: admin/templates/form-fields-addoredit.tpl.php:116
2067
+ msgctxt "form-fields admin"
2068
+ msgid "Is field required?"
2069
+ msgstr "هل هذا الحقل مطلوب؟"
2070
+
2071
+ #: admin/templates/form-fields-addoredit.tpl.php:122
2072
+ msgctxt "form-fields admin"
2073
+ msgid "This field is required."
2074
+ msgstr "هذا الحقل مطلوب."
2075
+
2076
+ #: admin/templates/form-fields-addoredit.tpl.php:130
2077
+ msgctxt "form-fields admin"
2078
+ msgid "Field display options"
2079
+ msgstr "خيارات عرض الحقل"
2080
+
2081
+ #: admin/templates/form-fields-addoredit.tpl.php:134
2082
+ msgctxt "form-fields admin"
2083
+ msgid "Show this value in excerpt view?"
2084
+ msgstr "إظهار هذه القيمة في مشاهدة المقتطفات؟"
2085
+
2086
+ #: admin/templates/form-fields-addoredit.tpl.php:140
2087
+ msgctxt "form-fields admin"
2088
+ msgid "Display this value in post excerpt view."
2089
+ msgstr "عرض هذه القيمة في مشاهدة مقتطفات المقالة."
2090
+
2091
+ #: admin/templates/form-fields-addoredit.tpl.php:146
2092
+ msgctxt "form-fields admin"
2093
+ msgid "Show this value in listing view?"
2094
+ msgstr "إظهار هذه القيمة في مشاهدة الإعلان؟"
2095
+
2096
+ #: admin/templates/form-fields-addoredit.tpl.php:152
2097
+ msgctxt "form-fields admin"
2098
+ msgid "Display this value in the listing view."
2099
+ msgstr "عرض هذه القيمة في مشاهدة الإعلان."
2100
+
2101
+ #: admin/templates/form-fields-addoredit.tpl.php:158
2102
+ msgctxt "form-fields admin"
2103
+ msgid "Include this field in the search form?"
2104
+ msgstr "تضمين هذا الحقل في نموذج البحث؟"
2105
+
2106
+ #: admin/templates/form-fields-addoredit.tpl.php:164
2107
+ msgctxt "form-fields admin"
2108
+ msgid "Include this field in the search form."
2109
+ msgstr "تضمين هذا الحقل في نموذج البحث."
2110
+
2111
+ #: admin/templates/form-fields-addoredit.tpl.php:170
2112
+ msgctxt "form-fields admin"
2113
+ msgid "Hide this field's label?"
2114
+ msgstr "إخفاء تسمية هذا الحقل؟"
2115
+
2116
+ #: admin/templates/form-fields-addoredit.tpl.php:176
2117
+ msgctxt "form-fields admin"
2118
+ msgid "Hide this field's label when displaying it."
2119
+ msgstr "إخفاء تسمية هذا الحقل عند عرضه."
2120
+
2121
+ #: admin/templates/form-fields-addoredit.tpl.php:183
2122
+ msgctxt "form-fields admin"
2123
+ msgid "Update Field"
2124
+ msgstr "تحديث الحقل"
2125
+
2126
+ #: admin/templates/form-fields-addoredit.tpl.php:185
2127
+ msgctxt "form-fields admin"
2128
+ msgid "Add Field"
2129
+ msgstr "إضافة حقل"
2130
+
2131
+ #: admin/templates/form-fields-confirm-delete.tpl.php:2
2132
+ msgctxt "form-fields admin"
2133
+ msgid "Delete Form Field"
2134
+ msgstr "حذف حقل النموذج"
2135
+
2136
+ #: admin/templates/form-fields-confirm-delete.tpl.php:6
2137
+ msgctxt "form-fields admin"
2138
+ msgid "Are you sure you want to delete the \"%s\" field?"
2139
+ msgstr "هل أنت متأكد من أنك تريد حذف الحقل \"%s\"؟"
2140
+
2141
+ #: admin/templates/form-fields-confirm-delete.tpl.php:12
2142
+ msgctxt "form-fields admin"
2143
+ msgid "Delete Field"
2144
+ msgstr "حذف حقل"
2145
+
2146
+ #: admin/templates/form-fields-tags.tpl.php:5
2147
+ msgctxt "form-fields admin"
2148
+ msgid "-- None --"
2149
+ msgstr "-- إختر --"
2150
+
2151
+ #: admin/templates/form-fields-tags.tpl.php:14
2152
+ msgctxt "form-fields admin"
2153
+ msgid "Theme Tags"
2154
+ msgstr "وسوم القالب"
2155
+
2156
+ #: admin/templates/form-fields-tags.tpl.php:19
2157
+ msgctxt "form-fields admin"
2158
+ msgid ""
2159
+ "Before you create fields, make sure you've mapped all of your EXISTING ones first, "
2160
+ "otherwise you'll appear to be \"missing data\" on your listings."
2161
+ msgstr ""
2162
+ "قبل إنشاء الحقول، تأكد من أنك قمت بتعيين كل الموجودين مسبقا، وإلا سوف تبدو "
2163
+ "\"بيانات مفقودة\" في إعلاناتك."
2164
+
2165
+ #: admin/templates/form-fields-tags.tpl.php:22
2166
+ msgctxt "form-fields admin"
2167
+ msgid "Create Missing Fields"
2168
+ msgstr "إنشاء الحقول المفقودة"
2169
+
2170
+ #: admin/templates/form-fields-tags.tpl.php:30
2171
+ msgctxt "form-fields admin"
2172
+ msgid "Field Tag"
2173
+ msgstr "وسم الحقل"
2174
+
2175
+ #: admin/templates/form-fields-tags.tpl.php:31
2176
+ msgctxt "form-fields admin"
2177
+ msgid "Field"
2178
+ msgstr "حقل"
2179
+
2180
+ #: admin/templates/form-fields.tpl.php:3
2181
+ msgctxt "form-fields admin"
2182
+ msgid "Add New Form Field"
2183
+ msgstr "إضافة حقل نموذج جديد"
2184
+
2185
+ #: admin/templates/form-fields.tpl.php:4
2186
+ msgctxt "form-fields admin"
2187
+ msgid "Preview Form"
2188
+ msgstr "معاينة الاستمارة"
2189
+
2190
+ #: admin/templates/form-fields.tpl.php:6
2191
+ msgctxt "form-fields admin"
2192
+ msgid "Manage Theme Tags"
2193
+ msgstr "إدارة وسوم القالب"
2194
+
2195
+ #: admin/templates/form-fields.tpl.php:12
2196
+ msgctxt "form-fields admin"
2197
+ msgid ""
2198
+ "Here, you can create new fields for your listings, edit or delete existing ones, "
2199
+ "change the order and visibility of the fields as well as configure special options "
2200
+ "for them."
2201
+ msgstr ""
2202
+ "هنا، يمكنك إنشاء حقول جديدة لإعلاناتك، تحرير أو حذف الموجود منها، وتغيير ترتيب "
2203
+ "وإبراز الحقول فضلا عن إعداد خيارات خاصة لهم."
2204
+
2205
+ #: admin/templates/form-fields.tpl.php:18
2206
+ msgctxt "form-fields admin"
2207
+ msgid "Please see the <a>Form Fields documentation</a> for more details."
2208
+ msgstr "المرجو مراجعة <a>وثائق حقول الاستمارة</a> للحصول على مزيد من التفاصيل."
2209
+
2210
+ #. Plugin Name of the plugin/theme
2211
+ #: admin/templates/header.tpl.php:4
2212
+ msgid "Business Directory Plugin"
2213
+ msgstr "Business Directory Plugin"
2214
+
2215
+ #: admin/templates/home.tpl.php:4
2216
+ msgctxt "admin home"
2217
+ msgid "Welcome to Business Directory Plugin. You are using %s."
2218
+ msgstr "مرحبا بكم في إضافة دليل الأعمال. أنت تستخدم %s."
2219
+
2220
+ #: admin/templates/home.tpl.php:5
2221
+ msgctxt "admin home"
2222
+ msgid ""
2223
+ "Thanks for choosing us. There's a lot you probably want to get done, so let's "
2224
+ "jump right in!"
2225
+ msgstr "شكرا لاختيارك لنا. هناك ربما الكثير الذي تريد القيام به، لذلك هيا بنا!"
2226
+
2227
+ #: admin/templates/home.tpl.php:11
2228
+ msgctxt "admin home"
2229
+ msgid ""
2230
+ "Our complete documentation is <a>here</a> which we encourage you to use while "
2231
+ "setting things up."
2232
+ msgstr "لدينا وثائق شرح كاملة <a>هنا</a> ونشجعك على استخدامها أثناء إعداد الإضافة."
2233
+
2234
+ #: admin/templates/home.tpl.php:14
2235
+ msgctxt "admin home"
2236
+ msgid ""
2237
+ "We have some quick-start scenarios that you will find useful regarding setup and "
2238
+ "configuration <a>here</a>."
2239
+ msgstr ""
2240
+ "لدينا بعض سيناريوهات البداية السريعة التي سوف تجدها مفيدة فيما يتعلق بالتثبيت "
2241
+ "والإعداد<a> هنا</a>."
2242
+
2243
+ #: admin/templates/home.tpl.php:18
2244
+ msgctxt "admin home"
2245
+ msgid ""
2246
+ "If you have questions, please post a comment on <a>support forum</a> and we'll "
2247
+ "answer it within 24 hours most days."
2248
+ msgstr ""
2249
+ "إذا كانت لديك أسئلة، المرجو نشر تعليق في <a>منتدى الدعم</a> وسوف نقوم بالإجابة "
2250
+ "عليه في غضون 24 ساعة معظم الأيام."
2251
+
2252
+ #: admin/templates/home.tpl.php:25
2253
+ msgid "Configure/Manage Options"
2254
+ msgstr "خيارات الإعداد/الإدارة"
2255
+
2256
+ #: admin/templates/home.tpl.php:28
2257
+ msgid "Setup/Manage Form Fields"
2258
+ msgstr "حقول استمارة التثبيت/الإدارة"
2259
+
2260
+ #: admin/templates/home.tpl.php:31
2261
+ msgid "Setup/Manage Fees"
2262
+ msgstr "إعداد/إدارة الرسوم"
2263
+
2264
+ #: admin/templates/home.tpl.php:37
2265
+ msgid "Featured Listings Pending Upgrade"
2266
+ msgstr "إعلانات مميزة تنتظر الترقية "
2267
+
2268
+ #: admin/templates/home.tpl.php:44
2269
+ msgid "Manage Paid Listings"
2270
+ msgstr "إدارة الإعلانات المدفوعة"
2271
+
2272
+ #: admin/templates/listing-change-fee.tpl.php:3
2273
+ msgctxt "admin listing fee"
2274
+ msgid "Listing Fee Selection"
2275
+ msgstr "تحديد رسوم الإعلان"
2276
+
2277
+ #: admin/templates/listing-change-fee.tpl.php:5
2278
+ msgctxt "admin listing fee"
2279
+ msgid "Select a fee plan to be used for this listing in the \"%s\" category."
2280
+ msgstr "حدد خطة رسوم لاستخدامها لهذا الإعلان في تصنيف \"%s\"."
2281
+
2282
+ #: admin/templates/listing-change-fee.tpl.php:11
2283
+ msgctxt "admin listing fee"
2284
+ msgid "Current"
2285
+ msgstr "الحالي"
2286
+
2287
+ #: admin/templates/listing-change-fee.tpl.php:14
2288
+ msgctxt "admin listing fee"
2289
+ msgid "Use this fee"
2290
+ msgstr "استخدام هذه الرسوم"
2291
+
2292
+ #: admin/templates/listing-change-fee.tpl.php:21
2293
+ msgctxt "admin infometabox"
2294
+ msgid "%d image"
2295
+ msgid_plural "%d images"
2296
+ msgstr[0] "%d صورة"
2297
+ msgstr[1] "%d صورة"
2298
+ msgstr[2] "%d صورتين"
2299
+ msgstr[3] "%d صور"
2300
+ msgstr[4] "%d صور"
2301
+ msgstr[5] "%d صور"
2302
+
2303
+ #: admin/templates/listing-change-fee.tpl.php:23
2304
+ msgctxt "admin infometabox"
2305
+ msgid "Listing never expires"
2306
+ msgstr "الإعلان لا ينتهي"
2307
+
2308
+ #: admin/templates/listing-change-fee.tpl.php:25
2309
+ msgctxt "admin infometabox"
2310
+ msgid "%d day"
2311
+ msgid_plural "%d days"
2312
+ msgstr[0] "%d jour"
2313
+ msgstr[1] "%d jours"
2314
+ msgstr[2] ""
2315
+ msgstr[3] ""
2316
+ msgstr[4] ""
2317
+ msgstr[5] ""
2318
+
2319
+ #: admin/templates/listing-metabox-categories.tpl.php:22
2320
+ msgctxt "admin infometabox"
2321
+ msgid "No categories on this listing. Please add one to associate fees."
2322
+ msgstr "لا توجد تصنيفات لهذا الإعلان. المرجو إضافة واحد لربط الرسوم."
2323
+
2324
+ #: admin/templates/listing-metabox-categories.tpl.php:29
2325
+ msgctxt "admin infometabox"
2326
+ msgid "(recurring)"
2327
+ msgstr "(متكرر)"
2328
+
2329
+ #: admin/templates/listing-metabox-categories.tpl.php:34
2330
+ msgctxt "admin infometabox"
2331
+ msgid "Expired"
2332
+ msgstr "منتهي الصلاحية"
2333
+
2334
+ #: admin/templates/listing-metabox-categories.tpl.php:37
2335
+ msgctxt "admin infometabox"
2336
+ msgid "Payment Pending"
2337
+ msgstr "في انتظار الدفع"
2338
+
2339
+ #: admin/templates/listing-metabox-categories.tpl.php:41
2340
+ msgctxt "admin infometabox"
2341
+ msgid "OK"
2342
+ msgstr "حسنا"
2343
+
2344
+ #: admin/templates/listing-metabox-categories.tpl.php:49
2345
+ msgctxt "admin infometabox"
2346
+ msgid "Fee"
2347
+ msgstr "الرسم"
2348
+
2349
+ #: admin/templates/listing-metabox-categories.tpl.php:54
2350
+ msgctxt "admin infometabox"
2351
+ msgid "# Images"
2352
+ msgstr "# الصور"
2353
+
2354
+ #: admin/templates/listing-metabox-categories.tpl.php:62
2355
+ msgctxt "admin infometabox"
2356
+ msgid "Expired on"
2357
+ msgstr "منتهي الصلاحية في"
2358
+
2359
+ #: admin/templates/listing-metabox-categories.tpl.php:64
2360
+ msgctxt "admin infometabox"
2361
+ msgid "Expires on"
2362
+ msgstr "ستنتهي الصلاحية في"
2363
+
2364
+ #: admin/templates/listing-metabox-categories.tpl.php:72
2365
+ msgctxt "admin infometabox"
2366
+ msgid "Click to manually change expiration date."
2367
+ msgstr "إضغط لتغيير تاريخ انتهاء الصلاحية يدويا."
2368
+
2369
+ #: admin/templates/listing-metabox-categories.tpl.php:75
2370
+ msgctxt "admin infometabox"
2371
+ msgid "Never expires"
2372
+ msgstr "لا ينتهي"
2373
+
2374
+ #: admin/templates/listing-metabox-categories.tpl.php:75
2375
+ msgctxt "admin infometabox"
2376
+ msgid "Edit"
2377
+ msgstr "تحرير"
2378
+
2379
+ #: admin/templates/listing-metabox-categories.tpl.php:87
2380
+ msgctxt "admin infometabox"
2381
+ msgid "See payment info"
2382
+ msgstr "شاهد معلومات الدفع"
2383
+
2384
+ #: admin/templates/listing-metabox-categories.tpl.php:92
2385
+ msgctxt "admin infometabox"
2386
+ msgid "Renewal URL (copy & paste)"
2387
+ msgstr "تجديد عنوان URL (نسخة & لصق)"
2388
+
2389
+ #: admin/templates/listing-metabox-categories.tpl.php:92
2390
+ msgctxt "admin infometabox"
2391
+ msgid "Show renewal link"
2392
+ msgstr "إظهار رابط التجديد"
2393
+
2394
+ #: admin/templates/listing-metabox-categories.tpl.php:99
2395
+ msgctxt "admin infometabox"
2396
+ msgid "Send renewal e-mail to user"
2397
+ msgstr "إرسال رسالة بريد إلكتروني بخصوص التجديد للمستخدم"
2398
+
2399
+ #: admin/templates/listing-metabox-categories.tpl.php:107
2400
+ msgctxt "admin infometabox"
2401
+ msgid "Renew manually..."
2402
+ msgstr "تجديد يدويا..."
2403
+
2404
+ #: admin/templates/listing-metabox-categories.tpl.php:107
2405
+ msgctxt "admin infometabox"
2406
+ msgid "Change fee..."
2407
+ msgstr "تغيير الرسوم..."
2408
+
2409
+ #: admin/templates/listing-metabox-categories.tpl.php:115
2410
+ msgctxt "admin infometabox"
2411
+ msgid "Remove category"
2412
+ msgstr "إزالة التصنيف"
2413
+
2414
+ #: admin/templates/listing-metabox-fees.tpl.php:1
2415
+ msgctxt "admin infometabox"
2416
+ msgid "Fee Information"
2417
+ msgstr "معلومات الرسوم"
2418
+
2419
+ #: admin/templates/listing-metabox-fees.tpl.php:3
2420
+ msgctxt "admin infometabox"
2421
+ msgid "Payment Mode:"
2422
+ msgstr "طريقة الدفع:"
2423
+
2424
+ #: admin/templates/listing-metabox-fees.tpl.php:3
2425
+ msgctxt "admin infometabox"
2426
+ msgid "Paid"
2427
+ msgstr "تم الدفع"
2428
+
2429
+ #: admin/templates/listing-metabox-fees.tpl.php:3
2430
+ msgctxt "admin infometabox"
2431
+ msgid "Free"
2432
+ msgstr "مجاني"
2433
+
2434
+ #: admin/templates/listing-metabox-fees.tpl.php:6
2435
+ msgctxt "admin infometabox"
2436
+ msgid "To change your payment mode, go to <a href=\"%s\">Payment Settings</a>."
2437
+ msgstr "لتغيير طريقة الدفع الخاصة بك، انتقل إلى <a href=\"%s\">إعدادات الدفع</a>."
2438
+
2439
+ #: admin/templates/listing-metabox-fees.tpl.php:12
2440
+ msgctxt "admin infometabox"
2441
+ msgid ""
2442
+ "Note: In Free mode, the fee plans will always be set to \"Free Listing\" below."
2443
+ msgstr ""
2444
+ "ملاحظة: في الوضع المجاني، رسم الخطط سيكون دائما معين إلى \"إعلان مجاني\" أدناه."
2445
+
2446
+ #: admin/templates/listing-metabox-fees.tpl.php:22
2447
+ #: admin/templates/listing-metabox-feesummary.tpl.php:12
2448
+ msgctxt "admin infometabox"
2449
+ msgid "Renew listing in all expired categories"
2450
+ msgstr "تجديد قائمة في جميع فئات منتهية الصلاحية"
2451
+
2452
+ #: admin/templates/listing-metabox-feesummary.tpl.php:1
2453
+ msgctxt "admin infometabox"
2454
+ msgid "Categories for this listing"
2455
+ msgstr "التصنيفات لهذا الإعلان"
2456
+
2457
+ #: admin/templates/listing-metabox-transactions.tpl.php:3
2458
+ msgctxt "admin infometabox"
2459
+ msgid "Initial Payment"
2460
+ msgstr "الدفعة الأولية"
2461
+
2462
+ #: admin/templates/listing-metabox-transactions.tpl.php:4
2463
+ msgctxt "admin infometabox"
2464
+ msgid "Listing Edit"
2465
+ msgstr "تحرير الإعلان"
2466
+
2467
+ #: admin/templates/listing-metabox-transactions.tpl.php:5
2468
+ msgctxt "admin infometabox"
2469
+ msgid "Listing Renewal"
2470
+ msgstr "تجديد الإعلان"
2471
+
2472
+ #: admin/templates/listing-metabox-transactions.tpl.php:6
2473
+ msgctxt "admin infometabox"
2474
+ msgid "Upgrade to sticky"
2475
+ msgstr "الترقية إلى مثبت"
2476
+
2477
+ #: admin/templates/listing-metabox-transactions.tpl.php:10
2478
+ msgctxt "admin"
2479
+ msgid "Payments History"
2480
+ msgstr "سجل المدفوعات"
2481
+
2482
+ #: admin/templates/listing-metabox-transactions.tpl.php:12
2483
+ msgctxt "admin listing metabox"
2484
+ msgid "Click a payment to see the details or approve/reject the transaction."
2485
+ msgstr "إضغط فوق دفع للاطلاع على تفاصيل أو الموافقة على/رفض المعاملة."
2486
+
2487
+ #: admin/templates/listing-metabox-transactions.tpl.php:16
2488
+ msgctxt "listing metabox"
2489
+ msgid "There are no transactions associated to this listing."
2490
+ msgstr "لا توجد معاملات مرتبطة بهذا الإعلان."
2491
+
2492
+ #: admin/templates/payment-details.tpl.php:7
2493
+ msgctxt "admin payments"
2494
+ msgid "Payment Details"
2495
+ msgstr "تفاصيل الدفع"
2496
+
2497
+ #: admin/templates/payment-details.tpl.php:9
2498
+ msgctxt "admin payments"
2499
+ msgid "Payment #%d"
2500
+ msgstr "الدفع #%d"
2501
+
2502
+ #: admin/templates/payment-details.tpl.php:16
2503
+ msgctxt "admin payments"
2504
+ msgid "Created on"
2505
+ msgstr "تاريخ الإنشاء"
2506
+
2507
+ #: admin/templates/payment-details.tpl.php:19
2508
+ msgctxt "admin infometabox"
2509
+ msgid "Amount"
2510
+ msgstr "قدر"
2511
+
2512
+ #: admin/templates/payment-details.tpl.php:22
2513
+ msgctxt "admin infometabox"
2514
+ msgid "Gateway"
2515
+ msgstr "بوابة"
2516
+
2517
+ #: admin/templates/payment-details.tpl.php:26
2518
+ msgctxt "admin infometabox"
2519
+ msgid "Processed on"
2520
+ msgstr "تمت معالجته في"
2521
+
2522
+ #: admin/templates/payment-details.tpl.php:28
2523
+ msgctxt "admin infometabox"
2524
+ msgid "Processed by"
2525
+ msgstr "تمت معالجته بواسطة"
2526
+
2527
+ #: admin/templates/payment-details.tpl.php:41
2528
+ msgctxt "admin payments"
2529
+ msgid "Approve payment"
2530
+ msgstr "الموافقة على الدفع"
2531
+
2532
+ #: admin/templates/payment-details.tpl.php:46
2533
+ msgctxt "admin payments"
2534
+ msgid "Reject payment"
2535
+ msgstr "رفض الدفع"
2536
+
2537
+ #: admin/templates/settings-reset.tpl.php:2
2538
+ msgid "Business Directory - Reset Defaults"
2539
+ msgstr "دليل الأعمال - إعادة تعيين الافتراضي"
2540
+
2541
+ #: admin/templates/settings-reset.tpl.php:4
2542
+ msgctxt "settings"
2543
+ msgid "← Return to \"Manage Options\""
2544
+ msgstr "← العودة إلى \"إدارة الخيارات\""
2545
+
2546
+ #: admin/templates/settings-reset.tpl.php:10
2547
+ msgid ""
2548
+ "Use this option if you want to go back to the original factory settings for BD."
2549
+ msgstr ""
2550
+ "استخدم هذا الخيار إذا كنت تريد العودة إلى إعدادات المصنع الأصلية لدليل الأعمال."
2551
+
2552
+ #: admin/templates/settings-reset.tpl.php:11
2553
+ msgid "Please note that all of your existing settings will be lost."
2554
+ msgstr "يرجى ملاحظة أنه سيتم فقدان كافة الإعدادات الحالية الخاصة بك."
2555
+
2556
+ #: admin/templates/settings-reset.tpl.php:17
2557
+ msgid "Reset Defaults"
2558
+ msgstr "إعادة تعيين الوضع الافتراضي"
2559
+
2560
+ #: admin/templates/settings.tpl.php:2
2561
+ msgid "Business Directory Settings"
2562
+ msgstr "إعدادات دليل الأعمال"
2563
+
2564
+ #: admin/templates/settings.tpl.php:4
2565
+ msgctxt "settings"
2566
+ msgid "Reset Defaults"
2567
+ msgstr "إعادة تعيين الوضع الافتراضي"
2568
+
2569
+ #: admin/templates/settings.tpl.php:22
2570
+ msgid "Settings updated."
2571
+ msgstr "تم تحديث الإعدادات"
2572
+
2573
+ #: admin/templates/sidebar.tpl.php:3
2574
+ msgctxt "admin sidebar"
2575
+ msgid "Discount Codes Module"
2576
+ msgstr "كود خصم الوحدة"
2577
+
2578
+ #: admin/templates/sidebar.tpl.php:4
2579
+ msgctxt "admin sidebar"
2580
+ msgid "Claim Listings Module"
2581
+ msgstr "المطالبة بوحدة الإعلانات"
2582
+
2583
+ #: admin/templates/sidebar.tpl.php:7
2584
+ msgctxt "admin sidebar"
2585
+ msgid "File Upload Module"
2586
+ msgstr "وحدة رفع الملفات"
2587
+
2588
+ #: admin/templates/sidebar.tpl.php:8
2589
+ msgctxt "admin sidebar"
2590
+ msgid "Featured Levels Module"
2591
+ msgstr "وحدة المستويات المميزة"
2592
+
2593
+ #: admin/templates/sidebar.tpl.php:9
2594
+ msgctxt "admin sidebar"
2595
+ msgid "ZIP Code Search Module"
2596
+ msgstr "وحدة البحث عن الرمز البريدي"
2597
+
2598
+ #: admin/templates/sidebar.tpl.php:10
2599
+ msgctxt "admin sidebar"
2600
+ msgid "Regions Module"
2601
+ msgstr "وحدة المناطق"
2602
+
2603
+ #: admin/templates/sidebar.tpl.php:11
2604
+ msgctxt "admin sidebar"
2605
+ msgid "Ratings Module"
2606
+ msgstr "وحدة التقييمات"
2607
+
2608
+ #: admin/templates/sidebar.tpl.php:12
2609
+ msgctxt "admin sidebar"
2610
+ msgid "Google Maps Module"
2611
+ msgstr "وحدة خرائط جوجل"
2612
+
2613
+ #: admin/templates/sidebar.tpl.php:18
2614
+ msgctxt "admin sidebar"
2615
+ msgid "Business Card Theme"
2616
+ msgstr "قالب Business Card"
2617
+
2618
+ #: admin/templates/sidebar.tpl.php:19
2619
+ msgctxt "admin sidebar"
2620
+ msgid "Mobile Compact Theme"
2621
+ msgstr "قالب Mobile Compact"
2622
+
2623
+ #: admin/templates/sidebar.tpl.php:20
2624
+ msgctxt "admin sidebar"
2625
+ msgid "Restaurant Theme"
2626
+ msgstr "قالب Restaurant"
2627
+
2628
+ #: admin/templates/sidebar.tpl.php:21
2629
+ msgctxt "admin sidebar"
2630
+ msgid "Tabbed Business Theme"
2631
+ msgstr "قالب Tabbed Business"
2632
+
2633
+ #: admin/templates/sidebar.tpl.php:22
2634
+ msgctxt "admin sidebar"
2635
+ msgid "Elegant Business Theme"
2636
+ msgstr "قالب Elegant Business"
2637
+
2638
+ #: admin/templates/sidebar.tpl.php:29
2639
+ msgctxt "admin sidebar"
2640
+ msgid "Like this plugin?"
2641
+ msgstr "هل أحببت هذه الإضافة؟"
2642
+
2643
+ #: admin/templates/sidebar.tpl.php:31
2644
+ msgctxt "admin sidebar"
2645
+ msgid "Why not do any or all of the following:"
2646
+ msgstr "لماذا لا تفعل واحدة أو الكل مما يلي:"
2647
+
2648
+ #: admin/templates/sidebar.tpl.php:33
2649
+ msgctxt "admin sidebar"
2650
+ msgid "Give it a good rating on WordPress.org."
2651
+ msgstr "إعطها تقييم جيد على WordPress.org."
2652
+
2653
+ #: admin/templates/sidebar.tpl.php:34
2654
+ msgctxt "admin sidebar"
2655
+ msgid "Let other people know that it works with your WordPress setup."
2656
+ msgstr "دع الآخرين يعرفون أنه يعمل مع إعداد ووردبريس الخاص بك."
2657
+
2658
+ #: admin/templates/sidebar.tpl.php:35
2659
+ msgctxt "admin sidebar"
2660
+ msgid "Buy a Premium Module"
2661
+ msgstr "شراء وحدة ممتازة (Premium)"
2662
+
2663
+ #: admin/templates/sidebar.tpl.php:42
2664
+ msgctxt "admin sidebar"
2665
+ msgid "Get a Premium Module"
2666
+ msgstr "الحصول على وحدة ممتازة (Premium) "
2667
+
2668
+ #: admin/templates/sidebar.tpl.php:45 admin/templates/sidebar.tpl.php:61
2669
+ msgctxt "admin sidebar"
2670
+ msgid "best deal"
2671
+ msgstr "أفضل صفقة"
2672
+
2673
+ #: admin/templates/sidebar.tpl.php:45
2674
+ msgctxt "admin sidebar"
2675
+ msgid "Combo Pack"
2676
+ msgstr "حزمة Combo"
2677
+
2678
+ #: admin/templates/sidebar.tpl.php:45
2679
+ msgctxt "admin sidebar"
2680
+ msgid "(All Modules)"
2681
+ msgstr "(جميع الوحدات)"
2682
+
2683
+ #: admin/templates/sidebar.tpl.php:48 admin/templates/sidebar.tpl.php:64
2684
+ msgctxt "admin sidebar"
2685
+ msgid "new"
2686
+ msgstr "جديد"
2687
+
2688
+ #: admin/templates/sidebar.tpl.php:58
2689
+ msgctxt "admin sidebar"
2690
+ msgid "Get a Directory Theme"
2691
+ msgstr "أحصل على قالب الدليل"
2692
+
2693
+ #: admin/templates/sidebar.tpl.php:61
2694
+ msgctxt "admin sidebar"
2695
+ msgid "Theme Pack"
2696
+ msgstr "حزمة القوالب"
2697
+
2698
+ #: admin/templates/sidebar.tpl.php:61
2699
+ msgctxt "admin sidebar"
2700
+ msgid "(All Themes)"
2701
+ msgstr "(جميع القوالب)"
2702
+
2703
+ #: admin/templates/sidebar.tpl.php:74
2704
+ msgctxt "admin sidebar"
2705
+ msgid "Found a bug? Need support?"
2706
+ msgstr "العثور على خطأ؟ تحتاج إلى دعم؟"
2707
+
2708
+ #: admin/templates/sidebar.tpl.php:79
2709
+ msgctxt "admin sidebar"
2710
+ msgid "If you've found a bug or need support <a>visit the forums!</a>"
2711
+ msgstr "إذا كنت قد وجدت خطأ أو بحاجة إلى دعم <a>قم بزيارة المنتديات!</a>"
2712
+
2713
+ #: admin/templates/sidebar.tpl.php:82
2714
+ msgctxt "admin sidebar"
2715
+ msgid "Full plugin documentation"
2716
+ msgstr "الوثائق الكاملة المساعدة للإضافة"
2717
+
2718
+ #: admin/templates/sidebar.tpl.php:83
2719
+ msgctxt "admin sidebar"
2720
+ msgid "Quick Start Guide"
2721
+ msgstr "دليل بدء التشغيل السريع"
2722
+
2723
+ #: admin/templates/sidebar.tpl.php:84
2724
+ msgctxt "admin sidebar"
2725
+ msgid "Video Tutorials"
2726
+ msgstr "دروس الفيديو التعليمية"
2727
+
2728
+ #: admin/templates/sidebar.tpl.php:92
2729
+ msgctxt "admin sidebar"
2730
+ msgid "Installed Modules"
2731
+ msgstr "الوحدات المثبتة"
2732
+
2733
+ #: admin/templates/sidebar.tpl.php:103 admin/templates/sidebar.tpl.php:112
2734
+ msgctxt "admin sidebar"
2735
+ msgid "Installed"
2736
+ msgstr "تم التنصيب"
2737
+
2738
+ #: admin/templates/sidebar.tpl.php:105 admin/templates/sidebar.tpl.php:112
2739
+ msgctxt "admin sidebar"
2740
+ msgid "Not Installed"
2741
+ msgstr "غير منصب"
2742
+
2743
+ #: admin/templates/sidebar.tpl.php:111
2744
+ msgctxt "admin sidebar"
2745
+ msgid "Enhanced Categories Module"
2746
+ msgstr "وحدة التصنيفات المحسنة"
2747
+
2748
+ #: admin/templates/themes-delete-confirm.tpl.php:1
2749
+ #: admin/templates/themes-delete-confirm.tpl.php:13
2750
+ msgctxt "themes admin"
2751
+ msgid "Delete Directory Theme"
2752
+ msgstr "حذف قالب الدليل"
2753
+
2754
+ #: admin/templates/themes-delete-confirm.tpl.php:3
2755
+ msgctxt "themes admin"
2756
+ msgid "Are you sure you want to delete the directory theme \"%s\"?"
2757
+ msgstr "هل أنت متأكد من أنك تريد حذف قالب الدليل \"%s\"؟"
2758
+
2759
+ #: admin/templates/themes-delete-confirm.tpl.php:12
2760
+ msgctxt "themes admin"
2761
+ msgid "Cancel"
2762
+ msgstr "إلغاء"
2763
+
2764
+ #: admin/templates/themes-install.tpl.php:2 admin/templates/themes-licenses.tpl.php:3
2765
+ #: admin/templates/themes.tpl.php:3
2766
+ msgctxt "themes"
2767
+ msgid "Upload Directory Theme"
2768
+ msgstr "تحميل قالب الدليل"
2769
+
2770
+ #: admin/templates/themes-install.tpl.php:8
2771
+ msgctxt "themes"
2772
+ msgid "This is a theme or skin from %s and is NOT a regular WordPress theme."
2773
+ msgstr "هذا قالب أو الغلاف من %s وليس قالب ووردبريس عادي."
2774
+
2775
+ #: admin/templates/themes-install.tpl.php:21
2776
+ msgctxt "themes"
2777
+ msgid "BD Theme archive (ZIP file)"
2778
+ msgstr "أرشيف قالب دليل الأعمال (ملف مضغوط)"
2779
+
2780
+ #: admin/templates/themes-install.tpl.php:30
2781
+ msgctxt "themes"
2782
+ msgid "Begin Upload"
2783
+ msgstr "إبدأ الرفع"
2784
+
2785
+ #: admin/templates/themes-item.tpl.php:3
2786
+ msgctxt "themes"
2787
+ msgid "Active:"
2788
+ msgstr "مفعل"
2789
+
2790
+ #: admin/templates/themes-item.tpl.php:17
2791
+ msgctxt "themes"
2792
+ msgid "Activate"
2793
+ msgstr "قم بالتفعيل"
2794
+
2795
+ #: admin/templates/themes-item.tpl.php:35
2796
+ msgctxt "themes"
2797
+ msgid "Version:"
2798
+ msgstr "الإصدار:"
2799
+
2800
+ #: admin/templates/themes-item.tpl.php:38
2801
+ msgctxt "themes"
2802
+ msgid "Author:"
2803
+ msgstr "الكاتب:"
2804
+
2805
+ #: admin/templates/themes-licenses.tpl.php:24
2806
+ msgctxt "themes"
2807
+ msgid "Deactivate License"
2808
+ msgstr "تعطيل الترخيص"
2809
+
2810
+ #: admin/templates/themes-licenses.tpl.php:27
2811
+ msgctxt "themes"
2812
+ msgid "Deactivating license..."
2813
+ msgstr "ترخيص معطل"
2814
+
2815
+ #: admin/templates/themes-licenses.tpl.php:29
2816
+ msgctxt "themes"
2817
+ msgid "Activate License"
2818
+ msgstr "تفعيل الترخيص"
2819
+
2820
+ #: admin/templates/themes-licenses.tpl.php:30
2821
+ msgctxt "themes"
2822
+ msgid "Activating license..."
2823
+ msgstr "ترخيص مفعل"
2824
+
2825
+ #: admin/templates/themes.tpl.php:13
2826
+ msgctxt "themes"
2827
+ msgid ""
2828
+ "<a><b>Directory Themes</b></a> are pre-made templates for the <i>Business "
2829
+ "Directory Plugin</i> to change the look of the directory quickly and easily. We "
2830
+ "have a number of them available for purchase <a>here</a>."
2831
+ msgstr ""
2832
+ "<a><b>قوالب الدليل</b></a> هي قوالب مسبقة الصنع لـ<i>إضافة دليل الأعمال</i> لتغيير "
2833
+ "مظهر الدليل بسرعة وسهولة. لدينا عدد منهم للشراء <a>هنا</a>."
2834
+
2835
+ #: admin/templates/themes.tpl.php:14
2836
+ msgctxt "themes"
2837
+ msgid ""
2838
+ "They are <strong>different</strong> than your regular WordPress theme and they are "
2839
+ "<strong>not</strong> a replacement for WP themes either. They will change the look "
2840
+ "and feel of your business directory only."
2841
+ msgstr ""
2842
+ "إنها <strong>مختلفة</strong> عن قوالب ووردبريس العادية الخاصة بك، و <strong>ليست</"
2843
+ "strong> بديلاً عن قوالب ووردبريس. سوف تغير الشكل والمظهر لدليل الأعمال الخاص بك "
2844
+ "فقط."
2845
+
2846
+ #: admin/templates/transactions.tpl.php:2
2847
+ msgctxt "admin transactions"
2848
+ msgid "Transactions"
2849
+ msgstr "المعاملات المالية"
2850
+
2851
+ #: admin/templates/uninstall-capture-form.tpl.php:5
2852
+ msgctxt "uninstall"
2853
+ msgid "It doesn't work with my theme/plugins/site"
2854
+ msgstr "إنها لا تعمل مع القالب/الإضافات/الموقع"
2855
+
2856
+ #: admin/templates/uninstall-capture-form.tpl.php:6
2857
+ msgctxt "uninstall"
2858
+ msgid "I can't set it up/Too complicated"
2859
+ msgstr "لا يمكن ضبط إعداداته/معقد جدا"
2860
+
2861
+ #: admin/templates/uninstall-capture-form.tpl.php:7
2862
+ msgctxt "uninstall"
2863
+ msgid "Doesn't solve my problem"
2864
+ msgstr "لا يحل مشكلتي"
2865
+
2866
+ #: admin/templates/uninstall-capture-form.tpl.php:8
2867
+ msgctxt "uninstall"
2868
+ msgid "Don't need it anymore/Not using it"
2869
+ msgstr "لا حاجة لي به بعد الآن/لا أستخدامه"
2870
+
2871
+ #: admin/templates/uninstall-capture-form.tpl.php:9
2872
+ msgctxt "uninstall"
2873
+ msgid "Other"
2874
+ msgstr "أخرى"
2875
+
2876
+ #: admin/templates/uninstall-capture-form.tpl.php:16
2877
+ msgctxt "uninstall"
2878
+ msgid ""
2879
+ "We're sorry to see you leave. Could you take 10 seconds and answer one question "
2880
+ "for us to help us make the product better for everyone in the future?"
2881
+ msgstr ""
2882
+ "نحن آسفون لرؤيتكم تتركنا. يمكن أن تعطينا 10 ثوان من وقتك للإجابة على سؤال واحد "
2883
+ "لمساعدتنا على جعل المنتج أفضل للجميع في المستقبل؟"
2884
+
2885
+ #: admin/templates/uninstall-capture-form.tpl.php:19
2886
+ msgctxt "uninstall"
2887
+ msgid "Why are you deleting Business Directory Plugin?"
2888
+ msgstr "لماذا قمت بحذف إضافة دليل الأعمال؟"
2889
+
2890
+ #: admin/templates/uninstall-capture-form.tpl.php:29
2891
+ msgctxt "uninstall"
2892
+ msgid "Please tell us why are you deleting Business Directory Plugin."
2893
+ msgstr "من فضلك قل لنا لماذا قمت بحذف إضافة دليل الأعمال."
2894
+
2895
+ #: admin/templates/uninstall-capture-form.tpl.php:36
2896
+ msgctxt "uninstall"
2897
+ msgid "Uninstall Plugin"
2898
+ msgstr "إلغاء تثبيت الإضافة"
2899
+
2900
+ #: admin/templates/uninstall-complete.tpl.php:2
2901
+ msgctxt "admin uninstall"
2902
+ msgid "Uninstall Business Directory"
2903
+ msgstr "إلغاء تثبيت دليل الأعمال"
2904
+
2905
+ #: admin/templates/uninstall-complete.tpl.php:7
2906
+ msgctxt "admin uninstall"
2907
+ msgid "Uninstall completed."
2908
+ msgstr "اكتمال إلغاء التثبيت."
2909
+
2910
+ #: admin/templates/uninstall-complete.tpl.php:8
2911
+ msgctxt "admin uninstall"
2912
+ msgid "Return to Dashboard."
2913
+ msgstr "الرجوع إلى لوحة تحكم ووردبرس"
2914
+
2915
+ #: admin/templates/uninstall-confirm.tpl.php:1
2916
+ msgctxt "uninstall"
2917
+ msgid "Uninstall Business Directory Plugin"
2918
+ msgstr "إلغاء تثبيت إضافة دليل الأعمال"
2919
+
2920
+ #: admin/tracking.php:188
2921
+ msgctxt "tracking"
2922
+ msgid "Help Improve Business Directory"
2923
+ msgstr "المساعدة في تحسين دليل الأعمال"
2924
+
2925
+ #: admin/tracking.php:190
2926
+ msgctxt "tracking"
2927
+ msgid ""
2928
+ "Can Business Directory keep track of your theme, plugins, and other non-personal, "
2929
+ "non-identifying information to help us in testing the plugin for future releases?"
2930
+ msgstr ""
2931
+ "هل يمكن الاحتفاظ بتعقب \"دليل الأعمال\" لقالبك، والإضافات، وغيرها من المعلومات غير "
2932
+ "الشخصية، والتي لا تعرف بك لمساعدتنا في اختبار الإضافة للإصدارات المستقبلية؟"
2933
+
2934
+ #: admin/tracking.php:192
2935
+ msgctxt "tracking"
2936
+ msgid "What do you track?"
2937
+ msgstr "ما الذي تتتبع؟"
2938
+
2939
+ #: admin/tracking.php:214
2940
+ msgctxt "tracking"
2941
+ msgid "No, Thanks."
2942
+ msgstr "لا، شكرًا."
2943
+
2944
+ #: admin/tracking.php:221
2945
+ msgctxt "tracking"
2946
+ msgid "Allow Tracking"
2947
+ msgstr "السماح بالتتبع"
2948
+
2949
+ #: business-directory-plugin.php:660
2950
+ msgctxt "admin plugins"
2951
+ msgid "Settings"
2952
+ msgstr "الإعدادات"
2953
+
2954
+ #: business-directory-plugin.php:768 business-directory-plugin.php:775
2955
+ msgctxt "rss feed"
2956
+ msgid "%s Feed"
2957
+ msgstr "تغذية %s"
2958
+
2959
+ #: business-directory-plugin.php:1113
2960
+ msgctxt "title"
2961
+ msgid "Submit A Listing"
2962
+ msgstr "إضافة إعلان"
2963
+
2964
+ #: business-directory-plugin.php:1123
2965
+ msgctxt "title"
2966
+ msgid "Find a Listing"
2967
+ msgstr "العثور على إعلان"
2968
+
2969
+ #: business-directory-plugin.php:1133
2970
+ msgctxt "title"
2971
+ msgid "View All Listings"
2972
+ msgstr "عرض جميع الإعلانات"
2973
+
2974
+ #: business-directory-plugin.php:1153
2975
+ msgctxt "title"
2976
+ msgid "Listings tagged: %s"
2977
+ msgstr "إعلانات ذات وسم: %s"
2978
+
2979
+ #: core/api.php:397
2980
+ msgid "Free"
2981
+ msgstr "مجاني"
2982
+
2983
+ #: core/class-csv-import.php:391
2984
+ msgctxt "admin csv-import"
2985
+ msgid "Could not create listing category \"%s\""
2986
+ msgstr "لا يمكن إنشاء تصنيف الإعلان \"%s\""
2987
+
2988
+ #: core/class-csv-import.php:535
2989
+ msgctxt "admin csv-import"
2990
+ msgid "Username \"%s\" does not exist"
2991
+ msgstr "إسم المستخدم \"%s\" غير موجود"
2992
+
2993
+ #: core/class-csv-import.php:567
2994
+ msgctxt "admin csv-import"
2995
+ msgid "Missing required field: %s"
2996
+ msgstr "حقل مطلوب مفقود: %s"
2997
+
2998
+ #: core/class-csv-import.php:587
2999
+ msgctxt "admin csv-import"
3000
+ msgid "Listing category \"%s\" does not exist"
3001
+ msgstr "تصنيف الإعلان \"%s\" غير موجود"
3002
+
3003
+ #: core/class-fee-plan.php:46
3004
+ msgctxt "fees-api"
3005
+ msgid "Fee label is required."
3006
+ msgstr "رسوم التسمية مطلوبة."
3007
+
3008
+ #: core/class-fee-plan.php:49
3009
+ msgctxt "fees-api"
3010
+ msgid "Fee amount must be a non-negative decimal number."
3011
+ msgstr "يجب أن يكون مبلغ الرسوم عدد عشري غير سالب."
3012
+
3013
+ #: core/class-fee-plan.php:52
3014
+ msgctxt "fees-api"
3015
+ msgid "Fee must apply to at least one category."
3016
+ msgstr "يجب أن تطبق الرسوم على تصنيف واحد على الأقل."
3017
+
3018
+ #: core/class-fee-plan.php:57
3019
+ msgctxt "fees-api"
3020
+ msgid "Fee listing duration must be a number less than 10 years (3650 days)."
3021
+ msgstr "يجب أن تكون رسوم مدة الإعلان بعدد أقل من 10 سنوات (3650 يوما)."
3022
+
3023
+ #: core/class-fees-api.php:20
3024
+ msgctxt "fees-api"
3025
+ msgid "Free Listing"
3026
+ msgstr "إعلان مجاني"
3027
+
3028
+ #: core/class-form-field.php:56
3029
+ msgctxt "form-fields-api"
3030
+ msgid "Invalid form field type"
3031
+ msgstr "نوع حقل استمارة غير صحيح"
3032
+
3033
+ #: core/class-form-field.php:493
3034
+ msgctxt "form-fields-api"
3035
+ msgid "Field label is required."
3036
+ msgstr "تسمية الحقل مطلوب."
3037
+
3038
+ #: core/class-form-field.php:503
3039
+ msgctxt "form-fields-api"
3040
+ msgid "Requested field type change is incompatible. Type will not be modified."
3041
+ msgstr "تغيير نوع الحقل المطلوب غير متوافق. لن يتم تعديل النوع."
3042
+
3043
+ #: core/class-form-field.php:523
3044
+ msgctxt "form-fields-api"
3045
+ msgid ""
3046
+ "There can only be one field with association \"%s\". Please select another "
3047
+ "association."
3048
+ msgstr "يمكن أن يكون هناك حقل واحد مع رابطة \"%s\". المرجو تحديد رابطة أخرى."
3049
+
3050
+ #: core/class-form-field.php:533
3051
+ msgctxt "form-fields-api"
3052
+ msgid "\"%s\" is an invalid field type for this association."
3053
+ msgstr "\"%s\" نوع حقل غير صالح لهذه الرابطة."
3054
+
3055
+ #: core/class-form-field.php:571
3056
+ msgctxt "form-fields-api"
3057
+ msgid "Invalid field ID"
3058
+ msgstr "معرف حقل غير صالح"
3059
+
3060
+ #: core/class-form-field.php:580
3061
+ msgctxt "form-fields api"
3062
+ msgid ""
3063
+ "This form field can't be deleted because it is required for the plugin to work."
3064
+ msgstr "لا يمكن حذف هذا الحقل لأنه مطلوب لعمل الإضافة."
3065
+
3066
+ #: core/class-form-field.php:592
3067
+ msgctxt "form-fields-api"
3068
+ msgid "An error occurred while trying to delete this field."
3069
+ msgstr "حدث خطأ أثناء محاولة حذف هذا الحقل."
3070
+
3071
+ #: core/class-gateway.php:131
3072
+ msgctxt "billing info"
3073
+ msgid "First name is required."
3074
+ msgstr "الإسم الشخصي مطلوب."
3075
+
3076
+ #: core/class-gateway.php:134
3077
+ msgctxt "billing info"
3078
+ msgid "Last name is required."
3079
+ msgstr "الإسم العائلي مطلوب."
3080
+
3081
+ #: core/class-gateway.php:137
3082
+ msgctxt "billing info"
3083
+ msgid "Credit card number is required."
3084
+ msgstr "مطلوب رقم بطاقة الائتمان."
3085
+
3086
+ #: core/class-gateway.php:140
3087
+ msgctxt "billing info"
3088
+ msgid "Credit card expiration date is invalid."
3089
+ msgstr "تاريخ انتهاء صلاحية بطاقة الائتمان غير صحيح."
3090
+
3091
+ #: core/class-gateway.php:143
3092
+ msgctxt "billing info"
3093
+ msgid "Credit card CVC number is required."
3094
+ msgstr "مطلوب رقم CVC بطاقة الائتمان."
3095
+
3096
+ #: core/class-gateway.php:146
3097
+ msgctxt "billing info"
3098
+ msgid "Country is required."
3099
+ msgstr "البلد المطلوب."
3100
+
3101
+ #: core/class-gateway.php:149
3102
+ msgctxt "billing info"
3103
+ msgid "Address is required."
3104
+ msgstr "العنوان مطلوب."
3105
+
3106
+ #: core/class-listing-upgrade-api.php:16
3107
+ msgctxt "listings-api"
3108
+ msgid "Normal Listing"
3109
+ msgstr "إعلان عادي"
3110
+
3111
+ #: core/class-listing-upgrade-api.php:20
3112
+ msgctxt "listings-api"
3113
+ msgid "Featured Listing"
3114
+ msgstr "إعلان مميز"
3115
+
3116
+ #: core/class-listing.php:319 core/class-listing.php:345
3117
+ msgctxt "listing"
3118
+ msgid "(Fee Unavailable)"
3119
+ msgstr "(رسم غير متوفر)"
3120
+
3121
+ #: core/class-listings-api.php:306
3122
+ msgctxt "notify email"
3123
+ msgid "[%s] New listing notification"
3124
+ msgstr "[%s] تنبيه الإعلان الجديد"
3125
+
3126
+ #: core/class-listings-api.php:325
3127
+ msgctxt "notify email"
3128
+ msgid "[%s] Listing edit notification"
3129
+ msgstr "[%s] تنبيه تحرير الإعلان"
3130
+
3131
+ #: core/class-listings-widget.php:45 core/widget-search.php:22
3132
+ msgctxt "widgets"
3133
+ msgid "Title:"
3134
+ msgstr "العنوان:"
3135
+
3136
+ #: core/class-listings-widget.php:51
3137
+ msgctxt "widgets"
3138
+ msgid "Number of listings to display:"
3139
+ msgstr "عدد الإعلانات للعرض"
3140
+
3141
+ #: core/class-listings-widget.php:60
3142
+ msgctxt "widgets"
3143
+ msgid "Thumbnails"
3144
+ msgstr "الصور المصغرة"
3145
+
3146
+ #: core/class-listings-widget.php:68
3147
+ msgctxt "widgets"
3148
+ msgid "Show thumbnails"
3149
+ msgstr "عرض الصور المصغرة"
3150
+
3151
+ #: core/class-listings-widget.php:72
3152
+ msgctxt "widgets"
3153
+ msgid "Image width (in px):"
3154
+ msgstr "عرض الصورة (بكسل):"
3155
+
3156
+ #: core/class-listings-widget.php:78
3157
+ msgctxt "widgets"
3158
+ msgid "Leave blank for automatic width."
3159
+ msgstr "أترك المساحة فارغة للعرض التلقائي."
3160
+
3161
+ #: core/class-listings-widget.php:83
3162
+ msgctxt "widgets"
3163
+ msgid "Image height (in px):"
3164
+ msgstr "ارتفاع الصورة (بكسل):"
3165
+
3166
+ #: core/class-listings-widget.php:89
3167
+ msgctxt "widgets"
3168
+ msgid "Leave blank for automatic height."
3169
+ msgstr "أترك المساحة فارغة للارتفاع التلقائي."
3170
+
3171
+ #: core/class-payment.php:223 core/view-submit-listing.php:465
3172
+ msgctxt "listings"
3173
+ msgid "Fee \"%s\" for category \"%s\"%s"
3174
+ msgstr "رسوم \"%s\" للتصنيف '%s' %s"
3175
+
3176
+ #: core/class-payment.php:226 core/view-submit-listing.php:468
3177
+ msgctxt "listings"
3178
+ msgid "(recurring)"
3179
+ msgstr "(متكرر)"
3180
+
3181
+ #: core/class-recaptcha.php:100 core/class-recaptcha.php:115
3182
+ msgctxt "recaptcha"
3183
+ msgid "The reCAPTCHA wasn't entered correctly."
3184
+ msgstr "لم يتم إدخال reCAPTCHA بشكل صحيح."
3185
+
3186
+ #: core/class-settings.php:24
3187
+ msgctxt "admin settings"
3188
+ msgid "General"
3189
+ msgstr "عام"
3190
+
3191
+ #: core/class-settings.php:26
3192
+ msgctxt "admin settings"
3193
+ msgid "Data Collection"
3194
+ msgstr "تجميع البيانات"
3195
+
3196
+ #: core/class-settings.php:29
3197
+ msgctxt "admin settings"
3198
+ msgid ""
3199
+ "Allow BD to anonymously collect information about your installed plugins, themes "
3200
+ "and WP version?"
3201
+ msgstr ""
3202
+ "تسمح لدليل الأعمال بجمع معلومات مجهولة حول الإضافات المثبتة، والقوالب وإصدار "
3203
+ "ووردبريس الخاص بك؟"
3204
+
3205
+ #: core/class-settings.php:34
3206
+ msgctxt "admin settings"
3207
+ msgid "<a>Learn more</a> about what BD does and does NOT track."
3208
+ msgstr "<a>معرفة المزيد</a> حول ما يتتبع دليل الأعمال وما لا يتتبع."
3209
+
3210
+ #: core/class-settings.php:37
3211
+ msgctxt "admin settings"
3212
+ msgid "Permalink Settings"
3213
+ msgstr "إعدادات الرابط الثابت"
3214
+
3215
+ #: core/class-settings.php:38
3216
+ msgctxt "admin settings"
3217
+ msgid "Directory Listings Slug"
3218
+ msgstr "رابط لطيف لإعلانات الدليل"
3219
+
3220
+ #: core/class-settings.php:39
3221
+ msgctxt "admin settings"
3222
+ msgid "Categories Slug"
3223
+ msgstr "رابط لطيف للتصنيفات"
3224
+
3225
+ #: core/class-settings.php:39
3226
+ msgctxt "admin settings"
3227
+ msgid "The slug can't be in use by another term. Avoid \"category\", for instance."
3228
+ msgstr ""
3229
+ "لا يمكن أن يكون الرابط اللطيف مستخدم من طرف مصطلح آخر. تجنب \"category\"، على سبيل "
3230
+ "المثال."
3231
+
3232
+ #: core/class-settings.php:40
3233
+ msgctxt "admin settings"
3234
+ msgid "Tags Slug"
3235
+ msgstr "رابط لطيف للوسوم"
3236
+
3237
+ #: core/class-settings.php:40
3238
+ msgctxt "admin settings"
3239
+ msgid "The slug can't be in use by another term. Avoid \"tag\", for instance."
3240
+ msgstr ""
3241
+ "لا يمكن أن يكون الرابط اللطيف مستخدم من طرف مصطلح آخر. تجنب \"tag\"، على سبيل "
3242
+ "المثال."
3243
+
3244
+ #: core/class-settings.php:43
3245
+ msgctxt "admin settings"
3246
+ msgid "Remove listing ID from directory URLs?"
3247
+ msgstr "إزالة معرف الإعلان من روابط URLs الدليل؟"
3248
+
3249
+ #: core/class-settings.php:46
3250
+ msgctxt "admin settings"
3251
+ msgid ""
3252
+ "Prior to 3.5.1, we included the ID in the listing URL, like \"/business-"
3253
+ "directory/1809/listing-title\". Check this setting to remove the ID for better SEO."
3254
+ msgstr ""
3255
+ "قبل الإصدار 3.5.1، كنا ندرج المعرف في الرابط url الخاص بالإعلان، مثل \"/دليل-"
3256
+ "الأعمال/1809/عنوان-الإعلان\". تحقق من هذا الإعداد لإزالة المعرف لأفضل أرشفة SEO."
3257
+
3258
+ #: core/class-settings.php:50
3259
+ msgctxt "admin settings"
3260
+ msgid "reCAPTCHA Settings"
3261
+ msgstr "إعدادات reCaptcha"
3262
+
3263
+ #: core/class-settings.php:53
3264
+ msgctxt "admin settings"
3265
+ msgid "Need API keys for reCAPTCHA? Get them <a>here</a>."
3266
+ msgstr "بحاجة إلى مفاتيح API ل reCAPTCHA؟ أحصل عليها <a>هنا</a>."
3267
+
3268
+ #: core/class-settings.php:55
3269
+ msgctxt "admin settings"
3270
+ msgid "Use reCAPTCHA for contact forms"
3271
+ msgstr "إستخدم reCAPTCHA لاستمارة الاتصال"
3272
+
3273
+ #: core/class-settings.php:56
3274
+ msgctxt "admin settings"
3275
+ msgid "Turn off reCAPTCHA for logged in users?"
3276
+ msgstr "إيقاف reCAPTCHA للاعضاء المسجلين الدخول؟"
3277
+
3278
+ #: core/class-settings.php:57
3279
+ msgctxt "admin settings"
3280
+ msgid "Use reCAPTCHA for listing submits"
3281
+ msgstr "إستخدم reCAPTCHA أثناء إضافة إعلان"
3282
+
3283
+ #: core/class-settings.php:60
3284
+ msgctxt "admin settings"
3285
+ msgid "Use reCAPTCHA for listing comments?"
3286
+ msgstr "إستخدم reCAPTCHA في تعليقات الإعلان؟"
3287
+
3288
+ #: core/class-settings.php:63
3289
+ msgctxt "admin settings"
3290
+ msgid "reCAPTCHA Public Key"
3291
+ msgstr "مفتاح عام reCAPTCHA"
3292
+
3293
+ #: core/class-settings.php:64
3294
+ msgctxt "admin settings"
3295
+ msgid "reCAPTCHA Private Key"
3296
+ msgstr "مفتاح خاص reCAPTCHA"
3297
+
3298
+ #: core/class-settings.php:70
3299
+ msgctxt "admin settings"
3300
+ msgid ""
3301
+ "We expect that a membership plugin supports the 'redirect_to' parameter for the "
3302
+ "URLs below to work. If the plugin does not support them, these settings will not "
3303
+ "function as expected. Please contact the membership plugin and ask them to support "
3304
+ "the WP standard 'redirect_to' query parameter."
3305
+ msgstr ""
3306
+ "نتوقع أن تدعم عضوية الإضافة معامل 'redirect_to' لكي تعمل روابط المواقع URLs "
3307
+ "أدناه. إذا لم تدعم الإضافة ذلك، لن تعمل هذه الإعدادات كما هو متوقع. المرجو الاتصال "
3308
+ "بعضوية الإضافة، واطلب منهم دعم معامل الاستعلام القياسي 'redirect_to' لووردبريس."
3309
+
3310
+ #: core/class-settings.php:73
3311
+ msgctxt "admin settings"
3312
+ msgid "Registration Settings"
3313
+ msgstr "إعدادات التسجيل"
3314
+
3315
+ #: core/class-settings.php:74
3316
+ msgctxt "admin settings"
3317
+ msgid "Require login to post listings?"
3318
+ msgstr "يتطلب تسجيل الدخول لنشر الإعلانات؟"
3319
+
3320
+ #: core/class-settings.php:79
3321
+ msgctxt "admin settings"
3322
+ msgid "Login URL"
3323
+ msgstr "رابط تسجيل الدخول"
3324
+
3325
+ #: core/class-settings.php:82
3326
+ msgctxt "admin settings"
3327
+ msgid ""
3328
+ "URL of your membership plugin's login page. Only enter this if using a membership "
3329
+ "plugin or custom login page."
3330
+ msgstr ""
3331
+ "رابط URL لصفحة تسجيل الدخول لعضوية الإضافة الخاصة بك. فقط أدخل هذا إذا كان هناك "
3332
+ "استخدام لعضوية الإضافة أو صفحة تسجيل دخول مخصصة."
3333
+
3334
+ #: core/class-settings.php:87
3335
+ msgctxt "admin settings"
3336
+ msgid "Registration URL"
3337
+ msgstr "رابط التسجيل"
3338
+
3339
+ #: core/class-settings.php:90
3340
+ msgctxt "admin settings"
3341
+ msgid ""
3342
+ "URL of your membership plugin's registration page. Only enter this if using a "
3343
+ "membership plugin or custom registration page."
3344
+ msgstr ""
3345
+ "رابط URL لصفحة التسجيل في عضوية الإضافة الخاصة بك. فقط أدخل هذا إذا كان هناك "
3346
+ "استخدام لعضوية الإضافة أو صفحة تسجيل مخصصة."
3347
+
3348
+ #: core/class-settings.php:95 core/class-settings.php:104
3349
+ msgctxt "admin settings"
3350
+ msgid "Terms and Conditions"
3351
+ msgstr "شروط وأحكام"
3352
+
3353
+ #: core/class-settings.php:98
3354
+ msgctxt "admin settings"
3355
+ msgid "Display and require user agreement to Terms and Conditions"
3356
+ msgstr "عرض وطلب موافقة المستخدم على الشروط والأحكام"
3357
+
3358
+ #: core/class-settings.php:107
3359
+ msgctxt "admin settings"
3360
+ msgid ""
3361
+ "Enter text or a URL starting with http. If you use a URL, the Terms and Conditions "
3362
+ "text will be replaced by a link to the appropiate page."
3363
+ msgstr ""
3364
+ "أدخل النص أو عنوان URL يبدأ ب http. إذا كنت تستخدم عنوان URL، سيتم استبدال نص "
3365
+ "الأحكام والشروط برابط إلى الصفحة المناسبة."
3366
+
3367
+ #: core/class-settings.php:111
3368
+ msgctxt "admin settings"
3369
+ msgid "Directory Display Options"
3370
+ msgstr "خيارات عرض الدليل"
3371
+
3372
+ #: core/class-settings.php:112
3373
+ msgctxt "admin settings"
3374
+ msgid "Show the \"Submit listing\" button."
3375
+ msgstr "إظهار زر \"إضافة إعلان\"."
3376
+
3377
+ #: core/class-settings.php:113
3378
+ msgctxt "admin settings"
3379
+ msgid "Show \"Search listings\"."
3380
+ msgstr "إظهار \"البحث في الإعلانات\"."
3381
+
3382
+ #: core/class-settings.php:114
3383
+ msgctxt "admin settings"
3384
+ msgid "Show the \"View Listings\" button."
3385
+ msgstr "إظهار زر \"مشاهدة الإعلانات\"."
3386
+
3387
+ #: core/class-settings.php:115
3388
+ msgctxt "admin settings"
3389
+ msgid "Show the \"Directory\" button."
3390
+ msgstr "إظهار زر \"الدليل\"."
3391
+
3392
+ #: core/class-settings.php:116
3393
+ msgctxt "admin settings"
3394
+ msgid "Disable advanced CPT integration."
3395
+ msgstr "تعطيل التكامل CPT المتقدم."
3396
+
3397
+ #: core/class-settings.php:121
3398
+ msgctxt "admin settings"
3399
+ msgid "Directory Search"
3400
+ msgstr "البحث في الدليل"
3401
+
3402
+ #: core/class-settings.php:129
3403
+ msgctxt "admin settings"
3404
+ msgid "Search form display"
3405
+ msgstr "عرض نموذج البحث"
3406
+
3407
+ #: core/class-settings.php:133
3408
+ msgctxt "admin settings"
3409
+ msgid "Above results"
3410
+ msgstr "أعلى النتائج"
3411
+
3412
+ #: core/class-settings.php:134
3413
+ msgctxt "admin settings"
3414
+ msgid "Below results"
3415
+ msgstr "أسفل النتائج"
3416
+
3417
+ #: core/class-settings.php:135
3418
+ msgctxt "admin settings"
3419
+ msgid "Don't show with results"
3420
+ msgstr "لا تظهر مع النتائج"
3421
+
3422
+ #: core/class-settings.php:140
3423
+ msgctxt "admin settings"
3424
+ msgid ""
3425
+ "You have selected a textarea field to be included in quick searches. Searches "
3426
+ "involving those fields are very expensive and could result in timeouts and/or "
3427
+ "general slowness."
3428
+ msgstr ""
3429
+ "لقد حددت حقل إدراج نص ليتم تضمينها في عمليات البحث السريعة. عمليات البحث التي "
3430
+ "تنطوي على تلك الحقول تتطلب موارد كثيرة ويمكن أن تؤدي الى انتهاء المهلة و/ أو البطء "
3431
+ "العام."
3432
+
3433
+ #: core/class-settings.php:142
3434
+ msgctxt "admin settings"
3435
+ msgid ""
3436
+ "Use Ctrl-Click to include multiple fields in the search. Choosing too many fields "
3437
+ "for inclusion into Quick Search can result in very slow search performance."
3438
+ msgstr ""
3439
+ "إستخدم Ctrl-Click لتشمل حقول متعددة في البحث. اختيار العديد من الحقول لإدراجها في "
3440
+ "البحث السريع يؤدي إلى أداء بحث بطيئ جدا."
3441
+
3442
+ #: core/class-settings.php:145
3443
+ msgctxt "admin settings"
3444
+ msgid "Quick search fields"
3445
+ msgstr "حقول البحث السريع"
3446
+
3447
+ #: core/class-settings.php:153
3448
+ msgctxt "admin settings"
3449
+ msgid "Enable high performance searches?"
3450
+ msgstr "تمكين عمليات البحث عالية الأداء؟"
3451
+
3452
+ #: core/class-settings.php:156
3453
+ msgctxt "admin settings"
3454
+ msgid ""
3455
+ "Enabling this makes BD sacrifice result quality to improve speed. This is helpful "
3456
+ "if you're on shared hosting plans, where database performance is an issue."
3457
+ msgstr ""
3458
+ "تمكين هذا يجعل \"دليل الأعمال\" يضحي بجودة النتيجة لتحسين السرعة. وهذا مفيد إذا "
3459
+ "كنت على خطط استضافة مشتركة، حيث أداء قاعدة البيانات يعد مشكلة."
3460
+
3461
+ #: core/class-settings.php:161
3462
+ msgctxt "admin settings"
3463
+ msgid "Miscellaneous Settings"
3464
+ msgstr "إعدادات متنوعة"
3465
+
3466
+ #: core/class-settings.php:165
3467
+ msgctxt "admin settings"
3468
+ msgid ""
3469
+ "Check this if you are having trouble with BD, particularly when importing or "
3470
+ "exporting CSV files."
3471
+ msgstr ""
3472
+ "حدد هذا الخيار إذا كنت تواجه مشكلة مع دليل الأعمال، ولا سيما عند استيراد أو تصدير "
3473
+ "ملفات CSV."
3474
+
3475
+ #: core/class-settings.php:168
3476
+ msgctxt "admin settings"
3477
+ msgid ""
3478
+ "If this compatibility mode doesn't solve your issue, you may be experiencing a "
3479
+ "more serious conflict. <a>Here is an article</a> about how to test for theme and "
3480
+ "plugin conflicts with Business Directory."
3481
+ msgstr ""
3482
+ " إذا كان وضع التوافق لا يحل مشكلتك، فقد تعاني من تعارض أكثر خطورة. <a>وإليك مقال</"
3483
+ "a> حول كيفية اختبار تعارضات القالب والإضافات مع \"دليل الأعمال\"."
3484
+
3485
+ #: core/class-settings.php:171
3486
+ msgctxt "admin settings"
3487
+ msgid "Enable AJAX compatibility mode?"
3488
+ msgstr "تمكين وضع التوافق أجاكس؟"
3489
+
3490
+ #: core/class-settings.php:179 core/class-settings.php:658
3491
+ msgctxt "admin settings"
3492
+ msgid "Listings"
3493
+ msgstr "الإعلانات"
3494
+
3495
+ #: core/class-settings.php:180 core/class-settings.php:330
3496
+ #: core/class-settings.php:615
3497
+ msgctxt "admin settings"
3498
+ msgid "General Settings"
3499
+ msgstr "الإعدادات العامة"
3500
+
3501
+ #: core/class-settings.php:182
3502
+ msgctxt "admin settings"
3503
+ msgid "Listings per page"
3504
+ msgstr "الإعلانات حسب الصفحة"
3505
+
3506
+ #: core/class-settings.php:183
3507
+ msgctxt "admin settings"
3508
+ msgid ""
3509
+ "Number of listings to show per page. Use a value of \"0\" to show all listings."
3510
+ msgstr "عدد الإعلانات التي تظهر في كل صفحة. استخدام قيمة \"0\" لإظهار كل الإعلانات."
3511
+
3512
+ #: core/class-settings.php:185
3513
+ msgctxt "admin settings"
3514
+ msgid "Listing duration for no-fee sites (in days)"
3515
+ msgstr "مدة الإعلان للمواقع بلا رسوم (بالأيام)"
3516
+
3517
+ #: core/class-settings.php:186
3518
+ msgctxt "admin settings"
3519
+ msgid ""
3520
+ "Use a value of \"0\" to keep a listing alive indefinitely or enter a number less "
3521
+ "than 10 years (3650 days)."
3522
+ msgstr ""
3523
+ "استخدام قيمة \"0\" للإبقاء على الإعلان إلى أجل غير مسمى، أو قم بإدخال عدد أقل من "
3524
+ "10 سنوات (3650 يوما)."
3525
+
3526
+ #: core/class-settings.php:192
3527
+ msgctxt "admin settings"
3528
+ msgid "Include listing contact form on listing pages?"
3529
+ msgstr "إدراج الإعلان مع نموذج الاتصال في صفحات الإعلان؟"
3530
+
3531
+ #: core/class-settings.php:195
3532
+ msgctxt "admin settings"
3533
+ msgid ""
3534
+ "Allows visitors to contact listing authors privately. Authors will receive the "
3535
+ "messages via email."
3536
+ msgstr ""
3537
+ "يسمح للزوار بالاتصال بكتاب الإعلان بشكل خاص. الكتاب سوف يتلقون رسائل عبر البريد "
3538
+ "الإلكتروني."
3539
+
3540
+ #: core/class-settings.php:198
3541
+ msgctxt "admin settings"
3542
+ msgid "Require login for using the contact form?"
3543
+ msgstr "يتطلب تسجيل الدخول لاستخدام نموذج الاتصال؟"
3544
+
3545
+ #: core/class-settings.php:204
3546
+ msgctxt "admin settings"
3547
+ msgid "Maximum number of contact form submits per day"
3548
+ msgstr "الحد الأقصى لعدد إرسال الاتصالات يوميا"
3549
+
3550
+ #: core/class-settings.php:207
3551
+ msgctxt "admin settings"
3552
+ msgid ""
3553
+ "Use this to prevent spamming of listing owners. 0 means unlimited submits per day."
3554
+ msgstr ""
3555
+ "إستخدم هذا لمنع الرسائل المزعجة لأصحاب الإعلانات. 0 تعني إرسال غير محدود في اليوم "
3556
+ "الواحد."
3557
+
3558
+ #: core/class-settings.php:213
3559
+ msgctxt "admin settings"
3560
+ msgid "Include comment form on listing pages?"
3561
+ msgstr "يتضمن نموذج التعليق على صفحات الإعلانات؟"
3562
+
3563
+ #: core/class-settings.php:216
3564
+ msgctxt "admin settings"
3565
+ msgid ""
3566
+ "Allow visitors to discuss listings using the standard WordPress comment form. "
3567
+ "Comments are public."
3568
+ msgstr ""
3569
+ "السماح للزوار بمناقشة الإعلانات باستخدام نموذج التعليق القياسي لووردبريس. "
3570
+ "التعليقات مشاهدة للعموم."
3571
+
3572
+ #: core/class-settings.php:217
3573
+ msgctxt "admin settings"
3574
+ msgid "Show listings under categories on main page?"
3575
+ msgstr "إظهار الإعلانات تحت التصنيفات على الصفحة الرئيسية؟"
3576
+
3577
+ #: core/class-settings.php:218
3578
+ msgctxt "admin settings"
3579
+ msgid "Status of listings upon uninstalling plugin"
3580
+ msgstr "حالة الإعلانات عند إلغاء تثبيت الإضافة"
3581
+
3582
+ #: core/class-settings.php:220
3583
+ msgctxt "admin settings"
3584
+ msgid "Status of deleted listings"
3585
+ msgstr "حالة الإعلانات المحذوفة"
3586
+
3587
+ #: core/class-settings.php:223
3588
+ msgctxt "admin settings"
3589
+ msgid "Submit Listing instructions message"
3590
+ msgstr "إرسال رسالة تعليمات الإعلانات"
3591
+
3592
+ #: core/class-settings.php:223
3593
+ msgctxt "admin settings"
3594
+ msgid ""
3595
+ "This text is displayed at the first page of the Submit Listing process for "
3596
+ "Business Directory. You can use it for instructions about filling out the form or "
3597
+ "anything you want to tell users before they get started."
3598
+ msgstr ""
3599
+ "يتم عرض هذا النص على الصفحة الأولى من عملية إرسال إعلان لدليل الأعمال. يمكنك "
3600
+ "استخدامه لإعطاء إرشادات حول تعبئة النموذج أو أي شيء تريد إعلام المستخدمين به قبل "
3601
+ "أن يبدأوا."
3602
+
3603
+ #: core/class-settings.php:226
3604
+ msgctxt "admin settings"
3605
+ msgid "Listing Renewal"
3606
+ msgstr "تجديد الإعلان"
3607
+
3608
+ #: core/class-settings.php:227
3609
+ msgctxt "admin settings"
3610
+ msgid "Turn on listing renewal option?"
3611
+ msgstr "قم بتشغيل خيار تجديد الإعلان؟"
3612
+
3613
+ #: core/class-settings.php:230
3614
+ msgctxt "admin settings"
3615
+ msgid "Allow recurring renewal payments?"
3616
+ msgstr "السماح بتجديد الدفعات المتكررة؟"
3617
+
3618
+ #: core/class-settings.php:233
3619
+ msgctxt "admin settings"
3620
+ msgid ""
3621
+ "Allow users to opt in for automatic renewal of their listings. The fee is charged "
3622
+ "at the time the listing expires without user intervention."
3623
+ msgstr ""
3624
+ "السماح للمستخدمين باختيار التجديد التلقائي لإعلاناتهم. الرسوم تستوفى وقت انتهاء "
3625
+ "تاريخ الإعلان دون تدخل المستخدم."
3626
+
3627
+ #: core/class-settings.php:237
3628
+ msgctxt "admin settings"
3629
+ msgid "Use recurring payments as the default payment method?"
3630
+ msgstr "استخدام المدفوعات المتكررة كطريقة الدفع الافتراضية؟"
3631
+
3632
+ #: core/class-settings.php:240
3633
+ msgctxt "admin settings"
3634
+ msgid ""
3635
+ "Enable automatic renewal without having users opt in during the submit process."
3636
+ msgstr "تمكين التجديد التلقائي دون إخبار المستخدمين أثناء عملية الإرسال."
3637
+
3638
+ #: core/class-settings.php:245
3639
+ msgctxt "admin settings"
3640
+ msgid "Listing renewal e-mail threshold (in days)"
3641
+ msgstr "عتبة رسالة البريد الإلكتروني لتجديد الإعلان (بالأيام)"
3642
+
3643
+ #: core/class-settings.php:248
3644
+ msgctxt "admin settings"
3645
+ msgid "Configure how many days before listing expiration is the renewal e-mail sent."
3646
+ msgstr "حدد عدد الأيام قبل انتهاء تاريخ الإعلان لإرسال رسالة بريد إلكتروني لتجديده."
3647
+
3648
+ #: core/class-settings.php:252
3649
+ msgctxt "admin settings"
3650
+ msgid "Send expiration notices including a cancel links to auto-renewed listings?"
3651
+ msgstr "إرسال إشعارات انتهاء التاريخ مصحوبة بروابط إلغاء التجديد التلقائي للإعلانات؟"
3652
+
3653
+ #: core/class-settings.php:259
3654
+ msgctxt "admin settings"
3655
+ msgid "Remind listing owners of expired listings (past due)?"
3656
+ msgstr "ذكِّر أصحاب الإعلانات المنتهية التاريخ (مستحقة)؟"
3657
+
3658
+ #: core/class-settings.php:264
3659
+ msgctxt "admin settings"
3660
+ msgid "Listing renewal reminder e-mail threshold (in days)"
3661
+ msgstr "عتبة التذكير بالبريد الإلكتروني لتجديد الإعلان (بالأيام)"
3662
+
3663
+ #: core/class-settings.php:267
3664
+ msgctxt "admin settings"
3665
+ msgid ""
3666
+ "Configure how many days after the expiration of a listing an e-mail reminder "
3667
+ "should be sent to the owner."
3668
+ msgstr ""
3669
+ "حدد عدد الأيام بعد انتهاء تاريخ الإعلان لإرسال رسالة بريد إلكتروني لتذكير صاحب "
3670
+ "الإعلان."
3671
+
3672
+ #: core/class-settings.php:270
3673
+ msgctxt "admin settings"
3674
+ msgid "Post/Category Settings"
3675
+ msgstr "إعدادات الإعلان/التصنيف"
3676
+
3677
+ #: core/class-settings.php:271
3678
+ msgctxt "admin settings"
3679
+ msgid "Default new post status"
3680
+ msgstr "حالة الإعلان الجديد الافتراضية"
3681
+
3682
+ #: core/class-settings.php:274
3683
+ msgctxt "admin settings"
3684
+ msgid "Edit post status"
3685
+ msgstr "تعديل حالة الإعلان"
3686
+
3687
+ #: core/class-settings.php:276
3688
+ msgctxt "admin settings"
3689
+ msgid "Order categories list by"
3690
+ msgstr "ترتيب قائمة التصنيفات حسب"
3691
+
3692
+ #: core/class-settings.php:278
3693
+ msgctxt "admin settings"
3694
+ msgid "Name"
3695
+ msgstr "الإسم"
3696
+
3697
+ #: core/class-settings.php:279
3698
+ msgctxt "admin settings"
3699
+ msgid "Slug"
3700
+ msgstr "رابط لطيف"
3701
+
3702
+ #: core/class-settings.php:280
3703
+ msgctxt "admin settings"
3704
+ msgid "Listing Count"
3705
+ msgstr "عداد الإعلانات"
3706
+
3707
+ #: core/class-settings.php:282
3708
+ msgctxt "admin settings"
3709
+ msgid "Sort order for categories"
3710
+ msgstr "ترتيب فرز التصنيفات"
3711
+
3712
+ #: core/class-settings.php:283 core/class-settings.php:301
3713
+ msgctxt "admin settings"
3714
+ msgid "Ascending"
3715
+ msgstr "تصاعدي"
3716
+
3717
+ #: core/class-settings.php:283 core/class-settings.php:301
3718
+ msgctxt "admin settings"
3719
+ msgid "Descending"
3720
+ msgstr "تنازلي"
3721
+
3722
+ #: core/class-settings.php:284
3723
+ msgctxt "admin settings"
3724
+ msgid "Show category post count?"
3725
+ msgstr "إظهار عدد إعلانات التصنيف؟"
3726
+
3727
+ #: core/class-settings.php:285
3728
+ msgctxt "admin settings"
3729
+ msgid "Hide empty categories?"
3730
+ msgstr "إخفاء التصنيفات الفارغة؟"
3731
+
3732
+ #: core/class-settings.php:286
3733
+ msgctxt "admin settings"
3734
+ msgid "Show only parent categories in category list?"
3735
+ msgstr "إظهار التصنيفات الأبوية فقط في قائمة التصنيف؟"
3736
+
3737
+ #: core/class-settings.php:288
3738
+ msgctxt "admin settings"
3739
+ msgid "Listings Sorting"
3740
+ msgstr "فرز الإعلانات"
3741
+
3742
+ #: core/class-settings.php:289
3743
+ msgctxt "admin settings"
3744
+ msgid "Order directory listings by"
3745
+ msgstr "ترتيب إعلانات الدليل حسب"
3746
+
3747
+ #: core/class-settings.php:291
3748
+ msgctxt "admin settings"
3749
+ msgid "Title"
3750
+ msgstr "العنوان"
3751
+
3752
+ #: core/class-settings.php:292
3753
+ msgctxt "admin settings"
3754
+ msgid "Author"
3755
+ msgstr "الكاتب"
3756
+
3757
+ #: core/class-settings.php:293
3758
+ msgctxt "admin settings"
3759
+ msgid "Date posted"
3760
+ msgstr "تاريخ النشر"
3761
+
3762
+ #: core/class-settings.php:294
3763
+ msgctxt "admin settings"
3764
+ msgid "Date last modified"
3765
+ msgstr "تاريخ آخر تعديل"
3766
+
3767
+ #: core/class-settings.php:295
3768
+ msgctxt "admin settings"
3769
+ msgid "Random"
3770
+ msgstr "عشوائية"
3771
+
3772
+ #: core/class-settings.php:296
3773
+ msgctxt "admin settings"
3774
+ msgid "Paid first then free. Inside each group by date."
3775
+ msgstr "تدفع أولاً ثم مجاناً. داخل كل مجموعة حسب التاريخ."
3776
+
3777
+ #: core/class-settings.php:297
3778
+ msgctxt "admin settings"
3779
+ msgid "Paid first then free. Inside each group by title."
3780
+ msgstr "تدفع أولاً ثم مجاناً. داخل كل مجموعة بعنوان."
3781
+
3782
+ #: core/class-settings.php:299
3783
+ msgctxt "admin settings"
3784
+ msgid "Sort directory listings by"
3785
+ msgstr "فرز إعلانات الدليل حسب"
3786
+
3787
+ #: core/class-settings.php:300
3788
+ msgctxt "admin settings"
3789
+ msgid "Ascending for ascending order A-Z, Descending for descending order Z-A"
3790
+ msgstr "ترتيب تصاعدي من أ إلى ي، ترتيب تنازلي من ي إلى أ"
3791
+
3792
+ #: core/class-settings.php:305
3793
+ msgctxt "admin settings"
3794
+ msgid "Enable sort bar?"
3795
+ msgstr "تمكين شريط الفرز؟"
3796
+
3797
+ #: core/class-settings.php:310
3798
+ msgctxt "admin settings"
3799
+ msgid "Sortbar Fields"
3800
+ msgstr "حقول شريط الفرز"
3801
+
3802
+ #: core/class-settings.php:319
3803
+ msgctxt "admin settings"
3804
+ msgid "Featured (Sticky) listing settings"
3805
+ msgstr "إعدادات الإعلانات (المثبتة) المميزة"
3806
+
3807
+ #: core/class-settings.php:320
3808
+ msgctxt "admin settings"
3809
+ msgid "Offer sticky listings?"
3810
+ msgstr "عروض الإعلانات المثبتة"
3811
+
3812
+ #: core/class-settings.php:321
3813
+ msgctxt "admin settings"
3814
+ msgid "Offer upgrades during submit process?"
3815
+ msgstr "عرض الترقية خلال عملية إضافة إعلان؟"
3816
+
3817
+ #: core/class-settings.php:322
3818
+ msgctxt "admin settings"
3819
+ msgid "Sticky listing price"
3820
+ msgstr "سعر الإعلان المثبت"
3821
+
3822
+ #: core/class-settings.php:323
3823
+ msgctxt "admin settings"
3824
+ msgid "Sticky listing page description text"
3825
+ msgstr "نص وصف صفحة الإعلان المثبت"
3826
+
3827
+ #: core/class-settings.php:324
3828
+ msgctxt "admin settings"
3829
+ msgid ""
3830
+ "You can upgrade your listing to featured status. Featured listings will always "
3831
+ "appear on top of regular listings."
3832
+ msgstr ""
3833
+ "يمكنك ترقية إعلانك إلى الحالة المميزة. الإعلانات المميزة سوف تظهر دائماً أعلى "
3834
+ "الإعلانات العادية."
3835
+
3836
+ #: core/class-settings.php:329
3837
+ msgctxt "admin settings"
3838
+ msgid "E-Mail"
3839
+ msgstr "البريد الإلكتروني"
3840
+
3841
+ #: core/class-settings.php:333
3842
+ msgctxt "admin settings"
3843
+ msgid "Display email address fields publicly?"
3844
+ msgstr "عرض حقول عنوان البريد الإلكتروني علنا؟"
3845
+
3846
+ #: core/class-settings.php:336
3847
+ msgctxt "admin settings"
3848
+ msgid ""
3849
+ "Shows the email address of the listing owner to all web users. NOT RECOMMENDED as "
3850
+ "this increases spam to the address and allows spam bots to harvest it for future "
3851
+ "use."
3852
+ msgstr ""
3853
+ "إظهار عنوان البريد الإلكتروني لمالك الإعلان لجميع مستخدمي الويب. لا ينصح به لأن "
3854
+ "هذا يزيد من الرسائل المزعجة إلى العنوان ويسمح للمتطفلين بجمع عنوانين البريد "
3855
+ "للاستخدام في المستقبل."
3856
+
3857
+ #: core/class-settings.php:339
3858
+ msgctxt "admin settings"
3859
+ msgid "How to determine the listing's email address?"
3860
+ msgstr "كيفية تحديد عنوان البريد الإلكتروني في الإعلان؟"
3861
+
3862
+ #: core/class-settings.php:342
3863
+ msgctxt "admin settings"
3864
+ msgid ""
3865
+ "This affects emails sent to listing owners via contact forms or when their "
3866
+ "listings expire."
3867
+ msgstr ""
3868
+ "هذا يؤثر على رسائل البريد الإلكتروني المرسلة إلى مالكي الإعلانات عبر نموذج الاتصال "
3869
+ "أو عندما ينتهي تاريخ الإعلانات."
3870
+
3871
+ #: core/class-settings.php:349
3872
+ msgctxt "admin settings"
3873
+ msgid "E-Mail Notifications"
3874
+ msgstr "تنبيهات البريد الإلكتروني"
3875
+
3876
+ #: core/class-settings.php:352
3877
+ msgctxt "admin settings"
3878
+ msgid "Notify admin via e-mail when..."
3879
+ msgstr "إبلاغ المدير عن طريق البريد الإلكتروني عندما..."
3880
+
3881
+ #: core/class-settings.php:356
3882
+ msgctxt "admin settings"
3883
+ msgid "A new listing is submitted."
3884
+ msgstr "يتم إضافة إعلان جديد"
3885
+
3886
+ #: core/class-settings.php:357
3887
+ msgctxt "admin settings"
3888
+ msgid "A listing is edited."
3889
+ msgstr "تم تحرير الإعلان"
3890
+
3891
+ #: core/class-settings.php:358
3892
+ msgctxt "admin settings"
3893
+ msgid "A listing expires."
3894
+ msgstr "الإعلان منتهي التاريخ"
3895
+
3896
+ #: core/class-settings.php:359
3897
+ msgctxt "admin settings"
3898
+ msgid "A contact message is sent to a listing's owner."
3899
+ msgstr "يتم إرسال رسالة اتصال لمالك الإعلان."
3900
+
3901
+ #: core/class-settings.php:365
3902
+ msgctxt "admin settings"
3903
+ msgid "CC this e-mail address too"
3904
+ msgstr "إرسال نسخة من الرسالة الى عنوان البريد الإلكتروني هذا أيضا"
3905
+
3906
+ #: core/class-settings.php:371
3907
+ msgctxt "admin settings"
3908
+ msgid "Notify users via e-mail when..."
3909
+ msgstr "إعلام المستخدمين عن طريق البريد الإلكتروني عندما..."
3910
+
3911
+ #: core/class-settings.php:374
3912
+ msgctxt "admin settings"
3913
+ msgid "You can modify the text template used for most of these e-mails below."
3914
+ msgstr "يمكنك تعديل قالب النص المستخدم لمعظم رسائل البريد الإلكتروني هذه أدناه."
3915
+
3916
+ #: core/class-settings.php:375
3917
+ msgctxt "admin settings"
3918
+ msgid "Their listing is submitted."
3919
+ msgstr "يتم إضافة الإعلان الخاص بهم"
3920
+
3921
+ #: core/class-settings.php:376
3922
+ msgctxt "admin settings"
3923
+ msgid "Their listing is approved/published."
3924
+ msgstr "تمت الموافقة ونشر الإعلان الخاص بهم"
3925
+
3926
+ #: core/class-settings.php:385
3927
+ msgctxt "contact email"
3928
+ msgid "You have received a reply from your listing at %s."
3929
+ msgstr "تلقيت ردا من الإعلان الخاص بك في %s."
3930
+
3931
+ #: core/class-settings.php:386
3932
+ msgctxt "contact email"
3933
+ msgid "Name: %s"
3934
+ msgstr "الإسم: %s"
3935
+
3936
+ #: core/class-settings.php:387
3937
+ msgctxt "contact email"
3938
+ msgid "E-Mail: %s"
3939
+ msgstr "البريد الإلكتروني: %s"
3940
+
3941
+ #: core/class-settings.php:388
3942
+ msgctxt "contact email"
3943
+ msgid "Message:"
3944
+ msgstr "الرسالة:"
3945
+
3946
+ #: core/class-settings.php:390
3947
+ msgctxt "contact email"
3948
+ msgid "Time: %s"
3949
+ msgstr "الوقت: %s"
3950
+
3951
+ #: core/class-settings.php:392
3952
+ msgctxt "admin settings"
3953
+ msgid "E-Mail Templates"
3954
+ msgstr "قوالب البريد الإلكتروني"
3955
+
3956
+ #: core/class-settings.php:395
3957
+ msgctxt "admin settings"
3958
+ msgid "Email confirmation message"
3959
+ msgstr "رسالة تأكيد البريد الإلكتروني"
3960
+
3961
+ #: core/class-settings.php:399
3962
+ msgctxt "admin settings"
3963
+ msgid "Sent after a listing has been submitted."
3964
+ msgstr "ترسل بعد أن يضاف الإعلان."
3965
+
3966
+ #: core/class-settings.php:400 core/class-settings.php:408
3967
+ #: core/class-settings.php:449
3968
+ msgctxt "admin settings"
3969
+ msgid "Listing's title"
3970
+ msgstr "عنوان الإعلان"
3971
+
3972
+ #: core/class-settings.php:403
3973
+ msgctxt "admin settings"
3974
+ msgid "Listing published message"
3975
+ msgstr "رسالة نشر الإعلان"
3976
+
3977
+ #: core/class-settings.php:406
3978
+ msgctxt "admin settings"
3979
+ msgid ""
3980
+ "Your listing \"[listing]\" is now available at [listing-url] and can be viewed by "
3981
+ "the public."
3982
+ msgstr ""
3983
+ "القائمة الخاصة بك \"[listing]\" متوفر الآن في [listing-url] ويمكن مشاهدتها من قبل "
3984
+ "العموم."
3985
+
3986
+ #: core/class-settings.php:407
3987
+ msgctxt "admin settings"
3988
+ msgid "Sent when the listing has been published or approved by an admin."
3989
+ msgstr "ترسل عندما يتم نشر الإعلان أو الموافقة عليه من طرف المدير."
3990
+
3991
+ #: core/class-settings.php:409
3992
+ msgctxt "admin settings"
3993
+ msgid "Listing's URL"
3994
+ msgstr "عنوان URL الإعلان"
3995
+
3996
+ #: core/class-settings.php:413
3997
+ msgctxt "admin settings"
3998
+ msgid "Listing Contact Message"
3999
+ msgstr "رسالة اتصال الإعلان"
4000
+
4001
+ #: core/class-settings.php:417
4002
+ msgctxt "admin settings"
4003
+ msgid ""
4004
+ "Sent to listing owners when someone uses the contact form on their listing pages."
4005
+ msgstr ""
4006
+ "ترسل إلى مالكي الإعلانات عندما يستخدم شخص ما نموذج جهة الاتصال في صفحات الإعلانات "
4007
+ "الخاصة بهم."
4008
+
4009
+ #: core/class-settings.php:427
4010
+ msgctxt "admin settings"
4011
+ msgid "Payment related"
4012
+ msgstr "المدفوعات ذات الصلة"
4013
+
4014
+ #: core/class-settings.php:444
4015
+ msgctxt "admin settings"
4016
+ msgid "Payment abandoned reminder message"
4017
+ msgstr "رسالة تذكير بالتخلي عن الدفع"
4018
+
4019
+ #: core/class-settings.php:448
4020
+ msgctxt "admin settings"
4021
+ msgid "Sent some time after a pending payment is abandoned by users."
4022
+ msgstr "ترسل أحيانا بعد أن يتخلي المستخدمين عن الدفعة المنتظرة."
4023
+
4024
+ #: core/class-settings.php:450
4025
+ msgctxt "admin settings"
4026
+ msgid "Checkout URL link"
4027
+ msgstr "رابط URL إتمام الشراء"
4028
+
4029
+ #: core/class-settings.php:456
4030
+ msgctxt "admin settings"
4031
+ msgid "Renewal Reminders"
4032
+ msgstr "رسائل تذكير التجديد"
4033
+
4034
+ #: core/class-settings.php:459
4035
+ msgctxt "admin settings"
4036
+ msgid ""
4037
+ "This section refers only to the text of the renewal/expiration notices. You can "
4038
+ "also <a>configure when the e-mails are sent</a>."
4039
+ msgstr ""
4040
+ "هذا القسم يحيل فقط إلى نص إشعارات التجديد/انتهاء التاريخ. يمكنك أيضا <a>إعداد متى "
4041
+ "يتم إرسال رسائل البريد الإلكتروني</a>."
4042
+
4043
+ #: core/class-settings.php:463
4044
+ msgctxt "admin settings"
4045
+ msgid "Pending expiration e-mail message"
4046
+ msgstr "رسالة البريد الإلكتروني أثناء انتظار انتهاء التاريخ"
4047
+
4048
+ #: core/class-settings.php:467
4049
+ msgctxt "settings"
4050
+ msgid ""
4051
+ "Sent some time before the listing expires. Applies to non-recurring renewals only."
4052
+ msgstr ""
4053
+ "ترسل أحيانا قبل انتهاء تاريخ الإعلان. تنطبق على عمليات التجديد غير المتكررة فقط."
4054
+
4055
+ #: core/class-settings.php:468 core/class-settings.php:481
4056
+ #: core/class-settings.php:494 core/class-settings.php:507
4057
+ #: core/class-settings.php:520
4058
+ msgctxt "settings"
4059
+ msgid "Listing's name (with link)"
4060
+ msgstr "إسم الإعلان (مع رابط)"
4061
+
4062
+ #: core/class-settings.php:469 core/class-settings.php:482
4063
+ #: core/class-settings.php:495 core/class-settings.php:508
4064
+ #: core/class-settings.php:521
4065
+ msgctxt "settings"
4066
+ msgid "Author's name"
4067
+ msgstr "إسم الكاتب"
4068
+
4069
+ #: core/class-settings.php:470 core/class-settings.php:483
4070
+ #: core/class-settings.php:522
4071
+ msgctxt "settings"
4072
+ msgid "Expiration date"
4073
+ msgstr "تاريخ انتهاء التاريخ"
4074
+
4075
+ #: core/class-settings.php:471
4076
+ msgctxt "settings"
4077
+ msgid "Category that is going to expire"
4078
+ msgstr "التصنيف الذي سوف ينتهي"
4079
+
4080
+ #: core/class-settings.php:472 core/class-settings.php:485
4081
+ #: core/class-settings.php:524
4082
+ msgctxt "settings"
4083
+ msgid "Link to renewal page"
4084
+ msgstr "رابط إلى صفحة التجديد"
4085
+
4086
+ #: core/class-settings.php:473 core/class-settings.php:486
4087
+ #: core/class-settings.php:498 core/class-settings.php:511
4088
+ #: core/class-settings.php:525
4089
+ msgctxt "settings"
4090
+ msgid "Link to your site"
4091
+ msgstr "رابط إلى موقعك"
4092
+
4093
+ #: core/class-settings.php:476
4094
+ msgctxt "admin settings"
4095
+ msgid "Listing Renewal e-mail message"
4096
+ msgstr "رسالة البريد الإلكتروني لتجديد الإعلان"
4097
+
4098
+ #: core/class-settings.php:480
4099
+ msgctxt "settings"
4100
+ msgid ""
4101
+ "Sent at the time of listing expiration. Applies to non-recurring renewals only."
4102
+ msgstr "ترسل وقت انتهاء تاريخ الإعلان. تنطبق على عمليات التجديد غير المتكررة فقط."
4103
+
4104
+ #: core/class-settings.php:484 core/class-settings.php:523
4105
+ msgctxt "settings"
4106
+ msgid "Category that expired"
4107
+ msgstr "التصنيف الذي انتهى وقته"
4108
+
4109
+ #: core/class-settings.php:489
4110
+ msgctxt "admin settings"
4111
+ msgid "Listing auto-renewal reminder (recurring payments)"
4112
+ msgstr "تذكير بالتجديد التلقائي للإعلان (الدفعات المتكررة)"
4113
+
4114
+ #: core/class-settings.php:493
4115
+ msgctxt "settings"
4116
+ msgid ""
4117
+ "Sent some time before the listing is auto-renewed. Applies to recurring renewals "
4118
+ "only."
4119
+ msgstr ""
4120
+ "ترسل أحيانا قبل التجديد التلقائي للإعلان. تنطبق على عمليات التجديد المتكررة فقط."
4121
+
4122
+ #: core/class-settings.php:496 core/class-settings.php:510
4123
+ msgctxt "settings"
4124
+ msgid "Renewal date"
4125
+ msgstr "تاريخ التجديد"
4126
+
4127
+ #: core/class-settings.php:497
4128
+ msgctxt "settings"
4129
+ msgid "Category that is going to be renewed"
4130
+ msgstr "التصنيف الذي سيتم تجديده"
4131
+
4132
+ #: core/class-settings.php:499
4133
+ msgctxt "settings"
4134
+ msgid "Link to manage subscriptions"
4135
+ msgstr "رابط لإدارة الاشتراكات"
4136
+
4137
+ #: core/class-settings.php:502
4138
+ msgctxt "admin settings"
4139
+ msgid "Listing Renewal e-mail message (recurring payments)"
4140
+ msgstr "رسالة البريد الإلكتروني لتجديد الإعلان (الدفعات المتكررة)"
4141
+
4142
+ #: core/class-settings.php:506
4143
+ msgctxt "settings"
4144
+ msgid "Sent after the listing is auto-renewed. Applies to recurring renewals only."
4145
+ msgstr "ترسل بعد التجديد التلقائي للإعلان. تنطبق على عمليات التجديد المتكررة فقط."
4146
+
4147
+ #: core/class-settings.php:509
4148
+ msgctxt "settings"
4149
+ msgid "Renewed category"
4150
+ msgstr "تم تجديد التصنيف"
4151
+
4152
+ #: core/class-settings.php:515
4153
+ msgctxt "admin settings"
4154
+ msgid "Renewal reminder e-mail message"
4155
+ msgstr "رسالة البريد الإلكتروني للتذكير بالتجديد"
4156
+
4157
+ #: core/class-settings.php:519
4158
+ msgctxt "settings"
4159
+ msgid ""
4160
+ "Sent some time after listing expiration and when no renewal has occurred. Applies "
4161
+ "to both recurring and non-recurring renewals."
4162
+ msgstr ""
4163
+ "ترسل أحيانا بعد انتهاء تاريخ الإعلان وحينما لا يتم التجديد. تنطبق على عمليات "
4164
+ "التجديد المتكررة وغير المتكررة."
4165
+
4166
+ #: core/class-settings.php:529
4167
+ msgctxt "admin settings"
4168
+ msgid "Payment"
4169
+ msgstr "الدفع"
4170
+
4171
+ #: core/class-settings.php:530
4172
+ msgctxt "admin settings"
4173
+ msgid "Payment Settings"
4174
+ msgstr "إعدادات الدفع"
4175
+
4176
+ #: core/class-settings.php:533
4177
+ msgctxt "admin settings"
4178
+ msgid "Turn On payments?"
4179
+ msgstr "تشغيل الدفعات؟"
4180
+
4181
+ #: core/class-settings.php:535
4182
+ msgctxt "admin settings"
4183
+ msgid "Put payment gateways in test mode?"
4184
+ msgstr "وضع بوابات الدفع في وضع الاختبار؟"
4185
+
4186
+ #: core/class-settings.php:540
4187
+ msgctxt "admin settings"
4188
+ msgid "Perform checkouts on the secure (HTTPS) version of your site?"
4189
+ msgstr "تنفيذ إنهاء الشراء على الإصدار الآمن (HTTPS) لموقع الويب الخاص بك؟"
4190
+
4191
+ #: core/class-settings.php:543
4192
+ msgctxt "admin settings"
4193
+ msgid ""
4194
+ "Recommended for added security. For this to work you need to enable HTTPS on your "
4195
+ "server and <a>obtain an SSL certificate</a>."
4196
+ msgstr ""
4197
+ "موصى به لأمن أكثر. لكي يعمل هذا أنت بحاجة إلى تمكين HTTPS على الخادم الخاص بك و "
4198
+ "<a>الحصول على شهادة SSL</a>."
4199
+
4200
+ #: core/class-settings.php:547
4201
+ msgctxt "admin settings"
4202
+ msgid "Currency Code"
4203
+ msgstr "رمز العملة"
4204
+
4205
+ #: core/class-settings.php:549
4206
+ msgctxt "admin settings"
4207
+ msgid "Australian Dollar (AUD)"
4208
+ msgstr "الدولار الأسترالي (AUD)"
4209
+
4210
+ #: core/class-settings.php:550
4211
+ msgctxt "admin settings"
4212
+ msgid "Brazilian Real (BRL)"
4213
+ msgstr "الريال البرازيلي (BRL)"
4214
+
4215
+ #: core/class-settings.php:551
4216
+ msgctxt "admin settings"
4217
+ msgid "Canadian Dollar (CAD)"
4218
+ msgstr "الدولار الكندي (CAD)"
4219
+
4220
+ #: core/class-settings.php:552
4221
+ msgctxt "admin settings"
4222
+ msgid "Czech Koruna (CZK)"
4223
+ msgstr "الكورونا التشيكية (CZK)"
4224
+
4225
+ #: core/class-settings.php:553
4226
+ msgctxt "admin settings"
4227
+ msgid "Danish Krone (DKK)"
4228
+ msgstr "الكرونة الدانماركية (DKK)"
4229
+
4230
+ #: core/class-settings.php:554
4231
+ msgctxt "admin settings"
4232
+ msgid "Euro (EUR)"
4233
+ msgstr "اليورو (EUR)"
4234
+
4235
+ #: core/class-settings.php:555
4236
+ msgctxt "admin settings"
4237
+ msgid "Hong Kong Dollar (HKD)"
4238
+ msgstr "دولار هونج كونج (HKD)"
4239
+
4240
+ #: core/class-settings.php:556
4241
+ msgctxt "admin settings"
4242
+ msgid "Hungarian Forint (HUF)"
4243
+ msgstr "الفورنت الهنغاري (HUF)"
4244
+
4245
+ #: core/class-settings.php:557
4246
+ msgctxt "admin settings"
4247
+ msgid "Israeli New Shequel (ILS)"
4248
+ msgstr "الشكيل الإسرائيلي الجديد (ILS)"
4249
+
4250
+ #: core/class-settings.php:558
4251
+ msgctxt "admin settings"
4252
+ msgid "Japanese Yen (JPY)"
4253
+ msgstr "الين الياباني (JPY)"
4254
+
4255
+ #: core/class-settings.php:559
4256
+ msgctxt "admin settings"
4257
+ msgid "Malasian Ringgit (MYR)"
4258
+ msgstr "الرينغيت الماليزي (MYR)"
4259
+
4260
+ #: core/class-settings.php:560
4261
+ msgctxt "admin settings"
4262
+ msgid "Mexican Peso (MXN)"
4263
+ msgstr "بيزو مكسيكي (MXN)"
4264
+
4265
+ #: core/class-settings.php:561
4266
+ msgctxt "admin settings"
4267
+ msgid "Norwegian Krone (NOK)"
4268
+ msgstr "الكرون النرويجي (NOK)"
4269
+
4270
+ #: core/class-settings.php:562
4271
+ msgctxt "admin settings"
4272
+ msgid "New Zealand Dollar (NZD)"
4273
+ msgstr "الدولار النيوزيلندي (NZD)"
4274
+
4275
+ #: core/class-settings.php:563
4276
+ msgctxt "admin settings"
4277
+ msgid "Philippine Peso (PHP)"
4278
+ msgstr "بيزو فلبيني (PHP)"
4279
+
4280
+ #: core/class-settings.php:564
4281
+ msgctxt "admin settings"
4282
+ msgid "Polish Zloty (PLN)"
4283
+ msgstr "الزلوتي البولندي (PLN)"
4284
+
4285
+ #: core/class-settings.php:565
4286
+ msgctxt "admin settings"
4287
+ msgid "Pound Sterling (GBP)"
4288
+ msgstr "الجنيه الإسترليني (GBP)"
4289
+
4290
+ #: core/class-settings.php:566
4291
+ msgctxt "admin settings"
4292
+ msgid "Singapore Dollar (SGD)"
4293
+ msgstr "دولار سنغافوري (SGD)"
4294
+
4295
+ #: core/class-settings.php:567
4296
+ msgctxt "admin settings"
4297
+ msgid "Swedish Krona (SEK)"
4298
+ msgstr "الكرونا السويدية (SEK)"
4299
+
4300
+ #: core/class-settings.php:568
4301
+ msgctxt "admin settings"
4302
+ msgid "Swiss Franc (CHF)"
4303
+ msgstr "الفرنك السويسري (CHF)"
4304
+
4305
+ #: core/class-settings.php:569
4306
+ msgctxt "admin settings"
4307
+ msgid "Taiwan Dollar (TWD)"
4308
+ msgstr "الدولار التايواني (TWD)"
4309
+
4310
+ #: core/class-settings.php:570
4311
+ msgctxt "admin settings"
4312
+ msgid "Thai Baht (THB)"
4313
+ msgstr "البات التايلندي (THB)"
4314
+
4315
+ #: core/class-settings.php:571
4316
+ msgctxt "admin settings"
4317
+ msgid "Turkish Lira (TRY)"
4318
+ msgstr "الليرة التركية (TRY)"
4319
+
4320
+ #: core/class-settings.php:572
4321
+ msgctxt "admin settings"
4322
+ msgid "U.S. Dollar (USD)"
4323
+ msgstr "الدولار الأمريكي (USD)"
4324
+
4325
+ #: core/class-settings.php:576
4326
+ msgctxt "admin settings"
4327
+ msgid "Currency Symbol"
4328
+ msgstr "رمز العملة"
4329
+
4330
+ #: core/class-settings.php:581
4331
+ msgctxt "admin settings"
4332
+ msgid "Currency symbol display"
4333
+ msgstr "عرض رمز العملة"
4334
+
4335
+ #: core/class-settings.php:585
4336
+ msgctxt "admin settings"
4337
+ msgid "Show currency symbol on the left"
4338
+ msgstr "إظهار رمز العملة على اليسار"
4339
+
4340
+ #: core/class-settings.php:586
4341
+ msgctxt "admin settings"
4342
+ msgid "Show currency symbol on the right"
4343
+ msgstr "إظهار رمز العملة على اليمين"
4344
+
4345
+ #: core/class-settings.php:587
4346
+ msgctxt "admin settings"
4347
+ msgid "Do not show currency symbol"
4348
+ msgstr "عدم إظهار رمز العملة"
4349
+
4350
+ #: core/class-settings.php:589
4351
+ msgctxt "admin settings"
4352
+ msgid "Thank you for payment message"
4353
+ msgstr "رسالة الشكر على الدفع"
4354
+
4355
+ #: core/class-settings.php:590
4356
+ msgctxt "admin settings"
4357
+ msgid ""
4358
+ "Thank you for your payment. Your payment is being verified and your listing "
4359
+ "reviewed. The verification and review process could take up to 48 hours."
4360
+ msgstr ""
4361
+ "شكرا لك على الدفع. يتم الآن التحقق من الدفع وفحص إعلانك. يمكن أن تأخذ عملية التحقق "
4362
+ "والمراجعة مدة 48 ساعة."
4363
+
4364
+ #: core/class-settings.php:595
4365
+ msgctxt "admin settings"
4366
+ msgid "Ask users to come back for abandoned payments?"
4367
+ msgstr "أطلب من المستخدمين العودة للمدفوعات المهجورة؟"
4368
+
4369
+ #: core/class-settings.php:598
4370
+ msgctxt "admin settings"
4371
+ msgid ""
4372
+ "An abandoned payment is when a user attempts to place a listing and gets to the "
4373
+ "end, but fails to complete their payment for the listing. This results in listings "
4374
+ "that look like they failed, when the user simply didn't complete the transaction. "
4375
+ "BD can remind them to come back and continue."
4376
+ msgstr ""
4377
+ "دفعة مهجورة هي عندما يحاول مستخدم وضع إعلان ويصل إلى النهاية، ولكنه يفشل في إتمام "
4378
+ "الدفع للإعلان. هذا ينتج عنه أن الإعلانات تبدو وكأنها فشلت، وذلك عندما لا يكمل "
4379
+ "المستخدم المعاملة ببساطة. دليل الأعمال يستطيع تذكيرهم للعودة والاستمرار."
4380
+
4381
+ #: core/class-settings.php:604
4382
+ msgctxt "admin settings"
4383
+ msgid "Listing abandonment threshold (hours)"
4384
+ msgstr "عتبة التخلي على الإعلان (ساعات)"
4385
+
4386
+ #: core/class-settings.php:609
4387
+ msgctxt "admin settings"
4388
+ msgid ""
4389
+ "Listings with pending payments are marked as abandoned after this time. You can "
4390
+ "also <a>customize the e-mail</a> users receive."
4391
+ msgstr ""
4392
+ "الإعلانات مع الدفعات المعلقة تعد متخلى عنها بعد هذا الوقت. يمكنك أيضا <a>تخصيص "
4393
+ "البريد الإلكتروني</a> الذي يتلقاه المستخدمون."
4394
+
4395
+ #: core/class-settings.php:614
4396
+ msgctxt "admin settings"
4397
+ msgid "Themes"
4398
+ msgstr "القوالب"
4399
+
4400
+ #: core/class-settings.php:619
4401
+ msgctxt "admin settings"
4402
+ msgid "Theme button style"
4403
+ msgstr "نمط زر القالب"
4404
+
4405
+ #: core/class-settings.php:623
4406
+ msgctxt "admin settings"
4407
+ msgid "Use the BD theme style for BD buttons"
4408
+ msgstr "إستخدم نمط قالب دليل الأعمال لأزرار دليل الأعمال"
4409
+
4410
+ #: core/class-settings.php:624
4411
+ msgctxt "admin settings"
4412
+ msgid "Use the WP theme style for BD buttons"
4413
+ msgstr "إستخدم نمط قالب ووردبريس لأزرار دليل الأعمال"
4414
+
4415
+ #: core/class-settings.php:631
4416
+ msgctxt "admin settings"
4417
+ msgid "Image"
4418
+ msgstr "الصورة"
4419
+
4420
+ #: core/class-settings.php:632
4421
+ msgctxt "admin settings"
4422
+ msgid ""
4423
+ "Any changes to these settings will affect new listings only. Existing listings "
4424
+ "will not be affected. If you wish to change existing listings, you will need to "
4425
+ "re-upload the image(s) on that listing after changing things here."
4426
+ msgstr ""
4427
+ "أية تغييرات على هذه الإعدادات سوف تؤثر على الإعلانات الجديدة فقط. الإعلانات "
4428
+ "الموجودة لن تتأثر. إذا كنت ترغب في تغيير الإعلانات الحالية، تحتاج إلى إعادة تحميل "
4429
+ "الصورة (الصور) إلى تلك الإعلانات بعد تغيير الأشياء هنا."
4430
+
4431
+ #: core/class-settings.php:633
4432
+ msgctxt "admin settings"
4433
+ msgid "Image Settings"
4434
+ msgstr "إعدادات الصورة"
4435
+
4436
+ #: core/class-settings.php:634
4437
+ msgctxt "admin settings"
4438
+ msgid "Allow images?"
4439
+ msgstr "السماح بالصور؟"
4440
+
4441
+ #: core/class-settings.php:636
4442
+ msgctxt "admin settings"
4443
+ msgid "Min Image File Size (KB)"
4444
+ msgstr "أقل حجم لملف الصورة (KB)"
4445
+
4446
+ #: core/class-settings.php:637
4447
+ msgctxt "admin settings"
4448
+ msgid "Max Image File Size (KB)"
4449
+ msgstr "أقصى حجم لملف الصورة (KB)"
4450
+
4451
+ #: core/class-settings.php:639
4452
+ msgctxt "admin settings"
4453
+ msgid "Min image width (px)"
4454
+ msgstr "أقل عرض للصورة (px)"
4455
+
4456
+ #: core/class-settings.php:640
4457
+ msgctxt "admin settings"
4458
+ msgid "Min image height (px)"
4459
+ msgstr "أقل ارتفاع للصورة (px)"
4460
+
4461
+ #: core/class-settings.php:642
4462
+ msgctxt "admin settings"
4463
+ msgid "Max image width (px)"
4464
+ msgstr "أقصى عرض للصورة (px)"
4465
+
4466
+ #: core/class-settings.php:643
4467
+ msgctxt "admin settings"
4468
+ msgid "Max image height (px)"
4469
+ msgstr "أقصى ارتفاع للصورة (px)"
4470
+
4471
+ #: core/class-settings.php:645
4472
+ msgctxt "admin settings"
4473
+ msgid "Turn on thickbox/lightbox?"
4474
+ msgstr "تشغيل thickbox/lightbox؟"
4475
+
4476
+ #: core/class-settings.php:645
4477
+ msgctxt "admin settings"
4478
+ msgid "Uncheck if it conflicts with other elements or plugins installed on your site"
4479
+ msgstr ""
4480
+ "قم بإلغاء التحديد إذا كان يتعارض مع العناصر الأخرى أو الإضافات المثبتة على موقعك"
4481
+
4482
+ #: core/class-settings.php:647
4483
+ msgctxt "admin settings"
4484
+ msgid "Thumbnails"
4485
+ msgstr "الصور المصغرة"
4486
+
4487
+ #: core/class-settings.php:648
4488
+ msgctxt "admin settings"
4489
+ msgid "Thumbnail width (px)"
4490
+ msgstr "عرض الصور المصغرة (px)"
4491
+
4492
+ #: core/class-settings.php:649
4493
+ msgctxt "admin settings"
4494
+ msgid "Thumbnail height (px)"
4495
+ msgstr "ارتفاع الصورة المصغرة (px)"
4496
+
4497
+ #: core/class-settings.php:652
4498
+ msgctxt "admin settings"
4499
+ msgid "Crop thumbnails to exact dimensions?"
4500
+ msgstr "قطع الصور المصغرة للأبعاد المناسبة؟"
4501
+
4502
+ #: core/class-settings.php:655
4503
+ msgctxt "admin settings"
4504
+ msgid ""
4505
+ "When enabled images will match exactly the dimensions above but part of the image "
4506
+ "may be cropped out. If disabled, image thumbnails will be resized to match the "
4507
+ "specified width and their height will be adjusted proportionally. Depending on the "
4508
+ "uploaded images, thumbnails may have different heights."
4509
+ msgstr ""
4510
+ "عند تمكين الصور ستطابق تماما الأبعاد أعلاه لكن جزءا من الصورة يمكن أن يقطع. في "
4511
+ "حالة تعطيلها، سيتم تغيير حجم الصور المصغرة لمطابقة العرض المحدد وسيتم تعديل "
4512
+ "الارتفاع بشكل متناسب. اعتماداً على الصور المرفوعة, قد تكون ارتفاعات الصور المصغرة "
4513
+ "مختلفة."
4514
+
4515
+ #: core/class-settings.php:661
4516
+ msgctxt "admin settings"
4517
+ msgid "Number of free images"
4518
+ msgstr "عدد الصور المجانية"
4519
+
4520
+ #: core/class-settings.php:666
4521
+ msgctxt "admin settings"
4522
+ msgid ""
4523
+ "For paid listing images, configure that by adding or editing a <a>Fee Plan</a> "
4524
+ "instead of this setting, which is ignored for paid listings."
4525
+ msgstr ""
4526
+ "بالنسبة لصور الإعلانات المدفوعة، قم بإعدادها بإضافة أو تحرير <a>رسوم الخطة</a> "
4527
+ "بدلاً من هذا الإعداد، الذي هو تجاهل الإعلانات المدفوعة."
4528
+
4529
+ #: core/class-settings.php:669
4530
+ msgctxt "admin settings"
4531
+ msgid "Use default picture for listings with no picture?"
4532
+ msgstr "إستخدام الصورة الافتراضية للإعلانات التي بلا صورة؟"
4533
+
4534
+ #: core/class-settings.php:670
4535
+ msgctxt "admin settings"
4536
+ msgid "Show Thumbnail on main listings page?"
4537
+ msgstr "إظهار صورة مصغرة في صفحة الإعلانات الرئيسية؟"
4538
+
4539
+ #: core/class-settings.php:726
4540
+ msgctxt "admin settings"
4541
+ msgid ""
4542
+ "Could not copy the AJAX compatibility plugin \"%s\". Compatibility mode was not "
4543
+ "activated."
4544
+ msgstr "تعذر نسخ إضافة التوافق أجاكس \"%s\". لم يتم تفعيل وضع التوافق."
4545
+
4546
+ #: core/class-settings.php:734
4547
+ msgctxt "admin settings"
4548
+ msgid ""
4549
+ "Could not activate AJAX Compatibility mode: the directory \"%s\" could not be "
4550
+ "created."
4551
+ msgstr "لا يمكن تفعيل وضع التوافق أجاكس: تعذر إنشاء المجلد \"%s\"."
4552
+
4553
+ #: core/class-settings.php:743
4554
+ msgctxt "admin settings"
4555
+ msgid ""
4556
+ "Could not remove the \"Business Directory Plugin - AJAX Compatibility Module\". "
4557
+ "Please remove the file \"%s\" manually or deactivate the plugin."
4558
+ msgstr ""
4559
+ "تعذر إزالة \"إضافة دليل الأعمال – وحدة التوافق أجاكس\". المرجو إزالة الملف \"%s\" "
4560
+ "يدوياً أو قم بإلغاء تفعيل الإضافة."
4561
+
4562
+ #: core/class-settings.php:1063
4563
+ msgctxt "settings"
4564
+ msgid "Deactivate License"
4565
+ msgstr "تعطيل الترخيص"
4566
+
4567
+ #: core/class-settings.php:1065
4568
+ msgctxt "settings"
4569
+ msgid "Deactivating license..."
4570
+ msgstr "ترخيص معطل..."
4571
+
4572
+ #: core/class-settings.php:1068
4573
+ msgctxt "settings"
4574
+ msgid "Activate License"
4575
+ msgstr "تفعيل الترخيص"
4576
+
4577
+ #: core/class-settings.php:1070
4578
+ msgctxt "settings"
4579
+ msgid "Activating license..."
4580
+ msgstr "ترخيص مفعل..."
4581
+
4582
+ #: core/class-settings.php:1093
4583
+ msgctxt "admin settings"
4584
+ msgid "Valid placeholders: %s"
4585
+ msgstr "العناصر النائبة صالحة: %s"
4586
+
4587
+ #: core/class-settings.php:1127
4588
+ msgctxt "settings email"
4589
+ msgid "Click to edit e-mail"
4590
+ msgstr "إضغط لتعديل البريد الإلكتروني"
4591
+
4592
+ #: core/class-settings.php:1128
4593
+ msgctxt "settings email"
4594
+ msgid "Click to edit"
4595
+ msgstr "اضغط لتعديل"
4596
+
4597
+ #: core/class-settings.php:1141
4598
+ msgctxt "settings email"
4599
+ msgid "E-Mail Subject"
4600
+ msgstr "عنوان البريد الإلكتروني"
4601
+
4602
+ #: core/class-settings.php:1152
4603
+ msgctxt "settings email"
4604
+ msgid "E-Mail Body"
4605
+ msgstr "نص البريد الإلكتروني"
4606
+
4607
+ #: core/class-settings.php:1163
4608
+ msgctxt "settings email"
4609
+ msgid "You can use the following placeholders:"
4610
+ msgstr "يمكنك استخدام العناصر النائبة التالية:"
4611
+
4612
+ #: core/class-settings.php:1186
4613
+ msgctxt "settings email"
4614
+ msgid "Preview e-mail"
4615
+ msgstr "معاينة البريد الإلكتروني"
4616
+
4617
+ #: core/class-settings.php:1187
4618
+ msgctxt "settings email"
4619
+ msgid "Cancel"
4620
+ msgstr "إلغاء"
4621
+
4622
+ #: core/class-settings.php:1188
4623
+ msgctxt "settings email"
4624
+ msgid "Save Changes"
4625
+ msgstr "حفظ التعديلات"
4626
+
4627
+ #: core/class-settings.php:1207
4628
+ msgctxt "settings email"
4629
+ msgid "Site title"
4630
+ msgstr "إسم الموقع"
4631
+
4632
+ #: core/class-settings.php:1210
4633
+ msgctxt "settings email"
4634
+ msgid "Site title (with link)"
4635
+ msgstr "إسم الموقع (مع الرابط)"
4636
+
4637
+ #: core/class-settings.php:1213
4638
+ msgctxt "settings email"
4639
+ msgid "Site address (with link)"
4640
+ msgstr "عنوان الموقع (مع الرابط)"
4641
+
4642
+ #: core/class-settings.php:1216
4643
+ msgctxt "settings email"
4644
+ msgid "Directory URL (with link)"
4645
+ msgstr "رابط URL الدليل (مع الرابط)"
4646
+
4647
+ #: core/class-settings.php:1219
4648
+ msgctxt "settings email"
4649
+ msgid "Current date"
4650
+ msgstr "التاريخ الحالي"
4651
+
4652
+ #: core/class-settings.php:1222
4653
+ msgctxt "settings email"
4654
+ msgid "Current time"
4655
+ msgstr "الوقت الحالي"
4656
+
4657
+ #: core/class-wpbdp.php:30
4658
+ msgctxt "post type general name"
4659
+ msgid "Directory"
4660
+ msgstr "الدليل"
4661
+
4662
+ #: core/class-wpbdp.php:31
4663
+ msgctxt "post type singular name"
4664
+ msgid "Listing"
4665
+ msgstr "إعلان"
4666
+
4667
+ #: core/class-wpbdp.php:32
4668
+ msgctxt "listing"
4669
+ msgid "Add New Listing"
4670
+ msgstr "إضافة إعلان جديد"
4671
+
4672
+ #: core/class-wpbdp.php:33
4673
+ msgctxt "post type"
4674
+ msgid "Add New Listing"
4675
+ msgstr "إضافة إعلان جديد"
4676
+
4677
+ #: core/class-wpbdp.php:34
4678
+ msgid "Edit Listing"
4679
+ msgstr "تحرير الإعلان"
4680
+
4681
+ #: core/class-wpbdp.php:35
4682
+ msgid "New Listing"
4683
+ msgstr "إعلان جديد"
4684
+
4685
+ #: core/class-wpbdp.php:36
4686
+ msgid "View Listing"
4687
+ msgstr "عرض الإعلان"
4688
+
4689
+ #: core/class-wpbdp.php:37
4690
+ msgid "Search Listings"
4691
+ msgstr "البحث في الإعلانات"
4692
+
4693
+ #: core/class-wpbdp.php:38
4694
+ msgid "No listings found"
4695
+ msgstr "لم يتم العثور على إعلانات"
4696
+
4697
+ #: core/class-wpbdp.php:39
4698
+ msgid "No listings found in trash"
4699
+ msgstr "لم يتم العثور على إعلانات في سلة المهملات"
4700
+
4701
+ #: core/class-wpbdp.php:55
4702
+ msgid "Directory Categories"
4703
+ msgstr "تصنيفات الدليل"
4704
+
4705
+ #: core/class-wpbdp.php:56
4706
+ msgid "Directory Category"
4707
+ msgstr "تصنيف الدليل"
4708
+
4709
+ #: core/class-wpbdp.php:67
4710
+ msgid "Directory Tags"
4711
+ msgstr "وسوم الدليل"
4712
+
4713
+ #: core/class-wpbdp.php:68
4714
+ msgid "Directory Tag"
4715
+ msgstr "وسم الدليل"
4716
+
4717
+ #: core/compatibility/class-navxt-integration.php:159
4718
+ msgctxt "navxt"
4719
+ msgid "Submit Listing"
4720
+ msgstr "إضافة إعلان"
4721
+
4722
+ #: core/compatibility/class-navxt-integration.php:163
4723
+ msgctxt "navxt"
4724
+ msgid "Edit Listing"
4725
+ msgstr "تحرير الإعلان"
4726
+
4727
+ #: core/compatibility/class-navxt-integration.php:167
4728
+ msgctxt "navxt"
4729
+ msgid "Search"
4730
+ msgstr "بحث"
4731
+
4732
+ #: core/fieldtypes/class-fieldtypes-checkbox.php:9
4733
+ msgctxt "form-fields api"
4734
+ msgid "Checkbox"
4735
+ msgstr "خانة الاختيار"
4736
+
4737
+ #: core/fieldtypes/class-fieldtypes-checkbox.php:72
4738
+ #: core/fieldtypes/class-fieldtypes-radiobutton.php:68
4739
+ #: core/fieldtypes/class-fieldtypes-select.php:138
4740
+ msgctxt "form-fields admin"
4741
+ msgid "Field Options (for select lists, radio buttons and checkboxes)."
4742
+ msgstr "خيارات الحقل (لتحديد القوائم وأزرار الخيارات وخانات الاختيار)."
4743
+
4744
+ #: core/fieldtypes/class-fieldtypes-checkbox.php:93
4745
+ #: core/fieldtypes/class-fieldtypes-radiobutton.php:87
4746
+ #: core/fieldtypes/class-fieldtypes-select.php:166
4747
+ msgctxt "form-fields admin"
4748
+ msgid "Field list of options is required."
4749
+ msgstr "قائمة خيارات الحقل مطلوبة."
4750
+
4751
+ #: core/fieldtypes/class-fieldtypes-date.php:9
4752
+ msgctxt "form-fields api"
4753
+ msgid "Date Field"
4754
+ msgstr "حقل التاريخ"
4755
+
4756
+ #: core/fieldtypes/class-fieldtypes-date.php:32
4757
+ msgid "%s (ex. %s)"
4758
+ msgstr "%s (ex. %s)"
4759
+
4760
+ #: core/fieldtypes/class-fieldtypes-date.php:36
4761
+ msgctxt "form-fields api"
4762
+ msgid "Date Format"
4763
+ msgstr "صيغة التاريخ"
4764
+
4765
+ #: core/fieldtypes/class-fieldtypes-date.php:61
4766
+ msgctxt "date field"
4767
+ msgid "%s must be in the format %s."
4768
+ msgstr "%s يجب أن يكون بتنسيق %s."
4769
+
4770
+ #: core/fieldtypes/class-fieldtypes-date.php:64
4771
+ msgctxt "date field"
4772
+ msgid "%s must be a valid date."
4773
+ msgstr "%s يجب أن يكون تاريخاً صالحاً."
4774
+
4775
+ #: core/fieldtypes/class-fieldtypes-facebook.php:6
4776
+ msgctxt "form-fields api"
4777
+ msgid "Social Site (Facebook page)"
4778
+ msgstr "الموقع الاجتماعي (صفحة الفيسبوك)"
4779
+
4780
+ #: core/fieldtypes/class-fieldtypes-image.php:6
4781
+ msgctxt "form-fields api"
4782
+ msgid "Image (file upload)"
4783
+ msgstr "صورة (رفع الملف)"
4784
+
4785
+ #: core/fieldtypes/class-fieldtypes-image.php:38
4786
+ msgctxt "form-fields-api"
4787
+ msgid "Remove"
4788
+ msgstr "إزالة"
4789
+
4790
+ #: core/fieldtypes/class-fieldtypes-linkedin.php:6
4791
+ msgctxt "form-fields api"
4792
+ msgid "Social Site (LinkedIn profile)"
4793
+ msgstr "الموقع الاجتماعي (صفحة LinkedIn)"
4794
+
4795
+ #: core/fieldtypes/class-fieldtypes-linkedin.php:21
4796
+ msgctxt "form-fields api"
4797
+ msgid "You can add your Company ID or profile URL here."
4798
+ msgstr "يمكنك إضافة معرف شركتك أو عنوان URL صفحتك الشخصية."
4799
+
4800
+ #: core/fieldtypes/class-fieldtypes-multiselect.php:6
4801
+ msgctxt "form-fields api"
4802
+ msgid "Multiple select list"
4803
+ msgstr "قائمة تحديد متعددة"
4804
+
4805
+ #: core/fieldtypes/class-fieldtypes-multiselect.php:11
4806
+ msgctxt "form-fields api"
4807
+ msgid "Multiselect List"
4808
+ msgstr "قائمة تحديد متعددة"
4809
+
4810
+ #: core/fieldtypes/class-fieldtypes-phone-number.php:13
4811
+ msgctxt "form fields"
4812
+ msgid "Phone Number"
4813
+ msgstr "رقم الهاتف"
4814
+
4815
+ #: core/fieldtypes/class-fieldtypes-radiobutton.php:9
4816
+ msgctxt "form-fields api"
4817
+ msgid "Radio button"
4818
+ msgstr "زر اختيار"
4819
+
4820
+ #: core/fieldtypes/class-fieldtypes-select.php:8
4821
+ msgctxt "form-fields api"
4822
+ msgid "Select List"
4823
+ msgstr "قائمة منسدلة"
4824
+
4825
+ #: core/fieldtypes/class-fieldtypes-select.php:68
4826
+ msgctxt "form-fields-api category-select"
4827
+ msgid "-- Choose Terms --"
4828
+ msgstr "- اختيار البنود -"
4829
+
4830
+ #: core/fieldtypes/class-fieldtypes-select.php:68
4831
+ #: core/fieldtypes/class-fieldtypes-select.php:103
4832
+ msgctxt "form-fields-api category-select"
4833
+ msgid "-- Choose One --"
4834
+ msgstr "-- اختار واحد --"
4835
+
4836
+ #: core/fieldtypes/class-fieldtypes-select.php:149
4837
+ msgctxt "form-fields admin"
4838
+ msgid "Allow empty selection on search?"
4839
+ msgstr "السماح بالتحديد الفارغ في البحث؟"
4840
+
4841
+ #: core/fieldtypes/class-fieldtypes-textarea.php:6
4842
+ msgctxt "form-fields api"
4843
+ msgid "Textarea"
4844
+ msgstr "مربع النص"
4845
+
4846
+ #: core/fieldtypes/class-fieldtypes-textarea.php:50
4847
+ msgctxt "form-fields admin"
4848
+ msgid "Allow HTML input for this field?"
4849
+ msgstr "السماح بإدخال HTML لهذا الحقل؟"
4850
+
4851
+ #: core/fieldtypes/class-fieldtypes-textarea.php:53
4852
+ msgctxt "form-fields admin"
4853
+ msgid "Allow IFRAME tags in content?"
4854
+ msgstr "السماح لوسوم IFRAME في المحتوى؟"
4855
+
4856
+ #: core/fieldtypes/class-fieldtypes-textarea.php:56
4857
+ msgctxt "admin form-fields"
4858
+ msgid ""
4859
+ "Enabling iframe support in your listings can allow users to execute arbitrary "
4860
+ "scripts on a page if they want, which can possibly infect your site with malware. "
4861
+ "We do NOT recommend using this setting UNLESS you are posting the listings "
4862
+ "yourself and have sole control over the content. Are you sure you want to enable "
4863
+ "this?"
4864
+ msgstr ""
4865
+ "تمكين دعم iframe في الإعلانات يسمح للمستخدمين بتنفيذ سكربتات تعسفية على الصفحة إذا "
4866
+ "كانوا يريدون، والتي يمكن أن تصيب ربما موقع الويب الخاص بك بالبرامج الضارة. لا نوصي "
4867
+ "باستخدام هذا الإعداد إلا إذا كنت تقوم إضافة الإعلانات بنفسك وأنت الوحيد من يتحكم "
4868
+ "في المحتوى. هل أنت متأكد من أنك تريد تمكين هذا؟"
4869
+
4870
+ #: core/fieldtypes/class-fieldtypes-textarea.php:57
4871
+ msgctxt "form-fields admin"
4872
+ msgid "No"
4873
+ msgstr "لا"
4874
+
4875
+ #: core/fieldtypes/class-fieldtypes-textarea.php:58
4876
+ msgctxt "form-fields admin"
4877
+ msgid "Yes"
4878
+ msgstr "نعم"
4879
+
4880
+ #: core/fieldtypes/class-fieldtypes-textarea.php:63
4881
+ msgctxt "form-fields admin"
4882
+ msgid "Allow WordPress shortcodes in this field?"
4883
+ msgstr "السماح بالأكواد القصيرة لووردبريس في هذا الحقل؟"
4884
+
4885
+ #: core/fieldtypes/class-fieldtypes-textarea.php:66
4886
+ msgctxt "form-fields admin"
4887
+ msgid "Display a WYSIWYG editor on the frontend?"
4888
+ msgstr "عرض محرر WYSIWYG في واجهة الموقع؟"
4889
+
4890
+ #: core/fieldtypes/class-fieldtypes-textarea.php:69
4891
+ msgctxt "form-fields admin"
4892
+ msgid ""
4893
+ "<b>Warning:</b> Users can use this feature to get around your image limits in fee "
4894
+ "plans."
4895
+ msgstr ""
4896
+ "<b>تحذير:</b> يمكن للمستخدمين استخدام هذه الميزة للقيام بتحايل حول قيود الصورة "
4897
+ "الخاصة بك في رسوم الخطط."
4898
+
4899
+ #: core/fieldtypes/class-fieldtypes-textarea.php:70
4900
+ msgctxt "form-fields admin"
4901
+ msgid "Allow images in WYSIWYG editor?"
4902
+ msgstr "السماح بالصور في محرر WYSIWYG؟"
4903
+
4904
+ #: core/fieldtypes/class-fieldtypes-textarea.php:73
4905
+ msgctxt "form-fields admin"
4906
+ msgid ""
4907
+ "<b>Advanced users only!</b> Unless you've been told to change this, don't switch "
4908
+ "it unless you know what you're doing."
4909
+ msgstr ""
4910
+ "<b>للمستخدمين المتقدمين فقط!</b> إلا إذا كنت قيل لك بتغيير هذا، لا تبدل إلا إذا "
4911
+ "كنت تعرف ما تفعله."
4912
+
4913
+ #: core/fieldtypes/class-fieldtypes-textarea.php:74
4914
+ msgctxt "form-fields admin"
4915
+ msgid "Apply \"the_content\" filter before displaying this field?"
4916
+ msgstr "تطبيق عامل تصفية \"the_content\" قبل عرض هذا الحقل؟"
4917
+
4918
+ #: core/fieldtypes/class-fieldtypes-textfield.php:5
4919
+ msgctxt "form-fields api"
4920
+ msgid "Textfield"
4921
+ msgstr "حقل النص"
4922
+
4923
+ #: core/fieldtypes/class-fieldtypes-textfield.php:41
4924
+ msgctxt "form-fields api"
4925
+ msgid "Format 01/31/1969"
4926
+ msgstr "تنسيق 31/01/1969"
4927
+
4928
+ #: core/fieldtypes/class-fieldtypes-twitter.php:6
4929
+ msgctxt "form-fields api"
4930
+ msgid "Social Site (Twitter handle)"
4931
+ msgstr "الموقع الاجتماعي (التعامل مع التغريدات)"
4932
+
4933
+ #: core/fieldtypes/class-fieldtypes-url.php:5
4934
+ msgctxt "form-fields api"
4935
+ msgid "URL Field"
4936
+ msgstr "حقل الرابط"
4937
+
4938
+ #: core/fieldtypes/class-fieldtypes-url.php:22
4939
+ msgctxt "form-fields admin"
4940
+ msgid "Open link in a new window?"
4941
+ msgstr "إفتح الرابط في نافذة جديدة"
4942
+
4943
+ #: core/fieldtypes/class-fieldtypes-url.php:25
4944
+ msgctxt "form-fields admin"
4945
+ msgid "Use rel=\"nofollow\" when displaying the link?"
4946
+ msgstr "إستخدام rel = \"nofollow\" عند عرض الارتباط؟"
4947
+
4948
+ #: core/fieldtypes/class-fieldtypes-url.php:134
4949
+ msgctxt "form-fields api"
4950
+ msgid "URL:"
4951
+ msgstr "رابط URL:"
4952
+
4953
+ #: core/fieldtypes/class-fieldtypes-url.php:141
4954
+ msgctxt "form-fields api"
4955
+ msgid "Link Text (optional):"
4956
+ msgstr "رابط نصي (اختياري):"
4957
+
4958
+ #: core/form-fields.php:31
4959
+ msgctxt "form-fields api"
4960
+ msgid "Post Title"
4961
+ msgstr "عنوان المقالة"
4962
+
4963
+ #: core/form-fields.php:32
4964
+ msgctxt "form-fields api"
4965
+ msgid "Post Content"
4966
+ msgstr "محتوى المقالة"
4967
+
4968
+ #: core/form-fields.php:33
4969
+ msgctxt "form-fields api"
4970
+ msgid "Post Excerpt"
4971
+ msgstr "مقطتف المقالة"
4972
+
4973
+ #: core/form-fields.php:34
4974
+ msgctxt "form-fields api"
4975
+ msgid "Post Category"
4976
+ msgstr "تصنيف المقالة"
4977
+
4978
+ #: core/form-fields.php:35
4979
+ msgctxt "form-fields api"
4980
+ msgid "Post Tags"
4981
+ msgstr "وسوم المقالة"
4982
+
4983
+ #: core/form-fields.php:36
4984
+ msgctxt "form-fields api"
4985
+ msgid "Post Metadata"
4986
+ msgstr "البيانات الوصفية للمقالة"
4987
+
4988
+ #: core/form-fields.php:38
4989
+ msgctxt "form-fields api"
4990
+ msgid "Custom"
4991
+ msgstr "تخصيص"
4992
+
4993
+ #: core/form-fields.php:314
4994
+ msgid "Business Name"
4995
+ msgstr "الإسم"
4996
+
4997
+ #: core/form-fields.php:316
4998
+ msgid "Business Genre"
4999
+ msgstr "التصنيف"
5000
+
5001
+ #: core/form-fields.php:318
5002
+ msgid "Short Business Description"
5003
+ msgstr "وصف قصير"
5004
+
5005
+ #: core/form-fields.php:320
5006
+ msgid "Long Business Description"
5007
+ msgstr "وصف مطول"
5008
+
5009
+ #: core/form-fields.php:322
5010
+ msgid "Business Website Address"
5011
+ msgstr "عنوان الموقع"
5012
+
5013
+ #: core/form-fields.php:324
5014
+ msgid "Business Phone Number"
5015
+ msgstr "رقم الهاتف"
5016
+
5017
+ #: core/form-fields.php:326
5018
+ msgid "Business Fax"
5019
+ msgstr "رقم الفاكس"
5020
+
5021
+ #: core/form-fields.php:328
5022
+ msgid "Business Contact Email"
5023
+ msgstr "البريد الإلكتروني"
5024
+
5025
+ #: core/form-fields.php:330
5026
+ msgid "Business Tags"
5027
+ msgstr "الوسوم"
5028
+
5029
+ #: core/form-fields.php:332
5030
+ msgid "Business Address"
5031
+ msgstr "العنوان"
5032
+
5033
+ #: core/form-fields.php:334
5034
+ msgid "ZIP Code"
5035
+ msgstr "الرمز البريدي"
5036
+
5037
+ #: core/form-fields.php:454
5038
+ msgctxt "form-fields-api"
5039
+ msgid "Email Validator"
5040
+ msgstr "المصادقة على البريد الإلكتروني"
5041
+
5042
+ #: core/form-fields.php:455
5043
+ msgctxt "form-fields-api"
5044
+ msgid "URL Validator"
5045
+ msgstr "المصادقة على URL"
5046
+
5047
+ #: core/form-fields.php:456
5048
+ msgctxt "form-fields-api"
5049
+ msgid "Whole Number Validator"
5050
+ msgstr "المصادقة على رقم صحيح"
5051
+
5052
+ #: core/form-fields.php:457
5053
+ msgctxt "form-fields-api"
5054
+ msgid "Decimal Number Validator"
5055
+ msgstr "المصادقة على رقم عشري"
5056
+
5057
+ #: core/form-fields.php:458
5058
+ msgctxt "form-fields-api"
5059
+ msgid "Date Validator"
5060
+ msgstr "المصادقة على التاريخ"
5061
+
5062
+ #: core/form-fields.php:465
5063
+ msgctxt "form-fields-api validation"
5064
+ msgid "Field"
5065
+ msgstr "حقل"
5066
+
5067
+ #: core/form-fields.php:481 core/form-fields.php:485
5068
+ msgctxt "form-fields-api validation"
5069
+ msgid "%s is required."
5070
+ msgstr "%s مطلوب."
5071
+
5072
+ #: core/form-fields.php:494 core/form-fields.php:501
5073
+ msgctxt "form-fields-api validation"
5074
+ msgid "%s is badly formatted. Valid URL format required. Include http://"
5075
+ msgstr "%s مهيأ بشكل سيئ. المطلوب تنسيق URL صالح. يتضمن http://"
5076
+
5077
+ #: core/form-fields.php:515
5078
+ msgctxt "form-fields-api validation"
5079
+ msgid "%s is badly formatted. Valid Email format required."
5080
+ msgstr "%s مهيأ بشكل سيئ. المطلوب تنسيق بريد إلكتروني صالح."
5081
+
5082
+ #: core/form-fields.php:521
5083
+ msgctxt "form-fields-api validation"
5084
+ msgid "%s must be a number. Decimal values are not allowed."
5085
+ msgstr "%s يجب أن تكون عددا. لا يسمح بالقيم العشرية."
5086
+
5087
+ #: core/form-fields.php:527
5088
+ msgctxt "form-fields-api validation"
5089
+ msgid "%s must be a number."
5090
+ msgstr "%s يجب أن تكون عددا."
5091
+
5092
+ #: core/form-fields.php:540
5093
+ msgctxt "form-fields-api validation"
5094
+ msgid "%s must be in the format %s."
5095
+ msgstr "%s يجب أن يكون بتنسيق %s."
5096
+
5097
+ #: core/form-fields.php:575
5098
+ msgctxt "form-fields-api validation"
5099
+ msgid "%s must be a valid date."
5100
+ msgstr "%s يجب أن يكون تاريخاً صالحاً."
5101
+
5102
+ #: core/form-fields.php:586
5103
+ msgctxt "form-fields-api validation"
5104
+ msgid "%s is invalid. Value most be one of %s."
5105
+ msgstr "%s غير صالح. يجب أن تكون القيمة واحدة من %s."
5106
+
5107
+ #: core/gateways-authorize-net.php:19
5108
+ msgid "Activate Authorize.net?"
5109
+ msgstr "تفعيل Authorize.net؟"
5110
+
5111
+ #: core/gateways-authorize-net.php:25
5112
+ msgid "Login ID"
5113
+ msgstr "معرف تسجيل الدخول"
5114
+
5115
+ #: core/gateways-authorize-net.php:29
5116
+ msgid "Transaction Key"
5117
+ msgstr "مفتاح المعاملة"
5118
+
5119
+ #: core/gateways-authorize-net.php:40
5120
+ msgctxt "authorize-net"
5121
+ msgid "Login ID is missing."
5122
+ msgstr "معرف تسجيل الدخول مفقود."
5123
+
5124
+ #: core/gateways-authorize-net.php:43
5125
+ msgctxt "authorize-net"
5126
+ msgid "Transaction Key is missing."
5127
+ msgstr "مفتاح المعاملة مفقود."
5128
+
5129
+ #: core/gateways-authorize-net.php:92
5130
+ msgctxt "authorize-net"
5131
+ msgid ""
5132
+ "The payment gateway didn't accept your credit card or billing information. The "
5133
+ "following reason was given: \"%s\"."
5134
+ msgstr ""
5135
+ "لم تقبل بوابة الدفع بطاقة الائتمان أو معلومات الفوترة الخاصة بك. وذلك للسبب "
5136
+ "التالي: \"%s\"."
5137
+
5138
+ #: core/gateways-authorize-net.php:96
5139
+ msgctxt "authorize-net"
5140
+ msgid ""
5141
+ "Your payment is being held for review by the payment gateway. The following reason "
5142
+ "was given: \"%s\"."
5143
+ msgstr "الدفع الخاص بك خاضع للمراجعة من طرف قسم الدفع. وذلك للسبب التالي: \"%s\"."
5144
+
5145
+ #: core/gateways-authorize-net.php:99 core/gateways-authorize-net.php:122
5146
+ msgctxt "authorize-net"
5147
+ msgid "Payment was rejected. The following reason was given: \"%s\"."
5148
+ msgstr "رفض الدفع. وذلك للسبب التالي: \"%s\"."
5149
+
5150
+ #: core/gateways-authorize-net.php:116
5151
+ msgctxt "authorize-net"
5152
+ msgid "Setup fee"
5153
+ msgstr "رسم التنصيب"
5154
+
5155
+ #: core/gateways-authorize-net.php:173
5156
+ msgctxt "authorize-net"
5157
+ msgid "Could not process payment."
5158
+ msgstr "تعذر معالجة الدفع."
5159
+
5160
+ #: core/gateways-dummy.php:15
5161
+ msgctxt "dummy gateway"
5162
+ msgid "Dummy"
5163
+ msgstr "وهمية"
5164
+
5165
+ #: core/gateways-dummy.php:38
5166
+ msgctxt "dummy gateway"
5167
+ msgid "Dummy Gateway"
5168
+ msgstr "بوابة وهمية"
5169
+
5170
+ #: core/gateways-dummy.php:39
5171
+ msgctxt "dummy gateway"
5172
+ msgid "New Status:"
5173
+ msgstr "الحالة الجديدة:"
5174
+
5175
+ #: core/gateways-dummy.php:41
5176
+ msgctxt "dummy gateway"
5177
+ msgid "Completed"
5178
+ msgstr "إكتمل"
5179
+
5180
+ #: core/gateways-dummy.php:43
5181
+ msgctxt "dummy gateway"
5182
+ msgid "Pending"
5183
+ msgstr " في الانتظار"
5184
+
5185
+ #: core/gateways-dummy.php:45
5186
+ msgctxt "dummy gateway"
5187
+ msgid "Canceled"
5188
+ msgstr "ألغيت"
5189
+
5190
+ #: core/gateways-dummy.php:47
5191
+ msgctxt "dummy gateway"
5192
+ msgid "Rejected"
5193
+ msgstr "مرفوض"
5194
+
5195
+ #: core/gateways-dummy.php:49
5196
+ msgctxt "dummy gateway"
5197
+ msgid "Process Payment"
5198
+ msgstr "عملية الدفع"
5199
+
5200
+ #: core/helpers/class-fs.php:112
5201
+ msgctxt "fs helper"
5202
+ msgid "Destination dir \"%s\" is not writable."
5203
+ msgstr "وجهة المجلد \"%s\" غير قابل للكتابة."
5204
+
5205
+ #: core/helpers/class-themes-updater.php:128
5206
+ msgctxt "themes"
5207
+ msgid "Updating theme..."
5208
+ msgstr "تحديث القالب..."
5209
+
5210
+ #: core/helpers/class-themes-updater.php:129
5211
+ msgctxt "themes"
5212
+ msgid "Theme updated."
5213
+ msgstr "تم تحديث القالب"
5214
+
5215
+ #: core/helpers/class-themes-updater.php:131
5216
+ msgctxt "themes"
5217
+ msgid "New version available (<b>%s</b>). <a>Update now.</a>"
5218
+ msgstr "الإصدار الجديد متوفر (<b>%s</b>). <a>التحديث الآن.</a>"
5219
+
5220
+ #: core/helpers/class-themes-updater.php:159
5221
+ msgctxt "themes"
5222
+ msgid "Could not update theme: %s"
5223
+ msgstr "تعذر تحديث القالب : %s"
5224
+
5225
+ #: core/helpers/class-themes-updater.php:165
5226
+ msgctxt "themes"
5227
+ msgid "Theme was updated sucessfully."
5228
+ msgstr "تم تحديث القالب بنجاح."
5229
+
5230
+ #: core/installer.php:41
5231
+ msgctxt "default category name"
5232
+ msgid "General"
5233
+ msgstr "عام"
5234
+
5235
+ #: core/installer.php:49
5236
+ msgctxt "installer"
5237
+ msgid "Default Fee"
5238
+ msgstr "رسوم افتراضية"
5239
+
5240
+ #: core/installer.php:485
5241
+ msgctxt "installer"
5242
+ msgid ""
5243
+ "<b>Business Directory Plugin - Regions Module</b> was disabled because it is "
5244
+ "incompatible with the current version of Business Directory. Please update the "
5245
+ "Regions module."
5246
+ msgstr ""
5247
+ "تم تعطيل <b>إضافة دليل الأعمال - وحدة المناطق</b> لأنه غير متوافق مع الإصدار "
5248
+ "الحالي من الإضافة. يرجى تحديث وحدة المناطق."
5249
+
5250
+ #: core/installer.php:551
5251
+ msgctxt "installer"
5252
+ msgid "Cleaning up listing fees information... %d/%d"
5253
+ msgstr "تنظيف معلومات رسوم الإعلانات...%d/%d"
5254
+
5255
+ #: core/installer.php:601
5256
+ msgctxt "installer"
5257
+ msgid "Migrating previous transactions to new Payments API... %d/%d"
5258
+ msgstr "نقل المعاملات السابقة إلى المدفوعات الجديدة API ...%d/%d"
5259
+
5260
+ #: core/installer.php:630
5261
+ msgctxt "installer"
5262
+ msgid "Initial listing payment (BD < 3.4)"
5263
+ msgstr "دفعة الإعلان الأولية (BD < 3.4)"
5264
+
5265
+ #: core/installer.php:641
5266
+ msgctxt "installer"
5267
+ msgid "Listing edit payment (BD < 3.4)"
5268
+ msgstr "دفعة تحرير الإعلان (BD < 3.4)"
5269
+
5270
+ #: core/installer.php:662
5271
+ msgctxt "installer"
5272
+ msgid "Renewal fee \"%s\" for category \"%s\""
5273
+ msgstr "رسوم التجديد \"%s\" للتصنيف \"%s\""
5274
+
5275
+ #: core/installer.php:681
5276
+ msgctxt "installer"
5277
+ msgid "Listing upgrade to featured"
5278
+ msgstr "الترقية الى إعلان مميز"
5279
+
5280
+ #: core/installer.php:940
5281
+ msgid "Business Directory - Manual Upgrade Required"
5282
+ msgstr "دليل الأعمال - ترقية يدوية مطلوبة"
5283
+
5284
+ #: core/installer.php:942
5285
+ msgid ""
5286
+ "Business Directory features are currently disabled because the plugin needs to "
5287
+ "perform a manual upgrade before continuing."
5288
+ msgstr ""
5289
+ "تم تعطيل ميزات دليل الأعمال حاليا بسبب أن الإضافة تحتاج إلى إجراء ترقية يدوية قبل "
5290
+ "المتابعة."
5291
+
5292
+ #: core/installer.php:944
5293
+ msgid "Perform Manual Upgrade"
5294
+ msgstr "أداء ترقية يدوية"
5295
+
5296
+ #: core/installer.php:960 core/installer.php:961 core/installer.php:972
5297
+ msgid "Business Directory - Manual Upgrade"
5298
+ msgstr "دليل الأعمال - ترقية يدوية"
5299
+
5300
+ #: core/installer.php:976
5301
+ msgid ""
5302
+ "Business Directory features are currently disabled because the plugin needs to "
5303
+ "perform a manual upgrade before it can be used."
5304
+ msgstr ""
5305
+ "تم تعطيل ميزات دليل الأعمال حاليا بسبب أن الإضافة تحتاج إلى إجراء ترقية يدوية قبل "
5306
+ "أن تصلح للاستخدام."
5307
+
5308
+ #: core/installer.php:978
5309
+ msgid "Click \"Start Upgrade\" and wait until the process finishes."
5310
+ msgstr "إضغط على \"إبدأ الترقية\" وانتظر حتى انتهاء العملية."
5311
+
5312
+ #: core/installer.php:981
5313
+ msgctxt "manual-upgrade"
5314
+ msgid "Start Upgrade"
5315
+ msgstr "بدء الترقية"
5316
+
5317
+ #: core/installer.php:983
5318
+ msgctxt "manual-upgrade"
5319
+ msgid "Pause Upgrade"
5320
+ msgstr "توقيف الترقية"
5321
+
5322
+ #: core/installer.php:989
5323
+ msgctxt "manual-upgrade"
5324
+ msgid ""
5325
+ "The upgrade was sucessfully performed. Business Directory Plugin is now available."
5326
+ msgstr "تم إجراء الترقية بنجاح. إضافة دليل الأعمال متاحة الآن."
5327
+
5328
+ #: core/installer.php:992
5329
+ msgctxt "manual-upgrade"
5330
+ msgid "Go to \"Directory Admin\""
5331
+ msgstr "إنتقل إلى \"مشرف الدليل\""
5332
+
5333
+ #: core/licensing.php:43 core/licensing.php:65 core/licensing.php:66
5334
+ msgctxt "settings"
5335
+ msgid "Licenses"
5336
+ msgstr "التراخيص"
5337
+
5338
+ #: core/licensing.php:46
5339
+ msgctxt "settings"
5340
+ msgid "Premium Modules"
5341
+ msgstr "وحدات ممتازة (Premium)"
5342
+
5343
+ #: core/licensing.php:107 core/licensing.php:141
5344
+ msgctxt "licensing"
5345
+ msgid "Invalid module ID"
5346
+ msgstr "معرف وحدة غير صالح"
5347
+
5348
+ #: core/licensing.php:112
5349
+ msgctxt "licensing"
5350
+ msgid "No license key provided"
5351
+ msgstr "لم يتم تقديم أي مفتاح الترخيص"
5352
+
5353
+ #: core/licensing.php:169
5354
+ msgctxt "licensing"
5355
+ msgid "Deactivation failed"
5356
+ msgstr "فشل التعطيل"
5357
+
5358
+ #: core/licensing.php:233
5359
+ msgctxt "licensing"
5360
+ msgid "Business Directory - License Key Required"
5361
+ msgstr "دليل الأعمال - مفتاح الترخيص مطلوب"
5362
+
5363
+ #: core/licensing.php:236
5364
+ msgctxt "licensing"
5365
+ msgid ""
5366
+ "The following premium modules will not work until a valid license key is provided. "
5367
+ "Go to <a>Manage Options - Licenses</a> to enter your license information."
5368
+ msgstr ""
5369
+ "لن تعمل الوحدات الممتازة (Premium) التالية حتى يتم توفير مفتاح ترخيص ساري المفعول. "
5370
+ "إذهب إلى <a>إدارة الخيارات - التراخيص</a> لإدخال معلومات الترخيص الخاص بك."
5371
+
5372
+ #: core/licensing.php:257
5373
+ msgctxt "licensing"
5374
+ msgid "Business Directory - License Key Expired"
5375
+ msgstr "دليل الأعمال - مفتاح الترخيص منتهي"
5376
+
5377
+ #: core/licensing.php:258
5378
+ msgctxt "licensing"
5379
+ msgid ""
5380
+ "The license key for <span class=\"module-name\">%s %s</span> has expired. The "
5381
+ "module will continue to work but you will not receive any more updates until the "
5382
+ "license is renewed."
5383
+ msgstr ""
5384
+ "انتهت صلاحية مفتاح الترخيص <span class=\"module-name\">%s %s</span>. سوف يستمر عمل "
5385
+ "الوحدة ولكن لن تتلقى أي مزيد من التحديثات حتى يتم تجديد الترخيص."
5386
+
5387
+ #: core/licensing.php:262
5388
+ msgctxt "licensing"
5389
+ msgid "Remind me later"
5390
+ msgstr "ذكرني لاحقا"
5391
+
5392
+ #: core/licensing.php:264
5393
+ msgctxt "licensing"
5394
+ msgid "Renew License Key"
5395
+ msgstr "تجديد مفتاح الترخيص"
5396
+
5397
+ #: core/licensing.php:351
5398
+ msgctxt "licensing"
5399
+ msgid "Could not deactivate license: %s."
5400
+ msgstr "لا يمكن إلغاء الترخيص: %s."
5401
+
5402
+ #: core/payment.php:91
5403
+ msgctxt "payments-api"
5404
+ msgid ""
5405
+ "You are offering featured listings but have payments turned off. Go to <a href=\"%s"
5406
+ "\">Manage Options - Payment</a> to change the payment settings. Until you change "
5407
+ "this, the <i>Upgrade to Featured</i> option will be disabled."
5408
+ msgstr ""
5409
+ "أنت تقدم إعلانات مميزة ولكن المدفوعات معطلة. إذهب إلى <a href=\"%s\">إدارة "
5410
+ "الخيارات - الدفع</a> لتغيير إعدادات الدفع. حتى تقوم بتغيير ذلك، سيتم تعطيل <i>خيار "
5411
+ "الترقية إلى مميزة</i>."
5412
+
5413
+ #: core/payment.php:109
5414
+ msgctxt "payments-api"
5415
+ msgid ""
5416
+ "The <b>%s</b> gateway is active but not properly configured. The gateway won't be "
5417
+ "available until the following problems are fixed: <b>%s</b>. <br/> Check the <a "
5418
+ "href=\"%s\">payment settings</a>."
5419
+ msgstr ""
5420
+ "البوابة <b>%s</b> مفعلة ولكن لم يتم إعدادها بشكل صحيح. البوابة لن تكون متوفرة حتى "
5421
+ "يتم إصلاح المشاكل التالية <b>%s</b>.<br/> تحقق من <a href=\"%s\">إعدادات دفع</a> ."
5422
+
5423
+ #: core/payment.php:119
5424
+ msgctxt "admin"
5425
+ msgid ""
5426
+ "You have payments turned on but no gateway is active and properly configured. Go "
5427
+ "to <a href=\"%s\">Manage Options - Payment</a> to change the payment settings. "
5428
+ "Until you change this, the directory will operate in <i>Free Mode</i>."
5429
+ msgstr ""
5430
+ "لديك مدفوعات مشغلة ولكن لا توجد بوابة مفعلة ومعدة بشكل صحيح. إذهب إلى <a href=\"%s"
5431
+ "\">إدارة الخيارات - الدفع</a> لتغيير إعدادات الدفع. حتى تقوم بتغيير ذلك، فإن "
5432
+ "الدليل سيعمل بـ <i>الوضع المجاني.</i>"
5433
+
5434
+ #: core/payment.php:123
5435
+ msgid ""
5436
+ "BD detected PayFast and another gateway were enabled. This setup is not "
5437
+ "recommended due to PayFast supporting only ZAR and the other gateways not "
5438
+ "supporting this currency."
5439
+ msgstr ""
5440
+ "اكتشف دليل الأعمال أن PayFast وبوابة أخرى مشغلة. لا ينصح هذا الإعداد بسبب أن "
5441
+ "PayFast يدعم فقط عملة ZAR (راند جنوب أفريقيا) والبوابات الأخرى لا تدعم هذه العملة."
5442
+
5443
+ #: core/payment.php:127
5444
+ msgid ""
5445
+ "You have recurring renewal of listing fees enabled but the payment gateways "
5446
+ "installed don't support recurring payments. Until a gateway that supports "
5447
+ "recurring payments (such as PayPal) is enabled automatic renewals will be disabled."
5448
+ msgstr ""
5449
+ "عمليات التجديد المتكررة لرسوم الإعلانات مشغلة لديك ولكن بوابات الدفع المثبتة لا "
5450
+ "تدعم الدفعات المتكررة. حتى يتم تشغيل بوابة تدعم الدفعات المتكررة (مثل باي بال "
5451
+ "PayPal) سيتم تعطيل التجديد التلقائي."
5452
+
5453
+ #: core/payment.php:135
5454
+ msgid ""
5455
+ "You have payments enabled but there are no fees available. Users won't be able to "
5456
+ "post listings. Please <a href=\"fees\">create some fees</a> or <a href=\"settings"
5457
+ "\">configure the Directory</a> to operate in \"Free Mode\"."
5458
+ msgstr ""
5459
+ "المدفوعات مشغلة لديك ولكن ليس هناك أي رسوم متاحة. المستخدمين لن يكونوا قادرين على "
5460
+ "إضافة إعلانات. يرجى <a href=\"fees\">إنشاء بعض الرسوم</a> أو <a href=\"settings"
5461
+ "\">إعداد الدليل</a> للعمل في \"الوضع المجاني\"."
5462
+
5463
+ #: core/payment.php:169
5464
+ msgctxt "payments-api"
5465
+ msgid "Checkout"
5466
+ msgstr "إنهاء الشراء"
5467
+
5468
+ #: core/payment.php:170
5469
+ msgctxt "payments-api"
5470
+ msgid "Pay %1$s through %2$s"
5471
+ msgstr "دفع %1$s بواسطة %2$s"
5472
+
5473
+ #: core/payment.php:177
5474
+ msgctxt "payments-api"
5475
+ msgid "Your transaction has been approved."
5476
+ msgstr "تمت الموافقة على المعاملة الخاصة بك."
5477
+
5478
+ #: core/payment.php:363
5479
+ msgctxt "payments"
5480
+ msgid "Payment Details"
5481
+ msgstr "تفاصيل الدفع"
5482
+
5483
+ #: core/payment.php:390
5484
+ msgctxt "checkout"
5485
+ msgid "Payment Method"
5486
+ msgstr "طريقة الدفع"
5487
+
5488
+ #: core/payment.php:424
5489
+ msgctxt "payment"
5490
+ msgid "Return to Directory."
5491
+ msgstr "العودة إلى الدليل."
5492
+
5493
+ #: core/payment.php:431
5494
+ msgctxt "payments"
5495
+ msgid ""
5496
+ "Your payment is being processed by the payment gateway. Please reload this page in "
5497
+ "a moment to see if the status has changed or contact the site administrator."
5498
+ msgstr ""
5499
+ "يتم معالجة الدفع عن طريق بوابة الدفع. يرجى إعادة تحميل هذه الصفحة في لحظة لمعرفة "
5500
+ "ما إذا كان قد تغير الوضع أو الاتصال بمدير الموقع."
5501
+
5502
+ #: core/payment.php:434
5503
+ msgctxt "payments"
5504
+ msgid ""
5505
+ "The payment has been rejected by the payment gateway. Please contact the site "
5506
+ "administrator if you think there is an error or click \"Change Payment Method\" to "
5507
+ "select another payment method and try again."
5508
+ msgstr ""
5509
+ "تم رفض الدفع عن طريق بوابة الدفع. يرجى الاتصال بمدير الموقع إذا كنت تعتقد أن هناك "
5510
+ "خطأ أو إضغط فوق \"تغيير طريقة الدفع\" لتحديد طريقة دفع أخرى وحاول مرة أخرى."
5511
+
5512
+ #: core/payment.php:435
5513
+ msgctxt "payments"
5514
+ msgid "Change Payment Method"
5515
+ msgstr "تغيير طريقة الدفع"
5516
+
5517
+ #: core/payment.php:437
5518
+ msgctxt "payments"
5519
+ msgid ""
5520
+ "The payment has been rejected by the payment gateway. Please contact the site "
5521
+ "administrator if you think there is an error."
5522
+ msgstr ""
5523
+ "تم رفض الدفع عن طريق بوابة الدفع. يرجى الاتصال بمدير الموقع إذا كنت تعتقد أن هناك "
5524
+ "خطأ."
5525
+
5526
+ #: core/payment.php:440
5527
+ msgctxt "payments"
5528
+ msgid "The payment has been canceled at your request."
5529
+ msgstr "تم إلغاء الدفع بناء على طلبك."
5530
+
5531
+ #: core/payment.php:538
5532
+ msgctxt "admin"
5533
+ msgid "Pending Abandonment"
5534
+ msgstr "في انتظار التخلي"
5535
+
5536
+ #: core/payment.php:543
5537
+ msgctxt "admin"
5538
+ msgid "Abandoned"
5539
+ msgstr "متخلى عنه"
5540
+
5541
+ #: core/templates/listing-sticky-tag.tpl.php:3
5542
+ #: core/templates/listing-sticky-tag.tpl.php:4 core/templates-listings.php:55
5543
+ msgctxt "templates"
5544
+ msgid "Featured Listing"
5545
+ msgstr "إعلان مميز"
5546
+
5547
+ #: core/templates/listings.tpl.php:6 core/templates/search.tpl.php:17
5548
+ #: templates/businessdirectory-listings.tpl.php:27
5549
+ #: templates/deprecated/search.tpl.php:21
5550
+ msgctxt "templates"
5551
+ msgid "No listings found."
5552
+ msgstr "لم يتم العثور على أي إعلانات."
5553
+
5554
+ #: core/templates/listings.tpl.php:17 templates/businessdirectory-listings.tpl.php:38
5555
+ msgctxt "templates"
5556
+ msgid "&laquo; Previous "
5557
+ msgstr "&laquo; السابق"
5558
+
5559
+ #: core/templates/listings.tpl.php:18 templates/businessdirectory-listings.tpl.php:39
5560
+ msgctxt "templates"
5561
+ msgid "Next &raquo;"
5562
+ msgstr "التالي &raquo;"
5563
+
5564
+ #: core/templates/manage_listings.tpl.php:3 templates/manage-listings.tpl.php:3
5565
+ msgctxt "templates"
5566
+ msgid ""
5567
+ "Your current listings are shown below. To edit a listing click the edit button. To "
5568
+ "delete a listing click the delete button."
5569
+ msgstr ""
5570
+ "أدناه توجد إعلاناتك الحالية. لتحرير إعلان ما إضغط على زر تحرير. لحذف إعلان ما إضغط "
5571
+ "على زر حذف."
5572
+
5573
+ #: core/templates/manage_listings.tpl.php:6 templates/manage-listings.tpl.php:6
5574
+ msgctxt "templates"
5575
+ msgid "You do not currently have any listings in the directory."
5576
+ msgstr "أنت لا تملك حاليا أي إعلانات في الدليل."
5577
+
5578
+ #: core/templates/manage_listings.tpl.php:8 core/templates/search.tpl.php:20
5579
+ #: templates/deprecated/search.tpl.php:24 templates/manage-listings.tpl.php:8
5580
+ msgctxt "templates"
5581
+ msgid "Return to directory"
5582
+ msgstr "العودة إلى الدليل."
5583
+
5584
+ #: core/templates/search.tpl.php:3 templates/deprecated/search.tpl.php:6
5585
+ #: templates/search-form.tpl.php:18
5586
+ msgctxt "search"
5587
+ msgid "Search"
5588
+ msgstr "بحث"
5589
+
5590
+ #: core/templates/search.tpl.php:10 templates/deprecated/search.tpl.php:14
5591
+ msgctxt "search"
5592
+ msgid "Search Results"
5593
+ msgstr "نتائج البحث"
5594
+
5595
+ #: core/templates-ui.php:161
5596
+ msgctxt "templates"
5597
+ msgid "No listing categories found."
5598
+ msgstr "لم يتم العثور على تصنيفات الإعلانات."
5599
+
5600
+ #: core/templates-ui.php:185
5601
+ msgid "Submit A Listing"
5602
+ msgstr "إضافة إعلان"
5603
+
5604
+ #: core/templates-ui.php:191
5605
+ msgid "View Listings"
5606
+ msgstr "مشاهدة الإعلانات"
5607
+
5608
+ #: core/templates-ui.php:197
5609
+ msgid "Directory"
5610
+ msgstr "الدليل"
5611
+
5612
+ #: core/templates-ui.php:224
5613
+ msgctxt "templates"
5614
+ msgid "Search Listings"
5615
+ msgstr "البحث في الإعلانات"
5616
+
5617
+ #: core/templates-ui.php:227
5618
+ msgctxt "templates"
5619
+ msgid "Advanced Search"
5620
+ msgstr "بحث متقدم"
5621
+
5622
+ #: core/templates-ui.php:256 core/templates-ui.php:281
5623
+ msgctxt "templates sort"
5624
+ msgid "Sort By:"
5625
+ msgstr "ترتيب حسب:"
5626
+
5627
+ #: core/templates-ui.php:275
5628
+ msgctxt "sort"
5629
+ msgid "Reset"
5630
+ msgstr "إعادة تعيين"
5631
+
5632
+ #: core/templates-ui.php:297
5633
+ msgctxt "sort"
5634
+ msgid "(Reset)"
5635
+ msgstr "(إعادة تعيين)"
5636
+
5637
+ #: core/themes.php:625
5638
+ msgctxt "themes"
5639
+ msgid "ZIP file is not a valid BD theme file."
5640
+ msgstr "ملف الضغط ZIP ليس ملف قالب دليل الأعمال صالح."
5641
+
5642
+ #: core/themes.php:631
5643
+ msgctxt "themes"
5644
+ msgid "Could not create themes directory."
5645
+ msgstr "تعذر إنشاء مجلد القوالب."
5646
+
5647
+ #: core/themes.php:639
5648
+ msgctxt "themes"
5649
+ msgid "Could not remove previous theme directory \"%s\"."
5650
+ msgstr "تعذر إزالة مجلد القالب السابق \"%s\"."
5651
+
5652
+ #: core/themes.php:645
5653
+ msgctxt "themes"
5654
+ msgid "Could not move new theme into theme directory."
5655
+ msgstr "تعذر نقل القالب الجديد الى مجلد القالب."
5656
+
5657
+ #: core/utils.php:106
5658
+ msgctxt "utils"
5659
+ msgid "POSTed data exceeds PHP config. maximum. See \"post_max_size\" directive."
5660
+ msgstr ""
5661
+ "تجاوزت البيانات التي تم نشرها الحد الأقصى لإعدادات PHP. أنظر توجيه \"post_max_size"
5662
+ "\"."
5663
+
5664
+ #: core/utils.php:164
5665
+ msgctxt "utils"
5666
+ msgid "File size (%s) exceeds maximum file size of %s"
5667
+ msgstr "حجم الملف (%s) يتجاوز الحجم الأقصى للملف %s"
5668
+
5669
+ #: core/utils.php:172
5670
+ msgctxt "utils"
5671
+ msgid "File size (%s) is inferior to the required minimum file size of %s"
5672
+ msgstr "حجم الملف (%s) أقل من الحد الأدنى المطلوب لحجم الملف لـ %s"
5673
+
5674
+ #: core/utils.php:181 core/utils.php:188
5675
+ msgctxt "utils"
5676
+ msgid "File type \"%s\" is not allowed"
5677
+ msgstr "غير مسموح بنوع الملف \"%s\""
5678
+
5679
+ #: core/utils.php:195
5680
+ msgctxt "utils"
5681
+ msgid "Unkown error while uploading file."
5682
+ msgstr "حدث خطأ مجهول أثناء رفع الملف."
5683
+
5684
+ #: core/utils.php:214
5685
+ msgctxt "utils"
5686
+ msgid "Uploaded file is not an image"
5687
+ msgstr "الملف الذي تم رفعه ليس صورة"
5688
+
5689
+ #: core/utils.php:223
5690
+ msgctxt "utils"
5691
+ msgid "Image width (%s px) is inferior to minimum required width of %s px."
5692
+ msgstr "عرض الصورة (%s px) هو أقل من الحد الأدنى للعرض المطلوب لـ %s px "
5693
+
5694
+ #: core/utils.php:229
5695
+ msgctxt "utils"
5696
+ msgid "Image height (%s px) is inferior to minimum required height of %s px."
5697
+ msgstr "ارتفاع الصورة (%s px) هو أقل من الحد الأدنى للارتفاع المطلوب لـ %s px "
5698
+
5699
+ #: core/utils.php:235
5700
+ msgctxt "utils"
5701
+ msgid "Image width (%s px) is greater than maximum allowed width of %s px."
5702
+ msgstr "عرض الصورة (%s px) هو أكبر من الحد الأقصى للعرض المسموح به لـ %s px "
5703
+
5704
+ #: core/utils.php:241
5705
+ msgctxt "utils"
5706
+ msgid "Image height (%s px) is greater than maximum required height of %s px."
5707
+ msgstr "ارتفاع الصورة (%s px) هو أكبر من الحد الأقصى للارتفاع المطلوب لـ %s px "
5708
+
5709
+ #: core/utils.php:255
5710
+ msgctxt "utils"
5711
+ msgid "Error while uploading file"
5712
+ msgstr "حدث خطأ أثناء رفع الملف."
5713
+
5714
+ #: core/view-submit-listing.php:29
5715
+ msgctxt "templates"
5716
+ msgid ""
5717
+ "There are no categories assigned to the business directory yet. You need to assign "
5718
+ "some categories to the business directory. Only admins can see this message. "
5719
+ "Regular users are seeing a message that they cannot add their listing at this "
5720
+ "time. Listings cannot be added until you assign categories to the business "
5721
+ "directory."
5722
+ msgstr ""
5723
+ "لا توجد تصنيفات معينة إلى دليل الأعمال حتى الآن. تحتاج إلى تعيين بعض التصنيفات إلى "
5724
+ "دليل الأعمال. المدراء فقط يمكن أن يروا هذه الرسالة. المستخدمين العاديين يرون رسالة "
5725
+ "لا يمكن إضافة الإعلانات في هذا الوقت. لا يمكن إضافة الإعلانات حتى تقوم بتعيين "
5726
+ "تصنيفات إلى دليل الأعمال."
5727
+
5728
+ #: core/view-submit-listing.php:31
5729
+ msgctxt "templates"
5730
+ msgid ""
5731
+ "Your listing cannot be added at this time. Please try again later. If this is not "
5732
+ "the first time you see this warning, please ask the site administrator to set up "
5733
+ "one or more categories inside the Directory."
5734
+ msgstr ""
5735
+ "لا يمكن إضافة الإعلان الخاصة بك في هذا الوقت. يرجى المحاولة مرة أخرى لاحقاً. إذا "
5736
+ "كانت هذه ليست المرة الأولى التي ترى هذا التحذير، المرجو الطلب من مدير الموقع "
5737
+ "بإعداد واحد أو أكثر من التصنيفات داخل الدليل."
5738
+
5739
+ #: core/view-submit-listing.php:43
5740
+ msgctxt "templates"
5741
+ msgid "You are not authorized to edit this listing."
5742
+ msgstr "غير مسموح لك بتحرير هذا الإعلان."
5743
+
5744
+ #: core/view-submit-listing.php:58
5745
+ msgctxt "templates"
5746
+ msgid "Edit Your Listing"
5747
+ msgstr "تحرير إعلانك"
5748
+
5749
+ #: core/view-submit-listing.php:58
5750
+ msgctxt "templates"
5751
+ msgid "Submit A Listing"
5752
+ msgstr "إضافة إعلان"
5753
+
5754
+ #: core/view-submit-listing.php:65
5755
+ msgctxt "templates"
5756
+ msgid "You are logged in as an administrator. Any payment steps will be skipped."
5757
+ msgstr "لقد تم تسجيل دخولك كمدير. سيتم تخطي أي خطوات للدفع."
5758
+
5759
+ #: core/view-submit-listing.php:221
5760
+ msgctxt "templates"
5761
+ msgid "Please select a fee option for the \"%s\" category."
5762
+ msgstr "المرجو تحديد خيار رسوم التصنيف \"%s\"."
5763
+
5764
+ #: core/view-submit-listing.php:289
5765
+ msgctxt "templates"
5766
+ msgid "Please agree to the Terms and Conditions."
5767
+ msgstr "يرجى الموافقة على الشروط والأحكام."
5768
+
5769
+ #: core/view-submit-listing.php:295
5770
+ msgctxt "templates"
5771
+ msgid "The reCAPTCHA wasn't entered correctly."
5772
+ msgstr "لم يتم إدخال reCAPTCHA بشكل صحيح."
5773
+
5774
+ #: core/view-submit-listing.php:312
5775
+ msgctxt "templates"
5776
+ msgid "Read our Terms and Conditions"
5777
+ msgstr "إقرأ الشروط والأحكام الخاصة بنا"
5778
+
5779
+ #: core/view-submit-listing.php:317
5780
+ msgctxt "templates"
5781
+ msgid "Terms and Conditions:"
5782
+ msgstr "شروط وأحكام:"
5783
+
5784
+ #: core/view-submit-listing.php:328
5785
+ msgctxt "templates"
5786
+ msgid "I agree to the Terms and Conditions"
5787
+ msgstr "أوافق على الشروط والأحكام"
5788
+
5789
+ #: core/view-submit-listing.php:478 core/views/upgrade_listing.php:49
5790
+ msgctxt "submit"
5791
+ msgid "Listing upgrade to featured"
5792
+ msgstr "الترقية الى إعلان مميز"
5793
+
5794
+ #: core/view-submit-listing.php:511
5795
+ msgctxt "submit_state"
5796
+ msgid "Invalid submit state."
5797
+ msgstr "حالة إضافة غير صالحة"
5798
+
5799
+ #: core/views/all_listings.php:6
5800
+ msgctxt "views"
5801
+ msgid "View All Listings"
5802
+ msgstr "عرض جميع الإعلانات"
5803
+
5804
+ #: core/views/checkout.php:28
5805
+ msgctxt "payments"
5806
+ msgid "Invalid payment id."
5807
+ msgstr "معرف الدفع غير صالح."
5808
+
5809
+ #: core/views/checkout.php:86
5810
+ msgctxt "checkout"
5811
+ msgid "Continue"
5812
+ msgstr "متابعة"
5813
+
5814
+ #: core/views/checkout.php:97
5815
+ msgctxt "checkout"
5816
+ msgid ""
5817
+ "Payments are not allowed on the non-secure version of this site. Please "
5818
+ "<a>continue to the secure server to proceed with your payment</a>."
5819
+ msgstr ""
5820
+ "المدفوعات غير مسموحة بالإصدار غير الآمن ل هذا الموقع. يرجى <a>المواصلة إلى الخادم "
5821
+ "الآمن لمعالجة الدفع الخاص بك</a>."
5822
+
5823
+ #: core/views/checkout.php:112
5824
+ msgctxt "checkout"
5825
+ msgid ""
5826
+ "Your payment is being verified. This usually takes a few minutes but can take up "
5827
+ "to 24 hours."
5828
+ msgstr ""
5829
+ "يتم الآن التحقق من الدفع الخاص بك. هذا عادة يستغرق بضع دقائق، لكن يمكن أن يستغرق "
5830
+ "مدة تصل إلى 24 ساعة."
5831
+
5832
+ #: core/views/checkout.php:120 core/views/checkout.php:141
5833
+ msgctxt "checkout"
5834
+ msgid "← Return to Directory."
5835
+ msgstr "← الرجوع إلى الدليل."
5836
+
5837
+ #: core/views/checkout.php:130
5838
+ msgctxt "checkout"
5839
+ msgid "Your payment was received sucessfully."
5840
+ msgstr "تم تلقي الدفع الخاص بك بنجاح."
5841
+
5842
+ #: core/views/checkout.php:137
5843
+ msgctxt "checkout"
5844
+ msgid "← Return to your listing."
5845
+ msgstr "← الرجوع إلى إعلانك."
5846
+
5847
+ #: core/views/delete_listing.php:11
5848
+ msgctxt "delete listing"
5849
+ msgid "Please log in to delete the listing."
5850
+ msgstr "المرجو تسجيل الدخول لحذف الإعلان."
5851
+
5852
+ #: core/views/delete_listing.php:24
5853
+ msgctxt "delete listing"
5854
+ msgid "Your listing has been deleted."
5855
+ msgstr "تم حذف إعلانك."
5856
+
5857
+ #: core/views/listing_contact.php:39
5858
+ msgctxt "contact-message"
5859
+ msgid "Please enter your name."
5860
+ msgstr "يرجى إدخال إسمك."
5861
+
5862
+ #: core/views/listing_contact.php:42
5863
+ msgctxt "contact-message"
5864
+ msgid "Please enter a valid email."
5865
+ msgstr "يرجى إدخال بريد إلكتروني صحيح."
5866
+
5867
+ #: core/views/listing_contact.php:45
5868
+ msgctxt "contact-message"
5869
+ msgid "You did not enter a message."
5870
+ msgstr "لم تقم بإدخال رسالة."
5871
+
5872
+ #: core/views/listing_contact.php:48
5873
+ msgctxt "contact-message"
5874
+ msgid "The reCAPTCHA wasn't entered correctly."
5875
+ msgstr "لم يتم إدخال reCAPTCHA بشكل صحيح."
5876
+
5877
+ #: core/views/listing_contact.php:57
5878
+ msgctxt "contact form"
5879
+ msgid "Please <a>log in</a> to be able to send messages to the listing owner."
5880
+ msgstr "يرجى <a>تسجيل الدخول</a> ليتتمكن من إرسال رسائل إلى مالك الإعلان."
5881
+
5882
+ #: core/views/listing_contact.php:76
5883
+ msgctxt "contact form"
5884
+ msgid "This contact form is temporarily disabled. Please try again later."
5885
+ msgstr "نموذج الاتصال هذا معطل مؤقتا. المرجو المحاولة مرة أخرى لاحقا."
5886
+
5887
+ #: core/views/listing_contact.php:113
5888
+ msgctxt "templates"
5889
+ msgid "Contact listing owner"
5890
+ msgstr "إتصل بمالك الإعلان"
5891
+
5892
+ #: core/views/listing_contact.php:117
5893
+ msgctxt "templates"
5894
+ msgid "Send Message to listing owner"
5895
+ msgstr "إرسال رسالة إلى مالك الإعلان"
5896
+
5897
+ #: core/views/listing_contact.php:163
5898
+ msgid "l F j, Y \\a\\t g:i a"
5899
+ msgstr "l F j, Y \\a\\t g:i a"
5900
+
5901
+ #: core/views/listing_contact.php:183
5902
+ msgctxt "contact-message"
5903
+ msgid "There was a problem encountered. Your message has not been sent"
5904
+ msgstr "حدثت مشكلة . لم يتم إرسال الرسالة الخاصة بك."
5905
+
5906
+ #: core/views/listing_contact.php:186
5907
+ msgctxt "contact-message"
5908
+ msgid "Return to listing."
5909
+ msgstr "الرجوع إلى الإعلان."
5910
+
5911
+ #: core/views/main.php:7
5912
+ msgctxt "templates"
5913
+ msgid ""
5914
+ "There are no categories assigned to the business directory yet. You need to assign "
5915
+ "some categories to the business directory. Only admins can see this message. "
5916
+ "Regular users are seeing a message that there are currently no listings in the "
5917
+ "directory. Listings cannot be added until you assign categories to the business "
5918
+ "directory."
5919
+ msgstr ""
5920
+ "لا توجد تصنيفات معينة إلى دليل الأعمال حتى الآن. تحتاج إلى تعيين بعض التصنيفات إلى "
5921
+ "دليل الأعمال. المدراء فقط يمكن أن يروا هذه الرسالة. المستخدمين العاديين يرون رسالة "
5922
+ "لا توجد إعلانات في الدليل. لا يمكن إضافة الإعلانات حتى تقوم بتعيين تصنيفات إلى "
5923
+ "دليل الأعمال."
5924
+
5925
+ #: core/views/main.php:9
5926
+ msgctxt "templates"
5927
+ msgid "There are currently no listings in the directory."
5928
+ msgstr "لا توجد حاليا إعلانات في الدليل."
5929
+
5930
+ #: core/views/main.php:23
5931
+ msgctxt "templates"
5932
+ msgid ""
5933
+ "You have \"Hide Empty Categories\" on and some categories that don't have listings "
5934
+ "in them. That means they won't show up on the front end of your site. If you "
5935
+ "didn't want that, click <a>here</a> to change the setting."
5936
+ msgstr ""
5937
+ "قمت بـ \"إخفاء التصنيفات الفارغة\" وهناك بعض التصنيفات التي لا تحتوي على إعلانات "
5938
+ "بداخلها. هذا يعني أنها لن تظهر على الواجهة الأمامية للموقع الخاص بك. إذا كنت لا "
5939
+ "تريد ذلك، إضغط <a>هنا</a> لتغيير الإعداد."
5940
+
5941
+ #: core/views/manage_recurring.php:20
5942
+ msgctxt "manage subscriptions"
5943
+ msgid "You are not on recurring payments for any of your listings."
5944
+ msgstr "أنت لست على دفعات متكررة لأي من الإعلانات الخاصة بك."
5945
+
5946
+ #: core/views/manage_recurring.php:92
5947
+ msgctxt "manage subscriptions"
5948
+ msgid "Invalid subscription."
5949
+ msgstr "الاشتراك غير صالح."
5950
+
5951
+ #: core/views/manage_recurring.php:97
5952
+ msgctxt "manage subscriptions"
5953
+ msgid "← Return to \"Delete Listing\"."
5954
+ msgstr "← الرجوع إلى \"حذف الإعلان\"."
5955
+
5956
+ #: core/views/manage_recurring.php:103
5957
+ msgctxt "manage subscriptions"
5958
+ msgid "Subscription canceled."
5959
+ msgstr "تم إلغاء الاشتراك."
5960
+
5961
+ #: core/views/renew_listing.php:13
5962
+ msgctxt "renewal"
5963
+ msgid "Listing renewal is disabled at this moment. Please try again later."
5964
+ msgstr "تم تعطيل تجديد الإعلان في هذه اللحظة. يرجى المحاولة مرة أخرى لاحقا."
5965
+
5966
+ #: core/views/renew_listing.php:16
5967
+ msgctxt "renewal"
5968
+ msgid ""
5969
+ "Your renewal ID is invalid. Please use the URL you were given on the renewal e-"
5970
+ "mail message."
5971
+ msgstr ""
5972
+ "معرف التجديد الخاص بك غير صالح. يرجى استخدام عنوان URL الذي أعطي لك في رسالة "
5973
+ "التجديد بالبريد الإلكتروني."
5974
+
5975
+ #: core/views/renew_listing.php:42
5976
+ msgctxt "renewal"
5977
+ msgid "Your renewal was successfully cancelled."
5978
+ msgstr "تم إلغاء التجديد الخاص بك بنجاح."
5979
+
5980
+ #: core/views/renew_listing.php:54
5981
+ msgctxt "listings"
5982
+ msgid "Fee \"%s\" renewal for category \"%s\""
5983
+ msgstr "رسوم \"%s\" تجديد التصنيف \"%s\""
5984
+
5985
+ #: core/views/renew_listing.php:74
5986
+ msgctxt "renewal"
5987
+ msgid "Invalid renewal state."
5988
+ msgstr "حالة التجديد غير صالحة."
5989
+
5990
+ #: core/views/renew_listing.php:85
5991
+ msgctxt "templates"
5992
+ msgid "Recurring Fee Management"
5993
+ msgstr "إدارة الرسوم المتكررة"
5994
+
5995
+ #: core/views/renew_listing.php:86
5996
+ msgctxt "renew"
5997
+ msgid ""
5998
+ "Because you are on a recurring fee plan you don't have to renew your listing right "
5999
+ "now as this will be handled automatically when renewal comes."
6000
+ msgstr ""
6001
+ "لأنك على خطة الرسوم المتكررة لا تحتاج لتجديد الإعلان الخاص بك الآن لأن ذلك سيتم "
6002
+ "معالجته تلقائياً عندما يحين وقت التجديد."
6003
+
6004
+ #: core/views/renew_listing.php:88
6005
+ msgctxt "renewal"
6006
+ msgid "Current Fee Details"
6007
+ msgstr "تفاصيل الرسوم الحالية"
6008
+
6009
+ #: core/views/renew_listing.php:90
6010
+ msgctxt "renewal"
6011
+ msgid "Number of images:"
6012
+ msgstr "عدد الصور:"
6013
+
6014
+ #: core/views/renew_listing.php:92
6015
+ msgctxt "renewal"
6016
+ msgid "Expiration date:"
6017
+ msgstr "تاريخ انتهاء التاريخ:"
6018
+
6019
+ #: core/views/renew_listing.php:96
6020
+ msgctxt "renew"
6021
+ msgid ""
6022
+ "However, if you want to cancel your subscription you can do that on this page. "
6023
+ "When the renewal time comes you'll be able to change your settings again."
6024
+ msgstr ""
6025
+ "ومع ذلك، إذا كنت ترغب في إلغاء اشتراكك يمكنك عمل ذلك في هذه الصفحة. عندما يحين وقت "
6026
+ "التجديد سوف تتمكن من تغيير الإعدادات الخاصة بك مرة أخرى."
6027
+
6028
+ #: core/views/request_access_keys.php:17
6029
+ msgctxt "request_access_keys"
6030
+ msgid "Please enter a valid e-mail address."
6031
+ msgstr "المرجو إدخال بريد إلكتروني صحيح."
6032
+
6033
+ #: core/views/request_access_keys.php:22
6034
+ msgctxt "request_access_keys"
6035
+ msgid "There are no listings associated to your e-mail address."
6036
+ msgstr "لا توجد إعلانات مرتبطة بعنوان بريدك الإلكتروني."
6037
+
6038
+ #: core/views/request_access_keys.php:26
6039
+ msgctxt "request_access_keys"
6040
+ msgid "Listing Access Keys"
6041
+ msgstr "مفاتيح وصول الإعلان"
6042
+
6043
+ #: core/views/request_access_keys.php:30
6044
+ msgctxt "request_access_keys"
6045
+ msgid "Access keys have been sent to your e-mail address."
6046
+ msgstr "تم إرسال مفاتيح الوصول إلى عنوان بريدك الإلكتروني."
6047
+
6048
+ #: core/views/request_access_keys.php:32
6049
+ msgctxt "request_access_keys"
6050
+ msgid ""
6051
+ "An error occurred while sending the access keys to your e-mail address. Please try "
6052
+ "again."
6053
+ msgstr ""
6054
+ "حدث خطأ أثناء إرسال مفاتيح الوصول إلى عنوان بريدك الإلكتروني. المرجو المحاولة مرة "
6055
+ "أخرى."
6056
+
6057
+ #: core/views/search.php:6
6058
+ msgctxt "views"
6059
+ msgid "Find A Listing"
6060
+ msgstr "العثور على إعلان"
6061
+
6062
+ #: core/views/submit_listing.php:10
6063
+ msgctxt "views"
6064
+ msgid "Submit A Listing"
6065
+ msgstr "إضافة إعلان"
6066
+
6067
+ #: core/views/upgrade_listing.php:16
6068
+ msgctxt "listing upgrade"
6069
+ msgid "Invalid link followed."
6070
+ msgstr "اتباع رابط غير صالح."
6071
+
6072
+ #: core/views/upgrade_listing.php:22
6073
+ msgctxt "templates"
6074
+ msgid "Your listing is already pending approval for \"featured\" status."
6075
+ msgstr "إعلانك ينتظر الموافقة مسبقا على حالة \"مميزة\"."
6076
+
6077
+ #: core/views/upgrade_listing.php:23
6078
+ msgctxt "templates"
6079
+ msgid "Return to listing."
6080
+ msgstr "الرجوع إلى الإعلان."
6081
+
6082
+ #: core/widget-featured-listings.php:11
6083
+ msgctxt "widgets"
6084
+ msgid "Business Directory - Featured Listings"
6085
+ msgstr "دليل الأعمال - إعلانات مميزة"
6086
+
6087
+ #: core/widget-featured-listings.php:12
6088
+ msgctxt "widgets"
6089
+ msgid "Displays a list of the featured/sticky listings in the directory."
6090
+ msgstr "عرض قائمة من الإعلانات المميزة/المثبتة في الدليل."
6091
+
6092
+ #: core/widget-featured-listings.php:14
6093
+ msgctxt "widgets"
6094
+ msgid "Featured Listings"
6095
+ msgstr "إعلانات مميزة"
6096
+
6097
+ #: core/widget-featured-listings.php:23
6098
+ msgctxt "widgets"
6099
+ msgid "Display listings in random order"
6100
+ msgstr "عرض الإعلانات في ترتيب عشوائي"
6101
+
6102
+ #: core/widget-latest-listings.php:11
6103
+ msgctxt "widgets"
6104
+ msgid "Business Directory - Latest Listings"
6105
+ msgstr "دليل الأعمال - آخر الإعلانات"
6106
+
6107
+ #: core/widget-latest-listings.php:12
6108
+ msgctxt "widgets"
6109
+ msgid "Displays a list of the latest listings in the Business Directory."
6110
+ msgstr "عرض قائمة بآخر الإعلانات في الدليل الأعمال."
6111
+
6112
+ #: core/widget-latest-listings.php:14
6113
+ msgctxt "widgets"
6114
+ msgid "Latest Listings"
6115
+ msgstr "آخر الإعلانات "
6116
+
6117
+ #: core/widget-random-listings.php:11
6118
+ msgctxt "widgets"
6119
+ msgid "Business Directory - Random Listings"
6120
+ msgstr "دليل الأعمال - إعلانات عشوائية"
6121
+
6122
+ #: core/widget-random-listings.php:12
6123
+ msgctxt "widgets"
6124
+ msgid "Displays a list of random listings from the Business Directory."
6125
+ msgstr "عرض قائمة من الإعلانات العشوائية من دليل الأعمال"
6126
+
6127
+ #: core/widget-random-listings.php:14
6128
+ msgctxt "widgets"
6129
+ msgid "Random Listings"
6130
+ msgstr "إعلانات عشوائية"
6131
+
6132
+ #: core/widget-search.php:10
6133
+ msgctxt "widgets"
6134
+ msgid "Business Directory - Search"
6135
+ msgstr "دليل الأعمال - بحث"
6136
+
6137
+ #: core/widget-search.php:11
6138
+ msgctxt "widgets"
6139
+ msgid "Displays a search form to look for Business Directory listings."
6140
+ msgstr "عرض نموذج بحث للبحث عن إعلانات دليل الأعمال."
6141
+
6142
+ #: core/widget-search.php:18
6143
+ msgctxt "widgets"
6144
+ msgid "Search the Business Directory"
6145
+ msgstr "البحث في دليل الأعمال"
6146
+
6147
+ #: core/widget-search.php:29
6148
+ msgctxt "widgets"
6149
+ msgid "Form Style:"
6150
+ msgstr "شكل النموذج:"
6151
+
6152
+ #: core/widget-search.php:37
6153
+ msgctxt "widgets"
6154
+ msgid "Basic"
6155
+ msgstr "أساسي"
6156
+
6157
+ #: core/widget-search.php:45
6158
+ msgctxt "widgets"
6159
+ msgid "Advanced"
6160
+ msgstr "متقدم"
6161
+
6162
+ #: core/widget-search.php:49
6163
+ msgctxt "widgets"
6164
+ msgid "Search Fields (advanced mode):"
6165
+ msgstr "الحقول البحث (الوضع المتقدم):"
6166
+
6167
+ #: core/widget-search.php:50
6168
+ msgctxt "widgets"
6169
+ msgid "Display the following fields in the form."
6170
+ msgstr "عرض الحقول التالية في النموذج."
6171
+
6172
+ #: core/widget-search.php:107
6173
+ msgctxt "widgets"
6174
+ msgid "Search"
6175
+ msgstr "بحث"
6176
+
6177
+ #: templates/billing-information-form.tpl.php:3
6178
+ msgctxt "months"
6179
+ msgid "Jan"
6180
+ msgstr "يناير"
6181
+
6182
+ #: templates/billing-information-form.tpl.php:4
6183
+ msgctxt "months"
6184
+ msgid "Feb"
6185
+ msgstr "فبراير"
6186
+
6187
+ #: templates/billing-information-form.tpl.php:5
6188
+ msgctxt "months"
6189
+ msgid "Mar"
6190
+ msgstr "مارس"
6191
+
6192
+ #: templates/billing-information-form.tpl.php:6
6193
+ msgctxt "months"
6194
+ msgid "Apr"
6195
+ msgstr "أبريل"
6196
+
6197
+ #: templates/billing-information-form.tpl.php:7
6198
+ msgctxt "months"
6199
+ msgid "May"
6200
+ msgstr "مايو"
6201
+
6202
+ #: templates/billing-information-form.tpl.php:8
6203
+ msgctxt "months"
6204
+ msgid "Jun"
6205
+ msgstr "يونيو"
6206
+
6207
+ #: templates/billing-information-form.tpl.php:9
6208
+ msgctxt "months"
6209
+ msgid "Jul"
6210
+ msgstr "يوليو"
6211
+
6212
+ #: templates/billing-information-form.tpl.php:10
6213
+ msgctxt "months"
6214
+ msgid "Aug"
6215
+ msgstr "أغسطس"
6216
+
6217
+ #: templates/billing-information-form.tpl.php:11
6218
+ msgctxt "months"
6219
+ msgid "Sep"
6220
+ msgstr "سبتمبر"
6221
+
6222
+ #: templates/billing-information-form.tpl.php:12
6223
+ msgctxt "months"
6224
+ msgid "Oct"
6225
+ msgstr "أكتوبر"
6226
+
6227
+ #: templates/billing-information-form.tpl.php:13
6228
+ msgctxt "months"
6229
+ msgid "Nov"
6230
+ msgstr "نوفمبر"
6231
+
6232
+ #: templates/billing-information-form.tpl.php:14
6233
+ msgctxt "months"
6234
+ msgid "Dec"
6235
+ msgstr "ديسمبر"
6236
+
6237
+ #: templates/billing-information-form.tpl.php:29
6238
+ msgctxt "checkout form"
6239
+ msgid "Credit Card Details"
6240
+ msgstr "تفاصيل بطاقة الائتمان"
6241
+
6242
+ #: templates/billing-information-form.tpl.php:30
6243
+ msgctxt "checkout form"
6244
+ msgid "Please enter your credit card details below."
6245
+ msgstr "يرجى إدخال تفاصيل بطاقة الائتمان الخاصة بك أدناه."
6246
+
6247
+ #: templates/billing-information-form.tpl.php:35
6248
+ msgctxt "checkout form"
6249
+ msgid "First Name:"
6250
+ msgstr "الإسم الشخصي:"
6251
+
6252
+ #: templates/billing-information-form.tpl.php:43
6253
+ msgctxt "checkout form"
6254
+ msgid "Last Name:"
6255
+ msgstr "الإسم العائلي:"
6256
+
6257
+ #: templates/billing-information-form.tpl.php:51
6258
+ msgctxt "checkout form"
6259
+ msgid "Card Number:"
6260
+ msgstr "رقم بطاقة الائتمان:"
6261
+
6262
+ #: templates/billing-information-form.tpl.php:59
6263
+ msgctxt "checkout form"
6264
+ msgid "Expiration Date (MM/YYYY):"
6265
+ msgstr "تاريخ انتهاء الصلاحية (MM/YYYY):"
6266
+
6267
+ #: templates/billing-information-form.tpl.php:72
6268
+ msgctxt "checkout form"
6269
+ msgid "CVC:"
6270
+ msgstr "الرمز السري:"
6271
+
6272
+ #: templates/billing-information-form.tpl.php:82
6273
+ msgctxt "checkout form"
6274
+ msgid "Billing Address"
6275
+ msgstr "عنوان صاحب الفاتورة"
6276
+
6277
+ #: templates/billing-information-form.tpl.php:87
6278
+ msgctxt "checkout form"
6279
+ msgid "Country:"
6280
+ msgstr "الدولة:"
6281
+
6282
+ #: templates/billing-information-form.tpl.php:95
6283
+ msgctxt "checkout form"
6284
+ msgid "State:"
6285
+ msgstr "الولاية:"
6286
+
6287
+ #: templates/billing-information-form.tpl.php:103
6288
+ msgctxt "checkout form"
6289
+ msgid "City:"
6290
+ msgstr "المدينة:"
6291
+
6292
+ #: templates/billing-information-form.tpl.php:111
6293
+ msgctxt "checkout form"
6294
+ msgid "Address Line 1:"
6295
+ msgstr "خانة العنوان 1:"
6296
+
6297
+ #: templates/billing-information-form.tpl.php:119
6298
+ msgctxt "checkout form"
6299
+ msgid "Address Line 2:"
6300
+ msgstr "خانة العنوان 2:"
6301
+
6302
+ #: templates/billing-information-form.tpl.php:127
6303
+ msgctxt "checkout form"
6304
+ msgid "ZIP Code:"
6305
+ msgstr "الرمز البريدي:"
6306
+
6307
+ #: templates/billing-information-form.tpl.php:137
6308
+ msgctxt "WPBDM"
6309
+ msgid "Cancel"
6310
+ msgstr "إلغاء"
6311
+
6312
+ #: templates/billing-information-form.tpl.php:138
6313
+ msgctxt "WPBDM"
6314
+ msgid "Submit Payment"
6315
+ msgstr "إضافة الدفع"
6316
+
6317
+ #: templates/delete-listing-confirm.tpl.php:3
6318
+ msgctxt "manage recurring"
6319
+ msgid "Delete Listing"
6320
+ msgstr "حذف الإعلان"
6321
+
6322
+ #: templates/delete-listing-confirm.tpl.php:7
6323
+ msgctxt "delete listing"
6324
+ msgid ""
6325
+ "Your listing is associated to a recurring payment. If you don't cancel the "
6326
+ "recurring payment before deleting the listing, you might be charged for additional "
6327
+ "periods even though your listing won't be available."
6328
+ msgstr ""
6329
+ "إعلانك مرتبط بالمدفوعات المتكررة. إذا لم تلغي المدفوعات المتكررة قبل حذف الإعلان، "
6330
+ "يمكن أن تدفع لفترات إضافية على الرغم من أن إعلانك لن يكون متوفر."
6331
+
6332
+ #: templates/delete-listing-confirm.tpl.php:12
6333
+ msgctxt "delete listing"
6334
+ msgid ""
6335
+ "Please visit <a>Manage recurring payments</a> to review your current recurring "
6336
+ "payments."
6337
+ msgstr ""
6338
+ "يرجى زيارة <a>إدارة المدفوعات المتكررة</a> لمراجعة المدفوعات المتكررة الحالية "
6339
+ "الخاصة بك."
6340
+
6341
+ #: templates/delete-listing-confirm.tpl.php:18
6342
+ msgctxt "delete listing"
6343
+ msgid "You are about to remove your listing \"%s\" from the directory."
6344
+ msgstr "أنت على وشك إزالة إعلانك \"%s\" من الدليل."
6345
+
6346
+ #: templates/delete-listing-confirm.tpl.php:19
6347
+ msgctxt "delete listing"
6348
+ msgid "Are you sure you want to do this?"
6349
+ msgstr "هل أنت متأكد من أنك تريد عمل هذا؟"
6350
+
6351
+ #: templates/delete-listing-confirm.tpl.php:24
6352
+ msgctxt "delete listing"
6353
+ msgid "No. Take me back to the directory."
6354
+ msgstr "لا. أرجعني إلى الدليل."
6355
+
6356
+ #: templates/delete-listing-confirm.tpl.php:25
6357
+ msgctxt "delete listing"
6358
+ msgid "Yes. Delete my listing."
6359
+ msgstr "نعم. إحذف إعلاني."
6360
+
6361
+ #: templates/email/listing-added.tpl.php:2
6362
+ msgctxt "emails"
6363
+ msgid ""
6364
+ "A new listing has been submitted to the directory. Listing details can be found "
6365
+ "below."
6366
+ msgstr "تم إضافة إعلان جديد إلى الدليل. يمكن الاطلاع على تفاصيل الإعلان أدناه."
6367
+
6368
+ #: templates/email/listing-added.tpl.php:7 templates/email/listing-edited.tpl.php:7
6369
+ msgctxt "notify email"
6370
+ msgid "ID"
6371
+ msgstr "المعرف (ID)"
6372
+
6373
+ #: templates/email/listing-added.tpl.php:10 templates/email/listing-edited.tpl.php:10
6374
+ msgctxt "notify email"
6375
+ msgid "Title"
6376
+ msgstr "العنوان"
6377
+
6378
+ #: templates/email/listing-added.tpl.php:13 templates/email/listing-edited.tpl.php:13
6379
+ msgctxt "notify email"
6380
+ msgid "URL"
6381
+ msgstr "رابط URL"
6382
+
6383
+ #: templates/email/listing-added.tpl.php:13 templates/email/listing-edited.tpl.php:13
6384
+ msgctxt "notify email"
6385
+ msgid "(not published yet)"
6386
+ msgstr "(لم تنشر بعد)"
6387
+
6388
+ #: templates/email/listing-added.tpl.php:16 templates/email/listing-edited.tpl.php:16
6389
+ msgctxt "notify email"
6390
+ msgid "Categories"
6391
+ msgstr "التصنيفات"
6392
+
6393
+ #: templates/email/listing-added.tpl.php:19 templates/email/listing-edited.tpl.php:19
6394
+ msgctxt "notify email"
6395
+ msgid "Posted By"
6396
+ msgstr "أضيفت بواسطة"
6397
+
6398
+ #: templates/email/listing-edited.tpl.php:2
6399
+ msgctxt "emails"
6400
+ msgid ""
6401
+ "A listing in the directory has been edited recently. Listing details can be found "
6402
+ "below."
6403
+ msgstr "تم تحرير إعلان في الدليل مؤخرا. يمكن الاطلاع على تفاصيل الإعلان أدناه."
6404
+
6405
+ #: templates/email-access-keys.tpl.php:1
6406
+ msgctxt "request_access_keys"
6407
+ msgid ""
6408
+ "Below you'll find the access keys for all the listings registered with your e-mail "
6409
+ "address on our site."
6410
+ msgstr ""
6411
+ "ستجد أدناه مفاتيح الوصول لكافة الإعلانات القوائم مع عنوان بريدك الإلكتروني على "
6412
+ "موقعنا."
6413
+
6414
+ #: templates/email-access-keys.tpl.php:5
6415
+ msgctxt "request_access_keys"
6416
+ msgid "Access Key:"
6417
+ msgstr "مفتاح الوصول:"
6418
+
6419
+ #: templates/email-access-keys.tpl.php:6
6420
+ msgctxt "request_access_keys"
6421
+ msgid "URL:"
6422
+ msgstr "رابط URL:"
6423
+
6424
+ #: templates/listing-contactform.tpl.php:9
6425
+ msgctxt "templates"
6426
+ msgid "Listing Title: "
6427
+ msgstr "عنوان الإعلان: "
6428
+
6429
+ #: templates/listing-contactform.tpl.php:16
6430
+ msgctxt "templates"
6431
+ msgid ""
6432
+ "You are currently logged in as %s. Your message will be sent using your logged in "
6433
+ "contact email."
6434
+ msgstr ""
6435
+ "أنت حاليا تسجل دخولك كـ %s. سيتم إرسال رسالتك باستخدام تسجيل دخولك في حساب البريد "
6436
+ "الإلكتروني."
6437
+
6438
+ #: templates/listing-contactform.tpl.php:21
6439
+ msgctxt "templates"
6440
+ msgid "Your Name"
6441
+ msgstr "إسمك"
6442
+
6443
+ #: templates/listing-contactform.tpl.php:25
6444
+ msgctxt "templates"
6445
+ msgid "Your Email"
6446
+ msgstr "بريدك الإلكتروني"
6447
+
6448
+ #: templates/listing-contactform.tpl.php:30
6449
+ msgctxt "templates"
6450
+ msgid "Message"
6451
+ msgstr "الرسالة"
6452
+
6453
+ #: templates/listing-contactform.tpl.php:38
6454
+ msgctxt "templates"
6455
+ msgid "Send"
6456
+ msgstr "أرسل"
6457
+
6458
+ #: templates/listing-upgradetosticky.tpl.php:1
6459
+ msgctxt "templates"
6460
+ msgid "Upgrade listing"
6461
+ msgstr "ترقية الإعلان"
6462
+
6463
+ #: templates/listing-upgradetosticky.tpl.php:10
6464
+ msgctxt "templates"
6465
+ msgid "Upgrade listing to %s for %s."
6466
+ msgstr "ترقية الإعلان الى %s لـ %s."
6467
+
6468
+ #: templates/manage-recurring-cancel.tpl.php:1
6469
+ msgctxt "manage recurring"
6470
+ msgid "Manage Recurring Payments - Cancel"
6471
+ msgstr "إدارة المدفوعات المتكررة - إلغاء"
6472
+
6473
+ #: templates/manage-recurring-cancel.tpl.php:5
6474
+ msgctxt "manage recurring"
6475
+ msgid "Plan Details"
6476
+ msgstr "تفاصيل الخطة"
6477
+
6478
+ #: templates/manage-recurring-cancel.tpl.php:9
6479
+ msgctxt "manage recurring"
6480
+ msgid "Name:"
6481
+ msgstr "الإسم:"
6482
+
6483
+ #: templates/manage-recurring-cancel.tpl.php:15
6484
+ msgctxt "manage recurring"
6485
+ msgid "Cost:"
6486
+ msgstr "التكلفة:"
6487
+
6488
+ #: templates/manage-recurring-cancel.tpl.php:18
6489
+ msgctxt "manage recurring"
6490
+ msgid "%s every %s days."
6491
+ msgstr "%s كل %s أيام."
6492
+
6493
+ #: templates/manage-recurring-cancel.tpl.php:23
6494
+ msgctxt "manage recurring"
6495
+ msgid "Number of images:"
6496
+ msgstr "عدد الصور:"
6497
+
6498
+ #: templates/manage-recurring-cancel.tpl.php:29
6499
+ msgctxt "manage recurring"
6500
+ msgid "Expires on:"
6501
+ msgstr "ستنتهي الصلاحية في:"
6502
+
6503
+ #: templates/manage-recurring.tpl.php:1
6504
+ msgctxt "manage recurring"
6505
+ msgid "Manage Recurring Payments"
6506
+ msgstr "إدارة المدفوعات المتكررة"
6507
+
6508
+ #: templates/manage-recurring.tpl.php:5
6509
+ msgctxt "manage recurring"
6510
+ msgid "Listing"
6511
+ msgstr "إعلان"
6512
+
6513
+ #: templates/manage-recurring.tpl.php:6
6514
+ msgctxt "manage subscriptions"
6515
+ msgid "Subscription / Fee Plan"
6516
+ msgstr "الاشتراك/رسم الخطة"
6517
+
6518
+ #: templates/manage-recurring.tpl.php:27
6519
+ msgctxt "manage recurring"
6520
+ msgid "%s each %s days. Next renewal is on %s."
6521
+ msgstr "%s كل %sالأيام. التجديد القادم في %s."
6522
+
6523
+ #: templates/manage-recurring.tpl.php:31
6524
+ msgctxt "manage recurring"
6525
+ msgid "Cancel recurring payment"
6526
+ msgstr "إلغاء الدفع المتكرر"
6527
+
6528
+ #: templates/parts/category-fee-selection.tpl.php:13
6529
+ msgctxt "templates"
6530
+ msgid "\"%s\" fee options"
6531
+ msgstr "خيارات الرسوم \"%s\""
6532
+
6533
+ #: templates/parts/category-fee-selection.tpl.php:18
6534
+ msgctxt "templates"
6535
+ msgid "Fee"
6536
+ msgstr "الرسم"
6537
+
6538
+ #: templates/parts/category-fee-selection.tpl.php:19
6539
+ msgctxt "templates"
6540
+ msgid "Price"
6541
+ msgstr "السعر"
6542
+
6543
+ #: templates/parts/category-fee-selection.tpl.php:20
6544
+ msgctxt "templates"
6545
+ msgid "Duration"
6546
+ msgstr "المدة"
6547
+
6548
+ #: templates/parts/category-fee-selection.tpl.php:21
6549
+ msgctxt "templates"
6550
+ msgid "Images Allowed"
6551
+ msgstr "الصور المسموح بها"
6552
+
6553
+ #: templates/parts/category-fee-selection.tpl.php:28
6554
+ msgctxt "templates"
6555
+ msgid "There are no fees available for this category."
6556
+ msgstr "لا تتوفر أية رسوم لهذا التصنيف."
6557
+
6558
+ #: templates/parts/category-fee-selection.tpl.php:50
6559
+ msgctxt "templates"
6560
+ msgid "Unlimited"
6561
+ msgstr "لا محدود"
6562
+
6563
+ #: templates/parts/category-fee-selection.tpl.php:52
6564
+ msgctxt "templates"
6565
+ msgid "%d day"
6566
+ msgid_plural "%d days"
6567
+ msgstr[0] "%d يوم"
6568
+ msgstr[1] "%d يوم"
6569
+ msgstr[2] "%d يومين"
6570
+ msgstr[3] "%d أيام"
6571
+ msgstr[4] "%d يوم"
6572
+ msgstr[5] "%d يوم"
6573
+
6574
+ #: templates/parts/listing-buttons.tpl.php:4
6575
+ #: templates/parts/listing-buttons.tpl.php:18
6576
+ msgctxt "templates"
6577
+ msgid "Edit"
6578
+ msgstr "تحرير"
6579
+
6580
+ #: templates/parts/listing-buttons.tpl.php:7
6581
+ msgctxt "templates"
6582
+ msgid "Upgrade Listing"
6583
+ msgstr "ترقية الإعلان"
6584
+
6585
+ #: templates/parts/listing-buttons.tpl.php:10
6586
+ #: templates/parts/listing-buttons.tpl.php:19
6587
+ msgctxt "templates"
6588
+ msgid "Delete"
6589
+ msgstr "حذف"
6590
+
6591
+ #: templates/parts/listing-buttons.tpl.php:10
6592
+ msgctxt "templates"
6593
+ msgid "Are you sure you wish to delete this listing?"
6594
+ msgstr "هل أنت متأكد من أنك تريد حذف هذا الاعلان؟"
6595
+
6596
+ #: templates/parts/listing-buttons.tpl.php:13
6597
+ msgid "← Back to Directory"
6598
+ msgstr "← الرجوع إلى الدليل"
6599
+
6600
+ #: templates/parts/listing-buttons.tpl.php:17
6601
+ msgctxt "templates"
6602
+ msgid "View"
6603
+ msgstr "مشاهدة"
6604
+
6605
+ #: templates/parts/login-required.tpl.php:5
6606
+ msgctxt "templates"
6607
+ msgid ""
6608
+ "You are not currently logged in. Please login or register first. When registering, "
6609
+ "you will receive an activation email. Be sure to check your spam if you don't see "
6610
+ "it in your email within 60 minutes."
6611
+ msgstr ""
6612
+ "لم تسجل الدخول حاليا. المرجو تسجيل الدخول أو التسجيل أولاً. عند التسجيل، سوف تتلقى "
6613
+ "رسالة بريد إلكتروني للتفعيل. يجب التأكد من مراجعة البريد المزعج الخاص بك إذا لم "
6614
+ "تراه في بريدك الإلكتروني خلال 60 دقيقة."
6615
+
6616
+ #: templates/parts/login-required.tpl.php:10
6617
+ msgctxt "templates"
6618
+ msgid "Login"
6619
+ msgstr "تسجيل الدخول"
6620
+
6621
+ #: templates/parts/login-required.tpl.php:31
6622
+ msgctxt "templates"
6623
+ msgid "Not yet registered?"
6624
+ msgstr "لم تتسجل بعد؟"
6625
+
6626
+ #: templates/parts/login-required.tpl.php:33
6627
+ msgctxt "templates"
6628
+ msgid "Lost your password?"
6629
+ msgstr "فقدت كلمة المرور؟"
6630
+
6631
+ #: templates/payment/payment_items.tpl.php:5
6632
+ msgctxt "payment_items"
6633
+ msgid "Item"
6634
+ msgstr "عنصر"
6635
+
6636
+ #: templates/payment/payment_items.tpl.php:6
6637
+ msgctxt "payment_items"
6638
+ msgid "Amount"
6639
+ msgstr "قدر"
6640
+
6641
+ #: templates/payment/payment_items.tpl.php:19
6642
+ msgctxt "payment_items"
6643
+ msgid "Total"
6644
+ msgstr "مجموع"
6645
+
6646
+ #: templates/payment-page.tpl.php:17
6647
+ msgctxt "templates"
6648
+ msgid "We can not process your payment at this moment. Please try again later."
6649
+ msgstr ""
6650
+ "لا يمكن أن نقوم بمعالجة الدفع الخاص بك في هذه اللحظة. المرجو المحاولة مرة أخرى "
6651
+ "لاحقاً."
6652
+
6653
+ #: templates/renew-listing.tpl.php:3
6654
+ msgctxt "templates"
6655
+ msgid "Renew Listing"
6656
+ msgstr "تجديد الإعلان"
6657
+
6658
+ #: templates/renew-listing.tpl.php:7
6659
+ msgctxt "renewal"
6660
+ msgid "Proceed to Checkout"
6661
+ msgstr "قم بإنهاء الشراء"
6662
+
6663
+ #: templates/renew-listing.tpl.php:10
6664
+ msgctxt "templates"
6665
+ msgid ""
6666
+ "You are about to renew your listing \"%s\" publication inside category \"%s\"."
6667
+ msgstr "أنت على وشك تجديد الإعلان \"%s\" النشر داخل التصنيف \"%s\"."
6668
+
6669
+ #: templates/renew-listing.tpl.php:15
6670
+ msgctxt "WPBDM"
6671
+ msgid ""
6672
+ "Please select a fee option or click \"Do not renew my listing\" to cancel your "
6673
+ "renewal."
6674
+ msgstr ""
6675
+ "المرجو تحديد خيار رسم أو إضغط فوق \"عدم تجديد إعلاني\" لإلغاء التجديد الخاص بك."
6676
+
6677
+ #: templates/renew-listing.tpl.php:22
6678
+ #: templates/submit-listing/category-selection.tpl.php:8
6679
+ #: templates/submit-listing/fee-selection.tpl.php:37
6680
+ #: templates/submit-listing/images.tpl.php:38
6681
+ #: templates/submit-listing/listing-fields.tpl.php:34
6682
+ msgctxt "templates"
6683
+ msgid "Continue"
6684
+ msgstr "متابعة"
6685
+
6686
+ #: templates/renew-listing.tpl.php:25
6687
+ msgctxt "renewal"
6688
+ msgid "Cancel Listing Renewal"
6689
+ msgstr "إلغاء تجديد الإعلان"
6690
+
6691
+ #: templates/renew-listing.tpl.php:26
6692
+ msgctxt "templates"
6693
+ msgid "Do not renew my listing"
6694
+ msgstr "عدم تجديد إعلاني"
6695
+
6696
+ #: templates/search-form.tpl.php:3
6697
+ msgctxt "templates"
6698
+ msgid "Find a listing"
6699
+ msgstr "العثور على إعلان"
6700
+
6701
+ #: templates/search-form.tpl.php:17
6702
+ msgctxt "search"
6703
+ msgid "Clear"
6704
+ msgstr "مسح"
6705
+
6706
+ #: templates/send-access-keys.tpl.php:5
6707
+ msgctxt "send-access-keys"
6708
+ msgid "Enter your e-mail address"
6709
+ msgstr "إدخال بريدك إلكتروني"
6710
+
6711
+ #: templates/send-access-keys.tpl.php:9
6712
+ msgctxt "send-access-keys"
6713
+ msgid "Continue"
6714
+ msgstr "متابعة"
6715
+
6716
+ #: templates/submit-listing/category-selection.tpl.php:1
6717
+ msgctxt "templates"
6718
+ msgid "Category Selection"
6719
+ msgstr "إختيار تصنيف"
6720
+
6721
+ #: templates/submit-listing/done.tpl.php:1
6722
+ msgctxt "templates"
6723
+ msgid "Submission Received"
6724
+ msgstr "تم تلقي إضافتك"
6725
+
6726
+ #: templates/submit-listing/done.tpl.php:4
6727
+ msgctxt "templates"
6728
+ msgid "Your listing has been submitted."
6729
+ msgstr "تم إضافة إعلانك."
6730
+
6731
+ #: templates/submit-listing/done.tpl.php:6
6732
+ msgctxt "templates"
6733
+ msgid "Your listing changes were saved."
6734
+ msgstr "تم حفظ تغييرات إعلانك."
6735
+
6736
+ #: templates/submit-listing/done.tpl.php:11
6737
+ msgctxt "templates"
6738
+ msgid "Go to your listing"
6739
+ msgstr "الذهاب إلى إعلانك"
6740
+
6741
+ #: templates/submit-listing/done.tpl.php:13
6742
+ msgctxt "templates"
6743
+ msgid "Return to directory."
6744
+ msgstr "الرجوع إلى الدليل."
6745
+
6746
+ #: templates/submit-listing/extra-sections.tpl.php:1
6747
+ msgctxt "templates"
6748
+ msgid "Additional Information"
6749
+ msgstr "معلومات اضافية"
6750
+
6751
+ #: templates/submit-listing/extra-sections.tpl.php:6
6752
+ msgctxt "templates"
6753
+ msgid "Continue with listing submit"
6754
+ msgstr "تواصل مع إرسال الإعلان"
6755
+
6756
+ #: templates/submit-listing/fee-selection.tpl.php:1
6757
+ msgctxt "templates"
6758
+ msgid "Fee/Upgrade Selection"
6759
+ msgstr "تحديد الرسم/الترقية"
6760
+
6761
+ #: templates/submit-listing/fee-selection.tpl.php:18
6762
+ msgctxt "templates"
6763
+ msgid "Would you like to upgrade your listing to \"%s\" for %s more?"
6764
+ msgstr "هل ترغب في ترقية إعلانك إلى \"%s\" ل %s أكثر؟"
6765
+
6766
+ #: templates/submit-listing/fee-selection.tpl.php:21
6767
+ msgctxt "templates"
6768
+ msgid "Yes, upgrade my listing now."
6769
+ msgstr "نعم، قم بترقية إعلاني الآن."
6770
+
6771
+ #: templates/submit-listing/fee-selection.tpl.php:31
6772
+ msgctxt "submit"
6773
+ msgid "Would you like to make your fee renew automatically at the end of the period?"
6774
+ msgstr "هل ترغب في جعل تجديد الرسوم الخاصة بك تلقائية في نهاية الفترة؟"
6775
+
6776
+ #: templates/submit-listing/images-single.tpl.php:18
6777
+ msgctxt "templates"
6778
+ msgid "Delete Image"
6779
+ msgstr "حذف الصورة"
6780
+
6781
+ #: templates/submit-listing/images-single.tpl.php:24
6782
+ msgctxt "templates"
6783
+ msgid "Set this image as the listing thumbnail."
6784
+ msgstr "تعيين هذه الصورة كصورة مصغرة للإعلان."
6785
+
6786
+ #: templates/submit-listing/images-upload-form.tpl.php:17
6787
+ msgctxt "templates"
6788
+ msgid "Upload Images"
6789
+ msgstr "رفع الصور"
6790
+
6791
+ #: templates/submit-listing/images-upload-form.tpl.php:22
6792
+ msgctxt "templates"
6793
+ msgid "Drop files here"
6794
+ msgstr "أسقط الملفات هنا"
6795
+
6796
+ #: templates/submit-listing/images-upload-form.tpl.php:23
6797
+ msgctxt "templates image upload"
6798
+ msgid "or"
6799
+ msgstr "أو"
6800
+
6801
+ #: templates/submit-listing/images-upload-form.tpl.php:24
6802
+ msgctxt "templates"
6803
+ msgid "Select images from your hard drive"
6804
+ msgstr "حدد الصور من جهازك"
6805
+
6806
+ #: templates/submit-listing/images-upload-form.tpl.php:27
6807
+ msgctxt "templates"
6808
+ msgid "Uploading %s file(s)... Please wait."
6809
+ msgstr "رفع %s ملف (ملفات)... المرجو الانتظار."
6810
+
6811
+ #: templates/submit-listing/images-upload-form.tpl.php:31
6812
+ msgctxt "templates"
6813
+ msgid ""
6814
+ "Your image slots are all full at this time. You may click \"Continue\" if you are "
6815
+ "done, or \"Delete Image\" to upload a new image in place of a current one."
6816
+ msgstr ""
6817
+ "أماكن الصورة الخاصة بك ممتلئة في هذا الوقت. يمكنك الضغط فوق \"متابعة\" إذا كنت "
6818
+ "انتهيت، أو \"حذف الصورة\" لتحميل صورة جديدة بدلاً من الموجودة حاليا."
6819
+
6820
+ #: templates/submit-listing/images-upload-form.tpl.php:39
6821
+ msgctxt "templates"
6822
+ msgid "Image slots available:"
6823
+ msgstr "أماكن الصورة المتاحة:"
6824
+
6825
+ #: templates/submit-listing/images-upload-form.tpl.php:45
6826
+ msgctxt "templates"
6827
+ msgid "Min. file size:"
6828
+ msgstr "أقل حجم الملف:"
6829
+
6830
+ #: templates/submit-listing/images-upload-form.tpl.php:51
6831
+ msgctxt "templates"
6832
+ msgid "Max. file size:"
6833
+ msgstr "أقصى حجم للملف:"
6834
+
6835
+ #: templates/submit-listing/images.tpl.php:4
6836
+ msgctxt "templates"
6837
+ msgid "Listing Images"
6838
+ msgstr "صور الإعلانات"
6839
+
6840
+ #: templates/submit-listing/images.tpl.php:7
6841
+ msgctxt "templates"
6842
+ msgid ""
6843
+ "There is an image pending upload. Would you still like to continue without saving "
6844
+ "the image?"
6845
+ msgstr "هناك صورة تنتظر الرفع. هل مازلت تريد المتابعة بدون حفظ الصورة؟"
6846
+
6847
+ #: templates/submit-listing/images.tpl.php:13
6848
+ msgctxt "templates"
6849
+ msgid "There are no images currently attached to your listing."
6850
+ msgstr "لا توجد أي صور مرفقة حاليا إلى إعلانك."
6851
+
6852
+ #: templates/submit-listing/listing-fields.tpl.php:1
6853
+ msgctxt "templates"
6854
+ msgid "Listing Information"
6855
+ msgstr "معلومات حول الإعلان"
6856
+
6857
+ #: templates/submit-listing/listing-fields.tpl.php:15
6858
+ msgctxt "templates"
6859
+ msgid "* Indicates required fields."
6860
+ msgstr "* يشير إلى الحقول المطلوبة."
6861
+
6862
+ #: themes/default/templates/excerpt_content.tpl.php:13
6863
+ msgctxt "themes/default"
6864
+ msgid "Address"
6865
+ msgstr "العنوان"
6866
+
6867
+ #: vendors/edd/EDD_SL_Plugin_Updater.php:178
6868
+ msgid ""
6869
+ "There is a new version of %1$s available. <a target=\"_blank\" class=\"thickbox\" "
6870
+ "href=\"%2$s\">View version %3$s details</a>."
6871
+ msgstr ""
6872
+ "هناك إصدار جديد من %1$s متاح. <a target=\"_blank\" class=\"thickbox\" href=\"%2$s"
6873
+ "\">مشاهدة تفاصيل النسخة %3$s</a>."
6874
+
6875
+ #: vendors/edd/EDD_SL_Plugin_Updater.php:185
6876
+ msgid ""
6877
+ "There is a new version of %1$s available. <a target=\"_blank\" class=\"thickbox\" "
6878
+ "href=\"%2$s\">View version %3$s details</a> or <a href=\"%4$s\">update now</a>."
6879
+ msgstr ""
6880
+ "هناك إصدار جديد من %1$s متاح. <a target=\"_blank\" class=\"thickbox\" href=\"%2$s"
6881
+ "\">مشاهدة تفاصيل النسخة %3$s</a> أو <a href=\"%4$s\">التحديث الآن</a>."
6882
+
6883
+ #: vendors/edd/EDD_SL_Plugin_Updater.php:325
6884
+ msgid "You do not have permission to install plugin updates"
6885
+ msgstr "لا تملك الصلاحية لتثبيت تحديثات الإضافة"
6886
+
6887
+ #: vendors/edd/EDD_SL_Plugin_Updater.php:325
6888
+ msgid "Error"
6889
+ msgstr "خطأ"
6890
+
6891
+ #. Plugin URI of the plugin/theme
6892
+ msgid "http://www.businessdirectoryplugin.com"
6893
+ msgstr "http://www.businessdirectoryplugin.com"
6894
+
6895
+ #. Description of the plugin/theme
6896
+ msgid ""
6897
+ "Provides the ability to maintain a free or paid business directory on your "
6898
+ "WordPress powered site."
6899
+ msgstr ""
6900
+ "يوفر القدرة على الحفاظ على دليل أعمال مجاني أو مدفوع على موقعك المدعوم من ووردبريس."
6901
+
6902
+ #. Author of the plugin/theme
6903
+ msgid "D. Rodenbaugh"
6904
+ msgstr "D. Rodenbaugh"
6905
+
6906
+ #. Author URI of the plugin/theme
6907
+ msgid "http://businessdirectoryplugin.com"
6908
+ msgstr "http://businessdirectoryplugin.com"
6909
+
6910
+ #~ msgctxt "admin csv-import"
6911
+ #~ msgid "Use spreadsheet information only."
6912
+ #~ msgstr "استخدام جدول بيانات المعلومات فقط."
6913
+
6914
+ #~ msgctxt "admin sidebar"
6915
+ #~ msgid "Single Site License Combo Pack"
6916
+ #~ msgstr "حزمة ترخيص موقع واحد"
6917
+
6918
+ #~ msgctxt "admin sidebar"
6919
+ #~ msgid "Multi Site License Combo Pack"
6920
+ #~ msgstr "حزمة ترخيص مواقع متعددة"
6921
+
6922
+ #~ msgctxt "admin settings"
6923
+ #~ msgid "Disable CPT integration."
6924
+ #~ msgstr "تعطيل تكامل CPT."
6925
+
6926
+ #~ msgctxt "listings"
6927
+ #~ msgid "Fee \"%s\" for category \"%s\""
6928
+ #~ msgstr "Frais \"%s\" pour catégorie \"%s\""
6929
+
6930
+ #~ msgid "View"
6931
+ #~ msgstr "Vue"
6932
+
6933
+ #~ msgid "Edit"
6934
+ #~ msgstr "Editer"
6935
+
6936
+ #~ msgid "Delete"
6937
+ #~ msgstr "Effacer"
6938
+
6939
+ #~ msgid "Upgrade Listing"
6940
+ #~ msgstr "Mettre à jour l'annonce"
6941
+
6942
+ #~ msgid ""
6943
+ #~ "You need to create a page with the [businessdirectory] shortcode for the "
6944
+ #~ "Business Directory plugin to work correctly."
6945
+ #~ msgstr ""
6946
+ #~ "Vous devez créer une page avec la balise [businessdirectory] pour que le plugin "
6947
+ #~ "Business Directory fonctionne correctement."
6948
+
6949
+ #~ msgid "The directory is temporarily disabled."
6950
+ #~ msgstr "L'annuaire est temporairement désactivé."
6951
+
6952
+ #~ msgctxt "preview"
6953
+ #~ msgid "This is just a preview. The listing has not been published yet."
6954
+ #~ msgstr ""
6955
+ #~ "Il s'agit seulement d'une pré-visualisation. L'annonce n'a pas encore été "
6956
+ #~ "publiée."
6957
+
6958
+ #~ msgctxt "templates"
6959
+ #~ msgid "Listings tagged: %s"
6960
+ #~ msgstr "Annonces étiquetées: %s"
6961
+
6962
+ #~ msgctxt "post type singular name"
6963
+ #~ msgid "Directory"
6964
+ #~ msgstr "Annuaire"
6965
+
6966
+ #~ msgctxt "themes"
6967
+ #~ msgid ""
6968
+ #~ "For better results, \"%s\" theme suggests the following form fields to be "
6969
+ #~ "created."
6970
+ #~ msgstr ""
6971
+ #~ "For better results, \"%s\" theme suggests the following form fields to be "
6972
+ #~ "created."
6973
+
6974
+ #~ msgctxt "themes"
6975
+ #~ msgid "Create suggested fields"
6976
+ #~ msgstr "Créer ces champs"
6977
+
6978
+ #~ msgctxt "fees admin"
6979
+ #~ msgid "You do not have any listing fees setup yet."
6980
+ #~ msgstr "Vous n'avez aucun droits d'inscription mis en place actuellement."
6981
+
6982
+ #~ msgctxt "fees admin"
6983
+ #~ msgid "Applied To"
6984
+ #~ msgstr "Appliqué à"
6985
+
6986
+ #~ msgctxt "admin settings"
6987
+ #~ msgid "Registration"
6988
+ #~ msgstr "Enregistrement"
6989
+
6990
+ #~ msgid "Google Wallet"
6991
+ #~ msgstr "Google Wallet"
6992
+
6993
+ #~ msgctxt "google-wallet"
6994
+ #~ msgid ""
6995
+ #~ "For recurring payments to work you need to <a>specify a postback URL</a> in "
6996
+ #~ "your Google Wallet settings."
6997
+ #~ msgstr ""
6998
+ #~ "Pour que les paiements récurrents fonctionnent, vous devez spécifier une <a> "
6999
+ #~ "publication URL </a> dans vos paramètres Google Wallet."
7000
+
7001
+ #~ msgctxt "google-wallet"
7002
+ #~ msgid "Please use %s as the postback URL."
7003
+ #~ msgstr "Veuillez utiliser %s comme publication URL."
7004
+
7005
+ #~ msgid "Activate Google Wallet?"
7006
+ #~ msgstr "Activer Google Wallet?"
7007
+
7008
+ #~ msgid "Seller Identifier"
7009
+ #~ msgstr "Identifiant vendeur"
7010
+
7011
+ #~ msgid "Seller Secret"
7012
+ #~ msgstr "Vendeur secret"
7013
+
7014
+ #~ msgctxt "google-wallet"
7015
+ #~ msgid "Seller ID is missing."
7016
+ #~ msgstr "L'identifiant du vendeur manque."
7017
+
7018
+ #~ msgctxt "google-wallet"
7019
+ #~ msgid "Seller Secret is missing."
7020
+ #~ msgstr "Le clé secrète du vendeur manque"
7021
+
7022
+ #~ msgctxt "google-wallet"
7023
+ #~ msgid "One time payment + recurring payment for renewal fees"
7024
+ #~ msgstr "Paiement en une fois + paiement récurrent des frais de renouvellement"
7025
+
7026
+ #~ msgctxt "google-wallet"
7027
+ #~ msgid ""
7028
+ #~ "Payment was rejected because internal data does not look like a valid Google "
7029
+ #~ "Wallet transaction."
7030
+ #~ msgstr ""
7031
+ #~ "Le paiement a été rejetté car les données internes ne ressemble pas à une "
7032
+ #~ "transaction valide de Google Wallet."
7033
+
7034
+ #~ msgctxt "google-wallet"
7035
+ #~ msgid "Payment has been rejected because an internal error occurred."
7036
+ #~ msgstr "Le paiement a été rejetée à cause d'une erreur interne."
7037
+
7038
+ #~ msgctxt "google-wallet"
7039
+ #~ msgid "The transaction has been canceled at user's request."
7040
+ #~ msgstr "La transaction a été annulée à la demande de l'utilisateur."
7041
+
7042
+ #~ msgctxt "fees-api"
7043
+ #~ msgid "Fee allowed images must be a non-negative integer."
7044
+ #~ msgstr "Les frais autorisé doivent être un entier non négatif."
7045
+
7046
+ #~ msgctxt "fees-api"
7047
+ #~ msgid "Fee listing run must be a non-negative integer."
7048
+ #~ msgstr "Les frais d'annonce doivent être un entier non-négatif."
7049
+
7050
+ #~ msgid ""
7051
+ #~ "Due to Google Wallet limitations only monthly (30 days) recurring fees are "
7052
+ #~ "supported by the gateway. All other fees will be charged as non-recurring."
7053
+ #~ msgstr ""
7054
+ #~ "En raison des limitations mensuels de Google Wallet (30 jours), les frais "
7055
+ #~ "récurrents sont pris en charge par la passerelle. Tous les autres frais seront "
7056
+ #~ "facturés comme non récurrents."
7057
+
7058
+ #~ msgctxt "themes admin"
7059
+ #~ msgid "Delete theme"
7060
+ #~ msgstr "Effacer les thème"
7061
+
7062
+ #~ msgctxt "themes admin"
7063
+ #~ msgid "Delete Theme"
7064
+ #~ msgstr "Effacer le thème"
7065
+
7066
+ #~ msgctxt "admin settings"
7067
+ #~ msgid "Display search form when displaying search results?"
7068
+ #~ msgstr ""
7069
+ #~ "Afannoncer un formulaire de recherche lors de l'affichage des résultats de "
7070
+ #~ "recherche?"
7071
+
7072
+ #~ msgctxt "search"
7073
+ #~ msgid "Return to Advanced Search"
7074
+ #~ msgstr "Retourner à la recherche avancée"
7075
+
7076
+ #~ msgctxt "admin transactions"
7077
+ #~ msgid "transaction"
7078
+ #~ msgstr "transaction"
7079
+
7080
+ #~ msgctxt "admin transactions"
7081
+ #~ msgid "transactions"
7082
+ #~ msgstr "transactions"
7083
+
7084
+ #~ msgctxt "admin transactions"
7085
+ #~ msgid "ID"
7086
+ #~ msgstr "ID"
7087
+
7088
+ #~ msgctxt "admin transactions"
7089
+ #~ msgid "Type"
7090
+ #~ msgstr "Type"
7091
+
7092
+ #~ msgctxt "admin transactions"
7093
+ #~ msgid "Listing"
7094
+ #~ msgstr "Annonce"
7095
+
7096
+ #~ msgctxt "admin transactions"
7097
+ #~ msgid "Amount"
7098
+ #~ msgstr "Montant"
7099
+
7100
+ #~ msgctxt "admin transactions"
7101
+ #~ msgid "Date"
7102
+ #~ msgstr "Date"
7103
+
7104
+ #~ msgctxt "admin transactions"
7105
+ #~ msgid "Listing Submit (Initial Payment)"
7106
+ #~ msgstr "Poster annonce(paiement initial)"
7107
+
7108
+ #~ msgctxt "admin transactions"
7109
+ #~ msgid "Listing Edit (Category Fee)"
7110
+ #~ msgstr "Editer annonce (Frais de catégories)"
7111
+
7112
+ #~ msgctxt "admin transactions"
7113
+ #~ msgid "Renewal"
7114
+ #~ msgstr "Renouveller"
7115
+
7116
+ #~ msgctxt "admin transactions"
7117
+ #~ msgid "Upgrade to Featured"
7118
+ #~ msgstr "Mettre en avant"
7119
+
7120
+ #~ msgctxt "admin transactions"
7121
+ #~ msgid "Gateway"
7122
+ #~ msgstr "Passerelle"
7123
+
7124
+ #~ msgctxt "admin transactions"
7125
+ #~ msgid "Payer Info"
7126
+ #~ msgstr "Info du payeur"
7127
+
7128
+ #~ msgctxt "admin transactions"
7129
+ #~ msgid "Name"
7130
+ #~ msgstr "Nom"
7131
+
7132
+ #~ msgctxt "admin transactions"
7133
+ #~ msgid "E-Mail"
7134
+ #~ msgstr "E-maail"
7135
+
7136
+ #~ msgctxt "admin transactions"
7137
+ #~ msgid "Processed On"
7138
+ #~ msgstr "Traité sur"
7139
+
7140
+ #~ msgctxt "admin transactions"
7141
+ #~ msgid "Processed By"
7142
+ #~ msgstr "Traité par"
7143
+
7144
+ #~ msgctxt "admin transactions"
7145
+ #~ msgid "Approve"
7146
+ #~ msgstr "Approuver"
7147
+
7148
+ #~ msgctxt "admin transactions"
7149
+ #~ msgid "Reject"
7150
+ #~ msgstr "Rejetter"
7151
+
7152
+ #~ msgctxt "admin transactions"
7153
+ #~ msgid "+ Details"
7154
+ #~ msgstr "+ Détails"
7155
+
7156
+ #~ msgctxt "admin transactions"
7157
+ #~ msgid "Delete"
7158
+ #~ msgstr "Effacer"
7159
+
7160
+ #~ msgctxt "admin transactions"
7161
+ #~ msgid "All"
7162
+ #~ msgstr "Tout"
7163
+
7164
+ #~ msgctxt "admin transactions"
7165
+ #~ msgid "Approved"
7166
+ #~ msgstr "Approuvé"
7167
+
7168
+ #~ msgctxt "admin transactions"
7169
+ #~ msgid "Pending"
7170
+ #~ msgstr "En attente"
7171
+
7172
+ #~ msgctxt "admin transactions"
7173
+ #~ msgid "Rejected"
7174
+ #~ msgstr "Rejetté"
7175
+
7176
+ #~ msgctxt "admin"
7177
+ #~ msgid "The transaction has been deleted."
7178
+ #~ msgstr "La transaction a été effacé."
7179
+
7180
+ #~ msgctxt "admin settings"
7181
+ #~ msgid "Paid first then free"
7182
+ #~ msgstr "Payez pour en disposer gratuitement"
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-06-21 22:32:39+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."
@@ -2237,7 +2237,7 @@ msgctxt "form-fields admin"
2237
  msgid "Please see the <a>Form Fields documentation</a> for more details."
2238
  msgstr ""
2239
 
2240
- #. #-#-#-#-# WPBDM.pot (Business Directory Plugin 4.0.7) #-#-#-#-#
2241
  #. Plugin Name of the plugin/theme
2242
  #: admin/templates/header.tpl.php:4
2243
  msgid "Business Directory Plugin"
@@ -3456,6 +3456,14 @@ msgstr ""
3456
  "Zeige und setze Benutzervereinbarung als Pflichtfeld in Bedingungen und "
3457
  "Konditionen"
3458
 
 
 
 
 
 
 
 
 
3459
  #: core/class-settings.php:107
3460
  msgctxt "admin settings"
3461
  msgid ""
@@ -3586,13 +3594,13 @@ msgctxt "admin settings"
3586
  msgid "Enable AJAX compatibility mode?"
3587
  msgstr ""
3588
 
3589
- #: core/class-settings.php:179 core/class-settings.php:660
3590
  msgctxt "admin settings"
3591
  msgid "Listings"
3592
  msgstr "Einträge"
3593
 
3594
- #: core/class-settings.php:180 core/class-settings.php:330
3595
- #: core/class-settings.php:617
3596
  msgctxt "admin settings"
3597
  msgid "General Settings"
3598
  msgstr "Allgemeine Einstellungen"
@@ -3682,18 +3690,28 @@ msgctxt "admin settings"
3682
  msgid "Status of listings upon uninstalling plugin"
3683
  msgstr "Status der Einträge bei Deinstallation der Erweiterung"
3684
 
 
 
 
 
 
 
 
 
 
 
3685
  #: core/class-settings.php:220
3686
  msgctxt "admin settings"
3687
  msgid "Status of deleted listings"
3688
  msgstr "Status der gelöschten Einträge"
3689
 
3690
- #: core/class-settings.php:223
3691
  #, fuzzy
3692
  msgctxt "admin settings"
3693
  msgid "Submit Listing instructions message"
3694
  msgstr "Eintrag Kontakt Nachricht"
3695
 
3696
- #: core/class-settings.php:223
3697
  msgctxt "admin settings"
3698
  msgid ""
3699
  "This text is displayed at the first page of the Submit Listing process for "
@@ -3701,22 +3719,22 @@ msgid ""
3701
  "form or anything you want to tell users before they get started."
3702
  msgstr ""
3703
 
3704
- #: core/class-settings.php:226
3705
  msgctxt "admin settings"
3706
  msgid "Listing Renewal"
3707
  msgstr "Einträge erneuern"
3708
 
3709
- #: core/class-settings.php:227
3710
  msgctxt "admin settings"
3711
  msgid "Turn on listing renewal option?"
3712
  msgstr "Option zur Erneuerung von Einträgen aktivieren?"
3713
 
3714
- #: core/class-settings.php:230
3715
  msgctxt "admin settings"
3716
  msgid "Allow recurring renewal payments?"
3717
  msgstr "Wiederholte Bezahlung erlauben?"
3718
 
3719
- #: core/class-settings.php:233
3720
  msgctxt "admin settings"
3721
  msgid ""
3722
  "Allow users to opt in for automatic renewal of their listings. The fee is "
@@ -3726,12 +3744,12 @@ msgstr ""
3726
  "anzumelden. Der Preis wird abgebucht, zu dem Zeitpunkt an dem der Eintrag "
3727
  "abläuft, ohne Eingriff durch den Benutzer."
3728
 
3729
- #: core/class-settings.php:237
3730
  msgctxt "admin settings"
3731
  msgid "Use recurring payments as the default payment method?"
3732
  msgstr "Benutze automatische Abbuchungen als Standardbezahlmethode?"
3733
 
3734
- #: core/class-settings.php:240
3735
  msgctxt "admin settings"
3736
  msgid ""
3737
  "Enable automatic renewal without having users opt in during the submit "
@@ -3740,12 +3758,12 @@ msgstr ""
3740
  "Automatische Abbuchung aktivieren, ohne die Anmeldung durch den Benutzer "
3741
  "während der Einreichung."
3742
 
3743
- #: core/class-settings.php:245
3744
  msgctxt "admin settings"
3745
  msgid "Listing renewal e-mail threshold (in days)"
3746
  msgstr "Eintragsabbuchungsemail Grenze (in tagen)"
3747
 
3748
- #: core/class-settings.php:248
3749
  msgctxt "admin settings"
3750
  msgid ""
3751
  "Configure how many days before listing expiration is the renewal e-mail sent."
@@ -3753,7 +3771,7 @@ msgstr ""
3753
  "Konfiguriere wieviel Tage vor der Abbuchung eine Buchungsmail verschickt "
3754
  "wird."
3755
 
3756
- #: core/class-settings.php:252
3757
  msgctxt "admin settings"
3758
  msgid ""
3759
  "Send expiration notices including a cancel links to auto-renewed listings?"
@@ -3761,17 +3779,17 @@ msgstr ""
3761
  "Sende eine Ablaufinformation die einen Beenden und einen Automatisch Eintrag "
3762
  "Erneuern Link enghält?"
3763
 
3764
- #: core/class-settings.php:259
3765
  msgctxt "admin settings"
3766
  msgid "Remind listing owners of expired listings (past due)?"
3767
  msgstr "Eintraginhaber an abgelaufene Einträge erinnern (überfällig)?"
3768
 
3769
- #: core/class-settings.php:264
3770
  msgctxt "admin settings"
3771
  msgid "Listing renewal reminder e-mail threshold (in days)"
3772
  msgstr "Einträge erneuern E-mail Grenze (in Tagen)"
3773
 
3774
- #: core/class-settings.php:267
3775
  msgctxt "admin settings"
3776
  msgid ""
3777
  "Configure how many days after the expiration of a listing an e-mail reminder "
@@ -3780,164 +3798,175 @@ msgstr ""
3780
  "Konfiguriere wie viele Tage nach dem Ablauf eines Eintrags eine E-mail an "
3781
  "den Inhaber versendet wird."
3782
 
3783
- #: core/class-settings.php:270
3784
  msgctxt "admin settings"
3785
  msgid "Post/Category Settings"
3786
  msgstr "Post/Kategorie Einstellungen"
3787
 
3788
- #: core/class-settings.php:271
3789
  msgctxt "admin settings"
3790
  msgid "Default new post status"
3791
  msgstr "Standard neuer Post Status"
3792
 
3793
- #: core/class-settings.php:274
 
 
 
 
 
 
 
 
 
 
 
3794
  msgctxt "admin settings"
3795
  msgid "Edit post status"
3796
  msgstr "Post Status Bearbeiten"
3797
 
3798
- #: core/class-settings.php:276
3799
  msgctxt "admin settings"
3800
  msgid "Order categories list by"
3801
  msgstr "Anordnung Kategorieliste durch"
3802
 
3803
- #: core/class-settings.php:278
3804
  msgctxt "admin settings"
3805
  msgid "Name"
3806
  msgstr "Name"
3807
 
3808
- #: core/class-settings.php:279
3809
  msgctxt "admin settings"
3810
  msgid "Slug"
3811
  msgstr "Entwurf"
3812
 
3813
- #: core/class-settings.php:280
3814
  msgctxt "admin settings"
3815
  msgid "Listing Count"
3816
  msgstr "Anzahl Einträge"
3817
 
3818
- #: core/class-settings.php:282
3819
  msgctxt "admin settings"
3820
  msgid "Sort order for categories"
3821
  msgstr "Sortierung für Kategorien"
3822
 
3823
- #: core/class-settings.php:283 core/class-settings.php:301
3824
  msgctxt "admin settings"
3825
  msgid "Ascending"
3826
  msgstr "Aufsteigend"
3827
 
3828
- #: core/class-settings.php:283 core/class-settings.php:301
3829
  msgctxt "admin settings"
3830
  msgid "Descending"
3831
  msgstr "Absteigend"
3832
 
3833
- #: core/class-settings.php:284
3834
  msgctxt "admin settings"
3835
  msgid "Show category post count?"
3836
  msgstr "Kategoriepost Anzahl anzeigen?"
3837
 
3838
- #: core/class-settings.php:285
3839
  msgctxt "admin settings"
3840
  msgid "Hide empty categories?"
3841
  msgstr "Leere Kategorien verbergen?"
3842
 
3843
- #: core/class-settings.php:286
3844
  msgctxt "admin settings"
3845
  msgid "Show only parent categories in category list?"
3846
  msgstr "Nur Elternkategorien in Kategorieliste anzeigen?"
3847
 
3848
- #: core/class-settings.php:288
3849
  msgctxt "admin settings"
3850
  msgid "Listings Sorting"
3851
  msgstr "Sortierung Einträge"
3852
 
3853
- #: core/class-settings.php:289
3854
  msgctxt "admin settings"
3855
  msgid "Order directory listings by"
3856
  msgstr "Anordnung Verzeichniseinträge durch"
3857
 
3858
- #: core/class-settings.php:291
3859
  msgctxt "admin settings"
3860
  msgid "Title"
3861
  msgstr "Titel"
3862
 
3863
- #: core/class-settings.php:292
3864
  msgctxt "admin settings"
3865
  msgid "Author"
3866
  msgstr "Author"
3867
 
3868
- #: core/class-settings.php:293 core/class-settings.php:703
3869
  msgctxt "admin settings"
3870
  msgid "Date posted"
3871
  msgstr "Datum gepostet"
3872
 
3873
- #: core/class-settings.php:294 core/class-settings.php:704
3874
  msgctxt "admin settings"
3875
  msgid "Date last modified"
3876
  msgstr "Datum zuletzt verändert"
3877
 
3878
- #: core/class-settings.php:295
3879
  msgctxt "admin settings"
3880
  msgid "Random"
3881
  msgstr "Zufall"
3882
 
3883
- #: core/class-settings.php:296
3884
  msgctxt "admin settings"
3885
  msgid "Paid first then free. Inside each group by date."
3886
  msgstr ""
3887
 
3888
- #: core/class-settings.php:297
3889
  msgctxt "admin settings"
3890
  msgid "Paid first then free. Inside each group by title."
3891
  msgstr ""
3892
 
3893
- #: core/class-settings.php:299
3894
  msgctxt "admin settings"
3895
  msgid "Sort directory listings by"
3896
  msgstr "Verzeichnissortierung der Einträge durch"
3897
 
3898
- #: core/class-settings.php:300
3899
  msgctxt "admin settings"
3900
  msgid "Ascending for ascending order A-Z, Descending for descending order Z-A"
3901
  msgstr ""
3902
  "Aufsteigend für aufsteigende Reihenfolge A-Z, Absteigend für absteigende "
3903
  "Reihenfolge Z-A"
3904
 
3905
- #: core/class-settings.php:305
3906
  msgctxt "admin settings"
3907
  msgid "Enable sort bar?"
3908
  msgstr "Sortierung aktivieren?"
3909
 
3910
- #: core/class-settings.php:310
3911
  msgctxt "admin settings"
3912
  msgid "Sortbar Fields"
3913
  msgstr "Sortierbare Felder"
3914
 
3915
- #: core/class-settings.php:319
3916
  msgctxt "admin settings"
3917
  msgid "Featured (Sticky) listing settings"
3918
  msgstr "Unterstützte (unbewegliche) Eintrageinstellungen"
3919
 
3920
- #: core/class-settings.php:320
3921
  msgctxt "admin settings"
3922
  msgid "Offer sticky listings?"
3923
  msgstr "Unbewegliche Einträge anbieten? "
3924
 
3925
- #: core/class-settings.php:321
3926
  msgctxt "admin settings"
3927
  msgid "Offer upgrades during submit process?"
3928
  msgstr "Aktualisierungen anbieten im Bestellprozess?"
3929
 
3930
- #: core/class-settings.php:322
3931
  msgctxt "admin settings"
3932
  msgid "Sticky listing price"
3933
  msgstr "Unbeweglicher Eintragspreis"
3934
 
3935
- #: core/class-settings.php:323
3936
  msgctxt "admin settings"
3937
  msgid "Sticky listing page description text"
3938
  msgstr "Unbewegliche Eintragsseite Beschreibung"
3939
 
3940
- #: core/class-settings.php:324
3941
  msgctxt "admin settings"
3942
  msgid ""
3943
  "You can upgrade your listing to featured status. Featured listings will "
@@ -3946,17 +3975,17 @@ msgstr ""
3946
  "Du kannst dein Eintrag in den hervorgehobenen Status aktualisieren. "
3947
  "Unterstützte Einträge werden immer ganz oben eines Eintrags angezeigt."
3948
 
3949
- #: core/class-settings.php:329
3950
  msgctxt "admin settings"
3951
  msgid "E-Mail"
3952
  msgstr "E-mail"
3953
 
3954
- #: core/class-settings.php:333
3955
  msgctxt "admin settings"
3956
  msgid "Display email address fields publicly?"
3957
  msgstr "E-mail Adressfeld öffentlich anzeigen?"
3958
 
3959
- #: core/class-settings.php:336
3960
  msgctxt "admin settings"
3961
  msgid ""
3962
  "Shows the email address of the listing owner to all web users. NOT "
@@ -3965,12 +3994,12 @@ msgid ""
3965
  msgstr ""
3966
  "E-mailadresse allen Benutzern anzeigen. NICHT ZU EMPFEHLEN. Achtung Spam!"
3967
 
3968
- #: core/class-settings.php:339
3969
  msgctxt "admin settings"
3970
  msgid "How to determine the listing's email address?"
3971
  msgstr "Wie legt man die E-mailadresse für einen Eintrag fest?"
3972
 
3973
- #: core/class-settings.php:342
3974
  msgctxt "admin settings"
3975
  msgid ""
3976
  "This affects emails sent to listing owners via contact forms or when their "
@@ -3979,125 +4008,125 @@ msgstr ""
3979
  "Dies bewirkt, dass eine E-mail an den Eigentümer geschickt wird, wenn der "
3980
  "Eintrag abläuft."
3981
 
3982
- #: core/class-settings.php:344
3983
  msgctxt "admin settings"
3984
  msgid "Try listing's email field first, then author's email."
3985
  msgstr ""
3986
 
3987
- #: core/class-settings.php:345
3988
  msgctxt "admin settings"
3989
  msgid "Try author's email first and then listing's email field."
3990
  msgstr ""
3991
 
3992
- #: core/class-settings.php:349
3993
  msgctxt "admin settings"
3994
  msgid "E-Mail Notifications"
3995
  msgstr "Email Erinnerung"
3996
 
3997
- #: core/class-settings.php:352
3998
  msgctxt "admin settings"
3999
  msgid "Notify admin via e-mail when..."
4000
  msgstr "Administrator per E-mail informieren wenn... "
4001
 
4002
- #: core/class-settings.php:356
4003
  msgctxt "admin settings"
4004
  msgid "A new listing is submitted."
4005
  msgstr "Ein neuer Eintrag wurde eingestellt."
4006
 
4007
- #: core/class-settings.php:357
4008
  msgctxt "admin settings"
4009
  msgid "A listing is edited."
4010
  msgstr "Ein Eintrag wurde bearbeitet."
4011
 
4012
- #: core/class-settings.php:358
4013
  msgctxt "admin settings"
4014
  msgid "A listing expires."
4015
  msgstr "Ein Eintrag ist abgelaufen."
4016
 
4017
- #: core/class-settings.php:359
4018
  msgctxt "admin settings"
4019
  msgid "A contact message is sent to a listing's owner."
4020
  msgstr "Eine Nachricht wurde an den Eigentümer verschickt."
4021
 
4022
- #: core/class-settings.php:365
4023
  msgctxt "admin settings"
4024
  msgid "CC this e-mail address too"
4025
  msgstr "CC diese E-mail an"
4026
 
4027
- #: core/class-settings.php:371
4028
  msgctxt "admin settings"
4029
  msgid "Notify users via e-mail when..."
4030
  msgstr "Benachrichtige Benutzer per E-mail wenn..."
4031
 
4032
- #: core/class-settings.php:374
4033
  msgctxt "admin settings"
4034
  msgid "You can modify the text template used for most of these e-mails below."
4035
  msgstr ""
4036
  "Du kannst dieses Texttemplate verändern, das für die meisten der E-"
4037
  "mailadressen unten verwendet wird."
4038
 
4039
- #: core/class-settings.php:375
4040
  msgctxt "admin settings"
4041
  msgid "Their listing is submitted."
4042
  msgstr "Ihr Eintrag ist eingereicht."
4043
 
4044
- #: core/class-settings.php:376
4045
  msgctxt "admin settings"
4046
  msgid "Their listing is approved/published."
4047
  msgstr "Ihr Eintrag ist genehmigt/veröffentlicht."
4048
 
4049
- #: core/class-settings.php:385
4050
  msgctxt "contact email"
4051
  msgid "You have received a reply from your listing at %s."
4052
  msgstr "Sie haben eine Antwort auf Ihren Eintrag erhalten am %s."
4053
 
4054
- #: core/class-settings.php:386
4055
  msgctxt "contact email"
4056
  msgid "Name: %s"
4057
  msgstr "Name: %s"
4058
 
4059
- #: core/class-settings.php:387
4060
  msgctxt "contact email"
4061
  msgid "E-Mail: %s"
4062
  msgstr "E-mail: %s"
4063
 
4064
- #: core/class-settings.php:388
4065
  msgctxt "contact email"
4066
  msgid "Message:"
4067
  msgstr "Nachricht:"
4068
 
4069
- #: core/class-settings.php:390
4070
  msgctxt "contact email"
4071
  msgid "Time: %s"
4072
  msgstr "Zeit: %s"
4073
 
4074
- #: core/class-settings.php:392
4075
  msgctxt "admin settings"
4076
  msgid "E-Mail Templates"
4077
  msgstr "E-mail Templates"
4078
 
4079
- #: core/class-settings.php:395
4080
  msgctxt "admin settings"
4081
  msgid "Email confirmation message"
4082
  msgstr "Email Bestätigungsnachricht"
4083
 
4084
- #: core/class-settings.php:399
4085
  msgctxt "admin settings"
4086
  msgid "Sent after a listing has been submitted."
4087
  msgstr "Senden nachdem der Eintrag eingestellt wurde."
4088
 
4089
- #: core/class-settings.php:400 core/class-settings.php:408
4090
- #: core/class-settings.php:449
4091
  msgctxt "admin settings"
4092
  msgid "Listing's title"
4093
  msgstr "Eintrag Titel"
4094
 
4095
- #: core/class-settings.php:403
4096
  msgctxt "admin settings"
4097
  msgid "Listing published message"
4098
  msgstr "Eintrag veröffentlicht Nachricht"
4099
 
4100
- #: core/class-settings.php:406
4101
  msgctxt "admin settings"
4102
  msgid ""
4103
  "Your listing \"[listing]\" is now available at [listing-url] and can be "
@@ -4106,24 +4135,24 @@ msgstr ""
4106
  "Dein Eintrag \"[listing]\" ist jetzt verfügbar unter [listing-url] und "
4107
  "kann öffentlich eingesehen werden."
4108
 
4109
- #: core/class-settings.php:407
4110
  msgctxt "admin settings"
4111
  msgid "Sent when the listing has been published or approved by an admin."
4112
  msgstr ""
4113
  "Senden wenn der Eintrag vom Administrator genehmigt oder veröffentlicht "
4114
  "wurde."
4115
 
4116
- #: core/class-settings.php:409
4117
  msgctxt "admin settings"
4118
  msgid "Listing's URL"
4119
  msgstr "Eintrags URL"
4120
 
4121
- #: core/class-settings.php:413
4122
  msgctxt "admin settings"
4123
  msgid "Listing Contact Message"
4124
  msgstr "Eintrag Kontakt Nachricht"
4125
 
4126
- #: core/class-settings.php:417
4127
  msgctxt "admin settings"
4128
  msgid ""
4129
  "Sent to listing owners when someone uses the contact form on their listing "
@@ -4132,35 +4161,35 @@ msgstr ""
4132
  "An den Eigentümer senden wenn jemand die Kontaktform auf Ihrer Eintragsseite "
4133
  "verwendet."
4134
 
4135
- #: core/class-settings.php:427
4136
  #, fuzzy
4137
  msgctxt "admin settings"
4138
  msgid "Payment related"
4139
  msgstr "Bezahlmethode"
4140
 
4141
- #: core/class-settings.php:444
4142
  #, fuzzy
4143
  msgctxt "admin settings"
4144
  msgid "Payment abandoned reminder message"
4145
  msgstr "Erneuerungserinnerung E-mail Nachricht"
4146
 
4147
- #: core/class-settings.php:448
4148
  msgctxt "admin settings"
4149
  msgid "Sent some time after a pending payment is abandoned by users."
4150
  msgstr ""
4151
 
4152
- #: core/class-settings.php:450
4153
  #, fuzzy
4154
  msgctxt "admin settings"
4155
  msgid "Checkout URL link"
4156
  msgstr "Kasse"
4157
 
4158
- #: core/class-settings.php:456
4159
  msgctxt "admin settings"
4160
  msgid "Renewal Reminders"
4161
  msgstr "Erneuerungserinnerung"
4162
 
4163
- #: core/class-settings.php:459
4164
  msgctxt "admin settings"
4165
  msgid ""
4166
  "This section refers only to the text of the renewal/expiration notices. You "
@@ -4170,12 +4199,12 @@ msgstr ""
4170
  "Nachricht. Du kannst auch <a>konfigurieren wann die E-mails gesendet werden</"
4171
  "a>"
4172
 
4173
- #: core/class-settings.php:463
4174
  msgctxt "admin settings"
4175
  msgid "Pending expiration e-mail message"
4176
  msgstr "Ausstehende Abgelaufen E-mail Nachricht"
4177
 
4178
- #: core/class-settings.php:467
4179
  msgctxt "settings"
4180
  msgid ""
4181
  "Sent some time before the listing expires. Applies to non-recurring renewals "
@@ -4184,50 +4213,50 @@ msgstr ""
4184
  "Einige Zeit bevor der Eintrag abläuft senden. Wird nur bei kostenlosen "
4185
  "Erneuerungen verwendet."
4186
 
4187
- #: core/class-settings.php:468 core/class-settings.php:481
4188
- #: core/class-settings.php:494 core/class-settings.php:507
4189
- #: core/class-settings.php:520
4190
  msgctxt "settings"
4191
  msgid "Listing's name (with link)"
4192
  msgstr "Eintragsname (mit Link)"
4193
 
4194
- #: core/class-settings.php:469 core/class-settings.php:482
4195
- #: core/class-settings.php:495 core/class-settings.php:508
4196
- #: core/class-settings.php:521
4197
  msgctxt "settings"
4198
  msgid "Author's name"
4199
  msgstr "Authorname"
4200
 
4201
- #: core/class-settings.php:470 core/class-settings.php:483
4202
- #: core/class-settings.php:522
4203
  msgctxt "settings"
4204
  msgid "Expiration date"
4205
  msgstr "Ablaufdatum"
4206
 
4207
- #: core/class-settings.php:471
4208
  msgctxt "settings"
4209
  msgid "Category that is going to expire"
4210
  msgstr "Kategorie die bald abläuft"
4211
 
4212
- #: core/class-settings.php:472 core/class-settings.php:485
4213
- #: core/class-settings.php:524
4214
  msgctxt "settings"
4215
  msgid "Link to renewal page"
4216
  msgstr "Link zu erneuerten Seite"
4217
 
4218
- #: core/class-settings.php:473 core/class-settings.php:486
4219
- #: core/class-settings.php:498 core/class-settings.php:511
4220
- #: core/class-settings.php:525
4221
  msgctxt "settings"
4222
  msgid "Link to your site"
4223
  msgstr "Link zu deiner Seite"
4224
 
4225
- #: core/class-settings.php:476
4226
  msgctxt "admin settings"
4227
  msgid "Listing Renewal e-mail message"
4228
  msgstr "Eintrag Erneuerung E-mail Nachricht"
4229
 
4230
- #: core/class-settings.php:480
4231
  msgctxt "settings"
4232
  msgid ""
4233
  "Sent at the time of listing expiration. Applies to non-recurring renewals "
@@ -4236,17 +4265,17 @@ msgstr ""
4236
  "Zur Zeit wenn der Eintrag abläuft senden. Wird nur bei kostenlosen "
4237
  "Erneuerungen verwendet."
4238
 
4239
- #: core/class-settings.php:484 core/class-settings.php:523
4240
  msgctxt "settings"
4241
  msgid "Category that expired"
4242
  msgstr "Ablaufende Kategorie"
4243
 
4244
- #: core/class-settings.php:489
4245
  msgctxt "admin settings"
4246
  msgid "Listing auto-renewal reminder (recurring payments)"
4247
  msgstr "Eintrag automatische Erneuerungserinnerung (Abbuchungen)"
4248
 
4249
- #: core/class-settings.php:493
4250
  msgctxt "settings"
4251
  msgid ""
4252
  "Sent some time before the listing is auto-renewed. Applies to recurring "
@@ -4255,27 +4284,27 @@ msgstr ""
4255
  "Einige Zeit bevor der Eintrag abläuft senden. Wird nur bei bezahlten "
4256
  "Erneuerungen verwendet."
4257
 
4258
- #: core/class-settings.php:496 core/class-settings.php:510
4259
  msgctxt "settings"
4260
  msgid "Renewal date"
4261
  msgstr "Erneuerungsdatum"
4262
 
4263
- #: core/class-settings.php:497
4264
  msgctxt "settings"
4265
  msgid "Category that is going to be renewed"
4266
  msgstr "Kategorie die erneuert werden soll"
4267
 
4268
- #: core/class-settings.php:499
4269
  msgctxt "settings"
4270
  msgid "Link to manage subscriptions"
4271
  msgstr "Link um Abos zu verwalten"
4272
 
4273
- #: core/class-settings.php:502
4274
  msgctxt "admin settings"
4275
  msgid "Listing Renewal e-mail message (recurring payments)"
4276
  msgstr "Eintragserneuerungs E-mail Nachricht (Abbuchungen)"
4277
 
4278
- #: core/class-settings.php:506
4279
  msgctxt "settings"
4280
  msgid ""
4281
  "Sent after the listing is auto-renewed. Applies to recurring renewals only."
@@ -4283,17 +4312,17 @@ msgstr ""
4283
  "Sende nachdem der Eintrag automatisch erneuert wurde. Wird nur bei bezahlten "
4284
  "Erneuerungen verwendet."
4285
 
4286
- #: core/class-settings.php:509
4287
  msgctxt "settings"
4288
  msgid "Renewed category"
4289
  msgstr "Erneuerte Kategorie"
4290
 
4291
- #: core/class-settings.php:515
4292
  msgctxt "admin settings"
4293
  msgid "Renewal reminder e-mail message"
4294
  msgstr "Erneuerungserinnerung E-mail Nachricht"
4295
 
4296
- #: core/class-settings.php:519
4297
  msgctxt "settings"
4298
  msgid ""
4299
  "Sent some time after listing expiration and when no renewal has occurred. "
@@ -4302,33 +4331,33 @@ msgstr ""
4302
  "Einige Zeit nachdem der Eintrag abgelaufen und keine Erneuerung beauftragt "
4303
  "wurde senden. Wird bei bezahlten und kostenlosen Erneuerungen verwendet."
4304
 
4305
- #: core/class-settings.php:529
4306
  msgctxt "admin settings"
4307
  msgid "Payment"
4308
  msgstr "Bezahlung"
4309
 
4310
- #: core/class-settings.php:530
4311
  msgctxt "admin settings"
4312
  msgid "Payment Settings"
4313
  msgstr "Bezahlung Einstellungen"
4314
 
4315
- #: core/class-settings.php:533
4316
  msgctxt "admin settings"
4317
  msgid "Turn On payments?"
4318
  msgstr "Bezahlungen aktivieren?"
4319
 
4320
- #: core/class-settings.php:535
4321
  msgctxt "admin settings"
4322
  msgid "Put payment gateways in test mode?"
4323
  msgstr "Bezahlungsgateway im Testmodus ausführen?"
4324
 
4325
- #: core/class-settings.php:540
4326
  msgctxt "admin settings"
4327
  msgid "Perform checkouts on the secure (HTTPS) version of your site?"
4328
  msgstr ""
4329
  "Aktiviere (HTTPS) sichere Verbindung für den Bestellprozess deiner Seite?"
4330
 
4331
- #: core/class-settings.php:543
4332
  msgctxt "admin settings"
4333
  msgid ""
4334
  "Recommended for added security. For this to work you need to enable HTTPS on "
@@ -4337,165 +4366,165 @@ msgstr ""
4337
  "Empfohlen zur Erweiterung der Sicherheit. Aktiviere HTTPS auf deinem Server "
4338
  "und <a>erhalte ein SSL Zertifikat</a>"
4339
 
4340
- #: core/class-settings.php:547
4341
  msgctxt "admin settings"
4342
  msgid "Currency Code"
4343
  msgstr "Währungsschlüssel"
4344
 
4345
- #: core/class-settings.php:549
4346
  msgctxt "admin settings"
4347
  msgid "Australian Dollar (AUD)"
4348
  msgstr "Australischer Dollar (AUD)"
4349
 
4350
- #: core/class-settings.php:550
4351
  msgctxt "admin settings"
4352
  msgid "Brazilian Real (BRL)"
4353
  msgstr "Brasilianischer Real (BRL)"
4354
 
4355
- #: core/class-settings.php:551
4356
  msgctxt "admin settings"
4357
  msgid "Canadian Dollar (CAD)"
4358
  msgstr "Kanadischer Dollar (CAD)"
4359
 
4360
- #: core/class-settings.php:552
4361
  msgctxt "admin settings"
4362
  msgid "Czech Koruna (CZK)"
4363
  msgstr "Tschechische Koruna (CZK)"
4364
 
4365
- #: core/class-settings.php:553
4366
  msgctxt "admin settings"
4367
  msgid "Danish Krone (DKK)"
4368
  msgstr "Dänische Krone (DKK)"
4369
 
4370
- #: core/class-settings.php:554
4371
  msgctxt "admin settings"
4372
  msgid "Euro (EUR)"
4373
  msgstr "Euro (EUR)"
4374
 
4375
- #: core/class-settings.php:555
4376
  msgctxt "admin settings"
4377
  msgid "Hong Kong Dollar (HKD)"
4378
  msgstr "Hong Kong Dollar (HKD)"
4379
 
4380
- #: core/class-settings.php:556
4381
  msgctxt "admin settings"
4382
  msgid "Hungarian Forint (HUF)"
4383
  msgstr "Ungarischer Forint (HUF)"
4384
 
4385
- #: core/class-settings.php:557
4386
  msgctxt "admin settings"
4387
  msgid "Israeli New Shequel (ILS)"
4388
  msgstr "Israelischer Neuer Schequel (ILS)"
4389
 
4390
- #: core/class-settings.php:558
4391
  msgctxt "admin settings"
4392
  msgid "Japanese Yen (JPY)"
4393
  msgstr "Japanischer Jen (JPY)"
4394
 
4395
- #: core/class-settings.php:559
4396
  msgctxt "admin settings"
4397
  msgid "Malasian Ringgit (MYR)"
4398
  msgstr "Malaysischer Ringgit (MYR)"
4399
 
4400
- #: core/class-settings.php:560
4401
  msgctxt "admin settings"
4402
  msgid "Mexican Peso (MXN)"
4403
  msgstr "Mexikanischer Peso (MXN)"
4404
 
4405
- #: core/class-settings.php:561
4406
  msgctxt "admin settings"
4407
  msgid "Norwegian Krone (NOK)"
4408
  msgstr "Norwegische Krone (NOK)"
4409
 
4410
- #: core/class-settings.php:562
4411
  msgctxt "admin settings"
4412
  msgid "New Zealand Dollar (NZD)"
4413
  msgstr "Neuseeland Dollar (NZD)"
4414
 
4415
- #: core/class-settings.php:563
4416
  msgctxt "admin settings"
4417
  msgid "Philippine Peso (PHP)"
4418
  msgstr "Philippinischer Peso (PHP)"
4419
 
4420
- #: core/class-settings.php:564
4421
  msgctxt "admin settings"
4422
  msgid "Polish Zloty (PLN)"
4423
  msgstr "Polnischer Zloty (PLN)"
4424
 
4425
- #: core/class-settings.php:565
4426
  msgctxt "admin settings"
4427
  msgid "Pound Sterling (GBP)"
4428
  msgstr "Pfund Sterling (GBP)"
4429
 
4430
- #: core/class-settings.php:566
4431
  msgctxt "admin settings"
4432
  msgid "Singapore Dollar (SGD)"
4433
  msgstr "Singapore Dollar (SGD)"
4434
 
4435
- #: core/class-settings.php:567
4436
  msgctxt "admin settings"
4437
  msgid "Swedish Krona (SEK)"
4438
  msgstr "Schwedische Krone (SEK)"
4439
 
4440
- #: core/class-settings.php:568
4441
  msgctxt "admin settings"
4442
  msgid "Swiss Franc (CHF)"
4443
  msgstr "Schweizer Franken (CHF)"
4444
 
4445
- #: core/class-settings.php:569
4446
  msgctxt "admin settings"
4447
  msgid "Taiwan Dollar (TWD)"
4448
  msgstr "Taiwanischer Dollar (TWD)"
4449
 
4450
- #: core/class-settings.php:570
4451
  msgctxt "admin settings"
4452
  msgid "Thai Baht (THB)"
4453
  msgstr "Thailändischer Baht (THB)"
4454
 
4455
- #: core/class-settings.php:571
4456
  msgctxt "admin settings"
4457
  msgid "Turkish Lira (TRY)"
4458
  msgstr "Türkische Lira (TRY)"
4459
 
4460
- #: core/class-settings.php:572
4461
  #, fuzzy
4462
  msgctxt "admin settings"
4463
  msgid "U.S. Dollar (USD)"
4464
  msgstr "U.S. Dollar"
4465
 
4466
- #: core/class-settings.php:576
4467
  msgctxt "admin settings"
4468
  msgid "Currency Symbol"
4469
  msgstr "Währungssymbol"
4470
 
4471
- #: core/class-settings.php:581
4472
  #, fuzzy
4473
  msgctxt "admin settings"
4474
  msgid "Currency symbol display"
4475
  msgstr "Währungssymbol"
4476
 
4477
- #: core/class-settings.php:585
4478
  msgctxt "admin settings"
4479
  msgid "Show currency symbol on the left"
4480
  msgstr ""
4481
 
4482
- #: core/class-settings.php:586
4483
  msgctxt "admin settings"
4484
  msgid "Show currency symbol on the right"
4485
  msgstr ""
4486
 
4487
- #: core/class-settings.php:587
4488
  #, fuzzy
4489
  msgctxt "admin settings"
4490
  msgid "Do not show currency symbol"
4491
  msgstr "Währungssymbol"
4492
 
4493
- #: core/class-settings.php:589
4494
  msgctxt "admin settings"
4495
  msgid "Thank you for payment message"
4496
  msgstr "Danke für die Bezahlung Nachricht"
4497
 
4498
- #: core/class-settings.php:590
4499
  msgctxt "admin settings"
4500
  msgid ""
4501
  "Thank you for your payment. Your payment is being verified and your listing "
@@ -4505,12 +4534,12 @@ msgstr ""
4505
  "geprüft. Die Verifizierung und die Prüfung können 48 Stunden in Anspruch "
4506
  "nehmen."
4507
 
4508
- #: core/class-settings.php:595
4509
  msgctxt "admin settings"
4510
  msgid "Ask users to come back for abandoned payments?"
4511
  msgstr ""
4512
 
4513
- #: core/class-settings.php:598
4514
  msgctxt "admin settings"
4515
  msgid ""
4516
  "An abandoned payment is when a user attempts to place a listing and gets to "
@@ -4519,50 +4548,50 @@ msgid ""
4519
  "the transaction. BD can remind them to come back and continue."
4520
  msgstr ""
4521
 
4522
- #: core/class-settings.php:604
4523
  #, fuzzy
4524
  msgctxt "admin settings"
4525
  msgid "Listing abandonment threshold (hours)"
4526
  msgstr "Eintragsabbuchungsemail Grenze (in tagen)"
4527
 
4528
- #: core/class-settings.php:609
4529
  msgctxt "admin settings"
4530
  msgid ""
4531
  "Listings with pending payments are marked as abandoned after this time. You "
4532
  "can also <a>customize the e-mail</a> users receive."
4533
  msgstr ""
4534
 
4535
- #: core/class-settings.php:614
4536
  msgctxt "admin settings"
4537
  msgid "Themes"
4538
  msgstr ""
4539
 
4540
- #: core/class-settings.php:616
4541
  msgctxt "admin settings"
4542
  msgid "You can manage your themes on <a>Directory Themes</a>."
4543
  msgstr ""
4544
 
4545
- #: core/class-settings.php:621
4546
  msgctxt "admin settings"
4547
  msgid "Theme button style"
4548
  msgstr ""
4549
 
4550
- #: core/class-settings.php:625
4551
  msgctxt "admin settings"
4552
  msgid "Use the BD theme style for BD buttons"
4553
  msgstr ""
4554
 
4555
- #: core/class-settings.php:626
4556
  msgctxt "admin settings"
4557
  msgid "Use the WP theme style for BD buttons"
4558
  msgstr ""
4559
 
4560
- #: core/class-settings.php:633
4561
  msgctxt "admin settings"
4562
  msgid "Image"
4563
  msgstr "Bild"
4564
 
4565
- #: core/class-settings.php:634
4566
  msgctxt "admin settings"
4567
  msgid ""
4568
  "Any changes to these settings will affect new listings only. Existing "
@@ -4575,57 +4604,57 @@ msgstr ""
4575
  "existierende Einträge verändert werden, musst du Bild(er) neu hochladen, "
4576
  "nachdem Einstellungen hier verändert wurden."
4577
 
4578
- #: core/class-settings.php:635
4579
  msgctxt "admin settings"
4580
  msgid "Image Settings"
4581
  msgstr "Bildeinstellungen"
4582
 
4583
- #: core/class-settings.php:636
4584
  msgctxt "admin settings"
4585
  msgid "Allow images?"
4586
  msgstr "Bilder erlauben?"
4587
 
4588
- #: core/class-settings.php:638
4589
  #, fuzzy
4590
  msgctxt "admin settings"
4591
  msgid "Min Image File Size (KB)"
4592
  msgstr "Maximale Bildgröße (KB)"
4593
 
4594
- #: core/class-settings.php:639
4595
  msgctxt "admin settings"
4596
  msgid "Max Image File Size (KB)"
4597
  msgstr "Maximale Bildgröße (KB)"
4598
 
4599
- #: core/class-settings.php:641
4600
  #, fuzzy
4601
  msgctxt "admin settings"
4602
  msgid "Min image width (px)"
4603
  msgstr "Bildergröße (in px):"
4604
 
4605
- #: core/class-settings.php:642
4606
  #, fuzzy
4607
  msgctxt "admin settings"
4608
  msgid "Min image height (px)"
4609
  msgstr "Bilderhöhe (in px):"
4610
 
4611
- #: core/class-settings.php:644
4612
  #, fuzzy
4613
  msgctxt "admin settings"
4614
  msgid "Max image width (px)"
4615
  msgstr "Maximale Bildbreite"
4616
 
4617
- #: core/class-settings.php:645
4618
  #, fuzzy
4619
  msgctxt "admin settings"
4620
  msgid "Max image height (px)"
4621
  msgstr "Maximale Bildhöhe"
4622
 
4623
- #: core/class-settings.php:647
4624
  msgctxt "admin settings"
4625
  msgid "Turn on thickbox/lightbox?"
4626
  msgstr "Kontrollkästchen/Leuchtkasten aktivieren?"
4627
 
4628
- #: core/class-settings.php:647
4629
  msgctxt "admin settings"
4630
  msgid ""
4631
  "Uncheck if it conflicts with other elements or plugins installed on your site"
@@ -4633,30 +4662,30 @@ msgstr ""
4633
  "Deaktivieren wenn Konflikte mit anderen Elementen oder installierten "
4634
  "Erweiterungen entstehen"
4635
 
4636
- #: core/class-settings.php:649
4637
  #, fuzzy
4638
  msgctxt "admin settings"
4639
  msgid "Thumbnails"
4640
  msgstr "Thumbnails"
4641
 
4642
- #: core/class-settings.php:650
4643
  #, fuzzy
4644
  msgctxt "admin settings"
4645
  msgid "Thumbnail width (px)"
4646
  msgstr "Thumbnailbreite"
4647
 
4648
- #: core/class-settings.php:651
4649
  #, fuzzy
4650
  msgctxt "admin settings"
4651
  msgid "Thumbnail height (px)"
4652
  msgstr "Thumbnailbreite"
4653
 
4654
- #: core/class-settings.php:654
4655
  msgctxt "admin settings"
4656
  msgid "Crop thumbnails to exact dimensions?"
4657
  msgstr ""
4658
 
4659
- #: core/class-settings.php:657
4660
  msgctxt "admin settings"
4661
  msgid ""
4662
  "When enabled images will match exactly the dimensions above but part of the "
@@ -4665,12 +4694,12 @@ msgid ""
4665
  "Depending on the uploaded images, thumbnails may have different heights."
4666
  msgstr ""
4667
 
4668
- #: core/class-settings.php:663
4669
  msgctxt "admin settings"
4670
  msgid "Number of free images"
4671
  msgstr "Nummer der freien Bilder"
4672
 
4673
- #: core/class-settings.php:668
4674
  msgctxt "admin settings"
4675
  msgid ""
4676
  "For paid listing images, configure that by adding or editing a <a>Fee Plan</"
@@ -4680,139 +4709,139 @@ msgstr ""
4680
  "erstellen eines <a>Preisplan</a> an Stelle dieser Einstellungen, die von "
4681
  "bezahlten Einträgen ignoriert wird."
4682
 
4683
- #: core/class-settings.php:671
4684
  msgctxt "admin settings"
4685
  msgid "Use default picture for listings with no picture?"
4686
  msgstr "Benutze Standardbilder für Einträge mit keinem Bild?"
4687
 
4688
- #: core/class-settings.php:672
4689
  msgctxt "admin settings"
4690
  msgid "Show Thumbnail on main listings page?"
4691
  msgstr "Thumbnail auf der Eintragshauptseite anzeigen?"
4692
 
4693
- #: core/class-settings.php:701
4694
  msgctxt "admin settings"
4695
  msgid "User"
4696
  msgstr ""
4697
 
4698
- #: core/class-settings.php:702
4699
  #, fuzzy
4700
  msgctxt "admin settings"
4701
  msgid "User registration date"
4702
  msgstr "Eintrag Enddatum"
4703
 
4704
- #: core/class-settings.php:728
4705
  msgctxt "admin settings"
4706
  msgid ""
4707
  "Could not copy the AJAX compatibility plugin \"%s\". Compatibility mode was "
4708
  "not activated."
4709
  msgstr ""
4710
 
4711
- #: core/class-settings.php:736
4712
  msgctxt "admin settings"
4713
  msgid ""
4714
  "Could not activate AJAX Compatibility mode: the directory \"%s\" could not "
4715
  "be created."
4716
  msgstr ""
4717
 
4718
- #: core/class-settings.php:745
4719
  msgctxt "admin settings"
4720
  msgid ""
4721
  "Could not remove the \"Business Directory Plugin - AJAX Compatibility Module"
4722
  "\". Please remove the file \"%s\" manually or deactivate the plugin."
4723
  msgstr ""
4724
 
4725
- #: core/class-settings.php:1065
4726
  msgctxt "settings"
4727
  msgid "Deactivate License"
4728
  msgstr "Lizenz Deaktivieren"
4729
 
4730
- #: core/class-settings.php:1067
4731
  msgctxt "settings"
4732
  msgid "Deactivating license..."
4733
  msgstr "Deaktiviere Lizenz..."
4734
 
4735
- #: core/class-settings.php:1070
4736
  msgctxt "settings"
4737
  msgid "Activate License"
4738
  msgstr "Aktiviere Lizenz"
4739
 
4740
- #: core/class-settings.php:1072
4741
  msgctxt "settings"
4742
  msgid "Activating license..."
4743
  msgstr "Aktiviere Lizenz..."
4744
 
4745
- #: core/class-settings.php:1095
4746
  msgctxt "admin settings"
4747
  msgid "Valid placeholders: %s"
4748
  msgstr "Gültige Platzhalter: %s"
4749
 
4750
- #: core/class-settings.php:1129
4751
  msgctxt "settings email"
4752
  msgid "Click to edit e-mail"
4753
  msgstr "Klicken um E-mail zu bearbeiten"
4754
 
4755
- #: core/class-settings.php:1130
4756
  msgctxt "settings email"
4757
  msgid "Click to edit"
4758
  msgstr "zum Bearbeiten klicken"
4759
 
4760
- #: core/class-settings.php:1143
4761
  msgctxt "settings email"
4762
  msgid "E-Mail Subject"
4763
  msgstr "E-mail Betreff"
4764
 
4765
- #: core/class-settings.php:1154
4766
  msgctxt "settings email"
4767
  msgid "E-Mail Body"
4768
  msgstr "E-mail Text"
4769
 
4770
- #: core/class-settings.php:1165
4771
  msgctxt "settings email"
4772
  msgid "You can use the following placeholders:"
4773
  msgstr "Du kannst folgende Platzhalter verwenden:"
4774
 
4775
- #: core/class-settings.php:1188
4776
  msgctxt "settings email"
4777
  msgid "Preview e-mail"
4778
  msgstr "Vorschau E-mail"
4779
 
4780
- #: core/class-settings.php:1189
4781
  msgctxt "settings email"
4782
  msgid "Cancel"
4783
  msgstr "Abbrechen"
4784
 
4785
- #: core/class-settings.php:1190
4786
  msgctxt "settings email"
4787
  msgid "Save Changes"
4788
  msgstr "Änderungen sichern"
4789
 
4790
- #: core/class-settings.php:1209
4791
  msgctxt "settings email"
4792
  msgid "Site title"
4793
  msgstr "Seitentitel"
4794
 
4795
- #: core/class-settings.php:1212
4796
  msgctxt "settings email"
4797
  msgid "Site title (with link)"
4798
  msgstr "Seitentitel (mit Link)"
4799
 
4800
- #: core/class-settings.php:1215
4801
  msgctxt "settings email"
4802
  msgid "Site address (with link)"
4803
  msgstr "Seitenadresse (mit Link)"
4804
 
4805
- #: core/class-settings.php:1218
4806
  msgctxt "settings email"
4807
  msgid "Directory URL (with link)"
4808
  msgstr "Verzeichnis URL (mit Link)"
4809
 
4810
- #: core/class-settings.php:1221
4811
  msgctxt "settings email"
4812
  msgid "Current date"
4813
  msgstr "Aktuelles Datum"
4814
 
4815
- #: core/class-settings.php:1224
4816
  msgctxt "settings email"
4817
  msgid "Current time"
4818
  msgstr "Aktuelle Zeit"
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-07-06 14:03:56+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."
2237
  msgid "Please see the <a>Form Fields documentation</a> for more details."
2238
  msgstr ""
2239
 
2240
+ #. #-#-#-#-# WPBDM.pot (Business Directory Plugin 4.0.8) #-#-#-#-#
2241
  #. Plugin Name of the plugin/theme
2242
  #: admin/templates/header.tpl.php:4
2243
  msgid "Business Directory Plugin"
3456
  "Zeige und setze Benutzervereinbarung als Pflichtfeld in Bedingungen und "
3457
  "Konditionen"
3458
 
3459
+ #: core/class-settings.php:106
3460
+ #, fuzzy
3461
+ msgctxt "admin settings"
3462
+ msgid ""
3463
+ "Terms and Conditions text goes here...\n"
3464
+ "\n"
3465
+ msgstr "Bedingungen und Konditionen"
3466
+
3467
  #: core/class-settings.php:107
3468
  msgctxt "admin settings"
3469
  msgid ""
3594
  msgid "Enable AJAX compatibility mode?"
3595
  msgstr ""
3596
 
3597
+ #: core/class-settings.php:179 core/class-settings.php:658
3598
  msgctxt "admin settings"
3599
  msgid "Listings"
3600
  msgstr "Einträge"
3601
 
3602
+ #: core/class-settings.php:180 core/class-settings.php:328
3603
+ #: core/class-settings.php:615
3604
  msgctxt "admin settings"
3605
  msgid "General Settings"
3606
  msgstr "Allgemeine Einstellungen"
3690
  msgid "Status of listings upon uninstalling plugin"
3691
  msgstr "Status der Einträge bei Deinstallation der Erweiterung"
3692
 
3693
+ #: core/class-settings.php:219 core/class-settings.php:221
3694
+ msgctxt "post status"
3695
+ msgid "Draft"
3696
+ msgstr ""
3697
+
3698
+ #: core/class-settings.php:219 core/class-settings.php:221
3699
+ msgctxt "post status"
3700
+ msgid "Trash"
3701
+ msgstr ""
3702
+
3703
  #: core/class-settings.php:220
3704
  msgctxt "admin settings"
3705
  msgid "Status of deleted listings"
3706
  msgstr "Status der gelöschten Einträge"
3707
 
3708
+ #: core/class-settings.php:222
3709
  #, fuzzy
3710
  msgctxt "admin settings"
3711
  msgid "Submit Listing instructions message"
3712
  msgstr "Eintrag Kontakt Nachricht"
3713
 
3714
+ #: core/class-settings.php:222
3715
  msgctxt "admin settings"
3716
  msgid ""
3717
  "This text is displayed at the first page of the Submit Listing process for "
3719
  "form or anything you want to tell users before they get started."
3720
  msgstr ""
3721
 
3722
+ #: core/class-settings.php:224
3723
  msgctxt "admin settings"
3724
  msgid "Listing Renewal"
3725
  msgstr "Einträge erneuern"
3726
 
3727
+ #: core/class-settings.php:225
3728
  msgctxt "admin settings"
3729
  msgid "Turn on listing renewal option?"
3730
  msgstr "Option zur Erneuerung von Einträgen aktivieren?"
3731
 
3732
+ #: core/class-settings.php:228
3733
  msgctxt "admin settings"
3734
  msgid "Allow recurring renewal payments?"
3735
  msgstr "Wiederholte Bezahlung erlauben?"
3736
 
3737
+ #: core/class-settings.php:231
3738
  msgctxt "admin settings"
3739
  msgid ""
3740
  "Allow users to opt in for automatic renewal of their listings. The fee is "
3744
  "anzumelden. Der Preis wird abgebucht, zu dem Zeitpunkt an dem der Eintrag "
3745
  "abläuft, ohne Eingriff durch den Benutzer."
3746
 
3747
+ #: core/class-settings.php:235
3748
  msgctxt "admin settings"
3749
  msgid "Use recurring payments as the default payment method?"
3750
  msgstr "Benutze automatische Abbuchungen als Standardbezahlmethode?"
3751
 
3752
+ #: core/class-settings.php:238
3753
  msgctxt "admin settings"
3754
  msgid ""
3755
  "Enable automatic renewal without having users opt in during the submit "
3758
  "Automatische Abbuchung aktivieren, ohne die Anmeldung durch den Benutzer "
3759
  "während der Einreichung."
3760
 
3761
+ #: core/class-settings.php:243
3762
  msgctxt "admin settings"
3763
  msgid "Listing renewal e-mail threshold (in days)"
3764
  msgstr "Eintragsabbuchungsemail Grenze (in tagen)"
3765
 
3766
+ #: core/class-settings.php:246
3767
  msgctxt "admin settings"
3768
  msgid ""
3769
  "Configure how many days before listing expiration is the renewal e-mail sent."
3771
  "Konfiguriere wieviel Tage vor der Abbuchung eine Buchungsmail verschickt "
3772
  "wird."
3773
 
3774
+ #: core/class-settings.php:250
3775
  msgctxt "admin settings"
3776
  msgid ""
3777
  "Send expiration notices including a cancel links to auto-renewed listings?"
3779
  "Sende eine Ablaufinformation die einen Beenden und einen Automatisch Eintrag "
3780
  "Erneuern Link enghält?"
3781
 
3782
+ #: core/class-settings.php:257
3783
  msgctxt "admin settings"
3784
  msgid "Remind listing owners of expired listings (past due)?"
3785
  msgstr "Eintraginhaber an abgelaufene Einträge erinnern (überfällig)?"
3786
 
3787
+ #: core/class-settings.php:262
3788
  msgctxt "admin settings"
3789
  msgid "Listing renewal reminder e-mail threshold (in days)"
3790
  msgstr "Einträge erneuern E-mail Grenze (in Tagen)"
3791
 
3792
+ #: core/class-settings.php:265
3793
  msgctxt "admin settings"
3794
  msgid ""
3795
  "Configure how many days after the expiration of a listing an e-mail reminder "
3798
  "Konfiguriere wie viele Tage nach dem Ablauf eines Eintrags eine E-mail an "
3799
  "den Inhaber versendet wird."
3800
 
3801
+ #: core/class-settings.php:268
3802
  msgctxt "admin settings"
3803
  msgid "Post/Category Settings"
3804
  msgstr "Post/Kategorie Einstellungen"
3805
 
3806
+ #: core/class-settings.php:269
3807
  msgctxt "admin settings"
3808
  msgid "Default new post status"
3809
  msgstr "Standard neuer Post Status"
3810
 
3811
+ #: core/class-settings.php:270 core/class-settings.php:273
3812
+ msgctxt "post status"
3813
+ msgid "Published"
3814
+ msgstr ""
3815
+
3816
+ #: core/class-settings.php:270 core/class-settings.php:273
3817
+ #, fuzzy
3818
+ msgctxt "post status"
3819
+ msgid "Pending"
3820
+ msgstr "Ausstehend"
3821
+
3822
+ #: core/class-settings.php:272
3823
  msgctxt "admin settings"
3824
  msgid "Edit post status"
3825
  msgstr "Post Status Bearbeiten"
3826
 
3827
+ #: core/class-settings.php:274
3828
  msgctxt "admin settings"
3829
  msgid "Order categories list by"
3830
  msgstr "Anordnung Kategorieliste durch"
3831
 
3832
+ #: core/class-settings.php:276
3833
  msgctxt "admin settings"
3834
  msgid "Name"
3835
  msgstr "Name"
3836
 
3837
+ #: core/class-settings.php:277
3838
  msgctxt "admin settings"
3839
  msgid "Slug"
3840
  msgstr "Entwurf"
3841
 
3842
+ #: core/class-settings.php:278
3843
  msgctxt "admin settings"
3844
  msgid "Listing Count"
3845
  msgstr "Anzahl Einträge"
3846
 
3847
+ #: core/class-settings.php:280
3848
  msgctxt "admin settings"
3849
  msgid "Sort order for categories"
3850
  msgstr "Sortierung für Kategorien"
3851
 
3852
+ #: core/class-settings.php:281 core/class-settings.php:299
3853
  msgctxt "admin settings"
3854
  msgid "Ascending"
3855
  msgstr "Aufsteigend"
3856
 
3857
+ #: core/class-settings.php:281 core/class-settings.php:299
3858
  msgctxt "admin settings"
3859
  msgid "Descending"
3860
  msgstr "Absteigend"
3861
 
3862
+ #: core/class-settings.php:282
3863
  msgctxt "admin settings"
3864
  msgid "Show category post count?"
3865
  msgstr "Kategoriepost Anzahl anzeigen?"
3866
 
3867
+ #: core/class-settings.php:283
3868
  msgctxt "admin settings"
3869
  msgid "Hide empty categories?"
3870
  msgstr "Leere Kategorien verbergen?"
3871
 
3872
+ #: core/class-settings.php:284
3873
  msgctxt "admin settings"
3874
  msgid "Show only parent categories in category list?"
3875
  msgstr "Nur Elternkategorien in Kategorieliste anzeigen?"
3876
 
3877
+ #: core/class-settings.php:286
3878
  msgctxt "admin settings"
3879
  msgid "Listings Sorting"
3880
  msgstr "Sortierung Einträge"
3881
 
3882
+ #: core/class-settings.php:287
3883
  msgctxt "admin settings"
3884
  msgid "Order directory listings by"
3885
  msgstr "Anordnung Verzeichniseinträge durch"
3886
 
3887
+ #: core/class-settings.php:289
3888
  msgctxt "admin settings"
3889
  msgid "Title"
3890
  msgstr "Titel"
3891
 
3892
+ #: core/class-settings.php:290
3893
  msgctxt "admin settings"
3894
  msgid "Author"
3895
  msgstr "Author"
3896
 
3897
+ #: core/class-settings.php:291 core/class-settings.php:701
3898
  msgctxt "admin settings"
3899
  msgid "Date posted"
3900
  msgstr "Datum gepostet"
3901
 
3902
+ #: core/class-settings.php:292 core/class-settings.php:702
3903
  msgctxt "admin settings"
3904
  msgid "Date last modified"
3905
  msgstr "Datum zuletzt verändert"
3906
 
3907
+ #: core/class-settings.php:293
3908
  msgctxt "admin settings"
3909
  msgid "Random"
3910
  msgstr "Zufall"
3911
 
3912
+ #: core/class-settings.php:294
3913
  msgctxt "admin settings"
3914
  msgid "Paid first then free. Inside each group by date."
3915
  msgstr ""
3916
 
3917
+ #: core/class-settings.php:295
3918
  msgctxt "admin settings"
3919
  msgid "Paid first then free. Inside each group by title."
3920
  msgstr ""
3921
 
3922
+ #: core/class-settings.php:297
3923
  msgctxt "admin settings"
3924
  msgid "Sort directory listings by"
3925
  msgstr "Verzeichnissortierung der Einträge durch"
3926
 
3927
+ #: core/class-settings.php:298
3928
  msgctxt "admin settings"
3929
  msgid "Ascending for ascending order A-Z, Descending for descending order Z-A"
3930
  msgstr ""
3931
  "Aufsteigend für aufsteigende Reihenfolge A-Z, Absteigend für absteigende "
3932
  "Reihenfolge Z-A"
3933
 
3934
+ #: core/class-settings.php:303
3935
  msgctxt "admin settings"
3936
  msgid "Enable sort bar?"
3937
  msgstr "Sortierung aktivieren?"
3938
 
3939
+ #: core/class-settings.php:308
3940
  msgctxt "admin settings"
3941
  msgid "Sortbar Fields"
3942
  msgstr "Sortierbare Felder"
3943
 
3944
+ #: core/class-settings.php:317
3945
  msgctxt "admin settings"
3946
  msgid "Featured (Sticky) listing settings"
3947
  msgstr "Unterstützte (unbewegliche) Eintrageinstellungen"
3948
 
3949
+ #: core/class-settings.php:318
3950
  msgctxt "admin settings"
3951
  msgid "Offer sticky listings?"
3952
  msgstr "Unbewegliche Einträge anbieten? "
3953
 
3954
+ #: core/class-settings.php:319
3955
  msgctxt "admin settings"
3956
  msgid "Offer upgrades during submit process?"
3957
  msgstr "Aktualisierungen anbieten im Bestellprozess?"
3958
 
3959
+ #: core/class-settings.php:320
3960
  msgctxt "admin settings"
3961
  msgid "Sticky listing price"
3962
  msgstr "Unbeweglicher Eintragspreis"
3963
 
3964
+ #: core/class-settings.php:321
3965
  msgctxt "admin settings"
3966
  msgid "Sticky listing page description text"
3967
  msgstr "Unbewegliche Eintragsseite Beschreibung"
3968
 
3969
+ #: core/class-settings.php:322
3970
  msgctxt "admin settings"
3971
  msgid ""
3972
  "You can upgrade your listing to featured status. Featured listings will "
3975
  "Du kannst dein Eintrag in den hervorgehobenen Status aktualisieren. "
3976
  "Unterstützte Einträge werden immer ganz oben eines Eintrags angezeigt."
3977
 
3978
+ #: core/class-settings.php:327
3979
  msgctxt "admin settings"
3980
  msgid "E-Mail"
3981
  msgstr "E-mail"
3982
 
3983
+ #: core/class-settings.php:331
3984
  msgctxt "admin settings"
3985
  msgid "Display email address fields publicly?"
3986
  msgstr "E-mail Adressfeld öffentlich anzeigen?"
3987
 
3988
+ #: core/class-settings.php:334
3989
  msgctxt "admin settings"
3990
  msgid ""
3991
  "Shows the email address of the listing owner to all web users. NOT "
3994
  msgstr ""
3995
  "E-mailadresse allen Benutzern anzeigen. NICHT ZU EMPFEHLEN. Achtung Spam!"
3996
 
3997
+ #: core/class-settings.php:337
3998
  msgctxt "admin settings"
3999
  msgid "How to determine the listing's email address?"
4000
  msgstr "Wie legt man die E-mailadresse für einen Eintrag fest?"
4001
 
4002
+ #: core/class-settings.php:340
4003
  msgctxt "admin settings"
4004
  msgid ""
4005
  "This affects emails sent to listing owners via contact forms or when their "
4008
  "Dies bewirkt, dass eine E-mail an den Eigentümer geschickt wird, wenn der "
4009
  "Eintrag abläuft."
4010
 
4011
+ #: core/class-settings.php:342
4012
  msgctxt "admin settings"
4013
  msgid "Try listing's email field first, then author's email."
4014
  msgstr ""
4015
 
4016
+ #: core/class-settings.php:343
4017
  msgctxt "admin settings"
4018
  msgid "Try author's email first and then listing's email field."
4019
  msgstr ""
4020
 
4021
+ #: core/class-settings.php:347
4022
  msgctxt "admin settings"
4023
  msgid "E-Mail Notifications"
4024
  msgstr "Email Erinnerung"
4025
 
4026
+ #: core/class-settings.php:350
4027
  msgctxt "admin settings"
4028
  msgid "Notify admin via e-mail when..."
4029
  msgstr "Administrator per E-mail informieren wenn... "
4030
 
4031
+ #: core/class-settings.php:354
4032
  msgctxt "admin settings"
4033
  msgid "A new listing is submitted."
4034
  msgstr "Ein neuer Eintrag wurde eingestellt."
4035
 
4036
+ #: core/class-settings.php:355
4037
  msgctxt "admin settings"
4038
  msgid "A listing is edited."
4039
  msgstr "Ein Eintrag wurde bearbeitet."
4040
 
4041
+ #: core/class-settings.php:356
4042
  msgctxt "admin settings"
4043
  msgid "A listing expires."
4044
  msgstr "Ein Eintrag ist abgelaufen."
4045
 
4046
+ #: core/class-settings.php:357
4047
  msgctxt "admin settings"
4048
  msgid "A contact message is sent to a listing's owner."
4049
  msgstr "Eine Nachricht wurde an den Eigentümer verschickt."
4050
 
4051
+ #: core/class-settings.php:363
4052
  msgctxt "admin settings"
4053
  msgid "CC this e-mail address too"
4054
  msgstr "CC diese E-mail an"
4055
 
4056
+ #: core/class-settings.php:369
4057
  msgctxt "admin settings"
4058
  msgid "Notify users via e-mail when..."
4059
  msgstr "Benachrichtige Benutzer per E-mail wenn..."
4060
 
4061
+ #: core/class-settings.php:372
4062
  msgctxt "admin settings"
4063
  msgid "You can modify the text template used for most of these e-mails below."
4064
  msgstr ""
4065
  "Du kannst dieses Texttemplate verändern, das für die meisten der E-"
4066
  "mailadressen unten verwendet wird."
4067
 
4068
+ #: core/class-settings.php:373
4069
  msgctxt "admin settings"
4070
  msgid "Their listing is submitted."
4071
  msgstr "Ihr Eintrag ist eingereicht."
4072
 
4073
+ #: core/class-settings.php:374
4074
  msgctxt "admin settings"
4075
  msgid "Their listing is approved/published."
4076
  msgstr "Ihr Eintrag ist genehmigt/veröffentlicht."
4077
 
4078
+ #: core/class-settings.php:383
4079
  msgctxt "contact email"
4080
  msgid "You have received a reply from your listing at %s."
4081
  msgstr "Sie haben eine Antwort auf Ihren Eintrag erhalten am %s."
4082
 
4083
+ #: core/class-settings.php:384
4084
  msgctxt "contact email"
4085
  msgid "Name: %s"
4086
  msgstr "Name: %s"
4087
 
4088
+ #: core/class-settings.php:385
4089
  msgctxt "contact email"
4090
  msgid "E-Mail: %s"
4091
  msgstr "E-mail: %s"
4092
 
4093
+ #: core/class-settings.php:386
4094
  msgctxt "contact email"
4095
  msgid "Message:"
4096
  msgstr "Nachricht:"
4097
 
4098
+ #: core/class-settings.php:388
4099
  msgctxt "contact email"
4100
  msgid "Time: %s"
4101
  msgstr "Zeit: %s"
4102
 
4103
+ #: core/class-settings.php:390
4104
  msgctxt "admin settings"
4105
  msgid "E-Mail Templates"
4106
  msgstr "E-mail Templates"
4107
 
4108
+ #: core/class-settings.php:393
4109
  msgctxt "admin settings"
4110
  msgid "Email confirmation message"
4111
  msgstr "Email Bestätigungsnachricht"
4112
 
4113
+ #: core/class-settings.php:397
4114
  msgctxt "admin settings"
4115
  msgid "Sent after a listing has been submitted."
4116
  msgstr "Senden nachdem der Eintrag eingestellt wurde."
4117
 
4118
+ #: core/class-settings.php:398 core/class-settings.php:406
4119
+ #: core/class-settings.php:447
4120
  msgctxt "admin settings"
4121
  msgid "Listing's title"
4122
  msgstr "Eintrag Titel"
4123
 
4124
+ #: core/class-settings.php:401
4125
  msgctxt "admin settings"
4126
  msgid "Listing published message"
4127
  msgstr "Eintrag veröffentlicht Nachricht"
4128
 
4129
+ #: core/class-settings.php:404
4130
  msgctxt "admin settings"
4131
  msgid ""
4132
  "Your listing \"[listing]\" is now available at [listing-url] and can be "
4135
  "Dein Eintrag \"[listing]\" ist jetzt verfügbar unter [listing-url] und "
4136
  "kann öffentlich eingesehen werden."
4137
 
4138
+ #: core/class-settings.php:405
4139
  msgctxt "admin settings"
4140
  msgid "Sent when the listing has been published or approved by an admin."
4141
  msgstr ""
4142
  "Senden wenn der Eintrag vom Administrator genehmigt oder veröffentlicht "
4143
  "wurde."
4144
 
4145
+ #: core/class-settings.php:407
4146
  msgctxt "admin settings"
4147
  msgid "Listing's URL"
4148
  msgstr "Eintrags URL"
4149
 
4150
+ #: core/class-settings.php:411
4151
  msgctxt "admin settings"
4152
  msgid "Listing Contact Message"
4153
  msgstr "Eintrag Kontakt Nachricht"
4154
 
4155
+ #: core/class-settings.php:415
4156
  msgctxt "admin settings"
4157
  msgid ""
4158
  "Sent to listing owners when someone uses the contact form on their listing "
4161
  "An den Eigentümer senden wenn jemand die Kontaktform auf Ihrer Eintragsseite "
4162
  "verwendet."
4163
 
4164
+ #: core/class-settings.php:425
4165
  #, fuzzy
4166
  msgctxt "admin settings"
4167
  msgid "Payment related"
4168
  msgstr "Bezahlmethode"
4169
 
4170
+ #: core/class-settings.php:442
4171
  #, fuzzy
4172
  msgctxt "admin settings"
4173
  msgid "Payment abandoned reminder message"
4174
  msgstr "Erneuerungserinnerung E-mail Nachricht"
4175
 
4176
+ #: core/class-settings.php:446
4177
  msgctxt "admin settings"
4178
  msgid "Sent some time after a pending payment is abandoned by users."
4179
  msgstr ""
4180
 
4181
+ #: core/class-settings.php:448
4182
  #, fuzzy
4183
  msgctxt "admin settings"
4184
  msgid "Checkout URL link"
4185
  msgstr "Kasse"
4186
 
4187
+ #: core/class-settings.php:454
4188
  msgctxt "admin settings"
4189
  msgid "Renewal Reminders"
4190
  msgstr "Erneuerungserinnerung"
4191
 
4192
+ #: core/class-settings.php:457
4193
  msgctxt "admin settings"
4194
  msgid ""
4195
  "This section refers only to the text of the renewal/expiration notices. You "
4199
  "Nachricht. Du kannst auch <a>konfigurieren wann die E-mails gesendet werden</"
4200
  "a>"
4201
 
4202
+ #: core/class-settings.php:461
4203
  msgctxt "admin settings"
4204
  msgid "Pending expiration e-mail message"
4205
  msgstr "Ausstehende Abgelaufen E-mail Nachricht"
4206
 
4207
+ #: core/class-settings.php:465
4208
  msgctxt "settings"
4209
  msgid ""
4210
  "Sent some time before the listing expires. Applies to non-recurring renewals "
4213
  "Einige Zeit bevor der Eintrag abläuft senden. Wird nur bei kostenlosen "
4214
  "Erneuerungen verwendet."
4215
 
4216
+ #: core/class-settings.php:466 core/class-settings.php:479
4217
+ #: core/class-settings.php:492 core/class-settings.php:505
4218
+ #: core/class-settings.php:518
4219
  msgctxt "settings"
4220
  msgid "Listing's name (with link)"
4221
  msgstr "Eintragsname (mit Link)"
4222
 
4223
+ #: core/class-settings.php:467 core/class-settings.php:480
4224
+ #: core/class-settings.php:493 core/class-settings.php:506
4225
+ #: core/class-settings.php:519
4226
  msgctxt "settings"
4227
  msgid "Author's name"
4228
  msgstr "Authorname"
4229
 
4230
+ #: core/class-settings.php:468 core/class-settings.php:481
4231
+ #: core/class-settings.php:520
4232
  msgctxt "settings"
4233
  msgid "Expiration date"
4234
  msgstr "Ablaufdatum"
4235
 
4236
+ #: core/class-settings.php:469
4237
  msgctxt "settings"
4238
  msgid "Category that is going to expire"
4239
  msgstr "Kategorie die bald abläuft"
4240
 
4241
+ #: core/class-settings.php:470 core/class-settings.php:483
4242
+ #: core/class-settings.php:522
4243
  msgctxt "settings"
4244
  msgid "Link to renewal page"
4245
  msgstr "Link zu erneuerten Seite"
4246
 
4247
+ #: core/class-settings.php:471 core/class-settings.php:484
4248
+ #: core/class-settings.php:496 core/class-settings.php:509
4249
+ #: core/class-settings.php:523
4250
  msgctxt "settings"
4251
  msgid "Link to your site"
4252
  msgstr "Link zu deiner Seite"
4253
 
4254
+ #: core/class-settings.php:474
4255
  msgctxt "admin settings"
4256
  msgid "Listing Renewal e-mail message"
4257
  msgstr "Eintrag Erneuerung E-mail Nachricht"
4258
 
4259
+ #: core/class-settings.php:478
4260
  msgctxt "settings"
4261
  msgid ""
4262
  "Sent at the time of listing expiration. Applies to non-recurring renewals "
4265
  "Zur Zeit wenn der Eintrag abläuft senden. Wird nur bei kostenlosen "
4266
  "Erneuerungen verwendet."
4267
 
4268
+ #: core/class-settings.php:482 core/class-settings.php:521
4269
  msgctxt "settings"
4270
  msgid "Category that expired"
4271
  msgstr "Ablaufende Kategorie"
4272
 
4273
+ #: core/class-settings.php:487
4274
  msgctxt "admin settings"
4275
  msgid "Listing auto-renewal reminder (recurring payments)"
4276
  msgstr "Eintrag automatische Erneuerungserinnerung (Abbuchungen)"
4277
 
4278
+ #: core/class-settings.php:491
4279
  msgctxt "settings"
4280
  msgid ""
4281
  "Sent some time before the listing is auto-renewed. Applies to recurring "
4284
  "Einige Zeit bevor der Eintrag abläuft senden. Wird nur bei bezahlten "
4285
  "Erneuerungen verwendet."
4286
 
4287
+ #: core/class-settings.php:494 core/class-settings.php:508
4288
  msgctxt "settings"
4289
  msgid "Renewal date"
4290
  msgstr "Erneuerungsdatum"
4291
 
4292
+ #: core/class-settings.php:495
4293
  msgctxt "settings"
4294
  msgid "Category that is going to be renewed"
4295
  msgstr "Kategorie die erneuert werden soll"
4296
 
4297
+ #: core/class-settings.php:497
4298
  msgctxt "settings"
4299
  msgid "Link to manage subscriptions"
4300
  msgstr "Link um Abos zu verwalten"
4301
 
4302
+ #: core/class-settings.php:500
4303
  msgctxt "admin settings"
4304
  msgid "Listing Renewal e-mail message (recurring payments)"
4305
  msgstr "Eintragserneuerungs E-mail Nachricht (Abbuchungen)"
4306
 
4307
+ #: core/class-settings.php:504
4308
  msgctxt "settings"
4309
  msgid ""
4310
  "Sent after the listing is auto-renewed. Applies to recurring renewals only."
4312
  "Sende nachdem der Eintrag automatisch erneuert wurde. Wird nur bei bezahlten "
4313
  "Erneuerungen verwendet."
4314
 
4315
+ #: core/class-settings.php:507
4316
  msgctxt "settings"
4317
  msgid "Renewed category"
4318
  msgstr "Erneuerte Kategorie"
4319
 
4320
+ #: core/class-settings.php:513
4321
  msgctxt "admin settings"
4322
  msgid "Renewal reminder e-mail message"
4323
  msgstr "Erneuerungserinnerung E-mail Nachricht"
4324
 
4325
+ #: core/class-settings.php:517
4326
  msgctxt "settings"
4327
  msgid ""
4328
  "Sent some time after listing expiration and when no renewal has occurred. "
4331
  "Einige Zeit nachdem der Eintrag abgelaufen und keine Erneuerung beauftragt "
4332
  "wurde senden. Wird bei bezahlten und kostenlosen Erneuerungen verwendet."
4333
 
4334
+ #: core/class-settings.php:527
4335
  msgctxt "admin settings"
4336
  msgid "Payment"
4337
  msgstr "Bezahlung"
4338
 
4339
+ #: core/class-settings.php:528
4340
  msgctxt "admin settings"
4341
  msgid "Payment Settings"
4342
  msgstr "Bezahlung Einstellungen"
4343
 
4344
+ #: core/class-settings.php:531
4345
  msgctxt "admin settings"
4346
  msgid "Turn On payments?"
4347
  msgstr "Bezahlungen aktivieren?"
4348
 
4349
+ #: core/class-settings.php:533
4350
  msgctxt "admin settings"
4351
  msgid "Put payment gateways in test mode?"
4352
  msgstr "Bezahlungsgateway im Testmodus ausführen?"
4353
 
4354
+ #: core/class-settings.php:538
4355
  msgctxt "admin settings"
4356
  msgid "Perform checkouts on the secure (HTTPS) version of your site?"
4357
  msgstr ""
4358
  "Aktiviere (HTTPS) sichere Verbindung für den Bestellprozess deiner Seite?"
4359
 
4360
+ #: core/class-settings.php:541
4361
  msgctxt "admin settings"
4362
  msgid ""
4363
  "Recommended for added security. For this to work you need to enable HTTPS on "
4366
  "Empfohlen zur Erweiterung der Sicherheit. Aktiviere HTTPS auf deinem Server "
4367
  "und <a>erhalte ein SSL Zertifikat</a>"
4368
 
4369
+ #: core/class-settings.php:545
4370
  msgctxt "admin settings"
4371
  msgid "Currency Code"
4372
  msgstr "Währungsschlüssel"
4373
 
4374
+ #: core/class-settings.php:547
4375
  msgctxt "admin settings"
4376
  msgid "Australian Dollar (AUD)"
4377
  msgstr "Australischer Dollar (AUD)"
4378
 
4379
+ #: core/class-settings.php:548
4380
  msgctxt "admin settings"
4381
  msgid "Brazilian Real (BRL)"
4382
  msgstr "Brasilianischer Real (BRL)"
4383
 
4384
+ #: core/class-settings.php:549
4385
  msgctxt "admin settings"
4386
  msgid "Canadian Dollar (CAD)"
4387
  msgstr "Kanadischer Dollar (CAD)"
4388
 
4389
+ #: core/class-settings.php:550
4390
  msgctxt "admin settings"
4391
  msgid "Czech Koruna (CZK)"
4392
  msgstr "Tschechische Koruna (CZK)"
4393
 
4394
+ #: core/class-settings.php:551
4395
  msgctxt "admin settings"
4396
  msgid "Danish Krone (DKK)"
4397
  msgstr "Dänische Krone (DKK)"
4398
 
4399
+ #: core/class-settings.php:552
4400
  msgctxt "admin settings"
4401
  msgid "Euro (EUR)"
4402
  msgstr "Euro (EUR)"
4403
 
4404
+ #: core/class-settings.php:553
4405
  msgctxt "admin settings"
4406
  msgid "Hong Kong Dollar (HKD)"
4407
  msgstr "Hong Kong Dollar (HKD)"
4408
 
4409
+ #: core/class-settings.php:554
4410
  msgctxt "admin settings"
4411
  msgid "Hungarian Forint (HUF)"
4412
  msgstr "Ungarischer Forint (HUF)"
4413
 
4414
+ #: core/class-settings.php:555
4415
  msgctxt "admin settings"
4416
  msgid "Israeli New Shequel (ILS)"
4417
  msgstr "Israelischer Neuer Schequel (ILS)"
4418
 
4419
+ #: core/class-settings.php:556
4420
  msgctxt "admin settings"
4421
  msgid "Japanese Yen (JPY)"
4422
  msgstr "Japanischer Jen (JPY)"
4423
 
4424
+ #: core/class-settings.php:557
4425
  msgctxt "admin settings"
4426
  msgid "Malasian Ringgit (MYR)"
4427
  msgstr "Malaysischer Ringgit (MYR)"
4428
 
4429
+ #: core/class-settings.php:558
4430
  msgctxt "admin settings"
4431
  msgid "Mexican Peso (MXN)"
4432
  msgstr "Mexikanischer Peso (MXN)"
4433
 
4434
+ #: core/class-settings.php:559
4435
  msgctxt "admin settings"
4436
  msgid "Norwegian Krone (NOK)"
4437
  msgstr "Norwegische Krone (NOK)"
4438
 
4439
+ #: core/class-settings.php:560
4440
  msgctxt "admin settings"
4441
  msgid "New Zealand Dollar (NZD)"
4442
  msgstr "Neuseeland Dollar (NZD)"
4443
 
4444
+ #: core/class-settings.php:561
4445
  msgctxt "admin settings"
4446
  msgid "Philippine Peso (PHP)"
4447
  msgstr "Philippinischer Peso (PHP)"
4448
 
4449
+ #: core/class-settings.php:562
4450
  msgctxt "admin settings"
4451
  msgid "Polish Zloty (PLN)"
4452
  msgstr "Polnischer Zloty (PLN)"
4453
 
4454
+ #: core/class-settings.php:563
4455
  msgctxt "admin settings"
4456
  msgid "Pound Sterling (GBP)"
4457
  msgstr "Pfund Sterling (GBP)"
4458
 
4459
+ #: core/class-settings.php:564
4460
  msgctxt "admin settings"
4461
  msgid "Singapore Dollar (SGD)"
4462
  msgstr "Singapore Dollar (SGD)"
4463
 
4464
+ #: core/class-settings.php:565
4465
  msgctxt "admin settings"
4466
  msgid "Swedish Krona (SEK)"
4467
  msgstr "Schwedische Krone (SEK)"
4468
 
4469
+ #: core/class-settings.php:566
4470
  msgctxt "admin settings"
4471
  msgid "Swiss Franc (CHF)"
4472
  msgstr "Schweizer Franken (CHF)"
4473
 
4474
+ #: core/class-settings.php:567
4475
  msgctxt "admin settings"
4476
  msgid "Taiwan Dollar (TWD)"
4477
  msgstr "Taiwanischer Dollar (TWD)"
4478
 
4479
+ #: core/class-settings.php:568
4480
  msgctxt "admin settings"
4481
  msgid "Thai Baht (THB)"
4482
  msgstr "Thailändischer Baht (THB)"
4483
 
4484
+ #: core/class-settings.php:569
4485
  msgctxt "admin settings"
4486
  msgid "Turkish Lira (TRY)"
4487
  msgstr "Türkische Lira (TRY)"
4488
 
4489
+ #: core/class-settings.php:570
4490
  #, fuzzy
4491
  msgctxt "admin settings"
4492
  msgid "U.S. Dollar (USD)"
4493
  msgstr "U.S. Dollar"
4494
 
4495
+ #: core/class-settings.php:574
4496
  msgctxt "admin settings"
4497
  msgid "Currency Symbol"
4498
  msgstr "Währungssymbol"
4499
 
4500
+ #: core/class-settings.php:579
4501
  #, fuzzy
4502
  msgctxt "admin settings"
4503
  msgid "Currency symbol display"
4504
  msgstr "Währungssymbol"
4505
 
4506
+ #: core/class-settings.php:583
4507
  msgctxt "admin settings"
4508
  msgid "Show currency symbol on the left"
4509
  msgstr ""
4510
 
4511
+ #: core/class-settings.php:584
4512
  msgctxt "admin settings"
4513
  msgid "Show currency symbol on the right"
4514
  msgstr ""
4515
 
4516
+ #: core/class-settings.php:585
4517
  #, fuzzy
4518
  msgctxt "admin settings"
4519
  msgid "Do not show currency symbol"
4520
  msgstr "Währungssymbol"
4521
 
4522
+ #: core/class-settings.php:587
4523
  msgctxt "admin settings"
4524
  msgid "Thank you for payment message"
4525
  msgstr "Danke für die Bezahlung Nachricht"
4526
 
4527
+ #: core/class-settings.php:588
4528
  msgctxt "admin settings"
4529
  msgid ""
4530
  "Thank you for your payment. Your payment is being verified and your listing "
4534
  "geprüft. Die Verifizierung und die Prüfung können 48 Stunden in Anspruch "
4535
  "nehmen."
4536
 
4537
+ #: core/class-settings.php:593
4538
  msgctxt "admin settings"
4539
  msgid "Ask users to come back for abandoned payments?"
4540
  msgstr ""
4541
 
4542
+ #: core/class-settings.php:596
4543
  msgctxt "admin settings"
4544
  msgid ""
4545
  "An abandoned payment is when a user attempts to place a listing and gets to "
4548
  "the transaction. BD can remind them to come back and continue."
4549
  msgstr ""
4550
 
4551
+ #: core/class-settings.php:602
4552
  #, fuzzy
4553
  msgctxt "admin settings"
4554
  msgid "Listing abandonment threshold (hours)"
4555
  msgstr "Eintragsabbuchungsemail Grenze (in tagen)"
4556
 
4557
+ #: core/class-settings.php:607
4558
  msgctxt "admin settings"
4559
  msgid ""
4560
  "Listings with pending payments are marked as abandoned after this time. You "
4561
  "can also <a>customize the e-mail</a> users receive."
4562
  msgstr ""
4563
 
4564
+ #: core/class-settings.php:612
4565
  msgctxt "admin settings"
4566
  msgid "Themes"
4567
  msgstr ""
4568
 
4569
+ #: core/class-settings.php:614
4570
  msgctxt "admin settings"
4571
  msgid "You can manage your themes on <a>Directory Themes</a>."
4572
  msgstr ""
4573
 
4574
+ #: core/class-settings.php:619
4575
  msgctxt "admin settings"
4576
  msgid "Theme button style"
4577
  msgstr ""
4578
 
4579
+ #: core/class-settings.php:623
4580
  msgctxt "admin settings"
4581
  msgid "Use the BD theme style for BD buttons"
4582
  msgstr ""
4583
 
4584
+ #: core/class-settings.php:624
4585
  msgctxt "admin settings"
4586
  msgid "Use the WP theme style for BD buttons"
4587
  msgstr ""
4588
 
4589
+ #: core/class-settings.php:631
4590
  msgctxt "admin settings"
4591
  msgid "Image"
4592
  msgstr "Bild"
4593
 
4594
+ #: core/class-settings.php:632
4595
  msgctxt "admin settings"
4596
  msgid ""
4597
  "Any changes to these settings will affect new listings only. Existing "
4604
  "existierende Einträge verändert werden, musst du Bild(er) neu hochladen, "
4605
  "nachdem Einstellungen hier verändert wurden."
4606
 
4607
+ #: core/class-settings.php:633
4608
  msgctxt "admin settings"
4609
  msgid "Image Settings"
4610
  msgstr "Bildeinstellungen"
4611
 
4612
+ #: core/class-settings.php:634
4613
  msgctxt "admin settings"
4614
  msgid "Allow images?"
4615
  msgstr "Bilder erlauben?"
4616
 
4617
+ #: core/class-settings.php:636
4618
  #, fuzzy
4619
  msgctxt "admin settings"
4620
  msgid "Min Image File Size (KB)"
4621
  msgstr "Maximale Bildgröße (KB)"
4622
 
4623
+ #: core/class-settings.php:637
4624
  msgctxt "admin settings"
4625
  msgid "Max Image File Size (KB)"
4626
  msgstr "Maximale Bildgröße (KB)"
4627
 
4628
+ #: core/class-settings.php:639
4629
  #, fuzzy
4630
  msgctxt "admin settings"
4631
  msgid "Min image width (px)"
4632
  msgstr "Bildergröße (in px):"
4633
 
4634
+ #: core/class-settings.php:640
4635
  #, fuzzy
4636
  msgctxt "admin settings"
4637
  msgid "Min image height (px)"
4638
  msgstr "Bilderhöhe (in px):"
4639
 
4640
+ #: core/class-settings.php:642
4641
  #, fuzzy
4642
  msgctxt "admin settings"
4643
  msgid "Max image width (px)"
4644
  msgstr "Maximale Bildbreite"
4645
 
4646
+ #: core/class-settings.php:643
4647
  #, fuzzy
4648
  msgctxt "admin settings"
4649
  msgid "Max image height (px)"
4650
  msgstr "Maximale Bildhöhe"
4651
 
4652
+ #: core/class-settings.php:645
4653
  msgctxt "admin settings"
4654
  msgid "Turn on thickbox/lightbox?"
4655
  msgstr "Kontrollkästchen/Leuchtkasten aktivieren?"
4656
 
4657
+ #: core/class-settings.php:645
4658
  msgctxt "admin settings"
4659
  msgid ""
4660
  "Uncheck if it conflicts with other elements or plugins installed on your site"
4662
  "Deaktivieren wenn Konflikte mit anderen Elementen oder installierten "
4663
  "Erweiterungen entstehen"
4664
 
4665
+ #: core/class-settings.php:647
4666
  #, fuzzy
4667
  msgctxt "admin settings"
4668
  msgid "Thumbnails"
4669
  msgstr "Thumbnails"
4670
 
4671
+ #: core/class-settings.php:648
4672
  #, fuzzy
4673
  msgctxt "admin settings"
4674
  msgid "Thumbnail width (px)"
4675
  msgstr "Thumbnailbreite"
4676
 
4677
+ #: core/class-settings.php:649
4678
  #, fuzzy
4679
  msgctxt "admin settings"
4680
  msgid "Thumbnail height (px)"
4681
  msgstr "Thumbnailbreite"
4682
 
4683
+ #: core/class-settings.php:652
4684
  msgctxt "admin settings"
4685
  msgid "Crop thumbnails to exact dimensions?"
4686
  msgstr ""
4687
 
4688
+ #: core/class-settings.php:655
4689
  msgctxt "admin settings"
4690
  msgid ""
4691
  "When enabled images will match exactly the dimensions above but part of the "
4694
  "Depending on the uploaded images, thumbnails may have different heights."
4695
  msgstr ""
4696
 
4697
+ #: core/class-settings.php:661
4698
  msgctxt "admin settings"
4699
  msgid "Number of free images"
4700
  msgstr "Nummer der freien Bilder"
4701
 
4702
+ #: core/class-settings.php:666
4703
  msgctxt "admin settings"
4704
  msgid ""
4705
  "For paid listing images, configure that by adding or editing a <a>Fee Plan</"
4709
  "erstellen eines <a>Preisplan</a> an Stelle dieser Einstellungen, die von "
4710
  "bezahlten Einträgen ignoriert wird."
4711
 
4712
+ #: core/class-settings.php:669
4713
  msgctxt "admin settings"
4714
  msgid "Use default picture for listings with no picture?"
4715
  msgstr "Benutze Standardbilder für Einträge mit keinem Bild?"
4716
 
4717
+ #: core/class-settings.php:670
4718
  msgctxt "admin settings"
4719
  msgid "Show Thumbnail on main listings page?"
4720
  msgstr "Thumbnail auf der Eintragshauptseite anzeigen?"
4721
 
4722
+ #: core/class-settings.php:699
4723
  msgctxt "admin settings"
4724
  msgid "User"
4725
  msgstr ""
4726
 
4727
+ #: core/class-settings.php:700
4728
  #, fuzzy
4729
  msgctxt "admin settings"
4730
  msgid "User registration date"
4731
  msgstr "Eintrag Enddatum"
4732
 
4733
+ #: core/class-settings.php:726
4734
  msgctxt "admin settings"
4735
  msgid ""
4736
  "Could not copy the AJAX compatibility plugin \"%s\". Compatibility mode was "
4737
  "not activated."
4738
  msgstr ""
4739
 
4740
+ #: core/class-settings.php:734
4741
  msgctxt "admin settings"
4742
  msgid ""
4743
  "Could not activate AJAX Compatibility mode: the directory \"%s\" could not "
4744
  "be created."
4745
  msgstr ""
4746
 
4747
+ #: core/class-settings.php:743
4748
  msgctxt "admin settings"
4749
  msgid ""
4750
  "Could not remove the \"Business Directory Plugin - AJAX Compatibility Module"
4751
  "\". Please remove the file \"%s\" manually or deactivate the plugin."
4752
  msgstr ""
4753
 
4754
+ #: core/class-settings.php:1063
4755
  msgctxt "settings"
4756
  msgid "Deactivate License"
4757
  msgstr "Lizenz Deaktivieren"
4758
 
4759
+ #: core/class-settings.php:1065
4760
  msgctxt "settings"
4761
  msgid "Deactivating license..."
4762
  msgstr "Deaktiviere Lizenz..."
4763
 
4764
+ #: core/class-settings.php:1068
4765
  msgctxt "settings"
4766
  msgid "Activate License"
4767
  msgstr "Aktiviere Lizenz"
4768
 
4769
+ #: core/class-settings.php:1070
4770
  msgctxt "settings"
4771
  msgid "Activating license..."
4772
  msgstr "Aktiviere Lizenz..."
4773
 
4774
+ #: core/class-settings.php:1093
4775
  msgctxt "admin settings"
4776
  msgid "Valid placeholders: %s"
4777
  msgstr "Gültige Platzhalter: %s"
4778
 
4779
+ #: core/class-settings.php:1127
4780
  msgctxt "settings email"
4781
  msgid "Click to edit e-mail"
4782
  msgstr "Klicken um E-mail zu bearbeiten"
4783
 
4784
+ #: core/class-settings.php:1128
4785
  msgctxt "settings email"
4786
  msgid "Click to edit"
4787
  msgstr "zum Bearbeiten klicken"
4788
 
4789
+ #: core/class-settings.php:1141
4790
  msgctxt "settings email"
4791
  msgid "E-Mail Subject"
4792
  msgstr "E-mail Betreff"
4793
 
4794
+ #: core/class-settings.php:1152
4795
  msgctxt "settings email"
4796
  msgid "E-Mail Body"
4797
  msgstr "E-mail Text"
4798
 
4799
+ #: core/class-settings.php:1163
4800
  msgctxt "settings email"
4801
  msgid "You can use the following placeholders:"
4802
  msgstr "Du kannst folgende Platzhalter verwenden:"
4803
 
4804
+ #: core/class-settings.php:1186
4805
  msgctxt "settings email"
4806
  msgid "Preview e-mail"
4807
  msgstr "Vorschau E-mail"
4808
 
4809
+ #: core/class-settings.php:1187
4810
  msgctxt "settings email"
4811
  msgid "Cancel"
4812
  msgstr "Abbrechen"
4813
 
4814
+ #: core/class-settings.php:1188
4815
  msgctxt "settings email"
4816
  msgid "Save Changes"
4817
  msgstr "Änderungen sichern"
4818
 
4819
+ #: core/class-settings.php:1207
4820
  msgctxt "settings email"
4821
  msgid "Site title"
4822
  msgstr "Seitentitel"
4823
 
4824
+ #: core/class-settings.php:1210
4825
  msgctxt "settings email"
4826
  msgid "Site title (with link)"
4827
  msgstr "Seitentitel (mit Link)"
4828
 
4829
+ #: core/class-settings.php:1213
4830
  msgctxt "settings email"
4831
  msgid "Site address (with link)"
4832
  msgstr "Seitenadresse (mit Link)"
4833
 
4834
+ #: core/class-settings.php:1216
4835
  msgctxt "settings email"
4836
  msgid "Directory URL (with link)"
4837
  msgstr "Verzeichnis URL (mit Link)"
4838
 
4839
+ #: core/class-settings.php:1219
4840
  msgctxt "settings email"
4841
  msgid "Current date"
4842
  msgstr "Aktuelles Datum"
4843
 
4844
+ #: core/class-settings.php:1222
4845
  msgctxt "settings email"
4846
  msgid "Current time"
4847
  msgstr "Aktuelle Zeit"
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-06-21 22:32:39+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"
@@ -2094,7 +2094,7 @@ msgctxt "form-fields admin"
2094
  msgid "Please see the <a>Form Fields documentation</a> for more details."
2095
  msgstr ""
2096
 
2097
- #. #-#-#-#-# WPBDM.pot (Business Directory Plugin 4.0.7) #-#-#-#-#
2098
  #. Plugin Name of the plugin/theme
2099
  #: admin/templates/header.tpl.php:4
2100
  msgid "Business Directory Plugin"
@@ -3227,6 +3227,13 @@ msgctxt "admin settings"
3227
  msgid "Display and require user agreement to Terms and Conditions"
3228
  msgstr ""
3229
 
 
 
 
 
 
 
 
3230
  #: core/class-settings.php:107
3231
  msgctxt "admin settings"
3232
  msgid ""
@@ -3348,13 +3355,13 @@ msgctxt "admin settings"
3348
  msgid "Enable AJAX compatibility mode?"
3349
  msgstr ""
3350
 
3351
- #: core/class-settings.php:179 core/class-settings.php:660
3352
  msgctxt "admin settings"
3353
  msgid "Listings"
3354
  msgstr ""
3355
 
3356
- #: core/class-settings.php:180 core/class-settings.php:330
3357
- #: core/class-settings.php:617
3358
  msgctxt "admin settings"
3359
  msgid "General Settings"
3360
  msgstr ""
@@ -3434,17 +3441,27 @@ msgctxt "admin settings"
3434
  msgid "Status of listings upon uninstalling plugin"
3435
  msgstr ""
3436
 
 
 
 
 
 
 
 
 
 
 
3437
  #: core/class-settings.php:220
3438
  msgctxt "admin settings"
3439
  msgid "Status of deleted listings"
3440
  msgstr ""
3441
 
3442
- #: core/class-settings.php:223
3443
  msgctxt "admin settings"
3444
  msgid "Submit Listing instructions message"
3445
  msgstr ""
3446
 
3447
- #: core/class-settings.php:223
3448
  msgctxt "admin settings"
3449
  msgid ""
3450
  "This text is displayed at the first page of the Submit Listing process for "
@@ -3452,247 +3469,257 @@ msgid ""
3452
  "form or anything you want to tell users before they get started."
3453
  msgstr ""
3454
 
3455
- #: core/class-settings.php:226
3456
  msgctxt "admin settings"
3457
  msgid "Listing Renewal"
3458
  msgstr ""
3459
 
3460
- #: core/class-settings.php:227
3461
  msgctxt "admin settings"
3462
  msgid "Turn on listing renewal option?"
3463
  msgstr ""
3464
 
3465
- #: core/class-settings.php:230
3466
  msgctxt "admin settings"
3467
  msgid "Allow recurring renewal payments?"
3468
  msgstr ""
3469
 
3470
- #: core/class-settings.php:233
3471
  msgctxt "admin settings"
3472
  msgid ""
3473
  "Allow users to opt in for automatic renewal of their listings. The fee is "
3474
  "charged at the time the listing expires without user intervention."
3475
  msgstr ""
3476
 
3477
- #: core/class-settings.php:237
3478
  msgctxt "admin settings"
3479
  msgid "Use recurring payments as the default payment method?"
3480
  msgstr ""
3481
 
3482
- #: core/class-settings.php:240
3483
  msgctxt "admin settings"
3484
  msgid ""
3485
  "Enable automatic renewal without having users opt in during the submit "
3486
  "process."
3487
  msgstr ""
3488
 
3489
- #: core/class-settings.php:245
3490
  msgctxt "admin settings"
3491
  msgid "Listing renewal e-mail threshold (in days)"
3492
  msgstr ""
3493
 
3494
- #: core/class-settings.php:248
3495
  msgctxt "admin settings"
3496
  msgid ""
3497
  "Configure how many days before listing expiration is the renewal e-mail sent."
3498
  msgstr ""
3499
 
3500
- #: core/class-settings.php:252
3501
  msgctxt "admin settings"
3502
  msgid ""
3503
  "Send expiration notices including a cancel links to auto-renewed listings?"
3504
  msgstr ""
3505
 
3506
- #: core/class-settings.php:259
3507
  msgctxt "admin settings"
3508
  msgid "Remind listing owners of expired listings (past due)?"
3509
  msgstr ""
3510
 
3511
- #: core/class-settings.php:264
3512
  msgctxt "admin settings"
3513
  msgid "Listing renewal reminder e-mail threshold (in days)"
3514
  msgstr ""
3515
 
3516
- #: core/class-settings.php:267
3517
  msgctxt "admin settings"
3518
  msgid ""
3519
  "Configure how many days after the expiration of a listing an e-mail reminder "
3520
  "should be sent to the owner."
3521
  msgstr ""
3522
 
3523
- #: core/class-settings.php:270
3524
  msgctxt "admin settings"
3525
  msgid "Post/Category Settings"
3526
  msgstr ""
3527
 
3528
- #: core/class-settings.php:271
3529
  msgctxt "admin settings"
3530
  msgid "Default new post status"
3531
  msgstr ""
3532
 
3533
- #: core/class-settings.php:274
 
 
 
 
 
 
 
 
 
 
3534
  msgctxt "admin settings"
3535
  msgid "Edit post status"
3536
  msgstr ""
3537
 
3538
- #: core/class-settings.php:276
3539
  msgctxt "admin settings"
3540
  msgid "Order categories list by"
3541
  msgstr ""
3542
 
3543
- #: core/class-settings.php:278
3544
  msgctxt "admin settings"
3545
  msgid "Name"
3546
  msgstr ""
3547
 
3548
- #: core/class-settings.php:279
3549
  msgctxt "admin settings"
3550
  msgid "Slug"
3551
  msgstr ""
3552
 
3553
- #: core/class-settings.php:280
3554
  msgctxt "admin settings"
3555
  msgid "Listing Count"
3556
  msgstr ""
3557
 
3558
- #: core/class-settings.php:282
3559
  msgctxt "admin settings"
3560
  msgid "Sort order for categories"
3561
  msgstr ""
3562
 
3563
- #: core/class-settings.php:283 core/class-settings.php:301
3564
  msgctxt "admin settings"
3565
  msgid "Ascending"
3566
  msgstr ""
3567
 
3568
- #: core/class-settings.php:283 core/class-settings.php:301
3569
  msgctxt "admin settings"
3570
  msgid "Descending"
3571
  msgstr ""
3572
 
3573
- #: core/class-settings.php:284
3574
  msgctxt "admin settings"
3575
  msgid "Show category post count?"
3576
  msgstr ""
3577
 
3578
- #: core/class-settings.php:285
3579
  msgctxt "admin settings"
3580
  msgid "Hide empty categories?"
3581
  msgstr ""
3582
 
3583
- #: core/class-settings.php:286
3584
  msgctxt "admin settings"
3585
  msgid "Show only parent categories in category list?"
3586
  msgstr ""
3587
 
3588
- #: core/class-settings.php:288
3589
  msgctxt "admin settings"
3590
  msgid "Listings Sorting"
3591
  msgstr ""
3592
 
3593
- #: core/class-settings.php:289
3594
  msgctxt "admin settings"
3595
  msgid "Order directory listings by"
3596
  msgstr ""
3597
 
3598
- #: core/class-settings.php:291
3599
  msgctxt "admin settings"
3600
  msgid "Title"
3601
  msgstr ""
3602
 
3603
- #: core/class-settings.php:292
3604
  msgctxt "admin settings"
3605
  msgid "Author"
3606
  msgstr ""
3607
 
3608
- #: core/class-settings.php:293 core/class-settings.php:703
3609
  msgctxt "admin settings"
3610
  msgid "Date posted"
3611
  msgstr ""
3612
 
3613
- #: core/class-settings.php:294 core/class-settings.php:704
3614
  msgctxt "admin settings"
3615
  msgid "Date last modified"
3616
  msgstr ""
3617
 
3618
- #: core/class-settings.php:295
3619
  msgctxt "admin settings"
3620
  msgid "Random"
3621
  msgstr ""
3622
 
3623
- #: core/class-settings.php:296
3624
  msgctxt "admin settings"
3625
  msgid "Paid first then free. Inside each group by date."
3626
  msgstr ""
3627
 
3628
- #: core/class-settings.php:297
3629
  msgctxt "admin settings"
3630
  msgid "Paid first then free. Inside each group by title."
3631
  msgstr ""
3632
 
3633
- #: core/class-settings.php:299
3634
  msgctxt "admin settings"
3635
  msgid "Sort directory listings by"
3636
  msgstr ""
3637
 
3638
- #: core/class-settings.php:300
3639
  msgctxt "admin settings"
3640
  msgid "Ascending for ascending order A-Z, Descending for descending order Z-A"
3641
  msgstr ""
3642
 
3643
- #: core/class-settings.php:305
3644
  msgctxt "admin settings"
3645
  msgid "Enable sort bar?"
3646
  msgstr ""
3647
 
3648
- #: core/class-settings.php:310
3649
  msgctxt "admin settings"
3650
  msgid "Sortbar Fields"
3651
  msgstr ""
3652
 
3653
- #: core/class-settings.php:319
3654
  msgctxt "admin settings"
3655
  msgid "Featured (Sticky) listing settings"
3656
  msgstr ""
3657
 
3658
- #: core/class-settings.php:320
3659
  msgctxt "admin settings"
3660
  msgid "Offer sticky listings?"
3661
  msgstr ""
3662
 
3663
- #: core/class-settings.php:321
3664
  msgctxt "admin settings"
3665
  msgid "Offer upgrades during submit process?"
3666
  msgstr ""
3667
 
3668
- #: core/class-settings.php:322
3669
  msgctxt "admin settings"
3670
  msgid "Sticky listing price"
3671
  msgstr ""
3672
 
3673
- #: core/class-settings.php:323
3674
  msgctxt "admin settings"
3675
  msgid "Sticky listing page description text"
3676
  msgstr ""
3677
 
3678
- #: core/class-settings.php:324
3679
  msgctxt "admin settings"
3680
  msgid ""
3681
  "You can upgrade your listing to featured status. Featured listings will "
3682
  "always appear on top of regular listings."
3683
  msgstr ""
3684
 
3685
- #: core/class-settings.php:329
3686
  msgctxt "admin settings"
3687
  msgid "E-Mail"
3688
  msgstr ""
3689
 
3690
- #: core/class-settings.php:333
3691
  msgctxt "admin settings"
3692
  msgid "Display email address fields publicly?"
3693
  msgstr ""
3694
 
3695
- #: core/class-settings.php:336
3696
  msgctxt "admin settings"
3697
  msgid ""
3698
  "Shows the email address of the listing owner to all web users. NOT "
@@ -3700,517 +3727,517 @@ msgid ""
3700
  "harvest it for future use."
3701
  msgstr ""
3702
 
3703
- #: core/class-settings.php:339
3704
  msgctxt "admin settings"
3705
  msgid "How to determine the listing's email address?"
3706
  msgstr ""
3707
 
3708
- #: core/class-settings.php:342
3709
  msgctxt "admin settings"
3710
  msgid ""
3711
  "This affects emails sent to listing owners via contact forms or when their "
3712
  "listings expire."
3713
  msgstr ""
3714
 
3715
- #: core/class-settings.php:344
3716
  msgctxt "admin settings"
3717
  msgid "Try listing's email field first, then author's email."
3718
  msgstr ""
3719
 
3720
- #: core/class-settings.php:345
3721
  msgctxt "admin settings"
3722
  msgid "Try author's email first and then listing's email field."
3723
  msgstr ""
3724
 
3725
- #: core/class-settings.php:349
3726
  msgctxt "admin settings"
3727
  msgid "E-Mail Notifications"
3728
  msgstr ""
3729
 
3730
- #: core/class-settings.php:352
3731
  msgctxt "admin settings"
3732
  msgid "Notify admin via e-mail when..."
3733
  msgstr ""
3734
 
3735
- #: core/class-settings.php:356
3736
  msgctxt "admin settings"
3737
  msgid "A new listing is submitted."
3738
  msgstr ""
3739
 
3740
- #: core/class-settings.php:357
3741
  msgctxt "admin settings"
3742
  msgid "A listing is edited."
3743
  msgstr ""
3744
 
3745
- #: core/class-settings.php:358
3746
  msgctxt "admin settings"
3747
  msgid "A listing expires."
3748
  msgstr ""
3749
 
3750
- #: core/class-settings.php:359
3751
  msgctxt "admin settings"
3752
  msgid "A contact message is sent to a listing's owner."
3753
  msgstr ""
3754
 
3755
- #: core/class-settings.php:365
3756
  msgctxt "admin settings"
3757
  msgid "CC this e-mail address too"
3758
  msgstr ""
3759
 
3760
- #: core/class-settings.php:371
3761
  msgctxt "admin settings"
3762
  msgid "Notify users via e-mail when..."
3763
  msgstr ""
3764
 
3765
- #: core/class-settings.php:374
3766
  msgctxt "admin settings"
3767
  msgid "You can modify the text template used for most of these e-mails below."
3768
  msgstr ""
3769
 
3770
- #: core/class-settings.php:375
3771
  msgctxt "admin settings"
3772
  msgid "Their listing is submitted."
3773
  msgstr ""
3774
 
3775
- #: core/class-settings.php:376
3776
  msgctxt "admin settings"
3777
  msgid "Their listing is approved/published."
3778
  msgstr ""
3779
 
3780
- #: core/class-settings.php:385
3781
  msgctxt "contact email"
3782
  msgid "You have received a reply from your listing at %s."
3783
  msgstr ""
3784
 
3785
- #: core/class-settings.php:386
3786
  msgctxt "contact email"
3787
  msgid "Name: %s"
3788
  msgstr ""
3789
 
3790
- #: core/class-settings.php:387
3791
  msgctxt "contact email"
3792
  msgid "E-Mail: %s"
3793
  msgstr ""
3794
 
3795
- #: core/class-settings.php:388
3796
  msgctxt "contact email"
3797
  msgid "Message:"
3798
  msgstr ""
3799
 
3800
- #: core/class-settings.php:390
3801
  msgctxt "contact email"
3802
  msgid "Time: %s"
3803
  msgstr ""
3804
 
3805
- #: core/class-settings.php:392
3806
  msgctxt "admin settings"
3807
  msgid "E-Mail Templates"
3808
  msgstr ""
3809
 
3810
- #: core/class-settings.php:395
3811
  msgctxt "admin settings"
3812
  msgid "Email confirmation message"
3813
  msgstr ""
3814
 
3815
- #: core/class-settings.php:399
3816
  msgctxt "admin settings"
3817
  msgid "Sent after a listing has been submitted."
3818
  msgstr ""
3819
 
3820
- #: core/class-settings.php:400 core/class-settings.php:408
3821
- #: core/class-settings.php:449
3822
  msgctxt "admin settings"
3823
  msgid "Listing's title"
3824
  msgstr ""
3825
 
3826
- #: core/class-settings.php:403
3827
  msgctxt "admin settings"
3828
  msgid "Listing published message"
3829
  msgstr ""
3830
 
3831
- #: core/class-settings.php:406
3832
  msgctxt "admin settings"
3833
  msgid ""
3834
  "Your listing \"[listing]\" is now available at [listing-url] and can be "
3835
  "viewed by the public."
3836
  msgstr ""
3837
 
3838
- #: core/class-settings.php:407
3839
  msgctxt "admin settings"
3840
  msgid "Sent when the listing has been published or approved by an admin."
3841
  msgstr ""
3842
 
3843
- #: core/class-settings.php:409
3844
  msgctxt "admin settings"
3845
  msgid "Listing's URL"
3846
  msgstr ""
3847
 
3848
- #: core/class-settings.php:413
3849
  msgctxt "admin settings"
3850
  msgid "Listing Contact Message"
3851
  msgstr ""
3852
 
3853
- #: core/class-settings.php:417
3854
  msgctxt "admin settings"
3855
  msgid ""
3856
  "Sent to listing owners when someone uses the contact form on their listing "
3857
  "pages."
3858
  msgstr ""
3859
 
3860
- #: core/class-settings.php:427
3861
  msgctxt "admin settings"
3862
  msgid "Payment related"
3863
  msgstr ""
3864
 
3865
- #: core/class-settings.php:444
3866
  msgctxt "admin settings"
3867
  msgid "Payment abandoned reminder message"
3868
  msgstr ""
3869
 
3870
- #: core/class-settings.php:448
3871
  msgctxt "admin settings"
3872
  msgid "Sent some time after a pending payment is abandoned by users."
3873
  msgstr ""
3874
 
3875
- #: core/class-settings.php:450
3876
  msgctxt "admin settings"
3877
  msgid "Checkout URL link"
3878
  msgstr ""
3879
 
3880
- #: core/class-settings.php:456
3881
  msgctxt "admin settings"
3882
  msgid "Renewal Reminders"
3883
  msgstr ""
3884
 
3885
- #: core/class-settings.php:459
3886
  msgctxt "admin settings"
3887
  msgid ""
3888
  "This section refers only to the text of the renewal/expiration notices. You "
3889
  "can also <a>configure when the e-mails are sent</a>."
3890
  msgstr ""
3891
 
3892
- #: core/class-settings.php:463
3893
  msgctxt "admin settings"
3894
  msgid "Pending expiration e-mail message"
3895
  msgstr ""
3896
 
3897
- #: core/class-settings.php:467
3898
  msgctxt "settings"
3899
  msgid ""
3900
  "Sent some time before the listing expires. Applies to non-recurring renewals "
3901
  "only."
3902
  msgstr ""
3903
 
3904
- #: core/class-settings.php:468 core/class-settings.php:481
3905
- #: core/class-settings.php:494 core/class-settings.php:507
3906
- #: core/class-settings.php:520
3907
  msgctxt "settings"
3908
  msgid "Listing's name (with link)"
3909
  msgstr ""
3910
 
3911
- #: core/class-settings.php:469 core/class-settings.php:482
3912
- #: core/class-settings.php:495 core/class-settings.php:508
3913
- #: core/class-settings.php:521
3914
  msgctxt "settings"
3915
  msgid "Author's name"
3916
  msgstr ""
3917
 
3918
- #: core/class-settings.php:470 core/class-settings.php:483
3919
- #: core/class-settings.php:522
3920
  msgctxt "settings"
3921
  msgid "Expiration date"
3922
  msgstr ""
3923
 
3924
- #: core/class-settings.php:471
3925
  msgctxt "settings"
3926
  msgid "Category that is going to expire"
3927
  msgstr ""
3928
 
3929
- #: core/class-settings.php:472 core/class-settings.php:485
3930
- #: core/class-settings.php:524
3931
  msgctxt "settings"
3932
  msgid "Link to renewal page"
3933
  msgstr ""
3934
 
3935
- #: core/class-settings.php:473 core/class-settings.php:486
3936
- #: core/class-settings.php:498 core/class-settings.php:511
3937
- #: core/class-settings.php:525
3938
  msgctxt "settings"
3939
  msgid "Link to your site"
3940
  msgstr ""
3941
 
3942
- #: core/class-settings.php:476
3943
  msgctxt "admin settings"
3944
  msgid "Listing Renewal e-mail message"
3945
  msgstr ""
3946
 
3947
- #: core/class-settings.php:480
3948
  msgctxt "settings"
3949
  msgid ""
3950
  "Sent at the time of listing expiration. Applies to non-recurring renewals "
3951
  "only."
3952
  msgstr ""
3953
 
3954
- #: core/class-settings.php:484 core/class-settings.php:523
3955
  msgctxt "settings"
3956
  msgid "Category that expired"
3957
  msgstr ""
3958
 
3959
- #: core/class-settings.php:489
3960
  msgctxt "admin settings"
3961
  msgid "Listing auto-renewal reminder (recurring payments)"
3962
  msgstr ""
3963
 
3964
- #: core/class-settings.php:493
3965
  msgctxt "settings"
3966
  msgid ""
3967
  "Sent some time before the listing is auto-renewed. Applies to recurring "
3968
  "renewals only."
3969
  msgstr ""
3970
 
3971
- #: core/class-settings.php:496 core/class-settings.php:510
3972
  msgctxt "settings"
3973
  msgid "Renewal date"
3974
  msgstr ""
3975
 
3976
- #: core/class-settings.php:497
3977
  msgctxt "settings"
3978
  msgid "Category that is going to be renewed"
3979
  msgstr ""
3980
 
3981
- #: core/class-settings.php:499
3982
  msgctxt "settings"
3983
  msgid "Link to manage subscriptions"
3984
  msgstr ""
3985
 
3986
- #: core/class-settings.php:502
3987
  msgctxt "admin settings"
3988
  msgid "Listing Renewal e-mail message (recurring payments)"
3989
  msgstr ""
3990
 
3991
- #: core/class-settings.php:506
3992
  msgctxt "settings"
3993
  msgid ""
3994
  "Sent after the listing is auto-renewed. Applies to recurring renewals only."
3995
  msgstr ""
3996
 
3997
- #: core/class-settings.php:509
3998
  msgctxt "settings"
3999
  msgid "Renewed category"
4000
  msgstr ""
4001
 
4002
- #: core/class-settings.php:515
4003
  msgctxt "admin settings"
4004
  msgid "Renewal reminder e-mail message"
4005
  msgstr ""
4006
 
4007
- #: core/class-settings.php:519
4008
  msgctxt "settings"
4009
  msgid ""
4010
  "Sent some time after listing expiration and when no renewal has occurred. "
4011
  "Applies to both recurring and non-recurring renewals."
4012
  msgstr ""
4013
 
4014
- #: core/class-settings.php:529
4015
  msgctxt "admin settings"
4016
  msgid "Payment"
4017
  msgstr ""
4018
 
4019
- #: core/class-settings.php:530
4020
  msgctxt "admin settings"
4021
  msgid "Payment Settings"
4022
  msgstr ""
4023
 
4024
- #: core/class-settings.php:533
4025
  msgctxt "admin settings"
4026
  msgid "Turn On payments?"
4027
  msgstr ""
4028
 
4029
- #: core/class-settings.php:535
4030
  msgctxt "admin settings"
4031
  msgid "Put payment gateways in test mode?"
4032
  msgstr ""
4033
 
4034
- #: core/class-settings.php:540
4035
  msgctxt "admin settings"
4036
  msgid "Perform checkouts on the secure (HTTPS) version of your site?"
4037
  msgstr ""
4038
 
4039
- #: core/class-settings.php:543
4040
  msgctxt "admin settings"
4041
  msgid ""
4042
  "Recommended for added security. For this to work you need to enable HTTPS on "
4043
  "your server and <a>obtain an SSL certificate</a>."
4044
  msgstr ""
4045
 
4046
- #: core/class-settings.php:547
4047
  msgctxt "admin settings"
4048
  msgid "Currency Code"
4049
  msgstr ""
4050
 
4051
- #: core/class-settings.php:549
4052
  msgctxt "admin settings"
4053
  msgid "Australian Dollar (AUD)"
4054
  msgstr ""
4055
 
4056
- #: core/class-settings.php:550
4057
  msgctxt "admin settings"
4058
  msgid "Brazilian Real (BRL)"
4059
  msgstr ""
4060
 
4061
- #: core/class-settings.php:551
4062
  msgctxt "admin settings"
4063
  msgid "Canadian Dollar (CAD)"
4064
  msgstr ""
4065
 
4066
- #: core/class-settings.php:552
4067
  msgctxt "admin settings"
4068
  msgid "Czech Koruna (CZK)"
4069
  msgstr ""
4070
 
4071
- #: core/class-settings.php:553
4072
  msgctxt "admin settings"
4073
  msgid "Danish Krone (DKK)"
4074
  msgstr ""
4075
 
4076
- #: core/class-settings.php:554
4077
  msgctxt "admin settings"
4078
  msgid "Euro (EUR)"
4079
  msgstr ""
4080
 
4081
- #: core/class-settings.php:555
4082
  msgctxt "admin settings"
4083
  msgid "Hong Kong Dollar (HKD)"
4084
  msgstr ""
4085
 
4086
- #: core/class-settings.php:556
4087
  msgctxt "admin settings"
4088
  msgid "Hungarian Forint (HUF)"
4089
  msgstr ""
4090
 
4091
- #: core/class-settings.php:557
4092
  msgctxt "admin settings"
4093
  msgid "Israeli New Shequel (ILS)"
4094
  msgstr ""
4095
 
4096
- #: core/class-settings.php:558
4097
  msgctxt "admin settings"
4098
  msgid "Japanese Yen (JPY)"
4099
  msgstr ""
4100
 
4101
- #: core/class-settings.php:559
4102
  msgctxt "admin settings"
4103
  msgid "Malasian Ringgit (MYR)"
4104
  msgstr ""
4105
 
4106
- #: core/class-settings.php:560
4107
  msgctxt "admin settings"
4108
  msgid "Mexican Peso (MXN)"
4109
  msgstr ""
4110
 
4111
- #: core/class-settings.php:561
4112
  msgctxt "admin settings"
4113
  msgid "Norwegian Krone (NOK)"
4114
  msgstr ""
4115
 
4116
- #: core/class-settings.php:562
4117
  msgctxt "admin settings"
4118
  msgid "New Zealand Dollar (NZD)"
4119
  msgstr ""
4120
 
4121
- #: core/class-settings.php:563
4122
  msgctxt "admin settings"
4123
  msgid "Philippine Peso (PHP)"
4124
  msgstr ""
4125
 
4126
- #: core/class-settings.php:564
4127
  msgctxt "admin settings"
4128
  msgid "Polish Zloty (PLN)"
4129
  msgstr ""
4130
 
4131
- #: core/class-settings.php:565
4132
  msgctxt "admin settings"
4133
  msgid "Pound Sterling (GBP)"
4134
  msgstr ""
4135
 
4136
- #: core/class-settings.php:566
4137
  msgctxt "admin settings"
4138
  msgid "Singapore Dollar (SGD)"
4139
  msgstr ""
4140
 
4141
- #: core/class-settings.php:567
4142
  msgctxt "admin settings"
4143
  msgid "Swedish Krona (SEK)"
4144
  msgstr ""
4145
 
4146
- #: core/class-settings.php:568
4147
  msgctxt "admin settings"
4148
  msgid "Swiss Franc (CHF)"
4149
  msgstr ""
4150
 
4151
- #: core/class-settings.php:569
4152
  msgctxt "admin settings"
4153
  msgid "Taiwan Dollar (TWD)"
4154
  msgstr ""
4155
 
4156
- #: core/class-settings.php:570
4157
  msgctxt "admin settings"
4158
  msgid "Thai Baht (THB)"
4159
  msgstr ""
4160
 
4161
- #: core/class-settings.php:571
4162
  msgctxt "admin settings"
4163
  msgid "Turkish Lira (TRY)"
4164
  msgstr ""
4165
 
4166
- #: core/class-settings.php:572
4167
  msgctxt "admin settings"
4168
  msgid "U.S. Dollar (USD)"
4169
  msgstr ""
4170
 
4171
- #: core/class-settings.php:576
4172
  msgctxt "admin settings"
4173
  msgid "Currency Symbol"
4174
  msgstr ""
4175
 
4176
- #: core/class-settings.php:581
4177
  msgctxt "admin settings"
4178
  msgid "Currency symbol display"
4179
  msgstr ""
4180
 
4181
- #: core/class-settings.php:585
4182
  msgctxt "admin settings"
4183
  msgid "Show currency symbol on the left"
4184
  msgstr ""
4185
 
4186
- #: core/class-settings.php:586
4187
  msgctxt "admin settings"
4188
  msgid "Show currency symbol on the right"
4189
  msgstr ""
4190
 
4191
- #: core/class-settings.php:587
4192
  msgctxt "admin settings"
4193
  msgid "Do not show currency symbol"
4194
  msgstr ""
4195
 
4196
- #: core/class-settings.php:589
4197
  msgctxt "admin settings"
4198
  msgid "Thank you for payment message"
4199
  msgstr ""
4200
 
4201
- #: core/class-settings.php:590
4202
  msgctxt "admin settings"
4203
  msgid ""
4204
  "Thank you for your payment. Your payment is being verified and your listing "
4205
  "reviewed. The verification and review process could take up to 48 hours."
4206
  msgstr ""
4207
 
4208
- #: core/class-settings.php:595
4209
  msgctxt "admin settings"
4210
  msgid "Ask users to come back for abandoned payments?"
4211
  msgstr ""
4212
 
4213
- #: core/class-settings.php:598
4214
  msgctxt "admin settings"
4215
  msgid ""
4216
  "An abandoned payment is when a user attempts to place a listing and gets to "
@@ -4219,49 +4246,49 @@ msgid ""
4219
  "the transaction. BD can remind them to come back and continue."
4220
  msgstr ""
4221
 
4222
- #: core/class-settings.php:604
4223
  msgctxt "admin settings"
4224
  msgid "Listing abandonment threshold (hours)"
4225
  msgstr ""
4226
 
4227
- #: core/class-settings.php:609
4228
  msgctxt "admin settings"
4229
  msgid ""
4230
  "Listings with pending payments are marked as abandoned after this time. You "
4231
  "can also <a>customize the e-mail</a> users receive."
4232
  msgstr ""
4233
 
4234
- #: core/class-settings.php:614
4235
  msgctxt "admin settings"
4236
  msgid "Themes"
4237
  msgstr ""
4238
 
4239
- #: core/class-settings.php:616
4240
  msgctxt "admin settings"
4241
  msgid "You can manage your themes on <a>Directory Themes</a>."
4242
  msgstr ""
4243
 
4244
- #: core/class-settings.php:621
4245
  msgctxt "admin settings"
4246
  msgid "Theme button style"
4247
  msgstr ""
4248
 
4249
- #: core/class-settings.php:625
4250
  msgctxt "admin settings"
4251
  msgid "Use the BD theme style for BD buttons"
4252
  msgstr ""
4253
 
4254
- #: core/class-settings.php:626
4255
  msgctxt "admin settings"
4256
  msgid "Use the WP theme style for BD buttons"
4257
  msgstr ""
4258
 
4259
- #: core/class-settings.php:633
4260
  msgctxt "admin settings"
4261
  msgid "Image"
4262
  msgstr ""
4263
 
4264
- #: core/class-settings.php:634
4265
  msgctxt "admin settings"
4266
  msgid ""
4267
  "Any changes to these settings will affect new listings only. Existing "
@@ -4270,78 +4297,78 @@ msgid ""
4270
  "here."
4271
  msgstr ""
4272
 
4273
- #: core/class-settings.php:635
4274
  msgctxt "admin settings"
4275
  msgid "Image Settings"
4276
  msgstr ""
4277
 
4278
- #: core/class-settings.php:636
4279
  msgctxt "admin settings"
4280
  msgid "Allow images?"
4281
  msgstr ""
4282
 
4283
- #: core/class-settings.php:638
4284
  msgctxt "admin settings"
4285
  msgid "Min Image File Size (KB)"
4286
  msgstr ""
4287
 
4288
- #: core/class-settings.php:639
4289
  msgctxt "admin settings"
4290
  msgid "Max Image File Size (KB)"
4291
  msgstr ""
4292
 
4293
- #: core/class-settings.php:641
4294
  msgctxt "admin settings"
4295
  msgid "Min image width (px)"
4296
  msgstr ""
4297
 
4298
- #: core/class-settings.php:642
4299
  msgctxt "admin settings"
4300
  msgid "Min image height (px)"
4301
  msgstr ""
4302
 
4303
- #: core/class-settings.php:644
4304
  msgctxt "admin settings"
4305
  msgid "Max image width (px)"
4306
  msgstr ""
4307
 
4308
- #: core/class-settings.php:645
4309
  msgctxt "admin settings"
4310
  msgid "Max image height (px)"
4311
  msgstr ""
4312
 
4313
- #: core/class-settings.php:647
4314
  msgctxt "admin settings"
4315
  msgid "Turn on thickbox/lightbox?"
4316
  msgstr ""
4317
 
4318
- #: core/class-settings.php:647
4319
  msgctxt "admin settings"
4320
  msgid ""
4321
  "Uncheck if it conflicts with other elements or plugins installed on your site"
4322
  msgstr ""
4323
 
4324
- #: core/class-settings.php:649
4325
  msgctxt "admin settings"
4326
  msgid "Thumbnails"
4327
  msgstr ""
4328
 
4329
- #: core/class-settings.php:650
4330
  msgctxt "admin settings"
4331
  msgid "Thumbnail width (px)"
4332
  msgstr ""
4333
 
4334
- #: core/class-settings.php:651
4335
  msgctxt "admin settings"
4336
  msgid "Thumbnail height (px)"
4337
  msgstr ""
4338
 
4339
- #: core/class-settings.php:654
4340
  msgctxt "admin settings"
4341
  msgid "Crop thumbnails to exact dimensions?"
4342
  msgstr ""
4343
 
4344
- #: core/class-settings.php:657
4345
  msgctxt "admin settings"
4346
  msgid ""
4347
  "When enabled images will match exactly the dimensions above but part of the "
@@ -4350,150 +4377,150 @@ msgid ""
4350
  "Depending on the uploaded images, thumbnails may have different heights."
4351
  msgstr ""
4352
 
4353
- #: core/class-settings.php:663
4354
  msgctxt "admin settings"
4355
  msgid "Number of free images"
4356
  msgstr ""
4357
 
4358
- #: core/class-settings.php:668
4359
  msgctxt "admin settings"
4360
  msgid ""
4361
  "For paid listing images, configure that by adding or editing a <a>Fee Plan</"
4362
  "a> instead of this setting, which is ignored for paid listings."
4363
  msgstr ""
4364
 
4365
- #: core/class-settings.php:671
4366
  msgctxt "admin settings"
4367
  msgid "Use default picture for listings with no picture?"
4368
  msgstr ""
4369
 
4370
- #: core/class-settings.php:672
4371
  msgctxt "admin settings"
4372
  msgid "Show Thumbnail on main listings page?"
4373
  msgstr ""
4374
 
4375
- #: core/class-settings.php:701
4376
  msgctxt "admin settings"
4377
  msgid "User"
4378
  msgstr ""
4379
 
4380
- #: core/class-settings.php:702
4381
  msgctxt "admin settings"
4382
  msgid "User registration date"
4383
  msgstr ""
4384
 
4385
- #: core/class-settings.php:728
4386
  msgctxt "admin settings"
4387
  msgid ""
4388
  "Could not copy the AJAX compatibility plugin \"%s\". Compatibility mode was "
4389
  "not activated."
4390
  msgstr ""
4391
 
4392
- #: core/class-settings.php:736
4393
  msgctxt "admin settings"
4394
  msgid ""
4395
  "Could not activate AJAX Compatibility mode: the directory \"%s\" could not "
4396
  "be created."
4397
  msgstr ""
4398
 
4399
- #: core/class-settings.php:745
4400
  msgctxt "admin settings"
4401
  msgid ""
4402
  "Could not remove the \"Business Directory Plugin - AJAX Compatibility Module"
4403
  "\". Please remove the file \"%s\" manually or deactivate the plugin."
4404
  msgstr ""
4405
 
4406
- #: core/class-settings.php:1065
4407
  msgctxt "settings"
4408
  msgid "Deactivate License"
4409
  msgstr ""
4410
 
4411
- #: core/class-settings.php:1067
4412
  msgctxt "settings"
4413
  msgid "Deactivating license..."
4414
  msgstr ""
4415
 
4416
- #: core/class-settings.php:1070
4417
  msgctxt "settings"
4418
  msgid "Activate License"
4419
  msgstr ""
4420
 
4421
- #: core/class-settings.php:1072
4422
  msgctxt "settings"
4423
  msgid "Activating license..."
4424
  msgstr ""
4425
 
4426
- #: core/class-settings.php:1095
4427
  msgctxt "admin settings"
4428
  msgid "Valid placeholders: %s"
4429
  msgstr ""
4430
 
4431
- #: core/class-settings.php:1129
4432
  msgctxt "settings email"
4433
  msgid "Click to edit e-mail"
4434
  msgstr ""
4435
 
4436
- #: core/class-settings.php:1130
4437
  msgctxt "settings email"
4438
  msgid "Click to edit"
4439
  msgstr ""
4440
 
4441
- #: core/class-settings.php:1143
4442
  msgctxt "settings email"
4443
  msgid "E-Mail Subject"
4444
  msgstr ""
4445
 
4446
- #: core/class-settings.php:1154
4447
  msgctxt "settings email"
4448
  msgid "E-Mail Body"
4449
  msgstr ""
4450
 
4451
- #: core/class-settings.php:1165
4452
  msgctxt "settings email"
4453
  msgid "You can use the following placeholders:"
4454
  msgstr ""
4455
 
4456
- #: core/class-settings.php:1188
4457
  msgctxt "settings email"
4458
  msgid "Preview e-mail"
4459
  msgstr ""
4460
 
4461
- #: core/class-settings.php:1189
4462
  msgctxt "settings email"
4463
  msgid "Cancel"
4464
  msgstr ""
4465
 
4466
- #: core/class-settings.php:1190
4467
  msgctxt "settings email"
4468
  msgid "Save Changes"
4469
  msgstr ""
4470
 
4471
- #: core/class-settings.php:1209
4472
  msgctxt "settings email"
4473
  msgid "Site title"
4474
  msgstr ""
4475
 
4476
- #: core/class-settings.php:1212
4477
  msgctxt "settings email"
4478
  msgid "Site title (with link)"
4479
  msgstr ""
4480
 
4481
- #: core/class-settings.php:1215
4482
  msgctxt "settings email"
4483
  msgid "Site address (with link)"
4484
  msgstr ""
4485
 
4486
- #: core/class-settings.php:1218
4487
  msgctxt "settings email"
4488
  msgid "Directory URL (with link)"
4489
  msgstr ""
4490
 
4491
- #: core/class-settings.php:1221
4492
  msgctxt "settings email"
4493
  msgid "Current date"
4494
  msgstr ""
4495
 
4496
- #: core/class-settings.php:1224
4497
  msgctxt "settings email"
4498
  msgid "Current time"
4499
  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-07-06 14:03:56+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"
2094
  msgid "Please see the <a>Form Fields documentation</a> for more details."
2095
  msgstr ""
2096
 
2097
+ #. #-#-#-#-# WPBDM.pot (Business Directory Plugin 4.0.8) #-#-#-#-#
2098
  #. Plugin Name of the plugin/theme
2099
  #: admin/templates/header.tpl.php:4
2100
  msgid "Business Directory Plugin"
3227
  msgid "Display and require user agreement to Terms and Conditions"
3228
  msgstr ""
3229
 
3230
+ #: core/class-settings.php:106
3231
+ msgctxt "admin settings"
3232
+ msgid ""
3233
+ "Terms and Conditions text goes here...\n"
3234
+ "\n"
3235
+ msgstr ""
3236
+
3237
  #: core/class-settings.php:107
3238
  msgctxt "admin settings"
3239
  msgid ""
3355
  msgid "Enable AJAX compatibility mode?"
3356
  msgstr ""
3357
 
3358
+ #: core/class-settings.php:179 core/class-settings.php:658
3359
  msgctxt "admin settings"
3360
  msgid "Listings"
3361
  msgstr ""
3362
 
3363
+ #: core/class-settings.php:180 core/class-settings.php:328
3364
+ #: core/class-settings.php:615
3365
  msgctxt "admin settings"
3366
  msgid "General Settings"
3367
  msgstr ""
3441
  msgid "Status of listings upon uninstalling plugin"
3442
  msgstr ""
3443
 
3444
+ #: core/class-settings.php:219 core/class-settings.php:221
3445
+ msgctxt "post status"
3446
+ msgid "Draft"
3447
+ msgstr ""
3448
+
3449
+ #: core/class-settings.php:219 core/class-settings.php:221
3450
+ msgctxt "post status"
3451
+ msgid "Trash"
3452
+ msgstr ""
3453
+
3454
  #: core/class-settings.php:220
3455
  msgctxt "admin settings"
3456
  msgid "Status of deleted listings"
3457
  msgstr ""
3458
 
3459
+ #: core/class-settings.php:222
3460
  msgctxt "admin settings"
3461
  msgid "Submit Listing instructions message"
3462
  msgstr ""
3463
 
3464
+ #: core/class-settings.php:222
3465
  msgctxt "admin settings"
3466
  msgid ""
3467
  "This text is displayed at the first page of the Submit Listing process for "
3469
  "form or anything you want to tell users before they get started."
3470
  msgstr ""
3471
 
3472
+ #: core/class-settings.php:224
3473
  msgctxt "admin settings"
3474
  msgid "Listing Renewal"
3475
  msgstr ""
3476
 
3477
+ #: core/class-settings.php:225
3478
  msgctxt "admin settings"
3479
  msgid "Turn on listing renewal option?"
3480
  msgstr ""
3481
 
3482
+ #: core/class-settings.php:228
3483
  msgctxt "admin settings"
3484
  msgid "Allow recurring renewal payments?"
3485
  msgstr ""
3486
 
3487
+ #: core/class-settings.php:231
3488
  msgctxt "admin settings"
3489
  msgid ""
3490
  "Allow users to opt in for automatic renewal of their listings. The fee is "
3491
  "charged at the time the listing expires without user intervention."
3492
  msgstr ""
3493
 
3494
+ #: core/class-settings.php:235
3495
  msgctxt "admin settings"
3496
  msgid "Use recurring payments as the default payment method?"
3497
  msgstr ""
3498
 
3499
+ #: core/class-settings.php:238
3500
  msgctxt "admin settings"
3501
  msgid ""
3502
  "Enable automatic renewal without having users opt in during the submit "
3503
  "process."
3504
  msgstr ""
3505
 
3506
+ #: core/class-settings.php:243
3507
  msgctxt "admin settings"
3508
  msgid "Listing renewal e-mail threshold (in days)"
3509
  msgstr ""
3510
 
3511
+ #: core/class-settings.php:246
3512
  msgctxt "admin settings"
3513
  msgid ""
3514
  "Configure how many days before listing expiration is the renewal e-mail sent."
3515
  msgstr ""
3516
 
3517
+ #: core/class-settings.php:250
3518
  msgctxt "admin settings"
3519
  msgid ""
3520
  "Send expiration notices including a cancel links to auto-renewed listings?"
3521
  msgstr ""
3522
 
3523
+ #: core/class-settings.php:257
3524
  msgctxt "admin settings"
3525
  msgid "Remind listing owners of expired listings (past due)?"
3526
  msgstr ""
3527
 
3528
+ #: core/class-settings.php:262
3529
  msgctxt "admin settings"
3530
  msgid "Listing renewal reminder e-mail threshold (in days)"
3531
  msgstr ""
3532
 
3533
+ #: core/class-settings.php:265
3534
  msgctxt "admin settings"
3535
  msgid ""
3536
  "Configure how many days after the expiration of a listing an e-mail reminder "
3537
  "should be sent to the owner."
3538
  msgstr ""
3539
 
3540
+ #: core/class-settings.php:268
3541
  msgctxt "admin settings"
3542
  msgid "Post/Category Settings"
3543
  msgstr ""
3544
 
3545
+ #: core/class-settings.php:269
3546
  msgctxt "admin settings"
3547
  msgid "Default new post status"
3548
  msgstr ""
3549
 
3550
+ #: core/class-settings.php:270 core/class-settings.php:273
3551
+ msgctxt "post status"
3552
+ msgid "Published"
3553
+ msgstr ""
3554
+
3555
+ #: core/class-settings.php:270 core/class-settings.php:273
3556
+ msgctxt "post status"
3557
+ msgid "Pending"
3558
+ msgstr ""
3559
+
3560
+ #: core/class-settings.php:272
3561
  msgctxt "admin settings"
3562
  msgid "Edit post status"
3563
  msgstr ""
3564
 
3565
+ #: core/class-settings.php:274
3566
  msgctxt "admin settings"
3567
  msgid "Order categories list by"
3568
  msgstr ""
3569
 
3570
+ #: core/class-settings.php:276
3571
  msgctxt "admin settings"
3572
  msgid "Name"
3573
  msgstr ""
3574
 
3575
+ #: core/class-settings.php:277
3576
  msgctxt "admin settings"
3577
  msgid "Slug"
3578
  msgstr ""
3579
 
3580
+ #: core/class-settings.php:278
3581
  msgctxt "admin settings"
3582
  msgid "Listing Count"
3583
  msgstr ""
3584
 
3585
+ #: core/class-settings.php:280
3586
  msgctxt "admin settings"
3587
  msgid "Sort order for categories"
3588
  msgstr ""
3589
 
3590
+ #: core/class-settings.php:281 core/class-settings.php:299
3591
  msgctxt "admin settings"
3592
  msgid "Ascending"
3593
  msgstr ""
3594
 
3595
+ #: core/class-settings.php:281 core/class-settings.php:299
3596
  msgctxt "admin settings"
3597
  msgid "Descending"
3598
  msgstr ""
3599
 
3600
+ #: core/class-settings.php:282
3601
  msgctxt "admin settings"
3602
  msgid "Show category post count?"
3603
  msgstr ""
3604
 
3605
+ #: core/class-settings.php:283
3606
  msgctxt "admin settings"
3607
  msgid "Hide empty categories?"
3608
  msgstr ""
3609
 
3610
+ #: core/class-settings.php:284
3611
  msgctxt "admin settings"
3612
  msgid "Show only parent categories in category list?"
3613
  msgstr ""
3614
 
3615
+ #: core/class-settings.php:286
3616
  msgctxt "admin settings"
3617
  msgid "Listings Sorting"
3618
  msgstr ""
3619
 
3620
+ #: core/class-settings.php:287
3621
  msgctxt "admin settings"
3622
  msgid "Order directory listings by"
3623
  msgstr ""
3624
 
3625
+ #: core/class-settings.php:289
3626
  msgctxt "admin settings"
3627
  msgid "Title"
3628
  msgstr ""
3629
 
3630
+ #: core/class-settings.php:290
3631
  msgctxt "admin settings"
3632
  msgid "Author"
3633
  msgstr ""
3634
 
3635
+ #: core/class-settings.php:291 core/class-settings.php:701
3636
  msgctxt "admin settings"
3637
  msgid "Date posted"
3638
  msgstr ""
3639
 
3640
+ #: core/class-settings.php:292 core/class-settings.php:702
3641
  msgctxt "admin settings"
3642
  msgid "Date last modified"
3643
  msgstr ""
3644
 
3645
+ #: core/class-settings.php:293
3646
  msgctxt "admin settings"
3647
  msgid "Random"
3648
  msgstr ""
3649
 
3650
+ #: core/class-settings.php:294
3651
  msgctxt "admin settings"
3652
  msgid "Paid first then free. Inside each group by date."
3653
  msgstr ""
3654
 
3655
+ #: core/class-settings.php:295
3656
  msgctxt "admin settings"
3657
  msgid "Paid first then free. Inside each group by title."
3658
  msgstr ""
3659
 
3660
+ #: core/class-settings.php:297
3661
  msgctxt "admin settings"
3662
  msgid "Sort directory listings by"
3663
  msgstr ""
3664
 
3665
+ #: core/class-settings.php:298
3666
  msgctxt "admin settings"
3667
  msgid "Ascending for ascending order A-Z, Descending for descending order Z-A"
3668
  msgstr ""
3669
 
3670
+ #: core/class-settings.php:303
3671
  msgctxt "admin settings"
3672
  msgid "Enable sort bar?"
3673
  msgstr ""
3674
 
3675
+ #: core/class-settings.php:308
3676
  msgctxt "admin settings"
3677
  msgid "Sortbar Fields"
3678
  msgstr ""
3679
 
3680
+ #: core/class-settings.php:317
3681
  msgctxt "admin settings"
3682
  msgid "Featured (Sticky) listing settings"
3683
  msgstr ""
3684
 
3685
+ #: core/class-settings.php:318
3686
  msgctxt "admin settings"
3687
  msgid "Offer sticky listings?"
3688
  msgstr ""
3689
 
3690
+ #: core/class-settings.php:319
3691
  msgctxt "admin settings"
3692
  msgid "Offer upgrades during submit process?"
3693
  msgstr ""
3694
 
3695
+ #: core/class-settings.php:320
3696
  msgctxt "admin settings"
3697
  msgid "Sticky listing price"
3698
  msgstr ""
3699
 
3700
+ #: core/class-settings.php:321
3701
  msgctxt "admin settings"
3702
  msgid "Sticky listing page description text"
3703
  msgstr ""
3704
 
3705
+ #: core/class-settings.php:322
3706
  msgctxt "admin settings"
3707
  msgid ""
3708
  "You can upgrade your listing to featured status. Featured listings will "
3709
  "always appear on top of regular listings."
3710
  msgstr ""
3711
 
3712
+ #: core/class-settings.php:327
3713
  msgctxt "admin settings"
3714
  msgid "E-Mail"
3715
  msgstr ""
3716
 
3717
+ #: core/class-settings.php:331
3718
  msgctxt "admin settings"
3719
  msgid "Display email address fields publicly?"
3720
  msgstr ""
3721
 
3722
+ #: core/class-settings.php:334
3723
  msgctxt "admin settings"
3724
  msgid ""
3725
  "Shows the email address of the listing owner to all web users. NOT "
3727
  "harvest it for future use."
3728
  msgstr ""
3729
 
3730
+ #: core/class-settings.php:337
3731
  msgctxt "admin settings"
3732
  msgid "How to determine the listing's email address?"
3733
  msgstr ""
3734
 
3735
+ #: core/class-settings.php:340
3736
  msgctxt "admin settings"
3737
  msgid ""
3738
  "This affects emails sent to listing owners via contact forms or when their "
3739
  "listings expire."
3740
  msgstr ""
3741
 
3742
+ #: core/class-settings.php:342
3743
  msgctxt "admin settings"
3744
  msgid "Try listing's email field first, then author's email."
3745
  msgstr ""
3746
 
3747
+ #: core/class-settings.php:343
3748
  msgctxt "admin settings"
3749
  msgid "Try author's email first and then listing's email field."
3750
  msgstr ""
3751
 
3752
+ #: core/class-settings.php:347
3753
  msgctxt "admin settings"
3754
  msgid "E-Mail Notifications"
3755
  msgstr ""
3756
 
3757
+ #: core/class-settings.php:350
3758
  msgctxt "admin settings"
3759
  msgid "Notify admin via e-mail when..."
3760
  msgstr ""
3761
 
3762
+ #: core/class-settings.php:354
3763
  msgctxt "admin settings"
3764
  msgid "A new listing is submitted."
3765
  msgstr ""
3766
 
3767
+ #: core/class-settings.php:355
3768
  msgctxt "admin settings"
3769
  msgid "A listing is edited."
3770
  msgstr ""
3771
 
3772
+ #: core/class-settings.php:356
3773
  msgctxt "admin settings"
3774
  msgid "A listing expires."
3775
  msgstr ""
3776
 
3777
+ #: core/class-settings.php:357
3778
  msgctxt "admin settings"
3779
  msgid "A contact message is sent to a listing's owner."
3780
  msgstr ""
3781
 
3782
+ #: core/class-settings.php:363
3783
  msgctxt "admin settings"
3784
  msgid "CC this e-mail address too"
3785
  msgstr ""
3786
 
3787
+ #: core/class-settings.php:369
3788
  msgctxt "admin settings"
3789
  msgid "Notify users via e-mail when..."
3790
  msgstr ""
3791
 
3792
+ #: core/class-settings.php:372
3793
  msgctxt "admin settings"
3794
  msgid "You can modify the text template used for most of these e-mails below."
3795
  msgstr ""
3796
 
3797
+ #: core/class-settings.php:373
3798
  msgctxt "admin settings"
3799
  msgid "Their listing is submitted."
3800
  msgstr ""
3801
 
3802
+ #: core/class-settings.php:374
3803
  msgctxt "admin settings"
3804
  msgid "Their listing is approved/published."
3805
  msgstr ""
3806
 
3807
+ #: core/class-settings.php:383
3808
  msgctxt "contact email"
3809
  msgid "You have received a reply from your listing at %s."
3810
  msgstr ""
3811
 
3812
+ #: core/class-settings.php:384
3813
  msgctxt "contact email"
3814
  msgid "Name: %s"
3815
  msgstr ""
3816
 
3817
+ #: core/class-settings.php:385
3818
  msgctxt "contact email"
3819
  msgid "E-Mail: %s"
3820
  msgstr ""
3821
 
3822
+ #: core/class-settings.php:386
3823
  msgctxt "contact email"
3824
  msgid "Message:"
3825
  msgstr ""
3826
 
3827
+ #: core/class-settings.php:388
3828
  msgctxt "contact email"
3829
  msgid "Time: %s"
3830
  msgstr ""
3831
 
3832
+ #: core/class-settings.php:390
3833
  msgctxt "admin settings"
3834
  msgid "E-Mail Templates"
3835
  msgstr ""
3836
 
3837
+ #: core/class-settings.php:393
3838
  msgctxt "admin settings"
3839
  msgid "Email confirmation message"
3840
  msgstr ""
3841
 
3842
+ #: core/class-settings.php:397
3843
  msgctxt "admin settings"
3844
  msgid "Sent after a listing has been submitted."
3845
  msgstr ""
3846
 
3847
+ #: core/class-settings.php:398 core/class-settings.php:406
3848
+ #: core/class-settings.php:447
3849
  msgctxt "admin settings"
3850
  msgid "Listing's title"
3851
  msgstr ""
3852
 
3853
+ #: core/class-settings.php:401
3854
  msgctxt "admin settings"
3855
  msgid "Listing published message"
3856
  msgstr ""
3857
 
3858
+ #: core/class-settings.php:404
3859
  msgctxt "admin settings"
3860
  msgid ""
3861
  "Your listing \"[listing]\" is now available at [listing-url] and can be "
3862
  "viewed by the public."
3863
  msgstr ""
3864
 
3865
+ #: core/class-settings.php:405
3866
  msgctxt "admin settings"
3867
  msgid "Sent when the listing has been published or approved by an admin."
3868
  msgstr ""
3869
 
3870
+ #: core/class-settings.php:407
3871
  msgctxt "admin settings"
3872
  msgid "Listing's URL"
3873
  msgstr ""
3874
 
3875
+ #: core/class-settings.php:411
3876
  msgctxt "admin settings"
3877
  msgid "Listing Contact Message"
3878
  msgstr ""
3879
 
3880
+ #: core/class-settings.php:415
3881
  msgctxt "admin settings"
3882
  msgid ""
3883
  "Sent to listing owners when someone uses the contact form on their listing "
3884
  "pages."
3885
  msgstr ""
3886
 
3887
+ #: core/class-settings.php:425
3888
  msgctxt "admin settings"
3889
  msgid "Payment related"
3890
  msgstr ""
3891
 
3892
+ #: core/class-settings.php:442
3893
  msgctxt "admin settings"
3894
  msgid "Payment abandoned reminder message"
3895
  msgstr ""
3896
 
3897
+ #: core/class-settings.php:446
3898
  msgctxt "admin settings"
3899
  msgid "Sent some time after a pending payment is abandoned by users."
3900
  msgstr ""
3901
 
3902
+ #: core/class-settings.php:448
3903
  msgctxt "admin settings"
3904
  msgid "Checkout URL link"
3905
  msgstr ""
3906
 
3907
+ #: core/class-settings.php:454
3908
  msgctxt "admin settings"
3909
  msgid "Renewal Reminders"
3910
  msgstr ""
3911
 
3912
+ #: core/class-settings.php:457
3913
  msgctxt "admin settings"
3914
  msgid ""
3915
  "This section refers only to the text of the renewal/expiration notices. You "
3916
  "can also <a>configure when the e-mails are sent</a>."
3917
  msgstr ""
3918
 
3919
+ #: core/class-settings.php:461
3920
  msgctxt "admin settings"
3921
  msgid "Pending expiration e-mail message"
3922
  msgstr ""
3923
 
3924
+ #: core/class-settings.php:465
3925
  msgctxt "settings"
3926
  msgid ""
3927
  "Sent some time before the listing expires. Applies to non-recurring renewals "
3928
  "only."
3929
  msgstr ""
3930
 
3931
+ #: core/class-settings.php:466 core/class-settings.php:479
3932
+ #: core/class-settings.php:492 core/class-settings.php:505
3933
+ #: core/class-settings.php:518
3934
  msgctxt "settings"
3935
  msgid "Listing's name (with link)"
3936
  msgstr ""
3937
 
3938
+ #: core/class-settings.php:467 core/class-settings.php:480
3939
+ #: core/class-settings.php:493 core/class-settings.php:506
3940
+ #: core/class-settings.php:519
3941
  msgctxt "settings"
3942
  msgid "Author's name"
3943
  msgstr ""
3944
 
3945
+ #: core/class-settings.php:468 core/class-settings.php:481
3946
+ #: core/class-settings.php:520
3947
  msgctxt "settings"
3948
  msgid "Expiration date"
3949
  msgstr ""
3950
 
3951
+ #: core/class-settings.php:469
3952
  msgctxt "settings"
3953
  msgid "Category that is going to expire"
3954
  msgstr ""
3955
 
3956
+ #: core/class-settings.php:470 core/class-settings.php:483
3957
+ #: core/class-settings.php:522
3958
  msgctxt "settings"
3959
  msgid "Link to renewal page"
3960
  msgstr ""
3961
 
3962
+ #: core/class-settings.php:471 core/class-settings.php:484
3963
+ #: core/class-settings.php:496 core/class-settings.php:509
3964
+ #: core/class-settings.php:523
3965
  msgctxt "settings"
3966
  msgid "Link to your site"
3967
  msgstr ""
3968
 
3969
+ #: core/class-settings.php:474
3970
  msgctxt "admin settings"
3971
  msgid "Listing Renewal e-mail message"
3972
  msgstr ""
3973
 
3974
+ #: core/class-settings.php:478
3975
  msgctxt "settings"
3976
  msgid ""
3977
  "Sent at the time of listing expiration. Applies to non-recurring renewals "
3978
  "only."
3979
  msgstr ""
3980
 
3981
+ #: core/class-settings.php:482 core/class-settings.php:521
3982
  msgctxt "settings"
3983
  msgid "Category that expired"
3984
  msgstr ""
3985
 
3986
+ #: core/class-settings.php:487
3987
  msgctxt "admin settings"
3988
  msgid "Listing auto-renewal reminder (recurring payments)"
3989
  msgstr ""
3990
 
3991
+ #: core/class-settings.php:491
3992
  msgctxt "settings"
3993
  msgid ""
3994
  "Sent some time before the listing is auto-renewed. Applies to recurring "
3995
  "renewals only."
3996
  msgstr ""
3997
 
3998
+ #: core/class-settings.php:494 core/class-settings.php:508
3999
  msgctxt "settings"
4000
  msgid "Renewal date"
4001
  msgstr ""
4002
 
4003
+ #: core/class-settings.php:495
4004
  msgctxt "settings"
4005
  msgid "Category that is going to be renewed"
4006
  msgstr ""
4007
 
4008
+ #: core/class-settings.php:497
4009
  msgctxt "settings"
4010
  msgid "Link to manage subscriptions"
4011
  msgstr ""
4012
 
4013
+ #: core/class-settings.php:500
4014
  msgctxt "admin settings"
4015
  msgid "Listing Renewal e-mail message (recurring payments)"
4016
  msgstr ""
4017
 
4018
+ #: core/class-settings.php:504
4019
  msgctxt "settings"
4020
  msgid ""
4021
  "Sent after the listing is auto-renewed. Applies to recurring renewals only."
4022
  msgstr ""
4023
 
4024
+ #: core/class-settings.php:507
4025
  msgctxt "settings"
4026
  msgid "Renewed category"
4027
  msgstr ""
4028
 
4029
+ #: core/class-settings.php:513
4030
  msgctxt "admin settings"
4031
  msgid "Renewal reminder e-mail message"
4032
  msgstr ""
4033
 
4034
+ #: core/class-settings.php:517
4035
  msgctxt "settings"
4036
  msgid ""
4037
  "Sent some time after listing expiration and when no renewal has occurred. "
4038
  "Applies to both recurring and non-recurring renewals."
4039
  msgstr ""
4040
 
4041
+ #: core/class-settings.php:527
4042
  msgctxt "admin settings"
4043
  msgid "Payment"
4044
  msgstr ""
4045
 
4046
+ #: core/class-settings.php:528
4047
  msgctxt "admin settings"
4048
  msgid "Payment Settings"
4049
  msgstr ""
4050
 
4051
+ #: core/class-settings.php:531
4052
  msgctxt "admin settings"
4053
  msgid "Turn On payments?"
4054
  msgstr ""
4055
 
4056
+ #: core/class-settings.php:533
4057
  msgctxt "admin settings"
4058
  msgid "Put payment gateways in test mode?"
4059
  msgstr ""
4060
 
4061
+ #: core/class-settings.php:538
4062
  msgctxt "admin settings"
4063
  msgid "Perform checkouts on the secure (HTTPS) version of your site?"
4064
  msgstr ""
4065
 
4066
+ #: core/class-settings.php:541
4067
  msgctxt "admin settings"
4068
  msgid ""
4069
  "Recommended for added security. For this to work you need to enable HTTPS on "
4070
  "your server and <a>obtain an SSL certificate</a>."
4071
  msgstr ""
4072
 
4073
+ #: core/class-settings.php:545
4074
  msgctxt "admin settings"
4075
  msgid "Currency Code"
4076
  msgstr ""
4077
 
4078
+ #: core/class-settings.php:547
4079
  msgctxt "admin settings"
4080
  msgid "Australian Dollar (AUD)"
4081
  msgstr ""
4082
 
4083
+ #: core/class-settings.php:548
4084
  msgctxt "admin settings"
4085
  msgid "Brazilian Real (BRL)"
4086
  msgstr ""
4087
 
4088
+ #: core/class-settings.php:549
4089
  msgctxt "admin settings"
4090
  msgid "Canadian Dollar (CAD)"
4091
  msgstr ""
4092
 
4093
+ #: core/class-settings.php:550
4094
  msgctxt "admin settings"
4095
  msgid "Czech Koruna (CZK)"
4096
  msgstr ""
4097
 
4098
+ #: core/class-settings.php:551
4099
  msgctxt "admin settings"
4100
  msgid "Danish Krone (DKK)"
4101
  msgstr ""
4102
 
4103
+ #: core/class-settings.php:552
4104
  msgctxt "admin settings"
4105
  msgid "Euro (EUR)"
4106
  msgstr ""
4107
 
4108
+ #: core/class-settings.php:553
4109
  msgctxt "admin settings"
4110
  msgid "Hong Kong Dollar (HKD)"
4111
  msgstr ""
4112
 
4113
+ #: core/class-settings.php:554
4114
  msgctxt "admin settings"
4115
  msgid "Hungarian Forint (HUF)"
4116
  msgstr ""
4117
 
4118
+ #: core/class-settings.php:555
4119
  msgctxt "admin settings"
4120
  msgid "Israeli New Shequel (ILS)"
4121
  msgstr ""
4122
 
4123
+ #: core/class-settings.php:556
4124
  msgctxt "admin settings"
4125
  msgid "Japanese Yen (JPY)"
4126
  msgstr ""
4127
 
4128
+ #: core/class-settings.php:557
4129
  msgctxt "admin settings"
4130
  msgid "Malasian Ringgit (MYR)"
4131
  msgstr ""
4132
 
4133
+ #: core/class-settings.php:558
4134
  msgctxt "admin settings"
4135
  msgid "Mexican Peso (MXN)"
4136
  msgstr ""
4137
 
4138
+ #: core/class-settings.php:559
4139
  msgctxt "admin settings"
4140
  msgid "Norwegian Krone (NOK)"
4141
  msgstr ""
4142
 
4143
+ #: core/class-settings.php:560
4144
  msgctxt "admin settings"
4145
  msgid "New Zealand Dollar (NZD)"
4146
  msgstr ""
4147
 
4148
+ #: core/class-settings.php:561
4149
  msgctxt "admin settings"
4150
  msgid "Philippine Peso (PHP)"
4151
  msgstr ""
4152
 
4153
+ #: core/class-settings.php:562
4154
  msgctxt "admin settings"
4155
  msgid "Polish Zloty (PLN)"
4156
  msgstr ""
4157
 
4158
+ #: core/class-settings.php:563
4159
  msgctxt "admin settings"
4160
  msgid "Pound Sterling (GBP)"
4161
  msgstr ""
4162
 
4163
+ #: core/class-settings.php:564
4164
  msgctxt "admin settings"
4165
  msgid "Singapore Dollar (SGD)"
4166
  msgstr ""
4167
 
4168
+ #: core/class-settings.php:565
4169
  msgctxt "admin settings"
4170
  msgid "Swedish Krona (SEK)"
4171
  msgstr ""
4172
 
4173
+ #: core/class-settings.php:566
4174
  msgctxt "admin settings"
4175
  msgid "Swiss Franc (CHF)"
4176
  msgstr ""
4177
 
4178
+ #: core/class-settings.php:567
4179
  msgctxt "admin settings"
4180
  msgid "Taiwan Dollar (TWD)"
4181
  msgstr ""
4182
 
4183
+ #: core/class-settings.php:568
4184
  msgctxt "admin settings"
4185
  msgid "Thai Baht (THB)"
4186
  msgstr ""
4187
 
4188
+ #: core/class-settings.php:569
4189
  msgctxt "admin settings"
4190
  msgid "Turkish Lira (TRY)"
4191
  msgstr ""
4192
 
4193
+ #: core/class-settings.php:570
4194
  msgctxt "admin settings"
4195
  msgid "U.S. Dollar (USD)"
4196
  msgstr ""
4197
 
4198
+ #: core/class-settings.php:574
4199
  msgctxt "admin settings"
4200
  msgid "Currency Symbol"
4201
  msgstr ""
4202
 
4203
+ #: core/class-settings.php:579
4204
  msgctxt "admin settings"
4205
  msgid "Currency symbol display"
4206
  msgstr ""
4207
 
4208
+ #: core/class-settings.php:583
4209
  msgctxt "admin settings"
4210
  msgid "Show currency symbol on the left"
4211
  msgstr ""
4212
 
4213
+ #: core/class-settings.php:584
4214
  msgctxt "admin settings"
4215
  msgid "Show currency symbol on the right"
4216
  msgstr ""
4217
 
4218
+ #: core/class-settings.php:585
4219
  msgctxt "admin settings"
4220
  msgid "Do not show currency symbol"
4221
  msgstr ""
4222
 
4223
+ #: core/class-settings.php:587
4224
  msgctxt "admin settings"
4225
  msgid "Thank you for payment message"
4226
  msgstr ""
4227
 
4228
+ #: core/class-settings.php:588
4229
  msgctxt "admin settings"
4230
  msgid ""
4231
  "Thank you for your payment. Your payment is being verified and your listing "
4232
  "reviewed. The verification and review process could take up to 48 hours."
4233
  msgstr ""
4234
 
4235
+ #: core/class-settings.php:593
4236
  msgctxt "admin settings"
4237
  msgid "Ask users to come back for abandoned payments?"
4238
  msgstr ""
4239
 
4240
+ #: core/class-settings.php:596
4241
  msgctxt "admin settings"
4242
  msgid ""
4243
  "An abandoned payment is when a user attempts to place a listing and gets to "
4246
  "the transaction. BD can remind them to come back and continue."
4247
  msgstr ""
4248
 
4249
+ #: core/class-settings.php:602
4250
  msgctxt "admin settings"
4251
  msgid "Listing abandonment threshold (hours)"
4252
  msgstr ""
4253
 
4254
+ #: core/class-settings.php:607
4255
  msgctxt "admin settings"
4256
  msgid ""
4257
  "Listings with pending payments are marked as abandoned after this time. You "
4258
  "can also <a>customize the e-mail</a> users receive."
4259
  msgstr ""
4260
 
4261
+ #: core/class-settings.php:612
4262
  msgctxt "admin settings"
4263
  msgid "Themes"
4264
  msgstr ""
4265
 
4266
+ #: core/class-settings.php:614
4267
  msgctxt "admin settings"
4268
  msgid "You can manage your themes on <a>Directory Themes</a>."
4269
  msgstr ""
4270
 
4271
+ #: core/class-settings.php:619
4272
  msgctxt "admin settings"
4273
  msgid "Theme button style"
4274
  msgstr ""
4275
 
4276
+ #: core/class-settings.php:623
4277
  msgctxt "admin settings"
4278
  msgid "Use the BD theme style for BD buttons"
4279
  msgstr ""
4280
 
4281
+ #: core/class-settings.php:624
4282
  msgctxt "admin settings"
4283
  msgid "Use the WP theme style for BD buttons"
4284
  msgstr ""
4285
 
4286
+ #: core/class-settings.php:631
4287
  msgctxt "admin settings"
4288
  msgid "Image"
4289
  msgstr ""
4290
 
4291
+ #: core/class-settings.php:632
4292
  msgctxt "admin settings"
4293
  msgid ""
4294
  "Any changes to these settings will affect new listings only. Existing "
4297
  "here."
4298
  msgstr ""
4299
 
4300
+ #: core/class-settings.php:633
4301
  msgctxt "admin settings"
4302
  msgid "Image Settings"
4303
  msgstr ""
4304
 
4305
+ #: core/class-settings.php:634
4306
  msgctxt "admin settings"
4307
  msgid "Allow images?"
4308
  msgstr ""
4309
 
4310
+ #: core/class-settings.php:636
4311
  msgctxt "admin settings"
4312
  msgid "Min Image File Size (KB)"
4313
  msgstr ""
4314
 
4315
+ #: core/class-settings.php:637
4316
  msgctxt "admin settings"
4317
  msgid "Max Image File Size (KB)"
4318
  msgstr ""
4319
 
4320
+ #: core/class-settings.php:639
4321
  msgctxt "admin settings"
4322
  msgid "Min image width (px)"
4323
  msgstr ""
4324
 
4325
+ #: core/class-settings.php:640
4326
  msgctxt "admin settings"
4327
  msgid "Min image height (px)"
4328
  msgstr ""
4329
 
4330
+ #: core/class-settings.php:642
4331
  msgctxt "admin settings"
4332
  msgid "Max image width (px)"
4333
  msgstr ""
4334
 
4335
+ #: core/class-settings.php:643
4336
  msgctxt "admin settings"
4337
  msgid "Max image height (px)"
4338
  msgstr ""
4339
 
4340
+ #: core/class-settings.php:645
4341
  msgctxt "admin settings"
4342
  msgid "Turn on thickbox/lightbox?"
4343
  msgstr ""
4344
 
4345
+ #: core/class-settings.php:645
4346
  msgctxt "admin settings"
4347
  msgid ""
4348
  "Uncheck if it conflicts with other elements or plugins installed on your site"
4349
  msgstr ""
4350
 
4351
+ #: core/class-settings.php:647
4352
  msgctxt "admin settings"
4353
  msgid "Thumbnails"
4354
  msgstr ""
4355
 
4356
+ #: core/class-settings.php:648
4357
  msgctxt "admin settings"
4358
  msgid "Thumbnail width (px)"
4359
  msgstr ""
4360
 
4361
+ #: core/class-settings.php:649
4362
  msgctxt "admin settings"
4363
  msgid "Thumbnail height (px)"
4364
  msgstr ""
4365
 
4366
+ #: core/class-settings.php:652
4367
  msgctxt "admin settings"
4368
  msgid "Crop thumbnails to exact dimensions?"
4369
  msgstr ""
4370
 
4371
+ #: core/class-settings.php:655
4372
  msgctxt "admin settings"
4373
  msgid ""
4374
  "When enabled images will match exactly the dimensions above but part of the "
4377
  "Depending on the uploaded images, thumbnails may have different heights."
4378
  msgstr ""
4379
 
4380
+ #: core/class-settings.php:661
4381
  msgctxt "admin settings"
4382
  msgid "Number of free images"
4383
  msgstr ""
4384
 
4385
+ #: core/class-settings.php:666
4386
  msgctxt "admin settings"
4387
  msgid ""
4388
  "For paid listing images, configure that by adding or editing a <a>Fee Plan</"
4389
  "a> instead of this setting, which is ignored for paid listings."
4390
  msgstr ""
4391
 
4392
+ #: core/class-settings.php:669
4393
  msgctxt "admin settings"
4394
  msgid "Use default picture for listings with no picture?"
4395
  msgstr ""
4396
 
4397
+ #: core/class-settings.php:670
4398
  msgctxt "admin settings"
4399
  msgid "Show Thumbnail on main listings page?"
4400
  msgstr ""
4401
 
4402
+ #: core/class-settings.php:699
4403
  msgctxt "admin settings"
4404
  msgid "User"
4405
  msgstr ""
4406
 
4407
+ #: core/class-settings.php:700
4408
  msgctxt "admin settings"
4409
  msgid "User registration date"
4410
  msgstr ""
4411
 
4412
+ #: core/class-settings.php:726
4413
  msgctxt "admin settings"
4414
  msgid ""
4415
  "Could not copy the AJAX compatibility plugin \"%s\". Compatibility mode was "
4416
  "not activated."
4417
  msgstr ""
4418
 
4419
+ #: core/class-settings.php:734
4420
  msgctxt "admin settings"
4421
  msgid ""
4422
  "Could not activate AJAX Compatibility mode: the directory \"%s\" could not "
4423
  "be created."
4424
  msgstr ""
4425
 
4426
+ #: core/class-settings.php:743
4427
  msgctxt "admin settings"
4428
  msgid ""
4429
  "Could not remove the \"Business Directory Plugin - AJAX Compatibility Module"
4430
  "\". Please remove the file \"%s\" manually or deactivate the plugin."
4431
  msgstr ""
4432
 
4433
+ #: core/class-settings.php:1063
4434
  msgctxt "settings"
4435
  msgid "Deactivate License"
4436
  msgstr ""
4437
 
4438
+ #: core/class-settings.php:1065
4439
  msgctxt "settings"
4440
  msgid "Deactivating license..."
4441
  msgstr ""
4442
 
4443
+ #: core/class-settings.php:1068
4444
  msgctxt "settings"
4445
  msgid "Activate License"
4446
  msgstr ""
4447
 
4448
+ #: core/class-settings.php:1070
4449
  msgctxt "settings"
4450
  msgid "Activating license..."
4451
  msgstr ""
4452
 
4453
+ #: core/class-settings.php:1093
4454
  msgctxt "admin settings"
4455
  msgid "Valid placeholders: %s"
4456
  msgstr ""
4457
 
4458
+ #: core/class-settings.php:1127
4459
  msgctxt "settings email"
4460
  msgid "Click to edit e-mail"
4461
  msgstr ""
4462
 
4463
+ #: core/class-settings.php:1128
4464
  msgctxt "settings email"
4465
  msgid "Click to edit"
4466
  msgstr ""
4467
 
4468
+ #: core/class-settings.php:1141
4469
  msgctxt "settings email"
4470
  msgid "E-Mail Subject"
4471
  msgstr ""
4472
 
4473
+ #: core/class-settings.php:1152
4474
  msgctxt "settings email"
4475
  msgid "E-Mail Body"
4476
  msgstr ""
4477
 
4478
+ #: core/class-settings.php:1163
4479
  msgctxt "settings email"
4480
  msgid "You can use the following placeholders:"
4481
  msgstr ""
4482
 
4483
+ #: core/class-settings.php:1186
4484
  msgctxt "settings email"
4485
  msgid "Preview e-mail"
4486
  msgstr ""
4487
 
4488
+ #: core/class-settings.php:1187
4489
  msgctxt "settings email"
4490
  msgid "Cancel"
4491
  msgstr ""
4492
 
4493
+ #: core/class-settings.php:1188
4494
  msgctxt "settings email"
4495
  msgid "Save Changes"
4496
  msgstr ""
4497
 
4498
+ #: core/class-settings.php:1207
4499
  msgctxt "settings email"
4500
  msgid "Site title"
4501
  msgstr ""
4502
 
4503
+ #: core/class-settings.php:1210
4504
  msgctxt "settings email"
4505
  msgid "Site title (with link)"
4506
  msgstr ""
4507
 
4508
+ #: core/class-settings.php:1213
4509
  msgctxt "settings email"
4510
  msgid "Site address (with link)"
4511
  msgstr ""
4512
 
4513
+ #: core/class-settings.php:1216
4514
  msgctxt "settings email"
4515
  msgid "Directory URL (with link)"
4516
  msgstr ""
4517
 
4518
+ #: core/class-settings.php:1219
4519
  msgctxt "settings email"
4520
  msgid "Current date"
4521
  msgstr ""
4522
 
4523
+ #: core/class-settings.php:1222
4524
  msgctxt "settings email"
4525
  msgid "Current time"
4526
  msgstr ""
languages/WPBDM-es_ES.mo CHANGED
Binary file
languages/WPBDM-es_ES.po CHANGED
@@ -4,7 +4,7 @@ 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-06-21 22:32:39+00:00\n"
8
  "PO-Revision-Date: 2016-06-14 15:52-0500\n"
9
  "Last-Translator: BD Team <support@businessdirectoryplugin.com>\n"
10
  "Language-Team: BD Team <support@businessdirectoryplugin.com>\n"
@@ -2223,7 +2223,7 @@ msgstr ""
2223
  "Por favor vea la <a>documentación de Campos de Formulario</a> para más "
2224
  "detalles."
2225
 
2226
- #. #-#-#-#-# WPBDM.pot (Business Directory Plugin 4.0.7) #-#-#-#-#
2227
  #. Plugin Name of the plugin/theme
2228
  #: admin/templates/header.tpl.php:4
2229
  msgid "Business Directory Plugin"
@@ -3417,6 +3417,14 @@ msgctxt "admin settings"
3417
  msgid "Display and require user agreement to Terms and Conditions"
3418
  msgstr "Mostrar y requerir que el usuario acceda a los Términos y Condiciones"
3419
 
 
 
 
 
 
 
 
 
3420
  #: core/class-settings.php:107
3421
  msgctxt "admin settings"
3422
  msgid ""
@@ -3555,13 +3563,13 @@ msgctxt "admin settings"
3555
  msgid "Enable AJAX compatibility mode?"
3556
  msgstr "Habilitar modo de compatibilidad AJAX?"
3557
 
3558
- #: core/class-settings.php:179 core/class-settings.php:660
3559
  msgctxt "admin settings"
3560
  msgid "Listings"
3561
  msgstr "Listados"
3562
 
3563
- #: core/class-settings.php:180 core/class-settings.php:330
3564
- #: core/class-settings.php:617
3565
  msgctxt "admin settings"
3566
  msgid "General Settings"
3567
  msgstr "Configuración General"
@@ -3652,18 +3660,28 @@ msgctxt "admin settings"
3652
  msgid "Status of listings upon uninstalling plugin"
3653
  msgstr "Estado de los listados luego de desinstalado el plugin"
3654
 
 
 
 
 
 
 
 
 
 
 
3655
  #: core/class-settings.php:220
3656
  msgctxt "admin settings"
3657
  msgid "Status of deleted listings"
3658
  msgstr "Estado de los listados eliminados"
3659
 
3660
- #: core/class-settings.php:223
3661
  #, fuzzy
3662
  msgctxt "admin settings"
3663
  msgid "Submit Listing instructions message"
3664
  msgstr "Mensaje de contacto"
3665
 
3666
- #: core/class-settings.php:223
3667
  msgctxt "admin settings"
3668
  msgid ""
3669
  "This text is displayed at the first page of the Submit Listing process for "
@@ -3671,22 +3689,22 @@ msgid ""
3671
  "form or anything you want to tell users before they get started."
3672
  msgstr ""
3673
 
3674
- #: core/class-settings.php:226
3675
  msgctxt "admin settings"
3676
  msgid "Listing Renewal"
3677
  msgstr "Renovación de Listados"
3678
 
3679
- #: core/class-settings.php:227
3680
  msgctxt "admin settings"
3681
  msgid "Turn on listing renewal option?"
3682
  msgstr "Habilitar la renovación de listados?"
3683
 
3684
- #: core/class-settings.php:230
3685
  msgctxt "admin settings"
3686
  msgid "Allow recurring renewal payments?"
3687
  msgstr "Permitir pagos recurrentes?"
3688
 
3689
- #: core/class-settings.php:233
3690
  msgctxt "admin settings"
3691
  msgid ""
3692
  "Allow users to opt in for automatic renewal of their listings. The fee is "
@@ -3696,12 +3714,12 @@ msgstr ""
3696
  "comisión será cobrada en el momento en el que el listado llegue a su "
3697
  "vencimiento, sin necesidad de intervención."
3698
 
3699
- #: core/class-settings.php:237
3700
  msgctxt "admin settings"
3701
  msgid "Use recurring payments as the default payment method?"
3702
  msgstr "Utilizar cobro recurrente como método de pago por defecto?"
3703
 
3704
- #: core/class-settings.php:240
3705
  msgctxt "admin settings"
3706
  msgid ""
3707
  "Enable automatic renewal without having users opt in during the submit "
@@ -3710,12 +3728,12 @@ msgstr ""
3710
  "Habilitar la renovación automática sin que los usuarios deban optar por ella "
3711
  "durante el proceso de envío del listado."
3712
 
3713
- #: core/class-settings.php:245
3714
  msgctxt "admin settings"
3715
  msgid "Listing renewal e-mail threshold (in days)"
3716
  msgstr "Rango de envío del correo electrónico de renovación (en días)"
3717
 
3718
- #: core/class-settings.php:248
3719
  msgctxt "admin settings"
3720
  msgid ""
3721
  "Configure how many days before listing expiration is the renewal e-mail sent."
@@ -3723,7 +3741,7 @@ msgstr ""
3723
  "Configure con cuántos días de anticipación debe informarse al usuario que su "
3724
  "listado está a punto de expirar."
3725
 
3726
- #: core/class-settings.php:252
3727
  msgctxt "admin settings"
3728
  msgid ""
3729
  "Send expiration notices including a cancel links to auto-renewed listings?"
@@ -3731,18 +3749,18 @@ msgstr ""
3731
  "Enviar notificaciones de expiración incluyendo enlaces para cancelar a los "
3732
  "listados auto-renovados?"
3733
 
3734
- #: core/class-settings.php:259
3735
  msgctxt "admin settings"
3736
  msgid "Remind listing owners of expired listings (past due)?"
3737
  msgstr ""
3738
  "Recordar a los dueños de listados expirados (después de su expiración)?"
3739
 
3740
- #: core/class-settings.php:264
3741
  msgctxt "admin settings"
3742
  msgid "Listing renewal reminder e-mail threshold (in days)"
3743
  msgstr "Rango de envío del recordatorio de renovación (en días)"
3744
 
3745
- #: core/class-settings.php:267
3746
  msgctxt "admin settings"
3747
  msgid ""
3748
  "Configure how many days after the expiration of a listing an e-mail reminder "
@@ -3751,164 +3769,175 @@ msgstr ""
3751
  "Configure con cuántos días después de la fecha de expiración de un listado "
3752
  "debe enviarse un recordatorio al dueño."
3753
 
3754
- #: core/class-settings.php:270
3755
  msgctxt "admin settings"
3756
  msgid "Post/Category Settings"
3757
  msgstr "Configuraciones de publicaciones/categorías"
3758
 
3759
- #: core/class-settings.php:271
3760
  msgctxt "admin settings"
3761
  msgid "Default new post status"
3762
  msgstr "Estado por defecto de nuevas publicaciones"
3763
 
3764
- #: core/class-settings.php:274
 
 
 
 
 
 
 
 
 
 
 
3765
  msgctxt "admin settings"
3766
  msgid "Edit post status"
3767
  msgstr "Estado tras edición de una publicación"
3768
 
3769
- #: core/class-settings.php:276
3770
  msgctxt "admin settings"
3771
  msgid "Order categories list by"
3772
  msgstr "Ordenar la lista de categorías por"
3773
 
3774
- #: core/class-settings.php:278
3775
  msgctxt "admin settings"
3776
  msgid "Name"
3777
  msgstr "Nombre"
3778
 
3779
- #: core/class-settings.php:279
3780
  msgctxt "admin settings"
3781
  msgid "Slug"
3782
  msgstr "Slug"
3783
 
3784
- #: core/class-settings.php:280
3785
  msgctxt "admin settings"
3786
  msgid "Listing Count"
3787
  msgstr "Conteo de Listados"
3788
 
3789
- #: core/class-settings.php:282
3790
  msgctxt "admin settings"
3791
  msgid "Sort order for categories"
3792
  msgstr "Orden de las categorías"
3793
 
3794
- #: core/class-settings.php:283 core/class-settings.php:301
3795
  msgctxt "admin settings"
3796
  msgid "Ascending"
3797
  msgstr "Ascendente"
3798
 
3799
- #: core/class-settings.php:283 core/class-settings.php:301
3800
  msgctxt "admin settings"
3801
  msgid "Descending"
3802
  msgstr "Descendente"
3803
 
3804
- #: core/class-settings.php:284
3805
  msgctxt "admin settings"
3806
  msgid "Show category post count?"
3807
  msgstr "Mostrar conteo de listados para cada categoría?"
3808
 
3809
- #: core/class-settings.php:285
3810
  msgctxt "admin settings"
3811
  msgid "Hide empty categories?"
3812
  msgstr "Ocultar categorías vacías?"
3813
 
3814
- #: core/class-settings.php:286
3815
  msgctxt "admin settings"
3816
  msgid "Show only parent categories in category list?"
3817
  msgstr ""
3818
  "Mostrar únicamente las categorías de primer nivel en la lista de categorías?"
3819
 
3820
- #: core/class-settings.php:288
3821
  msgctxt "admin settings"
3822
  msgid "Listings Sorting"
3823
  msgstr "Ordenamiento de Listados"
3824
 
3825
- #: core/class-settings.php:289
3826
  msgctxt "admin settings"
3827
  msgid "Order directory listings by"
3828
  msgstr "Ordenar los listados del Directorio por"
3829
 
3830
- #: core/class-settings.php:291
3831
  msgctxt "admin settings"
3832
  msgid "Title"
3833
  msgstr "Título"
3834
 
3835
- #: core/class-settings.php:292
3836
  msgctxt "admin settings"
3837
  msgid "Author"
3838
  msgstr "Autor"
3839
 
3840
- #: core/class-settings.php:293 core/class-settings.php:703
3841
  msgctxt "admin settings"
3842
  msgid "Date posted"
3843
  msgstr "Fecha de publicación"
3844
 
3845
- #: core/class-settings.php:294 core/class-settings.php:704
3846
  msgctxt "admin settings"
3847
  msgid "Date last modified"
3848
  msgstr "Fecha de última modificación"
3849
 
3850
- #: core/class-settings.php:295
3851
  msgctxt "admin settings"
3852
  msgid "Random"
3853
  msgstr "Aleatorio"
3854
 
3855
- #: core/class-settings.php:296
3856
  msgctxt "admin settings"
3857
  msgid "Paid first then free. Inside each group by date."
3858
  msgstr "Pagos primero, luego gratuitos. Dentro de cada grupo, por fecha."
3859
 
3860
- #: core/class-settings.php:297
3861
  msgctxt "admin settings"
3862
  msgid "Paid first then free. Inside each group by title."
3863
  msgstr "Pagos primero, luego gratuitos. Dentro de cada grupo por título."
3864
 
3865
- #: core/class-settings.php:299
3866
  msgctxt "admin settings"
3867
  msgid "Sort directory listings by"
3868
  msgstr "Orden de los listados"
3869
 
3870
- #: core/class-settings.php:300
3871
  msgctxt "admin settings"
3872
  msgid "Ascending for ascending order A-Z, Descending for descending order Z-A"
3873
  msgstr ""
3874
  "Ascendente para orden alfabético A-Z; Descendente para orden alfabético Z-A"
3875
 
3876
- #: core/class-settings.php:305
3877
  msgctxt "admin settings"
3878
  msgid "Enable sort bar?"
3879
  msgstr "Habilitar barra de ordenamiento?"
3880
 
3881
- #: core/class-settings.php:310
3882
  msgctxt "admin settings"
3883
  msgid "Sortbar Fields"
3884
  msgstr "Campos de \"barra de ordenamiento\""
3885
 
3886
- #: core/class-settings.php:319
3887
  msgctxt "admin settings"
3888
  msgid "Featured (Sticky) listing settings"
3889
  msgstr "Configuración de Listados Destacados"
3890
 
3891
- #: core/class-settings.php:320
3892
  msgctxt "admin settings"
3893
  msgid "Offer sticky listings?"
3894
  msgstr "Ofrecer listados destacados?"
3895
 
3896
- #: core/class-settings.php:321
3897
  msgctxt "admin settings"
3898
  msgid "Offer upgrades during submit process?"
3899
  msgstr "Ofrecer mejoras a destacado durante el proceso de envío?"
3900
 
3901
- #: core/class-settings.php:322
3902
  msgctxt "admin settings"
3903
  msgid "Sticky listing price"
3904
  msgstr "Precio de Listado Destacado"
3905
 
3906
- #: core/class-settings.php:323
3907
  msgctxt "admin settings"
3908
  msgid "Sticky listing page description text"
3909
  msgstr "Texto descriptivo para Listados Destacados"
3910
 
3911
- #: core/class-settings.php:324
3912
  msgctxt "admin settings"
3913
  msgid ""
3914
  "You can upgrade your listing to featured status. Featured listings will "
@@ -3917,17 +3946,17 @@ msgstr ""
3917
  "Puede actualizar su listado a Destacado. Los listados destacados aparecen "
3918
  "siempre encima de los listados regulares."
3919
 
3920
- #: core/class-settings.php:329
3921
  msgctxt "admin settings"
3922
  msgid "E-Mail"
3923
  msgstr "Correo Electrónico"
3924
 
3925
- #: core/class-settings.php:333
3926
  msgctxt "admin settings"
3927
  msgid "Display email address fields publicly?"
3928
  msgstr "Mostrar direcciones de correo electrónico públicamente?"
3929
 
3930
- #: core/class-settings.php:336
3931
  msgctxt "admin settings"
3932
  msgid ""
3933
  "Shows the email address of the listing owner to all web users. NOT "
@@ -3938,12 +3967,12 @@ msgstr ""
3938
  "a todos los usuarios. NO RECOMENDADO pues puede resultar en un aumento de "
3939
  "spam."
3940
 
3941
- #: core/class-settings.php:339
3942
  msgctxt "admin settings"
3943
  msgid "How to determine the listing's email address?"
3944
  msgstr "Cómo determinar el correo electrónico de un listado?"
3945
 
3946
- #: core/class-settings.php:342
3947
  msgctxt "admin settings"
3948
  msgid ""
3949
  "This affects emails sent to listing owners via contact forms or when their "
@@ -3952,125 +3981,125 @@ msgstr ""
3952
  "Esta configuración afecta cómo los dueños de los listados son contactados "
3953
  "cuando sus listados expiran o a través de los formularios de contacto."
3954
 
3955
- #: core/class-settings.php:344
3956
  msgctxt "admin settings"
3957
  msgid "Try listing's email field first, then author's email."
3958
  msgstr ""
3959
 
3960
- #: core/class-settings.php:345
3961
  msgctxt "admin settings"
3962
  msgid "Try author's email first and then listing's email field."
3963
  msgstr ""
3964
 
3965
- #: core/class-settings.php:349
3966
  msgctxt "admin settings"
3967
  msgid "E-Mail Notifications"
3968
  msgstr "Notificaciones de correo-e"
3969
 
3970
- #: core/class-settings.php:352
3971
  msgctxt "admin settings"
3972
  msgid "Notify admin via e-mail when..."
3973
  msgstr "Notificar al administrador cuando..."
3974
 
3975
- #: core/class-settings.php:356
3976
  msgctxt "admin settings"
3977
  msgid "A new listing is submitted."
3978
  msgstr "Un nuevo listado ha sido enviado."
3979
 
3980
- #: core/class-settings.php:357
3981
  msgctxt "admin settings"
3982
  msgid "A listing is edited."
3983
  msgstr "Un listado es editado."
3984
 
3985
- #: core/class-settings.php:358
3986
  msgctxt "admin settings"
3987
  msgid "A listing expires."
3988
  msgstr "Un listado expira."
3989
 
3990
- #: core/class-settings.php:359
3991
  msgctxt "admin settings"
3992
  msgid "A contact message is sent to a listing's owner."
3993
  msgstr "Un mensaje de contacto es enviado al dueño del listado."
3994
 
3995
- #: core/class-settings.php:365
3996
  msgctxt "admin settings"
3997
  msgid "CC this e-mail address too"
3998
  msgstr "Copiar a esta dirección de correo también"
3999
 
4000
- #: core/class-settings.php:371
4001
  msgctxt "admin settings"
4002
  msgid "Notify users via e-mail when..."
4003
  msgstr "Notificar usuarios vía correo-e cuando..."
4004
 
4005
- #: core/class-settings.php:374
4006
  msgctxt "admin settings"
4007
  msgid "You can modify the text template used for most of these e-mails below."
4008
  msgstr ""
4009
  "Puede modificar la plantilla de texto utilizada para la mayoría de estos "
4010
  "correos electrónicos abajo."
4011
 
4012
- #: core/class-settings.php:375
4013
  msgctxt "admin settings"
4014
  msgid "Their listing is submitted."
4015
  msgstr "Su listado ha sido recibido."
4016
 
4017
- #: core/class-settings.php:376
4018
  msgctxt "admin settings"
4019
  msgid "Their listing is approved/published."
4020
  msgstr "Su listado ha sido aprobado/publicado."
4021
 
4022
- #: core/class-settings.php:385
4023
  msgctxt "contact email"
4024
  msgid "You have received a reply from your listing at %s."
4025
  msgstr "Ha recibido una comunicación para su listado en %s."
4026
 
4027
- #: core/class-settings.php:386
4028
  msgctxt "contact email"
4029
  msgid "Name: %s"
4030
  msgstr "Nombre: %s"
4031
 
4032
- #: core/class-settings.php:387
4033
  msgctxt "contact email"
4034
  msgid "E-Mail: %s"
4035
  msgstr "Correo Electrónico: %s"
4036
 
4037
- #: core/class-settings.php:388
4038
  msgctxt "contact email"
4039
  msgid "Message:"
4040
  msgstr "Mensaje:"
4041
 
4042
- #: core/class-settings.php:390
4043
  msgctxt "contact email"
4044
  msgid "Time: %s"
4045
  msgstr "Hora: %s"
4046
 
4047
- #: core/class-settings.php:392
4048
  msgctxt "admin settings"
4049
  msgid "E-Mail Templates"
4050
  msgstr "Plantillas de Correo Electrónico"
4051
 
4052
- #: core/class-settings.php:395
4053
  msgctxt "admin settings"
4054
  msgid "Email confirmation message"
4055
  msgstr "Mensaje de Confirmación"
4056
 
4057
- #: core/class-settings.php:399
4058
  msgctxt "admin settings"
4059
  msgid "Sent after a listing has been submitted."
4060
  msgstr "Enviado luego de que el listado ha sido recibido."
4061
 
4062
- #: core/class-settings.php:400 core/class-settings.php:408
4063
- #: core/class-settings.php:449
4064
  msgctxt "admin settings"
4065
  msgid "Listing's title"
4066
  msgstr "Título del Listado"
4067
 
4068
- #: core/class-settings.php:403
4069
  msgctxt "admin settings"
4070
  msgid "Listing published message"
4071
  msgstr "Mensaje de listado publicado"
4072
 
4073
- #: core/class-settings.php:406
4074
  msgctxt "admin settings"
4075
  msgid ""
4076
  "Your listing \"[listing]\" is now available at [listing-url] and can be "
@@ -4079,23 +4108,23 @@ msgstr ""
4079
  "Su listado \"[listing]\" está ahora disponible en [listing-url] y puede ser "
4080
  "visto por el público."
4081
 
4082
- #: core/class-settings.php:407
4083
  msgctxt "admin settings"
4084
  msgid "Sent when the listing has been published or approved by an admin."
4085
  msgstr ""
4086
  "Enviado cuando el listado ha sido publicado o aprobado por un administrador."
4087
 
4088
- #: core/class-settings.php:409
4089
  msgctxt "admin settings"
4090
  msgid "Listing's URL"
4091
  msgstr "URL del listado"
4092
 
4093
- #: core/class-settings.php:413
4094
  msgctxt "admin settings"
4095
  msgid "Listing Contact Message"
4096
  msgstr "Mensaje de contacto"
4097
 
4098
- #: core/class-settings.php:417
4099
  msgctxt "admin settings"
4100
  msgid ""
4101
  "Sent to listing owners when someone uses the contact form on their listing "
@@ -4104,34 +4133,34 @@ msgstr ""
4104
  "Enviado a los dueños de listados cuando alguien utiliza el formulario de "
4105
  "contacto en sus páginas."
4106
 
4107
- #: core/class-settings.php:427
4108
  msgctxt "admin settings"
4109
  msgid "Payment related"
4110
  msgstr "Relativo al pago"
4111
 
4112
- #: core/class-settings.php:444
4113
  msgctxt "admin settings"
4114
  msgid "Payment abandoned reminder message"
4115
  msgstr "Recordatorio de pagos abandonados"
4116
 
4117
- #: core/class-settings.php:448
4118
  msgctxt "admin settings"
4119
  msgid "Sent some time after a pending payment is abandoned by users."
4120
  msgstr ""
4121
  "Enviado algún tiempo después de que un pago pendiente es abandonado por los "
4122
  "usuarios."
4123
 
4124
- #: core/class-settings.php:450
4125
  msgctxt "admin settings"
4126
  msgid "Checkout URL link"
4127
  msgstr "Link a la URL de pago"
4128
 
4129
- #: core/class-settings.php:456
4130
  msgctxt "admin settings"
4131
  msgid "Renewal Reminders"
4132
  msgstr "Recordatorios de Renovación"
4133
 
4134
- #: core/class-settings.php:459
4135
  msgctxt "admin settings"
4136
  msgid ""
4137
  "This section refers only to the text of the renewal/expiration notices. You "
@@ -4141,12 +4170,12 @@ msgstr ""
4141
  "renovación/expiración. También puede <a>configurar cuándo estos correos son "
4142
  "enviados</a>."
4143
 
4144
- #: core/class-settings.php:463
4145
  msgctxt "admin settings"
4146
  msgid "Pending expiration e-mail message"
4147
  msgstr "Mensaje correo electrónico sobre expiración pendiente"
4148
 
4149
- #: core/class-settings.php:467
4150
  msgctxt "settings"
4151
  msgid ""
4152
  "Sent some time before the listing expires. Applies to non-recurring renewals "
@@ -4155,50 +4184,50 @@ msgstr ""
4155
  "Enviado un tiempo antes de que el listado expire. Aplica para renovaciones "
4156
  "no recurrentes únicamente."
4157
 
4158
- #: core/class-settings.php:468 core/class-settings.php:481
4159
- #: core/class-settings.php:494 core/class-settings.php:507
4160
- #: core/class-settings.php:520
4161
  msgctxt "settings"
4162
  msgid "Listing's name (with link)"
4163
  msgstr "Título del listado (con enlace)"
4164
 
4165
- #: core/class-settings.php:469 core/class-settings.php:482
4166
- #: core/class-settings.php:495 core/class-settings.php:508
4167
- #: core/class-settings.php:521
4168
  msgctxt "settings"
4169
  msgid "Author's name"
4170
  msgstr "Autor del listado"
4171
 
4172
- #: core/class-settings.php:470 core/class-settings.php:483
4173
- #: core/class-settings.php:522
4174
  msgctxt "settings"
4175
  msgid "Expiration date"
4176
  msgstr "Fecha de expiración"
4177
 
4178
- #: core/class-settings.php:471
4179
  msgctxt "settings"
4180
  msgid "Category that is going to expire"
4181
  msgstr "Categoría que va a expirar"
4182
 
4183
- #: core/class-settings.php:472 core/class-settings.php:485
4184
- #: core/class-settings.php:524
4185
  msgctxt "settings"
4186
  msgid "Link to renewal page"
4187
  msgstr "Enlace a la página de renovación"
4188
 
4189
- #: core/class-settings.php:473 core/class-settings.php:486
4190
- #: core/class-settings.php:498 core/class-settings.php:511
4191
- #: core/class-settings.php:525
4192
  msgctxt "settings"
4193
  msgid "Link to your site"
4194
  msgstr "Enlace a su sitio"
4195
 
4196
- #: core/class-settings.php:476
4197
  msgctxt "admin settings"
4198
  msgid "Listing Renewal e-mail message"
4199
  msgstr "Mensaje de correo electrónico sobre Renovación del Listado"
4200
 
4201
- #: core/class-settings.php:480
4202
  msgctxt "settings"
4203
  msgid ""
4204
  "Sent at the time of listing expiration. Applies to non-recurring renewals "
@@ -4207,17 +4236,17 @@ msgstr ""
4207
  "Enviado al momento de expiración del listado. Aplica a renovaciones no "
4208
  "recurrentes únicamente."
4209
 
4210
- #: core/class-settings.php:484 core/class-settings.php:523
4211
  msgctxt "settings"
4212
  msgid "Category that expired"
4213
  msgstr "Categoría que expiró"
4214
 
4215
- #: core/class-settings.php:489
4216
  msgctxt "admin settings"
4217
  msgid "Listing auto-renewal reminder (recurring payments)"
4218
  msgstr "Recordatorio de auto-renovación del listado (pagos recurrentes)"
4219
 
4220
- #: core/class-settings.php:493
4221
  msgctxt "settings"
4222
  msgid ""
4223
  "Sent some time before the listing is auto-renewed. Applies to recurring "
@@ -4226,29 +4255,29 @@ msgstr ""
4226
  "Enviado algún tiempo antes de que el listado sea auto-renovado. Aplica a "
4227
  "renovaciones recurrentes únicamente."
4228
 
4229
- #: core/class-settings.php:496 core/class-settings.php:510
4230
  msgctxt "settings"
4231
  msgid "Renewal date"
4232
  msgstr "Fecha de renovación"
4233
 
4234
- #: core/class-settings.php:497
4235
  msgctxt "settings"
4236
  msgid "Category that is going to be renewed"
4237
  msgstr "Categoría que será renovada"
4238
 
4239
- #: core/class-settings.php:499
4240
  msgctxt "settings"
4241
  msgid "Link to manage subscriptions"
4242
  msgstr "Enlace a la página de administración de pagos recurrentes"
4243
 
4244
- #: core/class-settings.php:502
4245
  msgctxt "admin settings"
4246
  msgid "Listing Renewal e-mail message (recurring payments)"
4247
  msgstr ""
4248
  "Mensaje de correo electrónico sobre Renovación del Listado (para pago "
4249
  "automático)"
4250
 
4251
- #: core/class-settings.php:506
4252
  msgctxt "settings"
4253
  msgid ""
4254
  "Sent after the listing is auto-renewed. Applies to recurring renewals only."
@@ -4256,17 +4285,17 @@ msgstr ""
4256
  "Enviado luego de que el listado sea auto-renovado. Aplica a renovaciones "
4257
  "recurrentes únicamente."
4258
 
4259
- #: core/class-settings.php:509
4260
  msgctxt "settings"
4261
  msgid "Renewed category"
4262
  msgstr "Categoría renovada"
4263
 
4264
- #: core/class-settings.php:515
4265
  msgctxt "admin settings"
4266
  msgid "Renewal reminder e-mail message"
4267
  msgstr "Recordatorio por correo electrónico de renovación del listado"
4268
 
4269
- #: core/class-settings.php:519
4270
  msgctxt "settings"
4271
  msgid ""
4272
  "Sent some time after listing expiration and when no renewal has occurred. "
@@ -4275,32 +4304,32 @@ msgstr ""
4275
  "Enviado un tiempo después de que el listado expire y no haya sido renovado. "
4276
  "Aplica tanto a renovaciones recurrentes como no recurrentes."
4277
 
4278
- #: core/class-settings.php:529
4279
  msgctxt "admin settings"
4280
  msgid "Payment"
4281
  msgstr "Pago"
4282
 
4283
- #: core/class-settings.php:530
4284
  msgctxt "admin settings"
4285
  msgid "Payment Settings"
4286
  msgstr "Configuración de Pago"
4287
 
4288
- #: core/class-settings.php:533
4289
  msgctxt "admin settings"
4290
  msgid "Turn On payments?"
4291
  msgstr "Activar pagos?"
4292
 
4293
- #: core/class-settings.php:535
4294
  msgctxt "admin settings"
4295
  msgid "Put payment gateways in test mode?"
4296
  msgstr "Utilizar las pasarelas de pago en modo de prueba?"
4297
 
4298
- #: core/class-settings.php:540
4299
  msgctxt "admin settings"
4300
  msgid "Perform checkouts on the secure (HTTPS) version of your site?"
4301
  msgstr "Realizar pagos en la versión segura (HTTPS) de su sitio?"
4302
 
4303
- #: core/class-settings.php:543
4304
  msgctxt "admin settings"
4305
  msgid ""
4306
  "Recommended for added security. For this to work you need to enable HTTPS on "
@@ -4309,162 +4338,162 @@ msgstr ""
4309
  "Recomendado para seguridad extra. Para que funcione debe tener habilitado "
4310
  "HTTPS en su servidor y <a>obtener un certificado SSL</a>."
4311
 
4312
- #: core/class-settings.php:547
4313
  msgctxt "admin settings"
4314
  msgid "Currency Code"
4315
  msgstr "Código de Moneda"
4316
 
4317
- #: core/class-settings.php:549
4318
  msgctxt "admin settings"
4319
  msgid "Australian Dollar (AUD)"
4320
  msgstr "Dólar Australiano (AUD)"
4321
 
4322
- #: core/class-settings.php:550
4323
  msgctxt "admin settings"
4324
  msgid "Brazilian Real (BRL)"
4325
  msgstr "Real Brasilero (BRL)"
4326
 
4327
- #: core/class-settings.php:551
4328
  msgctxt "admin settings"
4329
  msgid "Canadian Dollar (CAD)"
4330
  msgstr "Dólar Canadiense (CAD)"
4331
 
4332
- #: core/class-settings.php:552
4333
  msgctxt "admin settings"
4334
  msgid "Czech Koruna (CZK)"
4335
  msgstr "Corona Checa (CZK)"
4336
 
4337
- #: core/class-settings.php:553
4338
  msgctxt "admin settings"
4339
  msgid "Danish Krone (DKK)"
4340
  msgstr "Corona Danesa (DKK)"
4341
 
4342
- #: core/class-settings.php:554
4343
  msgctxt "admin settings"
4344
  msgid "Euro (EUR)"
4345
  msgstr "Euro (EUR)"
4346
 
4347
- #: core/class-settings.php:555
4348
  msgctxt "admin settings"
4349
  msgid "Hong Kong Dollar (HKD)"
4350
  msgstr "Dólar de Hong Kong (HKD)"
4351
 
4352
- #: core/class-settings.php:556
4353
  msgctxt "admin settings"
4354
  msgid "Hungarian Forint (HUF)"
4355
  msgstr "Forinte Húngaro (HUF)"
4356
 
4357
- #: core/class-settings.php:557
4358
  msgctxt "admin settings"
4359
  msgid "Israeli New Shequel (ILS)"
4360
  msgstr "Nuevo Shékel Israelí (ILS)"
4361
 
4362
- #: core/class-settings.php:558
4363
  msgctxt "admin settings"
4364
  msgid "Japanese Yen (JPY)"
4365
  msgstr "Yen Japonés (JPY)"
4366
 
4367
- #: core/class-settings.php:559
4368
  msgctxt "admin settings"
4369
  msgid "Malasian Ringgit (MYR)"
4370
  msgstr "Ringgit de Malasia (MYR)"
4371
 
4372
- #: core/class-settings.php:560
4373
  msgctxt "admin settings"
4374
  msgid "Mexican Peso (MXN)"
4375
  msgstr "Peso Mexicano (MXN)"
4376
 
4377
- #: core/class-settings.php:561
4378
  msgctxt "admin settings"
4379
  msgid "Norwegian Krone (NOK)"
4380
  msgstr "Corona Noruega (NOK)"
4381
 
4382
- #: core/class-settings.php:562
4383
  msgctxt "admin settings"
4384
  msgid "New Zealand Dollar (NZD)"
4385
  msgstr "Dólar de Nueva Zelanda (NZD)"
4386
 
4387
- #: core/class-settings.php:563
4388
  msgctxt "admin settings"
4389
  msgid "Philippine Peso (PHP)"
4390
  msgstr "Peso Filipino (PHP)"
4391
 
4392
- #: core/class-settings.php:564
4393
  msgctxt "admin settings"
4394
  msgid "Polish Zloty (PLN)"
4395
  msgstr "Zloty Polaco (PLN)"
4396
 
4397
- #: core/class-settings.php:565
4398
  msgctxt "admin settings"
4399
  msgid "Pound Sterling (GBP)"
4400
  msgstr "Libra Esterlina (GBP)"
4401
 
4402
- #: core/class-settings.php:566
4403
  msgctxt "admin settings"
4404
  msgid "Singapore Dollar (SGD)"
4405
  msgstr "Dólar de Singapur (SGD)"
4406
 
4407
- #: core/class-settings.php:567
4408
  msgctxt "admin settings"
4409
  msgid "Swedish Krona (SEK)"
4410
  msgstr "Corona Sueca (SEK)"
4411
 
4412
- #: core/class-settings.php:568
4413
  msgctxt "admin settings"
4414
  msgid "Swiss Franc (CHF)"
4415
  msgstr "Franco Suizo (CHF)"
4416
 
4417
- #: core/class-settings.php:569
4418
  msgctxt "admin settings"
4419
  msgid "Taiwan Dollar (TWD)"
4420
  msgstr "Dólar de Taiwán (TWD)"
4421
 
4422
- #: core/class-settings.php:570
4423
  msgctxt "admin settings"
4424
  msgid "Thai Baht (THB)"
4425
  msgstr "Baht de Tailandia (THB)"
4426
 
4427
- #: core/class-settings.php:571
4428
  msgctxt "admin settings"
4429
  msgid "Turkish Lira (TRY)"
4430
  msgstr "Lira Turca (TRY)"
4431
 
4432
- #: core/class-settings.php:572
4433
  msgctxt "admin settings"
4434
  msgid "U.S. Dollar (USD)"
4435
  msgstr "Dólar Americano (USD)"
4436
 
4437
- #: core/class-settings.php:576
4438
  msgctxt "admin settings"
4439
  msgid "Currency Symbol"
4440
  msgstr "Símbolo de Moneda"
4441
 
4442
- #: core/class-settings.php:581
4443
  msgctxt "admin settings"
4444
  msgid "Currency symbol display"
4445
  msgstr "Presentación de símbolo de moneda"
4446
 
4447
- #: core/class-settings.php:585
4448
  msgctxt "admin settings"
4449
  msgid "Show currency symbol on the left"
4450
  msgstr "Mostrar el símbolo de moneda a la izquierda"
4451
 
4452
- #: core/class-settings.php:586
4453
  msgctxt "admin settings"
4454
  msgid "Show currency symbol on the right"
4455
  msgstr "Mostrar el símbolo de moneda a la derecha"
4456
 
4457
- #: core/class-settings.php:587
4458
  msgctxt "admin settings"
4459
  msgid "Do not show currency symbol"
4460
  msgstr "No mostrar el símbolo de moneda"
4461
 
4462
- #: core/class-settings.php:589
4463
  msgctxt "admin settings"
4464
  msgid "Thank you for payment message"
4465
  msgstr "Mensaje de agradecimiento por el pago"
4466
 
4467
- #: core/class-settings.php:590
4468
  msgctxt "admin settings"
4469
  msgid ""
4470
  "Thank you for your payment. Your payment is being verified and your listing "
@@ -4473,13 +4502,13 @@ msgstr ""
4473
  "Gracias por su pago. Su pago está siendo verificado y su listado revisado. "
4474
  "Este proceso puede tardar hasta 48 horas."
4475
 
4476
- #: core/class-settings.php:595
4477
  msgctxt "admin settings"
4478
  msgid "Ask users to come back for abandoned payments?"
4479
  msgstr ""
4480
  "Contactar a los usuarios para pedirles que regresen a pagar pagos pendientes?"
4481
 
4482
- #: core/class-settings.php:598
4483
  msgctxt "admin settings"
4484
  msgid ""
4485
  "An abandoned payment is when a user attempts to place a listing and gets to "
@@ -4492,12 +4521,12 @@ msgstr ""
4492
  "en listados que parece que fallaron cuando el usuario simplemente no "
4493
  "completó la transacción. BD puede recordarles para que efectúen el pago."
4494
 
4495
- #: core/class-settings.php:604
4496
  msgctxt "admin settings"
4497
  msgid "Listing abandonment threshold (hours)"
4498
  msgstr "Tiempo tras el cual el listado es considerado abandonado (en horas)"
4499
 
4500
- #: core/class-settings.php:609
4501
  msgctxt "admin settings"
4502
  msgid ""
4503
  "Listings with pending payments are marked as abandoned after this time. You "
@@ -4507,37 +4536,37 @@ msgstr ""
4507
  "tiempo. También puede <a>personalizar el correo-e</a> que los usuarios "
4508
  "reciben."
4509
 
4510
- #: core/class-settings.php:614
4511
  msgctxt "admin settings"
4512
  msgid "Themes"
4513
  msgstr ""
4514
 
4515
- #: core/class-settings.php:616
4516
  msgctxt "admin settings"
4517
  msgid "You can manage your themes on <a>Directory Themes</a>."
4518
  msgstr ""
4519
 
4520
- #: core/class-settings.php:621
4521
  msgctxt "admin settings"
4522
  msgid "Theme button style"
4523
  msgstr ""
4524
 
4525
- #: core/class-settings.php:625
4526
  msgctxt "admin settings"
4527
  msgid "Use the BD theme style for BD buttons"
4528
  msgstr ""
4529
 
4530
- #: core/class-settings.php:626
4531
  msgctxt "admin settings"
4532
  msgid "Use the WP theme style for BD buttons"
4533
  msgstr ""
4534
 
4535
- #: core/class-settings.php:633
4536
  msgctxt "admin settings"
4537
  msgid "Image"
4538
  msgstr "Imágenes"
4539
 
4540
- #: core/class-settings.php:634
4541
  msgctxt "admin settings"
4542
  msgid ""
4543
  "Any changes to these settings will affect new listings only. Existing "
@@ -4550,52 +4579,52 @@ msgstr ""
4550
  "existentes, deberá subir de nuevo las imágenes necesarias luego de hacer los "
4551
  "cambios aquí."
4552
 
4553
- #: core/class-settings.php:635
4554
  msgctxt "admin settings"
4555
  msgid "Image Settings"
4556
  msgstr "Configuración de Imágenes"
4557
 
4558
- #: core/class-settings.php:636
4559
  msgctxt "admin settings"
4560
  msgid "Allow images?"
4561
  msgstr "Permitir imágenes?"
4562
 
4563
- #: core/class-settings.php:638
4564
  msgctxt "admin settings"
4565
  msgid "Min Image File Size (KB)"
4566
  msgstr "Tamaño mínimo de imagen (KB)"
4567
 
4568
- #: core/class-settings.php:639
4569
  msgctxt "admin settings"
4570
  msgid "Max Image File Size (KB)"
4571
  msgstr "Tamaño máximo de imagen (KB)"
4572
 
4573
- #: core/class-settings.php:641
4574
  msgctxt "admin settings"
4575
  msgid "Min image width (px)"
4576
  msgstr "Ancho mínimo de imagen (en px)"
4577
 
4578
- #: core/class-settings.php:642
4579
  msgctxt "admin settings"
4580
  msgid "Min image height (px)"
4581
  msgstr "Alto mínimo de imagen (en px)"
4582
 
4583
- #: core/class-settings.php:644
4584
  msgctxt "admin settings"
4585
  msgid "Max image width (px)"
4586
  msgstr "Ancho máximo de imagen (px)"
4587
 
4588
- #: core/class-settings.php:645
4589
  msgctxt "admin settings"
4590
  msgid "Max image height (px)"
4591
  msgstr "Alto máximo de imagen (px)"
4592
 
4593
- #: core/class-settings.php:647
4594
  msgctxt "admin settings"
4595
  msgid "Turn on thickbox/lightbox?"
4596
  msgstr "Activar Thickbox/Lightbox?"
4597
 
4598
- #: core/class-settings.php:647
4599
  msgctxt "admin settings"
4600
  msgid ""
4601
  "Uncheck if it conflicts with other elements or plugins installed on your site"
@@ -4603,27 +4632,27 @@ msgstr ""
4603
  "Desmarque si entra en conflicto con otros elementos o plugins instalados en "
4604
  "su sitio"
4605
 
4606
- #: core/class-settings.php:649
4607
  msgctxt "admin settings"
4608
  msgid "Thumbnails"
4609
  msgstr "Imágenes de previsualización"
4610
 
4611
- #: core/class-settings.php:650
4612
  msgctxt "admin settings"
4613
  msgid "Thumbnail width (px)"
4614
  msgstr "Ancho de thumbnail (px)"
4615
 
4616
- #: core/class-settings.php:651
4617
  msgctxt "admin settings"
4618
  msgid "Thumbnail height (px)"
4619
  msgstr "Alto de thumbnail (px)"
4620
 
4621
- #: core/class-settings.php:654
4622
  msgctxt "admin settings"
4623
  msgid "Crop thumbnails to exact dimensions?"
4624
  msgstr "Cortar imágenes de previsualización a las dimensiones exactas?"
4625
 
4626
- #: core/class-settings.php:657
4627
  msgctxt "admin settings"
4628
  msgid ""
4629
  "When enabled images will match exactly the dimensions above but part of the "
@@ -4637,12 +4666,12 @@ msgstr ""
4637
  "alto será ajustado proporcionalmente. Dependiendo de las imágenes que se "
4638
  "hayan utilizado, estas podrían tener diferentes alturas."
4639
 
4640
- #: core/class-settings.php:663
4641
  msgctxt "admin settings"
4642
  msgid "Number of free images"
4643
  msgstr "Número de imágenes gratuitas"
4644
 
4645
- #: core/class-settings.php:668
4646
  msgctxt "admin settings"
4647
  msgid ""
4648
  "For paid listing images, configure that by adding or editing a <a>Fee Plan</"
@@ -4651,28 +4680,28 @@ msgstr ""
4651
  "Configure las imágenes de listados pagos agregando o editando una "
4652
  "<a>comisión</a> pues este valor será ignorado para listados pagos."
4653
 
4654
- #: core/class-settings.php:671
4655
  msgctxt "admin settings"
4656
  msgid "Use default picture for listings with no picture?"
4657
  msgstr "Utilizar imagen por defecto en listados sin imagen?"
4658
 
4659
- #: core/class-settings.php:672
4660
  msgctxt "admin settings"
4661
  msgid "Show Thumbnail on main listings page?"
4662
  msgstr "Mostrar thumbnails en las páginas principales?"
4663
 
4664
- #: core/class-settings.php:701
4665
  msgctxt "admin settings"
4666
  msgid "User"
4667
  msgstr ""
4668
 
4669
- #: core/class-settings.php:702
4670
  #, fuzzy
4671
  msgctxt "admin settings"
4672
  msgid "User registration date"
4673
  msgstr "Fecha de expiración del listado"
4674
 
4675
- #: core/class-settings.php:728
4676
  msgctxt "admin settings"
4677
  msgid ""
4678
  "Could not copy the AJAX compatibility plugin \"%s\". Compatibility mode was "
@@ -4681,7 +4710,7 @@ msgstr ""
4681
  "No se pudo copiar el plugin de compatibilidad AJAX \"%s\". El modo de "
4682
  "compatibilidad no fue activado."
4683
 
4684
- #: core/class-settings.php:736
4685
  msgctxt "admin settings"
4686
  msgid ""
4687
  "Could not activate AJAX Compatibility mode: the directory \"%s\" could not "
@@ -4690,7 +4719,7 @@ msgstr ""
4690
  "No se pudo activar el modo de compatibilidad AJAX: el directorio \"%s\" no "
4691
  "pudo ser creado."
4692
 
4693
- #: core/class-settings.php:745
4694
  msgctxt "admin settings"
4695
  msgid ""
4696
  "Could not remove the \"Business Directory Plugin - AJAX Compatibility Module"
@@ -4699,97 +4728,97 @@ msgstr ""
4699
  "No se pudo remover \"Business Directory Plugin - AJAX Compatibility Module"
4700
  "\". Por favor elimine el archivo \"%s\" manualmente o desactive el plugin."
4701
 
4702
- #: core/class-settings.php:1065
4703
  msgctxt "settings"
4704
  msgid "Deactivate License"
4705
  msgstr "Desactivar Licencia"
4706
 
4707
- #: core/class-settings.php:1067
4708
  msgctxt "settings"
4709
  msgid "Deactivating license..."
4710
  msgstr "Desactivando licencia..."
4711
 
4712
- #: core/class-settings.php:1070
4713
  msgctxt "settings"
4714
  msgid "Activate License"
4715
  msgstr "Activar Licencia"
4716
 
4717
- #: core/class-settings.php:1072
4718
  msgctxt "settings"
4719
  msgid "Activating license..."
4720
  msgstr "Activando licencia..."
4721
 
4722
- #: core/class-settings.php:1095
4723
  msgctxt "admin settings"
4724
  msgid "Valid placeholders: %s"
4725
  msgstr "Comodines válidos: %s"
4726
 
4727
- #: core/class-settings.php:1129
4728
  msgctxt "settings email"
4729
  msgid "Click to edit e-mail"
4730
  msgstr "Click para editar el correo"
4731
 
4732
- #: core/class-settings.php:1130
4733
  msgctxt "settings email"
4734
  msgid "Click to edit"
4735
  msgstr "Click para editar"
4736
 
4737
- #: core/class-settings.php:1143
4738
  msgctxt "settings email"
4739
  msgid "E-Mail Subject"
4740
  msgstr "Título del correo"
4741
 
4742
- #: core/class-settings.php:1154
4743
  msgctxt "settings email"
4744
  msgid "E-Mail Body"
4745
  msgstr "Cuerpo del correo"
4746
 
4747
- #: core/class-settings.php:1165
4748
  msgctxt "settings email"
4749
  msgid "You can use the following placeholders:"
4750
  msgstr "Puede utilizar los siguientes comodines:"
4751
 
4752
- #: core/class-settings.php:1188
4753
  msgctxt "settings email"
4754
  msgid "Preview e-mail"
4755
  msgstr "Previsualizar correo"
4756
 
4757
- #: core/class-settings.php:1189
4758
  msgctxt "settings email"
4759
  msgid "Cancel"
4760
  msgstr "Cancelar"
4761
 
4762
- #: core/class-settings.php:1190
4763
  msgctxt "settings email"
4764
  msgid "Save Changes"
4765
  msgstr "Guardar Cambios"
4766
 
4767
- #: core/class-settings.php:1209
4768
  msgctxt "settings email"
4769
  msgid "Site title"
4770
  msgstr "Título del sitio"
4771
 
4772
- #: core/class-settings.php:1212
4773
  msgctxt "settings email"
4774
  msgid "Site title (with link)"
4775
  msgstr "Título del listado (con enlace)"
4776
 
4777
- #: core/class-settings.php:1215
4778
  msgctxt "settings email"
4779
  msgid "Site address (with link)"
4780
  msgstr "Dirección del listado (con enlace)"
4781
 
4782
- #: core/class-settings.php:1218
4783
  msgctxt "settings email"
4784
  msgid "Directory URL (with link)"
4785
  msgstr "URL del Directorio (con enlace)"
4786
 
4787
- #: core/class-settings.php:1221
4788
  msgctxt "settings email"
4789
  msgid "Current date"
4790
  msgstr "Fecha actual"
4791
 
4792
- #: core/class-settings.php:1224
4793
  msgctxt "settings email"
4794
  msgid "Current time"
4795
  msgstr "Hora actual"
@@ -7362,10 +7391,6 @@ msgstr "http://businessdirectoryplugin.com"
7362
  #~ msgid "Approved"
7363
  #~ msgstr "Aprobadas"
7364
 
7365
- #~ msgctxt "admin transactions"
7366
- #~ msgid "Pending"
7367
- #~ msgstr "Pendientes"
7368
-
7369
  #~ msgctxt "admin transactions"
7370
  #~ msgid "Rejected"
7371
  #~ msgstr "Rechazadas"
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-07-06 14:03:56+00:00\n"
8
  "PO-Revision-Date: 2016-06-14 15:52-0500\n"
9
  "Last-Translator: BD Team <support@businessdirectoryplugin.com>\n"
10
  "Language-Team: BD Team <support@businessdirectoryplugin.com>\n"
2223
  "Por favor vea la <a>documentación de Campos de Formulario</a> para más "
2224
  "detalles."
2225
 
2226
+ #. #-#-#-#-# WPBDM.pot (Business Directory Plugin 4.0.8) #-#-#-#-#
2227
  #. Plugin Name of the plugin/theme
2228
  #: admin/templates/header.tpl.php:4
2229
  msgid "Business Directory Plugin"
3417
  msgid "Display and require user agreement to Terms and Conditions"
3418
  msgstr "Mostrar y requerir que el usuario acceda a los Términos y Condiciones"
3419
 
3420
+ #: core/class-settings.php:106
3421
+ #, fuzzy
3422
+ msgctxt "admin settings"
3423
+ msgid ""
3424
+ "Terms and Conditions text goes here...\n"
3425
+ "\n"
3426
+ msgstr "Términos y Condiciones"
3427
+
3428
  #: core/class-settings.php:107
3429
  msgctxt "admin settings"
3430
  msgid ""
3563
  msgid "Enable AJAX compatibility mode?"
3564
  msgstr "Habilitar modo de compatibilidad AJAX?"
3565
 
3566
+ #: core/class-settings.php:179 core/class-settings.php:658
3567
  msgctxt "admin settings"
3568
  msgid "Listings"
3569
  msgstr "Listados"
3570
 
3571
+ #: core/class-settings.php:180 core/class-settings.php:328
3572
+ #: core/class-settings.php:615
3573
  msgctxt "admin settings"
3574
  msgid "General Settings"
3575
  msgstr "Configuración General"
3660
  msgid "Status of listings upon uninstalling plugin"
3661
  msgstr "Estado de los listados luego de desinstalado el plugin"
3662
 
3663
+ #: core/class-settings.php:219 core/class-settings.php:221
3664
+ msgctxt "post status"
3665
+ msgid "Draft"
3666
+ msgstr ""
3667
+
3668
+ #: core/class-settings.php:219 core/class-settings.php:221
3669
+ msgctxt "post status"
3670
+ msgid "Trash"
3671
+ msgstr ""
3672
+
3673
  #: core/class-settings.php:220
3674
  msgctxt "admin settings"
3675
  msgid "Status of deleted listings"
3676
  msgstr "Estado de los listados eliminados"
3677
 
3678
+ #: core/class-settings.php:222
3679
  #, fuzzy
3680
  msgctxt "admin settings"
3681
  msgid "Submit Listing instructions message"
3682
  msgstr "Mensaje de contacto"
3683
 
3684
+ #: core/class-settings.php:222
3685
  msgctxt "admin settings"
3686
  msgid ""
3687
  "This text is displayed at the first page of the Submit Listing process for "
3689
  "form or anything you want to tell users before they get started."
3690
  msgstr ""
3691
 
3692
+ #: core/class-settings.php:224
3693
  msgctxt "admin settings"
3694
  msgid "Listing Renewal"
3695
  msgstr "Renovación de Listados"
3696
 
3697
+ #: core/class-settings.php:225
3698
  msgctxt "admin settings"
3699
  msgid "Turn on listing renewal option?"
3700
  msgstr "Habilitar la renovación de listados?"
3701
 
3702
+ #: core/class-settings.php:228
3703
  msgctxt "admin settings"
3704
  msgid "Allow recurring renewal payments?"
3705
  msgstr "Permitir pagos recurrentes?"
3706
 
3707
+ #: core/class-settings.php:231
3708
  msgctxt "admin settings"
3709
  msgid ""
3710
  "Allow users to opt in for automatic renewal of their listings. The fee is "
3714
  "comisión será cobrada en el momento en el que el listado llegue a su "
3715
  "vencimiento, sin necesidad de intervención."
3716
 
3717
+ #: core/class-settings.php:235
3718
  msgctxt "admin settings"
3719
  msgid "Use recurring payments as the default payment method?"
3720
  msgstr "Utilizar cobro recurrente como método de pago por defecto?"
3721
 
3722
+ #: core/class-settings.php:238
3723
  msgctxt "admin settings"
3724
  msgid ""
3725
  "Enable automatic renewal without having users opt in during the submit "
3728
  "Habilitar la renovación automática sin que los usuarios deban optar por ella "
3729
  "durante el proceso de envío del listado."
3730
 
3731
+ #: core/class-settings.php:243
3732
  msgctxt "admin settings"
3733
  msgid "Listing renewal e-mail threshold (in days)"
3734
  msgstr "Rango de envío del correo electrónico de renovación (en días)"
3735
 
3736
+ #: core/class-settings.php:246
3737
  msgctxt "admin settings"
3738
  msgid ""
3739
  "Configure how many days before listing expiration is the renewal e-mail sent."
3741
  "Configure con cuántos días de anticipación debe informarse al usuario que su "
3742
  "listado está a punto de expirar."
3743
 
3744
+ #: core/class-settings.php:250
3745
  msgctxt "admin settings"
3746
  msgid ""
3747
  "Send expiration notices including a cancel links to auto-renewed listings?"
3749
  "Enviar notificaciones de expiración incluyendo enlaces para cancelar a los "
3750
  "listados auto-renovados?"
3751
 
3752
+ #: core/class-settings.php:257
3753
  msgctxt "admin settings"
3754
  msgid "Remind listing owners of expired listings (past due)?"
3755
  msgstr ""
3756
  "Recordar a los dueños de listados expirados (después de su expiración)?"
3757
 
3758
+ #: core/class-settings.php:262
3759
  msgctxt "admin settings"
3760
  msgid "Listing renewal reminder e-mail threshold (in days)"
3761
  msgstr "Rango de envío del recordatorio de renovación (en días)"
3762
 
3763
+ #: core/class-settings.php:265
3764
  msgctxt "admin settings"
3765
  msgid ""
3766
  "Configure how many days after the expiration of a listing an e-mail reminder "
3769
  "Configure con cuántos días después de la fecha de expiración de un listado "
3770
  "debe enviarse un recordatorio al dueño."
3771
 
3772
+ #: core/class-settings.php:268
3773
  msgctxt "admin settings"
3774
  msgid "Post/Category Settings"
3775
  msgstr "Configuraciones de publicaciones/categorías"
3776
 
3777
+ #: core/class-settings.php:269
3778
  msgctxt "admin settings"
3779
  msgid "Default new post status"
3780
  msgstr "Estado por defecto de nuevas publicaciones"
3781
 
3782
+ #: core/class-settings.php:270 core/class-settings.php:273
3783
+ msgctxt "post status"
3784
+ msgid "Published"
3785
+ msgstr ""
3786
+
3787
+ #: core/class-settings.php:270 core/class-settings.php:273
3788
+ #, fuzzy
3789
+ msgctxt "post status"
3790
+ msgid "Pending"
3791
+ msgstr "Pendientes"
3792
+
3793
+ #: core/class-settings.php:272
3794
  msgctxt "admin settings"
3795
  msgid "Edit post status"
3796
  msgstr "Estado tras edición de una publicación"
3797
 
3798
+ #: core/class-settings.php:274
3799
  msgctxt "admin settings"
3800
  msgid "Order categories list by"
3801
  msgstr "Ordenar la lista de categorías por"
3802
 
3803
+ #: core/class-settings.php:276
3804
  msgctxt "admin settings"
3805
  msgid "Name"
3806
  msgstr "Nombre"
3807
 
3808
+ #: core/class-settings.php:277
3809
  msgctxt "admin settings"
3810
  msgid "Slug"
3811
  msgstr "Slug"
3812
 
3813
+ #: core/class-settings.php:278
3814
  msgctxt "admin settings"
3815
  msgid "Listing Count"
3816
  msgstr "Conteo de Listados"
3817
 
3818
+ #: core/class-settings.php:280
3819
  msgctxt "admin settings"
3820
  msgid "Sort order for categories"
3821
  msgstr "Orden de las categorías"
3822
 
3823
+ #: core/class-settings.php:281 core/class-settings.php:299
3824
  msgctxt "admin settings"
3825
  msgid "Ascending"
3826
  msgstr "Ascendente"
3827
 
3828
+ #: core/class-settings.php:281 core/class-settings.php:299
3829
  msgctxt "admin settings"
3830
  msgid "Descending"
3831
  msgstr "Descendente"
3832
 
3833
+ #: core/class-settings.php:282
3834
  msgctxt "admin settings"
3835
  msgid "Show category post count?"
3836
  msgstr "Mostrar conteo de listados para cada categoría?"
3837
 
3838
+ #: core/class-settings.php:283
3839
  msgctxt "admin settings"
3840
  msgid "Hide empty categories?"
3841
  msgstr "Ocultar categorías vacías?"
3842
 
3843
+ #: core/class-settings.php:284
3844
  msgctxt "admin settings"
3845
  msgid "Show only parent categories in category list?"
3846
  msgstr ""
3847
  "Mostrar únicamente las categorías de primer nivel en la lista de categorías?"
3848
 
3849
+ #: core/class-settings.php:286
3850
  msgctxt "admin settings"
3851
  msgid "Listings Sorting"
3852
  msgstr "Ordenamiento de Listados"
3853
 
3854
+ #: core/class-settings.php:287
3855
  msgctxt "admin settings"
3856
  msgid "Order directory listings by"
3857
  msgstr "Ordenar los listados del Directorio por"
3858
 
3859
+ #: core/class-settings.php:289
3860
  msgctxt "admin settings"
3861
  msgid "Title"
3862
  msgstr "Título"
3863
 
3864
+ #: core/class-settings.php:290
3865
  msgctxt "admin settings"
3866
  msgid "Author"
3867
  msgstr "Autor"
3868
 
3869
+ #: core/class-settings.php:291 core/class-settings.php:701
3870
  msgctxt "admin settings"
3871
  msgid "Date posted"
3872
  msgstr "Fecha de publicación"
3873
 
3874
+ #: core/class-settings.php:292 core/class-settings.php:702
3875
  msgctxt "admin settings"
3876
  msgid "Date last modified"
3877
  msgstr "Fecha de última modificación"
3878
 
3879
+ #: core/class-settings.php:293
3880
  msgctxt "admin settings"
3881
  msgid "Random"
3882
  msgstr "Aleatorio"
3883
 
3884
+ #: core/class-settings.php:294
3885
  msgctxt "admin settings"
3886
  msgid "Paid first then free. Inside each group by date."
3887
  msgstr "Pagos primero, luego gratuitos. Dentro de cada grupo, por fecha."
3888
 
3889
+ #: core/class-settings.php:295
3890
  msgctxt "admin settings"
3891
  msgid "Paid first then free. Inside each group by title."
3892
  msgstr "Pagos primero, luego gratuitos. Dentro de cada grupo por título."
3893
 
3894
+ #: core/class-settings.php:297
3895
  msgctxt "admin settings"
3896
  msgid "Sort directory listings by"
3897
  msgstr "Orden de los listados"
3898
 
3899
+ #: core/class-settings.php:298
3900
  msgctxt "admin settings"
3901
  msgid "Ascending for ascending order A-Z, Descending for descending order Z-A"
3902
  msgstr ""
3903
  "Ascendente para orden alfabético A-Z; Descendente para orden alfabético Z-A"
3904
 
3905
+ #: core/class-settings.php:303
3906
  msgctxt "admin settings"
3907
  msgid "Enable sort bar?"
3908
  msgstr "Habilitar barra de ordenamiento?"
3909
 
3910
+ #: core/class-settings.php:308
3911
  msgctxt "admin settings"
3912
  msgid "Sortbar Fields"
3913
  msgstr "Campos de \"barra de ordenamiento\""
3914
 
3915
+ #: core/class-settings.php:317
3916
  msgctxt "admin settings"
3917
  msgid "Featured (Sticky) listing settings"
3918
  msgstr "Configuración de Listados Destacados"
3919
 
3920
+ #: core/class-settings.php:318
3921
  msgctxt "admin settings"
3922
  msgid "Offer sticky listings?"
3923
  msgstr "Ofrecer listados destacados?"
3924
 
3925
+ #: core/class-settings.php:319
3926
  msgctxt "admin settings"
3927
  msgid "Offer upgrades during submit process?"
3928
  msgstr "Ofrecer mejoras a destacado durante el proceso de envío?"
3929
 
3930
+ #: core/class-settings.php:320
3931
  msgctxt "admin settings"
3932
  msgid "Sticky listing price"
3933
  msgstr "Precio de Listado Destacado"
3934
 
3935
+ #: core/class-settings.php:321
3936
  msgctxt "admin settings"
3937
  msgid "Sticky listing page description text"
3938
  msgstr "Texto descriptivo para Listados Destacados"
3939
 
3940
+ #: core/class-settings.php:322
3941
  msgctxt "admin settings"
3942
  msgid ""
3943
  "You can upgrade your listing to featured status. Featured listings will "
3946
  "Puede actualizar su listado a Destacado. Los listados destacados aparecen "
3947
  "siempre encima de los listados regulares."
3948
 
3949
+ #: core/class-settings.php:327
3950
  msgctxt "admin settings"
3951
  msgid "E-Mail"
3952
  msgstr "Correo Electrónico"
3953
 
3954
+ #: core/class-settings.php:331
3955
  msgctxt "admin settings"
3956
  msgid "Display email address fields publicly?"
3957
  msgstr "Mostrar direcciones de correo electrónico públicamente?"
3958
 
3959
+ #: core/class-settings.php:334
3960
  msgctxt "admin settings"
3961
  msgid ""
3962
  "Shows the email address of the listing owner to all web users. NOT "
3967
  "a todos los usuarios. NO RECOMENDADO pues puede resultar en un aumento de "
3968
  "spam."
3969
 
3970
+ #: core/class-settings.php:337
3971
  msgctxt "admin settings"
3972
  msgid "How to determine the listing's email address?"
3973
  msgstr "Cómo determinar el correo electrónico de un listado?"
3974
 
3975
+ #: core/class-settings.php:340
3976
  msgctxt "admin settings"
3977
  msgid ""
3978
  "This affects emails sent to listing owners via contact forms or when their "
3981
  "Esta configuración afecta cómo los dueños de los listados son contactados "
3982
  "cuando sus listados expiran o a través de los formularios de contacto."
3983
 
3984
+ #: core/class-settings.php:342
3985
  msgctxt "admin settings"
3986
  msgid "Try listing's email field first, then author's email."
3987
  msgstr ""
3988
 
3989
+ #: core/class-settings.php:343
3990
  msgctxt "admin settings"
3991
  msgid "Try author's email first and then listing's email field."
3992
  msgstr ""
3993
 
3994
+ #: core/class-settings.php:347
3995
  msgctxt "admin settings"
3996
  msgid "E-Mail Notifications"
3997
  msgstr "Notificaciones de correo-e"
3998
 
3999
+ #: core/class-settings.php:350
4000
  msgctxt "admin settings"
4001
  msgid "Notify admin via e-mail when..."
4002
  msgstr "Notificar al administrador cuando..."
4003
 
4004
+ #: core/class-settings.php:354
4005
  msgctxt "admin settings"
4006
  msgid "A new listing is submitted."
4007
  msgstr "Un nuevo listado ha sido enviado."
4008
 
4009
+ #: core/class-settings.php:355
4010
  msgctxt "admin settings"
4011
  msgid "A listing is edited."
4012
  msgstr "Un listado es editado."
4013
 
4014
+ #: core/class-settings.php:356
4015
  msgctxt "admin settings"
4016
  msgid "A listing expires."
4017
  msgstr "Un listado expira."
4018
 
4019
+ #: core/class-settings.php:357
4020
  msgctxt "admin settings"
4021
  msgid "A contact message is sent to a listing's owner."
4022
  msgstr "Un mensaje de contacto es enviado al dueño del listado."
4023
 
4024
+ #: core/class-settings.php:363
4025
  msgctxt "admin settings"
4026
  msgid "CC this e-mail address too"
4027
  msgstr "Copiar a esta dirección de correo también"
4028
 
4029
+ #: core/class-settings.php:369
4030
  msgctxt "admin settings"
4031
  msgid "Notify users via e-mail when..."
4032
  msgstr "Notificar usuarios vía correo-e cuando..."
4033
 
4034
+ #: core/class-settings.php:372
4035
  msgctxt "admin settings"
4036
  msgid "You can modify the text template used for most of these e-mails below."
4037
  msgstr ""
4038
  "Puede modificar la plantilla de texto utilizada para la mayoría de estos "
4039
  "correos electrónicos abajo."
4040
 
4041
+ #: core/class-settings.php:373
4042
  msgctxt "admin settings"
4043
  msgid "Their listing is submitted."
4044
  msgstr "Su listado ha sido recibido."
4045
 
4046
+ #: core/class-settings.php:374
4047
  msgctxt "admin settings"
4048
  msgid "Their listing is approved/published."
4049
  msgstr "Su listado ha sido aprobado/publicado."
4050
 
4051
+ #: core/class-settings.php:383
4052
  msgctxt "contact email"
4053
  msgid "You have received a reply from your listing at %s."
4054
  msgstr "Ha recibido una comunicación para su listado en %s."
4055
 
4056
+ #: core/class-settings.php:384
4057
  msgctxt "contact email"
4058
  msgid "Name: %s"
4059
  msgstr "Nombre: %s"
4060
 
4061
+ #: core/class-settings.php:385
4062
  msgctxt "contact email"
4063
  msgid "E-Mail: %s"
4064
  msgstr "Correo Electrónico: %s"
4065
 
4066
+ #: core/class-settings.php:386
4067
  msgctxt "contact email"
4068
  msgid "Message:"
4069
  msgstr "Mensaje:"
4070
 
4071
+ #: core/class-settings.php:388
4072
  msgctxt "contact email"
4073
  msgid "Time: %s"
4074
  msgstr "Hora: %s"
4075
 
4076
+ #: core/class-settings.php:390
4077
  msgctxt "admin settings"
4078
  msgid "E-Mail Templates"
4079
  msgstr "Plantillas de Correo Electrónico"
4080
 
4081
+ #: core/class-settings.php:393
4082
  msgctxt "admin settings"
4083
  msgid "Email confirmation message"
4084
  msgstr "Mensaje de Confirmación"
4085
 
4086
+ #: core/class-settings.php:397
4087
  msgctxt "admin settings"
4088
  msgid "Sent after a listing has been submitted."
4089
  msgstr "Enviado luego de que el listado ha sido recibido."
4090
 
4091
+ #: core/class-settings.php:398 core/class-settings.php:406
4092
+ #: core/class-settings.php:447
4093
  msgctxt "admin settings"
4094
  msgid "Listing's title"
4095
  msgstr "Título del Listado"
4096
 
4097
+ #: core/class-settings.php:401
4098
  msgctxt "admin settings"
4099
  msgid "Listing published message"
4100
  msgstr "Mensaje de listado publicado"
4101
 
4102
+ #: core/class-settings.php:404
4103
  msgctxt "admin settings"
4104
  msgid ""
4105
  "Your listing \"[listing]\" is now available at [listing-url] and can be "
4108
  "Su listado \"[listing]\" está ahora disponible en [listing-url] y puede ser "
4109
  "visto por el público."
4110
 
4111
+ #: core/class-settings.php:405
4112
  msgctxt "admin settings"
4113
  msgid "Sent when the listing has been published or approved by an admin."
4114
  msgstr ""
4115
  "Enviado cuando el listado ha sido publicado o aprobado por un administrador."
4116
 
4117
+ #: core/class-settings.php:407
4118
  msgctxt "admin settings"
4119
  msgid "Listing's URL"
4120
  msgstr "URL del listado"
4121
 
4122
+ #: core/class-settings.php:411
4123
  msgctxt "admin settings"
4124
  msgid "Listing Contact Message"
4125
  msgstr "Mensaje de contacto"
4126
 
4127
+ #: core/class-settings.php:415
4128
  msgctxt "admin settings"
4129
  msgid ""
4130
  "Sent to listing owners when someone uses the contact form on their listing "
4133
  "Enviado a los dueños de listados cuando alguien utiliza el formulario de "
4134
  "contacto en sus páginas."
4135
 
4136
+ #: core/class-settings.php:425
4137
  msgctxt "admin settings"
4138
  msgid "Payment related"
4139
  msgstr "Relativo al pago"
4140
 
4141
+ #: core/class-settings.php:442
4142
  msgctxt "admin settings"
4143
  msgid "Payment abandoned reminder message"
4144
  msgstr "Recordatorio de pagos abandonados"
4145
 
4146
+ #: core/class-settings.php:446
4147
  msgctxt "admin settings"
4148
  msgid "Sent some time after a pending payment is abandoned by users."
4149
  msgstr ""
4150
  "Enviado algún tiempo después de que un pago pendiente es abandonado por los "
4151
  "usuarios."
4152
 
4153
+ #: core/class-settings.php:448
4154
  msgctxt "admin settings"
4155
  msgid "Checkout URL link"
4156
  msgstr "Link a la URL de pago"
4157
 
4158
+ #: core/class-settings.php:454
4159
  msgctxt "admin settings"
4160
  msgid "Renewal Reminders"
4161
  msgstr "Recordatorios de Renovación"
4162
 
4163
+ #: core/class-settings.php:457
4164
  msgctxt "admin settings"
4165
  msgid ""
4166
  "This section refers only to the text of the renewal/expiration notices. You "
4170
  "renovación/expiración. También puede <a>configurar cuándo estos correos son "
4171
  "enviados</a>."
4172
 
4173
+ #: core/class-settings.php:461
4174
  msgctxt "admin settings"
4175
  msgid "Pending expiration e-mail message"
4176
  msgstr "Mensaje correo electrónico sobre expiración pendiente"
4177
 
4178
+ #: core/class-settings.php:465
4179
  msgctxt "settings"
4180
  msgid ""
4181
  "Sent some time before the listing expires. Applies to non-recurring renewals "
4184
  "Enviado un tiempo antes de que el listado expire. Aplica para renovaciones "
4185
  "no recurrentes únicamente."
4186
 
4187
+ #: core/class-settings.php:466 core/class-settings.php:479
4188
+ #: core/class-settings.php:492 core/class-settings.php:505
4189
+ #: core/class-settings.php:518
4190
  msgctxt "settings"
4191
  msgid "Listing's name (with link)"
4192
  msgstr "Título del listado (con enlace)"
4193
 
4194
+ #: core/class-settings.php:467 core/class-settings.php:480
4195
+ #: core/class-settings.php:493 core/class-settings.php:506
4196
+ #: core/class-settings.php:519
4197
  msgctxt "settings"
4198
  msgid "Author's name"
4199
  msgstr "Autor del listado"
4200
 
4201
+ #: core/class-settings.php:468 core/class-settings.php:481
4202
+ #: core/class-settings.php:520
4203
  msgctxt "settings"
4204
  msgid "Expiration date"
4205
  msgstr "Fecha de expiración"
4206
 
4207
+ #: core/class-settings.php:469
4208
  msgctxt "settings"
4209
  msgid "Category that is going to expire"
4210
  msgstr "Categoría que va a expirar"
4211
 
4212
+ #: core/class-settings.php:470 core/class-settings.php:483
4213
+ #: core/class-settings.php:522
4214
  msgctxt "settings"
4215
  msgid "Link to renewal page"
4216
  msgstr "Enlace a la página de renovación"
4217
 
4218
+ #: core/class-settings.php:471 core/class-settings.php:484
4219
+ #: core/class-settings.php:496 core/class-settings.php:509
4220
+ #: core/class-settings.php:523
4221
  msgctxt "settings"
4222
  msgid "Link to your site"
4223
  msgstr "Enlace a su sitio"
4224
 
4225
+ #: core/class-settings.php:474
4226
  msgctxt "admin settings"
4227
  msgid "Listing Renewal e-mail message"
4228
  msgstr "Mensaje de correo electrónico sobre Renovación del Listado"
4229
 
4230
+ #: core/class-settings.php:478
4231
  msgctxt "settings"
4232
  msgid ""
4233
  "Sent at the time of listing expiration. Applies to non-recurring renewals "
4236
  "Enviado al momento de expiración del listado. Aplica a renovaciones no "
4237
  "recurrentes únicamente."
4238
 
4239
+ #: core/class-settings.php:482 core/class-settings.php:521
4240
  msgctxt "settings"
4241
  msgid "Category that expired"
4242
  msgstr "Categoría que expiró"
4243
 
4244
+ #: core/class-settings.php:487
4245
  msgctxt "admin settings"
4246
  msgid "Listing auto-renewal reminder (recurring payments)"
4247
  msgstr "Recordatorio de auto-renovación del listado (pagos recurrentes)"
4248
 
4249
+ #: core/class-settings.php:491
4250
  msgctxt "settings"
4251
  msgid ""
4252
  "Sent some time before the listing is auto-renewed. Applies to recurring "
4255
  "Enviado algún tiempo antes de que el listado sea auto-renovado. Aplica a "
4256
  "renovaciones recurrentes únicamente."
4257
 
4258
+ #: core/class-settings.php:494 core/class-settings.php:508
4259
  msgctxt "settings"
4260
  msgid "Renewal date"
4261
  msgstr "Fecha de renovación"
4262
 
4263
+ #: core/class-settings.php:495
4264
  msgctxt "settings"
4265
  msgid "Category that is going to be renewed"
4266
  msgstr "Categoría que será renovada"
4267
 
4268
+ #: core/class-settings.php:497
4269
  msgctxt "settings"
4270
  msgid "Link to manage subscriptions"
4271
  msgstr "Enlace a la página de administración de pagos recurrentes"
4272
 
4273
+ #: core/class-settings.php:500
4274
  msgctxt "admin settings"
4275
  msgid "Listing Renewal e-mail message (recurring payments)"
4276
  msgstr ""
4277
  "Mensaje de correo electrónico sobre Renovación del Listado (para pago "
4278
  "automático)"
4279
 
4280
+ #: core/class-settings.php:504
4281
  msgctxt "settings"
4282
  msgid ""
4283
  "Sent after the listing is auto-renewed. Applies to recurring renewals only."
4285
  "Enviado luego de que el listado sea auto-renovado. Aplica a renovaciones "
4286
  "recurrentes únicamente."
4287
 
4288
+ #: core/class-settings.php:507
4289
  msgctxt "settings"
4290
  msgid "Renewed category"
4291
  msgstr "Categoría renovada"
4292
 
4293
+ #: core/class-settings.php:513
4294
  msgctxt "admin settings"
4295
  msgid "Renewal reminder e-mail message"
4296
  msgstr "Recordatorio por correo electrónico de renovación del listado"
4297
 
4298
+ #: core/class-settings.php:517
4299
  msgctxt "settings"
4300
  msgid ""
4301
  "Sent some time after listing expiration and when no renewal has occurred. "
4304
  "Enviado un tiempo después de que el listado expire y no haya sido renovado. "
4305
  "Aplica tanto a renovaciones recurrentes como no recurrentes."
4306
 
4307
+ #: core/class-settings.php:527
4308
  msgctxt "admin settings"
4309
  msgid "Payment"
4310
  msgstr "Pago"
4311
 
4312
+ #: core/class-settings.php:528
4313
  msgctxt "admin settings"
4314
  msgid "Payment Settings"
4315
  msgstr "Configuración de Pago"
4316
 
4317
+ #: core/class-settings.php:531
4318
  msgctxt "admin settings"
4319
  msgid "Turn On payments?"
4320
  msgstr "Activar pagos?"
4321
 
4322
+ #: core/class-settings.php:533
4323
  msgctxt "admin settings"
4324
  msgid "Put payment gateways in test mode?"
4325
  msgstr "Utilizar las pasarelas de pago en modo de prueba?"
4326
 
4327
+ #: core/class-settings.php:538
4328
  msgctxt "admin settings"
4329
  msgid "Perform checkouts on the secure (HTTPS) version of your site?"
4330
  msgstr "Realizar pagos en la versión segura (HTTPS) de su sitio?"
4331
 
4332
+ #: core/class-settings.php:541
4333
  msgctxt "admin settings"
4334
  msgid ""
4335
  "Recommended for added security. For this to work you need to enable HTTPS on "
4338
  "Recomendado para seguridad extra. Para que funcione debe tener habilitado "
4339
  "HTTPS en su servidor y <a>obtener un certificado SSL</a>."
4340
 
4341
+ #: core/class-settings.php:545
4342
  msgctxt "admin settings"
4343
  msgid "Currency Code"
4344
  msgstr "Código de Moneda"
4345
 
4346
+ #: core/class-settings.php:547
4347
  msgctxt "admin settings"
4348
  msgid "Australian Dollar (AUD)"
4349
  msgstr "Dólar Australiano (AUD)"
4350
 
4351
+ #: core/class-settings.php:548
4352
  msgctxt "admin settings"
4353
  msgid "Brazilian Real (BRL)"
4354
  msgstr "Real Brasilero (BRL)"
4355
 
4356
+ #: core/class-settings.php:549
4357
  msgctxt "admin settings"
4358
  msgid "Canadian Dollar (CAD)"
4359
  msgstr "Dólar Canadiense (CAD)"
4360
 
4361
+ #: core/class-settings.php:550
4362
  msgctxt "admin settings"
4363
  msgid "Czech Koruna (CZK)"
4364
  msgstr "Corona Checa (CZK)"
4365
 
4366
+ #: core/class-settings.php:551
4367
  msgctxt "admin settings"
4368
  msgid "Danish Krone (DKK)"
4369
  msgstr "Corona Danesa (DKK)"
4370
 
4371
+ #: core/class-settings.php:552
4372
  msgctxt "admin settings"
4373
  msgid "Euro (EUR)"
4374
  msgstr "Euro (EUR)"
4375
 
4376
+ #: core/class-settings.php:553
4377
  msgctxt "admin settings"
4378
  msgid "Hong Kong Dollar (HKD)"
4379
  msgstr "Dólar de Hong Kong (HKD)"
4380
 
4381
+ #: core/class-settings.php:554
4382
  msgctxt "admin settings"
4383
  msgid "Hungarian Forint (HUF)"
4384
  msgstr "Forinte Húngaro (HUF)"
4385
 
4386
+ #: core/class-settings.php:555
4387
  msgctxt "admin settings"
4388
  msgid "Israeli New Shequel (ILS)"
4389
  msgstr "Nuevo Shékel Israelí (ILS)"
4390
 
4391
+ #: core/class-settings.php:556
4392
  msgctxt "admin settings"
4393
  msgid "Japanese Yen (JPY)"
4394
  msgstr "Yen Japonés (JPY)"
4395
 
4396
+ #: core/class-settings.php:557
4397
  msgctxt "admin settings"
4398
  msgid "Malasian Ringgit (MYR)"
4399
  msgstr "Ringgit de Malasia (MYR)"
4400
 
4401
+ #: core/class-settings.php:558
4402
  msgctxt "admin settings"
4403
  msgid "Mexican Peso (MXN)"
4404
  msgstr "Peso Mexicano (MXN)"
4405
 
4406
+ #: core/class-settings.php:559
4407
  msgctxt "admin settings"
4408
  msgid "Norwegian Krone (NOK)"
4409
  msgstr "Corona Noruega (NOK)"
4410
 
4411
+ #: core/class-settings.php:560
4412
  msgctxt "admin settings"
4413
  msgid "New Zealand Dollar (NZD)"
4414
  msgstr "Dólar de Nueva Zelanda (NZD)"
4415
 
4416
+ #: core/class-settings.php:561
4417
  msgctxt "admin settings"
4418
  msgid "Philippine Peso (PHP)"
4419
  msgstr "Peso Filipino (PHP)"
4420
 
4421
+ #: core/class-settings.php:562
4422
  msgctxt "admin settings"
4423
  msgid "Polish Zloty (PLN)"
4424
  msgstr "Zloty Polaco (PLN)"
4425
 
4426
+ #: core/class-settings.php:563
4427
  msgctxt "admin settings"
4428
  msgid "Pound Sterling (GBP)"
4429
  msgstr "Libra Esterlina (GBP)"
4430
 
4431
+ #: core/class-settings.php:564
4432
  msgctxt "admin settings"
4433
  msgid "Singapore Dollar (SGD)"
4434
  msgstr "Dólar de Singapur (SGD)"
4435
 
4436
+ #: core/class-settings.php:565
4437
  msgctxt "admin settings"
4438
  msgid "Swedish Krona (SEK)"
4439
  msgstr "Corona Sueca (SEK)"
4440
 
4441
+ #: core/class-settings.php:566
4442
  msgctxt "admin settings"
4443
  msgid "Swiss Franc (CHF)"
4444
  msgstr "Franco Suizo (CHF)"
4445
 
4446
+ #: core/class-settings.php:567
4447
  msgctxt "admin settings"
4448
  msgid "Taiwan Dollar (TWD)"
4449
  msgstr "Dólar de Taiwán (TWD)"
4450
 
4451
+ #: core/class-settings.php:568
4452
  msgctxt "admin settings"
4453
  msgid "Thai Baht (THB)"
4454
  msgstr "Baht de Tailandia (THB)"
4455
 
4456
+ #: core/class-settings.php:569
4457
  msgctxt "admin settings"
4458
  msgid "Turkish Lira (TRY)"
4459
  msgstr "Lira Turca (TRY)"
4460
 
4461
+ #: core/class-settings.php:570
4462
  msgctxt "admin settings"
4463
  msgid "U.S. Dollar (USD)"
4464
  msgstr "Dólar Americano (USD)"
4465
 
4466
+ #: core/class-settings.php:574
4467
  msgctxt "admin settings"
4468
  msgid "Currency Symbol"
4469
  msgstr "Símbolo de Moneda"
4470
 
4471
+ #: core/class-settings.php:579
4472
  msgctxt "admin settings"
4473
  msgid "Currency symbol display"
4474
  msgstr "Presentación de símbolo de moneda"
4475
 
4476
+ #: core/class-settings.php:583
4477
  msgctxt "admin settings"
4478
  msgid "Show currency symbol on the left"
4479
  msgstr "Mostrar el símbolo de moneda a la izquierda"
4480
 
4481
+ #: core/class-settings.php:584
4482
  msgctxt "admin settings"
4483
  msgid "Show currency symbol on the right"
4484
  msgstr "Mostrar el símbolo de moneda a la derecha"
4485
 
4486
+ #: core/class-settings.php:585
4487
  msgctxt "admin settings"
4488
  msgid "Do not show currency symbol"
4489
  msgstr "No mostrar el símbolo de moneda"
4490
 
4491
+ #: core/class-settings.php:587
4492
  msgctxt "admin settings"
4493
  msgid "Thank you for payment message"
4494
  msgstr "Mensaje de agradecimiento por el pago"
4495
 
4496
+ #: core/class-settings.php:588
4497
  msgctxt "admin settings"
4498
  msgid ""
4499
  "Thank you for your payment. Your payment is being verified and your listing "
4502
  "Gracias por su pago. Su pago está siendo verificado y su listado revisado. "
4503
  "Este proceso puede tardar hasta 48 horas."
4504
 
4505
+ #: core/class-settings.php:593
4506
  msgctxt "admin settings"
4507
  msgid "Ask users to come back for abandoned payments?"
4508
  msgstr ""
4509
  "Contactar a los usuarios para pedirles que regresen a pagar pagos pendientes?"
4510
 
4511
+ #: core/class-settings.php:596
4512
  msgctxt "admin settings"
4513
  msgid ""
4514
  "An abandoned payment is when a user attempts to place a listing and gets to "
4521
  "en listados que parece que fallaron cuando el usuario simplemente no "
4522
  "completó la transacción. BD puede recordarles para que efectúen el pago."
4523
 
4524
+ #: core/class-settings.php:602
4525
  msgctxt "admin settings"
4526
  msgid "Listing abandonment threshold (hours)"
4527
  msgstr "Tiempo tras el cual el listado es considerado abandonado (en horas)"
4528
 
4529
+ #: core/class-settings.php:607
4530
  msgctxt "admin settings"
4531
  msgid ""
4532
  "Listings with pending payments are marked as abandoned after this time. You "
4536
  "tiempo. También puede <a>personalizar el correo-e</a> que los usuarios "
4537
  "reciben."
4538
 
4539
+ #: core/class-settings.php:612
4540
  msgctxt "admin settings"
4541
  msgid "Themes"
4542
  msgstr ""
4543
 
4544
+ #: core/class-settings.php:614
4545
  msgctxt "admin settings"
4546
  msgid "You can manage your themes on <a>Directory Themes</a>."
4547
  msgstr ""
4548
 
4549
+ #: core/class-settings.php:619
4550
  msgctxt "admin settings"
4551
  msgid "Theme button style"
4552
  msgstr ""
4553
 
4554
+ #: core/class-settings.php:623
4555
  msgctxt "admin settings"
4556
  msgid "Use the BD theme style for BD buttons"
4557
  msgstr ""
4558
 
4559
+ #: core/class-settings.php:624
4560
  msgctxt "admin settings"
4561
  msgid "Use the WP theme style for BD buttons"
4562
  msgstr ""
4563
 
4564
+ #: core/class-settings.php:631
4565
  msgctxt "admin settings"
4566
  msgid "Image"
4567
  msgstr "Imágenes"
4568
 
4569
+ #: core/class-settings.php:632
4570
  msgctxt "admin settings"
4571
  msgid ""
4572
  "Any changes to these settings will affect new listings only. Existing "
4579
  "existentes, deberá subir de nuevo las imágenes necesarias luego de hacer los "
4580
  "cambios aquí."
4581
 
4582
+ #: core/class-settings.php:633
4583
  msgctxt "admin settings"
4584
  msgid "Image Settings"
4585
  msgstr "Configuración de Imágenes"
4586
 
4587
+ #: core/class-settings.php:634
4588
  msgctxt "admin settings"
4589
  msgid "Allow images?"
4590
  msgstr "Permitir imágenes?"
4591
 
4592
+ #: core/class-settings.php:636
4593
  msgctxt "admin settings"
4594
  msgid "Min Image File Size (KB)"
4595
  msgstr "Tamaño mínimo de imagen (KB)"
4596
 
4597
+ #: core/class-settings.php:637
4598
  msgctxt "admin settings"
4599
  msgid "Max Image File Size (KB)"
4600
  msgstr "Tamaño máximo de imagen (KB)"
4601
 
4602
+ #: core/class-settings.php:639
4603
  msgctxt "admin settings"
4604
  msgid "Min image width (px)"
4605
  msgstr "Ancho mínimo de imagen (en px)"
4606
 
4607
+ #: core/class-settings.php:640
4608
  msgctxt "admin settings"
4609
  msgid "Min image height (px)"
4610
  msgstr "Alto mínimo de imagen (en px)"
4611
 
4612
+ #: core/class-settings.php:642
4613
  msgctxt "admin settings"
4614
  msgid "Max image width (px)"
4615
  msgstr "Ancho máximo de imagen (px)"
4616
 
4617
+ #: core/class-settings.php:643
4618
  msgctxt "admin settings"
4619
  msgid "Max image height (px)"
4620
  msgstr "Alto máximo de imagen (px)"
4621
 
4622
+ #: core/class-settings.php:645
4623
  msgctxt "admin settings"
4624
  msgid "Turn on thickbox/lightbox?"
4625
  msgstr "Activar Thickbox/Lightbox?"
4626
 
4627
+ #: core/class-settings.php:645
4628
  msgctxt "admin settings"
4629
  msgid ""
4630
  "Uncheck if it conflicts with other elements or plugins installed on your site"
4632
  "Desmarque si entra en conflicto con otros elementos o plugins instalados en "
4633
  "su sitio"
4634
 
4635
+ #: core/class-settings.php:647
4636
  msgctxt "admin settings"
4637
  msgid "Thumbnails"
4638
  msgstr "Imágenes de previsualización"
4639
 
4640
+ #: core/class-settings.php:648
4641
  msgctxt "admin settings"
4642
  msgid "Thumbnail width (px)"
4643
  msgstr "Ancho de thumbnail (px)"
4644
 
4645
+ #: core/class-settings.php:649
4646
  msgctxt "admin settings"
4647
  msgid "Thumbnail height (px)"
4648
  msgstr "Alto de thumbnail (px)"
4649
 
4650
+ #: core/class-settings.php:652
4651
  msgctxt "admin settings"
4652
  msgid "Crop thumbnails to exact dimensions?"
4653
  msgstr "Cortar imágenes de previsualización a las dimensiones exactas?"
4654
 
4655
+ #: core/class-settings.php:655
4656
  msgctxt "admin settings"
4657
  msgid ""
4658
  "When enabled images will match exactly the dimensions above but part of the "
4666
  "alto será ajustado proporcionalmente. Dependiendo de las imágenes que se "
4667
  "hayan utilizado, estas podrían tener diferentes alturas."
4668
 
4669
+ #: core/class-settings.php:661
4670
  msgctxt "admin settings"
4671
  msgid "Number of free images"
4672
  msgstr "Número de imágenes gratuitas"
4673
 
4674
+ #: core/class-settings.php:666
4675
  msgctxt "admin settings"
4676
  msgid ""
4677
  "For paid listing images, configure that by adding or editing a <a>Fee Plan</"
4680
  "Configure las imágenes de listados pagos agregando o editando una "
4681
  "<a>comisión</a> pues este valor será ignorado para listados pagos."
4682
 
4683
+ #: core/class-settings.php:669
4684
  msgctxt "admin settings"
4685
  msgid "Use default picture for listings with no picture?"
4686
  msgstr "Utilizar imagen por defecto en listados sin imagen?"
4687
 
4688
+ #: core/class-settings.php:670
4689
  msgctxt "admin settings"
4690
  msgid "Show Thumbnail on main listings page?"
4691
  msgstr "Mostrar thumbnails en las páginas principales?"
4692
 
4693
+ #: core/class-settings.php:699
4694
  msgctxt "admin settings"
4695
  msgid "User"
4696
  msgstr ""
4697
 
4698
+ #: core/class-settings.php:700
4699
  #, fuzzy
4700
  msgctxt "admin settings"
4701
  msgid "User registration date"
4702
  msgstr "Fecha de expiración del listado"
4703
 
4704
+ #: core/class-settings.php:726
4705
  msgctxt "admin settings"
4706
  msgid ""
4707
  "Could not copy the AJAX compatibility plugin \"%s\". Compatibility mode was "
4710
  "No se pudo copiar el plugin de compatibilidad AJAX \"%s\". El modo de "
4711
  "compatibilidad no fue activado."
4712
 
4713
+ #: core/class-settings.php:734
4714
  msgctxt "admin settings"
4715
  msgid ""
4716
  "Could not activate AJAX Compatibility mode: the directory \"%s\" could not "
4719
  "No se pudo activar el modo de compatibilidad AJAX: el directorio \"%s\" no "
4720
  "pudo ser creado."
4721
 
4722
+ #: core/class-settings.php:743
4723
  msgctxt "admin settings"
4724
  msgid ""
4725
  "Could not remove the \"Business Directory Plugin - AJAX Compatibility Module"
4728
  "No se pudo remover \"Business Directory Plugin - AJAX Compatibility Module"
4729
  "\". Por favor elimine el archivo \"%s\" manualmente o desactive el plugin."
4730
 
4731
+ #: core/class-settings.php:1063
4732
  msgctxt "settings"
4733
  msgid "Deactivate License"
4734
  msgstr "Desactivar Licencia"
4735
 
4736
+ #: core/class-settings.php:1065
4737
  msgctxt "settings"
4738
  msgid "Deactivating license..."
4739
  msgstr "Desactivando licencia..."
4740
 
4741
+ #: core/class-settings.php:1068
4742
  msgctxt "settings"
4743
  msgid "Activate License"
4744
  msgstr "Activar Licencia"
4745
 
4746
+ #: core/class-settings.php:1070
4747
  msgctxt "settings"
4748
  msgid "Activating license..."
4749
  msgstr "Activando licencia..."
4750
 
4751
+ #: core/class-settings.php:1093
4752
  msgctxt "admin settings"
4753
  msgid "Valid placeholders: %s"
4754
  msgstr "Comodines válidos: %s"
4755
 
4756
+ #: core/class-settings.php:1127
4757
  msgctxt "settings email"
4758
  msgid "Click to edit e-mail"
4759
  msgstr "Click para editar el correo"
4760
 
4761
+ #: core/class-settings.php:1128
4762
  msgctxt "settings email"
4763
  msgid "Click to edit"
4764
  msgstr "Click para editar"
4765
 
4766
+ #: core/class-settings.php:1141
4767
  msgctxt "settings email"
4768
  msgid "E-Mail Subject"
4769
  msgstr "Título del correo"
4770
 
4771
+ #: core/class-settings.php:1152
4772
  msgctxt "settings email"
4773
  msgid "E-Mail Body"
4774
  msgstr "Cuerpo del correo"
4775
 
4776
+ #: core/class-settings.php:1163
4777
  msgctxt "settings email"
4778
  msgid "You can use the following placeholders:"
4779
  msgstr "Puede utilizar los siguientes comodines:"
4780
 
4781
+ #: core/class-settings.php:1186
4782
  msgctxt "settings email"
4783
  msgid "Preview e-mail"
4784
  msgstr "Previsualizar correo"
4785
 
4786
+ #: core/class-settings.php:1187
4787
  msgctxt "settings email"
4788
  msgid "Cancel"
4789
  msgstr "Cancelar"
4790
 
4791
+ #: core/class-settings.php:1188
4792
  msgctxt "settings email"
4793
  msgid "Save Changes"
4794
  msgstr "Guardar Cambios"
4795
 
4796
+ #: core/class-settings.php:1207
4797
  msgctxt "settings email"
4798
  msgid "Site title"
4799
  msgstr "Título del sitio"
4800
 
4801
+ #: core/class-settings.php:1210
4802
  msgctxt "settings email"
4803
  msgid "Site title (with link)"
4804
  msgstr "Título del listado (con enlace)"
4805
 
4806
+ #: core/class-settings.php:1213
4807
  msgctxt "settings email"
4808
  msgid "Site address (with link)"
4809
  msgstr "Dirección del listado (con enlace)"
4810
 
4811
+ #: core/class-settings.php:1216
4812
  msgctxt "settings email"
4813
  msgid "Directory URL (with link)"
4814
  msgstr "URL del Directorio (con enlace)"
4815
 
4816
+ #: core/class-settings.php:1219
4817
  msgctxt "settings email"
4818
  msgid "Current date"
4819
  msgstr "Fecha actual"
4820
 
4821
+ #: core/class-settings.php:1222
4822
  msgctxt "settings email"
4823
  msgid "Current time"
4824
  msgstr "Hora actual"
7391
  #~ msgid "Approved"
7392
  #~ msgstr "Aprobadas"
7393
 
 
 
 
 
7394
  #~ msgctxt "admin transactions"
7395
  #~ msgid "Rejected"
7396
  #~ msgstr "Rechazadas"
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-06-21 22:32:39+00:00\n"
8
  "PO-Revision-Date: 2016-02-24 15:34-0500\n"
9
  "Last-Translator: BD Team <support@businessdirectoryplugin.com>\n"
10
  "Language-Team: BD Team <support@businessdirectoryplugin.com>\n"
@@ -2229,7 +2229,7 @@ msgstr ""
2229
  "Veuillez voir la <a>Documentation de champs de formulaire</a> pour plus de "
2230
  "détails."
2231
 
2232
- #. #-#-#-#-# WPBDM.pot (Business Directory Plugin 4.0.7) #-#-#-#-#
2233
  #. Plugin Name of the plugin/theme
2234
  #: admin/templates/header.tpl.php:4
2235
  msgid "Business Directory Plugin"
@@ -3446,6 +3446,14 @@ msgstr ""
3446
  "Affiche et nécessite l'accord de l'utilisateur avec les conditions "
3447
  "d'utilisation"
3448
 
 
 
 
 
 
 
 
 
3449
  #: core/class-settings.php:107
3450
  msgctxt "admin settings"
3451
  msgid ""
@@ -3586,13 +3594,13 @@ msgctxt "admin settings"
3586
  msgid "Enable AJAX compatibility mode?"
3587
  msgstr "Activer le mode de comptabilité AJAX ?"
3588
 
3589
- #: core/class-settings.php:179 core/class-settings.php:660
3590
  msgctxt "admin settings"
3591
  msgid "Listings"
3592
  msgstr "Annonces"
3593
 
3594
- #: core/class-settings.php:180 core/class-settings.php:330
3595
- #: core/class-settings.php:617
3596
  msgctxt "admin settings"
3597
  msgid "General Settings"
3598
  msgstr "Paramètres généraux"
@@ -3683,18 +3691,28 @@ msgctxt "admin settings"
3683
  msgid "Status of listings upon uninstalling plugin"
3684
  msgstr "Statut des annonces dès la désinstallation du plugin"
3685
 
 
 
 
 
 
 
 
 
 
 
3686
  #: core/class-settings.php:220
3687
  msgctxt "admin settings"
3688
  msgid "Status of deleted listings"
3689
  msgstr "Statut des annonces effacées"
3690
 
3691
- #: core/class-settings.php:223
3692
  #, fuzzy
3693
  msgctxt "admin settings"
3694
  msgid "Submit Listing instructions message"
3695
  msgstr "Lister des messages de contact"
3696
 
3697
- #: core/class-settings.php:223
3698
  msgctxt "admin settings"
3699
  msgid ""
3700
  "This text is displayed at the first page of the Submit Listing process for "
@@ -3702,22 +3720,22 @@ msgid ""
3702
  "form or anything you want to tell users before they get started."
3703
  msgstr ""
3704
 
3705
- #: core/class-settings.php:226
3706
  msgctxt "admin settings"
3707
  msgid "Listing Renewal"
3708
  msgstr "Renouvellement des annonces"
3709
 
3710
- #: core/class-settings.php:227
3711
  msgctxt "admin settings"
3712
  msgid "Turn on listing renewal option?"
3713
  msgstr "Activer l'option renouvellement des annonces ?"
3714
 
3715
- #: core/class-settings.php:230
3716
  msgctxt "admin settings"
3717
  msgid "Allow recurring renewal payments?"
3718
  msgstr "Autoriser les paiements récurrents de renouvellement ?"
3719
 
3720
- #: core/class-settings.php:233
3721
  msgctxt "admin settings"
3722
  msgid ""
3723
  "Allow users to opt in for automatic renewal of their listings. The fee is "
@@ -3727,13 +3745,13 @@ msgstr ""
3727
  "leurs annonces. La redevance est perçue au moment de l'inscription et expire "
3728
  "sans intervention de l'utilisateur."
3729
 
3730
- #: core/class-settings.php:237
3731
  msgctxt "admin settings"
3732
  msgid "Use recurring payments as the default payment method?"
3733
  msgstr ""
3734
  "Utiliser les paiements récurrents comme méthode de paiement par défaut?"
3735
 
3736
- #: core/class-settings.php:240
3737
  msgctxt "admin settings"
3738
  msgid ""
3739
  "Enable automatic renewal without having users opt in during the submit "
@@ -3742,13 +3760,13 @@ msgstr ""
3742
  "Activer le renouvellement automatique sans avoir à avertir les utilisateurs "
3743
  "lors du processus de soumission."
3744
 
3745
- #: core/class-settings.php:245
3746
  msgctxt "admin settings"
3747
  msgid "Listing renewal e-mail threshold (in days)"
3748
  msgstr "Seuil de renouvellement des annonces par e-mail (en jours)"
3749
 
3750
  # Todo as soon as possible. I don't understand exactly what does this sentence...
3751
- #: core/class-settings.php:248
3752
  msgctxt "admin settings"
3753
  msgid ""
3754
  "Configure how many days before listing expiration is the renewal e-mail sent."
@@ -3756,7 +3774,7 @@ msgstr ""
3756
  "Configurer le nombre de jours avant l'expiration des annonces doit se "
3757
  "dérouler le renouvellement d'envoi d'e-mail."
3758
 
3759
- #: core/class-settings.php:252
3760
  msgctxt "admin settings"
3761
  msgid ""
3762
  "Send expiration notices including a cancel links to auto-renewed listings?"
@@ -3764,19 +3782,19 @@ msgstr ""
3764
  "Envoyer des avis d'expiration y compris un lien d'annulation vers le "
3765
  "renouvellement automatique des annonces ?"
3766
 
3767
- #: core/class-settings.php:259
3768
  msgctxt "admin settings"
3769
  msgid "Remind listing owners of expired listings (past due)?"
3770
  msgstr ""
3771
  "Rappeler les propriétaires des annonces lorsque ces dernières arrives à "
3772
  "expiration (en souffrance)?"
3773
 
3774
- #: core/class-settings.php:264
3775
  msgctxt "admin settings"
3776
  msgid "Listing renewal reminder e-mail threshold (in days)"
3777
  msgstr "Seuil du renouvellement des rappels e-mail des annonces (en jours)"
3778
 
3779
- #: core/class-settings.php:267
3780
  msgctxt "admin settings"
3781
  msgid ""
3782
  "Configure how many days after the expiration of a listing an e-mail reminder "
@@ -3785,164 +3803,175 @@ msgstr ""
3785
  "Configurer le nombre de jours après l'expiration d'une annonces d'un rappel "
3786
  "avant qu'un e-mail soit envoyé au propriétaire."
3787
 
3788
- #: core/class-settings.php:270
3789
  msgctxt "admin settings"
3790
  msgid "Post/Category Settings"
3791
  msgstr "Paramètres de Messages/Catégories"
3792
 
3793
- #: core/class-settings.php:271
3794
  msgctxt "admin settings"
3795
  msgid "Default new post status"
3796
  msgstr "Statut du nouveau message par défaut"
3797
 
3798
- #: core/class-settings.php:274
 
 
 
 
 
 
 
 
 
 
 
3799
  msgctxt "admin settings"
3800
  msgid "Edit post status"
3801
  msgstr "Editer le statut du message"
3802
 
3803
- #: core/class-settings.php:276
3804
  msgctxt "admin settings"
3805
  msgid "Order categories list by"
3806
  msgstr "Ordonner les catégories des annonces par"
3807
 
3808
- #: core/class-settings.php:278
3809
  msgctxt "admin settings"
3810
  msgid "Name"
3811
  msgstr "Nom"
3812
 
3813
- #: core/class-settings.php:279
3814
  msgctxt "admin settings"
3815
  msgid "Slug"
3816
  msgstr "Identifiant"
3817
 
3818
- #: core/class-settings.php:280
3819
  msgctxt "admin settings"
3820
  msgid "Listing Count"
3821
  msgstr "Compteur d'annonce"
3822
 
3823
- #: core/class-settings.php:282
3824
  msgctxt "admin settings"
3825
  msgid "Sort order for categories"
3826
  msgstr "Ordre de tri pour les catégories"
3827
 
3828
- #: core/class-settings.php:283 core/class-settings.php:301
3829
  msgctxt "admin settings"
3830
  msgid "Ascending"
3831
  msgstr "Ascendant"
3832
 
3833
- #: core/class-settings.php:283 core/class-settings.php:301
3834
  msgctxt "admin settings"
3835
  msgid "Descending"
3836
  msgstr "Descendant"
3837
 
3838
- #: core/class-settings.php:284
3839
  msgctxt "admin settings"
3840
  msgid "Show category post count?"
3841
  msgstr "Montrer les catégories par messages postés ?"
3842
 
3843
- #: core/class-settings.php:285
3844
  msgctxt "admin settings"
3845
  msgid "Hide empty categories?"
3846
  msgstr "Cacher les catégories vides ?"
3847
 
3848
- #: core/class-settings.php:286
3849
  msgctxt "admin settings"
3850
  msgid "Show only parent categories in category list?"
3851
  msgstr ""
3852
  "Montrer seulement les catégories parentes dans la liste des catégories ?"
3853
 
3854
- #: core/class-settings.php:288
3855
  msgctxt "admin settings"
3856
  msgid "Listings Sorting"
3857
  msgstr "Tri des annonces"
3858
 
3859
- #: core/class-settings.php:289
3860
  msgctxt "admin settings"
3861
  msgid "Order directory listings by"
3862
  msgstr "Ordonner les annonces de l'annuaire par"
3863
 
3864
- #: core/class-settings.php:291
3865
  msgctxt "admin settings"
3866
  msgid "Title"
3867
  msgstr "Titre"
3868
 
3869
- #: core/class-settings.php:292
3870
  msgctxt "admin settings"
3871
  msgid "Author"
3872
  msgstr "Auteur"
3873
 
3874
- #: core/class-settings.php:293 core/class-settings.php:703
3875
  msgctxt "admin settings"
3876
  msgid "Date posted"
3877
  msgstr "Date d'ajout"
3878
 
3879
- #: core/class-settings.php:294 core/class-settings.php:704
3880
  msgctxt "admin settings"
3881
  msgid "Date last modified"
3882
  msgstr "Date de dernière modification"
3883
 
3884
- #: core/class-settings.php:295
3885
  msgctxt "admin settings"
3886
  msgid "Random"
3887
  msgstr "Aléatoire"
3888
 
3889
- #: core/class-settings.php:296
3890
  msgctxt "admin settings"
3891
  msgid "Paid first then free. Inside each group by date."
3892
  msgstr ""
3893
 
3894
- #: core/class-settings.php:297
3895
  msgctxt "admin settings"
3896
  msgid "Paid first then free. Inside each group by title."
3897
  msgstr ""
3898
 
3899
- #: core/class-settings.php:299
3900
  msgctxt "admin settings"
3901
  msgid "Sort directory listings by"
3902
  msgstr "Trier les annonces de l'annuaire par"
3903
 
3904
- #: core/class-settings.php:300
3905
  msgctxt "admin settings"
3906
  msgid "Ascending for ascending order A-Z, Descending for descending order Z-A"
3907
  msgstr ""
3908
  "Ascendant pour un classement de A à Z, Descendant pour un classement de Z à A"
3909
 
3910
- #: core/class-settings.php:305
3911
  msgctxt "admin settings"
3912
  msgid "Enable sort bar?"
3913
  msgstr "Activer la barre de tri ?"
3914
 
3915
- #: core/class-settings.php:310
3916
  msgctxt "admin settings"
3917
  msgid "Sortbar Fields"
3918
  msgstr "Champs de la barre de tri"
3919
 
3920
- #: core/class-settings.php:319
3921
  msgctxt "admin settings"
3922
  msgid "Featured (Sticky) listing settings"
3923
  msgstr "Paramètres sélectionnés (Post-it) des annonces"
3924
 
3925
- #: core/class-settings.php:320
3926
  msgctxt "admin settings"
3927
  msgid "Offer sticky listings?"
3928
  msgstr "Proposer des annonces par Post-it ?"
3929
 
3930
- #: core/class-settings.php:321
3931
  msgctxt "admin settings"
3932
  msgid "Offer upgrades during submit process?"
3933
  msgstr "Proposer des améliorations durant le processus de soumission ?"
3934
 
3935
- #: core/class-settings.php:322
3936
  msgctxt "admin settings"
3937
  msgid "Sticky listing price"
3938
  msgstr "Prix des annonces en Post-it"
3939
 
3940
- #: core/class-settings.php:323
3941
  msgctxt "admin settings"
3942
  msgid "Sticky listing page description text"
3943
  msgstr "Texte de description de la page annonce en Post-it"
3944
 
3945
- #: core/class-settings.php:324
3946
  msgctxt "admin settings"
3947
  msgid ""
3948
  "You can upgrade your listing to featured status. Featured listings will "
@@ -3952,17 +3981,17 @@ msgstr ""
3952
  "annonces ainsi traitées vont toujours apparaître avant les annonces "
3953
  "courantes."
3954
 
3955
- #: core/class-settings.php:329
3956
  msgctxt "admin settings"
3957
  msgid "E-Mail"
3958
  msgstr "E-Mail"
3959
 
3960
- #: core/class-settings.php:333
3961
  msgctxt "admin settings"
3962
  msgid "Display email address fields publicly?"
3963
  msgstr "Affichage des champs d'adresses e-mail au public ?"
3964
 
3965
- #: core/class-settings.php:336
3966
  msgctxt "admin settings"
3967
  msgid ""
3968
  "Shows the email address of the listing owner to all web users. NOT "
@@ -3973,12 +4002,12 @@ msgstr ""
3973
  "utilisateurs du Web. PAS RECOMMANDE car cela augmente le spam à l'adresse en "
3974
  "question et permet aux spam bots de la récolter pour une utilisation future."
3975
 
3976
- #: core/class-settings.php:339
3977
  msgctxt "admin settings"
3978
  msgid "How to determine the listing's email address?"
3979
  msgstr "Comment définir l'adresse e-mail de l'annonce ?"
3980
 
3981
- #: core/class-settings.php:342
3982
  msgctxt "admin settings"
3983
  msgid ""
3984
  "This affects emails sent to listing owners via contact forms or when their "
@@ -3987,125 +4016,125 @@ msgstr ""
3987
  "Cela affecte l'envoie des e-mails aux propriétaires des annonces via le "
3988
  "formulaire de contact ou quand leurs annonces expirent."
3989
 
3990
- #: core/class-settings.php:344
3991
  msgctxt "admin settings"
3992
  msgid "Try listing's email field first, then author's email."
3993
  msgstr ""
3994
 
3995
- #: core/class-settings.php:345
3996
  msgctxt "admin settings"
3997
  msgid "Try author's email first and then listing's email field."
3998
  msgstr ""
3999
 
4000
- #: core/class-settings.php:349
4001
  msgctxt "admin settings"
4002
  msgid "E-Mail Notifications"
4003
  msgstr "Notification mail"
4004
 
4005
- #: core/class-settings.php:352
4006
  msgctxt "admin settings"
4007
  msgid "Notify admin via e-mail when..."
4008
  msgstr "Prévenir l'administrateur via courriel quand..."
4009
 
4010
- #: core/class-settings.php:356
4011
  msgctxt "admin settings"
4012
  msgid "A new listing is submitted."
4013
  msgstr "Une nouvelle annonce a été soumise."
4014
 
4015
- #: core/class-settings.php:357
4016
  msgctxt "admin settings"
4017
  msgid "A listing is edited."
4018
  msgstr "Une annonce est éditée."
4019
 
4020
- #: core/class-settings.php:358
4021
  msgctxt "admin settings"
4022
  msgid "A listing expires."
4023
  msgstr "Une annonce expire."
4024
 
4025
- #: core/class-settings.php:359
4026
  msgctxt "admin settings"
4027
  msgid "A contact message is sent to a listing's owner."
4028
  msgstr "Un message de contact est envoyé a un propriétaire d'annonce."
4029
 
4030
- #: core/class-settings.php:365
4031
  msgctxt "admin settings"
4032
  msgid "CC this e-mail address too"
4033
  msgstr "CC cette adresse mail aussi"
4034
 
4035
- #: core/class-settings.php:371
4036
  msgctxt "admin settings"
4037
  msgid "Notify users via e-mail when..."
4038
  msgstr "Prévenir les utilisateurs via courriel quand..."
4039
 
4040
- #: core/class-settings.php:374
4041
  msgctxt "admin settings"
4042
  msgid "You can modify the text template used for most of these e-mails below."
4043
  msgstr ""
4044
  "Vous pouvez modifier le modèle de texte utilisé pour la plupart de ces e-"
4045
  "mails ci-dessous."
4046
 
4047
- #: core/class-settings.php:375
4048
  msgctxt "admin settings"
4049
  msgid "Their listing is submitted."
4050
  msgstr "Leur annonce est soumise."
4051
 
4052
- #: core/class-settings.php:376
4053
  msgctxt "admin settings"
4054
  msgid "Their listing is approved/published."
4055
  msgstr "Leur annonce est approuvée/publiée"
4056
 
4057
- #: core/class-settings.php:385
4058
  msgctxt "contact email"
4059
  msgid "You have received a reply from your listing at %s."
4060
  msgstr "Vous avez reçu une réponse à votre annonce de %s."
4061
 
4062
- #: core/class-settings.php:386
4063
  msgctxt "contact email"
4064
  msgid "Name: %s"
4065
  msgstr "Nom: %s"
4066
 
4067
- #: core/class-settings.php:387
4068
  msgctxt "contact email"
4069
  msgid "E-Mail: %s"
4070
  msgstr "E-Mail: %s"
4071
 
4072
- #: core/class-settings.php:388
4073
  msgctxt "contact email"
4074
  msgid "Message:"
4075
  msgstr "Message:"
4076
 
4077
- #: core/class-settings.php:390
4078
  msgctxt "contact email"
4079
  msgid "Time: %s"
4080
  msgstr "Date: %s"
4081
 
4082
- #: core/class-settings.php:392
4083
  msgctxt "admin settings"
4084
  msgid "E-Mail Templates"
4085
  msgstr "Template d'E-Mail"
4086
 
4087
- #: core/class-settings.php:395
4088
  msgctxt "admin settings"
4089
  msgid "Email confirmation message"
4090
  msgstr "Message de confirmation par E-Mail"
4091
 
4092
- #: core/class-settings.php:399
4093
  msgctxt "admin settings"
4094
  msgid "Sent after a listing has been submitted."
4095
  msgstr "Envoyer après qu'une annonce ait été soumise"
4096
 
4097
- #: core/class-settings.php:400 core/class-settings.php:408
4098
- #: core/class-settings.php:449
4099
  msgctxt "admin settings"
4100
  msgid "Listing's title"
4101
  msgstr "Titre de l'annonce"
4102
 
4103
- #: core/class-settings.php:403
4104
  msgctxt "admin settings"
4105
  msgid "Listing published message"
4106
  msgstr "Message publié de l'annonce"
4107
 
4108
- #: core/class-settings.php:406
4109
  msgctxt "admin settings"
4110
  msgid ""
4111
  "Your listing \"[listing]\" is now available at [listing-url] and can be "
@@ -4114,23 +4143,23 @@ msgstr ""
4114
  "Votre annonce \"[listing]\" est maintenant disponible à [listing-url] et "
4115
  "elle peut être vu par tout le monde."
4116
 
4117
- #: core/class-settings.php:407
4118
  msgctxt "admin settings"
4119
  msgid "Sent when the listing has been published or approved by an admin."
4120
  msgstr ""
4121
  "Envoyé lorsque l'annonce a été publiée ou approuvée par un administrateur."
4122
 
4123
- #: core/class-settings.php:409
4124
  msgctxt "admin settings"
4125
  msgid "Listing's URL"
4126
  msgstr "Url de l'annonce"
4127
 
4128
- #: core/class-settings.php:413
4129
  msgctxt "admin settings"
4130
  msgid "Listing Contact Message"
4131
  msgstr "Lister des messages de contact"
4132
 
4133
- #: core/class-settings.php:417
4134
  msgctxt "admin settings"
4135
  msgid ""
4136
  "Sent to listing owners when someone uses the contact form on their listing "
@@ -4139,34 +4168,34 @@ msgstr ""
4139
  "Envoyer aux propriétaires des annonces quand quelqu'un utilise le formulaire "
4140
  "de contact sur leurs pages d'annonces."
4141
 
4142
- #: core/class-settings.php:427
4143
  msgctxt "admin settings"
4144
  msgid "Payment related"
4145
  msgstr "Paiement lié"
4146
 
4147
- #: core/class-settings.php:444
4148
  msgctxt "admin settings"
4149
  msgid "Payment abandoned reminder message"
4150
  msgstr "Paiement abandonné, message de rappel"
4151
 
4152
- #: core/class-settings.php:448
4153
  msgctxt "admin settings"
4154
  msgid "Sent some time after a pending payment is abandoned by users."
4155
  msgstr ""
4156
  "Envoyer après un certain temps lorsqu'un paiement en attente est abandonné "
4157
  "par les utilisateurs."
4158
 
4159
- #: core/class-settings.php:450
4160
  msgctxt "admin settings"
4161
  msgid "Checkout URL link"
4162
  msgstr "Vérificateur de lien URL"
4163
 
4164
- #: core/class-settings.php:456
4165
  msgctxt "admin settings"
4166
  msgid "Renewal Reminders"
4167
  msgstr "Renouveller les rappels"
4168
 
4169
- #: core/class-settings.php:459
4170
  msgctxt "admin settings"
4171
  msgid ""
4172
  "This section refers only to the text of the renewal/expiration notices. You "
@@ -4176,12 +4205,12 @@ msgstr ""
4176
  "d'expiration. Vous pouvez également configurer <a> quand les e-mails seront "
4177
  "envoyés </a>."
4178
 
4179
- #: core/class-settings.php:463
4180
  msgctxt "admin settings"
4181
  msgid "Pending expiration e-mail message"
4182
  msgstr "Expiration imminente du mail"
4183
 
4184
- #: core/class-settings.php:467
4185
  msgctxt "settings"
4186
  msgid ""
4187
  "Sent some time before the listing expires. Applies to non-recurring renewals "
@@ -4190,50 +4219,50 @@ msgstr ""
4190
  "Envoyé quelque temps avant l'expiration de l'annonce. Valable seulement pour "
4191
  "les renouvellements non-récurrents."
4192
 
4193
- #: core/class-settings.php:468 core/class-settings.php:481
4194
- #: core/class-settings.php:494 core/class-settings.php:507
4195
- #: core/class-settings.php:520
4196
  msgctxt "settings"
4197
  msgid "Listing's name (with link)"
4198
  msgstr "Nom de l'annonce (avec lien)"
4199
 
4200
- #: core/class-settings.php:469 core/class-settings.php:482
4201
- #: core/class-settings.php:495 core/class-settings.php:508
4202
- #: core/class-settings.php:521
4203
  msgctxt "settings"
4204
  msgid "Author's name"
4205
  msgstr "Nom de l'auteur"
4206
 
4207
- #: core/class-settings.php:470 core/class-settings.php:483
4208
- #: core/class-settings.php:522
4209
  msgctxt "settings"
4210
  msgid "Expiration date"
4211
  msgstr "Date d'expiration"
4212
 
4213
- #: core/class-settings.php:471
4214
  msgctxt "settings"
4215
  msgid "Category that is going to expire"
4216
  msgstr "Catégorier qui va expirer"
4217
 
4218
- #: core/class-settings.php:472 core/class-settings.php:485
4219
- #: core/class-settings.php:524
4220
  msgctxt "settings"
4221
  msgid "Link to renewal page"
4222
  msgstr "Lien pour renouveller la page"
4223
 
4224
- #: core/class-settings.php:473 core/class-settings.php:486
4225
- #: core/class-settings.php:498 core/class-settings.php:511
4226
- #: core/class-settings.php:525
4227
  msgctxt "settings"
4228
  msgid "Link to your site"
4229
  msgstr "Lien vers votre site"
4230
 
4231
- #: core/class-settings.php:476
4232
  msgctxt "admin settings"
4233
  msgid "Listing Renewal e-mail message"
4234
  msgstr "Message mail de renouvellement d'annonce"
4235
 
4236
- #: core/class-settings.php:480
4237
  msgctxt "settings"
4238
  msgid ""
4239
  "Sent at the time of listing expiration. Applies to non-recurring renewals "
@@ -4242,17 +4271,17 @@ msgstr ""
4242
  "Envoyé au moment de l'expiration de l'annonce. Seulement valable pour les "
4243
  "renouvellements non-récurrents."
4244
 
4245
- #: core/class-settings.php:484 core/class-settings.php:523
4246
  msgctxt "settings"
4247
  msgid "Category that expired"
4248
  msgstr "Catégories qui ont expiré"
4249
 
4250
- #: core/class-settings.php:489
4251
  msgctxt "admin settings"
4252
  msgid "Listing auto-renewal reminder (recurring payments)"
4253
  msgstr "Rappel d'auto-renouvellement des annonces (paiements récurrents)"
4254
 
4255
- #: core/class-settings.php:493
4256
  msgctxt "settings"
4257
  msgid ""
4258
  "Sent some time before the listing is auto-renewed. Applies to recurring "
@@ -4261,27 +4290,27 @@ msgstr ""
4261
  "Envoyé un certain temps avant que l'annonce est auto-renouvellement. Valable "
4262
  "pour les renouvellements périodiques seulement."
4263
 
4264
- #: core/class-settings.php:496 core/class-settings.php:510
4265
  msgctxt "settings"
4266
  msgid "Renewal date"
4267
  msgstr "Date de renouvellement"
4268
 
4269
- #: core/class-settings.php:497
4270
  msgctxt "settings"
4271
  msgid "Category that is going to be renewed"
4272
  msgstr "Catégories qui vont être renouvelées"
4273
 
4274
- #: core/class-settings.php:499
4275
  msgctxt "settings"
4276
  msgid "Link to manage subscriptions"
4277
  msgstr "Lien pour gérer les abonnements"
4278
 
4279
- #: core/class-settings.php:502
4280
  msgctxt "admin settings"
4281
  msgid "Listing Renewal e-mail message (recurring payments)"
4282
  msgstr "Renouvellement des annonces par mail (paiements récurrents)"
4283
 
4284
- #: core/class-settings.php:506
4285
  msgctxt "settings"
4286
  msgid ""
4287
  "Sent after the listing is auto-renewed. Applies to recurring renewals only."
@@ -4289,17 +4318,17 @@ msgstr ""
4289
  "Envoyé dès que les annonces se soient auto-renouvelées. Appliqué aux "
4290
  "paiements récurrents seulement."
4291
 
4292
- #: core/class-settings.php:509
4293
  msgctxt "settings"
4294
  msgid "Renewed category"
4295
  msgstr "Catégories renouvellées"
4296
 
4297
- #: core/class-settings.php:515
4298
  msgctxt "admin settings"
4299
  msgid "Renewal reminder e-mail message"
4300
  msgstr "Renouveler le rappel par mail"
4301
 
4302
- #: core/class-settings.php:519
4303
  msgctxt "settings"
4304
  msgid ""
4305
  "Sent some time after listing expiration and when no renewal has occurred. "
@@ -4309,33 +4338,33 @@ msgstr ""
4309
  "renouvellement n'a pas eu lieu. Valable pour deux renouvellements récurrents "
4310
  "et non récurrents."
4311
 
4312
- #: core/class-settings.php:529
4313
  msgctxt "admin settings"
4314
  msgid "Payment"
4315
  msgstr "Paiement"
4316
 
4317
- #: core/class-settings.php:530
4318
  msgctxt "admin settings"
4319
  msgid "Payment Settings"
4320
  msgstr "Paramètres de paiement"
4321
 
4322
- #: core/class-settings.php:533
4323
  msgctxt "admin settings"
4324
  msgid "Turn On payments?"
4325
  msgstr "Activer les paiements ?"
4326
 
4327
- #: core/class-settings.php:535
4328
  msgctxt "admin settings"
4329
  msgid "Put payment gateways in test mode?"
4330
  msgstr "Passer les passerelles de paiement en mode test ?"
4331
 
4332
- #: core/class-settings.php:540
4333
  msgctxt "admin settings"
4334
  msgid "Perform checkouts on the secure (HTTPS) version of your site?"
4335
  msgstr ""
4336
  "Effectuer la vérification sur la version sécurisée (HTTPS) de votre site?"
4337
 
4338
- #: core/class-settings.php:543
4339
  msgctxt "admin settings"
4340
  msgid ""
4341
  "Recommended for added security. For this to work you need to enable HTTPS on "
@@ -4344,163 +4373,163 @@ msgstr ""
4344
  "Recommandé pour une sécurité accrue. Pour que cela fonctionne, vous devez "
4345
  "activer HTTPS sur votre serveur et <a> obtenir un certificat SSL </a>."
4346
 
4347
- #: core/class-settings.php:547
4348
  msgctxt "admin settings"
4349
  msgid "Currency Code"
4350
  msgstr "Code de devise"
4351
 
4352
- #: core/class-settings.php:549
4353
  msgctxt "admin settings"
4354
  msgid "Australian Dollar (AUD)"
4355
  msgstr "Dollar Australien (AUD)"
4356
 
4357
- #: core/class-settings.php:550
4358
  msgctxt "admin settings"
4359
  msgid "Brazilian Real (BRL)"
4360
  msgstr "Real Brésilien (BRL)"
4361
 
4362
- #: core/class-settings.php:551
4363
  msgctxt "admin settings"
4364
  msgid "Canadian Dollar (CAD)"
4365
  msgstr "Dollar Canadien (CAD)"
4366
 
4367
- #: core/class-settings.php:552
4368
  msgctxt "admin settings"
4369
  msgid "Czech Koruna (CZK)"
4370
  msgstr "Couronne Tchèque (CZK)"
4371
 
4372
- #: core/class-settings.php:553
4373
  msgctxt "admin settings"
4374
  msgid "Danish Krone (DKK)"
4375
  msgstr "Couronne Danoise (DKK)"
4376
 
4377
- #: core/class-settings.php:554
4378
  msgctxt "admin settings"
4379
  msgid "Euro (EUR)"
4380
  msgstr "Euro (EUR)"
4381
 
4382
- #: core/class-settings.php:555
4383
  msgctxt "admin settings"
4384
  msgid "Hong Kong Dollar (HKD)"
4385
  msgstr "Dollar de Hong Kong(HKD)"
4386
 
4387
- #: core/class-settings.php:556
4388
  msgctxt "admin settings"
4389
  msgid "Hungarian Forint (HUF)"
4390
  msgstr "Forint Hongrois (HUF)"
4391
 
4392
- #: core/class-settings.php:557
4393
  msgctxt "admin settings"
4394
  msgid "Israeli New Shequel (ILS)"
4395
  msgstr "Nouveau Shequel Israélien (ILS)"
4396
 
4397
- #: core/class-settings.php:558
4398
  msgctxt "admin settings"
4399
  msgid "Japanese Yen (JPY)"
4400
  msgstr "Yen Japonais (JPY)"
4401
 
4402
- #: core/class-settings.php:559
4403
  msgctxt "admin settings"
4404
  msgid "Malasian Ringgit (MYR)"
4405
  msgstr "Ringgit Malaisien (MYR)"
4406
 
4407
- #: core/class-settings.php:560
4408
  msgctxt "admin settings"
4409
  msgid "Mexican Peso (MXN)"
4410
  msgstr "Peso Mexicain (MXN)"
4411
 
4412
- #: core/class-settings.php:561
4413
  msgctxt "admin settings"
4414
  msgid "Norwegian Krone (NOK)"
4415
  msgstr "Couronne Norvégienne (NOK)"
4416
 
4417
- #: core/class-settings.php:562
4418
  msgctxt "admin settings"
4419
  msgid "New Zealand Dollar (NZD)"
4420
  msgstr "Dollar Néo-Zélandais (NZD)"
4421
 
4422
- #: core/class-settings.php:563
4423
  msgctxt "admin settings"
4424
  msgid "Philippine Peso (PHP)"
4425
  msgstr "Peso Phillipin (PHP)"
4426
 
4427
- #: core/class-settings.php:564
4428
  msgctxt "admin settings"
4429
  msgid "Polish Zloty (PLN)"
4430
  msgstr "Zloty Polonais (PLN)"
4431
 
4432
- #: core/class-settings.php:565
4433
  msgctxt "admin settings"
4434
  msgid "Pound Sterling (GBP)"
4435
  msgstr "Livre Sterling (GBP)"
4436
 
4437
- #: core/class-settings.php:566
4438
  msgctxt "admin settings"
4439
  msgid "Singapore Dollar (SGD)"
4440
  msgstr "Dollar Singaporien (SGD)"
4441
 
4442
- #: core/class-settings.php:567
4443
  msgctxt "admin settings"
4444
  msgid "Swedish Krona (SEK)"
4445
  msgstr "Couronne Suédoise (SEK)"
4446
 
4447
- #: core/class-settings.php:568
4448
  msgctxt "admin settings"
4449
  msgid "Swiss Franc (CHF)"
4450
  msgstr "Franc Suisse (CHF)"
4451
 
4452
- #: core/class-settings.php:569
4453
  msgctxt "admin settings"
4454
  msgid "Taiwan Dollar (TWD)"
4455
  msgstr "Dollar Taiwanais (TWD)"
4456
 
4457
- #: core/class-settings.php:570
4458
  msgctxt "admin settings"
4459
  msgid "Thai Baht (THB)"
4460
  msgstr "Baht Thaïlandais"
4461
 
4462
- #: core/class-settings.php:571
4463
  msgctxt "admin settings"
4464
  msgid "Turkish Lira (TRY)"
4465
  msgstr "Livre Turque (TRY)"
4466
 
4467
- #: core/class-settings.php:572
4468
  #, fuzzy
4469
  msgctxt "admin settings"
4470
  msgid "U.S. Dollar (USD)"
4471
  msgstr "Dollar U.S. "
4472
 
4473
- #: core/class-settings.php:576
4474
  msgctxt "admin settings"
4475
  msgid "Currency Symbol"
4476
  msgstr "Devise"
4477
 
4478
- #: core/class-settings.php:581
4479
  msgctxt "admin settings"
4480
  msgid "Currency symbol display"
4481
  msgstr "Affichage de la devise"
4482
 
4483
- #: core/class-settings.php:585
4484
  msgctxt "admin settings"
4485
  msgid "Show currency symbol on the left"
4486
  msgstr "Afficher le symbole de devise à gauche"
4487
 
4488
- #: core/class-settings.php:586
4489
  msgctxt "admin settings"
4490
  msgid "Show currency symbol on the right"
4491
  msgstr "Afficher le symbole de devise à droite"
4492
 
4493
- #: core/class-settings.php:587
4494
  msgctxt "admin settings"
4495
  msgid "Do not show currency symbol"
4496
  msgstr "Ne pas montrer la devise"
4497
 
4498
- #: core/class-settings.php:589
4499
  msgctxt "admin settings"
4500
  msgid "Thank you for payment message"
4501
  msgstr "Merci pour le message de paiement"
4502
 
4503
- #: core/class-settings.php:590
4504
  msgctxt "admin settings"
4505
  msgid ""
4506
  "Thank you for your payment. Your payment is being verified and your listing "
@@ -4510,12 +4539,12 @@ msgstr ""
4510
  "votre annonce en revue. Le processus de vérification et d'examen peut "
4511
  "prendre jusqu'à 48 heures."
4512
 
4513
- #: core/class-settings.php:595
4514
  msgctxt "admin settings"
4515
  msgid "Ask users to come back for abandoned payments?"
4516
  msgstr "Demandez aux utilisateurs de revenir pour les paiements abandonnés ?"
4517
 
4518
- #: core/class-settings.php:598
4519
  msgctxt "admin settings"
4520
  msgid ""
4521
  "An abandoned payment is when a user attempts to place a listing and gets to "
@@ -4529,12 +4558,12 @@ msgstr ""
4529
  "l'utilisateur n'a tout simplement pas compléter la transaction. Le plugin "
4530
  "peut peut rappeler les auteurs pour continuer la publication de leur annonce."
4531
 
4532
- #: core/class-settings.php:604
4533
  msgctxt "admin settings"
4534
  msgid "Listing abandonment threshold (hours)"
4535
  msgstr "Seuil d'abandon de l'annonce (heures)"
4536
 
4537
- #: core/class-settings.php:609
4538
  msgctxt "admin settings"
4539
  msgid ""
4540
  "Listings with pending payments are marked as abandoned after this time. You "
@@ -4544,37 +4573,37 @@ msgstr ""
4544
  "cette heure. Vous pouvez également personnaliser <a> l'e-mail </a> que les "
4545
  "utilisateurs reçoivent."
4546
 
4547
- #: core/class-settings.php:614
4548
  msgctxt "admin settings"
4549
  msgid "Themes"
4550
  msgstr "Thèmes"
4551
 
4552
- #: core/class-settings.php:616
4553
  msgctxt "admin settings"
4554
  msgid "You can manage your themes on <a>Directory Themes</a>."
4555
  msgstr ""
4556
 
4557
- #: core/class-settings.php:621
4558
  msgctxt "admin settings"
4559
  msgid "Theme button style"
4560
  msgstr "Boutons de thèmes"
4561
 
4562
- #: core/class-settings.php:625
4563
  msgctxt "admin settings"
4564
  msgid "Use the BD theme style for BD buttons"
4565
  msgstr "Utiliser le thème BD pour les boutons BD"
4566
 
4567
- #: core/class-settings.php:626
4568
  msgctxt "admin settings"
4569
  msgid "Use the WP theme style for BD buttons"
4570
  msgstr "Utiliser le thème WP pour les boutons BD"
4571
 
4572
- #: core/class-settings.php:633
4573
  msgctxt "admin settings"
4574
  msgid "Image"
4575
  msgstr "Image"
4576
 
4577
- #: core/class-settings.php:634
4578
  msgctxt "admin settings"
4579
  msgid ""
4580
  "Any changes to these settings will affect new listings only. Existing "
@@ -4588,52 +4617,52 @@ msgstr ""
4588
  "télécharger l'image (s) sur cette annonce, après avoir cfait les "
4589
  "modifications voulue."
4590
 
4591
- #: core/class-settings.php:635
4592
  msgctxt "admin settings"
4593
  msgid "Image Settings"
4594
  msgstr "Paraamètres des images"
4595
 
4596
- #: core/class-settings.php:636
4597
  msgctxt "admin settings"
4598
  msgid "Allow images?"
4599
  msgstr "Autoriser les images ?"
4600
 
4601
- #: core/class-settings.php:638
4602
  msgctxt "admin settings"
4603
  msgid "Min Image File Size (KB)"
4604
  msgstr "Taille minnimal des fichiers images (KB)"
4605
 
4606
- #: core/class-settings.php:639
4607
  msgctxt "admin settings"
4608
  msgid "Max Image File Size (KB)"
4609
  msgstr "Taille maximal des fichiers images (KB)"
4610
 
4611
- #: core/class-settings.php:641
4612
  msgctxt "admin settings"
4613
  msgid "Min image width (px)"
4614
  msgstr "Largeur minnimal des images (px)"
4615
 
4616
- #: core/class-settings.php:642
4617
  msgctxt "admin settings"
4618
  msgid "Min image height (px)"
4619
  msgstr "Hauteur minnimal des images (px)"
4620
 
4621
- #: core/class-settings.php:644
4622
  msgctxt "admin settings"
4623
  msgid "Max image width (px)"
4624
  msgstr "Largeur maximal des images (px)"
4625
 
4626
- #: core/class-settings.php:645
4627
  msgctxt "admin settings"
4628
  msgid "Max image height (px)"
4629
  msgstr "Hauteur maximal des images (px)"
4630
 
4631
- #: core/class-settings.php:647
4632
  msgctxt "admin settings"
4633
  msgid "Turn on thickbox/lightbox?"
4634
  msgstr "Activer thickbox/lightbox ?"
4635
 
4636
- #: core/class-settings.php:647
4637
  msgctxt "admin settings"
4638
  msgid ""
4639
  "Uncheck if it conflicts with other elements or plugins installed on your site"
@@ -4641,27 +4670,27 @@ msgstr ""
4641
  "Décochez si vela entre en conflit avec d'autres éléments ou plugins "
4642
  "installés sur votre site"
4643
 
4644
- #: core/class-settings.php:649
4645
  msgctxt "admin settings"
4646
  msgid "Thumbnails"
4647
  msgstr "Miniatures"
4648
 
4649
- #: core/class-settings.php:650
4650
  msgctxt "admin settings"
4651
  msgid "Thumbnail width (px)"
4652
  msgstr "Largeur des miniatures (en pixel)"
4653
 
4654
- #: core/class-settings.php:651
4655
  msgctxt "admin settings"
4656
  msgid "Thumbnail height (px)"
4657
  msgstr "Hauteur des miniatures (en pixel)"
4658
 
4659
- #: core/class-settings.php:654
4660
  msgctxt "admin settings"
4661
  msgid "Crop thumbnails to exact dimensions?"
4662
  msgstr "Recadrer les miniatures aux dimensions exactes ?"
4663
 
4664
- #: core/class-settings.php:657
4665
  msgctxt "admin settings"
4666
  msgid ""
4667
  "When enabled images will match exactly the dimensions above but part of the "
@@ -4676,12 +4705,12 @@ msgstr ""
4676
  "proportionnellement. Selon les images téléchargées, les miniatures peuvent "
4677
  "avoir différentes hauteurs."
4678
 
4679
- #: core/class-settings.php:663
4680
  msgctxt "admin settings"
4681
  msgid "Number of free images"
4682
  msgstr "Nombre d'images gratuites"
4683
 
4684
- #: core/class-settings.php:668
4685
  msgctxt "admin settings"
4686
  msgid ""
4687
  "For paid listing images, configure that by adding or editing a <a>Fee Plan</"
@@ -4691,28 +4720,28 @@ msgstr ""
4691
  "ou modification d'un <a>plan de frais</a> au lieu de ce paramètre, qui est "
4692
  "ignoré pour les annonces payées."
4693
 
4694
- #: core/class-settings.php:671
4695
  msgctxt "admin settings"
4696
  msgid "Use default picture for listings with no picture?"
4697
  msgstr "Utiliser l'image par défault pour les annonces sans images ?"
4698
 
4699
- #: core/class-settings.php:672
4700
  msgctxt "admin settings"
4701
  msgid "Show Thumbnail on main listings page?"
4702
  msgstr "Montrer les miniatures sur page principale des annonces ?"
4703
 
4704
- #: core/class-settings.php:701
4705
  msgctxt "admin settings"
4706
  msgid "User"
4707
  msgstr ""
4708
 
4709
- #: core/class-settings.php:702
4710
  #, fuzzy
4711
  msgctxt "admin settings"
4712
  msgid "User registration date"
4713
  msgstr "Date d'expiration de l'annonce"
4714
 
4715
- #: core/class-settings.php:728
4716
  msgctxt "admin settings"
4717
  msgid ""
4718
  "Could not copy the AJAX compatibility plugin \"%s\". Compatibility mode was "
@@ -4721,7 +4750,7 @@ msgstr ""
4721
  "Impossible de copier le plugin de compatibilité AJAX \"% s\". Le mode de "
4722
  "compatibilité n'a pas été activé."
4723
 
4724
- #: core/class-settings.php:736
4725
  msgctxt "admin settings"
4726
  msgid ""
4727
  "Could not activate AJAX Compatibility mode: the directory \"%s\" could not "
@@ -4730,7 +4759,7 @@ msgstr ""
4730
  "Impossible d'activer le mode de compatibilité AJAX: le répertoire \"% s \" "
4731
  "ne peux pas être créé."
4732
 
4733
- #: core/class-settings.php:745
4734
  msgctxt "admin settings"
4735
  msgid ""
4736
  "Could not remove the \"Business Directory Plugin - AJAX Compatibility Module"
@@ -4739,97 +4768,97 @@ msgstr ""
4739
  "Impossible de supprimer le \"Module de comptabilité AJAX du plugin \". "
4740
  "Veuillez supprimer le fichier \"% s \" manuellement ou désactiver le plugin."
4741
 
4742
- #: core/class-settings.php:1065
4743
  msgctxt "settings"
4744
  msgid "Deactivate License"
4745
  msgstr "Désactiver la licence"
4746
 
4747
- #: core/class-settings.php:1067
4748
  msgctxt "settings"
4749
  msgid "Deactivating license..."
4750
  msgstr "Désactivation de la licence..."
4751
 
4752
- #: core/class-settings.php:1070
4753
  msgctxt "settings"
4754
  msgid "Activate License"
4755
  msgstr "Activer la licence"
4756
 
4757
- #: core/class-settings.php:1072
4758
  msgctxt "settings"
4759
  msgid "Activating license..."
4760
  msgstr "Activation de la licence"
4761
 
4762
- #: core/class-settings.php:1095
4763
  msgctxt "admin settings"
4764
  msgid "Valid placeholders: %s"
4765
  msgstr "Espaces réservés valides:% s"
4766
 
4767
- #: core/class-settings.php:1129
4768
  msgctxt "settings email"
4769
  msgid "Click to edit e-mail"
4770
  msgstr "Cliquer pour éditer l'e-mail"
4771
 
4772
- #: core/class-settings.php:1130
4773
  msgctxt "settings email"
4774
  msgid "Click to edit"
4775
  msgstr "Cliquer pour éditer"
4776
 
4777
- #: core/class-settings.php:1143
4778
  msgctxt "settings email"
4779
  msgid "E-Mail Subject"
4780
  msgstr "Sujet de l'e-mail"
4781
 
4782
- #: core/class-settings.php:1154
4783
  msgctxt "settings email"
4784
  msgid "E-Mail Body"
4785
  msgstr "Corps de l'e-mail"
4786
 
4787
- #: core/class-settings.php:1165
4788
  msgctxt "settings email"
4789
  msgid "You can use the following placeholders:"
4790
  msgstr "Vous pouvez utiliser les paramètres suivantes:"
4791
 
4792
- #: core/class-settings.php:1188
4793
  msgctxt "settings email"
4794
  msgid "Preview e-mail"
4795
  msgstr "E-mail précédents"
4796
 
4797
- #: core/class-settings.php:1189
4798
  msgctxt "settings email"
4799
  msgid "Cancel"
4800
  msgstr "Annuler"
4801
 
4802
- #: core/class-settings.php:1190
4803
  msgctxt "settings email"
4804
  msgid "Save Changes"
4805
  msgstr "Sauvegarder les changements"
4806
 
4807
- #: core/class-settings.php:1209
4808
  msgctxt "settings email"
4809
  msgid "Site title"
4810
  msgstr "Titre du site"
4811
 
4812
- #: core/class-settings.php:1212
4813
  msgctxt "settings email"
4814
  msgid "Site title (with link)"
4815
  msgstr "Titre du site (avec lien)"
4816
 
4817
- #: core/class-settings.php:1215
4818
  msgctxt "settings email"
4819
  msgid "Site address (with link)"
4820
  msgstr "Adresse du site (avec lien)"
4821
 
4822
- #: core/class-settings.php:1218
4823
  msgctxt "settings email"
4824
  msgid "Directory URL (with link)"
4825
  msgstr "Annuaire des URL (avec lien)"
4826
 
4827
- #: core/class-settings.php:1221
4828
  msgctxt "settings email"
4829
  msgid "Current date"
4830
  msgstr "Date actuelle"
4831
 
4832
- #: core/class-settings.php:1224
4833
  msgctxt "settings email"
4834
  msgid "Current time"
4835
  msgstr "Heure actuelle"
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-07-06 14:03:56+00:00\n"
8
  "PO-Revision-Date: 2016-02-24 15:34-0500\n"
9
  "Last-Translator: BD Team <support@businessdirectoryplugin.com>\n"
10
  "Language-Team: BD Team <support@businessdirectoryplugin.com>\n"
2229
  "Veuillez voir la <a>Documentation de champs de formulaire</a> pour plus de "
2230
  "détails."
2231
 
2232
+ #. #-#-#-#-# WPBDM.pot (Business Directory Plugin 4.0.8) #-#-#-#-#
2233
  #. Plugin Name of the plugin/theme
2234
  #: admin/templates/header.tpl.php:4
2235
  msgid "Business Directory Plugin"
3446
  "Affiche et nécessite l'accord de l'utilisateur avec les conditions "
3447
  "d'utilisation"
3448
 
3449
+ #: core/class-settings.php:106
3450
+ #, fuzzy
3451
+ msgctxt "admin settings"
3452
+ msgid ""
3453
+ "Terms and Conditions text goes here...\n"
3454
+ "\n"
3455
+ msgstr "Conditions d'utilisation"
3456
+
3457
  #: core/class-settings.php:107
3458
  msgctxt "admin settings"
3459
  msgid ""
3594
  msgid "Enable AJAX compatibility mode?"
3595
  msgstr "Activer le mode de comptabilité AJAX ?"
3596
 
3597
+ #: core/class-settings.php:179 core/class-settings.php:658
3598
  msgctxt "admin settings"
3599
  msgid "Listings"
3600
  msgstr "Annonces"
3601
 
3602
+ #: core/class-settings.php:180 core/class-settings.php:328
3603
+ #: core/class-settings.php:615
3604
  msgctxt "admin settings"
3605
  msgid "General Settings"
3606
  msgstr "Paramètres généraux"
3691
  msgid "Status of listings upon uninstalling plugin"
3692
  msgstr "Statut des annonces dès la désinstallation du plugin"
3693
 
3694
+ #: core/class-settings.php:219 core/class-settings.php:221
3695
+ msgctxt "post status"
3696
+ msgid "Draft"
3697
+ msgstr ""
3698
+
3699
+ #: core/class-settings.php:219 core/class-settings.php:221
3700
+ msgctxt "post status"
3701
+ msgid "Trash"
3702
+ msgstr ""
3703
+
3704
  #: core/class-settings.php:220
3705
  msgctxt "admin settings"
3706
  msgid "Status of deleted listings"
3707
  msgstr "Statut des annonces effacées"
3708
 
3709
+ #: core/class-settings.php:222
3710
  #, fuzzy
3711
  msgctxt "admin settings"
3712
  msgid "Submit Listing instructions message"
3713
  msgstr "Lister des messages de contact"
3714
 
3715
+ #: core/class-settings.php:222
3716
  msgctxt "admin settings"
3717
  msgid ""
3718
  "This text is displayed at the first page of the Submit Listing process for "
3720
  "form or anything you want to tell users before they get started."
3721
  msgstr ""
3722
 
3723
+ #: core/class-settings.php:224
3724
  msgctxt "admin settings"
3725
  msgid "Listing Renewal"
3726
  msgstr "Renouvellement des annonces"
3727
 
3728
+ #: core/class-settings.php:225
3729
  msgctxt "admin settings"
3730
  msgid "Turn on listing renewal option?"
3731
  msgstr "Activer l'option renouvellement des annonces ?"
3732
 
3733
+ #: core/class-settings.php:228
3734
  msgctxt "admin settings"
3735
  msgid "Allow recurring renewal payments?"
3736
  msgstr "Autoriser les paiements récurrents de renouvellement ?"
3737
 
3738
+ #: core/class-settings.php:231
3739
  msgctxt "admin settings"
3740
  msgid ""
3741
  "Allow users to opt in for automatic renewal of their listings. The fee is "
3745
  "leurs annonces. La redevance est perçue au moment de l'inscription et expire "
3746
  "sans intervention de l'utilisateur."
3747
 
3748
+ #: core/class-settings.php:235
3749
  msgctxt "admin settings"
3750
  msgid "Use recurring payments as the default payment method?"
3751
  msgstr ""
3752
  "Utiliser les paiements récurrents comme méthode de paiement par défaut?"
3753
 
3754
+ #: core/class-settings.php:238
3755
  msgctxt "admin settings"
3756
  msgid ""
3757
  "Enable automatic renewal without having users opt in during the submit "
3760
  "Activer le renouvellement automatique sans avoir à avertir les utilisateurs "
3761
  "lors du processus de soumission."
3762
 
3763
+ #: core/class-settings.php:243
3764
  msgctxt "admin settings"
3765
  msgid "Listing renewal e-mail threshold (in days)"
3766
  msgstr "Seuil de renouvellement des annonces par e-mail (en jours)"
3767
 
3768
  # Todo as soon as possible. I don't understand exactly what does this sentence...
3769
+ #: core/class-settings.php:246
3770
  msgctxt "admin settings"
3771
  msgid ""
3772
  "Configure how many days before listing expiration is the renewal e-mail sent."
3774
  "Configurer le nombre de jours avant l'expiration des annonces doit se "
3775
  "dérouler le renouvellement d'envoi d'e-mail."
3776
 
3777
+ #: core/class-settings.php:250
3778
  msgctxt "admin settings"
3779
  msgid ""
3780
  "Send expiration notices including a cancel links to auto-renewed listings?"
3782
  "Envoyer des avis d'expiration y compris un lien d'annulation vers le "
3783
  "renouvellement automatique des annonces ?"
3784
 
3785
+ #: core/class-settings.php:257
3786
  msgctxt "admin settings"
3787
  msgid "Remind listing owners of expired listings (past due)?"
3788
  msgstr ""
3789
  "Rappeler les propriétaires des annonces lorsque ces dernières arrives à "
3790
  "expiration (en souffrance)?"
3791
 
3792
+ #: core/class-settings.php:262
3793
  msgctxt "admin settings"
3794
  msgid "Listing renewal reminder e-mail threshold (in days)"
3795
  msgstr "Seuil du renouvellement des rappels e-mail des annonces (en jours)"
3796
 
3797
+ #: core/class-settings.php:265
3798
  msgctxt "admin settings"
3799
  msgid ""
3800
  "Configure how many days after the expiration of a listing an e-mail reminder "
3803
  "Configurer le nombre de jours après l'expiration d'une annonces d'un rappel "
3804
  "avant qu'un e-mail soit envoyé au propriétaire."
3805
 
3806
+ #: core/class-settings.php:268
3807
  msgctxt "admin settings"
3808
  msgid "Post/Category Settings"
3809
  msgstr "Paramètres de Messages/Catégories"
3810
 
3811
+ #: core/class-settings.php:269
3812
  msgctxt "admin settings"
3813
  msgid "Default new post status"
3814
  msgstr "Statut du nouveau message par défaut"
3815
 
3816
+ #: core/class-settings.php:270 core/class-settings.php:273
3817
+ msgctxt "post status"
3818
+ msgid "Published"
3819
+ msgstr ""
3820
+
3821
+ #: core/class-settings.php:270 core/class-settings.php:273
3822
+ #, fuzzy
3823
+ msgctxt "post status"
3824
+ msgid "Pending"
3825
+ msgstr "En attente"
3826
+
3827
+ #: core/class-settings.php:272
3828
  msgctxt "admin settings"
3829
  msgid "Edit post status"
3830
  msgstr "Editer le statut du message"
3831
 
3832
+ #: core/class-settings.php:274
3833
  msgctxt "admin settings"
3834
  msgid "Order categories list by"
3835
  msgstr "Ordonner les catégories des annonces par"
3836
 
3837
+ #: core/class-settings.php:276
3838
  msgctxt "admin settings"
3839
  msgid "Name"
3840
  msgstr "Nom"
3841
 
3842
+ #: core/class-settings.php:277
3843
  msgctxt "admin settings"
3844
  msgid "Slug"
3845
  msgstr "Identifiant"
3846
 
3847
+ #: core/class-settings.php:278
3848
  msgctxt "admin settings"
3849
  msgid "Listing Count"
3850
  msgstr "Compteur d'annonce"
3851
 
3852
+ #: core/class-settings.php:280
3853
  msgctxt "admin settings"
3854
  msgid "Sort order for categories"
3855
  msgstr "Ordre de tri pour les catégories"
3856
 
3857
+ #: core/class-settings.php:281 core/class-settings.php:299
3858
  msgctxt "admin settings"
3859
  msgid "Ascending"
3860
  msgstr "Ascendant"
3861
 
3862
+ #: core/class-settings.php:281 core/class-settings.php:299
3863
  msgctxt "admin settings"
3864
  msgid "Descending"
3865
  msgstr "Descendant"
3866
 
3867
+ #: core/class-settings.php:282
3868
  msgctxt "admin settings"
3869
  msgid "Show category post count?"
3870
  msgstr "Montrer les catégories par messages postés ?"
3871
 
3872
+ #: core/class-settings.php:283
3873
  msgctxt "admin settings"
3874
  msgid "Hide empty categories?"
3875
  msgstr "Cacher les catégories vides ?"
3876
 
3877
+ #: core/class-settings.php:284
3878
  msgctxt "admin settings"
3879
  msgid "Show only parent categories in category list?"
3880
  msgstr ""
3881
  "Montrer seulement les catégories parentes dans la liste des catégories ?"
3882
 
3883
+ #: core/class-settings.php:286
3884
  msgctxt "admin settings"
3885
  msgid "Listings Sorting"
3886
  msgstr "Tri des annonces"
3887
 
3888
+ #: core/class-settings.php:287
3889
  msgctxt "admin settings"
3890
  msgid "Order directory listings by"
3891
  msgstr "Ordonner les annonces de l'annuaire par"
3892
 
3893
+ #: core/class-settings.php:289
3894
  msgctxt "admin settings"
3895
  msgid "Title"
3896
  msgstr "Titre"
3897
 
3898
+ #: core/class-settings.php:290
3899
  msgctxt "admin settings"
3900
  msgid "Author"
3901
  msgstr "Auteur"
3902
 
3903
+ #: core/class-settings.php:291 core/class-settings.php:701
3904
  msgctxt "admin settings"
3905
  msgid "Date posted"
3906
  msgstr "Date d'ajout"
3907
 
3908
+ #: core/class-settings.php:292 core/class-settings.php:702
3909
  msgctxt "admin settings"
3910
  msgid "Date last modified"
3911
  msgstr "Date de dernière modification"
3912
 
3913
+ #: core/class-settings.php:293
3914
  msgctxt "admin settings"
3915
  msgid "Random"
3916
  msgstr "Aléatoire"
3917
 
3918
+ #: core/class-settings.php:294
3919
  msgctxt "admin settings"
3920
  msgid "Paid first then free. Inside each group by date."
3921
  msgstr ""
3922
 
3923
+ #: core/class-settings.php:295
3924
  msgctxt "admin settings"
3925
  msgid "Paid first then free. Inside each group by title."
3926
  msgstr ""
3927
 
3928
+ #: core/class-settings.php:297
3929
  msgctxt "admin settings"
3930
  msgid "Sort directory listings by"
3931
  msgstr "Trier les annonces de l'annuaire par"
3932
 
3933
+ #: core/class-settings.php:298
3934
  msgctxt "admin settings"
3935
  msgid "Ascending for ascending order A-Z, Descending for descending order Z-A"
3936
  msgstr ""
3937
  "Ascendant pour un classement de A à Z, Descendant pour un classement de Z à A"
3938
 
3939
+ #: core/class-settings.php:303
3940
  msgctxt "admin settings"
3941
  msgid "Enable sort bar?"
3942
  msgstr "Activer la barre de tri ?"
3943
 
3944
+ #: core/class-settings.php:308
3945
  msgctxt "admin settings"
3946
  msgid "Sortbar Fields"
3947
  msgstr "Champs de la barre de tri"
3948
 
3949
+ #: core/class-settings.php:317
3950
  msgctxt "admin settings"
3951
  msgid "Featured (Sticky) listing settings"
3952
  msgstr "Paramètres sélectionnés (Post-it) des annonces"
3953
 
3954
+ #: core/class-settings.php:318
3955
  msgctxt "admin settings"
3956
  msgid "Offer sticky listings?"
3957
  msgstr "Proposer des annonces par Post-it ?"
3958
 
3959
+ #: core/class-settings.php:319
3960
  msgctxt "admin settings"
3961
  msgid "Offer upgrades during submit process?"
3962
  msgstr "Proposer des améliorations durant le processus de soumission ?"
3963
 
3964
+ #: core/class-settings.php:320
3965
  msgctxt "admin settings"
3966
  msgid "Sticky listing price"
3967
  msgstr "Prix des annonces en Post-it"
3968
 
3969
+ #: core/class-settings.php:321
3970
  msgctxt "admin settings"
3971
  msgid "Sticky listing page description text"
3972
  msgstr "Texte de description de la page annonce en Post-it"
3973
 
3974
+ #: core/class-settings.php:322
3975
  msgctxt "admin settings"
3976
  msgid ""
3977
  "You can upgrade your listing to featured status. Featured listings will "
3981
  "annonces ainsi traitées vont toujours apparaître avant les annonces "
3982
  "courantes."
3983
 
3984
+ #: core/class-settings.php:327
3985
  msgctxt "admin settings"
3986
  msgid "E-Mail"
3987
  msgstr "E-Mail"
3988
 
3989
+ #: core/class-settings.php:331
3990
  msgctxt "admin settings"
3991
  msgid "Display email address fields publicly?"
3992
  msgstr "Affichage des champs d'adresses e-mail au public ?"
3993
 
3994
+ #: core/class-settings.php:334
3995
  msgctxt "admin settings"
3996
  msgid ""
3997
  "Shows the email address of the listing owner to all web users. NOT "
4002
  "utilisateurs du Web. PAS RECOMMANDE car cela augmente le spam à l'adresse en "
4003
  "question et permet aux spam bots de la récolter pour une utilisation future."
4004
 
4005
+ #: core/class-settings.php:337
4006
  msgctxt "admin settings"
4007
  msgid "How to determine the listing's email address?"
4008
  msgstr "Comment définir l'adresse e-mail de l'annonce ?"
4009
 
4010
+ #: core/class-settings.php:340
4011
  msgctxt "admin settings"
4012
  msgid ""
4013
  "This affects emails sent to listing owners via contact forms or when their "
4016
  "Cela affecte l'envoie des e-mails aux propriétaires des annonces via le "
4017
  "formulaire de contact ou quand leurs annonces expirent."
4018
 
4019
+ #: core/class-settings.php:342
4020
  msgctxt "admin settings"
4021
  msgid "Try listing's email field first, then author's email."
4022
  msgstr ""
4023
 
4024
+ #: core/class-settings.php:343
4025
  msgctxt "admin settings"
4026
  msgid "Try author's email first and then listing's email field."
4027
  msgstr ""
4028
 
4029
+ #: core/class-settings.php:347
4030
  msgctxt "admin settings"
4031
  msgid "E-Mail Notifications"
4032
  msgstr "Notification mail"
4033
 
4034
+ #: core/class-settings.php:350
4035
  msgctxt "admin settings"
4036
  msgid "Notify admin via e-mail when..."
4037
  msgstr "Prévenir l'administrateur via courriel quand..."
4038
 
4039
+ #: core/class-settings.php:354
4040
  msgctxt "admin settings"
4041
  msgid "A new listing is submitted."
4042
  msgstr "Une nouvelle annonce a été soumise."
4043
 
4044
+ #: core/class-settings.php:355
4045
  msgctxt "admin settings"
4046
  msgid "A listing is edited."
4047
  msgstr "Une annonce est éditée."
4048
 
4049
+ #: core/class-settings.php:356
4050
  msgctxt "admin settings"
4051
  msgid "A listing expires."
4052
  msgstr "Une annonce expire."
4053
 
4054
+ #: core/class-settings.php:357
4055
  msgctxt "admin settings"
4056
  msgid "A contact message is sent to a listing's owner."
4057
  msgstr "Un message de contact est envoyé a un propriétaire d'annonce."
4058
 
4059
+ #: core/class-settings.php:363
4060
  msgctxt "admin settings"
4061
  msgid "CC this e-mail address too"
4062
  msgstr "CC cette adresse mail aussi"
4063
 
4064
+ #: core/class-settings.php:369
4065
  msgctxt "admin settings"
4066
  msgid "Notify users via e-mail when..."
4067
  msgstr "Prévenir les utilisateurs via courriel quand..."
4068
 
4069
+ #: core/class-settings.php:372
4070
  msgctxt "admin settings"
4071
  msgid "You can modify the text template used for most of these e-mails below."
4072
  msgstr ""
4073
  "Vous pouvez modifier le modèle de texte utilisé pour la plupart de ces e-"
4074
  "mails ci-dessous."
4075
 
4076
+ #: core/class-settings.php:373
4077
  msgctxt "admin settings"
4078
  msgid "Their listing is submitted."
4079
  msgstr "Leur annonce est soumise."
4080
 
4081
+ #: core/class-settings.php:374
4082
  msgctxt "admin settings"
4083
  msgid "Their listing is approved/published."
4084
  msgstr "Leur annonce est approuvée/publiée"
4085
 
4086
+ #: core/class-settings.php:383
4087
  msgctxt "contact email"
4088
  msgid "You have received a reply from your listing at %s."
4089
  msgstr "Vous avez reçu une réponse à votre annonce de %s."
4090
 
4091
+ #: core/class-settings.php:384
4092
  msgctxt "contact email"
4093
  msgid "Name: %s"
4094
  msgstr "Nom: %s"
4095
 
4096
+ #: core/class-settings.php:385
4097
  msgctxt "contact email"
4098
  msgid "E-Mail: %s"
4099
  msgstr "E-Mail: %s"
4100
 
4101
+ #: core/class-settings.php:386
4102
  msgctxt "contact email"
4103
  msgid "Message:"
4104
  msgstr "Message:"
4105
 
4106
+ #: core/class-settings.php:388
4107
  msgctxt "contact email"
4108
  msgid "Time: %s"
4109
  msgstr "Date: %s"
4110
 
4111
+ #: core/class-settings.php:390
4112
  msgctxt "admin settings"
4113
  msgid "E-Mail Templates"
4114
  msgstr "Template d'E-Mail"
4115
 
4116
+ #: core/class-settings.php:393
4117
  msgctxt "admin settings"
4118
  msgid "Email confirmation message"
4119
  msgstr "Message de confirmation par E-Mail"
4120
 
4121
+ #: core/class-settings.php:397
4122
  msgctxt "admin settings"
4123
  msgid "Sent after a listing has been submitted."
4124
  msgstr "Envoyer après qu'une annonce ait été soumise"
4125
 
4126
+ #: core/class-settings.php:398 core/class-settings.php:406
4127
+ #: core/class-settings.php:447
4128
  msgctxt "admin settings"
4129
  msgid "Listing's title"
4130
  msgstr "Titre de l'annonce"
4131
 
4132
+ #: core/class-settings.php:401
4133
  msgctxt "admin settings"
4134
  msgid "Listing published message"
4135
  msgstr "Message publié de l'annonce"
4136
 
4137
+ #: core/class-settings.php:404
4138
  msgctxt "admin settings"
4139
  msgid ""
4140
  "Your listing \"[listing]\" is now available at [listing-url] and can be "
4143
  "Votre annonce \"[listing]\" est maintenant disponible à [listing-url] et "
4144
  "elle peut être vu par tout le monde."
4145
 
4146
+ #: core/class-settings.php:405
4147
  msgctxt "admin settings"
4148
  msgid "Sent when the listing has been published or approved by an admin."
4149
  msgstr ""
4150
  "Envoyé lorsque l'annonce a été publiée ou approuvée par un administrateur."
4151
 
4152
+ #: core/class-settings.php:407
4153
  msgctxt "admin settings"
4154
  msgid "Listing's URL"
4155
  msgstr "Url de l'annonce"
4156
 
4157
+ #: core/class-settings.php:411
4158
  msgctxt "admin settings"
4159
  msgid "Listing Contact Message"
4160
  msgstr "Lister des messages de contact"
4161
 
4162
+ #: core/class-settings.php:415
4163
  msgctxt "admin settings"
4164
  msgid ""
4165
  "Sent to listing owners when someone uses the contact form on their listing "
4168
  "Envoyer aux propriétaires des annonces quand quelqu'un utilise le formulaire "
4169
  "de contact sur leurs pages d'annonces."
4170
 
4171
+ #: core/class-settings.php:425
4172
  msgctxt "admin settings"
4173
  msgid "Payment related"
4174
  msgstr "Paiement lié"
4175
 
4176
+ #: core/class-settings.php:442
4177
  msgctxt "admin settings"
4178
  msgid "Payment abandoned reminder message"
4179
  msgstr "Paiement abandonné, message de rappel"
4180
 
4181
+ #: core/class-settings.php:446
4182
  msgctxt "admin settings"
4183
  msgid "Sent some time after a pending payment is abandoned by users."
4184
  msgstr ""
4185
  "Envoyer après un certain temps lorsqu'un paiement en attente est abandonné "
4186
  "par les utilisateurs."
4187
 
4188
+ #: core/class-settings.php:448
4189
  msgctxt "admin settings"
4190
  msgid "Checkout URL link"
4191
  msgstr "Vérificateur de lien URL"
4192
 
4193
+ #: core/class-settings.php:454
4194
  msgctxt "admin settings"
4195
  msgid "Renewal Reminders"
4196
  msgstr "Renouveller les rappels"
4197
 
4198
+ #: core/class-settings.php:457
4199
  msgctxt "admin settings"
4200
  msgid ""
4201
  "This section refers only to the text of the renewal/expiration notices. You "
4205
  "d'expiration. Vous pouvez également configurer <a> quand les e-mails seront "
4206
  "envoyés </a>."
4207
 
4208
+ #: core/class-settings.php:461
4209
  msgctxt "admin settings"
4210
  msgid "Pending expiration e-mail message"
4211
  msgstr "Expiration imminente du mail"
4212
 
4213
+ #: core/class-settings.php:465
4214
  msgctxt "settings"
4215
  msgid ""
4216
  "Sent some time before the listing expires. Applies to non-recurring renewals "
4219
  "Envoyé quelque temps avant l'expiration de l'annonce. Valable seulement pour "
4220
  "les renouvellements non-récurrents."
4221
 
4222
+ #: core/class-settings.php:466 core/class-settings.php:479
4223
+ #: core/class-settings.php:492 core/class-settings.php:505
4224
+ #: core/class-settings.php:518
4225
  msgctxt "settings"
4226
  msgid "Listing's name (with link)"
4227
  msgstr "Nom de l'annonce (avec lien)"
4228
 
4229
+ #: core/class-settings.php:467 core/class-settings.php:480
4230
+ #: core/class-settings.php:493 core/class-settings.php:506
4231
+ #: core/class-settings.php:519
4232
  msgctxt "settings"
4233
  msgid "Author's name"
4234
  msgstr "Nom de l'auteur"
4235
 
4236
+ #: core/class-settings.php:468 core/class-settings.php:481
4237
+ #: core/class-settings.php:520
4238
  msgctxt "settings"
4239
  msgid "Expiration date"
4240
  msgstr "Date d'expiration"
4241
 
4242
+ #: core/class-settings.php:469
4243
  msgctxt "settings"
4244
  msgid "Category that is going to expire"
4245
  msgstr "Catégorier qui va expirer"
4246
 
4247
+ #: core/class-settings.php:470 core/class-settings.php:483
4248
+ #: core/class-settings.php:522
4249
  msgctxt "settings"
4250
  msgid "Link to renewal page"
4251
  msgstr "Lien pour renouveller la page"
4252
 
4253
+ #: core/class-settings.php:471 core/class-settings.php:484
4254
+ #: core/class-settings.php:496 core/class-settings.php:509
4255
+ #: core/class-settings.php:523
4256
  msgctxt "settings"
4257
  msgid "Link to your site"
4258
  msgstr "Lien vers votre site"
4259
 
4260
+ #: core/class-settings.php:474
4261
  msgctxt "admin settings"
4262
  msgid "Listing Renewal e-mail message"
4263
  msgstr "Message mail de renouvellement d'annonce"
4264
 
4265
+ #: core/class-settings.php:478
4266
  msgctxt "settings"
4267
  msgid ""
4268
  "Sent at the time of listing expiration. Applies to non-recurring renewals "
4271
  "Envoyé au moment de l'expiration de l'annonce. Seulement valable pour les "
4272
  "renouvellements non-récurrents."
4273
 
4274
+ #: core/class-settings.php:482 core/class-settings.php:521
4275
  msgctxt "settings"
4276
  msgid "Category that expired"
4277
  msgstr "Catégories qui ont expiré"
4278
 
4279
+ #: core/class-settings.php:487
4280
  msgctxt "admin settings"
4281
  msgid "Listing auto-renewal reminder (recurring payments)"
4282
  msgstr "Rappel d'auto-renouvellement des annonces (paiements récurrents)"
4283
 
4284
+ #: core/class-settings.php:491
4285
  msgctxt "settings"
4286
  msgid ""
4287
  "Sent some time before the listing is auto-renewed. Applies to recurring "
4290
  "Envoyé un certain temps avant que l'annonce est auto-renouvellement. Valable "
4291
  "pour les renouvellements périodiques seulement."
4292
 
4293
+ #: core/class-settings.php:494 core/class-settings.php:508
4294
  msgctxt "settings"
4295
  msgid "Renewal date"
4296
  msgstr "Date de renouvellement"
4297
 
4298
+ #: core/class-settings.php:495
4299
  msgctxt "settings"
4300
  msgid "Category that is going to be renewed"
4301
  msgstr "Catégories qui vont être renouvelées"
4302
 
4303
+ #: core/class-settings.php:497
4304
  msgctxt "settings"
4305
  msgid "Link to manage subscriptions"
4306
  msgstr "Lien pour gérer les abonnements"
4307
 
4308
+ #: core/class-settings.php:500
4309
  msgctxt "admin settings"
4310
  msgid "Listing Renewal e-mail message (recurring payments)"
4311
  msgstr "Renouvellement des annonces par mail (paiements récurrents)"
4312
 
4313
+ #: core/class-settings.php:504
4314
  msgctxt "settings"
4315
  msgid ""
4316
  "Sent after the listing is auto-renewed. Applies to recurring renewals only."
4318
  "Envoyé dès que les annonces se soient auto-renouvelées. Appliqué aux "
4319
  "paiements récurrents seulement."
4320
 
4321
+ #: core/class-settings.php:507
4322
  msgctxt "settings"
4323
  msgid "Renewed category"
4324
  msgstr "Catégories renouvellées"
4325
 
4326
+ #: core/class-settings.php:513
4327
  msgctxt "admin settings"
4328
  msgid "Renewal reminder e-mail message"
4329
  msgstr "Renouveler le rappel par mail"
4330
 
4331
+ #: core/class-settings.php:517
4332
  msgctxt "settings"
4333
  msgid ""
4334
  "Sent some time after listing expiration and when no renewal has occurred. "
4338
  "renouvellement n'a pas eu lieu. Valable pour deux renouvellements récurrents "
4339
  "et non récurrents."
4340
 
4341
+ #: core/class-settings.php:527
4342
  msgctxt "admin settings"
4343
  msgid "Payment"
4344
  msgstr "Paiement"
4345
 
4346
+ #: core/class-settings.php:528
4347
  msgctxt "admin settings"
4348
  msgid "Payment Settings"
4349
  msgstr "Paramètres de paiement"
4350
 
4351
+ #: core/class-settings.php:531
4352
  msgctxt "admin settings"
4353
  msgid "Turn On payments?"
4354
  msgstr "Activer les paiements ?"
4355
 
4356
+ #: core/class-settings.php:533
4357
  msgctxt "admin settings"
4358
  msgid "Put payment gateways in test mode?"
4359
  msgstr "Passer les passerelles de paiement en mode test ?"
4360
 
4361
+ #: core/class-settings.php:538
4362
  msgctxt "admin settings"
4363
  msgid "Perform checkouts on the secure (HTTPS) version of your site?"
4364
  msgstr ""
4365
  "Effectuer la vérification sur la version sécurisée (HTTPS) de votre site?"
4366
 
4367
+ #: core/class-settings.php:541
4368
  msgctxt "admin settings"
4369
  msgid ""
4370
  "Recommended for added security. For this to work you need to enable HTTPS on "
4373
  "Recommandé pour une sécurité accrue. Pour que cela fonctionne, vous devez "
4374
  "activer HTTPS sur votre serveur et <a> obtenir un certificat SSL </a>."
4375
 
4376
+ #: core/class-settings.php:545
4377
  msgctxt "admin settings"
4378
  msgid "Currency Code"
4379
  msgstr "Code de devise"
4380
 
4381
+ #: core/class-settings.php:547
4382
  msgctxt "admin settings"
4383
  msgid "Australian Dollar (AUD)"
4384
  msgstr "Dollar Australien (AUD)"
4385
 
4386
+ #: core/class-settings.php:548
4387
  msgctxt "admin settings"
4388
  msgid "Brazilian Real (BRL)"
4389
  msgstr "Real Brésilien (BRL)"
4390
 
4391
+ #: core/class-settings.php:549
4392
  msgctxt "admin settings"
4393
  msgid "Canadian Dollar (CAD)"
4394
  msgstr "Dollar Canadien (CAD)"
4395
 
4396
+ #: core/class-settings.php:550
4397
  msgctxt "admin settings"
4398
  msgid "Czech Koruna (CZK)"
4399
  msgstr "Couronne Tchèque (CZK)"
4400
 
4401
+ #: core/class-settings.php:551
4402
  msgctxt "admin settings"
4403
  msgid "Danish Krone (DKK)"
4404
  msgstr "Couronne Danoise (DKK)"
4405
 
4406
+ #: core/class-settings.php:552
4407
  msgctxt "admin settings"
4408
  msgid "Euro (EUR)"
4409
  msgstr "Euro (EUR)"
4410
 
4411
+ #: core/class-settings.php:553
4412
  msgctxt "admin settings"
4413
  msgid "Hong Kong Dollar (HKD)"
4414
  msgstr "Dollar de Hong Kong(HKD)"
4415
 
4416
+ #: core/class-settings.php:554
4417
  msgctxt "admin settings"
4418
  msgid "Hungarian Forint (HUF)"
4419
  msgstr "Forint Hongrois (HUF)"
4420
 
4421
+ #: core/class-settings.php:555
4422
  msgctxt "admin settings"
4423
  msgid "Israeli New Shequel (ILS)"
4424
  msgstr "Nouveau Shequel Israélien (ILS)"
4425
 
4426
+ #: core/class-settings.php:556
4427
  msgctxt "admin settings"
4428
  msgid "Japanese Yen (JPY)"
4429
  msgstr "Yen Japonais (JPY)"
4430
 
4431
+ #: core/class-settings.php:557
4432
  msgctxt "admin settings"
4433
  msgid "Malasian Ringgit (MYR)"
4434
  msgstr "Ringgit Malaisien (MYR)"
4435
 
4436
+ #: core/class-settings.php:558
4437
  msgctxt "admin settings"
4438
  msgid "Mexican Peso (MXN)"
4439
  msgstr "Peso Mexicain (MXN)"
4440
 
4441
+ #: core/class-settings.php:559
4442
  msgctxt "admin settings"
4443
  msgid "Norwegian Krone (NOK)"
4444
  msgstr "Couronne Norvégienne (NOK)"
4445
 
4446
+ #: core/class-settings.php:560
4447
  msgctxt "admin settings"
4448
  msgid "New Zealand Dollar (NZD)"
4449
  msgstr "Dollar Néo-Zélandais (NZD)"
4450
 
4451
+ #: core/class-settings.php:561
4452
  msgctxt "admin settings"
4453
  msgid "Philippine Peso (PHP)"
4454
  msgstr "Peso Phillipin (PHP)"
4455
 
4456
+ #: core/class-settings.php:562
4457
  msgctxt "admin settings"
4458
  msgid "Polish Zloty (PLN)"
4459
  msgstr "Zloty Polonais (PLN)"
4460
 
4461
+ #: core/class-settings.php:563
4462
  msgctxt "admin settings"
4463
  msgid "Pound Sterling (GBP)"
4464
  msgstr "Livre Sterling (GBP)"
4465
 
4466
+ #: core/class-settings.php:564
4467
  msgctxt "admin settings"
4468
  msgid "Singapore Dollar (SGD)"
4469
  msgstr "Dollar Singaporien (SGD)"
4470
 
4471
+ #: core/class-settings.php:565
4472
  msgctxt "admin settings"
4473
  msgid "Swedish Krona (SEK)"
4474
  msgstr "Couronne Suédoise (SEK)"
4475
 
4476
+ #: core/class-settings.php:566
4477
  msgctxt "admin settings"
4478
  msgid "Swiss Franc (CHF)"
4479
  msgstr "Franc Suisse (CHF)"
4480
 
4481
+ #: core/class-settings.php:567
4482
  msgctxt "admin settings"
4483
  msgid "Taiwan Dollar (TWD)"
4484
  msgstr "Dollar Taiwanais (TWD)"
4485
 
4486
+ #: core/class-settings.php:568
4487
  msgctxt "admin settings"
4488
  msgid "Thai Baht (THB)"
4489
  msgstr "Baht Thaïlandais"
4490
 
4491
+ #: core/class-settings.php:569
4492
  msgctxt "admin settings"
4493
  msgid "Turkish Lira (TRY)"
4494
  msgstr "Livre Turque (TRY)"
4495
 
4496
+ #: core/class-settings.php:570
4497
  #, fuzzy
4498
  msgctxt "admin settings"
4499
  msgid "U.S. Dollar (USD)"
4500
  msgstr "Dollar U.S. "
4501
 
4502
+ #: core/class-settings.php:574
4503
  msgctxt "admin settings"
4504
  msgid "Currency Symbol"
4505
  msgstr "Devise"
4506
 
4507
+ #: core/class-settings.php:579
4508
  msgctxt "admin settings"
4509
  msgid "Currency symbol display"
4510
  msgstr "Affichage de la devise"
4511
 
4512
+ #: core/class-settings.php:583
4513
  msgctxt "admin settings"
4514
  msgid "Show currency symbol on the left"
4515
  msgstr "Afficher le symbole de devise à gauche"
4516
 
4517
+ #: core/class-settings.php:584
4518
  msgctxt "admin settings"
4519
  msgid "Show currency symbol on the right"
4520
  msgstr "Afficher le symbole de devise à droite"
4521
 
4522
+ #: core/class-settings.php:585
4523
  msgctxt "admin settings"
4524
  msgid "Do not show currency symbol"
4525
  msgstr "Ne pas montrer la devise"
4526
 
4527
+ #: core/class-settings.php:587
4528
  msgctxt "admin settings"
4529
  msgid "Thank you for payment message"
4530
  msgstr "Merci pour le message de paiement"
4531
 
4532
+ #: core/class-settings.php:588
4533
  msgctxt "admin settings"
4534
  msgid ""
4535
  "Thank you for your payment. Your payment is being verified and your listing "
4539
  "votre annonce en revue. Le processus de vérification et d'examen peut "
4540
  "prendre jusqu'à 48 heures."
4541
 
4542
+ #: core/class-settings.php:593
4543
  msgctxt "admin settings"
4544
  msgid "Ask users to come back for abandoned payments?"
4545
  msgstr "Demandez aux utilisateurs de revenir pour les paiements abandonnés ?"
4546
 
4547
+ #: core/class-settings.php:596
4548
  msgctxt "admin settings"
4549
  msgid ""
4550
  "An abandoned payment is when a user attempts to place a listing and gets to "
4558
  "l'utilisateur n'a tout simplement pas compléter la transaction. Le plugin "
4559
  "peut peut rappeler les auteurs pour continuer la publication de leur annonce."
4560
 
4561
+ #: core/class-settings.php:602
4562
  msgctxt "admin settings"
4563
  msgid "Listing abandonment threshold (hours)"
4564
  msgstr "Seuil d'abandon de l'annonce (heures)"
4565
 
4566
+ #: core/class-settings.php:607
4567
  msgctxt "admin settings"
4568
  msgid ""
4569
  "Listings with pending payments are marked as abandoned after this time. You "
4573
  "cette heure. Vous pouvez également personnaliser <a> l'e-mail </a> que les "
4574
  "utilisateurs reçoivent."
4575
 
4576
+ #: core/class-settings.php:612
4577
  msgctxt "admin settings"
4578
  msgid "Themes"
4579
  msgstr "Thèmes"
4580
 
4581
+ #: core/class-settings.php:614
4582
  msgctxt "admin settings"
4583
  msgid "You can manage your themes on <a>Directory Themes</a>."
4584
  msgstr ""
4585
 
4586
+ #: core/class-settings.php:619
4587
  msgctxt "admin settings"
4588
  msgid "Theme button style"
4589
  msgstr "Boutons de thèmes"
4590
 
4591
+ #: core/class-settings.php:623
4592
  msgctxt "admin settings"
4593
  msgid "Use the BD theme style for BD buttons"
4594
  msgstr "Utiliser le thème BD pour les boutons BD"
4595
 
4596
+ #: core/class-settings.php:624
4597
  msgctxt "admin settings"
4598
  msgid "Use the WP theme style for BD buttons"
4599
  msgstr "Utiliser le thème WP pour les boutons BD"
4600
 
4601
+ #: core/class-settings.php:631
4602
  msgctxt "admin settings"
4603
  msgid "Image"
4604
  msgstr "Image"
4605
 
4606
+ #: core/class-settings.php:632
4607
  msgctxt "admin settings"
4608
  msgid ""
4609
  "Any changes to these settings will affect new listings only. Existing "
4617
  "télécharger l'image (s) sur cette annonce, après avoir cfait les "
4618
  "modifications voulue."
4619
 
4620
+ #: core/class-settings.php:633
4621
  msgctxt "admin settings"
4622
  msgid "Image Settings"
4623
  msgstr "Paraamètres des images"
4624
 
4625
+ #: core/class-settings.php:634
4626
  msgctxt "admin settings"
4627
  msgid "Allow images?"
4628
  msgstr "Autoriser les images ?"
4629
 
4630
+ #: core/class-settings.php:636
4631
  msgctxt "admin settings"
4632
  msgid "Min Image File Size (KB)"
4633
  msgstr "Taille minnimal des fichiers images (KB)"
4634
 
4635
+ #: core/class-settings.php:637
4636
  msgctxt "admin settings"
4637
  msgid "Max Image File Size (KB)"
4638
  msgstr "Taille maximal des fichiers images (KB)"
4639
 
4640
+ #: core/class-settings.php:639
4641
  msgctxt "admin settings"
4642
  msgid "Min image width (px)"
4643
  msgstr "Largeur minnimal des images (px)"
4644
 
4645
+ #: core/class-settings.php:640
4646
  msgctxt "admin settings"
4647
  msgid "Min image height (px)"
4648
  msgstr "Hauteur minnimal des images (px)"
4649
 
4650
+ #: core/class-settings.php:642
4651
  msgctxt "admin settings"
4652
  msgid "Max image width (px)"
4653
  msgstr "Largeur maximal des images (px)"
4654
 
4655
+ #: core/class-settings.php:643
4656
  msgctxt "admin settings"
4657
  msgid "Max image height (px)"
4658
  msgstr "Hauteur maximal des images (px)"
4659
 
4660
+ #: core/class-settings.php:645
4661
  msgctxt "admin settings"
4662
  msgid "Turn on thickbox/lightbox?"
4663
  msgstr "Activer thickbox/lightbox ?"
4664
 
4665
+ #: core/class-settings.php:645
4666
  msgctxt "admin settings"
4667
  msgid ""
4668
  "Uncheck if it conflicts with other elements or plugins installed on your site"
4670
  "Décochez si vela entre en conflit avec d'autres éléments ou plugins "
4671
  "installés sur votre site"
4672
 
4673
+ #: core/class-settings.php:647
4674
  msgctxt "admin settings"
4675
  msgid "Thumbnails"
4676
  msgstr "Miniatures"
4677
 
4678
+ #: core/class-settings.php:648
4679
  msgctxt "admin settings"
4680
  msgid "Thumbnail width (px)"
4681
  msgstr "Largeur des miniatures (en pixel)"
4682
 
4683
+ #: core/class-settings.php:649
4684
  msgctxt "admin settings"
4685
  msgid "Thumbnail height (px)"
4686
  msgstr "Hauteur des miniatures (en pixel)"
4687
 
4688
+ #: core/class-settings.php:652
4689
  msgctxt "admin settings"
4690
  msgid "Crop thumbnails to exact dimensions?"
4691
  msgstr "Recadrer les miniatures aux dimensions exactes ?"
4692
 
4693
+ #: core/class-settings.php:655
4694
  msgctxt "admin settings"
4695
  msgid ""
4696
  "When enabled images will match exactly the dimensions above but part of the "
4705
  "proportionnellement. Selon les images téléchargées, les miniatures peuvent "
4706
  "avoir différentes hauteurs."
4707
 
4708
+ #: core/class-settings.php:661
4709
  msgctxt "admin settings"
4710
  msgid "Number of free images"
4711
  msgstr "Nombre d'images gratuites"
4712
 
4713
+ #: core/class-settings.php:666
4714
  msgctxt "admin settings"
4715
  msgid ""
4716
  "For paid listing images, configure that by adding or editing a <a>Fee Plan</"
4720
  "ou modification d'un <a>plan de frais</a> au lieu de ce paramètre, qui est "
4721
  "ignoré pour les annonces payées."
4722
 
4723
+ #: core/class-settings.php:669
4724
  msgctxt "admin settings"
4725
  msgid "Use default picture for listings with no picture?"
4726
  msgstr "Utiliser l'image par défault pour les annonces sans images ?"
4727
 
4728
+ #: core/class-settings.php:670
4729
  msgctxt "admin settings"
4730
  msgid "Show Thumbnail on main listings page?"
4731
  msgstr "Montrer les miniatures sur page principale des annonces ?"
4732
 
4733
+ #: core/class-settings.php:699
4734
  msgctxt "admin settings"
4735
  msgid "User"
4736
  msgstr ""
4737
 
4738
+ #: core/class-settings.php:700
4739
  #, fuzzy
4740
  msgctxt "admin settings"
4741
  msgid "User registration date"
4742
  msgstr "Date d'expiration de l'annonce"
4743
 
4744
+ #: core/class-settings.php:726
4745
  msgctxt "admin settings"
4746
  msgid ""
4747
  "Could not copy the AJAX compatibility plugin \"%s\". Compatibility mode was "
4750
  "Impossible de copier le plugin de compatibilité AJAX \"% s\". Le mode de "
4751
  "compatibilité n'a pas été activé."
4752
 
4753
+ #: core/class-settings.php:734
4754
  msgctxt "admin settings"
4755
  msgid ""
4756
  "Could not activate AJAX Compatibility mode: the directory \"%s\" could not "
4759
  "Impossible d'activer le mode de compatibilité AJAX: le répertoire \"% s \" "
4760
  "ne peux pas être créé."
4761
 
4762
+ #: core/class-settings.php:743
4763
  msgctxt "admin settings"
4764
  msgid ""
4765
  "Could not remove the \"Business Directory Plugin - AJAX Compatibility Module"
4768
  "Impossible de supprimer le \"Module de comptabilité AJAX du plugin \". "
4769
  "Veuillez supprimer le fichier \"% s \" manuellement ou désactiver le plugin."
4770
 
4771
+ #: core/class-settings.php:1063
4772
  msgctxt "settings"
4773
  msgid "Deactivate License"
4774
  msgstr "Désactiver la licence"
4775
 
4776
+ #: core/class-settings.php:1065
4777
  msgctxt "settings"
4778
  msgid "Deactivating license..."
4779
  msgstr "Désactivation de la licence..."
4780
 
4781
+ #: core/class-settings.php:1068
4782
  msgctxt "settings"
4783
  msgid "Activate License"
4784
  msgstr "Activer la licence"
4785
 
4786
+ #: core/class-settings.php:1070
4787
  msgctxt "settings"
4788
  msgid "Activating license..."
4789
  msgstr "Activation de la licence"
4790
 
4791
+ #: core/class-settings.php:1093
4792
  msgctxt "admin settings"
4793
  msgid "Valid placeholders: %s"
4794
  msgstr "Espaces réservés valides:% s"
4795
 
4796
+ #: core/class-settings.php:1127
4797
  msgctxt "settings email"
4798
  msgid "Click to edit e-mail"
4799
  msgstr "Cliquer pour éditer l'e-mail"
4800
 
4801
+ #: core/class-settings.php:1128
4802
  msgctxt "settings email"
4803
  msgid "Click to edit"
4804
  msgstr "Cliquer pour éditer"
4805
 
4806
+ #: core/class-settings.php:1141
4807
  msgctxt "settings email"
4808
  msgid "E-Mail Subject"
4809
  msgstr "Sujet de l'e-mail"
4810
 
4811
+ #: core/class-settings.php:1152
4812
  msgctxt "settings email"
4813
  msgid "E-Mail Body"
4814
  msgstr "Corps de l'e-mail"
4815
 
4816
+ #: core/class-settings.php:1163
4817
  msgctxt "settings email"
4818
  msgid "You can use the following placeholders:"
4819
  msgstr "Vous pouvez utiliser les paramètres suivantes:"
4820
 
4821
+ #: core/class-settings.php:1186
4822
  msgctxt "settings email"
4823
  msgid "Preview e-mail"
4824
  msgstr "E-mail précédents"
4825
 
4826
+ #: core/class-settings.php:1187
4827
  msgctxt "settings email"
4828
  msgid "Cancel"
4829
  msgstr "Annuler"
4830
 
4831
+ #: core/class-settings.php:1188
4832
  msgctxt "settings email"
4833
  msgid "Save Changes"
4834
  msgstr "Sauvegarder les changements"
4835
 
4836
+ #: core/class-settings.php:1207
4837
  msgctxt "settings email"
4838
  msgid "Site title"
4839
  msgstr "Titre du site"
4840
 
4841
+ #: core/class-settings.php:1210
4842
  msgctxt "settings email"
4843
  msgid "Site title (with link)"
4844
  msgstr "Titre du site (avec lien)"
4845
 
4846
+ #: core/class-settings.php:1213
4847
  msgctxt "settings email"
4848
  msgid "Site address (with link)"
4849
  msgstr "Adresse du site (avec lien)"
4850
 
4851
+ #: core/class-settings.php:1216
4852
  msgctxt "settings email"
4853
  msgid "Directory URL (with link)"
4854
  msgstr "Annuaire des URL (avec lien)"
4855
 
4856
+ #: core/class-settings.php:1219
4857
  msgctxt "settings email"
4858
  msgid "Current date"
4859
  msgstr "Date actuelle"
4860
 
4861
+ #: core/class-settings.php:1222
4862
  msgctxt "settings email"
4863
  msgid "Current time"
4864
  msgstr "Heure actuelle"
languages/WPBDM.pot CHANGED
@@ -2,9 +2,9 @@
2
  # This file is distributed under the same license as the Business Directory Plugin package.
3
  msgid ""
4
  msgstr ""
5
- "Project-Id-Version: Business Directory Plugin 4.0.7\n"
6
  "Report-Msgid-Bugs-To: http://wordpress.org/tag/business-directory-plugin\n"
7
- "POT-Creation-Date: 2016-06-21 22:32:39+00:00\n"
8
  "MIME-Version: 1.0\n"
9
  "Content-Type: text/plain; charset=UTF-8\n"
10
  "Content-Transfer-Encoding: 8bit\n"
@@ -2090,7 +2090,7 @@ msgctxt "form-fields admin"
2090
  msgid "Please see the <a>Form Fields documentation</a> for more details."
2091
  msgstr ""
2092
 
2093
- #. #-#-#-#-# WPBDM.pot (Business Directory Plugin 4.0.7) #-#-#-#-#
2094
  #. Plugin Name of the plugin/theme
2095
  #: admin/templates/header.tpl.php:4
2096
  msgid "Business Directory Plugin"
@@ -3223,6 +3223,13 @@ msgctxt "admin settings"
3223
  msgid "Display and require user agreement to Terms and Conditions"
3224
  msgstr ""
3225
 
 
 
 
 
 
 
 
3226
  #: core/class-settings.php:107
3227
  msgctxt "admin settings"
3228
  msgid ""
@@ -3344,13 +3351,13 @@ msgctxt "admin settings"
3344
  msgid "Enable AJAX compatibility mode?"
3345
  msgstr ""
3346
 
3347
- #: core/class-settings.php:179 core/class-settings.php:660
3348
  msgctxt "admin settings"
3349
  msgid "Listings"
3350
  msgstr ""
3351
 
3352
- #: core/class-settings.php:180 core/class-settings.php:330
3353
- #: core/class-settings.php:617
3354
  msgctxt "admin settings"
3355
  msgid "General Settings"
3356
  msgstr ""
@@ -3430,17 +3437,27 @@ msgctxt "admin settings"
3430
  msgid "Status of listings upon uninstalling plugin"
3431
  msgstr ""
3432
 
 
 
 
 
 
 
 
 
 
 
3433
  #: core/class-settings.php:220
3434
  msgctxt "admin settings"
3435
  msgid "Status of deleted listings"
3436
  msgstr ""
3437
 
3438
- #: core/class-settings.php:223
3439
  msgctxt "admin settings"
3440
  msgid "Submit Listing instructions message"
3441
  msgstr ""
3442
 
3443
- #: core/class-settings.php:223
3444
  msgctxt "admin settings"
3445
  msgid ""
3446
  "This text is displayed at the first page of the Submit Listing process for "
@@ -3448,247 +3465,257 @@ msgid ""
3448
  "form or anything you want to tell users before they get started."
3449
  msgstr ""
3450
 
3451
- #: core/class-settings.php:226
3452
  msgctxt "admin settings"
3453
  msgid "Listing Renewal"
3454
  msgstr ""
3455
 
3456
- #: core/class-settings.php:227
3457
  msgctxt "admin settings"
3458
  msgid "Turn on listing renewal option?"
3459
  msgstr ""
3460
 
3461
- #: core/class-settings.php:230
3462
  msgctxt "admin settings"
3463
  msgid "Allow recurring renewal payments?"
3464
  msgstr ""
3465
 
3466
- #: core/class-settings.php:233
3467
  msgctxt "admin settings"
3468
  msgid ""
3469
  "Allow users to opt in for automatic renewal of their listings. The fee is "
3470
  "charged at the time the listing expires without user intervention."
3471
  msgstr ""
3472
 
3473
- #: core/class-settings.php:237
3474
  msgctxt "admin settings"
3475
  msgid "Use recurring payments as the default payment method?"
3476
  msgstr ""
3477
 
3478
- #: core/class-settings.php:240
3479
  msgctxt "admin settings"
3480
  msgid ""
3481
  "Enable automatic renewal without having users opt in during the submit "
3482
  "process."
3483
  msgstr ""
3484
 
3485
- #: core/class-settings.php:245
3486
  msgctxt "admin settings"
3487
  msgid "Listing renewal e-mail threshold (in days)"
3488
  msgstr ""
3489
 
3490
- #: core/class-settings.php:248
3491
  msgctxt "admin settings"
3492
  msgid ""
3493
  "Configure how many days before listing expiration is the renewal e-mail sent."
3494
  msgstr ""
3495
 
3496
- #: core/class-settings.php:252
3497
  msgctxt "admin settings"
3498
  msgid ""
3499
  "Send expiration notices including a cancel links to auto-renewed listings?"
3500
  msgstr ""
3501
 
3502
- #: core/class-settings.php:259
3503
  msgctxt "admin settings"
3504
  msgid "Remind listing owners of expired listings (past due)?"
3505
  msgstr ""
3506
 
3507
- #: core/class-settings.php:264
3508
  msgctxt "admin settings"
3509
  msgid "Listing renewal reminder e-mail threshold (in days)"
3510
  msgstr ""
3511
 
3512
- #: core/class-settings.php:267
3513
  msgctxt "admin settings"
3514
  msgid ""
3515
  "Configure how many days after the expiration of a listing an e-mail reminder "
3516
  "should be sent to the owner."
3517
  msgstr ""
3518
 
3519
- #: core/class-settings.php:270
3520
  msgctxt "admin settings"
3521
  msgid "Post/Category Settings"
3522
  msgstr ""
3523
 
3524
- #: core/class-settings.php:271
3525
  msgctxt "admin settings"
3526
  msgid "Default new post status"
3527
  msgstr ""
3528
 
3529
- #: core/class-settings.php:274
 
 
 
 
 
 
 
 
 
 
3530
  msgctxt "admin settings"
3531
  msgid "Edit post status"
3532
  msgstr ""
3533
 
3534
- #: core/class-settings.php:276
3535
  msgctxt "admin settings"
3536
  msgid "Order categories list by"
3537
  msgstr ""
3538
 
3539
- #: core/class-settings.php:278
3540
  msgctxt "admin settings"
3541
  msgid "Name"
3542
  msgstr ""
3543
 
3544
- #: core/class-settings.php:279
3545
  msgctxt "admin settings"
3546
  msgid "Slug"
3547
  msgstr ""
3548
 
3549
- #: core/class-settings.php:280
3550
  msgctxt "admin settings"
3551
  msgid "Listing Count"
3552
  msgstr ""
3553
 
3554
- #: core/class-settings.php:282
3555
  msgctxt "admin settings"
3556
  msgid "Sort order for categories"
3557
  msgstr ""
3558
 
3559
- #: core/class-settings.php:283 core/class-settings.php:301
3560
  msgctxt "admin settings"
3561
  msgid "Ascending"
3562
  msgstr ""
3563
 
3564
- #: core/class-settings.php:283 core/class-settings.php:301
3565
  msgctxt "admin settings"
3566
  msgid "Descending"
3567
  msgstr ""
3568
 
3569
- #: core/class-settings.php:284
3570
  msgctxt "admin settings"
3571
  msgid "Show category post count?"
3572
  msgstr ""
3573
 
3574
- #: core/class-settings.php:285
3575
  msgctxt "admin settings"
3576
  msgid "Hide empty categories?"
3577
  msgstr ""
3578
 
3579
- #: core/class-settings.php:286
3580
  msgctxt "admin settings"
3581
  msgid "Show only parent categories in category list?"
3582
  msgstr ""
3583
 
3584
- #: core/class-settings.php:288
3585
  msgctxt "admin settings"
3586
  msgid "Listings Sorting"
3587
  msgstr ""
3588
 
3589
- #: core/class-settings.php:289
3590
  msgctxt "admin settings"
3591
  msgid "Order directory listings by"
3592
  msgstr ""
3593
 
3594
- #: core/class-settings.php:291
3595
  msgctxt "admin settings"
3596
  msgid "Title"
3597
  msgstr ""
3598
 
3599
- #: core/class-settings.php:292
3600
  msgctxt "admin settings"
3601
  msgid "Author"
3602
  msgstr ""
3603
 
3604
- #: core/class-settings.php:293 core/class-settings.php:703
3605
  msgctxt "admin settings"
3606
  msgid "Date posted"
3607
  msgstr ""
3608
 
3609
- #: core/class-settings.php:294 core/class-settings.php:704
3610
  msgctxt "admin settings"
3611
  msgid "Date last modified"
3612
  msgstr ""
3613
 
3614
- #: core/class-settings.php:295
3615
  msgctxt "admin settings"
3616
  msgid "Random"
3617
  msgstr ""
3618
 
3619
- #: core/class-settings.php:296
3620
  msgctxt "admin settings"
3621
  msgid "Paid first then free. Inside each group by date."
3622
  msgstr ""
3623
 
3624
- #: core/class-settings.php:297
3625
  msgctxt "admin settings"
3626
  msgid "Paid first then free. Inside each group by title."
3627
  msgstr ""
3628
 
3629
- #: core/class-settings.php:299
3630
  msgctxt "admin settings"
3631
  msgid "Sort directory listings by"
3632
  msgstr ""
3633
 
3634
- #: core/class-settings.php:300
3635
  msgctxt "admin settings"
3636
  msgid "Ascending for ascending order A-Z, Descending for descending order Z-A"
3637
  msgstr ""
3638
 
3639
- #: core/class-settings.php:305
3640
  msgctxt "admin settings"
3641
  msgid "Enable sort bar?"
3642
  msgstr ""
3643
 
3644
- #: core/class-settings.php:310
3645
  msgctxt "admin settings"
3646
  msgid "Sortbar Fields"
3647
  msgstr ""
3648
 
3649
- #: core/class-settings.php:319
3650
  msgctxt "admin settings"
3651
  msgid "Featured (Sticky) listing settings"
3652
  msgstr ""
3653
 
3654
- #: core/class-settings.php:320
3655
  msgctxt "admin settings"
3656
  msgid "Offer sticky listings?"
3657
  msgstr ""
3658
 
3659
- #: core/class-settings.php:321
3660
  msgctxt "admin settings"
3661
  msgid "Offer upgrades during submit process?"
3662
  msgstr ""
3663
 
3664
- #: core/class-settings.php:322
3665
  msgctxt "admin settings"
3666
  msgid "Sticky listing price"
3667
  msgstr ""
3668
 
3669
- #: core/class-settings.php:323
3670
  msgctxt "admin settings"
3671
  msgid "Sticky listing page description text"
3672
  msgstr ""
3673
 
3674
- #: core/class-settings.php:324
3675
  msgctxt "admin settings"
3676
  msgid ""
3677
  "You can upgrade your listing to featured status. Featured listings will "
3678
  "always appear on top of regular listings."
3679
  msgstr ""
3680
 
3681
- #: core/class-settings.php:329
3682
  msgctxt "admin settings"
3683
  msgid "E-Mail"
3684
  msgstr ""
3685
 
3686
- #: core/class-settings.php:333
3687
  msgctxt "admin settings"
3688
  msgid "Display email address fields publicly?"
3689
  msgstr ""
3690
 
3691
- #: core/class-settings.php:336
3692
  msgctxt "admin settings"
3693
  msgid ""
3694
  "Shows the email address of the listing owner to all web users. NOT "
@@ -3696,517 +3723,517 @@ msgid ""
3696
  "harvest it for future use."
3697
  msgstr ""
3698
 
3699
- #: core/class-settings.php:339
3700
  msgctxt "admin settings"
3701
  msgid "How to determine the listing's email address?"
3702
  msgstr ""
3703
 
3704
- #: core/class-settings.php:342
3705
  msgctxt "admin settings"
3706
  msgid ""
3707
  "This affects emails sent to listing owners via contact forms or when their "
3708
  "listings expire."
3709
  msgstr ""
3710
 
3711
- #: core/class-settings.php:344
3712
  msgctxt "admin settings"
3713
  msgid "Try listing's email field first, then author's email."
3714
  msgstr ""
3715
 
3716
- #: core/class-settings.php:345
3717
  msgctxt "admin settings"
3718
  msgid "Try author's email first and then listing's email field."
3719
  msgstr ""
3720
 
3721
- #: core/class-settings.php:349
3722
  msgctxt "admin settings"
3723
  msgid "E-Mail Notifications"
3724
  msgstr ""
3725
 
3726
- #: core/class-settings.php:352
3727
  msgctxt "admin settings"
3728
  msgid "Notify admin via e-mail when..."
3729
  msgstr ""
3730
 
3731
- #: core/class-settings.php:356
3732
  msgctxt "admin settings"
3733
  msgid "A new listing is submitted."
3734
  msgstr ""
3735
 
3736
- #: core/class-settings.php:357
3737
  msgctxt "admin settings"
3738
  msgid "A listing is edited."
3739
  msgstr ""
3740
 
3741
- #: core/class-settings.php:358
3742
  msgctxt "admin settings"
3743
  msgid "A listing expires."
3744
  msgstr ""
3745
 
3746
- #: core/class-settings.php:359
3747
  msgctxt "admin settings"
3748
  msgid "A contact message is sent to a listing's owner."
3749
  msgstr ""
3750
 
3751
- #: core/class-settings.php:365
3752
  msgctxt "admin settings"
3753
  msgid "CC this e-mail address too"
3754
  msgstr ""
3755
 
3756
- #: core/class-settings.php:371
3757
  msgctxt "admin settings"
3758
  msgid "Notify users via e-mail when..."
3759
  msgstr ""
3760
 
3761
- #: core/class-settings.php:374
3762
  msgctxt "admin settings"
3763
  msgid "You can modify the text template used for most of these e-mails below."
3764
  msgstr ""
3765
 
3766
- #: core/class-settings.php:375
3767
  msgctxt "admin settings"
3768
  msgid "Their listing is submitted."
3769
  msgstr ""
3770
 
3771
- #: core/class-settings.php:376
3772
  msgctxt "admin settings"
3773
  msgid "Their listing is approved/published."
3774
  msgstr ""
3775
 
3776
- #: core/class-settings.php:385
3777
  msgctxt "contact email"
3778
  msgid "You have received a reply from your listing at %s."
3779
  msgstr ""
3780
 
3781
- #: core/class-settings.php:386
3782
  msgctxt "contact email"
3783
  msgid "Name: %s"
3784
  msgstr ""
3785
 
3786
- #: core/class-settings.php:387
3787
  msgctxt "contact email"
3788
  msgid "E-Mail: %s"
3789
  msgstr ""
3790
 
3791
- #: core/class-settings.php:388
3792
  msgctxt "contact email"
3793
  msgid "Message:"
3794
  msgstr ""
3795
 
3796
- #: core/class-settings.php:390
3797
  msgctxt "contact email"
3798
  msgid "Time: %s"
3799
  msgstr ""
3800
 
3801
- #: core/class-settings.php:392
3802
  msgctxt "admin settings"
3803
  msgid "E-Mail Templates"
3804
  msgstr ""
3805
 
3806
- #: core/class-settings.php:395
3807
  msgctxt "admin settings"
3808
  msgid "Email confirmation message"
3809
  msgstr ""
3810
 
3811
- #: core/class-settings.php:399
3812
  msgctxt "admin settings"
3813
  msgid "Sent after a listing has been submitted."
3814
  msgstr ""
3815
 
3816
- #: core/class-settings.php:400 core/class-settings.php:408
3817
- #: core/class-settings.php:449
3818
  msgctxt "admin settings"
3819
  msgid "Listing's title"
3820
  msgstr ""
3821
 
3822
- #: core/class-settings.php:403
3823
  msgctxt "admin settings"
3824
  msgid "Listing published message"
3825
  msgstr ""
3826
 
3827
- #: core/class-settings.php:406
3828
  msgctxt "admin settings"
3829
  msgid ""
3830
  "Your listing \"[listing]\" is now available at [listing-url] and can be "
3831
  "viewed by the public."
3832
  msgstr ""
3833
 
3834
- #: core/class-settings.php:407
3835
  msgctxt "admin settings"
3836
  msgid "Sent when the listing has been published or approved by an admin."
3837
  msgstr ""
3838
 
3839
- #: core/class-settings.php:409
3840
  msgctxt "admin settings"
3841
  msgid "Listing's URL"
3842
  msgstr ""
3843
 
3844
- #: core/class-settings.php:413
3845
  msgctxt "admin settings"
3846
  msgid "Listing Contact Message"
3847
  msgstr ""
3848
 
3849
- #: core/class-settings.php:417
3850
  msgctxt "admin settings"
3851
  msgid ""
3852
  "Sent to listing owners when someone uses the contact form on their listing "
3853
  "pages."
3854
  msgstr ""
3855
 
3856
- #: core/class-settings.php:427
3857
  msgctxt "admin settings"
3858
  msgid "Payment related"
3859
  msgstr ""
3860
 
3861
- #: core/class-settings.php:444
3862
  msgctxt "admin settings"
3863
  msgid "Payment abandoned reminder message"
3864
  msgstr ""
3865
 
3866
- #: core/class-settings.php:448
3867
  msgctxt "admin settings"
3868
  msgid "Sent some time after a pending payment is abandoned by users."
3869
  msgstr ""
3870
 
3871
- #: core/class-settings.php:450
3872
  msgctxt "admin settings"
3873
  msgid "Checkout URL link"
3874
  msgstr ""
3875
 
3876
- #: core/class-settings.php:456
3877
  msgctxt "admin settings"
3878
  msgid "Renewal Reminders"
3879
  msgstr ""
3880
 
3881
- #: core/class-settings.php:459
3882
  msgctxt "admin settings"
3883
  msgid ""
3884
  "This section refers only to the text of the renewal/expiration notices. You "
3885
  "can also <a>configure when the e-mails are sent</a>."
3886
  msgstr ""
3887
 
3888
- #: core/class-settings.php:463
3889
  msgctxt "admin settings"
3890
  msgid "Pending expiration e-mail message"
3891
  msgstr ""
3892
 
3893
- #: core/class-settings.php:467
3894
  msgctxt "settings"
3895
  msgid ""
3896
  "Sent some time before the listing expires. Applies to non-recurring renewals "
3897
  "only."
3898
  msgstr ""
3899
 
3900
- #: core/class-settings.php:468 core/class-settings.php:481
3901
- #: core/class-settings.php:494 core/class-settings.php:507
3902
- #: core/class-settings.php:520
3903
  msgctxt "settings"
3904
  msgid "Listing's name (with link)"
3905
  msgstr ""
3906
 
3907
- #: core/class-settings.php:469 core/class-settings.php:482
3908
- #: core/class-settings.php:495 core/class-settings.php:508
3909
- #: core/class-settings.php:521
3910
  msgctxt "settings"
3911
  msgid "Author's name"
3912
  msgstr ""
3913
 
3914
- #: core/class-settings.php:470 core/class-settings.php:483
3915
- #: core/class-settings.php:522
3916
  msgctxt "settings"
3917
  msgid "Expiration date"
3918
  msgstr ""
3919
 
3920
- #: core/class-settings.php:471
3921
  msgctxt "settings"
3922
  msgid "Category that is going to expire"
3923
  msgstr ""
3924
 
3925
- #: core/class-settings.php:472 core/class-settings.php:485
3926
- #: core/class-settings.php:524
3927
  msgctxt "settings"
3928
  msgid "Link to renewal page"
3929
  msgstr ""
3930
 
3931
- #: core/class-settings.php:473 core/class-settings.php:486
3932
- #: core/class-settings.php:498 core/class-settings.php:511
3933
- #: core/class-settings.php:525
3934
  msgctxt "settings"
3935
  msgid "Link to your site"
3936
  msgstr ""
3937
 
3938
- #: core/class-settings.php:476
3939
  msgctxt "admin settings"
3940
  msgid "Listing Renewal e-mail message"
3941
  msgstr ""
3942
 
3943
- #: core/class-settings.php:480
3944
  msgctxt "settings"
3945
  msgid ""
3946
  "Sent at the time of listing expiration. Applies to non-recurring renewals "
3947
  "only."
3948
  msgstr ""
3949
 
3950
- #: core/class-settings.php:484 core/class-settings.php:523
3951
  msgctxt "settings"
3952
  msgid "Category that expired"
3953
  msgstr ""
3954
 
3955
- #: core/class-settings.php:489
3956
  msgctxt "admin settings"
3957
  msgid "Listing auto-renewal reminder (recurring payments)"
3958
  msgstr ""
3959
 
3960
- #: core/class-settings.php:493
3961
  msgctxt "settings"
3962
  msgid ""
3963
  "Sent some time before the listing is auto-renewed. Applies to recurring "
3964
  "renewals only."
3965
  msgstr ""
3966
 
3967
- #: core/class-settings.php:496 core/class-settings.php:510
3968
  msgctxt "settings"
3969
  msgid "Renewal date"
3970
  msgstr ""
3971
 
3972
- #: core/class-settings.php:497
3973
  msgctxt "settings"
3974
  msgid "Category that is going to be renewed"
3975
  msgstr ""
3976
 
3977
- #: core/class-settings.php:499
3978
  msgctxt "settings"
3979
  msgid "Link to manage subscriptions"
3980
  msgstr ""
3981
 
3982
- #: core/class-settings.php:502
3983
  msgctxt "admin settings"
3984
  msgid "Listing Renewal e-mail message (recurring payments)"
3985
  msgstr ""
3986
 
3987
- #: core/class-settings.php:506
3988
  msgctxt "settings"
3989
  msgid ""
3990
  "Sent after the listing is auto-renewed. Applies to recurring renewals only."
3991
  msgstr ""
3992
 
3993
- #: core/class-settings.php:509
3994
  msgctxt "settings"
3995
  msgid "Renewed category"
3996
  msgstr ""
3997
 
3998
- #: core/class-settings.php:515
3999
  msgctxt "admin settings"
4000
  msgid "Renewal reminder e-mail message"
4001
  msgstr ""
4002
 
4003
- #: core/class-settings.php:519
4004
  msgctxt "settings"
4005
  msgid ""
4006
  "Sent some time after listing expiration and when no renewal has occurred. "
4007
  "Applies to both recurring and non-recurring renewals."
4008
  msgstr ""
4009
 
4010
- #: core/class-settings.php:529
4011
  msgctxt "admin settings"
4012
  msgid "Payment"
4013
  msgstr ""
4014
 
4015
- #: core/class-settings.php:530
4016
  msgctxt "admin settings"
4017
  msgid "Payment Settings"
4018
  msgstr ""
4019
 
4020
- #: core/class-settings.php:533
4021
  msgctxt "admin settings"
4022
  msgid "Turn On payments?"
4023
  msgstr ""
4024
 
4025
- #: core/class-settings.php:535
4026
  msgctxt "admin settings"
4027
  msgid "Put payment gateways in test mode?"
4028
  msgstr ""
4029
 
4030
- #: core/class-settings.php:540
4031
  msgctxt "admin settings"
4032
  msgid "Perform checkouts on the secure (HTTPS) version of your site?"
4033
  msgstr ""
4034
 
4035
- #: core/class-settings.php:543
4036
  msgctxt "admin settings"
4037
  msgid ""
4038
  "Recommended for added security. For this to work you need to enable HTTPS on "
4039
  "your server and <a>obtain an SSL certificate</a>."
4040
  msgstr ""
4041
 
4042
- #: core/class-settings.php:547
4043
  msgctxt "admin settings"
4044
  msgid "Currency Code"
4045
  msgstr ""
4046
 
4047
- #: core/class-settings.php:549
4048
  msgctxt "admin settings"
4049
  msgid "Australian Dollar (AUD)"
4050
  msgstr ""
4051
 
4052
- #: core/class-settings.php:550
4053
  msgctxt "admin settings"
4054
  msgid "Brazilian Real (BRL)"
4055
  msgstr ""
4056
 
4057
- #: core/class-settings.php:551
4058
  msgctxt "admin settings"
4059
  msgid "Canadian Dollar (CAD)"
4060
  msgstr ""
4061
 
4062
- #: core/class-settings.php:552
4063
  msgctxt "admin settings"
4064
  msgid "Czech Koruna (CZK)"
4065
  msgstr ""
4066
 
4067
- #: core/class-settings.php:553
4068
  msgctxt "admin settings"
4069
  msgid "Danish Krone (DKK)"
4070
  msgstr ""
4071
 
4072
- #: core/class-settings.php:554
4073
  msgctxt "admin settings"
4074
  msgid "Euro (EUR)"
4075
  msgstr ""
4076
 
4077
- #: core/class-settings.php:555
4078
  msgctxt "admin settings"
4079
  msgid "Hong Kong Dollar (HKD)"
4080
  msgstr ""
4081
 
4082
- #: core/class-settings.php:556
4083
  msgctxt "admin settings"
4084
  msgid "Hungarian Forint (HUF)"
4085
  msgstr ""
4086
 
4087
- #: core/class-settings.php:557
4088
  msgctxt "admin settings"
4089
  msgid "Israeli New Shequel (ILS)"
4090
  msgstr ""
4091
 
4092
- #: core/class-settings.php:558
4093
  msgctxt "admin settings"
4094
  msgid "Japanese Yen (JPY)"
4095
  msgstr ""
4096
 
4097
- #: core/class-settings.php:559
4098
  msgctxt "admin settings"
4099
  msgid "Malasian Ringgit (MYR)"
4100
  msgstr ""
4101
 
4102
- #: core/class-settings.php:560
4103
  msgctxt "admin settings"
4104
  msgid "Mexican Peso (MXN)"
4105
  msgstr ""
4106
 
4107
- #: core/class-settings.php:561
4108
  msgctxt "admin settings"
4109
  msgid "Norwegian Krone (NOK)"
4110
  msgstr ""
4111
 
4112
- #: core/class-settings.php:562
4113
  msgctxt "admin settings"
4114
  msgid "New Zealand Dollar (NZD)"
4115
  msgstr ""
4116
 
4117
- #: core/class-settings.php:563
4118
  msgctxt "admin settings"
4119
  msgid "Philippine Peso (PHP)"
4120
  msgstr ""
4121
 
4122
- #: core/class-settings.php:564
4123
  msgctxt "admin settings"
4124
  msgid "Polish Zloty (PLN)"
4125
  msgstr ""
4126
 
4127
- #: core/class-settings.php:565
4128
  msgctxt "admin settings"
4129
  msgid "Pound Sterling (GBP)"
4130
  msgstr ""
4131
 
4132
- #: core/class-settings.php:566
4133
  msgctxt "admin settings"
4134
  msgid "Singapore Dollar (SGD)"
4135
  msgstr ""
4136
 
4137
- #: core/class-settings.php:567
4138
  msgctxt "admin settings"
4139
  msgid "Swedish Krona (SEK)"
4140
  msgstr ""
4141
 
4142
- #: core/class-settings.php:568
4143
  msgctxt "admin settings"
4144
  msgid "Swiss Franc (CHF)"
4145
  msgstr ""
4146
 
4147
- #: core/class-settings.php:569
4148
  msgctxt "admin settings"
4149
  msgid "Taiwan Dollar (TWD)"
4150
  msgstr ""
4151
 
4152
- #: core/class-settings.php:570
4153
  msgctxt "admin settings"
4154
  msgid "Thai Baht (THB)"
4155
  msgstr ""
4156
 
4157
- #: core/class-settings.php:571
4158
  msgctxt "admin settings"
4159
  msgid "Turkish Lira (TRY)"
4160
  msgstr ""
4161
 
4162
- #: core/class-settings.php:572
4163
  msgctxt "admin settings"
4164
  msgid "U.S. Dollar (USD)"
4165
  msgstr ""
4166
 
4167
- #: core/class-settings.php:576
4168
  msgctxt "admin settings"
4169
  msgid "Currency Symbol"
4170
  msgstr ""
4171
 
4172
- #: core/class-settings.php:581
4173
  msgctxt "admin settings"
4174
  msgid "Currency symbol display"
4175
  msgstr ""
4176
 
4177
- #: core/class-settings.php:585
4178
  msgctxt "admin settings"
4179
  msgid "Show currency symbol on the left"
4180
  msgstr ""
4181
 
4182
- #: core/class-settings.php:586
4183
  msgctxt "admin settings"
4184
  msgid "Show currency symbol on the right"
4185
  msgstr ""
4186
 
4187
- #: core/class-settings.php:587
4188
  msgctxt "admin settings"
4189
  msgid "Do not show currency symbol"
4190
  msgstr ""
4191
 
4192
- #: core/class-settings.php:589
4193
  msgctxt "admin settings"
4194
  msgid "Thank you for payment message"
4195
  msgstr ""
4196
 
4197
- #: core/class-settings.php:590
4198
  msgctxt "admin settings"
4199
  msgid ""
4200
  "Thank you for your payment. Your payment is being verified and your listing "
4201
  "reviewed. The verification and review process could take up to 48 hours."
4202
  msgstr ""
4203
 
4204
- #: core/class-settings.php:595
4205
  msgctxt "admin settings"
4206
  msgid "Ask users to come back for abandoned payments?"
4207
  msgstr ""
4208
 
4209
- #: core/class-settings.php:598
4210
  msgctxt "admin settings"
4211
  msgid ""
4212
  "An abandoned payment is when a user attempts to place a listing and gets to "
@@ -4215,49 +4242,49 @@ msgid ""
4215
  "the transaction. BD can remind them to come back and continue."
4216
  msgstr ""
4217
 
4218
- #: core/class-settings.php:604
4219
  msgctxt "admin settings"
4220
  msgid "Listing abandonment threshold (hours)"
4221
  msgstr ""
4222
 
4223
- #: core/class-settings.php:609
4224
  msgctxt "admin settings"
4225
  msgid ""
4226
  "Listings with pending payments are marked as abandoned after this time. You "
4227
  "can also <a>customize the e-mail</a> users receive."
4228
  msgstr ""
4229
 
4230
- #: core/class-settings.php:614
4231
  msgctxt "admin settings"
4232
  msgid "Themes"
4233
  msgstr ""
4234
 
4235
- #: core/class-settings.php:616
4236
  msgctxt "admin settings"
4237
  msgid "You can manage your themes on <a>Directory Themes</a>."
4238
  msgstr ""
4239
 
4240
- #: core/class-settings.php:621
4241
  msgctxt "admin settings"
4242
  msgid "Theme button style"
4243
  msgstr ""
4244
 
4245
- #: core/class-settings.php:625
4246
  msgctxt "admin settings"
4247
  msgid "Use the BD theme style for BD buttons"
4248
  msgstr ""
4249
 
4250
- #: core/class-settings.php:626
4251
  msgctxt "admin settings"
4252
  msgid "Use the WP theme style for BD buttons"
4253
  msgstr ""
4254
 
4255
- #: core/class-settings.php:633
4256
  msgctxt "admin settings"
4257
  msgid "Image"
4258
  msgstr ""
4259
 
4260
- #: core/class-settings.php:634
4261
  msgctxt "admin settings"
4262
  msgid ""
4263
  "Any changes to these settings will affect new listings only. Existing "
@@ -4266,78 +4293,78 @@ msgid ""
4266
  "here."
4267
  msgstr ""
4268
 
4269
- #: core/class-settings.php:635
4270
  msgctxt "admin settings"
4271
  msgid "Image Settings"
4272
  msgstr ""
4273
 
4274
- #: core/class-settings.php:636
4275
  msgctxt "admin settings"
4276
  msgid "Allow images?"
4277
  msgstr ""
4278
 
4279
- #: core/class-settings.php:638
4280
  msgctxt "admin settings"
4281
  msgid "Min Image File Size (KB)"
4282
  msgstr ""
4283
 
4284
- #: core/class-settings.php:639
4285
  msgctxt "admin settings"
4286
  msgid "Max Image File Size (KB)"
4287
  msgstr ""
4288
 
4289
- #: core/class-settings.php:641
4290
  msgctxt "admin settings"
4291
  msgid "Min image width (px)"
4292
  msgstr ""
4293
 
4294
- #: core/class-settings.php:642
4295
  msgctxt "admin settings"
4296
  msgid "Min image height (px)"
4297
  msgstr ""
4298
 
4299
- #: core/class-settings.php:644
4300
  msgctxt "admin settings"
4301
  msgid "Max image width (px)"
4302
  msgstr ""
4303
 
4304
- #: core/class-settings.php:645
4305
  msgctxt "admin settings"
4306
  msgid "Max image height (px)"
4307
  msgstr ""
4308
 
4309
- #: core/class-settings.php:647
4310
  msgctxt "admin settings"
4311
  msgid "Turn on thickbox/lightbox?"
4312
  msgstr ""
4313
 
4314
- #: core/class-settings.php:647
4315
  msgctxt "admin settings"
4316
  msgid ""
4317
  "Uncheck if it conflicts with other elements or plugins installed on your site"
4318
  msgstr ""
4319
 
4320
- #: core/class-settings.php:649
4321
  msgctxt "admin settings"
4322
  msgid "Thumbnails"
4323
  msgstr ""
4324
 
4325
- #: core/class-settings.php:650
4326
  msgctxt "admin settings"
4327
  msgid "Thumbnail width (px)"
4328
  msgstr ""
4329
 
4330
- #: core/class-settings.php:651
4331
  msgctxt "admin settings"
4332
  msgid "Thumbnail height (px)"
4333
  msgstr ""
4334
 
4335
- #: core/class-settings.php:654
4336
  msgctxt "admin settings"
4337
  msgid "Crop thumbnails to exact dimensions?"
4338
  msgstr ""
4339
 
4340
- #: core/class-settings.php:657
4341
  msgctxt "admin settings"
4342
  msgid ""
4343
  "When enabled images will match exactly the dimensions above but part of the "
@@ -4346,150 +4373,150 @@ msgid ""
4346
  "Depending on the uploaded images, thumbnails may have different heights."
4347
  msgstr ""
4348
 
4349
- #: core/class-settings.php:663
4350
  msgctxt "admin settings"
4351
  msgid "Number of free images"
4352
  msgstr ""
4353
 
4354
- #: core/class-settings.php:668
4355
  msgctxt "admin settings"
4356
  msgid ""
4357
  "For paid listing images, configure that by adding or editing a <a>Fee Plan</"
4358
  "a> instead of this setting, which is ignored for paid listings."
4359
  msgstr ""
4360
 
4361
- #: core/class-settings.php:671
4362
  msgctxt "admin settings"
4363
  msgid "Use default picture for listings with no picture?"
4364
  msgstr ""
4365
 
4366
- #: core/class-settings.php:672
4367
  msgctxt "admin settings"
4368
  msgid "Show Thumbnail on main listings page?"
4369
  msgstr ""
4370
 
4371
- #: core/class-settings.php:701
4372
  msgctxt "admin settings"
4373
  msgid "User"
4374
  msgstr ""
4375
 
4376
- #: core/class-settings.php:702
4377
  msgctxt "admin settings"
4378
  msgid "User registration date"
4379
  msgstr ""
4380
 
4381
- #: core/class-settings.php:728
4382
  msgctxt "admin settings"
4383
  msgid ""
4384
  "Could not copy the AJAX compatibility plugin \"%s\". Compatibility mode was "
4385
  "not activated."
4386
  msgstr ""
4387
 
4388
- #: core/class-settings.php:736
4389
  msgctxt "admin settings"
4390
  msgid ""
4391
  "Could not activate AJAX Compatibility mode: the directory \"%s\" could not "
4392
  "be created."
4393
  msgstr ""
4394
 
4395
- #: core/class-settings.php:745
4396
  msgctxt "admin settings"
4397
  msgid ""
4398
  "Could not remove the \"Business Directory Plugin - AJAX Compatibility Module"
4399
  "\". Please remove the file \"%s\" manually or deactivate the plugin."
4400
  msgstr ""
4401
 
4402
- #: core/class-settings.php:1065
4403
  msgctxt "settings"
4404
  msgid "Deactivate License"
4405
  msgstr ""
4406
 
4407
- #: core/class-settings.php:1067
4408
  msgctxt "settings"
4409
  msgid "Deactivating license..."
4410
  msgstr ""
4411
 
4412
- #: core/class-settings.php:1070
4413
  msgctxt "settings"
4414
  msgid "Activate License"
4415
  msgstr ""
4416
 
4417
- #: core/class-settings.php:1072
4418
  msgctxt "settings"
4419
  msgid "Activating license..."
4420
  msgstr ""
4421
 
4422
- #: core/class-settings.php:1095
4423
  msgctxt "admin settings"
4424
  msgid "Valid placeholders: %s"
4425
  msgstr ""
4426
 
4427
- #: core/class-settings.php:1129
4428
  msgctxt "settings email"
4429
  msgid "Click to edit e-mail"
4430
  msgstr ""
4431
 
4432
- #: core/class-settings.php:1130
4433
  msgctxt "settings email"
4434
  msgid "Click to edit"
4435
  msgstr ""
4436
 
4437
- #: core/class-settings.php:1143
4438
  msgctxt "settings email"
4439
  msgid "E-Mail Subject"
4440
  msgstr ""
4441
 
4442
- #: core/class-settings.php:1154
4443
  msgctxt "settings email"
4444
  msgid "E-Mail Body"
4445
  msgstr ""
4446
 
4447
- #: core/class-settings.php:1165
4448
  msgctxt "settings email"
4449
  msgid "You can use the following placeholders:"
4450
  msgstr ""
4451
 
4452
- #: core/class-settings.php:1188
4453
  msgctxt "settings email"
4454
  msgid "Preview e-mail"
4455
  msgstr ""
4456
 
4457
- #: core/class-settings.php:1189
4458
  msgctxt "settings email"
4459
  msgid "Cancel"
4460
  msgstr ""
4461
 
4462
- #: core/class-settings.php:1190
4463
  msgctxt "settings email"
4464
  msgid "Save Changes"
4465
  msgstr ""
4466
 
4467
- #: core/class-settings.php:1209
4468
  msgctxt "settings email"
4469
  msgid "Site title"
4470
  msgstr ""
4471
 
4472
- #: core/class-settings.php:1212
4473
  msgctxt "settings email"
4474
  msgid "Site title (with link)"
4475
  msgstr ""
4476
 
4477
- #: core/class-settings.php:1215
4478
  msgctxt "settings email"
4479
  msgid "Site address (with link)"
4480
  msgstr ""
4481
 
4482
- #: core/class-settings.php:1218
4483
  msgctxt "settings email"
4484
  msgid "Directory URL (with link)"
4485
  msgstr ""
4486
 
4487
- #: core/class-settings.php:1221
4488
  msgctxt "settings email"
4489
  msgid "Current date"
4490
  msgstr ""
4491
 
4492
- #: core/class-settings.php:1224
4493
  msgctxt "settings email"
4494
  msgid "Current time"
4495
  msgstr ""
2
  # This file is distributed under the same license as the Business Directory Plugin package.
3
  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-07-06 14:03:56+00:00\n"
8
  "MIME-Version: 1.0\n"
9
  "Content-Type: text/plain; charset=UTF-8\n"
10
  "Content-Transfer-Encoding: 8bit\n"
2090
  msgid "Please see the <a>Form Fields documentation</a> for more details."
2091
  msgstr ""
2092
 
2093
+ #. #-#-#-#-# WPBDM.pot (Business Directory Plugin 4.0.8) #-#-#-#-#
2094
  #. Plugin Name of the plugin/theme
2095
  #: admin/templates/header.tpl.php:4
2096
  msgid "Business Directory Plugin"
3223
  msgid "Display and require user agreement to Terms and Conditions"
3224
  msgstr ""
3225
 
3226
+ #: core/class-settings.php:106
3227
+ msgctxt "admin settings"
3228
+ msgid ""
3229
+ "Terms and Conditions text goes here...\n"
3230
+ "\n"
3231
+ msgstr ""
3232
+
3233
  #: core/class-settings.php:107
3234
  msgctxt "admin settings"
3235
  msgid ""
3351
  msgid "Enable AJAX compatibility mode?"
3352
  msgstr ""
3353
 
3354
+ #: core/class-settings.php:179 core/class-settings.php:658
3355
  msgctxt "admin settings"
3356
  msgid "Listings"
3357
  msgstr ""
3358
 
3359
+ #: core/class-settings.php:180 core/class-settings.php:328
3360
+ #: core/class-settings.php:615
3361
  msgctxt "admin settings"
3362
  msgid "General Settings"
3363
  msgstr ""
3437
  msgid "Status of listings upon uninstalling plugin"
3438
  msgstr ""
3439
 
3440
+ #: core/class-settings.php:219 core/class-settings.php:221
3441
+ msgctxt "post status"
3442
+ msgid "Draft"
3443
+ msgstr ""
3444
+
3445
+ #: core/class-settings.php:219 core/class-settings.php:221
3446
+ msgctxt "post status"
3447
+ msgid "Trash"
3448
+ msgstr ""
3449
+
3450
  #: core/class-settings.php:220
3451
  msgctxt "admin settings"
3452
  msgid "Status of deleted listings"
3453
  msgstr ""
3454
 
3455
+ #: core/class-settings.php:222
3456
  msgctxt "admin settings"
3457
  msgid "Submit Listing instructions message"
3458
  msgstr ""
3459
 
3460
+ #: core/class-settings.php:222
3461
  msgctxt "admin settings"
3462
  msgid ""
3463
  "This text is displayed at the first page of the Submit Listing process for "
3465
  "form or anything you want to tell users before they get started."
3466
  msgstr ""
3467
 
3468
+ #: core/class-settings.php:224
3469
  msgctxt "admin settings"
3470
  msgid "Listing Renewal"
3471
  msgstr ""
3472
 
3473
+ #: core/class-settings.php:225
3474
  msgctxt "admin settings"
3475
  msgid "Turn on listing renewal option?"
3476
  msgstr ""
3477
 
3478
+ #: core/class-settings.php:228
3479
  msgctxt "admin settings"
3480
  msgid "Allow recurring renewal payments?"
3481
  msgstr ""
3482
 
3483
+ #: core/class-settings.php:231
3484
  msgctxt "admin settings"
3485
  msgid ""
3486
  "Allow users to opt in for automatic renewal of their listings. The fee is "
3487
  "charged at the time the listing expires without user intervention."
3488
  msgstr ""
3489
 
3490
+ #: core/class-settings.php:235
3491
  msgctxt "admin settings"
3492
  msgid "Use recurring payments as the default payment method?"
3493
  msgstr ""
3494
 
3495
+ #: core/class-settings.php:238
3496
  msgctxt "admin settings"
3497
  msgid ""
3498
  "Enable automatic renewal without having users opt in during the submit "
3499
  "process."
3500
  msgstr ""
3501
 
3502
+ #: core/class-settings.php:243
3503
  msgctxt "admin settings"
3504
  msgid "Listing renewal e-mail threshold (in days)"
3505
  msgstr ""
3506
 
3507
+ #: core/class-settings.php:246
3508
  msgctxt "admin settings"
3509
  msgid ""
3510
  "Configure how many days before listing expiration is the renewal e-mail sent."
3511
  msgstr ""
3512
 
3513
+ #: core/class-settings.php:250
3514
  msgctxt "admin settings"
3515
  msgid ""
3516
  "Send expiration notices including a cancel links to auto-renewed listings?"
3517
  msgstr ""
3518
 
3519
+ #: core/class-settings.php:257
3520
  msgctxt "admin settings"
3521
  msgid "Remind listing owners of expired listings (past due)?"
3522
  msgstr ""
3523
 
3524
+ #: core/class-settings.php:262
3525
  msgctxt "admin settings"
3526
  msgid "Listing renewal reminder e-mail threshold (in days)"
3527
  msgstr ""
3528
 
3529
+ #: core/class-settings.php:265
3530
  msgctxt "admin settings"
3531
  msgid ""
3532
  "Configure how many days after the expiration of a listing an e-mail reminder "
3533
  "should be sent to the owner."
3534
  msgstr ""
3535
 
3536
+ #: core/class-settings.php:268
3537
  msgctxt "admin settings"
3538
  msgid "Post/Category Settings"
3539
  msgstr ""
3540
 
3541
+ #: core/class-settings.php:269
3542
  msgctxt "admin settings"
3543
  msgid "Default new post status"
3544
  msgstr ""
3545
 
3546
+ #: core/class-settings.php:270 core/class-settings.php:273
3547
+ msgctxt "post status"
3548
+ msgid "Published"
3549
+ msgstr ""
3550
+
3551
+ #: core/class-settings.php:270 core/class-settings.php:273
3552
+ msgctxt "post status"
3553
+ msgid "Pending"
3554
+ msgstr ""
3555
+
3556
+ #: core/class-settings.php:272
3557
  msgctxt "admin settings"
3558
  msgid "Edit post status"
3559
  msgstr ""
3560
 
3561
+ #: core/class-settings.php:274
3562
  msgctxt "admin settings"
3563
  msgid "Order categories list by"
3564
  msgstr ""
3565
 
3566
+ #: core/class-settings.php:276
3567
  msgctxt "admin settings"
3568
  msgid "Name"
3569
  msgstr ""
3570
 
3571
+ #: core/class-settings.php:277
3572
  msgctxt "admin settings"
3573
  msgid "Slug"
3574
  msgstr ""
3575
 
3576
+ #: core/class-settings.php:278
3577
  msgctxt "admin settings"
3578
  msgid "Listing Count"
3579
  msgstr ""
3580
 
3581
+ #: core/class-settings.php:280
3582
  msgctxt "admin settings"
3583
  msgid "Sort order for categories"
3584
  msgstr ""
3585
 
3586
+ #: core/class-settings.php:281 core/class-settings.php:299
3587
  msgctxt "admin settings"
3588
  msgid "Ascending"
3589
  msgstr ""
3590
 
3591
+ #: core/class-settings.php:281 core/class-settings.php:299
3592
  msgctxt "admin settings"
3593
  msgid "Descending"
3594
  msgstr ""
3595
 
3596
+ #: core/class-settings.php:282
3597
  msgctxt "admin settings"
3598
  msgid "Show category post count?"
3599
  msgstr ""
3600
 
3601
+ #: core/class-settings.php:283
3602
  msgctxt "admin settings"
3603
  msgid "Hide empty categories?"
3604
  msgstr ""
3605
 
3606
+ #: core/class-settings.php:284
3607
  msgctxt "admin settings"
3608
  msgid "Show only parent categories in category list?"
3609
  msgstr ""
3610
 
3611
+ #: core/class-settings.php:286
3612
  msgctxt "admin settings"
3613
  msgid "Listings Sorting"
3614
  msgstr ""
3615
 
3616
+ #: core/class-settings.php:287
3617
  msgctxt "admin settings"
3618
  msgid "Order directory listings by"
3619
  msgstr ""
3620
 
3621
+ #: core/class-settings.php:289
3622
  msgctxt "admin settings"
3623
  msgid "Title"
3624
  msgstr ""
3625
 
3626
+ #: core/class-settings.php:290
3627
  msgctxt "admin settings"
3628
  msgid "Author"
3629
  msgstr ""
3630
 
3631
+ #: core/class-settings.php:291 core/class-settings.php:701
3632
  msgctxt "admin settings"
3633
  msgid "Date posted"
3634
  msgstr ""
3635
 
3636
+ #: core/class-settings.php:292 core/class-settings.php:702
3637
  msgctxt "admin settings"
3638
  msgid "Date last modified"
3639
  msgstr ""
3640
 
3641
+ #: core/class-settings.php:293
3642
  msgctxt "admin settings"
3643
  msgid "Random"
3644
  msgstr ""
3645
 
3646
+ #: core/class-settings.php:294
3647
  msgctxt "admin settings"
3648
  msgid "Paid first then free. Inside each group by date."
3649
  msgstr ""
3650
 
3651
+ #: core/class-settings.php:295
3652
  msgctxt "admin settings"
3653
  msgid "Paid first then free. Inside each group by title."
3654
  msgstr ""
3655
 
3656
+ #: core/class-settings.php:297
3657
  msgctxt "admin settings"
3658
  msgid "Sort directory listings by"
3659
  msgstr ""
3660
 
3661
+ #: core/class-settings.php:298
3662
  msgctxt "admin settings"
3663
  msgid "Ascending for ascending order A-Z, Descending for descending order Z-A"
3664
  msgstr ""
3665
 
3666
+ #: core/class-settings.php:303
3667
  msgctxt "admin settings"
3668
  msgid "Enable sort bar?"
3669
  msgstr ""
3670
 
3671
+ #: core/class-settings.php:308
3672
  msgctxt "admin settings"
3673
  msgid "Sortbar Fields"
3674
  msgstr ""
3675
 
3676
+ #: core/class-settings.php:317
3677
  msgctxt "admin settings"
3678
  msgid "Featured (Sticky) listing settings"
3679
  msgstr ""
3680
 
3681
+ #: core/class-settings.php:318
3682
  msgctxt "admin settings"
3683
  msgid "Offer sticky listings?"
3684
  msgstr ""
3685
 
3686
+ #: core/class-settings.php:319
3687
  msgctxt "admin settings"
3688
  msgid "Offer upgrades during submit process?"
3689
  msgstr ""
3690
 
3691
+ #: core/class-settings.php:320
3692
  msgctxt "admin settings"
3693
  msgid "Sticky listing price"
3694
  msgstr ""
3695
 
3696
+ #: core/class-settings.php:321
3697
  msgctxt "admin settings"
3698
  msgid "Sticky listing page description text"
3699
  msgstr ""
3700
 
3701
+ #: core/class-settings.php:322
3702
  msgctxt "admin settings"
3703
  msgid ""
3704
  "You can upgrade your listing to featured status. Featured listings will "
3705
  "always appear on top of regular listings."
3706
  msgstr ""
3707
 
3708
+ #: core/class-settings.php:327
3709
  msgctxt "admin settings"
3710
  msgid "E-Mail"
3711
  msgstr ""
3712
 
3713
+ #: core/class-settings.php:331
3714
  msgctxt "admin settings"
3715
  msgid "Display email address fields publicly?"
3716
  msgstr ""
3717
 
3718
+ #: core/class-settings.php:334
3719
  msgctxt "admin settings"
3720
  msgid ""
3721
  "Shows the email address of the listing owner to all web users. NOT "
3723
  "harvest it for future use."
3724
  msgstr ""
3725
 
3726
+ #: core/class-settings.php:337
3727
  msgctxt "admin settings"
3728
  msgid "How to determine the listing's email address?"
3729
  msgstr ""
3730
 
3731
+ #: core/class-settings.php:340
3732
  msgctxt "admin settings"
3733
  msgid ""
3734
  "This affects emails sent to listing owners via contact forms or when their "
3735
  "listings expire."
3736
  msgstr ""
3737
 
3738
+ #: core/class-settings.php:342
3739
  msgctxt "admin settings"
3740
  msgid "Try listing's email field first, then author's email."
3741
  msgstr ""
3742
 
3743
+ #: core/class-settings.php:343
3744
  msgctxt "admin settings"
3745
  msgid "Try author's email first and then listing's email field."
3746
  msgstr ""
3747
 
3748
+ #: core/class-settings.php:347
3749
  msgctxt "admin settings"
3750
  msgid "E-Mail Notifications"
3751
  msgstr ""
3752
 
3753
+ #: core/class-settings.php:350
3754
  msgctxt "admin settings"
3755
  msgid "Notify admin via e-mail when..."
3756
  msgstr ""
3757
 
3758
+ #: core/class-settings.php:354
3759
  msgctxt "admin settings"
3760
  msgid "A new listing is submitted."
3761
  msgstr ""
3762
 
3763
+ #: core/class-settings.php:355
3764
  msgctxt "admin settings"
3765
  msgid "A listing is edited."
3766
  msgstr ""
3767
 
3768
+ #: core/class-settings.php:356
3769
  msgctxt "admin settings"
3770
  msgid "A listing expires."
3771
  msgstr ""
3772
 
3773
+ #: core/class-settings.php:357
3774
  msgctxt "admin settings"
3775
  msgid "A contact message is sent to a listing's owner."
3776
  msgstr ""
3777
 
3778
+ #: core/class-settings.php:363
3779
  msgctxt "admin settings"
3780
  msgid "CC this e-mail address too"
3781
  msgstr ""
3782
 
3783
+ #: core/class-settings.php:369
3784
  msgctxt "admin settings"
3785
  msgid "Notify users via e-mail when..."
3786
  msgstr ""
3787
 
3788
+ #: core/class-settings.php:372
3789
  msgctxt "admin settings"
3790
  msgid "You can modify the text template used for most of these e-mails below."
3791
  msgstr ""
3792
 
3793
+ #: core/class-settings.php:373
3794
  msgctxt "admin settings"
3795
  msgid "Their listing is submitted."
3796
  msgstr ""
3797
 
3798
+ #: core/class-settings.php:374
3799
  msgctxt "admin settings"
3800
  msgid "Their listing is approved/published."
3801
  msgstr ""
3802
 
3803
+ #: core/class-settings.php:383
3804
  msgctxt "contact email"
3805
  msgid "You have received a reply from your listing at %s."
3806
  msgstr ""
3807
 
3808
+ #: core/class-settings.php:384
3809
  msgctxt "contact email"
3810
  msgid "Name: %s"
3811
  msgstr ""
3812
 
3813
+ #: core/class-settings.php:385
3814
  msgctxt "contact email"
3815
  msgid "E-Mail: %s"
3816
  msgstr ""
3817
 
3818
+ #: core/class-settings.php:386
3819
  msgctxt "contact email"
3820
  msgid "Message:"
3821
  msgstr ""
3822
 
3823
+ #: core/class-settings.php:388
3824
  msgctxt "contact email"
3825
  msgid "Time: %s"
3826
  msgstr ""
3827
 
3828
+ #: core/class-settings.php:390
3829
  msgctxt "admin settings"
3830
  msgid "E-Mail Templates"
3831
  msgstr ""
3832
 
3833
+ #: core/class-settings.php:393
3834
  msgctxt "admin settings"
3835
  msgid "Email confirmation message"
3836
  msgstr ""
3837
 
3838
+ #: core/class-settings.php:397
3839
  msgctxt "admin settings"
3840
  msgid "Sent after a listing has been submitted."
3841
  msgstr ""
3842
 
3843
+ #: core/class-settings.php:398 core/class-settings.php:406
3844
+ #: core/class-settings.php:447
3845
  msgctxt "admin settings"
3846
  msgid "Listing's title"
3847
  msgstr ""
3848
 
3849
+ #: core/class-settings.php:401
3850
  msgctxt "admin settings"
3851
  msgid "Listing published message"
3852
  msgstr ""
3853
 
3854
+ #: core/class-settings.php:404
3855
  msgctxt "admin settings"
3856
  msgid ""
3857
  "Your listing \"[listing]\" is now available at [listing-url] and can be "
3858
  "viewed by the public."
3859
  msgstr ""
3860
 
3861
+ #: core/class-settings.php:405
3862
  msgctxt "admin settings"
3863
  msgid "Sent when the listing has been published or approved by an admin."
3864
  msgstr ""
3865
 
3866
+ #: core/class-settings.php:407
3867
  msgctxt "admin settings"
3868
  msgid "Listing's URL"
3869
  msgstr ""
3870
 
3871
+ #: core/class-settings.php:411
3872
  msgctxt "admin settings"
3873
  msgid "Listing Contact Message"
3874
  msgstr ""
3875
 
3876
+ #: core/class-settings.php:415
3877
  msgctxt "admin settings"
3878
  msgid ""
3879
  "Sent to listing owners when someone uses the contact form on their listing "
3880
  "pages."
3881
  msgstr ""
3882
 
3883
+ #: core/class-settings.php:425
3884
  msgctxt "admin settings"
3885
  msgid "Payment related"
3886
  msgstr ""
3887
 
3888
+ #: core/class-settings.php:442
3889
  msgctxt "admin settings"
3890
  msgid "Payment abandoned reminder message"
3891
  msgstr ""
3892
 
3893
+ #: core/class-settings.php:446
3894
  msgctxt "admin settings"
3895
  msgid "Sent some time after a pending payment is abandoned by users."
3896
  msgstr ""
3897
 
3898
+ #: core/class-settings.php:448
3899
  msgctxt "admin settings"
3900
  msgid "Checkout URL link"
3901
  msgstr ""
3902
 
3903
+ #: core/class-settings.php:454
3904
  msgctxt "admin settings"
3905
  msgid "Renewal Reminders"
3906
  msgstr ""
3907
 
3908
+ #: core/class-settings.php:457
3909
  msgctxt "admin settings"
3910
  msgid ""
3911
  "This section refers only to the text of the renewal/expiration notices. You "
3912
  "can also <a>configure when the e-mails are sent</a>."
3913
  msgstr ""
3914
 
3915
+ #: core/class-settings.php:461
3916
  msgctxt "admin settings"
3917
  msgid "Pending expiration e-mail message"
3918
  msgstr ""
3919
 
3920
+ #: core/class-settings.php:465
3921
  msgctxt "settings"
3922
  msgid ""
3923
  "Sent some time before the listing expires. Applies to non-recurring renewals "
3924
  "only."
3925
  msgstr ""
3926
 
3927
+ #: core/class-settings.php:466 core/class-settings.php:479
3928
+ #: core/class-settings.php:492 core/class-settings.php:505
3929
+ #: core/class-settings.php:518
3930
  msgctxt "settings"
3931
  msgid "Listing's name (with link)"
3932
  msgstr ""
3933
 
3934
+ #: core/class-settings.php:467 core/class-settings.php:480
3935
+ #: core/class-settings.php:493 core/class-settings.php:506
3936
+ #: core/class-settings.php:519
3937
  msgctxt "settings"
3938
  msgid "Author's name"
3939
  msgstr ""
3940
 
3941
+ #: core/class-settings.php:468 core/class-settings.php:481
3942
+ #: core/class-settings.php:520
3943
  msgctxt "settings"
3944
  msgid "Expiration date"
3945
  msgstr ""
3946
 
3947
+ #: core/class-settings.php:469
3948
  msgctxt "settings"
3949
  msgid "Category that is going to expire"
3950
  msgstr ""
3951
 
3952
+ #: core/class-settings.php:470 core/class-settings.php:483
3953
+ #: core/class-settings.php:522
3954
  msgctxt "settings"
3955
  msgid "Link to renewal page"
3956
  msgstr ""
3957
 
3958
+ #: core/class-settings.php:471 core/class-settings.php:484
3959
+ #: core/class-settings.php:496 core/class-settings.php:509
3960
+ #: core/class-settings.php:523
3961
  msgctxt "settings"
3962
  msgid "Link to your site"
3963
  msgstr ""
3964
 
3965
+ #: core/class-settings.php:474
3966
  msgctxt "admin settings"
3967
  msgid "Listing Renewal e-mail message"
3968
  msgstr ""
3969
 
3970
+ #: core/class-settings.php:478
3971
  msgctxt "settings"
3972
  msgid ""
3973
  "Sent at the time of listing expiration. Applies to non-recurring renewals "
3974
  "only."
3975
  msgstr ""
3976
 
3977
+ #: core/class-settings.php:482 core/class-settings.php:521
3978
  msgctxt "settings"
3979
  msgid "Category that expired"
3980
  msgstr ""
3981
 
3982
+ #: core/class-settings.php:487
3983
  msgctxt "admin settings"
3984
  msgid "Listing auto-renewal reminder (recurring payments)"
3985
  msgstr ""
3986
 
3987
+ #: core/class-settings.php:491
3988
  msgctxt "settings"
3989
  msgid ""
3990
  "Sent some time before the listing is auto-renewed. Applies to recurring "
3991
  "renewals only."
3992
  msgstr ""
3993
 
3994
+ #: core/class-settings.php:494 core/class-settings.php:508
3995
  msgctxt "settings"
3996
  msgid "Renewal date"
3997
  msgstr ""
3998
 
3999
+ #: core/class-settings.php:495
4000
  msgctxt "settings"
4001
  msgid "Category that is going to be renewed"
4002
  msgstr ""
4003
 
4004
+ #: core/class-settings.php:497
4005
  msgctxt "settings"
4006
  msgid "Link to manage subscriptions"
4007
  msgstr ""
4008
 
4009
+ #: core/class-settings.php:500
4010
  msgctxt "admin settings"
4011
  msgid "Listing Renewal e-mail message (recurring payments)"
4012
  msgstr ""
4013
 
4014
+ #: core/class-settings.php:504
4015
  msgctxt "settings"
4016
  msgid ""
4017
  "Sent after the listing is auto-renewed. Applies to recurring renewals only."
4018
  msgstr ""
4019
 
4020
+ #: core/class-settings.php:507
4021
  msgctxt "settings"
4022
  msgid "Renewed category"
4023
  msgstr ""
4024
 
4025
+ #: core/class-settings.php:513
4026
  msgctxt "admin settings"
4027
  msgid "Renewal reminder e-mail message"
4028
  msgstr ""
4029
 
4030
+ #: core/class-settings.php:517
4031
  msgctxt "settings"
4032
  msgid ""
4033
  "Sent some time after listing expiration and when no renewal has occurred. "
4034
  "Applies to both recurring and non-recurring renewals."
4035
  msgstr ""
4036
 
4037
+ #: core/class-settings.php:527
4038
  msgctxt "admin settings"
4039
  msgid "Payment"
4040
  msgstr ""
4041
 
4042
+ #: core/class-settings.php:528
4043
  msgctxt "admin settings"
4044
  msgid "Payment Settings"
4045
  msgstr ""
4046
 
4047
+ #: core/class-settings.php:531
4048
  msgctxt "admin settings"
4049
  msgid "Turn On payments?"
4050
  msgstr ""
4051
 
4052
+ #: core/class-settings.php:533
4053
  msgctxt "admin settings"
4054
  msgid "Put payment gateways in test mode?"
4055
  msgstr ""
4056
 
4057
+ #: core/class-settings.php:538
4058
  msgctxt "admin settings"
4059
  msgid "Perform checkouts on the secure (HTTPS) version of your site?"
4060
  msgstr ""
4061
 
4062
+ #: core/class-settings.php:541
4063
  msgctxt "admin settings"
4064
  msgid ""
4065
  "Recommended for added security. For this to work you need to enable HTTPS on "
4066
  "your server and <a>obtain an SSL certificate</a>."
4067
  msgstr ""
4068
 
4069
+ #: core/class-settings.php:545
4070
  msgctxt "admin settings"
4071
  msgid "Currency Code"
4072
  msgstr ""
4073
 
4074
+ #: core/class-settings.php:547
4075
  msgctxt "admin settings"
4076
  msgid "Australian Dollar (AUD)"
4077
  msgstr ""
4078
 
4079
+ #: core/class-settings.php:548
4080
  msgctxt "admin settings"
4081
  msgid "Brazilian Real (BRL)"
4082
  msgstr ""
4083
 
4084
+ #: core/class-settings.php:549
4085
  msgctxt "admin settings"
4086
  msgid "Canadian Dollar (CAD)"
4087
  msgstr ""
4088
 
4089
+ #: core/class-settings.php:550
4090
  msgctxt "admin settings"
4091
  msgid "Czech Koruna (CZK)"
4092
  msgstr ""
4093
 
4094
+ #: core/class-settings.php:551
4095
  msgctxt "admin settings"
4096
  msgid "Danish Krone (DKK)"
4097
  msgstr ""
4098
 
4099
+ #: core/class-settings.php:552
4100
  msgctxt "admin settings"
4101
  msgid "Euro (EUR)"
4102
  msgstr ""
4103
 
4104
+ #: core/class-settings.php:553
4105
  msgctxt "admin settings"
4106
  msgid "Hong Kong Dollar (HKD)"
4107
  msgstr ""
4108
 
4109
+ #: core/class-settings.php:554
4110
  msgctxt "admin settings"
4111
  msgid "Hungarian Forint (HUF)"
4112
  msgstr ""
4113
 
4114
+ #: core/class-settings.php:555
4115
  msgctxt "admin settings"
4116
  msgid "Israeli New Shequel (ILS)"
4117
  msgstr ""
4118
 
4119
+ #: core/class-settings.php:556
4120
  msgctxt "admin settings"
4121
  msgid "Japanese Yen (JPY)"
4122
  msgstr ""
4123
 
4124
+ #: core/class-settings.php:557
4125
  msgctxt "admin settings"
4126
  msgid "Malasian Ringgit (MYR)"
4127
  msgstr ""
4128
 
4129
+ #: core/class-settings.php:558
4130
  msgctxt "admin settings"
4131
  msgid "Mexican Peso (MXN)"
4132
  msgstr ""
4133
 
4134
+ #: core/class-settings.php:559
4135
  msgctxt "admin settings"
4136
  msgid "Norwegian Krone (NOK)"
4137
  msgstr ""
4138
 
4139
+ #: core/class-settings.php:560
4140
  msgctxt "admin settings"
4141
  msgid "New Zealand Dollar (NZD)"
4142
  msgstr ""
4143
 
4144
+ #: core/class-settings.php:561
4145
  msgctxt "admin settings"
4146
  msgid "Philippine Peso (PHP)"
4147
  msgstr ""
4148
 
4149
+ #: core/class-settings.php:562
4150
  msgctxt "admin settings"
4151
  msgid "Polish Zloty (PLN)"
4152
  msgstr ""
4153
 
4154
+ #: core/class-settings.php:563
4155
  msgctxt "admin settings"
4156
  msgid "Pound Sterling (GBP)"
4157
  msgstr ""
4158
 
4159
+ #: core/class-settings.php:564
4160
  msgctxt "admin settings"
4161
  msgid "Singapore Dollar (SGD)"
4162
  msgstr ""
4163
 
4164
+ #: core/class-settings.php:565
4165
  msgctxt "admin settings"
4166
  msgid "Swedish Krona (SEK)"
4167
  msgstr ""
4168
 
4169
+ #: core/class-settings.php:566
4170
  msgctxt "admin settings"
4171
  msgid "Swiss Franc (CHF)"
4172
  msgstr ""
4173
 
4174
+ #: core/class-settings.php:567
4175
  msgctxt "admin settings"
4176
  msgid "Taiwan Dollar (TWD)"
4177
  msgstr ""
4178
 
4179
+ #: core/class-settings.php:568
4180
  msgctxt "admin settings"
4181
  msgid "Thai Baht (THB)"
4182
  msgstr ""
4183
 
4184
+ #: core/class-settings.php:569
4185
  msgctxt "admin settings"
4186
  msgid "Turkish Lira (TRY)"
4187
  msgstr ""
4188
 
4189
+ #: core/class-settings.php:570
4190
  msgctxt "admin settings"
4191
  msgid "U.S. Dollar (USD)"
4192
  msgstr ""
4193
 
4194
+ #: core/class-settings.php:574
4195
  msgctxt "admin settings"
4196
  msgid "Currency Symbol"
4197
  msgstr ""
4198
 
4199
+ #: core/class-settings.php:579
4200
  msgctxt "admin settings"
4201
  msgid "Currency symbol display"
4202
  msgstr ""
4203
 
4204
+ #: core/class-settings.php:583
4205
  msgctxt "admin settings"
4206
  msgid "Show currency symbol on the left"
4207
  msgstr ""
4208
 
4209
+ #: core/class-settings.php:584
4210
  msgctxt "admin settings"
4211
  msgid "Show currency symbol on the right"
4212
  msgstr ""
4213
 
4214
+ #: core/class-settings.php:585
4215
  msgctxt "admin settings"
4216
  msgid "Do not show currency symbol"
4217
  msgstr ""
4218
 
4219
+ #: core/class-settings.php:587
4220
  msgctxt "admin settings"
4221
  msgid "Thank you for payment message"
4222
  msgstr ""
4223
 
4224
+ #: core/class-settings.php:588
4225
  msgctxt "admin settings"
4226
  msgid ""
4227
  "Thank you for your payment. Your payment is being verified and your listing "
4228
  "reviewed. The verification and review process could take up to 48 hours."
4229
  msgstr ""
4230
 
4231
+ #: core/class-settings.php:593
4232
  msgctxt "admin settings"
4233
  msgid "Ask users to come back for abandoned payments?"
4234
  msgstr ""
4235
 
4236
+ #: core/class-settings.php:596
4237
  msgctxt "admin settings"
4238
  msgid ""
4239
  "An abandoned payment is when a user attempts to place a listing and gets to "
4242
  "the transaction. BD can remind them to come back and continue."
4243
  msgstr ""
4244
 
4245
+ #: core/class-settings.php:602
4246
  msgctxt "admin settings"
4247
  msgid "Listing abandonment threshold (hours)"
4248
  msgstr ""
4249
 
4250
+ #: core/class-settings.php:607
4251
  msgctxt "admin settings"
4252
  msgid ""
4253
  "Listings with pending payments are marked as abandoned after this time. You "
4254
  "can also <a>customize the e-mail</a> users receive."
4255
  msgstr ""
4256
 
4257
+ #: core/class-settings.php:612
4258
  msgctxt "admin settings"
4259
  msgid "Themes"
4260
  msgstr ""
4261
 
4262
+ #: core/class-settings.php:614
4263
  msgctxt "admin settings"
4264
  msgid "You can manage your themes on <a>Directory Themes</a>."
4265
  msgstr ""
4266
 
4267
+ #: core/class-settings.php:619
4268
  msgctxt "admin settings"
4269
  msgid "Theme button style"
4270
  msgstr ""
4271
 
4272
+ #: core/class-settings.php:623
4273
  msgctxt "admin settings"
4274
  msgid "Use the BD theme style for BD buttons"
4275
  msgstr ""
4276
 
4277
+ #: core/class-settings.php:624
4278
  msgctxt "admin settings"
4279
  msgid "Use the WP theme style for BD buttons"
4280
  msgstr ""
4281
 
4282
+ #: core/class-settings.php:631
4283
  msgctxt "admin settings"
4284
  msgid "Image"
4285
  msgstr ""
4286
 
4287
+ #: core/class-settings.php:632
4288
  msgctxt "admin settings"
4289
  msgid ""
4290
  "Any changes to these settings will affect new listings only. Existing "
4293
  "here."
4294
  msgstr ""
4295
 
4296
+ #: core/class-settings.php:633
4297
  msgctxt "admin settings"
4298
  msgid "Image Settings"
4299
  msgstr ""
4300
 
4301
+ #: core/class-settings.php:634
4302
  msgctxt "admin settings"
4303
  msgid "Allow images?"
4304
  msgstr ""
4305
 
4306
+ #: core/class-settings.php:636
4307
  msgctxt "admin settings"
4308
  msgid "Min Image File Size (KB)"
4309
  msgstr ""
4310
 
4311
+ #: core/class-settings.php:637
4312
  msgctxt "admin settings"
4313
  msgid "Max Image File Size (KB)"
4314
  msgstr ""
4315
 
4316
+ #: core/class-settings.php:639
4317
  msgctxt "admin settings"
4318
  msgid "Min image width (px)"
4319
  msgstr ""
4320
 
4321
+ #: core/class-settings.php:640
4322
  msgctxt "admin settings"
4323
  msgid "Min image height (px)"
4324
  msgstr ""
4325
 
4326
+ #: core/class-settings.php:642
4327
  msgctxt "admin settings"
4328
  msgid "Max image width (px)"
4329
  msgstr ""
4330
 
4331
+ #: core/class-settings.php:643
4332
  msgctxt "admin settings"
4333
  msgid "Max image height (px)"
4334
  msgstr ""
4335
 
4336
+ #: core/class-settings.php:645
4337
  msgctxt "admin settings"
4338
  msgid "Turn on thickbox/lightbox?"
4339
  msgstr ""
4340
 
4341
+ #: core/class-settings.php:645
4342
  msgctxt "admin settings"
4343
  msgid ""
4344
  "Uncheck if it conflicts with other elements or plugins installed on your site"
4345
  msgstr ""
4346
 
4347
+ #: core/class-settings.php:647
4348
  msgctxt "admin settings"
4349
  msgid "Thumbnails"
4350
  msgstr ""
4351
 
4352
+ #: core/class-settings.php:648
4353
  msgctxt "admin settings"
4354
  msgid "Thumbnail width (px)"
4355
  msgstr ""
4356
 
4357
+ #: core/class-settings.php:649
4358
  msgctxt "admin settings"
4359
  msgid "Thumbnail height (px)"
4360
  msgstr ""
4361
 
4362
+ #: core/class-settings.php:652
4363
  msgctxt "admin settings"
4364
  msgid "Crop thumbnails to exact dimensions?"
4365
  msgstr ""
4366
 
4367
+ #: core/class-settings.php:655
4368
  msgctxt "admin settings"
4369
  msgid ""
4370
  "When enabled images will match exactly the dimensions above but part of the "
4373
  "Depending on the uploaded images, thumbnails may have different heights."
4374
  msgstr ""
4375
 
4376
+ #: core/class-settings.php:661
4377
  msgctxt "admin settings"
4378
  msgid "Number of free images"
4379
  msgstr ""
4380
 
4381
+ #: core/class-settings.php:666
4382
  msgctxt "admin settings"
4383
  msgid ""
4384
  "For paid listing images, configure that by adding or editing a <a>Fee Plan</"
4385
  "a> instead of this setting, which is ignored for paid listings."
4386
  msgstr ""
4387
 
4388
+ #: core/class-settings.php:669
4389
  msgctxt "admin settings"
4390
  msgid "Use default picture for listings with no picture?"
4391
  msgstr ""
4392
 
4393
+ #: core/class-settings.php:670
4394
  msgctxt "admin settings"
4395
  msgid "Show Thumbnail on main listings page?"
4396
  msgstr ""
4397
 
4398
+ #: core/class-settings.php:699
4399
  msgctxt "admin settings"
4400
  msgid "User"
4401
  msgstr ""
4402
 
4403
+ #: core/class-settings.php:700
4404
  msgctxt "admin settings"
4405
  msgid "User registration date"
4406
  msgstr ""
4407
 
4408
+ #: core/class-settings.php:726
4409
  msgctxt "admin settings"
4410
  msgid ""
4411
  "Could not copy the AJAX compatibility plugin \"%s\". Compatibility mode was "
4412
  "not activated."
4413
  msgstr ""
4414
 
4415
+ #: core/class-settings.php:734
4416
  msgctxt "admin settings"
4417
  msgid ""
4418
  "Could not activate AJAX Compatibility mode: the directory \"%s\" could not "
4419
  "be created."
4420
  msgstr ""
4421
 
4422
+ #: core/class-settings.php:743
4423
  msgctxt "admin settings"
4424
  msgid ""
4425
  "Could not remove the \"Business Directory Plugin - AJAX Compatibility Module"
4426
  "\". Please remove the file \"%s\" manually or deactivate the plugin."
4427
  msgstr ""
4428
 
4429
+ #: core/class-settings.php:1063
4430
  msgctxt "settings"
4431
  msgid "Deactivate License"
4432
  msgstr ""
4433
 
4434
+ #: core/class-settings.php:1065
4435
  msgctxt "settings"
4436
  msgid "Deactivating license..."
4437
  msgstr ""
4438
 
4439
+ #: core/class-settings.php:1068
4440
  msgctxt "settings"
4441
  msgid "Activate License"
4442
  msgstr ""
4443
 
4444
+ #: core/class-settings.php:1070
4445
  msgctxt "settings"
4446
  msgid "Activating license..."
4447
  msgstr ""
4448
 
4449
+ #: core/class-settings.php:1093
4450
  msgctxt "admin settings"
4451
  msgid "Valid placeholders: %s"
4452
  msgstr ""
4453
 
4454
+ #: core/class-settings.php:1127
4455
  msgctxt "settings email"
4456
  msgid "Click to edit e-mail"
4457
  msgstr ""
4458
 
4459
+ #: core/class-settings.php:1128
4460
  msgctxt "settings email"
4461
  msgid "Click to edit"
4462
  msgstr ""
4463
 
4464
+ #: core/class-settings.php:1141
4465
  msgctxt "settings email"
4466
  msgid "E-Mail Subject"
4467
  msgstr ""
4468
 
4469
+ #: core/class-settings.php:1152
4470
  msgctxt "settings email"
4471
  msgid "E-Mail Body"
4472
  msgstr ""
4473
 
4474
+ #: core/class-settings.php:1163
4475
  msgctxt "settings email"
4476
  msgid "You can use the following placeholders:"
4477
  msgstr ""
4478
 
4479
+ #: core/class-settings.php:1186
4480
  msgctxt "settings email"
4481
  msgid "Preview e-mail"
4482
  msgstr ""
4483
 
4484
+ #: core/class-settings.php:1187
4485
  msgctxt "settings email"
4486
  msgid "Cancel"
4487
  msgstr ""
4488
 
4489
+ #: core/class-settings.php:1188
4490
  msgctxt "settings email"
4491
  msgid "Save Changes"
4492
  msgstr ""
4493
 
4494
+ #: core/class-settings.php:1207
4495
  msgctxt "settings email"
4496
  msgid "Site title"
4497
  msgstr ""
4498
 
4499
+ #: core/class-settings.php:1210
4500
  msgctxt "settings email"
4501
  msgid "Site title (with link)"
4502
  msgstr ""
4503
 
4504
+ #: core/class-settings.php:1213
4505
  msgctxt "settings email"
4506
  msgid "Site address (with link)"
4507
  msgstr ""
4508
 
4509
+ #: core/class-settings.php:1216
4510
  msgctxt "settings email"
4511
  msgid "Directory URL (with link)"
4512
  msgstr ""
4513
 
4514
+ #: core/class-settings.php:1219
4515
  msgctxt "settings email"
4516
  msgid "Current date"
4517
  msgstr ""
4518
 
4519
+ #: core/class-settings.php:1222
4520
  msgctxt "settings email"
4521
  msgid "Current time"
4522
  msgstr ""