Contact Form by BestWebSoft - Version 4.1.2

Version Description

  • 26.02.2019 =
  • Update : The plugin settings page has been changed.
Download this release

Release Info

Developer bestwebsoft
Plugin Icon 128x128 Contact Form by BestWebSoft
Version 4.1.2
Comparing to
See all releases

Code changes from version 4.1.1 to 4.1.2

Files changed (41) hide show
  1. bws_menu/bws_functions.php +8 -8
  2. bws_menu/bws_menu.php +219 -216
  3. bws_menu/class-bws-settings.php +511 -465
  4. bws_menu/js/bws_menu.js +1 -1
  5. bws_menu/languages/bestwebsoft-cs_CZ.mo +0 -0
  6. bws_menu/languages/bestwebsoft-cs_CZ.po +43 -107
  7. bws_menu/languages/bestwebsoft-fr_FR.mo +0 -0
  8. bws_menu/languages/bestwebsoft-fr_FR.po +259 -1169
  9. bws_menu/languages/bestwebsoft-ru_RU.mo +0 -0
  10. bws_menu/languages/bestwebsoft-ru_RU.po +1 -1
  11. bws_menu/product_list.php +20 -2
  12. contact_form.php +83 -1809
  13. css/icon_style.css +8 -0
  14. css/style.css +29 -16
  15. includes/class-cntctfrm-settings.php +1782 -0
  16. includes/pro_banners.php +0 -0
  17. js/script.js +6 -6
  18. languages/contact-form-plugin-af_ZA.mo +0 -0
  19. languages/contact-form-plugin-af_ZA.po +494 -410
  20. languages/contact-form-plugin-ca.mo +0 -0
  21. languages/contact-form-plugin-ca.po +485 -411
  22. languages/contact-form-plugin-cs_CZ.mo +0 -0
  23. languages/contact-form-plugin-cs_CZ.po +549 -429
  24. languages/contact-form-plugin-da_DK.mo +0 -0
  25. languages/contact-form-plugin-da_DK.po +560 -443
  26. languages/contact-form-plugin-de_DE.mo +0 -0
  27. languages/contact-form-plugin-de_DE.po +493 -409
  28. languages/contact-form-plugin-el.mo +0 -0
  29. languages/contact-form-plugin-el.po +536 -444
  30. languages/contact-form-plugin-es_ES.mo +0 -0
  31. languages/contact-form-plugin-es_ES.po +536 -421
  32. languages/contact-form-plugin-et.mo +0 -0
  33. languages/contact-form-plugin-et.po +493 -410
  34. languages/contact-form-plugin-fr_FR.mo +0 -0
  35. languages/contact-form-plugin-fr_FR.po +541 -426
  36. languages/contact-form-plugin-id_ID.mo +0 -0
  37. languages/contact-form-plugin-id_ID.po +543 -424
  38. languages/contact-form-plugin-ja.mo +0 -0
  39. languages/contact-form-plugin-ja.po +505 -413
  40. languages/contact-form-plugin-nb_NO.mo +0 -0
  41. languages/contact-form-plugin-nb_NO.po +203 -75
bws_menu/bws_functions.php CHANGED
@@ -91,7 +91,7 @@ if ( ! function_exists( 'bws_plugin_reviews_block' ) ) {
91
  <div class="bws-plugin-reviews-rate">
92
  <?php _e( 'Like the plugin?', 'bestwebsoft' ); ?>
93
  <a href="https://wordpress.org/support/view/plugin-reviews/<?php echo esc_attr( $plugin_slug ); ?>?filter=5" target="_blank" title="<?php printf( __( '%s reviews', 'bestwebsoft' ), sanitize_text_field( $plugin_name ) ); ?>">
94
- <?php _e( 'Rate it', 'bestwebsoft' ); ?>
95
  <span class="dashicons dashicons-star-filled"></span>
96
  <span class="dashicons dashicons-star-filled"></span>
97
  <span class="dashicons dashicons-star-filled"></span>
@@ -261,8 +261,8 @@ if ( ! function_exists( 'bws_admin_notices' ) ) {
261
  */
262
  if ( ! empty( $bstwbsftwppdtplgns_options['deprecated_function'] ) ) { ?>
263
  <div class="update-nag">
264
- <strong><?php _e( 'Deprecated function(-s) is used on the site here:', 'bestwebsoft' ); ?></strong>
265
- <?php $i = 1;
266
  foreach ( $bstwbsftwppdtplgns_options['deprecated_function'] as $function_name => $attr ) {
267
  if ( 1 != $i )
268
  echo ' ,';
@@ -275,8 +275,8 @@ if ( ! function_exists( 'bws_admin_notices' ) ) {
275
  $i++;
276
  } ?>.
277
  <br/>
278
- <?php _e( 'This function(-s) will be removed over time. Please update the product(-s).', 'bestwebsoft' ); ?>
279
- </div>
280
  <?php if ( is_multisite() )
281
  update_site_option( 'bstwbsftwppdtplgns_options', $bstwbsftwppdtplgns_options );
282
  else
@@ -594,7 +594,7 @@ if ( ! function_exists ( 'bws_admin_enqueue_scripts' ) ) {
594
  add_thickbox();
595
  wp_enqueue_script( 'plugin-install' );
596
  }
597
-
598
  if ( 'plugins.php' == $hook_suffix && ! defined( 'DOING_AJAX' ) ) {
599
  wp_enqueue_style( 'bws-modal-css', bws_menu_url( 'css/modal.css' ) );
600
  }
@@ -887,7 +887,7 @@ if ( ! function_exists( 'bws_shortcode_media_button_popup' ) ) {
887
  }
888
  }
889
 
890
- /**
891
  * output shortcode in a special block
892
  * @since 1.9.8
893
  */
@@ -897,7 +897,7 @@ if ( ! function_exists( 'bws_shortcode_output' ) ) {
897
  <?php }
898
  }
899
 
900
- /**
901
  * output tooltip
902
  * @since 1.9.8
903
  * @param string $content - HTML content for the tooltip
91
  <div class="bws-plugin-reviews-rate">
92
  <?php _e( 'Like the plugin?', 'bestwebsoft' ); ?>
93
  <a href="https://wordpress.org/support/view/plugin-reviews/<?php echo esc_attr( $plugin_slug ); ?>?filter=5" target="_blank" title="<?php printf( __( '%s reviews', 'bestwebsoft' ), sanitize_text_field( $plugin_name ) ); ?>">
94
+ <?php _e( 'Rate it', 'bestwebsoft' ); ?>
95
  <span class="dashicons dashicons-star-filled"></span>
96
  <span class="dashicons dashicons-star-filled"></span>
97
  <span class="dashicons dashicons-star-filled"></span>
261
  */
262
  if ( ! empty( $bstwbsftwppdtplgns_options['deprecated_function'] ) ) { ?>
263
  <div class="update-nag">
264
+ <strong><?php _e( 'Deprecated function(-s) is used on the site here:', 'bestwebsoft' ); ?></strong>
265
+ <?php $i = 1;
266
  foreach ( $bstwbsftwppdtplgns_options['deprecated_function'] as $function_name => $attr ) {
267
  if ( 1 != $i )
268
  echo ' ,';
275
  $i++;
276
  } ?>.
277
  <br/>
278
+ <?php _e( 'This function(-s) will be removed over time. Please update the product(-s).', 'bestwebsoft' ); ?>
279
+ </div>
280
  <?php if ( is_multisite() )
281
  update_site_option( 'bstwbsftwppdtplgns_options', $bstwbsftwppdtplgns_options );
282
  else
594
  add_thickbox();
595
  wp_enqueue_script( 'plugin-install' );
596
  }
597
+
598
  if ( 'plugins.php' == $hook_suffix && ! defined( 'DOING_AJAX' ) ) {
599
  wp_enqueue_style( 'bws-modal-css', bws_menu_url( 'css/modal.css' ) );
600
  }
887
  }
888
  }
889
 
890
+ /**
891
  * output shortcode in a special block
892
  * @since 1.9.8
893
  */
897
  <?php }
898
  }
899
 
900
+ /**
901
  * output tooltip
902
  * @since 1.9.8
903
  * @param string $content - HTML content for the tooltip
bws_menu/bws_menu.php CHANGED
@@ -1,7 +1,7 @@
1
  <?php
2
  /*
3
  * Function for displaying BestWebSoft menu
4
- * Version: 2.1.5
5
  */
6
 
7
  if ( ! function_exists ( 'bws_admin_enqueue_scripts' ) )
@@ -13,8 +13,8 @@ if ( ! function_exists( 'bws_add_menu_render' ) ) {
13
  $error = $message = '';
14
 
15
  /**
16
- * @deprecated 1.9.8 (15.12.2016)
17
- */
18
  $is_main_page = in_array( $_GET['page'], array( 'bws_panel', 'bws_themes', 'bws_system_status' ) );
19
  $page = esc_attr( $_GET['page'] );
20
  $tab = isset( $_GET['tab'] ) ? esc_attr( $_GET['tab'] ) : '';
@@ -66,7 +66,7 @@ if ( ! function_exists( 'bws_add_menu_render' ) ) {
66
  }
67
  /* check expired */
68
  if ( $is_pro_installed && isset( $bstwbsftwppdtplgns_options['time_out'][ $value_plugin['pro_version'] ] ) &&
69
- strtotime( $bstwbsftwppdtplgns_options['time_out'][ $value_plugin['pro_version'] ] ) < strtotime( date( "m/d/Y" ) ) ) {
70
  unset( $bws_plugins[ $key_plugin ] );
71
  $value_plugin['expired'] = $bstwbsftwppdtplgns_options['time_out'][ $value_plugin['pro_version'] ];
72
  $bws_plugins_expired[ $key_plugin ] = $value_plugin;
@@ -157,7 +157,7 @@ if ( ! function_exists( 'bws_add_menu_render' ) ) {
157
  if ( is_multisite() )
158
  update_site_option( 'bstwbsftwppdtplgns_options', $bstwbsftwppdtplgns_options );
159
  else
160
- update_option( 'bstwbsftwppdtplgns_options', $bstwbsftwppdtplgns_options );
161
  }
162
  } else {
163
  $error = __( "Please enter your license key.", 'bestwebsoft' );
@@ -167,11 +167,11 @@ if ( ! function_exists( 'bws_add_menu_render' ) ) {
167
 
168
  $all_plugins = get_plugins();
169
  $active_plugins = get_option( 'active_plugins' );
170
- $mysql_info = $wpdb->get_results( "SHOW VARIABLES LIKE 'sql_mode'" );
171
- if ( is_array( $mysql_info ) )
172
- $sql_mode = $mysql_info[0]->Value;
173
- if ( empty( $sql_mode ) )
174
- $sql_mode = __( 'Not set', 'bestwebsoft' );
175
 
176
  $allow_url_fopen = ( ini_get( 'allow_url_fopen' ) ) ? __( 'On', 'bestwebsoft' ) : __( 'Off', 'bestwebsoft' );
177
  $upload_max_filesize = ( ini_get( 'upload_max_filesize' ) )? ini_get( 'upload_max_filesize' ) : __( 'N/A', 'bestwebsoft' );
@@ -290,82 +290,82 @@ if ( ! function_exists( 'bws_add_menu_render' ) ) {
290
  }
291
  }
292
  } ?>
293
- <div class="bws-wrap">
294
- <div class="bws-header">
295
- <div class="bws-title">
296
- <a href="<?php echo ( $is_main_page ) ? self_admin_url( 'admin.php?page=bws_panel' ) : esc_url( self_admin_url( 'admin.php?page=' . $page ) ); ?>">
297
- <span class="bws-logo bwsicons bwsicons-bws-logo"></span>
298
- BestWebSoft
299
- <span>panel</span>
300
- </a>
301
- </div>
302
- <div class="bws-menu-item-icon">&#8226;&#8226;&#8226;</div>
303
- <div class="bws-nav-tab-wrapper">
304
  <?php if ( $is_main_page ) { ?>
305
- <a class="bws-nav-tab<?php if ( 'bws_panel' == $page ) echo ' bws-nav-tab-active'; ?>" href="<?php echo self_admin_url( 'admin.php?page=bws_panel' ); ?>"><?php _e( 'Plugins', 'bestwebsoft' ); ?></a>
306
- <a class="bws-nav-tab<?php if ( 'bws_themes' == $page ) echo ' bws-nav-tab-active'; ?>" href="<?php echo self_admin_url( 'admin.php?page=bws_themes' ); ?>"><?php _e( 'Themes', 'bestwebsoft' ); ?></a>
307
- <a class="bws-nav-tab<?php if ( 'bws_system_status' == $page ) echo ' bws-nav-tab-active'; ?>" href="<?php echo self_admin_url( 'admin.php?page=bws_system_status' ); ?>"><?php _e( 'System status', 'bestwebsoft' ); ?></a>
308
  <?php } else { ?>
309
- <a class="bws-nav-tab<?php if ( ! isset( $_GET['tab'] ) ) echo ' bws-nav-tab-active'; ?>" href="<?php echo esc_url( self_admin_url( 'admin.php?page=' . $page ) ); ?>"><?php _e( 'Plugins', 'bestwebsoft' ); ?></a>
310
- <a class="bws-nav-tab<?php if ( 'themes' == $tab ) echo ' bws-nav-tab-active'; ?>" href="<?php echo esc_url( self_admin_url( 'admin.php?page=' . $page . '&tab=themes' ) ); ?>"><?php _e( 'Themes', 'bestwebsoft' ); ?></a>
311
- <a class="bws-nav-tab<?php if ( 'system-status' == $tab ) echo ' bws-nav-tab-active'; ?>" href="<?php echo esc_url( self_admin_url( 'admin.php?page=' . $page . '&tab=system-status' ) ); ?>"><?php _e( 'System status', 'bestwebsoft' ); ?></a>
312
  <?php } ?>
313
- </div>
314
- <div class="bws-help-links-wrapper">
315
- <a href="https://support.bestwebsoft.com" target="_blank"><?php _e( 'Support', 'bestwebsoft' ); ?></a>
316
- <a href="https://bestwebsoft.com/client-area" target="_blank" title="<?php _e( 'Manage purchased licenses & subscriptions', 'bestwebsoft' ); ?>">Client Area</a>
317
- </div>
318
- <div class="clear"></div>
319
- </div>
320
  <?php if ( ( 'bws_panel' == $page || ( ! isset( $_GET['tab'] ) && ! $is_main_page ) ) && ! isset( $_POST['bws_plugin_action_submit'] ) ) { ?>
321
- <div class="bws-membership-wrap">
322
- <div class="bws-membership-backround"></div>
323
- <div class="bws-membership">
324
- <div class="bws-membership-title"><?php printf( __( 'Get Access to %s+ Premium Plugins', 'bestwebsoft' ), '30' ); ?></div>
325
- <form class="bws-membership-form" method="post" action="">
326
- <span class="bws-membership-link"><a target="_blank" href="https://bestwebsoft.com/membership/"><?php _e( 'Subscribe to Pro Membership', 'bestwebsoft' ); ?></a> <?php _e( 'or', 'bestwebsoft' ); ?></span>
327
  <?php if ( isset( $bstwbsftwppdtplgns_options['go_pro'][ $bws_license_plugin ]['count'] ) &&
328
- '5' < $bstwbsftwppdtplgns_options['go_pro'][ $bws_license_plugin ]['count'] &&
329
- $bstwbsftwppdtplgns_options['go_pro'][ $bws_license_plugin ]['time'] > ( time() - ( 24 * 60 * 60 ) ) ) { ?>
330
- <div class="bws_form_input_wrap">
331
- <input disabled="disabled" type="text" name="bws_license_key" value="<?php echo esc_attr( $bws_license_key); ?>" />
332
- <div class="bws_error"><?php _e( "Unfortunately, you have exceeded the number of available tries per day.", 'bestwebsoft' ); ?></div>
333
- </div>
334
- <input disabled="disabled" type="submit" class="bws-button" value="<?php _e( 'Check license key', 'bestwebsoft' ); ?>" />
335
  <?php } else { ?>
336
- <div class="bws_form_input_wrap">
337
- <input <?php if ( "" != $error ) echo 'class="bws_input_error"'; ?> type="text" placeholder="<?php _e( 'Enter your license key', 'bestwebsoft' ); ?>" maxlength="100" name="bws_license_key" value="<?php echo esc_attr( $bws_license_key ); ?>" />
338
- <div class="bws_error" <?php if ( "" == $error ) echo 'style="display:none"'; ?>><?php echo $error; ?></div>
339
- </div>
340
- <input type="hidden" name="bws_license_plugin" value="<?php echo esc_attr( $bws_license_plugin ); ?>" />
341
- <input type="hidden" name="bws_license_submit" value="submit" />
342
  <?php if ( empty( $plugins_array ) ) { ?>
343
- <input type="submit" class="bws-button" value="<?php _e( 'Activate', 'bestwebsoft' ); ?>" />
344
  <?php } else { ?>
345
- <input type="submit" class="bws-button" value="<?php _e( 'Check license key', 'bestwebsoft' ); ?>" />
346
  <?php } ?>
347
  <?php wp_nonce_field( plugin_basename(__FILE__), 'bws_license_nonce_name' ); ?>
348
  <?php } ?>
349
- </form>
350
- <div class="clear"></div>
351
- </div>
352
- </div>
353
  <?php } ?>
354
- <div class="bws-wrap-content wrap">
355
  <?php if ( 'bws_panel' == $page || ( ! isset( $_GET['tab'] ) && ! $is_main_page ) ) { ?>
356
- <div class="updated notice is-dismissible inline" <?php if ( '' == $message || '' != $error ) echo 'style="display:none"'; ?>><p><?php echo $message; ?></p></div>
357
- <h1>
358
  <?php _e( 'Plugins', 'bestwebsoft' ); ?>
359
- <a href="<?php echo self_admin_url( 'plugin-install.php?tab=upload' ); ?>" class="upload page-title-action add-new-h2"><?php _e( 'Upload Plugin', 'bestwebsoft' ); ?></a>
360
- </h1>
361
  <?php if ( isset( $_GET['error'] ) ) {
362
  if ( isset( $_GET['charsout'] ) )
363
  $errmsg = sprintf( __( 'The plugin generated %d characters of <strong>unexpected output</strong> during activation. If you notice &#8220;headers already sent&#8221; messages, problems with syndication feeds or other issues, try deactivating or removing this plugin.' ), $_GET['charsout'] );
364
  else
365
  $errmsg = __( 'Plugin could not be activated because it triggered a <strong>fatal error</strong>.' ); ?>
366
- <div id="message" class="error is-dismissible"><p><?php echo $errmsg; ?></p></div>
367
  <?php } elseif ( isset( $_GET['activate'] ) ) { ?>
368
- <div id="message" class="updated notice is-dismissible"><p><?php _e( 'Plugin <strong>activated</strong>.' ) ?></p></div>
369
  <?php }
370
 
371
  if ( isset( $_POST['bws_plugin_action_submit'] ) && isset( $_POST['bws_install_plugin'] ) && check_admin_referer( plugin_basename(__FILE__), 'bws_license_install_nonce_name' ) ) {
@@ -442,47 +442,47 @@ if ( ! function_exists( 'bws_add_menu_render' ) ) {
442
  echo '<p class="error">' . $error . '</p>';
443
  echo '<p><a href="' . esc_url( self_admin_url( $current_page ) ) . '" target="_parent">' . __( 'Return to BestWebSoft Panel', 'bestwebsoft' ) . '</a></p>';
444
  }
445
- } else {
446
  $category_href = $current_page;
447
  if ( 'all' != $plugin_category )
448
  $category_href .= '&category=' . $plugin_category; ?>
449
- <ul class="subsubsub">
450
- <li>
451
- <a <?php if ( ! isset( $_GET['sub'] ) ) echo 'class="current" '; ?>href="<?php echo esc_url( self_admin_url( $category_href ) ); ?>"><?php _e( 'All', 'bestwebsoft' ); ?></a>
452
- </li> |
453
- <li>
454
- <a <?php if ( isset( $_GET['sub'] ) && 'installed' == $_GET['sub'] ) echo 'class="current" '; ?>href="<?php echo esc_url( self_admin_url( $category_href . '&sub=installed' ) ); ?>"><?php _e( 'Installed', 'bestwebsoft' ); ?></a>
455
- </li> |
456
- <li>
457
- <a <?php if ( isset( $_GET['sub'] ) && 'not_installed' == $_GET['sub'] ) echo 'class="current" '; ?>href="<?php echo esc_url( self_admin_url( $category_href . '&sub=not_installed' ) ); ?>"><?php _e( 'Not Installed', 'bestwebsoft' ); ?></a>
458
- </li>
459
- </ul>
460
- <div class="clear"></div>
461
- <div class="bws-filter-top">
462
- <h2>
463
- <span class="bws-toggle-indicator"></span>
464
  <?php _e( 'Filter results', 'bestwebsoft' ); ?>
465
- </h2>
466
- <div class="bws-filter-top-inside">
467
- <div class="bws-filter-title"><?php _e( 'Category', 'bestwebsoft' ); ?></div>
468
- <ul class="bws-category">
469
- <li>
470
  <?php $sub_in_url = ( isset( $_GET['sub'] ) && in_array( $_GET['sub'], array( 'installed', 'not_installed' ) ) ) ? '&sub=' . $_GET['sub'] : ''; ?>
471
- <a <?php if ( 'all' == $plugin_category ) echo ' class="bws-active"'; ?> href="<?php echo esc_url(self_admin_url( $current_page . $sub_in_url ) ); ?>"><?php _e( 'All', 'bestwebsoft' ); ?>
472
- <span>(<?php echo count( $bws_plugins ); ?>)</span>
473
- </a>
474
- </li>
475
  <?php foreach ( $bws_plugins_category as $category_key => $category_value ) { ?>
476
- <li>
477
- <a <?php if ( $category_key == $plugin_category ) echo ' class="bws-active"'; ?> href="<?php echo esc_url( self_admin_url( $current_page . $sub_in_url . '&category=' . $category_key ) ); ?>"><?php echo $category_value['name']; ?>
478
- <span>(<?php echo $category_value['count']; ?>)</span>
479
- </a>
480
- </li>
481
  <?php } ?>
482
- </ul>
483
- </div>
484
- </div>
485
- <div class="bws-products">
486
  <?php $nothing_found = true;
487
  foreach ( $bws_plugins as $key_plugin => $value_plugin ) {
488
 
@@ -503,19 +503,19 @@ if ( ! function_exists( 'bws_add_menu_render' ) ) {
503
  }
504
 
505
  if ( ( isset( $_GET['sub'] ) && 'installed' == $_GET['sub'] && ! $is_pro_installed && ! $is_installed ) ||
506
- ( isset( $_GET['sub'] ) && 'not_installed' == $_GET['sub'] && ( $is_pro_installed || $is_installed ) ) )
507
  continue;
508
 
509
  $link_attr = isset( $value_plugin['install_url'] ) ? 'href="' . esc_url( $value_plugin['install_url'] ) . '" target="_blank"' : 'href="' . esc_url( self_admin_url( 'plugin-install.php?tab=plugin-information&plugin=' . $key_plugin_explode[0] . '&from=import&TB_iframe=true&width=600&height=550' ) ) . '" class="thickbox open-plugin-details-modal"';
510
 
511
  $nothing_found = false; ?>
512
- <div class="bws_product_box<?php if ( $is_active || $is_pro_active ) echo ' bws_product_active'; ?>">
513
- <div class="bws_product_image">
514
- <a <?php echo $link_attr; ?>><img src="<?php echo $icon; ?>"/></a>
515
- </div>
516
- <div class="bws_product_content">
517
- <div class="bws_product_title"><a <?php echo $link_attr; ?>><?php echo $value_plugin['name']; ?></a></div>
518
- <div class="bws-version">
519
  <?php
520
  if ( $is_pro_installed ) {
521
  echo '<span';
@@ -537,158 +537,158 @@ if ( ! function_exists( 'bws_add_menu_render' ) ) {
537
  $r = $update_availible_all->response[ $value_plugin['update_availible'] ];
538
  echo ' - <a class="bws-update-now" href="' . esc_url( wp_nonce_url( self_admin_url( 'update.php?action=upgrade-plugin&plugin=' . $value_plugin['update_availible'] ), 'upgrade-plugin_' . $value_plugin['update_availible'] ) ) . '" class="update-link" aria-label="' . sprintf( __( 'Update to v %s', 'bestwebsoft' ), $r->new_version ) . '">' . sprintf( __( 'Update to v %s', 'bestwebsoft' ), $r->new_version ) . '</a>';
539
  } ?>
540
- </div>
541
- <div class="bws_product_description">
542
  <?php echo ( strlen( $value_plugin['description'] ) > 100 ) ? mb_substr( $value_plugin['description'], 0, 100 ) . '...' : $value_plugin['description']; ?>
543
- </div>
544
- <div class="bws_product_links">
545
  <?php if ( $is_active || $is_pro_active ) {
546
- if ( $is_pro_isset ) {
547
  if ( ! $is_pro_installed ) {
548
  if ( ! empty( $plugins_array ) && array_key_exists( $value_plugin['pro_version'], $plugins_array ) ) { ?>
549
- <form method="post" action="">
550
- <input type="submit" class="button button-secondary" value="<?php _e( 'Install Now', 'bestwebsoft' ); ?>" />
551
- <input type="hidden" name="bws_plugin_action_submit" value="submit" />
552
- <input type="hidden" name="bws_install_plugin" value="<?php echo $value_plugin['pro_version']; ?>" />
553
  <?php wp_nonce_field( plugin_basename(__FILE__), 'bws_license_install_nonce_name' ); ?>
554
- </form>
555
  <?php } else { ?>
556
- <a class="button button-secondary bws_upgrade_button" href="<?php echo esc_url( $bws_plugins[ $key_plugin ]['purchase'] ); ?>" target="_blank"><?php _e( 'Upgrade to Pro', 'bestwebsoft' ); ?></a>
557
  <?php }
558
  }
559
  } else { ?>
560
- <a class="bws_donate" href="https://bestwebsoft.com/donate/" target="_blank"><?php _e( 'Donate', 'bestwebsoft' ); ?></a> <span>|</span>
561
  <?php }
562
 
563
  if ( $is_pro_active ) { ?>
564
- <a class="bws_settings" href="<?php echo esc_url( self_admin_url( $bws_plugins[ $key_plugin ]["pro_settings"] ) ); ?>"><?php _e( 'Settings', 'bestwebsoft' ); ?></a>
565
  <?php } else { ?>
566
- <a class="bws_settings" href="<?php echo esc_url( self_admin_url( $bws_plugins[ $key_plugin ]["settings"] ) ); ?>"><?php _e( 'Settings', 'bestwebsoft' ); ?></a>
567
  <?php }
568
  } else {
569
  if ( $is_pro_installed ) { ?>
570
- <a class="button button-secondary" href="<?php echo esc_url( wp_nonce_url( self_admin_url( $current_page . '&bws_activate_plugin=' . $value_plugin['pro_version'] ), 'bws_activate_plugin' . $value_plugin['pro_version'] ) ); ?>" title="<?php _e( 'Activate this plugin', 'bestwebsoft' ); ?>"><?php _e( 'Activate', 'bestwebsoft' ); ?></a>
571
  <?php } elseif ( ! empty( $plugins_array ) && isset( $value_plugin['pro_version'] ) && array_key_exists( $value_plugin['pro_version'], $plugins_array ) ) { ?>
572
- <form method="post" action="">
573
- <input type="submit" class="button button-secondary" value="<?php _e( 'Install Now', 'bestwebsoft' ); ?>" />
574
- <input type="hidden" name="bws_plugin_action_submit" value="submit" />
575
- <input type="hidden" name="bws_install_plugin" value="<?php echo $value_plugin['pro_version']; ?>" />
576
  <?php wp_nonce_field( plugin_basename(__FILE__), 'bws_license_install_nonce_name' ); ?>
577
- </form>
578
  <?php } elseif ( $is_installed ) { ?>
579
- <a class="button button-secondary" href="<?php echo esc_url( wp_nonce_url( self_admin_url( $current_page . '&bws_activate_plugin=' . $key_plugin ), 'bws_activate_plugin' . $key_plugin ) ); ?>" title="<?php _e( 'Activate this plugin', 'bestwebsoft' ); ?>"><?php _e( 'Activate', 'bestwebsoft' ); ?></a>
580
  <?php } else {
581
  $install_url = isset( $value_plugin['install_url'] ) ? $value_plugin['install_url'] : self_admin_url( 'plugin-install.php?tab=search&type=term&s=' . str_replace( ' ', '+', str_replace( '-', '', $value_plugin['name'] ) ) . '+BestWebSoft&plugin-search-input=Search+Plugins' ); ?>
582
- <a class="button button-secondary" href="<?php echo esc_url( $install_url ); ?>" title="<?php _e( 'Install this plugin', 'bestwebsoft' ); ?>" target="_blank"><?php _e( 'Install Now', 'bestwebsoft' ); ?></a>
583
  <?php }
584
  } ?>
585
- </div>
586
- </div>
587
- <div class="clear"></div>
588
- </div>
589
  <?php }
590
  if ( $nothing_found ) { ?>
591
- <p class="description"><?php _e( 'Nothing found. Try another criteria.', 'bestwebsoft' ); ?></p>
592
  <?php } ?>
593
- </div>
594
- <div id="bws-filter-wrapper">
595
- <div class="bws-filter">
596
- <div class="bws-filter-title"><?php _e( 'Category', 'bestwebsoft' ); ?></div>
597
- <ul class="bws-category">
598
- <li>
599
  <?php $sub_in_url = ( isset( $_GET['sub'] ) && in_array( $_GET['sub'], array( 'installed', 'not_installed' ) ) ) ? '&sub=' . $_GET['sub'] : ''; ?>
600
- <a <?php if ( 'all' == $plugin_category ) echo ' class="bws-active"'; ?> href="<?php echo esc_url( self_admin_url( $current_page . $sub_in_url ) ); ?>"><?php _e( 'All', 'bestwebsoft' ); ?>
601
- <span>(<?php echo count( $bws_plugins ); ?>)</span>
602
- </a>
603
- </li>
604
  <?php foreach ( $bws_plugins_category as $category_key => $category_value ) { ?>
605
- <li>
606
- <a <?php if ( $category_key == $plugin_category ) echo ' class="bws-active"'; ?> href="<?php echo esc_url( self_admin_url( $current_page . $sub_in_url . '&category=' . $category_key ) ); ?>"><?php echo $category_value['name']; ?>
607
- <span>(<?php echo $category_value['count']; ?>)</span>
608
- </a>
609
- </li>
610
  <?php } ?>
611
- </ul>
612
- </div>
613
- </div><!-- #bws-filter-wrapper -->
614
- <div class="clear"></div>
615
  <?php }
616
  } elseif ( 'bws_themes' == $page || 'themes' == $tab ) {
617
  require( dirname( __FILE__ ) . '/product_list.php' ); ?>
618
- <h1><?php _e( 'Themes', 'bestwebsoft' ); ?></h1>
619
- <div id="availablethemes" class="bws-availablethemes">
620
- <div class="theme-browser content-filterable rendered">
621
- <div class="themes wp-clearfix">
622
  <?php foreach ( $themes as $key => $theme ) {
623
  $installed_theme = wp_get_theme( $theme->slug ); ?>
624
- <div class="theme" tabindex="0">
625
- <div class="theme-screenshot">
626
- <img src="<?php echo bws_menu_url( "icons/themes/" ) . $theme->slug . '.png'; ?>" alt="" />
627
- </div>
628
- <div class="theme-author"><?php printf( __( 'By %s', 'bestwebsoft' ), 'BestWebSoft' ); ?></div>
629
- <h3 class="theme-name"><?php echo $theme->name; ?></h3>
630
- <div class="theme-actions">
631
- <a class="button button-secondary preview install-theme-preview" href="<?php echo esc_url( $theme->href ); ?>" target="_blank"><?php _e( 'Learn More', 'bestwebsoft' ); ?></a>
632
- </div>
633
  <?php if ( $installed_theme->exists() ) {
634
  if ( $wp_version < '4.6' ) { ?>
635
- <div class="theme-installed"><?php _e( 'Already Installed', 'bestwebsoft' ); ?></div>
636
  <?php } else { ?>
637
- <div class="notice notice-success notice-alt inline"><p><?php _e( 'Installed', 'bestwebsoft' ); ?></p></div>
638
  <?php }
639
  } ?>
640
- </div>
641
  <?php } ?>
642
- <br class="clear" />
643
- </div>
644
- </div>
645
- <p><a class="bws_browse_link" href="https://bestwebsoft.com/products/wordpress/themes/" target="_blank"><?php _e( 'Browse More WordPress Themes', 'bestwebsoft' ); ?> <span class="dashicons dashicons-arrow-right-alt2"></span></a></p>
646
- </div>
647
  <?php } elseif ( 'bws_system_status' == $page || 'system-status' == $tab ) { ?>
648
- <h1><?php _e( 'System status', 'bestwebsoft' ); ?></h1>
649
- <div class="updated fade notice is-dismissible inline" <?php if ( ! ( isset( $_REQUEST['bwsmn_form_submit'] ) || isset( $_REQUEST['bwsmn_form_submit_custom_email'] ) ) || $error != "" ) echo 'style="display:none"'; ?>><p><strong><?php echo $message; ?></strong></p></div>
650
- <div class="error" <?php if ( "" == $error ) echo 'style="display:none"'; ?>><p><strong><?php echo $error; ?></strong></p></div>
651
- <form method="post" action="">
652
- <p>
653
- <input type="hidden" name="bwsmn_form_submit" value="submit" />
654
- <input type="submit" class="button-primary" value="<?php _e( 'Send to support', 'bestwebsoft' ) ?>" />
655
  <?php wp_nonce_field( plugin_basename(__FILE__), 'bwsmn_nonce_submit' ); ?>
656
- </p>
657
- </form>
658
- <form method="post" action="">
659
- <p>
660
- <input type="hidden" name="bwsmn_form_submit_custom_email" value="submit" />
661
- <input type="submit" class="button" value="<?php _e( 'Send to custom email &#187;', 'bestwebsoft' ) ?>" />
662
- <input type="text" maxlength="250" value="" name="bwsmn_form_email" />
663
  <?php wp_nonce_field( plugin_basename(__FILE__), 'bwsmn_nonce_submit_custom_email' ); ?>
664
- </p>
665
- </form>
666
  <?php foreach ( $system_info as $info ) { ?>
667
- <table class="widefat bws-system-info" cellspacing="0">
668
- <thead>
669
- <tr>
670
- <th colspan="2">
671
- <strong>
672
- <?php echo $info['name'];
673
- if ( isset( $info['count'] ) )
674
- echo ' (' . $info['count'] . ')'; ?>
675
- </strong>
676
- </th>
677
- </tr>
678
- </thead>
679
- <tbody>
680
- <?php foreach ( $info['data'] as $key => $value ) { ?>
681
- <tr>
682
- <td scope="row"><?php echo $key; ?></td>
683
- <td scope="row"><?php echo $value; ?></td>
684
- </tr>
685
- <?php } ?>
686
- </tbody>
687
- </table>
688
  <?php }
689
  } ?>
690
- </div>
691
- </div>
692
  <?php }
693
  }
694
 
@@ -729,9 +729,12 @@ if ( ! function_exists( 'bws_get_banner_array' ) ) {
729
  array( 'gglstmp_hide_banner_on_plugin_page', 'google-sitemap-plugin/google-sitemap-plugin.php', '2.8.4' ),
730
  array( 'cntctfrmpr_for_ctfrmtdb_hide_banner_on_plugin_page', 'contact-form-pro/contact_form_pro.php', '1.14' ),
731
  array( 'cntctfrm_hide_banner_on_plugin_page', 'contact-form-plugin/contact_form.php', '3.47' ),
732
- array( 'cptch_hide_banner_on_plugin_page', 'captcha/captcha.php', '3.8.4' ),
733
  array( 'gllr_hide_banner_on_plugin_page', 'gallery-plugin/gallery-plugin.php', '3.9.1' ),
734
- array( 'cntctfrm_for_ctfrmtdb_hide_banner_on_plugin_page', 'contact-form-plugin/contact_form.php', '3.62' )
 
 
 
735
  );
736
  }
737
  }
1
  <?php
2
  /*
3
  * Function for displaying BestWebSoft menu
4
+ * Version: 2.1.7
5
  */
6
 
7
  if ( ! function_exists ( 'bws_admin_enqueue_scripts' ) )
13
  $error = $message = '';
14
 
15
  /**
16
+ * @deprecated 1.9.8 (15.12.2016)
17
+ */
18
  $is_main_page = in_array( $_GET['page'], array( 'bws_panel', 'bws_themes', 'bws_system_status' ) );
19
  $page = esc_attr( $_GET['page'] );
20
  $tab = isset( $_GET['tab'] ) ? esc_attr( $_GET['tab'] ) : '';
66
  }
67
  /* check expired */
68
  if ( $is_pro_installed && isset( $bstwbsftwppdtplgns_options['time_out'][ $value_plugin['pro_version'] ] ) &&
69
+ strtotime( $bstwbsftwppdtplgns_options['time_out'][ $value_plugin['pro_version'] ] ) < strtotime( date( "m/d/Y" ) ) ) {
70
  unset( $bws_plugins[ $key_plugin ] );
71
  $value_plugin['expired'] = $bstwbsftwppdtplgns_options['time_out'][ $value_plugin['pro_version'] ];
72
  $bws_plugins_expired[ $key_plugin ] = $value_plugin;
157
  if ( is_multisite() )
158
  update_site_option( 'bstwbsftwppdtplgns_options', $bstwbsftwppdtplgns_options );
159
  else
160
+ update_option( 'bstwbsftwppdtplgns_options', $bstwbsftwppdtplgns_options );
161
  }
162
  } else {
163
  $error = __( "Please enter your license key.", 'bestwebsoft' );
167
 
168
  $all_plugins = get_plugins();
169
  $active_plugins = get_option( 'active_plugins' );
170
+ $mysql_info = $wpdb->get_results( "SHOW VARIABLES LIKE 'sql_mode'" );
171
+ if ( is_array( $mysql_info ) )
172
+ $sql_mode = $mysql_info[0]->Value;
173
+ if ( empty( $sql_mode ) )
174
+ $sql_mode = __( 'Not set', 'bestwebsoft' );
175
 
176
  $allow_url_fopen = ( ini_get( 'allow_url_fopen' ) ) ? __( 'On', 'bestwebsoft' ) : __( 'Off', 'bestwebsoft' );
177
  $upload_max_filesize = ( ini_get( 'upload_max_filesize' ) )? ini_get( 'upload_max_filesize' ) : __( 'N/A', 'bestwebsoft' );
290
  }
291
  }
292
  } ?>
293
+ <div class="bws-wrap">
294
+ <div class="bws-header">
295
+ <div class="bws-title">
296
+ <a href="<?php echo ( $is_main_page ) ? self_admin_url( 'admin.php?page=bws_panel' ) : esc_url( self_admin_url( 'admin.php?page=' . $page ) ); ?>">
297
+ <span class="bws-logo bwsicons bwsicons-bws-logo"></span>
298
+ BestWebSoft
299
+ <span>panel</span>
300
+ </a>
301
+ </div>
302
+ <div class="bws-menu-item-icon">&#8226;&#8226;&#8226;</div>
303
+ <div class="bws-nav-tab-wrapper">
304
  <?php if ( $is_main_page ) { ?>
305
+ <a class="bws-nav-tab<?php if ( 'bws_panel' == $page ) echo ' bws-nav-tab-active'; ?>" href="<?php echo self_admin_url( 'admin.php?page=bws_panel' ); ?>"><?php _e( 'Plugins', 'bestwebsoft' ); ?></a>
306
+ <a class="bws-nav-tab<?php if ( 'bws_themes' == $page ) echo ' bws-nav-tab-active'; ?>" href="<?php echo self_admin_url( 'admin.php?page=bws_themes' ); ?>"><?php _e( 'Themes', 'bestwebsoft' ); ?></a>
307
+ <a class="bws-nav-tab<?php if ( 'bws_system_status' == $page ) echo ' bws-nav-tab-active'; ?>" href="<?php echo self_admin_url( 'admin.php?page=bws_system_status' ); ?>"><?php _e( 'System status', 'bestwebsoft' ); ?></a>
308
  <?php } else { ?>
309
+ <a class="bws-nav-tab<?php if ( ! isset( $_GET['tab'] ) ) echo ' bws-nav-tab-active'; ?>" href="<?php echo esc_url( self_admin_url( 'admin.php?page=' . $page ) ); ?>"><?php _e( 'Plugins', 'bestwebsoft' ); ?></a>
310
+ <a class="bws-nav-tab<?php if ( 'themes' == $tab ) echo ' bws-nav-tab-active'; ?>" href="<?php echo esc_url( self_admin_url( 'admin.php?page=' . $page . '&tab=themes' ) ); ?>"><?php _e( 'Themes', 'bestwebsoft' ); ?></a>
311
+ <a class="bws-nav-tab<?php if ( 'system-status' == $tab ) echo ' bws-nav-tab-active'; ?>" href="<?php echo esc_url( self_admin_url( 'admin.php?page=' . $page . '&tab=system-status' ) ); ?>"><?php _e( 'System status', 'bestwebsoft' ); ?></a>
312
  <?php } ?>
313
+ </div>
314
+ <div class="bws-help-links-wrapper">
315
+ <a href="https://support.bestwebsoft.com" target="_blank"><?php _e( 'Support', 'bestwebsoft' ); ?></a>
316
+ <a href="https://bestwebsoft.com/client-area" target="_blank" title="<?php _e( 'Manage purchased licenses & subscriptions', 'bestwebsoft' ); ?>">Client Area</a>
317
+ </div>
318
+ <div class="clear"></div>
319
+ </div>
320
  <?php if ( ( 'bws_panel' == $page || ( ! isset( $_GET['tab'] ) && ! $is_main_page ) ) && ! isset( $_POST['bws_plugin_action_submit'] ) ) { ?>
321
+ <div class="bws-membership-wrap">
322
+ <div class="bws-membership-backround"></div>
323
+ <div class="bws-membership">
324
+ <div class="bws-membership-title"><?php printf( __( 'Get Access to %s+ Premium Plugins', 'bestwebsoft' ), '30' ); ?></div>
325
+ <form class="bws-membership-form" method="post" action="">
326
+ <span class="bws-membership-link"><a target="_blank" href="https://bestwebsoft.com/membership/"><?php _e( 'Subscribe to Pro Membership', 'bestwebsoft' ); ?></a> <?php _e( 'or', 'bestwebsoft' ); ?></span>
327
  <?php if ( isset( $bstwbsftwppdtplgns_options['go_pro'][ $bws_license_plugin ]['count'] ) &&
328
+ '5' < $bstwbsftwppdtplgns_options['go_pro'][ $bws_license_plugin ]['count'] &&
329
+ $bstwbsftwppdtplgns_options['go_pro'][ $bws_license_plugin ]['time'] > ( time() - ( 24 * 60 * 60 ) ) ) { ?>
330
+ <div class="bws_form_input_wrap">
331
+ <input disabled="disabled" type="text" name="bws_license_key" value="<?php echo esc_attr( $bws_license_key); ?>" />
332
+ <div class="bws_error"><?php _e( "Unfortunately, you have exceeded the number of available tries per day.", 'bestwebsoft' ); ?></div>
333
+ </div>
334
+ <input disabled="disabled" type="submit" class="bws-button" value="<?php _e( 'Check license key', 'bestwebsoft' ); ?>" />
335
  <?php } else { ?>
336
+ <div class="bws_form_input_wrap">
337
+ <input <?php if ( "" != $error ) echo 'class="bws_input_error"'; ?> type="text" placeholder="<?php _e( 'Enter your license key', 'bestwebsoft' ); ?>" maxlength="100" name="bws_license_key" value="<?php echo esc_attr( $bws_license_key ); ?>" />
338
+ <div class="bws_error" <?php if ( "" == $error ) echo 'style="display:none"'; ?>><?php echo $error; ?></div>
339
+ </div>
340
+ <input type="hidden" name="bws_license_plugin" value="<?php echo esc_attr( $bws_license_plugin ); ?>" />
341
+ <input type="hidden" name="bws_license_submit" value="submit" />
342
  <?php if ( empty( $plugins_array ) ) { ?>
343
+ <input type="submit" class="bws-button" value="<?php _e( 'Activate', 'bestwebsoft' ); ?>" />
344
  <?php } else { ?>
345
+ <input type="submit" class="bws-button" value="<?php _e( 'Check license key', 'bestwebsoft' ); ?>" />
346
  <?php } ?>
347
  <?php wp_nonce_field( plugin_basename(__FILE__), 'bws_license_nonce_name' ); ?>
348
  <?php } ?>
349
+ </form>
350
+ <div class="clear"></div>
351
+ </div>
352
+ </div>
353
  <?php } ?>
354
+ <div class="bws-wrap-content wrap">
355
  <?php if ( 'bws_panel' == $page || ( ! isset( $_GET['tab'] ) && ! $is_main_page ) ) { ?>
356
+ <div class="updated notice is-dismissible inline" <?php if ( '' == $message || '' != $error ) echo 'style="display:none"'; ?>><p><?php echo $message; ?></p></div>
357
+ <h1>
358
  <?php _e( 'Plugins', 'bestwebsoft' ); ?>
359
+ <a href="<?php echo self_admin_url( 'plugin-install.php?tab=upload' ); ?>" class="upload page-title-action add-new-h2"><?php _e( 'Upload Plugin', 'bestwebsoft' ); ?></a>
360
+ </h1>
361
  <?php if ( isset( $_GET['error'] ) ) {
362
  if ( isset( $_GET['charsout'] ) )
363
  $errmsg = sprintf( __( 'The plugin generated %d characters of <strong>unexpected output</strong> during activation. If you notice &#8220;headers already sent&#8221; messages, problems with syndication feeds or other issues, try deactivating or removing this plugin.' ), $_GET['charsout'] );
364
  else
365
  $errmsg = __( 'Plugin could not be activated because it triggered a <strong>fatal error</strong>.' ); ?>
366
+ <div id="message" class="error is-dismissible"><p><?php echo $errmsg; ?></p></div>
367
  <?php } elseif ( isset( $_GET['activate'] ) ) { ?>
368
+ <div id="message" class="updated notice is-dismissible"><p><?php _e( 'Plugin <strong>activated</strong>.' ) ?></p></div>
369
  <?php }
370
 
371
  if ( isset( $_POST['bws_plugin_action_submit'] ) && isset( $_POST['bws_install_plugin'] ) && check_admin_referer( plugin_basename(__FILE__), 'bws_license_install_nonce_name' ) ) {
442
  echo '<p class="error">' . $error . '</p>';
443
  echo '<p><a href="' . esc_url( self_admin_url( $current_page ) ) . '" target="_parent">' . __( 'Return to BestWebSoft Panel', 'bestwebsoft' ) . '</a></p>';
444
  }
445
+ } else {
446
  $category_href = $current_page;
447
  if ( 'all' != $plugin_category )
448
  $category_href .= '&category=' . $plugin_category; ?>
449
+ <ul class="subsubsub">
450
+ <li>
451
+ <a <?php if ( ! isset( $_GET['sub'] ) ) echo 'class="current" '; ?>href="<?php echo esc_url( self_admin_url( $category_href ) ); ?>"><?php _e( 'All', 'bestwebsoft' ); ?></a>
452
+ </li> |
453
+ <li>
454
+ <a <?php if ( isset( $_GET['sub'] ) && 'installed' == $_GET['sub'] ) echo 'class="current" '; ?>href="<?php echo esc_url( self_admin_url( $category_href . '&sub=installed' ) ); ?>"><?php _e( 'Installed', 'bestwebsoft' ); ?></a>
455
+ </li> |
456
+ <li>
457
+ <a <?php if ( isset( $_GET['sub'] ) && 'not_installed' == $_GET['sub'] ) echo 'class="current" '; ?>href="<?php echo esc_url( self_admin_url( $category_href . '&sub=not_installed' ) ); ?>"><?php _e( 'Not Installed', 'bestwebsoft' ); ?></a>
458
+ </li>
459
+ </ul>
460
+ <div class="clear"></div>
461
+ <div class="bws-filter-top">
462
+ <h2>
463
+ <span class="bws-toggle-indicator"></span>
464
  <?php _e( 'Filter results', 'bestwebsoft' ); ?>
465
+ </h2>
466
+ <div class="bws-filter-top-inside">
467
+ <div class="bws-filter-title"><?php _e( 'Category', 'bestwebsoft' ); ?></div>
468
+ <ul class="bws-category">
469
+ <li>
470
  <?php $sub_in_url = ( isset( $_GET['sub'] ) && in_array( $_GET['sub'], array( 'installed', 'not_installed' ) ) ) ? '&sub=' . $_GET['sub'] : ''; ?>
471
+ <a <?php if ( 'all' == $plugin_category ) echo ' class="bws-active"'; ?> href="<?php echo esc_url(self_admin_url( $current_page . $sub_in_url ) ); ?>"><?php _e( 'All', 'bestwebsoft' ); ?>
472
+ <span>(<?php echo count( $bws_plugins ); ?>)</span>
473
+ </a>
474
+ </li>
475
  <?php foreach ( $bws_plugins_category as $category_key => $category_value ) { ?>
476
+ <li>
477
+ <a <?php if ( $category_key == $plugin_category ) echo ' class="bws-active"'; ?> href="<?php echo esc_url( self_admin_url( $current_page . $sub_in_url . '&category=' . $category_key ) ); ?>"><?php echo $category_value['name']; ?>
478
+ <span>(<?php echo $category_value['count']; ?>)</span>
479
+ </a>
480
+ </li>
481
  <?php } ?>
482
+ </ul>
483
+ </div>
484
+ </div>
485
+ <div class="bws-products">
486
  <?php $nothing_found = true;
487
  foreach ( $bws_plugins as $key_plugin => $value_plugin ) {
488
 
503
  }
504
 
505
  if ( ( isset( $_GET['sub'] ) && 'installed' == $_GET['sub'] && ! $is_pro_installed && ! $is_installed ) ||
506
+ ( isset( $_GET['sub'] ) && 'not_installed' == $_GET['sub'] && ( $is_pro_installed || $is_installed ) ) )
507
  continue;
508
 
509
  $link_attr = isset( $value_plugin['install_url'] ) ? 'href="' . esc_url( $value_plugin['install_url'] ) . '" target="_blank"' : 'href="' . esc_url( self_admin_url( 'plugin-install.php?tab=plugin-information&plugin=' . $key_plugin_explode[0] . '&from=import&TB_iframe=true&width=600&height=550' ) ) . '" class="thickbox open-plugin-details-modal"';
510
 
511
  $nothing_found = false; ?>
512
+ <div class="bws_product_box<?php if ( $is_active || $is_pro_active ) echo ' bws_product_active'; ?>">
513
+ <div class="bws_product_image">
514
+ <a <?php echo $link_attr; ?>><img src="<?php echo $icon; ?>"/></a>
515
+ </div>
516
+ <div class="bws_product_content">
517
+ <div class="bws_product_title"><a <?php echo $link_attr; ?>><?php echo $value_plugin['name']; ?></a></div>
518
+ <div class="bws-version">
519
  <?php
520
  if ( $is_pro_installed ) {
521
  echo '<span';
537
  $r = $update_availible_all->response[ $value_plugin['update_availible'] ];
538
  echo ' - <a class="bws-update-now" href="' . esc_url( wp_nonce_url( self_admin_url( 'update.php?action=upgrade-plugin&plugin=' . $value_plugin['update_availible'] ), 'upgrade-plugin_' . $value_plugin['update_availible'] ) ) . '" class="update-link" aria-label="' . sprintf( __( 'Update to v %s', 'bestwebsoft' ), $r->new_version ) . '">' . sprintf( __( 'Update to v %s', 'bestwebsoft' ), $r->new_version ) . '</a>';
539
  } ?>
540
+ </div>
541
+ <div class="bws_product_description">
542
  <?php echo ( strlen( $value_plugin['description'] ) > 100 ) ? mb_substr( $value_plugin['description'], 0, 100 ) . '...' : $value_plugin['description']; ?>
543
+ </div>
544
+ <div class="bws_product_links">
545
  <?php if ( $is_active || $is_pro_active ) {
546
+ if ( $is_pro_isset ) {
547
  if ( ! $is_pro_installed ) {
548
  if ( ! empty( $plugins_array ) && array_key_exists( $value_plugin['pro_version'], $plugins_array ) ) { ?>
549
+ <form method="post" action="">
550
+ <input type="submit" class="button button-secondary" value="<?php _e( 'Install Now', 'bestwebsoft' ); ?>" />
551
+ <input type="hidden" name="bws_plugin_action_submit" value="submit" />
552
+ <input type="hidden" name="bws_install_plugin" value="<?php echo $value_plugin['pro_version']; ?>" />
553
  <?php wp_nonce_field( plugin_basename(__FILE__), 'bws_license_install_nonce_name' ); ?>
554
+ </form>
555
  <?php } else { ?>
556
+ <a class="button button-secondary bws_upgrade_button" href="<?php echo esc_url( $bws_plugins[ $key_plugin ]['purchase'] ); ?>" target="_blank"><?php _e( 'Upgrade to Pro', 'bestwebsoft' ); ?></a>
557
  <?php }
558
  }
559
  } else { ?>
560
+ <a class="bws_donate" href="https://bestwebsoft.com/donate/" target="_blank"><?php _e( 'Donate', 'bestwebsoft' ); ?></a> <span>|</span>
561
  <?php }
562
 
563
  if ( $is_pro_active ) { ?>
564
+ <a class="bws_settings" href="<?php echo esc_url( self_admin_url( $bws_plugins[ $key_plugin ]["pro_settings"] ) ); ?>"><?php _e( 'Settings', 'bestwebsoft' ); ?></a>
565
  <?php } else { ?>
566
+ <a class="bws_settings" href="<?php echo esc_url( self_admin_url( $bws_plugins[ $key_plugin ]["settings"] ) ); ?>"><?php _e( 'Settings', 'bestwebsoft' ); ?></a>
567
  <?php }
568
  } else {
569
  if ( $is_pro_installed ) { ?>
570
+ <a class="button button-secondary" href="<?php echo esc_url( wp_nonce_url( self_admin_url( $current_page . '&bws_activate_plugin=' . $value_plugin['pro_version'] ), 'bws_activate_plugin' . $value_plugin['pro_version'] ) ); ?>" title="<?php _e( 'Activate this plugin', 'bestwebsoft' ); ?>"><?php _e( 'Activate', 'bestwebsoft' ); ?></a>
571
  <?php } elseif ( ! empty( $plugins_array ) && isset( $value_plugin['pro_version'] ) && array_key_exists( $value_plugin['pro_version'], $plugins_array ) ) { ?>
572
+ <form method="post" action="">
573
+ <input type="submit" class="button button-secondary" value="<?php _e( 'Install Now', 'bestwebsoft' ); ?>" />
574
+ <input type="hidden" name="bws_plugin_action_submit" value="submit" />
575
+ <input type="hidden" name="bws_install_plugin" value="<?php echo $value_plugin['pro_version']; ?>" />
576
  <?php wp_nonce_field( plugin_basename(__FILE__), 'bws_license_install_nonce_name' ); ?>
577
+ </form>
578
  <?php } elseif ( $is_installed ) { ?>
579
+ <a class="button button-secondary" href="<?php echo esc_url( wp_nonce_url( self_admin_url( $current_page . '&bws_activate_plugin=' . $key_plugin ), 'bws_activate_plugin' . $key_plugin ) ); ?>" title="<?php _e( 'Activate this plugin', 'bestwebsoft' ); ?>"><?php _e( 'Activate', 'bestwebsoft' ); ?></a>
580
  <?php } else {
581
  $install_url = isset( $value_plugin['install_url'] ) ? $value_plugin['install_url'] : self_admin_url( 'plugin-install.php?tab=search&type=term&s=' . str_replace( ' ', '+', str_replace( '-', '', $value_plugin['name'] ) ) . '+BestWebSoft&plugin-search-input=Search+Plugins' ); ?>
582
+ <a class="button button-secondary" href="<?php echo esc_url( $install_url ); ?>" title="<?php _e( 'Install this plugin', 'bestwebsoft' ); ?>" target="_blank"><?php _e( 'Install Now', 'bestwebsoft' ); ?></a>
583
  <?php }
584
  } ?>
585
+ </div>
586
+ </div>
587
+ <div class="clear"></div>
588
+ </div>
589
  <?php }
590
  if ( $nothing_found ) { ?>
591
+ <p class="description"><?php _e( 'Nothing found. Try another criteria.', 'bestwebsoft' ); ?></p>
592
  <?php } ?>
593
+ </div>
594
+ <div id="bws-filter-wrapper">
595
+ <div class="bws-filter">
596
+ <div class="bws-filter-title"><?php _e( 'Category', 'bestwebsoft' ); ?></div>
597
+ <ul class="bws-category">
598
+ <li>
599
  <?php $sub_in_url = ( isset( $_GET['sub'] ) && in_array( $_GET['sub'], array( 'installed', 'not_installed' ) ) ) ? '&sub=' . $_GET['sub'] : ''; ?>
600
+ <a <?php if ( 'all' == $plugin_category ) echo ' class="bws-active"'; ?> href="<?php echo esc_url( self_admin_url( $current_page . $sub_in_url ) ); ?>"><?php _e( 'All', 'bestwebsoft' ); ?>
601
+ <span>(<?php echo count( $bws_plugins ); ?>)</span>
602
+ </a>
603
+ </li>
604
  <?php foreach ( $bws_plugins_category as $category_key => $category_value ) { ?>
605
+ <li>
606
+ <a <?php if ( $category_key == $plugin_category ) echo ' class="bws-active"'; ?> href="<?php echo esc_url( self_admin_url( $current_page . $sub_in_url . '&category=' . $category_key ) ); ?>"><?php echo $category_value['name']; ?>
607
+ <span>(<?php echo $category_value['count']; ?>)</span>
608
+ </a>
609
+ </li>
610
  <?php } ?>
611
+ </ul>
612
+ </div>
613
+ </div><!-- #bws-filter-wrapper -->
614
+ <div class="clear"></div>
615
  <?php }
616
  } elseif ( 'bws_themes' == $page || 'themes' == $tab ) {
617
  require( dirname( __FILE__ ) . '/product_list.php' ); ?>
618
+ <h1><?php _e( 'Themes', 'bestwebsoft' ); ?></h1>
619
+ <div id="availablethemes" class="bws-availablethemes">
620
+ <div class="theme-browser content-filterable rendered">
621
+ <div class="themes wp-clearfix">
622
  <?php foreach ( $themes as $key => $theme ) {
623
  $installed_theme = wp_get_theme( $theme->slug ); ?>
624
+ <div class="theme" tabindex="0">
625
+ <div class="theme-screenshot">
626
+ <img src="<?php echo bws_menu_url( "icons/themes/" ) . $theme->slug . '.png'; ?>" alt="" />
627
+ </div>
628
+ <div class="theme-author"><?php printf( __( 'By %s', 'bestwebsoft' ), 'BestWebSoft' ); ?></div>
629
+ <h3 class="theme-name"><?php echo $theme->name; ?></h3>
630
+ <div class="theme-actions">
631
+ <a class="button button-secondary preview install-theme-preview" href="<?php echo esc_url( $theme->href ); ?>" target="_blank"><?php _e( 'Learn More', 'bestwebsoft' ); ?></a>
632
+ </div>
633
  <?php if ( $installed_theme->exists() ) {
634
  if ( $wp_version < '4.6' ) { ?>
635
+ <div class="theme-installed"><?php _e( 'Already Installed', 'bestwebsoft' ); ?></div>
636
  <?php } else { ?>
637
+ <div class="notice notice-success notice-alt inline"><p><?php _e( 'Installed', 'bestwebsoft' ); ?></p></div>
638
  <?php }
639
  } ?>
640
+ </div>
641
  <?php } ?>
642
+ <br class="clear" />
643
+ </div>
644
+ </div>
645
+ <p><a class="bws_browse_link" href="https://bestwebsoft.com/products/wordpress/themes/" target="_blank"><?php _e( 'Browse More WordPress Themes', 'bestwebsoft' ); ?> <span class="dashicons dashicons-arrow-right-alt2"></span></a></p>
646
+ </div>
647
  <?php } elseif ( 'bws_system_status' == $page || 'system-status' == $tab ) { ?>
648
+ <h1><?php _e( 'System status', 'bestwebsoft' ); ?></h1>
649
+ <div class="updated fade notice is-dismissible inline" <?php if ( ! ( isset( $_REQUEST['bwsmn_form_submit'] ) || isset( $_REQUEST['bwsmn_form_submit_custom_email'] ) ) || $error != "" ) echo 'style="display:none"'; ?>><p><strong><?php echo $message; ?></strong></p></div>
650
+ <div class="error" <?php if ( "" == $error ) echo 'style="display:none"'; ?>><p><strong><?php echo $error; ?></strong></p></div>
651
+ <form method="post" action="">
652
+ <p>
653
+ <input type="hidden" name="bwsmn_form_submit" value="submit" />
654
+ <input type="submit" class="button-primary" value="<?php _e( 'Send to support', 'bestwebsoft' ) ?>" />
655
  <?php wp_nonce_field( plugin_basename(__FILE__), 'bwsmn_nonce_submit' ); ?>
656
+ </p>
657
+ </form>
658
+ <form method="post" action="">
659
+ <p>
660
+ <input type="hidden" name="bwsmn_form_submit_custom_email" value="submit" />
661
+ <input type="submit" class="button" value="<?php _e( 'Send to custom email &#187;', 'bestwebsoft' ) ?>" />
662
+ <input type="text" maxlength="250" value="" name="bwsmn_form_email" />
663
  <?php wp_nonce_field( plugin_basename(__FILE__), 'bwsmn_nonce_submit_custom_email' ); ?>
664
+ </p>
665
+ </form>
666
  <?php foreach ( $system_info as $info ) { ?>
667
+ <table class="widefat bws-system-info" cellspacing="0">
668
+ <thead>
669
+ <tr>
670
+ <th colspan="2">
671
+ <strong>
672
+ <?php echo $info['name'];
673
+ if ( isset( $info['count'] ) )
674
+ echo ' (' . $info['count'] . ')'; ?>
675
+ </strong>
676
+ </th>
677
+ </tr>
678
+ </thead>
679
+ <tbody>
680
+ <?php foreach ( $info['data'] as $key => $value ) { ?>
681
+ <tr>
682
+ <td scope="row"><?php echo $key; ?></td>
683
+ <td scope="row"><?php echo $value; ?></td>
684
+ </tr>
685
+ <?php } ?>
686
+ </tbody>
687
+ </table>
688
  <?php }
689
  } ?>
690
+ </div>
691
+ </div>
692
  <?php }
693
  }
694
 
729
  array( 'gglstmp_hide_banner_on_plugin_page', 'google-sitemap-plugin/google-sitemap-plugin.php', '2.8.4' ),
730
  array( 'cntctfrmpr_for_ctfrmtdb_hide_banner_on_plugin_page', 'contact-form-pro/contact_form_pro.php', '1.14' ),
731
  array( 'cntctfrm_hide_banner_on_plugin_page', 'contact-form-plugin/contact_form.php', '3.47' ),
732
+ array( 'cptch_hide_banner_on_plugin_page', 'captcha-bws/captcha-bws.php', '3.8.4' ),
733
  array( 'gllr_hide_banner_on_plugin_page', 'gallery-plugin/gallery-plugin.php', '3.9.1' ),
734
+ array( 'cntctfrm_for_ctfrmtdb_hide_banner_on_plugin_page', 'contact-form-plugin/contact_form.php', '3.62' ),
735
+ array( 'bwscrrntl_hide_banner_on_plugin_page', 'bws-car-rental/bws-car-rental.php', '0.0.1' ),
736
+ array( 'rtng_hide_banner_on_plugin_page', 'rating-bws/rating-bws.php', '1.0.0' ),
737
+ array( 'prflxtrflds_hide_banner_on_plugin_page', 'profile-extra-fields/profile-extra-fields.php', '1.1.3' )
738
  );
739
  }
740
  }
bws_menu/class-bws-settings.php CHANGED
@@ -14,10 +14,10 @@ if ( ! class_exists( 'Bws_Settings_Tabs' ) ) {
14
  public $plugin_basename;
15
  public $prefix;
16
  public $wp_slug;
17
-
18
  public $options;
19
  public $default_options;
20
- public $is_network_options;
21
  public $plugins_info = array();
22
  public $hide_pro_tabs = false;
23
  public $demo_data;
@@ -28,8 +28,9 @@ if ( ! class_exists( 'Bws_Settings_Tabs' ) ) {
28
  public $link_key;
29
  public $link_pn;
30
  public $is_trial = false;
 
31
  public $trial_days;
32
- public $bws_hide_pro_option_exist = true;
33
 
34
  public $forbid_view = false;
35
  public $change_permission_attr = '';
@@ -48,35 +49,36 @@ if ( ! class_exists( 'Bws_Settings_Tabs' ) ) {
48
  * The child class should call this constructor from its own constructor to override
49
  * the default $args.
50
  * @access public
51
- *
52
  * @param array|string $args
53
  */
54
  public function __construct( $args = array() ) {
55
  $args = wp_parse_args( $args, array(
56
  'plugin_basename' => '',
57
  'prefix' => '',
58
- 'plugins_info' => array(),
59
  'default_options' => array(),
60
  'options' => array(),
61
  'is_network_options' => false,
62
  'tabs' => array(),
63
- 'doc_link' => '',
64
- 'doc_video_link' => '',
65
- 'wp_slug' => '',
66
- 'demo_data' => false,
67
  /* if this is free version and pro exist */
68
- 'pro_page' => '',
69
- 'bws_license_plugin'=> '',
70
- 'link_key' => '',
71
- 'link_pn' => '',
72
- 'trial_days' => false
 
73
  ) );
74
 
75
  $args['plugins_info']['Name'] = str_replace( ' by BestWebSoft', '', $args['plugins_info']['Name'] );
76
-
77
  $this->plugin_basename = $args['plugin_basename'];
78
  $this->prefix = $args['prefix'];
79
- $this->plugins_info = $args['plugins_info'];
80
  $this->options = $args['options'];
81
  $this->default_options = $args['default_options'];
82
  $this->wp_slug = $args['wp_slug'];
@@ -93,13 +95,28 @@ if ( ! class_exists( 'Bws_Settings_Tabs' ) ) {
93
  $this->link_key = $args['link_key'];
94
  $this->link_pn = $args['link_pn'];
95
  $this->trial_days = $args['trial_days'];
 
96
 
97
  $this->hide_pro_tabs = bws_hide_premium_options_check( $this->options );
98
  $this->version = '1.0.0';
99
  $this->is_multisite = is_multisite();
100
 
101
- if ( empty( $this->pro_page ) && array_key_exists( 'license', $this->tabs ) )
102
  $this->is_pro = true;
 
 
 
 
 
 
 
 
 
 
 
 
 
 
103
  }
104
 
105
  /**
@@ -124,20 +141,20 @@ if ( ! class_exists( 'Bws_Settings_Tabs' ) ) {
124
  $this->demo_data->bws_demo_confirm();
125
  } else {
126
  bws_show_settings_notice(); ?>
127
- <form class="bws_form" method="post" action="" enctype="multipart/form-data">
128
- <div id="poststuff">
129
- <div id="post-body" class="metabox-holder columns-2">
130
- <div id="post-body-content" style="position: relative;">
131
- <?php $this->display_tabs(); ?>
132
- </div><!-- #post-body-content -->
133
- <div id="postbox-container-1" class="postbox-container">
134
- <div class="meta-box-sortables ui-sortable">
135
- <div id="submitdiv" class="postbox">
136
- <h3 class="hndle"><?php _e( 'Information', 'bestwebsoft' ); ?></h3>
137
- <div class="inside">
138
- <div class="submitbox" id="submitpost">
139
- <div id="minor-publishing">
140
- <div id="misc-publishing-actions">
141
  <?php if ( $this->is_pro ) {
142
  if ( ! isset( $bstwbsftwppdtplgns_options['time_out'][ $this->plugin_basename ] ) || isset( $bstwbsftwppdtplgns_options['wrong_license_key'][ $this->plugin_basename ] ) ) {
143
  $license_type = 'Pro';
@@ -145,7 +162,7 @@ if ( ! class_exists( 'Bws_Settings_Tabs' ) ) {
145
  } else {
146
  $finish = strtotime( $bstwbsftwppdtplgns_options['time_out'][ $this->plugin_basename ] );
147
  $today = strtotime( date( "m/d/Y" ) );
148
- if ( isset( $bstwbsftwppdtplgns_options['trial'][ $this->plugin_basename ] ) ) {
149
  $license_type = 'Trial Pro';
150
 
151
  if ( $finish < $today ) {
@@ -154,7 +171,7 @@ if ( ! class_exists( 'Bws_Settings_Tabs' ) ) {
154
  $daysleft = floor( ( $finish - $today ) / ( 60*60*24 ) );
155
  $license_status = sprintf( __( '%s day(-s) left', 'bestwebsoft' ), $daysleft );
156
  }
157
- $license_status .= '. <a target="_blank" href="' . esc_url( $this->plugins_info['PluginURI'] ) . '">' . __( 'Upgrade to Pro', 'bestwebsoft' ) . '</a>';
158
  } else {
159
  $license_type = isset( $bstwbsftwppdtplgns_options['nonprofit'][ $this->plugin_basename ] ) ? 'Nonprofit Pro' : 'Pro';
160
  if ( $finish < $today ) {
@@ -164,50 +181,50 @@ if ( ! class_exists( 'Bws_Settings_Tabs' ) ) {
164
  }
165
  }
166
  } ?>
167
- <div class="misc-pub-section">
168
- <strong><?php _e( 'License', 'bestwebsoft' ); ?>:</strong> <?php echo $license_type; ?>
169
- </div>
170
- <div class="misc-pub-section">
171
- <strong><?php _e( 'Status', 'bestwebsoft' ); ?>:</strong> <?php echo $license_status; ?>
172
- </div><!-- .misc-pub-section -->
173
  <?php } ?>
174
- <div class="misc-pub-section">
175
- <strong><?php _e( 'Version', 'bestwebsoft' ); ?>:</strong> <?php echo $this->plugins_info['Version']; ?>
176
- </div><!-- .misc-pub-section -->
177
- </div>
178
- <div class="clear"></div>
179
- </div>
180
- <div id="major-publishing-actions">
181
- <div id="publishing-action">
182
- <input type="hidden" name="<?php echo $this->prefix; ?>_form_submit" value="submit" />
183
- <input id="bws-submit-button" type="submit" class="button button-primary button-large" value="<?php _e( 'Save Changes', 'bestwebsoft' ); ?>" />
184
- <?php wp_nonce_field( $this->plugin_basename, 'bws_nonce_name' ); ?>
185
- </div>
186
- <div class="clear"></div>
187
- </div>
188
- </div>
189
- </div>
190
- </div>
191
  <?php /**
192
  * action - Display custom metabox
193
  */
194
  do_action( __CLASS__ . '_display_metabox' ); ?>
195
- </div>
196
- </div>
197
- <div id="postbox-container-2" class="postbox-container">
198
  <?php /**
199
  * action - Display additional content for #postbox-container-2
200
  */
201
  do_action( __CLASS__ . '_display_second_postbox' ); ?>
202
- <div class="submit">
203
- <input type="submit" class="button button-primary button-large" value="<?php _e( 'Save Changes', 'bestwebsoft' ); ?>" />
204
- </div>
205
  <?php if ( ! empty( $this->wp_slug ) )
206
  bws_plugin_reviews_block( $this->plugins_info['Name'], $this->wp_slug ); ?>
207
- </div>
208
- </div>
209
- </form>
210
- </div>
211
  <?php }
212
  }
213
 
@@ -217,16 +234,16 @@ if ( ! class_exists( 'Bws_Settings_Tabs' ) ) {
217
  * @param void
218
  * @return void
219
  */
220
- public function display_tabs() {
221
  global $wp_version; ?>
222
- <div id="bws_settings_tabs_wrapper"<?php if ( version_compare( $wp_version, '4.0', '<' ) ) echo ' class="edit-form-section"'; ?>>
223
- <ul id="bws_settings_tabs">
224
  <?php $this->display_tabs_list(); ?>
225
- </ul>
226
  <?php $this->display_tabs_content(); ?>
227
- <div class="clear"></div>
228
- <input type="hidden" name="bws_active_tab" value="<?php if ( isset( $_REQUEST['bws_active_tab'] ) ) echo esc_attr( $_REQUEST['bws_active_tab'] ); ?>" />
229
- </div>
230
  <?php }
231
 
232
  /**
@@ -243,11 +260,11 @@ if ( ! class_exists( 'Bws_Settings_Tabs' ) ) {
243
  $tab_class .= ' bws_pro_tab';
244
  if ( ! empty( $data['class'] ) )
245
  $tab_class .= ' ' . $data['class']; ?>
246
- <li class="<?php echo $tab_class; ?>" data-slug="<?php echo $tab_slug; ?>">
247
- <a href="#<?php echo $this->prefix; ?>_<?php echo $tab_slug; ?>_tab">
248
- <span><?php echo esc_html( $data['label'] ); ?></span>
249
- </a>
250
- </li>
251
  <?php }
252
  }
253
 
@@ -258,16 +275,16 @@ if ( ! class_exists( 'Bws_Settings_Tabs' ) ) {
258
  * @return void
259
  */
260
  public function display_tabs_content() {
261
- foreach ( $this->tabs as $tab_slug => $data ) {
262
  if ( ! empty( $data['is_pro'] ) && $this->hide_pro_tabs )
263
  continue; ?>
264
- <div class="bws_tab ui-tabs-panel ui-widget-content ui-corner-bottom" id="<?php echo esc_attr( $this->prefix . '_' . $tab_slug . '_tab' ); ?>" aria-labelledby="ui-id-2" role="tabpanel" aria-hidden="false" style="display: block;">
265
  <?php $tab_slug = str_replace( '-', '_', $tab_slug );
266
  if ( method_exists( $this, 'tab_' . $tab_slug ) ) {
267
  call_user_func( array( $this, 'tab_' . $tab_slug ) );
268
  do_action_ref_array( __CLASS__ . '_after_tab_' . $tab_slug, array( &$this ) );
269
  } ?>
270
- </div>
271
  <?php }
272
  }
273
 
@@ -283,16 +300,18 @@ if ( ! class_exists( 'Bws_Settings_Tabs' ) ) {
283
  if ( isset( $_POST['bws_restore_confirm'] ) && check_admin_referer( $this->plugin_basename, 'bws_settings_nonce_name' ) ) {
284
  $this->restore_options();
285
  $message = __( 'All plugin settings were restored.', 'bestwebsoft' );
286
- /* Go Pro - check license key */
287
  } elseif ( isset( $_POST['bws_license_submit'] ) && check_admin_referer( $this->plugin_basename, 'bws_nonce_name' ) ) {
288
  $result = $this->save_options_license_key();
 
 
289
  if ( ! empty( $result['error'] ) )
290
  $error = $result['error'];
291
  if ( ! empty( $result['message'] ) )
292
  $message = $result['message'];
293
  if ( ! empty( $result['notice'] ) )
294
  $notice = $result['notice'];
295
- /* check demo data */
296
  } else {
297
  $demo_result = ! empty( $this->demo_data ) ? $this->demo_data->bws_handle_demo_data() : false;
298
  if ( false !== $demo_result ) {
@@ -302,9 +321,9 @@ if ( ! class_exists( 'Bws_Settings_Tabs' ) ) {
302
  if ( ! empty( $demo_result['done'] ) && ! empty( $demo_result['options'] ) )
303
  $this->options = $demo_result['options'];
304
  }
305
- /* Save options */
306
  } elseif ( ! isset( $_REQUEST['bws_restore_default'] ) && ! isset( $_POST['bws_handle_demo'] ) && isset( $_REQUEST[ $this->prefix . '_form_submit'] ) && check_admin_referer( $this->plugin_basename, 'bws_nonce_name' ) ) {
307
- /* save tabs */
308
  $result = $this->save_options();
309
  if ( ! empty( $result['error'] ) )
310
  $error = $result['error'];
@@ -341,9 +360,9 @@ if ( ! class_exists( 'Bws_Settings_Tabs' ) ) {
341
  * action - Display custom error\message\notice
342
  */
343
  do_action( __CLASS__ . '_display_custom_messages', $save_results ); ?>
344
- <div class="updated fade inline" <?php if ( empty( $save_results['message'] ) ) echo "style=\"display:none\""; ?>><p><strong><?php echo $save_results['message']; ?></strong></p></div>
345
- <div class="updated bws-notice inline" <?php if ( empty( $save_results['notice'] ) ) echo "style=\"display:none\""; ?>><p><strong><?php echo $save_results['notice']; ?></strong></p></div>
346
- <div class="error inline" <?php if ( empty( $save_results['error'] ) ) echo "style=\"display:none\""; ?>><p><strong><?php echo $save_results['error']; ?></strong></p></div>
347
  <?php }
348
 
349
  /**
@@ -390,19 +409,19 @@ if ( ! class_exists( 'Bws_Settings_Tabs' ) ) {
390
  fclose( $f );
391
  }
392
  }
393
-
394
  if ( $this->is_multisite )
395
  $this->custom_code_args['blog_id'] = get_current_blog_id();
396
 
397
  foreach ( array( 'css', 'php', 'js' ) as $extension ) {
398
  $file = 'bws-custom-code.' . $extension;
399
  $real_file = $folder . '/' . $file;
400
-
401
  if ( file_exists( $real_file ) ) {
402
  update_recently_edited( $real_file );
403
  $this->custom_code_args["content_{$extension}"] = file_get_contents( $real_file );
404
  if ( ( $this->is_multisite && isset( $bstwbsftwppdtplgns_options['custom_code'][ $this->custom_code_args['blog_id'] ][ $file ] ) ) ||
405
- ( ! $this->is_multisite && isset( $bstwbsftwppdtplgns_options['custom_code'][ $file ] ) ) ) {
406
  $this->custom_code_args["is_{$extension}_active"] = true;
407
  }
408
  if ( is_writeable( $real_file ) )
@@ -420,55 +439,55 @@ if ( ! class_exists( 'Bws_Settings_Tabs' ) ) {
420
  * @access private
421
  */
422
  private function tab_custom_code() { ?>
423
- <h3 class="bws_tab_label"><?php _e( 'Custom Code', 'bestwebsoft' ); ?></h3>
424
  <?php $this->help_phrase(); ?>
425
- <hr>
426
  <?php if ( ! current_user_can( 'edit_plugins' ) ) {
427
  echo '<p>' . __( 'You do not have sufficient permissions to edit plugins for this site.', 'bestwebsoft' ) . '</p>';
428
  return;
429
  }
430
 
431
- $list = array(
432
  'css' => array( 'description' => __( 'These styles will be added to the header on all pages of your site.', 'bestwebsoft' ),
433
- 'learn_more_link' => 'https://developer.mozilla.org/en-US/docs/Web/Guide/CSS/Getting_started'
434
- ),
435
  'php' => array( 'description' => sprintf( __( 'This PHP code will be hooked to the %s action and will be printed on front end only.', 'bestwebsoft' ), '<a href="https://codex.wordpress.org/Plugin_API/Action_Reference/init" target="_blank"><code>init</code></a>' ),
436
- 'learn_more_link' => 'http://php.net/'
437
- ),
438
  'js' => array( 'description' => __( 'These code will be added to the header on all pages of your site.', 'bestwebsoft' ),
439
- 'learn_more_link' => 'https://developer.mozilla.org/en-US/docs/Web/JavaScript'
440
- ),
441
  );
442
 
443
  if ( ! $this->custom_code_args['css_writeable'] ||
444
- ! $this->custom_code_args['php_writeable'] ||
445
- ! $this->custom_code_args['js_writeable'] ) { ?>
446
- <p><em><?php printf( __( 'You need to make this files writable before you can save your changes. See %s the Codex %s for more information.', 'bestwebsoft' ),
447
- '<a href="https://codex.wordpress.org/Changing_File_Permissions" target="_blank">',
448
- '</a>' ); ?></em></p>
449
  <?php }
450
 
451
  foreach ( $list as $extension => $extension_data ) {
452
  $name = 'js' == $extension ? 'JavaScript' : strtoupper( $extension ); ?>
453
- <p><big>
454
- <strong><?php echo $name; ?></strong>
455
- <?php if ( ! $this->custom_code_args["{$extension}_writeable"] )
456
- echo '(' . __( 'Browsing', 'bestwebsoft' ) . ')'; ?>
457
- </big></p>
458
- <p class="bws_info">
459
- <label>
460
- <input type="checkbox" name="bws_custom_<?php echo $extension; ?>_active" value="1" <?php if ( $this->custom_code_args["is_{$extension}_active"] ) echo "checked"; ?> />
461
  <?php printf( __( 'Activate custom %s code.', 'bestwebsoft' ), $name ); ?>
462
- </label>
463
- </p>
464
- <textarea cols="70" rows="25" name="bws_newcontent_<?php echo $extension; ?>" id="bws_newcontent_<?php echo $extension; ?>"><?php if ( isset( $this->custom_code_args["content_{$extension}"] ) ) echo esc_textarea( $this->custom_code_args["content_{$extension}"] ); ?></textarea>
465
- <p class="bws_info">
466
  <?php echo $extension_data['description']; ?>
467
- <br>
468
- <a href="<?php echo esc_url( $extension_data['learn_more_link'] ); ?>" target="_blank">
469
  <?php printf( __( 'Learn more about %s', 'bestwebsoft' ), $name ); ?>
470
- </a>
471
- </p>
472
  <?php }
473
  }
474
 
@@ -481,15 +500,15 @@ if ( ! class_exists( 'Bws_Settings_Tabs' ) ) {
481
  global $bstwbsftwppdtplgns_options;
482
  $folder = $this->upload_dir['basedir'] . '/bws-custom-code';
483
 
484
- foreach ( array( 'css', 'php', 'js' ) as $extension ) {
485
  $file = 'bws-custom-code.' . $extension;
486
  $real_file = $folder . '/' . $file;
487
 
488
  if ( isset( $_POST["bws_newcontent_{$extension}"] ) &&
489
- $this->custom_code_args["{$extension}_writeable"] ) {
490
  $newcontent = trim( wp_unslash( $_POST["bws_newcontent_{$extension}"] ) );
491
  if ( 'css' == $extension )
492
- $newcontent = wp_kses( $newcontent, 'strip' );
493
 
494
  if ( ! empty( $newcontent ) && isset( $_POST["bws_custom_{$extension}_active"] ) ) {
495
  $this->custom_code_args["is_{$extension}_active"] = true;
@@ -526,55 +545,55 @@ if ( ! class_exists( 'Bws_Settings_Tabs' ) ) {
526
  * Display 'misc' tab
527
  * @access private
528
  */
529
- private function tab_misc() {
530
  global $bstwbsftwppdtplgns_options; ?>
531
- <h3 class="bws_tab_label"><?php _e( 'Miscellaneous Settings', 'bestwebsoft' ); ?></h3>
532
  <?php $this->help_phrase(); ?>
533
- <hr>
534
  <?php /**
535
  * action - Display custom options on the Import / Export' tab
536
  */
537
  do_action( __CLASS__ . '_additional_misc_options' );
538
 
539
  if ( ! $this->forbid_view && ! empty( $this->change_permission_attr ) ) { ?>
540
- <div class="error inline bws_visible"><p><strong><?php _e( "Notice", 'bestwebsoft' ); ?>:</strong> <strong><?php printf( __( "It is prohibited to change %s settings on this site in the %s network settings.", 'bestwebsoft' ), $this->plugins_info["Name"], $this->plugins_info["Name"] ); ?></strong></p></div>
541
  <?php }
542
  if ( $this->forbid_view ) { ?>
543
- <div class="error inline bws_visible"><p><strong><?php _e( "Notice", 'bestwebsoft' ); ?>:</strong> <strong><?php printf( __( "It is prohibited to view %s settings on this site in the %s network settings.", 'bestwebsoft' ), $this->plugins_info["Name"], $this->plugins_info["Name"] ); ?></strong></p></div>
544
  <?php } else { ?>
545
- <table class="form-table">
546
  <?php /**
547
  * action - Display custom options on the 'misc' tab
548
  */
549
  do_action( __CLASS__ . '_additional_misc_options_affected' );
550
  if ( ! empty( $this->pro_page ) && $this->bws_hide_pro_option_exist ) { ?>
551
- <tr>
552
- <th scope="row"><?php _e( 'Pro Options', 'bestwebsoft' ); ?></th>
553
- <td>
554
- <label>
555
- <input <?php echo $this->change_permission_attr; ?> name="bws_hide_premium_options_submit" type="checkbox" value="1" <?php if ( ! $this->hide_pro_tabs ) echo 'checked="checked "'; ?> />
556
- <span class="bws_info"><?php _e( 'Enable to display plugin Pro options.', 'bestwebsoft' ); ?></span>
557
- </label>
558
- </td>
559
- </tr>
560
  <?php } ?>
561
- <tr>
562
- <th scope="row"><?php _e( 'Track Usage', 'bestwebsoft' ); ?></th>
563
- <td>
564
- <label>
565
- <input <?php echo $this->change_permission_attr; ?> name="bws_track_usage" type="checkbox" value="1" <?php if ( ! empty( $bstwbsftwppdtplgns_options['track_usage']['products'][ $this->plugin_basename ] ) ) echo 'checked="checked "'; ?>/>
566
- <span class="bws_info"><?php _e( 'Enable to allow tracking plugin usage anonymously in order to make it better.', 'bestwebsoft' ); ?></span>
567
- </label>
568
- </td>
569
- </tr>
570
- <tr>
571
- <th scope="row"><?php _e( 'Default Settings', 'bestwebsoft' ); ?></th>
572
- <td>
573
- <input<?php echo $this->change_permission_attr; ?> name="bws_restore_default" type="submit" class="button" value="<?php _e( 'Restore Settings', 'bestwebsoft' ); ?>" />
574
- <div class="bws_info"><?php _e( 'This will restore plugin settings to defaults.', 'bestwebsoft' ); ?></div>
575
- </td>
576
- </tr>
577
- </table>
578
  <?php }
579
  }
580
 
@@ -583,26 +602,26 @@ if ( ! class_exists( 'Bws_Settings_Tabs' ) ) {
583
  * @access private
584
  */
585
  public function tab_import_export() { ?>
586
- <h3 class="bws_tab_label"><?php _e( 'Import / Export', 'bestwebsoft' ); ?></h3>
587
  <?php $this->help_phrase(); ?>
588
- <hr>
589
  <?php /**
590
  * action - Display custom options on the Import / Export' tab
591
  */
592
  do_action( __CLASS__ . '_additional_import_export_options' );
593
 
594
  if ( ! $this->forbid_view && ! empty( $this->change_permission_attr ) ) { ?>
595
- <div class="error inline bws_visible"><p><strong><?php _e( "Notice", 'bestwebsoft' ); ?>:</strong> <strong><?php printf( __( "It is prohibited to change %s settings on this site in the %s network settings.", 'bestwebsoft' ), $this->plugins_info["Name"], $this->plugins_info["Name"] ); ?></strong></p></div>
596
  <?php }
597
  if ( $this->forbid_view ) { ?>
598
- <div class="error inline bws_visible"><p><strong><?php _e( "Notice", 'bestwebsoft' ); ?>:</strong> <strong><?php printf( __( "It is prohibited to view %s settings on this site in the %s network settings.", 'bestwebsoft' ), $this->plugins_info["Name"], $this->plugins_info["Name"] ); ?></strong></p></div>
599
  <?php } else { ?>
600
- <table class="form-table">
601
  <?php /**
602
  * action - Display custom options on the Import / Export' tab
603
  */
604
  do_action( __CLASS__ . '_additional_import_export_options_affected' ); ?>
605
- </table>
606
  <?php }
607
  }
608
 
@@ -634,7 +653,7 @@ if ( ! class_exists( 'Bws_Settings_Tabs' ) ) {
634
  else
635
  update_option( $this->prefix . '_options', $this->options );
636
  }
637
- $this->hide_pro_tabs = false;
638
  } else {
639
  if ( empty( $this->options['hide_premium_options'] ) ) {
640
  $this->options['hide_premium_options'][] = get_current_user_id();
@@ -679,8 +698,8 @@ if ( ! class_exists( 'Bws_Settings_Tabs' ) ) {
679
  $response = maybe_unserialize( wp_remote_retrieve_body( $raw_response ) );
680
 
681
  if ( is_array( $response ) &&
682
- ! empty( $response['usage_id'] ) &&
683
- $response['usage_id'] != $usage_id ) {
684
  $bstwbsftwppdtplgns_options['track_usage']['usage_id'] = $response['usage_id'];
685
  }
686
  }
@@ -692,89 +711,102 @@ if ( ! class_exists( 'Bws_Settings_Tabs' ) ) {
692
  }
693
 
694
  return compact( 'notice' );
695
- }
696
 
697
  /**
698
  *
699
  */
700
  public function tab_license() {
701
  global $wp_version, $bstwbsftwppdtplgns_options; ?>
702
- <h3 class="bws_tab_label"><?php _e( 'License Key', 'bestwebsoft' ); ?></h3>
703
  <?php $this->help_phrase(); ?>
704
- <hr>
705
- <?php if ( ! empty( $this->pro_page ) ) {
706
- $bws_license_key = ( isset( $_POST['bws_license_key'] ) ) ? stripslashes( sanitize_text_field( $_POST['bws_license_key'] ) ) : "";
707
-
708
- if ( $this->pro_plugin_is_activated ) {
709
- deactivate_plugins( $this->plugin_basename ); ?>
710
- <script type="text/javascript">
711
- (function($) {
712
- var i = 7;
713
- function bws_set_timeout() {
714
- i--;
715
- if ( 0 == i ) {
716
- window.location.href = '<?php echo esc_url( self_admin_url( $this->pro_page ) ); ?>';
717
- } else {
718
- $( '#bws_timeout_counter' ).text( i );
719
- window.setTimeout( bws_set_timeout, 1000 );
 
 
 
720
  }
721
- }
722
- window.setTimeout( bws_set_timeout, 1000 );
723
- })(jQuery);
724
- </script>
725
- <p><strong><?php _e( 'Congratulations! Pro license is activated successfully.', 'bestwebsoft' ); ?></strong></p>
726
- <p><?php printf( __( 'You will be automatically redirected to the %s in %s seconds.', 'bestwebsoft' ), '<a href="' . esc_url( self_admin_url( $this->pro_page ) ) . '">' . __( 'Settings page', 'bestwebsoft' ) . '</a>', '<span id="bws_timeout_counter">7</span>' ); ?></p>
727
- <?php } else {
728
- $attr = '';
729
- if ( isset( $bstwbsftwppdtplgns_options['go_pro'][ $this->bws_license_plugin ]['count'] ) &&
730
- '5' < $bstwbsftwppdtplgns_options['go_pro'][ $this->bws_license_plugin ]['count'] &&
731
- $bstwbsftwppdtplgns_options['go_pro'][ $this->bws_license_plugin ]['time'] > ( time() - ( 24 * 60 * 60 ) ) )
732
- $attr = 'disabled="disabled"'; ?>
733
- <table class="form-table">
734
- <tr>
735
- <th scope="row"><?php _e( 'License Key', 'bestwebsoft' ); ?></th>
736
- <td>
737
- <input <?php echo $attr; ?> type="text" name="bws_license_key" value="<?php echo esc_attr( $bws_license_key ); ?>" />
738
- <input <?php echo $attr; ?> type="hidden" name="bws_license_plugin" value="<?php echo esc_attr( $this->bws_license_plugin ); ?>" />
739
- <input <?php echo $attr; ?> type="submit" class="button button-secondary" name="bws_license_submit" value="<?php _e( 'Activate', 'bestwebsoft' ); ?>" />
740
- <div class="bws_info">
741
- <?php printf( __( 'Enter your license key to activate %s and get premium plugin features.', 'bestwebsoft' ), '<a href="' . esc_url( $this->plugins_info['PluginURI'] . '?k=' . $this->link_key . '&pn=' . $this->link_pn . '&v=' . $this->plugins_info["Version"] . '&wp_v=' . $wp_version ) . '" target="_blank" title="' . $this->plugins_info["Name"] . ' Pro">' . $this->plugins_info["Name"] . ' Pro</a>' ); ?>
742
- </div>
743
- <?php if ( '' != $attr ) { ?>
744
- <p><?php _e( "Unfortunately, you have exceeded the number of available tries per day. Please, upload the plugin manually.", 'bestwebsoft' ); ?></p>
745
- <?php }
746
- if ( $this->trial_days !== false )
747
- echo '<p>' . __( 'or', 'bestwebsoft' ) . ' <a href="' . esc_url( $this->plugins_info['PluginURI'] . 'trial/?k=' . $this->link_key . '&pn=' . $this->link_pn . '&v=' . $this->plugins_info["Version"] . '&wp_v=' . $wp_version ) . '" target="_blank">' . sprintf( __( 'Start Your Free %s-Day Trial Now', 'bestwebsoft' ), $this->trial_days ) . '</a></p>'; ?>
748
- </td>
749
- </tr>
750
- </table>
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
751
  <?php }
752
- } else {
753
- global $bstwbsftwppdtplgns_options;
754
- $license_key = ( isset( $bstwbsftwppdtplgns_options[ $this->plugin_basename ] ) ) ? $bstwbsftwppdtplgns_options[ $this->plugin_basename ] : ''; ?>
755
- <table class="form-table">
756
- <tr>
757
- <th scope="row"><?php _e( 'License Key', 'bestwebsoft' ); ?></th>
758
- <td>
759
- <input type="text" maxlength="100" name="bws_license_key" value="<?php echo esc_attr( $license_key ); ?>" />
760
- <input type="submit" class="button button-secondary" name="bws_license_submit" value="<?php _e( 'Check license key', 'bestwebsoft' ); ?>" />
761
- <div class="bws_info">
762
- <?php _e( 'If necessary, you can check if the license key is correct or reenter it in the field below.', 'bestwebsoft' ); ?>
763
- </div>
764
- </td>
765
- </tr>
766
- <tr>
767
- <th scope="row"><?php _e( 'Manage License Settings', 'bestwebsoft' ); ?></th>
768
- <td>
769
- <a class="button button-secondary" href="https://bestwebsoft.com/client-area" target="_blank"><?php _e( 'Login to Client Area', 'bestwebsoft' ); ?></a>
770
- <div class="bws_info">
771
- <?php _e( 'Manage active licenses, download BWS products, and view your payment history using BestWebSoft Client Area.', 'bestwebsoft' ); ?>
772
- </div>
773
- </td>
774
- </tr>
775
- </table>
776
- <?php }
777
- }
778
 
779
  /**
780
  * Save plugin options to the database
@@ -784,264 +816,278 @@ if ( ! class_exists( 'Bws_Settings_Tabs' ) ) {
784
  */
785
  private function save_options_license_key() {
786
  global $wp_version, $bstwbsftwppdtplgns_options;
 
 
 
 
 
 
 
 
787
 
788
- $bws_license_key = ( isset( $_POST['bws_license_key'] ) ) ? stripslashes( sanitize_text_field( $_POST['bws_license_key'] ) ) : '';
789
-
790
- if ( '' != $bws_license_key ) {
791
- if ( strlen( $bws_license_key ) != 18 ) {
792
- $error = __( 'Wrong license key', 'bestwebsoft' );
793
- } else {
794
-
795
- /* CHECK license key */
796
- if ( $this->is_pro ) {
797
- delete_transient( 'bws_plugins_update' );
798
- if ( ! $this->all_plugins ) {
799
- if ( ! function_exists( 'get_plugins' ) )
800
- require_once( ABSPATH . 'wp-admin/includes/plugin.php' );
801
- $this->all_plugins = get_plugins();
802
- }
803
- $current = get_site_transient( 'update_plugins' );
804
-
805
- if ( ! empty( $this->all_plugins ) && ! empty( $current ) && isset( $current->response ) && is_array( $current->response ) ) {
806
- $to_send = array();
807
- $to_send["plugins"][ $this->plugin_basename ] = $this->all_plugins[ $this->plugin_basename ];
808
- $to_send["plugins"][ $this->plugin_basename ]["bws_license_key"] = $bws_license_key;
809
- $to_send["plugins"][ $this->plugin_basename ]["bws_illegal_client"] = true;
810
- $options = array(
811
- 'timeout' => ( ( defined('DOING_CRON') && DOING_CRON ) ? 30 : 3 ),
812
- 'body' => array( 'plugins' => serialize( $to_send ) ),
813
- 'user-agent' => 'WordPress/' . $wp_version . '; ' . get_bloginfo( 'url' )
814
- );
815
- $raw_response = wp_remote_post( 'http://bestwebsoft.com/wp-content/plugins/paid-products/plugins/update-check/1.0/', $options );
816
-
817
- if ( is_wp_error( $raw_response ) || 200 != wp_remote_retrieve_response_code( $raw_response ) ) {
818
- $error = __( 'Something went wrong. Please try again later. If the error appears again, please contact us', 'bestwebsoft' ) . ': <a href=https://support.bestwebsoft.com>BestWebSoft</a>. ' . __( 'We are sorry for inconvenience.', 'bestwebsoft' );
819
- } else {
820
- $response = maybe_unserialize( wp_remote_retrieve_body( $raw_response ) );
821
- if ( is_array( $response ) && !empty( $response ) ) {
822
- foreach ( $response as $single_response ) {
823
- if ( "wrong_license_key" == $single_response->package ) {
824
- $error = __( 'Wrong license key.', 'bestwebsoft' );
825
- } else if ( "wrong_domain" == $single_response->package ) {
826
- $error = __( 'This license key is bound to another site.', 'bestwebsoft' );
827
- } else if ( "time_out" == $single_response->package ) {
828
- $message = __( 'This license key is valid, but Your license has expired. If you want to update our plugin in future, you should extend the license.', 'bestwebsoft' );
829
- } elseif ( "you_are_banned" == $single_response->package ) {
830
- $error = __( "Unfortunately, you have exceeded the number of available tries.", 'bestwebsoft' );
831
- } elseif ( "duplicate_domen_for_trial" == $single_response->package ) {
832
- $error = __( "Unfortunately, the Pro Trial licence was already installed to this domain. The Pro Trial license can be installed only once.", 'bestwebsoft' );
833
- }
834
- if ( empty( $error ) ) {
835
- if ( empty( $message ) ) {
836
- if ( isset( $single_response->trial ) )
837
- $message = __( 'The Pro Trial license key is valid.', 'bestwebsoft' );
838
- else
839
- $message = __( 'The license key is valid.', 'bestwebsoft' );
840
-
841
- if ( ! empty( $single_response->time_out ) )
842
- $message .= ' ' . __( 'Your license will expire on', 'bestwebsoft' ) . ' ' . $single_response->time_out . '.';
843
-
844
- if ( isset( $single_response->trial ) && $this->is_trial )
845
- $message .= ' ' . sprintf( __( 'In order to continue using the plugin it is necessary to buy a %s license.', 'bestwebsoft' ), '<a href="' . esc_url( $this->plugins_info['PluginURI'] . '?k=' . $this->link_key . '&pn=' . $this->link_pn . '&v=' . $this->plugins_info["Version"] . '&wp_v=' . $wp_version ) . '" target="_blank" title="' . $this->plugins_info["Name"] . '">Pro</a>' );
846
- }
847
-
848
- if ( isset( $single_response->trial ) ) {
849
- $bstwbsftwppdtplgns_options['trial'][ $this->plugin_basename ] = 1;
850
- } else {
851
- unset( $bstwbsftwppdtplgns_options['trial'][ $this->plugin_basename ] );
852
- }
853
-
854
- if ( isset( $single_response->nonprofit ) ) {
855
- $bstwbsftwppdtplgns_options['nonprofit'][ $this->plugin_basename ] = 1;
856
- } else {
857
- unset( $bstwbsftwppdtplgns_options['nonprofit'][ $this->plugin_basename ] );
858
- }
859
-
860
- if ( ! isset( $bstwbsftwppdtplgns_options[ $this->plugin_basename ] ) || $bstwbsftwppdtplgns_options[ $this->plugin_basename ] != $bws_license_key ) {
861
- $bstwbsftwppdtplgns_options[ $this->plugin_basename ] = $bws_license_key;
862
-
863
- $file = @fopen( dirname( dirname( __FILE__ ) ) . "/license_key.txt" , "w+" );
864
- if ( $file ) {
865
- @fwrite( $file, $bws_license_key );
866
- @fclose( $file );
867
- }
868
- $update_option = true;
869
- }
870
-
871
- if ( ! isset( $bstwbsftwppdtplgns_options['time_out'][ $this->plugin_basename ] ) || $bstwbsftwppdtplgns_options['time_out'][ $this->plugin_basename ] != $single_response->time_out ) {
872
- $bstwbsftwppdtplgns_options['time_out'][ $this->plugin_basename ] = $single_response->time_out;
873
- $update_option = true;
874
- }
875
-
876
- if ( isset( $update_option ) ) {
877
- if ( $this->is_multisite )
878
- update_site_option( 'bstwbsftwppdtplgns_options', $bstwbsftwppdtplgns_options );
879
- else
880
- update_option( 'bstwbsftwppdtplgns_options', $bstwbsftwppdtplgns_options );
881
- }
882
- }
883
- }
884
- } else {
885
- $error = __( 'Something went wrong. Please try again later. If the error appears again, please contact us', 'bestwebsoft' ) . ' <a href=https://support.bestwebsoft.com>BestWebSoft</a>. ' . __( 'We are sorry for inconvenience.', 'bestwebsoft' );
886
  }
 
887
  }
888
- }
889
- /* Go Pro */
890
- } else {
891
-
892
- $bws_license_plugin = stripslashes( sanitize_text_field( $_POST['bws_license_plugin'] ) );
893
- if ( isset( $bstwbsftwppdtplgns_options['go_pro'][ $bws_license_plugin ]['count'] ) && $bstwbsftwppdtplgns_options['go_pro'][ $bws_license_plugin ]['time'] > ( time() - (24 * 60 * 60) ) ) {
894
- $bstwbsftwppdtplgns_options['go_pro'][ $bws_license_plugin ]['count'] = $bstwbsftwppdtplgns_options['go_pro'][ $bws_license_plugin ]['count'] + 1;
895
- } else {
896
- $bstwbsftwppdtplgns_options['go_pro'][ $bws_license_plugin ]['count'] = 1;
897
- $bstwbsftwppdtplgns_options['go_pro'][ $bws_license_plugin ]['time'] = time();
898
- }
899
-
900
- /* download Pro */
901
- if ( ! $this->all_plugins ) {
902
- if ( ! function_exists( 'get_plugins' ) )
903
- require_once( ABSPATH . 'wp-admin/includes/plugin.php' );
904
- $this->all_plugins = get_plugins();
905
- }
906
-
907
- if ( ! array_key_exists( $bws_license_plugin, $this->all_plugins ) ) {
908
  $current = get_site_transient( 'update_plugins' );
909
- if ( ! empty( $current ) && isset( $current->response ) && is_array( $current->response ) ) {
 
910
  $to_send = array();
911
- $to_send["plugins"][ $bws_license_plugin ] = array();
912
- $to_send["plugins"][ $bws_license_plugin ]["bws_license_key"] = $bws_license_key;
913
- $to_send["plugins"][ $bws_license_plugin ]["bws_illegal_client"] = true;
914
- $options = array(
915
- 'timeout' => ( ( defined( 'DOING_CRON' ) && DOING_CRON ) ? 30 : 3 ),
916
- 'body' => array( 'plugins' => serialize( $to_send ) ),
917
- 'user-agent' => 'WordPress/' . $wp_version . '; ' . get_bloginfo( 'url' ) );
 
918
  $raw_response = wp_remote_post( 'http://bestwebsoft.com/wp-content/plugins/paid-products/plugins/update-check/1.0/', $options );
919
 
920
  if ( is_wp_error( $raw_response ) || 200 != wp_remote_retrieve_response_code( $raw_response ) ) {
921
- $error = __( "Something went wrong. Please try again later. If the error appears again, please contact us", 'bestwebsoft' ) . ': <a href="https://support.bestwebsoft.com">BestWebSoft</a>. ' . __( "We are sorry for inconvenience.", 'bestwebsoft' );
922
  } else {
923
  $response = maybe_unserialize( wp_remote_retrieve_body( $raw_response ) );
924
  if ( is_array( $response ) && ! empty( $response ) ) {
925
  foreach ( $response as $single_response ) {
926
  if ( "wrong_license_key" == $single_response->package ) {
927
- $error = __( "Wrong license key.", 'bestwebsoft' );
928
- } elseif ( "wrong_domain" == $single_response->package ) {
929
- $error = __( "This license key is bound to another site.", 'bestwebsoft' );
 
 
930
  } elseif ( "you_are_banned" == $single_response->package ) {
931
- $error = __( "Unfortunately, you have exceeded the number of available tries per day. Please, upload the plugin manually.", 'bestwebsoft' );
932
- } elseif ( "time_out" == $single_response->package ) {
933
- $error = sprintf( __( "Unfortunately, Your license has expired. To continue getting top-priority support and plugin updates, you should extend it in your %s.", 'bestwebsoft' ), ' <a href="https://bestwebsoft.com/client-area">Client Area</a>' );
934
  } elseif ( "duplicate_domen_for_trial" == $single_response->package ) {
935
- $error = __( "Unfortunately, the Pro licence was already installed to this domain. The Pro Trial license can be installed only once.", 'bestwebsoft' );
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
936
  }
937
  }
938
- if ( empty( $error ) ) {
939
- $bstwbsftwppdtplgns_options[ $bws_license_plugin ] = $bws_license_key;
940
-
941
- $url = 'http://bestwebsoft.com/wp-content/plugins/paid-products/plugins/downloads/?bws_first_download=' . $bws_license_plugin . '&bws_license_key=' . $bws_license_key . '&download_from=5';
942
-
943
- if ( ! $this->upload_dir )
944
- $this->upload_dir = wp_upload_dir();
945
-
946
- $zip_name = explode( '/', $bws_license_plugin );
947
-
948
- if ( !function_exists( 'curl_init' ) ) {
949
- $received_content = file_get_contents( $url );
950
- } else {
951
- $ch = curl_init();
952
- curl_setopt( $ch, CURLOPT_URL, $url );
953
- curl_setopt( $ch, CURLOPT_RETURNTRANSFER, true );
954
- $received_content = curl_exec( $ch );
955
- curl_close( $ch );
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
956
  }
 
 
 
 
 
 
957
 
958
- if ( ! $received_content ) {
959
- $error = __( "Failed to download the zip archive. Please, upload the plugin manually.", 'bestwebsoft' );
960
- } else {
961
- if ( is_writable( $this->upload_dir["path"] ) ) {
962
- $file_put_contents = $this->upload_dir["path"] . "/" . $zip_name[0] . ".zip";
963
- if ( file_put_contents( $file_put_contents, $received_content ) ) {
964
- @chmod( $file_put_contents, octdec( 755 ) );
965
- if ( class_exists( 'ZipArchive' ) ) {
966
- $zip = new ZipArchive();
967
- if ( $zip->open( $file_put_contents ) === TRUE ) {
968
- $zip->extractTo( WP_PLUGIN_DIR );
969
- $zip->close();
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
970
  } else {
971
- $error = __( "Failed to open the zip archive. Please, upload the plugin manually.", 'bestwebsoft' );
972
  }
973
- } elseif ( class_exists( 'Phar' ) ) {
974
- $phar = new PharData( $file_put_contents );
975
- $phar->extractTo( WP_PLUGIN_DIR );
976
  } else {
977
- $error = __( "Your server does not support either ZipArchive or Phar. Please, upload the plugin manually.", 'bestwebsoft' );
978
  }
979
- @unlink( $file_put_contents );
980
  } else {
981
- $error = __( "Failed to download the zip archive. Please, upload the plugin manually.", 'bestwebsoft' );
982
  }
983
- } else {
984
- $error = __( "UploadDir is not writable. Please, upload the plugin manually.", 'bestwebsoft' );
985
  }
986
- }
987
 
988
- /* activate Pro */
989
- if ( file_exists( WP_PLUGIN_DIR . '/' . $zip_name[0] ) ) {
990
- if ( $this->is_multisite && is_plugin_active_for_network( $this->plugin_basename ) ) {
991
- /* if multisite and free plugin is network activated */
992
- $active_plugins = get_site_option( 'active_sitewide_plugins' );
993
- $active_plugins[ $bws_license_plugin ] = time();
994
- update_site_option( 'active_sitewide_plugins', $active_plugins );
995
- } else {
996
- /* activate on a single blog */
997
- $active_plugins = get_option( 'active_plugins' );
998
- array_push( $active_plugins, $bws_license_plugin );
999
- update_option( 'active_plugins', $active_plugins );
 
 
 
 
1000
  }
1001
- $this->pro_plugin_is_activated = true;
1002
- } elseif ( empty( $error ) ) {
1003
- $error = __( "Failed to download the zip archive. Please, upload the plugin manually.", 'bestwebsoft' );
1004
  }
 
 
1005
  }
 
 
 
 
 
 
 
 
 
1006
  } else {
1007
- $error = __( "Something went wrong. Try again later or upload the plugin manually. We are sorry for inconvenience.", 'bestwebsoft' );
 
1008
  }
 
 
1009
  }
1010
  }
1011
- } else {
1012
- $bstwbsftwppdtplgns_options[ $bws_license_plugin ] = $bws_license_key;
1013
- /* activate Pro */
1014
- if ( ! is_plugin_active( $bws_license_plugin ) ) {
1015
- if ( $this->is_multisite && is_plugin_active_for_network( $this->plugin_basename ) ) {
1016
- /* if multisite and free plugin is network activated */
1017
- $network_wide = true;
1018
- } else {
1019
- /* activate on a single blog */
1020
- $network_wide = false;
1021
- }
1022
- activate_plugin( $bws_license_plugin, NULL, $network_wide );
1023
- $this->pro_plugin_is_activated = true;
1024
  }
1025
- }
1026
- /* add 'track_usage' for Pro version */
1027
- if ( ! empty( $bstwbsftwppdtplgns_options['track_usage'][ $this->plugin_basename ] ) &&
1028
- empty( $bstwbsftwppdtplgns_options['track_usage'][ $bws_license_plugin ] ) ) {
1029
- $bstwbsftwppdtplgns_options['track_usage'][ $bws_license_plugin ] = $bstwbsftwppdtplgns_options['track_usage'][ $this->plugin_basename ];
1030
- }
1031
 
1032
- if ( $this->is_multisite )
1033
- update_site_option( 'bstwbsftwppdtplgns_options', $bstwbsftwppdtplgns_options );
1034
- else
1035
- update_option( 'bstwbsftwppdtplgns_options', $bstwbsftwppdtplgns_options );
 
1036
 
1037
- if ( $this->pro_plugin_is_activated )
1038
- delete_transient( 'bws_plugins_update' );
 
 
1039
  }
 
 
1040
  }
1041
- } else {
1042
- $error = __( "Please, enter Your license key", 'bestwebsoft' );
1043
  }
1044
- return compact( 'error', 'message' );
1045
  }
1046
 
1047
  /**
@@ -1061,18 +1107,18 @@ if ( ! class_exists( 'Bws_Settings_Tabs' ) ) {
1061
  echo '</a></div>';
1062
  }
1063
 
1064
- public function bws_pro_block_links() {
1065
  global $wp_version; ?>
1066
- <div class="bws_pro_version_tooltip">
1067
- <a class="bws_button" href="<?php echo esc_url( $this->plugins_info['PluginURI'] ); ?>?k=<?php echo $this->link_key; ?>&amp;pn=<?php echo $this->link_pn; ?>&amp;v=<?php echo $this->plugins_info["Version"]; ?>&amp;wp_v=<?php echo $wp_version; ?>" target="_blank" title="<?php echo $this->plugins_info["Name"]; ?>"><?php _e( 'Upgrade to Pro', 'bestwebsoft' ); ?></a>
1068
  <?php if ( $this->trial_days !== false ) { ?>
1069
- <span class="bws_trial_info">
1070
- <?php _e( 'or', 'bestwebsoft' ); ?>
1071
- <a href="<?php echo esc_url( $this->plugins_info['PluginURI'] . '?k=' . $this->link_key . '&pn=' . $this->link_pn . '&v=' . $this->plugins_info["Version"] . '&wp_v=' . $wp_version ); ?>" target="_blank" title="<?php echo $this->plugins_info["Name"]; ?>"><?php _e( 'Start Your Free Trial', 'bestwebsoft' ); ?></a>
1072
  </span>
1073
  <?php } ?>
1074
- <div class="clear"></div>
1075
- </div>
1076
  <?php }
1077
 
1078
  /**
14
  public $plugin_basename;
15
  public $prefix;
16
  public $wp_slug;
17
+
18
  public $options;
19
  public $default_options;
20
+ public $is_network_options;
21
  public $plugins_info = array();
22
  public $hide_pro_tabs = false;
23
  public $demo_data;
28
  public $link_key;
29
  public $link_pn;
30
  public $is_trial = false;
31
+ public $licenses;
32
  public $trial_days;
33
+ public $bws_hide_pro_option_exist = true;
34
 
35
  public $forbid_view = false;
36
  public $change_permission_attr = '';
49
  * The child class should call this constructor from its own constructor to override
50
  * the default $args.
51
  * @access public
52
+ *
53
  * @param array|string $args
54
  */
55
  public function __construct( $args = array() ) {
56
  $args = wp_parse_args( $args, array(
57
  'plugin_basename' => '',
58
  'prefix' => '',
59
+ 'plugins_info' => array(),
60
  'default_options' => array(),
61
  'options' => array(),
62
  'is_network_options' => false,
63
  'tabs' => array(),
64
+ 'doc_link' => '',
65
+ 'doc_video_link' => '',
66
+ 'wp_slug' => '',
67
+ 'demo_data' => false,
68
  /* if this is free version and pro exist */
69
+ 'pro_page' => '',
70
+ 'bws_license_plugin' => '',
71
+ 'link_key' => '',
72
+ 'link_pn' => '',
73
+ 'trial_days' => false,
74
+ 'licenses' => array()
75
  ) );
76
 
77
  $args['plugins_info']['Name'] = str_replace( ' by BestWebSoft', '', $args['plugins_info']['Name'] );
78
+
79
  $this->plugin_basename = $args['plugin_basename'];
80
  $this->prefix = $args['prefix'];
81
+ $this->plugins_info = $args['plugins_info'];
82
  $this->options = $args['options'];
83
  $this->default_options = $args['default_options'];
84
  $this->wp_slug = $args['wp_slug'];
95
  $this->link_key = $args['link_key'];
96
  $this->link_pn = $args['link_pn'];
97
  $this->trial_days = $args['trial_days'];
98
+ $this->licenses = $args['licenses'];
99
 
100
  $this->hide_pro_tabs = bws_hide_premium_options_check( $this->options );
101
  $this->version = '1.0.0';
102
  $this->is_multisite = is_multisite();
103
 
104
+ if ( empty( $this->pro_page ) && array_key_exists( 'license', $this->tabs ) ) {
105
  $this->is_pro = true;
106
+ $this->licenses[ $this->plugins_info['TextDomain'] ] = array(
107
+ 'name' => $this->plugins_info['Name'],
108
+ 'slug' => $this->plugins_info['TextDomain'],
109
+ 'basename' => $this->plugin_basename
110
+ );
111
+ } else {
112
+ $this->licenses[ $this->plugins_info['TextDomain'] ] = array(
113
+ 'name' => $this->plugins_info['Name'],
114
+ 'slug' => $this->plugins_info['TextDomain'],
115
+ 'pro_slug' => stristr( $this->bws_license_plugin, '/', TRUE ),
116
+ 'basename' => $this->plugin_basename,
117
+ 'pro_basename' => $this->bws_license_plugin
118
+ );
119
+ }
120
  }
121
 
122
  /**
141
  $this->demo_data->bws_demo_confirm();
142
  } else {
143
  bws_show_settings_notice(); ?>
144
+ <form class="bws_form" method="post" action="" enctype="multipart/form-data">
145
+ <div id="poststuff">
146
+ <div id="post-body" class="metabox-holder columns-2">
147
+ <div id="post-body-content" style="position: relative;">
148
+ <?php $this->display_tabs(); ?>
149
+ </div><!-- #post-body-content -->
150
+ <div id="postbox-container-1" class="postbox-container">
151
+ <div class="meta-box-sortables ui-sortable">
152
+ <div id="submitdiv" class="postbox">
153
+ <h3 class="hndle"><?php _e( 'Information', 'bestwebsoft' ); ?></h3>
154
+ <div class="inside">
155
+ <div class="submitbox" id="submitpost">
156
+ <div id="minor-publishing">
157
+ <div id="misc-publishing-actions">
158
  <?php if ( $this->is_pro ) {
159
  if ( ! isset( $bstwbsftwppdtplgns_options['time_out'][ $this->plugin_basename ] ) || isset( $bstwbsftwppdtplgns_options['wrong_license_key'][ $this->plugin_basename ] ) ) {
160
  $license_type = 'Pro';
162
  } else {
163
  $finish = strtotime( $bstwbsftwppdtplgns_options['time_out'][ $this->plugin_basename ] );
164
  $today = strtotime( date( "m/d/Y" ) );
165
+ if ( isset( $bstwbsftwppdtplgns_options['trial'][ $this->plugin_basename ] ) ) {
166
  $license_type = 'Trial Pro';
167
 
168
  if ( $finish < $today ) {
171
  $daysleft = floor( ( $finish - $today ) / ( 60*60*24 ) );
172
  $license_status = sprintf( __( '%s day(-s) left', 'bestwebsoft' ), $daysleft );
173
  }
174
+ $license_status .= '. <a target="_blank" href="' . esc_url( $this->plugins_info['PluginURI'] ) . '">' . __( 'Upgrade to Pro', 'bestwebsoft' ) . '</a>';
175
  } else {
176
  $license_type = isset( $bstwbsftwppdtplgns_options['nonprofit'][ $this->plugin_basename ] ) ? 'Nonprofit Pro' : 'Pro';
177
  if ( $finish < $today ) {
181
  }
182
  }
183
  } ?>
184
+ <div class="misc-pub-section">
185
+ <strong><?php _e( 'License', 'bestwebsoft' ); ?>:</strong> <?php echo $license_type; ?>
186
+ </div>
187
+ <div class="misc-pub-section">
188
+ <strong><?php _e( 'Status', 'bestwebsoft' ); ?>:</strong> <?php echo $license_status; ?>
189
+ </div><!-- .misc-pub-section -->
190
  <?php } ?>
191
+ <div class="misc-pub-section">
192
+ <strong><?php _e( 'Version', 'bestwebsoft' ); ?>:</strong> <?php echo $this->plugins_info['Version']; ?>
193
+ </div><!-- .misc-pub-section -->
194
+ </div>
195
+ <div class="clear"></div>
196
+ </div>
197
+ <div id="major-publishing-actions">
198
+ <div id="publishing-action">
199
+ <input type="hidden" name="<?php echo $this->prefix; ?>_form_submit" value="submit" />
200
+ <input id="bws-submit-button" type="submit" class="button button-primary button-large" value="<?php _e( 'Save Changes', 'bestwebsoft' ); ?>" />
201
+ <?php wp_nonce_field( $this->plugin_basename, 'bws_nonce_name' ); ?>
202
+ </div>
203
+ <div class="clear"></div>
204
+ </div>
205
+ </div>
206
+ </div>
207
+ </div>
208
  <?php /**
209
  * action - Display custom metabox
210
  */
211
  do_action( __CLASS__ . '_display_metabox' ); ?>
212
+ </div>
213
+ </div>
214
+ <div id="postbox-container-2" class="postbox-container">
215
  <?php /**
216
  * action - Display additional content for #postbox-container-2
217
  */
218
  do_action( __CLASS__ . '_display_second_postbox' ); ?>
219
+ <div class="submit">
220
+ <input type="submit" class="button button-primary button-large" value="<?php _e( 'Save Changes', 'bestwebsoft' ); ?>" />
221
+ </div>
222
  <?php if ( ! empty( $this->wp_slug ) )
223
  bws_plugin_reviews_block( $this->plugins_info['Name'], $this->wp_slug ); ?>
224
+ </div>
225
+ </div>
226
+ </form>
227
+ </div>
228
  <?php }
229
  }
230
 
234
  * @param void
235
  * @return void
236
  */
237
+ public function display_tabs() {
238
  global $wp_version; ?>
239
+ <div id="bws_settings_tabs_wrapper"<?php if ( version_compare( $wp_version, '4.0', '<' ) ) echo ' class="edit-form-section"'; ?>>
240
+ <ul id="bws_settings_tabs">
241
  <?php $this->display_tabs_list(); ?>
242
+ </ul>
243
  <?php $this->display_tabs_content(); ?>
244
+ <div class="clear"></div>
245
+ <input type="hidden" name="bws_active_tab" value="<?php if ( isset( $_REQUEST['bws_active_tab'] ) ) echo esc_attr( $_REQUEST['bws_active_tab'] ); ?>" />
246
+ </div>
247
  <?php }
248
 
249
  /**
260
  $tab_class .= ' bws_pro_tab';
261
  if ( ! empty( $data['class'] ) )
262
  $tab_class .= ' ' . $data['class']; ?>
263
+ <li class="<?php echo $tab_class; ?>" data-slug="<?php echo $tab_slug; ?>">
264
+ <a href="#<?php echo $this->prefix; ?>_<?php echo $tab_slug; ?>_tab">
265
+ <span><?php echo esc_html( $data['label'] ); ?></span>
266
+ </a>
267
+ </li>
268
  <?php }
269
  }
270
 
275
  * @return void
276
  */
277
  public function display_tabs_content() {
278
+ foreach ( $this->tabs as $tab_slug => $data ) {
279
  if ( ! empty( $data['is_pro'] ) && $this->hide_pro_tabs )
280
  continue; ?>
281
+ <div class="bws_tab ui-tabs-panel ui-widget-content ui-corner-bottom" id="<?php echo esc_attr( $this->prefix . '_' . $tab_slug . '_tab' ); ?>" aria-labelledby="ui-id-2" role="tabpanel" aria-hidden="false" style="display: block;">
282
  <?php $tab_slug = str_replace( '-', '_', $tab_slug );
283
  if ( method_exists( $this, 'tab_' . $tab_slug ) ) {
284
  call_user_func( array( $this, 'tab_' . $tab_slug ) );
285
  do_action_ref_array( __CLASS__ . '_after_tab_' . $tab_slug, array( &$this ) );
286
  } ?>
287
+ </div>
288
  <?php }
289
  }
290
 
300
  if ( isset( $_POST['bws_restore_confirm'] ) && check_admin_referer( $this->plugin_basename, 'bws_settings_nonce_name' ) ) {
301
  $this->restore_options();
302
  $message = __( 'All plugin settings were restored.', 'bestwebsoft' );
303
+ /* Go Pro - check license key */
304
  } elseif ( isset( $_POST['bws_license_submit'] ) && check_admin_referer( $this->plugin_basename, 'bws_nonce_name' ) ) {
305
  $result = $this->save_options_license_key();
306
+ if ( ! empty( $result['empty_field_error'] ) )
307
+ $error = $result['empty_field_error'];
308
  if ( ! empty( $result['error'] ) )
309
  $error = $result['error'];
310
  if ( ! empty( $result['message'] ) )
311
  $message = $result['message'];
312
  if ( ! empty( $result['notice'] ) )
313
  $notice = $result['notice'];
314
+ /* check demo data */
315
  } else {
316
  $demo_result = ! empty( $this->demo_data ) ? $this->demo_data->bws_handle_demo_data() : false;
317
  if ( false !== $demo_result ) {
321
  if ( ! empty( $demo_result['done'] ) && ! empty( $demo_result['options'] ) )
322
  $this->options = $demo_result['options'];
323
  }
324
+ /* Save options */
325
  } elseif ( ! isset( $_REQUEST['bws_restore_default'] ) && ! isset( $_POST['bws_handle_demo'] ) && isset( $_REQUEST[ $this->prefix . '_form_submit'] ) && check_admin_referer( $this->plugin_basename, 'bws_nonce_name' ) ) {
326
+ /* save tabs */
327
  $result = $this->save_options();
328
  if ( ! empty( $result['error'] ) )
329
  $error = $result['error'];
360
  * action - Display custom error\message\notice
361
  */
362
  do_action( __CLASS__ . '_display_custom_messages', $save_results ); ?>
363
+ <div class="updated fade inline" <?php if ( empty( $save_results['message'] ) ) echo "style=\"display:none\""; ?>><p><strong><?php echo $save_results['message']; ?></strong></p></div>
364
+ <div class="updated bws-notice inline" <?php if ( empty( $save_results['notice'] ) ) echo "style=\"display:none\""; ?>><p><strong><?php echo $save_results['notice']; ?></strong></p></div>
365
+ <div class="error inline" <?php if ( empty( $save_results['error'] ) ) echo "style=\"display:none\""; ?>><p><strong><?php echo $save_results['error']; ?></strong></p></div>
366
  <?php }
367
 
368
  /**
409
  fclose( $f );
410
  }
411
  }
412
+
413
  if ( $this->is_multisite )
414
  $this->custom_code_args['blog_id'] = get_current_blog_id();
415
 
416
  foreach ( array( 'css', 'php', 'js' ) as $extension ) {
417
  $file = 'bws-custom-code.' . $extension;
418
  $real_file = $folder . '/' . $file;
419
+
420
  if ( file_exists( $real_file ) ) {
421
  update_recently_edited( $real_file );
422
  $this->custom_code_args["content_{$extension}"] = file_get_contents( $real_file );
423
  if ( ( $this->is_multisite && isset( $bstwbsftwppdtplgns_options['custom_code'][ $this->custom_code_args['blog_id'] ][ $file ] ) ) ||
424
+ ( ! $this->is_multisite && isset( $bstwbsftwppdtplgns_options['custom_code'][ $file ] ) ) ) {
425
  $this->custom_code_args["is_{$extension}_active"] = true;
426
  }
427
  if ( is_writeable( $real_file ) )
439
  * @access private
440
  */
441
  private function tab_custom_code() { ?>
442
+ <h3 class="bws_tab_label"><?php _e( 'Custom Code', 'bestwebsoft' ); ?></h3>
443
  <?php $this->help_phrase(); ?>
444
+ <hr>
445
  <?php if ( ! current_user_can( 'edit_plugins' ) ) {
446
  echo '<p>' . __( 'You do not have sufficient permissions to edit plugins for this site.', 'bestwebsoft' ) . '</p>';
447
  return;
448
  }
449
 
450
+ $list = array(
451
  'css' => array( 'description' => __( 'These styles will be added to the header on all pages of your site.', 'bestwebsoft' ),
452
+ 'learn_more_link' => 'https://developer.mozilla.org/en-US/docs/Web/Guide/CSS/Getting_started'
453
+ ),
454
  'php' => array( 'description' => sprintf( __( 'This PHP code will be hooked to the %s action and will be printed on front end only.', 'bestwebsoft' ), '<a href="https://codex.wordpress.org/Plugin_API/Action_Reference/init" target="_blank"><code>init</code></a>' ),
455
+ 'learn_more_link' => 'http://php.net/'
456
+ ),
457
  'js' => array( 'description' => __( 'These code will be added to the header on all pages of your site.', 'bestwebsoft' ),
458
+ 'learn_more_link' => 'https://developer.mozilla.org/en-US/docs/Web/JavaScript'
459
+ ),
460
  );
461
 
462
  if ( ! $this->custom_code_args['css_writeable'] ||
463
+ ! $this->custom_code_args['php_writeable'] ||
464
+ ! $this->custom_code_args['js_writeable'] ) { ?>
465
+ <p><em><?php printf( __( 'You need to make this files writable before you can save your changes. See %s the Codex %s for more information.', 'bestwebsoft' ),
466
+ '<a href="https://codex.wordpress.org/Changing_File_Permissions" target="_blank">',
467
+ '</a>' ); ?></em></p>
468
  <?php }
469
 
470
  foreach ( $list as $extension => $extension_data ) {
471
  $name = 'js' == $extension ? 'JavaScript' : strtoupper( $extension ); ?>
472
+ <p><big>
473
+ <strong><?php echo $name; ?></strong>
474
+ <?php if ( ! $this->custom_code_args["{$extension}_writeable"] )
475
+ echo '(' . __( 'Browsing', 'bestwebsoft' ) . ')'; ?>
476
+ </big></p>
477
+ <p class="bws_info">
478
+ <label>
479
+ <input type="checkbox" name="bws_custom_<?php echo $extension; ?>_active" value="1" <?php if ( $this->custom_code_args["is_{$extension}_active"] ) echo "checked"; ?> />
480
  <?php printf( __( 'Activate custom %s code.', 'bestwebsoft' ), $name ); ?>
481
+ </label>
482
+ </p>
483
+ <textarea cols="70" rows="25" name="bws_newcontent_<?php echo $extension; ?>" id="bws_newcontent_<?php echo $extension; ?>"><?php if ( isset( $this->custom_code_args["content_{$extension}"] ) ) echo esc_textarea( $this->custom_code_args["content_{$extension}"] ); ?></textarea>
484
+ <p class="bws_info">
485
  <?php echo $extension_data['description']; ?>
486
+ <br>
487
+ <a href="<?php echo esc_url( $extension_data['learn_more_link'] ); ?>" target="_blank">
488
  <?php printf( __( 'Learn more about %s', 'bestwebsoft' ), $name ); ?>
489
+ </a>
490
+ </p>
491
  <?php }
492
  }
493
 
500
  global $bstwbsftwppdtplgns_options;
501
  $folder = $this->upload_dir['basedir'] . '/bws-custom-code';
502
 
503
+ foreach ( array( 'css', 'php', 'js' ) as $extension ) {
504
  $file = 'bws-custom-code.' . $extension;
505
  $real_file = $folder . '/' . $file;
506
 
507
  if ( isset( $_POST["bws_newcontent_{$extension}"] ) &&
508
+ $this->custom_code_args["{$extension}_writeable"] ) {
509
  $newcontent = trim( wp_unslash( $_POST["bws_newcontent_{$extension}"] ) );
510
  if ( 'css' == $extension )
511
+ $newcontent = wp_kses( $newcontent, array( '\'', '\"' ) );
512
 
513
  if ( ! empty( $newcontent ) && isset( $_POST["bws_custom_{$extension}_active"] ) ) {
514
  $this->custom_code_args["is_{$extension}_active"] = true;
545
  * Display 'misc' tab
546
  * @access private
547
  */
548
+ private function tab_misc() {
549
  global $bstwbsftwppdtplgns_options; ?>
550
+ <h3 class="bws_tab_label"><?php _e( 'Miscellaneous Settings', 'bestwebsoft' ); ?></h3>
551
  <?php $this->help_phrase(); ?>
552
+ <hr>
553
  <?php /**
554
  * action - Display custom options on the Import / Export' tab
555
  */
556
  do_action( __CLASS__ . '_additional_misc_options' );
557
 
558
  if ( ! $this->forbid_view && ! empty( $this->change_permission_attr ) ) { ?>
559
+ <div class="error inline bws_visible"><p><strong><?php _e( "Notice", 'bestwebsoft' ); ?>:</strong> <strong><?php printf( __( "It is prohibited to change %s settings on this site in the %s network settings.", 'bestwebsoft' ), $this->plugins_info["Name"], $this->plugins_info["Name"] ); ?></strong></p></div>
560
  <?php }
561
  if ( $this->forbid_view ) { ?>
562
+ <div class="error inline bws_visible"><p><strong><?php _e( "Notice", 'bestwebsoft' ); ?>:</strong> <strong><?php printf( __( "It is prohibited to view %s settings on this site in the %s network settings.", 'bestwebsoft' ), $this->plugins_info["Name"], $this->plugins_info["Name"] ); ?></strong></p></div>
563
  <?php } else { ?>
564
+ <table class="form-table">
565
  <?php /**
566
  * action - Display custom options on the 'misc' tab
567
  */
568
  do_action( __CLASS__ . '_additional_misc_options_affected' );
569
  if ( ! empty( $this->pro_page ) && $this->bws_hide_pro_option_exist ) { ?>
570
+ <tr>
571
+ <th scope="row"><?php _e( 'Pro Options', 'bestwebsoft' ); ?></th>
572
+ <td>
573
+ <label>
574
+ <input <?php echo $this->change_permission_attr; ?> name="bws_hide_premium_options_submit" type="checkbox" value="1" <?php if ( ! $this->hide_pro_tabs ) echo 'checked="checked "'; ?> />
575
+ <span class="bws_info"><?php _e( 'Enable to display plugin Pro options.', 'bestwebsoft' ); ?></span>
576
+ </label>
577
+ </td>
578
+ </tr>
579
  <?php } ?>
580
+ <tr>
581
+ <th scope="row"><?php _e( 'Track Usage', 'bestwebsoft' ); ?></th>
582
+ <td>
583
+ <label>
584
+ <input <?php echo $this->change_permission_attr; ?> name="bws_track_usage" type="checkbox" value="1" <?php if ( ! empty( $bstwbsftwppdtplgns_options['track_usage']['products'][ $this->plugin_basename ] ) ) echo 'checked="checked "'; ?>/>
585
+ <span class="bws_info"><?php _e( 'Enable to allow tracking plugin usage anonymously in order to make it better.', 'bestwebsoft' ); ?></span>
586
+ </label>
587
+ </td>
588
+ </tr>
589
+ <tr>
590
+ <th scope="row"><?php _e( 'Default Settings', 'bestwebsoft' ); ?></th>
591
+ <td>
592
+ <input<?php echo $this->change_permission_attr; ?> name="bws_restore_default" type="submit" class="button" value="<?php _e( 'Restore Settings', 'bestwebsoft' ); ?>" />
593
+ <div class="bws_info"><?php _e( 'This will restore plugin settings to defaults.', 'bestwebsoft' ); ?></div>
594
+ </td>
595
+ </tr>
596
+ </table>
597
  <?php }
598
  }
599
 
602
  * @access private
603
  */
604
  public function tab_import_export() { ?>
605
+ <h3 class="bws_tab_label"><?php _e( 'Import / Export', 'bestwebsoft' ); ?></h3>
606
  <?php $this->help_phrase(); ?>
607
+ <hr>
608
  <?php /**
609
  * action - Display custom options on the Import / Export' tab
610
  */
611
  do_action( __CLASS__ . '_additional_import_export_options' );
612
 
613
  if ( ! $this->forbid_view && ! empty( $this->change_permission_attr ) ) { ?>
614
+ <div class="error inline bws_visible"><p><strong><?php _e( "Notice", 'bestwebsoft' ); ?>:</strong> <strong><?php printf( __( "It is prohibited to change %s settings on this site in the %s network settings.", 'bestwebsoft' ), $this->plugins_info["Name"], $this->plugins_info["Name"] ); ?></strong></p></div>
615
  <?php }
616
  if ( $this->forbid_view ) { ?>
617
+ <div class="error inline bws_visible"><p><strong><?php _e( "Notice", 'bestwebsoft' ); ?>:</strong> <strong><?php printf( __( "It is prohibited to view %s settings on this site in the %s network settings.", 'bestwebsoft' ), $this->plugins_info["Name"], $this->plugins_info["Name"] ); ?></strong></p></div>
618
  <?php } else { ?>
619
+ <table class="form-table">
620
  <?php /**
621
  * action - Display custom options on the Import / Export' tab
622
  */
623
  do_action( __CLASS__ . '_additional_import_export_options_affected' ); ?>
624
+ </table>
625
  <?php }
626
  }
627
 
653
  else
654
  update_option( $this->prefix . '_options', $this->options );
655
  }
656
+ $this->hide_pro_tabs = false;
657
  } else {
658
  if ( empty( $this->options['hide_premium_options'] ) ) {
659
  $this->options['hide_premium_options'][] = get_current_user_id();
698
  $response = maybe_unserialize( wp_remote_retrieve_body( $raw_response ) );
699
 
700
  if ( is_array( $response ) &&
701
+ ! empty( $response['usage_id'] ) &&
702
+ $response['usage_id'] != $usage_id ) {
703
  $bstwbsftwppdtplgns_options['track_usage']['usage_id'] = $response['usage_id'];
704
  }
705
  }
711
  }
712
 
713
  return compact( 'notice' );
714
+ }
715
 
716
  /**
717
  *
718
  */
719
  public function tab_license() {
720
  global $wp_version, $bstwbsftwppdtplgns_options; ?>
721
+ <h3 class="bws_tab_label"><?php _e( 'License Key', 'bestwebsoft' ); ?></h3>
722
  <?php $this->help_phrase(); ?>
723
+ <hr>
724
+ <?php
725
+ foreach ( $this->licenses as $single_license) {
726
+ $pro_plugin_name = ( strpos( $single_license['name'], 'Pro' ) ) ? $single_license['name'] : $single_license['name'] . ' ' . 'Pro';
727
+ if ( ! empty( $this->pro_page ) || ! empty( $single_license['pro_basename'] ) ) {
728
+
729
+ if ( $this->pro_plugin_is_activated && ( empty( $single_license['pro_basename'] ) || isset( $this->bws_license_plugin ) ) ) {
730
+ deactivate_plugins( $single_license['basename'] ); ?>
731
+ <script type="text/javascript">
732
+ (function($) {
733
+ var i = 7;
734
+ function bws_set_timeout() {
735
+ i--;
736
+ if ( 0 == i ) {
737
+ window.location.href = '<?php echo esc_url( self_admin_url( $this->pro_page ) ); ?>';
738
+ } else {
739
+ $( '#bws_timeout_counter' ).text( i );
740
+ window.setTimeout( bws_set_timeout, 1000 );
741
+ }
742
  }
743
+ window.setTimeout( bws_set_timeout, 1000 );
744
+ })(jQuery);
745
+ </script>
746
+ <p><strong><?php printf( __( 'Congratulations! %s license is activated successfully.', 'bestwebsoft' ), $pro_plugin_name ); ?></strong></p>
747
+ <p><?php printf( __( 'You will be automatically redirected to the %s in %s seconds.', 'bestwebsoft' ), '<a href="' . esc_url( self_admin_url( $this->pro_page ) ) . '">' . __( 'Settings page', 'bestwebsoft' ) . '</a>', '<span id="bws_timeout_counter">7</span>' ); ?></p>
748
+ <?php } else {
749
+ $attr = '';
750
+ if ( isset( $bstwbsftwppdtplgns_options['go_pro'][ $this->bws_license_plugin ]['count'] ) &&
751
+ '5' < $bstwbsftwppdtplgns_options['go_pro'][ $this->bws_license_plugin ]['count'] &&
752
+ $bstwbsftwppdtplgns_options['go_pro'][ $this->bws_license_plugin ]['time'] > ( time() - ( 24 * 60 * 60 ) ) )
753
+ $attr = 'disabled="disabled"';
754
+
755
+
756
+ $license_key = '';
757
+ if( ! empty( $single_license['pro_basename'] ) ) {
758
+ $license_key = ! empty( $bstwbsftwppdtplgns_options[ $single_license['pro_basename'] ] ) ? $bstwbsftwppdtplgns_options[ $single_license['pro_basename'] ] : '';
759
+ }
760
+ $current_plugin_link = ( ! empty( $this->link_key ) && ! empty( $this->link_pn ) ? esc_url( 'https://bestwebsoft.com/products/wordpress/plugins/' . $single_license['slug'] . '/' . '?k=' . $this->link_key . '&pn=' . $this->link_pn . '&v=' . $this->plugins_info["Version"] . '&wp_v=' . $wp_version ) : esc_url( 'https://bestwebsoft.com/products/wordpress/plugins/' . $single_license['slug'] . '/' ) );
761
+ ?>
762
+ <table class="form-table">
763
+ <tr>
764
+ <th scope="row"><?php echo $pro_plugin_name . ' License'; ?></th>
765
+ <td>
766
+ <input <?php echo $attr; ?> type="text" name="bws_license_key_<?php echo ( ! empty( $single_license['pro_slug'] ) ) ? $single_license['pro_slug'] : $single_license['slug']; ?>" value="<?php echo esc_attr( $license_key ); ?>" />
767
+ <input <?php echo $attr; ?> type="hidden" name="bws_license_plugin_<?php echo ( ! empty( $single_license['pro_slug'] ) ) ? $single_license['pro_slug'] : $single_license['slug']; ?>" value="<?php echo esc_attr( ( ! empty( $single_license['pro_slug'] ) ) ? $single_license['pro_slug'] : $single_license['slug'] ); ?>" />
768
+ <input <?php echo $attr; ?> type="submit" class="button button-secondary" name="bws_license_submit" value="<?php _e( 'Activate', 'bestwebsoft' ); ?>" />
769
+ <div class="bws_info">
770
+ <?php printf( __( 'Enter your license key to activate %s and get premium plugin features.', 'bestwebsoft' ), '<a href="' . $current_plugin_link . '" target="_blank" title="' . $pro_plugin_name . '">' . $pro_plugin_name . '</a>' ); ?>
771
+ </div>
772
+ <?php if ( '' != $attr ) { ?>
773
+ <p><?php _e( "Unfortunately, you have exceeded the number of available tries per day. Please, upload the plugin manually.", 'bestwebsoft' ); ?></p>
774
+ <?php }
775
+ if ( $this->trial_days !== false )
776
+ echo '<p>' . __( 'or', 'bestwebsoft' ) . ' <a href="' . esc_url( $this->plugins_info['PluginURI'] . 'trial/?k=' . $this->link_key . '&pn=' . $this->link_pn . '&v=' . $this->plugins_info["Version"] . '&wp_v=' . $wp_version ) . '" target="_blank">' . sprintf( __( 'Start Your Free %s-Day Trial Now', 'bestwebsoft' ), $this->trial_days ) . '</a></p>'; ?>
777
+ </td>
778
+ </tr>
779
+ </table>
780
+ <?php }
781
+ } else {
782
+ global $bstwbsftwppdtplgns_options;
783
+ $license_key = ( isset( $bstwbsftwppdtplgns_options[ $single_license['basename'] ] ) ) ? $bstwbsftwppdtplgns_options[ $single_license['basename'] ] : ''; ?>
784
+ <table class="form-table">
785
+ <tr>
786
+ <th scope="row"><?php echo $pro_plugin_name . ' License'; ?></th>
787
+ <td>
788
+ <input type="text" maxlength="100" name="bws_license_key_<?php echo $single_license['slug']; ?>" value="<?php echo esc_attr( $license_key ); ?>" />
789
+ <input type="submit" class="button button-secondary" name="bws_license_submit" value="<?php _e( 'Check license key', 'bestwebsoft' ); ?>" />
790
+ <div class="bws_info">
791
+ <?php _e( 'If necessary, you can check if the license key is correct or reenter it in the field below.', 'bestwebsoft' ); ?>
792
+ </div>
793
+ </td>
794
+ </tr>
795
+ </table>
796
  <?php }
797
+ } ?>
798
+ <table class="form-table">
799
+ <tr>
800
+ <th scope="row"><?php _e( 'Manage License Settings', 'bestwebsoft' ); ?></th>
801
+ <td>
802
+ <a class="button button-secondary" href="https://bestwebsoft.com/client-area" target="_blank"><?php _e( 'Login to Client Area', 'bestwebsoft' ); ?></a>
803
+ <div class="bws_info">
804
+ <?php _e( 'Manage active licenses, download BWS products, and view your payment history using BestWebSoft Client Area.', 'bestwebsoft' ); ?>
805
+ </div>
806
+ </td>
807
+ </tr>
808
+ </table>
809
+ <?php }
 
 
 
 
 
 
 
 
 
 
 
 
 
810
 
811
  /**
812
  * Save plugin options to the database
816
  */
817
  private function save_options_license_key() {
818
  global $wp_version, $bstwbsftwppdtplgns_options;
819
+ /*$empty_field_error - added to avoid error when 1 field is empty while another field contains license key*/
820
+ $empty_field_error = '';
821
+ foreach ( $this->licenses as $single_license) {
822
+ $bws_license_key = ( isset( $_POST[ ( ! empty( $single_license['pro_slug'] ) ) ? 'bws_license_key_' . $single_license['pro_slug'] : 'bws_license_key_' . $single_license['slug'] ] ) ) ? stripslashes( sanitize_text_field( $_POST[ ( ! empty( $single_license['pro_slug'] ) ) ? 'bws_license_key_' . $single_license['pro_slug'] : 'bws_license_key_' . $single_license['slug'] ] ) ) : '';
823
+ if ( '' != $bws_license_key ) {
824
+ if ( strlen( $bws_license_key ) != 18 ) {
825
+ $error = __( 'Wrong license key', 'bestwebsoft' );
826
+ } else {
827
 
828
+ /* CHECK license key */
829
+ if ( $this->is_pro && empty( $single_license['pro_basename'] ) ) {
830
+ delete_transient( 'bws_plugins_update' );
831
+ if ( ! $this->all_plugins ) {
832
+ if ( ! function_exists( 'get_plugins' ) ) {
833
+ require_once( ABSPATH . 'wp-admin/includes/plugin.php' );
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
834
  }
835
+ $this->all_plugins = get_plugins();
836
  }
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
837
  $current = get_site_transient( 'update_plugins' );
838
+
839
+ if ( ! empty( $this->all_plugins ) && ! empty( $current ) && isset( $current->response ) && is_array( $current->response ) ) {
840
  $to_send = array();
841
+ $to_send["plugins"][ ( ! empty( $single_license['pro_basename'] ) ) ? $single_license['pro_basename'] : $single_license['basename'] ] = $this->all_plugins[ ( ! empty( $single_license['pro_basename'] ) ) ? $single_license['pro_basename'] : $single_license['basename'] ];
842
+ $to_send["plugins"][ ( ! empty( $single_license['pro_basename'] ) ) ? $single_license['pro_basename'] : $single_license['basename'] ]["bws_license_key"] = $bws_license_key;
843
+ $to_send["plugins"][ ( ! empty( $single_license['pro_basename'] ) ) ? $single_license['pro_basename'] : $single_license['basename'] ]["bws_illegal_client"] = true;
844
+ $options = array(
845
+ 'timeout' => ( ( defined( 'DOING_CRON' ) && DOING_CRON ) ? 30 : 3 ),
846
+ 'body' => array( 'plugins' => serialize( $to_send ) ),
847
+ 'user-agent' => 'WordPress/' . $wp_version . '; ' . get_bloginfo( 'url' )
848
+ );
849
  $raw_response = wp_remote_post( 'http://bestwebsoft.com/wp-content/plugins/paid-products/plugins/update-check/1.0/', $options );
850
 
851
  if ( is_wp_error( $raw_response ) || 200 != wp_remote_retrieve_response_code( $raw_response ) ) {
852
+ $error = __( 'Something went wrong. Please try again later. If the error appears again, please contact us', 'bestwebsoft' ) . ': <a href=https://support.bestwebsoft.com>BestWebSoft</a>. ' . __( 'We are sorry for inconvenience.', 'bestwebsoft' );
853
  } else {
854
  $response = maybe_unserialize( wp_remote_retrieve_body( $raw_response ) );
855
  if ( is_array( $response ) && ! empty( $response ) ) {
856
  foreach ( $response as $single_response ) {
857
  if ( "wrong_license_key" == $single_response->package ) {
858
+ $error = __( 'Wrong license key.', 'bestwebsoft' );
859
+ } else if ( "wrong_domain" == $single_response->package ) {
860
+ $error = __( 'This license key is bound to another site.', 'bestwebsoft' );
861
+ } else if ( "time_out" == $single_response->package ) {
862
+ $message = __( 'This license key is valid, but Your license has expired. If you want to update our plugin in future, you should extend the license.', 'bestwebsoft' );
863
  } elseif ( "you_are_banned" == $single_response->package ) {
864
+ $error = __( "Unfortunately, you have exceeded the number of available tries.", 'bestwebsoft' );
 
 
865
  } elseif ( "duplicate_domen_for_trial" == $single_response->package ) {
866
+ $error = __( "Unfortunately, the Pro Trial licence was already installed to this domain. The Pro Trial license can be installed only once.", 'bestwebsoft' );
867
+ }
868
+ if ( empty( $error ) ) {
869
+ if ( empty( $message ) ) {
870
+ if ( isset( $single_response->trial ) ) {
871
+ $message = __( 'The Pro Trial license key is valid.', 'bestwebsoft' );
872
+ } else {
873
+ $message = __( 'The license key is valid.', 'bestwebsoft' );
874
+ }
875
+
876
+ if ( ! empty( $single_response->time_out ) ) {
877
+ $message .= ' ' . __( 'Your license will expire on', 'bestwebsoft' ) . ' ' . $single_response->time_out . '.';
878
+ }
879
+
880
+ if ( isset( $single_response->trial ) && $this->is_trial ) {
881
+ $message .= ' ' . sprintf( __( 'In order to continue using the plugin it is necessary to buy a %s license.', 'bestwebsoft' ), '<a href="' . esc_url( $this->plugins_info['PluginURI'] . '?k=' . $this->link_key . '&pn=' . $this->link_pn . '&v=' . $this->plugins_info["Version"] . '&wp_v=' . $wp_version ) . '" target="_blank" title="' . $this->plugins_info["Name"] . '">Pro</a>' );
882
+ }
883
+ }
884
+
885
+ if ( isset( $single_response->trial ) ) {
886
+ $bstwbsftwppdtplgns_options['trial'][ ( ! empty( $single_license['pro_basename'] ) ) ? $single_license['pro_basename'] : $single_license['basename'] ] = 1;
887
+ } else {
888
+ unset( $bstwbsftwppdtplgns_options['trial'][ ( ! empty( $single_license['pro_basename'] ) ) ? $single_license['pro_basename'] : $single_license['basename'] ] );
889
+ }
890
+
891
+ if ( isset( $single_response->nonprofit ) ) {
892
+ $bstwbsftwppdtplgns_options['nonprofit'][ ( ! empty( $single_license['pro_basename'] ) ) ? $single_license['pro_basename'] : $single_license['basename'] ] = 1;
893
+ } else {
894
+ unset( $bstwbsftwppdtplgns_options['nonprofit'][ ( ! empty( $single_license['pro_basename'] ) ) ? $single_license['pro_basename'] : $single_license['basename'] ] );
895
+ }
896
+
897
+ if ( ! isset( $bstwbsftwppdtplgns_options[ ( ! empty( $single_license['pro_basename'] ) ) ? $single_license['pro_basename'] : $single_license['basename'] ] ) || $bstwbsftwppdtplgns_options[ ( ! empty( $single_license['pro_basename'] ) ) ? $single_license['pro_basename'] : $single_license['basename'] ] != $bws_license_key ) {
898
+ $bstwbsftwppdtplgns_options[ ( ! empty( $single_license['pro_basename'] ) ) ? $single_license['pro_basename'] : $single_license['basename'] ] = $bws_license_key;
899
+
900
+ $file = @fopen( dirname( dirname( __FILE__ ) ) . "/license_key.txt", "w+" );
901
+ if ( $file ) {
902
+ @fwrite( $file, $bws_license_key );
903
+ @fclose( $file );
904
+ }
905
+ $update_option = true;
906
+ }
907
+
908
+ if ( ! isset( $bstwbsftwppdtplgns_options['time_out'][ ( ! empty( $single_license['pro_basename'] ) ) ? $single_license['pro_basename'] : $single_license['basename'] ] ) || $bstwbsftwppdtplgns_options['time_out'][ ( ! empty( $single_license['pro_basename'] ) ) ? $single_license['pro_basename'] : $single_license['basename'] ] != $single_response->time_out ) {
909
+ $bstwbsftwppdtplgns_options['time_out'][ ( ! empty( $single_license['pro_basename'] ) ) ? $single_license['pro_basename'] : $single_license['basename'] ] = $single_response->time_out;
910
+ $update_option = true;
911
+ }
912
+
913
+ if ( isset( $update_option ) ) {
914
+ if ( $this->is_multisite ) {
915
+ update_site_option( 'bstwbsftwppdtplgns_options', $bstwbsftwppdtplgns_options );
916
+ } else {
917
+ update_option( 'bstwbsftwppdtplgns_options', $bstwbsftwppdtplgns_options );
918
+ }
919
+ }
920
  }
921
  }
922
+ } else {
923
+ $error = __( 'Something went wrong. Please try again later. If the error appears again, please contact us', 'bestwebsoft' ) . ' <a href=https://support.bestwebsoft.com>BestWebSoft</a>. ' . __( 'We are sorry for inconvenience.', 'bestwebsoft' );
924
+ }
925
+ }
926
+ }
927
+ /* Go Pro */
928
+ } else {
929
+
930
+ $bws_license_plugin = stripslashes( sanitize_text_field( $_POST[ ( ! empty( $single_license['pro_slug'] ) ) ? 'bws_license_plugin_' . $single_license['pro_slug'] : 'bws_license_plugin_' . $single_license['slug'] ] ) );
931
+ if ( isset( $bstwbsftwppdtplgns_options['go_pro'][ $bws_license_plugin ]['count'] ) && $bstwbsftwppdtplgns_options['go_pro'][ $bws_license_plugin ]['time'] > ( time() - ( 24 * 60 * 60 ) ) ) {
932
+ $bstwbsftwppdtplgns_options['go_pro'][ $bws_license_plugin ]['count'] = $bstwbsftwppdtplgns_options['go_pro'][ $bws_license_plugin ]['count'] + 1;
933
+ } else {
934
+ $bstwbsftwppdtplgns_options['go_pro'][ $bws_license_plugin ]['count'] = 1;
935
+ $bstwbsftwppdtplgns_options['go_pro'][ $bws_license_plugin ]['time'] = time();
936
+ }
937
+
938
+ /* download Pro */
939
+ if ( ! $this->all_plugins ) {
940
+ if ( ! function_exists( 'get_plugins' ) ) {
941
+ require_once( ABSPATH . 'wp-admin/includes/plugin.php' );
942
+ }
943
+ $this->all_plugins = get_plugins();
944
+ }
945
+
946
+ if ( ! array_key_exists( $bws_license_plugin, $this->all_plugins ) ) {
947
+ $current = get_site_transient( 'update_plugins' );
948
+ if ( ! empty( $current ) && isset( $current->response ) && is_array( $current->response ) ) {
949
+ $to_send = array();
950
+ $to_send["plugins"][ $bws_license_plugin ] = array();
951
+ $to_send["plugins"][ $bws_license_plugin ]["bws_license_key"] = $bws_license_key;
952
+ $to_send["plugins"][ $bws_license_plugin ]["bws_illegal_client"] = true;
953
+ $options = array(
954
+ 'timeout' => ( ( defined( 'DOING_CRON' ) && DOING_CRON ) ? 30 : 3 ),
955
+ 'body' => array( 'plugins' => serialize( $to_send ) ),
956
+ 'user-agent' => 'WordPress/' . $wp_version . '; ' . get_bloginfo( 'url' )
957
+ );
958
+ $raw_response = wp_remote_post( 'http://bestwebsoft.com/wp-content/plugins/paid-products/plugins/update-check/1.0/', $options );
959
+
960
+ if ( is_wp_error( $raw_response ) || 200 != wp_remote_retrieve_response_code( $raw_response ) ) {
961
+ $error = __( "Something went wrong. Please try again later. If the error appears again, please contact us", 'bestwebsoft' ) . ': <a href="https://support.bestwebsoft.com">BestWebSoft</a>. ' . __( "We are sorry for inconvenience.", 'bestwebsoft' );
962
+ } else {
963
+ $response = maybe_unserialize( wp_remote_retrieve_body( $raw_response ) );
964
+ if ( is_array( $response ) && ! empty( $response ) ) {
965
+ foreach ( $response as $single_response ) {
966
+ if ( "wrong_license_key" == $single_response->package ) {
967
+ $error = __( "Wrong license key.", 'bestwebsoft' );
968
+ } elseif ( "wrong_domain" == $single_response->package ) {
969
+ $error = __( "This license key is bound to another site.", 'bestwebsoft' );
970
+ } elseif ( "you_are_banned" == $single_response->package ) {
971
+ $error = __( "Unfortunately, you have exceeded the number of available tries per day. Please, upload the plugin manually.", 'bestwebsoft' );
972
+ } elseif ( "time_out" == $single_response->package ) {
973
+ $error = sprintf( __( "Unfortunately, Your license has expired. To continue getting top-priority support and plugin updates, you should extend it in your %s.", 'bestwebsoft' ), ' <a href="https://bestwebsoft.com/client-area">Client Area</a>' );
974
+ } elseif ( "duplicate_domen_for_trial" == $single_response->package ) {
975
+ $error = __( "Unfortunately, the Pro licence was already installed to this domain. The Pro Trial license can be installed only once.", 'bestwebsoft' );
976
+ }
977
  }
978
+ if ( empty( $error ) ) {
979
+ $bws_license_plugin = ( ! empty( $single_license['pro_basename'] ) ) ? $single_license['pro_basename'] : $single_license['basename'];
980
+
981
+ $bstwbsftwppdtplgns_options[ $bws_license_plugin ] = $bws_license_key;
982
+
983
+ $url = 'http://bestwebsoft.com/wp-content/plugins/paid-products/plugins/downloads/?bws_first_download=' . $bws_license_plugin . '&bws_license_key=' . $bws_license_key . '&download_from=5';
984
 
985
+ if ( ! $this->upload_dir ) {
986
+ $this->upload_dir = wp_upload_dir();
987
+ }
988
+
989
+ $zip_name = explode( '/', $bws_license_plugin );
990
+
991
+ if ( ! function_exists( 'curl_init' ) ) {
992
+ $received_content = file_get_contents( $url );
993
+ } else {
994
+ $ch = curl_init();
995
+ curl_setopt( $ch, CURLOPT_URL, $url );
996
+ curl_setopt( $ch, CURLOPT_RETURNTRANSFER, true );
997
+ $received_content = curl_exec( $ch );
998
+ curl_close( $ch );
999
+ }
1000
+
1001
+ if ( ! $received_content ) {
1002
+ $error = __( "Failed to download the zip archive. Please, upload the plugin manually.", 'bestwebsoft' );
1003
+ } else {
1004
+ if ( is_writable( $this->upload_dir["path"] ) ) {
1005
+ $file_put_contents = $this->upload_dir["path"] . "/" . $zip_name[0] . ".zip";
1006
+ if ( file_put_contents( $file_put_contents, $received_content ) ) {
1007
+ @chmod( $file_put_contents, octdec( 755 ) );
1008
+ if ( class_exists( 'ZipArchive' ) ) {
1009
+ $zip = new ZipArchive();
1010
+ if ( $zip->open( $file_put_contents ) === true ) {
1011
+ $zip->extractTo( WP_PLUGIN_DIR );
1012
+ $zip->close();
1013
+ } else {
1014
+ $error = __( "Failed to open the zip archive. Please, upload the plugin manually.", 'bestwebsoft' );
1015
+ }
1016
+ } elseif ( class_exists( 'Phar' ) ) {
1017
+ $phar = new PharData( $file_put_contents );
1018
+ $phar->extractTo( WP_PLUGIN_DIR );
1019
  } else {
1020
+ $error = __( "Your server does not support either ZipArchive or Phar. Please, upload the plugin manually.", 'bestwebsoft' );
1021
  }
1022
+ @unlink( $file_put_contents );
 
 
1023
  } else {
1024
+ $error = __( "Failed to download the zip archive. Please, upload the plugin manually.", 'bestwebsoft' );
1025
  }
 
1026
  } else {
1027
+ $error = __( "UploadDir is not writable. Please, upload the plugin manually.", 'bestwebsoft' );
1028
  }
 
 
1029
  }
 
1030
 
1031
+ /* activate Pro */
1032
+ if ( file_exists( WP_PLUGIN_DIR . '/' . $zip_name[0] ) ) {
1033
+ if ( $this->is_multisite && is_plugin_active_for_network( ( ! empty( $single_license['pro_basename'] ) ) ? $single_license['pro_basename'] : $single_license['basename'] ) ) {
1034
+ /* if multisite and free plugin is network activated */
1035
+ $active_plugins = get_site_option( 'active_sitewide_plugins' );
1036
+ $active_plugins[ $bws_license_plugin ] = time();
1037
+ update_site_option( 'active_sitewide_plugins', $active_plugins );
1038
+ } else {
1039
+ /* activate on a single blog */
1040
+ $active_plugins = get_option( 'active_plugins' );
1041
+ array_push( $active_plugins, $bws_license_plugin );
1042
+ update_option( 'active_plugins', $active_plugins );
1043
+ }
1044
+ $this->pro_plugin_is_activated = true;
1045
+ } elseif ( empty( $error ) ) {
1046
+ $error = __( "Failed to download the zip archive. Please, upload the plugin manually.", 'bestwebsoft' );
1047
  }
 
 
 
1048
  }
1049
+ } else {
1050
+ $error = __( "Something went wrong. Try again later or upload the plugin manually. We are sorry for inconvenience.", 'bestwebsoft' );
1051
  }
1052
+ }
1053
+ }
1054
+ } else {
1055
+ $bstwbsftwppdtplgns_options[ $bws_license_plugin ] = $bws_license_key;
1056
+ /* activate Pro */
1057
+ if ( ! is_plugin_active( $bws_license_plugin ) ) {
1058
+ if ( $this->is_multisite && is_plugin_active_for_network( ( ! empty( $single_license['pro_basename'] ) ) ? $single_license['pro_basename'] : $single_license['basename'] ) ) {
1059
+ /* if multisite and free plugin is network activated */
1060
+ $network_wide = true;
1061
  } else {
1062
+ /* activate on a single blog */
1063
+ $network_wide = false;
1064
  }
1065
+ activate_plugin( $bws_license_plugin, null, $network_wide );
1066
+ $this->pro_plugin_is_activated = true;
1067
  }
1068
  }
1069
+ /* add 'track_usage' for Pro version */
1070
+ if ( ! empty( $bstwbsftwppdtplgns_options['track_usage'][ ( ! empty( $single_license['pro_basename'] ) ) ? $single_license['pro_basename'] : $single_license['basename'] ] ) &&
1071
+ empty( $bstwbsftwppdtplgns_options['track_usage'][ $bws_license_plugin ] ) ) {
1072
+ $bstwbsftwppdtplgns_options['track_usage'][ $bws_license_plugin ] = $bstwbsftwppdtplgns_options['track_usage'][ ( ! empty( $single_license['pro_basename'] ) ) ? $single_license['pro_basename'] : $single_license['basename'] ];
 
 
 
 
 
 
 
 
 
1073
  }
 
 
 
 
 
 
1074
 
1075
+ if ( $this->is_multisite ) {
1076
+ update_site_option( 'bstwbsftwppdtplgns_options', $bstwbsftwppdtplgns_options );
1077
+ } else {
1078
+ update_option( 'bstwbsftwppdtplgns_options', $bstwbsftwppdtplgns_options );
1079
+ }
1080
 
1081
+ if ( $this->pro_plugin_is_activated ) {
1082
+ delete_transient( 'bws_plugins_update' );
1083
+ }
1084
+ }
1085
  }
1086
+ } else {
1087
+ $empty_field_error = __( "Please, enter Your license key", 'bestwebsoft' );
1088
  }
 
 
1089
  }
1090
+ return compact( 'error', 'message', 'empty_field_error' );
1091
  }
1092
 
1093
  /**
1107
  echo '</a></div>';
1108
  }
1109
 
1110
+ public function bws_pro_block_links() {
1111
  global $wp_version; ?>
1112
+ <div class="bws_pro_version_tooltip">
1113
+ <a class="bws_button" href="<?php echo esc_url( $this->plugins_info['PluginURI'] ); ?>?k=<?php echo $this->link_key; ?>&amp;pn=<?php echo $this->link_pn; ?>&amp;v=<?php echo $this->plugins_info["Version"]; ?>&amp;wp_v=<?php echo $wp_version; ?>" target="_blank" title="<?php echo $this->plugins_info["Name"]; ?>"><?php _e( 'Upgrade to Pro', 'bestwebsoft' ); ?></a>
1114
  <?php if ( $this->trial_days !== false ) { ?>
1115
+ <span class="bws_trial_info">
1116
+ <?php _e( 'or', 'bestwebsoft' ); ?>
1117
+ <a href="<?php echo esc_url( $this->plugins_info['PluginURI'] . '?k=' . $this->link_key . '&pn=' . $this->link_pn . '&v=' . $this->plugins_info["Version"] . '&wp_v=' . $wp_version ); ?>" target="_blank" title="<?php echo $this->plugins_info["Name"]; ?>"><?php _e( 'Start Your Free Trial', 'bestwebsoft' ); ?></a>
1118
  </span>
1119
  <?php } ?>
1120
+ <div class="clear"></div>
1121
+ </div>
1122
  <?php }
1123
 
1124
  /**
bws_menu/js/bws_menu.js CHANGED
@@ -43,4 +43,4 @@
43
  });
44
 
45
  });
46
- })(jQuery);
43
  });
44
 
45
  });
46
+ })(jQuery);
bws_menu/languages/bestwebsoft-cs_CZ.mo CHANGED
Binary file
bws_menu/languages/bestwebsoft-cs_CZ.po CHANGED
@@ -2,8 +2,8 @@ msgid ""
2
  msgstr ""
3
  "Project-Id-Version: bestwebsoft\n"
4
  "Report-Msgid-Bugs-To: \n"
5
- "POT-Creation-Date: 2017-09-11 16:42+0300\n"
6
- "PO-Revision-Date: 2017-09-11 16:42+0300\n"
7
  "Last-Translator: Mik013\n"
8
  "Language-Team: Mik013\n"
9
  "Language: cs_CZ\n"
@@ -43,7 +43,7 @@ msgstr "Líbí se vám plugin?"
43
  #: bws_functions.php:93
44
  #, php-format
45
  msgid "%s reviews"
46
- msgstr ""
47
 
48
  #: bws_functions.php:94
49
  msgid "Rate it"
@@ -51,9 +51,9 @@ msgstr "Ohodnoťte jej"
51
 
52
  #: bws_functions.php:103
53
  msgid "Need help?"
54
- msgstr "Potřebujete pomoc?"
55
 
56
- #: bws_functions.php:104 bws_functions.php:917 class-bws-settings.php:1058
57
  msgid "Visit Help Center"
58
  msgstr "Navštivte Centrum pomoci"
59
 
@@ -130,7 +130,7 @@ msgstr ""
130
  #: bws_functions.php:208
131
  #, php-format
132
  msgid "Thank you for installing %s plugin!"
133
- msgstr "Děkujeme vám za instalaci %s pluginu!"
134
 
135
  #: bws_functions.php:210
136
  msgid "Let's get started"
@@ -205,7 +205,7 @@ msgstr ""
205
  #: bws_functions.php:482
206
  #, php-format
207
  msgid "Thank you for choosing %s plugin!"
208
- msgstr "Děkujeme, že jste si vybrali %s plugin!"
209
 
210
  #: bws_functions.php:483
211
  msgid ""
@@ -243,20 +243,20 @@ msgstr ""
243
 
244
  #: bws_functions.php:653
245
  msgid "Add BWS Shortcode"
246
- msgstr "Přidávejte zkrácený kód BWS"
247
 
248
  #: bws_functions.php:654
249
  msgid "Add BWS Plugins Shortcode"
250
- msgstr "Přidávejte zkrácený kód BWS pluginů"
251
 
252
  #: bws_functions.php:673
253
  msgid "Add shortcode"
254
- msgstr "Přidat krátký kód"
255
 
256
  #: bws_functions.php:673
257
  msgid "Add BestWebSoft plugins' shortcodes using this button."
258
  msgstr ""
259
- "Pomocí tohoto tlačítka můžete přidávat krátké kódy BestWebSoft pluginu."
260
 
261
  #: bws_functions.php:729
262
  msgid "Close"
@@ -280,29 +280,30 @@ msgstr "Plugin"
280
 
281
  #: bws_functions.php:876
282
  msgid "Shortcode settings"
283
- msgstr "Nastavení krátkých kódů"
284
 
285
  #: bws_functions.php:881
286
  msgid "The shortcode will be inserted"
287
- msgstr "Bude vložen krátký kód"
288
 
289
- #: bws_functions.php:922
290
  msgid "FAQ"
291
- msgstr "Často kladené otázky (FAQ)"
 
292
 
293
- #: bws_functions.php:928
294
  msgid "For more information:"
295
  msgstr "Pro více informací:"
296
 
297
- #: bws_functions.php:929
298
  msgid "Documentation"
299
  msgstr "Dokumentace"
300
 
301
- #: bws_functions.php:930
302
  msgid "Video Instructions"
303
  msgstr "Video instrukce"
304
 
305
- #: bws_functions.php:931
306
  msgid "Submit a Request"
307
  msgstr "Odeslat požadavek"
308
 
@@ -374,7 +375,7 @@ msgstr "Vaše licence vyprší"
374
 
375
  #: bws_menu.php:146
376
  msgid "Congratulations! Pro Membership license is activated successfully."
377
- msgstr ""
378
 
379
  #: bws_menu.php:153 class-bws-settings.php:1007 deprecated.php:436
380
  msgid ""
@@ -449,7 +450,7 @@ msgstr "Aktivovat šablonu"
449
  #: bws_menu.php:203 bws_menu.php:248 bws_menu.php:251
450
  #, php-format
451
  msgid "by %s"
452
- msgstr "podle %s"
453
 
454
  #: bws_menu.php:207
455
  msgid "Server Environment"
@@ -538,7 +539,7 @@ msgstr "Prosím vložte platnou e-mailovou adresu."
538
  #: bws_menu.php:262
539
  #, php-format
540
  msgid "Email with system info is sent to %s."
541
- msgstr ""
542
 
543
  #: bws_menu.php:266
544
  msgid "Thank you for contacting us."
@@ -575,7 +576,7 @@ msgstr "Získejte přístup k %s+ Premiovým pluginům"
575
 
576
  #: bws_menu.php:326
577
  msgid "Subscribe to Pro Membership"
578
- msgstr "Přihlásit se k Pro členství"
579
 
580
  #: bws_menu.php:334 bws_menu.php:345 class-bws-settings.php:760
581
  #: deprecated.php:227
@@ -735,7 +736,7 @@ msgstr "Již instalováno"
735
 
736
  #: bws_menu.php:645
737
  msgid "Browse More WordPress Themes"
738
- msgstr ""
739
 
740
  #: bws_menu.php:654
741
  msgid "Send to support"
@@ -901,7 +902,7 @@ msgstr "Gratulujeme! PRO licence byla úspěšně aktivována."
901
  #: class-bws-settings.php:726
902
  #, php-format
903
  msgid "You will be automatically redirected to the %s in %s seconds."
904
- msgstr "Za %s sekund budete automaticky přesměrováni na %s."
905
 
906
  #: class-bws-settings.php:726
907
  msgid "Settings page"
@@ -911,7 +912,8 @@ msgstr "Stránka nastavení"
911
  #, php-format
912
  msgid "Enter your license key to activate %s and get premium plugin features."
913
  msgstr ""
914
- "Vložte váš licenční klíč pro aktivaci %s a získání prémiových fukcí pluginu."
 
915
 
916
  #: class-bws-settings.php:744 class-bws-settings.php:931 deprecated.php:363
917
  #: deprecated.php:706
@@ -925,7 +927,7 @@ msgstr ""
925
  #: class-bws-settings.php:747 deprecated.php:697
926
  #, php-format
927
  msgid "Start Your Free %s-Day Trial Now"
928
- msgstr "Vyzkoušejte vaší %s-denní zkušební verzi zdarma nyní"
929
 
930
  #: class-bws-settings.php:762
931
  msgid ""
@@ -993,25 +995,29 @@ msgid ""
993
  "Unfortunately, Your license has expired. To continue getting top-priority "
994
  "support and plugin updates, you should extend it in your %s."
995
  msgstr ""
 
 
996
 
997
  #: class-bws-settings.php:959 class-bws-settings.php:981
998
  #: class-bws-settings.php:1003
999
  msgid "Failed to download the zip archive. Please, upload the plugin manually."
1000
- msgstr ""
1001
 
1002
  #: class-bws-settings.php:971
1003
  msgid "Failed to open the zip archive. Please, upload the plugin manually."
1004
- msgstr ""
1005
 
1006
  #: class-bws-settings.php:977
1007
  msgid ""
1008
  "Your server does not support either ZipArchive or Phar. Please, upload the "
1009
  "plugin manually."
1010
  msgstr ""
 
 
1011
 
1012
  #: class-bws-settings.php:984
1013
  msgid "UploadDir is not writable. Please, upload the plugin manually."
1014
- msgstr ""
1015
 
1016
  #: class-bws-settings.php:1042 deprecated.php:464
1017
  msgid "Please, enter Your license key"
@@ -1019,7 +1025,7 @@ msgstr "Prosím, vložte váš licenční klíč"
1019
 
1020
  #: class-bws-settings.php:1054
1021
  msgid "Need Help?"
1022
- msgstr "Potřebujete pomoc?"
1023
 
1024
  #: class-bws-settings.php:1056
1025
  msgid "Read the Instruction"
@@ -1061,7 +1067,7 @@ msgstr "Co jste očekávali?"
1061
 
1062
  #: deactivation-form.php:44
1063
  msgid "The plugin suddenly stopped working"
1064
- msgstr "Plugin náhle přestal pracovat"
1065
 
1066
  #: deactivation-form.php:51
1067
  msgid "The plugin broke my site"
@@ -1094,7 +1100,7 @@ msgstr "Nadále již tento plugin nepotřebuji"
1094
 
1095
  #: deactivation-form.php:83
1096
  msgid "It's a temporary deactivation, I'm just debugging an issue"
1097
- msgstr "Jedná se o dočasnou deaktivaci, pouze jsem ladím problém"
1098
 
1099
  #: deactivation-form.php:89
1100
  msgid "Other"
@@ -1110,7 +1116,7 @@ msgstr "Máte-li chvilku, sdělte nám důvod, proč deaktivujete tento plugin"
1110
 
1111
  #: deactivation-form.php:127
1112
  msgid "Send website data and allow to contact me back"
1113
- msgstr ""
1114
 
1115
  #: deactivation-form.php:132
1116
  msgid "Cancel"
@@ -1177,7 +1183,7 @@ msgstr "Gratulujeme! PRO licence pluginu je úspěšně aktivována."
1177
 
1178
  #: deprecated.php:281 deprecated.php:672
1179
  msgid "Please, go to"
1180
- msgstr "Prosím, jděte na"
1181
 
1182
  #: deprecated.php:281 deprecated.php:672
1183
  msgid "the setting page"
@@ -1272,7 +1278,7 @@ msgstr "SMM"
1272
 
1273
  #: product_list.php:22
1274
  msgid "Best secure captcha plugin to protect your WordPress forms."
1275
- msgstr ""
1276
 
1277
  #: product_list.php:32
1278
  msgid "Create your personal car rental/booking and reservation website."
@@ -1596,7 +1602,7 @@ msgid ""
1596
  "Add Twitter Follow, Tweet, Hashtag, and Mention buttons to WordPress posts "
1597
  "and pages."
1598
  msgstr ""
1599
- "Přidávejte Twitter tlačítka sledovat, twítnout a zmínit do WordPress "
1600
  "příspěvků a stránek."
1601
 
1602
  #: product_list.php:427
@@ -1630,73 +1636,3 @@ msgid ""
1630
  msgstr ""
1631
  "Automaticky zálohujte a exportujte obsah centra nápovědy Zendesk do databáze "
1632
  "vašeho WordPress webu."
1633
-
1634
- #~ msgid "Anonymous feedback"
1635
- #~ msgstr "Anonymní zpětná vazba"
1636
-
1637
- #~ msgid ""
1638
- #~ "Protect WordPress website forms from spam entries by means of math logic."
1639
- #~ msgstr ""
1640
- #~ "Chraňte WordPress webové formuláře před spamem pomocí matematické logiky."
1641
-
1642
- #~ msgid "Congratulations! Pro Membership license is activated successfully."
1643
- #~ msgstr "Gratulujeme! PRO členství bylo úspěšně aktivováno."
1644
-
1645
- #~ msgid "Email with system info is sent to"
1646
- #~ msgstr "E-mail se systémovým nastavením byl odeslán na"
1647
-
1648
- #~ msgid "Browse Free WordPress Themes"
1649
- #~ msgstr "Procházet WordPress šablony zdarma"
1650
-
1651
- #~ msgid ""
1652
- #~ "You can use one license of the Pro plugin for one domain only. Please "
1653
- #~ "check and edit your license or domain if necessary using you personal "
1654
- #~ "Client Area. We strongly recommend you to solve the problem within 24 "
1655
- #~ "hours, otherwise the Pro plugin will be deactivated."
1656
- #~ msgstr ""
1657
- #~ "Pro licenci pluginu můžete používat pouze pro jednu doménu. Prosím "
1658
- #~ "zkontrolujte a případně upravte Váš licenční klíč na vaší osobní stránce "
1659
- #~ "- Klientské zóně. Důrazně doporučujeme, aby jste tento problém odstranili "
1660
- #~ "během 24 hodin, jinak bude Pro plugin deaktivován."
1661
-
1662
- #~ msgid "Insert"
1663
- #~ msgstr "Vložit"
1664
-
1665
- #~ msgid ""
1666
- #~ "Automatically add outgoing email messages to queue instead of sending "
1667
- #~ "them immediately."
1668
- #~ msgstr ""
1669
- #~ "Automaticky přidávejte odchozí e-mailové zprávy do fronty namísto jejich "
1670
- #~ "okamžitého odesílání."
1671
-
1672
- #~ msgid ""
1673
- #~ "Add unlimited gallery categories. Organize images to make the navigation "
1674
- #~ "through content easier."
1675
- #~ msgstr ""
1676
- #~ "Přidávejte neomezený počet kategorií galerie. Organizujte obrázky pro "
1677
- #~ "jednodušší orientaci v obsahu."
1678
-
1679
- #~ msgid ""
1680
- #~ "Attach, un-attach and re-attach media files quickly to WordPress posts "
1681
- #~ "and pages."
1682
- #~ msgstr ""
1683
- #~ "Připojujte, odpojujte a znovu připojujte mediální soubory do WordPress "
1684
- #~ "příspěvků a stránek."
1685
-
1686
- #~ msgid "Advertisement"
1687
- #~ msgstr "Reklama"
1688
-
1689
- #~ msgid "Content & Media"
1690
- #~ msgstr "Obsah & Média"
1691
-
1692
- #~ msgid "Management"
1693
- #~ msgstr "Správa"
1694
-
1695
- #~ msgid "Site Stats"
1696
- #~ msgstr "Statistiky webu"
1697
-
1698
- #~ msgid "Social"
1699
- #~ msgstr "Sociální"
1700
-
1701
- #~ msgid "Utilities"
1702
- #~ msgstr "Utility"
2
  msgstr ""
3
  "Project-Id-Version: bestwebsoft\n"
4
  "Report-Msgid-Bugs-To: \n"
5
+ "POT-Creation-Date: 2018-03-02 10:14+0200\n"
6
+ "PO-Revision-Date: 2018-03-02 10:15+0200\n"
7
  "Last-Translator: Mik013\n"
8
  "Language-Team: Mik013\n"
9
  "Language: cs_CZ\n"
43
  #: bws_functions.php:93
44
  #, php-format
45
  msgid "%s reviews"
46
+ msgstr "%s hodnocení"
47
 
48
  #: bws_functions.php:94
49
  msgid "Rate it"
51
 
52
  #: bws_functions.php:103
53
  msgid "Need help?"
54
+ msgstr "Potřebujete pomoci?"
55
 
56
+ #: bws_functions.php:104 bws_functions.php:919 class-bws-settings.php:1058
57
  msgid "Visit Help Center"
58
  msgstr "Navštivte Centrum pomoci"
59
 
130
  #: bws_functions.php:208
131
  #, php-format
132
  msgid "Thank you for installing %s plugin!"
133
+ msgstr "Děkujeme vám za instalaci pluginu %s!"
134
 
135
  #: bws_functions.php:210
136
  msgid "Let's get started"
205
  #: bws_functions.php:482
206
  #, php-format
207
  msgid "Thank you for choosing %s plugin!"
208
+ msgstr "Děkujeme, že jste si vybrali plugin %s!"
209
 
210
  #: bws_functions.php:483
211
  msgid ""
243
 
244
  #: bws_functions.php:653
245
  msgid "Add BWS Shortcode"
246
+ msgstr "Přidat zkrácený kód BWS"
247
 
248
  #: bws_functions.php:654
249
  msgid "Add BWS Plugins Shortcode"
250
+ msgstr "Přidat zkrácený kód BWS pluginu"
251
 
252
  #: bws_functions.php:673
253
  msgid "Add shortcode"
254
+ msgstr "Přidat zkrácený kód"
255
 
256
  #: bws_functions.php:673
257
  msgid "Add BestWebSoft plugins' shortcodes using this button."
258
  msgstr ""
259
+ "Pomocí tohoto tlačítka můžete přidávat zkrácené kódy BestWebSoft pluginů."
260
 
261
  #: bws_functions.php:729
262
  msgid "Close"
280
 
281
  #: bws_functions.php:876
282
  msgid "Shortcode settings"
283
+ msgstr "Nastavení zkrácených kódů"
284
 
285
  #: bws_functions.php:881
286
  msgid "The shortcode will be inserted"
287
+ msgstr "Bude vložen zkrácený kód"
288
 
289
+ #: bws_functions.php:924
290
  msgid "FAQ"
291
+ msgstr ""
292
+ "Časté dotazy <acronym title=\"Frequently asked questions\">(FAQ)</acronym>"
293
 
294
+ #: bws_functions.php:930
295
  msgid "For more information:"
296
  msgstr "Pro více informací:"
297
 
298
+ #: bws_functions.php:931
299
  msgid "Documentation"
300
  msgstr "Dokumentace"
301
 
302
+ #: bws_functions.php:932
303
  msgid "Video Instructions"
304
  msgstr "Video instrukce"
305
 
306
+ #: bws_functions.php:933
307
  msgid "Submit a Request"
308
  msgstr "Odeslat požadavek"
309
 
375
 
376
  #: bws_menu.php:146
377
  msgid "Congratulations! Pro Membership license is activated successfully."
378
+ msgstr "Gratulujeme! PRO členství bylo úspěšně aktivováno."
379
 
380
  #: bws_menu.php:153 class-bws-settings.php:1007 deprecated.php:436
381
  msgid ""
450
  #: bws_menu.php:203 bws_menu.php:248 bws_menu.php:251
451
  #, php-format
452
  msgid "by %s"
453
+ msgstr "od %s"
454
 
455
  #: bws_menu.php:207
456
  msgid "Server Environment"
539
  #: bws_menu.php:262
540
  #, php-format
541
  msgid "Email with system info is sent to %s."
542
+ msgstr "E-mail s informacemi o systému byl odeslán na %s."
543
 
544
  #: bws_menu.php:266
545
  msgid "Thank you for contacting us."
576
 
577
  #: bws_menu.php:326
578
  msgid "Subscribe to Pro Membership"
579
+ msgstr "Přihlaste se k PRO členství"
580
 
581
  #: bws_menu.php:334 bws_menu.php:345 class-bws-settings.php:760
582
  #: deprecated.php:227
736
 
737
  #: bws_menu.php:645
738
  msgid "Browse More WordPress Themes"
739
+ msgstr "Procházet další WordPress šablony"
740
 
741
  #: bws_menu.php:654
742
  msgid "Send to support"
902
  #: class-bws-settings.php:726
903
  #, php-format
904
  msgid "You will be automatically redirected to the %s in %s seconds."
905
+ msgstr "Budete automaticky přesměrováni na %s za %s sekund."
906
 
907
  #: class-bws-settings.php:726
908
  msgid "Settings page"
912
  #, php-format
913
  msgid "Enter your license key to activate %s and get premium plugin features."
914
  msgstr ""
915
+ "Vložte váš licenční klíč pro aktivaci %s a získejte tak prémiové fukcе "
916
+ "pluginu."
917
 
918
  #: class-bws-settings.php:744 class-bws-settings.php:931 deprecated.php:363
919
  #: deprecated.php:706
927
  #: class-bws-settings.php:747 deprecated.php:697
928
  #, php-format
929
  msgid "Start Your Free %s-Day Trial Now"
930
+ msgstr "Vyzkoušejte %s-denní zkušební verzi zdarma nyní"
931
 
932
  #: class-bws-settings.php:762
933
  msgid ""
995
  "Unfortunately, Your license has expired. To continue getting top-priority "
996
  "support and plugin updates, you should extend it in your %s."
997
  msgstr ""
998
+ "Bohužel, Vaše licence vypršela. Chcete-li mít nadále přístup k top-prioritní "
999
+ "podpoře a aktualizacím pluginu měli byste ji prodloužit ve vašem %s."
1000
 
1001
  #: class-bws-settings.php:959 class-bws-settings.php:981
1002
  #: class-bws-settings.php:1003
1003
  msgid "Failed to download the zip archive. Please, upload the plugin manually."
1004
+ msgstr "Stažení zip archivu selhalo. Nahrajte prosím plugin ručně."
1005
 
1006
  #: class-bws-settings.php:971
1007
  msgid "Failed to open the zip archive. Please, upload the plugin manually."
1008
+ msgstr "Otevření zip archivu selhalo. Nahrajte prosím plugin ručně."
1009
 
1010
  #: class-bws-settings.php:977
1011
  msgid ""
1012
  "Your server does not support either ZipArchive or Phar. Please, upload the "
1013
  "plugin manually."
1014
  msgstr ""
1015
+ "Váš server nepodporuje buď ZipArchive nebo Phar. Prosím, nahrajte plugin "
1016
+ "ručně."
1017
 
1018
  #: class-bws-settings.php:984
1019
  msgid "UploadDir is not writable. Please, upload the plugin manually."
1020
+ msgstr "Nelze zapisovat do UploadDir. Prosím, nahrajte plugin ručně."
1021
 
1022
  #: class-bws-settings.php:1042 deprecated.php:464
1023
  msgid "Please, enter Your license key"
1025
 
1026
  #: class-bws-settings.php:1054
1027
  msgid "Need Help?"
1028
+ msgstr "Potřebujete pomoci?"
1029
 
1030
  #: class-bws-settings.php:1056
1031
  msgid "Read the Instruction"
1067
 
1068
  #: deactivation-form.php:44
1069
  msgid "The plugin suddenly stopped working"
1070
+ msgstr "Plugin přestal náhle pracovat"
1071
 
1072
  #: deactivation-form.php:51
1073
  msgid "The plugin broke my site"
1100
 
1101
  #: deactivation-form.php:83
1102
  msgid "It's a temporary deactivation, I'm just debugging an issue"
1103
+ msgstr "Jedná se o dočasnou deaktivaci, pouze ladím problém"
1104
 
1105
  #: deactivation-form.php:89
1106
  msgid "Other"
1116
 
1117
  #: deactivation-form.php:127
1118
  msgid "Send website data and allow to contact me back"
1119
+ msgstr "Odeslat data webu a umožnit zpětně mě kontaktovat"
1120
 
1121
  #: deactivation-form.php:132
1122
  msgid "Cancel"
1183
 
1184
  #: deprecated.php:281 deprecated.php:672
1185
  msgid "Please, go to"
1186
+ msgstr "Prosím, přejděte na"
1187
 
1188
  #: deprecated.php:281 deprecated.php:672
1189
  msgid "the setting page"
1278
 
1279
  #: product_list.php:22
1280
  msgid "Best secure captcha plugin to protect your WordPress forms."
1281
+ msgstr "Nejbezpečnější captcha plugin k ochraně WordPress formulářů."
1282
 
1283
  #: product_list.php:32
1284
  msgid "Create your personal car rental/booking and reservation website."
1602
  "Add Twitter Follow, Tweet, Hashtag, and Mention buttons to WordPress posts "
1603
  "and pages."
1604
  msgstr ""
1605
+ "Přidávejte Twitter tlačítka Sledovat, Tweetnout a Zmínit do WordPress "
1606
  "příspěvků a stránek."
1607
 
1608
  #: product_list.php:427
1636
  msgstr ""
1637
  "Automaticky zálohujte a exportujte obsah centra nápovědy Zendesk do databáze "
1638
  "vašeho WordPress webu."
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
bws_menu/languages/bestwebsoft-fr_FR.mo CHANGED
Binary file
bws_menu/languages/bestwebsoft-fr_FR.po CHANGED
@@ -2,15 +2,15 @@ msgid ""
2
  msgstr ""
3
  "Project-Id-Version: bestwebsoft\n"
4
  "Report-Msgid-Bugs-To: \n"
5
- "POT-Creation-Date: 2017-09-11 16:42+0300\n"
6
- "PO-Revision-Date: 2017-09-11 16:42+0300\n"
7
  "Last-Translator: Luc Capronnier <lcapronnier@yahoo.com>\n"
8
  "Language-Team: Luc Capronnier <lcapronnier@yahoo.com>\n"
9
- "Language: fr_FR\n"
10
  "MIME-Version: 1.0\n"
11
  "Content-Type: text/plain; charset=UTF-8\n"
12
  "Content-Transfer-Encoding: 8bit\n"
13
- "X-Poedit-KeywordsList: __;_e;esc_attr_e\n"
 
14
  "X-Poedit-Basepath: ..\n"
15
  "X-Poedit-SourceCharset: UTF-8\n"
16
  "Plural-Forms: nplurals=2;plural=n>2;\n"
@@ -22,12 +22,8 @@ msgid "requires"
22
  msgstr "obligatoire"
23
 
24
  #: bws_functions.php:75
25
- msgid ""
26
- "or higher, that is why it has been deactivated! Please upgrade WordPress and "
27
- "try again."
28
- msgstr ""
29
- "ou supérieure, c'est pourquoi il a été désactivé! Merci de faire la mise à "
30
- "jour de WordPress puis de ré-essayer."
31
 
32
  #: bws_functions.php:76
33
  msgid "Back to the WordPress"
@@ -39,12 +35,12 @@ msgstr "Page des extensions"
39
 
40
  #: bws_functions.php:92
41
  msgid "Like the plugin?"
42
- msgstr "Voter pour l'extension"
43
 
44
  #: bws_functions.php:93
45
  #, php-format
46
  msgid "%s reviews"
47
- msgstr ""
48
 
49
  #: bws_functions.php:94
50
  msgid "Rate it"
@@ -52,15 +48,15 @@ msgstr "Notez là"
52
 
53
  #: bws_functions.php:103
54
  msgid "Need help?"
55
- msgstr "Besoin d'aide ?"
56
 
57
- #: bws_functions.php:104 bws_functions.php:917 class-bws-settings.php:1058
58
  msgid "Visit Help Center"
59
  msgstr "Visiter le site du support"
60
 
61
  #: bws_functions.php:107
62
  msgid "Want to support the plugin?"
63
- msgstr "Voter pour l'extension"
64
 
65
  #: bws_functions.php:108 bws_menu.php:560
66
  msgid "Donate"
@@ -68,15 +64,11 @@ msgstr "Don"
68
 
69
  #: bws_functions.php:128
70
  msgid "WARNING: Illegal use notification"
71
- msgstr "AVERTISSEMENT : Notification d'utilisation abusive"
72
 
73
  #: bws_functions.php:128
74
- msgid ""
75
- "You can use one license of the Pro plugin for one domain only. Please check "
76
- "and edit your license or domain if necessary using your personal Client "
77
- "Area. We strongly recommend you to solve the problem within 24 hours, "
78
- "otherwise the Pro plugin will be deactivated."
79
- msgstr ""
80
 
81
  #: bws_functions.php:128 bws_functions.php:341 bws_menu.php:631
82
  #: class-bws-settings.php:144
@@ -84,20 +76,12 @@ msgid "Learn More"
84
  msgstr "En savoir plus"
85
 
86
  #: bws_functions.php:145
87
- msgid ""
88
- "Notice: Your Pro Trial license has expired. To continue using the plugin, "
89
- "you should buy a Pro license"
90
- msgstr ""
91
- "Information&nbsp;:Votre licence d'évaluation est terminée. Pour continuer à "
92
- "utiliser cette extension, vous devez acheter une licence PRO."
93
 
94
  #: bws_functions.php:147
95
- msgid ""
96
- "Your license has expired. To continue getting top-priority support and "
97
- "plugin updates, you should extend it."
98
- msgstr ""
99
- "Votre licence est terminée. Pour continuer à disposer du support rapide et "
100
- "des mises à jour de l'extension vous devez la renouveler."
101
 
102
  #: bws_functions.php:147 bws_functions.php:389 deprecated.php:586
103
  msgid "Learn more"
@@ -106,29 +90,24 @@ msgstr "En savoir plus"
106
  #: bws_functions.php:165
107
  #, php-format
108
  msgid "Notice: You are using the Pro Trial license of %s plugin."
109
- msgstr ""
110
- "Avertissement : vous utilisez la version d'évaluation de l'extension %s."
111
 
112
  #: bws_functions.php:167
113
  msgid "Notice: You are using the Pro Trial license of plugin."
114
- msgstr "Avertissement : vous utilisez la version d'évaluation de l'extension."
115
 
116
  #: bws_functions.php:170
117
  msgid "The Pro Trial license will expire on"
118
- msgstr "La licence PRO d'évaluation expirera le"
119
 
120
  #: bws_functions.php:193
121
- msgid ""
122
- "or higher! We do not guarantee that our plugin will work correctly. Please "
123
- "upgrade to WordPress latest version."
124
- msgstr ""
125
- "ou plus ! Nous ne garantissons pas que notre extension fonctionne "
126
- "correctement. Merci de mettre à jour Wordpress avec la dernière version."
127
 
128
  #: bws_functions.php:208
129
  #, php-format
130
  msgid "Thank you for installing %s plugin!"
131
- msgstr ""
132
 
133
  #: bws_functions.php:210
134
  msgid "Let's get started"
@@ -137,7 +116,7 @@ msgstr "Démarrer"
137
  #: bws_functions.php:211 bws_functions.php:244 bws_menu.php:564
138
  #: bws_menu.php:566
139
  msgid "Settings"
140
- msgstr "Réglages"
141
 
142
  #: bws_functions.php:213 bws_menu.php:326 class-bws-settings.php:747
143
  #: class-bws-settings.php:1060 class-bws-settings.php:1070 deprecated.php:697
@@ -151,11 +130,11 @@ msgstr "Ajouter"
151
  #: bws_functions.php:218 bws_functions.php:228 bws_functions.php:332
152
  #: bws_functions.php:385 bws_functions.php:487
153
  msgid "Close notice"
154
- msgstr "Effacer l'avertissement"
155
 
156
  #: bws_functions.php:233
157
  msgid "Thank you for installing plugins by BestWebSoft!"
158
- msgstr "Merci d'avoir installé des extensions de BestWebSoft!"
159
 
160
  #: bws_functions.php:235
161
  msgid "More Details"
@@ -170,15 +149,12 @@ msgid "Deprecated function(-s) is used on the site here:"
170
  msgstr "Une ou des fonction(s) obsolètes sont utilisées sur ce site ici&nbsp;:"
171
 
172
  #: bws_functions.php:278
173
- msgid ""
174
- "This function(-s) will be removed over time. Please update the product(-s)."
175
- msgstr ""
176
- "Ces fonctions seront supprimées rapidement. Merci de mettre à jour vos "
177
- "produits."
178
 
179
  #: bws_functions.php:337
180
  msgid "It’s time to upgrade your"
181
- msgstr "C'est le moment de mettre à jour votre "
182
 
183
  #: bws_functions.php:337
184
  msgid "to"
@@ -186,35 +162,25 @@ msgstr "à"
186
 
187
  #: bws_functions.php:337
188
  msgid "version!"
189
- msgstr "version"
190
 
191
  #: bws_functions.php:338
192
  msgid "Extend standard plugin functionality with new great options."
193
- msgstr ""
194
- "Étend les fonctionnalités classiques de l'extension avec des nouvelles "
195
- "options."
196
 
197
  #: bws_functions.php:389
198
  #, php-format
199
- msgid ""
200
- "Your license key for %s expires on %s and you won't be granted TOP-PRIORITY "
201
- "SUPPORT or UPDATES."
202
- msgstr ""
203
- "Votre clé de licence pour %s est terminée le %s et vous ne disposerez plus "
204
- "du support rapide et des mises à jour."
205
 
206
  #: bws_functions.php:482
207
  #, php-format
208
  msgid "Thank you for choosing %s plugin!"
209
- msgstr ""
210
 
211
  #: bws_functions.php:483
212
- msgid ""
213
- "If you have a feature, suggestion or idea you'd like to see in the plugin, "
214
- "we'd love to hear about it!"
215
- msgstr ""
216
- "Si vous avez une fonctionnalité, une suggestion ou une idée que vous "
217
- "souhaitez pour cette extension, nous serons ravis d'en parler avec vous !"
218
 
219
  #: bws_functions.php:484
220
  msgid "Suggest a Feature"
@@ -227,7 +193,7 @@ msgstr "Avertissement"
227
 
228
  #: bws_functions.php:500
229
  msgid "The plugin's settings have been changed."
230
- msgstr "Les paramètres de l'extension ont été modifiés."
231
 
232
  #: bws_functions.php:501 class-bws-settings.php:183 class-bws-settings.php:203
233
  #: deprecated.php:642
@@ -235,20 +201,8 @@ msgid "Save Changes"
235
  msgstr "Enregistrer les modifications"
236
 
237
  #: bws_functions.php:515
238
- msgid ""
239
- "You can always look at premium options by checking the \"Pro Options\" in "
240
- "the \"Misc\" tab."
241
- msgstr ""
242
- "Vous pouvez toujours consulter les options premium en cliquant sur le lien "
243
- "\"Voir les fonctionnalités de la version PRO\" dans l'onglet divers."
244
-
245
- #: bws_functions.php:653
246
- msgid "Add BWS Shortcode"
247
- msgstr ""
248
-
249
- #: bws_functions.php:654
250
- msgid "Add BWS Plugins Shortcode"
251
- msgstr "Ajouter le code court de l'extension BWS"
252
 
253
  #: bws_functions.php:673
254
  msgid "Add shortcode"
@@ -264,7 +218,7 @@ msgstr "Fermer"
264
 
265
  #: bws_functions.php:821
266
  msgid "Are you sure you want to restore default settings?"
267
- msgstr "Êtes vous sûr de vouloir remettre toutes les valeurs par défaut ?"
268
 
269
  #: bws_functions.php:824
270
  msgid "Yes, restore all settings"
@@ -286,23 +240,23 @@ msgstr "Paramètres du code court"
286
  msgid "The shortcode will be inserted"
287
  msgstr "Le code court sera inséré"
288
 
289
- #: bws_functions.php:922
290
  msgid "FAQ"
291
  msgstr "FAQ"
292
 
293
- #: bws_functions.php:928
294
  msgid "For more information:"
295
- msgstr "Pour plus d'informations&nbsp;:"
296
 
297
- #: bws_functions.php:929
298
  msgid "Documentation"
299
  msgstr "Documentation"
300
 
301
- #: bws_functions.php:930
302
  msgid "Video Instructions"
303
  msgstr "Vidéo explicative"
304
 
305
- #: bws_functions.php:931
306
  msgid "Submit a Request"
307
  msgstr "Soumettre une requête"
308
 
@@ -313,13 +267,8 @@ msgstr "Clé de licence incorrecte"
313
  #: bws_menu.php:122 class-bws-settings.php:818 class-bws-settings.php:885
314
  #: class-bws-settings.php:921 deprecated.php:133 deprecated.php:199
315
  #: deprecated.php:353
316
- msgid ""
317
- "Something went wrong. Please try again later. If the error appears again, "
318
- "please contact us"
319
- msgstr ""
320
- "Il est survenu une erreur. Essayer de nouveau. Si l'erreur se produit de "
321
- "nouveau, merci de contacter <a href=http://support.bestwebsoft."
322
- "com>BestWebSoft</a>. Nous sommes désolés pour le désagrément."
323
 
324
  #: bws_menu.php:122 class-bws-settings.php:818 class-bws-settings.php:885
325
  #: class-bws-settings.php:921 deprecated.php:133 deprecated.php:199
@@ -333,12 +282,8 @@ msgid "Wrong license key."
333
  msgstr "Clé de licence incorrecte."
334
 
335
  #: bws_menu.php:130
336
- msgid ""
337
- "This license key is bound to another site. Change it via personal Client "
338
- "Area."
339
- msgstr ""
340
- "La clé de licence correspond à un autre site. Modifier là au travers de "
341
- "votre espace client."
342
 
343
  #: bws_menu.php:130
344
  msgid "Log in"
@@ -346,27 +291,16 @@ msgstr "Connexion"
346
 
347
  #: bws_menu.php:132 bws_menu.php:332 deprecated.php:261
348
  msgid "Unfortunately, you have exceeded the number of available tries per day."
349
- msgstr ""
350
- "Désoler mais vous avez dépassé le nombre d'essai de la journée. Merci de "
351
- "télécharger l'extension manuellement."
352
 
353
  #: bws_menu.php:134 deprecated.php:365
354
  #, php-format
355
- msgid ""
356
- "Unfortunately, Your license has expired. To continue getting top-priority "
357
- "support and plugin updates, you should extend it in your %s"
358
- msgstr ""
359
- "Désoler, votre licence est terminée. Pour continuer à disposer du support "
360
- "rapide et des mises à jour de l'extension vous devez la renouveler dans "
361
- "votre %s"
362
 
363
  #: bws_menu.php:136 class-bws-settings.php:935 deprecated.php:367
364
- msgid ""
365
- "Unfortunately, the Pro licence was already installed to this domain. The Pro "
366
- "Trial license can be installed only once."
367
- msgstr ""
368
- "Une licence a déjà été installée sur ce domaine. La licence d'évaluation ne "
369
- "peut-être installée qu'une seule fois."
370
 
371
  #: bws_menu.php:142 class-bws-settings.php:839 deprecated.php:153
372
  msgid "The license key is valid."
@@ -378,15 +312,11 @@ msgstr "Votre licence se termine le "
378
 
379
  #: bws_menu.php:146
380
  msgid "Congratulations! Pro Membership license is activated successfully."
381
- msgstr ""
382
 
383
  #: bws_menu.php:153 class-bws-settings.php:1007 deprecated.php:436
384
- msgid ""
385
- "Something went wrong. Try again later or upload the plugin manually. We are "
386
- "sorry for inconvenience."
387
- msgstr ""
388
- "Il est survenu une erreur. Essayer de nouveau ou bien télécharger "
389
- "l'extension manuellement.Nous sommes désolés pour le désagrément."
390
 
391
  #: bws_menu.php:163
392
  msgid "Please enter your license key."
@@ -456,7 +386,7 @@ msgstr "par %s"
456
 
457
  #: bws_menu.php:207
458
  msgid "Server Environment"
459
- msgstr "Server Environnent"
460
 
461
  #: bws_menu.php:209
462
  msgid "Operating System"
@@ -537,7 +467,7 @@ msgstr "Merci de saisir une adresse e-mail valide."
537
  #: bws_menu.php:262
538
  #, php-format
539
  msgid "Email with system info is sent to %s."
540
- msgstr ""
541
 
542
  #: bws_menu.php:266
543
  msgid "Thank you for contacting us."
@@ -545,7 +475,7 @@ msgstr "Merci de nous avoir contacté."
545
 
546
  #: bws_menu.php:289
547
  msgid "Sorry, email message could not be delivered."
548
- msgstr "Désolé, votre e-mail n'a pas pu être envoyé."
549
 
550
  #: bws_menu.php:305 bws_menu.php:309 bws_menu.php:358 deprecated.php:91
551
  msgid "Plugins"
@@ -565,12 +495,12 @@ msgstr "Support"
565
 
566
  #: bws_menu.php:316
567
  msgid "Manage purchased licenses & subscriptions"
568
- msgstr "Gérer les licences et les adhésions"
569
 
570
  #: bws_menu.php:324
571
  #, php-format
572
  msgid "Get Access to %s+ Premium Plugins"
573
- msgstr "Accéder à plus de %s extension premiums"
574
 
575
  #: bws_menu.php:326
576
  msgid "Subscribe to Pro Membership"
@@ -593,28 +523,16 @@ msgstr "Activé"
593
 
594
  #: bws_menu.php:359
595
  msgid "Upload Plugin"
596
- msgstr "Charger l'extension"
597
 
598
  #: bws_menu.php:363
599
  #, php-format
600
- msgid ""
601
- "The plugin generated %d characters of <strong>unexpected output</strong> "
602
- "during activation. If you notice &#8220;headers already sent&#8221; "
603
- "messages, problems with syndication feeds or other issues, try deactivating "
604
- "or removing this plugin."
605
- msgstr ""
606
- "Cette extension a produit %d caractères <strong>inattendus</strong> durant "
607
- "l'activation. Si vous constatez le message &#8220;headers already "
608
- "sent&#8221;, des problèmes avec les flux de syndication ou autres, essayez "
609
- "de désactiver l'extension ou supprimer l'extension."
610
 
611
  #: bws_menu.php:365
612
- msgid ""
613
- "Plugin could not be activated because it triggered a <strong>fatal error</"
614
- "strong>."
615
- msgstr ""
616
- "L'extension ne peut pas être activée car une <strong>erreur fatale</strong> "
617
- "a été détectée."
618
 
619
  #: bws_menu.php:368
620
  msgid "Plugin <strong>activated</strong>."
@@ -622,18 +540,16 @@ msgstr "Extension <strong>activée</strong>."
622
 
623
  #: bws_menu.php:375
624
  msgid "Installing Plugin"
625
- msgstr "Extensions installées"
626
 
627
  #: bws_menu.php:381
628
  msgid "Downloading install package from"
629
- msgstr "Télécharger le paquet d'installation depuis"
630
 
631
  #: bws_menu.php:398 bws_menu.php:429 bws_menu.php:440 deprecated.php:388
632
  #: deprecated.php:410 deprecated.php:432
633
  msgid "Failed to download the zip archive. Please, upload the plugin manually"
634
- msgstr ""
635
- "Erreur de téléchargement de l'archive ZIP. Merci de télécharger l'extension "
636
- "manuellement."
637
 
638
  #: bws_menu.php:406
639
  msgid "Unpacking the package"
@@ -641,40 +557,32 @@ msgstr "Décompresser le paquet"
641
 
642
  #: bws_menu.php:411 bws_menu.php:419
643
  msgid "Installing the plugin"
644
- msgstr "Installer l'extension"
645
 
646
  #: bws_menu.php:415 deprecated.php:400
647
  msgid "Failed to open the zip archive. Please, upload the plugin manually"
648
- msgstr ""
649
- "Erreur d'ouverture de l'archive zip. Merci de télécharger l'extension "
650
- "manuellement."
651
 
652
  #: bws_menu.php:422 deprecated.php:406
653
- msgid ""
654
- "Your server does not support either ZipArchive or Phar. Please, upload the "
655
- "plugin manually"
656
- msgstr ""
657
- "Votre serveur n'a pas le support du format des archives ZIP ou Phar. Merci "
658
- "de télécharger l'extension manuellement."
659
 
660
  #: bws_menu.php:425
661
  #, php-format
662
  msgid "The plugin %s is successfully installed."
663
- msgstr "L'extension %s a été installée avec succès."
664
 
665
  #: bws_menu.php:432 deprecated.php:413
666
  msgid "UploadDir is not writable. Please, upload the plugin manually"
667
- msgstr ""
668
- "Erreur d'ouverture de l'archive zip. Merci de télécharger l'extension "
669
- "manuellement."
670
 
671
  #: bws_menu.php:437
672
  msgid "Activate Plugin"
673
- msgstr "Activer l'extension"
674
 
675
  #: bws_menu.php:437 bws_menu.php:443
676
  msgid "Return to BestWebSoft Panel"
677
- msgstr "Retourner à l'administration BestWebSoft"
678
 
679
  #: bws_menu.php:451 bws_menu.php:471 bws_menu.php:600
680
  msgid "All"
@@ -727,7 +635,7 @@ msgstr "Installer cette extension"
727
 
728
  #: bws_menu.php:591
729
  msgid "Nothing found. Try another criteria."
730
- msgstr "Pas de réponse. essayer d'autres critères."
731
 
732
  #: bws_menu.php:628
733
  #, php-format
@@ -740,7 +648,7 @@ msgstr "Déjà installé"
740
 
741
  #: bws_menu.php:645
742
  msgid "Browse More WordPress Themes"
743
- msgstr ""
744
 
745
  #: bws_menu.php:654
746
  msgid "Send to support"
@@ -794,7 +702,7 @@ msgstr "Version"
794
 
795
  #: class-bws-settings.php:285
796
  msgid "All plugin settings were restored."
797
- msgstr "Les paramètres de l'extension ont été remis aux valeurs d'origine."
798
 
799
  #: class-bws-settings.php:423
800
  msgid "Custom Code"
@@ -802,22 +710,16 @@ msgstr "Code personnalisé"
802
 
803
  #: class-bws-settings.php:427 deprecated.php:498
804
  msgid "You do not have sufficient permissions to edit plugins for this site."
805
- msgstr ""
806
- "Vous n'avez pas assez de droits pour modifier l'extension pour ce site."
807
 
808
  #: class-bws-settings.php:432 deprecated.php:620
809
  msgid "These styles will be added to the header on all pages of your site."
810
- msgstr ""
811
- "Ces styles seront ajoutés aux entêtes sur tous les pages de votre site."
812
 
813
  #: class-bws-settings.php:435 deprecated.php:622
814
  #, php-format
815
- msgid ""
816
- "This PHP code will be hooked to the %s action and will be printed on front "
817
- "end only."
818
- msgstr ""
819
- "Ce code PHP sera rattaché à l'action %s et sera affiché uniquement sur la "
820
- "partie publique."
821
 
822
  #: class-bws-settings.php:438
823
  msgid "These code will be added to the header on all pages of your site."
@@ -825,12 +727,8 @@ msgstr "Ce code sera ajouté aux entêtes sur tous les pages de votre site."
825
 
826
  #: class-bws-settings.php:446 deprecated.php:646
827
  #, php-format
828
- msgid ""
829
- "You need to make this files writable before you can save your changes. See "
830
- "%s the Codex %s for more information."
831
- msgstr ""
832
- "Vous devez rendre ce fichier modifiable avant de pouvoir enregistrer vos "
833
- "modifications. Regarder %s du Codex %s pour plus d'informations."
834
 
835
  #: class-bws-settings.php:456 deprecated.php:628
836
  msgid "Browsing"
@@ -852,20 +750,13 @@ msgstr "Paramètres divers"
852
 
853
  #: class-bws-settings.php:540 class-bws-settings.php:595
854
  #, php-format
855
- msgid ""
856
- "It is prohibited to change %s settings on this site in the %s network "
857
- "settings."
858
- msgstr ""
859
- "Il est interdit de changer le paramètre %s sur ce site dans les paramètres "
860
- "%s du réseau."
861
 
862
  #: class-bws-settings.php:543 class-bws-settings.php:598
863
  #, php-format
864
- msgid ""
865
- "It is prohibited to view %s settings on this site in the %s network settings."
866
- msgstr ""
867
- "Il est interdit de voir le paramètre %s sur ce site dans les paramètres %s "
868
- "du réseau."
869
 
870
  #: class-bws-settings.php:552
871
  msgid "Pro Options"
@@ -873,22 +764,19 @@ msgstr "Options Pro"
873
 
874
  #: class-bws-settings.php:556
875
  msgid "Enable to display plugin Pro options."
876
- msgstr "Activer pour voir les options PRO de l'extension."
877
 
878
  #: class-bws-settings.php:562
879
  msgid "Track Usage"
880
- msgstr "Suivi de l'utilisation"
881
 
882
  #: class-bws-settings.php:566
883
- msgid ""
884
- "Enable to allow tracking plugin usage anonymously in order to make it better."
885
- msgstr ""
886
- "Activer pour autoriser le suivi de l'utilisation de l'extension de manière "
887
- "anonyme afin de le rendre meilleur."
888
 
889
  #: class-bws-settings.php:571
890
  msgid "Default Settings"
891
- msgstr "Réglages par défauts"
892
 
893
  #: class-bws-settings.php:573
894
  msgid "Restore Settings"
@@ -896,7 +784,7 @@ msgstr "Remettre les paramètres"
896
 
897
  #: class-bws-settings.php:574
898
  msgid "This will restore plugin settings to defaults."
899
- msgstr "Remettre les valeurs par défaut des paramètres de l'extension."
900
 
901
  #: class-bws-settings.php:586
902
  msgid "Import / Export"
@@ -909,13 +797,12 @@ msgstr "Clé de licence"
909
 
910
  #: class-bws-settings.php:725
911
  msgid "Congratulations! Pro license is activated successfully."
912
- msgstr ""
913
- "Félicitations! La version PRO de cette extension a été activée avec succès."
914
 
915
  #: class-bws-settings.php:726
916
  #, php-format
917
  msgid "You will be automatically redirected to the %s in %s seconds."
918
- msgstr ""
919
 
920
  #: class-bws-settings.php:726
921
  msgid "Settings page"
@@ -924,31 +811,21 @@ msgstr "Page des paramètres"
924
  #: class-bws-settings.php:741
925
  #, php-format
926
  msgid "Enter your license key to activate %s and get premium plugin features."
927
- msgstr ""
928
- "Saisir votre clé de licence pour activer %s et obtenir les fonctionnalités "
929
- "premium."
930
 
931
  #: class-bws-settings.php:744 class-bws-settings.php:931 deprecated.php:363
932
  #: deprecated.php:706
933
- msgid ""
934
- "Unfortunately, you have exceeded the number of available tries per day. "
935
- "Please, upload the plugin manually."
936
- msgstr ""
937
- "Désoler mais vous avez dépassé le nombre d'essai de la journée. Merci de "
938
- "télécharger l'extension manuellement."
939
 
940
  #: class-bws-settings.php:747 deprecated.php:697
941
  #, php-format
942
  msgid "Start Your Free %s-Day Trial Now"
943
- msgstr "Débuter votre licence d'évaluation gratuite de %s jours"
944
 
945
  #: class-bws-settings.php:762
946
- msgid ""
947
- "If necessary, you can check if the license key is correct or reenter it in "
948
- "the field below."
949
- msgstr ""
950
- "Si nécessaire vous pouvez vérifier que la clé de licence est correcte ou la "
951
- "saisir de nouveau dans le champ ci-dessous."
952
 
953
  #: class-bws-settings.php:767
954
  msgid "Manage License Settings"
@@ -956,15 +833,11 @@ msgstr "Gérer les paramètres de licence"
956
 
957
  #: class-bws-settings.php:769
958
  msgid "Login to Client Area"
959
- msgstr "Se connecter à l'espace client"
960
 
961
  #: class-bws-settings.php:771
962
- msgid ""
963
- "Manage active licenses, download BWS products, and view your payment history "
964
- "using BestWebSoft Client Area."
965
- msgstr ""
966
- "Gérer les licences actives, télécharger les produits BWS, et voir "
967
- "l'historique de vos règlements dans l'interface client de BestWebSoft."
968
 
969
  #: class-bws-settings.php:826 class-bws-settings.php:929 deprecated.php:141
970
  #: deprecated.php:361
@@ -972,65 +845,47 @@ msgid "This license key is bound to another site."
972
  msgstr "La clé de licence correspond à un autre site."
973
 
974
  #: class-bws-settings.php:828 deprecated.php:143
975
- msgid ""
976
- "This license key is valid, but Your license has expired. If you want to "
977
- "update our plugin in future, you should extend the license."
978
- msgstr ""
979
- "La clé de licence est valide mais votre durée de validité est passée. Pour "
980
- "continuer à disposer du support rapide et des mises à jour de l'extension "
981
- "vous devez la renouveller."
982
 
983
  #: class-bws-settings.php:830 deprecated.php:145
984
  msgid "Unfortunately, you have exceeded the number of available tries."
985
- msgstr ""
986
- "Désoler mais vous avez dépassé le nombre d'essai de la journée. Merci de "
987
- "télécharger l'extension manuellement."
988
 
989
  #: class-bws-settings.php:832 deprecated.php:147
990
- msgid ""
991
- "Unfortunately, the Pro Trial licence was already installed to this domain. "
992
- "The Pro Trial license can be installed only once."
993
- msgstr ""
994
- "Une licence a déjà été installée sur ce domaine. La licence d'évaluation ne "
995
- "peut-être installée qu'une seule fois."
996
 
997
  #: class-bws-settings.php:837 deprecated.php:151
998
  msgid "The Pro Trial license key is valid."
999
- msgstr "La clé de licence d'évaluation est valide."
1000
 
1001
  #: class-bws-settings.php:845 deprecated.php:159 deprecated.php:246
1002
  #, php-format
1003
- msgid ""
1004
- "In order to continue using the plugin it is necessary to buy a %s license."
1005
- msgstr ""
1006
- "Afin de pouvoir continuer à utiliser cette extension il est nécessaire "
1007
- "d'acheter une licence %s."
1008
 
1009
  #: class-bws-settings.php:933
1010
  #, php-format
1011
- msgid ""
1012
- "Unfortunately, Your license has expired. To continue getting top-priority "
1013
- "support and plugin updates, you should extend it in your %s."
1014
- msgstr ""
1015
 
1016
  #: class-bws-settings.php:959 class-bws-settings.php:981
1017
  #: class-bws-settings.php:1003
1018
  msgid "Failed to download the zip archive. Please, upload the plugin manually."
1019
- msgstr ""
1020
 
1021
  #: class-bws-settings.php:971
1022
  msgid "Failed to open the zip archive. Please, upload the plugin manually."
1023
- msgstr ""
1024
 
1025
  #: class-bws-settings.php:977
1026
- msgid ""
1027
- "Your server does not support either ZipArchive or Phar. Please, upload the "
1028
- "plugin manually."
1029
- msgstr ""
1030
 
1031
  #: class-bws-settings.php:984
1032
  msgid "UploadDir is not writable. Please, upload the plugin manually."
1033
- msgstr ""
1034
 
1035
  #: class-bws-settings.php:1042 deprecated.php:464
1036
  msgid "Please, enter Your license key"
@@ -1038,7 +893,7 @@ msgstr "Merci de saisir votre clé de licence"
1038
 
1039
  #: class-bws-settings.php:1054
1040
  msgid "Need Help?"
1041
- msgstr "Besoin d'aide ?"
1042
 
1043
  #: class-bws-settings.php:1056
1044
  msgid "Read the Instruction"
@@ -1050,67 +905,67 @@ msgstr "Regarder la vidéo"
1050
 
1051
  #: class-bws-settings.php:1071
1052
  msgid "Start Your Free Trial"
1053
- msgstr "Débuter votre licence d'évaluation gratuite"
1054
 
1055
  #: deactivation-form.php:27
1056
  msgid "Need help? We are ready to answer your questions."
1057
- msgstr ""
1058
 
1059
  #: deactivation-form.php:27
1060
  msgid "Contact Support"
1061
- msgstr ""
1062
 
1063
  #: deactivation-form.php:32
1064
  msgid "The plugin is not working"
1065
- msgstr ""
1066
 
1067
  #: deactivation-form.php:34
1068
  msgid "Kindly share what didn't work so we can fix it in future updates..."
1069
- msgstr ""
1070
 
1071
  #: deactivation-form.php:38
1072
  msgid "The plugin didn't work as expected"
1073
- msgstr ""
1074
 
1075
  #: deactivation-form.php:40
1076
  msgid "What did you expect?"
1077
- msgstr ""
1078
 
1079
  #: deactivation-form.php:44
1080
  msgid "The plugin suddenly stopped working"
1081
- msgstr ""
1082
 
1083
  #: deactivation-form.php:51
1084
  msgid "The plugin broke my site"
1085
- msgstr ""
1086
 
1087
  #: deactivation-form.php:58
1088
  msgid "I couldn't understand how to get it work"
1089
- msgstr ""
1090
 
1091
  #: deactivation-form.php:65
1092
  msgid "I found a better plugin"
1093
- msgstr ""
1094
 
1095
  #: deactivation-form.php:67
1096
  msgid "What's the plugin name?"
1097
- msgstr ""
1098
 
1099
  #: deactivation-form.php:71
1100
  msgid "The plugin is great, but I need specific feature that you don't support"
1101
- msgstr ""
1102
 
1103
  #: deactivation-form.php:73
1104
  msgid "What feature?"
1105
- msgstr ""
1106
 
1107
  #: deactivation-form.php:77
1108
  msgid "I no longer need the plugin"
1109
- msgstr ""
1110
 
1111
  #: deactivation-form.php:83
1112
  msgid "It's a temporary deactivation, I'm just debugging an issue"
1113
- msgstr ""
1114
 
1115
  #: deactivation-form.php:89
1116
  msgid "Other"
@@ -1118,35 +973,35 @@ msgstr "Autre"
1118
 
1119
  #: deactivation-form.php:123
1120
  msgid "Quick Feedback"
1121
- msgstr ""
1122
 
1123
  #: deactivation-form.php:124
1124
  msgid "If you have a moment, please let us know why you are deactivating"
1125
- msgstr ""
1126
 
1127
  #: deactivation-form.php:127
1128
  msgid "Send website data and allow to contact me back"
1129
- msgstr ""
1130
 
1131
  #: deactivation-form.php:132
1132
  msgid "Cancel"
1133
- msgstr ""
1134
 
1135
  #: deactivation-form.php:233
1136
  msgid "Processing"
1137
- msgstr ""
1138
 
1139
  #: deactivation-form.php:262
1140
  msgid "Submit & Deactivate"
1141
- msgstr ""
1142
 
1143
  #: deactivation-form.php:277
1144
  msgid "Please tell us the reason so we can improve it."
1145
- msgstr ""
1146
 
1147
  #: deactivation-form.php:345
1148
  msgid "Deactivate"
1149
- msgstr ""
1150
 
1151
  #: deprecated.php:93
1152
  msgid "System Status"
@@ -1157,28 +1012,16 @@ msgid "Please, enter your license key"
1157
  msgstr "Merci de saisir votre clé de licence"
1158
 
1159
  #: deprecated.php:223
1160
- msgid ""
1161
- "If necessary, you can check if the license key is correct or reenter it in "
1162
- "the field below. You can find your license key on your personal page - "
1163
- "Client Area - on our website"
1164
- msgstr ""
1165
- "Si nécessaire vous pouvez vérifier que la clé de licence est correcte ou la "
1166
- "saisir de nouveau dans le champ ci-dessous. Vous pouvez trouver votre clé de "
1167
- "licence sur votre page personnelle (zone client) sur notre site web."
1168
 
1169
  #: deprecated.php:223
1170
- msgid ""
1171
- "(your username is the email address specified during the purchase). If "
1172
- "necessary, please submit \"Lost your password?\" request."
1173
- msgstr ""
1174
- "(votre nom d'utilisateur est l'adresse e-mail que vous avez donnée lors de "
1175
- "l'achat de l'extension). Si nécessaire, utilisez la fonction de demande de "
1176
- "mot de passe perdu."
1177
 
1178
  #: deprecated.php:246
1179
  msgid "After that, you can activate it by entering your license key."
1180
- msgstr ""
1181
- " Après vous pouvez activer cette extension en donnant votre clé de licence."
1182
 
1183
  #: deprecated.php:249 deprecated.php:691
1184
  msgid "License key can be found in the"
@@ -1186,19 +1029,15 @@ msgstr "La clé de licence peut être trouvée dans "
1186
 
1187
  #: deprecated.php:251 deprecated.php:693
1188
  msgid "(your username is the email address specified during the purchase)."
1189
- msgstr ""
1190
- "(votre nom d'utilisateur est l'adresse e-mail que vous avez donnée lors de "
1191
- "l'achat de l'extension)."
1192
 
1193
  #: deprecated.php:279
1194
- msgid ""
1195
- "Congratulations! The Pro license of the plugin is activated successfully."
1196
- msgstr ""
1197
- "Félicitations! La version PRO de cette extension a été activée avec succès."
1198
 
1199
  #: deprecated.php:281 deprecated.php:672
1200
  msgid "Please, go to"
1201
- msgstr "Merci daller à"
1202
 
1203
  #: deprecated.php:281 deprecated.php:672
1204
  msgid "the setting page"
@@ -1210,12 +1049,11 @@ msgstr "Vous allez être redirigé automatiquement dans 5 secondes"
1210
 
1211
  #: deprecated.php:316
1212
  msgid "Check premium options on the plugin settings page!"
1213
- msgstr ""
1214
- "Vérifier les options premium sur la page des paramètres de l'extension!"
1215
 
1216
  #: deprecated.php:479
1217
  msgid "Restore all plugin settings to defaults"
1218
- msgstr "Remettre les valeurs par défaut des paramètres de l'extension"
1219
 
1220
  #: deprecated.php:481
1221
  msgid "Restore settings"
@@ -1239,12 +1077,8 @@ msgid "Editing"
1239
  msgstr "Modifier"
1240
 
1241
  #: deprecated.php:670
1242
- msgid ""
1243
- "Congratulations! Pro version of the plugin is installed and activated "
1244
- "successfully."
1245
- msgstr ""
1246
- "Félicitations! La version PRO de cette extension a été téléchargée et "
1247
- "activée avec succès."
1248
 
1249
  #: deprecated.php:680
1250
  msgid "Show Pro features"
@@ -1256,27 +1090,27 @@ msgstr "Saisir votre clé de licence pour installer et activer"
1256
 
1257
  #: deprecated.php:689
1258
  msgid "version of the plugin."
1259
- msgstr "version de l'extension."
1260
 
1261
  #: product_list.php:7
1262
  msgid "Admin Tools"
1263
- msgstr ""
1264
 
1265
  #: product_list.php:8
1266
  msgid "Content"
1267
- msgstr ""
1268
 
1269
  #: product_list.php:9
1270
  msgid "eCommerce"
1271
- msgstr ""
1272
 
1273
  #: product_list.php:10
1274
  msgid "Marketing"
1275
- msgstr ""
1276
 
1277
  #: product_list.php:11
1278
  msgid "Navigation"
1279
- msgstr ""
1280
 
1281
  #: product_list.php:12
1282
  msgid "Recommended"
@@ -1288,948 +1122,204 @@ msgstr "Sécurité"
1288
 
1289
  #: product_list.php:14
1290
  msgid "SEO"
1291
- msgstr ""
1292
 
1293
  #: product_list.php:15
1294
  msgid "SMM"
1295
- msgstr ""
1296
 
1297
  #: product_list.php:22
1298
  msgid "Best secure captcha plugin to protect your WordPress forms."
1299
- msgstr ""
1300
 
1301
  #: product_list.php:32
1302
  msgid "Create your personal car rental/booking and reservation website."
1303
- msgstr ""
1304
 
1305
  #: product_list.php:42
1306
- msgid ""
1307
- "Allow customers to reach you using secure contact form plugin any website "
1308
- "must have."
1309
- msgstr ""
1310
 
1311
  #: product_list.php:52
1312
  msgid "Add unlimited number of contact forms to WordPress website."
1313
- msgstr ""
1314
 
1315
  #: product_list.php:62
1316
  msgid "Save and manage Contact Form messages. Never lose important data."
1317
- msgstr ""
1318
 
1319
  #: product_list.php:72
1320
  msgid "Add unlimited custom pages to WordPress admin dashboard."
1321
- msgstr ""
1322
 
1323
  #: product_list.php:79
1324
  msgid "Add custom fields to WordPress website search results."
1325
- msgstr ""
1326
 
1327
  #: product_list.php:86
1328
- msgid ""
1329
- "Add custom post types and taxonomies to WordPress website search results."
1330
- msgstr ""
1331
 
1332
  #: product_list.php:96
1333
  msgid "Add PayPal and 2CO donate buttons to receive charity payments."
1334
- msgstr ""
1335
 
1336
  #: product_list.php:103
1337
- msgid ""
1338
- "Get latest error log messages to diagnose website problems. Define and fix "
1339
- "issues faster."
1340
- msgstr ""
1341
 
1342
  #: product_list.php:110
1343
- msgid ""
1344
- "Add Facebook Follow, Like, and Share buttons to WordPress posts, pages, and "
1345
- "widgets."
1346
- msgstr ""
1347
 
1348
  #: product_list.php:120
1349
- msgid ""
1350
- "Add beautiful galleries, albums & images to your WordPress website in a few "
1351
- "clicks."
1352
- msgstr ""
1353
 
1354
  #: product_list.php:130
1355
- msgid ""
1356
- "Add Google +1, Share, Follow, Hangout buttons and profile badge to WordPress "
1357
- "posts, pages and widgets."
1358
- msgstr ""
1359
 
1360
  #: product_list.php:140
1361
- msgid ""
1362
- "Stronger security solution which protects your WordPress website from hacks "
1363
- "and unauthorized login attempts."
1364
- msgstr ""
1365
 
1366
  #: product_list.php:150
1367
- msgid ""
1368
- "Add Adsense ads to WordPress website pages, posts, custom posts, search "
1369
- "results, categories, tags, and widgets."
1370
- msgstr ""
1371
 
1372
  #: product_list.php:160
1373
  msgid "Add Google Analytics code to WordPress website and track basic stats."
1374
- msgstr ""
1375
 
1376
  #: product_list.php:170
1377
- msgid ""
1378
- "Protect WordPress website forms from spam entries with Google Captcha "
1379
- "(reCaptcha)."
1380
- msgstr ""
1381
 
1382
  #: product_list.php:180
1383
  msgid "Add customized Google maps to WordPress posts, pages and widgets."
1384
- msgstr ""
1385
 
1386
  #: product_list.php:190
1387
- msgid ""
1388
- "Generate and add XML sitemap to WordPress website. Help search engines index "
1389
- "your blog."
1390
- msgstr ""
1391
 
1392
  #: product_list.php:200
1393
- msgid ""
1394
- "Replace external WordPress website links with Google shortlinks and track "
1395
- "click stats."
1396
- msgstr ""
1397
 
1398
  #: product_list.php:207
1399
- msgid ""
1400
- "Protect WordPress website allow and deny access for certain IP addresses, "
1401
- "hostnames, etc."
1402
- msgstr ""
1403
 
1404
  #: product_list.php:217
1405
- msgid ""
1406
- "Create your personal job board and listing WordPress website. Search jobs, "
1407
- "submit CV/resumes, choose candidates."
1408
- msgstr ""
1409
 
1410
  #: product_list.php:224
1411
- msgid ""
1412
- "Protect WordPress website against brute force attacks. Limit rate of login "
1413
- "attempts."
1414
- msgstr ""
1415
 
1416
  #: product_list.php:234
1417
- msgid ""
1418
- "Add LinkedIn Share and Follow buttons to WordPress posts, pages and widgets. "
1419
- "5 plugins included – profile, insider, etc."
1420
- msgstr ""
1421
 
1422
  #: product_list.php:244
1423
- msgid ""
1424
- "Translate WordPress website content to other languages manually. Create "
1425
- "multilingual pages, posts, widgets, menus, etc."
1426
- msgstr ""
1427
 
1428
  #: product_list.php:254
1429
- msgid ""
1430
- "Add customizable pagination to WordPress website. Split long content to "
1431
- "multiple pages for better navigation."
1432
- msgstr ""
1433
 
1434
  #: product_list.php:264
1435
- msgid ""
1436
- "Generate PDF files and print WordPress posts/pages. Customize document "
1437
- "header/footer styles and appearance."
1438
- msgstr ""
1439
 
1440
  #: product_list.php:274
1441
- msgid ""
1442
- "Add Pinterest Follow, Pin It buttons and profile widgets (Pin, Board, "
1443
- "Profile) to WordPress posts, pages and widgets."
1444
- msgstr ""
1445
 
1446
  #: product_list.php:284
1447
- msgid ""
1448
- "Create your personal portfolio WordPress website. Manage and showcase past "
1449
- "projects to get more clients."
1450
- msgstr ""
1451
 
1452
  #: product_list.php:294
1453
  msgid "Export WordPress posts to CSV file format easily. Configure data order."
1454
- msgstr ""
1455
 
1456
  #: product_list.php:301
1457
- msgid ""
1458
- "Add extra fields to default WordPress user profile. The easiest way to "
1459
- "create and manage additional custom values."
1460
- msgstr ""
1461
 
1462
  #: product_list.php:308
1463
- msgid ""
1464
- "Add and display HTML advertisement banner on WordPress website. Customize "
1465
- "bar styles and appearance."
1466
- msgstr ""
1467
 
1468
  #: product_list.php:318
1469
- msgid ""
1470
- "Add customizable quotes and tips blocks to WordPress posts, pages and "
1471
- "widgets."
1472
- msgstr ""
1473
 
1474
  #: product_list.php:325
1475
- msgid ""
1476
- "Add rating plugin to your WordPress website to receive feedback from your "
1477
- "customers."
1478
- msgstr ""
1479
 
1480
  #: product_list.php:332
1481
- msgid ""
1482
- "Create your personal real estate WordPress website. Sell, rent and buy "
1483
- "properties. Add, search and browse listings easily."
1484
- msgstr ""
1485
 
1486
  #: product_list.php:342
1487
- msgid ""
1488
- "Add related, featured, latest, and popular posts to your WordPress website. "
1489
- "Connect your blog readers with a relevant content."
1490
- msgstr ""
1491
 
1492
  #: product_list.php:349
1493
- msgid ""
1494
- "Send bulk email messages to WordPress users. Custom templates, advanced "
1495
- "settings and detailed reports."
1496
- msgstr ""
1497
 
1498
  #: product_list.php:359
1499
- msgid ""
1500
- "The best responsive slider plugin for your WordPress website. Create "
1501
- "beautifully animated slides just in a few clicks."
1502
- msgstr ""
1503
 
1504
  #: product_list.php:366
1505
- msgid ""
1506
- "Configure SMTP server to receive email messages from WordPress to Gmail, "
1507
- "Yahoo, Hotmail and other services."
1508
- msgstr ""
1509
 
1510
  #: product_list.php:373
1511
- msgid ""
1512
- "Add social media buttons and widgets to WordPress posts, pages and widgets. "
1513
- "FB, Twitter, G+1, Pinterest, LinkedIn."
1514
- msgstr ""
1515
 
1516
  #: product_list.php:383
1517
- msgid ""
1518
- "Add social media login, registration, and commenting to your WordPress "
1519
- "website."
1520
- msgstr ""
1521
 
1522
  #: product_list.php:390
1523
- msgid ""
1524
- "Add email newsletter sign up form to WordPress posts, pages and widgets. "
1525
- "Collect data and subscribe your users."
1526
- msgstr ""
1527
 
1528
  #: product_list.php:400
1529
- msgid ""
1530
- "Add testimonials and feedbacks from your customers to WordPress website "
1531
- "posts, pages, and widgets."
1532
- msgstr ""
1533
 
1534
  #: product_list.php:407
1535
- msgid ""
1536
- "Best timesheet plugin for WordPress. Track employee time, streamline "
1537
- "attendance and generate reports."
1538
- msgstr ""
1539
 
1540
  #: product_list.php:417
1541
- msgid ""
1542
- "Add Twitter Follow, Tweet, Hashtag, and Mention buttons to WordPress posts "
1543
- "and pages."
1544
- msgstr ""
1545
 
1546
  #: product_list.php:427
1547
- msgid ""
1548
- "Automatically check and update WordPress website core with all installed "
1549
- "plugins and themes to the latest versions."
1550
- msgstr ""
1551
 
1552
  #: product_list.php:437
1553
- msgid ""
1554
- "Powerful user role management plugin for WordPress website. Create, edit, "
1555
- "copy, and delete user roles."
1556
- msgstr ""
1557
 
1558
  #: product_list.php:447
1559
- msgid ""
1560
- "Display live count of online visitors who are currently browsing your "
1561
- "WordPress website."
1562
- msgstr ""
1563
 
1564
  #: product_list.php:457
1565
- msgid ""
1566
- "Backup and export Zendesk Help Center content automatically to your "
1567
- "WordPress website database."
1568
- msgstr ""
1569
-
1570
- #~ msgid "Congratulations! Pro Membership license is activated successfully."
1571
- #~ msgstr ""
1572
- #~ "Félicitations! La version PRO de cette extension a été activée avec "
1573
- #~ "succès."
1574
-
1575
- #~ msgid "Email with system info is sent to"
1576
- #~ msgstr "Le courriel avec les informations système est envoyé à"
1577
-
1578
- #~ msgid "Browse Free WordPress Themes"
1579
- #~ msgstr "Parcourir les thèmes gratuits pour WordPress"
1580
-
1581
- #~ msgid ""
1582
- #~ "You can use one license of the Pro plugin for one domain only. Please "
1583
- #~ "check and edit your license or domain if necessary using you personal "
1584
- #~ "Client Area. We strongly recommend you to solve the problem within 24 "
1585
- #~ "hours, otherwise the Pro plugin will be deactivated."
1586
- #~ msgstr ""
1587
- #~ "Vous ne pouvez utilisez qu'une licence de la version Pro de l'extension "
1588
- #~ "pour un seul domaine. Merci de vérifier et de modifier votre licence ou "
1589
- #~ "votre domaine si nécessaire en utilisant votre zone client. Nous vous "
1590
- #~ "recommandons de résoudre ce problème dans les 24 heures, sinon "
1591
- #~ "l'extension sera rendue inactive."
1592
-
1593
- #~ msgid "Insert"
1594
- #~ msgstr "Insérer"
1595
-
1596
- #~ msgid "Advertisement"
1597
- #~ msgstr "Publicité"
1598
-
1599
- #~ msgid "Content & Media"
1600
- #~ msgstr "Contenu & média"
1601
-
1602
- #~ msgid "Management"
1603
- #~ msgstr "Administration"
1604
-
1605
- #~ msgid "Site Stats"
1606
- #~ msgstr "Statistiques"
1607
-
1608
- #~ msgid "Social"
1609
- #~ msgstr "Social"
1610
-
1611
- #~ msgid "Utilities"
1612
- #~ msgstr "Utilitaires"
1613
-
1614
- #~ msgid "Thank you for installing"
1615
- #~ msgstr "Merci d'avoir installé"
1616
-
1617
- #~ msgid "Thank you for choosing"
1618
- #~ msgstr "Merci d'avoir choisi"
1619
-
1620
- #~ msgid "You will be automatically redirected to the %s in 7 seconds."
1621
- #~ msgstr "Vous allez être redirigé automatiquement vers %s dans 7 secondes"
1622
-
1623
- #~ msgid "PHP Safe Mode"
1624
- #~ msgstr "PHP Safe Mode"
1625
-
1626
- #~ msgid "WordPress Version"
1627
- #~ msgstr "WordPress Version"
1628
-
1629
- #~ msgid "Successfully installed the plugin"
1630
- #~ msgstr "Extension installée avec succès"
1631
-
1632
- #~ msgid "If you enjoy our plugin, please give it 5 stars on WordPress"
1633
- #~ msgstr ""
1634
- #~ "Si notre extension vous satisfait, merci de la notée avec 5 étoiles dans "
1635
- #~ "Wordpress"
1636
-
1637
- #~ msgid "If there is something wrong about it, please contact us"
1638
- #~ msgstr "Si vous avez une question, n'hésitez pas à nous contacter"
1639
-
1640
- #~ msgid "Donations play an important role in supporting great projects"
1641
- #~ msgstr "Les dons jouent un rôle important dans l'aide aux projets"
1642
-
1643
- #~ msgid "This license key is bind to another site"
1644
- #~ msgstr "La clé de licence correspond à un autre site."
1645
-
1646
- #~ msgid "You license for"
1647
- #~ msgstr "Votre licence pour"
1648
-
1649
- #~ msgid "Activate Membership"
1650
- #~ msgstr "Activer l'adhésion"
1651
-
1652
- #~ msgid "Don’t have valid license key yet?"
1653
- #~ msgstr "Vous n'avez pas encore de licence valide ?"
1654
-
1655
- #~ msgid ""
1656
- #~ "Join BestWebSoft Pro Membership today, cancel any time and use all "
1657
- #~ "plugins on a single website %s for only %s per month."
1658
- #~ msgstr ""
1659
- #~ "Rejoignez le réseau PRO de BestWebSoft, arrêtez quand vous le vouler et "
1660
- #~ "utiliser toutes les extensions sur un seul site %s pour seulement %s par "
1661
- #~ "mois."
1662
-
1663
- #~ msgid "My Account"
1664
- #~ msgstr "Mon compte"
1665
-
1666
- #~ msgid "Go"
1667
- #~ msgstr "Passez"
1668
-
1669
- #~ msgid "DONATE"
1670
- #~ msgstr "Faire un don"
1671
-
1672
- #~ msgid "Recommended plugins"
1673
- #~ msgstr "Extensions recommandées"
1674
-
1675
- #~ msgid "Install now"
1676
- #~ msgstr "Installer maintenant"
1677
-
1678
- #~ msgid "Configure Settings"
1679
- #~ msgstr "Configuration des paramètres"
1680
-
1681
- #~ msgid "Try again"
1682
- #~ msgstr "Essayer de nouveau"
1683
-
1684
- #~ msgid "Preview &#8220;%s&#8221;"
1685
- #~ msgstr "Pré-visualiser &#8220;%s&#8221;"
1686
-
1687
- #~ msgid "Install %s"
1688
- #~ msgstr "%s installé"
1689
-
1690
- #~ msgid "Update"
1691
- #~ msgstr "Mettre à jour"
1692
-
1693
- #~ msgid "Preview %s"
1694
- #~ msgstr "Pré-visualiser %s"
1695
-
1696
- #~ msgid "Preview"
1697
- #~ msgstr "Pré-visualiser"
1698
-
1699
- #~ msgid "You can download and activate"
1700
- #~ msgstr "Vous pouvez télécharger et activer la version "
1701
-
1702
- #~ msgid "version of this plugin by entering Your license key."
1703
- #~ msgstr " de cette extension en donnant votre clé de licence."
1704
-
1705
- #~ msgid ""
1706
- #~ "You can find your license key on your personal page Client area, by "
1707
- #~ "clicking on the link"
1708
- #~ msgstr ""
1709
- #~ "Vous pouvez trouver votre clé de licence sur votre page personnelle dans "
1710
- #~ "la zone cliente en cliquant sur le lien"
1711
-
1712
- #~ msgid ""
1713
- #~ "(your username is the email you specify when purchasing the product), "
1714
- #~ "where you can make the necessary changes."
1715
- #~ msgstr ""
1716
- #~ "(votre nom d'utilisateur est l'adresse e-mail que vous avez donné lors de "
1717
- #~ "l'achat de l'extension), où vous pourrez faire les modifications "
1718
- #~ "nécessaires."
1719
-
1720
- #~ msgid "Switch to new interface"
1721
- #~ msgstr "Basculer vers la nouvelle interface"
1722
-
1723
- #~ msgid "Activated plugins"
1724
- #~ msgstr "Plugin activé"
1725
-
1726
- #~ msgid "Read more"
1727
- #~ msgstr "Lire la suite"
1728
-
1729
- #~ msgid "Purchase"
1730
- #~ msgstr "Achetez"
1731
-
1732
- #~ msgid "Free plugins"
1733
- #~ msgstr "Plugins gratuits"
1734
-
1735
- #~ msgid "Download"
1736
- #~ msgstr "Téléchargement"
1737
-
1738
- #~ msgid "Install now from wordpress.org"
1739
- #~ msgstr "Installer maintenant depuis wordpress.org"
1740
-
1741
- #~ msgid "Free themes"
1742
- #~ msgstr "Thèmes gratuits"
1743
-
1744
- #~ msgid "Customize &#8220;%s&#8221;"
1745
- #~ msgstr "Personnaliser &#8220;%s&#8221;"
1746
-
1747
- #~ msgid "Installed themes"
1748
- #~ msgstr "Thèmes installés"
1749
-
1750
- #~ msgid "Recommended themes"
1751
- #~ msgstr "Thèmes recommandés"
1752
-
1753
- #~ msgid "Switch to old interface"
1754
- #~ msgstr "Basculer vers l'ancienne interface"
1755
-
1756
- #, fuzzy
1757
- #~ msgid "installed"
1758
- #~ msgstr "%s installé"
1759
-
1760
- #~ msgid "Contact Form"
1761
- #~ msgstr "Formulaire de Contact"
1762
-
1763
- #~ msgid "Contact Form Pro Extra Settings"
1764
- #~ msgstr ""
1765
- #~ "Options supplémentaires de la version Pro pour le formulaire de Contact"
1766
-
1767
- #~ msgid "Contact Form Pro"
1768
- #~ msgstr "Formulaire Pro de Contact"
1769
-
1770
- #~ msgid "Name:"
1771
- #~ msgstr "Nom:"
1772
-
1773
- #~ msgid "Address:"
1774
- #~ msgstr "Adresse :"
1775
-
1776
- #~ msgid "Email Address:"
1777
- #~ msgstr "Adresse e-mail:"
1778
-
1779
- #~ msgid "Phone number:"
1780
- #~ msgstr "Téléphone:"
1781
-
1782
- #~ msgid "Subject:"
1783
- #~ msgstr "Sujet:"
1784
-
1785
- #~ msgid "Message:"
1786
- #~ msgstr "Message:"
1787
-
1788
- #~ msgid "Attachment:"
1789
- #~ msgstr "Pièce-jointe:"
1790
-
1791
- #~ msgid "Send me a copy"
1792
- #~ msgstr "M'envoyer une copie"
1793
-
1794
- #~ msgid "Submit"
1795
- #~ msgstr "Envoyer"
1796
-
1797
- #~ msgid "Your name is required."
1798
- #~ msgstr "Un nom est obligatoire."
1799
-
1800
- #~ msgid "Address is required."
1801
- #~ msgstr "Une adresse est obligatoire."
1802
-
1803
- #~ msgid "A valid email address is required."
1804
- #~ msgstr "Une adresse e-mail valide est obligatoire."
1805
-
1806
- #~ msgid "Phone number is required."
1807
- #~ msgstr "Le numéro de téléphone est obligatoire."
1808
-
1809
- #~ msgid "Subject is required."
1810
- #~ msgstr "Sujet obligatoire."
1811
-
1812
- #~ msgid "Message text is required."
1813
- #~ msgstr "Un message est obligatoire."
1814
-
1815
- #~ msgid "File format is not valid."
1816
- #~ msgstr "La pièce-jointe n'est pas valide."
1817
-
1818
- #~ msgid "File upload error."
1819
- #~ msgstr "Erreur de chargement du fichier."
1820
-
1821
- #~ msgid "The file could not be uploaded."
1822
- #~ msgstr "Le fichier n'a pas pu être envoyé."
1823
-
1824
- #~ msgid "This file is too large."
1825
- #~ msgstr "Le fichier est trop volumineux."
1826
-
1827
- #~ msgid "Please fill out the CAPTCHA."
1828
- #~ msgstr "Merci de compléter le CAPTCHA."
1829
-
1830
- #~ msgid "Please make corrections below and try again."
1831
- #~ msgstr "Merci de faire les corrections suivantes et de réessayer."
1832
-
1833
- #~ msgid ""
1834
- #~ "If the 'Redirect to page' option is selected then the URL field should be "
1835
- #~ "in the following format"
1836
- #~ msgstr ""
1837
- #~ "Si l'ioption 'Rediriger vers la page' est positionnée, alors le champ Url "
1838
- #~ "doit être rempli avec le format suivant"
1839
-
1840
- #~ msgid "Such user does not exist. Settings are not saved."
1841
- #~ msgstr ""
1842
- #~ "Cet utilisateur est inconnu. Les modifications ne sont pas sauvegardées."
1843
-
1844
- #~ msgid ""
1845
- #~ "Please enter a valid email address in the 'FROM' field. Settings are not "
1846
- #~ "saved."
1847
- #~ msgstr ""
1848
- #~ "Merci de saisir une adresse e-mail valide pour le 'FROM'. Les "
1849
- #~ "modifications ne sont pas sauvegardées."
1850
-
1851
- #~ msgid ""
1852
- #~ "If you would like to add the Contact Form to your website, just copy and "
1853
- #~ "paste this shortcode to your post or page or widget:"
1854
- #~ msgstr ""
1855
- #~ "Si vous souhaiter ajouter un formulaire de contact à votre site web, "
1856
- #~ "copiez juste ce code dans un article ou sur une page ou un widget:"
1857
-
1858
- #~ msgid ""
1859
- #~ "If you leave the fields empty, the messages will be sent to the email "
1860
- #~ "address specified during registration."
1861
- #~ msgstr ""
1862
- #~ "Si les champs ci-dessous ne sont pas renseignés le message sera envoyé à "
1863
- #~ "l'adresse spécifiée lors de l'enregistrement."
1864
-
1865
- #~ msgid "The user's email address:"
1866
- #~ msgstr "Utiliser l'e-mail du compte wordpress:"
1867
-
1868
- #~ msgid "Create a username"
1869
- #~ msgstr "Choisir un nom d'utilisateur"
1870
-
1871
- #~ msgid ""
1872
- #~ "Enter a username of the person who should get the messages from the "
1873
- #~ "contact form."
1874
- #~ msgstr ""
1875
- #~ "Choisir le nom d'utilisateur qui recevra les messages envoyés depuis le "
1876
- #~ "formulaire de contact."
1877
-
1878
- #~ msgid "Use this email address:"
1879
- #~ msgstr "Utiliser cette adresse e-mail:"
1880
-
1881
- #~ msgid "Enter the email address you want the messages forwarded to."
1882
- #~ msgstr ""
1883
- #~ "Choisir l'adresse e-mail qui sera utilisée pour recevoir les messages."
1884
-
1885
- #~ msgid "Additional options"
1886
- #~ msgstr "Options supplémentaires"
1887
-
1888
- #~ msgid "What to use?"
1889
- #~ msgstr "Quelle méthode d'envoie ?"
1890
-
1891
- #~ msgid "Wp-mail"
1892
- #~ msgstr "Wp-mail"
1893
-
1894
- #~ msgid "You can use the wp_mail function for mailing"
1895
- #~ msgstr ""
1896
- #~ "Pour envoyer l'e-mail, vous pouvez utiliser la fonction wp_mail de "
1897
- #~ "wordpress"
1898
-
1899
- #~ msgid "Mail"
1900
- #~ msgstr "E-mail"
1901
-
1902
- #~ msgid "To send mail you can use the php mail function"
1903
- #~ msgstr "Pour envoyer l'e-mail, vous pouvez utiliser la fonction mail de php"
1904
-
1905
- #~ msgid "Change text of the 'FROM' field"
1906
- #~ msgstr "Modifier le texte pour le champ 'FROM' du courriel"
1907
-
1908
- #~ msgid "Enter the email address in the 'From' field"
1909
- #~ msgstr "Sélectionner l'adresse e-mail pour le champ 'FROM' du courriel"
1910
-
1911
- #~ msgid "User email"
1912
- #~ msgstr "E-mail de l'utlisateur"
1913
-
1914
- #~ msgid ""
1915
- #~ "The email address of the user who fills the form will be used in the "
1916
- #~ "field 'From'."
1917
- #~ msgstr ""
1918
- #~ "Dans le champ 'From' du courriel, il sera utilisé l'adresse e-mail de "
1919
- #~ "l'utlisateur qui rempli le formulaire."
1920
-
1921
- #~ msgid "This email address will be used in the 'From' field."
1922
- #~ msgstr "Dans le champ 'FROM', cette adresse e-mail sera utilisée."
1923
-
1924
- #~ msgid "Display fields"
1925
- #~ msgstr "Afficher le texte"
1926
-
1927
- #~ msgid "Address"
1928
- #~ msgstr "Adresse"
1929
-
1930
- #~ msgid "Phone"
1931
- #~ msgstr "Téléphone"
1932
-
1933
- #~ msgid "Attachment block"
1934
- #~ msgstr "Bloc pièce-jointe"
1935
-
1936
- #~ msgid "Users can attach the following file formats"
1937
- #~ msgstr "Les utilisateurs peuvent joindre des documents des types suivants"
1938
-
1939
- #~ msgid "Captcha"
1940
- #~ msgstr "Captcha"
1941
-
1942
- #~ msgid "(powered by bestwebsoft.com)"
1943
- #~ msgstr "(fourni par bestwebsoft.com)"
1944
-
1945
- #~ msgid "Download captcha"
1946
- #~ msgstr "Télécharger le captcha"
1947
-
1948
- #, fuzzy
1949
- #~ msgid "Display tips below the Attachment block"
1950
- #~ msgstr "Afficher les explications après le bloc des pièces jointes"
1951
-
1952
- #, fuzzy
1953
- #~ msgid "Display 'Send me a copy' block"
1954
- #~ msgstr "S'envoyer une copie"
1955
-
1956
- #~ msgid "Name"
1957
- #~ msgstr "Nom"
1958
-
1959
- #~ msgid "Email Address"
1960
- #~ msgstr "Adresse e-mail"
1961
-
1962
- #~ msgid "Subject"
1963
- #~ msgstr "Sujet"
1964
-
1965
- #~ msgid "Message"
1966
- #~ msgstr "Message"
1967
-
1968
- #~ msgid "Display additional info in the email"
1969
- #~ msgstr "Afficher les informations complémentaires dans le courriel"
1970
-
1971
- #~ msgid "Sent from (ip address)"
1972
- #~ msgstr "Envoyé de (adresse IP)"
1973
-
1974
- #, fuzzy
1975
- #~ msgid "Example: Sent from (IP address):\t127.0.0.1"
1976
- #~ msgstr "Envoyé de (adresse IP)"
1977
-
1978
- #~ msgid "Date/Time"
1979
- #~ msgstr "Date/Heure"
1980
-
1981
- #~ msgid "Sent from (referer)"
1982
- #~ msgstr "Envoyer de (référence)"
1983
-
1984
- #~ msgid "Using (user agent)"
1985
- #~ msgstr "Depuis (navigateur)"
1986
-
1987
- #~ msgid "Language settings for the field names in the form"
1988
- #~ msgstr "Définition des langues pour les titres des champs"
1989
-
1990
- #~ msgid "Add a language"
1991
- #~ msgstr "Ajouter une langue"
1992
-
1993
- #~ msgid "Change the names of the contact form fields and error messages"
1994
- #~ msgstr ""
1995
- #~ "Modifier le texte pour les champs du formulaire de contact et les "
1996
- #~ "messages d'erreur"
1997
-
1998
- #~ msgid "English"
1999
- #~ msgstr "Anglais"
2000
-
2001
- #~ msgid "Error message for the Name field"
2002
- #~ msgstr "Message d'erreur pour le champ nom"
2003
-
2004
- #~ msgid "Error message for the Address field"
2005
- #~ msgstr "Message d'erreur pour le champ Adresse"
2006
-
2007
- #~ msgid "Error message for the Email field"
2008
- #~ msgstr "Message d'erreur pour le champ e-mail"
2009
-
2010
- #~ msgid "Error message for the Phone field"
2011
- #~ msgstr "Message d'erreur pour le champ téléphone"
2012
-
2013
- #~ msgid "Error message for the Subject field"
2014
- #~ msgstr "Message d'erreur pour le champ sujet"
2015
-
2016
- #~ msgid "Error message for the Message field"
2017
- #~ msgstr "Message d'erreur pour le champ message"
2018
-
2019
- #~ msgid "Error message about the file type for the Attachment field"
2020
- #~ msgstr "Message d'erreur pour le champ fichier joint (type du fichier)"
2021
-
2022
- #~ msgid ""
2023
- #~ "Error message while uploading a file for the Attachment field to the "
2024
- #~ "server"
2025
- #~ msgstr ""
2026
- #~ "Message d'erreur pour le champ fichier joint (problème d'envoie vers le "
2027
- #~ "serveur)"
2028
-
2029
- #~ msgid "Error message while moving the file for the Attachment field"
2030
- #~ msgstr ""
2031
- #~ "Message d'erreur pour le champ fichier joint (déplacement du fichier)"
2032
-
2033
- #~ msgid ""
2034
- #~ "Error message when file size limit for the Attachment field is exceeded"
2035
- #~ msgstr ""
2036
- #~ "Message d'erreur pour le champ fichier joint (taille limite du fichier "
2037
- #~ "atteinte)"
2038
-
2039
- #~ msgid "Error message for the Captcha field"
2040
- #~ msgstr "Message d'erreur pour le captcha"
2041
-
2042
- #~ msgid "Error message for the whole form"
2043
- #~ msgstr "Message d'erreur demandant à compléter les champs manquants"
2044
-
2045
- #~ msgid "for this language"
2046
- #~ msgstr "pour cette langue"
2047
-
2048
- #~ msgid "Action after email is sent"
2049
- #~ msgstr "Action après l'envoie de l'e-mail"
2050
-
2051
- #~ msgid "Display text"
2052
- #~ msgstr "Afficher le texte"
2053
-
2054
- #~ msgid "Text"
2055
- #~ msgstr "Texte"
2056
-
2057
- #~ msgid "Url"
2058
- #~ msgstr "Url"
2059
-
2060
- #~ msgid "Contact Form Pro | Extra Settings"
2061
- #~ msgstr "Formulaire Pro de Contact | Options supplémentaires"
2062
-
2063
- #~ msgid ""
2064
- #~ "This functionality is available in the Pro version of the plugin. For "
2065
- #~ "more details, please follow the link"
2066
- #~ msgstr ""
2067
- #~ "Cette fonctionalité est disponible dans le version Pro de cette "
2068
- #~ "extension. Pour plus de détails, merci de suivre ce lien"
2069
-
2070
- #~ msgid "Errors output"
2071
- #~ msgstr "Affichage des erreurs"
2072
-
2073
- #~ msgid "Display error messages"
2074
- #~ msgstr "Aficher les messages d'erreur"
2075
-
2076
- #~ msgid "Color of the input field errors."
2077
- #~ msgstr "Mettre en couleur les champs ayant des erreurs"
2078
-
2079
- #~ msgid "Display error messages & color of the input field errors"
2080
- #~ msgstr ""
2081
- #~ "Afficher les messages d'erreur et mettre en couleur les champs ayant des "
2082
- #~ "erreurs"
2083
-
2084
- #~ msgid "Add placeholder to the input blocks"
2085
- #~ msgstr "Ajouter la localisation dans le bloc de saisie"
2086
-
2087
- #~ msgid "Add tooltips"
2088
- #~ msgstr "Ajouter les conseils"
2089
-
2090
- #~ msgid "Email address"
2091
- #~ msgstr "Adresse e-mail"
2092
-
2093
- #~ msgid "Phone Number"
2094
- #~ msgstr "Téléphone"
2095
-
2096
- #~ msgid "Attachment"
2097
- #~ msgstr "Pièce-jointe"
2098
-
2099
- #~ msgid "Style options"
2100
- #~ msgstr "Options de style"
2101
-
2102
- #~ msgid "Text color"
2103
- #~ msgstr "Couleur du texte"
2104
-
2105
- #~ msgid "Default"
2106
- #~ msgstr "Défaut"
2107
-
2108
- #~ msgid "Label text color"
2109
- #~ msgstr "Couleur des textes des intitulés"
2110
-
2111
- #~ msgid "Placeholder color"
2112
- #~ msgstr "Couleur pour la localisation"
2113
-
2114
- #~ msgid "Errors color"
2115
- #~ msgstr "Couleur pour les erreurs"
2116
-
2117
- #~ msgid "Error text color"
2118
- #~ msgstr "Couleur pour le texte des erreurs"
2119
-
2120
- #~ msgid "Background color of the input field errors"
2121
- #~ msgstr "Couleur de fond pour les erreurs de saisie dans les champs"
2122
-
2123
- #~ msgid "Border color of the input field errors"
2124
- #~ msgstr "Couleur de la bordure pour les erreurs de saisie dans les champs"
2125
-
2126
- #~ msgid "Placeholder color of the input field errors"
2127
- #~ msgstr "Couleur pour la localisation lors d'une erreur de saisie du champ"
2128
-
2129
- #~ msgid "Input fields"
2130
- #~ msgstr "Champs de saisie"
2131
-
2132
- #~ msgid "Input fields background color"
2133
- #~ msgstr "Couleur de fond pour les champs de saisie"
2134
-
2135
- #~ msgid "Text fields color"
2136
- #~ msgstr "Couleur pour les textes des champs de saisie"
2137
-
2138
- #~ msgid "Border width in px, numbers only"
2139
- #~ msgstr "Largeur des bordures en px, nombre seulement"
2140
-
2141
- #~ msgid "Border color"
2142
- #~ msgstr "Couleur des bordures"
2143
-
2144
- #~ msgid "Width in px, numbers only"
2145
- #~ msgstr "Largeur en px, nombre seulement"
2146
-
2147
- #~ msgid "Button color"
2148
- #~ msgstr "Couleur du bouton"
2149
-
2150
- #~ msgid "Button text color"
2151
- #~ msgstr "Couleur du texte du bouton"
2152
-
2153
- #~ msgid "Contact Form Pro | Preview"
2154
- #~ msgstr "Formulaire Pro de Contact | Prévisualisation"
2155
-
2156
- #~ msgid "Show with errors"
2157
- #~ msgstr "Afficher avec les erreurs"
2158
-
2159
- #~ msgid "Please enter your full name..."
2160
- #~ msgstr "Merci de saisir votre nom..."
2161
-
2162
- #~ msgid "Please enter your address..."
2163
- #~ msgstr "Merci de saisir votre adresse..."
2164
-
2165
- #~ msgid "Please enter your email address..."
2166
- #~ msgstr "Merci de saisir votre adresse e-mail..."
2167
-
2168
- #~ msgid "Please enter your phone number..."
2169
- #~ msgstr "Merci de saisir votre numéro de téléphone..."
2170
-
2171
- #~ msgid "Please enter subject..."
2172
- #~ msgstr "Merci de saisir le sujet..."
2173
-
2174
- #~ msgid ""
2175
- #~ "Supported file types: HTML, TXT, CSS, GIF, PNG, JPEG, JPG, TIFF, BMP, AI, "
2176
- #~ "EPS, PS, RTF, PDF, DOC, DOCX, XLS, ZIP, RAR, WAV, MP3, PPT. Max file "
2177
- #~ "size: 2MB"
2178
- #~ msgstr ""
2179
- #~ "Types de fichiers autorisés: HTML, TXT, CSS, GIF, PNG, JPEG, JPG, TIFF, "
2180
- #~ "BMP, AI, EPS, PS, RTF, PDF, DOC, DOCX, XLS, ZIP, RAR, WAV, MP3, PPT. "
2181
- #~ "Taille maximum 2MB"
2182
-
2183
- #~ msgid "You can attach the following file formats"
2184
- #~ msgstr "Vous pouvez joindre des fichiers aux formats suivants"
2185
-
2186
- #~ msgid "Contact from"
2187
- #~ msgstr "Contact de"
2188
-
2189
- #~ msgid "Email"
2190
- #~ msgstr "E-mail"
2191
-
2192
- #~ msgid "Site"
2193
- #~ msgstr "Site"
2194
-
2195
- #~ msgid ""
2196
- #~ "If you can see this MIME, it means that the MIME type is not supported by "
2197
- #~ "your email client!"
2198
- #~ msgstr ""
2199
- #~ "Si vous voyez ce MIME c'est que votre navigateur n'accepte pas ce type de "
2200
- #~ "MIME !"
2201
-
2202
- #~ msgid "Display Attachment tips"
2203
- #~ msgstr "Afficher les explications sur les pièces jointes"
2204
-
2205
- #~ msgid "Display a phone number field"
2206
- #~ msgstr "Afficher le champ téléphone"
2207
-
2208
- #~ msgid "Please enter a valid email address. Settings are not saved."
2209
- #~ msgstr ""
2210
- #~ "Merci de saisir une adresse e-mail valide. Les modifications ne sont pas "
2211
- #~ "sauvegardées."
2212
-
2213
- #~ msgid "E-Mail Address"
2214
- #~ msgstr "Adresse e-mail"
2215
-
2216
- #, fuzzy
2217
- #~ msgid ""
2218
- #~ "If you would like to add a Contact Form to your website, just copy and "
2219
- #~ "put this shortcode onto your post or page:"
2220
- #~ msgstr ""
2221
- #~ "Si vous souhaiter ajouter un formulaire de contact à votre site web, "
2222
- #~ "copiez juste ce code dans un article ou sur une page ou un widget:"
2223
-
2224
- #, fuzzy
2225
- #~ msgid "Thank you for contact."
2226
- #~ msgstr "Merci de nous avoir contacté."
2227
-
2228
- #, fuzzy
2229
- #~ msgid "Set a name of user wo will get messages from a contact form."
2230
- #~ msgstr ""
2231
- #~ "Choisir le nom d'utilisateur qui recevra les messages envoyés depuis le "
2232
- #~ "formulaire de contact."
2233
-
2234
- #~ msgid "E-Mail Addresse:"
2235
- #~ msgstr "Indirizzo e-mail:"
2
  msgstr ""
3
  "Project-Id-Version: bestwebsoft\n"
4
  "Report-Msgid-Bugs-To: \n"
5
+ "POT-Creation-Date: 2018-01-26 12:09+0100\n"
6
+ "PO-Revision-Date: 2018-03-02 10:06+0200\n"
7
  "Last-Translator: Luc Capronnier <lcapronnier@yahoo.com>\n"
8
  "Language-Team: Luc Capronnier <lcapronnier@yahoo.com>\n"
 
9
  "MIME-Version: 1.0\n"
10
  "Content-Type: text/plain; charset=UTF-8\n"
11
  "Content-Transfer-Encoding: 8bit\n"
12
+ "Language: fr_FR\n"
13
+ "X-Poedit-KeywordsList: __;_e\n"
14
  "X-Poedit-Basepath: ..\n"
15
  "X-Poedit-SourceCharset: UTF-8\n"
16
  "Plural-Forms: nplurals=2;plural=n>2;\n"
22
  msgstr "obligatoire"
23
 
24
  #: bws_functions.php:75
25
+ msgid "or higher, that is why it has been deactivated! Please upgrade WordPress and try again."
26
+ msgstr "ou supérieure, c&rsquo;est pourquoi il a été désactivé&nbsp;! Merci de faire la mise à jour de WordPress puis de ré-essayer."
 
 
 
 
27
 
28
  #: bws_functions.php:76
29
  msgid "Back to the WordPress"
35
 
36
  #: bws_functions.php:92
37
  msgid "Like the plugin?"
38
+ msgstr "Voter pour l&rsquo;extension"
39
 
40
  #: bws_functions.php:93
41
  #, php-format
42
  msgid "%s reviews"
43
+ msgstr "%s appréciations"
44
 
45
  #: bws_functions.php:94
46
  msgid "Rate it"
48
 
49
  #: bws_functions.php:103
50
  msgid "Need help?"
51
+ msgstr "Besoin d&rsquo;aide&nbsp;?"
52
 
53
+ #: bws_functions.php:104 bws_functions.php:919 class-bws-settings.php:1058
54
  msgid "Visit Help Center"
55
  msgstr "Visiter le site du support"
56
 
57
  #: bws_functions.php:107
58
  msgid "Want to support the plugin?"
59
+ msgstr "Voter pour l&rsquo;extension"
60
 
61
  #: bws_functions.php:108 bws_menu.php:560
62
  msgid "Donate"
64
 
65
  #: bws_functions.php:128
66
  msgid "WARNING: Illegal use notification"
67
+ msgstr "AVERTISSEMENT&nbsp;: Notification d&rsquo;utilisation abusive"
68
 
69
  #: bws_functions.php:128
70
+ msgid "You can use one license of the Pro plugin for one domain only. Please check and edit your license or domain if necessary using your personal Client Area. We strongly recommend you to solve the problem within 24 hours, otherwise the Pro plugin will be deactivated."
71
+ msgstr "Vous ne pouvez utilisez qu&rsquo;une licence de la version Pro de l&rsquo;extension pour un seul domaine. Merci de vérifier et de modifier votre licence ou votre domaine si nécessaire en utilisant votre zone client. Nous vous recommandons de résoudre ce problème dans les 24 heures, sinon l&rsquo;extension sera rendue inactive."
 
 
 
 
72
 
73
  #: bws_functions.php:128 bws_functions.php:341 bws_menu.php:631
74
  #: class-bws-settings.php:144
76
  msgstr "En savoir plus"
77
 
78
  #: bws_functions.php:145
79
+ msgid "Notice: Your Pro Trial license has expired. To continue using the plugin, you should buy a Pro license"
80
+ msgstr "Information&nbsp;:Votre licence d&rsquo;évaluation est terminée. Pour continuer à utiliser cette extension, vous devez acheter une licence PRO."
 
 
 
 
81
 
82
  #: bws_functions.php:147
83
+ msgid "Your license has expired. To continue getting top-priority support and plugin updates, you should extend it."
84
+ msgstr "Votre licence est terminée. Pour continuer à disposer du support rapide et des mises à jour de l&rsquo;extension vous devez la renouveler."
 
 
 
 
85
 
86
  #: bws_functions.php:147 bws_functions.php:389 deprecated.php:586
87
  msgid "Learn more"
90
  #: bws_functions.php:165
91
  #, php-format
92
  msgid "Notice: You are using the Pro Trial license of %s plugin."
93
+ msgstr "Avertissement&nbsp;: vous utilisez la version d&rsquo;évaluation de l&rsquo;extension %s."
 
94
 
95
  #: bws_functions.php:167
96
  msgid "Notice: You are using the Pro Trial license of plugin."
97
+ msgstr "Avertissement&nbsp;: vous utilisez la version d&rsquo;évaluation de l&rsquo;extension."
98
 
99
  #: bws_functions.php:170
100
  msgid "The Pro Trial license will expire on"
101
+ msgstr "La licence PRO d&rsquo;évaluation expirera le"
102
 
103
  #: bws_functions.php:193
104
+ msgid "or higher! We do not guarantee that our plugin will work correctly. Please upgrade to WordPress latest version."
105
+ msgstr "ou plus&nbsp;! Nous ne garantissons pas que notre extension fonctionne correctement. Merci de mettre à jour WordPress avec la dernière version."
 
 
 
 
106
 
107
  #: bws_functions.php:208
108
  #, php-format
109
  msgid "Thank you for installing %s plugin!"
110
+ msgstr "Merci d&rsquo;avoir installé l&rsquo;extension %s&nbsp;!"
111
 
112
  #: bws_functions.php:210
113
  msgid "Let's get started"
116
  #: bws_functions.php:211 bws_functions.php:244 bws_menu.php:564
117
  #: bws_menu.php:566
118
  msgid "Settings"
119
+ msgstr "Paramètres"
120
 
121
  #: bws_functions.php:213 bws_menu.php:326 class-bws-settings.php:747
122
  #: class-bws-settings.php:1060 class-bws-settings.php:1070 deprecated.php:697
130
  #: bws_functions.php:218 bws_functions.php:228 bws_functions.php:332
131
  #: bws_functions.php:385 bws_functions.php:487
132
  msgid "Close notice"
133
+ msgstr "Effacer l&rsquo;avertissement"
134
 
135
  #: bws_functions.php:233
136
  msgid "Thank you for installing plugins by BestWebSoft!"
137
+ msgstr "Merci d&rsquo;avoir installé des extensions de BestWebSoft&nbsp;!"
138
 
139
  #: bws_functions.php:235
140
  msgid "More Details"
149
  msgstr "Une ou des fonction(s) obsolètes sont utilisées sur ce site ici&nbsp;:"
150
 
151
  #: bws_functions.php:278
152
+ msgid "This function(-s) will be removed over time. Please update the product(-s)."
153
+ msgstr "Ces fonctions seront supprimées rapidement. Merci de mettre à jour vos produits."
 
 
 
154
 
155
  #: bws_functions.php:337
156
  msgid "It’s time to upgrade your"
157
+ msgstr "C&rsquo;est le moment de mettre à jour votre "
158
 
159
  #: bws_functions.php:337
160
  msgid "to"
162
 
163
  #: bws_functions.php:337
164
  msgid "version!"
165
+ msgstr "version&nbsp;!"
166
 
167
  #: bws_functions.php:338
168
  msgid "Extend standard plugin functionality with new great options."
169
+ msgstr "Étend les fonctionnalités classiques de l&rsquo;extension avec des nouvelles options."
 
 
170
 
171
  #: bws_functions.php:389
172
  #, php-format
173
+ msgid "Your license key for %s expires on %s and you won't be granted TOP-PRIORITY SUPPORT or UPDATES."
174
+ msgstr "Votre clé de licence pour %s est terminée le %s et vous ne disposerez plus du support rapide et des mises à jour."
 
 
 
 
175
 
176
  #: bws_functions.php:482
177
  #, php-format
178
  msgid "Thank you for choosing %s plugin!"
179
+ msgstr "Merci d&rsquo;avoir choisi l&rsquo;extension %s&nbsp;!"
180
 
181
  #: bws_functions.php:483
182
+ msgid "If you have a feature, suggestion or idea you'd like to see in the plugin, we'd love to hear about it!"
183
+ msgstr "Si vous avez une fonctionnalité, une suggestion ou une idée que vous souhaitez pour cette extension, nous serons ravis d&rsquo;en parler avec vous&nbsp;!"
 
 
 
 
184
 
185
  #: bws_functions.php:484
186
  msgid "Suggest a Feature"
193
 
194
  #: bws_functions.php:500
195
  msgid "The plugin's settings have been changed."
196
+ msgstr "Les paramètres de l&rsquo;extension ont été modifiés."
197
 
198
  #: bws_functions.php:501 class-bws-settings.php:183 class-bws-settings.php:203
199
  #: deprecated.php:642
201
  msgstr "Enregistrer les modifications"
202
 
203
  #: bws_functions.php:515
204
+ msgid "You can always look at premium options by checking the \"Pro Options\" in the \"Misc\" tab."
205
+ msgstr "Vous pouvez toujours consulter les options premium en cliquant sur le lien \"Voir les fonctionnalités de la version PRO\" dans l&rsquo;onglet divers."
 
 
 
 
 
 
 
 
 
 
 
 
206
 
207
  #: bws_functions.php:673
208
  msgid "Add shortcode"
218
 
219
  #: bws_functions.php:821
220
  msgid "Are you sure you want to restore default settings?"
221
+ msgstr "Êtes vous sûr de vouloir remettre toutes les valeurs par défaut&nbsp;?"
222
 
223
  #: bws_functions.php:824
224
  msgid "Yes, restore all settings"
240
  msgid "The shortcode will be inserted"
241
  msgstr "Le code court sera inséré"
242
 
243
+ #: bws_functions.php:924
244
  msgid "FAQ"
245
  msgstr "FAQ"
246
 
247
+ #: bws_functions.php:930
248
  msgid "For more information:"
249
+ msgstr "Pour plus d&rsquo;informations&nbsp;:"
250
 
251
+ #: bws_functions.php:931
252
  msgid "Documentation"
253
  msgstr "Documentation"
254
 
255
+ #: bws_functions.php:932
256
  msgid "Video Instructions"
257
  msgstr "Vidéo explicative"
258
 
259
+ #: bws_functions.php:933
260
  msgid "Submit a Request"
261
  msgstr "Soumettre une requête"
262
 
267
  #: bws_menu.php:122 class-bws-settings.php:818 class-bws-settings.php:885
268
  #: class-bws-settings.php:921 deprecated.php:133 deprecated.php:199
269
  #: deprecated.php:353
270
+ msgid "Something went wrong. Please try again later. If the error appears again, please contact us"
271
+ msgstr "Il est survenu une erreur. Essayer de nouveau. Si l&rsquo;erreur se produit de nouveau, merci de contacter <a href=http://support.bestwebsoft.com>BestWebSoft</a>. Nous sommes désolés pour le désagrément."
 
 
 
 
 
272
 
273
  #: bws_menu.php:122 class-bws-settings.php:818 class-bws-settings.php:885
274
  #: class-bws-settings.php:921 deprecated.php:133 deprecated.php:199
282
  msgstr "Clé de licence incorrecte."
283
 
284
  #: bws_menu.php:130
285
+ msgid "This license key is bound to another site. Change it via personal Client Area."
286
+ msgstr "La clé de licence correspond à un autre site. Modifier au travers de votre espace client."
 
 
 
 
287
 
288
  #: bws_menu.php:130
289
  msgid "Log in"
291
 
292
  #: bws_menu.php:132 bws_menu.php:332 deprecated.php:261
293
  msgid "Unfortunately, you have exceeded the number of available tries per day."
294
+ msgstr "Désoler mais vous avez dépassé le nombre d&rsquo;essai de la journée. Merci de télécharger l&rsquo;extension manuellement."
 
 
295
 
296
  #: bws_menu.php:134 deprecated.php:365
297
  #, php-format
298
+ msgid "Unfortunately, Your license has expired. To continue getting top-priority support and plugin updates, you should extend it in your %s"
299
+ msgstr "Désoler, votre licence est terminée. Pour continuer à disposer du support rapide et des mises à jour de l&rsquo;extension vous devez la renouveler dans votre %s"
 
 
 
 
 
300
 
301
  #: bws_menu.php:136 class-bws-settings.php:935 deprecated.php:367
302
+ msgid "Unfortunately, the Pro licence was already installed to this domain. The Pro Trial license can be installed only once."
303
+ msgstr "Une licence a déjà été installée sur ce domaine. La licence d&rsquo;évaluation ne peut-être installée qu&rsquo;une seule fois."
 
 
 
 
304
 
305
  #: bws_menu.php:142 class-bws-settings.php:839 deprecated.php:153
306
  msgid "The license key is valid."
312
 
313
  #: bws_menu.php:146
314
  msgid "Congratulations! Pro Membership license is activated successfully."
315
+ msgstr "Félicitations&nbsp;! La version PRO de cette extension a été activée avec succès."
316
 
317
  #: bws_menu.php:153 class-bws-settings.php:1007 deprecated.php:436
318
+ msgid "Something went wrong. Try again later or upload the plugin manually. We are sorry for inconvenience."
319
+ msgstr "Il est survenu une erreur. Essayer de nouveau ou bien télécharger l&rsquo;extension manuellement.Nous sommes désolés pour le désagrément."
 
 
 
 
320
 
321
  #: bws_menu.php:163
322
  msgid "Please enter your license key."
386
 
387
  #: bws_menu.php:207
388
  msgid "Server Environment"
389
+ msgstr "Environnent serveur"
390
 
391
  #: bws_menu.php:209
392
  msgid "Operating System"
467
  #: bws_menu.php:262
468
  #, php-format
469
  msgid "Email with system info is sent to %s."
470
+ msgstr "Le courriel avec les informations système est envoyé à %s."
471
 
472
  #: bws_menu.php:266
473
  msgid "Thank you for contacting us."
475
 
476
  #: bws_menu.php:289
477
  msgid "Sorry, email message could not be delivered."
478
+ msgstr "Désolé, votre e-mail n&rsquo;a pas pu être envoyé."
479
 
480
  #: bws_menu.php:305 bws_menu.php:309 bws_menu.php:358 deprecated.php:91
481
  msgid "Plugins"
495
 
496
  #: bws_menu.php:316
497
  msgid "Manage purchased licenses & subscriptions"
498
+ msgstr "Gérer les licences et les inscriptions"
499
 
500
  #: bws_menu.php:324
501
  #, php-format
502
  msgid "Get Access to %s+ Premium Plugins"
503
+ msgstr "Accéder à plus de %s extensions premiums"
504
 
505
  #: bws_menu.php:326
506
  msgid "Subscribe to Pro Membership"
523
 
524
  #: bws_menu.php:359
525
  msgid "Upload Plugin"
526
+ msgstr "Charger l&rsquo;extension"
527
 
528
  #: bws_menu.php:363
529
  #, php-format
530
+ msgid "The plugin generated %d characters of <strong>unexpected output</strong> during activation. If you notice &#8220;headers already sent&#8221; messages, problems with syndication feeds or other issues, try deactivating or removing this plugin."
531
+ msgstr "Cette extension a produit %d caractères <strong>inattendus</strong> durant l&rsquo;activation. Si vous constatez le message &#8220;headers already sent&#8221;, des problèmes avec les flux de syndication ou autres, essayez de désactiver l&rsquo;extension ou supprimer l&rsquo;extension."
 
 
 
 
 
 
 
 
532
 
533
  #: bws_menu.php:365
534
+ msgid "Plugin could not be activated because it triggered a <strong>fatal error</strong>."
535
+ msgstr "L&rsquo;extension ne peut pas être activée car une <strong>erreur fatale</strong> a été détectée."
 
 
 
 
536
 
537
  #: bws_menu.php:368
538
  msgid "Plugin <strong>activated</strong>."
540
 
541
  #: bws_menu.php:375
542
  msgid "Installing Plugin"
543
+ msgstr "Extension installée"
544
 
545
  #: bws_menu.php:381
546
  msgid "Downloading install package from"
547
+ msgstr "Télécharger le paquet d&rsquo;installation depuis"
548
 
549
  #: bws_menu.php:398 bws_menu.php:429 bws_menu.php:440 deprecated.php:388
550
  #: deprecated.php:410 deprecated.php:432
551
  msgid "Failed to download the zip archive. Please, upload the plugin manually"
552
+ msgstr "Erreur de téléchargement de l&rsquo;archive ZIP. Merci de télécharger l&rsquo;extension manuellement."
 
 
553
 
554
  #: bws_menu.php:406
555
  msgid "Unpacking the package"
557
 
558
  #: bws_menu.php:411 bws_menu.php:419
559
  msgid "Installing the plugin"
560
+ msgstr "Installer l&rsquo;extension"
561
 
562
  #: bws_menu.php:415 deprecated.php:400
563
  msgid "Failed to open the zip archive. Please, upload the plugin manually"
564
+ msgstr "Erreur d&rsquo;ouverture de l&rsquo;archive zip. Merci de télécharger l&rsquo;extension manuellement."
 
 
565
 
566
  #: bws_menu.php:422 deprecated.php:406
567
+ msgid "Your server does not support either ZipArchive or Phar. Please, upload the plugin manually"
568
+ msgstr "Votre serveur n&rsquo;a pas le support du format des archives ZIP ou Phar. Merci de télécharger l&rsquo;extension manuellement."
 
 
 
 
569
 
570
  #: bws_menu.php:425
571
  #, php-format
572
  msgid "The plugin %s is successfully installed."
573
+ msgstr "L&rsquo;extension %s a été installée avec succès."
574
 
575
  #: bws_menu.php:432 deprecated.php:413
576
  msgid "UploadDir is not writable. Please, upload the plugin manually"
577
+ msgstr "Erreur d&rsquo;ouverture de l&rsquo;archive zip. Merci de télécharger l&rsquo;extension manuellement."
 
 
578
 
579
  #: bws_menu.php:437
580
  msgid "Activate Plugin"
581
+ msgstr "Activer l&rsquo;extension"
582
 
583
  #: bws_menu.php:437 bws_menu.php:443
584
  msgid "Return to BestWebSoft Panel"
585
+ msgstr "Retourner à l&rsquo;administration BestWebSoft"
586
 
587
  #: bws_menu.php:451 bws_menu.php:471 bws_menu.php:600
588
  msgid "All"
635
 
636
  #: bws_menu.php:591
637
  msgid "Nothing found. Try another criteria."
638
+ msgstr "Pas de réponse. Essayer d&rsquo;autres critères."
639
 
640
  #: bws_menu.php:628
641
  #, php-format
648
 
649
  #: bws_menu.php:645
650
  msgid "Browse More WordPress Themes"
651
+ msgstr "Parcourir les thèmes gratuits pour WordPress"
652
 
653
  #: bws_menu.php:654
654
  msgid "Send to support"
702
 
703
  #: class-bws-settings.php:285
704
  msgid "All plugin settings were restored."
705
+ msgstr "Les paramètres de l&rsquo;extension ont été remis aux valeurs d&rsquo;origine."
706
 
707
  #: class-bws-settings.php:423
708
  msgid "Custom Code"
710
 
711
  #: class-bws-settings.php:427 deprecated.php:498
712
  msgid "You do not have sufficient permissions to edit plugins for this site."
713
+ msgstr "Vous n&rsquo;avez pas assez de droits pour modifier l&rsquo;extension pour ce site."
 
714
 
715
  #: class-bws-settings.php:432 deprecated.php:620
716
  msgid "These styles will be added to the header on all pages of your site."
717
+ msgstr "Ces styles seront ajoutés aux entêtes sur tous les pages de votre site."
 
718
 
719
  #: class-bws-settings.php:435 deprecated.php:622
720
  #, php-format
721
+ msgid "This PHP code will be hooked to the %s action and will be printed on front end only."
722
+ msgstr "Ce code PHP sera rattaché à l&rsquo;action %s et sera affiché uniquement sur la partie publique."
 
 
 
 
723
 
724
  #: class-bws-settings.php:438
725
  msgid "These code will be added to the header on all pages of your site."
727
 
728
  #: class-bws-settings.php:446 deprecated.php:646
729
  #, php-format
730
+ msgid "You need to make this files writable before you can save your changes. See %s the Codex %s for more information."
731
+ msgstr "Vous devez rendre ce fichier modifiable avant de pouvoir enregistrer vos modifications. Regarder %s du Codex %s pour plus d&rsquo;informations."
 
 
 
 
732
 
733
  #: class-bws-settings.php:456 deprecated.php:628
734
  msgid "Browsing"
750
 
751
  #: class-bws-settings.php:540 class-bws-settings.php:595
752
  #, php-format
753
+ msgid "It is prohibited to change %s settings on this site in the %s network settings."
754
+ msgstr "Il est interdit de changer le paramètre %s sur ce site dans les paramètres %s du réseau."
 
 
 
 
755
 
756
  #: class-bws-settings.php:543 class-bws-settings.php:598
757
  #, php-format
758
+ msgid "It is prohibited to view %s settings on this site in the %s network settings."
759
+ msgstr "Il est interdit de voir le paramètre %s sur ce site dans les paramètres %s du réseau."
 
 
 
760
 
761
  #: class-bws-settings.php:552
762
  msgid "Pro Options"
764
 
765
  #: class-bws-settings.php:556
766
  msgid "Enable to display plugin Pro options."
767
+ msgstr "Activer pour voir les options PRO de l&rsquo;extension."
768
 
769
  #: class-bws-settings.php:562
770
  msgid "Track Usage"
771
+ msgstr "Suivi de l&rsquo;utilisation"
772
 
773
  #: class-bws-settings.php:566
774
+ msgid "Enable to allow tracking plugin usage anonymously in order to make it better."
775
+ msgstr "Activer pour autoriser le suivi de l&rsquo;utilisation de l&rsquo;extension de manière anonyme afin de la rendre meilleure."
 
 
 
776
 
777
  #: class-bws-settings.php:571
778
  msgid "Default Settings"
779
+ msgstr "Réglages par défaut"
780
 
781
  #: class-bws-settings.php:573
782
  msgid "Restore Settings"
784
 
785
  #: class-bws-settings.php:574
786
  msgid "This will restore plugin settings to defaults."
787
+ msgstr "Remettre les valeurs par défaut des paramètres de l&rsquo;extension."
788
 
789
  #: class-bws-settings.php:586
790
  msgid "Import / Export"
797
 
798
  #: class-bws-settings.php:725
799
  msgid "Congratulations! Pro license is activated successfully."
800
+ msgstr "Félicitations&nbsp;! La version PRO de cette extension a été activée avec succès."
 
801
 
802
  #: class-bws-settings.php:726
803
  #, php-format
804
  msgid "You will be automatically redirected to the %s in %s seconds."
805
+ msgstr "Vous allez être redirigé automatiquement vers %s dans %s secondes."
806
 
807
  #: class-bws-settings.php:726
808
  msgid "Settings page"
811
  #: class-bws-settings.php:741
812
  #, php-format
813
  msgid "Enter your license key to activate %s and get premium plugin features."
814
+ msgstr "Saisir votre clé de licence pour activer %s et obtenir les fonctionnalités premium."
 
 
815
 
816
  #: class-bws-settings.php:744 class-bws-settings.php:931 deprecated.php:363
817
  #: deprecated.php:706
818
+ msgid "Unfortunately, you have exceeded the number of available tries per day. Please, upload the plugin manually."
819
+ msgstr "Désoler mais vous avez dépassé le nombre d&rsquo;essai de la journée. Merci de télécharger l&rsquo;extension manuellement."
 
 
 
 
820
 
821
  #: class-bws-settings.php:747 deprecated.php:697
822
  #, php-format
823
  msgid "Start Your Free %s-Day Trial Now"
824
+ msgstr "Débuter votre licence d&rsquo;évaluation gratuite de %s jours"
825
 
826
  #: class-bws-settings.php:762
827
+ msgid "If necessary, you can check if the license key is correct or reenter it in the field below."
828
+ msgstr "Si nécessaire vous pouvez vérifier que la clé de licence est correcte ou la saisir de nouveau dans le champ ci-dessous."
 
 
 
 
829
 
830
  #: class-bws-settings.php:767
831
  msgid "Manage License Settings"
833
 
834
  #: class-bws-settings.php:769
835
  msgid "Login to Client Area"
836
+ msgstr "Se connecter à l&rsquo;espace client"
837
 
838
  #: class-bws-settings.php:771
839
+ msgid "Manage active licenses, download BWS products, and view your payment history using BestWebSoft Client Area."
840
+ msgstr "Gérer les licences actives, télécharger les produits BWS, et voir l&rsquo;historique de vos règlements dans l&rsquo;interface client de BestWebSoft."
 
 
 
 
841
 
842
  #: class-bws-settings.php:826 class-bws-settings.php:929 deprecated.php:141
843
  #: deprecated.php:361
845
  msgstr "La clé de licence correspond à un autre site."
846
 
847
  #: class-bws-settings.php:828 deprecated.php:143
848
+ msgid "This license key is valid, but Your license has expired. If you want to update our plugin in future, you should extend the license."
849
+ msgstr "La clé de licence est valide mais votre durée de validité est passée. Pour continuer à disposer du support rapide et des mises à jour de l&rsquo;extension vous devez la renouveller."
 
 
 
 
 
850
 
851
  #: class-bws-settings.php:830 deprecated.php:145
852
  msgid "Unfortunately, you have exceeded the number of available tries."
853
+ msgstr "Désoler mais vous avez dépassé le nombre d&rsquo;essai de la journée. Merci de télécharger l&rsquo;extension manuellement."
 
 
854
 
855
  #: class-bws-settings.php:832 deprecated.php:147
856
+ msgid "Unfortunately, the Pro Trial licence was already installed to this domain. The Pro Trial license can be installed only once."
857
+ msgstr "Une licence a déjà été installée sur ce domaine. La licence d&rsquo;évaluation ne peut-être installée qu&rsquo;une seule fois."
 
 
 
 
858
 
859
  #: class-bws-settings.php:837 deprecated.php:151
860
  msgid "The Pro Trial license key is valid."
861
+ msgstr "La clé de licence d&rsquo;évaluation est valide."
862
 
863
  #: class-bws-settings.php:845 deprecated.php:159 deprecated.php:246
864
  #, php-format
865
+ msgid "In order to continue using the plugin it is necessary to buy a %s license."
866
+ msgstr "Afin de pouvoir continuer à utiliser cette extension il est nécessaire d&rsquo;acheter une licence %s."
 
 
 
867
 
868
  #: class-bws-settings.php:933
869
  #, php-format
870
+ msgid "Unfortunately, Your license has expired. To continue getting top-priority support and plugin updates, you should extend it in your %s."
871
+ msgstr "Désoler, votre licence est terminée. Pour continuer à disposer du support rapide et des mises à jour de l&rsquo;extension vous devez la renouveler dans votre %s."
 
 
872
 
873
  #: class-bws-settings.php:959 class-bws-settings.php:981
874
  #: class-bws-settings.php:1003
875
  msgid "Failed to download the zip archive. Please, upload the plugin manually."
876
+ msgstr "Erreur de téléchargement de l&rsquo;archive ZIP. Merci de télécharger l&rsquo;extension manuellement."
877
 
878
  #: class-bws-settings.php:971
879
  msgid "Failed to open the zip archive. Please, upload the plugin manually."
880
+ msgstr "Erreur d&rsquo;ouverture de l&rsquo;archive zip. Merci de télécharger l&rsquo;extension manuellement."
881
 
882
  #: class-bws-settings.php:977
883
+ msgid "Your server does not support either ZipArchive or Phar. Please, upload the plugin manually."
884
+ msgstr "Votre serveur n&rsquo;a pas le support du format des archives ZIP ou Phar. Merci de télécharger l&rsquo;extension manuellement."
 
 
885
 
886
  #: class-bws-settings.php:984
887
  msgid "UploadDir is not writable. Please, upload the plugin manually."
888
+ msgstr "Le répertoire de destination n&rsquo;est pas disponible en écriture. Merci de télécharger l&rsquo;extension manuellement."
889
 
890
  #: class-bws-settings.php:1042 deprecated.php:464
891
  msgid "Please, enter Your license key"
893
 
894
  #: class-bws-settings.php:1054
895
  msgid "Need Help?"
896
+ msgstr "Besoin d&rsquo;aide&nbsp;?"
897
 
898
  #: class-bws-settings.php:1056
899
  msgid "Read the Instruction"
905
 
906
  #: class-bws-settings.php:1071
907
  msgid "Start Your Free Trial"
908
+ msgstr "Débuter votre licence d&rsquo;évaluation gratuite"
909
 
910
  #: deactivation-form.php:27
911
  msgid "Need help? We are ready to answer your questions."
912
+ msgstr "Besoin d&rsquo;aide&nbsp;? Nous sommes prêts à répondre à vos questions."
913
 
914
  #: deactivation-form.php:27
915
  msgid "Contact Support"
916
+ msgstr "Contacter le support"
917
 
918
  #: deactivation-form.php:32
919
  msgid "The plugin is not working"
920
+ msgstr "L&rsquo;extension ne fonctionna pas"
921
 
922
  #: deactivation-form.php:34
923
  msgid "Kindly share what didn't work so we can fix it in future updates..."
924
+ msgstr "Merci de partager ce qui ne fonctionne pas afin que nous puissions le corriger dans une prochaine version..."
925
 
926
  #: deactivation-form.php:38
927
  msgid "The plugin didn't work as expected"
928
+ msgstr "L&rsquo;extension ne fonctionne pas comme prévue"
929
 
930
  #: deactivation-form.php:40
931
  msgid "What did you expect?"
932
+ msgstr "Quel est le fonctionnement attendu&nbsp;?"
933
 
934
  #: deactivation-form.php:44
935
  msgid "The plugin suddenly stopped working"
936
+ msgstr "L&rsquo;extension a subitement cessé de fonctionner"
937
 
938
  #: deactivation-form.php:51
939
  msgid "The plugin broke my site"
940
+ msgstr "L&rsquo;extension a cassé mon site"
941
 
942
  #: deactivation-form.php:58
943
  msgid "I couldn't understand how to get it work"
944
+ msgstr "Je n&rsquo;arrive pas à comprendre commen la faire fonctionner"
945
 
946
  #: deactivation-form.php:65
947
  msgid "I found a better plugin"
948
+ msgstr "J&rsquo;ai trouvé une meuilleure extension"
949
 
950
  #: deactivation-form.php:67
951
  msgid "What's the plugin name?"
952
+ msgstr "Quel est le nom de l&rsquo;extension&nbsp;?"
953
 
954
  #: deactivation-form.php:71
955
  msgid "The plugin is great, but I need specific feature that you don't support"
956
+ msgstr "L&rsquo;extension est magnifique, mais j&rsquo;ai besoin d&rsquo;une fonctionnalité spécifique que vous n&rsquo;offrez pas"
957
 
958
  #: deactivation-form.php:73
959
  msgid "What feature?"
960
+ msgstr "Quelle fonctionalité&nbsp;?"
961
 
962
  #: deactivation-form.php:77
963
  msgid "I no longer need the plugin"
964
+ msgstr "Je n&rsquo;ai plus besoin de cette extension"
965
 
966
  #: deactivation-form.php:83
967
  msgid "It's a temporary deactivation, I'm just debugging an issue"
968
+ msgstr "C&rsquo;est une désactivation temporaire, je suis entrain de résoudre un problème"
969
 
970
  #: deactivation-form.php:89
971
  msgid "Other"
973
 
974
  #: deactivation-form.php:123
975
  msgid "Quick Feedback"
976
+ msgstr "Retour rapide"
977
 
978
  #: deactivation-form.php:124
979
  msgid "If you have a moment, please let us know why you are deactivating"
980
+ msgstr "Si vous avez quelques instants, merci de nous dire pourquoi vous désactivez l&rsquo;extension"
981
 
982
  #: deactivation-form.php:127
983
  msgid "Send website data and allow to contact me back"
984
+ msgstr "Envoyer les informations sur le site et autorisez un contact en retour"
985
 
986
  #: deactivation-form.php:132
987
  msgid "Cancel"
988
+ msgstr "Annuler"
989
 
990
  #: deactivation-form.php:233
991
  msgid "Processing"
992
+ msgstr "En cours"
993
 
994
  #: deactivation-form.php:262
995
  msgid "Submit & Deactivate"
996
+ msgstr "Envoyer et désactiver"
997
 
998
  #: deactivation-form.php:277
999
  msgid "Please tell us the reason so we can improve it."
1000
+ msgstr "Merci de nous en dire la raison afin que nous puission l&rsquo;améliorer."
1001
 
1002
  #: deactivation-form.php:345
1003
  msgid "Deactivate"
1004
+ msgstr "Désactivé"
1005
 
1006
  #: deprecated.php:93
1007
  msgid "System Status"
1012
  msgstr "Merci de saisir votre clé de licence"
1013
 
1014
  #: deprecated.php:223
1015
+ msgid "If necessary, you can check if the license key is correct or reenter it in the field below. You can find your license key on your personal page - Client Area - on our website"
1016
+ msgstr "Si nécessaire vous pouvez vérifier que la clé de licence est correcte ou la saisir de nouveau dans le champ ci-dessous. Vous pouvez trouver votre clé de licence sur votre page personnelle (zone client) sur notre site web."
 
 
 
 
 
 
1017
 
1018
  #: deprecated.php:223
1019
+ msgid "(your username is the email address specified during the purchase). If necessary, please submit \"Lost your password?\" request."
1020
+ msgstr "(votre nom d&rsquo;utilisateur est l&rsquo;adresse e-mail que vous avez donnée lors de l&rsquo;achat de l&rsquo;extension). Si nécessaire, utilisez la fonction de demande de mot de passe perdu."
 
 
 
 
 
1021
 
1022
  #: deprecated.php:246
1023
  msgid "After that, you can activate it by entering your license key."
1024
+ msgstr " Après vous pouvez activer cette extension en donnant votre clé de licence."
 
1025
 
1026
  #: deprecated.php:249 deprecated.php:691
1027
  msgid "License key can be found in the"
1029
 
1030
  #: deprecated.php:251 deprecated.php:693
1031
  msgid "(your username is the email address specified during the purchase)."
1032
+ msgstr "(votre nom d&rsquo;utilisateur est l&rsquo;adresse e-mail que vous avez donnée lors de l&rsquo;achat de l&rsquo;extension)."
 
 
1033
 
1034
  #: deprecated.php:279
1035
+ msgid "Congratulations! The Pro license of the plugin is activated successfully."
1036
+ msgstr "Félicitations&nbsp;! La version PRO de cette extension a été activée avec succès."
 
 
1037
 
1038
  #: deprecated.php:281 deprecated.php:672
1039
  msgid "Please, go to"
1040
+ msgstr "Merci d&rsquo;aller à"
1041
 
1042
  #: deprecated.php:281 deprecated.php:672
1043
  msgid "the setting page"
1049
 
1050
  #: deprecated.php:316
1051
  msgid "Check premium options on the plugin settings page!"
1052
+ msgstr "Vérifier les options premium sur la page des paramètres de l&rsquo;extension&nbsp;!"
 
1053
 
1054
  #: deprecated.php:479
1055
  msgid "Restore all plugin settings to defaults"
1056
+ msgstr "Remettre les valeurs par défaut des paramètres de l&rsquo;extension"
1057
 
1058
  #: deprecated.php:481
1059
  msgid "Restore settings"
1077
  msgstr "Modifier"
1078
 
1079
  #: deprecated.php:670
1080
+ msgid "Congratulations! Pro version of the plugin is installed and activated successfully."
1081
+ msgstr "Félicitations&nbsp;! La version PRO de cette extension a été téléchargée et activée avec succès."
 
 
 
 
1082
 
1083
  #: deprecated.php:680
1084
  msgid "Show Pro features"
1090
 
1091
  #: deprecated.php:689
1092
  msgid "version of the plugin."
1093
+ msgstr "version de l&rsquo;extension."
1094
 
1095
  #: product_list.php:7
1096
  msgid "Admin Tools"
1097
+ msgstr "Outils d&rsquo;administration"
1098
 
1099
  #: product_list.php:8
1100
  msgid "Content"
1101
+ msgstr "Contenu"
1102
 
1103
  #: product_list.php:9
1104
  msgid "eCommerce"
1105
+ msgstr "eCommerce"
1106
 
1107
  #: product_list.php:10
1108
  msgid "Marketing"
1109
+ msgstr "Marketing"
1110
 
1111
  #: product_list.php:11
1112
  msgid "Navigation"
1113
+ msgstr "Navigation"
1114
 
1115
  #: product_list.php:12
1116
  msgid "Recommended"
1122
 
1123
  #: product_list.php:14
1124
  msgid "SEO"
1125
+ msgstr "SEO"
1126
 
1127
  #: product_list.php:15
1128
  msgid "SMM"
1129
+ msgstr "SMM"
1130
 
1131
  #: product_list.php:22
1132
  msgid "Best secure captcha plugin to protect your WordPress forms."
1133
+ msgstr "Extension de Captach meuilleure et plus sécurisée pour vos formulaires."
1134
 
1135
  #: product_list.php:32
1136
  msgid "Create your personal car rental/booking and reservation website."
1137
+ msgstr "Créer votre site personnel de vente/location de voitures."
1138
 
1139
  #: product_list.php:42
1140
+ msgid "Allow customers to reach you using secure contact form plugin any website must have."
1141
+ msgstr "Permet à vos clients de vous joindre en utilisant un formulaire de contact sécurisé que tout site doit avoir."
 
 
1142
 
1143
  #: product_list.php:52
1144
  msgid "Add unlimited number of contact forms to WordPress website."
1145
+ msgstr "Ajoute une nombre illimité de formulaires de contact."
1146
 
1147
  #: product_list.php:62
1148
  msgid "Save and manage Contact Form messages. Never lose important data."
1149
+ msgstr "Enregistrer et gérer les messages issu du formulaire de contact. Permet de ne pas perdre des informations importantes."
1150
 
1151
  #: product_list.php:72
1152
  msgid "Add unlimited custom pages to WordPress admin dashboard."
1153
+ msgstr "Ajouter un nombre illimté de pages dans l&rsquo;administration."
1154
 
1155
  #: product_list.php:79
1156
  msgid "Add custom fields to WordPress website search results."
1157
+ msgstr "Ajouter des champs personalisés dans le résultats de la recherche."
1158
 
1159
  #: product_list.php:86
1160
+ msgid "Add custom post types and taxonomies to WordPress website search results."
1161
+ msgstr "Ajouter des types d&rsquo;articles personalisés et des taxonomies dans le résultat de la recherche."
 
1162
 
1163
  #: product_list.php:96
1164
  msgid "Add PayPal and 2CO donate buttons to receive charity payments."
1165
+ msgstr "Ajouter des boutons de dons avec PayPal et 2CO pour recevoir des donations."
1166
 
1167
  #: product_list.php:103
1168
+ msgid "Get latest error log messages to diagnose website problems. Define and fix issues faster."
1169
+ msgstr "Obtenir les derniers messages d&rsquo;erreur pour diagnostiquer les problèmes du site. Permet de corriger plus rapidement."
 
 
1170
 
1171
  #: product_list.php:110
1172
+ msgid "Add Facebook Follow, Like, and Share buttons to WordPress posts, pages, and widgets."
1173
+ msgstr "Ajouter les boutons Suivre, Aimer et Partager pour FaceBook aux articles, pages et widgets."
 
 
1174
 
1175
  #: product_list.php:120
1176
+ msgid "Add beautiful galleries, albums & images to your WordPress website in a few clicks."
1177
+ msgstr "Ajouter des galeries, albums et images en quelques clics."
 
 
1178
 
1179
  #: product_list.php:130
1180
+ msgid "Add Google +1, Share, Follow, Hangout buttons and profile badge to WordPress posts, pages and widgets."
1181
+ msgstr "Ajouter les boutons Partager, Suivre, Particciper et le profile de Google +1 aux articles, pages et widgets."
 
 
1182
 
1183
  #: product_list.php:140
1184
+ msgid "Stronger security solution which protects your WordPress website from hacks and unauthorized login attempts."
1185
+ msgstr "Solution forte de sécurité qui protège votre site des attaques et des tentatives de connexions."
 
 
1186
 
1187
  #: product_list.php:150
1188
+ msgid "Add Adsense ads to WordPress website pages, posts, custom posts, search results, categories, tags, and widgets."
1189
+ msgstr "Ajouter les publicités Adsense aux pages, articles, types personalisés, résultats de recherche, catégories, tags, widgets."
 
 
1190
 
1191
  #: product_list.php:160
1192
  msgid "Add Google Analytics code to WordPress website and track basic stats."
1193
+ msgstr "Ajouter le code Google Analytics et permet de suivre les statistiques basiques."
1194
 
1195
  #: product_list.php:170
1196
+ msgid "Protect WordPress website forms from spam entries with Google Captcha (reCaptcha)."
1197
+ msgstr "Protéger vos formulaires avec Google Captcha (reCaptcha)."
 
 
1198
 
1199
  #: product_list.php:180
1200
  msgid "Add customized Google maps to WordPress posts, pages and widgets."
1201
+ msgstr "Ajouter des cartes de Google maps aux articles, pages et widgets."
1202
 
1203
  #: product_list.php:190
1204
+ msgid "Generate and add XML sitemap to WordPress website. Help search engines index your blog."
1205
+ msgstr "Générer et ajouter un fichier XML de sitemap. Aide les moteurs de recherche à parcourir votre site."
 
 
1206
 
1207
  #: product_list.php:200
1208
+ msgid "Replace external WordPress website links with Google shortlinks and track click stats."
1209
+ msgstr "Remplacer les liens externes dans votre site par des liens courts de Google et disposer de statistiques."
 
 
1210
 
1211
  #: product_list.php:207
1212
+ msgid "Protect WordPress website – allow and deny access for certain IP addresses, hostnames, etc."
1213
+ msgstr "Protéger votre site en autorisant ou interdissant certaines adresses IP, nom de machine, ..."
 
 
1214
 
1215
  #: product_list.php:217
1216
+ msgid "Create your personal job board and listing WordPress website. Search jobs, submit CV/resumes, choose candidates."
1217
+ msgstr "Créer votre site d&rsquo;offres d&rsquo;emploies. Rechercher des emplois, envoyer des CV/des candidatures."
 
 
1218
 
1219
  #: product_list.php:224
1220
+ msgid "Protect WordPress website against brute force attacks. Limit rate of login attempts."
1221
+ msgstr "Protéger le site contre les attaques de brute force. Limite la fréquence des tentatives de connexions."
 
 
1222
 
1223
  #: product_list.php:234
1224
+ msgid "Add LinkedIn Share and Follow buttons to WordPress posts, pages and widgets. 5 plugins included – profile, insider, etc."
1225
+ msgstr "Ajouter les boutons partager et suivre de LinkedIn aux articles, pages et widgets. 5 extensions incluses (profile, insider, etc.)"
 
 
1226
 
1227
  #: product_list.php:244
1228
+ msgid "Translate WordPress website content to other languages manually. Create multilingual pages, posts, widgets, menus, etc."
1229
+ msgstr "Traduire le contenu du site dans d&rsquo;autres langues manuellement. Créer des pages, des articles, des widgets, des menus, etc dans plusieurs langues."
 
 
1230
 
1231
  #: product_list.php:254
1232
+ msgid "Add customizable pagination to WordPress website. Split long content to multiple pages for better navigation."
1233
+ msgstr "Ajouter une pagination presonalisée. Découper un contenu long en plusieurs pages pour une meuilleure navigation."
 
 
1234
 
1235
  #: product_list.php:264
1236
+ msgid "Generate PDF files and print WordPress posts/pages. Customize document header/footer styles and appearance."
1237
+ msgstr "Générer des fichiers PDF pour des pages ou des articles. Personaliser l&rsquo;en-tête/pied de page, les styles et l&rsquo;apparence."
 
 
1238
 
1239
  #: product_list.php:274
1240
+ msgid "Add Pinterest Follow, Pin It buttons and profile widgets (Pin, Board, Profile) to WordPress posts, pages and widgets."
1241
+ msgstr "Ajouter les boutons Suivre, Epingler et le widget de profile (Epingle, Tableau de bord, profile) pour Pinterest aux articles, pages et widgets."
 
 
1242
 
1243
  #: product_list.php:284
1244
+ msgid "Create your personal portfolio WordPress website. Manage and showcase past projects to get more clients."
1245
+ msgstr "Créer votre site de portfolio. Gérer et présenter vos anciens projets pour acquérir de nouveaux clients."
 
 
1246
 
1247
  #: product_list.php:294
1248
  msgid "Export WordPress posts to CSV file format easily. Configure data order."
1249
+ msgstr "Exporter vos articles dans un format CSV facilement. Configurer l&rsquo;ordre des données."
1250
 
1251
  #: product_list.php:301
1252
+ msgid "Add extra fields to default WordPress user profile. The easiest way to create and manage additional custom values."
1253
+ msgstr "Ajouter des champs personalisés au profil utilisateur. La façon la plus simple de créer et gérer des informations supplémentaires."
 
 
1254
 
1255
  #: product_list.php:308
1256
+ msgid "Add and display HTML advertisement banner on WordPress website. Customize bar styles and appearance."
1257
+ msgstr "Ajouter et afficher une bannière de publicité en HTML. Personaliser le style et l&rsquo;apparence de la barre."
 
 
1258
 
1259
  #: product_list.php:318
1260
+ msgid "Add customizable quotes and tips blocks to WordPress posts, pages and widgets."
1261
+ msgstr "Ajouter des blocs d&rsquo;avis et d&rsquo;astuces sur vos pages, articles et widgets."
 
 
1262
 
1263
  #: product_list.php:325
1264
+ msgid "Add rating plugin to your WordPress website to receive feedback from your customers."
1265
+ msgstr "Ajouter une notation pour avoir un retour de vos utilisateurs/clients."
 
 
1266
 
1267
  #: product_list.php:332
1268
+ msgid "Create your personal real estate WordPress website. Sell, rent and buy properties. Add, search and browse listings easily."
1269
+ msgstr "Créer votre site d&rsquo;annonces immobilières. Vendre, louer et acheter des biens. Recherche et catalogue facilement mis en place."
 
 
1270
 
1271
  #: product_list.php:342
1272
+ msgid "Add related, featured, latest, and popular posts to your WordPress website. Connect your blog readers with a relevant content."
1273
+ msgstr "Ajouter des informations sur les articles en relations, mis en avant, populaires. Fournisser à vos lecteurs un contenu passionant."
 
 
1274
 
1275
  #: product_list.php:349
1276
+ msgid "Send bulk email messages to WordPress users. Custom templates, advanced settings and detailed reports."
1277
+ msgstr "Envoyer des messages e-mail en masse à vos utilisateurs. Modèles personalisables, paramétrage avancé et reporting complet."
 
 
1278
 
1279
  #: product_list.php:359
1280
+ msgid "The best responsive slider plugin for your WordPress website. Create beautifully animated slides just in a few clicks."
1281
+ msgstr "Extension pour mettre en place des diaporamas responsive. Créer des diaporamas animés en quelques clics."
 
 
1282
 
1283
  #: product_list.php:366
1284
+ msgid "Configure SMTP server to receive email messages from WordPress to Gmail, Yahoo, Hotmail and other services."
1285
+ msgstr "Configurer un serveur SMTP pour envoyer des e-mails vers Gmail, Yahoo, Hotmail et d&rsquo;autres services."
 
 
1286
 
1287
  #: product_list.php:373
1288
+ msgid "Add social media buttons and widgets to WordPress posts, pages and widgets. FB, Twitter, G+1, Pinterest, LinkedIn."
1289
+ msgstr "Ajouter des boutons pour les réseaux sociaux FB, Twitter, G+1, Pinterest, LinkedIn aux articles, pages et widgets."
 
 
1290
 
1291
  #: product_list.php:383
1292
+ msgid "Add social media login, registration, and commenting to your WordPress website."
1293
+ msgstr "Ajouter la connection, l&rsquo;enregistrement et la rédaction de commentaires pour vos réseaux sociaux."
 
 
1294
 
1295
  #: product_list.php:390
1296
+ msgid "Add email newsletter sign up form to WordPress posts, pages and widgets. Collect data and subscribe your users."
1297
+ msgstr "Ajouter un formulaire d&rsquo;inscription à votre lettre d&rsquo;information sur vos pages, articles et widgets. Récolter les inscriptions et les données de vos utilisateurs."
 
 
1298
 
1299
  #: product_list.php:400
1300
+ msgid "Add testimonials and feedbacks from your customers to WordPress website posts, pages, and widgets."
1301
+ msgstr "Ajouter des témoignages et des retours de vos clients aux articles, pages et widgets."
 
 
1302
 
1303
  #: product_list.php:407
1304
+ msgid "Best timesheet plugin for WordPress. Track employee time, streamline attendance and generate reports."
1305
+ msgstr "La meuilleure extension de suivi du temps. Suiver le temps de vos employés, le temps de présence et créer des rapports."
 
 
1306
 
1307
  #: product_list.php:417
1308
+ msgid "Add Twitter Follow, Tweet, Hashtag, and Mention buttons to WordPress posts and pages."
1309
+ msgstr "Ajouter les boutons Suivre, Tweet, Hastag pour Twitter aux articles, pages et widgets."
 
 
1310
 
1311
  #: product_list.php:427
1312
+ msgid "Automatically check and update WordPress website core with all installed plugins and themes to the latest versions."
1313
+ msgstr "Mettre à jour automatiquement votre site pour WordPress, les extensions et les thèmes."
 
 
1314
 
1315
  #: product_list.php:437
1316
+ msgid "Powerful user role management plugin for WordPress website. Create, edit, copy, and delete user roles."
1317
+ msgstr "Gestion des droits des utilisateurs. Créer, modifier et supprimer des droits utilisateurs."
 
 
1318
 
1319
  #: product_list.php:447
1320
+ msgid "Display live count of online visitors who are currently browsing your WordPress website."
1321
+ msgstr "Afficher en direct le compteur des visiteurs sur votre site."
 
 
1322
 
1323
  #: product_list.php:457
1324
+ msgid "Backup and export Zendesk Help Center content automatically to your WordPress website database."
1325
+ msgstr "Sauvegarder et exporter le contenu de votre Zendesk Help Center vers votre site."
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
bws_menu/languages/bestwebsoft-ru_RU.mo CHANGED
Binary file
bws_menu/languages/bestwebsoft-ru_RU.po CHANGED
@@ -3,7 +3,7 @@ msgstr ""
3
  "Project-Id-Version: bestwebsoft\n"
4
  "Report-Msgid-Bugs-To: \n"
5
  "POT-Creation-Date: 2017-09-11 16:44+0300\n"
6
- "PO-Revision-Date: 2017-09-11 16:44+0300\n"
7
  "Last-Translator: bestwebsoft.com <plugins@bestwebsoft.com>\n"
8
  "Language-Team: bestwebsoft.com <https://support.bestwebsoft.com>\n"
9
  "Language: ru\n"
3
  "Project-Id-Version: bestwebsoft\n"
4
  "Report-Msgid-Bugs-To: \n"
5
  "POT-Creation-Date: 2017-09-11 16:44+0300\n"
6
+ "PO-Revision-Date: 2018-03-02 10:06+0200\n"
7
  "Last-Translator: bestwebsoft.com <plugins@bestwebsoft.com>\n"
8
  "Language-Team: bestwebsoft.com <https://support.bestwebsoft.com>\n"
9
  "Language: ru\n"
bws_menu/product_list.php CHANGED
@@ -36,6 +36,18 @@ $bws_plugins = array(
36
  'purchase' => 'https://bestwebsoft.com/products/wordpress/plugins/car-rental/buy/?k=7643d4f0698252fa1159de078d22269c&pn=' . $bws_plugin_info["id"] . '&v=' . $bws_plugin_info["version"] . '&wp_v=' . $wp_version,
37
  'pro_settings' => 'admin.php?page=car-rental-pro-settings'
38
  ),
 
 
 
 
 
 
 
 
 
 
 
 
39
  'contact-form-plugin/contact_form.php' => array(
40
  'category' => array( 'marketing', 'recommended' ),
41
  'name' => 'Contact Form',
@@ -300,7 +312,10 @@ $bws_plugins = array(
300
  'name' => 'Profile Extra Fields',
301
  'description' => __( 'Add extra fields to default WordPress user profile. The easiest way to create and manage additional custom values.', 'bestwebsoft' ),
302
  'link' => 'https://bestwebsoft.com/products/wordpress/plugins/profile-extra-fields/?k=fe3b6c3dbc80bd4b1cf9a27a2f339820&pn=' . $bws_plugin_info["id"] . '&v=' . $bws_plugin_info["version"] . '&wp_v=' . $wp_version,
303
- 'settings' => 'admin.php?page=profile-extra-fields.php'
 
 
 
304
  ),
305
  'promobar/promobar.php' => array(
306
  'category' => array( 'marketing' ),
@@ -324,7 +339,10 @@ $bws_plugins = array(
324
  'name' => 'Rating',
325
  'description' => __( 'Add rating plugin to your WordPress website to receive feedback from your customers.', 'bestwebsoft' ),
326
  'link' => 'https://bestwebsoft.com/products/wordpress/plugins/rating/?k=c00e0824bb999735a3224616ef51f4c5&pn=' . $bws_plugin_info["id"] . '&v=' . $bws_plugin_info["version"] . '&wp_v=' . $wp_version,
327
- 'settings' => 'admin.php?page=rating.php'
 
 
 
328
  ),
329
  'realty/realty.php' => array(
330
  'category' => array( 'ecommerce' ),
36
  'purchase' => 'https://bestwebsoft.com/products/wordpress/plugins/car-rental/buy/?k=7643d4f0698252fa1159de078d22269c&pn=' . $bws_plugin_info["id"] . '&v=' . $bws_plugin_info["version"] . '&wp_v=' . $wp_version,
37
  'pro_settings' => 'admin.php?page=car-rental-pro-settings'
38
  ),
39
+ 'bws-car-rental/bws-car-rental.php' => array(
40
+ 'category' => array( 'ecommerce' ),
41
+ 'name' => 'Car Rental V2',
42
+ 'description' => __( 'Create your own rental website for car renting and booking.', 'bestwebsoft' ),
43
+ 'link' => 'https://bestwebsoft.com/products/wordpress/plugins/car-rental-v2/?k=ca43df54beefae7128a7005bce0ec651&pn=' . $bws_plugin_info["id"] . '&v=' . $bws_plugin_info["version"] . '&wp_v=' . $wp_version,
44
+ 'settings' => 'admin.php?page=bws-car-rental-settings',
45
+ 'pro_version' => 'bws-car-rental-pro/bws-car-rental-pro.php',
46
+ 'purchase' => 'https://bestwebsoft.com/products/wordpress/plugins/car-rental-v2/buy/?k=63cac1b736047a3f5a2f5a7c5336f3c4&pn=' . $bws_plugin_info["id"] . '&v=' . $bws_plugin_info["version"] . '&wp_v=' . $wp_version,
47
+ 'pro_settings' => 'admin.php?page=bws-car-rental-pro-settings',
48
+ 'icon' => '//ps.w.org/car-rental/assets/icon-128x128.png',
49
+ 'install_url' => 'https://bestwebsoft.com/products/wordpress/plugins/car-rental-v2/'
50
+ ),
51
  'contact-form-plugin/contact_form.php' => array(
52
  'category' => array( 'marketing', 'recommended' ),
53
  'name' => 'Contact Form',
312
  'name' => 'Profile Extra Fields',
313
  'description' => __( 'Add extra fields to default WordPress user profile. The easiest way to create and manage additional custom values.', 'bestwebsoft' ),
314
  'link' => 'https://bestwebsoft.com/products/wordpress/plugins/profile-extra-fields/?k=fe3b6c3dbc80bd4b1cf9a27a2f339820&pn=' . $bws_plugin_info["id"] . '&v=' . $bws_plugin_info["version"] . '&wp_v=' . $wp_version,
315
+ 'settings' => 'admin.php?page=profile-extra-fields.php',
316
+ 'pro_version' => 'profile-extra-fields-pro/profile-extra-fields-pro.php',
317
+ 'purchase' => 'https://bestwebsoft.com/products/wordpress/plugins/profile-extra-fields/buy/?k=a1f0b20e50ea10e5453aba399de496c0&pn=' . $bws_plugin_info["id"] . '&v=' . $bws_plugin_info["version"] . '&wp_v=' . $wp_version,
318
+ 'pro_settings' => 'admin.php?page=profile-extra-fields-pro.php'
319
  ),
320
  'promobar/promobar.php' => array(
321
  'category' => array( 'marketing' ),
339
  'name' => 'Rating',
340
  'description' => __( 'Add rating plugin to your WordPress website to receive feedback from your customers.', 'bestwebsoft' ),
341
  'link' => 'https://bestwebsoft.com/products/wordpress/plugins/rating/?k=c00e0824bb999735a3224616ef51f4c5&pn=' . $bws_plugin_info["id"] . '&v=' . $bws_plugin_info["version"] . '&wp_v=' . $wp_version,
342
+ 'settings' => 'admin.php?page=rating.php',
343
+ 'pro_version' => 'rating-bws-pro/rating-bws-pro.php',
344
+ 'purchase' => 'https://bestwebsoft.com/products/wordpress/plugins/rating/buy/?k=ba459f3115edb7be610e8d6f8e05df6c&pn=' . $bws_plugin_info["id"] . '&v=' . $bws_plugin_info["version"] . '&wp_v=' . $wp_version,
345
+ 'pro_settings' => 'admin.php?page=rating-bws-pro.php'
346
  ),
347
  'realty/realty.php' => array(
348
  'category' => array( 'ecommerce' ),
contact_form.php CHANGED
@@ -6,12 +6,12 @@ Description: Simple contact form plugin any WordPress website must have.
6
  Author: BestWebSoft
7
  Text Domain: contact-form-plugin
8
  Domain Path: /languages
9
- Version: 4.1.1
10
  Author URI: https://bestwebsoft.com/
11
  License: GPLv2 or later
12
  */
13
 
14
- /* @ Copyright 2018 BestWebSoft ( https://support.bestwebsoft.com )
15
 
16
  This program is free software; you can redistribute it and/or modify
17
  it under the terms of the GNU General Public License, version 2, as
@@ -33,9 +33,38 @@ License: GPLv2 or later
33
  */
34
  if ( ! function_exists( 'cntctfrm_admin_menu' ) ) {
35
  function cntctfrm_admin_menu() {
36
- bws_general_menu();
37
- $cntctfrm_settings = add_submenu_page( 'bws_panel', __( 'Contact Form Settings', 'contact-form-plugin' ), __( 'Contact Form', 'contact-form-plugin' ), 'manage_options', 'contact_form.php', 'cntctfrm_settings_page' );
38
- add_action( 'load-' . $cntctfrm_settings, 'cntctfrm_add_tabs' );
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
39
  }
40
  }
41
 
@@ -119,7 +148,7 @@ if ( ! function_exists ( 'cntctfrm_plugins_loaded' ) ) {
119
  if ( ! function_exists( 'cntctfrm_settings' ) ) {
120
  function cntctfrm_settings( $form_id = false ) {
121
  global $cntctfrm_options, $cntctfrm_plugin_info;
122
- $db_version = '1.0';
123
 
124
  $contact_form_multi_active = cntctfrm_check_cf_multi_active();
125
 
@@ -143,7 +172,6 @@ if ( ! function_exists( 'cntctfrm_settings' ) ) {
143
  $cntctfrmmlt_options = get_option( 'cntctfrmmlt_options' );
144
 
145
  if ( ! isset( $cntctfrmmlt_options['plugin_option_version'] ) || $cntctfrmmlt_options['plugin_option_version'] != $cntctfrm_plugin_info["Version"] ) {
146
-
147
  if ( ! isset( $option_defaults ) )
148
  $option_defaults = cntctfrm_get_option_defaults();
149
 
@@ -166,7 +194,7 @@ if ( ! function_exists( 'cntctfrm_settings' ) ) {
166
  if ( isset( $_SESSION['cntctfrmmlt_id_form'] ) || $form_id ) {
167
  $id = ( $form_id ) ? $form_id : $_SESSION['cntctfrmmlt_id_form'];
168
  if ( $cntctfrm_options = get_option( 'cntctfrmmlt_options_' . $id ) ) {
169
- /* */
170
  } else {
171
  if ( 'pro' == $contact_form_multi_active && $options_main = get_option( 'cntctfrmmltpr_options_main' ) ) {
172
  /**/
@@ -536,18 +564,20 @@ if ( ! function_exists( 'cntctfrm_check_cf_multi_active' ) ) {
536
 
537
  /* Add settings page in admin area */
538
  if ( ! function_exists( 'cntctfrm_get_ordered_fields' ) ) {
539
- function cntctfrm_get_ordered_fields() {
540
  global $cntctfrm_options, $cntctfrm_related_plugins;
 
541
 
542
- if ( ! isset( $cntctfrm_options['order_fields'] ) )
543
  cntctfrm_settings();
 
544
 
545
- if ( empty( $cntctfrm_related_plugins ) )
546
  cntctfrm_related_plugins();
547
-
548
- $contact_form_multi_active = cntctfrm_check_cf_multi_active();
549
 
550
  if ( ! $contact_form_multi_active ) {
 
551
  $display_captcha = $display_google_captcha = $display_subscriber = false;
552
 
553
  if ( array_key_exists( 'captcha', $cntctfrm_related_plugins ) )
@@ -559,6 +589,18 @@ if ( ! function_exists( 'cntctfrm_get_ordered_fields' ) ) {
559
  if ( array_key_exists( 'subscriber', $cntctfrm_related_plugins ) )
560
  $display_subscriber = ! empty( $cntctfrm_related_plugins['subscriber']['options']['contact_form'] );
561
  } else {
 
 
 
 
 
 
 
 
 
 
 
 
562
  $display_captcha = ( isset( $cntctfrm_options['display_captcha'] ) && 1 == $cntctfrm_options['display_captcha'] ) ? true : false;
563
  $display_google_captcha = ( isset( $cntctfrm_options['display_google_captcha'] ) && 1 == $cntctfrm_options['display_google_captcha'] ) ? true : false;
564
  $display_subscriber = ( isset( $cntctfrm_options['display_subscribe'] ) && 1 == $cntctfrm_options['display_subscribe'] ) ? true : false;
@@ -596,1795 +638,26 @@ if ( ! function_exists( 'cntctfrm_get_ordered_fields' ) ) {
596
  }
597
  }
598
 
599
- /* Add settings page in admin area */
600
- if ( ! function_exists( 'cntctfrm_settings_page' ) ) {
601
  function cntctfrm_settings_page() {
602
- global $cntctfrm_options, $wpdb, $wp_version, $cntctfrm_plugin_info, $cntctfrm_lang_codes, $cntctfrm_related_plugins;
603
-
604
- if ( empty( $cntctfrm_related_plugins ) )
605
- cntctfrm_related_plugins();
606
-
607
- /* Check contact-form-multi plugin */
608
- $contact_form_multi_active = cntctfrm_check_cf_multi_active();
609
-
610
- $error = $message = $notice = '';
611
- $plugin_basename = plugin_basename( __FILE__ );
612
-
613
- if ( ! function_exists( 'get_plugins' ) )
614
- require_once( ABSPATH . 'wp-admin/includes/plugin.php' );
615
-
616
- if ( ! isset( $_GET['action'] ) || 'additional' == $_GET['action'] || 'appearance' == $_GET['action'] )
617
- $all_plugins = get_plugins();
618
-
619
- $userslogin = get_users( 'blog_id=' . $GLOBALS['blog_id'] . '&role=administrator' );
620
-
621
- if ( isset( $_POST['cntctfrm_form_appearance_submit'] ) && check_admin_referer( $plugin_basename, 'cntctfrm_nonce_name' ) ) {
622
-
623
- $options_submit = array();
624
-
625
- if ( isset( $_POST['bws_hide_premium_options'] ) ) {
626
- $hide_result = bws_hide_premium_options( $options_submit );
627
- $options_submit = $hide_result['options'];
628
- if ( $contact_form_multi_active ) {
629
- $cntctfrm_options = array_merge( $cntctfrm_options, $options_submit );
630
- update_option( 'cntctfrm_options', $cntctfrm_options );
631
- }
632
- }
633
-
634
- if ( isset( $_POST['cntctfrm_width_type'] ) && in_array( $_POST['cntctfrm_width_type'], array( 'default', 'custom' ) ) ) {
635
- $cntctfrm_options['width']['type'] = $_POST['cntctfrm_width_type'];
636
- if ( 'custom' == $_POST['cntctfrm_width_type'] ) {
637
- $cntctfrm_options['width']['input_value'] = ( isset( $_POST['cntctfrm_input_width_value'] ) ) ? (int) $_POST[ 'cntctfrm_input_width_value' ] : 100;
638
- $cntctfrm_options['width']['input_unit'] = ( isset( $_POST['cntctfrm_input_width_unit'] ) && in_array( $_POST['cntctfrm_input_width_unit'], array( '%', 'px' ) ) ) ? $_POST[ 'cntctfrm_input_width_unit' ] : '%';
639
- }
640
- }
641
-
642
- $layout = ( isset( $_POST['cntctfrm_layout'] ) ) ? (int) $_POST['cntctfrm_layout'] : 1;
643
-
644
- $submit_position = ( isset( $_POST['cntctfrm_submit_position'] ) ) ? stripslashes( esc_html( $_POST['cntctfrm_submit_position'] ) ) : 'left';
645
-
646
- $layout_first_column_string = stripslashes( esc_html( $_POST['cntctfrm_layout_first_column'] ) );
647
- $layout_first_column = explode( ',', $layout_first_column_string );
648
- $layout_first_column = array_diff( $layout_first_column, array('') );
649
-
650
- $layout_second_column_string = stripslashes( esc_html( $_POST['cntctfrm_layout_second_column'] ) );
651
- $layout_second_column = explode( ',', $layout_second_column_string );
652
- $layout_second_column = array_diff( $layout_second_column, array('') );
653
-
654
- if ( $layout === 1 && ! empty( $layout_second_column ) ) {
655
- $layout_first_column = array_merge( $layout_first_column, $layout_second_column );
656
- $layout_second_column = array();
657
- }
658
-
659
- $options_submit['layout'] = $layout;
660
- $options_submit['submit_position'] = $submit_position;
661
- $options_submit['order_fields']['first_column'] = $layout_first_column;
662
- $options_submit['order_fields']['second_column'] = $layout_second_column;
663
-
664
- $cntctfrm_options = array_merge( $cntctfrm_options, $options_submit );
665
-
666
- if ( 'pro' == $contact_form_multi_active && get_option( 'cntctfrmmltpr_options_main' ) ) {
667
- $options_main = get_option( 'cntctfrmmltpr_options_main' );
668
-
669
- if ( $options_main['id_form'] !== $_SESSION['cntctfrmmlt_id_form'] )
670
- add_option( 'cntctfrmmlt_options_' . $options_main['id_form'], $cntctfrm_options );
671
- else if ( $options_main['id_form'] == $_SESSION['cntctfrmmlt_id_form'] )
672
- update_option( 'cntctfrmmlt_options_' . $options_main['id_form'], $cntctfrm_options );
673
- } elseif ( $contact_form_multi_active ) {
674
- $options_main = get_option( 'cntctfrmmlt_options_main' );
675
-
676
- if ( $options_main['id_form'] !== $_SESSION['cntctfrmmlt_id_form'] )
677
- add_option( 'cntctfrmmlt_options_' . $options_main['id_form'], $cntctfrm_options );
678
- else if ( $options_main['id_form'] == $_SESSION['cntctfrmmlt_id_form'] )
679
- update_option( 'cntctfrmmlt_options_' . $options_main['id_form'], $cntctfrm_options );
680
- } else {
681
- update_option( 'cntctfrm_options', $cntctfrm_options );
682
- }
683
- $message = __( "Settings saved.", 'contact-form-plugin' );
684
- }
685
-
686
- /* Save data for settings page */
687
- if ( isset( $_POST['cntctfrm_form_submit'] ) && check_admin_referer( $plugin_basename, 'cntctfrm_nonce_name' ) ) {
688
-
689
- $options_submit = array();
690
-
691
- if ( isset( $_POST['bws_hide_premium_options'] ) ) {
692
- $hide_result = bws_hide_premium_options( $options_submit );
693
- $options_submit = $hide_result['options'];
694
- if ( $contact_form_multi_active ) {
695
- $cntctfrm_options = array_merge( $cntctfrm_options, $options_submit );
696
- update_option( 'cntctfrm_options', $cntctfrm_options );
697
- }
698
- }
699
-
700
- $options_submit['user_email'] = $_POST['cntctfrm_user_email'];
701
- $options_submit['custom_email'] = trim( stripslashes( esc_html( $_POST['cntctfrm_custom_email'] ) ), " ," );
702
- $options_submit['select_email'] = $_POST['cntctfrm_select_email'];
703
- $options_submit['from_email'] = $_POST['cntctfrm_from_email'];
704
- $options_submit['custom_from_email'] = stripslashes( esc_html( $_POST['cntctfrm_custom_from_email'] ) );
705
-
706
- $options_submit['mail_method'] = $_POST['cntctfrm_mail_method'];
707
- $options_submit['from_field'] = stripslashes( esc_html( $_POST['cntctfrm_from_field'] ) );
708
- $options_submit['select_from_field'] = $_POST['cntctfrm_select_from_field'];
709
- $options_submit['display_name_field'] = isset( $_POST['cntctfrm_display_name_field'] ) ? 1 : 0;
710
- $options_submit['display_address_field'] = isset( $_POST['cntctfrm_display_address_field'] ) ? 1 : 0;
711
- $options_submit['display_phone_field'] = isset( $_POST['cntctfrm_display_phone_field'] ) ? 1 : 0;
712
- $options_submit['attachment'] = isset( $_POST['cntctfrm_attachment'] ) ? $_POST['cntctfrm_attachment'] : 0;
713
- $options_submit['attachment_explanations'] = isset( $_POST['cntctfrm_attachment_explanations'] ) ? $_POST['cntctfrm_attachment_explanations'] : 0;
714
- $options_submit['send_copy'] = isset( $_POST['cntctfrm_send_copy'] ) ? $_POST['cntctfrm_send_copy'] : 0;
715
- $options_submit['gdpr'] = isset( $_POST['cntctfrm_gdpr'] ) ? $_POST['cntctfrm_gdpr'] : 0;
716
- $options_submit['gdpr_link'] = isset( $_POST['cntctfrm_gdpr_link'] ) ? $_POST['cntctfrm_gdpr_link'] : '';
717
- $options_submit['gdpr_text'] = isset( $_POST['cntctfrm_gdpr_text'] ) ? $_POST['cntctfrm_gdpr_text'] : '';
718
-
719
- $options_submit['delete_attached_file'] = isset( $_POST['cntctfrm_delete_attached_file'] ) ? $_POST['cntctfrm_delete_attached_file'] : 0;
720
-
721
- if ( isset( $_POST['cntctfrm_add_language_button'] ) )
722
- cntctfrm_add_language();
723
-
724
- if ( isset( $_POST['cntctfrm_delete_button'] ) )
725
- cntctfrm_remove_language();
726
-
727
- if ( $contact_form_multi_active ) {
728
- $options_submit['display_captcha'] = isset( $_POST['cntctfrm_display_captcha'] ) ? 1 : 0;
729
- $options_submit['display_google_captcha'] = isset( $_POST['cntctfrm_display_google_captcha'] ) ? 1 : 0;
730
- $options_submit['display_subscribe'] = isset( $_POST['cntctfrm_display_subscriber'] ) ? 1 : 0;
731
- $options_submit['save_email_to_db'] = isset( $_POST['cntctfrm_save_email_to_db'] ) ? 1 : 0;
732
- } else {
733
- /* Update related plugins options if Contact Form Multi is not active */
734
- if ( array_key_exists( 'captcha', $cntctfrm_related_plugins ) ) {
735
- $cntctfrm_related_plugins['captcha']['options']['forms']['bws_contact']['enable'] = isset( $_POST['cntctfrm_display_captcha'] ) ? 1 : 0;
736
- update_option( 'cptch_options', $cntctfrm_related_plugins['captcha']['options'] );
737
- }
738
-
739
- if ( array_key_exists( 'google-captcha', $cntctfrm_related_plugins ) ) {
740
- $cntctfrm_related_plugins['google-captcha']['options']['contact_form'] = isset( $_POST['cntctfrm_display_google_captcha'] ) ? 1 : 0;
741
- update_option( 'gglcptch_options', $cntctfrm_related_plugins['google-captcha']['options'] );
742
- }
743
-
744
- if ( is_multisite() ) {
745
- if ( array_key_exists( 'subscriber', $cntctfrm_related_plugins ) ) {
746
- $cntctfrm_related_plugins['subscriber']['options']['contact_form'] = isset( $_POST['cntctfrm_display_subscriber'] ) ? 1 : 0;
747
- update_site_option( 'sbscrbr_options', $cntctfrm_related_plugins['subscriber']['options'] );
748
- }
749
- } else {
750
- if ( array_key_exists( 'subscriber', $cntctfrm_related_plugins ) ) {
751
- $cntctfrm_related_plugins['subscriber']['options']['contact_form'] = isset( $_POST['cntctfrm_display_subscriber'] ) ? 1 : 0;
752
- update_option( 'sbscrbr_options', $cntctfrm_related_plugins['subscriber']['options'] );
753
- }
754
- }
755
-
756
- if ( array_key_exists( 'contact-form-to-db', $cntctfrm_related_plugins ) ) {
757
- $cntctfrm_related_plugins['contact-form-to-db']['options']['save_messages_to_db'] = isset( $_POST['cntctfrm_save_email_to_db'] ) ? 1 : 0;
758
- update_option( 'cntctfrmtdb_options', $cntctfrm_related_plugins['contact-form-to-db']['options'] );
759
- }
760
- }
761
-
762
- if ( 0 == $options_submit['display_name_field'] ) {
763
- $options_submit['required_name_field'] = 0;
764
- } else {
765
- $options_submit['required_name_field'] = isset( $_POST['cntctfrm_required_name_field'] ) ? 1 : 0;
766
- }
767
- if ( 0 == $options_submit['display_address_field'] ) {
768
- $options_submit['required_address_field'] = 0;
769
- } else {
770
- $options_submit['required_address_field'] = isset( $_POST['cntctfrm_required_address_field'] ) ? 1 : 0;
771
- }
772
- $options_submit['required_email_field'] = isset( $_POST['cntctfrm_required_email_field'] ) ? 1 : 0;
773
- if ( 0 == $options_submit['display_phone_field'] ) {
774
- $options_submit['required_phone_field'] = 0;
775
- } else {
776
- $options_submit['required_phone_field'] = isset( $_POST['cntctfrm_required_phone_field'] ) ? 1 : 0;
777
- }
778
- $options_submit['required_subject_field'] = isset( $_POST['cntctfrm_required_subject_field'] ) ? 1 : 0;
779
- $options_submit['required_message_field'] = isset( $_POST['cntctfrm_required_message_field'] ) ? 1 : 0;
780
-
781
- $options_submit['required_symbol'] = isset( $_POST['cntctfrm_required_symbol'] ) ? stripslashes( esc_html( $_POST['cntctfrm_required_symbol'] ) ) : '*';
782
- $options_submit['html_email'] = isset( $_POST['cntctfrm_html_email'] ) ? 1 : 0;
783
- $options_submit['display_add_info'] = isset( $_POST['cntctfrm_display_add_info'] ) ? 1 : 0;
784
-
785
- $options_submit['display_sent_from'] = isset( $_POST['cntctfrm_display_sent_from'] ) ? 1 : 0;
786
- $options_submit['display_date_time'] = isset( $_POST['cntctfrm_display_date_time'] ) ? 1 : 0;
787
- $options_submit['display_coming_from'] = isset( $_POST['cntctfrm_display_coming_from'] ) ? 1 : 0;
788
- $options_submit['display_user_agent'] = isset( $_POST['cntctfrm_display_user_agent'] ) ? 1 : 0;
789
-
790
- if ( 0 == $options_submit['display_sent_from'] && 0 == $options_submit['display_date_time'] && 0 == $options_submit['display_coming_from'] && 0 == $options_submit['display_user_agent'] )
791
- $options_submit['display_add_info'] = 0;
792
-
793
- if ( 0 == $options_submit['display_add_info'] ) {
794
- $options_submit['display_sent_from'] = 1;
795
- $options_submit['display_date_time'] = 1;
796
- $options_submit['display_coming_from'] = 1;
797
- $options_submit['display_user_agent'] = 1;
798
- }
799
-
800
- $options_submit['change_label'] = isset( $_POST['cntctfrm_change_label'] ) ? 1 : 0;
801
- $options_submit['change_label_in_email'] = isset( $_POST['cntctfrm_change_label_in_email'] ) ? 1 : 0;
802
-
803
- if ( 1 == $options_submit['change_label'] ) {
804
- foreach ( $_POST['cntctfrm_name_label'] as $key => $val ) {
805
- $options_submit['name_label'][ $key ] = stripcslashes( htmlspecialchars( $_POST['cntctfrm_name_label'][ $key ] ) );
806
- $options_submit['address_label'][ $key ] = stripcslashes( htmlspecialchars( $_POST['cntctfrm_address_label'][ $key ] ) );
807
- $options_submit['email_label'][ $key ] = stripcslashes( htmlspecialchars( $_POST['cntctfrm_email_label'][ $key ] ) );
808
- $options_submit['phone_label'][ $key ] = stripcslashes( htmlspecialchars( $_POST['cntctfrm_phone_label'][ $key ] ) );
809
- $options_submit['subject_label'][ $key ] = stripcslashes( htmlspecialchars( $_POST['cntctfrm_subject_label'][ $key ] ) );
810
- $options_submit['message_label'][ $key ] = stripcslashes( htmlspecialchars( $_POST['cntctfrm_message_label'][ $key ] ) );
811
- $options_submit['attachment_label'][ $key ] = stripcslashes( htmlspecialchars( $_POST['cntctfrm_attachment_label'][ $key ] ) );
812
- $options_submit['attachment_tooltip'][ $key ] = stripcslashes( htmlspecialchars( $_POST['cntctfrm_attachment_tooltip'][ $key ] ) );
813
- $options_submit['send_copy_label'][ $key ] = stripcslashes( htmlspecialchars( $_POST['cntctfrm_send_copy_label'][ $key ] ) );
814
- $options_submit['gdpr_label'][ $key ] = stripcslashes( htmlspecialchars( $_POST['cntctfrm_gdpr_label'][ $key ] ) );
815
- $options_submit['thank_text'][ $key ] = stripcslashes( htmlspecialchars( $_POST['cntctfrm_thank_text'][ $key ] ) );
816
- $options_submit['submit_label'][ $key ] = stripcslashes( htmlspecialchars( $_POST['cntctfrm_submit_label'][ $key ] ) );
817
- $options_submit['name_error'][ $key ] = stripcslashes( htmlspecialchars( $_POST['cntctfrm_name_error'][ $key ] ) );
818
- $options_submit['address_error'][ $key ] = stripcslashes( htmlspecialchars( $_POST['cntctfrm_address_error'][ $key ] ) );
819
- $options_submit['email_error'][ $key ] = stripcslashes( htmlspecialchars( $_POST['cntctfrm_email_error'][ $key ] ) );
820
- $options_submit['phone_error'][ $key ] = stripcslashes( htmlspecialchars( $_POST['cntctfrm_phone_error'][ $key ] ) );
821
- $options_submit['subject_error'][ $key ] = stripcslashes( htmlspecialchars( $_POST['cntctfrm_subject_error'][ $key ] ) );
822
- $options_submit['message_error'][ $key ] = stripcslashes( htmlspecialchars( $_POST['cntctfrm_message_error'][ $key ] ) );
823
- $options_submit['attachment_error'][ $key ] = stripcslashes( htmlspecialchars( $_POST['cntctfrm_attachment_error'][ $key ] ) );
824
- $options_submit['attachment_upload_error'][ $key ] = stripcslashes( htmlspecialchars( $_POST['cntctfrm_attachment_upload_error'][ $key ] ) );
825
- $options_submit['attachment_move_error'][ $key ] = stripcslashes( htmlspecialchars( $_POST['cntctfrm_attachment_move_error'][ $key ] ) );
826
- $options_submit['attachment_size_error'][ $key ] = stripcslashes( htmlspecialchars( $_POST['cntctfrm_attachment_size_error'][ $key ] ) );
827
- $options_submit['captcha_error'][ $key ] = stripcslashes( htmlspecialchars( $_POST['cntctfrm_captcha_error'][ $key ] ) );
828
- $options_submit['form_error'][ $key ] = stripcslashes( htmlspecialchars( $_POST['cntctfrm_form_error'][ $key ] ) );
829
- }
830
- } else {
831
- $option_defaults = cntctfrm_get_option_defaults();
832
-
833
- if ( empty( $cntctfrm_options['language'] ) ) {
834
- $options_submit['name_label'] = $option_defaults['name_label'];
835
- $options_submit['address_label'] = $option_defaults['address_label'];
836
- $options_submit['email_label'] = $option_defaults['email_label'];
837
- $options_submit['phone_label'] = $option_defaults['phone_label'];
838
- $options_submit['subject_label'] = $option_defaults['subject_label'];
839
- $options_submit['message_label'] = $option_defaults['message_label'];
840
- $options_submit['attachment_label'] = $option_defaults['attachment_label'];
841
- $options_submit['attachment_tooltip'] = $option_defaults['attachment_tooltip'];
842
- $options_submit['send_copy_label'] = $option_defaults['send_copy_label'];
843
- $options_submit['gdpr_label'] = $option_defaults['gdpr_label'];
844
- $options_submit['thank_text'] = $_POST['cntctfrm_thank_text'];
845
- $options_submit['submit_label'] = $option_defaults['submit_label'];
846
- $options_submit['name_error'] = $option_defaults['name_error'];
847
- $options_submit['address_error'] = $option_defaults['address_error'];
848
- $options_submit['email_error'] = $option_defaults['email_error'];
849
- $options_submit['phone_error'] = $option_defaults['phone_error'];
850
- $options_submit['subject_error'] = $option_defaults['subject_error'];
851
- $options_submit['message_error'] = $option_defaults['message_error'];
852
- $options_submit['attachment_error'] = $option_defaults['attachment_error'];
853
- $options_submit['attachment_upload_error'] = $option_defaults['attachment_upload_error'];
854
- $options_submit['attachment_move_error'] = $option_defaults['attachment_move_error'];
855
- $options_submit['attachment_size_error'] = $option_defaults['attachment_size_error'];
856
- $options_submit['captcha_error'] = $option_defaults['captcha_error'];
857
- $options_submit['form_error'] = $option_defaults['form_error'];
858
- foreach ( $options_submit['thank_text'] as $key => $val ) {
859
- $options_submit['thank_text'][ $key ] = stripcslashes( htmlspecialchars( $val ) );
860
- }
861
- } else {
862
- $options_submit['name_label']['default'] = $option_defaults['name_label']['default'];
863
- $options_submit['address_label']['default'] = $option_defaults['address_label']['default'];
864
- $options_submit['email_label']['default'] = $option_defaults['email_label']['default'];
865
- $options_submit['phone_label']['default'] = $option_defaults['phone_label']['default'];
866
- $options_submit['subject_label']['default'] = $option_defaults['subject_label']['default'];
867
- $options_submit['message_label']['default'] = $option_defaults['message_label']['default'];
868
- $options_submit['attachment_label']['default'] = $option_defaults['attachment_label']['default'];
869
- $options_submit['attachment_tooltip']['default'] = $option_defaults['attachment_tooltip']['default'];
870
- $options_submit['send_copy_label']['default'] = $option_defaults['send_copy_label']['default'];
871
- $options_submit['gdpr_label']['default'] = $option_defaults['gdpr_label']['default'];
872
- $options_submit['submit_label']['default'] = $option_defaults['submit_label']['default'];
873
- $options_submit['name_error']['default'] = $option_defaults['name_error']['default'];
874
- $options_submit['address_error']['default'] = $option_defaults['address_error']['default'];
875
- $options_submit['email_error']['default'] = $option_defaults['email_error']['default'];
876
- $options_submit['phone_error']['default'] = $option_defaults['phone_error']['default'];
877
- $options_submit['subject_error']['default'] = $option_defaults['subject_error']['default'];
878
- $options_submit['message_error']['default'] = $option_defaults['message_error']['default'];
879
- $options_submit['attachment_error']['default'] = $option_defaults['attachment_error']['default'];
880
- $options_submit['attachment_upload_error']['default'] = $option_defaults['attachment_upload_error']['default'];
881
- $options_submit['attachment_move_error']['default'] = $option_defaults['attachment_move_error']['default'];
882
- $options_submit['attachment_size_error']['default'] = $option_defaults['attachment_size_error']['default'];
883
- $options_submit['captcha_error']['default'] = $option_defaults['captcha_error']['default'];
884
- $options_submit['form_error']['default'] = $option_defaults['form_error']['default'];
885
-
886
- foreach ( $_POST['cntctfrm_thank_text'] as $key => $val ) {
887
- $options_submit['thank_text'][ $key ] = stripcslashes( htmlspecialchars( $_POST['cntctfrm_thank_text'][ $key ] ) );
888
- }
889
- }
890
- }
891
- /* if 'FROM' field was changed */
892
- if ( ( 'custom' == $cntctfrm_options['from_email'] && 'custom' != $options_submit['from_email'] ) ||
893
- ( 'custom' == $options_submit['from_email'] && $cntctfrm_options['custom_from_email'] != $options_submit['custom_from_email'] ) ) {
894
- $notice = __( "Email 'FROM' field option was changed, which may cause email messages being moved to the spam folder or email delivery failures.", 'contact-form-plugin' );
895
- }
896
-
897
- $options_submit['action_after_send'] = $_POST['cntctfrm_action_after_send'];
898
- $options_submit['redirect_url'] = esc_url( $_POST['cntctfrm_redirect_url'] );
899
- $cntctfrm_options = array_merge( $cntctfrm_options, $options_submit );
900
-
901
- if ( 0 == $options_submit['action_after_send']
902
- && ( "" == trim( $options_submit['redirect_url'] )
903
- || ! filter_var( $options_submit['redirect_url'], FILTER_VALIDATE_URL) ) ) {
904
- $error .= __( "If the 'Redirect to page' option is selected then the URL field should be in the following format", 'contact-form-plugin' )." <code>http://your_site/your_page</code>";
905
- $cntctfrm_options['action_after_send'] = 1;
906
- }
907
- if ( 'user' == $options_submit['select_email'] ) {
908
- if ( false !== get_user_by( 'login', $options_submit['user_email'] ) ) {
909
- /**/
910
- } else {
911
- $error .= __( "Such user does not exist.", 'contact-form-plugin' );
912
- }
913
- } else {
914
- if ( preg_match( '|,|', $options_submit['custom_email'] ) ) {
915
- $cntctfrm_custom_emails = explode( ',', $options_submit['custom_email'] );
916
- } else {
917
- $cntctfrm_custom_emails[0] = $options_submit['custom_email'];
918
- }
919
- foreach ( $cntctfrm_custom_emails as $cntctfrm_custom_email ) {
920
- if ( $cntctfrm_custom_email == "" || ! is_email( trim( $cntctfrm_custom_email ) ) ) {
921
- $error .= __( "Please enter a valid email address in the 'Use this email address' field.", 'contact-form-plugin' );
922
- break;
923
- }
924
- }
925
- }
926
- if ( 'custom' == $options_submit['from_email'] ) {
927
- if ( "" == $options_submit['custom_from_email']
928
- || ! is_email( trim( $options_submit['custom_from_email'] ) ) ) {
929
- $error .= __( "Please enter a valid email address in the 'FROM' field.", 'contact-form-plugin' );
930
- }
931
- }
932
-
933
- if ( '' == $error ) {
934
- if ( 'pro' == $contact_form_multi_active && $options_main = get_option( 'cntctfrmmltpr_options_main' ) ) {
935
- if ( $options_main['id_form'] !== $_SESSION['cntctfrmmlt_id_form'] )
936
- add_option( 'cntctfrmmlt_options_' . $options_main['id_form'], $cntctfrm_options );
937
- else if ( $options_main['id_form'] == $_SESSION['cntctfrmmlt_id_form'] )
938
- update_option( 'cntctfrmmlt_options_' . $options_main['id_form'], $cntctfrm_options );
939
- } elseif ( $contact_form_multi_active ) {
940
- $options_main = get_option( 'cntctfrmmlt_options_main' );
941
-
942
- if ( $options_main['id_form'] !== $_SESSION['cntctfrmmlt_id_form'] )
943
- add_option( 'cntctfrmmlt_options_' . $options_main['id_form'], $cntctfrm_options );
944
- else if ( $options_main['id_form'] == $_SESSION['cntctfrmmlt_id_form'] )
945
- update_option( 'cntctfrmmlt_options_' . $options_main['id_form'], $cntctfrm_options );
946
- } else {
947
- update_option( 'cntctfrm_options', $cntctfrm_options );
948
- }
949
- $message = __( "Settings saved.", 'contact-form-plugin' );
950
- } else {
951
- $error .= ' ' . __( "Settings are not saved.", 'contact-form-plugin' );
952
- }
953
- }
954
-
955
- $bws_hide_premium_options_check = bws_hide_premium_options_check( get_option( 'cntctfrm_options' ) );
956
-
957
- /* GO PRO */
958
- if ( isset( $_GET['action'] ) && 'go_pro' == $_GET['action'] ) {
959
- $go_pro_result = bws_go_pro_tab_check( $plugin_basename, 'cntctfrm_options' );
960
- if ( ! empty( $go_pro_result['error'] ) )
961
- $error = $go_pro_result['error'];
962
- elseif ( ! empty( $go_pro_result['message'] ) )
963
- $message = $go_pro_result['message'];
964
- }
965
-
966
- /* Add restore function */
967
- if ( isset( $_REQUEST['bws_restore_confirm'] ) && check_admin_referer( $plugin_basename, 'bws_settings_nonce_name' ) ) {
968
- $option_defaults = cntctfrm_get_option_defaults();
969
- if ( $contact_form_multi_active ) {
970
- $contact_form_multi_options = array(
971
- 'display_captcha' => 0,
972
- 'display_google_captcha' => 0,
973
- 'display_subscribe' => 0,
974
- 'save_email_to_db' => 1,
975
- );
976
- $option_defaults = array_merge( $option_defaults, $contact_form_multi_options );
977
- }
978
-
979
- $cntctfrm_options = $option_defaults;
980
- if ( $contact_form_multi_active ) {
981
- if ( isset( $_SESSION['cntctfrmmlt_id_form'] ) && get_option( 'cntctfrmmlt_options_' . $_SESSION['cntctfrmmlt_id_form'] ) ) {
982
- update_option( 'cntctfrmmlt_options_' . $_SESSION['cntctfrmmlt_id_form'] , $cntctfrm_options );
983
- } else {
984
- update_option( 'cntctfrmmlt_options', $cntctfrm_options );
985
- }
986
- } else {
987
- update_option( 'cntctfrm_options', $cntctfrm_options );
988
- }
989
- $message = __( 'All plugin settings were restored.', 'contact-form-plugin' );
990
- } /* end */ ?>
991
  <div class="wrap">
992
- <h1><?php _e( "Contact Form Settings", 'contact-form-plugin' ); ?></h1>
993
- <div id="cntctfrm_nav_container">
994
- <ul class="subsubsub cntctfrm_how_to_use">
995
- <li><a href="https://docs.google.com/document/d/1qZYPJhkSdVyyM6XO5WfiBcTS2Sa9_9UMn4vS2g48JRY/" target="_blank"><?php _e( 'How to Use Step-by-step Instruction', 'contact-form-plugin' ); ?></a></li>
996
- </ul>
997
- <h2 id="cntctfrm_nav" class="nav-tab-wrapper">
998
- <a class="nav-tab<?php if ( ! isset( $_GET['action'] ) ) echo ' nav-tab-active'; ?>" href="admin.php?page=contact_form.php"><?php _e( 'Settings', 'contact-form-plugin' ); ?></a>
999
- <a class="nav-tab<?php if ( isset( $_GET['action'] ) && 'additional' == $_GET['action'] ) echo ' nav-tab-active'; ?>" href="admin.php?page=contact_form.php&amp;action=additional"><?php _e( 'Additional settings', 'contact-form-plugin' ); ?></a>
1000
- <a class="nav-tab<?php if ( isset( $_GET['action'] ) && 'appearance' == $_GET['action'] ) echo ' nav-tab-active'; ?>" href="admin.php?page=contact_form.php&amp;action=appearance"><?php _e( 'Appearance', 'contact-form-plugin' ); ?></a>
1001
- <a class="nav-tab <?php if ( isset( $_GET['action'] ) && 'custom_code' == $_GET['action'] ) echo ' nav-tab-active'; ?>" href="admin.php?page=contact_form.php&amp;action=custom_code"><?php _e( 'Custom code', 'contact-form-plugin' ); ?></a>
1002
- <a class="nav-tab bws_go_pro_tab<?php if ( isset( $_GET['action'] ) && 'go_pro' == $_GET['action'] ) echo ' nav-tab-active'; ?>" href="admin.php?page=contact_form.php&amp;action=go_pro"><?php _e( 'Go PRO', 'contact-form-plugin' ); ?></a>
1003
- </h2>
1004
- <div class="cntctfrm_clear"></div>
1005
- </div>
1006
- <div class="updated fade below-h2" <?php if ( $message == "" || "" != $error ) echo "style=\"display:none\""; ?>><p><strong><?php echo $message; ?></strong></p></div>
1007
- <div class="error below-h2" <?php if ( "" == $error ) echo 'style="display:none"'; ?>><p><strong><?php echo $error; ?></strong></p></div>
1008
- <?php bws_show_settings_notice();
1009
- if ( ! empty( $hide_result['message'] ) ) { ?>
1010
- <div class="updated fade below-h2"><p><strong><?php echo $hide_result['message']; ?></strong></p></div>
1011
- <?php }
1012
- if ( ! empty( $notice ) ) { ?>
1013
- <div class="error below-h2"><p><strong><?php _e( 'Notice', 'contact-form-plugin' ) . ":"; ?></strong> <?php echo $notice; ?></p></div>
1014
- <?php }
1015
- if ( ( ! isset( $_GET['action'] ) || ( 'go_pro' != $_GET['action'] && 'custom_code' != $_GET['action'] ) ) && ! $contact_form_multi_active ) { ?>
1016
- <h3 class="nav-tab-wrapper">
1017
- <span class="nav-tab nav-tab-active"><?php _e( 'NEW_FORM', 'contact-form-plugin' )?></span>
1018
- <a id="cntctfrm_show_multi_notice" class="nav-tab" target="_new" href="https://bestwebsoft.com/products/wordpress/plugins/contact-form-multi/?k=747ca825fb44711e2d24e40697747bc6&amp;pn=77&amp;v=<?php echo $cntctfrm_plugin_info["Version"]; ?>&amp;wp_v=<?php echo $wp_version; ?>" title="<?php _e( "If you want to create multiple contact forms, please install the Contact Form Multi plugin.", 'contact-form-plugin' ); ?>">+</a>
1019
  </h3>
 
 
 
 
 
1020
  <?php }
1021
- if ( ! isset( $_GET['action'] ) || 'additional' == $_GET['action'] ) {
1022
- if ( isset( $_REQUEST['bws_restore_default'] ) && check_admin_referer( $plugin_basename, 'bws_settings_nonce_name' ) ) {
1023
- bws_form_restore_default_confirm( $plugin_basename );
1024
- } else { ?>
1025
- <form id="cntctfrm_settings_form" class="bws_form" method="post" action="">
1026
- <div style="margin: 20px 0;">
1027
- <?php printf( __( "If you would like to add a Contact Form to your page or post, please use %s button", 'contact-form-plugin' ),
1028
- '<span class="bws_code"><span class="bwsicons bwsicons-shortcode"></span></span>'
1029
- ); ?>
1030
- <div class="bws_help_box bws_help_box_right dashicons dashicons-editor-help">
1031
- <div class="bws_hidden_help_text" style="min-width: 260px;">
1032
- <?php printf(
1033
- __( "You can add the Contact Form to your page or post by clicking on %s button in the content edit block using the Visual mode. If the button isn't displayed, please use the shortcode %s or %s where * stands for Contact Form language.", 'contact-form-plugin' ),
1034
- '<span class="bws_code"><span class="bwsicons bwsicons-shortcode"></span></span>',
1035
- sprintf( '<br/><span class="bws_code">[bestwebsoft_contact_form%s]</span><br/>', ( ! $contact_form_multi_active ) ? '' : ' id=' . $_SESSION['cntctfrmmlt_id_form'] ),
1036
- sprintf( '<br/><span class="bws_code">[bestwebsoft_contact_form%s lang=*]</span>,<br/>', ( ! $contact_form_multi_active ) ? '' : ' id=' . $_SESSION['cntctfrmmlt_id_form'] )
1037
- ); ?>
1038
- </div>
1039
- </div>
1040
- </div>
1041
- <div <?php if ( isset( $_GET['action'] ) ) echo 'style="display: none;"'; ?> >
1042
- <p><?php _e( "If you leave the fields empty, the messages will be sent to the email address specified during registration.", 'contact-form-plugin' ); ?></p>
1043
- <table class="form-table" style="width:auto;">
1044
- <tr valign="top">
1045
- <th scope="row"><?php _e( "The user's email address", 'contact-form-plugin' ); ?>: </th>
1046
- <td colspan="2">
1047
- <label><input type="radio" id="cntctfrm_select_email_user" name="cntctfrm_select_email" value="user" <?php checked( 'user', $cntctfrm_options['select_email'] ); ?> />
1048
- <select class="cntctfrm_user_email" name="cntctfrm_user_email">
1049
- <option disabled><?php _e( "Select a username", 'contact-form-plugin' ); ?></option>
1050
- <?php foreach ( $userslogin as $key => $value ) {
1051
- if ( isset( $value->data ) ) {
1052
- if ( $value->data->user_email != '' ) { ?>
1053
- <option value="<?php echo $value->data->user_login; ?>" <?php selected( $value->data->user_login, $cntctfrm_options['user_email'] ); ?>><?php echo $value->data->user_login; ?></option>
1054
- <?php }
1055
- } else {
1056
- if ( $value->user_email != '' ) { ?>
1057
- <option value="<?php echo $value->user_login; ?>" <?php selected( $value->user_login, $cntctfrm_options['user_email'] ); ?>><?php echo $value->user_login; ?></option>
1058
- <?php }
1059
- }
1060
- } ?>
1061
- </select>
1062
- <span class="bws_info cntctfrm_info"><?php _e( "Select a username of the person who should get the messages from the contact form.", 'contact-form-plugin' ); ?></span></label>
1063
- </td>
1064
- </tr>
1065
- <tr valign="top">
1066
- <th scope="row"><?php _e( "Use this email address", 'contact-form-plugin' ); ?>:</th>
1067
- <td colspan="2">
1068
- <label><input type="radio" id="cntctfrm_select_email_custom" name="cntctfrm_select_email" value="custom" <?php checked( 'custom', $cntctfrm_options['select_email'] ); ?> />
1069
- <input type="text" name="cntctfrm_custom_email" value="<?php echo $cntctfrm_options['custom_email']; ?>" maxlength="500" />
1070
- <span class="bws_info cntctfrm_info"><?php _e( "Enter the email address for receiving messages", 'contact-form-plugin' ); ?>.</span></label>
1071
- </td>
1072
- </tr>
1073
- </table>
1074
- <?php if ( ! $bws_hide_premium_options_check ) { ?>
1075
- <div class="bws_pro_version_bloc">
1076
- <div class="bws_pro_version_table_bloc">
1077
- <button type="submit" name="bws_hide_premium_options" class="notice-dismiss bws_hide_premium_options" title="<?php _e( 'Close', 'contact-form-plugin' ); ?>"></button>
1078
- <div class="bws_table_bg"></div>
1079
- <table class="form-table bws_pro_version">
1080
- <tr valign="top">
1081
- <th scope="row"><?php _e( "Add department selectbox to the contact form", 'contact-form-plugin' ); ?>:</th>
1082
- <td colspan="2">
1083
- <input type="radio" name="cntctfrm_select_email" value="departments" disabled="disabled" />
1084
- <div><img style="width:100%;" src="<?php echo plugins_url( 'images/pro_screen_1.png', __FILE__ ); ?>" alt="" /></div>
1085
- </td>
1086
- </tr>
1087
- <tr valign="top">
1088
- <th scope="row" colspan="2">
1089
- * <?php _e( 'If you upgrade to Pro version all your settings will be saved.', 'contact-form-plugin' ); ?>
1090
- </th>
1091
- </tr>
1092
- </table>
1093
- </div>
1094
- <div class="bws_pro_version_tooltip">
1095
- <a class="bws_button" href="https://bestwebsoft.com/products/wordpress/plugins/contact-form/?k=697c5e74f39779ce77850e11dbe21962&amp;pn=77&amp;v=<?php echo $cntctfrm_plugin_info["Version"]; ?>&amp;wp_v=<?php echo $wp_version; ?>" target="_blank" title="Contact Form Pro">
1096
- <?php _e( 'Upgrade to Pro', 'contact-form-plugin' ); ?>
1097
- </a>
1098
- <div class="clear"></div>
1099
- </div>
1100
- </div>
1101
- <?php } ?>
1102
- <table class="form-table" style="width:auto;">
1103
- <tr valign="top">
1104
- <th scope="row"><?php _e( "Save emails to the database", 'contact-form-plugin' ); ?> </th>
1105
- <td colspan="2">
1106
- <?php if ( array_key_exists( 'contact-form-to-db/contact_form_to_db.php', $all_plugins ) || array_key_exists( 'contact-form-to-db-pro/contact_form_to_db_pro.php', $all_plugins ) ) {
1107
- if ( array_key_exists( 'contact-form-to-db', $cntctfrm_related_plugins ) ) {
1108
- $save_emails = false;
1109
- if ( ! $contact_form_multi_active ) {
1110
- $save_emails = ! empty( $cntctfrm_related_plugins['contact-form-to-db']['options']['save_messages_to_db'] ) ? true : false;
1111
- } else {
1112
- $save_emails = ! empty( $cntctfrm_options['save_email_to_db'] ) ? true : false;
1113
- }
1114
- if ( ! $contact_form_multi_active || ! empty( $cntctfrm_related_plugins['contact-form-to-db']['options']['save_messages_to_db'] ) ) { ?>
1115
- <label><input type="checkbox" name="cntctfrm_save_email_to_db" value="1" <?php checked( $save_emails ); ?> />
1116
- <span class="bws_info"> (<?php _e( 'Using', 'contact-form-plugin' ); ?>
1117
- <a href="<?php echo self_admin_url( '/admin.php?page=' . $cntctfrm_related_plugins['contact-form-to-db']['settings_page'] ); ?>" target="_blank">Contact Form to DB by BestWebSoft</a>)
1118
- </span>
1119
- </label>
1120
- <?php } else { ?>
1121
- <label><input type="checkbox" name="cntctfrm_save_email_to_db" value="1" disabled="disabled" <?php checked( $save_emails ); ?> /></label>
1122
- <span class="bws_info">&nbsp;(<?php _e( 'Please activate the appropriate option on', 'contact-form-plugin' ) ?>&nbsp;
1123
- <?php printf( '<a href="%s" target="_blank"> Contact Form to DB %s</a>&nbsp;)',
1124
- self_admin_url( '/admin.php?page=' . $cntctfrm_related_plugins['contact-form-to-db']['settings_page'] ),
1125
- __( 'settings page', 'contact-form-plugin' ) ); ?>
1126
- </span>
1127
- <?php }
1128
- } else { ?>
1129
- <label><input disabled="disabled" type="checkbox" name="cntctfrm_save_email_to_db" value="1" <?php checked( ! empty( $cntctfrm_options["save_email_to_db"] ) ); ?> />
1130
- <span class="bws_info">(<?php _e( 'Using', 'contact-form-plugin' ); ?> Contact Form to DB by BestWebSoft)
1131
- <?php printf( '<a href="%s" target="_blank">%s Contact Form to DB</a>', self_admin_url( 'plugins.php' ), __( 'Activate', 'contact-form-plugin' ) ); ?>
1132
- </span>
1133
- </label>
1134
- <?php }
1135
- } else { ?>
1136
- <label><input disabled="disabled" type="checkbox" name="cntctfrm_save_email_to_db" value="1" />
1137
- <span class="bws_info">(<?php _e( 'Using', 'contact-form-plugin' ); ?> Contact Form to DB by BestWebSoft)
1138
- <?php printf( '<a href="https://bestwebsoft.com/products/wordpress/plugins/contact-form-to-db/?k=19d806f45d866e70545de83169b274f2&amp;pn=77&amp;v=%s&amp;wp_v=%s"> %s Contact Form to DB</a>', $cntctfrm_plugin_info["Version"], $wp_version, __( 'Download', 'contact-form-plugin' ) ); ?>
1139
- </span>
1140
- </label>
1141
- <?php } ?>
1142
- </td>
1143
- </tr>
1144
- </table>
1145
- </div>
1146
- <!-- end of main 'settings' div -->
1147
- <div <?php if ( ! isset( $_GET['action'] ) ) echo 'style="display: none;"'; ?>>
1148
- <table class="form-table" style="width:auto;">
1149
- <tr>
1150
- <th scope="row"><?php _e( 'Sending method', 'contact-form-plugin' ); ?></th>
1151
- <td colspan="2">
1152
- <fieldset>
1153
- <label>
1154
- <input type='radio' name='cntctfrm_mail_method' value='wp-mail' <?php checked( 'wp-mail', $cntctfrm_options['mail_method'] ); ?> />
1155
- <?php _e( 'Wp-mail', 'contact-form-plugin' ); ?>
1156
- </label>
1157
- <label><span class="bws_info">(<?php _e( 'You can use the Wordpress wp_mail function for mailing', 'contact-form-plugin' ); ?>)</span></label><br />
1158
- <label>
1159
- <input type='radio' name='cntctfrm_mail_method' value='mail' <?php checked( 'mail', $cntctfrm_options['mail_method'] ); ?> />
1160
- <?php _e( 'Mail', 'contact-form-plugin' ); ?>
1161
- </label>
1162
- <label><span class="bws_info">(<?php _e( 'You can use the PHP mail function for mailing', 'contact-form-plugin' ); ?>)</span></label>
1163
- </fieldset>
1164
- </td>
1165
- </tr>
1166
- <tr valign="top">
1167
- <th scope="row"><?php _e( "'FROM' field", 'contact-form-plugin' ); ?></th>
1168
- <td class="cntctfrm_td_name" style="vertical-align: top;">
1169
- <table id="cntctfrm_table_from_name">
1170
- <tbody>
1171
- <tr>
1172
- <td colspan="2"><?php _e( "Name", 'contact-form-plugin' ); ?></td>
1173
- </tr>
1174
- <tr>
1175
- <td class="cntctfrm_radio_from_name"><input type="radio" id="cntctfrm_select_from_custom_field" name="cntctfrm_select_from_field" value="custom" <?php checked( 'custom', $cntctfrm_options['select_from_field'] ); ?> /></td>
1176
- <td><input type="text" name="cntctfrm_from_field" value="<?php echo stripslashes( $cntctfrm_options['from_field'] ); ?>" size="18" maxlength="100" /></td>
1177
- </tr>
1178
- <tr>
1179
- <td class="cntctfrm_radio_from_name">
1180
- <input type="radio" id="cntctfrm_select_from_field" name="cntctfrm_select_from_field" value="user_name" <?php checked( 'user_name', $cntctfrm_options['select_from_field'] ); ?>/>
1181
- </td>
1182
- <td>
1183
- <label for="cntctfrm_select_from_field"><?php _e( "User name", 'contact-form-plugin' ); ?></label>
1184
- <div class="bws_help_box dashicons dashicons-editor-help">
1185
- <div class="bws_hidden_help_text" style="min-width: 200px;"><?php echo __( "The name of the user who fills the form will be used in the field 'From'.", 'contact-form-plugin' ); ?></div>
1186
- </div>
1187
- </td>
1188
- </tr>
1189
- </tbody>
1190
- </table>
1191
- </td>
1192
- <td class="cntctfrm_td_email" style="vertical-align: top;">
1193
- <table id="cntctfrm_table_from_email">
1194
- <tbody>
1195
- <tr>
1196
- <td colspan="2"><?php _e( "Email", 'contact-form-plugin' ); ?></td>
1197
- </tr>
1198
- <tr>
1199
- <td class="cntctfrm_radio_from_email"><input type="radio" id="cntctfrm_from_custom_email" name="cntctfrm_from_email" value="custom" <?php checked( 'custom', $cntctfrm_options['from_email'] ); ?> /></td>
1200
- <td><input type="text" name="cntctfrm_custom_from_email" value="<?php echo $cntctfrm_options['custom_from_email']; ?>" maxlength="100" /></td>
1201
- </tr>
1202
- <tr>
1203
- <td class="cntctfrm_radio_from_email">
1204
- <input type="radio" id="cntctfrm_from_email" name="cntctfrm_from_email" value="user" <?php checked( 'user', $cntctfrm_options['from_email'] ); ?> />
1205
- </td>
1206
- <td>
1207
- <label for="cntctfrm_from_email"><?php _e( "User email", 'contact-form-plugin' ); ?></label>
1208
- <div class="bws_help_box dashicons dashicons-editor-help">
1209
- <div class="bws_hidden_help_text" style="min-width: 200px;"><?php echo __( "The email address of the user who fills the form will be used in the field 'From'.", 'contact-form-plugin' ); ?></div>
1210
- </div>
1211
- </td>
1212
- </tr>
1213
- <tr>
1214
- <td>
1215
- </td>
1216
- <td>
1217
- <div>
1218
- <span class="bws_info">(<?php _e( "If this option is changed, email messages may be moved to the spam folder or email delivery failures may occur.", 'contact-form-plugin' ); ?>)</span>
1219
- </div>
1220
- </td>
1221
- </tr>
1222
- </tbody>
1223
- </table>
1224
- </td>
1225
- </tr>
1226
- <tr valign="top">
1227
- <th scope="row"><?php _e( "Required symbol", 'contact-form-plugin' ); ?></th>
1228
- <td colspan="2">
1229
- <input type="text" id="cntctfrm_required_symbol" name="cntctfrm_required_symbol" value="<?php echo $cntctfrm_options['required_symbol']; ?>" maxlength="100" />
1230
- </td>
1231
- </tr>
1232
- </table>
1233
- <br />
1234
- <table class="cntctfrm_settings_table" style="width: auto;">
1235
- <thead>
1236
- <tr valign="top">
1237
- <th scope="row"><?php _e( "Fields", 'contact-form-plugin' ); ?></th>
1238
- <th><?php _e( "Used", 'contact-form-plugin' ); ?></th>
1239
- <th><?php _e( "Required", 'contact-form-plugin' ); ?></th>
1240
- <?php if ( ! $bws_hide_premium_options_check ) { ?>
1241
- <th><?php _e( "Visible", 'contact-form-plugin' ); ?></th>
1242
- <th><?php _e( "Disabled for editing", 'contact-form-plugin' ); ?></th>
1243
- <th scope="row" ><?php _e( "Field's default value", 'contact-form-plugin' ); ?></th>
1244
- <?php } ?>
1245
- </tr>
1246
- </thead>
1247
- <tbody>
1248
- <?php if ( ! $bws_hide_premium_options_check ) { ?>
1249
- <tr valign="top" >
1250
- <td><?php _e( "Department selectbox", 'contact-form-plugin' ); ?></td>
1251
- <td class="bws_pro_version"></td>
1252
- <td class="bws_pro_version">
1253
- <label><input disabled="disabled" type="checkbox" name="cntctfrm_required_department_field" value="1" />
1254
- <span class="cntctfrm_mobile_title"><?php _e( "Required", 'contact-form-plugin' ); ?></span></label>
1255
- </td>
1256
- <td class="bws_pro_version"></td>
1257
- <td class="bws_pro_version"></td>
1258
- <td class="bws_pro_version"></td>
1259
- </tr>
1260
- <?php } ?>
1261
- <tr valign="top">
1262
- <td><?php _e( "Name", 'contact-form-plugin' ); ?></td>
1263
- <td>
1264
- <label><input type="checkbox" name="cntctfrm_display_name_field" value="1" <?php checked( '1', $cntctfrm_options['display_name_field'] ); ?> />
1265
- <span class="cntctfrm_mobile_title"><?php _e( "Used", 'contact-form-plugin' ); ?></span></label>
1266
- </td>
1267
- <td>
1268
- <label><input type="checkbox" id="cntctfrm_required_name_field" name="cntctfrm_required_name_field" value="1" <?php checked( '1', $cntctfrm_options['required_name_field'] ); ?> />
1269
- <span class="cntctfrm_mobile_title"><?php _e( "Required", 'contact-form-plugin' ); ?></span></label>
1270
- </td>
1271
- <?php if ( ! $bws_hide_premium_options_check ) { ?>
1272
- <td class="bws_pro_version">
1273
- <label><input disabled="disabled" type="checkbox" name="cntctfrm_visible_name" value="1" checked="checked" />
1274
- <span class="cntctfrm_mobile_title"><?php _e( "Visible", 'contact-form-plugin' ); ?></span></label>
1275
- </td>
1276
- <td class="bws_pro_version">
1277
- <label><input disabled="disabled" type="checkbox" name="cntctfrm_disabled_name" value="1" />
1278
- <span class="cntctfrm_mobile_title"><?php _e( "Disabled for editing", 'contact-form-plugin' ); ?></span></label>
1279
- </td>
1280
- <td class="bws_pro_version">
1281
- <input disabled="disabled" type="checkbox" name="cntctfrm_default_name" value="1" />
1282
- <?php _e( "Use User's name as a default value if the user is logged in.", 'contact-form-plugin' ); ?><br />
1283
- <span class="bws_info">(<?php _e( "'Visible' and 'Disabled for editing' options will be applied only to logged-in users.", 'contact-form-plugin' ); ?>)</span>
1284
- </td>
1285
- <?php } ?>
1286
- </tr>
1287
- <?php if ( ! $bws_hide_premium_options_check ) { ?>
1288
- <tr valign="top">
1289
- <td><?php _e( "Location selectbox", 'contact-form-plugin' ); ?></td>
1290
- <td class="bws_pro_version">
1291
- <label><input disabled="disabled" type="checkbox" name="cntctfrm_display_selectbox" value="1" />
1292
- <span class="cntctfrm_mobile_title"><?php _e( "Used", 'contact-form-plugin' ); ?></span></label>
1293
- </td>
1294
- <td class="bws_pro_version">
1295
- <label><input disabled="disabled" type="checkbox" name="cntctfrm_required_selectbox" value="1" />
1296
- <span class="cntctfrm_mobile_title"><?php _e( "Required", 'contact-form-plugin' ); ?></span></label>
1297
- </td>
1298
- <td class="bws_pro_version"></td>
1299
- <td class="bws_pro_version"></td>
1300
- <td class="bws_pro_version">
1301
- <label>
1302
- <span><?php _e( "Field's default value", 'contact-form-plugin' ); ?></span>
1303
- <input disabled="disabled" type="file" name="cntctfrm_default_location" />
1304
- </label>
1305
- </td>
1306
- </tr>
1307
- <?php } ?>
1308
- <tr valign="top">
1309
- <td><?php _e( "Address", 'contact-form-plugin' ); ?></td>
1310
- <td>
1311
- <label><input type="checkbox" id="cntctfrm_display_address_field" name="cntctfrm_display_address_field" value="1" <?php checked( '1', $cntctfrm_options['display_address_field'] ); ?> />
1312
- <span class="cntctfrm_mobile_title"><?php _e( "Used", 'contact-form-plugin' ); ?></span></label>
1313
- </td>
1314
- <td>
1315
- <label><input type="checkbox" id="cntctfrm_required_address_field" name="cntctfrm_required_address_field" value="1" <?php checked( '1', $cntctfrm_options['required_address_field'] ); ?> />
1316
- <span class="cntctfrm_mobile_title"><?php _e( "Required", 'contact-form-plugin' ); ?></span></label>
1317
- </td>
1318
- <?php if ( ! $bws_hide_premium_options_check ) { ?>
1319
- <td></td>
1320
- <td></td>
1321
- <td></td>
1322
- <?php } ?>
1323
- </tr>
1324
- <tr valign="top">
1325
- <td><?php _e( "Email Address", 'contact-form-plugin' ); ?></td>
1326
- <td></td>
1327
- <td>
1328
- <label><input type="checkbox" id="cntctfrm_required_email_field" name="cntctfrm_required_email_field" value="1" <?php checked( '1', $cntctfrm_options['required_email_field'] ); ?> />
1329
- <span class="cntctfrm_mobile_title"><?php _e( "Required", 'contact-form-plugin' ); ?></span></label>
1330
- </td>
1331
- <?php if ( ! $bws_hide_premium_options_check ) { ?>
1332
- <td class="bws_pro_version">
1333
- <label><input disabled="disabled" type="checkbox" name="cntctfrm_visible_email" value="1" checked="checked" />
1334
- <span class="cntctfrm_mobile_title"><?php _e( "Visible", 'contact-form-plugin' ); ?></span></label>
1335
- </td>
1336
- <td class="bws_pro_version">
1337
- <label><input disabled="disabled" type="checkbox" name="cntctfrm_disabled_email" value="1" />
1338
- <span class="cntctfrm_mobile_title"><?php _e( "Disabled for editing", 'contact-form-plugin' ); ?></span></label>
1339
- </td>
1340
- <td class="bws_pro_version">
1341
- <input disabled="disabled" type="checkbox" name="cntctfrm_default_email" value="1" />
1342
- <?php _e( "Use User's email as a default value if the user is logged in.", 'contact-form-plugin' ); ?><br />
1343
- <span class="bws_info">(<?php _e( "'Visible' and 'Disabled for editing' options will be applied only to logged-in users.", 'contact-form-plugin' ); ?>)</span>
1344
- </td>
1345
- <?php } ?>
1346
- </tr>
1347
- <tr valign="top">
1348
- <td><?php _e( "Phone number", 'contact-form-plugin' ); ?></td>
1349
- <td>
1350
- <label><input type="checkbox" id="cntctfrm_display_phone_field" name="cntctfrm_display_phone_field" value="1" <?php checked( '1', $cntctfrm_options['display_phone_field'] ); ?> />
1351
- <span class="cntctfrm_mobile_title"><?php _e( "Used", 'contact-form-plugin' ); ?></span></label>
1352
- </td>
1353
- <td>
1354
- <label><input type="checkbox" id="cntctfrm_required_phone_field" name="cntctfrm_required_phone_field" value="1" <?php checked( '1', $cntctfrm_options['required_phone_field'] ); ?> />
1355
- <span class="cntctfrm_mobile_title"><?php _e( "Required", 'contact-form-plugin' ); ?></span></label>
1356
- </td>
1357
- <?php if ( ! $bws_hide_premium_options_check ) { ?>
1358
- <td></td>
1359
- <td></td>
1360
- <td></td>
1361
- <?php } ?>
1362
- </tr>
1363
- <tr valign="top">
1364
- <td><?php _e( "Subject", 'contact-form-plugin' ); ?></td>
1365
- <td></td>
1366
- <td>
1367
- <label><input type="checkbox" id="cntctfrm_required_subject_field" name="cntctfrm_required_subject_field" value="1" <?php checked( '1', $cntctfrm_options['required_subject_field'] ); ?> />
1368
- <span class="cntctfrm_mobile_title"><?php _e( "Required", 'contact-form-plugin' ); ?></span></label>
1369
- </td>
1370
- <?php if ( ! $bws_hide_premium_options_check ) { ?>
1371
- <td class="bws_pro_version">
1372
- <label><input class="subject" disabled="disabled" type="checkbox" name="cntctfrm_visible_subject" value="1" checked="checked" />
1373
- <span class="cntctfrm_mobile_title"><?php _e( "Visible", 'contact-form-plugin' ); ?></span></label>
1374
- </td>
1375
- <td class="bws_pro_version">
1376
- <label><input class="subject" disabled="disabled" type="checkbox" name="cntctfrm_disabled_subject" value="1" />
1377
- <span class="cntctfrm_mobile_title"><?php _e( "Disabled for editing", 'contact-form-plugin' ); ?></span></label>
1378
- </td>
1379
- <td class="bws_pro_version">
1380
- <label>
1381
- <span><?php _e( "Field's default value", 'contact-form-plugin' ); ?></span>
1382
- <input class="subject" disabled="disabled" type="text" name="cntctfrm_default_subject" value="" />
1383
- </label>
1384
- </td>
1385
- <?php } ?>
1386
- </tr>
1387
- <tr valign="top">
1388
- <td><?php _e( "Message", 'contact-form-plugin' ); ?></td>
1389
- <td></td>
1390
- <td>
1391
- <label><input type="checkbox" id="cntctfrm_required_message_field" name="cntctfrm_required_message_field" value="1" <?php checked( '1', $cntctfrm_options['required_message_field'] ); ?> />
1392
- <span class="cntctfrm_mobile_title"><?php _e( "Required", 'contact-form-plugin' ); ?></span></label>
1393
- </td>
1394
- <?php if ( ! $bws_hide_premium_options_check ) { ?>
1395
- <td class="bws_pro_version">
1396
- <label><input class="message" disabled="disabled" type="checkbox" name="cntctfrm_visible_message" value="1" checked="checked" />
1397
- <span class="cntctfrm_mobile_title"><?php _e( "Visible", 'contact-form-plugin' ); ?></span></label>
1398
- </td>
1399
- <td class="bws_pro_version">
1400
- <label><input class="message" disabled="disabled" disabled="disabled" type="checkbox" name="cntctfrm_disabled_message" value="1" />
1401
- <span class="cntctfrm_mobile_title"><?php _e( "Disabled for editing", 'contact-form-plugin' ); ?></span></label>
1402
- </td>
1403
- <td class="bws_pro_version">
1404
- <label>
1405
- <span><?php _e( "Field's default value", 'contact-form-plugin' ); ?></span>
1406
- <input class="message" disabled="disabled" type="text" name="cntctfrm_default_message" value="" />
1407
- </label>
1408
- </td>
1409
- <?php } ?>
1410
- </tr>
1411
- <?php if ( ! $bws_hide_premium_options_check ) { ?>
1412
- <tr valign="top">
1413
- <td></td>
1414
- <td></td>
1415
- <td></td>
1416
- <td colspan="3" class="bws_pro_version_tooltip bws_pro_version cntctfrm_pro_version_table_block">
1417
- <a class="bws_button" href="https://bestwebsoft.com/products/wordpress/plugins/contact-form/?k=697c5e74f39779ce77850e11dbe21962&amp;pn=77&amp;v=<?php echo $cntctfrm_plugin_info["Version"]; ?>&amp;wp_v=<?php echo $wp_version; ?>" target="_blank" title="Contact Form Pro">
1418
- <?php _e( 'Upgrade to Pro', 'contact-form-plugin' ); ?>
1419
- </a>
1420
- <div class="clear"></div>
1421
- </td>
1422
- </tr>
1423
- <?php } ?>
1424
- <tr valign="top">
1425
- <td>
1426
- <?php _e( "Attachment block", 'contact-form-plugin' ); ?>
1427
- <div class="bws_help_box dashicons dashicons-editor-help">
1428
- <div class="bws_hidden_help_text" style="min-width: 200px;"><?php echo __( "Users can attach the following file formats", 'contact-form-plugin' ) . ": html, txt, css, gif, png, jpeg, jpg, tiff, bmp, ai, eps, ps, csv, rtf, pdf, doc, docx, xls, xlsx, zip, rar, wav, mp3, ppt, aar, sce"; ?></div>
1429
- </div>
1430
- </td>
1431
- <td>
1432
- <label><input type="checkbox" id="cntctfrm_attachment" name="cntctfrm_attachment" value="1" <?php checked( '1', $cntctfrm_options['attachment'] ); ?> />
1433
- <span class="cntctfrm_mobile_title"><?php _e( "Used", 'contact-form-plugin' ); ?></span></label>
1434
- </td>
1435
- <td></td>
1436
- <?php if ( ! $bws_hide_premium_options_check ) { ?>
1437
- <td></td>
1438
- <td></td>
1439
- <td></td>
1440
- <?php } ?>
1441
- </tr>
1442
- </tbody>
1443
- </table>
1444
- <table class="form-table" style="width:auto;">
1445
- <tr valign="top">
1446
- <th scope="row"><?php _e( "Add to the form", 'contact-form-plugin' ); ?></th>
1447
- <td colspan="3"><fieldset>
1448
- <div>
1449
- <label>
1450
- <input type="checkbox" id="cntctfrm_attachment_explanations" name="cntctfrm_attachment_explanations" value="1" <?php checked( '1' == $cntctfrm_options['attachment_explanations'] && '1' == $cntctfrm_options['attachment'] ); ?> />
1451
- <?php _e( "Tips below the Attachment", 'contact-form-plugin' ); ?>
1452
- </label>
1453
- <?php echo bws_add_help_box( '<img src="' . plugins_url( 'images/tooltip_attachment_tips.png', __FILE__ ) . '" />', 'bws-hide-for-mobile bws-auto-width' ); ?>
1454
- </div>
1455
- <div>
1456
- <label>
1457
- <input type="checkbox" id="cntctfrm_send_copy" name="cntctfrm_send_copy" value="1" <?php checked( '1', $cntctfrm_options['send_copy'] ); ?> />
1458
- <?php _e( "'Send me a copy' block", 'contact-form-plugin' ); ?>
1459
- </label>
1460
- <?php echo bws_add_help_box( '<img src="' . plugins_url( 'images/tooltip_sendme_block.png', __FILE__ ) . '" />', 'bws-hide-for-mobile bws-auto-width' ); ?>
1461
- </div>
1462
- <div>
1463
- <label>
1464
- <input type="checkbox" id="cntctfrm_gdpr" name="cntctfrm_gdpr" value="1" <?php checked( '1', $cntctfrm_options['gdpr'] ); ?> />
1465
- <?php _e( "GDPR Compliance", 'contact-form-plugin' ); ?>
1466
- </label>
1467
- </div>
1468
- <div id="cntctfrm_gdpr_link_options" >
1469
- <label class="cntctfrm_privacy_policy_text" >
1470
- <?php _e( "Link to Privacy Policy Page", 'contact-form-plugin' ); ?>
1471
- <input type="url" id="cntctfrm_gdpr_link" name="cntctfrm_gdpr_link" value="<?php echo $cntctfrm_options['gdpr_link']; ?>" />
1472
- </label>
1473
- <label class="cntctfrm_privacy_policy_text" >
1474
- <?php _e( "Text for Privacy Policy Link", 'contact-form-plugin' ); ?>
1475
- <input type="text" id="cntctfrm_gdpr_text" name="cntctfrm_gdpr_text" value="<?php echo $cntctfrm_options['gdpr_text']; ?>" />
1476
- </label>
1477
- </div>
1478
- <div style="clear: both;">
1479
- <?php if ( array_key_exists( 'subscriber/subscriber.php', $all_plugins ) || array_key_exists( 'subscriber-pro/subscriber-pro.php', $all_plugins ) ) {
1480
- if ( array_key_exists( 'subscriber', $cntctfrm_related_plugins ) ) {
1481
- if ( ! $contact_form_multi_active ) {
1482
- $display_subscriber = ! empty( $cntctfrm_related_plugins['subscriber']['options']['contact_form'] ) ? true : false;
1483
- } else {
1484
- $display_subscriber = ! empty( $cntctfrm_options['display_subscribe'] ) ? true : false;
1485
- }
1486
- if ( ! $contact_form_multi_active || ! empty( $cntctfrm_related_plugins['subscriber']['options']['contact_form'] ) ) { ?>
1487
- <label><input type="checkbox" name="cntctfrm_display_subscriber" value="1" <?php checked( $display_subscriber ); ?> /> Subscriber by BestWebSoft</label>
1488
- <?php } else { ?>
1489
- <label><input type="checkbox" name="cntctfrm_display_subscriber" value="1" disabled="disabled" <?php checked( $display_subscriber ); ?> /> Subscriber by BestWebSoft</label>
1490
- <span class="bws_info">&nbsp;(<?php _e( 'Please activate the appropriate option on', 'contact-form-plugin' ) ?>&nbsp;
1491
- <?php printf( '<a href="%s" target="_blank"> Subscriber %s</a>&nbsp;)',
1492
- network_admin_url( '/admin.php?page=' . $cntctfrm_related_plugins['subscriber']['settings_page'] ),
1493
- __( 'settings page', 'contact-form-plugin' ) ); ?>
1494
- </span>
1495
- <?php }
1496
- } else { ?>
1497
- <label><input disabled="disabled" type="checkbox" name="cntctfrm_display_subscriber" value="1" <?php checked( isset( $cntctfrm_options['display_subscribe'] ) && 1 == $cntctfrm_options['display_subscribe'] ); ?> /> Subscriber by BestWebSoft</label>
1498
- <span class="bws_info">
1499
- <?php if ( ! is_multisite() ) {
1500
- printf( '<a href="%s" target="_blank"> %s Subscriber</a>', admin_url( 'plugins.php' ), __( 'Activate', 'contact-form-plugin' ) );
1501
- } else {
1502
- printf( '<a href="%s" target="_blank"> %s Subscriber</a>', network_admin_url( 'plugins.php' ), __( 'Activate for network', 'contact-form-plugin' ) );
1503
- } ?>
1504
- </span>
1505
- <?php }
1506
- } else { ?>
1507
- <label><input disabled="disabled" type="checkbox" name="cntctfrm_display_subscriber" value="1" /> Subscriber by BestWebSoft</label>
1508
- <span class="bws_info">
1509
- <?php printf( '<a href="https://bestwebsoft.com/products/wordpress/plugins/subscriber/?k=a9dfd3fa8513784c36622993b350b19e&amp;pn=77&amp;v=%s&amp;wp_v=%s" target="_blank">%s Subscriber</a>', $cntctfrm_plugin_info["Version"], $wp_version, __( 'Download', 'contact-form-plugin' ) ); ?>
1510
- </span>
1511
- <?php } ?>
1512
- </div>
1513
- <div style="clear: both;">
1514
- <?php if ( array_key_exists( 'captcha-bws/captcha-bws.php', $all_plugins ) || array_key_exists( 'captcha-plus/captcha-plus.php', $all_plugins ) || array_key_exists( 'captcha-pro/captcha_pro.php', $all_plugins ) ) {
1515
- if ( array_key_exists( 'captcha', $cntctfrm_related_plugins ) ) {
1516
- $captcha_enabled = ! empty( $cntctfrm_related_plugins['captcha']['options']['forms']['bws_contact']['enable'] ) ? true : false;
1517
- if ( ! $contact_form_multi_active ) {
1518
- $display_captcha = $captcha_enabled;
1519
- } else {
1520
- $display_captcha = ! empty( $cntctfrm_options['display_captcha'] ) ? true : false;
1521
- }
1522
-
1523
- if ( ! $contact_form_multi_active ) { ?>
1524
- <label><input type="checkbox" name="cntctfrm_display_captcha" value="1" <?php checked( $display_captcha ); ?> /> Captcha by BestWebSoft </label>
1525
- <?php } else {
1526
- if ( $captcha_enabled ) { ?>
1527
- <label><input type="checkbox" name="cntctfrm_display_captcha" value="1" <?php checked( $display_captcha ); ?> /> Captcha by BestWebSoft </label>
1528
- <?php } else { ?>
1529
- <label>
1530
- <input type="checkbox" name="cntctfrm_display_captcha" value="1" disabled="disabled" <?php checked( $display_captcha ); ?> /> Captcha by BestWebSoft
1531
- <span class="bws_info">&nbsp;(<?php _e( 'Please activate the appropriate option on', 'contact-form-plugin' ) ?>&nbsp;
1532
- <?php printf( '<a href="%s" target="_blank"> Captcha %s</a>&nbsp;)',
1533
- self_admin_url( '/admin.php?page=' . $cntctfrm_related_plugins['captcha']['settings_page'] ),
1534
- __( 'settings page', 'contact-form-plugin' ) ); ?>
1535
- </span>
1536
- </label>
1537
- <?php }
1538
- }
1539
- } else { ?>
1540
- <label><input disabled="disabled" type="checkbox" name="cntctfrm_display_captcha" value="1" /> Captcha by BestWebSoft</label>
1541
- <span class="bws_info">
1542
- <?php printf( '<a href="%s" target="_blank">%s Captcha</a>', self_admin_url( 'plugins.php' ), __( 'Activate', 'contact-form-plugin' ) ); ?>
1543
- </span>
1544
- <?php }
1545
- } else { ?>
1546
- <label><input disabled="disabled" type="checkbox" name="cntctfrm_display_captcha" value="1" /> Captcha by BestWebSoft</label>
1547
- <span class="bws_info">
1548
- <?php printf( '<a href="https://bestwebsoft.com/products/wordpress/plugins/captcha/?k=19ac1e9b23bea947cfc4a9b8e3326c03&amp;pn=77&amp;v=%s&amp;wp_v=%s" target="_blank">%s Captcha</a>', $cntctfrm_plugin_info["Version"], $wp_version, __( 'Download', 'contact-form-plugin' ) ) ?>
1549
- </span>
1550
- <?php } ?>
1551
- </div>
1552
- <div style="clear: both;">
1553
- <?php if ( array_key_exists( 'google-captcha/google-captcha.php', $all_plugins ) || array_key_exists( 'google-captcha-pro/google-captcha-pro.php', $all_plugins ) ) {
1554
- if ( array_key_exists( 'google-captcha', $cntctfrm_related_plugins ) ) {
1555
- if ( ! $contact_form_multi_active ) {
1556
- $display_google_captcha = ! empty( $cntctfrm_related_plugins['google-captcha']['options']['contact_form'] ) ? true : false;
1557
- } else {
1558
- $display_google_captcha = ! empty( $cntctfrm_options['display_google_captcha'] ) ? true : false;
1559
- }
1560
-
1561
- if ( ! $contact_form_multi_active || ! empty( $cntctfrm_related_plugins['google-captcha']['options']['contact_form'] ) ) { ?>
1562
- <label><input type="checkbox" name="cntctfrm_display_google_captcha" value="1" <?php checked( $display_google_captcha ); ?> /> Google Captcha (reCAPTCHA) by BestWebSoft</label>
1563
- <?php } else { ?>
1564
- <label>
1565
- <input type="checkbox" name="cntctfrm_display_google_captcha" value="1" disabled="disabled" <?php checked( $display_google_captcha ); ?> /> Google Captcha (reCAPTCHA) by BestWebSoft
1566
- <span class="bws_info">&nbsp;(<?php _e( 'Please activate the appropriate option on', 'contact-form-plugin' ) ?>&nbsp;
1567
- <?php printf( '<a href="%s" target="_blank"> Google Captcha %s</a>&nbsp;)',
1568
- self_admin_url( '/admin.php?page=' . $cntctfrm_related_plugins['google-captcha']['settings_page'] ),
1569
- __( 'settings page', 'contact-form-plugin' ) ); ?>
1570
- </span>
1571
- </label>
1572
- <?php }
1573
- } else { ?>
1574
- <label><input disabled="disabled" type="checkbox" name="cntctfrm_display_google_captcha" value="1" /> Google Captcha (reCAPTCHA) by BestWebSoft</label>
1575
- <span class="bws_info">
1576
- <?php printf( '<a href="%s" target="_blank">%s Google Captcha</a>', self_admin_url( 'plugins.php' ), __( 'Activate', 'contact-form-plugin' ) ); ?>
1577
- </span>
1578
- <?php }
1579
- } else { ?>
1580
- <label><input disabled="disabled" type="checkbox" name="cntctfrm_display_google_captcha" value="1" /> Google Captcha (reCAPTCHA) by BestWebSoft</label> <span class="bws_info">
1581
- <?php printf( '<a href="https://bestwebsoft.com/products/wordpress/plugins/google-captcha/?k=7d74e61dd1cea23d0e9bf2fa88b5b117&amp;pn=77&amp;v=%s&amp;wp_v=%s" target="_blank">%s Google Captcha</a>', $cntctfrm_plugin_info["Version"], $wp_version, __( 'Download', 'contact-form-plugin' ) ) ?>
1582
- </span>
1583
- <?php } ?>
1584
- </div>
1585
- <?php if ( ! $bws_hide_premium_options_check ) { ?>
1586
- <div class="bws_pro_version_bloc">
1587
- <div class="bws_pro_version_table_bloc">
1588
- <button type="submit" name="bws_hide_premium_options" class="notice-dismiss bws_hide_premium_options" title="<?php _e( 'Close', 'contact-form-plugin' ); ?>"></button>
1589
- <div class="bws_table_bg"></div>
1590
- <div class="bws_pro_version">
1591
- <fieldset>
1592
- <label><input disabled="disabled" type="checkbox" value="1" name="cntctfrm_display_privacy_check"> <?php _e( 'Agreement checkbox', 'contact-form-plugin' ); ?> <span class="bws_info">(<?php _e( 'Required checkbox for submitting the form', 'contact-form-plugin' ); ?>)</span></label><br />
1593
- <label><input disabled="disabled" type="checkbox" value="1" name="cntctfrm_display_optional_check"> <?php _e( 'Optional checkbox', 'contact-form-plugin' ); ?> <span class="bws_info">(<?php _e( 'Optional checkbox, the results of which will be displayed in email', 'contact-form-plugin' ); ?>)</span></label>
1594
- </fieldset>
1595
- </div>
1596
- <div style="padding: 10px; ">
1597
- * <?php _e( 'If you upgrade to Pro version all your settings will be saved.', 'contact-form-plugin' ); ?>
1598
- </div>
1599
- </div>
1600
- <div class="bws_pro_version_tooltip">
1601
- <a class="bws_button" href="https://bestwebsoft.com/products/wordpress/plugins/contact-form/?k=697c5e74f39779ce77850e11dbe21962&amp;pn=77&amp;v=<?php echo $cntctfrm_plugin_info["Version"]; ?>&amp;wp_v=<?php echo $wp_version; ?>" target="_blank" title="Contact Form Pro">
1602
- <?php _e( 'Upgrade to Pro', 'contact-form-plugin' ); ?>
1603
- </a>
1604
- <div class="clear"></div>
1605
- </div>
1606
- </div>
1607
- <?php } ?>
1608
- </fieldset></td>
1609
- </tr>
1610
- <tr valign="top">
1611
- <th scope="row"><?php _e( "Delete an attachment file from the server after the email is sent", 'contact-form-plugin' ); ?> </th>
1612
- <td colspan="3">
1613
- <input type="checkbox" id="cntctfrm_delete_attached_file" name="cntctfrm_delete_attached_file" value="1" <?php checked( '1', $cntctfrm_options['delete_attached_file'] ); ?> />
1614
- </td>
1615
- </tr>
1616
- <tr valign="top">
1617
- <th scope="row"><?php _e( "Email in HTML format sending", 'contact-form-plugin' ); ?></th>
1618
- <td colspan="2"><input type="checkbox" name="cntctfrm_html_email" value="1" <?php checked( '1', $cntctfrm_options['html_email'] ); ?> /></td>
1619
- </tr>
1620
- <tr valign="top">
1621
- <th scope="row"><?php _e( "Display additional info in the email", 'contact-form-plugin' ); ?></th>
1622
- <td style="width:15px;" class="cntctfrm_td_top_align">
1623
- <input type="checkbox" id="cntctfrm_display_add_info" name="cntctfrm_display_add_info" value="1" <?php checked( '1', $cntctfrm_options['display_add_info'] ); ?> />
1624
- </td>
1625
- <td class="cntctfrm_display_add_info_block" <?php if ( '0' == $cntctfrm_options['display_add_info'] ) echo 'style="display:none"'; ?>>
1626
- <fieldset>
1627
- <label><input type="checkbox" id="cntctfrm_display_sent_from" name="cntctfrm_display_sent_from" value="1" <?php checked( '1', $cntctfrm_options['display_sent_from'] ); ?> /> <?php _e( "Sent from (IP address)", 'contact-form-plugin' ); ?></label> <label class="bws_info"><?php _e( "Example: Sent from (IP address): 127.0.0.1", 'contact-form-plugin' ); ?></label><br />
1628
- <label><input type="checkbox" id="cntctfrm_display_date_time" name="cntctfrm_display_date_time" value="1" <?php checked( '1', $cntctfrm_options['display_date_time'] ); ?> /> <?php _e( "Date/Time", 'contact-form-plugin' ); ?></label> <label class="bws_info"><?php _e( "Example: Date/Time: August 19, 2013 8:50 pm", 'contact-form-plugin' ); ?></label><br />
1629
- <label><input type="checkbox" id="cntctfrm_display_coming_from" name="cntctfrm_display_coming_from" value="1" <?php checked( '1', $cntctfrm_options['display_coming_from'] ); ?> /> <?php _e( "Sent from (referer)", 'contact-form-plugin' ); ?></label> <label class="bws_info"><?php _e( "Example: Sent from (referer): https://bestwebsoft.com/contacts/contact-us/", 'contact-form-plugin' ); ?></label><br />
1630
- <label><input type="checkbox" id="cntctfrm_display_user_agent" name="cntctfrm_display_user_agent" value="1" <?php checked( '1', $cntctfrm_options['display_user_agent'] ); ?> /> <?php _e( "Using (user agent)", 'contact-form-plugin' ); ?></label> <label class="bws_info"><?php _e( "Example: Using (user agent): Mozilla/5.0 (Windows NT 6.2; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/28.0.1500.95 Safari/537.36", 'contact-form-plugin' ); ?></label>
1631
- </fieldset>
1632
- </td>
1633
- </tr>
1634
- <tr valign="top">
1635
- <th scope="row"><?php _e( "Language settings for the field names in the form", 'contact-form-plugin' ); ?></th>
1636
- <td colspan="2">
1637
- <select name="cntctfrm_languages" id="cntctfrm_languages" style="max-width: 300px;">
1638
- <?php foreach ( $cntctfrm_lang_codes as $key => $val ) {
1639
- if ( ! empty( $cntctfrm_options['language'] ) && in_array( $key, $cntctfrm_options['language'] ) )
1640
- continue;
1641
- echo '<option value="' . esc_attr( $key ) . '"> ' . esc_html( $val ) . '</option>';
1642
- } ?>
1643
- </select>
1644
- <input type="submit" class="button-secondary" name="cntctfrm_add_language_button" id="cntctfrm_add_language_button" value="<?php _e( 'Add a language', 'contact-form-plugin' ); ?>" />
1645
- </td>
1646
- </tr>
1647
- <tr valign="top">
1648
- <th scope="row"><?php _e( "Change the names of the contact form fields and error messages", 'contact-form-plugin' ); ?></th>
1649
- <td style="width:15px;" class="cntctfrm_td_top_align">
1650
- <input type="checkbox" id="cntctfrm_change_label" name="cntctfrm_change_label" value="1" <?php checked( '1', $cntctfrm_options['change_label'] ); ?> />
1651
- </td>
1652
- <td class="cntctfrm_change_label_block" <?php if ( '0' == $cntctfrm_options['change_label'] ) echo 'style="display:none"'; ?>>
1653
- <div class="cntctfrm_label_language_tab <?php echo ! isset( $_POST['cntctfrm_change_tab'] ) || 'default' == $_POST['cntctfrm_change_tab'] ? 'cntctfrm_active' : ''; ?>" id="cntctfrm_label_default"><?php _e( 'Default', 'contact-form-plugin' ); ?>
1654
- <noscript>
1655
- <input type="submit" class="cntctfrm_change_tab" value="default" name="cntctfrm_change_tab">
1656
- </noscript>
1657
- </div>
1658
- <?php if ( ! empty( $cntctfrm_options['language'] ) ) {
1659
- foreach ( $cntctfrm_options['language'] as $val ) {
1660
- $active_tab_class = isset( $_POST["cntctfrm_change_tab"] ) && $val == $_POST["cntctfrm_change_tab"] ? "cntctfrm_active" : "";
1661
- echo '<div class="cntctfrm_label_language_tab ' . $active_tab_class . '" id="cntctfrm_label_' . $val . '">' . $cntctfrm_lang_codes[ $val ] . ' <span class="cntctfrm_delete" rel="' . $val . '">X</span><noscript><input type="submit" class="cntctfrm_change_tab" value="' . $val . '" name="cntctfrm_change_tab"><span class="cntctfrm_del_button_wrap"><input type="submit" class="cntctfrm_delete_button" value="' . $val . '" name="cntctfrm_delete_button"></span></noscript></div>';
1662
- }
1663
- } ?>
1664
- <div class="clear"></div>
1665
- <div class="cntctfrm_language_tab cntctfrm_tab_default <?php echo ! isset( $_POST['cntctfrm_change_tab'] ) || 'default' == $_POST['cntctfrm_change_tab'] ? '' : 'hidden' ?>" style="padding: 1px 3px;">
1666
- <div class="cntctfrm_language_tab_block_mini" style="display:none;"><?php _e( "click to expand/hide the list", 'contact-form-plugin' ); ?></div>
1667
- <div class="cntctfrm_language_tab_block">
1668
- <input type="text" maxlength="250" name="cntctfrm_name_label[default]" value="<?php echo $cntctfrm_options['name_label']['default']; ?>" /> <span class="bws_info"><?php _e( "Name", 'contact-form-plugin' ); ?>:</span><br />
1669
- <input type="text" maxlength="250" name="cntctfrm_address_label[default]" value="<?php echo $cntctfrm_options['address_label']['default']; ?>" /> <span class="bws_info"><?php _e( "Address", 'contact-form-plugin' ); ?>:</span><br />
1670
- <input type="text" maxlength="250" name="cntctfrm_email_label[default]" value="<?php echo $cntctfrm_options['email_label']['default']; ?>" /> <span class="bws_info"><?php _e( "Email Address", 'contact-form-plugin' ); ?>:</span><br />
1671
- <input type="text" maxlength="250" name="cntctfrm_phone_label[default]" value="<?php echo $cntctfrm_options['phone_label']['default']; ?>" /> <span class="bws_info"><?php _e( "Phone number", 'contact-form-plugin' ); ?>:</span><br />
1672
- <input type="text" maxlength="250" name="cntctfrm_subject_label[default]" value="<?php echo $cntctfrm_options['subject_label']['default']; ?>" /> <span class="bws_info"><?php _e( "Subject", 'contact-form-plugin' ); ?>:</span><br />
1673
- <input type="text" maxlength="250" name="cntctfrm_message_label[default]" value="<?php echo $cntctfrm_options['message_label']['default']; ?>" /> <span class="bws_info"><?php _e( "Message", 'contact-form-plugin' ); ?>:</span><br />
1674
- <input type="text" maxlength="250" name="cntctfrm_attachment_label[default]" value="<?php echo $cntctfrm_options['attachment_label']['default']; ?>" /> <span class="bws_info"><?php _e( "Attachment", 'contact-form-plugin' ); ?>:</span><br />
1675
- <input type="text" maxlength="250" name="cntctfrm_attachment_tooltip[default]" value="<?php echo $cntctfrm_options['attachment_tooltip']['default']; ?>" /> <span class="bws_info"><?php _e( "Tips below the Attachment block", 'contact-form-plugin' ); ?></span><br />
1676
- <input type="text" maxlength="250" name="cntctfrm_send_copy_label[default]" value="<?php echo $cntctfrm_options['send_copy_label']['default']; ?>" /> <span class="bws_info"><?php _e( "Send me a copy", 'contact-form-plugin' ); ?></span><br />
1677
- <input type="text" maxlength="250" name="cntctfrm_gdpr_label[default]" value="<?php echo $cntctfrm_options['gdpr_label']['default']; ?>" /> <span class="bws_info"><?php _e( "I consent to having this site collect my personal data.", 'contact-form-plugin' ); ?></span><br />
1678
- <input type="text" maxlength="250" name="cntctfrm_submit_label[default]" value="<?php echo $cntctfrm_options['submit_label']['default']; ?>" /> <span class="bws_info"><?php _e( "Submit", 'contact-form-plugin' ); ?></span><br />
1679
- <input type="text" maxlength="250" name="cntctfrm_name_error[default]" value="<?php echo $cntctfrm_options['name_error']['default']; ?>" /> <span class="bws_info"><?php _e( "Error message for the Name field", 'contact-form-plugin' ); ?></span><br />
1680
- <input type="text" maxlength="250" name="cntctfrm_address_error[default]" value="<?php echo $cntctfrm_options['address_error']['default']; ?>" /> <span class="bws_info"><?php _e( "Error message for the Address field", 'contact-form-plugin' ); ?></span><br />
1681
- <input type="text" maxlength="250" name="cntctfrm_email_error[default]" value="<?php echo $cntctfrm_options['email_error']['default']; ?>" /> <span class="bws_info"><?php _e( "Error message for the Email field", 'contact-form-plugin' ); ?></span><br />
1682
- <input type="text" maxlength="250" name="cntctfrm_phone_error[default]" value="<?php echo $cntctfrm_options['phone_error']['default']; ?>" /> <span class="bws_info"><?php _e( "Error message for the Phone field", 'contact-form-plugin' ); ?></span><br />
1683
- <input type="text" maxlength="250" name="cntctfrm_subject_error[default]" value="<?php echo $cntctfrm_options['subject_error']['default']; ?>" /> <span class="bws_info"><?php _e( "Error message for the Subject field", 'contact-form-plugin' ); ?></span><br />
1684
- <input type="text" maxlength="250" name="cntctfrm_message_error[default]" value="<?php echo $cntctfrm_options['message_error']['default']; ?>" /> <span class="bws_info"><?php _e( "Error message for the Message field", 'contact-form-plugin' ); ?></span><br />
1685
- <input type="text" maxlength="250" name="cntctfrm_attachment_error[default]" value="<?php echo $cntctfrm_options['attachment_error']['default']; ?>" /> <span class="bws_info"><?php _e( "Error message about the file type for the Attachment field", 'contact-form-plugin' ); ?></span><br />
1686
- <input type="text" maxlength="250" name="cntctfrm_attachment_upload_error[default]" value="<?php echo $cntctfrm_options['attachment_upload_error']['default']; ?>" /> <span class="bws_info"><?php _e( "Error message while uploading a file for the Attachment field to the server", 'contact-form-plugin' ); ?></span><br />
1687
- <input type="text" maxlength="250" name="cntctfrm_attachment_move_error[default]" value="<?php echo $cntctfrm_options['attachment_move_error']['default']; ?>" /> <span class="bws_info"><?php _e( "Error message while moving the file for the Attachment field", 'contact-form-plugin' ); ?></span><br />
1688
- <input type="text" maxlength="250" name="cntctfrm_attachment_size_error[default]" value="<?php echo $cntctfrm_options['attachment_size_error']['default']; ?>" /> <span class="bws_info"><?php _e( "Error message when file size limit for the Attachment field is exceeded", 'contact-form-plugin' ); ?></span><br />
1689
- <input type="text" maxlength="250" name="cntctfrm_captcha_error[default]" value="<?php echo $cntctfrm_options['captcha_error']['default']; ?>" /> <span class="bws_info"><?php _e( "Error message for the Captcha field", 'contact-form-plugin' ); ?></span><br />
1690
- <input type="text" maxlength="250" name="cntctfrm_form_error[default]" value="<?php echo $cntctfrm_options['form_error']['default']; ?>" /> <span class="bws_info"><?php _e( "Error message for the whole form", 'contact-form-plugin' ); ?></span><br />
1691
- </div>
1692
- <?php if ( ! $contact_form_multi_active ) { ?>
1693
- <span class="bws_info cntctfrm_shortcode_for_language" style="margin-left: 5px;"><?php _e( "Use shortcode", 'contact-form-plugin' ); ?> <span class="cntctfrm_shortcode">[bestwebsoft_contact_form]</span> <?php _e( "for this language", 'contact-form-plugin' ); ?></span>
1694
- <?php } else { ?>
1695
- <span class="bws_info cntctfrm_shortcode_for_language" style="margin-left: 5px;"><?php _e( "Use shortcode", 'contact-form-plugin' ); ?> <span class="cntctfrm_shortcode">[bestwebsoft_contact_form id=<?php echo $_SESSION['cntctfrmmlt_id_form']; ?>]</span> <?php _e( "for this language", 'contact-form-plugin' ); ?></span>
1696
- <?php } ?>
1697
- </div>
1698
- <?php if ( ! empty( $cntctfrm_options['language'] ) ) {
1699
- foreach ( $cntctfrm_options['language'] as $val ) {
1700
- if ( ( isset( $_POST['cntctfrm_change_tab'] ) && $val != $_POST['cntctfrm_change_tab'] ) || ! isset($_POST['cntctfrm_change_tab'] ) )
1701
- $labels_table_class = 'hidden';
1702
- else
1703
- $labels_table_class = ''; ?>
1704
- <div class="cntctfrm_language_tab <?php echo $labels_table_class; ?> cntctfrm_tab_<?php echo $val; ?>">
1705
- <div class="cntctfrm_language_tab_block_mini" style="display:none;"><?php _e( "click to expand/hide the list", 'contact-form-plugin' ); ?></div>
1706
- <div class="cntctfrm_language_tab_block">
1707
- <input type="text" maxlength="250" name="cntctfrm_name_label[<?php echo $val; ?>]" value="<?php if ( isset( $cntctfrm_options['name_label'][ $val ] ) ) echo $cntctfrm_options['name_label'][ $val ]; ?>" /> <span class="bws_info"><?php _e( "Name", 'contact-form-plugin' ); ?>:</span><br />
1708
- <input type="text" maxlength="250" name="cntctfrm_address_label[<?php echo $val; ?>]" value="<?php if ( isset( $cntctfrm_options['address_label'][ $val ] ) ) echo $cntctfrm_options['address_label'][ $val ]; ?>" /> <span class="bws_info"><?php _e( "Address", 'contact-form-plugin' ); ?>:</span><br />
1709
- <input type="text" maxlength="250" name="cntctfrm_email_label[<?php echo $val; ?>]" value="<?php if ( isset( $cntctfrm_options['email_label'][ $val ] ) ) echo $cntctfrm_options['email_label'][ $val ]; ?>" /> <span class="bws_info"><?php _e( "Email Address", 'contact-form-plugin' ); ?>:</span><br />
1710
- <input type="text" maxlength="250" name="cntctfrm_phone_label[<?php echo $val; ?>]" value="<?php if ( isset( $cntctfrm_options['phone_label'][ $val ] ) ) echo $cntctfrm_options['phone_label'][ $val ]; ?>" /> <span class="bws_info"><?php _e( "Phone number", 'contact-form-plugin' ); ?>:</span><br />
1711
- <input type="text" maxlength="250" name="cntctfrm_subject_label[<?php echo $val; ?>]" value="<?php if ( isset( $cntctfrm_options['subject_label'][ $val ] ) ) echo $cntctfrm_options['subject_label'][ $val ]; ?>" /> <span class="bws_info"><?php _e( "Subject", 'contact-form-plugin' ); ?>:</span><br />
1712
- <input type="text" maxlength="250" name="cntctfrm_message_label[<?php echo $val; ?>]" value="<?php if ( isset( $cntctfrm_options['message_label'][ $val ] ) ) echo $cntctfrm_options['message_label'][ $val ]; ?>" /> <span class="bws_info"><?php _e( "Message", 'contact-form-plugin' ); ?>:</span><br />
1713
- <input type="text" maxlength="250" name="cntctfrm_attachment_label[<?php echo $val; ?>]" value="<?php if ( isset( $cntctfrm_options['attachment_label'][ $val ] ) ) echo $cntctfrm_options['attachment_label'][ $val ]; ?>" /> <span class="bws_info"><?php _e( "Attachment", 'contact-form-plugin' ); ?>:</span><br />
1714
- <input type="text" maxlength="250" name="cntctfrm_attachment_tooltip[<?php echo $val; ?>]" value="<?php if ( isset( $cntctfrm_options['attachment_tooltip'][ $val ] ) ) echo $cntctfrm_options['attachment_tooltip'][ $val ]; ?>" /> <span class="bws_info"><?php _e( "Tips below the Attachment block", 'contact-form-plugin' ); ?></span><br />
1715
- <input type="text" maxlength="250" name="cntctfrm_send_copy_label[<?php echo $val; ?>]" value="<?php if ( isset( $cntctfrm_options['send_copy_label'][ $val ] ) ) echo $cntctfrm_options['send_copy_label'][ $val ]; ?>" /> <span class="bws_info"><?php _e( "Send me a copy", 'contact-form-plugin' ); ?></span><br />
1716
- <input type="text" maxlength="250" name="cntctfrm_gdpr_label[<?php echo $val; ?>]" value="<?php if ( isset( $cntctfrm_options['gdpr_label'][ $val ] ) ) echo $cntctfrm_options['gdpr_label'][ $val ]; ?>" /> <span class="bws_info"><?php _e( "I consent to having this site collect my personal data.", 'contact-form-plugin' ); ?></span><br />
1717
- <input type="text" maxlength="250" name="cntctfrm_submit_label[<?php echo $val; ?>]" value="<?php if ( isset( $cntctfrm_options['submit_label'][ $val ] ) ) echo $cntctfrm_options['submit_label'][ $val ]; ?>" /> <span class="bws_info"><?php _e( "Submit", 'contact-form-plugin' ); ?></span><br />
1718
- <input type="text" maxlength="250" name="cntctfrm_name_error[<?php echo $val; ?>]" value="<?php if ( isset( $cntctfrm_options['name_error'][ $val ] ) ) echo $cntctfrm_options['name_error'][ $val ]; ?>" /> <span class="bws_info"><?php _e( "Error message for the Name field", 'contact-form-plugin' ); ?></span><br />
1719
- <input type="text" maxlength="250" name="cntctfrm_address_error[<?php echo $val; ?>]" value="<?php if ( isset( $cntctfrm_options['address_error'][ $val ] ) ) echo $cntctfrm_options['address_error'][ $val ]; ?>" /> <span class="bws_info"><?php _e( "Error message for the Address field", 'contact-form-plugin' ); ?></span><br />
1720
- <input type="text" maxlength="250" name="cntctfrm_email_error[<?php echo $val; ?>]" value="<?php if ( isset( $cntctfrm_options['email_error'][ $val ] ) ) echo $cntctfrm_options['email_error'][ $val ]; ?>" /> <span class="bws_info"><?php _e( "Error message for the Email field", 'contact-form-plugin' ); ?></span><br />
1721
- <input type="text" maxlength="250" name="cntctfrm_phone_error[<?php echo $val; ?>]" value="<?php if ( isset( $cntctfrm_options['phone_error'][ $val ] ) ) echo $cntctfrm_options['phone_error'][ $val ]; ?>" /> <span class="bws_info"><?php _e( "Error message for the Phone field", 'contact-form-plugin' ); ?></span><br />
1722
- <input type="text" maxlength="250" name="cntctfrm_subject_error[<?php echo $val; ?>]" value="<?php if ( isset( $cntctfrm_options['subject_error'][ $val ] ) ) echo $cntctfrm_options['subject_error'][ $val ]; ?>" /> <span class="bws_info"><?php _e( "Error message for the Subject field", 'contact-form-plugin' ); ?></span><br />
1723
- <input type="text" maxlength="250" name="cntctfrm_message_error[<?php echo $val; ?>]" value="<?php if ( isset( $cntctfrm_options['message_error'][ $val ] ) ) echo $cntctfrm_options['message_error'][ $val ]; ?>" /> <span class="bws_info"><?php _e( "Error message for the Message field", 'contact-form-plugin' ); ?></span><br />
1724
- <input type="text" maxlength="250" name="cntctfrm_attachment_error[<?php echo $val; ?>]" value="<?php if ( isset( $cntctfrm_options['attachment_error'][ $val ] ) ) echo $cntctfrm_options['attachment_error'][ $val ]; ?>" /> <span class="bws_info"><?php _e( "Error message about the file type for the Attachment field", 'contact-form-plugin' ); ?></span><br />
1725
- <input type="text" maxlength="250" name="cntctfrm_attachment_upload_error[<?php echo $val; ?>]" value="<?php if ( isset( $cntctfrm_options['attachment_upload_error'][ $val ] ) ) echo $cntctfrm_options['attachment_upload_error'][ $val ]; ?>" /> <span class="bws_info"><?php _e( "Error message while uploading a file for the Attachment field to the server", 'contact-form-plugin' ); ?></span><br />
1726
- <input type="text" maxlength="250" name="cntctfrm_attachment_move_error[<?php echo $val; ?>]" value="<?php if ( isset( $cntctfrm_options['attachment_move_error'][ $val ] ) ) echo $cntctfrm_options['attachment_move_error'][ $val ]; ?>" /> <span class="bws_info"><?php _e( "Error message while moving the file for the Attachment field", 'contact-form-plugin' ); ?></span><br />
1727
- <input type="text" maxlength="250" name="cntctfrm_attachment_size_error[<?php echo $val; ?>]" value="<?php if ( isset( $cntctfrm_options['attachment_size_error'][ $val ] ) ) echo $cntctfrm_options['attachment_size_error'][ $val ]; ?>" /> <span class="bws_info"><?php _e( "Error message when file size limit for the Attachment field is exceeded", 'contact-form-plugin' ); ?></span><br />
1728
- <input type="text" maxlength="250" name="cntctfrm_captcha_error[<?php echo $val; ?>]" value="<?php if ( isset( $cntctfrm_options['captcha_error'][ $val ] ) ) echo $cntctfrm_options['captcha_error'][ $val ]; ?>" /> <span class="bws_info"><?php _e( "Error message for the Captcha field", 'contact-form-plugin' ); ?></span><br />
1729
- <input type="text" maxlength="250" name="cntctfrm_form_error[<?php echo $val; ?>]" value="<?php if ( isset( $cntctfrm_options['form_error'][ $val ] ) ) echo $cntctfrm_options['form_error'][ $val ]; ?>" /> <span class="bws_info"><?php _e( "Error message for the whole form", 'contact-form-plugin' ); ?></span><br />
1730
- </div>
1731
- <?php if ( ! $contact_form_multi_active ) { ?>
1732
- <span class="bws_info cntctfrm_shortcode_for_language" style="margin-left: 5px;"><?php _e( "Use shortcode", 'contact-form-plugin' ); ?> <span class="cntctfrm_shortcode">[bestwebsoft_contact_form lang=<?php echo $val; ?>]</span> <?php _e( "for this language", 'contact-form-plugin' ); ?></span>
1733
- <?php } else { ?>
1734
- <span class="bws_info cntctfrm_shortcode_for_language" style="margin-left: 5px;"><?php _e( "Use shortcode", 'contact-form-plugin' ); ?> <span class="cntctfrm_shortcode">[bestwebsoft_contact_form lang=<?php echo $val . ' id=' . $_SESSION['cntctfrmmlt_id_form']; ?>]</span> <?php _e( "for this language", 'contact-form-plugin' ); ?></span>
1735
- <?php } ?>
1736
- </div>
1737
- <?php }
1738
- } ?>
1739
- </td>
1740
- </tr>
1741
- <tr valign="top">
1742
- <th scope="row"><?php _e( 'Use the changed names of the contact form fields in the email', 'contact-form-plugin' ); ?></th>
1743
- <td colspan="2">
1744
- <input type="checkbox" name="cntctfrm_change_label_in_email" value="1" <?php checked( '1', $cntctfrm_options['change_label_in_email'] ); ?> />
1745
- </td>
1746
- </tr>
1747
- <tr valign="top">
1748
- <th scope="row"><?php _e( "Action after email is sent", 'contact-form-plugin' ); ?></th>
1749
- <td colspan="2" class="cntctfrm_action_after_send_block">
1750
- <label><input type="radio" id="cntctfrm_action_after_send" name="cntctfrm_action_after_send" value="1" <?php checked( '1', $cntctfrm_options['action_after_send'] ); ?> /> <?php _e( "Display text", 'contact-form-plugin' ); ?></label><br />
1751
- <div class="cntctfrm_label_language_tab <?php echo ! isset( $_POST['cntctfrm_change_tab'] ) || 'default' == $_POST['cntctfrm_change_tab'] ? 'cntctfrm_active' : ''; ?>" id="cntctfrm_text_default"><?php _e( 'Default', 'contact-form-plugin' ); ?>
1752
- <noscript>
1753
- <input type="submit" class="cntctfrm_change_tab" value="default" name="cntctfrm_change_tab">
1754
- </noscript>
1755
- </div>
1756
- <?php if ( ! empty( $cntctfrm_options['language'] ) ) {
1757
- foreach ( $cntctfrm_options['language'] as $val ) {
1758
- $active_tab_class = isset( $_POST["cntctfrm_change_tab"] ) && $val == $_POST["cntctfrm_change_tab"] ? "cntctfrm_active" : "";
1759
- echo '<div class="cntctfrm_label_language_tab ' . $active_tab_class . '" id="cntctfrm_text_' . $val . '">' . $cntctfrm_lang_codes[ $val ] . ' <span class="cntctfrm_delete" rel="' . $val . '">X</span><noscript><input type="submit" class="cntctfrm_change_tab" value="' . $val . '" name="cntctfrm_change_tab"><span class="cntctfrm_del_button_wrap"><input type="submit" class="cntctfrm_delete_button" value="' . $val . '" name="cntctfrm_delete_button"></span></noscript></div>';
1760
- }
1761
- } ?>
1762
- <div class="clear"></div>
1763
- <div class="cntctfrm_language_tab cntctfrm_tab_default <?php echo ! isset( $_POST['cntctfrm_change_tab'] ) || 'default' == $_POST['cntctfrm_change_tab'] ? '' : 'hidden' ?>" style="padding: 5px 10px 5px 5px;">
1764
- <label><input type="text" maxlength="250" name="cntctfrm_thank_text[default]" value="<?php echo $cntctfrm_options['thank_text']['default']; ?>" /> <span class="bws_info"><?php _e( "Text", 'contact-form-plugin' ); ?></span></label><br />
1765
- <?php if ( ! $contact_form_multi_active ) { ?>
1766
- <span class="bws_info cntctfrm_shortcode_for_language"><?php _e( "Use shortcode", 'contact-form-plugin' ); ?> <span class="cntctfrm_shortcode">[bestwebsoft_contact_form]</span> <?php _e( "for this language", 'contact-form-plugin' ); ?></span>
1767
- <?php } else { ?>
1768
- <span class="bws_info cntctfrm_shortcode_for_language"><?php _e( "Use shortcode", 'contact-form-plugin' ); ?> <span class="cntctfrm_shortcode">[bestwebsoft_contact_form id=<?php echo $_SESSION['cntctfrmmlt_id_form']; ?>]</span> <?php _e( "for this language", 'contact-form-plugin' ); ?></span>
1769
- <?php } ?>
1770
- </div>
1771
- <?php if ( ! empty( $cntctfrm_options['language'] ) ) {
1772
- foreach ( $cntctfrm_options['language'] as $val ) {
1773
- if ( ( isset( $_POST['cntctfrm_change_tab'] ) && $val != $_POST['cntctfrm_change_tab'] ) || ! isset($_POST['cntctfrm_change_tab'] ) )
1774
- $labels_table_class = 'hidden';
1775
- else
1776
- $labels_table_class = ''; ?>
1777
- <div class="cntctfrm_language_tab <?php echo $labels_table_class; ?> cntctfrm_tab_<?php echo $val; ?>" style="padding: 5px 10px 5px 5px;">
1778
- <label><input type="text" maxlength="250" name="cntctfrm_thank_text[<?php echo $val; ?>]" value="<?php if ( isset( $cntctfrm_options['thank_text'][ $val ] ) ) echo $cntctfrm_options['thank_text'][ $val ]; ?>" /> <span class="bws_info"><?php _e( "Text", 'contact-form-plugin' ); ?></span></label><br />
1779
- <?php if ( ! $contact_form_multi_active ) { ?>
1780
- <span class="bws_info cntctfrm_shortcode_for_language"><?php _e( "Use shortcode", 'contact-form-plugin' ); ?> <span class="cntctfrm_shortcode">[bestwebsoft_contact_form lang=<?php echo $val; ?>]</span> <?php _e( "for this language", 'contact-form-plugin' ); ?></span>
1781
- <?php } else { ?>
1782
- <span class="bws_info cntctfrm_shortcode_for_language"><?php _e( "Use shortcode", 'contact-form-plugin' ); ?> <span class="cntctfrm_shortcode">[bestwebsoft_contact_form lang=<?php echo $val . ' id=' . $_SESSION['cntctfrmmlt_id_form']; ?>]</span> <?php _e( "for this language", 'contact-form-plugin' ); ?></span>
1783
- <?php } ?>
1784
- </div>
1785
- <?php }
1786
- } ?>
1787
- <div id="cntctfrm_before"></div>
1788
- <br />
1789
- <label><input type="radio" id="cntctfrm_action_after_send_url" name="cntctfrm_action_after_send" value="0" <?php checked( '0', $cntctfrm_options['action_after_send'] ); ?> /> <?php _e( "Redirect to the page", 'contact-form-plugin' ); ?></label><br />
1790
- <label><input type="text" maxlength="250" name="cntctfrm_redirect_url" value="<?php echo $cntctfrm_options['redirect_url']; ?>" /> <span class="bws_info"><?php _e( "Url", 'contact-form-plugin' ); ?></span></label>
1791
- </td>
1792
- </tr>
1793
- </table>
1794
- <?php if ( ! $bws_hide_premium_options_check ) { ?>
1795
- <div class="bws_pro_version_bloc">
1796
- <div class="bws_pro_version_table_bloc">
1797
- <button type="submit" name="bws_hide_premium_options" class="notice-dismiss bws_hide_premium_options" title="<?php _e( 'Close', 'contact-form-plugin' ); ?>"></button>
1798
- <div class="bws_table_bg"></div>
1799
- <table class="form-table bws_pro_version">
1800
- <tr valign="top">
1801
- <th scope="row"><?php _e( "Add field 'Reply-To' to the email header", 'contact-form-plugin' ); ?></th>
1802
- <td colspan="2">
1803
- <input disabled="disabled" type="checkbox" id="cntctfrm_header_reply_to" name="cntctfrm_header_reply_to" value="1"> <span class="bws_info">(<?php _e( "Field 'Reply-To' will be initialized by user email", 'contact-form-plugin' ); ?>)</span>
1804
- </td>
1805
- </tr>
1806
- <tr valign="top">
1807
- <th scope="row"><?php _e( 'Auto Response', 'contact-form-plugin' ); ?></th>
1808
- <td colspan="2">
1809
- <input disabled="disabled" type="checkbox" value="1" name="cntctfrm_auto_response" checked="checked"/>
1810
- <textarea class="cntctfrm_auto_response_message" name="cntctfrm_auto_response_message">Dear %%NAME%%, Thank you for contacting us. We have received your message and will reply to it shortly. Regards, %%SITENAME%% Team.</textarea><br/>
1811
- <span class="bws_info" style="margin-left: 45px"><?php _e( "You can use %%NAME%% to display data from the email field and %%MESSAGE%% to display data from the Message field, as well as %%SITENAME%% to display blog name.", 'contact-form-plugin' ); ?></span>
1812
- </td>
1813
- </tr>
1814
- <tr valign="top">
1815
- <th scope="row" colspan="2">
1816
- * <?php _e( 'If you upgrade to Pro version all your settings will be saved.', 'contact-form-plugin' ); ?>
1817
- </th>
1818
- </tr>
1819
- </table>
1820
- </div>
1821
- <div class="bws_pro_version_tooltip">
1822
- <a class="bws_button" href="https://bestwebsoft.com/products/wordpress/plugins/contact-form/?k=697c5e74f39779ce77850e11dbe21962&amp;pn=77&amp;v=<?php echo $cntctfrm_plugin_info["Version"]; ?>&amp;wp_v=<?php echo $wp_version; ?>" target="_blank" title="Contact Form Pro">
1823
- <?php _e( 'Upgrade to Pro', 'contact-form-plugin' ); ?>
1824
- </a>
1825
- <div class="clear"></div>
1826
- </div>
1827
- </div>
1828
- <?php } ?>
1829
- </div>
1830
- <!-- end of 'Additional' settings -->
1831
- <input type="hidden" name="cntctfrm_form_submit" value="submit" />
1832
- <p class="submit">
1833
- <input id="bws-submit-button" type="submit" class="button-primary" value="<?php _e( 'Save Changes', 'contact-form-plugin' ); ?>" />
1834
- </p>
1835
- <?php wp_nonce_field( $plugin_basename, 'cntctfrm_nonce_name' ); ?>
1836
- </form>
1837
- <?php bws_form_restore_default_settings( $plugin_basename );
1838
- }
1839
- } elseif ( 'appearance' == $_GET['action'] ) {
1840
- if ( isset( $_REQUEST['bws_restore_default'] ) && check_admin_referer( $plugin_basename, 'bws_settings_nonce_name' ) ) {
1841
- bws_form_restore_default_confirm( $plugin_basename );
1842
- } else { ?>
1843
- <noscript>
1844
- <div class="error">
1845
- <p>
1846
- <strong><?php printf( __( "Please enable JavaScript to change '%s', '%s' options and for fields sorting.", 'contact-form-plugin' ), __( "Form layout", 'contact-form-plugin' ), __( "Submit position", 'contact-form-plugin' ) ); ?></strong>
1847
- </p>
1848
- </div>
1849
- </noscript>
1850
- <form id="cntctfrm_settings_form" class="bws_form" method="post" action="">
1851
- <div id="cntctfrm_appearance_wrap" class="cntctfrm_appearance_<?php echo is_rtl() ? 'rtl' : 'ltr'; ?>">
1852
- <div id="<?php echo is_rtl() ? 'cntctfrm_right_table' : 'cntctfrm_left_table'; ?>">
1853
- <table class="form-table" style="width:auto;">
1854
- <tr valign="top">
1855
- <th scope="row"><?php _e( "Form layout", 'contact-form-plugin' ); ?></th>
1856
- <td colspan="2">
1857
- <fieldset>
1858
- <input id="cntctfrm_layout_one_column" name="cntctfrm_layout" type="radio" value="1" <?php checked( (int) $cntctfrm_options['layout'] === 1 ); ?> />
1859
- <label for="cntctfrm_layout_one_column"><?php _e( 'One column', 'contact-form-plugin' ); ?></label>
1860
- <br/>
1861
- <input id="cntctfrm_layout_two_columns" name="cntctfrm_layout" type="radio" value="2" <?php checked( (int) $cntctfrm_options['layout'] === 2 ); ?> />
1862
- <label for="cntctfrm_layout_two_columns"><?php _e( 'Two columns', 'contact-form-plugin' ); ?></label>
1863
- </fieldset>
1864
- </td>
1865
- </tr>
1866
- <tr valign="top">
1867
- <th scope="row"><?php _e( "Submit position", 'contact-form-plugin' ); ?></th>
1868
- <td colspan="2">
1869
- <fieldset>
1870
- <input id="cntctfrm_submit_position_left" name="cntctfrm_submit_position" type="radio" value="left" <?php checked( 'left', $cntctfrm_options['submit_position'] ); ?> />
1871
- <label for="cntctfrm_submit_position_left"><?php _e( 'Left', 'contact-form-plugin' ); ?></label>
1872
- <br/>
1873
- <input id="cntctfrm_submit_position_right" name="cntctfrm_submit_position" type="radio" value="right" <?php checked( 'right', $cntctfrm_options['submit_position'] ); ?> />
1874
- <label for="cntctfrm_submit_position_right"><?php _e( 'Right', 'contact-form-plugin' ); ?></label>
1875
- </fieldset>
1876
- </td>
1877
- </tr>
1878
- <tr valign="top" id="cntctfrm_width">
1879
- <th scope="row"><?php _e( 'Width', 'contact-form-plugin' ); ?></th>
1880
- <td colspan="2">
1881
- <fieldset>
1882
- <label>
1883
- <input type="radio" name="cntctfrm_width_type" value="default" <?php checked( 'default', $cntctfrm_options['width']['type'] ); ?> /> <?php _e( 'Default', 'contact-form-plugin' ); ?>
1884
- </label>
1885
- <br />
1886
- <label>
1887
- <input type="radio" name="cntctfrm_width_type" value="custom" <?php checked( 'custom', $cntctfrm_options['width']['type'] ); ?> /> <?php _e( 'Custom', 'contact-form-plugin' ); ?>
1888
- </label>
1889
- </fieldset>
1890
- <div class="cntctfrm_width_params" <?php if ( 'custom' != $cntctfrm_options['width']['type'] ) echo 'style="display: none;"'; ?>>
1891
- <input type="number" name="cntctfrm_input_width_value" value="<?php echo $cntctfrm_options['width']['input_value']; ?>" min="1" max="9999" step="1">
1892
- <select name="cntctfrm_input_width_unit">
1893
- <option value="%" <?php selected( '%', $cntctfrm_options['width']['input_unit'] ); ?>>%</option>
1894
- <option value="px" <?php selected( 'px', $cntctfrm_options['width']['input_unit'] ); ?>><?php _e( 'px', 'contact-form-plugin' ) ?></option>
1895
- </select>
1896
- </div>
1897
- </td>
1898
- </tr>
1899
- </table>
1900
- <?php if ( ! $bws_hide_premium_options_check ) { ?>
1901
- <div class="bws_pro_version_bloc">
1902
- <div class="bws_pro_version_table_bloc">
1903
- <button type="submit" name="bws_hide_premium_options" class="notice-dismiss bws_hide_premium_options" title="<?php _e( 'Close', 'contact-form-plugin' ); ?>"></button>
1904
- <div class="bws_table_bg"></div>
1905
- <table class="form-table bws_pro_version">
1906
- <tr valign="top">
1907
- <th scope="row"><?php _e( "Form align", 'contact-form-plugin' ); ?></th>
1908
- <td colspan="2">
1909
- <fieldset>
1910
- <input disabled="disabled" name="cntctfrm_form_align" type="radio" value="left" checked="checked">
1911
- <label for="cntctfrm_form_align_left"><?php _e( 'Left', 'contact-form-plugin' ); ?></label>
1912
- <br/>
1913
- <input disabled="disabled" name="cntctfrm_form_align" type="radio" value="center">
1914
- <label for="cntctfrm_form_align_center"><?php _e( 'Center', 'contact-form-plugin' ); ?></label>
1915
- <br/>
1916
- <input disabled="disabled" name="cntctfrm_form_align" type="radio" value="right">
1917
- <label for="cntctfrm_form_align_right"><?php _e( 'Right', 'contact-form-plugin' ); ?></label>
1918
- </fieldset>
1919
- </td>
1920
- </tr>
1921
- <tr valign="top">
1922
- <th scope="row"><?php _e( "Labels position", 'contact-form-plugin' ); ?></th>
1923
- <td colspan="2">
1924
- <fieldset>
1925
- <input disabled="disabled" name="cntctfrm_labels_position" type="radio" value="top" checked="checked">
1926
- <label for="cntctfrm_labels_position_top"><?php _e( 'Top', 'contact-form-plugin' ); ?></label>
1927
- <br/>
1928
- <input disabled="disabled" name="cntctfrm_labels_position" type="radio" value="left">
1929
- <label for="cntctfrm_labels_position_left"><?php _e( 'Left', 'contact-form-plugin' ); ?></label>
1930
- <br/>
1931
- <input disabled="disabled" name="cntctfrm_labels_position" type="radio" value="right">
1932
- <label for="cntctfrm_labels_position_right"><?php _e( 'Right', 'contact-form-plugin' ); ?></label>
1933
- <br/>
1934
- <input disabled="disabled" name="cntctfrm_labels_position" type="radio" value="bottom">
1935
- <label for="cntctfrm_labels_position_bottom"><?php _e( 'Bottom', 'contact-form-plugin' ); ?></label>
1936
- </fieldset>
1937
- </td>
1938
- </tr>
1939
- <tr valign="top" id="cntctfrm_labels_align" class="cntctfrm_labels_align_show">
1940
- <th scope="row"><?php _e( "Labels align", 'contact-form-plugin' ); ?></th>
1941
- <td colspan="2">
1942
- <fieldset>
1943
- <input disabled="disabled" name="cntctfrm_labels_align" type="radio" value="left" checked="checked">
1944
- <label for="cntctfrm_labels_align_left"><?php _e( 'Left', 'contact-form-plugin' ); ?></label>
1945
- <br/>
1946
- <input disabled="disabled" name="cntctfrm_labels_align" type="radio" value="center">
1947
- <label for="cntctfrm_labels_align_center"><?php _e( 'Center', 'contact-form-plugin' ); ?></label>
1948
- <br/>
1949
- <input disabled="disabled" name="cntctfrm_labels_align" type="radio" value="right">
1950
- <label for="cntctfrm_labels_align_right"><?php _e( 'Right', 'contact-form-plugin' ); ?></label>
1951
- </fieldset>
1952
- </td>
1953
- </tr>
1954
- <tr valign="top">
1955
- <th scope="row"><?php _e( "Errors output", 'contact-form-plugin' ); ?></th>
1956
- <td colspan="2">
1957
- <select name="cntctfrm_error_displaying" disabled='disabled' style="max-width:400px; width:100%;">
1958
- <option value="labels"><?php _e( "Display error messages", 'contact-form-plugin' ); ?></option>
1959
- <option value="input_colors"><?php _e( "Color of the input field errors.", 'contact-form-plugin' ); ?></option>
1960
- <option value="both" selected="selected"><?php _e( "Display error messages & color of the input field errors", 'contact-form-plugin' ); ?></option>
1961
- </select>
1962
- </td>
1963
- </tr>
1964
- <tr valign="top">
1965
- <th scope="row"><?php _e( "Add placeholder to the input blocks", 'contact-form-plugin' ); ?></th>
1966
- <td colspan="2">
1967
- <input disabled='disabled' type="checkbox" name="cntctfrm_placeholder" value="1" />
1968
- </td>
1969
- </tr>
1970
- <tr valign="top">
1971
- <th scope="row"><?php _e( "Add tooltips", 'contact-form-plugin' ); ?></th>
1972
- <td colspan="2">
1973
- <div>
1974
- <input disabled='disabled' type="checkbox" name="cntctfrm_tooltip_display_name" value="1" />
1975
- <label for="cntctfrm_tooltip_display_name"><?php _e( "Name", 'contact-form-plugin' ); ?></label>
1976
- </div>
1977
- <?php if ( '1' == $cntctfrm_options['display_address_field'] ) { ?>
1978
- <div>
1979
- <input disabled='disabled' type="checkbox" name="cntctfrm_tooltip_display_address" value="1" />
1980
- <label for="cntctfrm_tooltip_display_address"><?php _e( "Address", 'contact-form-plugin' ); ?></label>
1981
- </div>
1982
- <?php } ?>
1983
- <div>
1984
- <input disabled='disabled' type="checkbox" name="cntctfrm_tooltip_display_email" value="1" />
1985
- <label for="cntctfrm_tooltip_display_email"><?php _e( "Email address", 'contact-form-plugin' ); ?></label>
1986
- </div>
1987
- <?php if ( '1' == $cntctfrm_options['display_phone_field'] ) { ?>
1988
- <div>
1989
- <input disabled='disabled' type="checkbox" name="cntctfrm_tooltip_display_phone" value="1" />
1990
- <label for="cntctfrm_tooltip_display_phone"><?php _e( "Phone Number", 'contact-form-plugin' ); ?></label>
1991
- </div>
1992
- <?php } ?>
1993
- <div>
1994
- <input disabled='disabled' type="checkbox" name="cntctfrm_tooltip_display_subject" value="1" />
1995
- <label for="cntctfrm_tooltip_display_subject"><?php _e( "Subject", 'contact-form-plugin' ); ?></label>
1996
- </div>
1997
- <div>
1998
- <input disabled='disabled' type="checkbox" name="cntctfrm_tooltip_display_message" value="1" />
1999
- <label for="cntctfrm_tooltip_display_message"><?php _e( "Message", 'contact-form-plugin' ); ?></label>
2000
- </div>
2001
- <?php if ( '1' == $cntctfrm_options['attachment_explanations'] ) { ?>
2002
- <div>
2003
- <input disabled='disabled' type="checkbox" name="cntctfrm_tooltip_display_attachment" value="1" />
2004
- <label for="cntctfrm_tooltip_display_attachment"><?php _e( "Attachment", 'contact-form-plugin' ); ?></label>
2005
- </div>
2006
- <?php } ?>
2007
- <div>
2008
- <input disabled='disabled' type="checkbox" name="cntctfrm_tooltip_display_captcha" value="1" />
2009
- <label for="cntctfrm_tooltip_display_captcha">Captcha by BestWebSoft</label>
2010
- </div>
2011
- </td>
2012
- </tr>
2013
- <tr valign="top">
2014
- <th colspan="3" scope="row">
2015
- <input disabled='disabled' type="checkbox" name="cntctfrm_style_options" value="1" checked="checked" />
2016
- <?php _e( "Style options", 'contact-form-plugin' ); ?>
2017
- </th>
2018
- </tr>
2019
- <tr valign="top" class="cntctfrm_style_block">
2020
- <th scope="row"><?php _e( "Text color", 'contact-form-plugin' ); ?></th>
2021
- <td colspan="2">
2022
- <div>
2023
- <input disabled='disabled' type="button" value="<?php _e( 'Default', 'contact-form-plugin' ); ?>" />
2024
- <input disabled='disabled' type="text" size="8" name="cntctfrm_label_color" value="" />
2025
- <div class="cntctfrm_label_block"><?php _e( 'Label text color', 'contact-form-plugin' ); ?></div>
2026
- </div>
2027
- <div>
2028
- <input disabled='disabled' type="button" value="<?php _e( 'Default', 'contact-form-plugin' ); ?>" />
2029
- <input disabled='disabled' type="text" size="8" name="cntctfrm_input_placeholder_color" value="" />
2030
- <div class="cntctfrm_label_block"><?php _e( "Placeholder color", 'contact-form-plugin' ); ?></div>
2031
- </div>
2032
- </td>
2033
- </tr>
2034
- <tr valign="top" class="cntctfrm_style_block">
2035
- <th scope="row"><?php _e( "Errors color", 'contact-form-plugin' ); ?></th>
2036
- <td colspan="2">
2037
- <div>
2038
- <input disabled='disabled' type="button" value="<?php _e( 'Default', 'contact-form-plugin' ); ?>" />
2039
- <input disabled='disabled' type="text" size="8" name="cntctfrm_error_color" value="" />
2040
- <div class="cntctfrm_label_block"><?php _e( 'Error text color', 'contact-form-plugin' ); ?></div>
2041
- </div>
2042
- <div>
2043
- <input disabled='disabled' type="button" value="<?php _e( 'Default', 'contact-form-plugin' ); ?>" />
2044
- <input disabled='disabled' type="text" size="8" name="cntctfrm_error_input_color" value="" />
2045
- <div class="cntctfrm_label_block"><?php _e( 'Background color of the input field errors', 'contact-form-plugin' ); ?></div>
2046
- </div>
2047
- <div>
2048
- <input disabled='disabled' type="button" value="<?php _e( 'Default', 'contact-form-plugin' ); ?>" />
2049
- <input disabled='disabled' type="text" size="8" name="cntctfrm_error_input_border_color" value="" />
2050
- <div class="cntctfrm_label_block"><?php _e( 'Border color of the input field errors', 'contact-form-plugin' ); ?></div>
2051
- </div>
2052
- <div>
2053
- <input disabled='disabled' type="button" id="" value="<?php _e( 'Default', 'contact-form-plugin' ); ?>" />
2054
- <input disabled='disabled' type="text" size="8" name="cntctfrm_input_placeholder_error_color" value=""/>
2055
- <div class="cntctfrm_label_block"><?php _e( "Placeholder color of the input field errors", 'contact-form-plugin' ); ?></div>
2056
- </div>
2057
- </td>
2058
- </tr>
2059
- <tr valign="top" class="cntctfrm_style_block">
2060
- <th scope="row"><?php _e( "Input fields", 'contact-form-plugin' ); ?></th>
2061
- <td colspan="2">
2062
- <div>
2063
- <input disabled='disabled' type="button" value="<?php _e( 'Default', 'contact-form-plugin' ); ?>" />
2064
- <input disabled='disabled' type="text" size="8" name="cntctfrm_input_background" value="" />
2065
- <div class="cntctfrm_label_block"><?php _e( "Input fields background color", 'contact-form-plugin' ); ?></div>
2066
- </div>
2067
- <div>
2068
- <input disabled='disabled' type="button" value="<?php _e( 'Default', 'contact-form-plugin' ); ?>" />
2069
- <input disabled='disabled' type="text" size="8" name="cntctfrm_input_color" value="" />
2070
- <div class="cntctfrm_label_block"><?php _e( "Text fields color", 'contact-form-plugin' ); ?></div>
2071
- </div>
2072
- <div>
2073
- <input disabled='disabled' size="8" type="text" value="" name="cntctfrm_border_input_width" />
2074
- <div class="cntctfrm_label_block"><?php _e( 'Border width in px, numbers only', 'contact-form-plugin' ); ?></div>
2075
- </div>
2076
- <div>
2077
- <input disabled='disabled' type="button" value="<?php _e( 'Default', 'contact-form-plugin' ); ?>" />
2078
- <input disabled='disabled' type="text" size="8" name="cntctfrm_border_input_color" value="" />
2079
- <div class="cntctfrm_label_block"><?php _e( 'Border color', 'contact-form-plugin' ); ?></div>
2080
- </div>
2081
- </td>
2082
- </tr>
2083
- <tr valign="top" class="cntctfrm_style_block">
2084
- <th scope="row"><?php _e( "Submit button", 'contact-form-plugin' ); ?></th>
2085
- <td colspan="2">
2086
- <div>
2087
- <input disabled='disabled' size="8" type="text" value="" name="cntctfrm_button_width" />
2088
- <div class="cntctfrm_label_block"><?php _e( 'Width in px, numbers only', 'contact-form-plugin' ); ?></div>
2089
- </div>
2090
- <div>
2091
- <input disabled='disabled' type="button" value="<?php _e( 'Default', 'contact-form-plugin' ); ?>" />
2092
- <input disabled='disabled' type="text" size="8" name="cntctfrm_button_backgroud" value="" />
2093
- <div class="cntctfrm_label_block"><?php _e( 'Button color', 'contact-form-plugin' ); ?></div>
2094
- </div>
2095
- <div>
2096
- <input disabled='disabled' type="button" value="<?php _e( 'Default', 'contact-form-plugin' ); ?>" />
2097
- <input disabled='disabled' type="text" size="8" name="cntctfrm_button_color" value="" />
2098
- <div class="cntctfrm_label_block"><?php _e( "Button text color", 'contact-form-plugin' ); ?></div>
2099
- </div>
2100
- <div>
2101
- <input disabled='disabled' type="button" value="<?php _e( 'Default', 'contact-form-plugin' ); ?>" />
2102
- <input disabled='disabled' type="text" size="8" name="cntctfrm_border_button_color" value="" />
2103
- <div class="cntctfrm_label_block"><?php _e( 'Border color', 'contact-form-plugin' ); ?></div>
2104
- </div>
2105
- </td>
2106
- </tr>
2107
- <tr valign="top">
2108
- <th scope="row" colspan="2">
2109
- * <?php _e( 'If you upgrade to Pro version all your settings will be saved.', 'contact-form-plugin' ); ?>
2110
- </th>
2111
- </tr>
2112
- </table>
2113
- </div>
2114
- <div class="bws_pro_version_tooltip">
2115
- <a class="bws_button" href="https://bestwebsoft.com/products/wordpress/plugins/contact-form/?k=697c5e74f39779ce77850e11dbe21962&amp;pn=77&amp;v=<?php echo $cntctfrm_plugin_info["Version"]; ?>&amp;wp_v=<?php echo $wp_version; ?>" target="_blank" title="Contact Form Pro">
2116
- <?php _e( 'Upgrade to Pro', 'contact-form-plugin' ); ?>
2117
- </a>
2118
- <div class="clear"></div>
2119
- </div>
2120
- </div>
2121
- <?php } ?>
2122
- </div>
2123
- <?php if ( $bws_hide_premium_options_check ) { ?>
2124
- <div class="clear"></div>
2125
- <?php } ?>
2126
- <div id="<?php echo is_rtl() ? 'cntctfrm_left_table' : 'cntctfrm_right_table' ?>">
2127
- <h3><?php _e( 'Contact Form | Preview', 'contact-form-plugin' ); ?></h3>
2128
- <span class="bws_info"><?php _e( 'Drag the necessary field to sort fields.', 'contact-form-plugin' ); ?></span>
2129
- <?php $classes = ( $cntctfrm_options['layout'] === 1 ) ? ' cntctfrm_one_column' : ' cntctfrm_two_columns';
2130
- $classes .= is_rtl() ? ' cntctfrm_rtl' : ' cntctfrm_ltr';
2131
- $classes .= ( 'custom' != $cntctfrm_options['width']['type'] ) ? ' cntctfrm_width_default' : ' cntctfrm_width_custom';
2132
- if ( 'custom' == $cntctfrm_options['width']['type'] ) { ?>
2133
- <style id="cntctfrm_custom_styles" type="text/css">
2134
- .cntctfrm_contact_form.cntctfrm_width_custom {
2135
- max-width: <?php printf( '%d%s', $cntctfrm_options['width']['input_value'], $cntctfrm_options['width']['input_unit'] ); ?>;
2136
- }
2137
- </style>
2138
- <?php } ?>
2139
- <div id="cntctfrm_contact_form" class="cntctfrm_contact_form<?php echo $classes; ?>">
2140
- <div class="cntctfrm_error_text hidden"><?php echo $cntctfrm_options['form_error']['default']; ?></div>
2141
- <div id="cntctfrm_wrap">
2142
- <?php $cntctfrm_ordered_fields = cntctfrm_get_ordered_fields();
2143
- for ( $i = 1; $i <= 2; $i++ ) {
2144
- $column = ( $i == 1 ) ? 'first_column' : 'second_column'; ?>
2145
- <ul id="cntctfrm_<?php echo $column; ?>" class="cntctfrm_column" <?php if ( $i == 2 && $cntctfrm_options['layout'] === 1 ) echo 'style="display: none;"'; ?>>
2146
- <?php foreach ( $cntctfrm_ordered_fields[ $column ] as $cntctfrm_field ) {
2147
- switch( $cntctfrm_field ) {
2148
- case 'cntctfrm_contact_name':
2149
- if ( 1 == $cntctfrm_options['display_name_field'] ) { ?>
2150
- <li class="cntctfrm_field_wrap">
2151
- <div class="cntctfrm_label cntctfrm_label_name">
2152
- <label for="cntctfrm_contact_name"><?php echo $cntctfrm_options['name_label']['default']; if ( 1 == $cntctfrm_options['required_name_field'] ) echo '<span class="required"> ' . $cntctfrm_options['required_symbol'] . '</span>'; ?></label>
2153
- </div>
2154
- <div class="cntctfrm_error_text hidden"><?php echo $cntctfrm_options['name_error']['default']; ?></div>
2155
- <div class="cntctfrm_input cntctfrm_input_name">
2156
- <div class="cntctfrm_drag_wrap"></div>
2157
- <input class="text bws_no_bind_notice" type="text" size="40" value="" name="cntctfrm_contact_name" id="cntctfrm_contact_name" />
2158
- </div>
2159
- </li>
2160
- <?php }
2161
- break;
2162
- case 'cntctfrm_contact_address':
2163
- if ( 1 == $cntctfrm_options['display_address_field'] ) { ?>
2164
- <li class="cntctfrm_field_wrap">
2165
- <div class="cntctfrm_label cntctfrm_label_address">
2166
- <label for="cntctfrm_contact_address"><?php echo $cntctfrm_options['address_label']['default']; if ( 1 == $cntctfrm_options['required_address_field'] ) echo '<span class="required"> ' . $cntctfrm_options['required_symbol'] . '</span>'; ?></label>
2167
- </div>
2168
- <?php if ( 1 == $cntctfrm_options['required_address_field'] ) { ?>
2169
- <div class="cntctfrm_error_text hidden"><?php echo $cntctfrm_options['address_error']['default']; ?></div>
2170
- <?php } ?>
2171
- <div class="cntctfrm_input cntctfrm_input_address">
2172
- <div class="cntctfrm_drag_wrap"></div>
2173
- <input class="text bws_no_bind_notice" type="text" size="40" value="" name="cntctfrm_contact_address" id="cntctfrm_contact_address" />
2174
- </div>
2175
- </li>
2176
- <?php }
2177
- break;
2178
- case 'cntctfrm_contact_email': ?>
2179
- <li class="cntctfrm_field_wrap">
2180
- <div class="cntctfrm_label cntctfrm_label_email">
2181
- <label for="cntctfrm_contact_email"><?php echo $cntctfrm_options['email_label']['default']; if ( 1 == $cntctfrm_options['required_email_field'] ) echo '<span class="required"> ' . $cntctfrm_options['required_symbol'] . '</span>'; ?></label>
2182
- </div>
2183
- <div class="cntctfrm_error_text hidden"><?php echo $cntctfrm_options['email_error']['default']; ?></div>
2184
- <div class="cntctfrm_input cntctfrm_input_email">
2185
- <div class="cntctfrm_drag_wrap"></div>
2186
- <input class="text bws_no_bind_notice" type="text" size="40" value="" name="cntctfrm_contact_email" id="cntctfrm_contact_email" />
2187
- </div>
2188
- </li>
2189
- <?php break;
2190
- case 'cntctfrm_contact_phone':
2191
- if ( 1 == $cntctfrm_options['display_phone_field'] ) { ?>
2192
- <li class="cntctfrm_field_wrap">
2193
- <div class="cntctfrm_label cntctfrm_label_phone">
2194
- <label for="cntctfrm_contact_phone"><?php echo $cntctfrm_options['phone_label']['default']; if ( 1 == $cntctfrm_options['required_phone_field'] ) echo '<span class="required"> ' . $cntctfrm_options['required_symbol'] . '</span>'; ?></label>
2195
- </div>
2196
- <div class="cntctfrm_error_text hidden"><?php echo $cntctfrm_options['phone_error']['default']; ?></div>
2197
- <div class="cntctfrm_input cntctfrm_input_phone">
2198
- <div class="cntctfrm_drag_wrap"></div>
2199
- <input class="text bws_no_bind_notice" type="text" size="40" value="" name="cntctfrm_contact_phone" id="cntctfrm_contact_phone" />
2200
- </div>
2201
- </li>
2202
- <?php }
2203
- break;
2204
- case 'cntctfrm_contact_subject': ?>
2205
- <li class="cntctfrm_field_wrap">
2206
- <div class="cntctfrm_label cntctfrm_label_subject">
2207
- <label for="cntctfrm_contact_subject"><?php echo $cntctfrm_options['subject_label']['default']; if ( 1 == $cntctfrm_options['required_subject_field'] ) echo '<span class="required"> ' . $cntctfrm_options['required_symbol'] . '</span>'; ?></label>
2208
- </div>
2209
- <div class="cntctfrm_error_text hidden"><?php echo $cntctfrm_options['subject_error']['default']; ?></div>
2210
- <div class="cntctfrm_input cntctfrm_input_subject">
2211
- <div class="cntctfrm_drag_wrap"></div>
2212
- <input class="text bws_no_bind_notice" type="text" size="40" value="" name="cntctfrm_contact_subject" id="cntctfrm_contact_subject" />
2213
- </div>
2214
- </li>
2215
- <?php break;
2216
- case 'cntctfrm_contact_message': ?>
2217
- <li class="cntctfrm_field_wrap">
2218
- <div class="cntctfrm_label cntctfrm_label_message">
2219
- <label for="cntctfrm_contact_message"><?php echo $cntctfrm_options['message_label']['default']; if ( 1 == $cntctfrm_options['required_message_field'] ) echo '<span class="required"> ' . $cntctfrm_options['required_symbol'] . '</span>'; ?></label>
2220
- </div>
2221
- <div class="cntctfrm_error_text hidden"><?php echo $cntctfrm_options['message_error']['default']; ?></div>
2222
- <div class="cntctfrm_input cntctfrm_input_message">
2223
- <div class="cntctfrm_drag_wrap"></div>
2224
- <textarea class="bws_no_bind_notice" rows="5" cols="30" name="cntctfrm_contact_message" id="cntctfrm_contact_message"></textarea>
2225
- </div>
2226
- </li>
2227
- <?php break;
2228
- case 'cntctfrm_contact_attachment':
2229
- if ( 1 == $cntctfrm_options['attachment'] ) { ?>
2230
- <li class="cntctfrm_field_wrap">
2231
- <div class="cntctfrm_label cntctfrm_label_attachment">
2232
- <label for="cntctfrm_contact_attachment"><?php echo $cntctfrm_options['attachment_label']['default']; ?></label>
2233
- </div>
2234
- <div class="cntctfrm_error_text hidden"><?php echo $cntctfrm_options['attachment_error']['default']; ?></div>
2235
- <div class="cntctfrm_input cntctfrm_input_attachment">
2236
- <div class="cntctfrm_drag_wrap"></div>
2237
- <input class="bws_no_bind_notice" type="file" name="cntctfrm_contact_attachment" id="cntctfrm_contact_attachment" />
2238
- <?php if ( 1 == $cntctfrm_options['attachment_explanations'] ) { ?>
2239
- <label class="cntctfrm_contact_attachment_extensions"><?php echo $cntctfrm_options['attachment_tooltip'][ 'default' ]; ?></label>
2240
- <?php } ?>
2241
- </div>
2242
- </li>
2243
- <?php }
2244
- break;
2245
- case 'cntctfrm_contact_send_copy':
2246
- if ( 1 == $cntctfrm_options['send_copy'] ) { ?>
2247
- <li class="cntctfrm_field_wrap">
2248
- <div class="cntctfrm_checkbox cntctfrm_checkbox_send_copy">
2249
- <div class="cntctfrm_drag_wrap"></div>
2250
- <input type="checkbox" value="1" name="cntctfrm_contact_send_copy" id="cntctfrm_contact_send_copy" class="bws_no_bind_notice" style="margin: 0;" />
2251
- <label for="cntctfrm_contact_send_copy"><?php echo $cntctfrm_options['send_copy_label']['default']; ?></label>
2252
- </div>
2253
- </li>
2254
- <?php }
2255
- break;
2256
- case 'cntctfrm_contact_gdpr':
2257
- if ( 1 == $cntctfrm_options['gdpr'] ) { ?>
2258
- <li class="cntctfrm_field_wrap">
2259
- <div class="cntctfrm_checkbox cntctfrm_checkbox_gdpr">
2260
- <div class="cntctfrm_drag_wrap"></div>
2261
- <input type="checkbox" value="" name="cntctfrm_contact_gdpr" id="cntctfrm_contact_gdpr" class="bws_no_bind_notice" style="margin: 0;" />
2262
- <label for="cntctfrm_contact_gdpr"><?php echo $cntctfrm_options['gdpr_label']['default']; ?></label>
2263
- <?php if( ! empty( $cntctfrm_options['gdpr_link'] ) ) { ?>
2264
- <a href="<?php $cntctfrm_options['gdpr_link'] ?>" target="_blank"><?php echo $cntctfrm_options['gdpr_text']; ?></a>
2265
- <?php } else { ?>
2266
- <span><?php echo $cntctfrm_options['gdpr_text']; ?></span>
2267
- <?php } ?>
2268
- </div>
2269
- </li>
2270
- <?php }
2271
- break;
2272
- case 'cntctfrm_subscribe':
2273
- if ( array_key_exists( 'subscriber', $cntctfrm_related_plugins ) ) {
2274
- if ( ( ! $contact_form_multi_active && ! empty( $cntctfrm_related_plugins['subscriber']['options']['contact_form'] ) ) || ! empty( $cntctfrm_options['display_subscribe'] ) ) { ?>
2275
- <li class="cntctfrm_field_wrap">
2276
- <div class="cntctfrm_checkbox cntctfrm_checkbox_subscribe">
2277
- <div class="cntctfrm_drag_wrap"></div>
2278
- <input type="hidden" value="1" name="cntctfrm_subscribe"/>
2279
- <?php $cntctfrm_sbscrbr_checkbox = apply_filters( 'sbscrbr_cntctfrm_checkbox_add', array() );
2280
- if ( isset( $cntctfrm_sbscrbr_checkbox['content'] ) ) {
2281
- echo $cntctfrm_sbscrbr_checkbox['content'];
2282
- } ?>
2283
- </div>
2284
- </li>
2285
- <?php }
2286
- }
2287
- break;
2288
- case 'cntctfrm_captcha':
2289
- if ( array_key_exists( 'captcha', $cntctfrm_related_plugins ) ||
2290
- array_key_exists( 'google-captcha', $cntctfrm_related_plugins ) ) {
2291
-
2292
- $display_captcha_label = '';
2293
-
2294
- if ( array_key_exists( 'captcha', $cntctfrm_related_plugins ) &&
2295
- ( ( ! $contact_form_multi_active && ! empty( $cntctfrm_related_plugins['captcha']['options']['forms']['bws_contact']['enable'] ) ) || ! empty( $cntctfrm_options['display_captcha'] ) ) ) {
2296
-
2297
- $display_captcha = true;
2298
-
2299
- $captcha_label = isset( $cntctfrm_related_plugins['captcha']['options']['title'] ) ? $cntctfrm_related_plugins['captcha']['options']['title'] : '';
2300
- if ( ! empty( $captcha_label ) ) {
2301
- $captcha_required_symbol = sprintf( ' <span class="required">%s</span>', ( isset( $cntctfrm_related_plugins['captcha']['options']['required_symbol'] ) ) ? $cntctfrm_related_plugins['captcha']['options']['required_symbol'] : '' );
2302
- $display_captcha_label = $captcha_label . $captcha_required_symbol;
2303
- }
2304
- }
2305
-
2306
- if ( array_key_exists( 'google-captcha', $cntctfrm_related_plugins ) &&
2307
- ( ( ! $contact_form_multi_active && ! empty( $cntctfrm_related_plugins['google-captcha']['options']['contact_form'] ) ) || ( $contact_form_multi_active && ! empty( $cntctfrm_options['display_google_captcha'] ) ) ) )
2308
- $display_google_captcha = true;
2309
-
2310
- if ( isset( $display_google_captcha ) || isset( $display_captcha ) ) { ?>
2311
- <li class="cntctfrm_field_wrap">
2312
- <div class="cntctfrm_label cntctfrm_label_captcha">
2313
- <label><?php echo $display_captcha_label; ?></label>
2314
- </div>
2315
- <div class="cntctfrm_input cntctfrm_input_captcha">
2316
- <?php if ( isset( $display_captcha ) ) { ?>
2317
- <img src="<?php echo plugins_url( 'images/cptch.png', __FILE__ ); ?>">
2318
- <input type="hidden" value="1" name="cntctfrm_captcha"/>
2319
- <?php }
2320
- if ( isset( $display_google_captcha ) ) { ?>
2321
- <div id="gglcptch_preview">
2322
- <img src="<?php echo plugins_url( 'images/google-captcha.png', __FILE__ ); ?>">
2323
- </div>
2324
- <?php } ?>
2325
- </div>
2326
- </li>
2327
- <?php }
2328
- }
2329
- break;
2330
- default:
2331
- break;
2332
- }
2333
- } ?>
2334
- </ul>
2335
- <?php } ?>
2336
- <div class="clear"></div>
2337
- </div>
2338
- <div class="cntctfrm_submit_wrap">
2339
- <?php $cntctfrm_direction = is_rtl() ? 'rtl' : 'ltr';
2340
- $submit_position_value = array(
2341
- 'ltr' => array(
2342
- 'left' => 1,
2343
- 'right' => 2
2344
- ),
2345
- 'rtl' => array(
2346
- 'left' => 2,
2347
- 'right' => 1
2348
- )
2349
- );
2350
- for ( $i = 1; $i <= 2; $i++ ) {
2351
- $column = ( $i == 1 ) ? 'first_column' : 'second_column'; ?>
2352
- <div id="cntctfrm_submit_<?php echo $column; ?>" class="cntctfrm_column">
2353
- <?php if ( $i == $submit_position_value[ $cntctfrm_direction ][ $cntctfrm_options['submit_position'] ] ) { ?>
2354
- <div class="cntctfrm_input cntctfrm_input_submit" style="<?php printf( 'text-align: %s !important;', $cntctfrm_options['submit_position'] ); ?>">
2355
- <input type="button" value="<?php echo $cntctfrm_options['submit_label']['default']; ?>" class="bws_no_bind_notice" style="cursor: pointer; margin: 0; text-align: center;" />
2356
- </div>
2357
- <?php } ?>
2358
- </div>
2359
- <?php } ?>
2360
- <div class="clear"></div>
2361
- </div>
2362
- </div>
2363
- <div id="cntctfrm_shortcode">
2364
- <div><?php _e( "If you would like to add the Contact Form to your website, just copy and paste this shortcode to your post or page or widget", 'contact-form-plugin' ); ?>:<br/></div>
2365
- <div id="cntctfrm_shortcode_code">
2366
- <span class="cntctfrm_shortcode">[bestwebsoft_contact_form<?php if ( $contact_form_multi_active ) printf( ' id=%s', $_SESSION['cntctfrmmlt_id_form'] ); ?>]</span>
2367
- </div>
2368
- </div>
2369
- </div>
2370
- <div class="clear"></div>
2371
- <input type="hidden" name="cntctfrm_form_appearance_submit" value="submit" />
2372
- <input type="hidden" id="cntctfrm_layout_first_column" name="cntctfrm_layout_first_column" value="<?php echo implode( ',', $cntctfrm_options['order_fields']['first_column'] ); ?>" />
2373
- <input type="hidden" id="cntctfrm_layout_second_column" name="cntctfrm_layout_second_column" value="<?php echo implode( ',', $cntctfrm_options['order_fields']['second_column'] ); ?>" />
2374
- <p class="submit">
2375
- <input id="bws-submit-button" type="submit" class="button-primary" value="<?php _e( 'Save Changes', 'contact-form-plugin' ); ?>" />
2376
- </p>
2377
- <?php wp_nonce_field( $plugin_basename, 'cntctfrm_nonce_name' ); ?>
2378
- </div>
2379
- </form>
2380
- <?php bws_form_restore_default_settings( $plugin_basename );
2381
- }
2382
- } elseif ( 'custom_code' == $_GET['action'] ) {
2383
- bws_custom_code_tab();
2384
- } elseif ( 'go_pro' == $_GET['action'] ) {
2385
- bws_go_pro_tab_show( $bws_hide_premium_options_check, $cntctfrm_plugin_info, $plugin_basename, 'contact_form.php', 'contact_form_pro.php', 'contact-form-pro/contact_form_pro.php', 'contact-form-plugin', '697c5e74f39779ce77850e11dbe21962', '77', isset( $go_pro_result['pro_plugin_is_activated'] ) );
2386
- }
2387
- bws_plugin_reviews_block( $cntctfrm_plugin_info['Name'], 'contact-form-plugin' ); ?>
2388
  </div>
2389
  <?php }
2390
  }
@@ -2499,8 +772,11 @@ if ( ! function_exists( 'cntctfrm_display_form' ) ) {
2499
  if ( isset( $cntctfrm_error_message['error_form'] ) && $cntctfrm_form_count == $form_submited ) {
2500
  $content .= '<div class="cntctfrm_error_text">' . $cntctfrm_error_message['error_form'] . '</div>';
2501
  }
2502
-
2503
- $cntctfrm_ordered_fields = cntctfrm_get_ordered_fields();
 
 
 
2504
 
2505
  for ( $i = 1; $i <= $cntctfrm_options['layout']; $i++ ) {
2506
 
@@ -3394,21 +1670,21 @@ if ( ! function_exists ( 'cntctfrm_sanitize_string' ) ) {
3394
 
3395
  if ( ! function_exists ( 'cntctfrm_admin_head' ) ) {
3396
  function cntctfrm_admin_head() {
 
 
3397
  if ( isset( $_REQUEST['page'] ) && ( 'contact_form.php' == $_REQUEST['page'] ) ) {
3398
  global $wp_version, $cntctfrm_plugin_info;
3399
 
3400
  wp_enqueue_style( 'cntctfrm_stylesheet', plugins_url( 'css/style.css', __FILE__ ), false, $cntctfrm_plugin_info["Version"] );
3401
 
3402
- if ( isset( $_GET['action'] ) && 'appearance' == $_GET['action'] ) {
3403
- wp_enqueue_style( 'cntctfrm_form_style', plugins_url( 'css/form_style.css', __FILE__ ), false, $cntctfrm_plugin_info["Version"] );
3404
- }
3405
 
3406
  $script_vars = array(
3407
  'cntctfrm_nonce' => wp_create_nonce( plugin_basename( __FILE__ ), 'cntctfrm_ajax_nonce_field' ),
3408
  'cntctfrm_confirm_text' => __( 'Are you sure that you want to delete this language data?', 'contact-form-plugin' )
3409
  );
3410
 
3411
- if ( wp_is_mobile() )
3412
  wp_enqueue_script( 'jquery-touch-punch' );
3413
 
3414
  wp_enqueue_script( 'cntctfrm_script', plugins_url( 'js/script.js', __FILE__ ), array( 'jquery', 'jquery-ui-sortable' ), $cntctfrm_plugin_info["Version"] );
@@ -3416,8 +1692,7 @@ if ( ! function_exists ( 'cntctfrm_admin_head' ) ) {
3416
 
3417
  bws_enqueue_settings_scripts();
3418
 
3419
- if ( isset( $_GET['action'] ) && 'custom_code' == $_GET['action'] )
3420
- bws_plugins_include_codemirror();
3421
 
3422
  require_once( dirname( __FILE__ ) . '/bws_menu/bws_include.php' );
3423
 
@@ -3621,11 +1896,10 @@ if ( ! function_exists ( 'cntctfrm_remove_language' ) ) {
3621
  update_option( 'cntctfrm_options', $cntctfrm_options );
3622
  }
3623
 
3624
- if ( $is_alax )
3625
  die();
3626
  }
3627
  }
3628
-
3629
  if ( ! function_exists ( 'cntctfrm_plugin_banner' ) ) {
3630
  function cntctfrm_plugin_banner() {
3631
  global $hook_suffix;
@@ -3882,4 +2156,4 @@ add_filter( 'bws_shortcode_button_content', 'cntctfrm_shortcode_button_content'
3882
  add_action( 'wp_ajax_cntctfrm_add_language', 'cntctfrm_add_language' );
3883
  add_action( 'wp_ajax_cntctfrm_remove_language', 'cntctfrm_remove_language' );
3884
 
3885
- add_action( 'admin_notices', 'cntctfrm_plugin_banner');
6
  Author: BestWebSoft
7
  Text Domain: contact-form-plugin
8
  Domain Path: /languages
9
+ Version: 4.1.2
10
  Author URI: https://bestwebsoft.com/
11
  License: GPLv2 or later
12
  */
13
 
14
+ /* @ Copyright 2019 BestWebSoft ( https://support.bestwebsoft.com )
15
 
16
  This program is free software; you can redistribute it and/or modify
17
  it under the terms of the GNU General Public License, version 2, as
33
  */
34
  if ( ! function_exists( 'cntctfrm_admin_menu' ) ) {
35
  function cntctfrm_admin_menu() {
36
+ global $submenu, $cntctfrm_plugin_info, $wp_version;
37
+
38
+ $cntctfrm_settings = add_menu_page(
39
+ __( 'Contact Form Settings', 'contact-form-plugin' ), /* $page_title */
40
+ 'Contact Form', /* $menu_title */
41
+ 'manage_options', /* $capability */
42
+ 'contact_form.php', /* $menu_slug */
43
+ 'cntctfrm_settings_page' /* $callable_function */
44
+ );
45
+ add_submenu_page(
46
+ 'contact_form.php',
47
+ __( 'Contact Form Settings', 'contact-form-plugin' ),
48
+ __( 'Settings', 'contact-form-plugin' ),
49
+ 'manage_options',
50
+ 'contact_form.php',
51
+ 'cntctfrm_settings_page'
52
+ );
53
+ add_submenu_page(
54
+ 'contact_form.php',
55
+ 'BWS Panel',
56
+ 'BWS Panel',
57
+ 'manage_options',
58
+ 'cntctfrm-bws-panel',
59
+ 'bws_add_menu_render'
60
+ );
61
+ if ( isset( $submenu['contact_form.php'] ) )
62
+ $submenu['contact_form.php'][] = array(
63
+ '<span style="color:#d86463"> ' . __( 'Upgrade to Pro', 'contact-form-plugin' ) . '</span>',
64
+ 'manage_options',
65
+ 'https://bestwebsoft.com/products/wordpress/plugins/contact-form/?k=697c5e74f39779ce77850e11dbe21962&pn=77&v=' . $cntctfrm_plugin_info["Version"] . '&wp_v=' . $wp_version );
66
+
67
+ add_action( "load-{$cntctfrm_settings}", 'cntctfrm_add_tabs' );
68
  }
69
  }
70
 
148
  if ( ! function_exists( 'cntctfrm_settings' ) ) {
149
  function cntctfrm_settings( $form_id = false ) {
150
  global $cntctfrm_options, $cntctfrm_plugin_info;
151
+ $db_version = '4.1.1';
152
 
153
  $contact_form_multi_active = cntctfrm_check_cf_multi_active();
154
 
172
  $cntctfrmmlt_options = get_option( 'cntctfrmmlt_options' );
173
 
174
  if ( ! isset( $cntctfrmmlt_options['plugin_option_version'] ) || $cntctfrmmlt_options['plugin_option_version'] != $cntctfrm_plugin_info["Version"] ) {
 
175
  if ( ! isset( $option_defaults ) )
176
  $option_defaults = cntctfrm_get_option_defaults();
177
 
194
  if ( isset( $_SESSION['cntctfrmmlt_id_form'] ) || $form_id ) {
195
  $id = ( $form_id ) ? $form_id : $_SESSION['cntctfrmmlt_id_form'];
196
  if ( $cntctfrm_options = get_option( 'cntctfrmmlt_options_' . $id ) ) {
197
+ $cntctfrm_options = get_option( 'cntctfrmmlt_options_' . $id );
198
  } else {
199
  if ( 'pro' == $contact_form_multi_active && $options_main = get_option( 'cntctfrmmltpr_options_main' ) ) {
200
  /**/
564
 
565
  /* Add settings page in admin area */
566
  if ( ! function_exists( 'cntctfrm_get_ordered_fields' ) ) {
567
+ function cntctfrm_get_ordered_fields( $id = false ) {
568
  global $cntctfrm_options, $cntctfrm_related_plugins;
569
+ $contact_form_multi_active = cntctfrm_check_cf_multi_active();
570
 
571
+ if ( ! isset( $cntctfrm_options['order_fields'] ) ) {
572
  cntctfrm_settings();
573
+ }
574
 
575
+ if ( empty( $cntctfrm_related_plugins ) ) {
576
  cntctfrm_related_plugins();
577
+ }
 
578
 
579
  if ( ! $contact_form_multi_active ) {
580
+ $cntctfrm_options = get_option( 'cntctfrm_options' );
581
  $display_captcha = $display_google_captcha = $display_subscriber = false;
582
 
583
  if ( array_key_exists( 'captcha', $cntctfrm_related_plugins ) )
589
  if ( array_key_exists( 'subscriber', $cntctfrm_related_plugins ) )
590
  $display_subscriber = ! empty( $cntctfrm_related_plugins['subscriber']['options']['contact_form'] );
591
  } else {
592
+ if ( empty( $id ) && isset( $_SESSION['cntctfrmmlt_id_form'] ) ) {
593
+ $id = $_SESSION['cntctfrmmlt_id_form'];
594
+ }
595
+ if ( ! empty( $id ) ) {
596
+ if ( get_option( 'cntctfrmmlt_options_' . $id ) ) {
597
+ $cntctfrm_options = get_option( 'cntctfrmmlt_options_' . $id );
598
+ } else {
599
+ $cntctfrm_options = get_option( 'cntctfrmmlt_options' );
600
+ }
601
+ } else {
602
+ $cntctfrm_options = get_option( 'cntctfrmmlt_options' );
603
+ }
604
  $display_captcha = ( isset( $cntctfrm_options['display_captcha'] ) && 1 == $cntctfrm_options['display_captcha'] ) ? true : false;
605
  $display_google_captcha = ( isset( $cntctfrm_options['display_google_captcha'] ) && 1 == $cntctfrm_options['display_google_captcha'] ) ? true : false;
606
  $display_subscriber = ( isset( $cntctfrm_options['display_subscribe'] ) && 1 == $cntctfrm_options['display_subscribe'] ) ? true : false;
638
  }
639
  }
640
 
641
+ if( ! function_exists( 'cntctfrm_settings_page' ) ) {
 
642
  function cntctfrm_settings_page() {
643
+ global $cntctfrm_plugin_info, $wp_version, $cntctfrmmlt_plugin_info;
644
+ require_once( dirname( __FILE__ ) . '/includes/class-cntctfrm-settings.php' );
645
+ $page = new Cntctfrm_Settings_Tabs( plugin_basename( __FILE__ ) ); ?>
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
646
  <div class="wrap">
647
+ <h1 class="cntctfrm-title"><?php _e( 'Contact Form Settings', 'contact-form-plugin' ); ?></h1>
648
+ <?php $contact_form_multi_active = cntctfrm_check_cf_multi_active();
649
+ if ( ! $contact_form_multi_active ) { ?>
650
+ <h3 class="nav-tab-wrapper cntctfrm_noborder">
651
+ <span class="nav-tab nav-tab-active"><?php _e( 'NEW_FORM', 'contact-form-plugin' ); ?></span>
652
+ <a id="cntctfrm_show_multi_notice" class="nav-tab" target="_new" href="https://bestwebsoft.com/products/wordpress/plugins/contact-form-multi/?k=57d8351b1c6b67d3e0600bd9a680c283&amp;pn=3&amp;v=<?php echo $cntctfrm_plugin_info["Version"]; ?>&amp;wp_v=<?php echo $wp_version; ?>" title="<?php _e( "If you want to create multiple contact forms, please install the Contact Form Multi plugin.", 'contact-form-plugin' ); ?>">+</a>
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
653
  </h3>
654
+ <?php } else { ?>
655
+ <h3 class="nav-tab-wrapper cntctfrm_noborder"></h3>
656
+ <?php if ( version_compare( $cntctfrmmlt_plugin_info['Version'] , '1.2.6', '<') ) { ?>
657
+ <div class="error below-h2"><p><strong><?php _e( "Contact Form plugin doesn't support your current version of Contact Form Multi plugin. Please update Contact Form Multi plugin to version 1.2.6 or higher.", 'contact-form-plugin' ); ?></strong></p></div>
658
+ <?php } ?>
659
  <?php }
660
+ $page->display_content(); ?>
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
661
  </div>
662
  <?php }
663
  }
772
  if ( isset( $cntctfrm_error_message['error_form'] ) && $cntctfrm_form_count == $form_submited ) {
773
  $content .= '<div class="cntctfrm_error_text">' . $cntctfrm_error_message['error_form'] . '</div>';
774
  }
775
+ if ( ! isset( $id ) ) {
776
+ $cntctfrm_ordered_fields = cntctfrm_get_ordered_fields();
777
+ } else {
778
+ $cntctfrm_ordered_fields = cntctfrm_get_ordered_fields( $id );
779
+ }
780
 
781
  for ( $i = 1; $i <= $cntctfrm_options['layout']; $i++ ) {
782
 
1670
 
1671
  if ( ! function_exists ( 'cntctfrm_admin_head' ) ) {
1672
  function cntctfrm_admin_head() {
1673
+ global $cntctfrm_plugin_info;
1674
+ wp_enqueue_style( 'cntctfrm_icon_stylesheet', plugins_url( 'css/icon_style.css', __FILE__ ), false, $cntctfrm_plugin_info["Version"] );
1675
  if ( isset( $_REQUEST['page'] ) && ( 'contact_form.php' == $_REQUEST['page'] ) ) {
1676
  global $wp_version, $cntctfrm_plugin_info;
1677
 
1678
  wp_enqueue_style( 'cntctfrm_stylesheet', plugins_url( 'css/style.css', __FILE__ ), false, $cntctfrm_plugin_info["Version"] );
1679
 
1680
+ wp_enqueue_style( 'cntctfrm_form_style', plugins_url( 'css/form_style.css', __FILE__ ), false, $cntctfrm_plugin_info["Version"] );
 
 
1681
 
1682
  $script_vars = array(
1683
  'cntctfrm_nonce' => wp_create_nonce( plugin_basename( __FILE__ ), 'cntctfrm_ajax_nonce_field' ),
1684
  'cntctfrm_confirm_text' => __( 'Are you sure that you want to delete this language data?', 'contact-form-plugin' )
1685
  );
1686
 
1687
+ if ( wp_is_mobile() )
1688
  wp_enqueue_script( 'jquery-touch-punch' );
1689
 
1690
  wp_enqueue_script( 'cntctfrm_script', plugins_url( 'js/script.js', __FILE__ ), array( 'jquery', 'jquery-ui-sortable' ), $cntctfrm_plugin_info["Version"] );
1692
 
1693
  bws_enqueue_settings_scripts();
1694
 
1695
+ bws_plugins_include_codemirror();
 
1696
 
1697
  require_once( dirname( __FILE__ ) . '/bws_menu/bws_include.php' );
1698
 
1896
  update_option( 'cntctfrm_options', $cntctfrm_options );
1897
  }
1898
 
1899
+ if ( $is_ajax )
1900
  die();
1901
  }
1902
  }
 
1903
  if ( ! function_exists ( 'cntctfrm_plugin_banner' ) ) {
1904
  function cntctfrm_plugin_banner() {
1905
  global $hook_suffix;
2156
  add_action( 'wp_ajax_cntctfrm_add_language', 'cntctfrm_add_language' );
2157
  add_action( 'wp_ajax_cntctfrm_remove_language', 'cntctfrm_remove_language' );
2158
 
2159
+ add_action( 'admin_notices', 'cntctfrm_plugin_banner');
css/icon_style.css ADDED
@@ -0,0 +1,8 @@
 
 
 
 
 
 
 
 
1
+ /* Pinterest icon */
2
+ .menu-top.toplevel_page_contact_form .wp-menu-image {
3
+ font-family: 'bwsicons' !important;
4
+ }
5
+ .menu-top.toplevel_page_contact_form .wp-menu-image:before {
6
+ content: "\e905";
7
+ font-family: 'bwsicons' !important;
8
+ }
css/style.css CHANGED
@@ -95,16 +95,16 @@
95
  padding: 5px 10px 5px 5px;
96
  }
97
  #cntctfrm_left_table {
98
- margin-right: 30px;
99
  }
100
  .cntctfrm_appearance_ltr #cntctfrm_left_table,
101
  .cntctfrm_appearance_rtl #cntctfrm_right_table {
102
- max-width: 670px;
103
  width: 100%;
104
  }
105
  .cntctfrm_appearance_ltr #cntctfrm_right_table,
106
  .cntctfrm_appearance_rtl #cntctfrm_left_table {
107
- max-width: 684px;
108
  width: 100%;
109
  }
110
  .cntctfrm_appearance_ltr #cntctfrm_left_table,
@@ -129,6 +129,9 @@
129
  border: 1px solid #DCDCDC;
130
  padding: 10px;
131
  }
 
 
 
132
  /* cntctfrm_settings_table */
133
  .cntctfrm_settings_table th,
134
  .cntctfrm_settings_table td {
@@ -158,6 +161,16 @@
158
  text-align: center;
159
  width: 25px;
160
  }
 
 
 
 
 
 
 
 
 
 
161
  @media screen and (max-width: 600px) {
162
  #cntctfrm_nav_container {
163
  border: none;
@@ -205,7 +218,7 @@ td.cntctfrm_td_top_align {
205
  max-width: 330px !important;
206
  }
207
  .cntctfrm_width_default.cntctfrm_two_columns {
208
- max-width: 674px !important;
209
  }
210
  .cntctfrm_width_default .cntctfrm_column {
211
  max-width: 330px !important;
@@ -274,18 +287,6 @@ td.cntctfrm_td_top_align {
274
  margin-left: 20px;
275
  z-index: -1;
276
  }
277
- .cntctfrm_pro_version_table_block.bws_pro_version_tooltip {
278
- border-left: none;
279
- border-top: none;
280
- border-color: #DFDFDF;
281
- }
282
- #cntctfrm_gdpr_link_options {
283
- border: 1px solid #e0e0e0;
284
- max-width: 410px;
285
- text-align: center;
286
- margin-bottom: 8px;
287
- padding-top: 3px;
288
- }
289
  @media screen and (max-width: 785px) {
290
  .cntctfrm_auto_response_message {
291
  margin-left: 0px;
@@ -315,3 +316,15 @@ td.cntctfrm_td_top_align {
315
  padding-right: 5px;
316
  }
317
  }
 
 
 
 
 
 
 
 
 
 
 
 
95
  padding: 5px 10px 5px 5px;
96
  }
97
  #cntctfrm_left_table {
98
+ margin-right: 10px;
99
  }
100
  .cntctfrm_appearance_ltr #cntctfrm_left_table,
101
  .cntctfrm_appearance_rtl #cntctfrm_right_table {
102
+ max-width: 700px;
103
  width: 100%;
104
  }
105
  .cntctfrm_appearance_ltr #cntctfrm_right_table,
106
  .cntctfrm_appearance_rtl #cntctfrm_left_table {
107
+ max-width: 700px;
108
  width: 100%;
109
  }
110
  .cntctfrm_appearance_ltr #cntctfrm_left_table,
129
  border: 1px solid #DCDCDC;
130
  padding: 10px;
131
  }
132
+ div.cntctfrm_info {
133
+ padding-left: 23px;
134
+ }
135
  /* cntctfrm_settings_table */
136
  .cntctfrm_settings_table th,
137
  .cntctfrm_settings_table td {
161
  text-align: center;
162
  width: 25px;
163
  }
164
+ .wp-picker-container {
165
+ margin-top: 5px;
166
+ }
167
+ #cntctfrm_gdpr_link_options {
168
+ border: 1px solid #e0e0e0;
169
+ max-width: 410px;
170
+ text-align: center;
171
+ margin-bottom: 8px;
172
+ padding-top: 3px;
173
+ }
174
  @media screen and (max-width: 600px) {
175
  #cntctfrm_nav_container {
176
  border: none;
218
  max-width: 330px !important;
219
  }
220
  .cntctfrm_width_default.cntctfrm_two_columns {
221
+ max-width: 700px !important;
222
  }
223
  .cntctfrm_width_default .cntctfrm_column {
224
  max-width: 330px !important;
287
  margin-left: 20px;
288
  z-index: -1;
289
  }
 
 
 
 
 
 
 
 
 
 
 
 
290
  @media screen and (max-width: 785px) {
291
  .cntctfrm_auto_response_message {
292
  margin-left: 0px;
316
  padding-right: 5px;
317
  }
318
  }
319
+ .cntctfrm_pro_version_table_block.bws_pro_version_tooltip {
320
+ border-left: none;
321
+ border-top: none;
322
+ border-color: #DFDFDF;
323
+ }
324
+ .nav-tab {
325
+ margin-left: 0 ! important;
326
+ margin-right: 5px ! important;
327
+ }
328
+ .wp-admin select {
329
+ vertical-align: top;
330
+ }
includes/class-cntctfrm-settings.php ADDED
@@ -0,0 +1,1782 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <?php
2
+ /**
3
+ * Appearances the content on the plugin settings page
4
+ */
5
+
6
+ require_once( dirname( dirname( __FILE__ ) ) . '/bws_menu/class-bws-settings.php' );
7
+
8
+ if ( ! class_exists( 'Cntctfrm_Settings_Tabs' ) ) {
9
+ class Cntctfrm_Settings_Tabs extends Bws_Settings_Tabs {
10
+ private $cfmlt_is_active;
11
+ private $first_form_id;
12
+ private $is_cfmltpr_pro = false;
13
+ private $multi_options_main;
14
+ /**
15
+ * Constructor.
16
+ *
17
+ * @access public
18
+ *
19
+ * @see Bws_Settings_Tabs::__construct() for more information on default arguments.
20
+ *
21
+ * @param string $plugin_basename
22
+ */
23
+ public function __construct( $plugin_basename ) {
24
+ global $cntctfrm_options, $cntctfrm_plugin_info, $contact_form_multi_active;
25
+
26
+ $tabs = array(
27
+ 'settings' => array( 'label' => __( 'Settings', 'contact-form-plugin' ) ),
28
+ 'additional_settings' => array( 'label' => __( 'Additional Settings', 'contact-form-plugin' ) ),
29
+ 'appearance' => array( 'label' => __( 'Appearance', 'contact-form-plugin' ) ),
30
+ 'misc' => array( 'label' => __( 'Misc', 'contact-form-plugin' ) ),
31
+ 'license' => array( 'label' => __( 'License Key', 'contact-form-plugin' ) ),
32
+ 'custom_code' => array( 'label' => __( 'Custom Code', 'contact-form-plugin' ) ),
33
+ );
34
+
35
+ $addons_check = array();
36
+
37
+ $all_plugins = get_plugins();
38
+ if ( 'pro' == cntctfrm_check_cf_multi_active() ) {
39
+ $addons_check['contact-form-multi-pro'] =
40
+ array(
41
+ 'name' => 'Contact Form Multi Pro',
42
+ 'slug' => 'contact-form-multi-pro',
43
+ 'basename' => 'contact-form-multi-pro/contact-form-multi-pro.php'
44
+ );
45
+ } else if( 'free' == cntctfrm_check_cf_multi_active() ) {
46
+ $addons_check['contact-form-multi'] =
47
+ array(
48
+ 'name' => 'Contact Form Multi',
49
+ 'slug' => 'contact-form-multi',
50
+ 'pro_slug' => 'contact-form-multi-pro',
51
+ 'basename' => 'contact-form-multi/contact-form-multi.php',
52
+ 'pro_basename' => 'contact-form-multi-pro/contact-form-multi-pro.php'
53
+ );
54
+ }
55
+
56
+ parent::__construct( array(
57
+ 'plugin_basename' => $plugin_basename,
58
+ 'plugins_info' => $cntctfrm_plugin_info,
59
+ 'prefix' => 'cntctfrm',
60
+ 'default_options' => cntctfrm_get_option_defaults(),
61
+ 'options' => $cntctfrm_options,
62
+ 'is_network_options' => is_network_admin(),
63
+ 'tabs' => $tabs,
64
+ 'wp_slug' => 'contact-form',
65
+ 'pro_page' => 'admin.php?page=contact_form_pro.php',
66
+ 'bws_license_plugin' => 'contact-form-pro/contact_form_pro.php',
67
+ 'licenses' => $addons_check
68
+ ) );
69
+
70
+ add_action( get_parent_class( $this ) . '_appearance_custom_messages', array( $this, 'appearance_custom_messages' ) );
71
+ add_action( get_parent_class( $this ) . '_display_metabox', array( $this, 'display_metabox' ) );
72
+ $this->cfmlt_is_active = cntctfrm_check_cf_multi_active();
73
+
74
+ $this->multi_options_main = get_option( 'cntctfrmmlt_options_main' );
75
+ if ( $this->multi_options_main ) {
76
+ $this->first_form_id = key( $this->multi_options_main['name_id_form'] );
77
+ }
78
+
79
+ if ( $this->is_multisite ) {
80
+ switch_to_blog( 1 );
81
+ $this->upload_dir = wp_upload_dir();
82
+ restore_current_blog();
83
+ } else {
84
+ $this->upload_dir = wp_upload_dir();
85
+ }
86
+ $bws_hide_premium_options_check = bws_hide_premium_options_check( get_option( 'cntctfrm_options' ) );
87
+ $contact_form_multi_active = cntctfrm_check_cf_multi_active();
88
+ }
89
+
90
+ /**
91
+ * Appearance custom error\message\notice
92
+ * @access public
93
+ * @param $save_results - array with error\message\notice
94
+ * @return void
95
+ */
96
+ public function appearance_custom_messages( $save_results ) {
97
+ global $cntctfrm_is_old_php;
98
+ $message = $error = ""; ?>
99
+ <noscript><div class="error below-h2"><p><strong><?php _e( "Please enable JavaScript in your browser.", 'contact-form-plugin' ); ?></strong></p></div></noscript>
100
+ <?php if ( $cntctfrm_is_old_php ) { ?>
101
+ <div class="error below-h2"><p><strong><?php printf( __( "Contact Form plugin requires PHP %s or higher. Please contact your hosting provider to upgrade PHP version.", 'contact-form-plugin' ), '5.4.0' ); ?></strong></p></div>
102
+ <?php } ?>
103
+
104
+ <div class="updated below-h2" <?php if ( empty( $message ) || "" != $error ) echo "style=\"appearance:none\""; ?>><p><strong><?php echo $message; ?></strong></p></div>
105
+ <div class="error below-h2" <?php if ( "" == $error ) echo "style=\"appearance:none\""; ?>><p><strong><?php echo $error; ?></strong></p></div>
106
+ <?php }
107
+
108
+ /**
109
+ * Save plugin options to the database
110
+ * @access public
111
+ * @param void
112
+ * @return array The action results
113
+ */
114
+ public function save_options() {
115
+ global $wpdb, $cntctfrm_countries, $cntctfrm_related_plugins, $contact_form_multi_active;
116
+ if ( empty( $cntctfrm_related_plugins ) )
117
+ cntctfrm_related_plugins();
118
+ $error = $message = $notice = '';
119
+ if ( ! function_exists( 'get_plugins' ) )
120
+ require_once( ABSPATH . 'wp-admin/includes/plugin.php' );
121
+
122
+ if ( isset( $_POST['bws_hide_premium_options'] ) ) {
123
+ $hide_result = bws_hide_premium_options( $this->options );
124
+ $this->options = $hide_result['options'];
125
+ }
126
+
127
+ if ( isset( $_POST['cntctfrm_width_type'] ) && in_array( $_POST['cntctfrm_width_type'], array( 'default', 'custom' ) ) ) {
128
+ $this->options['width']['type'] = $_POST['cntctfrm_width_type'];
129
+ if ( 'custom' == $_POST['cntctfrm_width_type'] ) {
130
+ $this->options['width']['input_value'] = ( isset( $_POST['cntctfrm_input_width_value'] ) ) ? (int) $_POST[ 'cntctfrm_input_width_value' ] : 100;
131
+ $this->options['width']['input_unit'] = ( isset( $_POST['cntctfrm_input_width_unit'] ) && in_array( $_POST['cntctfrm_input_width_unit'], array( '%', 'px' ) ) ) ? $_POST[ 'cntctfrm_input_width_unit' ] : '%';
132
+ }
133
+ }
134
+
135
+ $this->options['layout'] = ( isset( $_POST['cntctfrm_layout'] ) ) ? (int) $_POST['cntctfrm_layout'] : 1;
136
+
137
+ $layout_first_column_string = stripslashes( esc_html( $_POST['cntctfrm_layout_first_column'] ) );
138
+ $layout_first_column = explode( ',', $layout_first_column_string );
139
+ $layout_first_column = array_diff( $layout_first_column, array('') );
140
+
141
+ $layout_second_column_string = stripslashes( esc_html( $_POST['cntctfrm_layout_second_column'] ) );
142
+ $layout_second_column = explode( ',', $layout_second_column_string );
143
+ $layout_second_column = array_diff( $layout_second_column, array('') );
144
+
145
+ if ( 1 === $this->options['layout'] && ! empty( $layout_second_column ) ) {
146
+ $layout_first_column = array_merge( $layout_first_column, $layout_second_column );
147
+ $layout_second_column = array();
148
+ }
149
+
150
+ $this->options['submit_position'] = ( isset( $_POST['cntctfrm_submit_position'] ) ) ? stripslashes( esc_html( $_POST['cntctfrm_submit_position'] ) ) : 'left';
151
+ $this->options['order_fields']['first_column'] = $layout_first_column;
152
+ $this->options['order_fields']['second_column'] = $layout_second_column;
153
+
154
+ $this->options['user_email'] = $_POST['cntctfrm_user_email'];
155
+ $this->options['custom_email'] = trim( stripslashes( esc_html( $_POST['cntctfrm_custom_email'] ) ), " ," );
156
+ $this->options['select_email'] = $_POST['cntctfrm_select_email'];
157
+ $this->options['from_email'] = $_POST['cntctfrm_from_email'];
158
+ $this->options['custom_from_email'] = stripslashes( esc_html( $_POST['cntctfrm_custom_from_email'] ) );
159
+
160
+ $this->options['mail_method'] = $_POST['cntctfrm_mail_method'];
161
+ $this->options['from_field'] = stripslashes( esc_html( $_POST['cntctfrm_from_field'] ) );
162
+ $this->options['select_from_field'] = $_POST['cntctfrm_select_from_field'];
163
+ $this->options['display_name_field'] = isset( $_POST['cntctfrm_display_name_field'] ) ? 1 : 0;
164
+ $this->options['display_address_field'] = isset( $_POST['cntctfrm_display_address_field'] ) ? 1 : 0;
165
+ $this->options['display_phone_field'] = isset( $_POST['cntctfrm_display_phone_field'] ) ? 1 : 0;
166
+ $this->options['attachment'] = isset( $_POST['cntctfrm_attachment'] ) ? $_POST['cntctfrm_attachment'] : 0;
167
+ $this->options['attachment_explanations'] = isset( $_POST['cntctfrm_attachment_explanations'] ) ? $_POST['cntctfrm_attachment_explanations'] : 0;
168
+ $this->options['send_copy'] = isset( $_POST['cntctfrm_send_copy'] ) ? $_POST['cntctfrm_send_copy'] : 0;
169
+ $this->options['gdpr'] = isset( $_POST['cntctfrm_gdpr'] ) ? $_POST['cntctfrm_gdpr'] : 0;
170
+ $this->options['gdpr_link'] = isset( $_POST['cntctfrm_gdpr_link'] ) ? $_POST['cntctfrm_gdpr_link'] : '';
171
+ $this->options['gdpr_text'] = isset( $_POST['cntctfrm_gdpr_text'] ) ? $_POST['cntctfrm_gdpr_text'] : '';
172
+
173
+ $this->options['delete_attached_file'] = isset( $_POST['cntctfrm_delete_attached_file'] ) ? $_POST['cntctfrm_delete_attached_file'] : 0;
174
+
175
+ if ( isset( $_POST['cntctfrm_add_language_button'] ) )
176
+ cntctfrm_add_language();
177
+
178
+ if ( isset( $_POST['cntctfrm_delete_button'] ) )
179
+ cntctfrm_remove_language();
180
+ if ( $contact_form_multi_active ) {
181
+ $this->options['display_captcha'] = isset( $_POST['cntctfrm_display_captcha'] ) ? 1 : 0;
182
+ $this->options['display_google_captcha'] = isset( $_POST['cntctfrm_display_google_captcha'] ) ? 1 : 0;
183
+ $this->options['display_subscribe'] = isset( $_POST['cntctfrm_display_subscriber'] ) ? 1 : 0;
184
+ $this->options['save_email_to_db'] = isset( $_POST['cntctfrm_save_email_to_db'] ) ? 1 : 0;
185
+ } else {
186
+ /* Update related plugins options if Contact Form Multi is not active */
187
+ if ( array_key_exists( 'captcha', $cntctfrm_related_plugins ) ) {
188
+ $cntctfrm_related_plugins['captcha']['options']['forms']['bws_contact']['enable'] = isset( $_POST['cntctfrm_display_captcha'] ) ? 1 : 0;
189
+ update_option( 'cptch_options', $cntctfrm_related_plugins['captcha']['options'] );
190
+ }
191
+
192
+ if ( array_key_exists( 'google-captcha', $cntctfrm_related_plugins ) ) {
193
+ $cntctfrm_related_plugins['google-captcha']['options']['contact_form'] = isset( $_POST['cntctfrm_display_google_captcha'] ) ? 1 : 0;
194
+ update_option( 'gglcptch_options', $cntctfrm_related_plugins['google-captcha']['options'] );
195
+ }
196
+
197
+ if ( is_multisite() ) {
198
+ if ( array_key_exists( 'subscriber', $cntctfrm_related_plugins ) ) {
199
+ $cntctfrm_related_plugins['subscriber']['options']['contact_form'] = isset( $_POST['cntctfrm_display_subscriber'] ) ? 1 : 0;
200
+ update_site_option( 'sbscrbr_options', $cntctfrm_related_plugins['subscriber']['options'] );
201
+ }
202
+ } else {
203
+ if ( array_key_exists( 'subscriber', $cntctfrm_related_plugins ) ) {
204
+ $cntctfrm_related_plugins['subscriber']['options']['contact_form'] = isset( $_POST['cntctfrm_display_subscriber'] ) ? 1 : 0;
205
+ update_option( 'sbscrbr_options', $cntctfrm_related_plugins['subscriber']['options'] );
206
+ }
207
+ }
208
+
209
+ if ( array_key_exists( 'contact-form-to-db', $cntctfrm_related_plugins ) ) {
210
+ $cntctfrm_related_plugins['contact-form-to-db']['options']['save_messages_to_db'] = isset( $_POST['cntctfrm_save_email_to_db'] ) ? 1 : 0;
211
+ update_option( 'cntctfrmtdb_options', $cntctfrm_related_plugins['contact-form-to-db']['options'] );
212
+ }
213
+ }
214
+
215
+ if ( 0 == $this->options['display_name_field'] ) {
216
+ $this->options['required_name_field'] = 0;
217
+ } else {
218
+ $this->options['required_name_field'] = isset( $_POST['cntctfrm_required_name_field'] ) ? 1 : 0;
219
+ }
220
+ if ( 0 == $this->options['display_address_field'] ) {
221
+ $this->options['required_address_field'] = 0;
222
+ } else {
223
+ $this->options['required_address_field'] = isset( $_POST['cntctfrm_required_address_field'] ) ? 1 : 0;
224
+ }
225
+ $this->options['required_email_field'] = 1;
226
+ if ( 0 == $this->options['display_phone_field'] ) {
227
+ $this->options['required_phone_field'] = 0;
228
+ } else {
229
+ $this->options['required_phone_field'] = isset( $_POST['cntctfrm_required_phone_field'] ) ? 1 : 0;
230
+ }
231
+ $this->options['required_subject_field'] = isset( $_POST['cntctfrm_required_subject_field'] ) ? 1 : 0;
232
+ $this->options['required_message_field'] = isset( $_POST['cntctfrm_required_message_field'] ) ? 1 : 0;
233
+
234
+ $this->options['required_symbol'] = isset( $_POST['cntctfrm_required_symbol'] ) ? stripslashes( esc_html( $_POST['cntctfrm_required_symbol'] ) ) : '*';
235
+ $this->options['html_email'] = isset( $_POST['cntctfrm_html_email'] ) ? 1 : 0;
236
+ $this->options['display_add_info'] = isset( $_POST['cntctfrm_display_add_info'] ) ? 1 : 0;
237
+
238
+ $this->options['display_sent_from'] = isset( $_POST['cntctfrm_display_sent_from'] ) ? 1 : 0;
239
+ $this->options['display_date_time'] = isset( $_POST['cntctfrm_display_date_time'] ) ? 1 : 0;
240
+ $this->options['display_coming_from'] = isset( $_POST['cntctfrm_display_coming_from'] ) ? 1 : 0;
241
+ $this->options['display_user_agent'] = isset( $_POST['cntctfrm_display_user_agent'] ) ? 1 : 0;
242
+
243
+ if ( 0 == $this->options['display_sent_from'] && 0 == $this->options['display_date_time'] && 0 == $this->options['display_coming_from'] && 0 == $this->options['display_user_agent'] )
244
+ $this->options['display_add_info'] = 0;
245
+
246
+ if ( 0 == $this->options['display_add_info'] ) {
247
+ $this->options['display_sent_from'] = 1;
248
+ $this->options['display_date_time'] = 1;
249
+ $this->options['display_coming_from'] = 1;
250
+ $this->options['display_user_agent'] = 1;
251
+ }
252
+
253
+ $this->options['change_label'] = isset( $_POST['cntctfrm_change_label'] ) ? 1 : 0;
254
+ $this->options['change_label_in_email'] = isset( $_POST['cntctfrm_change_label_in_email'] ) ? 1 : 0;
255
+
256
+ if ( 1 == $this->options['change_label'] ) {
257
+ foreach ( $_POST['cntctfrm_name_label'] as $key => $val ) {
258
+ $this->options['name_label'][ $key ] = stripcslashes( htmlspecialchars( $_POST['cntctfrm_name_label'][ $key ] ) );
259
+ $this->options['address_label'][ $key ] = stripcslashes( htmlspecialchars( $_POST['cntctfrm_address_label'][ $key ] ) );
260
+ $this->options['email_label'][ $key ] = stripcslashes( htmlspecialchars( $_POST['cntctfrm_email_label'][ $key ] ) );
261
+ $this->options['phone_label'][ $key ] = stripcslashes( htmlspecialchars( $_POST['cntctfrm_phone_label'][ $key ] ) );
262
+ $this->options['subject_label'][ $key ] = stripcslashes( htmlspecialchars( $_POST['cntctfrm_subject_label'][ $key ] ) );
263
+ $this->options['message_label'][ $key ] = stripcslashes( htmlspecialchars( $_POST['cntctfrm_message_label'][ $key ] ) );
264
+ $this->options['attachment_label'][ $key ] = stripcslashes( htmlspecialchars( $_POST['cntctfrm_attachment_label'][ $key ] ) );
265
+ $this->options['attachment_tooltip'][ $key ] = stripcslashes( htmlspecialchars( $_POST['cntctfrm_attachment_tooltip'][ $key ] ) );
266
+ $this->options['send_copy_label'][ $key ] = stripcslashes( htmlspecialchars( $_POST['cntctfrm_send_copy_label'][ $key ] ) );
267
+ $this->options['gdpr_label'][ $key ] = stripcslashes( htmlspecialchars( $_POST['cntctfrm_gdpr_label'][ $key ] ) );
268
+ $this->options['thank_text'][ $key ] = stripcslashes( htmlspecialchars( $_POST['cntctfrm_thank_text'][ $key ] ) );
269
+ $this->options['submit_label'][ $key ] = stripcslashes( htmlspecialchars( $_POST['cntctfrm_submit_label'][ $key ] ) );
270
+ $this->options['name_error'][ $key ] = stripcslashes( htmlspecialchars( $_POST['cntctfrm_name_error'][ $key ] ) );
271
+ $this->options['address_error'][ $key ] = stripcslashes( htmlspecialchars( $_POST['cntctfrm_address_error'][ $key ] ) );
272
+ $this->options['email_error'][ $key ] = stripcslashes( htmlspecialchars( $_POST['cntctfrm_email_error'][ $key ] ) );
273
+ $this->options['phone_error'][ $key ] = stripcslashes( htmlspecialchars( $_POST['cntctfrm_phone_error'][ $key ] ) );
274
+ $this->options['subject_error'][ $key ] = stripcslashes( htmlspecialchars( $_POST['cntctfrm_subject_error'][ $key ] ) );
275
+ $this->options['message_error'][ $key ] = stripcslashes( htmlspecialchars( $_POST['cntctfrm_message_error'][ $key ] ) );
276
+ $this->options['attachment_error'][ $key ] = stripcslashes( htmlspecialchars( $_POST['cntctfrm_attachment_error'][ $key ] ) );
277
+ $this->options['attachment_upload_error'][ $key ] = stripcslashes( htmlspecialchars( $_POST['cntctfrm_attachment_upload_error'][ $key ] ) );
278
+ $this->options['attachment_move_error'][ $key ] = stripcslashes( htmlspecialchars( $_POST['cntctfrm_attachment_move_error'][ $key ] ) );
279
+ $this->options['attachment_size_error'][ $key ] = stripcslashes( htmlspecialchars( $_POST['cntctfrm_attachment_size_error'][ $key ] ) );
280
+ $this->options['captcha_error'][ $key ] = stripcslashes( htmlspecialchars( $_POST['cntctfrm_captcha_error'][ $key ] ) );
281
+ $this->options['form_error'][ $key ] = stripcslashes( htmlspecialchars( $_POST['cntctfrm_form_error'][ $key ] ) );
282
+ }
283
+ } else {
284
+ $option_defaults = cntctfrm_get_option_defaults();
285
+
286
+ if ( empty( $this->options['language'] ) ) {
287
+ $this->options['name_label'] = $option_defaults['name_label'];
288
+ $this->options['address_label'] = $option_defaults['address_label'];
289
+ $this->options['email_label'] = $option_defaults['email_label'];
290
+ $this->options['phone_label'] = $option_defaults['phone_label'];
291
+ $this->options['subject_label'] = $option_defaults['subject_label'];
292
+ $this->options['message_label'] = $option_defaults['message_label'];
293
+ $this->options['attachment_label'] = $option_defaults['attachment_label'];
294
+ $this->options['attachment_tooltip'] = $option_defaults['attachment_tooltip'];
295
+ $this->options['send_copy_label'] = $option_defaults['send_copy_label'];
296
+ $this->options['gdpr_label'] = $option_defaults['gdpr_label'];
297
+ $this->options['thank_text'] = $_POST['cntctfrm_thank_text'];
298
+ $this->options['submit_label'] = $option_defaults['submit_label'];
299
+ $this->options['name_error'] = $option_defaults['name_error'];
300
+ $this->options['address_error'] = $option_defaults['address_error'];
301
+ $this->options['email_error'] = $option_defaults['email_error'];
302
+ $this->options['phone_error'] = $option_defaults['phone_error'];
303
+ $this->options['subject_error'] = $option_defaults['subject_error'];
304
+ $this->options['message_error'] = $option_defaults['message_error'];
305
+ $this->options['attachment_error'] = $option_defaults['attachment_error'];
306
+ $this->options['attachment_upload_error'] = $option_defaults['attachment_upload_error'];
307
+ $this->options['attachment_move_error'] = $option_defaults['attachment_move_error'];
308
+ $this->options['attachment_size_error'] = $option_defaults['attachment_size_error'];
309
+ $this->options['captcha_error'] = $option_defaults['captcha_error'];
310
+ $this->options['form_error'] = $option_defaults['form_error'];
311
+ foreach ( $this->options['thank_text'] as $key => $val ) {
312
+ $this->options['thank_text'][ $key ] = stripcslashes( htmlspecialchars( $val ) );
313
+ }
314
+ } else {
315
+ $this->options['name_label']['default'] = $option_defaults['name_label']['default'];
316
+ $this->options['address_label']['default'] = $option_defaults['address_label']['default'];
317
+ $this->options['email_label']['default'] = $option_defaults['email_label']['default'];
318
+ $this->options['phone_label']['default'] = $option_defaults['phone_label']['default'];
319
+ $this->options['subject_label']['default'] = $option_defaults['subject_label']['default'];
320
+ $this->options['message_label']['default'] = $option_defaults['message_label']['default'];
321
+ $this->options['attachment_label']['default'] = $option_defaults['attachment_label']['default'];
322
+ $this->options['attachment_tooltip']['default'] = $option_defaults['attachment_tooltip']['default'];
323
+ $this->options['send_copy_label']['default'] = $option_defaults['send_copy_label']['default'];
324
+ $this->options['gdpr_label']['default'] = $option_defaults['gdpr_label']['default'];
325
+ $this->options['submit_label']['default'] = $option_defaults['submit_label']['default'];
326
+ $this->options['name_error']['default'] = $option_defaults['name_error']['default'];
327
+ $this->options['address_error']['default'] = $option_defaults['address_error']['default'];
328
+ $this->options['email_error']['default'] = $option_defaults['email_error']['default'];
329
+ $this->options['phone_error']['default'] = $option_defaults['phone_error']['default'];
330
+ $this->options['subject_error']['default'] = $option_defaults['subject_error']['default'];
331
+ $this->options['message_error']['default'] = $option_defaults['message_error']['default'];
332
+ $this->options['attachment_error']['default'] = $option_defaults['attachment_error']['default'];
333
+ $this->options['attachment_upload_error']['default'] = $option_defaults['attachment_upload_error']['default'];
334
+ $this->options['attachment_move_error']['default'] = $option_defaults['attachment_move_error']['default'];
335
+ $this->options['attachment_size_error']['default'] = $option_defaults['attachment_size_error']['default'];
336
+ $this->options['captcha_error']['default'] = $option_defaults['captcha_error']['default'];
337
+ $this->options['form_error']['default'] = $option_defaults['form_error']['default'];
338
+
339
+ foreach ( $_POST['cntctfrm_thank_text'] as $key => $val ) {
340
+ $this->options['thank_text'][ $key ] = stripcslashes( htmlspecialchars( $_POST['cntctfrm_thank_text'][ $key ] ) );
341
+ }
342
+ }
343
+ }
344
+ /* if 'FROM' field was changed */
345
+ if ( ( 'custom' == $this->options['from_email'] && 'custom' != $this->options['from_email'] ) ||
346
+ ( 'custom' == $this->options['from_email'] && $this->options['custom_from_email'] != $this->options['custom_from_email'] ) ) {
347
+ $notice = __( "Email 'FROM' field option was changed, which may cause email messages being moved to the spam folder or email delivery failures.", 'contact-form-plugin' );
348
+ }
349
+
350
+ $this->options['action_after_send'] = $_POST['cntctfrm_action_after_send'];
351
+ $this->options['redirect_url'] = esc_url( $_POST['cntctfrm_redirect_url'] );
352
+ $this->options = array_merge( $this->options, $this->options );
353
+
354
+ if ( 0 == $this->options['action_after_send']
355
+ && ( "" == trim( $this->options['redirect_url'] )
356
+ || ! filter_var( $this->options['redirect_url'], FILTER_VALIDATE_URL) ) ) {
357
+ $error .= __( "If the 'Redirect to page' option is selected then the URL field should be in the following format", 'contact-form-plugin' )." <code>http://your_site/your_page</code>";
358
+ $this->options['action_after_send'] = 1;
359
+ }
360
+ if ( 'user' == $this->options['select_email'] ) {
361
+ if ( false !== get_user_by( 'login', $this->options['user_email'] ) ) {
362
+ /**/
363
+ } else {
364
+ $error .= __( "Such user does not exist.", 'contact-form-plugin' );
365
+ }
366
+ } else {
367
+ if ( preg_match( '|,|', $this->options['custom_email'] ) ) {
368
+ $cntctfrm_custom_emails = explode( ',', $this->options['custom_email'] );
369
+ } else {
370
+ $cntctfrm_custom_emails[0] = $this->options['custom_email'];
371
+ }
372
+ foreach ( $cntctfrm_custom_emails as $cntctfrm_custom_email ) {
373
+ if ( $cntctfrm_custom_email == "" || ! is_email( trim( $cntctfrm_custom_email ) ) ) {
374
+ $error .= __( "Please enter a valid email address in the 'Use this email address' field.", 'contact-form-plugin' );
375
+ break;
376
+ }
377
+ }
378
+ }
379
+ if ( 'custom' == $this->options['from_email'] ) {
380
+ if ( "" == $this->options['custom_from_email']
381
+ || ! is_email( trim( $this->options['custom_from_email'] ) ) ) {
382
+ $error .= __( "Please enter a valid email address in the 'FROM' field.", 'contact-form-plugin' );
383
+ }
384
+ }
385
+
386
+ if ( '' == $error ) {
387
+ if ( 'pro' == $contact_form_multi_active && $options_main = get_option( 'cntctfrmmltpr_options_main' ) ) {
388
+ if ( $options_main['id_form'] !== $_SESSION['cntctfrmmlt_id_form'] )
389
+ add_option( 'cntctfrmmlt_options_' . $options_main['id_form'], $this->options );
390
+ else if ( $options_main['id_form'] == $_SESSION['cntctfrmmlt_id_form'] )
391
+ update_option( 'cntctfrmmlt_options_' . $options_main['id_form'], $this->options );
392
+ } elseif ( $contact_form_multi_active ) {
393
+ $options_main = get_option( 'cntctfrmmlt_options_main' );
394
+
395
+ if ( $options_main['id_form'] !== $_SESSION['cntctfrmmlt_id_form'] )
396
+ add_option( 'cntctfrmmlt_options_' . $options_main['id_form'], $this->options );
397
+ else if ( $options_main['id_form'] == $_SESSION['cntctfrmmlt_id_form'] )
398
+ update_option( 'cntctfrmmlt_options_' . $options_main['id_form'], $this->options );
399
+ } else {
400
+ update_option( 'cntctfrm_options', $this->options );
401
+ }
402
+ $message = __( "Settings saved.", 'contact-form-plugin' );
403
+ } else {
404
+ $error .= ' ' . __( "Settings are not saved.", 'contact-form-plugin' );
405
+ }
406
+
407
+ return compact( 'message', 'notice', 'error' );
408
+ }
409
+
410
+ public function tab_settings() {
411
+ global $wpdb, $wp_version, $cntctfrm_plugin_info, $bstwbsftwppdtplgns_options, $cntctfrm_countries, $cntctfrm_lang_codes, $cntctfrm_related_plugins, $bws_hide_premium_options_check, $contact_form_multi_active;
412
+ $display_pro_options = false;
413
+ if ( 'pro' == $this->cfmlt_is_active ) {
414
+ $display_pro_options = true;
415
+ }
416
+ if ( empty( $cntctfrm_related_plugins ) ) {
417
+ cntctfrm_related_plugins();
418
+ }
419
+ $userslogin = get_users( 'blog_id=' . $GLOBALS['blog_id'] . '&role=administrator' );
420
+ if ( ! function_exists( 'get_plugins' ) ) {
421
+ require_once( ABSPATH . 'wp-admin/includes/plugin.php' );
422
+ }
423
+
424
+ $all_plugins = get_plugins();?>
425
+ <h3 class="bws_tab_label"><?php _e( 'Contact Form Settings', 'contact-form-plugin' ); ?></h3>
426
+ <?php $this->help_phrase(); ?>
427
+ <hr>
428
+ <div>
429
+ <p><?php _e( "If you leave the fields empty, the messages will be sent to the email address specified during registration.", 'contact-form-plugin' ); ?></p>
430
+ <table class="form-table" style="width:auto;">
431
+ <tr valign="top">
432
+ <th scope="row"><?php _e( "The user's email address", 'contact-form-plugin' ); ?> </th>
433
+ <td colspan="2">
434
+ <label>
435
+ <input type="radio" id="cntctfrm_select_email_user" name="cntctfrm_select_email" value="user" <?php checked( 'user', $this->options['select_email'] ); ?> />
436
+ <select name="cntctfrm_user_email">
437
+ <option disabled><?php _e( "Select a username", 'contact-form-plugin' ); ?></option>
438
+ <?php foreach ( $userslogin as $key => $value ) {
439
+ if ( isset( $value->data ) ) {
440
+ if ( $value->data->user_email != '' ) { ?>
441
+ <option value="<?php echo $value->data->user_login; ?>" <?php selected( $value->data->user_login, $this->options['user_email'] ); ?>><?php echo $value->data->user_login; ?></option>
442
+ <?php }
443
+ } else {
444
+ if ( $value->user_email != '' ) { ?>
445
+ <option value="<?php echo $value->user_login; ?>" <?php selected( $value->user_login, $this->options['user_email'] ); ?>><?php echo $value->user_login; ?></option>
446
+ <?php }
447
+ }
448
+ } ?>
449
+ </select>
450
+ <div class="bws_info cntctfrm_info"><?php _e( 'Select a username of the person who should get the messages from the contact form.', 'contact-form-plugin' ); ?></div>
451
+ </label>
452
+ </td>
453
+ </tr>
454
+ <tr valign="top">
455
+ <th scope="row" style="width:200px;"><?php _e( "Use this email address", 'contact-form-plugin' ); ?></th>
456
+ <td colspan="2">
457
+ <label>
458
+ <input type="radio" id="cntctfrm_select_email_custom" name="cntctfrm_select_email" value="custom" <?php checked( 'custom', $this->options['select_email'] ); ?>/>
459
+ <input type="text" maxlength="500" name="cntctfrm_custom_email" value="<?php echo $this->options['custom_email']; ?>" />
460
+ <div class="bws_info cntctfrm_info"><?php _e( 'Enter the email address for receiving messages', 'contact-form-plugin' ); ?>.</div>
461
+ </label>
462
+ </td>
463
+ </tr>
464
+ </table>
465
+ <!--PRO baner-->
466
+ <?php if ( ! $this->hide_pro_tabs ) { ?>
467
+ <div class="bws_pro_version_bloc">
468
+ <div class="bws_pro_version_table_bloc">
469
+ <button type="submit" name="bws_hide_premium_options" class="notice-dismiss bws_hide_premium_options" title="<?php _e( 'Close', 'contact-form-plugin' ); ?>"></button>
470
+ <div class="bws_table_bg"></div>
471
+ <table class="form-table bws_pro_version">
472
+ <tr valign="top">
473
+ <th scope="row"><?php _e( "Add department selectbox to the contact form", 'contact-form-plugin' ); ?></th>
474
+ <td colspan="2">
475
+ <input type="radio" name="cntctfrm_select_email" value="departments" disabled="disabled" />
476
+ <div><img style="width:100%;" src="<?php echo plugins_url( '../images/pro_screen_1.png', __FILE__ ); ?>" alt="" /></div>
477
+ </td>
478
+ </tr>
479
+ </table>
480
+ </div>
481
+ <div class="bws_pro_version_tooltip">
482
+ <a class="bws_button" href="https://bestwebsoft.com/products/wordpress/plugins/contact-form/?k=697c5e74f39779ce77850e11dbe21962&amp;pn=77&amp;v=<?php echo $cntctfrm_plugin_info["Version"]; ?>&amp;wp_v=<?php echo $wp_version; ?>" target="_blank" title="Contact Form Pro">
483
+ <?php _e( 'Upgrade to Pro', 'contact-form-plugin' ); ?>
484
+ </a>
485
+ <div class="clear"></div>
486
+ </div>
487
+ </div>
488
+ <?php } ?>
489
+ <!--PRO banner-->
490
+ <table class="form-table" style="width:auto;">
491
+ <tr valign="top">
492
+ <th scope="row" style="width:200px;"><?php _e( "Save emails to the database", 'contact-form-plugin' ); ?> </th>
493
+ <td colspan="2">
494
+ <?php if ( array_key_exists( 'contact-form-to-db/contact_form_to_db.php', $all_plugins ) || array_key_exists( 'contact-form-to-db-pro/contact_form_to_db_pro.php', $all_plugins ) ) {
495
+ if ( array_key_exists( 'contact-form-to-db', $cntctfrm_related_plugins ) ) {
496
+ $save_emails = false;
497
+ if ( false == $this->cfmlt_is_active ) {
498
+ $save_emails = ! empty( $cntctfrm_related_plugins['contact-form-to-db']['options']['save_messages_to_db'] ) ? true : false;
499
+ } else {
500
+ $save_emails = ! empty( $this->options['save_email_to_db'] ) ? true : false;
501
+ }
502
+ if ( false == $this->cfmlt_is_active || ! empty( $cntctfrm_related_plugins['contact-form-to-db']['options']['save_messages_to_db'] ) ) { ?>
503
+ <label><input type="checkbox" name="cntctfrm_save_email_to_db" value="1" <?php checked( $save_emails ); ?> />
504
+ <span class="bws_info"> <?php _e( 'Using', 'contact-form-plugin' ); ?>
505
+ <a href="<?php echo self_admin_url( '/admin.php?page=' . $cntctfrm_related_plugins['contact-form-to-db']['settings_page'] ); ?>" target="_blank">Contact Form to DB by BestWebSoft</a>
506
+ </span>
507
+ </label>
508
+ <?php } else { ?>
509
+ <label><input type="checkbox" name="cntctfrm_save_email_to_db" value="1" disabled="disabled" <?php checked( $save_emails ); ?> /></label>
510
+ <span class="bws_info">&nbsp;<?php _e( 'Please activate the appropriate option on', 'contact-form-plugin' ) ?>&nbsp;
511
+ <?php printf( '<a href="%s" target="_blank"> Contact Form to DB %s</a>&nbsp;',
512
+ self_admin_url( '/admin.php?page=' . $cntctfrm_related_plugins['contact-form-to-db']['settings_page'] ),
513
+ __( 'settings page', 'contact-form-plugin' ) ); ?>
514
+ </span>
515
+ <?php }
516
+ } else { ?>
517
+ <label><input disabled="disabled" type="checkbox" name="cntctfrm_save_email_to_db" value="1" <?php checked( ! empty( $this->options["save_email_to_db"] ) ); ?> />
518
+ <span class="bws_info"><?php _e( 'Using', 'contact-form-plugin' ); ?> Contact Form to DB by BestWebSoft
519
+ <?php printf( '<a href="%s" target="_blank">%s Contact Form to DB</a>', self_admin_url( 'plugins.php' ), __( 'Activate', 'contact-form-plugin' ) ); ?>
520
+ </span>
521
+ </label>
522
+ <?php }
523
+ } else { ?>
524
+ <label><input disabled="disabled" type="checkbox" name="cntctfrm_save_email_to_db" value="1" />
525
+ <span class="bws_info"><?php _e( 'Using', 'contact-form-plugin' ); ?> Contact Form to DB by BestWebSoft
526
+ <?php printf( '<a href="https://bestwebsoft.com/products/wordpress/plugins/contact-form-to-db/?k=b3bfaac63a55128a35e3f6d0a20dd43d&amp;pn=3&amp;v=%s&amp;wp_v=%s"> %s Contact Form to DB</a>', $cntctfrm_plugin_info["Version"], $wp_version, __( 'Download', 'contact-form-plugin' ) ); ?>
527
+ </span>
528
+ </label>
529
+ <?php } ?>
530
+ </td>
531
+ </tr>
532
+ </table>
533
+ </div>
534
+ <?php }
535
+
536
+ public function tab_additional_settings() {
537
+ global $cntctfrm_related_plugins, $cntctfrm_lang_codes, $cntctfrm_plugin_info, $wp_version, $bws_hide_premium_options_check, $contact_form_multi_active;
538
+ $display_pro_options = false;
539
+ if ( 'pro' == $this->cfmlt_is_active ) {
540
+ $display_pro_options = true;
541
+ }
542
+ if ( empty( $cntctfrm_related_plugins ) ) {
543
+ cntctfrm_related_plugins();
544
+ }
545
+ $all_plugins = get_plugins();?>
546
+ <h3 class="bws_tab_label"><?php _e( 'Additional Settings', 'contact-form-plugin' ); ?></h3>
547
+ <?php $this->help_phrase(); ?>
548
+ <hr>
549
+ <table class="form-table" style="width:auto;">
550
+ <tr>
551
+ <th scope="row"><?php _e( 'Sending method', 'contact-form-plugin' ); ?></th>
552
+ <td colspan="2">
553
+ <fieldset>
554
+ <label>
555
+ <input type='radio' name='cntctfrm_mail_method' value='wp-mail' <?php checked( 'wp-mail', $this->options['mail_method'] ); ?> />
556
+ <?php _e( 'Wp-mail', 'contact-form-plugin' ); ?>
557
+ <div class="bws_info" style="padding-left: 20px;"><?php _e( 'You can use the Wordpress wp_mail function for mailing', 'contact-form-plugin' ); ?></div>
558
+ </label>
559
+ <br />
560
+ <label>
561
+ <input type='radio' name='cntctfrm_mail_method' value='mail' <?php checked( 'mail', $this->options['mail_method'] ); ?> />
562
+ <?php _e( 'Mail', 'contact-form-plugin' ); ?>
563
+ <div class="bws_info" style="padding-left: 20px;"><?php _e( 'You can use the PHP mail function for mailing', 'contact-form-plugin' ); ?></div>
564
+ </label>
565
+ </fieldset>
566
+ </td>
567
+ </tr>
568
+ <tr valign="top">
569
+ <th scope="row"><?php _e( "'FROM' field", 'contact-form-plugin' ); ?></th>
570
+ <td class="cntctfrm_td_name" style="vertical-align: top;">
571
+ <table id="cntctfrm_table_from_name">
572
+ <tbody>
573
+ <tr>
574
+ <td colspan="2"><?php _e( "Name", 'contact-form-plugin' ); ?></td>
575
+ </tr>
576
+ <tr>
577
+ <td class="cntctfrm_radio_from_name"><input type="radio" id="cntctfrm_select_from_custom_field" name="cntctfrm_select_from_field" value="custom" <?php checked( 'custom', $this->options['select_from_field'] ); ?> /></td>
578
+ <td><input type="text" name="cntctfrm_from_field" value="<?php echo stripslashes( $this->options['from_field'] ); ?>" size="18" maxlength="100" /></td>
579
+ </tr>
580
+ <tr>
581
+ <td class="cntctfrm_radio_from_name">
582
+ <input type="radio" id="cntctfrm_select_from_field" name="cntctfrm_select_from_field" value="user_name" <?php checked( 'user_name', $this->options['select_from_field'] ); ?>/>
583
+ </td>
584
+ <td>
585
+ <label for="cntctfrm_select_from_field"><?php _e( "User name", 'contact-form-plugin' ); ?></label>
586
+ <div class="bws_help_box dashicons dashicons-editor-help">
587
+ <div class="bws_hidden_help_text" style="min-width: 200px;"><?php echo __( "The name of the user who fills the form will be used in the field 'From'.", 'contact-form-plugin' ); ?></div>
588
+ </div>
589
+ </td>
590
+ </tr>
591
+ </tbody>
592
+ </table>
593
+ </td>
594
+ <td class="cntctfrm_td_email" style="vertical-align: top;">
595
+ <table id="cntctfrm_table_from_email">
596
+ <tbody>
597
+ <tr>
598
+ <td colspan="2"><?php _e( "Email", 'contact-form-plugin' ); ?></td>
599
+ </tr>
600
+ <tr>
601
+ <td class="cntctfrm_radio_from_email"><input type="radio" id="cntctfrm_from_custom_email" name="cntctfrm_from_email" value="custom" <?php checked( 'custom', $this->options['from_email'] ); ?> /></td>
602
+ <td><input type="text" name="cntctfrm_custom_from_email" value="<?php echo $this->options['custom_from_email']; ?>" maxlength="100" /></td>
603
+ </tr>
604
+ <tr>
605
+ <td class="cntctfrm_radio_from_email">
606
+ <input type="radio" id="cntctfrm_from_email" name="cntctfrm_from_email" value="user" <?php checked( 'user', $this->options['from_email'] ); ?> />
607
+ </td>
608
+ <td>
609
+ <label for="cntctfrm_from_email"><?php _e( "User email", 'contact-form-plugin' ); ?></label>
610
+ <div class="bws_help_box dashicons dashicons-editor-help">
611
+ <div class="bws_hidden_help_text" style="min-width: 200px;"><?php echo __( "The email address of the user who fills the form will be used in the field 'From'.", 'contact-form-plugin' ); ?></div>
612
+ </div>
613
+ </td>
614
+ </tr>
615
+ <tr>
616
+ <td>
617
+ </td>
618
+ <td>
619
+ <div>
620
+ <span class="bws_info"><?php _e( "If this option is changed, email messages may be moved to the spam folder or email delivery failures may occur.", 'contact-form-plugin' ); ?></span>
621
+ </div>
622
+ </td>
623
+ </tr>
624
+ </tbody>
625
+ </table>
626
+ </td>
627
+ </tr>
628
+ <tr valign="top">
629
+ <th scope="row"><?php _e( "Required symbol", 'contact-form-plugin' ); ?></th>
630
+ <td colspan="2">
631
+ <input type="text" id="cntctfrm_required_symbol" name="cntctfrm_required_symbol" value="<?php echo $this->options['required_symbol']; ?>" maxlength="100" />
632
+ </td>
633
+ </tr>
634
+ </table>
635
+ <br />
636
+ <table class="cntctfrm_settings_table" style="width: auto;">
637
+ <thead>
638
+ <tr valign="top">
639
+ <th scope="row"><?php _e( "Fields", 'contact-form-plugin' ); ?></th>
640
+ <th><?php _e( "Used", 'contact-form-plugin' ); ?></th>
641
+ <th><?php _e( "Required", 'contact-form-plugin' ); ?></th>
642
+ <?php if ( ! $this->hide_pro_tabs ) { ?>
643
+ <th><?php _e( "Visible", 'contact-form-plugin' ); ?></th>
644
+ <th><?php _e( "Disabled for editing", 'contact-form-plugin' ); ?></th>
645
+ <th scope="row" ><?php _e( "Field's default value", 'contact-form-plugin' ); ?></th>
646
+ <?php } ?>
647
+ </tr>
648
+ </thead>
649
+ <tbody>
650
+ <?php if ( ! $this->hide_pro_tabs ) { ?>
651
+ <tr valign="top" >
652
+ <td><?php _e( "Department selectbox", 'contact-form-plugin' ); ?></td>
653
+ <td class="bws_pro_version"></td>
654
+ <td class="bws_pro_version">
655
+ <label><input disabled="disabled" type="checkbox" name="cntctfrm_required_department_field" value="1" />
656
+ <span class="cntctfrm_mobile_title"><?php _e( "Required", 'contact-form-plugin' ); ?></span></label>
657
+ </td>
658
+ <td class="bws_pro_version"></td>
659
+ <td class="bws_pro_version"></td>
660
+ <td class="bws_pro_version"></td>
661
+ </tr>
662
+ <?php } ?>
663
+ <tr valign="top">
664
+ <td><?php _e( "Name", 'contact-form-plugin' ); ?></td>
665
+ <td>
666
+ <label><input type="checkbox" name="cntctfrm_display_name_field" value="1" <?php checked( '1', $this->options['display_name_field'] ); ?> />
667
+ <span class="cntctfrm_mobile_title"><?php _e( "Used", 'contact-form-plugin' ); ?></span></label>
668
+ </td>
669
+ <td>
670
+ <label><input type="checkbox" id="cntctfrm_required_name_field" name="cntctfrm_required_name_field" value="1" <?php checked( '1', $this->options['required_name_field'] ); ?> />
671
+ <span class="cntctfrm_mobile_title"><?php _e( "Required", 'contact-form-plugin' ); ?></span></label>
672
+ </td>
673
+ <?php if ( ! $this->hide_pro_tabs ) { ?>
674
+ <td class="bws_pro_version">
675
+ <label><input disabled="disabled" type="checkbox" name="cntctfrm_visible_name" value="1" checked="checked" />
676
+ <span class="cntctfrm_mobile_title"><?php _e( "Visible", 'contact-form-plugin' ); ?></span></label>
677
+ </td>
678
+ <td class="bws_pro_version">
679
+ <label><input disabled="disabled" type="checkbox" name="cntctfrm_disabled_name" value="1" />
680
+ <span class="cntctfrm_mobile_title"><?php _e( "Disabled for editing", 'contact-form-plugin' ); ?></span></label>
681
+ </td>
682
+ <td class="bws_pro_version">
683
+ <input disabled="disabled" type="checkbox" name="cntctfrm_default_name" value="1" />
684
+ <?php _e( "Use User's name as a default value if the user is logged in.", 'contact-form-plugin' ); ?><br />
685
+ <span class="bws_info" style="padding-left: 20px;"><?php _e( "'Visible' and 'Disabled for editing' options will be applied only to logged-in users.", 'contact-form-plugin' ); ?></span>
686
+ </td>
687
+ <?php } ?>
688
+ </tr>
689
+ <?php if ( ! $this->hide_pro_tabs ) { ?>
690
+ <tr valign="top">
691
+ <td><?php _e( "Location selectbox", 'contact-form-plugin' ); ?></td>
692
+ <td class="bws_pro_version">
693
+ <label><input disabled="disabled" type="checkbox" name="cntctfrm_display_selectbox" value="1" />
694
+ <span class="cntctfrm_mobile_title"><?php _e( "Used", 'contact-form-plugin' ); ?></span></label>
695
+ </td>
696
+ <td class="bws_pro_version">
697
+ <label><input disabled="disabled" type="checkbox" name="cntctfrm_required_selectbox" value="1" />
698
+ <span class="cntctfrm_mobile_title"><?php _e( "Required", 'contact-form-plugin' ); ?></span></label>
699
+ </td>
700
+ <td class="bws_pro_version"></td>
701
+ <td class="bws_pro_version"></td>
702
+ <td class="bws_pro_version">
703
+ <label>
704
+ <span><?php _e( "Field's default value", 'contact-form-plugin' ); ?></span>
705
+ <input disabled="disabled" type="file" name="cntctfrm_default_location" />
706
+ </label>
707
+ </td>
708
+ </tr>
709
+ <?php } ?>
710
+ <tr valign="top">
711
+ <td><?php _e( "Address", 'contact-form-plugin' ); ?></td>
712
+ <td>
713
+ <label><input type="checkbox" id="cntctfrm_display_address_field" name="cntctfrm_display_address_field" value="1" <?php checked( '1', $this->options['display_address_field'] ); ?> />
714
+ <span class="cntctfrm_mobile_title"><?php _e( "Used", 'contact-form-plugin' ); ?></span></label>
715
+ </td>
716
+ <td>
717
+ <label><input type="checkbox" id="cntctfrm_required_address_field" name="cntctfrm_required_address_field" value="1" <?php checked( '1', $this->options['required_address_field'] ); ?> />
718
+ <span class="cntctfrm_mobile_title"><?php _e( "Required", 'contact-form-plugin' ); ?></span></label>
719
+ </td>
720
+ <?php if ( ! $this->hide_pro_tabs ) { ?>
721
+ <td></td>
722
+ <td></td>
723
+ <td></td>
724
+ <?php } ?>
725
+ </tr>
726
+ <tr valign="top">
727
+ <td><?php _e( "Email Address", 'contact-form-plugin' ); ?></td>
728
+ <td></td>
729
+ <td></td>
730
+ <?php if ( ! $this->hide_pro_tabs ) { ?>
731
+ <td class="bws_pro_version">
732
+ <label><input disabled="disabled" type="checkbox" name="cntctfrm_visible_email" value="1" checked="checked" />
733
+ <span class="cntctfrm_mobile_title"><?php _e( "Visible", 'contact-form-plugin' ); ?></span></label>
734
+ </td>
735
+ <td class="bws_pro_version">
736
+ <label><input disabled="disabled" type="checkbox" name="cntctfrm_disabled_email" value="1" />
737
+ <span class="cntctfrm_mobile_title"><?php _e( "Disabled for editing", 'contact-form-plugin' ); ?></span></label>
738
+ </td>
739
+ <td class="bws_pro_version">
740
+ <input disabled="disabled" type="checkbox" name="cntctfrm_default_email" value="1" />
741
+ <?php _e( "Use User's email as a default value if the user is logged in.", 'contact-form-plugin' ); ?><br />
742
+ <span class="bws_info" style="padding-left: 20px;"><?php _e( "'Visible' and 'Disabled for editing' options will be applied only to logged-in users.", 'contact-form-plugin' ); ?></span>
743
+ </td>
744
+ <?php } ?>
745
+ </tr>
746
+ <tr valign="top">
747
+ <td><?php _e( "Phone number", 'contact-form-plugin' ); ?></td>
748
+ <td>
749
+ <label><input type="checkbox" id="cntctfrm_display_phone_field" name="cntctfrm_display_phone_field" value="1" <?php checked( '1', $this->options['display_phone_field'] ); ?> />
750
+ <span class="cntctfrm_mobile_title"><?php _e( "Used", 'contact-form-plugin' ); ?></span></label>
751
+ </td>
752
+ <td>
753
+ <label><input type="checkbox" id="cntctfrm_required_phone_field" name="cntctfrm_required_phone_field" value="1" <?php checked( '1', $this->options['required_phone_field'] ); ?> />
754
+ <span class="cntctfrm_mobile_title"><?php _e( "Required", 'contact-form-plugin' ); ?></span></label>
755
+ </td>
756
+ <?php if ( ! $this->hide_pro_tabs ) { ?>
757
+ <td></td>
758
+ <td></td>
759
+ <td></td>
760
+ <?php } ?>
761
+ </tr>
762
+ <tr valign="top">
763
+ <td><?php _e( "Subject", 'contact-form-plugin' ); ?></td>
764
+ <td></td>
765
+ <td>
766
+ <label><input type="checkbox" id="cntctfrm_required_subject_field" name="cntctfrm_required_subject_field" value="1" <?php checked( '1', $this->options['required_subject_field'] ); ?> />
767
+ <span class="cntctfrm_mobile_title"><?php _e( "Required", 'contact-form-plugin' ); ?></span></label>
768
+ </td>
769
+ <?php if ( ! $this->hide_pro_tabs ) { ?>
770
+ <td class="bws_pro_version">
771
+ <label><input class="subject" disabled="disabled" type="checkbox" name="cntctfrm_visible_subject" value="1" checked="checked" />
772
+ <span class="cntctfrm_mobile_title"><?php _e( "Visible", 'contact-form-plugin' ); ?></span></label>
773
+ </td>
774
+ <td class="bws_pro_version">
775
+ <label><input class="subject" disabled="disabled" type="checkbox" name="cntctfrm_disabled_subject" value="1" />
776
+ <span class="cntctfrm_mobile_title"><?php _e( "Disabled for editing", 'contact-form-plugin' ); ?></span></label>
777
+ </td>
778
+ <td class="bws_pro_version">
779
+ <label>
780
+ <span><?php _e( "Field's default value", 'contact-form-plugin' ); ?></span>
781
+ <input class="subject" disabled="disabled" type="text" name="cntctfrm_default_subject" value="" />
782
+ </label>
783
+ </td>
784
+ <?php } ?>
785
+ </tr>
786
+ <tr valign="top">
787
+ <td><?php _e( "Message", 'contact-form-plugin' ); ?></td>
788
+ <td></td>
789
+ <td>
790
+ <label><input type="checkbox" id="cntctfrm_required_message_field" name="cntctfrm_required_message_field" value="1" <?php checked( '1', $this->options['required_message_field'] ); ?> />
791
+ <span class="cntctfrm_mobile_title"><?php _e( "Required", 'contact-form-plugin' ); ?></span></label>
792
+ </td>
793
+ <?php if ( ! $this->hide_pro_tabs ) { ?>
794
+ <td class="bws_pro_version">
795
+ <label><input class="message" disabled="disabled" type="checkbox" name="cntctfrm_visible_message" value="1" checked="checked" />
796
+ <span class="cntctfrm_mobile_title"><?php _e( "Visible", 'contact-form-plugin' ); ?></span></label>
797
+ </td>
798
+ <td class="bws_pro_version">
799
+ <label><input class="message" disabled="disabled" disabled="disabled" type="checkbox" name="cntctfrm_disabled_message" value="1" />
800
+ <span class="cntctfrm_mobile_title"><?php _e( "Disabled for editing", 'contact-form-plugin' ); ?></span></label>
801
+ </td>
802
+ <td class="bws_pro_version">
803
+ <label>
804
+ <span><?php _e( "Field's default value", 'contact-form-plugin' ); ?></span>
805
+ <input class="message" disabled="disabled" type="text" name="cntctfrm_default_message" value="" />
806
+ </label>
807
+ </td>
808
+ <?php } ?>
809
+ </tr>
810
+ <?php if ( ! $this->hide_pro_tabs ) { ?>
811
+ <tr valign="top">
812
+ <td></td>
813
+ <td></td>
814
+ <td></td>
815
+ <td colspan="3" class="bws_pro_version_tooltip bws_pro_version cntctfrm_pro_version_table_block">
816
+ <a class="bws_button" href="https://bestwebsoft.com/products/wordpress/plugins/contact-form/?k=697c5e74f39779ce77850e11dbe21962&amp;pn=77&amp;v=<?php echo $cntctfrm_plugin_info["Version"]; ?>&amp;wp_v=<?php echo $wp_version; ?>" target="_blank" title="Contact Form Pro">
817
+ <?php _e( 'Upgrade to Pro', 'contact-form-plugin' ); ?>
818
+ </a>
819
+ <div class="clear"></div>
820
+ </td>
821
+ </tr>
822
+ <?php } ?>
823
+ <tr valign="top">
824
+ <td>
825
+ <?php _e( "Attachment block", 'contact-form-plugin' ); ?>
826
+ <div class="bws_help_box dashicons dashicons-editor-help">
827
+ <div class="bws_hidden_help_text" style="min-width: 200px;"><?php echo __( "Users can attach the following file formats", 'contact-form-plugin' ) . ": html, txt, css, gif, png, jpeg, jpg, tiff, bmp, ai, eps, ps, csv, rtf, pdf, doc, docx, xls, xlsx, zip, rar, wav, mp3, ppt, aar, sce"; ?></div>
828
+ </div>
829
+ </td>
830
+ <td>
831
+ <label><input type="checkbox" id="cntctfrm_attachment" name="cntctfrm_attachment" value="1" <?php checked( '1', $this->options['attachment'] ); ?> />
832
+ <span class="cntctfrm_mobile_title"><?php _e( "Used", 'contact-form-plugin' ); ?></span></label>
833
+ </td>
834
+ <td></td>
835
+ <?php if ( ! $this->hide_pro_tabs ) { ?>
836
+ <td></td>
837
+ <td></td>
838
+ <td></td>
839
+ <?php } ?>
840
+ </tr>
841
+ </tbody>
842
+ </table>
843
+ <table class="form-table" style="width:auto;">
844
+ <tr valign="top">
845
+ <th scope="row"><?php _e( "Add to the form", 'contact-form-plugin' ); ?></th>
846
+ <td colspan="3"><fieldset>
847
+ <div>
848
+ <label>
849
+ <input type="checkbox" id="cntctfrm_attachment_explanations" name="cntctfrm_attachment_explanations" value="1" <?php checked( '1' == $this->options['attachment_explanations'] && '1' == $this->options['attachment'] ); ?> />
850
+ <?php _e( "Tips below the Attachment", 'contact-form-plugin' ); ?>
851
+ </label>
852
+ <?php echo bws_add_help_box( '<img src="' . plugins_url( '../images/tooltip_attachment_tips.png', __FILE__ ) . '" />', 'bws-hide-for-mobile bws-auto-width' ); ?>
853
+ </div>
854
+ <div>
855
+ <label>
856
+ <input type="checkbox" id="cntctfrm_send_copy" name="cntctfrm_send_copy" value="1" <?php checked( '1', $this->options['send_copy'] ); ?> />
857
+ <?php _e( "'Send me a copy' block", 'contact-form-plugin' ); ?>
858
+ </label>
859
+ <?php echo bws_add_help_box( '<img src="' . plugins_url( '../images/tooltip_sendme_block.png', __FILE__ ) . '" />', 'bws-hide-for-mobile bws-auto-width' ); ?>
860
+ </div>
861
+ <div>
862
+ <label>
863
+ <input type="checkbox" id="cntctfrm_gdpr" name="cntctfrm_gdpr" value="1" <?php checked( '1', $this->options['gdpr'] ); ?> />
864
+ <?php _e( "GDPR Compliance", 'contact-form-plugin' ); ?>
865
+ </label>
866
+ </div>
867
+ <div id="cntctfrm_gdpr_link_options" >
868
+ <label class="cntctfrm_privacy_policy_text" >
869
+ <?php _e( "Link to Privacy Policy Page", 'contact-form-plugin' ); ?>
870
+ <input type="url" id="cntctfrm_gdpr_link" name="cntctfrm_gdpr_link" value="<?php echo $this->options['gdpr_link']; ?>" />
871
+ </label>
872
+ <label class="cntctfrm_privacy_policy_text" >
873
+ <?php _e( "Text for Privacy Policy Link", 'contact-form-plugin' ); ?>
874
+ <input type="text" id="cntctfrm_gdpr_text" name="cntctfrm_gdpr_text" value="<?php echo $this->options['gdpr_text']; ?>" />
875
+ </label>
876
+ </div>
877
+ <div style="clear: both;">
878
+ <?php if ( array_key_exists( 'subscriber/subscriber.php', $all_plugins ) || array_key_exists( 'subscriber-pro/subscriber-pro.php', $all_plugins ) ) {
879
+ if ( array_key_exists( 'subscriber', $cntctfrm_related_plugins ) ) {
880
+ if ( ! $contact_form_multi_active ) {
881
+ $display_subscriber = ! empty( $cntctfrm_related_plugins['subscriber']['options']['contact_form'] ) ? true : false;
882
+ } else {
883
+ $display_subscriber = ! empty( $this->options['display_subscribe'] ) ? true : false;
884
+ }
885
+ if ( ! $contact_form_multi_active || ! empty( $cntctfrm_related_plugins['subscriber']['options']['contact_form'] ) ) { ?>
886
+ <label><input type="checkbox" name="cntctfrm_display_subscriber" value="1" <?php checked( $display_subscriber ); ?> /> Subscriber by BestWebSoft</label>
887
+ <?php } else { ?>
888
+ <label><input type="checkbox" name="cntctfrm_display_subscriber" value="1" disabled="disabled" <?php checked( $display_subscriber ); ?> /> Subscriber by BestWebSoft</label>
889
+ <span class="bws_info">&nbsp;(<?php _e( 'Please activate the appropriate option on', 'contact-form-plugin' ) ?>&nbsp;
890
+ <?php printf( '<a href="%s" target="_blank"> Subscriber %s</a>&nbsp;)',
891
+ network_admin_url( '/admin.php?page=' . $cntctfrm_related_plugins['subscriber']['settings_page'] ),
892
+ __( 'settings page', 'contact-form-plugin' ) ); ?>
893
+ </span>
894
+ <?php }
895
+ } else { ?>
896
+ <label><input disabled="disabled" type="checkbox" name="cntctfrm_display_subscriber" value="1" <?php checked( isset( $this->options['display_subscribe'] ) && 1 == $this->options['display_subscribe'] ); ?> /> Subscriber by BestWebSoft</label>
897
+ <span class="bws_info">
898
+ <?php if ( ! is_multisite() ) {
899
+ printf( '<a href="%s" target="_blank"> %s Subscriber</a>', admin_url( 'plugins.php' ), __( 'Activate', 'contact-form-plugin' ) );
900
+ } else {
901
+ printf( '<a href="%s" target="_blank"> %s Subscriber</a>', network_admin_url( 'plugins.php' ), __( 'Activate for network', 'contact-form-plugin' ) );
902
+ } ?>
903
+ </span>
904
+ <?php }
905
+ } else { ?>
906
+ <label><input disabled="disabled" type="checkbox" name="cntctfrm_display_subscriber" value="1" /> Subscriber by BestWebSoft</label>
907
+ <span class="bws_info">
908
+ <?php printf( '<a href="https://bestwebsoft.com/products/wordpress/plugins/subscriber/?k=a9dfd3fa8513784c36622993b350b19e&amp;pn=77&amp;v=%s&amp;wp_v=%s" target="_blank">%s Subscriber</a>', $cntctfrm_plugin_info["Version"], $wp_version, __( 'Download', 'contact-form-plugin' ) ); ?>
909
+ </span>
910
+ <?php } ?>
911
+ </div>
912
+ <div style="clear: both;">
913
+ <?php if ( array_key_exists( 'captcha-bws/captcha-bws.php', $all_plugins ) || array_key_exists( 'captcha-plus/captcha-plus.php', $all_plugins ) || array_key_exists( 'captcha-pro/captcha_pro.php', $all_plugins ) ) {
914
+ if ( array_key_exists( 'captcha', $cntctfrm_related_plugins ) ) {
915
+ $captcha_enabled = ! empty( $cntctfrm_related_plugins['captcha']['options']['forms']['bws_contact']['enable'] ) ? true : false;
916
+ if ( ! $contact_form_multi_active ) {
917
+ $display_captcha = $captcha_enabled;
918
+ } else {
919
+ $display_captcha = ! empty( $this->options['display_captcha'] ) ? true : false;
920
+ }
921
+
922
+ if ( ! $contact_form_multi_active ) { ?>
923
+ <label><input type="checkbox" name="cntctfrm_display_captcha" value="1" <?php checked( $display_captcha ); ?> /> Captcha by BestWebSoft </label>
924
+ <?php } else {
925
+ if ( $captcha_enabled ) { ?>
926
+ <label><input type="checkbox" name="cntctfrm_display_captcha" value="1" <?php checked( $display_captcha ); ?> /> Captcha by BestWebSoft </label>
927
+ <?php } else { ?>
928
+ <label>
929
+ <input type="checkbox" name="cntctfrm_display_captcha" value="1" disabled="disabled" <?php checked( $display_captcha ); ?> /> Captcha by BestWebSoft
930
+ <span class="bws_info">&nbsp;(<?php _e( 'Please activate the appropriate option on', 'contact-form-plugin' ) ?>&nbsp;
931
+ <?php printf( '<a href="%s" target="_blank"> Captcha %s</a>&nbsp;)',
932
+ self_admin_url( '/admin.php?page=' . $cntctfrm_related_plugins['captcha']['settings_page'] ),
933
+ __( 'settings page', 'contact-form-plugin' ) ); ?>
934
+ </span>
935
+ </label>
936
+ <?php }
937
+ }
938
+ } else { ?>
939
+ <label><input disabled="disabled" type="checkbox" name="cntctfrm_display_captcha" value="1" /> Captcha by BestWebSoft</label>
940
+ <span class="bws_info">
941
+ <?php printf( '<a href="%s" target="_blank">%s Captcha</a>', self_admin_url( 'plugins.php' ), __( 'Activate', 'contact-form-plugin' ) ); ?>
942
+ </span>
943
+ <?php }
944
+ } else { ?>
945
+ <label><input disabled="disabled" type="checkbox" name="cntctfrm_display_captcha" value="1" /> Captcha by BestWebSoft</label>
946
+ <span class="bws_info">
947
+ <?php printf( '<a href="https://bestwebsoft.com/products/wordpress/plugins/captcha/?k=19ac1e9b23bea947cfc4a9b8e3326c03&amp;pn=77&amp;v=%s&amp;wp_v=%s" target="_blank">%s Captcha</a>', $cntctfrm_plugin_info["Version"], $wp_version, __( 'Download', 'contact-form-plugin' ) ) ?>
948
+ </span>
949
+ <?php } ?>
950
+ </div>
951
+ <div style="clear: both;">
952
+ <?php if ( array_key_exists( 'google-captcha/google-captcha.php', $all_plugins ) || array_key_exists( 'google-captcha-pro/google-captcha-pro.php', $all_plugins ) ) {
953
+ if ( array_key_exists( 'google-captcha', $cntctfrm_related_plugins ) ) {
954
+ if ( ! $contact_form_multi_active ) {
955
+ $display_google_captcha = ! empty( $cntctfrm_related_plugins['google-captcha']['options']['contact_form'] ) ? true : false;
956
+ } else {
957
+ $display_google_captcha = ! empty( $this->options['display_google_captcha'] ) ? true : false;
958
+ }
959
+
960
+ if ( ! $contact_form_multi_active || ! empty( $cntctfrm_related_plugins['google-captcha']['options']['contact_form'] ) ) { ?>
961
+ <label><input type="checkbox" name="cntctfrm_display_google_captcha" value="1" <?php checked( $display_google_captcha ); ?> /> Google Captcha (reCAPTCHA) by BestWebSoft</label>
962
+ <?php } else { ?>
963
+ <label>
964
+ <input type="checkbox" name="cntctfrm_display_google_captcha" value="1" disabled="disabled" <?php checked( $display_google_captcha ); ?> /> Google Captcha (reCAPTCHA) by BestWebSoft
965
+ <span class="bws_info">&nbsp;(<?php _e( 'Please activate the appropriate option on', 'contact-form-plugin' ) ?>&nbsp;
966
+ <?php printf( '<a href="%s" target="_blank"> Google Captcha %s</a>&nbsp;)',
967
+ self_admin_url( '/admin.php?page=' . $cntctfrm_related_plugins['google-captcha']['settings_page'] ),
968
+ __( 'settings page', 'contact-form-plugin' ) ); ?>
969
+ </span>
970
+ </label>
971
+ <?php }
972
+ } else { ?>
973
+ <label><input disabled="disabled" type="checkbox" name="cntctfrm_display_google_captcha" value="1" /> Google Captcha (reCAPTCHA) by BestWebSoft</label>
974
+ <span class="bws_info">
975
+ <?php printf( '<a href="%s" target="_blank">%s Google Captcha</a>', self_admin_url( 'plugins.php' ), __( 'Activate', 'contact-form-plugin' ) ); ?>
976
+ </span>
977
+ <?php }
978
+ } else { ?>
979
+ <label><input disabled="disabled" type="checkbox" name="cntctfrm_display_google_captcha" value="1" /> Google Captcha (reCAPTCHA) by BestWebSoft</label> <span class="bws_info">
980
+ <?php printf( '<a href="https://bestwebsoft.com/products/wordpress/plugins/google-captcha/?k=7d74e61dd1cea23d0e9bf2fa88b5b117&amp;pn=77&amp;v=%s&amp;wp_v=%s" target="_blank">%s Google Captcha</a>', $cntctfrm_plugin_info["Version"], $wp_version, __( 'Download', 'contact-form-plugin' ) ) ?>
981
+ </span>
982
+ <?php } ?>
983
+ </div>
984
+ <?php if ( ! $this->hide_pro_tabs ) { ?>
985
+ <div class="bws_pro_version_bloc">
986
+ <div class="bws_pro_version_table_bloc">
987
+ <button type="submit" name="bws_hide_premium_options" class="notice-dismiss bws_hide_premium_options" title="<?php _e( 'Close', 'contact-form-plugin' ); ?>"></button>
988
+ <div class="bws_table_bg"></div>
989
+ <div class="bws_pro_version">
990
+ <fieldset>
991
+ <label><input disabled="disabled" type="checkbox" value="1" name="cntctfrm_display_privacy_check"> <?php _e( 'Agreement checkbox', 'contact-form-plugin' ); ?> <span class="bws_info"><?php _e( 'Required checkbox for submitting the form', 'contact-form-plugin' ); ?></span></label><br />
992
+ <label><input disabled="disabled" type="checkbox" value="1" name="cntctfrm_display_optional_check"> <?php _e( 'Optional checkbox', 'contact-form-plugin' ); ?> <span class="bws_info"><?php _e( 'Optional checkbox, the results of which will be displayed in email', 'contact-form-plugin' ); ?></span></label>
993
+ </fieldset>
994
+ </div>
995
+ </div>
996
+ <div class="bws_pro_version_tooltip">
997
+ <a class="bws_button" href="https://bestwebsoft.com/products/wordpress/plugins/contact-form/?k=697c5e74f39779ce77850e11dbe21962&amp;pn=77&amp;v=<?php echo $cntctfrm_plugin_info["Version"]; ?>&amp;wp_v=<?php echo $wp_version; ?>" target="_blank" title="Contact Form Pro">
998
+ <?php _e( 'Upgrade to Pro', 'contact-form-plugin' ); ?>
999
+ </a>
1000
+ <div class="clear"></div>
1001
+ </div>
1002
+ </div>
1003
+ <?php } ?>
1004
+ </fieldset></td>
1005
+ </tr>
1006
+ <tr valign="top">
1007
+ <th scope="row"><?php _e( "Delete an attachment file from the server after the email is sent", 'contact-form-plugin' ); ?> </th>
1008
+ <td colspan="3">
1009
+ <input type="checkbox" id="cntctfrm_delete_attached_file" name="cntctfrm_delete_attached_file" value="1" <?php checked( '1', $this->options['delete_attached_file'] ); ?> />
1010
+ </td>
1011
+ </tr>
1012
+ <tr valign="top">
1013
+ <th scope="row"><?php _e( "Email in HTML format sending", 'contact-form-plugin' ); ?></th>
1014
+ <td colspan="2"><input type="checkbox" name="cntctfrm_html_email" value="1" <?php checked( '1', $this->options['html_email'] ); ?> /></td>
1015
+ </tr>
1016
+ <tr valign="top">
1017
+ <th scope="row"><?php _e( "Display additional info in the email", 'contact-form-plugin' ); ?></th>
1018
+ <td style="width:15px;" class="cntctfrm_td_top_align">
1019
+ <input type="checkbox" id="cntctfrm_display_add_info" name="cntctfrm_display_add_info" value="1" <?php checked( '1', $this->options['display_add_info'] ); ?> />
1020
+ </td>
1021
+ <td class="cntctfrm_display_add_info_block" <?php if ( '0' == $this->options['display_add_info'] ) echo 'style="display:none"'; ?>>
1022
+ <fieldset>
1023
+ <label><input type="checkbox" id="cntctfrm_display_sent_from" name="cntctfrm_display_sent_from" value="1" <?php checked( '1', $this->options['display_sent_from'] ); ?> /> <?php _e( "Sent from (IP address)", 'contact-form-plugin' ); ?></label> <label class="bws_info"><?php _e( "Example: Sent from (IP address): 127.0.0.1", 'contact-form-plugin' ); ?></label><br />
1024
+ <label><input type="checkbox" id="cntctfrm_display_date_time" name="cntctfrm_display_date_time" value="1" <?php checked( '1', $this->options['display_date_time'] ); ?> /> <?php _e( "Date/Time", 'contact-form-plugin' ); ?></label> <label class="bws_info"><?php _e( "Example: Date/Time: August 19, 2013 8:50 pm", 'contact-form-plugin' ); ?></label><br />
1025
+ <label><input type="checkbox" id="cntctfrm_display_coming_from" name="cntctfrm_display_coming_from" value="1" <?php checked( '1', $this->options['display_coming_from'] ); ?> /> <?php _e( "Sent from (referer)", 'contact-form-plugin' ); ?></label> <label class="bws_info"><?php _e( "Example: Sent from (referer): https://bestwebsoft.com/contacts/contact-us/", 'contact-form-plugin' ); ?></label><br />
1026
+ <label><input type="checkbox" id="cntctfrm_display_user_agent" name="cntctfrm_display_user_agent" value="1" <?php checked( '1', $this->options['display_user_agent'] ); ?> /> <?php _e( "Using (user agent)", 'contact-form-plugin' ); ?></label> <label class="bws_info"><?php _e( "Example: Using (user agent): Mozilla/5.0 (Windows NT 6.2; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/28.0.1500.95 Safari/537.36", 'contact-form-plugin' ); ?></label>
1027
+ </fieldset>
1028
+ </td>
1029
+ </tr>
1030
+ <tr valign="top">
1031
+ <th scope="row"><?php _e( "Language settings for the field names in the form", 'contact-form-plugin' ); ?></th>
1032
+ <td colspan="2">
1033
+ <select name="cntctfrm_languages" id="cntctfrm_languages" style="max-width: 300px;">
1034
+ <?php foreach ( $cntctfrm_lang_codes as $key => $val ) {
1035
+ if ( ! empty( $this->options['language'] ) && in_array( $key, $this->options['language'] ) )
1036
+ continue;
1037
+ echo '<option value="' . esc_attr( $key ) . '"> ' . esc_html( $val ) . '</option>';
1038
+ } ?>
1039
+ </select>
1040
+ <input type="submit" class="button-secondary" name="cntctfrm_add_language_button" id="cntctfrm_add_language_button" value="<?php _e( 'Add a language', 'contact-form-plugin' ); ?>" />
1041
+ </td>
1042
+ </tr>
1043
+ <tr valign="top">
1044
+ <th scope="row"><?php _e( "Change the names of the contact form fields and error messages", 'contact-form-plugin' ); ?></th>
1045
+ <td style="width:15px;" class="cntctfrm_td_top_align">
1046
+ <input type="checkbox" id="cntctfrm_change_label" name="cntctfrm_change_label" value="1" <?php checked( '1', $this->options['change_label'] ); ?> />
1047
+ </td>
1048
+ <td class="cntctfrm_change_label_block" <?php if ( '0' == $this->options['change_label'] ) echo 'style="display:none"'; ?>>
1049
+ <div class="cntctfrm_label_language_tab <?php echo ! isset( $_POST['cntctfrm_change_tab'] ) || 'default' == $_POST['cntctfrm_change_tab'] ? 'cntctfrm_active' : ''; ?>" id="cntctfrm_label_default"><?php _e( 'Default', 'contact-form-plugin' ); ?>
1050
+ <noscript>
1051
+ <input type="submit" class="cntctfrm_change_tab" value="default" name="cntctfrm_change_tab">
1052
+ </noscript>
1053
+ </div>
1054
+ <?php if ( ! empty( $this->options['language'] ) ) {
1055
+ foreach ( $this->options['language'] as $val ) {
1056
+ $active_tab_class = isset( $_POST["cntctfrm_change_tab"] ) && $val == $_POST["cntctfrm_change_tab"] ? "cntctfrm_active" : "";
1057
+ echo '<div class="cntctfrm_label_language_tab ' . $active_tab_class . '" id="cntctfrm_label_' . $val . '">' . $cntctfrm_lang_codes[ $val ] . ' <span class="cntctfrm_delete" rel="' . $val . '">X</span><noscript><input type="submit" class="cntctfrm_change_tab" value="' . $val . '" name="cntctfrm_change_tab"><span class="cntctfrm_del_button_wrap"><input type="submit" class="cntctfrm_delete_button" value="' . $val . '" name="cntctfrm_delete_button"></span></noscript></div>';
1058
+ }
1059
+ } ?>
1060
+ <div class="clear"></div>
1061
+ <div class="cntctfrm_language_tab cntctfrm_tab_default <?php echo ! isset( $_POST['cntctfrm_change_tab'] ) || 'default' == $_POST['cntctfrm_change_tab'] ? '' : 'hidden' ?>" style="padding: 1px 3px;">
1062
+ <div class="cntctfrm_language_tab_block_mini" style="display:none;"><?php _e( "click to expand/hide the list", 'contact-form-plugin' ); ?></div>
1063
+ <div class="cntctfrm_language_tab_block">
1064
+ <input type="text" maxlength="250" name="cntctfrm_name_label[default]" value="<?php echo $this->options['name_label']['default']; ?>" /> <span class="bws_info"><?php _e( "Name", 'contact-form-plugin' ); ?>:</span><br />
1065
+ <input type="text" maxlength="250" name="cntctfrm_address_label[default]" value="<?php echo $this->options['address_label']['default']; ?>" /> <span class="bws_info"><?php _e( "Address", 'contact-form-plugin' ); ?>:</span><br />
1066
+ <input type="text" maxlength="250" name="cntctfrm_email_label[default]" value="<?php echo $this->options['email_label']['default']; ?>" /> <span class="bws_info"><?php _e( "Email Address", 'contact-form-plugin' ); ?>:</span><br />
1067
+ <input type="text" maxlength="250" name="cntctfrm_phone_label[default]" value="<?php echo $this->options['phone_label']['default']; ?>" /> <span class="bws_info"><?php _e( "Phone number", 'contact-form-plugin' ); ?>:</span><br />
1068
+ <input type="text" maxlength="250" name="cntctfrm_subject_label[default]" value="<?php echo $this->options['subject_label']['default']; ?>" /> <span class="bws_info"><?php _e( "Subject", 'contact-form-plugin' ); ?>:</span><br />
1069
+ <input type="text" maxlength="250" name="cntctfrm_message_label[default]" value="<?php echo $this->options['message_label']['default']; ?>" /> <span class="bws_info"><?php _e( "Message", 'contact-form-plugin' ); ?>:</span><br />
1070
+ <input type="text" maxlength="250" name="cntctfrm_attachment_label[default]" value="<?php echo $this->options['attachment_label']['default']; ?>" /> <span class="bws_info"><?php _e( "Attachment", 'contact-form-plugin' ); ?>:</span><br />
1071
+ <input type="text" maxlength="250" name="cntctfrm_attachment_tooltip[default]" value="<?php echo $this->options['attachment_tooltip']['default']; ?>" /> <span class="bws_info"><?php _e( "Tips below the Attachment block", 'contact-form-plugin' ); ?></span><br />
1072
+ <input type="text" maxlength="250" name="cntctfrm_send_copy_label[default]" value="<?php echo $this->options['send_copy_label']['default']; ?>" /> <span class="bws_info"><?php _e( "Send me a copy", 'contact-form-plugin' ); ?></span><br />
1073
+ <input type="text" maxlength="250" name="cntctfrm_gdpr_label[default]" value="<?php echo $this->options['gdpr_label']['default']; ?>" /> <span class="bws_info"><?php _e( "I consent to having this site collect my personal data.", 'contact-form-plugin' ); ?></span><br />
1074
+ <input type="text" maxlength="250" name="cntctfrm_submit_label[default]" value="<?php echo $this->options['submit_label']['default']; ?>" /> <span class="bws_info"><?php _e( "Submit", 'contact-form-plugin' ); ?></span><br />
1075
+ <input type="text" maxlength="250" name="cntctfrm_name_error[default]" value="<?php echo $this->options['name_error']['default']; ?>" /> <span class="bws_info"><?php _e( "Error message for the Name field", 'contact-form-plugin' ); ?></span><br />
1076
+ <input type="text" maxlength="250" name="cntctfrm_address_error[default]" value="<?php echo $this->options['address_error']['default']; ?>" /> <span class="bws_info"><?php _e( "Error message for the Address field", 'contact-form-plugin' ); ?></span><br />
1077
+ <input type="text" maxlength="250" name="cntctfrm_email_error[default]" value="<?php echo $this->options['email_error']['default']; ?>" /> <span class="bws_info"><?php _e( "Error message for the Email field", 'contact-form-plugin' ); ?></span><br />
1078
+ <input type="text" maxlength="250" name="cntctfrm_phone_error[default]" value="<?php echo $this->options['phone_error']['default']; ?>" /> <span class="bws_info"><?php _e( "Error message for the Phone field", 'contact-form-plugin' ); ?></span><br />
1079
+ <input type="text" maxlength="250" name="cntctfrm_subject_error[default]" value="<?php echo $this->options['subject_error']['default']; ?>" /> <span class="bws_info"><?php _e( "Error message for the Subject field", 'contact-form-plugin' ); ?></span><br />
1080
+ <input type="text" maxlength="250" name="cntctfrm_message_error[default]" value="<?php echo $this->options['message_error']['default']; ?>" /> <span class="bws_info"><?php _e( "Error message for the Message field", 'contact-form-plugin' ); ?></span><br />
1081
+ <input type="text" maxlength="250" name="cntctfrm_attachment_error[default]" value="<?php echo $this->options['attachment_error']['default']; ?>" /> <span class="bws_info"><?php _e( "Error message about the file type for the Attachment field", 'contact-form-plugin' ); ?></span><br />
1082
+ <input type="text" maxlength="250" name="cntctfrm_attachment_upload_error[default]" value="<?php echo $this->options['attachment_upload_error']['default']; ?>" /> <span class="bws_info"><?php _e( "Error message while uploading a file for the Attachment field to the server", 'contact-form-plugin' ); ?></span><br />
1083
+ <input type="text" maxlength="250" name="cntctfrm_attachment_move_error[default]" value="<?php echo $this->options['attachment_move_error']['default']; ?>" /> <span class="bws_info"><?php _e( "Error message while moving the file for the Attachment field", 'contact-form-plugin' ); ?></span><br />
1084
+ <input type="text" maxlength="250" name="cntctfrm_attachment_size_error[default]" value="<?php echo $this->options['attachment_size_error']['default']; ?>" /> <span class="bws_info"><?php _e( "Error message when file size limit for the Attachment field is exceeded", 'contact-form-plugin' ); ?></span><br />
1085
+ <input type="text" maxlength="250" name="cntctfrm_captcha_error[default]" value="<?php echo $this->options['captcha_error']['default']; ?>" /> <span class="bws_info"><?php _e( "Error message for the Captcha field", 'contact-form-plugin' ); ?></span><br />
1086
+ <input type="text" maxlength="250" name="cntctfrm_form_error[default]" value="<?php echo $this->options['form_error']['default']; ?>" /> <span class="bws_info"><?php _e( "Error message for the whole form", 'contact-form-plugin' ); ?></span><br />
1087
+ </div>
1088
+ <?php if ( ! $contact_form_multi_active ) { ?>
1089
+ <span class="bws_info cntctfrm_shortcode_for_language" style="margin-left: 5px;"><?php _e( "Use shortcode", 'contact-form-plugin' ); ?> <span class="cntctfrm_shortcode">[bestwebsoft_contact_form]</span> <?php _e( "for this language", 'contact-form-plugin' ); ?></span>
1090
+ <?php } else { ?>
1091
+ <span class="bws_info cntctfrm_shortcode_for_language" style="margin-left: 5px;"><?php _e( "Use shortcode", 'contact-form-plugin' ); ?> <span class="cntctfrm_shortcode">[bestwebsoft_contact_form id=<?php echo $_SESSION['cntctfrmmlt_id_form']; ?>]</span> <?php _e( "for this language", 'contact-form-plugin' ); ?></span>
1092
+ <?php } ?>
1093
+ </div>
1094
+ <?php if ( ! empty( $this->options['language'] ) ) {
1095
+ foreach ( $this->options['language'] as $val ) {
1096
+ if ( ( isset( $_POST['cntctfrm_change_tab'] ) && $val != $_POST['cntctfrm_change_tab'] ) || ! isset($_POST['cntctfrm_change_tab'] ) )
1097
+ $labels_table_class = 'hidden';
1098
+ else
1099
+ $labels_table_class = ''; ?>
1100
+ <div class="cntctfrm_language_tab <?php echo $labels_table_class; ?> cntctfrm_tab_<?php echo $val; ?>">
1101
+ <div class="cntctfrm_language_tab_block_mini" style="display:none;"><?php _e( "click to expand/hide the list", 'contact-form-plugin' ); ?></div>
1102
+ <div class="cntctfrm_language_tab_block">
1103
+ <input type="text" maxlength="250" name="cntctfrm_name_label[<?php echo $val; ?>]" value="<?php if ( isset( $this->options['name_label'][ $val ] ) ) echo $this->options['name_label'][ $val ]; ?>" /> <span class="bws_info"><?php _e( "Name", 'contact-form-plugin' ); ?>:</span><br />
1104
+ <input type="text" maxlength="250" name="cntctfrm_address_label[<?php echo $val; ?>]" value="<?php if ( isset( $this->options['address_label'][ $val ] ) ) echo $this->options['address_label'][ $val ]; ?>" /> <span class="bws_info"><?php _e( "Address", 'contact-form-plugin' ); ?>:</span><br />
1105
+ <input type="text" maxlength="250" name="cntctfrm_email_label[<?php echo $val; ?>]" value="<?php if ( isset( $this->options['email_label'][ $val ] ) ) echo $this->options['email_label'][ $val ]; ?>" /> <span class="bws_info"><?php _e( "Email Address", 'contact-form-plugin' ); ?>:</span><br />
1106
+ <input type="text" maxlength="250" name="cntctfrm_phone_label[<?php echo $val; ?>]" value="<?php if ( isset( $this->options['phone_label'][ $val ] ) ) echo $this->options['phone_label'][ $val ]; ?>" /> <span class="bws_info"><?php _e( "Phone number", 'contact-form-plugin' ); ?>:</span><br />
1107
+ <input type="text" maxlength="250" name="cntctfrm_subject_label[<?php echo $val; ?>]" value="<?php if ( isset( $this->options['subject_label'][ $val ] ) ) echo $this->options['subject_label'][ $val ]; ?>" /> <span class="bws_info"><?php _e( "Subject", 'contact-form-plugin' ); ?>:</span><br />
1108
+ <input type="text" maxlength="250" name="cntctfrm_message_label[<?php echo $val; ?>]" value="<?php if ( isset( $this->options['message_label'][ $val ] ) ) echo $this->options['message_label'][ $val ]; ?>" /> <span class="bws_info"><?php _e( "Message", 'contact-form-plugin' ); ?>:</span><br />
1109
+ <input type="text" maxlength="250" name="cntctfrm_attachment_label[<?php echo $val; ?>]" value="<?php if ( isset( $this->options['attachment_label'][ $val ] ) ) echo $this->options['attachment_label'][ $val ]; ?>" /> <span class="bws_info"><?php _e( "Attachment", 'contact-form-plugin' ); ?>:</span><br />
1110
+ <input type="text" maxlength="250" name="cntctfrm_attachment_tooltip[<?php echo $val; ?>]" value="<?php if ( isset( $this->options['attachment_tooltip'][ $val ] ) ) echo $this->options['attachment_tooltip'][ $val ]; ?>" /> <span class="bws_info"><?php _e( "Tips below the Attachment block", 'contact-form-plugin' ); ?></span><br />
1111
+ <input type="text" maxlength="250" name="cntctfrm_send_copy_label[<?php echo $val; ?>]" value="<?php if ( isset( $this->options['send_copy_label'][ $val ] ) ) echo $this->options['send_copy_label'][ $val ]; ?>" /> <span class="bws_info"><?php _e( "Send me a copy", 'contact-form-plugin' ); ?></span><br />
1112
+ <input type="text" maxlength="250" name="cntctfrm_gdpr_label[<?php echo $val; ?>]" value="<?php if ( isset( $this->options['gdpr_label'][ $val ] ) ) echo $this->options['gdpr_label'][ $val ]; ?>" /> <span class="bws_info"><?php _e( "I consent to having this site collect my personal data.", 'contact-form-plugin' ); ?></span><br />
1113
+ <input type="text" maxlength="250" name="cntctfrm_submit_label[<?php echo $val; ?>]" value="<?php if ( isset( $this->options['submit_label'][ $val ] ) ) echo $this->options['submit_label'][ $val ]; ?>" /> <span class="bws_info"><?php _e( "Submit", 'contact-form-plugin' ); ?></span><br />
1114
+ <input type="text" maxlength="250" name="cntctfrm_name_error[<?php echo $val; ?>]" value="<?php if ( isset( $this->options['name_error'][ $val ] ) ) echo $this->options['name_error'][ $val ]; ?>" /> <span class="bws_info"><?php _e( "Error message for the Name field", 'contact-form-plugin' ); ?></span><br />
1115
+ <input type="text" maxlength="250" name="cntctfrm_address_error[<?php echo $val; ?>]" value="<?php if ( isset( $this->options['address_error'][ $val ] ) ) echo $this->options['address_error'][ $val ]; ?>" /> <span class="bws_info"><?php _e( "Error message for the Address field", 'contact-form-plugin' ); ?></span><br />
1116
+ <input type="text" maxlength="250" name="cntctfrm_email_error[<?php echo $val; ?>]" value="<?php if ( isset( $this->options['email_error'][ $val ] ) ) echo $this->options['email_error'][ $val ]; ?>" /> <span class="bws_info"><?php _e( "Error message for the Email field", 'contact-form-plugin' ); ?></span><br />
1117
+ <input type="text" maxlength="250" name="cntctfrm_phone_error[<?php echo $val; ?>]" value="<?php if ( isset( $this->options['phone_error'][ $val ] ) ) echo $this->options['phone_error'][ $val ]; ?>" /> <span class="bws_info"><?php _e( "Error message for the Phone field", 'contact-form-plugin' ); ?></span><br />
1118
+ <input type="text" maxlength="250" name="cntctfrm_subject_error[<?php echo $val; ?>]" value="<?php if ( isset( $this->options['subject_error'][ $val ] ) ) echo $this->options['subject_error'][ $val ]; ?>" /> <span class="bws_info"><?php _e( "Error message for the Subject field", 'contact-form-plugin' ); ?></span><br />
1119
+ <input type="text" maxlength="250" name="cntctfrm_message_error[<?php echo $val; ?>]" value="<?php if ( isset( $this->options['message_error'][ $val ] ) ) echo $this->options['message_error'][ $val ]; ?>" /> <span class="bws_info"><?php _e( "Error message for the Message field", 'contact-form-plugin' ); ?></span><br />
1120
+ <input type="text" maxlength="250" name="cntctfrm_attachment_error[<?php echo $val; ?>]" value="<?php if ( isset( $this->options['attachment_error'][ $val ] ) ) echo $this->options['attachment_error'][ $val ]; ?>" /> <span class="bws_info"><?php _e( "Error message about the file type for the Attachment field", 'contact-form-plugin' ); ?></span><br />
1121
+ <input type="text" maxlength="250" name="cntctfrm_attachment_upload_error[<?php echo $val; ?>]" value="<?php if ( isset( $this->options['attachment_upload_error'][ $val ] ) ) echo $this->options['attachment_upload_error'][ $val ]; ?>" /> <span class="bws_info"><?php _e( "Error message while uploading a file for the Attachment field to the server", 'contact-form-plugin' ); ?></span><br />
1122
+ <input type="text" maxlength="250" name="cntctfrm_attachment_move_error[<?php echo $val; ?>]" value="<?php if ( isset( $this->options['attachment_move_error'][ $val ] ) ) echo $this->options['attachment_move_error'][ $val ]; ?>" /> <span class="bws_info"><?php _e( "Error message while moving the file for the Attachment field", 'contact-form-plugin' ); ?></span><br />
1123
+ <input type="text" maxlength="250" name="cntctfrm_attachment_size_error[<?php echo $val; ?>]" value="<?php if ( isset( $this->options['attachment_size_error'][ $val ] ) ) echo $this->options['attachment_size_error'][ $val ]; ?>" /> <span class="bws_info"><?php _e( "Error message when file size limit for the Attachment field is exceeded", 'contact-form-plugin' ); ?></span><br />
1124
+ <input type="text" maxlength="250" name="cntctfrm_captcha_error[<?php echo $val; ?>]" value="<?php if ( isset( $this->options['captcha_error'][ $val ] ) ) echo $this->options['captcha_error'][ $val ]; ?>" /> <span class="bws_info"><?php _e( "Error message for the Captcha field", 'contact-form-plugin' ); ?></span><br />
1125
+ <input type="text" maxlength="250" name="cntctfrm_form_error[<?php echo $val; ?>]" value="<?php if ( isset( $this->options['form_error'][ $val ] ) ) echo $this->options['form_error'][ $val ]; ?>" /> <span class="bws_info"><?php _e( "Error message for the whole form", 'contact-form-plugin' ); ?></span><br />
1126
+ </div>
1127
+ <?php if ( ! $contact_form_multi_active ) { ?>
1128
+ <span class="bws_info cntctfrm_shortcode_for_language" style="margin-left: 5px;"><?php _e( "Use shortcode", 'contact-form-plugin' ); ?> <span class="cntctfrm_shortcode">[bestwebsoft_contact_form lang=<?php echo $val; ?>]</span> <?php _e( "for this language", 'contact-form-plugin' ); ?></span>
1129
+ <?php } else { ?>
1130
+ <span class="bws_info cntctfrm_shortcode_for_language" style="margin-left: 5px;"><?php _e( "Use shortcode", 'contact-form-plugin' ); ?> <span class="cntctfrm_shortcode">[bestwebsoft_contact_form lang=<?php echo $val . ' id=' . $_SESSION['cntctfrmmlt_id_form']; ?>]</span> <?php _e( "for this language", 'contact-form-plugin' ); ?></span>
1131
+ <?php } ?>
1132
+ </div>
1133
+ <?php }
1134
+ } ?>
1135
+ </td>
1136
+ </tr>
1137
+ <tr valign="top">
1138
+ <th scope="row"><?php _e( 'Use the changed names of the contact form fields in the email', 'contact-form-plugin' ); ?></th>
1139
+ <td colspan="2">
1140
+ <input type="checkbox" name="cntctfrm_change_label_in_email" value="1" <?php checked( '1', $this->options['change_label_in_email'] ); ?> />
1141
+ </td>
1142
+ </tr>
1143
+ <tr valign="top">
1144
+ <th scope="row"><?php _e( "Action after email is sent", 'contact-form-plugin' ); ?></th>
1145
+ <td colspan="2" class="cntctfrm_action_after_send_block">
1146
+ <label><input type="radio" id="cntctfrm_action_after_send" name="cntctfrm_action_after_send" value="1" <?php checked( '1', $this->options['action_after_send'] ); ?> /> <?php _e( "Display text", 'contact-form-plugin' ); ?></label><br />
1147
+ <div class="cntctfrm_label_language_tab <?php echo ! isset( $_POST['cntctfrm_change_tab'] ) || 'default' == $_POST['cntctfrm_change_tab'] ? 'cntctfrm_active' : ''; ?>" id="cntctfrm_text_default"><?php _e( 'Default', 'contact-form-plugin' ); ?>
1148
+ <noscript>
1149
+ <input type="submit" class="cntctfrm_change_tab" value="default" name="cntctfrm_change_tab">
1150
+ </noscript>
1151
+ </div>
1152
+ <?php if ( ! empty( $this->options['language'] ) ) {
1153
+ foreach ( $this->options['language'] as $val ) {
1154
+ $active_tab_class = isset( $_POST["cntctfrm_change_tab"] ) && $val == $_POST["cntctfrm_change_tab"] ? "cntctfrm_active" : "";
1155
+ echo '<div class="cntctfrm_label_language_tab ' . $active_tab_class . '" id="cntctfrm_text_' . $val . '">' . $cntctfrm_lang_codes[ $val ] . ' <span class="cntctfrm_delete" rel="' . $val . '">X</span><noscript><input type="submit" class="cntctfrm_change_tab" value="' . $val . '" name="cntctfrm_change_tab"><span class="cntctfrm_del_button_wrap"><input type="submit" class="cntctfrm_delete_button" value="' . $val . '" name="cntctfrm_delete_button"></span></noscript></div>';
1156
+ }
1157
+ } ?>
1158
+ <div class="clear"></div>
1159
+ <div class="cntctfrm_language_tab cntctfrm_tab_default <?php echo ! isset( $_POST['cntctfrm_change_tab'] ) || 'default' == $_POST['cntctfrm_change_tab'] ? '' : 'hidden' ?>" style="padding: 5px 10px 5px 5px;">
1160
+ <label><input type="text" maxlength="250" name="cntctfrm_thank_text[default]" value="<?php echo $this->options['thank_text']['default']; ?>" /> <span class="bws_info"><?php _e( "Text", 'contact-form-plugin' ); ?></span></label><br />
1161
+ <?php if ( ! $contact_form_multi_active ) { ?>
1162
+ <span class="bws_info cntctfrm_shortcode_for_language"><?php _e( "Use shortcode", 'contact-form-plugin' ); ?> <span class="cntctfrm_shortcode">[bestwebsoft_contact_form]</span> <?php _e( "for this language", 'contact-form-plugin' ); ?></span>
1163
+ <?php } else { ?>
1164
+ <span class="bws_info cntctfrm_shortcode_for_language"><?php _e( "Use shortcode", 'contact-form-plugin' ); ?> <span class="cntctfrm_shortcode">[bestwebsoft_contact_form id=<?php echo $_SESSION['cntctfrmmlt_id_form']; ?>]</span> <?php _e( "for this language", 'contact-form-plugin' ); ?></span>
1165
+ <?php } ?>
1166
+ </div>
1167
+ <?php if ( ! empty( $this->options['language'] ) ) {
1168
+ foreach ( $this->options['language'] as $val ) {
1169
+ if ( ( isset( $_POST['cntctfrm_change_tab'] ) && $val != $_POST['cntctfrm_change_tab'] ) || ! isset($_POST['cntctfrm_change_tab'] ) )
1170
+ $labels_table_class = 'hidden';
1171
+ else
1172
+ $labels_table_class = ''; ?>
1173
+ <div class="cntctfrm_language_tab <?php echo $labels_table_class; ?> cntctfrm_tab_<?php echo $val; ?>" style="padding: 5px 10px 5px 5px;">
1174
+ <label><input type="text" maxlength="250" name="cntctfrm_thank_text[<?php echo $val; ?>]" value="<?php if ( isset( $this->options['thank_text'][ $val ] ) ) echo $this->options['thank_text'][ $val ]; ?>" /> <span class="bws_info"><?php _e( "Text", 'contact-form-plugin' ); ?></span></label><br />
1175
+ <?php if ( ! $contact_form_multi_active ) { ?>
1176
+ <span class="bws_info cntctfrm_shortcode_for_language"><?php _e( "Use shortcode", 'contact-form-plugin' ); ?> <span class="cntctfrm_shortcode">[bestwebsoft_contact_form lang=<?php echo $val; ?>]</span> <?php _e( "for this language", 'contact-form-plugin' ); ?></span>
1177
+ <?php } else { ?>
1178
+ <span class="bws_info cntctfrm_shortcode_for_language"><?php _e( "Use shortcode", 'contact-form-plugin' ); ?> <span class="cntctfrm_shortcode">[bestwebsoft_contact_form lang=<?php echo $val . ' id=' . $_SESSION['cntctfrmmlt_id_form']; ?>]</span> <?php _e( "for this language", 'contact-form-plugin' ); ?></span>
1179
+ <?php } ?>
1180
+ </div>
1181
+ <?php }
1182
+ } ?>
1183
+ <div id="cntctfrm_before"></div>
1184
+ <br />
1185
+ <label><input type="radio" id="cntctfrm_action_after_send_url" name="cntctfrm_action_after_send" value="0" <?php checked( '0', $this->options['action_after_send'] ); ?> /> <?php _e( "Redirect to the page", 'contact-form-plugin' ); ?></label><br />
1186
+ <label><input type="text" maxlength="250" name="cntctfrm_redirect_url" value="<?php echo $this->options['redirect_url']; ?>" /> <span class="bws_info"><?php _e( "Url", 'contact-form-plugin' ); ?></span></label>
1187
+ </td>
1188
+ </tr>
1189
+ </table>
1190
+ <?php }
1191
+
1192
+ public function tab_appearance() {
1193
+ global $cntctfrm_related_plugins, $cntctfrm_plugin_info, $wp_version, $bws_hide_premium_options_check, $contact_form_multi_active;
1194
+ $display_pro_options = false;
1195
+ if ( 'pro' == $this->cfmlt_is_active ) {
1196
+ $display_pro_options = true;
1197
+ }?>
1198
+ <h3 class="bws_tab_label"><?php _e( 'Appearance', 'contact-form-plugin' ); ?></h3>
1199
+ <?php $this->help_phrase(); ?>
1200
+ <hr>
1201
+ <noscript>
1202
+ <div class="error">
1203
+ <p>
1204
+ <strong>
1205
+ <?php printf(
1206
+ __( "Please enable JavaScript to change '%s', '%s', '%s', '%s' options and for fields sorting.", 'contact-form-plugin' ),
1207
+ __( "Form layout", 'contact-form-plugin' ),
1208
+ __( "Labels position", 'contact-form-plugin' ),
1209
+ __( "Labels align", 'contact-form-plugin' ),
1210
+ __( "Submit position", 'contact-form-plugin' ),
1211
+ __( "Add tooltips", 'contact-form-plugin' ),
1212
+ __( "Style options", 'contact-form-plugin' ) ); ?>
1213
+ </strong>
1214
+ </p>
1215
+ </div>
1216
+ </noscript>
1217
+ <!-- Appearance (ex Extra settings) tab -->
1218
+ <div class="cntctfrm_clear"></div>
1219
+ <form id="cntctfrm_settings_form" class="bws_form" method="post" action="admin.php?page=contact_form_pro.php&amp;action=appearance">
1220
+ <div id="cntctfrm_appearance_wrap" class="cntctfrm_appearance_<?php echo is_rtl() ? 'rtl' : 'ltr'; ?>">
1221
+ <div id="<?php echo is_rtl() ? 'cntctfrm_right_table' : 'cntctfrm_left_table'; ?>">
1222
+ <table class="form-table" style="width:auto;">
1223
+ <tr valign="top">
1224
+ <th scope="row"><?php _e( "Form layout", 'contact-form-plugin' ); ?></th>
1225
+ <td colspan="2">
1226
+ <fieldset>
1227
+ <input id="cntctfrm_layout_one_column" name="cntctfrm_layout" type="radio" value="1" <?php checked( (int) $this->options['layout'] === 1 ); ?> />
1228
+ <label for="cntctfrm_layout_one_column"><?php _e( 'One column', 'contact-form-plugin' ); ?></label>
1229
+ <br/>
1230
+ <input id="cntctfrm_layout_two_columns" name="cntctfrm_layout" type="radio" value="2" <?php checked( (int) $this->options['layout'] === 2 ); ?> />
1231
+ <label for="cntctfrm_layout_two_columns"><?php _e( 'Two columns', 'contact-form-plugin' ); ?></label>
1232
+ </fieldset>
1233
+ </td>
1234
+ </tr>
1235
+ <tr valign="top">
1236
+ <th scope="row"><?php _e( "Submit position", 'contact-form-plugin' ); ?></th>
1237
+ <td colspan="2">
1238
+ <fieldset>
1239
+ <input id="cntctfrm_submit_position_left" name="cntctfrm_submit_position" type="radio" value="left" <?php checked( 'left', $this->options['submit_position'] ); ?> />
1240
+ <label for="cntctfrm_submit_position_left"><?php _e( 'Left', 'contact-form-plugin' ); ?></label>
1241
+ <br/>
1242
+ <input id="cntctfrm_submit_position_right" name="cntctfrm_submit_position" type="radio" value="right" <?php checked( 'right', $this->options['submit_position'] ); ?> />
1243
+ <label for="cntctfrm_submit_position_right"><?php _e( 'Right', 'contact-form-plugin' ); ?></label>
1244
+ </fieldset>
1245
+ </td>
1246
+ </tr>
1247
+ <tr valign="top" id="cntctfrm_width">
1248
+ <th scope="row"><?php _e( 'Width', 'contact-form-plugin' ); ?></th>
1249
+ <td colspan="2">
1250
+ <fieldset>
1251
+ <label>
1252
+ <input type="radio" name="cntctfrm_width_type" value="default" <?php checked( 'default', $this->options['width']['type'] ); ?> /> <?php _e( 'Default', 'contact-form-plugin' ); ?>
1253
+ </label>
1254
+ <br />
1255
+ <label>
1256
+ <input type="radio" name="cntctfrm_width_type" value="custom" <?php checked( 'custom', $this->options['width']['type'] ); ?> /> <?php _e( 'Custom', 'contact-form-plugin' ); ?>
1257
+ </label>
1258
+ </fieldset>
1259
+ <div class="cntctfrm_width_params" <?php if ( 'custom' != $this->options['width']['type'] ) echo 'style="display: none;"'; ?>>
1260
+ <input type="number" name="cntctfrm_input_width_value" value="<?php echo $this->options['width']['input_value']; ?>" min="1" max="9999" step="1">
1261
+ <select name="cntctfrm_input_width_unit">
1262
+ <option value="%" <?php selected( '%', $this->options['width']['input_unit'] ); ?>>%</option>
1263
+ <option value="px" <?php selected( 'px', $this->options['width']['input_unit'] ); ?>><?php _e( 'px', 'contact-form-plugin' ) ?></option>
1264
+ </select>
1265
+ </div>
1266
+ </td>
1267
+ </tr>
1268
+ </table>
1269
+ <?php if ( ! $this->hide_pro_tabs ) { ?>
1270
+ <div class="bws_pro_version_bloc">
1271
+ <div class="bws_pro_version_table_bloc">
1272
+ <button type="submit" name="bws_hide_premium_options" class="notice-dismiss bws_hide_premium_options" title="<?php _e( 'Close', 'contact-form-plugin' ); ?>"></button>
1273
+ <div class="bws_table_bg"></div>
1274
+ <table class="form-table bws_pro_version">
1275
+ <tr valign="top">
1276
+ <th scope="row"><?php _e( "Form align", 'contact-form-plugin' ); ?></th>
1277
+ <td colspan="2">
1278
+ <fieldset>
1279
+ <input disabled="disabled" name="cntctfrm_form_align" type="radio" value="left" checked="checked">
1280
+ <label for="cntctfrm_form_align_left"><?php _e( 'Left', 'contact-form-plugin' ); ?></label>
1281
+ <br/>
1282
+ <input disabled="disabled" name="cntctfrm_form_align" type="radio" value="center">
1283
+ <label for="cntctfrm_form_align_center"><?php _e( 'Center', 'contact-form-plugin' ); ?></label>
1284
+ <br/>
1285
+ <input disabled="disabled" name="cntctfrm_form_align" type="radio" value="right">
1286
+ <label for="cntctfrm_form_align_right"><?php _e( 'Right', 'contact-form-plugin' ); ?></label>
1287
+ </fieldset>
1288
+ </td>
1289
+ </tr>
1290
+ <tr valign="top">
1291
+ <th scope="row"><?php _e( "Labels position", 'contact-form-plugin' ); ?></th>
1292
+ <td colspan="2">
1293
+ <fieldset>
1294
+ <input disabled="disabled" name="cntctfrm_labels_position" type="radio" value="top" checked="checked">
1295
+ <label for="cntctfrm_labels_position_top"><?php _e( 'Top', 'contact-form-plugin' ); ?></label>
1296
+ <br/>
1297
+ <input disabled="disabled" name="cntctfrm_labels_position" type="radio" value="left">
1298
+ <label for="cntctfrm_labels_position_left"><?php _e( 'Left', 'contact-form-plugin' ); ?></label>
1299
+ <br/>
1300
+ <input disabled="disabled" name="cntctfrm_labels_position" type="radio" value="right">
1301
+ <label for="cntctfrm_labels_position_right"><?php _e( 'Right', 'contact-form-plugin' ); ?></label>
1302
+ <br/>
1303
+ <input disabled="disabled" name="cntctfrm_labels_position" type="radio" value="bottom">
1304
+ <label for="cntctfrm_labels_position_bottom"><?php _e( 'Bottom', 'contact-form-plugin' ); ?></label>
1305
+ </fieldset>
1306
+ </td>
1307
+ </tr>
1308
+ <tr valign="top" id="cntctfrm_labels_align" class="cntctfrm_labels_align_show">
1309
+ <th scope="row"><?php _e( "Labels align", 'contact-form-plugin' ); ?></th>
1310
+ <td colspan="2">
1311
+ <fieldset>
1312
+ <input disabled="disabled" name="cntctfrm_labels_align" type="radio" value="left" checked="checked">
1313
+ <label for="cntctfrm_labels_align_left"><?php _e( 'Left', 'contact-form-plugin' ); ?></label>
1314
+ <br/>
1315
+ <input disabled="disabled" name="cntctfrm_labels_align" type="radio" value="center">
1316
+ <label for="cntctfrm_labels_align_center"><?php _e( 'Center', 'contact-form-plugin' ); ?></label>
1317
+ <br/>
1318
+ <input disabled="disabled" name="cntctfrm_labels_align" type="radio" value="right">
1319
+ <label for="cntctfrm_labels_align_right"><?php _e( 'Right', 'contact-form-plugin' ); ?></label>
1320
+ </fieldset>
1321
+ </td>
1322
+ </tr>
1323
+ <tr valign="top">
1324
+ <th scope="row"><?php _e( "Errors output", 'contact-form-plugin' ); ?></th>
1325
+ <td colspan="2">
1326
+ <select name="cntctfrm_error_displaying" disabled='disabled' style="max-width:400px; width:100%;">
1327
+ <option value="labels"><?php _e( "Display error messages", 'contact-form-plugin' ); ?></option>
1328
+ <option value="input_colors"><?php _e( "Color of the input field errors.", 'contact-form-plugin' ); ?></option>
1329
+ <option value="both" selected="selected"><?php _e( "Display error messages & color of the input field errors", 'contact-form-plugin' ); ?></option>
1330
+ </select>
1331
+ </td>
1332
+ </tr>
1333
+ <tr valign="top">
1334
+ <th scope="row"><?php _e( "Add placeholder to the input blocks", 'contact-form-plugin' ); ?></th>
1335
+ <td colspan="2">
1336
+ <input disabled='disabled' type="checkbox" name="cntctfrm_placeholder" value="1" />
1337
+ </td>
1338
+ </tr>
1339
+ <tr valign="top">
1340
+ <th scope="row"><?php _e( "Add tooltips", 'contact-form-plugin' ); ?></th>
1341
+ <td colspan="2">
1342
+ <div>
1343
+ <input disabled='disabled' type="checkbox" name="cntctfrm_tooltip_display_name" value="1" />
1344
+ <label for="cntctfrm_tooltip_display_name"><?php _e( "Name", 'contact-form-plugin' ); ?></label>
1345
+ </div>
1346
+ <?php if ( '1' == $this->options['display_address_field'] ) { ?>
1347
+ <div>
1348
+ <input disabled='disabled' type="checkbox" name="cntctfrm_tooltip_display_address" value="1" />
1349
+ <label for="cntctfrm_tooltip_display_address"><?php _e( "Address", 'contact-form-plugin' ); ?></label>
1350
+ </div>
1351
+ <?php } ?>
1352
+ <div>
1353
+ <input disabled='disabled' type="checkbox" name="cntctfrm_tooltip_display_email" value="1" />
1354
+ <label for="cntctfrm_tooltip_display_email"><?php _e( "Email address", 'contact-form-plugin' ); ?></label>
1355
+ </div>
1356
+ <?php if ( '1' == $this->options['display_phone_field'] ) { ?>
1357
+ <div>
1358
+ <input disabled='disabled' type="checkbox" name="cntctfrm_tooltip_display_phone" value="1" />
1359
+ <label for="cntctfrm_tooltip_display_phone"><?php _e( "Phone Number", 'contact-form-plugin' ); ?></label>
1360
+ </div>
1361
+ <?php } ?>
1362
+ <div>
1363
+ <input disabled='disabled' type="checkbox" name="cntctfrm_tooltip_display_subject" value="1" />
1364
+ <label for="cntctfrm_tooltip_display_subject"><?php _e( "Subject", 'contact-form-plugin' ); ?></label>
1365
+ </div>
1366
+ <div>
1367
+ <input disabled='disabled' type="checkbox" name="cntctfrm_tooltip_display_message" value="1" />
1368
+ <label for="cntctfrm_tooltip_display_message"><?php _e( "Message", 'contact-form-plugin' ); ?></label>
1369
+ </div>
1370
+ <?php if ( '1' == $this->options['attachment_explanations'] ) { ?>
1371
+ <div>
1372
+ <input disabled='disabled' type="checkbox" name="cntctfrm_tooltip_display_attachment" value="1" />
1373
+ <label for="cntctfrm_tooltip_display_attachment"><?php _e( "Attachment", 'contact-form-plugin' ); ?></label>
1374
+ </div>
1375
+ <?php } ?>
1376
+ </td>
1377
+ </tr>
1378
+ <tr valign="top">
1379
+ <th colspan="3" scope="row">
1380
+ <input disabled='disabled' type="checkbox" name="cntctfrm_style_options" value="1" checked="checked" />
1381
+ <?php _e( "Style options", 'contact-form-plugin' ); ?>
1382
+ </th>
1383
+ </tr>
1384
+ <tr valign="top" class="cntctfrm_style_block">
1385
+ <th scope="row"><?php _e( "Text color", 'contact-form-plugin' ); ?></th>
1386
+ <td colspan="2">
1387
+ <div>
1388
+ <div class="wp-picker-container">
1389
+ <button type="button" class="button wp-color-result">
1390
+ <span class="wp-color-result-text">Select Color</span>
1391
+ </button>
1392
+ </div>
1393
+ <div class="cntctfrm_label_block"><?php _e( 'Label text color', 'contact-form-plugin' ); ?></div>
1394
+
1395
+ </div>
1396
+ <div>
1397
+ <div class="wp-picker-container">
1398
+ <button type="button" class="button wp-color-result">
1399
+ <span class="wp-color-result-text">Select Color</span>
1400
+ </button>
1401
+ </div>
1402
+ <div class="cntctfrm_label_block"><?php _e( "Placeholder color", 'contact-form-plugin' ); ?></div>
1403
+ </div>
1404
+ </td>
1405
+ </tr>
1406
+ <tr valign="top" class="cntctfrm_style_block">
1407
+ <th scope="row"><?php _e( "Errors color", 'contact-form-plugin' ); ?></th>
1408
+ <td colspan="2">
1409
+ <div>
1410
+ <div class="wp-picker-container">
1411
+ <button type="button" class="button wp-color-result">
1412
+ <span class="wp-color-result-text">Select Color</span>
1413
+ </button>
1414
+ </div>
1415
+ <div class="cntctfrm_label_block"><?php _e( 'Error text color', 'contact-form-plugin' ); ?></div>
1416
+ </div>
1417
+ <div>
1418
+ <div class="wp-picker-container">
1419
+ <button type="button" class="button wp-color-result">
1420
+ <span class="wp-color-result-text">Select Color</span>
1421
+ </button>
1422
+ </div>
1423
+ <div class="cntctfrm_label_block"><?php _e( 'Background color of the input field errors', 'contact-form-plugin' ); ?></div>
1424
+ </div>
1425
+ <div>
1426
+ <div class="wp-picker-container">
1427
+ <button type="button" class="button wp-color-result">
1428
+ <span class="wp-color-result-text">Select Color</span>
1429
+ </button>
1430
+ </div>
1431
+ <div class="cntctfrm_label_block"><?php _e( 'Border color of the input field errors', 'contact-form-plugin' ); ?></div>
1432
+ </div>
1433
+ <div>
1434
+ <div class="wp-picker-container">
1435
+ <button type="button" class="button wp-color-result">
1436
+ <span class="wp-color-result-text">Select Color</span>
1437
+ </button>
1438
+ </div>
1439
+ <div class="cntctfrm_label_block"><?php _e( "Placeholder color of the input field errors", 'contact-form-plugin' ); ?></div>
1440
+ </div>
1441
+ </td>
1442
+ </tr>
1443
+ <tr valign="top" class="cntctfrm_style_block">
1444
+ <th scope="row"><?php _e( "Input fields", 'contact-form-plugin' ); ?></th>
1445
+ <td colspan="2">
1446
+ <div>
1447
+ <div class="wp-picker-container">
1448
+ <button type="button" class="button wp-color-result">
1449
+ <span class="wp-color-result-text">Select Color</span>
1450
+ </button>
1451
+ </div>
1452
+ <div class="cntctfrm_label_block"><?php _e( "Input fields background color", 'contact-form-plugin' ); ?></div>
1453
+ </div>
1454
+ <div>
1455
+ <div class="wp-picker-container">
1456
+ <button type="button" class="button wp-color-result">
1457
+ <span class="wp-color-result-text">Select Color</span>
1458
+ </button>
1459
+ </div>
1460
+ <div class="cntctfrm_label_block"><?php _e( "Text fields color", 'contact-form-plugin' ); ?></div>
1461
+ </div>
1462
+ <div>
1463
+ <input disabled='disabled' size="8" type="text" value="" name="cntctfrm_border_input_width" />
1464
+ <div class="cntctfrm_label_block"><?php _e( 'Border width in px, numbers only', 'contact-form-plugin' ); ?></div>
1465
+ </div>
1466
+ <div>
1467
+ <div class="wp-picker-container">
1468
+ <button type="button" class="button wp-color-result">
1469
+ <span class="wp-color-result-text">Select Color</span>
1470
+ </button>
1471
+ </div>
1472
+ <div class="cntctfrm_label_block"><?php _e( 'Border color', 'contact-form-plugin' ); ?></div>
1473
+ </div>
1474
+ </td>
1475
+ </tr>
1476
+ <tr valign="top" class="cntctfrm_style_block">
1477
+ <th scope="row"><?php _e( "Submit button", 'contact-form-plugin' ); ?></th>
1478
+ <td colspan="2">
1479
+ <div>
1480
+ <input disabled='disabled' size="8" type="text" value="" name="cntctfrm_button_width" />
1481
+ <div class="cntctfrm_label_block"><?php _e( 'Width in px, numbers only', 'contact-form-plugin' ); ?></div>
1482
+ </div>
1483
+ <div>
1484
+ <div class="wp-picker-container">
1485
+ <button type="button" class="button wp-color-result">
1486
+ <span class="wp-color-result-text">Select Color</span>
1487
+ </button>
1488
+ </div>
1489
+ <div class="cntctfrm_label_block"><?php _e( 'Button color', 'contact-form-plugin' ); ?></div>
1490
+ </div>
1491
+ <div>
1492
+ <div class="wp-picker-container">
1493
+ <button type="button" class="button wp-color-result">
1494
+ <span class="wp-color-result-text">Select Color</span>
1495
+ </button>
1496
+ </div>
1497
+ <div class="cntctfrm_label_block"><?php _e( "Button text color", 'contact-form-plugin' ); ?></div>
1498
+ </div>
1499
+ <div>
1500
+ <div class="wp-picker-container">
1501
+ <button type="button" class="button wp-color-result">
1502
+ <span class="wp-color-result-text">Select Color</span>
1503
+ </button>
1504
+ </div>
1505
+ <div class="cntctfrm_label_block"><?php _e( 'Border color', 'contact-form-plugin' ); ?></div>
1506
+ </div>
1507
+ </td>
1508
+ </tr>
1509
+ </table>
1510
+ </div>
1511
+ <div class="bws_pro_version_tooltip">
1512
+ <a class="bws_button" href="https://bestwebsoft.com/products/wordpress/plugins/contact-form/?k=697c5e74f39779ce77850e11dbe21962&amp;pn=77&amp;v=<?php echo $cntctfrm_plugin_info["Version"]; ?>&amp;wp_v=<?php echo $wp_version; ?>" target="_blank" title="Contact Form Pro">
1513
+ <?php _e( 'Upgrade to Pro', 'contact-form-plugin' ); ?>
1514
+ </a>
1515
+ <div class="clear"></div>
1516
+ </div>
1517
+ </div>
1518
+ <?php } ?>
1519
+ </div>
1520
+ <?php if ( $bws_hide_premium_options_check ) { ?>
1521
+ <div class="clear"></div>
1522
+ <?php } ?>
1523
+ <div id="<?php echo is_rtl() ? 'cntctfrm_left_table' : 'cntctfrm_right_table' ?>">
1524
+ <h3><?php _e( 'Contact Form | Preview', 'contact-form-plugin' ); ?></h3>
1525
+ <span class="bws_info"><?php _e( 'Drag the necessary field to sort fields.', 'contact-form-plugin' ); ?></span>
1526
+ <?php $classes = ( $this->options['layout'] === 1 ) ? ' cntctfrm_one_column' : ' cntctfrm_two_columns';
1527
+ $classes .= is_rtl() ? ' cntctfrm_rtl' : ' cntctfrm_ltr';
1528
+ $classes .= ( 'custom' != $this->options['width']['type'] ) ? ' cntctfrm_width_default' : ' cntctfrm_width_custom';
1529
+ if ( 'custom' == $this->options['width']['type'] ) { ?>
1530
+ <style id="cntctfrm_custom_styles" type="text/css">
1531
+ .cntctfrm_contact_form.cntctfrm_width_custom {
1532
+ max-width: <?php printf( '%d%s', $this->options['width']['input_value'], $this->options['width']['input_unit'] ); ?>;
1533
+ }
1534
+ </style>
1535
+ <?php } ?>
1536
+ <div id="cntctfrm_contact_form" class="cntctfrm_contact_form<?php echo $classes; ?>">
1537
+ <div class="cntctfrm_error_text hidden"><?php echo $this->options['form_error']['default']; ?></div>
1538
+ <div id="cntctfrm_wrap">
1539
+ <?php $cntctfrm_ordered_fields = cntctfrm_get_ordered_fields();
1540
+ for ( $i = 1; $i <= 2; $i++ ) {
1541
+ $column = ( $i == 1 ) ? 'first_column' : 'second_column'; ?>
1542
+ <ul id="cntctfrm_<?php echo $column; ?>" class="cntctfrm_column" <?php if ( $i == 2 && $this->options['layout'] === 1 ) echo 'style="display: none;"'; ?>>
1543
+ <?php foreach ( $cntctfrm_ordered_fields[ $column ] as $cntctfrm_field ) {
1544
+ switch( $cntctfrm_field ) {
1545
+ case 'cntctfrm_contact_name':
1546
+ if ( 1 == $this->options['display_name_field'] ) { ?>
1547
+ <li class="cntctfrm_field_wrap">
1548
+ <div class="cntctfrm_label cntctfrm_label_name">
1549
+ <label for="cntctfrm_contact_name"><?php echo $this->options['name_label']['default']; if ( 1 == $this->options['required_name_field'] ) echo '<span class="required"> ' . $this->options['required_symbol'] . '</span>'; ?></label>
1550
+ </div>
1551
+ <div class="cntctfrm_error_text hidden"><?php echo $this->options['name_error']['default']; ?></div>
1552
+ <div class="cntctfrm_input cntctfrm_input_name">
1553
+ <div class="cntctfrm_drag_wrap"></div>
1554
+ <input class="text bws_no_bind_notice" type="text" size="40" value="" name="cntctfrm_contact_name" id="cntctfrm_contact_name" />
1555
+ </div>
1556
+ </li>
1557
+ <?php }
1558
+ break;
1559
+ case 'cntctfrm_contact_address':
1560
+ if ( 1 == $this->options['display_address_field'] ) { ?>
1561
+ <li class="cntctfrm_field_wrap">
1562
+ <div class="cntctfrm_label cntctfrm_label_address">
1563
+ <label for="cntctfrm_contact_address"><?php echo $this->options['address_label']['default']; if ( 1 == $this->options['required_address_field'] ) echo '<span class="required"> ' . $this->options['required_symbol'] . '</span>'; ?></label>
1564
+ </div>
1565
+ <?php if ( 1 == $this->options['required_address_field'] ) { ?>
1566
+ <div class="cntctfrm_error_text hidden"><?php echo $this->options['address_error']['default']; ?></div>
1567
+ <?php } ?>
1568
+ <div class="cntctfrm_input cntctfrm_input_address">
1569
+ <div class="cntctfrm_drag_wrap"></div>
1570
+ <input class="text bws_no_bind_notice" type="text" size="40" value="" name="cntctfrm_contact_address" id="cntctfrm_contact_address" />
1571
+ </div>
1572
+ </li>
1573
+ <?php }
1574
+ break;
1575
+ case 'cntctfrm_contact_email': ?>
1576
+ <li class="cntctfrm_field_wrap">
1577
+ <div class="cntctfrm_label cntctfrm_label_email">
1578
+ <label for="cntctfrm_contact_email"><?php echo $this->options['email_label']['default']; if ( 1 == $this->options['required_email_field'] ) echo '<span class="required"> ' . $this->options['required_symbol'] . '</span>'; ?></label>
1579
+ </div>
1580
+ <div class="cntctfrm_error_text hidden"><?php echo $this->options['email_error']['default']; ?></div>
1581
+ <div class="cntctfrm_input cntctfrm_input_email">
1582
+ <div class="cntctfrm_drag_wrap"></div>
1583
+ <input class="text bws_no_bind_notice" type="text" size="40" value="" name="cntctfrm_contact_email" id="cntctfrm_contact_email" />
1584
+ </div>
1585
+ </li>
1586
+ <?php break;
1587
+ case 'cntctfrm_contact_phone':
1588
+ if ( 1 == $this->options['display_phone_field'] ) { ?>
1589
+ <li class="cntctfrm_field_wrap">
1590
+ <div class="cntctfrm_label cntctfrm_label_phone">
1591
+ <label for="cntctfrm_contact_phone"><?php echo $this->options['phone_label']['default']; if ( 1 == $this->options['required_phone_field'] ) echo '<span class="required"> ' . $this->options['required_symbol'] . '</span>'; ?></label>
1592
+ </div>
1593
+ <div class="cntctfrm_error_text hidden"><?php echo $this->options['phone_error']['default']; ?></div>
1594
+ <div class="cntctfrm_input cntctfrm_input_phone">
1595
+ <div class="cntctfrm_drag_wrap"></div>
1596
+ <input class="text bws_no_bind_notice" type="text" size="40" value="" name="cntctfrm_contact_phone" id="cntctfrm_contact_phone" />
1597
+ </div>
1598
+ </li>
1599
+ <?php }
1600
+ break;
1601
+ case 'cntctfrm_contact_subject': ?>
1602
+ <li class="cntctfrm_field_wrap">
1603
+ <div class="cntctfrm_label cntctfrm_label_subject">
1604
+ <label for="cntctfrm_contact_subject"><?php echo $this->options['subject_label']['default']; if ( 1 == $this->options['required_subject_field'] ) echo '<span class="required"> ' . $this->options['required_symbol'] . '</span>'; ?></label>
1605
+ </div>
1606
+ <div class="cntctfrm_error_text hidden"><?php echo $this->options['subject_error']['default']; ?></div>
1607
+ <div class="cntctfrm_input cntctfrm_input_subject">
1608
+ <div class="cntctfrm_drag_wrap"></div>
1609
+ <input class="text bws_no_bind_notice" type="text" size="40" value="" name="cntctfrm_contact_subject" id="cntctfrm_contact_subject" />
1610
+ </div>
1611
+ </li>
1612
+ <?php break;
1613
+ case 'cntctfrm_contact_message': ?>
1614
+ <li class="cntctfrm_field_wrap">
1615
+ <div class="cntctfrm_label cntctfrm_label_message">
1616
+ <label for="cntctfrm_contact_message"><?php echo $this->options['message_label']['default']; if ( 1 == $this->options['required_message_field'] ) echo '<span class="required"> ' . $this->options['required_symbol'] . '</span>'; ?></label>
1617
+ </div>
1618
+ <div class="cntctfrm_error_text hidden"><?php echo $this->options['message_error']['default']; ?></div>
1619
+ <div class="cntctfrm_input cntctfrm_input_message">
1620
+ <div class="cntctfrm_drag_wrap"></div>
1621
+ <textarea class="bws_no_bind_notice" rows="5" cols="30" name="cntctfrm_contact_message" id="cntctfrm_contact_message"></textarea>
1622
+ </div>
1623
+ </li>
1624
+ <?php break;
1625
+ case 'cntctfrm_contact_attachment':
1626
+ if ( 1 == $this->options['attachment'] ) { ?>
1627
+ <li class="cntctfrm_field_wrap">
1628
+ <div class="cntctfrm_label cntctfrm_label_attachment">
1629
+ <label for="cntctfrm_contact_attachment"><?php echo $this->options['attachment_label']['default']; ?></label>
1630
+ </div>
1631
+ <div class="cntctfrm_error_text hidden"><?php echo $this->options['attachment_error']['default']; ?></div>
1632
+ <div class="cntctfrm_input cntctfrm_input_attachment">
1633
+ <div class="cntctfrm_drag_wrap"></div>
1634
+ <input class="bws_no_bind_notice" type="file" name="cntctfrm_contact_attachment" id="cntctfrm_contact_attachment" />
1635
+ <?php if ( 1 == $this->options['attachment_explanations'] ) { ?>
1636
+ <label class="cntctfrm_contact_attachment_extensions"><?php echo $this->options['attachment_tooltip'][ 'default' ]; ?></label>
1637
+ <?php } ?>
1638
+ </div>
1639
+ </li>
1640
+ <?php }
1641
+ break;
1642
+ case 'cntctfrm_contact_send_copy':
1643
+ if ( 1 == $this->options['send_copy'] ) { ?>
1644
+ <li class="cntctfrm_field_wrap">
1645
+ <div class="cntctfrm_checkbox cntctfrm_checkbox_send_copy">
1646
+ <div class="cntctfrm_drag_wrap"></div>
1647
+ <input type="checkbox" value="1" name="cntctfrm_contact_send_copy" id="cntctfrm_contact_send_copy" class="bws_no_bind_notice" style="margin: 0;" />
1648
+ <label for="cntctfrm_contact_send_copy"><?php echo $this->options['send_copy_label']['default']; ?></label>
1649
+ </div>
1650
+ </li>
1651
+ <?php }
1652
+ break;
1653
+ case 'cntctfrm_contact_gdpr':
1654
+ if ( 1 == $this->options['gdpr'] ) { ?>
1655
+ <li class="cntctfrm_field_wrap">
1656
+ <div class="cntctfrm_checkbox cntctfrm_checkbox_gdpr">
1657
+ <div class="cntctfrm_drag_wrap"></div>
1658
+ <input type="checkbox" value="" name="cntctfrm_contact_gdpr" id="cntctfrm_contact_gdpr" class="bws_no_bind_notice" style="margin: 0;" />
1659
+ <label for="cntctfrm_contact_gdpr"><?php echo $this->options['gdpr_label']['default']; ?></label>
1660
+ <?php if( ! empty( $this->options['gdpr_link'] ) ) { ?>
1661
+ <a href="<?php $this->options['gdpr_link'] ?>" target="_blank"><?php echo $this->options['gdpr_text']; ?></a>
1662
+ <?php } else { ?>
1663
+ <span><?php echo $this->options['gdpr_text']; ?></span>
1664
+ <?php } ?>
1665
+ </div>
1666
+ </li>
1667
+ <?php }
1668
+ break;
1669
+ case 'cntctfrm_subscribe':
1670
+ if ( array_key_exists( 'subscriber', $cntctfrm_related_plugins ) ) {
1671
+ if ( ( ! $contact_form_multi_active && ! empty( $cntctfrm_related_plugins['subscriber']['options']['contact_form'] ) ) || ! empty( $this->options['display_subscribe'] ) ) { ?>
1672
+ <li class="cntctfrm_field_wrap">
1673
+ <div class="cntctfrm_checkbox cntctfrm_checkbox_subscribe">
1674
+ <div class="cntctfrm_drag_wrap"></div>
1675
+ <input type="hidden" value="1" name="cntctfrm_subscribe"/>
1676
+ <?php $cntctfrm_sbscrbr_checkbox = apply_filters( 'sbscrbr_cntctfrm_checkbox_add', array() );
1677
+ if ( isset( $cntctfrm_sbscrbr_checkbox['content'] ) ) {
1678
+ echo $cntctfrm_sbscrbr_checkbox['content'];
1679
+ } ?>
1680
+ </div>
1681
+ </li>
1682
+ <?php }
1683
+ }
1684
+ break;
1685
+ case 'cntctfrm_captcha':
1686
+ if ( array_key_exists( 'captcha', $cntctfrm_related_plugins ) ||
1687
+ array_key_exists( 'google-captcha', $cntctfrm_related_plugins ) ) {
1688
+
1689
+ $display_captcha_label = '';
1690
+
1691
+ if ( array_key_exists( 'captcha', $cntctfrm_related_plugins ) &&
1692
+ ( ( ! $contact_form_multi_active && ! empty( $cntctfrm_related_plugins['captcha']['options']['forms']['bws_contact']['enable'] ) ) || ! empty( $this->options['display_captcha'] ) ) ) {
1693
+
1694
+ $display_captcha = true;
1695
+
1696
+ $captcha_label = isset( $cntctfrm_related_plugins['captcha']['options']['title'] ) ? $cntctfrm_related_plugins['captcha']['options']['title'] : '';
1697
+ if ( ! empty( $captcha_label ) ) {
1698
+ $captcha_required_symbol = sprintf( ' <span class="required">%s</span>', ( isset( $cntctfrm_related_plugins['captcha']['options']['required_symbol'] ) ) ? $cntctfrm_related_plugins['captcha']['options']['required_symbol'] : '' );
1699
+ $display_captcha_label = $captcha_label . $captcha_required_symbol;
1700
+ }
1701
+ }
1702
+
1703
+ if ( array_key_exists( 'google-captcha', $cntctfrm_related_plugins ) &&
1704
+ ( ( ! $contact_form_multi_active && ! empty( $cntctfrm_related_plugins['google-captcha']['options']['contact_form'] ) ) || ( $contact_form_multi_active && ! empty( $this->options['display_google_captcha'] ) ) ) )
1705
+ $display_google_captcha = true;
1706
+
1707
+ if ( isset( $display_google_captcha ) || isset( $display_captcha ) ) { ?>
1708
+ <li class="cntctfrm_field_wrap">
1709
+ <div class="cntctfrm_label cntctfrm_label_captcha">
1710
+ <label><?php echo $display_captcha_label; ?></label>
1711
+ </div>
1712
+ <div class="cntctfrm_input cntctfrm_input_captcha">
1713
+ <?php if ( isset( $display_captcha ) ) { ?>
1714
+ <img src="<?php echo plugins_url( '../images/cptch.png', __FILE__ ); ?>">
1715
+ <input type="hidden" value="1" name="cntctfrm_captcha"/>
1716
+ <?php }
1717
+ if ( isset( $display_google_captcha ) ) { ?>
1718
+ <div id="gglcptch_preview">
1719
+ <img src="<?php echo plugins_url( '../images/google-captcha.png', __FILE__ ); ?>">
1720
+ </div>
1721
+ <?php } ?>
1722
+ </div>
1723
+ </li>
1724
+ <?php }
1725
+ }
1726
+ break;
1727
+ default:
1728
+ break;
1729
+ }
1730
+ } ?>
1731
+ </ul>
1732
+ <?php } ?>
1733
+ <div class="clear"></div>
1734
+ </div>
1735
+ <div class="cntctfrm_submit_wrap">
1736
+ <?php $cntctfrm_direction = is_rtl() ? 'rtl' : 'ltr';
1737
+ $submit_position_value = array(
1738
+ 'ltr' => array(
1739
+ 'left' => 1,
1740
+ 'right' => 2
1741
+ ),
1742
+ 'rtl' => array(
1743
+ 'left' => 2,
1744
+ 'right' => 1
1745
+ )
1746
+ );
1747
+ for ( $i = 1; $i <= 2; $i++ ) {
1748
+ $column = ( $i == 1 ) ? 'first_column' : 'second_column'; ?>
1749
+ <div id="cntctfrm_submit_<?php echo $column; ?>" class="cntctfrm_column">
1750
+ <?php if ( $i == $submit_position_value[ $cntctfrm_direction ][ $this->options['submit_position'] ] ) { ?>
1751
+ <div class="cntctfrm_input cntctfrm_input_submit" style="<?php printf( 'text-align: %s !important;', $this->options['submit_position'] ); ?>">
1752
+ <input type="button" value="<?php echo $this->options['submit_label']['default']; ?>" class="bws_no_bind_notice" style="cursor: pointer; margin: 0; text-align: center;" />
1753
+ </div>
1754
+ <?php } ?>
1755
+ </div>
1756
+ <?php } ?>
1757
+ <div class="clear"></div>
1758
+ </div>
1759
+ </div>
1760
+ </div>
1761
+ <div class="clear"></div>
1762
+ <input type="hidden" name="cntctfrm_form_appearance_submit" value="submit" />
1763
+ <input type="hidden" id="cntctfrm_layout_first_column" name="cntctfrm_layout_first_column" value="<?php echo implode( ',', $this->options['order_fields']['first_column'] ); ?>" />
1764
+ <input type="hidden" id="cntctfrm_layout_second_column" name="cntctfrm_layout_second_column" value="<?php echo implode( ',', $this->options['order_fields']['second_column'] ); ?>" />
1765
+ </div>
1766
+ </form>
1767
+ <?php }
1768
+
1769
+ public function display_metabox() { ?>
1770
+ <div class="postbox">
1771
+ <h3 class="hndle">
1772
+ <?php _e( 'Contact Form Shortcode', 'contact-form-plugin' ); ?>
1773
+ </h3>
1774
+ <div class="inside">
1775
+ <?php _e( "Add Contact Form to your page or post using the following shortcode:", 'contact-form-plugin' );
1776
+ $id_form = $this->cfmlt_is_active ? ' id='. $_SESSION['cntctfrmmlt_id_form'] : '';
1777
+ bws_shortcode_output( "[bestwebsoft_contact_form". $id_form . "]");?>
1778
+ </div>
1779
+ </div>
1780
+ <?php }
1781
+ }
1782
+ }
includes/pro_banners.php ADDED
File without changes
js/script.js CHANGED
@@ -1,5 +1,5 @@
1
  (function($) {
2
- $(document).ready( function() {
3
  $( '#cntctfrm_gdpr' ).on( 'change', function() {
4
  if( $( this).is( ':checked' ) ) {
5
  $( '#cntctfrm_gdpr_link_options' ).show();
@@ -121,8 +121,8 @@
121
  $( 'input[name="cntctfrm_layout"]' ).change( function() {
122
  var form_layout = $( this ).val();
123
  if ( form_layout == 1 ) {
124
- $( '#cntctfrm_settings_form #cntctfrm_contact_form' ).removeClass( 'cntctfrm_two_columns' );
125
- $( '#cntctfrm_settings_form #cntctfrm_contact_form' ).addClass( 'cntctfrm_one_column' );
126
  if( $( '#cntctfrm_second_column li' ).length > 0 ) {
127
  $( '#cntctfrm_first_column' ).append( $( '#cntctfrm_second_column' ).html() );
128
  }
@@ -130,8 +130,8 @@
130
  $( '#cntctfrm_second_column' ).hide();
131
  }
132
  if ( form_layout == 2 ) {
133
- $( '#cntctfrm_settings_form #cntctfrm_contact_form' ).removeClass( 'cntctfrm_one_column' );
134
- $( '#cntctfrm_settings_form #cntctfrm_contact_form' ).addClass( 'cntctfrm_two_columns' );
135
  $( '#cntctfrm_second_column' ).show();
136
  }
137
 
@@ -258,4 +258,4 @@
258
  });
259
  }
260
  });
261
- })(jQuery);
1
  (function($) {
2
+ $(document).ready( function() {
3
  $( '#cntctfrm_gdpr' ).on( 'change', function() {
4
  if( $( this).is( ':checked' ) ) {
5
  $( '#cntctfrm_gdpr_link_options' ).show();
121
  $( 'input[name="cntctfrm_layout"]' ).change( function() {
122
  var form_layout = $( this ).val();
123
  if ( form_layout == 1 ) {
124
+ $( '#cntctfrm_contact_form' ).removeClass( 'cntctfrm_two_columns' );
125
+ $( '#cntctfrm_contact_form' ).addClass( 'cntctfrm_one_column' );
126
  if( $( '#cntctfrm_second_column li' ).length > 0 ) {
127
  $( '#cntctfrm_first_column' ).append( $( '#cntctfrm_second_column' ).html() );
128
  }
130
  $( '#cntctfrm_second_column' ).hide();
131
  }
132
  if ( form_layout == 2 ) {
133
+ $( '#cntctfrm_contact_form' ).removeClass( 'cntctfrm_one_column' );
134
+ $( '#cntctfrm_contact_form' ).addClass( 'cntctfrm_two_columns' );
135
  $( '#cntctfrm_second_column' ).show();
136
  }
137
 
258
  });
259
  }
260
  });
261
+ })(jQuery);
languages/contact-form-plugin-af_ZA.mo CHANGED
Binary file
languages/contact-form-plugin-af_ZA.po CHANGED
@@ -2,8 +2,8 @@ msgid ""
2
  msgstr ""
3
  "Project-Id-Version: Contact Form\n"
4
  "Report-Msgid-Bugs-To: \n"
5
- "POT-Creation-Date: 2018-05-16 14:25+0300\n"
6
- "PO-Revision-Date: 2018-05-16 14:25+0300\n"
7
  "Last-Translator: plugin@bestwebsoft.com <plugin@bestwebsoft.com>\n"
8
  "Language-Team: Aldu <alducornelissen@gmail.com>\n"
9
  "Language: af\n"
@@ -17,54 +17,75 @@ msgstr ""
17
  "Plural-Forms: nplurals=2; plural=(n != 1);\n"
18
  "X-Poedit-SearchPath-0: .\n"
19
 
20
- #: contact_form.php:37 contact_form.php:992
 
21
  msgid "Contact Form Settings"
22
  msgstr "Kontak Form Verstellings"
23
 
24
- #: contact_form.php:37
25
- msgid "Contact Form"
26
- msgstr "Kontak Form"
 
 
 
 
 
 
 
 
27
 
28
- #: contact_form.php:322 contact_form.php:1172 contact_form.php:1262
29
- #: contact_form.php:1668 contact_form.php:1707 contact_form.php:1975
30
- #: contact_form.php:3134 contact_form.php:3180
 
 
 
31
  msgid "Name"
32
  msgstr "Naam"
33
 
34
- #: contact_form.php:323 contact_form.php:1309 contact_form.php:1669
35
- #: contact_form.php:1708 contact_form.php:1980 contact_form.php:3141
36
- #: contact_form.php:3186
 
 
37
  msgid "Address"
38
  msgstr "Adres: "
39
 
40
- #: contact_form.php:324 contact_form.php:1325 contact_form.php:1670
41
- #: contact_form.php:1709
 
42
  msgid "Email Address"
43
  msgstr "Epos Adres:"
44
 
45
- #: contact_form.php:325 contact_form.php:1348 contact_form.php:1671
46
- #: contact_form.php:1710
 
47
  msgid "Phone number"
48
  msgstr "Telefoon nommer:"
49
 
50
- #: contact_form.php:326 contact_form.php:1364 contact_form.php:1672
51
- #: contact_form.php:1711 contact_form.php:1995 contact_form.php:3152
52
- #: contact_form.php:3195
 
 
53
  msgid "Subject"
54
  msgstr "Onderwerp"
55
 
56
- #: contact_form.php:327 contact_form.php:1388 contact_form.php:1673
57
- #: contact_form.php:1712 contact_form.php:1999 contact_form.php:3157
58
- #: contact_form.php:3199
 
 
59
  msgid "Message"
60
  msgstr "Boodskap"
61
 
62
- #: contact_form.php:328 contact_form.php:1674 contact_form.php:1713
63
- #: contact_form.php:2004
 
64
  msgid "Attachment"
65
  msgstr "Aanhegsel:"
66
 
67
- #: contact_form.php:329
68
  msgid ""
69
  "Supported file types: HTML, TXT, CSS, GIF, PNG, JPEG, JPG, TIFF, BMP, AI, "
70
  "EPS, PS, CSV, RTF, PDF, DOC, DOCX, XLS, XLSX, ZIP, RAR, WAV, MP3, PPT."
@@ -72,176 +93,308 @@ msgstr ""
72
  "Ondersteunde datalêer tipes: HTML, TXT, CSS, GIF, PNG, JPEG, JPG, TIFF, BMP, "
73
  "AI, EPS, PS, CSV, RTF, PDF, DOC, DOCX, XLS, XLSX, ZIP, RAR, WAV, MP3, PPT."
74
 
75
- #: contact_form.php:330 contact_form.php:1676 contact_form.php:1715
 
76
  msgid "Send me a copy"
77
  msgstr "Stuur vir my 'n kopie"
78
 
79
- #: contact_form.php:331 contact_form.php:1677 contact_form.php:1716
 
80
  msgid "I consent to having this site collect my personal data."
81
  msgstr ""
82
 
83
- #: contact_form.php:332 contact_form.php:1678 contact_form.php:1717
 
84
  msgid "Submit"
85
  msgstr "Dien in"
86
 
87
- #: contact_form.php:333
88
  msgid "Your name is required."
89
  msgstr "Jou naam word benodig."
90
 
91
- #: contact_form.php:334
92
  msgid "Address is required."
93
  msgstr "Adres word benodig."
94
 
95
- #: contact_form.php:335
96
  msgid "A valid email address is required."
97
  msgstr "'n Geldige epos adres word benodig."
98
 
99
- #: contact_form.php:336
100
  msgid "Phone number is required."
101
  msgstr "'n Telefoon nommer word benodig."
102
 
103
- #: contact_form.php:337
104
  msgid "Subject is required."
105
  msgstr "'n Onderwerp word benodig."
106
 
107
- #: contact_form.php:338
108
  msgid "Message text is required."
109
  msgstr "'n Boodskap teks word benodig ."
110
 
111
- #: contact_form.php:339
112
  msgid "File format is not valid."
113
  msgstr "Datalêer formaat is nie geldig nie."
114
 
115
- #: contact_form.php:340
116
  msgid "File upload error."
117
  msgstr "Oplaai van datalêer foutief."
118
 
119
- #: contact_form.php:341
120
  msgid "The file could not be uploaded."
121
  msgstr "Die datalêer kon nie opgelaai word nie."
122
 
123
- #: contact_form.php:342
124
  msgid "This file is too large."
125
  msgstr "Die datalêer is te groot."
126
 
127
- #: contact_form.php:343
128
  msgid "Please fill out the CAPTCHA."
129
  msgstr "Vul asseblief die CAPTCHA in."
130
 
131
- #: contact_form.php:344
132
  msgid "Please make corrections below and try again."
133
  msgstr "Korregeer asseblief die foute hierdoner en probeer weer."
134
 
135
- #: contact_form.php:346
136
  msgid "Thank you for contacting us."
137
  msgstr "Dankie dat jy ons gekontak het."
138
 
139
- #: contact_form.php:683 contact_form.php:949
140
- msgid "Settings saved."
141
- msgstr "Verstellings is gestoor."
142
 
143
- #: contact_form.php:894
144
  msgid ""
145
- "Email 'FROM' field option was changed, which may cause email messages being "
146
- "moved to the spam folder or email delivery failures."
147
  msgstr ""
148
 
149
- #: contact_form.php:904
150
  msgid ""
151
- "If the 'Redirect to page' option is selected then the URL field should be in "
152
- "the following format"
 
153
  msgstr ""
154
- "As die 'Redirect to page' opsie geselekteer is moet die URL veld in die "
155
- "volgende formaat wees"
156
 
157
- #: contact_form.php:911
158
- #, fuzzy
159
- msgid "Such user does not exist."
160
- msgstr "Hierdie gebruiker bestaan nie. Die instellings is nie gestoor nie."
161
 
162
- #: contact_form.php:921
163
- #, fuzzy
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
164
  msgid ""
165
- "Please enter a valid email address in the 'Use this email address' field."
 
166
  msgstr ""
167
- "Vul asseblief 'n geldige epos adres in die 'FROM/VAN' veld. Die verstellings "
168
- "is nie gestoor nie."
 
 
 
 
 
 
 
 
169
 
170
- #: contact_form.php:929
 
 
 
 
171
  #, fuzzy
172
- msgid "Please enter a valid email address in the 'FROM' field."
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
173
  msgstr ""
174
- "Vul asseblief 'n geldige epos adres in die 'FROM/VAN' veld. Die verstellings "
175
- "is nie gestoor nie."
176
 
177
- #: contact_form.php:951
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
178
  #, fuzzy
179
- msgid "Settings are not saved."
180
- msgstr "Verstellings is gestoor."
181
 
182
- #: contact_form.php:989
183
- msgid "All plugin settings were restored."
184
  msgstr ""
185
 
186
- #: contact_form.php:995
187
- msgid "How to Use Step-by-step Instruction"
188
  msgstr ""
189
 
190
- #: contact_form.php:998 contact_form.php:3343 contact_form.php:3357
191
- msgid "Settings"
192
- msgstr "Verstellings"
 
193
 
194
- #: contact_form.php:999
195
  #, fuzzy
196
- msgid "Additional settings"
197
- msgstr "Addisionele opsies"
198
 
199
- #: contact_form.php:1000
 
 
 
 
 
 
200
  msgid "Appearance"
201
  msgstr ""
202
 
203
- #: contact_form.php:1001
204
- msgid "Custom code"
205
  msgstr ""
206
 
207
- #: contact_form.php:1002
208
- msgid "Go PRO"
209
- msgstr "Gaan PRO"
210
 
211
- #: contact_form.php:1013
212
- #, fuzzy
213
- msgid "Notice"
214
- msgstr "Kennisgewing:"
215
 
216
- #: contact_form.php:1017
217
- msgid "NEW_FORM"
218
  msgstr ""
219
 
220
- #: contact_form.php:1018
 
221
  msgid ""
222
- "If you want to create multiple contact forms, please install the Contact "
223
- "Form Multi plugin."
224
  msgstr ""
225
 
226
- #: contact_form.php:1027
227
- #, fuzzy, php-format
228
  msgid ""
229
- "If you would like to add a Contact Form to your page or post, please use %s "
230
- "button"
231
  msgstr ""
232
- "As u die Kontak Vorm by u webstuiste wil bylas, kopieër en plak net die "
233
- "kortkode na u post, bladsy of widget:"
234
 
235
- #: contact_form.php:1033
236
- #, php-format
237
  msgid ""
238
- "You can add the Contact Form to your page or post by clicking on %s button "
239
- "in the content edit block using the Visual mode. If the button isn't "
240
- "displayed, please use the shortcode %s or %s where * stands for Contact Form "
241
- "language."
242
  msgstr ""
 
 
243
 
244
- #: contact_form.php:1042
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
245
  msgid ""
246
  "If you leave the fields empty, the messages will be sent to the email "
247
  "address specified during registration."
@@ -249,17 +402,17 @@ msgstr ""
249
  "As u die velde leeg laat, sal die boodskappe gestuur word na die epos adres "
250
  "wat gespesifiseer was gedurende registrasie"
251
 
252
- #: contact_form.php:1045
253
  #, fuzzy
254
  msgid "The user's email address"
255
  msgstr "Die gebruiker se epos adres:"
256
 
257
- #: contact_form.php:1049
258
  #, fuzzy
259
  msgid "Select a username"
260
  msgstr "Skep 'n gebruikersnaam"
261
 
262
- #: contact_form.php:1062
263
  #, fuzzy
264
  msgid ""
265
  "Select a username of the person who should get the messages from the contact "
@@ -268,111 +421,102 @@ msgstr ""
268
  "Sleutel 'n gebruikersnaam in vir die persoon wat die boodskappe moet kry van "
269
  "die kontak vorm."
270
 
271
- #: contact_form.php:1066
272
  #, fuzzy
273
  msgid "Use this email address"
274
  msgstr "Gebruik hierdie epos adres:"
275
 
276
- #: contact_form.php:1070
277
  #, fuzzy
278
  msgid "Enter the email address for receiving messages"
279
  msgstr "Sleutel in die epos adres in waar u die boodskappe aangestuur wil he."
280
 
281
- #: contact_form.php:1077 contact_form.php:1588 contact_form.php:1797
282
- #: contact_form.php:1903 contact_form.php:3440
283
- msgid "Close"
284
- msgstr ""
285
-
286
- #: contact_form.php:1081
287
  #, fuzzy
288
  msgid "Add department selectbox to the contact form"
289
  msgstr "Voeg 'n departementele keuse-boks by die kontak vorm:"
290
 
291
- #: contact_form.php:1089 contact_form.php:1597 contact_form.php:1816
292
- #: contact_form.php:2109
293
- msgid "If you upgrade to Pro version all your settings will be saved."
294
- msgstr "As u opgradeer na die Pro weergawe sal die verstellings gestoor word."
295
-
296
- #: contact_form.php:1096 contact_form.php:1418 contact_form.php:1602
297
- #: contact_form.php:1823 contact_form.php:2116
298
- msgid "Upgrade to Pro"
299
- msgstr ""
300
-
301
- #: contact_form.php:1104
302
  msgid "Save emails to the database"
303
  msgstr "Stoor eposse na die databasis."
304
 
305
- #: contact_form.php:1116 contact_form.php:1130 contact_form.php:1137
 
 
306
  msgid "Using"
307
  msgstr "In Gebruik"
308
 
309
- #: contact_form.php:1122 contact_form.php:1490 contact_form.php:1531
310
- #: contact_form.php:1566
 
 
311
  msgid "Please activate the appropriate option on"
312
  msgstr ""
313
 
314
- #: contact_form.php:1125 contact_form.php:1493 contact_form.php:1534
315
- #: contact_form.php:1569
 
 
316
  #, fuzzy
317
  msgid "settings page"
318
  msgstr "Die verstelling bladsy"
319
 
320
- #: contact_form.php:1131 contact_form.php:1500 contact_form.php:1542
321
- #: contact_form.php:1576
 
 
322
  msgid "Activate"
323
  msgstr "Aktiveer"
324
 
325
- #: contact_form.php:1138 contact_form.php:1509 contact_form.php:1548
326
- #: contact_form.php:1581
 
 
327
  msgid "Download"
328
  msgstr "Download"
329
 
330
- #: contact_form.php:1150
331
  msgid "Sending method"
332
  msgstr ""
333
 
334
- #: contact_form.php:1155
335
  msgid "Wp-mail"
336
  msgstr "Wp-mail"
337
 
338
- #: contact_form.php:1157
339
  #, fuzzy
340
  msgid "You can use the Wordpress wp_mail function for mailing"
341
  msgstr "U kan die wp_mail funksie gebruik vir eposse"
342
 
343
- #: contact_form.php:1160
344
  msgid "Mail"
345
  msgstr "Mail"
346
 
347
- #: contact_form.php:1162
348
  #, fuzzy
349
  msgid "You can use the PHP mail function for mailing"
350
  msgstr "U kan die wp_mail funksie gebruik vir eposse"
351
 
352
- #: contact_form.php:1167
353
  msgid "'FROM' field"
354
  msgstr ""
355
 
356
- #: contact_form.php:1183
357
  msgid "User name"
358
  msgstr "Gebruikersnaam"
359
 
360
- #: contact_form.php:1185
361
  msgid ""
362
  "The name of the user who fills the form will be used in the field 'From'."
363
  msgstr ""
364
  "Die naam van die gebruiker wie die vorm invul sal gebruik word vir die 'From/"
365
  "Van' veld."
366
 
367
- #: contact_form.php:1196 contact_form.php:3147 contact_form.php:3191
368
- msgid "Email"
369
- msgstr "Epos"
370
-
371
- #: contact_form.php:1207
372
  msgid "User email"
373
  msgstr "Gebruiker epos"
374
 
375
- #: contact_form.php:1209
376
  msgid ""
377
  "The email address of the user who fills the form will be used in the field "
378
  "'From'."
@@ -380,587 +524,527 @@ msgstr ""
380
  "Die epos adres van die gebruiker wie die vorm invul sal gebruik word in die "
381
  "'From/van' veld."
382
 
383
- #: contact_form.php:1218
384
  msgid ""
385
  "If this option is changed, email messages may be moved to the spam folder or "
386
  "email delivery failures may occur."
387
  msgstr ""
388
 
389
- #: contact_form.php:1227
390
  msgid "Required symbol"
391
  msgstr "Benodigde simbool"
392
 
393
- #: contact_form.php:1237
394
  msgid "Fields"
395
  msgstr "Velde"
396
 
397
- #: contact_form.php:1238 contact_form.php:1265 contact_form.php:1292
398
- #: contact_form.php:1312 contact_form.php:1351 contact_form.php:1433
 
 
 
 
399
  msgid "Used"
400
  msgstr "Gebruik"
401
 
402
- #: contact_form.php:1239 contact_form.php:1254 contact_form.php:1269
403
- #: contact_form.php:1296 contact_form.php:1316 contact_form.php:1329
404
- #: contact_form.php:1355 contact_form.php:1368 contact_form.php:1392
 
 
 
 
 
405
  msgid "Required"
406
  msgstr "Benodig"
407
 
408
- #: contact_form.php:1241 contact_form.php:1274 contact_form.php:1334
409
- #: contact_form.php:1373 contact_form.php:1397
 
 
 
410
  msgid "Visible"
411
  msgstr "Sigbaar"
412
 
413
- #: contact_form.php:1242 contact_form.php:1278 contact_form.php:1338
414
- #: contact_form.php:1377 contact_form.php:1401
 
 
 
415
  msgid "Disabled for editing"
416
  msgstr "Gedeaktiveer vir wysiging"
417
 
418
- #: contact_form.php:1243 contact_form.php:1302 contact_form.php:1381
419
- #: contact_form.php:1405
 
 
420
  msgid "Field's default value"
421
  msgstr "Veld se verstekwaarde"
422
 
423
- #: contact_form.php:1250
424
  msgid "Department selectbox"
425
  msgstr ""
426
 
427
- #: contact_form.php:1282
428
  msgid "Use User's name as a default value if the user is logged in."
429
  msgstr ""
430
 
431
- #: contact_form.php:1283 contact_form.php:1343
 
432
  msgid ""
433
  "'Visible' and 'Disabled for editing' options will be applied only to logged-"
434
  "in users."
435
  msgstr ""
436
 
437
- #: contact_form.php:1289
438
  msgid "Location selectbox"
439
  msgstr ""
440
 
441
- #: contact_form.php:1342
442
  msgid "Use User's email as a default value if the user is logged in."
443
  msgstr ""
444
 
445
- #: contact_form.php:1426
446
  msgid "Attachment block"
447
  msgstr "Aanhegsel blok"
448
 
449
- #: contact_form.php:1428
450
  msgid "Users can attach the following file formats"
451
  msgstr "Gebruikers kan die volgende dataleêr formate aanheg"
452
 
453
- #: contact_form.php:1446
454
  msgid "Add to the form"
455
  msgstr "Voeg by die vorm by"
456
 
457
- #: contact_form.php:1451
458
  msgid "Tips below the Attachment"
459
  msgstr "Wenke onder die Aanhegsel"
460
 
461
- #: contact_form.php:1458
462
  msgid "'Send me a copy' block"
463
  msgstr "'Stuur vir my 'n kopie' blok"
464
 
465
- #: contact_form.php:1465
466
  msgid "GDPR Compliance"
467
  msgstr ""
468
 
469
- #: contact_form.php:1470
470
  msgid "Link to Privacy Policy Page"
471
  msgstr ""
472
 
473
- #: contact_form.php:1474
474
  msgid "Text for Privacy Policy Link"
475
  msgstr ""
476
 
477
- #: contact_form.php:1502
478
  msgid "Activate for network"
479
  msgstr ""
480
 
481
- #: contact_form.php:1592
482
  msgid "Agreement checkbox"
483
  msgstr "Ooreenstemming checkbox"
484
 
485
- #: contact_form.php:1592
486
  msgid "Required checkbox for submitting the form"
487
  msgstr "Benodigde checkbox om die vorm in te dien"
488
 
489
- #: contact_form.php:1593
490
  msgid "Optional checkbox"
491
  msgstr "Opsie checkbox"
492
 
493
- #: contact_form.php:1593
494
  msgid "Optional checkbox, the results of which will be displayed in email"
495
  msgstr "Opsionele checkbox, die resultate waarvan in die epos sal verskyn"
496
 
497
- #: contact_form.php:1611
498
  msgid "Delete an attachment file from the server after the email is sent"
499
  msgstr "Verwyder 'n aanhegsel dataleêr van die server na epos gestuur is"
500
 
501
- #: contact_form.php:1617
502
  msgid "Email in HTML format sending"
503
  msgstr "E-Mail in HTML Format"
504
 
505
- #: contact_form.php:1621
506
  msgid "Display additional info in the email"
507
  msgstr "Toon addisionele inligting in die epos"
508
 
509
- #: contact_form.php:1627
510
  #, fuzzy
511
  msgid "Sent from (IP address)"
512
  msgstr "Gestuur van (IP-Adres)"
513
 
514
- #: contact_form.php:1627
515
  msgid "Example: Sent from (IP address): 127.0.0.1"
516
  msgstr ""
517
 
518
- #: contact_form.php:1628 contact_form.php:3096 contact_form.php:3098
519
- msgid "Date/Time"
520
- msgstr "Datum/Tyd"
521
-
522
- #: contact_form.php:1628
523
  msgid "Example: Date/Time: August 19, 2013 8:50 pm"
524
  msgstr ""
525
 
526
- #: contact_form.php:1629 contact_form.php:3102 contact_form.php:3104
527
- msgid "Sent from (referer)"
528
- msgstr "Gestuur van (referer)"
529
-
530
- #: contact_form.php:1629
531
  msgid ""
532
  "Example: Sent from (referer): https://bestwebsoft.com/contacts/contact-us/"
533
  msgstr ""
534
 
535
- #: contact_form.php:1630 contact_form.php:3108 contact_form.php:3110
536
- msgid "Using (user agent)"
537
- msgstr "Gebruik (user agent)"
538
-
539
- #: contact_form.php:1630
540
  msgid ""
541
  "Example: Using (user agent): Mozilla/5.0 (Windows NT 6.2; WOW64) "
542
  "AppleWebKit/537.36 (KHTML, like Gecko) Chrome/28.0.1500.95 Safari/537.36"
543
  msgstr ""
544
 
545
- #: contact_form.php:1635
546
  msgid "Language settings for the field names in the form"
547
  msgstr "Taal verstellings vir die naamvelde in die vorm"
548
 
549
- #: contact_form.php:1644
550
  msgid "Add a language"
551
  msgstr "Voeg 'n taal by"
552
 
553
- #: contact_form.php:1648
554
  msgid "Change the names of the contact form fields and error messages"
555
  msgstr "Verander die name van die kontak vorm velde en foutboodskappe"
556
 
557
- #: contact_form.php:1653 contact_form.php:1751 contact_form.php:1883
558
- #: contact_form.php:2023 contact_form.php:2028 contact_form.php:2038
559
- #: contact_form.php:2043 contact_form.php:2048 contact_form.php:2053
560
- #: contact_form.php:2063 contact_form.php:2068 contact_form.php:2077
561
- #: contact_form.php:2091 contact_form.php:2096 contact_form.php:2101
562
  msgid "Default"
563
  msgstr "Verstek"
564
 
565
- #: contact_form.php:1666 contact_form.php:1705
 
566
  msgid "click to expand/hide the list"
567
  msgstr "Kliek om uit te brei/lys te versteek"
568
 
569
- #: contact_form.php:1675 contact_form.php:1714
 
570
  msgid "Tips below the Attachment block"
571
  msgstr "Wenke onder toe Aanhegsel blok"
572
 
573
- #: contact_form.php:1679 contact_form.php:1718
 
574
  msgid "Error message for the Name field"
575
  msgstr "FFoutboodskap vir die Naamveld"
576
 
577
- #: contact_form.php:1680 contact_form.php:1719
 
578
  msgid "Error message for the Address field"
579
  msgstr "Foutboodskap vir die Adres veld"
580
 
581
- #: contact_form.php:1681 contact_form.php:1720
 
582
  msgid "Error message for the Email field"
583
  msgstr "Foutboodskap vir die Epos veld"
584
 
585
- #: contact_form.php:1682 contact_form.php:1721
 
586
  msgid "Error message for the Phone field"
587
  msgstr "Foutboodskap vir die Telefoon Nommer veld"
588
 
589
- #: contact_form.php:1683 contact_form.php:1722
 
590
  msgid "Error message for the Subject field"
591
  msgstr "Foutboodskap vir die Onderwerp veld"
592
 
593
- #: contact_form.php:1684 contact_form.php:1723
 
594
  msgid "Error message for the Message field"
595
  msgstr "Foutboodskap vir die Boodskap veld"
596
 
597
- #: contact_form.php:1685 contact_form.php:1724
 
598
  msgid "Error message about the file type for the Attachment field"
599
  msgstr "Foutboodskap oor die dataleêr tipe vir die Aanhegsel veld"
600
 
601
- #: contact_form.php:1686 contact_form.php:1725
 
602
  msgid ""
603
  "Error message while uploading a file for the Attachment field to the server"
604
  msgstr ""
605
  "Foutboodskap tydens dataleêr oplaai vir die Aanhegsel veld na die server"
606
 
607
- #: contact_form.php:1687 contact_form.php:1726
 
608
  msgid "Error message while moving the file for the Attachment field"
609
  msgstr "Foutboodskap tydens die skuif van dataleêr vir die Aanhegsel veld"
610
 
611
- #: contact_form.php:1688 contact_form.php:1727
 
612
  msgid "Error message when file size limit for the Attachment field is exceeded"
613
  msgstr ""
614
  "Foutboodskap wanneer die dataleêr limiet vir die Aanhegsel veld oorskry is"
615
 
616
- #: contact_form.php:1689 contact_form.php:1728
 
617
  msgid "Error message for the Captcha field"
618
  msgstr "Foutboodskap vir die Captcha veld"
619
 
620
- #: contact_form.php:1690 contact_form.php:1729
 
621
  msgid "Error message for the whole form"
622
  msgstr "Foutboodskap vir die hele vorm"
623
 
624
- #: contact_form.php:1693 contact_form.php:1695 contact_form.php:1732
625
- #: contact_form.php:1734 contact_form.php:1766 contact_form.php:1768
626
- #: contact_form.php:1780 contact_form.php:1782 contact_form.php:3530
627
- #: contact_form.php:3532
628
- msgid "Use shortcode"
629
- msgstr "Gebruik kortkode"
630
-
631
- #: contact_form.php:1693 contact_form.php:1695 contact_form.php:1732
632
- #: contact_form.php:1734 contact_form.php:1766 contact_form.php:1768
633
- #: contact_form.php:1780 contact_form.php:1782 contact_form.php:3530
634
- #: contact_form.php:3532
635
- msgid "for this language"
636
- msgstr "vir hierdie taal"
637
-
638
- #: contact_form.php:1742
639
  #, fuzzy
640
  msgid "Use the changed names of the contact form fields in the email"
641
  msgstr "Verander die name van die kontak vorm velde en foutboodskappe"
642
 
643
- #: contact_form.php:1748
644
  msgid "Action after email is sent"
645
  msgstr "Aksie na epos gestuur is"
646
 
647
- #: contact_form.php:1750
648
  msgid "Display text"
649
  msgstr "Toon teks"
650
 
651
- #: contact_form.php:1764 contact_form.php:1778
 
652
  msgid "Text"
653
  msgstr "teks"
654
 
655
- #: contact_form.php:1789
656
  msgid "Redirect to the page"
657
  msgstr "Herlei na die bladsy"
658
 
659
- #: contact_form.php:1790
660
  msgid "Url"
661
  msgstr "Url"
662
 
663
- #: contact_form.php:1801
664
- msgid "Add field 'Reply-To' to the email header"
665
- msgstr ""
666
-
667
- #: contact_form.php:1803
668
- msgid "Field 'Reply-To' will be initialized by user email"
669
- msgstr ""
670
-
671
- #: contact_form.php:1807
672
- msgid "Auto Response"
673
- msgstr ""
674
-
675
- #: contact_form.php:1811
676
  #, php-format
677
  msgid ""
678
- "You can use %%NAME%% to display data from the email field and %%MESSAGE%% to "
679
- "display data from the Message field, as well as %%SITENAME%% to display blog "
680
- "name."
681
  msgstr ""
682
 
683
- #: contact_form.php:1833 contact_form.php:2375
684
- msgid "Save Changes"
685
- msgstr "Stoor veranderinge"
686
-
687
- #: contact_form.php:1846
688
- #, php-format
689
- msgid ""
690
- "Please enable JavaScript to change '%s', '%s' options and for fields sorting."
691
  msgstr ""
692
 
693
- #: contact_form.php:1846 contact_form.php:1855
694
- msgid "Form layout"
 
 
 
 
 
 
 
695
  msgstr ""
696
 
697
- #: contact_form.php:1846 contact_form.php:1867
 
698
  #, fuzzy
699
  msgid "Submit position"
700
  msgstr "Indien knoppie"
701
 
702
- #: contact_form.php:1859
 
 
 
 
 
 
 
 
 
 
703
  msgid "One column"
704
  msgstr ""
705
 
706
- #: contact_form.php:1862
707
  msgid "Two columns"
708
  msgstr ""
709
 
710
- #: contact_form.php:1871 contact_form.php:1911 contact_form.php:1929
711
- #: contact_form.php:1944
 
 
712
  msgid "Left"
713
  msgstr ""
714
 
715
- #: contact_form.php:1874 contact_form.php:1917 contact_form.php:1932
716
- #: contact_form.php:1950
 
 
717
  msgid "Right"
718
  msgstr ""
719
 
720
- #: contact_form.php:1879
721
  msgid "Width"
722
  msgstr ""
723
 
724
- #: contact_form.php:1887
725
  msgid "Custom"
726
  msgstr ""
727
 
728
- #: contact_form.php:1894
729
  msgid "px"
730
  msgstr ""
731
 
732
- #: contact_form.php:1907
733
  msgid "Form align"
734
  msgstr ""
735
 
736
- #: contact_form.php:1914 contact_form.php:1947
 
737
  msgid "Center"
738
  msgstr ""
739
 
740
- #: contact_form.php:1922
741
- #, fuzzy
742
- msgid "Labels position"
743
- msgstr "Indien knoppie"
744
-
745
- #: contact_form.php:1926
746
  msgid "Top"
747
  msgstr ""
748
 
749
- #: contact_form.php:1935
750
  msgid "Bottom"
751
  msgstr ""
752
 
753
- #: contact_form.php:1940
754
- msgid "Labels align"
755
- msgstr ""
756
-
757
- #: contact_form.php:1955
758
  msgid "Errors output"
759
  msgstr "Foutboodskap uitset"
760
 
761
- #: contact_form.php:1958
762
  msgid "Display error messages"
763
  msgstr "Toon foutboodskappe"
764
 
765
- #: contact_form.php:1959
766
  msgid "Color of the input field errors."
767
  msgstr "Kleur van die inset veld foutboodskappe"
768
 
769
- #: contact_form.php:1960
770
  msgid "Display error messages & color of the input field errors"
771
  msgstr "Toon foutboodskappe & kleur van die inset veld foutboodskappe"
772
 
773
- #: contact_form.php:1965
774
  msgid "Add placeholder to the input blocks"
775
  msgstr "Voeg 'n plekhouer by die inset blokke"
776
 
777
- #: contact_form.php:1971
778
- msgid "Add tooltips"
779
- msgstr "Voeg tool-wenke"
780
-
781
- #: contact_form.php:1985
782
  msgid "Email address"
783
  msgstr "Epos Adres:"
784
 
785
- #: contact_form.php:1990 contact_form.php:3163 contact_form.php:3204
786
- msgid "Phone Number"
787
- msgstr "Telefoon Nommer:"
788
-
789
- #: contact_form.php:2016
790
- msgid "Style options"
791
- msgstr "Styl opsies"
792
-
793
- #: contact_form.php:2020
794
  msgid "Text color"
795
  msgstr "Teks kleur"
796
 
797
- #: contact_form.php:2025
798
  msgid "Label text color"
799
  msgstr "Etiket teks kleur"
800
 
801
- #: contact_form.php:2030
802
  msgid "Placeholder color"
803
  msgstr "Plekhouer kleur"
804
 
805
- #: contact_form.php:2035
806
  msgid "Errors color"
807
  msgstr "Foutboodskap kleur"
808
 
809
- #: contact_form.php:2040
810
  msgid "Error text color"
811
  msgstr "Foutboodskap teks kleur"
812
 
813
- #: contact_form.php:2045
814
  msgid "Background color of the input field errors"
815
  msgstr "Agtergrond kleur van die inset veld foutboodskappe"
816
 
817
- #: contact_form.php:2050
818
  msgid "Border color of the input field errors"
819
  msgstr "Rand-kleur van die inset veld foutboodskappe"
820
 
821
- #: contact_form.php:2055
822
  msgid "Placeholder color of the input field errors"
823
  msgstr "Plekhouer kleur van die inset veld foutboodskappe"
824
 
825
- #: contact_form.php:2060
826
  msgid "Input fields"
827
  msgstr "Inset velde"
828
 
829
- #: contact_form.php:2065
830
  msgid "Input fields background color"
831
  msgstr "Inset velde agtergrond kleur"
832
 
833
- #: contact_form.php:2070
834
  msgid "Text fields color"
835
  msgstr "Teks velde kleur"
836
 
837
- #: contact_form.php:2074
838
  msgid "Border width in px, numbers only"
839
  msgstr "Rand wydte in px, nommers alleenlik"
840
 
841
- #: contact_form.php:2079 contact_form.php:2103
 
842
  msgid "Border color"
843
  msgstr "Rand kleur"
844
 
845
- #: contact_form.php:2084
846
  msgid "Submit button"
847
  msgstr "Indien knoppie"
848
 
849
- #: contact_form.php:2088
850
  msgid "Width in px, numbers only"
851
  msgstr "Wydte in px, nommers alleenlik"
852
 
853
- #: contact_form.php:2093
854
  msgid "Button color"
855
  msgstr "Knoppie Kleur"
856
 
857
- #: contact_form.php:2098
858
  msgid "Button text color"
859
  msgstr "Knoppie teks kleur"
860
 
861
- #: contact_form.php:2127
862
  #, fuzzy
863
  msgid "Contact Form | Preview"
864
  msgstr "Kontak Vorm Pro | Voorskou"
865
 
866
- #: contact_form.php:2128
867
  msgid "Drag the necessary field to sort fields."
868
  msgstr ""
869
 
870
- #: contact_form.php:2364
871
- #, fuzzy
872
- msgid ""
873
- "If you would like to add the Contact Form to your website, just copy and "
874
- "paste this shortcode to your post or page or widget"
875
  msgstr ""
876
- "As u die Kontak Vorm by u webstuiste wil bylas, kopieër en plak net die "
877
- "kortkode na u post, bladsy of widget:"
878
-
879
- #: contact_form.php:2486
880
- msgid "Sorry, email message could not be delivered."
881
- msgstr "Verskoning, die epos kon nie gestuur word nie."
882
-
883
- #: contact_form.php:3090 contact_form.php:3092
884
- msgid "Sent from (ip address)"
885
- msgstr "Gestuur van (IP-Adres)"
886
-
887
- #: contact_form.php:3120
888
- msgid "Contact from"
889
- msgstr "Kontak Vorm"
890
-
891
- #: contact_form.php:3125 contact_form.php:3174
892
- msgid "Site"
893
- msgstr "Webtuiste"
894
 
895
- #: contact_form.php:3286
896
- msgid ""
897
- "If you can see this MIME, it means that the MIME type is not supported by "
898
- "your email client!"
899
  msgstr ""
900
- "As u die MIME kan sie, beteken dit dat die MIME tipe nie ondersteun word "
901
- "deur u epos klient nie!"
902
-
903
- #: contact_form.php:3358
904
- msgid "FAQ"
905
- msgstr "Gereeld Gestelde Vrae (FAQ)"
906
 
907
- #: contact_form.php:3359
908
- msgid "Support"
909
- msgstr "Steun"
910
-
911
- #: contact_form.php:3408
912
- msgid "Are you sure that you want to delete this language data?"
913
- msgstr "Is u seker dat u die taal data wil verwyder?"
914
 
915
- #: contact_form.php:3431
916
  #, fuzzy
917
- msgid "Add multiple forms"
918
- msgstr "Voeg by die vorm by"
919
-
920
- #: contact_form.php:3431
921
- msgid ""
922
- "Install Contact Form Multi plugin to create unlimited number of contact "
923
- "forms."
924
- msgstr ""
925
-
926
- #: contact_form.php:3436
927
- msgid "Learn more"
928
- msgstr ""
929
-
930
- #: contact_form.php:3494
931
- msgid "Error"
932
- msgstr ""
933
 
934
- #: contact_form.php:3494 contact_form.php:3496
935
- msgid "Illegal language code"
936
- msgstr ""
937
 
938
- #: contact_form.php:3681
939
- msgid "Close notice"
940
- msgstr ""
941
 
942
- #: contact_form.php:3686
943
  #, fuzzy
944
- msgid "allows to store your messages to the database."
945
- msgstr "Stoor eposse na die databasis."
946
 
947
- #: contact_form.php:3687
948
- msgid "Manage messages that have been sent from your website."
949
- msgstr ""
950
 
951
- #: contact_form.php:3690
952
- msgid "Learn More"
953
- msgstr ""
954
-
955
- #: contact_form.php:3750
956
  #, fuzzy
957
- msgid "Contact form"
958
- msgstr "Kontak Vorm"
959
 
960
- #: contact_form.php:3763 contact_form.php:3773
961
  #, fuzzy
962
- msgid "Language"
963
- msgstr "Voeg 'n taal by"
 
 
 
 
964
 
965
  #~ msgid "Example: Sent from (IP address):\t127.0.0.1"
966
  #~ msgstr "Voorbeeld: Gestuur van (IP-Adres):\t127.0.0.1"
2
  msgstr ""
3
  "Project-Id-Version: Contact Form\n"
4
  "Report-Msgid-Bugs-To: \n"
5
+ "POT-Creation-Date: 2019-02-25 16:25+0200\n"
6
+ "PO-Revision-Date: 2019-02-25 16:26+0200\n"
7
  "Last-Translator: plugin@bestwebsoft.com <plugin@bestwebsoft.com>\n"
8
  "Language-Team: Aldu <alducornelissen@gmail.com>\n"
9
  "Language: af\n"
17
  "Plural-Forms: nplurals=2; plural=(n != 1);\n"
18
  "X-Poedit-SearchPath-0: .\n"
19
 
20
+ #: contact_form.php:39 contact_form.php:47 contact_form.php:647
21
+ #: includes/class-cntctfrm-settings.php:425
22
  msgid "Contact Form Settings"
23
  msgstr "Kontak Form Verstellings"
24
 
25
+ #: contact_form.php:48 contact_form.php:1619 contact_form.php:1633
26
+ #: includes/class-cntctfrm-settings.php:27
27
+ msgid "Settings"
28
+ msgstr "Verstellings"
29
+
30
+ #: contact_form.php:63 includes/class-cntctfrm-settings.php:483
31
+ #: includes/class-cntctfrm-settings.php:817
32
+ #: includes/class-cntctfrm-settings.php:998
33
+ #: includes/class-cntctfrm-settings.php:1513
34
+ msgid "Upgrade to Pro"
35
+ msgstr ""
36
 
37
+ #: contact_form.php:350 contact_form.php:1410 contact_form.php:1456
38
+ #: includes/class-cntctfrm-settings.php:574
39
+ #: includes/class-cntctfrm-settings.php:664
40
+ #: includes/class-cntctfrm-settings.php:1064
41
+ #: includes/class-cntctfrm-settings.php:1103
42
+ #: includes/class-cntctfrm-settings.php:1344
43
  msgid "Name"
44
  msgstr "Naam"
45
 
46
+ #: contact_form.php:351 contact_form.php:1417 contact_form.php:1462
47
+ #: includes/class-cntctfrm-settings.php:711
48
+ #: includes/class-cntctfrm-settings.php:1065
49
+ #: includes/class-cntctfrm-settings.php:1104
50
+ #: includes/class-cntctfrm-settings.php:1349
51
  msgid "Address"
52
  msgstr "Adres: "
53
 
54
+ #: contact_form.php:352 includes/class-cntctfrm-settings.php:727
55
+ #: includes/class-cntctfrm-settings.php:1066
56
+ #: includes/class-cntctfrm-settings.php:1105
57
  msgid "Email Address"
58
  msgstr "Epos Adres:"
59
 
60
+ #: contact_form.php:353 includes/class-cntctfrm-settings.php:747
61
+ #: includes/class-cntctfrm-settings.php:1067
62
+ #: includes/class-cntctfrm-settings.php:1106
63
  msgid "Phone number"
64
  msgstr "Telefoon nommer:"
65
 
66
+ #: contact_form.php:354 contact_form.php:1428 contact_form.php:1471
67
+ #: includes/class-cntctfrm-settings.php:763
68
+ #: includes/class-cntctfrm-settings.php:1068
69
+ #: includes/class-cntctfrm-settings.php:1107
70
+ #: includes/class-cntctfrm-settings.php:1364
71
  msgid "Subject"
72
  msgstr "Onderwerp"
73
 
74
+ #: contact_form.php:355 contact_form.php:1433 contact_form.php:1475
75
+ #: includes/class-cntctfrm-settings.php:787
76
+ #: includes/class-cntctfrm-settings.php:1069
77
+ #: includes/class-cntctfrm-settings.php:1108
78
+ #: includes/class-cntctfrm-settings.php:1368
79
  msgid "Message"
80
  msgstr "Boodskap"
81
 
82
+ #: contact_form.php:356 includes/class-cntctfrm-settings.php:1070
83
+ #: includes/class-cntctfrm-settings.php:1109
84
+ #: includes/class-cntctfrm-settings.php:1373
85
  msgid "Attachment"
86
  msgstr "Aanhegsel:"
87
 
88
+ #: contact_form.php:357
89
  msgid ""
90
  "Supported file types: HTML, TXT, CSS, GIF, PNG, JPEG, JPG, TIFF, BMP, AI, "
91
  "EPS, PS, CSV, RTF, PDF, DOC, DOCX, XLS, XLSX, ZIP, RAR, WAV, MP3, PPT."
93
  "Ondersteunde datalêer tipes: HTML, TXT, CSS, GIF, PNG, JPEG, JPG, TIFF, BMP, "
94
  "AI, EPS, PS, CSV, RTF, PDF, DOC, DOCX, XLS, XLSX, ZIP, RAR, WAV, MP3, PPT."
95
 
96
+ #: contact_form.php:358 includes/class-cntctfrm-settings.php:1072
97
+ #: includes/class-cntctfrm-settings.php:1111
98
  msgid "Send me a copy"
99
  msgstr "Stuur vir my 'n kopie"
100
 
101
+ #: contact_form.php:359 includes/class-cntctfrm-settings.php:1073
102
+ #: includes/class-cntctfrm-settings.php:1112
103
  msgid "I consent to having this site collect my personal data."
104
  msgstr ""
105
 
106
+ #: contact_form.php:360 includes/class-cntctfrm-settings.php:1074
107
+ #: includes/class-cntctfrm-settings.php:1113
108
  msgid "Submit"
109
  msgstr "Dien in"
110
 
111
+ #: contact_form.php:361
112
  msgid "Your name is required."
113
  msgstr "Jou naam word benodig."
114
 
115
+ #: contact_form.php:362
116
  msgid "Address is required."
117
  msgstr "Adres word benodig."
118
 
119
+ #: contact_form.php:363
120
  msgid "A valid email address is required."
121
  msgstr "'n Geldige epos adres word benodig."
122
 
123
+ #: contact_form.php:364
124
  msgid "Phone number is required."
125
  msgstr "'n Telefoon nommer word benodig."
126
 
127
+ #: contact_form.php:365
128
  msgid "Subject is required."
129
  msgstr "'n Onderwerp word benodig."
130
 
131
+ #: contact_form.php:366
132
  msgid "Message text is required."
133
  msgstr "'n Boodskap teks word benodig ."
134
 
135
+ #: contact_form.php:367
136
  msgid "File format is not valid."
137
  msgstr "Datalêer formaat is nie geldig nie."
138
 
139
+ #: contact_form.php:368
140
  msgid "File upload error."
141
  msgstr "Oplaai van datalêer foutief."
142
 
143
+ #: contact_form.php:369
144
  msgid "The file could not be uploaded."
145
  msgstr "Die datalêer kon nie opgelaai word nie."
146
 
147
+ #: contact_form.php:370
148
  msgid "This file is too large."
149
  msgstr "Die datalêer is te groot."
150
 
151
+ #: contact_form.php:371
152
  msgid "Please fill out the CAPTCHA."
153
  msgstr "Vul asseblief die CAPTCHA in."
154
 
155
+ #: contact_form.php:372
156
  msgid "Please make corrections below and try again."
157
  msgstr "Korregeer asseblief die foute hierdoner en probeer weer."
158
 
159
+ #: contact_form.php:374
160
  msgid "Thank you for contacting us."
161
  msgstr "Dankie dat jy ons gekontak het."
162
 
163
+ #: contact_form.php:651
164
+ msgid "NEW_FORM"
165
+ msgstr ""
166
 
167
+ #: contact_form.php:652
168
  msgid ""
169
+ "If you want to create multiple contact forms, please install the Contact "
170
+ "Form Multi plugin."
171
  msgstr ""
172
 
173
+ #: contact_form.php:657
174
  msgid ""
175
+ "Contact Form plugin doesn't support your current version of Contact Form "
176
+ "Multi plugin. Please update Contact Form Multi plugin to version 1.2.6 or "
177
+ "higher."
178
  msgstr ""
 
 
179
 
180
+ #: contact_form.php:759
181
+ msgid "Sorry, email message could not be delivered."
182
+ msgstr "Verskoning, die epos kon nie gestuur word nie."
 
183
 
184
+ #: contact_form.php:1366 contact_form.php:1368
185
+ msgid "Sent from (ip address)"
186
+ msgstr "Gestuur van (IP-Adres)"
187
+
188
+ #: contact_form.php:1372 contact_form.php:1374
189
+ #: includes/class-cntctfrm-settings.php:1024
190
+ msgid "Date/Time"
191
+ msgstr "Datum/Tyd"
192
+
193
+ #: contact_form.php:1378 contact_form.php:1380
194
+ #: includes/class-cntctfrm-settings.php:1025
195
+ msgid "Sent from (referer)"
196
+ msgstr "Gestuur van (referer)"
197
+
198
+ #: contact_form.php:1384 contact_form.php:1386
199
+ #: includes/class-cntctfrm-settings.php:1026
200
+ msgid "Using (user agent)"
201
+ msgstr "Gebruik (user agent)"
202
+
203
+ #: contact_form.php:1396
204
+ msgid "Contact from"
205
+ msgstr "Kontak Vorm"
206
+
207
+ #: contact_form.php:1401 contact_form.php:1450
208
+ msgid "Site"
209
+ msgstr "Webtuiste"
210
+
211
+ #: contact_form.php:1423 contact_form.php:1467
212
+ #: includes/class-cntctfrm-settings.php:598
213
+ msgid "Email"
214
+ msgstr "Epos"
215
+
216
+ #: contact_form.php:1439 contact_form.php:1480
217
+ #: includes/class-cntctfrm-settings.php:1359
218
+ msgid "Phone Number"
219
+ msgstr "Telefoon Nommer:"
220
+
221
+ #: contact_form.php:1562
222
  msgid ""
223
+ "If you can see this MIME, it means that the MIME type is not supported by "
224
+ "your email client!"
225
  msgstr ""
226
+ "As u die MIME kan sie, beteken dit dat die MIME tipe nie ondersteun word "
227
+ "deur u epos klient nie!"
228
+
229
+ #: contact_form.php:1634
230
+ msgid "FAQ"
231
+ msgstr "Gereeld Gestelde Vrae (FAQ)"
232
+
233
+ #: contact_form.php:1635
234
+ msgid "Support"
235
+ msgstr "Steun"
236
 
237
+ #: contact_form.php:1684
238
+ msgid "Are you sure that you want to delete this language data?"
239
+ msgstr "Is u seker dat u die taal data wil verwyder?"
240
+
241
+ #: contact_form.php:1706
242
  #, fuzzy
243
+ msgid "Add multiple forms"
244
+ msgstr "Voeg by die vorm by"
245
+
246
+ #: contact_form.php:1706
247
+ msgid ""
248
+ "Install Contact Form Multi plugin to create unlimited number of contact "
249
+ "forms."
250
+ msgstr ""
251
+
252
+ #: contact_form.php:1711
253
+ msgid "Learn more"
254
+ msgstr ""
255
+
256
+ #: contact_form.php:1715 includes/class-cntctfrm-settings.php:469
257
+ #: includes/class-cntctfrm-settings.php:987
258
+ #: includes/class-cntctfrm-settings.php:1272
259
+ msgid "Close"
260
  msgstr ""
 
 
261
 
262
+ #: contact_form.php:1769
263
+ msgid "Error"
264
+ msgstr ""
265
+
266
+ #: contact_form.php:1769 contact_form.php:1771
267
+ msgid "Illegal language code"
268
+ msgstr ""
269
+
270
+ #: contact_form.php:1805 contact_form.php:1807
271
+ #: includes/class-cntctfrm-settings.php:1089
272
+ #: includes/class-cntctfrm-settings.php:1091
273
+ #: includes/class-cntctfrm-settings.php:1128
274
+ #: includes/class-cntctfrm-settings.php:1130
275
+ #: includes/class-cntctfrm-settings.php:1162
276
+ #: includes/class-cntctfrm-settings.php:1164
277
+ #: includes/class-cntctfrm-settings.php:1176
278
+ #: includes/class-cntctfrm-settings.php:1178
279
+ msgid "Use shortcode"
280
+ msgstr "Gebruik kortkode"
281
+
282
+ #: contact_form.php:1805 contact_form.php:1807
283
+ #: includes/class-cntctfrm-settings.php:1089
284
+ #: includes/class-cntctfrm-settings.php:1091
285
+ #: includes/class-cntctfrm-settings.php:1128
286
+ #: includes/class-cntctfrm-settings.php:1130
287
+ #: includes/class-cntctfrm-settings.php:1162
288
+ #: includes/class-cntctfrm-settings.php:1164
289
+ #: includes/class-cntctfrm-settings.php:1176
290
+ #: includes/class-cntctfrm-settings.php:1178
291
+ msgid "for this language"
292
+ msgstr "vir hierdie taal"
293
+
294
+ #: contact_form.php:1955
295
+ msgid "Close notice"
296
+ msgstr ""
297
+
298
+ #: contact_form.php:1960
299
  #, fuzzy
300
+ msgid "allows to store your messages to the database."
301
+ msgstr "Stoor eposse na die databasis."
302
 
303
+ #: contact_form.php:1961
304
+ msgid "Manage messages that have been sent from your website."
305
  msgstr ""
306
 
307
+ #: contact_form.php:1964
308
+ msgid "Learn More"
309
  msgstr ""
310
 
311
+ #: contact_form.php:2024
312
+ #, fuzzy
313
+ msgid "Contact form"
314
+ msgstr "Kontak Vorm"
315
 
316
+ #: contact_form.php:2037 contact_form.php:2047
317
  #, fuzzy
318
+ msgid "Language"
319
+ msgstr "Voeg 'n taal by"
320
 
321
+ #: includes/class-cntctfrm-settings.php:28
322
+ #: includes/class-cntctfrm-settings.php:546
323
+ msgid "Additional Settings"
324
+ msgstr ""
325
+
326
+ #: includes/class-cntctfrm-settings.php:29
327
+ #: includes/class-cntctfrm-settings.php:1198
328
  msgid "Appearance"
329
  msgstr ""
330
 
331
+ #: includes/class-cntctfrm-settings.php:30
332
+ msgid "Misc"
333
  msgstr ""
334
 
335
+ #: includes/class-cntctfrm-settings.php:31
336
+ msgid "License Key"
337
+ msgstr ""
338
 
339
+ #: includes/class-cntctfrm-settings.php:32
340
+ msgid "Custom Code"
341
+ msgstr ""
 
342
 
343
+ #: includes/class-cntctfrm-settings.php:99
344
+ msgid "Please enable JavaScript in your browser."
345
  msgstr ""
346
 
347
+ #: includes/class-cntctfrm-settings.php:101
348
+ #, php-format
349
  msgid ""
350
+ "Contact Form plugin requires PHP %s or higher. Please contact your hosting "
351
+ "provider to upgrade PHP version."
352
  msgstr ""
353
 
354
+ #: includes/class-cntctfrm-settings.php:347
 
355
  msgid ""
356
+ "Email 'FROM' field option was changed, which may cause email messages being "
357
+ "moved to the spam folder or email delivery failures."
358
  msgstr ""
 
 
359
 
360
+ #: includes/class-cntctfrm-settings.php:357
 
361
  msgid ""
362
+ "If the 'Redirect to page' option is selected then the URL field should be in "
363
+ "the following format"
 
 
364
  msgstr ""
365
+ "As die 'Redirect to page' opsie geselekteer is moet die URL veld in die "
366
+ "volgende formaat wees"
367
 
368
+ #: includes/class-cntctfrm-settings.php:364
369
+ #, fuzzy
370
+ msgid "Such user does not exist."
371
+ msgstr "Hierdie gebruiker bestaan nie. Die instellings is nie gestoor nie."
372
+
373
+ #: includes/class-cntctfrm-settings.php:374
374
+ #, fuzzy
375
+ msgid ""
376
+ "Please enter a valid email address in the 'Use this email address' field."
377
+ msgstr ""
378
+ "Vul asseblief 'n geldige epos adres in die 'FROM/VAN' veld. Die verstellings "
379
+ "is nie gestoor nie."
380
+
381
+ #: includes/class-cntctfrm-settings.php:382
382
+ #, fuzzy
383
+ msgid "Please enter a valid email address in the 'FROM' field."
384
+ msgstr ""
385
+ "Vul asseblief 'n geldige epos adres in die 'FROM/VAN' veld. Die verstellings "
386
+ "is nie gestoor nie."
387
+
388
+ #: includes/class-cntctfrm-settings.php:402
389
+ msgid "Settings saved."
390
+ msgstr "Verstellings is gestoor."
391
+
392
+ #: includes/class-cntctfrm-settings.php:404
393
+ #, fuzzy
394
+ msgid "Settings are not saved."
395
+ msgstr "Verstellings is gestoor."
396
+
397
+ #: includes/class-cntctfrm-settings.php:429
398
  msgid ""
399
  "If you leave the fields empty, the messages will be sent to the email "
400
  "address specified during registration."
402
  "As u die velde leeg laat, sal die boodskappe gestuur word na die epos adres "
403
  "wat gespesifiseer was gedurende registrasie"
404
 
405
+ #: includes/class-cntctfrm-settings.php:432
406
  #, fuzzy
407
  msgid "The user's email address"
408
  msgstr "Die gebruiker se epos adres:"
409
 
410
+ #: includes/class-cntctfrm-settings.php:437
411
  #, fuzzy
412
  msgid "Select a username"
413
  msgstr "Skep 'n gebruikersnaam"
414
 
415
+ #: includes/class-cntctfrm-settings.php:450
416
  #, fuzzy
417
  msgid ""
418
  "Select a username of the person who should get the messages from the contact "
421
  "Sleutel 'n gebruikersnaam in vir die persoon wat die boodskappe moet kry van "
422
  "die kontak vorm."
423
 
424
+ #: includes/class-cntctfrm-settings.php:455
425
  #, fuzzy
426
  msgid "Use this email address"
427
  msgstr "Gebruik hierdie epos adres:"
428
 
429
+ #: includes/class-cntctfrm-settings.php:460
430
  #, fuzzy
431
  msgid "Enter the email address for receiving messages"
432
  msgstr "Sleutel in die epos adres in waar u die boodskappe aangestuur wil he."
433
 
434
+ #: includes/class-cntctfrm-settings.php:473
 
 
 
 
 
435
  #, fuzzy
436
  msgid "Add department selectbox to the contact form"
437
  msgstr "Voeg 'n departementele keuse-boks by die kontak vorm:"
438
 
439
+ #: includes/class-cntctfrm-settings.php:492
 
 
 
 
 
 
 
 
 
 
440
  msgid "Save emails to the database"
441
  msgstr "Stoor eposse na die databasis."
442
 
443
+ #: includes/class-cntctfrm-settings.php:504
444
+ #: includes/class-cntctfrm-settings.php:518
445
+ #: includes/class-cntctfrm-settings.php:525
446
  msgid "Using"
447
  msgstr "In Gebruik"
448
 
449
+ #: includes/class-cntctfrm-settings.php:510
450
+ #: includes/class-cntctfrm-settings.php:889
451
+ #: includes/class-cntctfrm-settings.php:930
452
+ #: includes/class-cntctfrm-settings.php:965
453
  msgid "Please activate the appropriate option on"
454
  msgstr ""
455
 
456
+ #: includes/class-cntctfrm-settings.php:513
457
+ #: includes/class-cntctfrm-settings.php:892
458
+ #: includes/class-cntctfrm-settings.php:933
459
+ #: includes/class-cntctfrm-settings.php:968
460
  #, fuzzy
461
  msgid "settings page"
462
  msgstr "Die verstelling bladsy"
463
 
464
+ #: includes/class-cntctfrm-settings.php:519
465
+ #: includes/class-cntctfrm-settings.php:899
466
+ #: includes/class-cntctfrm-settings.php:941
467
+ #: includes/class-cntctfrm-settings.php:975
468
  msgid "Activate"
469
  msgstr "Aktiveer"
470
 
471
+ #: includes/class-cntctfrm-settings.php:526
472
+ #: includes/class-cntctfrm-settings.php:908
473
+ #: includes/class-cntctfrm-settings.php:947
474
+ #: includes/class-cntctfrm-settings.php:980
475
  msgid "Download"
476
  msgstr "Download"
477
 
478
+ #: includes/class-cntctfrm-settings.php:551
479
  msgid "Sending method"
480
  msgstr ""
481
 
482
+ #: includes/class-cntctfrm-settings.php:556
483
  msgid "Wp-mail"
484
  msgstr "Wp-mail"
485
 
486
+ #: includes/class-cntctfrm-settings.php:557
487
  #, fuzzy
488
  msgid "You can use the Wordpress wp_mail function for mailing"
489
  msgstr "U kan die wp_mail funksie gebruik vir eposse"
490
 
491
+ #: includes/class-cntctfrm-settings.php:562
492
  msgid "Mail"
493
  msgstr "Mail"
494
 
495
+ #: includes/class-cntctfrm-settings.php:563
496
  #, fuzzy
497
  msgid "You can use the PHP mail function for mailing"
498
  msgstr "U kan die wp_mail funksie gebruik vir eposse"
499
 
500
+ #: includes/class-cntctfrm-settings.php:569
501
  msgid "'FROM' field"
502
  msgstr ""
503
 
504
+ #: includes/class-cntctfrm-settings.php:585
505
  msgid "User name"
506
  msgstr "Gebruikersnaam"
507
 
508
+ #: includes/class-cntctfrm-settings.php:587
509
  msgid ""
510
  "The name of the user who fills the form will be used in the field 'From'."
511
  msgstr ""
512
  "Die naam van die gebruiker wie die vorm invul sal gebruik word vir die 'From/"
513
  "Van' veld."
514
 
515
+ #: includes/class-cntctfrm-settings.php:609
 
 
 
 
516
  msgid "User email"
517
  msgstr "Gebruiker epos"
518
 
519
+ #: includes/class-cntctfrm-settings.php:611
520
  msgid ""
521
  "The email address of the user who fills the form will be used in the field "
522
  "'From'."
524
  "Die epos adres van die gebruiker wie die vorm invul sal gebruik word in die "
525
  "'From/van' veld."
526
 
527
+ #: includes/class-cntctfrm-settings.php:620
528
  msgid ""
529
  "If this option is changed, email messages may be moved to the spam folder or "
530
  "email delivery failures may occur."
531
  msgstr ""
532
 
533
+ #: includes/class-cntctfrm-settings.php:629
534
  msgid "Required symbol"
535
  msgstr "Benodigde simbool"
536
 
537
+ #: includes/class-cntctfrm-settings.php:639
538
  msgid "Fields"
539
  msgstr "Velde"
540
 
541
+ #: includes/class-cntctfrm-settings.php:640
542
+ #: includes/class-cntctfrm-settings.php:667
543
+ #: includes/class-cntctfrm-settings.php:694
544
+ #: includes/class-cntctfrm-settings.php:714
545
+ #: includes/class-cntctfrm-settings.php:750
546
+ #: includes/class-cntctfrm-settings.php:832
547
  msgid "Used"
548
  msgstr "Gebruik"
549
 
550
+ #: includes/class-cntctfrm-settings.php:641
551
+ #: includes/class-cntctfrm-settings.php:656
552
+ #: includes/class-cntctfrm-settings.php:671
553
+ #: includes/class-cntctfrm-settings.php:698
554
+ #: includes/class-cntctfrm-settings.php:718
555
+ #: includes/class-cntctfrm-settings.php:754
556
+ #: includes/class-cntctfrm-settings.php:767
557
+ #: includes/class-cntctfrm-settings.php:791
558
  msgid "Required"
559
  msgstr "Benodig"
560
 
561
+ #: includes/class-cntctfrm-settings.php:643
562
+ #: includes/class-cntctfrm-settings.php:676
563
+ #: includes/class-cntctfrm-settings.php:733
564
+ #: includes/class-cntctfrm-settings.php:772
565
+ #: includes/class-cntctfrm-settings.php:796
566
  msgid "Visible"
567
  msgstr "Sigbaar"
568
 
569
+ #: includes/class-cntctfrm-settings.php:644
570
+ #: includes/class-cntctfrm-settings.php:680
571
+ #: includes/class-cntctfrm-settings.php:737
572
+ #: includes/class-cntctfrm-settings.php:776
573
+ #: includes/class-cntctfrm-settings.php:800
574
  msgid "Disabled for editing"
575
  msgstr "Gedeaktiveer vir wysiging"
576
 
577
+ #: includes/class-cntctfrm-settings.php:645
578
+ #: includes/class-cntctfrm-settings.php:704
579
+ #: includes/class-cntctfrm-settings.php:780
580
+ #: includes/class-cntctfrm-settings.php:804
581
  msgid "Field's default value"
582
  msgstr "Veld se verstekwaarde"
583
 
584
+ #: includes/class-cntctfrm-settings.php:652
585
  msgid "Department selectbox"
586
  msgstr ""
587
 
588
+ #: includes/class-cntctfrm-settings.php:684
589
  msgid "Use User's name as a default value if the user is logged in."
590
  msgstr ""
591
 
592
+ #: includes/class-cntctfrm-settings.php:685
593
+ #: includes/class-cntctfrm-settings.php:742
594
  msgid ""
595
  "'Visible' and 'Disabled for editing' options will be applied only to logged-"
596
  "in users."
597
  msgstr ""
598
 
599
+ #: includes/class-cntctfrm-settings.php:691
600
  msgid "Location selectbox"
601
  msgstr ""
602
 
603
+ #: includes/class-cntctfrm-settings.php:741
604
  msgid "Use User's email as a default value if the user is logged in."
605
  msgstr ""
606
 
607
+ #: includes/class-cntctfrm-settings.php:825
608
  msgid "Attachment block"
609
  msgstr "Aanhegsel blok"
610
 
611
+ #: includes/class-cntctfrm-settings.php:827
612
  msgid "Users can attach the following file formats"
613
  msgstr "Gebruikers kan die volgende dataleêr formate aanheg"
614
 
615
+ #: includes/class-cntctfrm-settings.php:845
616
  msgid "Add to the form"
617
  msgstr "Voeg by die vorm by"
618
 
619
+ #: includes/class-cntctfrm-settings.php:850
620
  msgid "Tips below the Attachment"
621
  msgstr "Wenke onder die Aanhegsel"
622
 
623
+ #: includes/class-cntctfrm-settings.php:857
624
  msgid "'Send me a copy' block"
625
  msgstr "'Stuur vir my 'n kopie' blok"
626
 
627
+ #: includes/class-cntctfrm-settings.php:864
628
  msgid "GDPR Compliance"
629
  msgstr ""
630
 
631
+ #: includes/class-cntctfrm-settings.php:869
632
  msgid "Link to Privacy Policy Page"
633
  msgstr ""
634
 
635
+ #: includes/class-cntctfrm-settings.php:873
636
  msgid "Text for Privacy Policy Link"
637
  msgstr ""
638
 
639
+ #: includes/class-cntctfrm-settings.php:901
640
  msgid "Activate for network"
641
  msgstr ""
642
 
643
+ #: includes/class-cntctfrm-settings.php:991
644
  msgid "Agreement checkbox"
645
  msgstr "Ooreenstemming checkbox"
646
 
647
+ #: includes/class-cntctfrm-settings.php:991
648
  msgid "Required checkbox for submitting the form"
649
  msgstr "Benodigde checkbox om die vorm in te dien"
650
 
651
+ #: includes/class-cntctfrm-settings.php:992
652
  msgid "Optional checkbox"
653
  msgstr "Opsie checkbox"
654
 
655
+ #: includes/class-cntctfrm-settings.php:992
656
  msgid "Optional checkbox, the results of which will be displayed in email"
657
  msgstr "Opsionele checkbox, die resultate waarvan in die epos sal verskyn"
658
 
659
+ #: includes/class-cntctfrm-settings.php:1007
660
  msgid "Delete an attachment file from the server after the email is sent"
661
  msgstr "Verwyder 'n aanhegsel dataleêr van die server na epos gestuur is"
662
 
663
+ #: includes/class-cntctfrm-settings.php:1013
664
  msgid "Email in HTML format sending"
665
  msgstr "E-Mail in HTML Format"
666
 
667
+ #: includes/class-cntctfrm-settings.php:1017
668
  msgid "Display additional info in the email"
669
  msgstr "Toon addisionele inligting in die epos"
670
 
671
+ #: includes/class-cntctfrm-settings.php:1023
672
  #, fuzzy
673
  msgid "Sent from (IP address)"
674
  msgstr "Gestuur van (IP-Adres)"
675
 
676
+ #: includes/class-cntctfrm-settings.php:1023
677
  msgid "Example: Sent from (IP address): 127.0.0.1"
678
  msgstr ""
679
 
680
+ #: includes/class-cntctfrm-settings.php:1024
 
 
 
 
681
  msgid "Example: Date/Time: August 19, 2013 8:50 pm"
682
  msgstr ""
683
 
684
+ #: includes/class-cntctfrm-settings.php:1025
 
 
 
 
685
  msgid ""
686
  "Example: Sent from (referer): https://bestwebsoft.com/contacts/contact-us/"
687
  msgstr ""
688
 
689
+ #: includes/class-cntctfrm-settings.php:1026
 
 
 
 
690
  msgid ""
691
  "Example: Using (user agent): Mozilla/5.0 (Windows NT 6.2; WOW64) "
692
  "AppleWebKit/537.36 (KHTML, like Gecko) Chrome/28.0.1500.95 Safari/537.36"
693
  msgstr ""
694
 
695
+ #: includes/class-cntctfrm-settings.php:1031
696
  msgid "Language settings for the field names in the form"
697
  msgstr "Taal verstellings vir die naamvelde in die vorm"
698
 
699
+ #: includes/class-cntctfrm-settings.php:1040
700
  msgid "Add a language"
701
  msgstr "Voeg 'n taal by"
702
 
703
+ #: includes/class-cntctfrm-settings.php:1044
704
  msgid "Change the names of the contact form fields and error messages"
705
  msgstr "Verander die name van die kontak vorm velde en foutboodskappe"
706
 
707
+ #: includes/class-cntctfrm-settings.php:1049
708
+ #: includes/class-cntctfrm-settings.php:1147
709
+ #: includes/class-cntctfrm-settings.php:1252
 
 
710
  msgid "Default"
711
  msgstr "Verstek"
712
 
713
+ #: includes/class-cntctfrm-settings.php:1062
714
+ #: includes/class-cntctfrm-settings.php:1101
715
  msgid "click to expand/hide the list"
716
  msgstr "Kliek om uit te brei/lys te versteek"
717
 
718
+ #: includes/class-cntctfrm-settings.php:1071
719
+ #: includes/class-cntctfrm-settings.php:1110
720
  msgid "Tips below the Attachment block"
721
  msgstr "Wenke onder toe Aanhegsel blok"
722
 
723
+ #: includes/class-cntctfrm-settings.php:1075
724
+ #: includes/class-cntctfrm-settings.php:1114
725
  msgid "Error message for the Name field"
726
  msgstr "FFoutboodskap vir die Naamveld"
727
 
728
+ #: includes/class-cntctfrm-settings.php:1076
729
+ #: includes/class-cntctfrm-settings.php:1115
730
  msgid "Error message for the Address field"
731
  msgstr "Foutboodskap vir die Adres veld"
732
 
733
+ #: includes/class-cntctfrm-settings.php:1077
734
+ #: includes/class-cntctfrm-settings.php:1116
735
  msgid "Error message for the Email field"
736
  msgstr "Foutboodskap vir die Epos veld"
737
 
738
+ #: includes/class-cntctfrm-settings.php:1078
739
+ #: includes/class-cntctfrm-settings.php:1117
740
  msgid "Error message for the Phone field"
741
  msgstr "Foutboodskap vir die Telefoon Nommer veld"
742
 
743
+ #: includes/class-cntctfrm-settings.php:1079
744
+ #: includes/class-cntctfrm-settings.php:1118
745
  msgid "Error message for the Subject field"
746
  msgstr "Foutboodskap vir die Onderwerp veld"
747
 
748
+ #: includes/class-cntctfrm-settings.php:1080
749
+ #: includes/class-cntctfrm-settings.php:1119
750
  msgid "Error message for the Message field"
751
  msgstr "Foutboodskap vir die Boodskap veld"
752
 
753
+ #: includes/class-cntctfrm-settings.php:1081
754
+ #: includes/class-cntctfrm-settings.php:1120
755
  msgid "Error message about the file type for the Attachment field"
756
  msgstr "Foutboodskap oor die dataleêr tipe vir die Aanhegsel veld"
757
 
758
+ #: includes/class-cntctfrm-settings.php:1082
759
+ #: includes/class-cntctfrm-settings.php:1121
760
  msgid ""
761
  "Error message while uploading a file for the Attachment field to the server"
762
  msgstr ""
763
  "Foutboodskap tydens dataleêr oplaai vir die Aanhegsel veld na die server"
764
 
765
+ #: includes/class-cntctfrm-settings.php:1083
766
+ #: includes/class-cntctfrm-settings.php:1122
767
  msgid "Error message while moving the file for the Attachment field"
768
  msgstr "Foutboodskap tydens die skuif van dataleêr vir die Aanhegsel veld"
769
 
770
+ #: includes/class-cntctfrm-settings.php:1084
771
+ #: includes/class-cntctfrm-settings.php:1123
772
  msgid "Error message when file size limit for the Attachment field is exceeded"
773
  msgstr ""
774
  "Foutboodskap wanneer die dataleêr limiet vir die Aanhegsel veld oorskry is"
775
 
776
+ #: includes/class-cntctfrm-settings.php:1085
777
+ #: includes/class-cntctfrm-settings.php:1124
778
  msgid "Error message for the Captcha field"
779
  msgstr "Foutboodskap vir die Captcha veld"
780
 
781
+ #: includes/class-cntctfrm-settings.php:1086
782
+ #: includes/class-cntctfrm-settings.php:1125
783
  msgid "Error message for the whole form"
784
  msgstr "Foutboodskap vir die hele vorm"
785
 
786
+ #: includes/class-cntctfrm-settings.php:1138
 
 
 
 
 
 
 
 
 
 
 
 
 
 
787
  #, fuzzy
788
  msgid "Use the changed names of the contact form fields in the email"
789
  msgstr "Verander die name van die kontak vorm velde en foutboodskappe"
790
 
791
+ #: includes/class-cntctfrm-settings.php:1144
792
  msgid "Action after email is sent"
793
  msgstr "Aksie na epos gestuur is"
794
 
795
+ #: includes/class-cntctfrm-settings.php:1146
796
  msgid "Display text"
797
  msgstr "Toon teks"
798
 
799
+ #: includes/class-cntctfrm-settings.php:1160
800
+ #: includes/class-cntctfrm-settings.php:1174
801
  msgid "Text"
802
  msgstr "teks"
803
 
804
+ #: includes/class-cntctfrm-settings.php:1185
805
  msgid "Redirect to the page"
806
  msgstr "Herlei na die bladsy"
807
 
808
+ #: includes/class-cntctfrm-settings.php:1186
809
  msgid "Url"
810
  msgstr "Url"
811
 
812
+ #: includes/class-cntctfrm-settings.php:1206
 
 
 
 
 
 
 
 
 
 
 
 
813
  #, php-format
814
  msgid ""
815
+ "Please enable JavaScript to change '%s', '%s', '%s', '%s' options and for "
816
+ "fields sorting."
 
817
  msgstr ""
818
 
819
+ #: includes/class-cntctfrm-settings.php:1207
820
+ #: includes/class-cntctfrm-settings.php:1224
821
+ msgid "Form layout"
 
 
 
 
 
822
  msgstr ""
823
 
824
+ #: includes/class-cntctfrm-settings.php:1208
825
+ #: includes/class-cntctfrm-settings.php:1291
826
+ #, fuzzy
827
+ msgid "Labels position"
828
+ msgstr "Indien knoppie"
829
+
830
+ #: includes/class-cntctfrm-settings.php:1209
831
+ #: includes/class-cntctfrm-settings.php:1309
832
+ msgid "Labels align"
833
  msgstr ""
834
 
835
+ #: includes/class-cntctfrm-settings.php:1210
836
+ #: includes/class-cntctfrm-settings.php:1236
837
  #, fuzzy
838
  msgid "Submit position"
839
  msgstr "Indien knoppie"
840
 
841
+ #: includes/class-cntctfrm-settings.php:1211
842
+ #: includes/class-cntctfrm-settings.php:1340
843
+ msgid "Add tooltips"
844
+ msgstr "Voeg tool-wenke"
845
+
846
+ #: includes/class-cntctfrm-settings.php:1212
847
+ #: includes/class-cntctfrm-settings.php:1381
848
+ msgid "Style options"
849
+ msgstr "Styl opsies"
850
+
851
+ #: includes/class-cntctfrm-settings.php:1228
852
  msgid "One column"
853
  msgstr ""
854
 
855
+ #: includes/class-cntctfrm-settings.php:1231
856
  msgid "Two columns"
857
  msgstr ""
858
 
859
+ #: includes/class-cntctfrm-settings.php:1240
860
+ #: includes/class-cntctfrm-settings.php:1280
861
+ #: includes/class-cntctfrm-settings.php:1298
862
+ #: includes/class-cntctfrm-settings.php:1313
863
  msgid "Left"
864
  msgstr ""
865
 
866
+ #: includes/class-cntctfrm-settings.php:1243
867
+ #: includes/class-cntctfrm-settings.php:1286
868
+ #: includes/class-cntctfrm-settings.php:1301
869
+ #: includes/class-cntctfrm-settings.php:1319
870
  msgid "Right"
871
  msgstr ""
872
 
873
+ #: includes/class-cntctfrm-settings.php:1248
874
  msgid "Width"
875
  msgstr ""
876
 
877
+ #: includes/class-cntctfrm-settings.php:1256
878
  msgid "Custom"
879
  msgstr ""
880
 
881
+ #: includes/class-cntctfrm-settings.php:1263
882
  msgid "px"
883
  msgstr ""
884
 
885
+ #: includes/class-cntctfrm-settings.php:1276
886
  msgid "Form align"
887
  msgstr ""
888
 
889
+ #: includes/class-cntctfrm-settings.php:1283
890
+ #: includes/class-cntctfrm-settings.php:1316
891
  msgid "Center"
892
  msgstr ""
893
 
894
+ #: includes/class-cntctfrm-settings.php:1295
 
 
 
 
 
895
  msgid "Top"
896
  msgstr ""
897
 
898
+ #: includes/class-cntctfrm-settings.php:1304
899
  msgid "Bottom"
900
  msgstr ""
901
 
902
+ #: includes/class-cntctfrm-settings.php:1324
 
 
 
 
903
  msgid "Errors output"
904
  msgstr "Foutboodskap uitset"
905
 
906
+ #: includes/class-cntctfrm-settings.php:1327
907
  msgid "Display error messages"
908
  msgstr "Toon foutboodskappe"
909
 
910
+ #: includes/class-cntctfrm-settings.php:1328
911
  msgid "Color of the input field errors."
912
  msgstr "Kleur van die inset veld foutboodskappe"
913
 
914
+ #: includes/class-cntctfrm-settings.php:1329
915
  msgid "Display error messages & color of the input field errors"
916
  msgstr "Toon foutboodskappe & kleur van die inset veld foutboodskappe"
917
 
918
+ #: includes/class-cntctfrm-settings.php:1334
919
  msgid "Add placeholder to the input blocks"
920
  msgstr "Voeg 'n plekhouer by die inset blokke"
921
 
922
+ #: includes/class-cntctfrm-settings.php:1354
 
 
 
 
923
  msgid "Email address"
924
  msgstr "Epos Adres:"
925
 
926
+ #: includes/class-cntctfrm-settings.php:1385
 
 
 
 
 
 
 
 
927
  msgid "Text color"
928
  msgstr "Teks kleur"
929
 
930
+ #: includes/class-cntctfrm-settings.php:1393
931
  msgid "Label text color"
932
  msgstr "Etiket teks kleur"
933
 
934
+ #: includes/class-cntctfrm-settings.php:1402
935
  msgid "Placeholder color"
936
  msgstr "Plekhouer kleur"
937
 
938
+ #: includes/class-cntctfrm-settings.php:1407
939
  msgid "Errors color"
940
  msgstr "Foutboodskap kleur"
941
 
942
+ #: includes/class-cntctfrm-settings.php:1415
943
  msgid "Error text color"
944
  msgstr "Foutboodskap teks kleur"
945
 
946
+ #: includes/class-cntctfrm-settings.php:1423
947
  msgid "Background color of the input field errors"
948
  msgstr "Agtergrond kleur van die inset veld foutboodskappe"
949
 
950
+ #: includes/class-cntctfrm-settings.php:1431
951
  msgid "Border color of the input field errors"
952
  msgstr "Rand-kleur van die inset veld foutboodskappe"
953
 
954
+ #: includes/class-cntctfrm-settings.php:1439
955
  msgid "Placeholder color of the input field errors"
956
  msgstr "Plekhouer kleur van die inset veld foutboodskappe"
957
 
958
+ #: includes/class-cntctfrm-settings.php:1444
959
  msgid "Input fields"
960
  msgstr "Inset velde"
961
 
962
+ #: includes/class-cntctfrm-settings.php:1452
963
  msgid "Input fields background color"
964
  msgstr "Inset velde agtergrond kleur"
965
 
966
+ #: includes/class-cntctfrm-settings.php:1460
967
  msgid "Text fields color"
968
  msgstr "Teks velde kleur"
969
 
970
+ #: includes/class-cntctfrm-settings.php:1464
971
  msgid "Border width in px, numbers only"
972
  msgstr "Rand wydte in px, nommers alleenlik"
973
 
974
+ #: includes/class-cntctfrm-settings.php:1472
975
+ #: includes/class-cntctfrm-settings.php:1505
976
  msgid "Border color"
977
  msgstr "Rand kleur"
978
 
979
+ #: includes/class-cntctfrm-settings.php:1477
980
  msgid "Submit button"
981
  msgstr "Indien knoppie"
982
 
983
+ #: includes/class-cntctfrm-settings.php:1481
984
  msgid "Width in px, numbers only"
985
  msgstr "Wydte in px, nommers alleenlik"
986
 
987
+ #: includes/class-cntctfrm-settings.php:1489
988
  msgid "Button color"
989
  msgstr "Knoppie Kleur"
990
 
991
+ #: includes/class-cntctfrm-settings.php:1497
992
  msgid "Button text color"
993
  msgstr "Knoppie teks kleur"
994
 
995
+ #: includes/class-cntctfrm-settings.php:1524
996
  #, fuzzy
997
  msgid "Contact Form | Preview"
998
  msgstr "Kontak Vorm Pro | Voorskou"
999
 
1000
+ #: includes/class-cntctfrm-settings.php:1525
1001
  msgid "Drag the necessary field to sort fields."
1002
  msgstr ""
1003
 
1004
+ #: includes/class-cntctfrm-settings.php:1772
1005
+ msgid "Contact Form Shortcode"
 
 
 
1006
  msgstr ""
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1007
 
1008
+ #: includes/class-cntctfrm-settings.php:1775
1009
+ msgid "Add Contact Form to your page or post using the following shortcode:"
 
 
1010
  msgstr ""
 
 
 
 
 
 
1011
 
1012
+ #~ msgid "If you upgrade to Pro version all your settings will be saved."
1013
+ #~ msgstr ""
1014
+ #~ "As u opgradeer na die Pro weergawe sal die verstellings gestoor word."
 
 
 
 
1015
 
 
1016
  #, fuzzy
1017
+ #~ msgid ""
1018
+ #~ "If you would like to add the Contact Form to your website, just copy and "
1019
+ #~ "paste this shortcode to your post or page or widget"
1020
+ #~ msgstr ""
1021
+ #~ "As u die Kontak Vorm by u webstuiste wil bylas, kopieër en plak net die "
1022
+ #~ "kortkode na u post, bladsy of widget:"
 
 
 
 
 
 
 
 
 
 
1023
 
1024
+ #~ msgid "Save Changes"
1025
+ #~ msgstr "Stoor veranderinge"
 
1026
 
1027
+ #~ msgid "Contact Form"
1028
+ #~ msgstr "Kontak Form"
 
1029
 
 
1030
  #, fuzzy
1031
+ #~ msgid "Additional settings"
1032
+ #~ msgstr "Addisionele opsies"
1033
 
1034
+ #~ msgid "Go PRO"
1035
+ #~ msgstr "Gaan PRO"
 
1036
 
 
 
 
 
 
1037
  #, fuzzy
1038
+ #~ msgid "Notice"
1039
+ #~ msgstr "Kennisgewing:"
1040
 
 
1041
  #, fuzzy
1042
+ #~ msgid ""
1043
+ #~ "If you would like to add a Contact Form to your page or post, please use "
1044
+ #~ "%s button"
1045
+ #~ msgstr ""
1046
+ #~ "As u die Kontak Vorm by u webstuiste wil bylas, kopieër en plak net die "
1047
+ #~ "kortkode na u post, bladsy of widget:"
1048
 
1049
  #~ msgid "Example: Sent from (IP address):\t127.0.0.1"
1050
  #~ msgstr "Voorbeeld: Gestuur van (IP-Adres):\t127.0.0.1"
languages/contact-form-plugin-ca.mo CHANGED
Binary file
languages/contact-form-plugin-ca.po CHANGED
@@ -2,8 +2,8 @@ msgid ""
2
  msgstr ""
3
  "Project-Id-Version: Contact Form\n"
4
  "Report-Msgid-Bugs-To: \n"
5
- "POT-Creation-Date: 2018-05-16 14:25+0300\n"
6
- "PO-Revision-Date: 2018-05-16 14:25+0300\n"
7
  "Last-Translator: plugin@bestwebsoft.com <plugin@bestwebsoft.com>\n"
8
  "Language-Team: Kenneth <kenneth@snollocer.net>\n"
9
  "Language: ca_ES\n"
@@ -16,55 +16,76 @@ msgstr ""
16
  "X-Generator: Poedit 1.8.7.1\n"
17
  "X-Poedit-SearchPath-0: .\n"
18
 
19
- #: contact_form.php:37 contact_form.php:992
 
20
  msgid "Contact Form Settings"
21
  msgstr "Opcions Contact Form"
22
 
23
- #: contact_form.php:37
24
- msgid "Contact Form"
25
- msgstr "Contact Form"
 
 
 
 
 
 
 
 
26
 
27
- #: contact_form.php:322 contact_form.php:1172 contact_form.php:1262
28
- #: contact_form.php:1668 contact_form.php:1707 contact_form.php:1975
29
- #: contact_form.php:3134 contact_form.php:3180
 
 
 
30
  msgid "Name"
31
  msgstr "Nom"
32
 
33
- #: contact_form.php:323 contact_form.php:1309 contact_form.php:1669
34
- #: contact_form.php:1708 contact_form.php:1980 contact_form.php:3141
35
- #: contact_form.php:3186
 
 
36
  msgid "Address"
37
  msgstr "Adreça:"
38
 
39
- #: contact_form.php:324 contact_form.php:1325 contact_form.php:1670
40
- #: contact_form.php:1709
 
41
  msgid "Email Address"
42
  msgstr "Adreça de correu electrònic:"
43
 
44
- #: contact_form.php:325 contact_form.php:1348 contact_form.php:1671
45
- #: contact_form.php:1710
 
46
  #, fuzzy
47
  msgid "Phone number"
48
  msgstr "Nombre de telèfon"
49
 
50
- #: contact_form.php:326 contact_form.php:1364 contact_form.php:1672
51
- #: contact_form.php:1711 contact_form.php:1995 contact_form.php:3152
52
- #: contact_form.php:3195
 
 
53
  msgid "Subject"
54
  msgstr "Assumpte"
55
 
56
- #: contact_form.php:327 contact_form.php:1388 contact_form.php:1673
57
- #: contact_form.php:1712 contact_form.php:1999 contact_form.php:3157
58
- #: contact_form.php:3199
 
 
59
  msgid "Message"
60
  msgstr "MIssatge"
61
 
62
- #: contact_form.php:328 contact_form.php:1674 contact_form.php:1713
63
- #: contact_form.php:2004
 
64
  msgid "Attachment"
65
  msgstr "Adjunt:"
66
 
67
- #: contact_form.php:329
68
  msgid ""
69
  "Supported file types: HTML, TXT, CSS, GIF, PNG, JPEG, JPG, TIFF, BMP, AI, "
70
  "EPS, PS, CSV, RTF, PDF, DOC, DOCX, XLS, XLSX, ZIP, RAR, WAV, MP3, PPT."
@@ -72,175 +93,308 @@ msgstr ""
72
  "Formats de fitxer suportats: HTML, TXT, CSS, GIF, PNG, JPEG, JPG, TIFF, BMP, "
73
  "AI, EPS, PS, CSV, RTF, PDF, DOC, DOCX, XLS, XLSX, ZIP, RAR, WAV, MP3, PPT."
74
 
75
- #: contact_form.php:330 contact_form.php:1676 contact_form.php:1715
 
76
  msgid "Send me a copy"
77
  msgstr "Envia'm una còpia"
78
 
79
- #: contact_form.php:331 contact_form.php:1677 contact_form.php:1716
 
80
  msgid "I consent to having this site collect my personal data."
81
  msgstr ""
82
 
83
- #: contact_form.php:332 contact_form.php:1678 contact_form.php:1717
 
84
  msgid "Submit"
85
  msgstr "Enviar"
86
 
87
- #: contact_form.php:333
88
  msgid "Your name is required."
89
  msgstr "El seu nom es obligatori."
90
 
91
- #: contact_form.php:334
92
  msgid "Address is required."
93
  msgstr "Una adreça vàlida és obligatòria."
94
 
95
- #: contact_form.php:335
96
  msgid "A valid email address is required."
97
  msgstr "Una Adreça de correu electrònic és obligatòria."
98
 
99
- #: contact_form.php:336
100
  msgid "Phone number is required."
101
  msgstr "El seu nombre de telèfon és obligatori."
102
 
103
- #: contact_form.php:337
104
  msgid "Subject is required."
105
  msgstr "L'assumpte és obligatori."
106
 
107
- #: contact_form.php:338
108
  msgid "Message text is required."
109
  msgstr "El missatge és obligatori."
110
 
111
- #: contact_form.php:339
112
  msgid "File format is not valid."
113
  msgstr "El format de l'adjunt és incorrecte."
114
 
115
- #: contact_form.php:340
116
  msgid "File upload error."
117
  msgstr "Error de càrrega del fitxer"
118
 
119
- #: contact_form.php:341
120
  msgid "The file could not be uploaded."
121
  msgstr "El fitxer no ha pogut ser carregat"
122
 
123
- #: contact_form.php:342
124
  msgid "This file is too large."
125
  msgstr "Aquest document és massa gran."
126
 
127
- #: contact_form.php:343
128
  msgid "Please fill out the CAPTCHA."
129
  msgstr "Si us plau completi el CAPTCHA"
130
 
131
- #: contact_form.php:344
132
  msgid "Please make corrections below and try again."
133
  msgstr "Si us plau, corregeixi les dades i provi un altre cop."
134
 
135
- #: contact_form.php:346
136
  msgid "Thank you for contacting us."
137
  msgstr "Gràcies per contactar amb nosaltres"
138
 
139
- #: contact_form.php:683 contact_form.php:949
140
- msgid "Settings saved."
141
- msgstr "Configuració desada."
142
 
143
- #: contact_form.php:894
144
  msgid ""
145
- "Email 'FROM' field option was changed, which may cause email messages being "
146
- "moved to the spam folder or email delivery failures."
147
  msgstr ""
148
 
149
- #: contact_form.php:904
150
  msgid ""
151
- "If the 'Redirect to page' option is selected then the URL field should be in "
152
- "the following format"
 
153
  msgstr ""
154
- "Si l'opció de 'redireccionament a la pàgina' està seleccionat llavors el "
155
- "camp URL ha d'estar en el següent format"
156
 
157
- #: contact_form.php:911
158
- #, fuzzy
159
- msgid "Such user does not exist."
160
- msgstr "Usuari inexistent. Els canvis no s'han desat."
161
 
162
- #: contact_form.php:921
163
- #, fuzzy
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
164
  msgid ""
165
- "Please enter a valid email address in the 'Use this email address' field."
 
166
  msgstr ""
167
- "Si us plau introdueixi una Adreça de correu electrònic correcta. Els canvis "
168
- "no s'han desat."
 
 
 
 
 
 
 
 
169
 
170
- #: contact_form.php:929
 
 
 
 
171
  #, fuzzy
172
- msgid "Please enter a valid email address in the 'FROM' field."
 
 
 
 
 
 
173
  msgstr ""
174
- "Si us plau introdueixi una Adreça de correu electrònic correcta. Els canvis "
175
- "no s'han desat."
176
 
177
- #: contact_form.php:951
178
  #, fuzzy
179
- msgid "Settings are not saved."
180
- msgstr "Configuració desada."
 
 
 
 
 
 
181
 
182
- #: contact_form.php:989
183
- msgid "All plugin settings were restored."
184
  msgstr ""
185
 
186
- #: contact_form.php:995
187
- msgid "How to Use Step-by-step Instruction"
188
  msgstr ""
189
 
190
- #: contact_form.php:998 contact_form.php:3343 contact_form.php:3357
191
- msgid "Settings"
192
- msgstr "Configuració"
 
 
 
 
 
 
 
 
193
 
194
- #: contact_form.php:999
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
195
  #, fuzzy
196
- msgid "Additional settings"
197
- msgstr "Opcions addicionals"
 
 
 
 
 
198
 
199
- #: contact_form.php:1000
 
 
 
 
 
 
200
  msgid "Appearance"
201
  msgstr ""
202
 
203
- #: contact_form.php:1001
204
- msgid "Custom code"
205
  msgstr ""
206
 
207
- #: contact_form.php:1002
208
- msgid "Go PRO"
209
  msgstr ""
210
 
211
- #: contact_form.php:1013
212
- msgid "Notice"
213
  msgstr ""
214
 
215
- #: contact_form.php:1017
216
- msgid "NEW_FORM"
217
  msgstr ""
218
 
219
- #: contact_form.php:1018
 
220
  msgid ""
221
- "If you want to create multiple contact forms, please install the Contact "
222
- "Form Multi plugin."
223
  msgstr ""
224
 
225
- #: contact_form.php:1027
226
- #, fuzzy, php-format
227
  msgid ""
228
- "If you would like to add a Contact Form to your page or post, please use %s "
229
- "button"
230
  msgstr ""
231
- "Si vol afegir Contact Form en la seva web, copiï i enganxi aquest codi en el "
232
- "seu missatge, pàgina o widget:"
233
 
234
- #: contact_form.php:1033
235
- #, php-format
 
 
 
 
 
 
 
 
 
 
 
 
 
236
  msgid ""
237
- "You can add the Contact Form to your page or post by clicking on %s button "
238
- "in the content edit block using the Visual mode. If the button isn't "
239
- "displayed, please use the shortcode %s or %s where * stands for Contact Form "
240
- "language."
 
 
 
 
241
  msgstr ""
 
 
242
 
243
- #: contact_form.php:1042
 
 
 
 
 
 
 
 
 
244
  msgid ""
245
  "If you leave the fields empty, the messages will be sent to the email "
246
  "address specified during registration."
@@ -248,114 +402,109 @@ msgstr ""
248
  "Si la informació d'aquest camp queda buida, s'usarà l'adreça especificada "
249
  "durant el registre."
250
 
251
- #: contact_form.php:1045
252
  #, fuzzy
253
  msgid "The user's email address"
254
  msgstr "Adreça de correu electrònic de l'usuari:"
255
 
256
- #: contact_form.php:1049
257
  #, fuzzy
258
  msgid "Select a username"
259
  msgstr "Seleccioni un nom d'usuari"
260
 
261
- #: contact_form.php:1062
262
  #, fuzzy
263
  msgid ""
264
  "Select a username of the person who should get the messages from the contact "
265
  "form."
266
  msgstr "Introdueixi el nom de l'usuari que rebrà missatges des de contact form"
267
 
268
- #: contact_form.php:1066
269
  #, fuzzy
270
  msgid "Use this email address"
271
  msgstr "Usi aquesta adreça de correu electrònic::"
272
 
273
- #: contact_form.php:1070
274
  #, fuzzy
275
  msgid "Enter the email address for receiving messages"
276
  msgstr ""
277
  "Introdueixi una adreça de correu electrònic on vulgui re-enviar el missatge"
278
 
279
- #: contact_form.php:1077 contact_form.php:1588 contact_form.php:1797
280
- #: contact_form.php:1903 contact_form.php:3440
281
- msgid "Close"
282
- msgstr ""
283
-
284
- #: contact_form.php:1081
285
  msgid "Add department selectbox to the contact form"
286
  msgstr ""
287
 
288
- #: contact_form.php:1089 contact_form.php:1597 contact_form.php:1816
289
- #: contact_form.php:2109
290
- msgid "If you upgrade to Pro version all your settings will be saved."
291
- msgstr ""
292
-
293
- #: contact_form.php:1096 contact_form.php:1418 contact_form.php:1602
294
- #: contact_form.php:1823 contact_form.php:2116
295
- msgid "Upgrade to Pro"
296
- msgstr ""
297
-
298
- #: contact_form.php:1104
299
  msgid "Save emails to the database"
300
  msgstr ""
301
 
302
- #: contact_form.php:1116 contact_form.php:1130 contact_form.php:1137
 
 
303
  msgid "Using"
304
  msgstr ""
305
 
306
- #: contact_form.php:1122 contact_form.php:1490 contact_form.php:1531
307
- #: contact_form.php:1566
 
 
308
  msgid "Please activate the appropriate option on"
309
  msgstr ""
310
 
311
- #: contact_form.php:1125 contact_form.php:1493 contact_form.php:1534
312
- #: contact_form.php:1569
 
 
313
  #, fuzzy
314
  msgid "settings page"
315
  msgstr "Configuració extra"
316
 
317
- #: contact_form.php:1131 contact_form.php:1500 contact_form.php:1542
318
- #: contact_form.php:1576
 
 
319
  #, fuzzy
320
  msgid "Activate"
321
  msgstr "Captcha activat"
322
 
323
- #: contact_form.php:1138 contact_form.php:1509 contact_form.php:1548
324
- #: contact_form.php:1581
 
 
325
  msgid "Download"
326
  msgstr "Descarregar"
327
 
328
- #: contact_form.php:1150
329
  msgid "Sending method"
330
  msgstr ""
331
 
332
- #: contact_form.php:1155
333
  msgid "Wp-mail"
334
  msgstr "Wp-mail"
335
 
336
- #: contact_form.php:1157
337
  #, fuzzy
338
  msgid "You can use the Wordpress wp_mail function for mailing"
339
  msgstr "Vostè pot utilitzar la funció wp_mail pel correu."
340
 
341
- #: contact_form.php:1160
342
  msgid "Mail"
343
  msgstr "Mail"
344
 
345
- #: contact_form.php:1162
346
  #, fuzzy
347
  msgid "You can use the PHP mail function for mailing"
348
  msgstr "Vostè pot utilitzar la funció wp_mail pel correu."
349
 
350
- #: contact_form.php:1167
351
  msgid "'FROM' field"
352
  msgstr ""
353
 
354
- #: contact_form.php:1183
355
  msgid "User name"
356
  msgstr ""
357
 
358
- #: contact_form.php:1185
359
  #, fuzzy
360
  msgid ""
361
  "The name of the user who fills the form will be used in the field 'From'."
@@ -363,15 +512,11 @@ msgstr ""
363
  "L'adreça de correu electrònic de l'usuari que omple el formulari s'ha de "
364
  "posar al camp 'From'."
365
 
366
- #: contact_form.php:1196 contact_form.php:3147 contact_form.php:3191
367
- msgid "Email"
368
- msgstr "Adreça de correu electrònic"
369
-
370
- #: contact_form.php:1207
371
  msgid "User email"
372
  msgstr ""
373
 
374
- #: contact_form.php:1209
375
  msgid ""
376
  "The email address of the user who fills the form will be used in the field "
377
  "'From'."
@@ -379,597 +524,526 @@ msgstr ""
379
  "L'adreça de correu electrònic de l'usuari que omple el formulari s'ha de "
380
  "posar al camp 'From'."
381
 
382
- #: contact_form.php:1218
383
  msgid ""
384
  "If this option is changed, email messages may be moved to the spam folder or "
385
  "email delivery failures may occur."
386
  msgstr ""
387
 
388
- #: contact_form.php:1227
389
  #, fuzzy
390
  msgid "Required symbol"
391
  msgstr "Camps requerits"
392
 
393
- #: contact_form.php:1237
394
  msgid "Fields"
395
  msgstr ""
396
 
397
- #: contact_form.php:1238 contact_form.php:1265 contact_form.php:1292
398
- #: contact_form.php:1312 contact_form.php:1351 contact_form.php:1433
 
 
 
 
399
  msgid "Used"
400
  msgstr ""
401
 
402
- #: contact_form.php:1239 contact_form.php:1254 contact_form.php:1269
403
- #: contact_form.php:1296 contact_form.php:1316 contact_form.php:1329
404
- #: contact_form.php:1355 contact_form.php:1368 contact_form.php:1392
 
 
 
 
 
405
  #, fuzzy
406
  msgid "Required"
407
  msgstr "Camps requerits"
408
 
409
- #: contact_form.php:1241 contact_form.php:1274 contact_form.php:1334
410
- #: contact_form.php:1373 contact_form.php:1397
 
 
 
411
  msgid "Visible"
412
  msgstr ""
413
 
414
- #: contact_form.php:1242 contact_form.php:1278 contact_form.php:1338
415
- #: contact_form.php:1377 contact_form.php:1401
 
 
 
416
  msgid "Disabled for editing"
417
  msgstr ""
418
 
419
- #: contact_form.php:1243 contact_form.php:1302 contact_form.php:1381
420
- #: contact_form.php:1405
 
 
421
  msgid "Field's default value"
422
  msgstr ""
423
 
424
- #: contact_form.php:1250
425
  msgid "Department selectbox"
426
  msgstr ""
427
 
428
- #: contact_form.php:1282
429
  msgid "Use User's name as a default value if the user is logged in."
430
  msgstr ""
431
 
432
- #: contact_form.php:1283 contact_form.php:1343
 
433
  msgid ""
434
  "'Visible' and 'Disabled for editing' options will be applied only to logged-"
435
  "in users."
436
  msgstr ""
437
 
438
- #: contact_form.php:1289
439
  msgid "Location selectbox"
440
  msgstr ""
441
 
442
- #: contact_form.php:1342
443
  msgid "Use User's email as a default value if the user is logged in."
444
  msgstr ""
445
 
446
- #: contact_form.php:1426
447
  msgid "Attachment block"
448
  msgstr "Adjunt blocat"
449
 
450
- #: contact_form.php:1428
451
  msgid "Users can attach the following file formats"
452
  msgstr "Els usuaris poden adjuntar els següents formats d'arxiu"
453
 
454
- #: contact_form.php:1446
455
  msgid "Add to the form"
456
  msgstr ""
457
 
458
- #: contact_form.php:1451
459
  #, fuzzy
460
  msgid "Tips below the Attachment"
461
  msgstr "Consells del blocatge de l'adjunt"
462
 
463
- #: contact_form.php:1458
464
  #, fuzzy
465
  msgid "'Send me a copy' block"
466
  msgstr "Envia'm una còpia"
467
 
468
- #: contact_form.php:1465
469
  msgid "GDPR Compliance"
470
  msgstr ""
471
 
472
- #: contact_form.php:1470
473
  msgid "Link to Privacy Policy Page"
474
  msgstr ""
475
 
476
- #: contact_form.php:1474
477
  msgid "Text for Privacy Policy Link"
478
  msgstr ""
479
 
480
- #: contact_form.php:1502
481
  #, fuzzy
482
  msgid "Activate for network"
483
  msgstr "Plugin activat"
484
 
485
- #: contact_form.php:1592
486
  msgid "Agreement checkbox"
487
  msgstr ""
488
 
489
- #: contact_form.php:1592
490
  msgid "Required checkbox for submitting the form"
491
  msgstr ""
492
 
493
- #: contact_form.php:1593
494
  msgid "Optional checkbox"
495
  msgstr ""
496
 
497
- #: contact_form.php:1593
498
  msgid "Optional checkbox, the results of which will be displayed in email"
499
  msgstr ""
500
 
501
- #: contact_form.php:1611
502
  msgid "Delete an attachment file from the server after the email is sent"
503
  msgstr ""
504
 
505
- #: contact_form.php:1617
506
  msgid "Email in HTML format sending"
507
  msgstr ""
508
 
509
- #: contact_form.php:1621
510
  msgid "Display additional info in the email"
511
  msgstr "Mostra informació addicional al correu electrònic,"
512
 
513
- #: contact_form.php:1627
514
  #, fuzzy
515
  msgid "Sent from (IP address)"
516
  msgstr "Enviat des de (adreça IP)"
517
 
518
- #: contact_form.php:1627
519
  msgid "Example: Sent from (IP address): 127.0.0.1"
520
  msgstr ""
521
 
522
- #: contact_form.php:1628 contact_form.php:3096 contact_form.php:3098
523
- msgid "Date/Time"
524
- msgstr "Data/hora"
525
-
526
- #: contact_form.php:1628
527
  msgid "Example: Date/Time: August 19, 2013 8:50 pm"
528
  msgstr ""
529
 
530
- #: contact_form.php:1629 contact_form.php:3102 contact_form.php:3104
531
- msgid "Sent from (referer)"
532
- msgstr "Enviat des de (referent)"
533
-
534
- #: contact_form.php:1629
535
  msgid ""
536
  "Example: Sent from (referer): https://bestwebsoft.com/contacts/contact-us/"
537
  msgstr ""
538
 
539
- #: contact_form.php:1630 contact_form.php:3108 contact_form.php:3110
540
- msgid "Using (user agent)"
541
- msgstr "Usant (user agent)"
542
-
543
- #: contact_form.php:1630
544
  msgid ""
545
  "Example: Using (user agent): Mozilla/5.0 (Windows NT 6.2; WOW64) "
546
  "AppleWebKit/537.36 (KHTML, like Gecko) Chrome/28.0.1500.95 Safari/537.36"
547
  msgstr ""
548
 
549
- #: contact_form.php:1635
550
  msgid "Language settings for the field names in the form"
551
  msgstr "Configuració de la llengua als noms dels camps del formulari"
552
 
553
- #: contact_form.php:1644
554
  msgid "Add a language"
555
  msgstr "Afegeix lengua"
556
 
557
- #: contact_form.php:1648
558
  msgid "Change the names of the contact form fields and error messages"
559
  msgstr ""
560
  "Modifica els noms dels camps i els missatges d'error del formulari de "
561
  "contacte"
562
 
563
- #: contact_form.php:1653 contact_form.php:1751 contact_form.php:1883
564
- #: contact_form.php:2023 contact_form.php:2028 contact_form.php:2038
565
- #: contact_form.php:2043 contact_form.php:2048 contact_form.php:2053
566
- #: contact_form.php:2063 contact_form.php:2068 contact_form.php:2077
567
- #: contact_form.php:2091 contact_form.php:2096 contact_form.php:2101
568
  msgid "Default"
569
  msgstr "Per defecte"
570
 
571
- #: contact_form.php:1666 contact_form.php:1705
 
572
  msgid "click to expand/hide the list"
573
  msgstr ""
574
 
575
- #: contact_form.php:1675 contact_form.php:1714
 
576
  #, fuzzy
577
  msgid "Tips below the Attachment block"
578
  msgstr "Consells del blocatge de l'adjunt"
579
 
580
- #: contact_form.php:1679 contact_form.php:1718
 
581
  msgid "Error message for the Name field"
582
  msgstr "Missatge d'error per al camp 'Nom'"
583
 
584
- #: contact_form.php:1680 contact_form.php:1719
 
585
  msgid "Error message for the Address field"
586
  msgstr "Missatge d'error per al camp 'Adreça'"
587
 
588
- #: contact_form.php:1681 contact_form.php:1720
 
589
  msgid "Error message for the Email field"
590
  msgstr "Missatge d'error per al camp 'Adreça de correu electrònic'"
591
 
592
- #: contact_form.php:1682 contact_form.php:1721
 
593
  msgid "Error message for the Phone field"
594
  msgstr "Missatge d'error per al camp 'Telèfon\""
595
 
596
- #: contact_form.php:1683 contact_form.php:1722
 
597
  msgid "Error message for the Subject field"
598
  msgstr "Missatge d'error per al camp 'Assumpte'"
599
 
600
- #: contact_form.php:1684 contact_form.php:1723
 
601
  msgid "Error message for the Message field"
602
  msgstr "Missatge d'error per al camp 'Missatge'"
603
 
604
- #: contact_form.php:1685 contact_form.php:1724
 
605
  msgid "Error message about the file type for the Attachment field"
606
  msgstr "Missatge d'error sobre el tipus de per al camp 'Adjunt'"
607
 
608
- #: contact_form.php:1686 contact_form.php:1725
 
609
  msgid ""
610
  "Error message while uploading a file for the Attachment field to the server"
611
  msgstr "Missatge d'error al carregar al servidor un fitxer per al camp Adjunt"
612
 
613
- #: contact_form.php:1687 contact_form.php:1726
 
614
  msgid "Error message while moving the file for the Attachment field"
615
  msgstr "Missatge d'error al mourerun fitxer per al camp Adjunt"
616
 
617
- #: contact_form.php:1688 contact_form.php:1727
 
618
  msgid "Error message when file size limit for the Attachment field is exceeded"
619
  msgstr ""
620
  "Missatge d'error al superar el límit de mida de fitxer per al camp Adjunt"
621
 
622
- #: contact_form.php:1689 contact_form.php:1728
 
623
  msgid "Error message for the Captcha field"
624
  msgstr "Missatge d'error al camp Captcha"
625
 
626
- #: contact_form.php:1690 contact_form.php:1729
 
627
  msgid "Error message for the whole form"
628
  msgstr "Missatge d'error a tot el formulari"
629
 
630
- #: contact_form.php:1693 contact_form.php:1695 contact_form.php:1732
631
- #: contact_form.php:1734 contact_form.php:1766 contact_form.php:1768
632
- #: contact_form.php:1780 contact_form.php:1782 contact_form.php:3530
633
- #: contact_form.php:3532
634
- msgid "Use shortcode"
635
- msgstr "useu un codi curt"
636
-
637
- #: contact_form.php:1693 contact_form.php:1695 contact_form.php:1732
638
- #: contact_form.php:1734 contact_form.php:1766 contact_form.php:1768
639
- #: contact_form.php:1780 contact_form.php:1782 contact_form.php:3530
640
- #: contact_form.php:3532
641
- msgid "for this language"
642
- msgstr "Per aquesta llengua"
643
-
644
- #: contact_form.php:1742
645
  #, fuzzy
646
  msgid "Use the changed names of the contact form fields in the email"
647
  msgstr ""
648
  "Modifica els noms dels camps i els missatges d'error del formulari de "
649
  "contacte"
650
 
651
- #: contact_form.php:1748
652
  msgid "Action after email is sent"
653
  msgstr "Accions després d'enviar un correu electrònic."
654
 
655
- #: contact_form.php:1750
656
  msgid "Display text"
657
  msgstr "Mostra el text"
658
 
659
- #: contact_form.php:1764 contact_form.php:1778
 
660
  msgid "Text"
661
  msgstr "Text"
662
 
663
- #: contact_form.php:1789
664
  msgid "Redirect to the page"
665
  msgstr "Redirigir a la pàgina"
666
 
667
- #: contact_form.php:1790
668
  msgid "Url"
669
  msgstr "Url"
670
 
671
- #: contact_form.php:1801
672
- msgid "Add field 'Reply-To' to the email header"
673
- msgstr ""
674
-
675
- #: contact_form.php:1803
676
- msgid "Field 'Reply-To' will be initialized by user email"
677
- msgstr ""
678
-
679
- #: contact_form.php:1807
680
- msgid "Auto Response"
681
- msgstr ""
682
-
683
- #: contact_form.php:1811
684
  #, php-format
685
  msgid ""
686
- "You can use %%NAME%% to display data from the email field and %%MESSAGE%% to "
687
- "display data from the Message field, as well as %%SITENAME%% to display blog "
688
- "name."
689
  msgstr ""
690
 
691
- #: contact_form.php:1833 contact_form.php:2375
692
- msgid "Save Changes"
693
- msgstr "Desar els canvis"
694
-
695
- #: contact_form.php:1846
696
- #, php-format
697
- msgid ""
698
- "Please enable JavaScript to change '%s', '%s' options and for fields sorting."
699
  msgstr ""
700
 
701
- #: contact_form.php:1846 contact_form.php:1855
702
- msgid "Form layout"
 
 
 
 
 
 
 
703
  msgstr ""
704
 
705
- #: contact_form.php:1846 contact_form.php:1867
 
706
  #, fuzzy
707
  msgid "Submit position"
708
  msgstr "Enviar"
709
 
710
- #: contact_form.php:1859
 
 
 
 
 
 
 
 
 
 
711
  msgid "One column"
712
  msgstr ""
713
 
714
- #: contact_form.php:1862
715
  msgid "Two columns"
716
  msgstr ""
717
 
718
- #: contact_form.php:1871 contact_form.php:1911 contact_form.php:1929
719
- #: contact_form.php:1944
 
 
720
  msgid "Left"
721
  msgstr ""
722
 
723
- #: contact_form.php:1874 contact_form.php:1917 contact_form.php:1932
724
- #: contact_form.php:1950
 
 
725
  msgid "Right"
726
  msgstr ""
727
 
728
- #: contact_form.php:1879
729
  msgid "Width"
730
  msgstr ""
731
 
732
- #: contact_form.php:1887
733
  msgid "Custom"
734
  msgstr ""
735
 
736
- #: contact_form.php:1894
737
  msgid "px"
738
  msgstr ""
739
 
740
- #: contact_form.php:1907
741
  msgid "Form align"
742
  msgstr ""
743
 
744
- #: contact_form.php:1914 contact_form.php:1947
 
745
  msgid "Center"
746
  msgstr ""
747
 
748
- #: contact_form.php:1922
749
- #, fuzzy
750
- msgid "Labels position"
751
- msgstr "Enviar"
752
-
753
- #: contact_form.php:1926
754
  msgid "Top"
755
  msgstr ""
756
 
757
- #: contact_form.php:1935
758
  msgid "Bottom"
759
  msgstr ""
760
 
761
- #: contact_form.php:1940
762
- msgid "Labels align"
763
- msgstr ""
764
-
765
- #: contact_form.php:1955
766
  msgid "Errors output"
767
  msgstr "Errors de sortida"
768
 
769
- #: contact_form.php:1958
770
  msgid "Display error messages"
771
  msgstr "Mostra els missatges d'error"
772
 
773
- #: contact_form.php:1959
774
  msgid "Color of the input field errors."
775
  msgstr "Color dels errors al camp d'entrada"
776
 
777
- #: contact_form.php:1960
778
  msgid "Display error messages & color of the input field errors"
779
  msgstr "Mostra els missatges d'error i el color dels errors del camp d'entrada"
780
 
781
- #: contact_form.php:1965
782
  msgid "Add placeholder to the input blocks"
783
  msgstr "Afegeix marcador de posició als blocs d'entrada"
784
 
785
- #: contact_form.php:1971
786
- msgid "Add tooltips"
787
- msgstr "Afegir consells sobre les eines"
788
-
789
- #: contact_form.php:1985
790
  msgid "Email address"
791
  msgstr "Adreça de correu electrònic:"
792
 
793
- #: contact_form.php:1990 contact_form.php:3163 contact_form.php:3204
794
- msgid "Phone Number"
795
- msgstr "Nombre de telèfon"
796
-
797
- #: contact_form.php:2016
798
- msgid "Style options"
799
- msgstr "Opcions d'estil"
800
-
801
- #: contact_form.php:2020
802
  msgid "Text color"
803
  msgstr "Color del text"
804
 
805
- #: contact_form.php:2025
806
  msgid "Label text color"
807
  msgstr "Color del text de l'etiqeta"
808
 
809
- #: contact_form.php:2030
810
  msgid "Placeholder color"
811
  msgstr "Color del marcador de posició"
812
 
813
- #: contact_form.php:2035
814
  msgid "Errors color"
815
  msgstr "Color dels errors"
816
 
817
- #: contact_form.php:2040
818
  msgid "Error text color"
819
  msgstr "Color del text d'error"
820
 
821
- #: contact_form.php:2045
822
  msgid "Background color of the input field errors"
823
  msgstr "Color de fons dels errors del camp d'entrada"
824
 
825
- #: contact_form.php:2050
826
  msgid "Border color of the input field errors"
827
  msgstr "Color de la vora dels errors del camp d'entrada"
828
 
829
- #: contact_form.php:2055
830
  msgid "Placeholder color of the input field errors"
831
  msgstr "Color del marcador de posició dels errors del camp d'entrada"
832
 
833
- #: contact_form.php:2060
834
  msgid "Input fields"
835
  msgstr "Visualitza l'adjunt"
836
 
837
- #: contact_form.php:2065
838
  msgid "Input fields background color"
839
  msgstr "Color de fons dels camps d'entrada"
840
 
841
- #: contact_form.php:2070
842
  msgid "Text fields color"
843
  msgstr "Color dels camps de text"
844
 
845
- #: contact_form.php:2074
846
  msgid "Border width in px, numbers only"
847
  msgstr "Ample de vora en px, sols nombres"
848
 
849
- #: contact_form.php:2079 contact_form.php:2103
 
850
  msgid "Border color"
851
  msgstr "Color de la vora"
852
 
853
- #: contact_form.php:2084
854
  msgid "Submit button"
855
  msgstr "Enviar"
856
 
857
  # #: contact_form.php:928
858
- #: contact_form.php:2088
859
  msgid "Width in px, numbers only"
860
  msgstr "Ample en px, sols nombres"
861
 
862
- #: contact_form.php:2093
863
  msgid "Button color"
864
  msgstr "Color del botó"
865
 
866
- #: contact_form.php:2098
867
  msgid "Button text color"
868
  msgstr "Color del text del botó"
869
 
870
- #: contact_form.php:2127
871
  #, fuzzy
872
  msgid "Contact Form | Preview"
873
  msgstr "Contact Form Pro | Vista prèvia"
874
 
875
- #: contact_form.php:2128
876
  msgid "Drag the necessary field to sort fields."
877
  msgstr ""
878
 
879
- #: contact_form.php:2364
880
- #, fuzzy
881
- msgid ""
882
- "If you would like to add the Contact Form to your website, just copy and "
883
- "paste this shortcode to your post or page or widget"
884
  msgstr ""
885
- "Si vol afegir Contact Form en la seva web, copiï i enganxi aquest codi en el "
886
- "seu missatge, pàgina o widget:"
887
-
888
- #: contact_form.php:2486
889
- msgid "Sorry, email message could not be delivered."
890
- msgstr "Ho sentim, el seu e-mail no ha pogut ser lliurat."
891
-
892
- #: contact_form.php:3090 contact_form.php:3092
893
- msgid "Sent from (ip address)"
894
- msgstr "Enviat des de (adreça IP)"
895
 
896
- #: contact_form.php:3120
897
- msgid "Contact from"
898
- msgstr "Contact from"
899
-
900
- #: contact_form.php:3125 contact_form.php:3174
901
- msgid "Site"
902
- msgstr "Lloc"
903
-
904
- #: contact_form.php:3286
905
- msgid ""
906
- "If you can see this MIME, it means that the MIME type is not supported by "
907
- "your email client!"
908
  msgstr ""
909
- "Si pot veure aquest MIME, vol dir que el tipus MIME no és compatible amb el "
910
- "seu client de correu electrònic!"
911
 
912
- #: contact_form.php:3358
913
- msgid "FAQ"
914
- msgstr "FAQ"
915
-
916
- #: contact_form.php:3359
917
- msgid "Support"
918
- msgstr "Suport"
919
-
920
- #: contact_form.php:3408
921
- msgid "Are you sure that you want to delete this language data?"
922
- msgstr "Està vostè segur que vol esborrar aquest idioma?"
923
-
924
- #: contact_form.php:3431
925
  #, fuzzy
926
- msgid "Add multiple forms"
927
- msgstr "Afegir consells sobre les eines"
928
-
929
- #: contact_form.php:3431
930
- msgid ""
931
- "Install Contact Form Multi plugin to create unlimited number of contact "
932
- "forms."
933
- msgstr ""
934
-
935
- #: contact_form.php:3436
936
- #, fuzzy
937
- msgid "Learn more"
938
- msgstr "Llegir més"
939
-
940
- #: contact_form.php:3494
941
- msgid "Error"
942
- msgstr ""
943
-
944
- #: contact_form.php:3494 contact_form.php:3496
945
- msgid "Illegal language code"
946
- msgstr ""
947
-
948
- #: contact_form.php:3681
949
- msgid "Close notice"
950
- msgstr ""
951
 
952
- #: contact_form.php:3686
953
- msgid "allows to store your messages to the database."
954
- msgstr ""
955
 
956
- #: contact_form.php:3687
957
- msgid "Manage messages that have been sent from your website."
958
- msgstr ""
959
 
960
- #: contact_form.php:3690
961
- msgid "Learn More"
962
- msgstr ""
963
-
964
- #: contact_form.php:3750
965
  #, fuzzy
966
- msgid "Contact form"
967
- msgstr "Contact from"
968
 
969
- #: contact_form.php:3763 contact_form.php:3773
970
  #, fuzzy
971
- msgid "Language"
972
- msgstr "Afegeix lengua"
 
 
 
 
973
 
974
  #, fuzzy
975
  #~ msgid "Example: Sent from (IP address):\t127.0.0.1"
2
  msgstr ""
3
  "Project-Id-Version: Contact Form\n"
4
  "Report-Msgid-Bugs-To: \n"
5
+ "POT-Creation-Date: 2019-02-25 16:26+0200\n"
6
+ "PO-Revision-Date: 2019-02-25 16:26+0200\n"
7
  "Last-Translator: plugin@bestwebsoft.com <plugin@bestwebsoft.com>\n"
8
  "Language-Team: Kenneth <kenneth@snollocer.net>\n"
9
  "Language: ca_ES\n"
16
  "X-Generator: Poedit 1.8.7.1\n"
17
  "X-Poedit-SearchPath-0: .\n"
18
 
19
+ #: contact_form.php:39 contact_form.php:47 contact_form.php:647
20
+ #: includes/class-cntctfrm-settings.php:425
21
  msgid "Contact Form Settings"
22
  msgstr "Opcions Contact Form"
23
 
24
+ #: contact_form.php:48 contact_form.php:1619 contact_form.php:1633
25
+ #: includes/class-cntctfrm-settings.php:27
26
+ msgid "Settings"
27
+ msgstr "Configuració"
28
+
29
+ #: contact_form.php:63 includes/class-cntctfrm-settings.php:483
30
+ #: includes/class-cntctfrm-settings.php:817
31
+ #: includes/class-cntctfrm-settings.php:998
32
+ #: includes/class-cntctfrm-settings.php:1513
33
+ msgid "Upgrade to Pro"
34
+ msgstr ""
35
 
36
+ #: contact_form.php:350 contact_form.php:1410 contact_form.php:1456
37
+ #: includes/class-cntctfrm-settings.php:574
38
+ #: includes/class-cntctfrm-settings.php:664
39
+ #: includes/class-cntctfrm-settings.php:1064
40
+ #: includes/class-cntctfrm-settings.php:1103
41
+ #: includes/class-cntctfrm-settings.php:1344
42
  msgid "Name"
43
  msgstr "Nom"
44
 
45
+ #: contact_form.php:351 contact_form.php:1417 contact_form.php:1462
46
+ #: includes/class-cntctfrm-settings.php:711
47
+ #: includes/class-cntctfrm-settings.php:1065
48
+ #: includes/class-cntctfrm-settings.php:1104
49
+ #: includes/class-cntctfrm-settings.php:1349
50
  msgid "Address"
51
  msgstr "Adreça:"
52
 
53
+ #: contact_form.php:352 includes/class-cntctfrm-settings.php:727
54
+ #: includes/class-cntctfrm-settings.php:1066
55
+ #: includes/class-cntctfrm-settings.php:1105
56
  msgid "Email Address"
57
  msgstr "Adreça de correu electrònic:"
58
 
59
+ #: contact_form.php:353 includes/class-cntctfrm-settings.php:747
60
+ #: includes/class-cntctfrm-settings.php:1067
61
+ #: includes/class-cntctfrm-settings.php:1106
62
  #, fuzzy
63
  msgid "Phone number"
64
  msgstr "Nombre de telèfon"
65
 
66
+ #: contact_form.php:354 contact_form.php:1428 contact_form.php:1471
67
+ #: includes/class-cntctfrm-settings.php:763
68
+ #: includes/class-cntctfrm-settings.php:1068
69
+ #: includes/class-cntctfrm-settings.php:1107
70
+ #: includes/class-cntctfrm-settings.php:1364
71
  msgid "Subject"
72
  msgstr "Assumpte"
73
 
74
+ #: contact_form.php:355 contact_form.php:1433 contact_form.php:1475
75
+ #: includes/class-cntctfrm-settings.php:787
76
+ #: includes/class-cntctfrm-settings.php:1069
77
+ #: includes/class-cntctfrm-settings.php:1108
78
+ #: includes/class-cntctfrm-settings.php:1368
79
  msgid "Message"
80
  msgstr "MIssatge"
81
 
82
+ #: contact_form.php:356 includes/class-cntctfrm-settings.php:1070
83
+ #: includes/class-cntctfrm-settings.php:1109
84
+ #: includes/class-cntctfrm-settings.php:1373
85
  msgid "Attachment"
86
  msgstr "Adjunt:"
87
 
88
+ #: contact_form.php:357
89
  msgid ""
90
  "Supported file types: HTML, TXT, CSS, GIF, PNG, JPEG, JPG, TIFF, BMP, AI, "
91
  "EPS, PS, CSV, RTF, PDF, DOC, DOCX, XLS, XLSX, ZIP, RAR, WAV, MP3, PPT."
93
  "Formats de fitxer suportats: HTML, TXT, CSS, GIF, PNG, JPEG, JPG, TIFF, BMP, "
94
  "AI, EPS, PS, CSV, RTF, PDF, DOC, DOCX, XLS, XLSX, ZIP, RAR, WAV, MP3, PPT."
95
 
96
+ #: contact_form.php:358 includes/class-cntctfrm-settings.php:1072
97
+ #: includes/class-cntctfrm-settings.php:1111
98
  msgid "Send me a copy"
99
  msgstr "Envia'm una còpia"
100
 
101
+ #: contact_form.php:359 includes/class-cntctfrm-settings.php:1073
102
+ #: includes/class-cntctfrm-settings.php:1112
103
  msgid "I consent to having this site collect my personal data."
104
  msgstr ""
105
 
106
+ #: contact_form.php:360 includes/class-cntctfrm-settings.php:1074
107
+ #: includes/class-cntctfrm-settings.php:1113
108
  msgid "Submit"
109
  msgstr "Enviar"
110
 
111
+ #: contact_form.php:361
112
  msgid "Your name is required."
113
  msgstr "El seu nom es obligatori."
114
 
115
+ #: contact_form.php:362
116
  msgid "Address is required."
117
  msgstr "Una adreça vàlida és obligatòria."
118
 
119
+ #: contact_form.php:363
120
  msgid "A valid email address is required."
121
  msgstr "Una Adreça de correu electrònic és obligatòria."
122
 
123
+ #: contact_form.php:364
124
  msgid "Phone number is required."
125
  msgstr "El seu nombre de telèfon és obligatori."
126
 
127
+ #: contact_form.php:365
128
  msgid "Subject is required."
129
  msgstr "L'assumpte és obligatori."
130
 
131
+ #: contact_form.php:366
132
  msgid "Message text is required."
133
  msgstr "El missatge és obligatori."
134
 
135
+ #: contact_form.php:367
136
  msgid "File format is not valid."
137
  msgstr "El format de l'adjunt és incorrecte."
138
 
139
+ #: contact_form.php:368
140
  msgid "File upload error."
141
  msgstr "Error de càrrega del fitxer"
142
 
143
+ #: contact_form.php:369
144
  msgid "The file could not be uploaded."
145
  msgstr "El fitxer no ha pogut ser carregat"
146
 
147
+ #: contact_form.php:370
148
  msgid "This file is too large."
149
  msgstr "Aquest document és massa gran."
150
 
151
+ #: contact_form.php:371
152
  msgid "Please fill out the CAPTCHA."
153
  msgstr "Si us plau completi el CAPTCHA"
154
 
155
+ #: contact_form.php:372
156
  msgid "Please make corrections below and try again."
157
  msgstr "Si us plau, corregeixi les dades i provi un altre cop."
158
 
159
+ #: contact_form.php:374
160
  msgid "Thank you for contacting us."
161
  msgstr "Gràcies per contactar amb nosaltres"
162
 
163
+ #: contact_form.php:651
164
+ msgid "NEW_FORM"
165
+ msgstr ""
166
 
167
+ #: contact_form.php:652
168
  msgid ""
169
+ "If you want to create multiple contact forms, please install the Contact "
170
+ "Form Multi plugin."
171
  msgstr ""
172
 
173
+ #: contact_form.php:657
174
  msgid ""
175
+ "Contact Form plugin doesn't support your current version of Contact Form "
176
+ "Multi plugin. Please update Contact Form Multi plugin to version 1.2.6 or "
177
+ "higher."
178
  msgstr ""
 
 
179
 
180
+ #: contact_form.php:759
181
+ msgid "Sorry, email message could not be delivered."
182
+ msgstr "Ho sentim, el seu e-mail no ha pogut ser lliurat."
 
183
 
184
+ #: contact_form.php:1366 contact_form.php:1368
185
+ msgid "Sent from (ip address)"
186
+ msgstr "Enviat des de (adreça IP)"
187
+
188
+ #: contact_form.php:1372 contact_form.php:1374
189
+ #: includes/class-cntctfrm-settings.php:1024
190
+ msgid "Date/Time"
191
+ msgstr "Data/hora"
192
+
193
+ #: contact_form.php:1378 contact_form.php:1380
194
+ #: includes/class-cntctfrm-settings.php:1025
195
+ msgid "Sent from (referer)"
196
+ msgstr "Enviat des de (referent)"
197
+
198
+ #: contact_form.php:1384 contact_form.php:1386
199
+ #: includes/class-cntctfrm-settings.php:1026
200
+ msgid "Using (user agent)"
201
+ msgstr "Usant (user agent)"
202
+
203
+ #: contact_form.php:1396
204
+ msgid "Contact from"
205
+ msgstr "Contact from"
206
+
207
+ #: contact_form.php:1401 contact_form.php:1450
208
+ msgid "Site"
209
+ msgstr "Lloc"
210
+
211
+ #: contact_form.php:1423 contact_form.php:1467
212
+ #: includes/class-cntctfrm-settings.php:598
213
+ msgid "Email"
214
+ msgstr "Adreça de correu electrònic"
215
+
216
+ #: contact_form.php:1439 contact_form.php:1480
217
+ #: includes/class-cntctfrm-settings.php:1359
218
+ msgid "Phone Number"
219
+ msgstr "Nombre de telèfon"
220
+
221
+ #: contact_form.php:1562
222
  msgid ""
223
+ "If you can see this MIME, it means that the MIME type is not supported by "
224
+ "your email client!"
225
  msgstr ""
226
+ "Si pot veure aquest MIME, vol dir que el tipus MIME no és compatible amb el "
227
+ "seu client de correu electrònic!"
228
+
229
+ #: contact_form.php:1634
230
+ msgid "FAQ"
231
+ msgstr "FAQ"
232
+
233
+ #: contact_form.php:1635
234
+ msgid "Support"
235
+ msgstr "Suport"
236
 
237
+ #: contact_form.php:1684
238
+ msgid "Are you sure that you want to delete this language data?"
239
+ msgstr "Està vostè segur que vol esborrar aquest idioma?"
240
+
241
+ #: contact_form.php:1706
242
  #, fuzzy
243
+ msgid "Add multiple forms"
244
+ msgstr "Afegir consells sobre les eines"
245
+
246
+ #: contact_form.php:1706
247
+ msgid ""
248
+ "Install Contact Form Multi plugin to create unlimited number of contact "
249
+ "forms."
250
  msgstr ""
 
 
251
 
252
+ #: contact_form.php:1711
253
  #, fuzzy
254
+ msgid "Learn more"
255
+ msgstr "Llegir més"
256
+
257
+ #: contact_form.php:1715 includes/class-cntctfrm-settings.php:469
258
+ #: includes/class-cntctfrm-settings.php:987
259
+ #: includes/class-cntctfrm-settings.php:1272
260
+ msgid "Close"
261
+ msgstr ""
262
 
263
+ #: contact_form.php:1769
264
+ msgid "Error"
265
  msgstr ""
266
 
267
+ #: contact_form.php:1769 contact_form.php:1771
268
+ msgid "Illegal language code"
269
  msgstr ""
270
 
271
+ #: contact_form.php:1805 contact_form.php:1807
272
+ #: includes/class-cntctfrm-settings.php:1089
273
+ #: includes/class-cntctfrm-settings.php:1091
274
+ #: includes/class-cntctfrm-settings.php:1128
275
+ #: includes/class-cntctfrm-settings.php:1130
276
+ #: includes/class-cntctfrm-settings.php:1162
277
+ #: includes/class-cntctfrm-settings.php:1164
278
+ #: includes/class-cntctfrm-settings.php:1176
279
+ #: includes/class-cntctfrm-settings.php:1178
280
+ msgid "Use shortcode"
281
+ msgstr "useu un codi curt"
282
 
283
+ #: contact_form.php:1805 contact_form.php:1807
284
+ #: includes/class-cntctfrm-settings.php:1089
285
+ #: includes/class-cntctfrm-settings.php:1091
286
+ #: includes/class-cntctfrm-settings.php:1128
287
+ #: includes/class-cntctfrm-settings.php:1130
288
+ #: includes/class-cntctfrm-settings.php:1162
289
+ #: includes/class-cntctfrm-settings.php:1164
290
+ #: includes/class-cntctfrm-settings.php:1176
291
+ #: includes/class-cntctfrm-settings.php:1178
292
+ msgid "for this language"
293
+ msgstr "Per aquesta llengua"
294
+
295
+ #: contact_form.php:1955
296
+ msgid "Close notice"
297
+ msgstr ""
298
+
299
+ #: contact_form.php:1960
300
+ msgid "allows to store your messages to the database."
301
+ msgstr ""
302
+
303
+ #: contact_form.php:1961
304
+ msgid "Manage messages that have been sent from your website."
305
+ msgstr ""
306
+
307
+ #: contact_form.php:1964
308
+ msgid "Learn More"
309
+ msgstr ""
310
+
311
+ #: contact_form.php:2024
312
  #, fuzzy
313
+ msgid "Contact form"
314
+ msgstr "Contact from"
315
+
316
+ #: contact_form.php:2037 contact_form.php:2047
317
+ #, fuzzy
318
+ msgid "Language"
319
+ msgstr "Afegeix lengua"
320
 
321
+ #: includes/class-cntctfrm-settings.php:28
322
+ #: includes/class-cntctfrm-settings.php:546
323
+ msgid "Additional Settings"
324
+ msgstr ""
325
+
326
+ #: includes/class-cntctfrm-settings.php:29
327
+ #: includes/class-cntctfrm-settings.php:1198
328
  msgid "Appearance"
329
  msgstr ""
330
 
331
+ #: includes/class-cntctfrm-settings.php:30
332
+ msgid "Misc"
333
  msgstr ""
334
 
335
+ #: includes/class-cntctfrm-settings.php:31
336
+ msgid "License Key"
337
  msgstr ""
338
 
339
+ #: includes/class-cntctfrm-settings.php:32
340
+ msgid "Custom Code"
341
  msgstr ""
342
 
343
+ #: includes/class-cntctfrm-settings.php:99
344
+ msgid "Please enable JavaScript in your browser."
345
  msgstr ""
346
 
347
+ #: includes/class-cntctfrm-settings.php:101
348
+ #, php-format
349
  msgid ""
350
+ "Contact Form plugin requires PHP %s or higher. Please contact your hosting "
351
+ "provider to upgrade PHP version."
352
  msgstr ""
353
 
354
+ #: includes/class-cntctfrm-settings.php:347
 
355
  msgid ""
356
+ "Email 'FROM' field option was changed, which may cause email messages being "
357
+ "moved to the spam folder or email delivery failures."
358
  msgstr ""
 
 
359
 
360
+ #: includes/class-cntctfrm-settings.php:357
361
+ msgid ""
362
+ "If the 'Redirect to page' option is selected then the URL field should be in "
363
+ "the following format"
364
+ msgstr ""
365
+ "Si l'opció de 'redireccionament a la pàgina' està seleccionat llavors el "
366
+ "camp URL ha d'estar en el següent format"
367
+
368
+ #: includes/class-cntctfrm-settings.php:364
369
+ #, fuzzy
370
+ msgid "Such user does not exist."
371
+ msgstr "Usuari inexistent. Els canvis no s'han desat."
372
+
373
+ #: includes/class-cntctfrm-settings.php:374
374
+ #, fuzzy
375
  msgid ""
376
+ "Please enter a valid email address in the 'Use this email address' field."
377
+ msgstr ""
378
+ "Si us plau introdueixi una Adreça de correu electrònic correcta. Els canvis "
379
+ "no s'han desat."
380
+
381
+ #: includes/class-cntctfrm-settings.php:382
382
+ #, fuzzy
383
+ msgid "Please enter a valid email address in the 'FROM' field."
384
  msgstr ""
385
+ "Si us plau introdueixi una Adreça de correu electrònic correcta. Els canvis "
386
+ "no s'han desat."
387
 
388
+ #: includes/class-cntctfrm-settings.php:402
389
+ msgid "Settings saved."
390
+ msgstr "Configuració desada."
391
+
392
+ #: includes/class-cntctfrm-settings.php:404
393
+ #, fuzzy
394
+ msgid "Settings are not saved."
395
+ msgstr "Configuració desada."
396
+
397
+ #: includes/class-cntctfrm-settings.php:429
398
  msgid ""
399
  "If you leave the fields empty, the messages will be sent to the email "
400
  "address specified during registration."
402
  "Si la informació d'aquest camp queda buida, s'usarà l'adreça especificada "
403
  "durant el registre."
404
 
405
+ #: includes/class-cntctfrm-settings.php:432
406
  #, fuzzy
407
  msgid "The user's email address"
408
  msgstr "Adreça de correu electrònic de l'usuari:"
409
 
410
+ #: includes/class-cntctfrm-settings.php:437
411
  #, fuzzy
412
  msgid "Select a username"
413
  msgstr "Seleccioni un nom d'usuari"
414
 
415
+ #: includes/class-cntctfrm-settings.php:450
416
  #, fuzzy
417
  msgid ""
418
  "Select a username of the person who should get the messages from the contact "
419
  "form."
420
  msgstr "Introdueixi el nom de l'usuari que rebrà missatges des de contact form"
421
 
422
+ #: includes/class-cntctfrm-settings.php:455
423
  #, fuzzy
424
  msgid "Use this email address"
425
  msgstr "Usi aquesta adreça de correu electrònic::"
426
 
427
+ #: includes/class-cntctfrm-settings.php:460
428
  #, fuzzy
429
  msgid "Enter the email address for receiving messages"
430
  msgstr ""
431
  "Introdueixi una adreça de correu electrònic on vulgui re-enviar el missatge"
432
 
433
+ #: includes/class-cntctfrm-settings.php:473
 
 
 
 
 
434
  msgid "Add department selectbox to the contact form"
435
  msgstr ""
436
 
437
+ #: includes/class-cntctfrm-settings.php:492
 
 
 
 
 
 
 
 
 
 
438
  msgid "Save emails to the database"
439
  msgstr ""
440
 
441
+ #: includes/class-cntctfrm-settings.php:504
442
+ #: includes/class-cntctfrm-settings.php:518
443
+ #: includes/class-cntctfrm-settings.php:525
444
  msgid "Using"
445
  msgstr ""
446
 
447
+ #: includes/class-cntctfrm-settings.php:510
448
+ #: includes/class-cntctfrm-settings.php:889
449
+ #: includes/class-cntctfrm-settings.php:930
450
+ #: includes/class-cntctfrm-settings.php:965
451
  msgid "Please activate the appropriate option on"
452
  msgstr ""
453
 
454
+ #: includes/class-cntctfrm-settings.php:513
455
+ #: includes/class-cntctfrm-settings.php:892
456
+ #: includes/class-cntctfrm-settings.php:933
457
+ #: includes/class-cntctfrm-settings.php:968
458
  #, fuzzy
459
  msgid "settings page"
460
  msgstr "Configuració extra"
461
 
462
+ #: includes/class-cntctfrm-settings.php:519
463
+ #: includes/class-cntctfrm-settings.php:899
464
+ #: includes/class-cntctfrm-settings.php:941
465
+ #: includes/class-cntctfrm-settings.php:975
466
  #, fuzzy
467
  msgid "Activate"
468
  msgstr "Captcha activat"
469
 
470
+ #: includes/class-cntctfrm-settings.php:526
471
+ #: includes/class-cntctfrm-settings.php:908
472
+ #: includes/class-cntctfrm-settings.php:947
473
+ #: includes/class-cntctfrm-settings.php:980
474
  msgid "Download"
475
  msgstr "Descarregar"
476
 
477
+ #: includes/class-cntctfrm-settings.php:551
478
  msgid "Sending method"
479
  msgstr ""
480
 
481
+ #: includes/class-cntctfrm-settings.php:556
482
  msgid "Wp-mail"
483
  msgstr "Wp-mail"
484
 
485
+ #: includes/class-cntctfrm-settings.php:557
486
  #, fuzzy
487
  msgid "You can use the Wordpress wp_mail function for mailing"
488
  msgstr "Vostè pot utilitzar la funció wp_mail pel correu."
489
 
490
+ #: includes/class-cntctfrm-settings.php:562
491
  msgid "Mail"
492
  msgstr "Mail"
493
 
494
+ #: includes/class-cntctfrm-settings.php:563
495
  #, fuzzy
496
  msgid "You can use the PHP mail function for mailing"
497
  msgstr "Vostè pot utilitzar la funció wp_mail pel correu."
498
 
499
+ #: includes/class-cntctfrm-settings.php:569
500
  msgid "'FROM' field"
501
  msgstr ""
502
 
503
+ #: includes/class-cntctfrm-settings.php:585
504
  msgid "User name"
505
  msgstr ""
506
 
507
+ #: includes/class-cntctfrm-settings.php:587
508
  #, fuzzy
509
  msgid ""
510
  "The name of the user who fills the form will be used in the field 'From'."
512
  "L'adreça de correu electrònic de l'usuari que omple el formulari s'ha de "
513
  "posar al camp 'From'."
514
 
515
+ #: includes/class-cntctfrm-settings.php:609
 
 
 
 
516
  msgid "User email"
517
  msgstr ""
518
 
519
+ #: includes/class-cntctfrm-settings.php:611
520
  msgid ""
521
  "The email address of the user who fills the form will be used in the field "
522
  "'From'."
524
  "L'adreça de correu electrònic de l'usuari que omple el formulari s'ha de "
525
  "posar al camp 'From'."
526
 
527
+ #: includes/class-cntctfrm-settings.php:620
528
  msgid ""
529
  "If this option is changed, email messages may be moved to the spam folder or "
530
  "email delivery failures may occur."
531
  msgstr ""
532
 
533
+ #: includes/class-cntctfrm-settings.php:629
534
  #, fuzzy
535
  msgid "Required symbol"
536
  msgstr "Camps requerits"
537
 
538
+ #: includes/class-cntctfrm-settings.php:639
539
  msgid "Fields"
540
  msgstr ""
541
 
542
+ #: includes/class-cntctfrm-settings.php:640
543
+ #: includes/class-cntctfrm-settings.php:667
544
+ #: includes/class-cntctfrm-settings.php:694
545
+ #: includes/class-cntctfrm-settings.php:714
546
+ #: includes/class-cntctfrm-settings.php:750
547
+ #: includes/class-cntctfrm-settings.php:832
548
  msgid "Used"
549
  msgstr ""
550
 
551
+ #: includes/class-cntctfrm-settings.php:641
552
+ #: includes/class-cntctfrm-settings.php:656
553
+ #: includes/class-cntctfrm-settings.php:671
554
+ #: includes/class-cntctfrm-settings.php:698
555
+ #: includes/class-cntctfrm-settings.php:718
556
+ #: includes/class-cntctfrm-settings.php:754
557
+ #: includes/class-cntctfrm-settings.php:767
558
+ #: includes/class-cntctfrm-settings.php:791
559
  #, fuzzy
560
  msgid "Required"
561
  msgstr "Camps requerits"
562
 
563
+ #: includes/class-cntctfrm-settings.php:643
564
+ #: includes/class-cntctfrm-settings.php:676
565
+ #: includes/class-cntctfrm-settings.php:733
566
+ #: includes/class-cntctfrm-settings.php:772
567
+ #: includes/class-cntctfrm-settings.php:796
568
  msgid "Visible"
569
  msgstr ""
570
 
571
+ #: includes/class-cntctfrm-settings.php:644
572
+ #: includes/class-cntctfrm-settings.php:680
573
+ #: includes/class-cntctfrm-settings.php:737
574
+ #: includes/class-cntctfrm-settings.php:776
575
+ #: includes/class-cntctfrm-settings.php:800
576
  msgid "Disabled for editing"
577
  msgstr ""
578
 
579
+ #: includes/class-cntctfrm-settings.php:645
580
+ #: includes/class-cntctfrm-settings.php:704
581
+ #: includes/class-cntctfrm-settings.php:780
582
+ #: includes/class-cntctfrm-settings.php:804
583
  msgid "Field's default value"
584
  msgstr ""
585
 
586
+ #: includes/class-cntctfrm-settings.php:652
587
  msgid "Department selectbox"
588
  msgstr ""
589
 
590
+ #: includes/class-cntctfrm-settings.php:684
591
  msgid "Use User's name as a default value if the user is logged in."
592
  msgstr ""
593
 
594
+ #: includes/class-cntctfrm-settings.php:685
595
+ #: includes/class-cntctfrm-settings.php:742
596
  msgid ""
597
  "'Visible' and 'Disabled for editing' options will be applied only to logged-"
598
  "in users."
599
  msgstr ""
600
 
601
+ #: includes/class-cntctfrm-settings.php:691
602
  msgid "Location selectbox"
603
  msgstr ""
604
 
605
+ #: includes/class-cntctfrm-settings.php:741
606
  msgid "Use User's email as a default value if the user is logged in."
607
  msgstr ""
608
 
609
+ #: includes/class-cntctfrm-settings.php:825
610
  msgid "Attachment block"
611
  msgstr "Adjunt blocat"
612
 
613
+ #: includes/class-cntctfrm-settings.php:827
614
  msgid "Users can attach the following file formats"
615
  msgstr "Els usuaris poden adjuntar els següents formats d'arxiu"
616
 
617
+ #: includes/class-cntctfrm-settings.php:845
618
  msgid "Add to the form"
619
  msgstr ""
620
 
621
+ #: includes/class-cntctfrm-settings.php:850
622
  #, fuzzy
623
  msgid "Tips below the Attachment"
624
  msgstr "Consells del blocatge de l'adjunt"
625
 
626
+ #: includes/class-cntctfrm-settings.php:857
627
  #, fuzzy
628
  msgid "'Send me a copy' block"
629
  msgstr "Envia'm una còpia"
630
 
631
+ #: includes/class-cntctfrm-settings.php:864
632
  msgid "GDPR Compliance"
633
  msgstr ""
634
 
635
+ #: includes/class-cntctfrm-settings.php:869
636
  msgid "Link to Privacy Policy Page"
637
  msgstr ""
638
 
639
+ #: includes/class-cntctfrm-settings.php:873
640
  msgid "Text for Privacy Policy Link"
641
  msgstr ""
642
 
643
+ #: includes/class-cntctfrm-settings.php:901
644
  #, fuzzy
645
  msgid "Activate for network"
646
  msgstr "Plugin activat"
647
 
648
+ #: includes/class-cntctfrm-settings.php:991
649
  msgid "Agreement checkbox"
650
  msgstr ""
651
 
652
+ #: includes/class-cntctfrm-settings.php:991
653
  msgid "Required checkbox for submitting the form"
654
  msgstr ""
655
 
656
+ #: includes/class-cntctfrm-settings.php:992
657
  msgid "Optional checkbox"
658
  msgstr ""
659
 
660
+ #: includes/class-cntctfrm-settings.php:992
661
  msgid "Optional checkbox, the results of which will be displayed in email"
662
  msgstr ""
663
 
664
+ #: includes/class-cntctfrm-settings.php:1007
665
  msgid "Delete an attachment file from the server after the email is sent"
666
  msgstr ""
667
 
668
+ #: includes/class-cntctfrm-settings.php:1013
669
  msgid "Email in HTML format sending"
670
  msgstr ""
671
 
672
+ #: includes/class-cntctfrm-settings.php:1017
673
  msgid "Display additional info in the email"
674
  msgstr "Mostra informació addicional al correu electrònic,"
675
 
676
+ #: includes/class-cntctfrm-settings.php:1023
677
  #, fuzzy
678
  msgid "Sent from (IP address)"
679
  msgstr "Enviat des de (adreça IP)"
680
 
681
+ #: includes/class-cntctfrm-settings.php:1023
682
  msgid "Example: Sent from (IP address): 127.0.0.1"
683
  msgstr ""
684
 
685
+ #: includes/class-cntctfrm-settings.php:1024
 
 
 
 
686
  msgid "Example: Date/Time: August 19, 2013 8:50 pm"
687
  msgstr ""
688
 
689
+ #: includes/class-cntctfrm-settings.php:1025
 
 
 
 
690
  msgid ""
691
  "Example: Sent from (referer): https://bestwebsoft.com/contacts/contact-us/"
692
  msgstr ""
693
 
694
+ #: includes/class-cntctfrm-settings.php:1026
 
 
 
 
695
  msgid ""
696
  "Example: Using (user agent): Mozilla/5.0 (Windows NT 6.2; WOW64) "
697
  "AppleWebKit/537.36 (KHTML, like Gecko) Chrome/28.0.1500.95 Safari/537.36"
698
  msgstr ""
699
 
700
+ #: includes/class-cntctfrm-settings.php:1031
701
  msgid "Language settings for the field names in the form"
702
  msgstr "Configuració de la llengua als noms dels camps del formulari"
703
 
704
+ #: includes/class-cntctfrm-settings.php:1040
705
  msgid "Add a language"
706
  msgstr "Afegeix lengua"
707
 
708
+ #: includes/class-cntctfrm-settings.php:1044
709
  msgid "Change the names of the contact form fields and error messages"
710
  msgstr ""
711
  "Modifica els noms dels camps i els missatges d'error del formulari de "
712
  "contacte"
713
 
714
+ #: includes/class-cntctfrm-settings.php:1049
715
+ #: includes/class-cntctfrm-settings.php:1147
716
+ #: includes/class-cntctfrm-settings.php:1252
 
 
717
  msgid "Default"
718
  msgstr "Per defecte"
719
 
720
+ #: includes/class-cntctfrm-settings.php:1062
721
+ #: includes/class-cntctfrm-settings.php:1101
722
  msgid "click to expand/hide the list"
723
  msgstr ""
724
 
725
+ #: includes/class-cntctfrm-settings.php:1071
726
+ #: includes/class-cntctfrm-settings.php:1110
727
  #, fuzzy
728
  msgid "Tips below the Attachment block"
729
  msgstr "Consells del blocatge de l'adjunt"
730
 
731
+ #: includes/class-cntctfrm-settings.php:1075
732
+ #: includes/class-cntctfrm-settings.php:1114
733
  msgid "Error message for the Name field"
734
  msgstr "Missatge d'error per al camp 'Nom'"
735
 
736
+ #: includes/class-cntctfrm-settings.php:1076
737
+ #: includes/class-cntctfrm-settings.php:1115
738
  msgid "Error message for the Address field"
739
  msgstr "Missatge d'error per al camp 'Adreça'"
740
 
741
+ #: includes/class-cntctfrm-settings.php:1077
742
+ #: includes/class-cntctfrm-settings.php:1116
743
  msgid "Error message for the Email field"
744
  msgstr "Missatge d'error per al camp 'Adreça de correu electrònic'"
745
 
746
+ #: includes/class-cntctfrm-settings.php:1078
747
+ #: includes/class-cntctfrm-settings.php:1117
748
  msgid "Error message for the Phone field"
749
  msgstr "Missatge d'error per al camp 'Telèfon\""
750
 
751
+ #: includes/class-cntctfrm-settings.php:1079
752
+ #: includes/class-cntctfrm-settings.php:1118
753
  msgid "Error message for the Subject field"
754
  msgstr "Missatge d'error per al camp 'Assumpte'"
755
 
756
+ #: includes/class-cntctfrm-settings.php:1080
757
+ #: includes/class-cntctfrm-settings.php:1119
758
  msgid "Error message for the Message field"
759
  msgstr "Missatge d'error per al camp 'Missatge'"
760
 
761
+ #: includes/class-cntctfrm-settings.php:1081
762
+ #: includes/class-cntctfrm-settings.php:1120
763
  msgid "Error message about the file type for the Attachment field"
764
  msgstr "Missatge d'error sobre el tipus de per al camp 'Adjunt'"
765
 
766
+ #: includes/class-cntctfrm-settings.php:1082
767
+ #: includes/class-cntctfrm-settings.php:1121
768
  msgid ""
769
  "Error message while uploading a file for the Attachment field to the server"
770
  msgstr "Missatge d'error al carregar al servidor un fitxer per al camp Adjunt"
771
 
772
+ #: includes/class-cntctfrm-settings.php:1083
773
+ #: includes/class-cntctfrm-settings.php:1122
774
  msgid "Error message while moving the file for the Attachment field"
775
  msgstr "Missatge d'error al mourerun fitxer per al camp Adjunt"
776
 
777
+ #: includes/class-cntctfrm-settings.php:1084
778
+ #: includes/class-cntctfrm-settings.php:1123
779
  msgid "Error message when file size limit for the Attachment field is exceeded"
780
  msgstr ""
781
  "Missatge d'error al superar el límit de mida de fitxer per al camp Adjunt"
782
 
783
+ #: includes/class-cntctfrm-settings.php:1085
784
+ #: includes/class-cntctfrm-settings.php:1124
785
  msgid "Error message for the Captcha field"
786
  msgstr "Missatge d'error al camp Captcha"
787
 
788
+ #: includes/class-cntctfrm-settings.php:1086
789
+ #: includes/class-cntctfrm-settings.php:1125
790
  msgid "Error message for the whole form"
791
  msgstr "Missatge d'error a tot el formulari"
792
 
793
+ #: includes/class-cntctfrm-settings.php:1138
 
 
 
 
 
 
 
 
 
 
 
 
 
 
794
  #, fuzzy
795
  msgid "Use the changed names of the contact form fields in the email"
796
  msgstr ""
797
  "Modifica els noms dels camps i els missatges d'error del formulari de "
798
  "contacte"
799
 
800
+ #: includes/class-cntctfrm-settings.php:1144
801
  msgid "Action after email is sent"
802
  msgstr "Accions després d'enviar un correu electrònic."
803
 
804
+ #: includes/class-cntctfrm-settings.php:1146
805
  msgid "Display text"
806
  msgstr "Mostra el text"
807
 
808
+ #: includes/class-cntctfrm-settings.php:1160
809
+ #: includes/class-cntctfrm-settings.php:1174
810
  msgid "Text"
811
  msgstr "Text"
812
 
813
+ #: includes/class-cntctfrm-settings.php:1185
814
  msgid "Redirect to the page"
815
  msgstr "Redirigir a la pàgina"
816
 
817
+ #: includes/class-cntctfrm-settings.php:1186
818
  msgid "Url"
819
  msgstr "Url"
820
 
821
+ #: includes/class-cntctfrm-settings.php:1206
 
 
 
 
 
 
 
 
 
 
 
 
822
  #, php-format
823
  msgid ""
824
+ "Please enable JavaScript to change '%s', '%s', '%s', '%s' options and for "
825
+ "fields sorting."
 
826
  msgstr ""
827
 
828
+ #: includes/class-cntctfrm-settings.php:1207
829
+ #: includes/class-cntctfrm-settings.php:1224
830
+ msgid "Form layout"
 
 
 
 
 
831
  msgstr ""
832
 
833
+ #: includes/class-cntctfrm-settings.php:1208
834
+ #: includes/class-cntctfrm-settings.php:1291
835
+ #, fuzzy
836
+ msgid "Labels position"
837
+ msgstr "Enviar"
838
+
839
+ #: includes/class-cntctfrm-settings.php:1209
840
+ #: includes/class-cntctfrm-settings.php:1309
841
+ msgid "Labels align"
842
  msgstr ""
843
 
844
+ #: includes/class-cntctfrm-settings.php:1210
845
+ #: includes/class-cntctfrm-settings.php:1236
846
  #, fuzzy
847
  msgid "Submit position"
848
  msgstr "Enviar"
849
 
850
+ #: includes/class-cntctfrm-settings.php:1211
851
+ #: includes/class-cntctfrm-settings.php:1340
852
+ msgid "Add tooltips"
853
+ msgstr "Afegir consells sobre les eines"
854
+
855
+ #: includes/class-cntctfrm-settings.php:1212
856
+ #: includes/class-cntctfrm-settings.php:1381
857
+ msgid "Style options"
858
+ msgstr "Opcions d'estil"
859
+
860
+ #: includes/class-cntctfrm-settings.php:1228
861
  msgid "One column"
862
  msgstr ""
863
 
864
+ #: includes/class-cntctfrm-settings.php:1231
865
  msgid "Two columns"
866
  msgstr ""
867
 
868
+ #: includes/class-cntctfrm-settings.php:1240
869
+ #: includes/class-cntctfrm-settings.php:1280
870
+ #: includes/class-cntctfrm-settings.php:1298
871
+ #: includes/class-cntctfrm-settings.php:1313
872
  msgid "Left"
873
  msgstr ""
874
 
875
+ #: includes/class-cntctfrm-settings.php:1243
876
+ #: includes/class-cntctfrm-settings.php:1286
877
+ #: includes/class-cntctfrm-settings.php:1301
878
+ #: includes/class-cntctfrm-settings.php:1319
879
  msgid "Right"
880
  msgstr ""
881
 
882
+ #: includes/class-cntctfrm-settings.php:1248
883
  msgid "Width"
884
  msgstr ""
885
 
886
+ #: includes/class-cntctfrm-settings.php:1256
887
  msgid "Custom"
888
  msgstr ""
889
 
890
+ #: includes/class-cntctfrm-settings.php:1263
891
  msgid "px"
892
  msgstr ""
893
 
894
+ #: includes/class-cntctfrm-settings.php:1276
895
  msgid "Form align"
896
  msgstr ""
897
 
898
+ #: includes/class-cntctfrm-settings.php:1283
899
+ #: includes/class-cntctfrm-settings.php:1316
900
  msgid "Center"
901
  msgstr ""
902
 
903
+ #: includes/class-cntctfrm-settings.php:1295
 
 
 
 
 
904
  msgid "Top"
905
  msgstr ""
906
 
907
+ #: includes/class-cntctfrm-settings.php:1304
908
  msgid "Bottom"
909
  msgstr ""
910
 
911
+ #: includes/class-cntctfrm-settings.php:1324
 
 
 
 
912
  msgid "Errors output"
913
  msgstr "Errors de sortida"
914
 
915
+ #: includes/class-cntctfrm-settings.php:1327
916
  msgid "Display error messages"
917
  msgstr "Mostra els missatges d'error"
918
 
919
+ #: includes/class-cntctfrm-settings.php:1328
920
  msgid "Color of the input field errors."
921
  msgstr "Color dels errors al camp d'entrada"
922
 
923
+ #: includes/class-cntctfrm-settings.php:1329
924
  msgid "Display error messages & color of the input field errors"
925
  msgstr "Mostra els missatges d'error i el color dels errors del camp d'entrada"
926
 
927
+ #: includes/class-cntctfrm-settings.php:1334
928
  msgid "Add placeholder to the input blocks"
929
  msgstr "Afegeix marcador de posició als blocs d'entrada"
930
 
931
+ #: includes/class-cntctfrm-settings.php:1354
 
 
 
 
932
  msgid "Email address"
933
  msgstr "Adreça de correu electrònic:"
934
 
935
+ #: includes/class-cntctfrm-settings.php:1385
 
 
 
 
 
 
 
 
936
  msgid "Text color"
937
  msgstr "Color del text"
938
 
939
+ #: includes/class-cntctfrm-settings.php:1393
940
  msgid "Label text color"
941
  msgstr "Color del text de l'etiqeta"
942
 
943
+ #: includes/class-cntctfrm-settings.php:1402
944
  msgid "Placeholder color"
945
  msgstr "Color del marcador de posició"
946
 
947
+ #: includes/class-cntctfrm-settings.php:1407
948
  msgid "Errors color"
949
  msgstr "Color dels errors"
950
 
951
+ #: includes/class-cntctfrm-settings.php:1415
952
  msgid "Error text color"
953
  msgstr "Color del text d'error"
954
 
955
+ #: includes/class-cntctfrm-settings.php:1423
956
  msgid "Background color of the input field errors"
957
  msgstr "Color de fons dels errors del camp d'entrada"
958
 
959
+ #: includes/class-cntctfrm-settings.php:1431
960
  msgid "Border color of the input field errors"
961
  msgstr "Color de la vora dels errors del camp d'entrada"
962
 
963
+ #: includes/class-cntctfrm-settings.php:1439
964
  msgid "Placeholder color of the input field errors"
965
  msgstr "Color del marcador de posició dels errors del camp d'entrada"
966
 
967
+ #: includes/class-cntctfrm-settings.php:1444
968
  msgid "Input fields"
969
  msgstr "Visualitza l'adjunt"
970
 
971
+ #: includes/class-cntctfrm-settings.php:1452
972
  msgid "Input fields background color"
973
  msgstr "Color de fons dels camps d'entrada"
974
 
975
+ #: includes/class-cntctfrm-settings.php:1460
976
  msgid "Text fields color"
977
  msgstr "Color dels camps de text"
978
 
979
+ #: includes/class-cntctfrm-settings.php:1464
980
  msgid "Border width in px, numbers only"
981
  msgstr "Ample de vora en px, sols nombres"
982
 
983
+ #: includes/class-cntctfrm-settings.php:1472
984
+ #: includes/class-cntctfrm-settings.php:1505
985
  msgid "Border color"
986
  msgstr "Color de la vora"
987
 
988
+ #: includes/class-cntctfrm-settings.php:1477
989
  msgid "Submit button"
990
  msgstr "Enviar"
991
 
992
  # #: contact_form.php:928
993
+ #: includes/class-cntctfrm-settings.php:1481
994
  msgid "Width in px, numbers only"
995
  msgstr "Ample en px, sols nombres"
996
 
997
+ #: includes/class-cntctfrm-settings.php:1489
998
  msgid "Button color"
999
  msgstr "Color del botó"
1000
 
1001
+ #: includes/class-cntctfrm-settings.php:1497
1002
  msgid "Button text color"
1003
  msgstr "Color del text del botó"
1004
 
1005
+ #: includes/class-cntctfrm-settings.php:1524
1006
  #, fuzzy
1007
  msgid "Contact Form | Preview"
1008
  msgstr "Contact Form Pro | Vista prèvia"
1009
 
1010
+ #: includes/class-cntctfrm-settings.php:1525
1011
  msgid "Drag the necessary field to sort fields."
1012
  msgstr ""
1013
 
1014
+ #: includes/class-cntctfrm-settings.php:1772
1015
+ msgid "Contact Form Shortcode"
 
 
 
1016
  msgstr ""
 
 
 
 
 
 
 
 
 
 
1017
 
1018
+ #: includes/class-cntctfrm-settings.php:1775
1019
+ msgid "Add Contact Form to your page or post using the following shortcode:"
 
 
 
 
 
 
 
 
 
 
1020
  msgstr ""
 
 
1021
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1022
  #, fuzzy
1023
+ #~ msgid ""
1024
+ #~ "If you would like to add the Contact Form to your website, just copy and "
1025
+ #~ "paste this shortcode to your post or page or widget"
1026
+ #~ msgstr ""
1027
+ #~ "Si vol afegir Contact Form en la seva web, copiï i enganxi aquest codi en "
1028
+ #~ "el seu missatge, pàgina o widget:"
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1029
 
1030
+ #~ msgid "Save Changes"
1031
+ #~ msgstr "Desar els canvis"
 
1032
 
1033
+ #~ msgid "Contact Form"
1034
+ #~ msgstr "Contact Form"
 
1035
 
 
 
 
 
 
1036
  #, fuzzy
1037
+ #~ msgid "Additional settings"
1038
+ #~ msgstr "Opcions addicionals"
1039
 
 
1040
  #, fuzzy
1041
+ #~ msgid ""
1042
+ #~ "If you would like to add a Contact Form to your page or post, please use "
1043
+ #~ "%s button"
1044
+ #~ msgstr ""
1045
+ #~ "Si vol afegir Contact Form en la seva web, copiï i enganxi aquest codi en "
1046
+ #~ "el seu missatge, pàgina o widget:"
1047
 
1048
  #, fuzzy
1049
  #~ msgid "Example: Sent from (IP address):\t127.0.0.1"
languages/contact-form-plugin-cs_CZ.mo CHANGED
Binary file
languages/contact-form-plugin-cs_CZ.po CHANGED
@@ -6,8 +6,8 @@ msgid ""
6
  msgstr ""
7
  "Project-Id-Version: Contact Form\n"
8
  "Report-Msgid-Bugs-To: \n"
9
- "POT-Creation-Date: 2018-05-16 14:25+0300\n"
10
- "PO-Revision-Date: 2018-05-16 14:25+0300\n"
11
  "Last-Translator: Mik013\n"
12
  "Language-Team: Mik013\n"
13
  "Language: cs_CZ\n"
@@ -21,54 +21,75 @@ msgstr ""
21
  "X-Poedit-SourceCharset: UTF-8\n"
22
  "X-Poedit-SearchPath-0: .\n"
23
 
24
- #: contact_form.php:37 contact_form.php:992
 
25
  msgid "Contact Form Settings"
26
  msgstr "Nastavenie kontaktního formuláře"
27
 
28
- #: contact_form.php:37
29
- msgid "Contact Form"
30
- msgstr "Kontaktní formulář"
 
31
 
32
- #: contact_form.php:322 contact_form.php:1172 contact_form.php:1262
33
- #: contact_form.php:1668 contact_form.php:1707 contact_form.php:1975
34
- #: contact_form.php:3134 contact_form.php:3180
 
 
 
 
 
 
 
 
 
 
35
  msgid "Name"
36
  msgstr "Jméno"
37
 
38
- #: contact_form.php:323 contact_form.php:1309 contact_form.php:1669
39
- #: contact_form.php:1708 contact_form.php:1980 contact_form.php:3141
40
- #: contact_form.php:3186
 
 
41
  msgid "Address"
42
  msgstr "Adresa"
43
 
44
- #: contact_form.php:324 contact_form.php:1325 contact_form.php:1670
45
- #: contact_form.php:1709
 
46
  msgid "Email Address"
47
  msgstr "Emailová adresa"
48
 
49
- #: contact_form.php:325 contact_form.php:1348 contact_form.php:1671
50
- #: contact_form.php:1710
 
51
  msgid "Phone number"
52
  msgstr "Telefonní číslo"
53
 
54
- #: contact_form.php:326 contact_form.php:1364 contact_form.php:1672
55
- #: contact_form.php:1711 contact_form.php:1995 contact_form.php:3152
56
- #: contact_form.php:3195
 
 
57
  msgid "Subject"
58
  msgstr "Předmět"
59
 
60
- #: contact_form.php:327 contact_form.php:1388 contact_form.php:1673
61
- #: contact_form.php:1712 contact_form.php:1999 contact_form.php:3157
62
- #: contact_form.php:3199
 
 
63
  msgid "Message"
64
  msgstr "Zpráva"
65
 
66
- #: contact_form.php:328 contact_form.php:1674 contact_form.php:1713
67
- #: contact_form.php:2004
 
68
  msgid "Attachment"
69
  msgstr "Příloha"
70
 
71
- #: contact_form.php:329
72
  msgid ""
73
  "Supported file types: HTML, TXT, CSS, GIF, PNG, JPEG, JPG, TIFF, BMP, AI, "
74
  "EPS, PS, CSV, RTF, PDF, DOC, DOCX, XLS, XLSX, ZIP, RAR, WAV, MP3, PPT."
@@ -76,175 +97,304 @@ msgstr ""
76
  "Podporované typy souborů: HTML, TXT, CSS, GIF, PNG, JPEG, JPG, TIFF, BMP, "
77
  "AI, EPS, PS, CSV, RTF, PDF, DOC, DOCX, XLS, XLSX, ZIP, RAR, WAV, MP3, PPT."
78
 
79
- #: contact_form.php:330 contact_form.php:1676 contact_form.php:1715
 
80
  msgid "Send me a copy"
81
  msgstr "Zaslat mi kopii"
82
 
83
- #: contact_form.php:331 contact_form.php:1677 contact_form.php:1716
 
84
  msgid "I consent to having this site collect my personal data."
85
  msgstr ""
86
 
87
- #: contact_form.php:332 contact_form.php:1678 contact_form.php:1717
 
88
  msgid "Submit"
89
  msgstr "Odeslat"
90
 
91
- #: contact_form.php:333
92
  msgid "Your name is required."
93
  msgstr "Vaše jméno je povinné."
94
 
95
- #: contact_form.php:334
96
  msgid "Address is required."
97
  msgstr "Adresa je povinná."
98
 
99
- #: contact_form.php:335
100
  msgid "A valid email address is required."
101
  msgstr "Je vyžadována platná emailová adresa."
102
 
103
- #: contact_form.php:336
104
  msgid "Phone number is required."
105
  msgstr "Telefonní číslo je povinné."
106
 
107
- #: contact_form.php:337
108
  msgid "Subject is required."
109
  msgstr "Předmět zprávy je povinný."
110
 
111
- #: contact_form.php:338
112
  msgid "Message text is required."
113
  msgstr "Text zprávy je povinný."
114
 
115
- #: contact_form.php:339
116
  msgid "File format is not valid."
117
  msgstr "Formát souboru není platný."
118
 
119
- #: contact_form.php:340
120
  msgid "File upload error."
121
  msgstr "Chyba odeslání souboru."
122
 
123
- #: contact_form.php:341
124
  msgid "The file could not be uploaded."
125
  msgstr "Soubor nelze odeslat."
126
 
127
- #: contact_form.php:342
128
  msgid "This file is too large."
129
  msgstr "Soubor je příliš veliký."
130
 
131
- #: contact_form.php:343
132
  msgid "Please fill out the CAPTCHA."
133
  msgstr "Opište CAPTCHA text."
134
 
135
- #: contact_form.php:344
136
  msgid "Please make corrections below and try again."
137
  msgstr "Opravte chyby a zkuste to znovu."
138
 
139
- #: contact_form.php:346
140
  msgid "Thank you for contacting us."
141
  msgstr "Děkujeme, že jste nás kontaktovali."
142
 
143
- #: contact_form.php:683 contact_form.php:949
144
- msgid "Settings saved."
145
- msgstr "Nastavení bylo uloženo."
146
 
147
- #: contact_form.php:894
148
  msgid ""
149
- "Email 'FROM' field option was changed, which may cause email messages being "
150
- "moved to the spam folder or email delivery failures."
151
  msgstr ""
152
- "Pole „od“ bylo změněno, což může způsobit doručení zpráv do složky spam, "
153
- "nebo selhání doručení emailu."
154
 
155
- #: contact_form.php:904
156
  msgid ""
157
- "If the 'Redirect to page' option is selected then the URL field should be in "
158
- "the following format"
 
159
  msgstr ""
160
- "Pokud je vybrána možnost „Přesměrovat na stránku“, pak pole URL by měla být "
161
- "v následujícím formátu"
162
 
163
- #: contact_form.php:911
164
- msgid "Such user does not exist."
165
- msgstr "Takový uživatel neexistuje."
 
 
 
 
 
 
 
 
 
166
 
167
- #: contact_form.php:921
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
168
  msgid ""
169
- "Please enter a valid email address in the 'Use this email address' field."
 
170
  msgstr ""
171
- "Zadejte platnou emailovou adresu do pole „Použít tuto emailovou adresu“."
 
172
 
173
- #: contact_form.php:929
174
- msgid "Please enter a valid email address in the 'FROM' field."
175
- msgstr "Zadejte platnou emailovou adresu do pole „Od“."
 
176
 
177
- #: contact_form.php:951
178
- msgid "Settings are not saved."
179
- msgstr "Nastavení se neuložilo."
180
 
181
- #: contact_form.php:989
182
- msgid "All plugin settings were restored."
183
- msgstr "Všechna nastavení pluginu byla obnovena."
184
 
185
- #: contact_form.php:995
186
- msgid "How to Use Step-by-step Instruction"
187
- msgstr "Instrukce jak používat krok-za-krokem"
188
 
189
- #: contact_form.php:998 contact_form.php:3343 contact_form.php:3357
190
- msgid "Settings"
191
- msgstr "Nastavení"
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
192
 
193
- #: contact_form.php:999
194
- msgid "Additional settings"
195
- msgstr "Další nastavení"
 
196
 
197
- #: contact_form.php:1000
 
198
  msgid "Appearance"
199
  msgstr "Vzhled"
200
 
201
- #: contact_form.php:1001
202
- msgid "Custom code"
203
- msgstr "Vlastní kód"
204
 
205
- #: contact_form.php:1002
206
- msgid "Go PRO"
207
- msgstr "Získat verzi Pro"
208
 
209
- #: contact_form.php:1013
210
- msgid "Notice"
211
- msgstr "Poznámka"
212
 
213
- #: contact_form.php:1017
214
- msgid "NEW_FORM"
215
- msgstr "NEW_FORM"
216
 
217
- #: contact_form.php:1018
 
218
  msgid ""
219
- "If you want to create multiple contact forms, please install the Contact "
220
- "Form Multi plugin."
221
  msgstr ""
222
- "Pokud chcete vytvořit více kontaktních formulářů, nainstalujte si plugin "
223
- "Contact Form Multi."
224
 
225
- #: contact_form.php:1027
226
- #, php-format
227
  msgid ""
228
- "If you would like to add a Contact Form to your page or post, please use %s "
229
- "button"
230
  msgstr ""
231
- "Pokud chcete kontaktní formulář přidat na stránku nebo příspěvek, použijte "
232
- "tlačítko %s"
233
 
234
- #: contact_form.php:1033
235
- #, php-format
236
  msgid ""
237
- "You can add the Contact Form to your page or post by clicking on %s button "
238
- "in the content edit block using the Visual mode. If the button isn't "
239
- "displayed, please use the shortcode %s or %s where * stands for Contact Form "
240
- "language."
241
  msgstr ""
242
- "Kontaktní formulář můžete přidat na stránku nebo příspěvek kliknutím na "
243
- "tlačítko %s v bloku editace obsahu při vizuálním režimu. Není-li tlačítko "
244
- "zobrazeno, použijte zkrácený kód %s nebo %s kde * je nahrazuje jazyk "
245
- "kontaktního formuláře."
 
 
246
 
247
- #: contact_form.php:1042
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
248
  msgid ""
249
  "If you leave the fields empty, the messages will be sent to the email "
250
  "address specified during registration."
@@ -252,15 +402,15 @@ msgstr ""
252
  "Ponecháte-li pole prázdná, zprávy budou zaslány na emailovou adresu zadanou "
253
  "během registrace."
254
 
255
- #: contact_form.php:1045
256
  msgid "The user's email address"
257
  msgstr "Emailová adresa uživatele"
258
 
259
- #: contact_form.php:1049
260
  msgid "Select a username"
261
  msgstr "Vyberte uživatelské jméno"
262
 
263
- #: contact_form.php:1062
264
  msgid ""
265
  "Select a username of the person who should get the messages from the contact "
266
  "form."
@@ -268,110 +418,101 @@ msgstr ""
268
  "Vyberte uživatelské jméno osoby, která by měla dostávat zprávy z kontaktního "
269
  "formuláře."
270
 
271
- #: contact_form.php:1066
272
  msgid "Use this email address"
273
  msgstr "Použít tuto emailovou adresu"
274
 
275
- #: contact_form.php:1070
276
  msgid "Enter the email address for receiving messages"
277
  msgstr "Vložte emailovou adresu pro příjem zpráv"
278
 
279
- #: contact_form.php:1077 contact_form.php:1588 contact_form.php:1797
280
- #: contact_form.php:1903 contact_form.php:3440
281
- msgid "Close"
282
- msgstr "Zavřít"
283
-
284
- #: contact_form.php:1081
285
  msgid "Add department selectbox to the contact form"
286
  msgstr "Přidat do kontaktního formuláře Výběrové pole oddělení"
287
 
288
- #: contact_form.php:1089 contact_form.php:1597 contact_form.php:1816
289
- #: contact_form.php:2109
290
- msgid "If you upgrade to Pro version all your settings will be saved."
291
- msgstr "Pokud upgradujete na verzi Pro všechna nastavení zůstanou zachována."
292
-
293
- #: contact_form.php:1096 contact_form.php:1418 contact_form.php:1602
294
- #: contact_form.php:1823 contact_form.php:2116
295
- msgid "Upgrade to Pro"
296
- msgstr "Aktualizovat na Pro"
297
-
298
- #: contact_form.php:1104
299
  msgid "Save emails to the database"
300
  msgstr "Ukládat emaily do databáze"
301
 
302
- #: contact_form.php:1116 contact_form.php:1130 contact_form.php:1137
 
 
303
  msgid "Using"
304
  msgstr "S použitím"
305
 
306
- #: contact_form.php:1122 contact_form.php:1490 contact_form.php:1531
307
- #: contact_form.php:1566
 
 
308
  msgid "Please activate the appropriate option on"
309
  msgstr "Aktivujte příslušnou možnost na"
310
 
311
- #: contact_form.php:1125 contact_form.php:1493 contact_form.php:1534
312
- #: contact_form.php:1569
 
 
313
  msgid "settings page"
314
  msgstr "stránka nastavení"
315
 
316
- #: contact_form.php:1131 contact_form.php:1500 contact_form.php:1542
317
- #: contact_form.php:1576
 
 
318
  msgid "Activate"
319
  msgstr "Aktivovat"
320
 
321
- #: contact_form.php:1138 contact_form.php:1509 contact_form.php:1548
322
- #: contact_form.php:1581
 
 
323
  msgid "Download"
324
  msgstr "Stáhnout"
325
 
326
- #: contact_form.php:1150
327
  msgid "Sending method"
328
  msgstr "Metoda odesílání"
329
 
330
- #: contact_form.php:1155
331
  msgid "Wp-mail"
332
  msgstr "Wp-mail"
333
 
334
- #: contact_form.php:1157
335
  msgid "You can use the Wordpress wp_mail function for mailing"
336
  msgstr "Pro odesílání můžete použít funkci wp_mail"
337
 
338
- #: contact_form.php:1160
339
  msgid "Mail"
340
  msgstr "Email"
341
 
342
- #: contact_form.php:1162
343
  msgid "You can use the PHP mail function for mailing"
344
  msgstr "Pro odesílání můžete použít funkci PHP mail"
345
 
346
- #: contact_form.php:1167
347
  msgid "'FROM' field"
348
  msgstr "Pole „od“"
349
 
350
- #: contact_form.php:1183
351
  msgid "User name"
352
  msgstr "Uživatelské jméno"
353
 
354
- #: contact_form.php:1185
355
  msgid ""
356
  "The name of the user who fills the form will be used in the field 'From'."
357
  msgstr "Jméno uživatele, který vyplnil formulář bude použito v poli „Od“."
358
 
359
- #: contact_form.php:1196 contact_form.php:3147 contact_form.php:3191
360
- msgid "Email"
361
- msgstr "Email"
362
-
363
- #: contact_form.php:1207
364
  msgid "User email"
365
  msgstr "Uživatelský email"
366
 
367
- #: contact_form.php:1209
368
  msgid ""
369
  "The email address of the user who fills the form will be used in the field "
370
  "'From'."
371
  msgstr ""
372
  "Emailová adresa uživatele, který vyplnil formulář bude použita v poli „Od“."
373
 
374
- #: contact_form.php:1218
375
  msgid ""
376
  "If this option is changed, email messages may be moved to the spam folder or "
377
  "email delivery failures may occur."
@@ -379,49 +520,67 @@ msgstr ""
379
  "Je-li tato možnost změněna, emailové zprávy mohou být přesunuty do složky "
380
  "Nevyžádaná pošta nebo může dojít k selhání doručení emailu."
381
 
382
- #: contact_form.php:1227
383
  msgid "Required symbol"
384
  msgstr "Povinný symbol"
385
 
386
- #: contact_form.php:1237
387
  msgid "Fields"
388
  msgstr "Pole"
389
 
390
- #: contact_form.php:1238 contact_form.php:1265 contact_form.php:1292
391
- #: contact_form.php:1312 contact_form.php:1351 contact_form.php:1433
 
 
 
 
392
  msgid "Used"
393
  msgstr "Použité"
394
 
395
- #: contact_form.php:1239 contact_form.php:1254 contact_form.php:1269
396
- #: contact_form.php:1296 contact_form.php:1316 contact_form.php:1329
397
- #: contact_form.php:1355 contact_form.php:1368 contact_form.php:1392
 
 
 
 
 
398
  msgid "Required"
399
  msgstr "Povinné"
400
 
401
- #: contact_form.php:1241 contact_form.php:1274 contact_form.php:1334
402
- #: contact_form.php:1373 contact_form.php:1397
 
 
 
403
  msgid "Visible"
404
  msgstr "Viditelné"
405
 
406
- #: contact_form.php:1242 contact_form.php:1278 contact_form.php:1338
407
- #: contact_form.php:1377 contact_form.php:1401
 
 
 
408
  msgid "Disabled for editing"
409
  msgstr "Zakázáno pro úpravy"
410
 
411
- #: contact_form.php:1243 contact_form.php:1302 contact_form.php:1381
412
- #: contact_form.php:1405
 
 
413
  msgid "Field's default value"
414
  msgstr "Výchozí hodnota pole"
415
 
416
- #: contact_form.php:1250
417
  msgid "Department selectbox"
418
  msgstr "Výběrové pole oddělení"
419
 
420
- #: contact_form.php:1282
421
  msgid "Use User's name as a default value if the user is logged in."
422
  msgstr "Je-li uživatel přihlášen, použít jeho jméno jako výchozí hodnotu."
423
 
424
- #: contact_form.php:1283 contact_form.php:1343
 
425
  msgid ""
426
  "'Visible' and 'Disabled for editing' options will be applied only to logged-"
427
  "in users."
@@ -429,109 +588,97 @@ msgstr ""
429
  "Možnosti „Viditelné“ a „Zakázáno pro úpravy“ budou fungovat pouze pro "
430
  "přihlášené uživatele."
431
 
432
- #: contact_form.php:1289
433
  msgid "Location selectbox"
434
  msgstr "Umístění výběrového pole"
435
 
436
- #: contact_form.php:1342
437
  msgid "Use User's email as a default value if the user is logged in."
438
  msgstr "Je-li uživatel přihlášen, použít jeho email jako výchozí hodnotu."
439
 
440
- #: contact_form.php:1426
441
  msgid "Attachment block"
442
  msgstr "Blok příloh"
443
 
444
- #: contact_form.php:1428
445
  msgid "Users can attach the following file formats"
446
  msgstr "Uživatelé mohou připojit následující formáty souborů"
447
 
448
- #: contact_form.php:1446
449
  msgid "Add to the form"
450
  msgstr "Přidat do formuláře"
451
 
452
- #: contact_form.php:1451
453
  msgid "Tips below the Attachment"
454
  msgstr "Tipy pod přílohou"
455
 
456
- #: contact_form.php:1458
457
  msgid "'Send me a copy' block"
458
  msgstr "blok „Odeslat mi kopii“"
459
 
460
- #: contact_form.php:1465
461
  msgid "GDPR Compliance"
462
  msgstr ""
463
 
464
- #: contact_form.php:1470
465
  msgid "Link to Privacy Policy Page"
466
  msgstr ""
467
 
468
- #: contact_form.php:1474
469
  msgid "Text for Privacy Policy Link"
470
  msgstr ""
471
 
472
- #: contact_form.php:1502
473
  msgid "Activate for network"
474
  msgstr "Aktivovat pro síť"
475
 
476
- #: contact_form.php:1592
477
  msgid "Agreement checkbox"
478
  msgstr "Zaškrtávací políčko Souhlasu"
479
 
480
- #: contact_form.php:1592
481
  msgid "Required checkbox for submitting the form"
482
  msgstr "Povinné udělení souhlasu při odeslání formuláře"
483
 
484
- #: contact_form.php:1593
485
  msgid "Optional checkbox"
486
  msgstr "Volitelné zaškrtávací políčko"
487
 
488
- #: contact_form.php:1593
489
  msgid "Optional checkbox, the results of which will be displayed in email"
490
  msgstr "Volitelné zaškrtávací políčko, jeho výsledek bude zobrazen v emailu"
491
 
492
- #: contact_form.php:1611
493
  msgid "Delete an attachment file from the server after the email is sent"
494
  msgstr "Po odeslání emailu odstranit přiložený soubor ze serveru"
495
 
496
- #: contact_form.php:1617
497
  msgid "Email in HTML format sending"
498
  msgstr "Odeslání emailu ve formátu HTML"
499
 
500
- #: contact_form.php:1621
501
  msgid "Display additional info in the email"
502
  msgstr "Zobrazit v emailu další informace"
503
 
504
- #: contact_form.php:1627
505
  msgid "Sent from (IP address)"
506
  msgstr "Odesláno z (IP adresy)"
507
 
508
- #: contact_form.php:1627
509
  msgid "Example: Sent from (IP address): 127.0.0.1"
510
  msgstr "Příklad: Odesláno z (IP adresy): 127.0.0.1"
511
 
512
- #: contact_form.php:1628 contact_form.php:3096 contact_form.php:3098
513
- msgid "Date/Time"
514
- msgstr "Datum/Čas"
515
-
516
- #: contact_form.php:1628
517
  msgid "Example: Date/Time: August 19, 2013 8:50 pm"
518
  msgstr "Příklad: Datum/čas: 19. srpna 2013 8:50 pm"
519
 
520
- #: contact_form.php:1629 contact_form.php:3102 contact_form.php:3104
521
- msgid "Sent from (referer)"
522
- msgstr "Odesláno z (referer)"
523
-
524
- #: contact_form.php:1629
525
  msgid ""
526
  "Example: Sent from (referer): https://bestwebsoft.com/contacts/contact-us/"
527
  msgstr ""
528
  "Příklad: Odesláno od (referer): https://bestwebsoft.com/contacts/contact-us/"
529
 
530
- #: contact_form.php:1630 contact_form.php:3108 contact_form.php:3110
531
- msgid "Using (user agent)"
532
- msgstr "S použitím (uživatelský agent)"
533
-
534
- #: contact_form.php:1630
535
  msgid ""
536
  "Example: Using (user agent): Mozilla/5.0 (Windows NT 6.2; WOW64) "
537
  "AppleWebKit/537.36 (KHTML, like Gecko) Chrome/28.0.1500.95 Safari/537.36"
@@ -539,419 +686,392 @@ msgstr ""
539
  "Příklad: S použitím (uživatelský agent): Mozilla/5.0 (Windows NT 6.2; WOW64) "
540
  "AppleWebKit/537.36 (KHTML, like Gecko) Chrome/28.0.1500.95 Safari/537.36"
541
 
542
- #: contact_form.php:1635
543
  msgid "Language settings for the field names in the form"
544
  msgstr "Nastavení jazyka pro názvy polí ve formuláři"
545
 
546
- #: contact_form.php:1644
547
  msgid "Add a language"
548
  msgstr "Přidat jazyk"
549
 
550
- #: contact_form.php:1648
551
  msgid "Change the names of the contact form fields and error messages"
552
  msgstr "Změnit názvy polí kontaktního formuláře a chybových zpráv"
553
 
554
- #: contact_form.php:1653 contact_form.php:1751 contact_form.php:1883
555
- #: contact_form.php:2023 contact_form.php:2028 contact_form.php:2038
556
- #: contact_form.php:2043 contact_form.php:2048 contact_form.php:2053
557
- #: contact_form.php:2063 contact_form.php:2068 contact_form.php:2077
558
- #: contact_form.php:2091 contact_form.php:2096 contact_form.php:2101
559
  msgid "Default"
560
  msgstr "Výchozí"
561
 
562
- #: contact_form.php:1666 contact_form.php:1705
 
563
  msgid "click to expand/hide the list"
564
  msgstr "kliknutím rozbalit/skrýt seznam"
565
 
566
- #: contact_form.php:1675 contact_form.php:1714
 
567
  msgid "Tips below the Attachment block"
568
  msgstr "Zobrazení tipů pod blokem příloh"
569
 
570
- #: contact_form.php:1679 contact_form.php:1718
 
571
  msgid "Error message for the Name field"
572
  msgstr "Chybová zpráva pro pole Jméno"
573
 
574
- #: contact_form.php:1680 contact_form.php:1719
 
575
  msgid "Error message for the Address field"
576
  msgstr "Chybová zpráva pro pole Adresa"
577
 
578
- #: contact_form.php:1681 contact_form.php:1720
 
579
  msgid "Error message for the Email field"
580
  msgstr "Chybová zpráva pro pole Email"
581
 
582
- #: contact_form.php:1682 contact_form.php:1721
 
583
  msgid "Error message for the Phone field"
584
  msgstr "Chybová zpráva pro pole Telefon"
585
 
586
- #: contact_form.php:1683 contact_form.php:1722
 
587
  msgid "Error message for the Subject field"
588
  msgstr "Chybová zpráva pro pole Předmět"
589
 
590
- #: contact_form.php:1684 contact_form.php:1723
 
591
  msgid "Error message for the Message field"
592
  msgstr "Chybová zpráva pro pole Zpráva"
593
 
594
- #: contact_form.php:1685 contact_form.php:1724
 
595
  msgid "Error message about the file type for the Attachment field"
596
  msgstr "Chybová zpráva o typu souboru pro pole Příloha"
597
 
598
- #: contact_form.php:1686 contact_form.php:1725
 
599
  msgid ""
600
  "Error message while uploading a file for the Attachment field to the server"
601
  msgstr ""
602
  "Chybová zpráva při neúspěšném nahrání souboru na server pro pole Příloha"
603
 
604
- #: contact_form.php:1687 contact_form.php:1726
 
605
  msgid "Error message while moving the file for the Attachment field"
606
  msgstr "Chybová zpráva při neúspěšném přesunu souboru do pole Příloha"
607
 
608
- #: contact_form.php:1688 contact_form.php:1727
 
609
  msgid "Error message when file size limit for the Attachment field is exceeded"
610
  msgstr ""
611
  "Chybová zpráva při překročení omezení velikosti souboru pro pole Příloha"
612
 
613
- #: contact_form.php:1689 contact_form.php:1728
 
614
  msgid "Error message for the Captcha field"
615
  msgstr "Chybová zpráva pro pole Captcha"
616
 
617
- #: contact_form.php:1690 contact_form.php:1729
 
618
  msgid "Error message for the whole form"
619
  msgstr "Chybová zpráva pro celý formulář"
620
 
621
- #: contact_form.php:1693 contact_form.php:1695 contact_form.php:1732
622
- #: contact_form.php:1734 contact_form.php:1766 contact_form.php:1768
623
- #: contact_form.php:1780 contact_form.php:1782 contact_form.php:3530
624
- #: contact_form.php:3532
625
- msgid "Use shortcode"
626
- msgstr "Použít zkrácený kód"
627
-
628
- #: contact_form.php:1693 contact_form.php:1695 contact_form.php:1732
629
- #: contact_form.php:1734 contact_form.php:1766 contact_form.php:1768
630
- #: contact_form.php:1780 contact_form.php:1782 contact_form.php:3530
631
- #: contact_form.php:3532
632
- msgid "for this language"
633
- msgstr "pro tento jazyk"
634
-
635
- #: contact_form.php:1742
636
  msgid "Use the changed names of the contact form fields in the email"
637
  msgstr "Použít změněné názvy polí kontaktního formuláře v emailu"
638
 
639
- #: contact_form.php:1748
640
  msgid "Action after email is sent"
641
  msgstr "Akce po odeslání emailu"
642
 
643
- #: contact_form.php:1750
644
  msgid "Display text"
645
  msgstr "Zobrazený text"
646
 
647
- #: contact_form.php:1764 contact_form.php:1778
 
648
  msgid "Text"
649
  msgstr "Text"
650
 
651
- #: contact_form.php:1789
652
  msgid "Redirect to the page"
653
  msgstr "Přesměrování na stránku"
654
 
655
- #: contact_form.php:1790
656
  msgid "Url"
657
  msgstr "Url"
658
 
659
- #: contact_form.php:1801
660
- msgid "Add field 'Reply-To' to the email header"
661
- msgstr "Přidat pole „Odpovědět komu“ do hlavičky emailu"
662
-
663
- #: contact_form.php:1803
664
- msgid "Field 'Reply-To' will be initialized by user email"
665
- msgstr "Pole „Odpovědět komu“ bude inicializováno mailem uživatele"
666
-
667
- #: contact_form.php:1807
668
- msgid "Auto Response"
669
- msgstr "Automatická odpověď"
670
-
671
- #: contact_form.php:1811
672
  #, php-format
673
  msgid ""
674
- "You can use %%NAME%% to display data from the email field and %%MESSAGE%% to "
675
- "display data from the Message field, as well as %%SITENAME%% to display blog "
676
- "name."
677
  msgstr ""
678
- "Můžete použít %%NAME%% pro zobrazení dat z pole email a %%MESAGE%% pro "
679
- "zobrazení dat z pole zprávy stejně jako %%SITENAME%% pro zobrazení názvu "
680
- "blogu."
681
-
682
- #: contact_form.php:1833 contact_form.php:2375
683
- msgid "Save Changes"
684
- msgstr "Uložit změny"
685
 
686
- #: contact_form.php:1846
687
- #, php-format
688
- msgid ""
689
- "Please enable JavaScript to change '%s', '%s' options and for fields sorting."
690
- msgstr "Povolte JavaScript pro změnu nastavení '%s', '%s' a pro řazení polí."
691
-
692
- #: contact_form.php:1846 contact_form.php:1855
693
  msgid "Form layout"
694
  msgstr "Rozložení formuláře"
695
 
696
- #: contact_form.php:1846 contact_form.php:1867
 
 
 
 
 
 
 
 
 
 
 
697
  msgid "Submit position"
698
  msgstr "Umístění tlačítka Odeslat"
699
 
700
- #: contact_form.php:1859
 
 
 
 
 
 
 
 
 
 
701
  msgid "One column"
702
  msgstr "Jeden sloupec"
703
 
704
- #: contact_form.php:1862
705
  msgid "Two columns"
706
  msgstr "Dva sloupce"
707
 
708
- #: contact_form.php:1871 contact_form.php:1911 contact_form.php:1929
709
- #: contact_form.php:1944
 
 
710
  msgid "Left"
711
  msgstr "Vlevo"
712
 
713
- #: contact_form.php:1874 contact_form.php:1917 contact_form.php:1932
714
- #: contact_form.php:1950
 
 
715
  msgid "Right"
716
  msgstr "Vpravo"
717
 
718
- #: contact_form.php:1879
719
  msgid "Width"
720
  msgstr "Šířka"
721
 
722
- #: contact_form.php:1887
723
  msgid "Custom"
724
  msgstr "Vlastní"
725
 
726
- #: contact_form.php:1894
727
  msgid "px"
728
  msgstr "px"
729
 
730
- #: contact_form.php:1907
731
  msgid "Form align"
732
  msgstr "Zarovnání formuláře"
733
 
734
- #: contact_form.php:1914 contact_form.php:1947
 
735
  msgid "Center"
736
  msgstr "Na střed"
737
 
738
- #: contact_form.php:1922
739
- msgid "Labels position"
740
- msgstr "Umístění popisků"
741
-
742
- #: contact_form.php:1926
743
  msgid "Top"
744
  msgstr "Nahoře"
745
 
746
- #: contact_form.php:1935
747
  msgid "Bottom"
748
  msgstr "Dole"
749
 
750
- #: contact_form.php:1940
751
- msgid "Labels align"
752
- msgstr "Zarovnání popisků"
753
-
754
- #: contact_form.php:1955
755
  msgid "Errors output"
756
  msgstr "Chybový výstup"
757
 
758
- #: contact_form.php:1958
759
  msgid "Display error messages"
760
  msgstr "Zobrazit chybové zprávy"
761
 
762
- #: contact_form.php:1959
763
  msgid "Color of the input field errors."
764
  msgstr "Barva vstupního pole s chybou."
765
 
766
- #: contact_form.php:1960
767
  msgid "Display error messages & color of the input field errors"
768
  msgstr "Zobrazit chybové zprávy a barvu vstupního pole s chybou"
769
 
770
- #: contact_form.php:1965
771
  msgid "Add placeholder to the input blocks"
772
  msgstr "Přidat zástupný symbol do vstupních bloků"
773
 
774
- #: contact_form.php:1971
775
- msgid "Add tooltips"
776
- msgstr "Přidat popisky"
777
-
778
- #: contact_form.php:1985
779
  msgid "Email address"
780
  msgstr "Emailová adresa"
781
 
782
- #: contact_form.php:1990 contact_form.php:3163 contact_form.php:3204
783
- msgid "Phone Number"
784
- msgstr "Telefonní číslo"
785
-
786
- #: contact_form.php:2016
787
- msgid "Style options"
788
- msgstr "Nastavení stylů"
789
-
790
- #: contact_form.php:2020
791
  msgid "Text color"
792
  msgstr "Barva textu"
793
 
794
- #: contact_form.php:2025
795
  msgid "Label text color"
796
  msgstr "Barva textu popisků"
797
 
798
- #: contact_form.php:2030
799
  msgid "Placeholder color"
800
  msgstr "Barva zástupného symbolu"
801
 
802
- #: contact_form.php:2035
803
  msgid "Errors color"
804
  msgstr "Barva chyb"
805
 
806
- #: contact_form.php:2040
807
  msgid "Error text color"
808
  msgstr "Barva textu chyby"
809
 
810
- #: contact_form.php:2045
811
  msgid "Background color of the input field errors"
812
  msgstr "Barva pozadí vstupního pole s chybou"
813
 
814
- #: contact_form.php:2050
815
  msgid "Border color of the input field errors"
816
  msgstr "Barva ohraničení vstupního pole s chybou"
817
 
818
- #: contact_form.php:2055
819
  msgid "Placeholder color of the input field errors"
820
  msgstr "Barva zástupného symbolu v poli s chybou"
821
 
822
- #: contact_form.php:2060
823
  msgid "Input fields"
824
  msgstr "Vstupní pole"
825
 
826
- #: contact_form.php:2065
827
  msgid "Input fields background color"
828
  msgstr "Barva pozadí vstupních polí"
829
 
830
- #: contact_form.php:2070
831
  msgid "Text fields color"
832
  msgstr "Barva textových polí"
833
 
834
- #: contact_form.php:2074
835
  msgid "Border width in px, numbers only"
836
  msgstr "Šířka okraje v px, pouze čísla"
837
 
838
- #: contact_form.php:2079 contact_form.php:2103
 
839
  msgid "Border color"
840
  msgstr "Barva ohraničení"
841
 
842
- #: contact_form.php:2084
843
  msgid "Submit button"
844
  msgstr "Tlačítko Odeslat"
845
 
846
- #: contact_form.php:2088
847
  msgid "Width in px, numbers only"
848
  msgstr "Šířka v px, pouze čísla"
849
 
850
- #: contact_form.php:2093
851
  msgid "Button color"
852
  msgstr "Barva tlačítka"
853
 
854
- #: contact_form.php:2098
855
  msgid "Button text color"
856
  msgstr "Barva textu tlačítka"
857
 
858
- #: contact_form.php:2127
859
  msgid "Contact Form | Preview"
860
  msgstr "Kontaktní formulář | Náhled"
861
 
862
- #: contact_form.php:2128
863
  msgid "Drag the necessary field to sort fields."
864
  msgstr "Přetažením změníte pořadí polí."
865
 
866
- #: contact_form.php:2364
867
- msgid ""
868
- "If you would like to add the Contact Form to your website, just copy and "
869
- "paste this shortcode to your post or page or widget"
870
  msgstr ""
871
- "Chcete-li přidat kontaktní formulář na váš web, stačí zkopírovat a vložit "
872
- "tento zkrácený kód do vašeho příspěvku, stránky nebo widgetu"
873
-
874
- #: contact_form.php:2486
875
- msgid "Sorry, email message could not be delivered."
876
- msgstr "Emailovou zprávu nelze doručit."
877
-
878
- #: contact_form.php:3090 contact_form.php:3092
879
- msgid "Sent from (ip address)"
880
- msgstr "Odesláno z (IP adresy)"
881
-
882
- #: contact_form.php:3120
883
- msgid "Contact from"
884
- msgstr "Kontaktní formulář"
885
-
886
- #: contact_form.php:3125 contact_form.php:3174
887
- msgid "Site"
888
- msgstr "Stránka"
889
-
890
- #: contact_form.php:3286
891
- msgid ""
892
- "If you can see this MIME, it means that the MIME type is not supported by "
893
- "your email client!"
894
- msgstr ""
895
- "Pokud vidíte tento MIME, znamená to, že váš emailový klient nepodporuje typ "
896
- "MIME!"
897
-
898
- #: contact_form.php:3358
899
- msgid "FAQ"
900
- msgstr ""
901
- "Časté dotazy <acronym title=\"Frequently asked questions\">(FAQ)</acronym>"
902
-
903
- #: contact_form.php:3359
904
- msgid "Support"
905
- msgstr "Podpora"
906
-
907
- #: contact_form.php:3408
908
- msgid "Are you sure that you want to delete this language data?"
909
- msgstr "Opravdu chcete odstranit data pro tento jazyk?"
910
 
911
- #: contact_form.php:3431
912
- msgid "Add multiple forms"
913
- msgstr "Přidat více formulářů"
914
-
915
- #: contact_form.php:3431
916
- msgid ""
917
- "Install Contact Form Multi plugin to create unlimited number of contact "
918
- "forms."
919
  msgstr ""
920
- "Chcete-li vytvořit vícero kontaktních formulářů, nainstalujte si plugin "
921
- "Contact Form Multi."
922
-
923
- #: contact_form.php:3436
924
- msgid "Learn more"
925
- msgstr "Dozvědět se více"
926
-
927
- #: contact_form.php:3494
928
- msgid "Error"
929
- msgstr "Chyba"
930
-
931
- #: contact_form.php:3494 contact_form.php:3496
932
- msgid "Illegal language code"
933
- msgstr "Neplatný kód jazyka"
934
 
935
- #: contact_form.php:3681
936
- msgid "Close notice"
937
- msgstr "Zavřít poznámku"
938
-
939
- #: contact_form.php:3686
940
- msgid "allows to store your messages to the database."
941
- msgstr "umožňuje ukládání zpráv do databáze."
942
-
943
- #: contact_form.php:3687
944
- msgid "Manage messages that have been sent from your website."
945
- msgstr "Spravovat zprávy, které byly odeslány z vašeho webu."
946
-
947
- #: contact_form.php:3690
948
- msgid "Learn More"
949
- msgstr "Více informací"
950
-
951
- #: contact_form.php:3750
952
- msgid "Contact form"
953
- msgstr "Kontaktní formulář"
954
-
955
- #: contact_form.php:3763 contact_form.php:3773
956
- msgid "Language"
957
- msgstr "Jazyk"
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
6
  msgstr ""
7
  "Project-Id-Version: Contact Form\n"
8
  "Report-Msgid-Bugs-To: \n"
9
+ "POT-Creation-Date: 2019-02-25 16:26+0200\n"
10
+ "PO-Revision-Date: 2019-02-25 16:26+0200\n"
11
  "Last-Translator: Mik013\n"
12
  "Language-Team: Mik013\n"
13
  "Language: cs_CZ\n"
21
  "X-Poedit-SourceCharset: UTF-8\n"
22
  "X-Poedit-SearchPath-0: .\n"
23
 
24
+ #: contact_form.php:39 contact_form.php:47 contact_form.php:647
25
+ #: includes/class-cntctfrm-settings.php:425
26
  msgid "Contact Form Settings"
27
  msgstr "Nastavenie kontaktního formuláře"
28
 
29
+ #: contact_form.php:48 contact_form.php:1619 contact_form.php:1633
30
+ #: includes/class-cntctfrm-settings.php:27
31
+ msgid "Settings"
32
+ msgstr "Nastavení"
33
 
34
+ #: contact_form.php:63 includes/class-cntctfrm-settings.php:483
35
+ #: includes/class-cntctfrm-settings.php:817
36
+ #: includes/class-cntctfrm-settings.php:998
37
+ #: includes/class-cntctfrm-settings.php:1513
38
+ msgid "Upgrade to Pro"
39
+ msgstr "Aktualizovat na Pro"
40
+
41
+ #: contact_form.php:350 contact_form.php:1410 contact_form.php:1456
42
+ #: includes/class-cntctfrm-settings.php:574
43
+ #: includes/class-cntctfrm-settings.php:664
44
+ #: includes/class-cntctfrm-settings.php:1064
45
+ #: includes/class-cntctfrm-settings.php:1103
46
+ #: includes/class-cntctfrm-settings.php:1344
47
  msgid "Name"
48
  msgstr "Jméno"
49
 
50
+ #: contact_form.php:351 contact_form.php:1417 contact_form.php:1462
51
+ #: includes/class-cntctfrm-settings.php:711
52
+ #: includes/class-cntctfrm-settings.php:1065
53
+ #: includes/class-cntctfrm-settings.php:1104
54
+ #: includes/class-cntctfrm-settings.php:1349
55
  msgid "Address"
56
  msgstr "Adresa"
57
 
58
+ #: contact_form.php:352 includes/class-cntctfrm-settings.php:727
59
+ #: includes/class-cntctfrm-settings.php:1066
60
+ #: includes/class-cntctfrm-settings.php:1105
61
  msgid "Email Address"
62
  msgstr "Emailová adresa"
63
 
64
+ #: contact_form.php:353 includes/class-cntctfrm-settings.php:747
65
+ #: includes/class-cntctfrm-settings.php:1067
66
+ #: includes/class-cntctfrm-settings.php:1106
67
  msgid "Phone number"
68
  msgstr "Telefonní číslo"
69
 
70
+ #: contact_form.php:354 contact_form.php:1428 contact_form.php:1471
71
+ #: includes/class-cntctfrm-settings.php:763
72
+ #: includes/class-cntctfrm-settings.php:1068
73
+ #: includes/class-cntctfrm-settings.php:1107
74
+ #: includes/class-cntctfrm-settings.php:1364
75
  msgid "Subject"
76
  msgstr "Předmět"
77
 
78
+ #: contact_form.php:355 contact_form.php:1433 contact_form.php:1475
79
+ #: includes/class-cntctfrm-settings.php:787
80
+ #: includes/class-cntctfrm-settings.php:1069
81
+ #: includes/class-cntctfrm-settings.php:1108
82
+ #: includes/class-cntctfrm-settings.php:1368
83
  msgid "Message"
84
  msgstr "Zpráva"
85
 
86
+ #: contact_form.php:356 includes/class-cntctfrm-settings.php:1070
87
+ #: includes/class-cntctfrm-settings.php:1109
88
+ #: includes/class-cntctfrm-settings.php:1373
89
  msgid "Attachment"
90
  msgstr "Příloha"
91
 
92
+ #: contact_form.php:357
93
  msgid ""
94
  "Supported file types: HTML, TXT, CSS, GIF, PNG, JPEG, JPG, TIFF, BMP, AI, "
95
  "EPS, PS, CSV, RTF, PDF, DOC, DOCX, XLS, XLSX, ZIP, RAR, WAV, MP3, PPT."
97
  "Podporované typy souborů: HTML, TXT, CSS, GIF, PNG, JPEG, JPG, TIFF, BMP, "
98
  "AI, EPS, PS, CSV, RTF, PDF, DOC, DOCX, XLS, XLSX, ZIP, RAR, WAV, MP3, PPT."
99
 
100
+ #: contact_form.php:358 includes/class-cntctfrm-settings.php:1072
101
+ #: includes/class-cntctfrm-settings.php:1111
102
  msgid "Send me a copy"
103
  msgstr "Zaslat mi kopii"
104
 
105
+ #: contact_form.php:359 includes/class-cntctfrm-settings.php:1073
106
+ #: includes/class-cntctfrm-settings.php:1112
107
  msgid "I consent to having this site collect my personal data."
108
  msgstr ""
109
 
110
+ #: contact_form.php:360 includes/class-cntctfrm-settings.php:1074
111
+ #: includes/class-cntctfrm-settings.php:1113
112
  msgid "Submit"
113
  msgstr "Odeslat"
114
 
115
+ #: contact_form.php:361
116
  msgid "Your name is required."
117
  msgstr "Vaše jméno je povinné."
118
 
119
+ #: contact_form.php:362
120
  msgid "Address is required."
121
  msgstr "Adresa je povinná."
122
 
123
+ #: contact_form.php:363
124
  msgid "A valid email address is required."
125
  msgstr "Je vyžadována platná emailová adresa."
126
 
127
+ #: contact_form.php:364
128
  msgid "Phone number is required."
129
  msgstr "Telefonní číslo je povinné."
130
 
131
+ #: contact_form.php:365
132
  msgid "Subject is required."
133
  msgstr "Předmět zprávy je povinný."
134
 
135
+ #: contact_form.php:366
136
  msgid "Message text is required."
137
  msgstr "Text zprávy je povinný."
138
 
139
+ #: contact_form.php:367
140
  msgid "File format is not valid."
141
  msgstr "Formát souboru není platný."
142
 
143
+ #: contact_form.php:368
144
  msgid "File upload error."
145
  msgstr "Chyba odeslání souboru."
146
 
147
+ #: contact_form.php:369
148
  msgid "The file could not be uploaded."
149
  msgstr "Soubor nelze odeslat."
150
 
151
+ #: contact_form.php:370
152
  msgid "This file is too large."
153
  msgstr "Soubor je příliš veliký."
154
 
155
+ #: contact_form.php:371
156
  msgid "Please fill out the CAPTCHA."
157
  msgstr "Opište CAPTCHA text."
158
 
159
+ #: contact_form.php:372
160
  msgid "Please make corrections below and try again."
161
  msgstr "Opravte chyby a zkuste to znovu."
162
 
163
+ #: contact_form.php:374
164
  msgid "Thank you for contacting us."
165
  msgstr "Děkujeme, že jste nás kontaktovali."
166
 
167
+ #: contact_form.php:651
168
+ msgid "NEW_FORM"
169
+ msgstr "NEW_FORM"
170
 
171
+ #: contact_form.php:652
172
  msgid ""
173
+ "If you want to create multiple contact forms, please install the Contact "
174
+ "Form Multi plugin."
175
  msgstr ""
176
+ "Pokud chcete vytvořit více kontaktních formulářů, nainstalujte si plugin "
177
+ "Contact Form Multi."
178
 
179
+ #: contact_form.php:657
180
  msgid ""
181
+ "Contact Form plugin doesn't support your current version of Contact Form "
182
+ "Multi plugin. Please update Contact Form Multi plugin to version 1.2.6 or "
183
+ "higher."
184
  msgstr ""
 
 
185
 
186
+ #: contact_form.php:759
187
+ msgid "Sorry, email message could not be delivered."
188
+ msgstr "Emailovou zprávu nelze doručit."
189
+
190
+ #: contact_form.php:1366 contact_form.php:1368
191
+ msgid "Sent from (ip address)"
192
+ msgstr "Odesláno z (IP adresy)"
193
+
194
+ #: contact_form.php:1372 contact_form.php:1374
195
+ #: includes/class-cntctfrm-settings.php:1024
196
+ msgid "Date/Time"
197
+ msgstr "Datum/Čas"
198
 
199
+ #: contact_form.php:1378 contact_form.php:1380
200
+ #: includes/class-cntctfrm-settings.php:1025
201
+ msgid "Sent from (referer)"
202
+ msgstr "Odesláno z (referer)"
203
+
204
+ #: contact_form.php:1384 contact_form.php:1386
205
+ #: includes/class-cntctfrm-settings.php:1026
206
+ msgid "Using (user agent)"
207
+ msgstr "S použitím (uživatelský agent)"
208
+
209
+ #: contact_form.php:1396
210
+ msgid "Contact from"
211
+ msgstr "Kontaktní formulář"
212
+
213
+ #: contact_form.php:1401 contact_form.php:1450
214
+ msgid "Site"
215
+ msgstr "Stránka"
216
+
217
+ #: contact_form.php:1423 contact_form.php:1467
218
+ #: includes/class-cntctfrm-settings.php:598
219
+ msgid "Email"
220
+ msgstr "Email"
221
+
222
+ #: contact_form.php:1439 contact_form.php:1480
223
+ #: includes/class-cntctfrm-settings.php:1359
224
+ msgid "Phone Number"
225
+ msgstr "Telefonní číslo"
226
+
227
+ #: contact_form.php:1562
228
  msgid ""
229
+ "If you can see this MIME, it means that the MIME type is not supported by "
230
+ "your email client!"
231
  msgstr ""
232
+ "Pokud vidíte tento MIME, znamená to, že váš emailový klient nepodporuje typ "
233
+ "MIME!"
234
 
235
+ #: contact_form.php:1634
236
+ msgid "FAQ"
237
+ msgstr ""
238
+ "Časté dotazy <acronym title=\"Frequently asked questions\">(FAQ)</acronym>"
239
 
240
+ #: contact_form.php:1635
241
+ msgid "Support"
242
+ msgstr "Podpora"
243
 
244
+ #: contact_form.php:1684
245
+ msgid "Are you sure that you want to delete this language data?"
246
+ msgstr "Opravdu chcete odstranit data pro tento jazyk?"
247
 
248
+ #: contact_form.php:1706
249
+ msgid "Add multiple forms"
250
+ msgstr "Přidat více formulářů"
251
 
252
+ #: contact_form.php:1706
253
+ msgid ""
254
+ "Install Contact Form Multi plugin to create unlimited number of contact "
255
+ "forms."
256
+ msgstr ""
257
+ "Chcete-li vytvořit vícero kontaktních formulářů, nainstalujte si plugin "
258
+ "Contact Form Multi."
259
+
260
+ #: contact_form.php:1711
261
+ msgid "Learn more"
262
+ msgstr "Dozvědět se více"
263
+
264
+ #: contact_form.php:1715 includes/class-cntctfrm-settings.php:469
265
+ #: includes/class-cntctfrm-settings.php:987
266
+ #: includes/class-cntctfrm-settings.php:1272
267
+ msgid "Close"
268
+ msgstr "Zavřít"
269
+
270
+ #: contact_form.php:1769
271
+ msgid "Error"
272
+ msgstr "Chyba"
273
+
274
+ #: contact_form.php:1769 contact_form.php:1771
275
+ msgid "Illegal language code"
276
+ msgstr "Neplatný kód jazyka"
277
+
278
+ #: contact_form.php:1805 contact_form.php:1807
279
+ #: includes/class-cntctfrm-settings.php:1089
280
+ #: includes/class-cntctfrm-settings.php:1091
281
+ #: includes/class-cntctfrm-settings.php:1128
282
+ #: includes/class-cntctfrm-settings.php:1130
283
+ #: includes/class-cntctfrm-settings.php:1162
284
+ #: includes/class-cntctfrm-settings.php:1164
285
+ #: includes/class-cntctfrm-settings.php:1176
286
+ #: includes/class-cntctfrm-settings.php:1178
287
+ msgid "Use shortcode"
288
+ msgstr "Použít zkrácený kód"
289
+
290
+ #: contact_form.php:1805 contact_form.php:1807
291
+ #: includes/class-cntctfrm-settings.php:1089
292
+ #: includes/class-cntctfrm-settings.php:1091
293
+ #: includes/class-cntctfrm-settings.php:1128
294
+ #: includes/class-cntctfrm-settings.php:1130
295
+ #: includes/class-cntctfrm-settings.php:1162
296
+ #: includes/class-cntctfrm-settings.php:1164
297
+ #: includes/class-cntctfrm-settings.php:1176
298
+ #: includes/class-cntctfrm-settings.php:1178
299
+ msgid "for this language"
300
+ msgstr "pro tento jazyk"
301
+
302
+ #: contact_form.php:1955
303
+ msgid "Close notice"
304
+ msgstr "Zavřít poznámku"
305
+
306
+ #: contact_form.php:1960
307
+ msgid "allows to store your messages to the database."
308
+ msgstr "umožňuje ukládání zpráv do databáze."
309
+
310
+ #: contact_form.php:1961
311
+ msgid "Manage messages that have been sent from your website."
312
+ msgstr "Spravovat zprávy, které byly odeslány z vašeho webu."
313
+
314
+ #: contact_form.php:1964
315
+ msgid "Learn More"
316
+ msgstr "Více informací"
317
+
318
+ #: contact_form.php:2024
319
+ msgid "Contact form"
320
+ msgstr "Kontaktní formulář"
321
+
322
+ #: contact_form.php:2037 contact_form.php:2047
323
+ msgid "Language"
324
+ msgstr "Jazyk"
325
 
326
+ #: includes/class-cntctfrm-settings.php:28
327
+ #: includes/class-cntctfrm-settings.php:546
328
+ msgid "Additional Settings"
329
+ msgstr ""
330
 
331
+ #: includes/class-cntctfrm-settings.php:29
332
+ #: includes/class-cntctfrm-settings.php:1198
333
  msgid "Appearance"
334
  msgstr "Vzhled"
335
 
336
+ #: includes/class-cntctfrm-settings.php:30
337
+ msgid "Misc"
338
+ msgstr ""
339
 
340
+ #: includes/class-cntctfrm-settings.php:31
341
+ msgid "License Key"
342
+ msgstr ""
343
 
344
+ #: includes/class-cntctfrm-settings.php:32
345
+ msgid "Custom Code"
346
+ msgstr ""
347
 
348
+ #: includes/class-cntctfrm-settings.php:99
349
+ msgid "Please enable JavaScript in your browser."
350
+ msgstr ""
351
 
352
+ #: includes/class-cntctfrm-settings.php:101
353
+ #, php-format
354
  msgid ""
355
+ "Contact Form plugin requires PHP %s or higher. Please contact your hosting "
356
+ "provider to upgrade PHP version."
357
  msgstr ""
 
 
358
 
359
+ #: includes/class-cntctfrm-settings.php:347
 
360
  msgid ""
361
+ "Email 'FROM' field option was changed, which may cause email messages being "
362
+ "moved to the spam folder or email delivery failures."
363
  msgstr ""
364
+ "Pole „od“ bylo změněno, což může způsobit doručení zpráv do složky spam, "
365
+ "nebo selhání doručení emailu."
366
 
367
+ #: includes/class-cntctfrm-settings.php:357
 
368
  msgid ""
369
+ "If the 'Redirect to page' option is selected then the URL field should be in "
370
+ "the following format"
 
 
371
  msgstr ""
372
+ "Pokud je vybrána možnost „Přesměrovat na stránku“, pak pole URL by měla být "
373
+ "v následujícím formátu"
374
+
375
+ #: includes/class-cntctfrm-settings.php:364
376
+ msgid "Such user does not exist."
377
+ msgstr "Takový uživatel neexistuje."
378
 
379
+ #: includes/class-cntctfrm-settings.php:374
380
+ msgid ""
381
+ "Please enter a valid email address in the 'Use this email address' field."
382
+ msgstr ""
383
+ "Zadejte platnou emailovou adresu do pole „Použít tuto emailovou adresu“."
384
+
385
+ #: includes/class-cntctfrm-settings.php:382
386
+ msgid "Please enter a valid email address in the 'FROM' field."
387
+ msgstr "Zadejte platnou emailovou adresu do pole „Od“."
388
+
389
+ #: includes/class-cntctfrm-settings.php:402
390
+ msgid "Settings saved."
391
+ msgstr "Nastavení bylo uloženo."
392
+
393
+ #: includes/class-cntctfrm-settings.php:404
394
+ msgid "Settings are not saved."
395
+ msgstr "Nastavení se neuložilo."
396
+
397
+ #: includes/class-cntctfrm-settings.php:429
398
  msgid ""
399
  "If you leave the fields empty, the messages will be sent to the email "
400
  "address specified during registration."
402
  "Ponecháte-li pole prázdná, zprávy budou zaslány na emailovou adresu zadanou "
403
  "během registrace."
404
 
405
+ #: includes/class-cntctfrm-settings.php:432
406
  msgid "The user's email address"
407
  msgstr "Emailová adresa uživatele"
408
 
409
+ #: includes/class-cntctfrm-settings.php:437
410
  msgid "Select a username"
411
  msgstr "Vyberte uživatelské jméno"
412
 
413
+ #: includes/class-cntctfrm-settings.php:450
414
  msgid ""
415
  "Select a username of the person who should get the messages from the contact "
416
  "form."
418
  "Vyberte uživatelské jméno osoby, která by měla dostávat zprávy z kontaktního "
419
  "formuláře."
420
 
421
+ #: includes/class-cntctfrm-settings.php:455
422
  msgid "Use this email address"
423
  msgstr "Použít tuto emailovou adresu"
424
 
425
+ #: includes/class-cntctfrm-settings.php:460
426
  msgid "Enter the email address for receiving messages"
427
  msgstr "Vložte emailovou adresu pro příjem zpráv"
428
 
429
+ #: includes/class-cntctfrm-settings.php:473
 
 
 
 
 
430
  msgid "Add department selectbox to the contact form"
431
  msgstr "Přidat do kontaktního formuláře Výběrové pole oddělení"
432
 
433
+ #: includes/class-cntctfrm-settings.php:492
 
 
 
 
 
 
 
 
 
 
434
  msgid "Save emails to the database"
435
  msgstr "Ukládat emaily do databáze"
436
 
437
+ #: includes/class-cntctfrm-settings.php:504
438
+ #: includes/class-cntctfrm-settings.php:518
439
+ #: includes/class-cntctfrm-settings.php:525
440
  msgid "Using"
441
  msgstr "S použitím"
442
 
443
+ #: includes/class-cntctfrm-settings.php:510
444
+ #: includes/class-cntctfrm-settings.php:889
445
+ #: includes/class-cntctfrm-settings.php:930
446
+ #: includes/class-cntctfrm-settings.php:965
447
  msgid "Please activate the appropriate option on"
448
  msgstr "Aktivujte příslušnou možnost na"
449
 
450
+ #: includes/class-cntctfrm-settings.php:513
451
+ #: includes/class-cntctfrm-settings.php:892
452
+ #: includes/class-cntctfrm-settings.php:933
453
+ #: includes/class-cntctfrm-settings.php:968
454
  msgid "settings page"
455
  msgstr "stránka nastavení"
456
 
457
+ #: includes/class-cntctfrm-settings.php:519
458
+ #: includes/class-cntctfrm-settings.php:899
459
+ #: includes/class-cntctfrm-settings.php:941
460
+ #: includes/class-cntctfrm-settings.php:975
461
  msgid "Activate"
462
  msgstr "Aktivovat"
463
 
464
+ #: includes/class-cntctfrm-settings.php:526
465
+ #: includes/class-cntctfrm-settings.php:908
466
+ #: includes/class-cntctfrm-settings.php:947
467
+ #: includes/class-cntctfrm-settings.php:980
468
  msgid "Download"
469
  msgstr "Stáhnout"
470
 
471
+ #: includes/class-cntctfrm-settings.php:551
472
  msgid "Sending method"
473
  msgstr "Metoda odesílání"
474
 
475
+ #: includes/class-cntctfrm-settings.php:556
476
  msgid "Wp-mail"
477
  msgstr "Wp-mail"
478
 
479
+ #: includes/class-cntctfrm-settings.php:557
480
  msgid "You can use the Wordpress wp_mail function for mailing"
481
  msgstr "Pro odesílání můžete použít funkci wp_mail"
482
 
483
+ #: includes/class-cntctfrm-settings.php:562
484
  msgid "Mail"
485
  msgstr "Email"
486
 
487
+ #: includes/class-cntctfrm-settings.php:563
488
  msgid "You can use the PHP mail function for mailing"
489
  msgstr "Pro odesílání můžete použít funkci PHP mail"
490
 
491
+ #: includes/class-cntctfrm-settings.php:569
492
  msgid "'FROM' field"
493
  msgstr "Pole „od“"
494
 
495
+ #: includes/class-cntctfrm-settings.php:585
496
  msgid "User name"
497
  msgstr "Uživatelské jméno"
498
 
499
+ #: includes/class-cntctfrm-settings.php:587
500
  msgid ""
501
  "The name of the user who fills the form will be used in the field 'From'."
502
  msgstr "Jméno uživatele, který vyplnil formulář bude použito v poli „Od“."
503
 
504
+ #: includes/class-cntctfrm-settings.php:609
 
 
 
 
505
  msgid "User email"
506
  msgstr "Uživatelský email"
507
 
508
+ #: includes/class-cntctfrm-settings.php:611
509
  msgid ""
510
  "The email address of the user who fills the form will be used in the field "
511
  "'From'."
512
  msgstr ""
513
  "Emailová adresa uživatele, který vyplnil formulář bude použita v poli „Od“."
514
 
515
+ #: includes/class-cntctfrm-settings.php:620
516
  msgid ""
517
  "If this option is changed, email messages may be moved to the spam folder or "
518
  "email delivery failures may occur."
520
  "Je-li tato možnost změněna, emailové zprávy mohou být přesunuty do složky "
521
  "Nevyžádaná pošta nebo může dojít k selhání doručení emailu."
522
 
523
+ #: includes/class-cntctfrm-settings.php:629
524
  msgid "Required symbol"
525
  msgstr "Povinný symbol"
526
 
527
+ #: includes/class-cntctfrm-settings.php:639
528
  msgid "Fields"
529
  msgstr "Pole"
530
 
531
+ #: includes/class-cntctfrm-settings.php:640
532
+ #: includes/class-cntctfrm-settings.php:667
533
+ #: includes/class-cntctfrm-settings.php:694
534
+ #: includes/class-cntctfrm-settings.php:714
535
+ #: includes/class-cntctfrm-settings.php:750
536
+ #: includes/class-cntctfrm-settings.php:832
537
  msgid "Used"
538
  msgstr "Použité"
539
 
540
+ #: includes/class-cntctfrm-settings.php:641
541
+ #: includes/class-cntctfrm-settings.php:656
542
+ #: includes/class-cntctfrm-settings.php:671
543
+ #: includes/class-cntctfrm-settings.php:698
544
+ #: includes/class-cntctfrm-settings.php:718
545
+ #: includes/class-cntctfrm-settings.php:754
546
+ #: includes/class-cntctfrm-settings.php:767
547
+ #: includes/class-cntctfrm-settings.php:791
548
  msgid "Required"
549
  msgstr "Povinné"
550
 
551
+ #: includes/class-cntctfrm-settings.php:643
552
+ #: includes/class-cntctfrm-settings.php:676
553
+ #: includes/class-cntctfrm-settings.php:733
554
+ #: includes/class-cntctfrm-settings.php:772
555
+ #: includes/class-cntctfrm-settings.php:796
556
  msgid "Visible"
557
  msgstr "Viditelné"
558
 
559
+ #: includes/class-cntctfrm-settings.php:644
560
+ #: includes/class-cntctfrm-settings.php:680
561
+ #: includes/class-cntctfrm-settings.php:737
562
+ #: includes/class-cntctfrm-settings.php:776
563
+ #: includes/class-cntctfrm-settings.php:800
564
  msgid "Disabled for editing"
565
  msgstr "Zakázáno pro úpravy"
566
 
567
+ #: includes/class-cntctfrm-settings.php:645
568
+ #: includes/class-cntctfrm-settings.php:704
569
+ #: includes/class-cntctfrm-settings.php:780
570
+ #: includes/class-cntctfrm-settings.php:804
571
  msgid "Field's default value"
572
  msgstr "Výchozí hodnota pole"
573
 
574
+ #: includes/class-cntctfrm-settings.php:652
575
  msgid "Department selectbox"
576
  msgstr "Výběrové pole oddělení"
577
 
578
+ #: includes/class-cntctfrm-settings.php:684
579
  msgid "Use User's name as a default value if the user is logged in."
580
  msgstr "Je-li uživatel přihlášen, použít jeho jméno jako výchozí hodnotu."
581
 
582
+ #: includes/class-cntctfrm-settings.php:685
583
+ #: includes/class-cntctfrm-settings.php:742
584
  msgid ""
585
  "'Visible' and 'Disabled for editing' options will be applied only to logged-"
586
  "in users."
588
  "Možnosti „Viditelné“ a „Zakázáno pro úpravy“ budou fungovat pouze pro "
589
  "přihlášené uživatele."
590
 
591
+ #: includes/class-cntctfrm-settings.php:691
592
  msgid "Location selectbox"
593
  msgstr "Umístění výběrového pole"
594
 
595
+ #: includes/class-cntctfrm-settings.php:741
596
  msgid "Use User's email as a default value if the user is logged in."
597
  msgstr "Je-li uživatel přihlášen, použít jeho email jako výchozí hodnotu."
598
 
599
+ #: includes/class-cntctfrm-settings.php:825
600
  msgid "Attachment block"
601
  msgstr "Blok příloh"
602
 
603
+ #: includes/class-cntctfrm-settings.php:827
604
  msgid "Users can attach the following file formats"
605
  msgstr "Uživatelé mohou připojit následující formáty souborů"
606
 
607
+ #: includes/class-cntctfrm-settings.php:845
608
  msgid "Add to the form"
609
  msgstr "Přidat do formuláře"
610
 
611
+ #: includes/class-cntctfrm-settings.php:850
612
  msgid "Tips below the Attachment"
613
  msgstr "Tipy pod přílohou"
614
 
615
+ #: includes/class-cntctfrm-settings.php:857
616
  msgid "'Send me a copy' block"
617
  msgstr "blok „Odeslat mi kopii“"
618
 
619
+ #: includes/class-cntctfrm-settings.php:864
620
  msgid "GDPR Compliance"
621
  msgstr ""
622
 
623
+ #: includes/class-cntctfrm-settings.php:869
624
  msgid "Link to Privacy Policy Page"
625
  msgstr ""
626
 
627
+ #: includes/class-cntctfrm-settings.php:873
628
  msgid "Text for Privacy Policy Link"
629
  msgstr ""
630
 
631
+ #: includes/class-cntctfrm-settings.php:901
632
  msgid "Activate for network"
633
  msgstr "Aktivovat pro síť"
634
 
635
+ #: includes/class-cntctfrm-settings.php:991
636
  msgid "Agreement checkbox"
637
  msgstr "Zaškrtávací políčko Souhlasu"
638
 
639
+ #: includes/class-cntctfrm-settings.php:991
640
  msgid "Required checkbox for submitting the form"
641
  msgstr "Povinné udělení souhlasu při odeslání formuláře"
642
 
643
+ #: includes/class-cntctfrm-settings.php:992
644
  msgid "Optional checkbox"
645
  msgstr "Volitelné zaškrtávací políčko"
646
 
647
+ #: includes/class-cntctfrm-settings.php:992
648
  msgid "Optional checkbox, the results of which will be displayed in email"
649
  msgstr "Volitelné zaškrtávací políčko, jeho výsledek bude zobrazen v emailu"
650
 
651
+ #: includes/class-cntctfrm-settings.php:1007
652
  msgid "Delete an attachment file from the server after the email is sent"
653
  msgstr "Po odeslání emailu odstranit přiložený soubor ze serveru"
654
 
655
+ #: includes/class-cntctfrm-settings.php:1013
656
  msgid "Email in HTML format sending"
657
  msgstr "Odeslání emailu ve formátu HTML"
658
 
659
+ #: includes/class-cntctfrm-settings.php:1017
660
  msgid "Display additional info in the email"
661
  msgstr "Zobrazit v emailu další informace"
662
 
663
+ #: includes/class-cntctfrm-settings.php:1023
664
  msgid "Sent from (IP address)"
665
  msgstr "Odesláno z (IP adresy)"
666
 
667
+ #: includes/class-cntctfrm-settings.php:1023
668
  msgid "Example: Sent from (IP address): 127.0.0.1"
669
  msgstr "Příklad: Odesláno z (IP adresy): 127.0.0.1"
670
 
671
+ #: includes/class-cntctfrm-settings.php:1024
 
 
 
 
672
  msgid "Example: Date/Time: August 19, 2013 8:50 pm"
673
  msgstr "Příklad: Datum/čas: 19. srpna 2013 8:50 pm"
674
 
675
+ #: includes/class-cntctfrm-settings.php:1025
 
 
 
 
676
  msgid ""
677
  "Example: Sent from (referer): https://bestwebsoft.com/contacts/contact-us/"
678
  msgstr ""
679
  "Příklad: Odesláno od (referer): https://bestwebsoft.com/contacts/contact-us/"
680
 
681
+ #: includes/class-cntctfrm-settings.php:1026
 
 
 
 
682
  msgid ""
683
  "Example: Using (user agent): Mozilla/5.0 (Windows NT 6.2; WOW64) "
684
  "AppleWebKit/537.36 (KHTML, like Gecko) Chrome/28.0.1500.95 Safari/537.36"
686
  "Příklad: S použitím (uživatelský agent): Mozilla/5.0 (Windows NT 6.2; WOW64) "
687
  "AppleWebKit/537.36 (KHTML, like Gecko) Chrome/28.0.1500.95 Safari/537.36"
688
 
689
+ #: includes/class-cntctfrm-settings.php:1031
690
  msgid "Language settings for the field names in the form"
691
  msgstr "Nastavení jazyka pro názvy polí ve formuláři"
692
 
693
+ #: includes/class-cntctfrm-settings.php:1040
694
  msgid "Add a language"
695
  msgstr "Přidat jazyk"
696
 
697
+ #: includes/class-cntctfrm-settings.php:1044
698
  msgid "Change the names of the contact form fields and error messages"
699
  msgstr "Změnit názvy polí kontaktního formuláře a chybových zpráv"
700
 
701
+ #: includes/class-cntctfrm-settings.php:1049
702
+ #: includes/class-cntctfrm-settings.php:1147
703
+ #: includes/class-cntctfrm-settings.php:1252
 
 
704
  msgid "Default"
705
  msgstr "Výchozí"
706
 
707
+ #: includes/class-cntctfrm-settings.php:1062
708
+ #: includes/class-cntctfrm-settings.php:1101
709
  msgid "click to expand/hide the list"
710
  msgstr "kliknutím rozbalit/skrýt seznam"
711
 
712
+ #: includes/class-cntctfrm-settings.php:1071
713
+ #: includes/class-cntctfrm-settings.php:1110
714
  msgid "Tips below the Attachment block"
715
  msgstr "Zobrazení tipů pod blokem příloh"
716
 
717
+ #: includes/class-cntctfrm-settings.php:1075
718
+ #: includes/class-cntctfrm-settings.php:1114
719
  msgid "Error message for the Name field"
720
  msgstr "Chybová zpráva pro pole Jméno"
721
 
722
+ #: includes/class-cntctfrm-settings.php:1076
723
+ #: includes/class-cntctfrm-settings.php:1115
724
  msgid "Error message for the Address field"
725
  msgstr "Chybová zpráva pro pole Adresa"
726
 
727
+ #: includes/class-cntctfrm-settings.php:1077
728
+ #: includes/class-cntctfrm-settings.php:1116
729
  msgid "Error message for the Email field"
730
  msgstr "Chybová zpráva pro pole Email"
731
 
732
+ #: includes/class-cntctfrm-settings.php:1078
733
+ #: includes/class-cntctfrm-settings.php:1117
734
  msgid "Error message for the Phone field"
735
  msgstr "Chybová zpráva pro pole Telefon"
736
 
737
+ #: includes/class-cntctfrm-settings.php:1079
738
+ #: includes/class-cntctfrm-settings.php:1118
739
  msgid "Error message for the Subject field"
740
  msgstr "Chybová zpráva pro pole Předmět"
741
 
742
+ #: includes/class-cntctfrm-settings.php:1080
743
+ #: includes/class-cntctfrm-settings.php:1119
744
  msgid "Error message for the Message field"
745
  msgstr "Chybová zpráva pro pole Zpráva"
746
 
747
+ #: includes/class-cntctfrm-settings.php:1081
748
+ #: includes/class-cntctfrm-settings.php:1120
749
  msgid "Error message about the file type for the Attachment field"
750
  msgstr "Chybová zpráva o typu souboru pro pole Příloha"
751
 
752
+ #: includes/class-cntctfrm-settings.php:1082
753
+ #: includes/class-cntctfrm-settings.php:1121
754
  msgid ""
755
  "Error message while uploading a file for the Attachment field to the server"
756
  msgstr ""
757
  "Chybová zpráva při neúspěšném nahrání souboru na server pro pole Příloha"
758
 
759
+ #: includes/class-cntctfrm-settings.php:1083
760
+ #: includes/class-cntctfrm-settings.php:1122
761
  msgid "Error message while moving the file for the Attachment field"
762
  msgstr "Chybová zpráva při neúspěšném přesunu souboru do pole Příloha"
763
 
764
+ #: includes/class-cntctfrm-settings.php:1084
765
+ #: includes/class-cntctfrm-settings.php:1123
766
  msgid "Error message when file size limit for the Attachment field is exceeded"
767
  msgstr ""
768
  "Chybová zpráva při překročení omezení velikosti souboru pro pole Příloha"
769
 
770
+ #: includes/class-cntctfrm-settings.php:1085
771
+ #: includes/class-cntctfrm-settings.php:1124
772
  msgid "Error message for the Captcha field"
773
  msgstr "Chybová zpráva pro pole Captcha"
774
 
775
+ #: includes/class-cntctfrm-settings.php:1086
776
+ #: includes/class-cntctfrm-settings.php:1125
777
  msgid "Error message for the whole form"
778
  msgstr "Chybová zpráva pro celý formulář"
779
 
780
+ #: includes/class-cntctfrm-settings.php:1138
 
 
 
 
 
 
 
 
 
 
 
 
 
 
781
  msgid "Use the changed names of the contact form fields in the email"
782
  msgstr "Použít změněné názvy polí kontaktního formuláře v emailu"
783
 
784
+ #: includes/class-cntctfrm-settings.php:1144
785
  msgid "Action after email is sent"
786
  msgstr "Akce po odeslání emailu"
787
 
788
+ #: includes/class-cntctfrm-settings.php:1146
789
  msgid "Display text"
790
  msgstr "Zobrazený text"
791
 
792
+ #: includes/class-cntctfrm-settings.php:1160
793
+ #: includes/class-cntctfrm-settings.php:1174
794
  msgid "Text"
795
  msgstr "Text"
796
 
797
+ #: includes/class-cntctfrm-settings.php:1185
798
  msgid "Redirect to the page"
799
  msgstr "Přesměrování na stránku"
800
 
801
+ #: includes/class-cntctfrm-settings.php:1186
802
  msgid "Url"
803
  msgstr "Url"
804
 
805
+ #: includes/class-cntctfrm-settings.php:1206
 
 
 
 
 
 
 
 
 
 
 
 
806
  #, php-format
807
  msgid ""
808
+ "Please enable JavaScript to change '%s', '%s', '%s', '%s' options and for "
809
+ "fields sorting."
 
810
  msgstr ""
 
 
 
 
 
 
 
811
 
812
+ #: includes/class-cntctfrm-settings.php:1207
813
+ #: includes/class-cntctfrm-settings.php:1224
 
 
 
 
 
814
  msgid "Form layout"
815
  msgstr "Rozložení formuláře"
816
 
817
+ #: includes/class-cntctfrm-settings.php:1208
818
+ #: includes/class-cntctfrm-settings.php:1291
819
+ msgid "Labels position"
820
+ msgstr "Umístění popisků"
821
+
822
+ #: includes/class-cntctfrm-settings.php:1209
823
+ #: includes/class-cntctfrm-settings.php:1309
824
+ msgid "Labels align"
825
+ msgstr "Zarovnání popisků"
826
+
827
+ #: includes/class-cntctfrm-settings.php:1210
828
+ #: includes/class-cntctfrm-settings.php:1236
829
  msgid "Submit position"
830
  msgstr "Umístění tlačítka Odeslat"
831
 
832
+ #: includes/class-cntctfrm-settings.php:1211
833
+ #: includes/class-cntctfrm-settings.php:1340
834
+ msgid "Add tooltips"
835
+ msgstr "Přidat popisky"
836
+
837
+ #: includes/class-cntctfrm-settings.php:1212
838
+ #: includes/class-cntctfrm-settings.php:1381
839
+ msgid "Style options"
840
+ msgstr "Nastavení stylů"
841
+
842
+ #: includes/class-cntctfrm-settings.php:1228
843
  msgid "One column"
844
  msgstr "Jeden sloupec"
845
 
846
+ #: includes/class-cntctfrm-settings.php:1231
847
  msgid "Two columns"
848
  msgstr "Dva sloupce"
849
 
850
+ #: includes/class-cntctfrm-settings.php:1240
851
+ #: includes/class-cntctfrm-settings.php:1280
852
+ #: includes/class-cntctfrm-settings.php:1298
853
+ #: includes/class-cntctfrm-settings.php:1313
854
  msgid "Left"
855
  msgstr "Vlevo"
856
 
857
+ #: includes/class-cntctfrm-settings.php:1243
858
+ #: includes/class-cntctfrm-settings.php:1286
859
+ #: includes/class-cntctfrm-settings.php:1301
860
+ #: includes/class-cntctfrm-settings.php:1319
861
  msgid "Right"
862
  msgstr "Vpravo"
863
 
864
+ #: includes/class-cntctfrm-settings.php:1248
865
  msgid "Width"
866
  msgstr "Šířka"
867
 
868
+ #: includes/class-cntctfrm-settings.php:1256
869
  msgid "Custom"
870
  msgstr "Vlastní"
871
 
872
+ #: includes/class-cntctfrm-settings.php:1263
873
  msgid "px"
874
  msgstr "px"
875
 
876
+ #: includes/class-cntctfrm-settings.php:1276
877
  msgid "Form align"
878
  msgstr "Zarovnání formuláře"
879
 
880
+ #: includes/class-cntctfrm-settings.php:1283
881
+ #: includes/class-cntctfrm-settings.php:1316
882
  msgid "Center"
883
  msgstr "Na střed"
884
 
885
+ #: includes/class-cntctfrm-settings.php:1295
 
 
 
 
886
  msgid "Top"
887
  msgstr "Nahoře"
888
 
889
+ #: includes/class-cntctfrm-settings.php:1304
890
  msgid "Bottom"
891
  msgstr "Dole"
892
 
893
+ #: includes/class-cntctfrm-settings.php:1324
 
 
 
 
894
  msgid "Errors output"
895
  msgstr "Chybový výstup"
896
 
897
+ #: includes/class-cntctfrm-settings.php:1327
898
  msgid "Display error messages"
899
  msgstr "Zobrazit chybové zprávy"
900
 
901
+ #: includes/class-cntctfrm-settings.php:1328
902
  msgid "Color of the input field errors."
903
  msgstr "Barva vstupního pole s chybou."
904
 
905
+ #: includes/class-cntctfrm-settings.php:1329
906
  msgid "Display error messages & color of the input field errors"
907
  msgstr "Zobrazit chybové zprávy a barvu vstupního pole s chybou"
908
 
909
+ #: includes/class-cntctfrm-settings.php:1334
910
  msgid "Add placeholder to the input blocks"
911
  msgstr "Přidat zástupný symbol do vstupních bloků"
912
 
913
+ #: includes/class-cntctfrm-settings.php:1354
 
 
 
 
914
  msgid "Email address"
915
  msgstr "Emailová adresa"
916
 
917
+ #: includes/class-cntctfrm-settings.php:1385
 
 
 
 
 
 
 
 
918
  msgid "Text color"
919
  msgstr "Barva textu"
920
 
921
+ #: includes/class-cntctfrm-settings.php:1393
922
  msgid "Label text color"
923
  msgstr "Barva textu popisků"
924
 
925
+ #: includes/class-cntctfrm-settings.php:1402
926
  msgid "Placeholder color"
927
  msgstr "Barva zástupného symbolu"
928
 
929
+ #: includes/class-cntctfrm-settings.php:1407
930
  msgid "Errors color"
931
  msgstr "Barva chyb"
932
 
933
+ #: includes/class-cntctfrm-settings.php:1415
934
  msgid "Error text color"
935
  msgstr "Barva textu chyby"
936
 
937
+ #: includes/class-cntctfrm-settings.php:1423
938
  msgid "Background color of the input field errors"
939
  msgstr "Barva pozadí vstupního pole s chybou"
940
 
941
+ #: includes/class-cntctfrm-settings.php:1431
942
  msgid "Border color of the input field errors"
943
  msgstr "Barva ohraničení vstupního pole s chybou"
944
 
945
+ #: includes/class-cntctfrm-settings.php:1439
946
  msgid "Placeholder color of the input field errors"
947
  msgstr "Barva zástupného symbolu v poli s chybou"
948
 
949
+ #: includes/class-cntctfrm-settings.php:1444
950
  msgid "Input fields"
951
  msgstr "Vstupní pole"
952
 
953
+ #: includes/class-cntctfrm-settings.php:1452
954
  msgid "Input fields background color"
955
  msgstr "Barva pozadí vstupních polí"
956
 
957
+ #: includes/class-cntctfrm-settings.php:1460
958
  msgid "Text fields color"
959
  msgstr "Barva textových polí"
960
 
961
+ #: includes/class-cntctfrm-settings.php:1464
962
  msgid "Border width in px, numbers only"
963
  msgstr "Šířka okraje v px, pouze čísla"
964
 
965
+ #: includes/class-cntctfrm-settings.php:1472
966
+ #: includes/class-cntctfrm-settings.php:1505
967
  msgid "Border color"
968
  msgstr "Barva ohraničení"
969
 
970
+ #: includes/class-cntctfrm-settings.php:1477
971
  msgid "Submit button"
972
  msgstr "Tlačítko Odeslat"
973
 
974
+ #: includes/class-cntctfrm-settings.php:1481
975
  msgid "Width in px, numbers only"
976
  msgstr "Šířka v px, pouze čísla"
977
 
978
+ #: includes/class-cntctfrm-settings.php:1489
979
  msgid "Button color"
980
  msgstr "Barva tlačítka"
981
 
982
+ #: includes/class-cntctfrm-settings.php:1497
983
  msgid "Button text color"
984
  msgstr "Barva textu tlačítka"
985
 
986
+ #: includes/class-cntctfrm-settings.php:1524
987
  msgid "Contact Form | Preview"
988
  msgstr "Kontaktní formulář | Náhled"
989
 
990
+ #: includes/class-cntctfrm-settings.php:1525
991
  msgid "Drag the necessary field to sort fields."
992
  msgstr "Přetažením změníte pořadí polí."
993
 
994
+ #: includes/class-cntctfrm-settings.php:1772
995
+ msgid "Contact Form Shortcode"
 
 
996
  msgstr ""
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
997
 
998
+ #: includes/class-cntctfrm-settings.php:1775
999
+ msgid "Add Contact Form to your page or post using the following shortcode:"
 
 
 
 
 
 
1000
  msgstr ""
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1001
 
1002
+ #~ msgid "If you upgrade to Pro version all your settings will be saved."
1003
+ #~ msgstr ""
1004
+ #~ "Pokud upgradujete na verzi Pro všechna nastavení zůstanou zachována."
1005
+
1006
+ #~ msgid ""
1007
+ #~ "If you would like to add the Contact Form to your website, just copy and "
1008
+ #~ "paste this shortcode to your post or page or widget"
1009
+ #~ msgstr ""
1010
+ #~ "Chcete-li přidat kontaktní formulář na váš web, stačí zkopírovat a vložit "
1011
+ #~ "tento zkrácený kód do vašeho příspěvku, stránky nebo widgetu"
1012
+
1013
+ #~ msgid "Save Changes"
1014
+ #~ msgstr "Uložit změny"
1015
+
1016
+ #~ msgid "Contact Form"
1017
+ #~ msgstr "Kontaktní formulář"
1018
+
1019
+ #~ msgid "All plugin settings were restored."
1020
+ #~ msgstr "Všechna nastavení pluginu byla obnovena."
1021
+
1022
+ #~ msgid "How to Use Step-by-step Instruction"
1023
+ #~ msgstr "Instrukce jak používat krok-za-krokem"
1024
+
1025
+ #~ msgid "Additional settings"
1026
+ #~ msgstr "Další nastavení"
1027
+
1028
+ #~ msgid "Custom code"
1029
+ #~ msgstr "Vlastní kód"
1030
+
1031
+ #~ msgid "Go PRO"
1032
+ #~ msgstr "Získat verzi Pro"
1033
+
1034
+ #~ msgid "Notice"
1035
+ #~ msgstr "Poznámka"
1036
+
1037
+ #~ msgid ""
1038
+ #~ "If you would like to add a Contact Form to your page or post, please use "
1039
+ #~ "%s button"
1040
+ #~ msgstr ""
1041
+ #~ "Pokud chcete kontaktní formulář přidat na stránku nebo příspěvek, "
1042
+ #~ "použijte tlačítko %s"
1043
+
1044
+ #~ msgid ""
1045
+ #~ "You can add the Contact Form to your page or post by clicking on %s "
1046
+ #~ "button in the content edit block using the Visual mode. If the button "
1047
+ #~ "isn't displayed, please use the shortcode %s or %s where * stands for "
1048
+ #~ "Contact Form language."
1049
+ #~ msgstr ""
1050
+ #~ "Kontaktní formulář můžete přidat na stránku nebo příspěvek kliknutím na "
1051
+ #~ "tlačítko %s v bloku editace obsahu při vizuálním režimu. Není-li tlačítko "
1052
+ #~ "zobrazeno, použijte zkrácený kód %s nebo %s kde * je nahrazuje jazyk "
1053
+ #~ "kontaktního formuláře."
1054
+
1055
+ #~ msgid "Add field 'Reply-To' to the email header"
1056
+ #~ msgstr "Přidat pole „Odpovědět komu“ do hlavičky emailu"
1057
+
1058
+ #~ msgid "Field 'Reply-To' will be initialized by user email"
1059
+ #~ msgstr "Pole „Odpovědět komu“ bude inicializováno mailem uživatele"
1060
+
1061
+ #~ msgid "Auto Response"
1062
+ #~ msgstr "Automatická odpověď"
1063
+
1064
+ #~ msgid ""
1065
+ #~ "You can use %%NAME%% to display data from the email field and %%MESSAGE%% "
1066
+ #~ "to display data from the Message field, as well as %%SITENAME%% to "
1067
+ #~ "display blog name."
1068
+ #~ msgstr ""
1069
+ #~ "Můžete použít %%NAME%% pro zobrazení dat z pole email a %%MESAGE%% pro "
1070
+ #~ "zobrazení dat z pole zprávy stejně jako %%SITENAME%% pro zobrazení názvu "
1071
+ #~ "blogu."
1072
+
1073
+ #~ msgid ""
1074
+ #~ "Please enable JavaScript to change '%s', '%s' options and for fields "
1075
+ #~ "sorting."
1076
+ #~ msgstr ""
1077
+ #~ "Povolte JavaScript pro změnu nastavení '%s', '%s' a pro řazení polí."
languages/contact-form-plugin-da_DK.mo CHANGED
Binary file
languages/contact-form-plugin-da_DK.po CHANGED
@@ -2,8 +2,8 @@ msgid ""
2
  msgstr ""
3
  "Project-Id-Version: Contact Form\n"
4
  "Report-Msgid-Bugs-To: \n"
5
- "POT-Creation-Date: 2018-05-16 14:25+0300\n"
6
- "PO-Revision-Date: 2018-05-16 14:25+0300\n"
7
  "Last-Translator: bestwebsoft.com <plugins@bestwebsoft.com>\n"
8
  "Language-Team: bestwebsoft.com <plugin@bestwebsoft.com>\n"
9
  "Language: da_DA\n"
@@ -20,63 +20,84 @@ msgstr ""
20
  "X-Poedit-SearchPath-0: .\n"
21
 
22
  # @ contact_form
23
- #: contact_form.php:37 contact_form.php:992
 
24
  msgid "Contact Form Settings"
25
  msgstr "Kontakt Form Indstillinger"
26
 
27
  # @ contact_form
28
- #: contact_form.php:37
29
- msgid "Contact Form"
30
- msgstr "Kontaktformular"
 
 
 
 
 
 
 
 
31
 
32
  # @ contact_form
33
- #: contact_form.php:322 contact_form.php:1172 contact_form.php:1262
34
- #: contact_form.php:1668 contact_form.php:1707 contact_form.php:1975
35
- #: contact_form.php:3134 contact_form.php:3180
 
 
 
36
  msgid "Name"
37
  msgstr "Navn:"
38
 
39
  # @ contact_form
40
- #: contact_form.php:323 contact_form.php:1309 contact_form.php:1669
41
- #: contact_form.php:1708 contact_form.php:1980 contact_form.php:3141
42
- #: contact_form.php:3186
 
 
43
  msgid "Address"
44
  msgstr "Adresse:"
45
 
46
  # @ contact_form
47
- #: contact_form.php:324 contact_form.php:1325 contact_form.php:1670
48
- #: contact_form.php:1709
 
49
  msgid "Email Address"
50
  msgstr "E-mail-adresse:"
51
 
52
  # @ contact_form
53
- #: contact_form.php:325 contact_form.php:1348 contact_form.php:1671
54
- #: contact_form.php:1710
 
55
  msgid "Phone number"
56
  msgstr "Telefon:"
57
 
58
  # @ contact_form
59
- #: contact_form.php:326 contact_form.php:1364 contact_form.php:1672
60
- #: contact_form.php:1711 contact_form.php:1995 contact_form.php:3152
61
- #: contact_form.php:3195
 
 
62
  msgid "Subject"
63
  msgstr "Emne:"
64
 
65
  # @ contact_form
66
- #: contact_form.php:327 contact_form.php:1388 contact_form.php:1673
67
- #: contact_form.php:1712 contact_form.php:1999 contact_form.php:3157
68
- #: contact_form.php:3199
 
 
69
  msgid "Message"
70
  msgstr "Besked:"
71
 
72
  # @ contact_form
73
- #: contact_form.php:328 contact_form.php:1674 contact_form.php:1713
74
- #: contact_form.php:2004
 
75
  msgid "Attachment"
76
  msgstr "Vedhæft fil:"
77
 
78
  # @ contact_form
79
- #: contact_form.php:329
80
  msgid ""
81
  "Supported file types: HTML, TXT, CSS, GIF, PNG, JPEG, JPG, TIFF, BMP, AI, "
82
  "EPS, PS, CSV, RTF, PDF, DOC, DOCX, XLS, XLSX, ZIP, RAR, WAV, MP3, PPT."
@@ -85,202 +106,346 @@ msgstr ""
85
  "EPS, PS, CSV, RTF, PDF, DOC, DOCX, XLS, XLSX, ZIP, RAR, WAV, MP3, PPT."
86
 
87
  # @ contact_form
88
- #: contact_form.php:330 contact_form.php:1676 contact_form.php:1715
 
89
  msgid "Send me a copy"
90
  msgstr "Send mig en kopi"
91
 
92
- #: contact_form.php:331 contact_form.php:1677 contact_form.php:1716
 
93
  msgid "I consent to having this site collect my personal data."
94
  msgstr ""
95
 
96
  # @ contact_form
97
- #: contact_form.php:332 contact_form.php:1678 contact_form.php:1717
 
98
  msgid "Submit"
99
  msgstr "Gennemfør"
100
 
101
  # @ contact_form
102
- #: contact_form.php:333
103
  msgid "Your name is required."
104
  msgstr "Dit navn er påkrævet."
105
 
106
  # @ contact_form
107
- #: contact_form.php:334
108
  msgid "Address is required."
109
  msgstr "Adresse er påkrævet."
110
 
111
  # @ contact_form
112
- #: contact_form.php:335
113
  msgid "A valid email address is required."
114
  msgstr "En gyldig email adresse er påkrævet."
115
 
116
  # @ contact_form
117
- #: contact_form.php:336
118
  msgid "Phone number is required."
119
  msgstr "Telefonnummer er påkrævet."
120
 
121
  # @ contact_form
122
- #: contact_form.php:337
123
  msgid "Subject is required."
124
  msgstr "Emne er påkrævet."
125
 
126
  # @ contact_form
127
- #: contact_form.php:338
128
  msgid "Message text is required."
129
  msgstr "Besked tekst er påkrævet."
130
 
131
  # @ contact_form
132
- #: contact_form.php:339
133
  msgid "File format is not valid."
134
  msgstr "Filformatet er ikke gyldig."
135
 
136
  # @ contact_form
137
- #: contact_form.php:340
138
  msgid "File upload error."
139
  msgstr "Upload fejl"
140
 
141
  # @ contact_form
142
- #: contact_form.php:341
143
  msgid "The file could not be uploaded."
144
  msgstr "Filen kunne ikke uploades."
145
 
146
  # @ contact_form
147
- #: contact_form.php:342
148
  msgid "This file is too large."
149
  msgstr "Denne fil er for stor."
150
 
151
  # @ contact_form
152
- #: contact_form.php:343
153
  msgid "Please fill out the CAPTCHA."
154
  msgstr "Udfyld CAPTCHA."
155
 
156
  # @ contact_form
157
- #: contact_form.php:344
158
  msgid "Please make corrections below and try again."
159
  msgstr "Venligst foretage korrektioner nedenfor, og prøv igen."
160
 
161
  # @ contact_form
162
- #: contact_form.php:346
163
  msgid "Thank you for contacting us."
164
  msgstr "Tak for din henvendelse."
165
 
166
- # @ contact_form
167
- #: contact_form.php:683 contact_form.php:949
168
- msgid "Settings saved."
169
- msgstr "Ændringerne blev gemt."
170
 
171
- #: contact_form.php:894
 
172
  msgid ""
173
- "Email 'FROM' field option was changed, which may cause email messages being "
174
- "moved to the spam folder or email delivery failures."
175
  msgstr ""
176
- "E 'Fra' feltet indstilling blev ændret, som kan forårsage e-mail meddelelser "
177
- "flyttes til spam omslag eller email levering fiaskoerne."
178
 
179
- # @ contact_form
180
- #: contact_form.php:904
181
  msgid ""
182
- "If the 'Redirect to page' option is selected then the URL field should be in "
183
- "the following format"
 
184
  msgstr ""
185
- "Hvis 'omdirigere til side \"er valgt derefter URL-feltet skal være i "
186
- "følgende format"
187
 
188
  # @ contact_form
189
- #: contact_form.php:911
190
- msgid "Such user does not exist."
191
- msgstr "Sådan bruger findes ikke."
192
 
193
  # @ contact_form
194
- #: contact_form.php:921
195
- msgid ""
196
- "Please enter a valid email address in the 'Use this email address' field."
197
- msgstr "Angiv en gyldig e-mail-adresse i feltet 'Brug denne e-mail-adresse'."
198
 
199
  # @ contact_form
200
- #: contact_form.php:929
201
- msgid "Please enter a valid email address in the 'FROM' field."
202
- msgstr "Indsæt en gyldig emailadresse i fra-feltet"
 
203
 
204
  # @ contact_form
205
- #: contact_form.php:951
206
- msgid "Settings are not saved."
207
- msgstr "Ændringerne er ikke gemt"
 
208
 
209
- #: contact_form.php:989
210
- msgid "All plugin settings were restored."
211
- msgstr "Alle plugin indstillinger blev gendannet."
 
 
212
 
213
- #: contact_form.php:995
214
- msgid "How to Use Step-by-step Instruction"
215
- msgstr "Hvordan man bruger en trinvis instruktion"
 
216
 
217
  # @ contact_form
218
- #: contact_form.php:998 contact_form.php:3343 contact_form.php:3357
219
- msgid "Settings"
220
- msgstr "Indstillinger"
221
 
222
  # @ contact_form
223
- #: contact_form.php:999
224
- msgid "Additional settings"
225
- msgstr "Yderligere indstillinger"
 
226
 
227
- #: contact_form.php:1000
228
- msgid "Appearance"
229
- msgstr "Udseende"
 
 
230
 
231
- #: contact_form.php:1001
232
- msgid "Custom code"
 
 
 
233
  msgstr ""
 
 
234
 
235
  # @ contact_form
236
- #: contact_form.php:1002
237
- msgid "Go PRO"
238
- msgstr "Gå PRO"
239
 
240
  # @ contact_form
241
- #: contact_form.php:1013
242
- #, fuzzy
243
- msgid "Notice"
244
- msgstr "Bemærk:"
245
 
246
- #: contact_form.php:1017
247
- msgid "NEW_FORM"
248
- msgstr "NEW_FORM"
 
249
 
250
  # @ contact_form
251
- #: contact_form.php:1018
 
 
 
 
252
  msgid ""
253
- "If you want to create multiple contact forms, please install the Contact "
254
- "Form Multi plugin."
255
  msgstr ""
256
- "Hvis du vil oprette flere kontakt formularer, skal du installere kontakt "
257
- "formular Multi stik."
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
258
 
259
  # @ contact_form
260
- #: contact_form.php:1027
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
261
  #, php-format
262
  msgid ""
263
- "If you would like to add a Contact Form to your page or post, please use %s "
264
- "button"
265
  msgstr ""
266
- "Hvis du ønsker at tilføje en kontakt formular på din side eller post, skal "
267
- "du bruge knappen for %s"
268
 
269
- #: contact_form.php:1033
270
- #, php-format
 
 
 
 
 
 
 
 
271
  msgid ""
272
- "You can add the Contact Form to your page or post by clicking on %s button "
273
- "in the content edit block using the Visual mode. If the button isn't "
274
- "displayed, please use the shortcode %s or %s where * stands for Contact Form "
275
- "language."
276
  msgstr ""
277
- "Du kan tilføje kontaktformular til din side eller post ved at klikke på%s "
278
- "knappen i indholdet redigere blokken ved hjælp af Visual tilstand. Hvis "
279
- "knappen ikke vises, kan du bruge kortkode%s eller%s, hvor * står for Contact "
280
- "Form sprog."
281
 
282
  # @ contact_form
283
- #: contact_form.php:1042
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
284
  msgid ""
285
  "If you leave the fields empty, the messages will be sent to the email "
286
  "address specified during registration."
@@ -289,18 +454,18 @@ msgstr ""
289
  "angivet under registreringen."
290
 
291
  # @ contact_form
292
- #: contact_form.php:1045
293
  #, fuzzy
294
  msgid "The user's email address"
295
  msgstr "Brugerens e-mail-adresse:"
296
 
297
  # @ contact_form
298
- #: contact_form.php:1049
299
  msgid "Select a username"
300
  msgstr "Vælg et brugernavn."
301
 
302
  # @ contact_form
303
- #: contact_form.php:1062
304
  #, fuzzy
305
  msgid ""
306
  "Select a username of the person who should get the messages from the contact "
@@ -310,127 +475,116 @@ msgstr ""
310
  "kontaktpersonformularen."
311
 
312
  # @ contact_form
313
- #: contact_form.php:1066
314
  #, fuzzy
315
  msgid "Use this email address"
316
  msgstr "Brug denne e-mail-adresse:"
317
 
318
  # @ contact_form
319
- #: contact_form.php:1070
320
  #, fuzzy
321
  msgid "Enter the email address for receiving messages"
322
  msgstr "Indtast den e-mailadresse du vil have de meddelelser, der sendes til."
323
 
324
- #: contact_form.php:1077 contact_form.php:1588 contact_form.php:1797
325
- #: contact_form.php:1903 contact_form.php:3440
326
- msgid "Close"
327
- msgstr "Luk"
328
-
329
  # @ contact_form
330
- #: contact_form.php:1081
331
  #, fuzzy
332
  msgid "Add department selectbox to the contact form"
333
  msgstr "Tilføje afdeling selectbox til kontakt formularen:"
334
 
335
  # @ contact_form
336
- #: contact_form.php:1089 contact_form.php:1597 contact_form.php:1816
337
- #: contact_form.php:2109
338
- msgid "If you upgrade to Pro version all your settings will be saved."
339
- msgstr "Hvis du opgradere til Pro-version vil alle indstillingerne blive gemt."
340
-
341
- #: contact_form.php:1096 contact_form.php:1418 contact_form.php:1602
342
- #: contact_form.php:1823 contact_form.php:2116
343
- msgid "Upgrade to Pro"
344
- msgstr ""
345
-
346
- # @ contact_form
347
- #: contact_form.php:1104
348
  msgid "Save emails to the database"
349
  msgstr "Gem dine emails i databasen"
350
 
351
  # @ contact_form
352
- #: contact_form.php:1116 contact_form.php:1130 contact_form.php:1137
 
 
353
  msgid "Using"
354
  msgstr "Ved hjælp af"
355
 
356
- #: contact_form.php:1122 contact_form.php:1490 contact_form.php:1531
357
- #: contact_form.php:1566
 
 
358
  msgid "Please activate the appropriate option on"
359
  msgstr ""
360
 
361
  # @ contact_form
362
- #: contact_form.php:1125 contact_form.php:1493 contact_form.php:1534
363
- #: contact_form.php:1569
 
 
364
  #, fuzzy
365
  msgid "settings page"
366
  msgstr "Ændringerne blev gemt."
367
 
368
  # @ contact_form
369
- #: contact_form.php:1131 contact_form.php:1500 contact_form.php:1542
370
- #: contact_form.php:1576
 
 
371
  msgid "Activate"
372
  msgstr "Aktiver"
373
 
374
  # @ contact_form
375
- #: contact_form.php:1138 contact_form.php:1509 contact_form.php:1548
376
- #: contact_form.php:1581
 
 
377
  msgid "Download"
378
  msgstr "Download"
379
 
380
- #: contact_form.php:1150
381
  msgid "Sending method"
382
  msgstr ""
383
 
384
  # @ contact_form
385
- #: contact_form.php:1155
386
  msgid "Wp-mail"
387
  msgstr "WP-mail"
388
 
389
  # @ contact_form
390
- #: contact_form.php:1157
391
  #, fuzzy
392
  msgid "You can use the Wordpress wp_mail function for mailing"
393
  msgstr "Du kan bruge funktionen wp_mail til mailing"
394
 
395
  # @ contact_form
396
- #: contact_form.php:1160
397
  msgid "Mail"
398
  msgstr "E-post"
399
 
400
  # @ contact_form
401
- #: contact_form.php:1162
402
  #, fuzzy
403
  msgid "You can use the PHP mail function for mailing"
404
  msgstr "Du kan bruge funktionen wp_mail til mailing"
405
 
406
- #: contact_form.php:1167
407
  msgid "'FROM' field"
408
  msgstr "'Fra' feltet"
409
 
410
  # @ contact_form
411
- #: contact_form.php:1183
412
  msgid "User name"
413
  msgstr "Brugernavn"
414
 
415
  # @ contact_form
416
- #: contact_form.php:1185
417
  msgid ""
418
  "The name of the user who fills the form will be used in the field 'From'."
419
  msgstr ""
420
  "Navnet på den bruger, der udfylder formularen skal bruges i feltet 'Fra'."
421
 
422
  # @ contact_form
423
- #: contact_form.php:1196 contact_form.php:3147 contact_form.php:3191
424
- msgid "Email"
425
- msgstr "e-mail"
426
-
427
- # @ contact_form
428
- #: contact_form.php:1207
429
  msgid "User email"
430
  msgstr "Bruger E-mail"
431
 
432
  # @ contact_form
433
- #: contact_form.php:1209
434
  msgid ""
435
  "The email address of the user who fills the form will be used in the field "
436
  "'From'."
@@ -438,7 +592,7 @@ msgstr ""
438
  "E-mail-adressen på den bruger, der udfylder formularen skal bruges i feltet "
439
  "'Fra'."
440
 
441
- #: contact_form.php:1218
442
  msgid ""
443
  "If this option is changed, email messages may be moved to the spam folder or "
444
  "email delivery failures may occur."
@@ -447,56 +601,74 @@ msgstr ""
447
  "mappen eller email levering fejl kan opstå."
448
 
449
  # @ contact_form
450
- #: contact_form.php:1227
451
  msgid "Required symbol"
452
  msgstr "Kræves symbol"
453
 
454
  # @ contact_form
455
- #: contact_form.php:1237
456
  msgid "Fields"
457
  msgstr "Felter"
458
 
459
  # @ contact_form
460
- #: contact_form.php:1238 contact_form.php:1265 contact_form.php:1292
461
- #: contact_form.php:1312 contact_form.php:1351 contact_form.php:1433
 
 
 
 
462
  msgid "Used"
463
  msgstr "Brugt"
464
 
465
  # @ contact_form
466
- #: contact_form.php:1239 contact_form.php:1254 contact_form.php:1269
467
- #: contact_form.php:1296 contact_form.php:1316 contact_form.php:1329
468
- #: contact_form.php:1355 contact_form.php:1368 contact_form.php:1392
 
 
 
 
 
469
  msgid "Required"
470
  msgstr "Kræves"
471
 
472
  # @ contact_form
473
- #: contact_form.php:1241 contact_form.php:1274 contact_form.php:1334
474
- #: contact_form.php:1373 contact_form.php:1397
 
 
 
475
  msgid "Visible"
476
  msgstr "Synlig"
477
 
478
  # @ contact_form
479
- #: contact_form.php:1242 contact_form.php:1278 contact_form.php:1338
480
- #: contact_form.php:1377 contact_form.php:1401
 
 
 
481
  msgid "Disabled for editing"
482
  msgstr "Handicappede til redigering"
483
 
484
  # @ contact_form
485
- #: contact_form.php:1243 contact_form.php:1302 contact_form.php:1381
486
- #: contact_form.php:1405
 
 
487
  msgid "Field's default value"
488
  msgstr "Feltets standardværdi"
489
 
490
  # @ contact_form
491
- #: contact_form.php:1250
492
  msgid "Department selectbox"
493
  msgstr "Afdeling selectbox"
494
 
495
- #: contact_form.php:1282
496
  msgid "Use User's name as a default value if the user is logged in."
497
  msgstr "Brug brugerens navn som standardværdi, hvis brugeren er logget på."
498
 
499
- #: contact_form.php:1283 contact_form.php:1343
 
500
  msgid ""
501
  "'Visible' and 'Disabled for editing' options will be applied only to logged-"
502
  "in users."
@@ -505,621 +677,566 @@ msgstr ""
505
  "journaliseret-i brugernes."
506
 
507
  # @ contact_form
508
- #: contact_form.php:1289
509
  msgid "Location selectbox"
510
  msgstr "Beliggenhed selectbox"
511
 
512
- #: contact_form.php:1342
513
  msgid "Use User's email as a default value if the user is logged in."
514
  msgstr ""
515
  "Brug brugerens e-mail som en standardværdi, hvis brugeren er logget på."
516
 
517
  # @ contact_form
518
- #: contact_form.php:1426
519
  msgid "Attachment block"
520
  msgstr "Vedhæftet fil blok"
521
 
522
  # @ contact_form
523
- #: contact_form.php:1428
524
  msgid "Users can attach the following file formats"
525
  msgstr "Brugerne kan vedhæfte følgende filformater"
526
 
527
  # @ contact_form
528
- #: contact_form.php:1446
529
  msgid "Add to the form"
530
  msgstr "Føje til formularen"
531
 
532
  # @ contact_form
533
- #: contact_form.php:1451
534
  msgid "Tips below the Attachment"
535
  msgstr "Tips nedenfor den vedhæftede fil"
536
 
537
  # @ contact_form
538
- #: contact_form.php:1458
539
  msgid "'Send me a copy' block"
540
  msgstr "'Sende mig en afskrift' blok"
541
 
542
- #: contact_form.php:1465
543
  msgid "GDPR Compliance"
544
  msgstr ""
545
 
546
- #: contact_form.php:1470
547
  msgid "Link to Privacy Policy Page"
548
  msgstr ""
549
 
550
- #: contact_form.php:1474
551
  msgid "Text for Privacy Policy Link"
552
  msgstr ""
553
 
554
- #: contact_form.php:1502
555
  msgid "Activate for network"
556
  msgstr ""
557
 
558
  # @ contact_form
559
- #: contact_form.php:1592
560
  msgid "Agreement checkbox"
561
  msgstr "Aftalen afkrydsningsfeltet"
562
 
563
  # @ contact_form
564
- #: contact_form.php:1592
565
  msgid "Required checkbox for submitting the form"
566
  msgstr "Kræves afkrydsningsfeltet til at sende formularen"
567
 
568
  # @ contact_form
569
- #: contact_form.php:1593
570
  msgid "Optional checkbox"
571
  msgstr "Valgfri afkrydsningsfeltet"
572
 
573
  # @ contact_form
574
- #: contact_form.php:1593
575
  msgid "Optional checkbox, the results of which will be displayed in email"
576
  msgstr "Valgfri afkrydsningsfeltet, hvis resultater vil blive vist i e-mail"
577
 
578
  # @ contact_form
579
- #: contact_form.php:1611
580
  msgid "Delete an attachment file from the server after the email is sent"
581
  msgstr "Slette en vedhæftet fil fra serveren, efter at e-mailen sendes"
582
 
583
  # @ contact_form
584
- #: contact_form.php:1617
585
  msgid "Email in HTML format sending"
586
  msgstr "E-mail i HTML-format at sende"
587
 
588
  # @ contact_form
589
- #: contact_form.php:1621
590
  msgid "Display additional info in the email"
591
  msgstr "Få vist yderligere info i e-mailen"
592
 
593
  # @ contact_form
594
- #: contact_form.php:1627
595
  #, fuzzy
596
  msgid "Sent from (IP address)"
597
  msgstr "Sendt fra (ip adresse)"
598
 
599
- #: contact_form.php:1627
600
  msgid "Example: Sent from (IP address): 127.0.0.1"
601
  msgstr ""
602
 
603
- # @ contact_form
604
- #: contact_form.php:1628 contact_form.php:3096 contact_form.php:3098
605
- msgid "Date/Time"
606
- msgstr "Dato / Tid"
607
-
608
- #: contact_form.php:1628
609
  msgid "Example: Date/Time: August 19, 2013 8:50 pm"
610
  msgstr ""
611
 
612
- # @ contact_form
613
- #: contact_form.php:1629 contact_form.php:3102 contact_form.php:3104
614
- msgid "Sent from (referer)"
615
- msgstr "Sendt fra (referer)"
616
-
617
- #: contact_form.php:1629
618
  msgid ""
619
  "Example: Sent from (referer): https://bestwebsoft.com/contacts/contact-us/"
620
  msgstr ""
621
 
622
- # @ contact_form
623
- #: contact_form.php:1630 contact_form.php:3108 contact_form.php:3110
624
- msgid "Using (user agent)"
625
- msgstr "Ved hjælp af (brugeragent)"
626
-
627
- #: contact_form.php:1630
628
  msgid ""
629
  "Example: Using (user agent): Mozilla/5.0 (Windows NT 6.2; WOW64) "
630
  "AppleWebKit/537.36 (KHTML, like Gecko) Chrome/28.0.1500.95 Safari/537.36"
631
  msgstr ""
632
 
633
  # @ contact_form
634
- #: contact_form.php:1635
635
  msgid "Language settings for the field names in the form"
636
  msgstr "Sprogindstillingerne for feltnavnene i form"
637
 
638
  # @ contact_form
639
- #: contact_form.php:1644
640
  msgid "Add a language"
641
  msgstr "Tilføje et sprog"
642
 
643
  # @ contact_form
644
- #: contact_form.php:1648
645
  msgid "Change the names of the contact form fields and error messages"
646
  msgstr "Ændre navne på kontaktpersoner formularfelter og fejlmeddelelser"
647
 
648
  # @ contact_form
649
- #: contact_form.php:1653 contact_form.php:1751 contact_form.php:1883
650
- #: contact_form.php:2023 contact_form.php:2028 contact_form.php:2038
651
- #: contact_form.php:2043 contact_form.php:2048 contact_form.php:2053
652
- #: contact_form.php:2063 contact_form.php:2068 contact_form.php:2077
653
- #: contact_form.php:2091 contact_form.php:2096 contact_form.php:2101
654
  msgid "Default"
655
  msgstr "Standard"
656
 
657
  # @ contact_form
658
- #: contact_form.php:1666 contact_form.php:1705
 
659
  msgid "click to expand/hide the list"
660
  msgstr "Klik for at udvide/skjule listen"
661
 
662
  # @ contact_form
663
- #: contact_form.php:1675 contact_form.php:1714
 
664
  msgid "Tips below the Attachment block"
665
  msgstr "Tips nedenfor den vedhæftede fil blokere"
666
 
667
  # @ contact_form
668
- #: contact_form.php:1679 contact_form.php:1718
 
669
  msgid "Error message for the Name field"
670
  msgstr "Fejlmeddelelse for feltet navn"
671
 
672
  # @ contact_form
673
- #: contact_form.php:1680 contact_form.php:1719
 
674
  msgid "Error message for the Address field"
675
  msgstr "Fejlmeddelelse for feltet adresse"
676
 
677
  # @ contact_form
678
- #: contact_form.php:1681 contact_form.php:1720
 
679
  msgid "Error message for the Email field"
680
  msgstr "Fejlmeddelelse for feltet E-mail"
681
 
682
  # @ contact_form
683
- #: contact_form.php:1682 contact_form.php:1721
 
684
  msgid "Error message for the Phone field"
685
  msgstr "Fejlmeddelelse for feltet telefon"
686
 
687
  # @ contact_form
688
- #: contact_form.php:1683 contact_form.php:1722
 
689
  msgid "Error message for the Subject field"
690
  msgstr "Fejlmeddelelse for feltet emne"
691
 
692
  # @ contact_form
693
- #: contact_form.php:1684 contact_form.php:1723
 
694
  msgid "Error message for the Message field"
695
  msgstr "Fejl besked i feltet besked"
696
 
697
  # @ contact_form
698
- #: contact_form.php:1685 contact_form.php:1724
 
699
  msgid "Error message about the file type for the Attachment field"
700
  msgstr "Fejlmeddelelse om filtypen til feltet vedhæftet fil"
701
 
702
  # @ contact_form
703
- #: contact_form.php:1686 contact_form.php:1725
 
704
  msgid ""
705
  "Error message while uploading a file for the Attachment field to the server"
706
  msgstr "Fejlmeddelelse ved upload en fil til feltet vedhæftet fil til serveren"
707
 
708
  # @ contact_form
709
- #: contact_form.php:1687 contact_form.php:1726
 
710
  msgid "Error message while moving the file for the Attachment field"
711
  msgstr "Fejlmeddelelse mens du flytter filen for feltet vedhæftet fil"
712
 
713
  # @ contact_form
714
- #: contact_form.php:1688 contact_form.php:1727
 
715
  msgid "Error message when file size limit for the Attachment field is exceeded"
716
  msgstr ""
717
  "Fejlmeddelelse, når filstørrelse for feltet vedhæftet fil er overskredet"
718
 
719
  # @ contact_form
720
- #: contact_form.php:1689 contact_form.php:1728
 
721
  msgid "Error message for the Captcha field"
722
  msgstr "Fejlmeddelelse for Captcha feltet"
723
 
724
  # @ contact_form
725
- #: contact_form.php:1690 contact_form.php:1729
 
726
  msgid "Error message for the whole form"
727
  msgstr "Fejlmeddelelse for hele formularen"
728
 
729
  # @ contact_form
730
- #: contact_form.php:1693 contact_form.php:1695 contact_form.php:1732
731
- #: contact_form.php:1734 contact_form.php:1766 contact_form.php:1768
732
- #: contact_form.php:1780 contact_form.php:1782 contact_form.php:3530
733
- #: contact_form.php:3532
734
- msgid "Use shortcode"
735
- msgstr "Brug kortkode"
736
-
737
- # @ contact_form
738
- #: contact_form.php:1693 contact_form.php:1695 contact_form.php:1732
739
- #: contact_form.php:1734 contact_form.php:1766 contact_form.php:1768
740
- #: contact_form.php:1780 contact_form.php:1782 contact_form.php:3530
741
- #: contact_form.php:3532
742
- msgid "for this language"
743
- msgstr "for dette sprog"
744
-
745
- # @ contact_form
746
- #: contact_form.php:1742
747
  msgid "Use the changed names of the contact form fields in the email"
748
  msgstr "Bruge ændret navnene på felterne kontaktformularen i e-mailen"
749
 
750
  # @ contact_form
751
- #: contact_form.php:1748
752
  msgid "Action after email is sent"
753
  msgstr "Handling efter at e-mail er sendt"
754
 
755
  # @ contact_form
756
- #: contact_form.php:1750
757
  msgid "Display text"
758
  msgstr "Vis tekst"
759
 
760
  # @ contact_form
761
- #: contact_form.php:1764 contact_form.php:1778
 
762
  msgid "Text"
763
  msgstr "Tekst"
764
 
765
  # @ contact_form
766
- #: contact_form.php:1789
767
  msgid "Redirect to the page"
768
  msgstr "Viderstil til side"
769
 
770
  # @ contact_form
771
- #: contact_form.php:1790
772
  msgid "Url"
773
  msgstr "Url"
774
 
775
- #: contact_form.php:1801
776
- msgid "Add field 'Reply-To' to the email header"
777
- msgstr "Tilføj feltet 'Svar til' til e-mail-header"
778
-
779
- #: contact_form.php:1803
780
- msgid "Field 'Reply-To' will be initialized by user email"
781
- msgstr "Feltet 'Svar til' vil være initialiseret af brugeren e-mail"
782
-
783
- # @ contact_form_pro
784
- #: contact_form.php:1807
785
- msgid "Auto Response"
786
- msgstr "Autosvar"
787
-
788
- # @ contact_form
789
- #: contact_form.php:1811
790
  #, php-format
791
  msgid ""
792
- "You can use %%NAME%% to display data from the email field and %%MESSAGE%% to "
793
- "display data from the Message field, as well as %%SITENAME%% to display blog "
794
- "name."
795
  msgstr ""
796
- "Du kan bruge %% navn %% til at vise data fra feltet e-mail og %% besked %% "
797
- "til at vise data fra feltet besked samt %%sITENAME %% for at vise blog navn."
798
 
799
- # @ default
800
- #: contact_form.php:1833 contact_form.php:2375
801
- msgid "Save Changes"
802
- msgstr "Gem ændringer"
803
-
804
- #: contact_form.php:1846
805
- #, php-format
806
- msgid ""
807
- "Please enable JavaScript to change '%s', '%s' options and for fields sorting."
808
- msgstr ""
809
- "Venligst JavaScript at ændre '%s', '%s' indstillinger og felter sortering."
810
-
811
- #: contact_form.php:1846 contact_form.php:1855
812
  msgid "Form layout"
813
  msgstr "Formular Layout"
814
 
815
  # @ contact_form
816
- #: contact_form.php:1846 contact_form.php:1867
 
 
 
 
 
 
 
 
 
 
 
 
 
817
  msgid "Submit position"
818
  msgstr "Indsende position"
819
 
820
- #: contact_form.php:1859
 
 
 
 
 
 
 
 
 
 
 
 
821
  msgid "One column"
822
  msgstr "En kolonne"
823
 
824
- #: contact_form.php:1862
825
  msgid "Two columns"
826
  msgstr "To kolonner"
827
 
828
- #: contact_form.php:1871 contact_form.php:1911 contact_form.php:1929
829
- #: contact_form.php:1944
 
 
830
  msgid "Left"
831
  msgstr "Venstre"
832
 
833
- #: contact_form.php:1874 contact_form.php:1917 contact_form.php:1932
834
- #: contact_form.php:1950
 
 
835
  msgid "Right"
836
  msgstr "Højre"
837
 
838
- #: contact_form.php:1879
839
  msgid "Width"
840
  msgstr ""
841
 
842
- #: contact_form.php:1887
843
  msgid "Custom"
844
  msgstr ""
845
 
846
- #: contact_form.php:1894
847
  msgid "px"
848
  msgstr ""
849
 
850
- #: contact_form.php:1907
851
  msgid "Form align"
852
  msgstr ""
853
 
854
- #: contact_form.php:1914 contact_form.php:1947
 
855
  msgid "Center"
856
  msgstr ""
857
 
858
- # @ contact_form
859
- #: contact_form.php:1922
860
- #, fuzzy
861
- msgid "Labels position"
862
- msgstr "Indsende position"
863
-
864
- #: contact_form.php:1926
865
  msgid "Top"
866
  msgstr ""
867
 
868
- #: contact_form.php:1935
869
  msgid "Bottom"
870
  msgstr ""
871
 
872
- #: contact_form.php:1940
873
- msgid "Labels align"
874
- msgstr ""
875
-
876
  # @ contact_form
877
- #: contact_form.php:1955
878
  msgid "Errors output"
879
  msgstr "Fejl output"
880
 
881
  # @ contact_form
882
- #: contact_form.php:1958
883
  msgid "Display error messages"
884
  msgstr "Vise fejlmeddelelser"
885
 
886
  # @ contact_form
887
- #: contact_form.php:1959
888
  msgid "Color of the input field errors."
889
  msgstr "Farven på input felt fejlene."
890
 
891
  # @ contact_form
892
- #: contact_form.php:1960
893
  msgid "Display error messages & color of the input field errors"
894
  msgstr "Vise fejlmeddelelser & farven på input felt fejlene"
895
 
896
  # @ contact_form
897
- #: contact_form.php:1965
898
  msgid "Add placeholder to the input blocks"
899
  msgstr "Tilføje pladsholder til input blokke"
900
 
901
  # @ contact_form
902
- #: contact_form.php:1971
903
- msgid "Add tooltips"
904
- msgstr "Føje værktøjstip"
905
-
906
- # @ contact_form
907
- #: contact_form.php:1985
908
  msgid "Email address"
909
  msgstr "E-mail-adresse:"
910
 
911
  # @ contact_form
912
- #: contact_form.php:1990 contact_form.php:3163 contact_form.php:3204
913
- msgid "Phone Number"
914
- msgstr "Telefon:"
915
-
916
- # @ contact_form
917
- #: contact_form.php:2016
918
- msgid "Style options"
919
- msgstr "Indstilling af fremtoning"
920
-
921
- # @ contact_form
922
- #: contact_form.php:2020
923
  msgid "Text color"
924
  msgstr "Tekstfarve"
925
 
926
  # @ contact_form
927
- #: contact_form.php:2025
928
  msgid "Label text color"
929
  msgstr "Etiket tekstfarve"
930
 
931
  # @ contact_form
932
- #: contact_form.php:2030
933
  msgid "Placeholder color"
934
  msgstr "Pladsholder farve"
935
 
936
  # @ contact_form
937
- #: contact_form.php:2035
938
  msgid "Errors color"
939
  msgstr "Fejl farve"
940
 
941
  # @ contact_form
942
- #: contact_form.php:2040
943
  msgid "Error text color"
944
  msgstr "Fejl tekstfarve"
945
 
946
  # @ contact_form
947
- #: contact_form.php:2045
948
  msgid "Background color of the input field errors"
949
  msgstr "Baggrundsfarven af input felt fejl"
950
 
951
  # @ contact_form
952
- #: contact_form.php:2050
953
  msgid "Border color of the input field errors"
954
  msgstr "Kantfarven på inputfelt fejl"
955
 
956
  # @ contact_form
957
- #: contact_form.php:2055
958
  msgid "Placeholder color of the input field errors"
959
  msgstr "Pladsholder farven på input felt fejlene"
960
 
961
  # @ contact_form
962
- #: contact_form.php:2060
963
  msgid "Input fields"
964
  msgstr "Felter"
965
 
966
  # @ contact_form
967
- #: contact_form.php:2065
968
  msgid "Input fields background color"
969
  msgstr "Inputfelter baggrundsfarve"
970
 
971
  # @ contact_form
972
- #: contact_form.php:2070
973
  msgid "Text fields color"
974
  msgstr "Tekst felter farve"
975
 
976
  # @ contact_form
977
- #: contact_form.php:2074
978
  msgid "Border width in px, numbers only"
979
  msgstr "Kantbredde i px, kun tal"
980
 
981
  # @ contact_form
982
- #: contact_form.php:2079 contact_form.php:2103
 
983
  msgid "Border color"
984
  msgstr "Ramme farve"
985
 
986
  # @ contact_form
987
- #: contact_form.php:2084
988
  msgid "Submit button"
989
  msgstr "Send knap"
990
 
991
  # @ contact_form
992
- #: contact_form.php:2088
993
  msgid "Width in px, numbers only"
994
  msgstr "Bredde i px, kun tal"
995
 
996
  # @ contact_form
997
- #: contact_form.php:2093
998
  msgid "Button color"
999
  msgstr "Knap farve"
1000
 
1001
  # @ contact_form
1002
- #: contact_form.php:2098
1003
  msgid "Button text color"
1004
  msgstr "Knap tekstfarve"
1005
 
1006
  # @ contact_form
1007
- #: contact_form.php:2127
1008
  msgid "Contact Form | Preview"
1009
  msgstr "Kontakt Form | Preview"
1010
 
1011
- #: contact_form.php:2128
1012
  msgid "Drag the necessary field to sort fields."
1013
  msgstr "Træk feltet nødvendigt hvis du vil sortere felterne."
1014
 
1015
- # @ contact_form
1016
- #: contact_form.php:2364
1017
- #, fuzzy
1018
- msgid ""
1019
- "If you would like to add the Contact Form to your website, just copy and "
1020
- "paste this shortcode to your post or page or widget"
1021
  msgstr ""
1022
- "Hvis du vil tilføje kontakt formular på dit websted, blot kopiere og "
1023
- "indsætte denne ufuldkommenhed til din post eller side eller widget:"
1024
 
1025
- # @ contact_form
1026
- #: contact_form.php:2486
1027
- msgid "Sorry, email message could not be delivered."
1028
- msgstr "Beklager, e-mailen ikke kunne leveres."
1029
 
1030
  # @ contact_form
1031
- #: contact_form.php:3090 contact_form.php:3092
1032
- msgid "Sent from (ip address)"
1033
- msgstr "Sendt fra (ip adresse)"
1034
 
1035
  # @ contact_form
1036
- #: contact_form.php:3120
1037
- msgid "Contact from"
1038
- msgstr "Kontakt fra formen"
 
 
 
 
1039
 
1040
- # @ contact_form
1041
- #: contact_form.php:3125 contact_form.php:3174
1042
- msgid "Site"
1043
- msgstr "Hjemmeside"
1044
 
1045
  # @ contact_form
1046
- #: contact_form.php:3286
1047
- msgid ""
1048
- "If you can see this MIME, it means that the MIME type is not supported by "
1049
- "your email client!"
1050
- msgstr ""
1051
- "Hvis du kan se denne MIME, betyder det, at MIME-typen ikke understøttes af "
1052
- "din e-mail-klient!"
1053
 
1054
- # @ contact_form
1055
- #: contact_form.php:3358
1056
- msgid "FAQ"
1057
- msgstr "FAQ"
1058
 
1059
- # @ contact_form
1060
- #: contact_form.php:3359
1061
- msgid "Support"
1062
- msgstr "Support"
1063
 
1064
  # @ contact_form
1065
- #: contact_form.php:3408
1066
- msgid "Are you sure that you want to delete this language data?"
1067
- msgstr "Er du sikker på at du vil slette dette sprogdata?"
1068
 
1069
  # @ contact_form
1070
- #: contact_form.php:3431
1071
- msgid "Add multiple forms"
1072
- msgstr "Tilføje flere formularer"
1073
-
1074
- #: contact_form.php:3431
1075
- msgid ""
1076
- "Install Contact Form Multi plugin to create unlimited number of contact "
1077
- "forms."
1078
- msgstr ""
1079
- "Installere kontakt Form Multi plugin for at skabe ubegrænset antal kontakt "
1080
- "formularer."
1081
 
1082
  # @ contact_form
1083
- #: contact_form.php:3436
1084
- msgid "Learn more"
1085
- msgstr "Få mere at vide"
1086
-
1087
- #: contact_form.php:3494
1088
- msgid "Error"
1089
- msgstr ""
1090
 
1091
- #: contact_form.php:3494 contact_form.php:3496
1092
- msgid "Illegal language code"
1093
- msgstr ""
 
 
 
 
1094
 
1095
- #: contact_form.php:3681
1096
- msgid "Close notice"
1097
- msgstr ""
 
 
 
 
 
 
 
1098
 
1099
- # @ contact_form
1100
- #: contact_form.php:3686
1101
- msgid "allows to store your messages to the database."
1102
- msgstr "giver mulighed for at gemme dine meddelelser til databasen."
1103
 
1104
- # @ contact_form
1105
- #: contact_form.php:3687
1106
- msgid "Manage messages that have been sent from your website."
1107
- msgstr "Administrere meddelelser, der er blevet sendt fra dit websted."
1108
 
1109
- # @ contact_form
1110
- #: contact_form.php:3690
1111
- msgid "Learn More"
1112
- msgstr "Læs mere"
1113
 
1114
  # @ contact_form
1115
- #: contact_form.php:3750
1116
- msgid "Contact form"
1117
- msgstr "Kontaktformular"
 
 
 
 
 
1118
 
1119
- # @ contact_form
1120
- #: contact_form.php:3763 contact_form.php:3773
1121
- msgid "Language"
1122
- msgstr "Sprog"
 
1123
 
1124
  # @ contact_form
1125
  #~ msgid "Example: Sent from (IP address):\t127.0.0.1"
2
  msgstr ""
3
  "Project-Id-Version: Contact Form\n"
4
  "Report-Msgid-Bugs-To: \n"
5
+ "POT-Creation-Date: 2019-02-25 16:26+0200\n"
6
+ "PO-Revision-Date: 2019-02-25 16:26+0200\n"
7
  "Last-Translator: bestwebsoft.com <plugins@bestwebsoft.com>\n"
8
  "Language-Team: bestwebsoft.com <plugin@bestwebsoft.com>\n"
9
  "Language: da_DA\n"
20
  "X-Poedit-SearchPath-0: .\n"
21
 
22
  # @ contact_form
23
+ #: contact_form.php:39 contact_form.php:47 contact_form.php:647
24
+ #: includes/class-cntctfrm-settings.php:425
25
  msgid "Contact Form Settings"
26
  msgstr "Kontakt Form Indstillinger"
27
 
28
  # @ contact_form
29
+ #: contact_form.php:48 contact_form.php:1619 contact_form.php:1633
30
+ #: includes/class-cntctfrm-settings.php:27
31
+ msgid "Settings"
32
+ msgstr "Indstillinger"
33
+
34
+ #: contact_form.php:63 includes/class-cntctfrm-settings.php:483
35
+ #: includes/class-cntctfrm-settings.php:817
36
+ #: includes/class-cntctfrm-settings.php:998
37
+ #: includes/class-cntctfrm-settings.php:1513
38
+ msgid "Upgrade to Pro"
39
+ msgstr ""
40
 
41
  # @ contact_form
42
+ #: contact_form.php:350 contact_form.php:1410 contact_form.php:1456
43
+ #: includes/class-cntctfrm-settings.php:574
44
+ #: includes/class-cntctfrm-settings.php:664
45
+ #: includes/class-cntctfrm-settings.php:1064
46
+ #: includes/class-cntctfrm-settings.php:1103
47
+ #: includes/class-cntctfrm-settings.php:1344
48
  msgid "Name"
49
  msgstr "Navn:"
50
 
51
  # @ contact_form
52
+ #: contact_form.php:351 contact_form.php:1417 contact_form.php:1462
53
+ #: includes/class-cntctfrm-settings.php:711
54
+ #: includes/class-cntctfrm-settings.php:1065
55
+ #: includes/class-cntctfrm-settings.php:1104
56
+ #: includes/class-cntctfrm-settings.php:1349
57
  msgid "Address"
58
  msgstr "Adresse:"
59
 
60
  # @ contact_form
61
+ #: contact_form.php:352 includes/class-cntctfrm-settings.php:727
62
+ #: includes/class-cntctfrm-settings.php:1066
63
+ #: includes/class-cntctfrm-settings.php:1105
64
  msgid "Email Address"
65
  msgstr "E-mail-adresse:"
66
 
67
  # @ contact_form
68
+ #: contact_form.php:353 includes/class-cntctfrm-settings.php:747
69
+ #: includes/class-cntctfrm-settings.php:1067
70
+ #: includes/class-cntctfrm-settings.php:1106
71
  msgid "Phone number"
72
  msgstr "Telefon:"
73
 
74
  # @ contact_form
75
+ #: contact_form.php:354 contact_form.php:1428 contact_form.php:1471
76
+ #: includes/class-cntctfrm-settings.php:763
77
+ #: includes/class-cntctfrm-settings.php:1068
78
+ #: includes/class-cntctfrm-settings.php:1107
79
+ #: includes/class-cntctfrm-settings.php:1364
80
  msgid "Subject"
81
  msgstr "Emne:"
82
 
83
  # @ contact_form
84
+ #: contact_form.php:355 contact_form.php:1433 contact_form.php:1475
85
+ #: includes/class-cntctfrm-settings.php:787
86
+ #: includes/class-cntctfrm-settings.php:1069
87
+ #: includes/class-cntctfrm-settings.php:1108
88
+ #: includes/class-cntctfrm-settings.php:1368
89
  msgid "Message"
90
  msgstr "Besked:"
91
 
92
  # @ contact_form
93
+ #: contact_form.php:356 includes/class-cntctfrm-settings.php:1070
94
+ #: includes/class-cntctfrm-settings.php:1109
95
+ #: includes/class-cntctfrm-settings.php:1373
96
  msgid "Attachment"
97
  msgstr "Vedhæft fil:"
98
 
99
  # @ contact_form
100
+ #: contact_form.php:357
101
  msgid ""
102
  "Supported file types: HTML, TXT, CSS, GIF, PNG, JPEG, JPG, TIFF, BMP, AI, "
103
  "EPS, PS, CSV, RTF, PDF, DOC, DOCX, XLS, XLSX, ZIP, RAR, WAV, MP3, PPT."
106
  "EPS, PS, CSV, RTF, PDF, DOC, DOCX, XLS, XLSX, ZIP, RAR, WAV, MP3, PPT."
107
 
108
  # @ contact_form
109
+ #: contact_form.php:358 includes/class-cntctfrm-settings.php:1072
110
+ #: includes/class-cntctfrm-settings.php:1111
111
  msgid "Send me a copy"
112
  msgstr "Send mig en kopi"
113
 
114
+ #: contact_form.php:359 includes/class-cntctfrm-settings.php:1073
115
+ #: includes/class-cntctfrm-settings.php:1112
116
  msgid "I consent to having this site collect my personal data."
117
  msgstr ""
118
 
119
  # @ contact_form
120
+ #: contact_form.php:360 includes/class-cntctfrm-settings.php:1074
121
+ #: includes/class-cntctfrm-settings.php:1113
122
  msgid "Submit"
123
  msgstr "Gennemfør"
124
 
125
  # @ contact_form
126
+ #: contact_form.php:361
127
  msgid "Your name is required."
128
  msgstr "Dit navn er påkrævet."
129
 
130
  # @ contact_form
131
+ #: contact_form.php:362
132
  msgid "Address is required."
133
  msgstr "Adresse er påkrævet."
134
 
135
  # @ contact_form
136
+ #: contact_form.php:363
137
  msgid "A valid email address is required."
138
  msgstr "En gyldig email adresse er påkrævet."
139
 
140
  # @ contact_form
141
+ #: contact_form.php:364
142
  msgid "Phone number is required."
143
  msgstr "Telefonnummer er påkrævet."
144
 
145
  # @ contact_form
146
+ #: contact_form.php:365
147
  msgid "Subject is required."
148
  msgstr "Emne er påkrævet."
149
 
150
  # @ contact_form
151
+ #: contact_form.php:366
152
  msgid "Message text is required."
153
  msgstr "Besked tekst er påkrævet."
154
 
155
  # @ contact_form
156
+ #: contact_form.php:367
157
  msgid "File format is not valid."
158
  msgstr "Filformatet er ikke gyldig."
159
 
160
  # @ contact_form
161
+ #: contact_form.php:368
162
  msgid "File upload error."
163
  msgstr "Upload fejl"
164
 
165
  # @ contact_form
166
+ #: contact_form.php:369
167
  msgid "The file could not be uploaded."
168
  msgstr "Filen kunne ikke uploades."
169
 
170
  # @ contact_form
171
+ #: contact_form.php:370
172
  msgid "This file is too large."
173
  msgstr "Denne fil er for stor."
174
 
175
  # @ contact_form
176
+ #: contact_form.php:371
177
  msgid "Please fill out the CAPTCHA."
178
  msgstr "Udfyld CAPTCHA."
179
 
180
  # @ contact_form
181
+ #: contact_form.php:372
182
  msgid "Please make corrections below and try again."
183
  msgstr "Venligst foretage korrektioner nedenfor, og prøv igen."
184
 
185
  # @ contact_form
186
+ #: contact_form.php:374
187
  msgid "Thank you for contacting us."
188
  msgstr "Tak for din henvendelse."
189
 
190
+ #: contact_form.php:651
191
+ msgid "NEW_FORM"
192
+ msgstr "NEW_FORM"
 
193
 
194
+ # @ contact_form
195
+ #: contact_form.php:652
196
  msgid ""
197
+ "If you want to create multiple contact forms, please install the Contact "
198
+ "Form Multi plugin."
199
  msgstr ""
200
+ "Hvis du vil oprette flere kontakt formularer, skal du installere kontakt "
201
+ "formular Multi stik."
202
 
203
+ #: contact_form.php:657
 
204
  msgid ""
205
+ "Contact Form plugin doesn't support your current version of Contact Form "
206
+ "Multi plugin. Please update Contact Form Multi plugin to version 1.2.6 or "
207
+ "higher."
208
  msgstr ""
 
 
209
 
210
  # @ contact_form
211
+ #: contact_form.php:759
212
+ msgid "Sorry, email message could not be delivered."
213
+ msgstr "Beklager, e-mailen ikke kunne leveres."
214
 
215
  # @ contact_form
216
+ #: contact_form.php:1366 contact_form.php:1368
217
+ msgid "Sent from (ip address)"
218
+ msgstr "Sendt fra (ip adresse)"
 
219
 
220
  # @ contact_form
221
+ #: contact_form.php:1372 contact_form.php:1374
222
+ #: includes/class-cntctfrm-settings.php:1024
223
+ msgid "Date/Time"
224
+ msgstr "Dato / Tid"
225
 
226
  # @ contact_form
227
+ #: contact_form.php:1378 contact_form.php:1380
228
+ #: includes/class-cntctfrm-settings.php:1025
229
+ msgid "Sent from (referer)"
230
+ msgstr "Sendt fra (referer)"
231
 
232
+ # @ contact_form
233
+ #: contact_form.php:1384 contact_form.php:1386
234
+ #: includes/class-cntctfrm-settings.php:1026
235
+ msgid "Using (user agent)"
236
+ msgstr "Ved hjælp af (brugeragent)"
237
 
238
+ # @ contact_form
239
+ #: contact_form.php:1396
240
+ msgid "Contact from"
241
+ msgstr "Kontakt fra formen"
242
 
243
  # @ contact_form
244
+ #: contact_form.php:1401 contact_form.php:1450
245
+ msgid "Site"
246
+ msgstr "Hjemmeside"
247
 
248
  # @ contact_form
249
+ #: contact_form.php:1423 contact_form.php:1467
250
+ #: includes/class-cntctfrm-settings.php:598
251
+ msgid "Email"
252
+ msgstr "e-mail"
253
 
254
+ # @ contact_form
255
+ #: contact_form.php:1439 contact_form.php:1480
256
+ #: includes/class-cntctfrm-settings.php:1359
257
+ msgid "Phone Number"
258
+ msgstr "Telefon:"
259
 
260
+ # @ contact_form
261
+ #: contact_form.php:1562
262
+ msgid ""
263
+ "If you can see this MIME, it means that the MIME type is not supported by "
264
+ "your email client!"
265
  msgstr ""
266
+ "Hvis du kan se denne MIME, betyder det, at MIME-typen ikke understøttes af "
267
+ "din e-mail-klient!"
268
 
269
  # @ contact_form
270
+ #: contact_form.php:1634
271
+ msgid "FAQ"
272
+ msgstr "FAQ"
273
 
274
  # @ contact_form
275
+ #: contact_form.php:1635
276
+ msgid "Support"
277
+ msgstr "Support"
 
278
 
279
+ # @ contact_form
280
+ #: contact_form.php:1684
281
+ msgid "Are you sure that you want to delete this language data?"
282
+ msgstr "Er du sikker på at du vil slette dette sprogdata?"
283
 
284
  # @ contact_form
285
+ #: contact_form.php:1706
286
+ msgid "Add multiple forms"
287
+ msgstr "Tilføje flere formularer"
288
+
289
+ #: contact_form.php:1706
290
  msgid ""
291
+ "Install Contact Form Multi plugin to create unlimited number of contact "
292
+ "forms."
293
  msgstr ""
294
+ "Installere kontakt Form Multi plugin for at skabe ubegrænset antal kontakt "
295
+ "formularer."
296
+
297
+ # @ contact_form
298
+ #: contact_form.php:1711
299
+ msgid "Learn more"
300
+ msgstr "Få mere at vide"
301
+
302
+ #: contact_form.php:1715 includes/class-cntctfrm-settings.php:469
303
+ #: includes/class-cntctfrm-settings.php:987
304
+ #: includes/class-cntctfrm-settings.php:1272
305
+ msgid "Close"
306
+ msgstr "Luk"
307
+
308
+ #: contact_form.php:1769
309
+ msgid "Error"
310
+ msgstr ""
311
+
312
+ #: contact_form.php:1769 contact_form.php:1771
313
+ msgid "Illegal language code"
314
+ msgstr ""
315
+
316
+ # @ contact_form
317
+ #: contact_form.php:1805 contact_form.php:1807
318
+ #: includes/class-cntctfrm-settings.php:1089
319
+ #: includes/class-cntctfrm-settings.php:1091
320
+ #: includes/class-cntctfrm-settings.php:1128
321
+ #: includes/class-cntctfrm-settings.php:1130
322
+ #: includes/class-cntctfrm-settings.php:1162
323
+ #: includes/class-cntctfrm-settings.php:1164
324
+ #: includes/class-cntctfrm-settings.php:1176
325
+ #: includes/class-cntctfrm-settings.php:1178
326
+ msgid "Use shortcode"
327
+ msgstr "Brug kortkode"
328
+
329
+ # @ contact_form
330
+ #: contact_form.php:1805 contact_form.php:1807
331
+ #: includes/class-cntctfrm-settings.php:1089
332
+ #: includes/class-cntctfrm-settings.php:1091
333
+ #: includes/class-cntctfrm-settings.php:1128
334
+ #: includes/class-cntctfrm-settings.php:1130
335
+ #: includes/class-cntctfrm-settings.php:1162
336
+ #: includes/class-cntctfrm-settings.php:1164
337
+ #: includes/class-cntctfrm-settings.php:1176
338
+ #: includes/class-cntctfrm-settings.php:1178
339
+ msgid "for this language"
340
+ msgstr "for dette sprog"
341
+
342
+ #: contact_form.php:1955
343
+ msgid "Close notice"
344
+ msgstr ""
345
+
346
+ # @ contact_form
347
+ #: contact_form.php:1960
348
+ msgid "allows to store your messages to the database."
349
+ msgstr "giver mulighed for at gemme dine meddelelser til databasen."
350
+
351
+ # @ contact_form
352
+ #: contact_form.php:1961
353
+ msgid "Manage messages that have been sent from your website."
354
+ msgstr "Administrere meddelelser, der er blevet sendt fra dit websted."
355
+
356
+ # @ contact_form
357
+ #: contact_form.php:1964
358
+ msgid "Learn More"
359
+ msgstr "Læs mere"
360
+
361
+ # @ contact_form
362
+ #: contact_form.php:2024
363
+ msgid "Contact form"
364
+ msgstr "Kontaktformular"
365
 
366
  # @ contact_form
367
+ #: contact_form.php:2037 contact_form.php:2047
368
+ msgid "Language"
369
+ msgstr "Sprog"
370
+
371
+ #: includes/class-cntctfrm-settings.php:28
372
+ #: includes/class-cntctfrm-settings.php:546
373
+ msgid "Additional Settings"
374
+ msgstr ""
375
+
376
+ #: includes/class-cntctfrm-settings.php:29
377
+ #: includes/class-cntctfrm-settings.php:1198
378
+ msgid "Appearance"
379
+ msgstr "Udseende"
380
+
381
+ #: includes/class-cntctfrm-settings.php:30
382
+ msgid "Misc"
383
+ msgstr ""
384
+
385
+ #: includes/class-cntctfrm-settings.php:31
386
+ msgid "License Key"
387
+ msgstr ""
388
+
389
+ #: includes/class-cntctfrm-settings.php:32
390
+ msgid "Custom Code"
391
+ msgstr ""
392
+
393
+ #: includes/class-cntctfrm-settings.php:99
394
+ msgid "Please enable JavaScript in your browser."
395
+ msgstr ""
396
+
397
+ #: includes/class-cntctfrm-settings.php:101
398
  #, php-format
399
  msgid ""
400
+ "Contact Form plugin requires PHP %s or higher. Please contact your hosting "
401
+ "provider to upgrade PHP version."
402
  msgstr ""
 
 
403
 
404
+ #: includes/class-cntctfrm-settings.php:347
405
+ msgid ""
406
+ "Email 'FROM' field option was changed, which may cause email messages being "
407
+ "moved to the spam folder or email delivery failures."
408
+ msgstr ""
409
+ "E 'Fra' feltet indstilling blev ændret, som kan forårsage e-mail meddelelser "
410
+ "flyttes til spam omslag eller email levering fiaskoerne."
411
+
412
+ # @ contact_form
413
+ #: includes/class-cntctfrm-settings.php:357
414
  msgid ""
415
+ "If the 'Redirect to page' option is selected then the URL field should be in "
416
+ "the following format"
 
 
417
  msgstr ""
418
+ "Hvis 'omdirigere til side \"er valgt derefter URL-feltet skal være i "
419
+ "følgende format"
 
 
420
 
421
  # @ contact_form
422
+ #: includes/class-cntctfrm-settings.php:364
423
+ msgid "Such user does not exist."
424
+ msgstr "Sådan bruger findes ikke."
425
+
426
+ # @ contact_form
427
+ #: includes/class-cntctfrm-settings.php:374
428
+ msgid ""
429
+ "Please enter a valid email address in the 'Use this email address' field."
430
+ msgstr "Angiv en gyldig e-mail-adresse i feltet 'Brug denne e-mail-adresse'."
431
+
432
+ # @ contact_form
433
+ #: includes/class-cntctfrm-settings.php:382
434
+ msgid "Please enter a valid email address in the 'FROM' field."
435
+ msgstr "Indsæt en gyldig emailadresse i fra-feltet"
436
+
437
+ # @ contact_form
438
+ #: includes/class-cntctfrm-settings.php:402
439
+ msgid "Settings saved."
440
+ msgstr "Ændringerne blev gemt."
441
+
442
+ # @ contact_form
443
+ #: includes/class-cntctfrm-settings.php:404
444
+ msgid "Settings are not saved."
445
+ msgstr "Ændringerne er ikke gemt"
446
+
447
+ # @ contact_form
448
+ #: includes/class-cntctfrm-settings.php:429
449
  msgid ""
450
  "If you leave the fields empty, the messages will be sent to the email "
451
  "address specified during registration."
454
  "angivet under registreringen."
455
 
456
  # @ contact_form
457
+ #: includes/class-cntctfrm-settings.php:432
458
  #, fuzzy
459
  msgid "The user's email address"
460
  msgstr "Brugerens e-mail-adresse:"
461
 
462
  # @ contact_form
463
+ #: includes/class-cntctfrm-settings.php:437
464
  msgid "Select a username"
465
  msgstr "Vælg et brugernavn."
466
 
467
  # @ contact_form
468
+ #: includes/class-cntctfrm-settings.php:450
469
  #, fuzzy
470
  msgid ""
471
  "Select a username of the person who should get the messages from the contact "
475
  "kontaktpersonformularen."
476
 
477
  # @ contact_form
478
+ #: includes/class-cntctfrm-settings.php:455
479
  #, fuzzy
480
  msgid "Use this email address"
481
  msgstr "Brug denne e-mail-adresse:"
482
 
483
  # @ contact_form
484
+ #: includes/class-cntctfrm-settings.php:460
485
  #, fuzzy
486
  msgid "Enter the email address for receiving messages"
487
  msgstr "Indtast den e-mailadresse du vil have de meddelelser, der sendes til."
488
 
 
 
 
 
 
489
  # @ contact_form
490
+ #: includes/class-cntctfrm-settings.php:473
491
  #, fuzzy
492
  msgid "Add department selectbox to the contact form"
493
  msgstr "Tilføje afdeling selectbox til kontakt formularen:"
494
 
495
  # @ contact_form
496
+ #: includes/class-cntctfrm-settings.php:492
 
 
 
 
 
 
 
 
 
 
 
497
  msgid "Save emails to the database"
498
  msgstr "Gem dine emails i databasen"
499
 
500
  # @ contact_form
501
+ #: includes/class-cntctfrm-settings.php:504
502
+ #: includes/class-cntctfrm-settings.php:518
503
+ #: includes/class-cntctfrm-settings.php:525
504
  msgid "Using"
505
  msgstr "Ved hjælp af"
506
 
507
+ #: includes/class-cntctfrm-settings.php:510
508
+ #: includes/class-cntctfrm-settings.php:889
509
+ #: includes/class-cntctfrm-settings.php:930
510
+ #: includes/class-cntctfrm-settings.php:965
511
  msgid "Please activate the appropriate option on"
512
  msgstr ""
513
 
514
  # @ contact_form
515
+ #: includes/class-cntctfrm-settings.php:513
516
+ #: includes/class-cntctfrm-settings.php:892
517
+ #: includes/class-cntctfrm-settings.php:933
518
+ #: includes/class-cntctfrm-settings.php:968
519
  #, fuzzy
520
  msgid "settings page"
521
  msgstr "Ændringerne blev gemt."
522
 
523
  # @ contact_form
524
+ #: includes/class-cntctfrm-settings.php:519
525
+ #: includes/class-cntctfrm-settings.php:899
526
+ #: includes/class-cntctfrm-settings.php:941
527
+ #: includes/class-cntctfrm-settings.php:975
528
  msgid "Activate"
529
  msgstr "Aktiver"
530
 
531
  # @ contact_form
532
+ #: includes/class-cntctfrm-settings.php:526
533
+ #: includes/class-cntctfrm-settings.php:908
534
+ #: includes/class-cntctfrm-settings.php:947
535
+ #: includes/class-cntctfrm-settings.php:980
536
  msgid "Download"
537
  msgstr "Download"
538
 
539
+ #: includes/class-cntctfrm-settings.php:551
540
  msgid "Sending method"
541
  msgstr ""
542
 
543
  # @ contact_form
544
+ #: includes/class-cntctfrm-settings.php:556
545
  msgid "Wp-mail"
546
  msgstr "WP-mail"
547
 
548
  # @ contact_form
549
+ #: includes/class-cntctfrm-settings.php:557
550
  #, fuzzy
551
  msgid "You can use the Wordpress wp_mail function for mailing"
552
  msgstr "Du kan bruge funktionen wp_mail til mailing"
553
 
554
  # @ contact_form
555
+ #: includes/class-cntctfrm-settings.php:562
556
  msgid "Mail"
557
  msgstr "E-post"
558
 
559
  # @ contact_form
560
+ #: includes/class-cntctfrm-settings.php:563
561
  #, fuzzy
562
  msgid "You can use the PHP mail function for mailing"
563
  msgstr "Du kan bruge funktionen wp_mail til mailing"
564
 
565
+ #: includes/class-cntctfrm-settings.php:569
566
  msgid "'FROM' field"
567
  msgstr "'Fra' feltet"
568
 
569
  # @ contact_form
570
+ #: includes/class-cntctfrm-settings.php:585
571
  msgid "User name"
572
  msgstr "Brugernavn"
573
 
574
  # @ contact_form
575
+ #: includes/class-cntctfrm-settings.php:587
576
  msgid ""
577
  "The name of the user who fills the form will be used in the field 'From'."
578
  msgstr ""
579
  "Navnet på den bruger, der udfylder formularen skal bruges i feltet 'Fra'."
580
 
581
  # @ contact_form
582
+ #: includes/class-cntctfrm-settings.php:609
 
 
 
 
 
583
  msgid "User email"
584
  msgstr "Bruger E-mail"
585
 
586
  # @ contact_form
587
+ #: includes/class-cntctfrm-settings.php:611
588
  msgid ""
589
  "The email address of the user who fills the form will be used in the field "
590
  "'From'."
592
  "E-mail-adressen på den bruger, der udfylder formularen skal bruges i feltet "
593
  "'Fra'."
594
 
595
+ #: includes/class-cntctfrm-settings.php:620
596
  msgid ""
597
  "If this option is changed, email messages may be moved to the spam folder or "
598
  "email delivery failures may occur."
601
  "mappen eller email levering fejl kan opstå."
602
 
603
  # @ contact_form
604
+ #: includes/class-cntctfrm-settings.php:629
605
  msgid "Required symbol"
606
  msgstr "Kræves symbol"
607
 
608
  # @ contact_form
609
+ #: includes/class-cntctfrm-settings.php:639
610
  msgid "Fields"
611
  msgstr "Felter"
612
 
613
  # @ contact_form
614
+ #: includes/class-cntctfrm-settings.php:640
615
+ #: includes/class-cntctfrm-settings.php:667
616
+ #: includes/class-cntctfrm-settings.php:694
617
+ #: includes/class-cntctfrm-settings.php:714
618
+ #: includes/class-cntctfrm-settings.php:750
619
+ #: includes/class-cntctfrm-settings.php:832
620
  msgid "Used"
621
  msgstr "Brugt"
622
 
623
  # @ contact_form
624
+ #: includes/class-cntctfrm-settings.php:641
625
+ #: includes/class-cntctfrm-settings.php:656
626
+ #: includes/class-cntctfrm-settings.php:671
627
+ #: includes/class-cntctfrm-settings.php:698
628
+ #: includes/class-cntctfrm-settings.php:718
629
+ #: includes/class-cntctfrm-settings.php:754
630
+ #: includes/class-cntctfrm-settings.php:767
631
+ #: includes/class-cntctfrm-settings.php:791
632
  msgid "Required"
633
  msgstr "Kræves"
634
 
635
  # @ contact_form
636
+ #: includes/class-cntctfrm-settings.php:643
637
+ #: includes/class-cntctfrm-settings.php:676
638
+ #: includes/class-cntctfrm-settings.php:733
639
+ #: includes/class-cntctfrm-settings.php:772
640
+ #: includes/class-cntctfrm-settings.php:796
641
  msgid "Visible"
642
  msgstr "Synlig"
643
 
644
  # @ contact_form
645
+ #: includes/class-cntctfrm-settings.php:644
646
+ #: includes/class-cntctfrm-settings.php:680
647
+ #: includes/class-cntctfrm-settings.php:737
648
+ #: includes/class-cntctfrm-settings.php:776
649
+ #: includes/class-cntctfrm-settings.php:800
650
  msgid "Disabled for editing"
651
  msgstr "Handicappede til redigering"
652
 
653
  # @ contact_form
654
+ #: includes/class-cntctfrm-settings.php:645
655
+ #: includes/class-cntctfrm-settings.php:704
656
+ #: includes/class-cntctfrm-settings.php:780
657
+ #: includes/class-cntctfrm-settings.php:804
658
  msgid "Field's default value"
659
  msgstr "Feltets standardværdi"
660
 
661
  # @ contact_form
662
+ #: includes/class-cntctfrm-settings.php:652
663
  msgid "Department selectbox"
664
  msgstr "Afdeling selectbox"
665
 
666
+ #: includes/class-cntctfrm-settings.php:684
667
  msgid "Use User's name as a default value if the user is logged in."
668
  msgstr "Brug brugerens navn som standardværdi, hvis brugeren er logget på."
669
 
670
+ #: includes/class-cntctfrm-settings.php:685
671
+ #: includes/class-cntctfrm-settings.php:742
672
  msgid ""
673
  "'Visible' and 'Disabled for editing' options will be applied only to logged-"
674
  "in users."
677
  "journaliseret-i brugernes."
678
 
679
  # @ contact_form
680
+ #: includes/class-cntctfrm-settings.php:691
681
  msgid "Location selectbox"
682
  msgstr "Beliggenhed selectbox"
683
 
684
+ #: includes/class-cntctfrm-settings.php:741
685
  msgid "Use User's email as a default value if the user is logged in."
686
  msgstr ""
687
  "Brug brugerens e-mail som en standardværdi, hvis brugeren er logget på."
688
 
689
  # @ contact_form
690
+ #: includes/class-cntctfrm-settings.php:825
691
  msgid "Attachment block"
692
  msgstr "Vedhæftet fil blok"
693
 
694
  # @ contact_form
695
+ #: includes/class-cntctfrm-settings.php:827
696
  msgid "Users can attach the following file formats"
697
  msgstr "Brugerne kan vedhæfte følgende filformater"
698
 
699
  # @ contact_form
700
+ #: includes/class-cntctfrm-settings.php:845
701
  msgid "Add to the form"
702
  msgstr "Føje til formularen"
703
 
704
  # @ contact_form
705
+ #: includes/class-cntctfrm-settings.php:850
706
  msgid "Tips below the Attachment"
707
  msgstr "Tips nedenfor den vedhæftede fil"
708
 
709
  # @ contact_form
710
+ #: includes/class-cntctfrm-settings.php:857
711
  msgid "'Send me a copy' block"
712
  msgstr "'Sende mig en afskrift' blok"
713
 
714
+ #: includes/class-cntctfrm-settings.php:864
715
  msgid "GDPR Compliance"
716
  msgstr ""
717
 
718
+ #: includes/class-cntctfrm-settings.php:869
719
  msgid "Link to Privacy Policy Page"
720
  msgstr ""
721
 
722
+ #: includes/class-cntctfrm-settings.php:873
723
  msgid "Text for Privacy Policy Link"
724
  msgstr ""
725
 
726
+ #: includes/class-cntctfrm-settings.php:901
727
  msgid "Activate for network"
728
  msgstr ""
729
 
730
  # @ contact_form
731
+ #: includes/class-cntctfrm-settings.php:991
732
  msgid "Agreement checkbox"
733
  msgstr "Aftalen afkrydsningsfeltet"
734
 
735
  # @ contact_form
736
+ #: includes/class-cntctfrm-settings.php:991
737
  msgid "Required checkbox for submitting the form"
738
  msgstr "Kræves afkrydsningsfeltet til at sende formularen"
739
 
740
  # @ contact_form
741
+ #: includes/class-cntctfrm-settings.php:992
742
  msgid "Optional checkbox"
743
  msgstr "Valgfri afkrydsningsfeltet"
744
 
745
  # @ contact_form
746
+ #: includes/class-cntctfrm-settings.php:992
747
  msgid "Optional checkbox, the results of which will be displayed in email"
748
  msgstr "Valgfri afkrydsningsfeltet, hvis resultater vil blive vist i e-mail"
749
 
750
  # @ contact_form
751
+ #: includes/class-cntctfrm-settings.php:1007
752
  msgid "Delete an attachment file from the server after the email is sent"
753
  msgstr "Slette en vedhæftet fil fra serveren, efter at e-mailen sendes"
754
 
755
  # @ contact_form
756
+ #: includes/class-cntctfrm-settings.php:1013
757
  msgid "Email in HTML format sending"
758
  msgstr "E-mail i HTML-format at sende"
759
 
760
  # @ contact_form
761
+ #: includes/class-cntctfrm-settings.php:1017
762
  msgid "Display additional info in the email"
763
  msgstr "Få vist yderligere info i e-mailen"
764
 
765
  # @ contact_form
766
+ #: includes/class-cntctfrm-settings.php:1023
767
  #, fuzzy
768
  msgid "Sent from (IP address)"
769
  msgstr "Sendt fra (ip adresse)"
770
 
771
+ #: includes/class-cntctfrm-settings.php:1023
772
  msgid "Example: Sent from (IP address): 127.0.0.1"
773
  msgstr ""
774
 
775
+ #: includes/class-cntctfrm-settings.php:1024
 
 
 
 
 
776
  msgid "Example: Date/Time: August 19, 2013 8:50 pm"
777
  msgstr ""
778
 
779
+ #: includes/class-cntctfrm-settings.php:1025
 
 
 
 
 
780
  msgid ""
781
  "Example: Sent from (referer): https://bestwebsoft.com/contacts/contact-us/"
782
  msgstr ""
783
 
784
+ #: includes/class-cntctfrm-settings.php:1026
 
 
 
 
 
785
  msgid ""
786
  "Example: Using (user agent): Mozilla/5.0 (Windows NT 6.2; WOW64) "
787
  "AppleWebKit/537.36 (KHTML, like Gecko) Chrome/28.0.1500.95 Safari/537.36"
788
  msgstr ""
789
 
790
  # @ contact_form
791
+ #: includes/class-cntctfrm-settings.php:1031
792
  msgid "Language settings for the field names in the form"
793
  msgstr "Sprogindstillingerne for feltnavnene i form"
794
 
795
  # @ contact_form
796
+ #: includes/class-cntctfrm-settings.php:1040
797
  msgid "Add a language"
798
  msgstr "Tilføje et sprog"
799
 
800
  # @ contact_form
801
+ #: includes/class-cntctfrm-settings.php:1044
802
  msgid "Change the names of the contact form fields and error messages"
803
  msgstr "Ændre navne på kontaktpersoner formularfelter og fejlmeddelelser"
804
 
805
  # @ contact_form
806
+ #: includes/class-cntctfrm-settings.php:1049
807
+ #: includes/class-cntctfrm-settings.php:1147
808
+ #: includes/class-cntctfrm-settings.php:1252
 
 
809
  msgid "Default"
810
  msgstr "Standard"
811
 
812
  # @ contact_form
813
+ #: includes/class-cntctfrm-settings.php:1062
814
+ #: includes/class-cntctfrm-settings.php:1101
815
  msgid "click to expand/hide the list"
816
  msgstr "Klik for at udvide/skjule listen"
817
 
818
  # @ contact_form
819
+ #: includes/class-cntctfrm-settings.php:1071
820
+ #: includes/class-cntctfrm-settings.php:1110
821
  msgid "Tips below the Attachment block"
822
  msgstr "Tips nedenfor den vedhæftede fil blokere"
823
 
824
  # @ contact_form
825
+ #: includes/class-cntctfrm-settings.php:1075
826
+ #: includes/class-cntctfrm-settings.php:1114
827
  msgid "Error message for the Name field"
828
  msgstr "Fejlmeddelelse for feltet navn"
829
 
830
  # @ contact_form
831
+ #: includes/class-cntctfrm-settings.php:1076
832
+ #: includes/class-cntctfrm-settings.php:1115
833
  msgid "Error message for the Address field"
834
  msgstr "Fejlmeddelelse for feltet adresse"
835
 
836
  # @ contact_form
837
+ #: includes/class-cntctfrm-settings.php:1077
838
+ #: includes/class-cntctfrm-settings.php:1116
839
  msgid "Error message for the Email field"
840
  msgstr "Fejlmeddelelse for feltet E-mail"
841
 
842
  # @ contact_form
843
+ #: includes/class-cntctfrm-settings.php:1078
844
+ #: includes/class-cntctfrm-settings.php:1117
845
  msgid "Error message for the Phone field"
846
  msgstr "Fejlmeddelelse for feltet telefon"
847
 
848
  # @ contact_form
849
+ #: includes/class-cntctfrm-settings.php:1079
850
+ #: includes/class-cntctfrm-settings.php:1118
851
  msgid "Error message for the Subject field"
852
  msgstr "Fejlmeddelelse for feltet emne"
853
 
854
  # @ contact_form
855
+ #: includes/class-cntctfrm-settings.php:1080
856
+ #: includes/class-cntctfrm-settings.php:1119
857
  msgid "Error message for the Message field"
858
  msgstr "Fejl besked i feltet besked"
859
 
860
  # @ contact_form
861
+ #: includes/class-cntctfrm-settings.php:1081
862
+ #: includes/class-cntctfrm-settings.php:1120
863
  msgid "Error message about the file type for the Attachment field"
864
  msgstr "Fejlmeddelelse om filtypen til feltet vedhæftet fil"
865
 
866
  # @ contact_form
867
+ #: includes/class-cntctfrm-settings.php:1082
868
+ #: includes/class-cntctfrm-settings.php:1121
869
  msgid ""
870
  "Error message while uploading a file for the Attachment field to the server"
871
  msgstr "Fejlmeddelelse ved upload en fil til feltet vedhæftet fil til serveren"
872
 
873
  # @ contact_form
874
+ #: includes/class-cntctfrm-settings.php:1083
875
+ #: includes/class-cntctfrm-settings.php:1122
876
  msgid "Error message while moving the file for the Attachment field"
877
  msgstr "Fejlmeddelelse mens du flytter filen for feltet vedhæftet fil"
878
 
879
  # @ contact_form
880
+ #: includes/class-cntctfrm-settings.php:1084
881
+ #: includes/class-cntctfrm-settings.php:1123
882
  msgid "Error message when file size limit for the Attachment field is exceeded"
883
  msgstr ""
884
  "Fejlmeddelelse, når filstørrelse for feltet vedhæftet fil er overskredet"
885
 
886
  # @ contact_form
887
+ #: includes/class-cntctfrm-settings.php:1085
888
+ #: includes/class-cntctfrm-settings.php:1124
889
  msgid "Error message for the Captcha field"
890
  msgstr "Fejlmeddelelse for Captcha feltet"
891
 
892
  # @ contact_form
893
+ #: includes/class-cntctfrm-settings.php:1086
894
+ #: includes/class-cntctfrm-settings.php:1125
895
  msgid "Error message for the whole form"
896
  msgstr "Fejlmeddelelse for hele formularen"
897
 
898
  # @ contact_form
899
+ #: includes/class-cntctfrm-settings.php:1138
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
900
  msgid "Use the changed names of the contact form fields in the email"
901
  msgstr "Bruge ændret navnene på felterne kontaktformularen i e-mailen"
902
 
903
  # @ contact_form
904
+ #: includes/class-cntctfrm-settings.php:1144
905
  msgid "Action after email is sent"
906
  msgstr "Handling efter at e-mail er sendt"
907
 
908
  # @ contact_form
909
+ #: includes/class-cntctfrm-settings.php:1146
910
  msgid "Display text"
911
  msgstr "Vis tekst"
912
 
913
  # @ contact_form
914
+ #: includes/class-cntctfrm-settings.php:1160
915
+ #: includes/class-cntctfrm-settings.php:1174
916
  msgid "Text"
917
  msgstr "Tekst"
918
 
919
  # @ contact_form
920
+ #: includes/class-cntctfrm-settings.php:1185
921
  msgid "Redirect to the page"
922
  msgstr "Viderstil til side"
923
 
924
  # @ contact_form
925
+ #: includes/class-cntctfrm-settings.php:1186
926
  msgid "Url"
927
  msgstr "Url"
928
 
929
+ #: includes/class-cntctfrm-settings.php:1206
 
 
 
 
 
 
 
 
 
 
 
 
 
 
930
  #, php-format
931
  msgid ""
932
+ "Please enable JavaScript to change '%s', '%s', '%s', '%s' options and for "
933
+ "fields sorting."
 
934
  msgstr ""
 
 
935
 
936
+ #: includes/class-cntctfrm-settings.php:1207
937
+ #: includes/class-cntctfrm-settings.php:1224
 
 
 
 
 
 
 
 
 
 
 
938
  msgid "Form layout"
939
  msgstr "Formular Layout"
940
 
941
  # @ contact_form
942
+ #: includes/class-cntctfrm-settings.php:1208
943
+ #: includes/class-cntctfrm-settings.php:1291
944
+ #, fuzzy
945
+ msgid "Labels position"
946
+ msgstr "Indsende position"
947
+
948
+ #: includes/class-cntctfrm-settings.php:1209
949
+ #: includes/class-cntctfrm-settings.php:1309
950
+ msgid "Labels align"
951
+ msgstr ""
952
+
953
+ # @ contact_form
954
+ #: includes/class-cntctfrm-settings.php:1210
955
+ #: includes/class-cntctfrm-settings.php:1236
956
  msgid "Submit position"
957
  msgstr "Indsende position"
958
 
959
+ # @ contact_form
960
+ #: includes/class-cntctfrm-settings.php:1211
961
+ #: includes/class-cntctfrm-settings.php:1340
962
+ msgid "Add tooltips"
963
+ msgstr "Føje værktøjstip"
964
+
965
+ # @ contact_form
966
+ #: includes/class-cntctfrm-settings.php:1212
967
+ #: includes/class-cntctfrm-settings.php:1381
968
+ msgid "Style options"
969
+ msgstr "Indstilling af fremtoning"
970
+
971
+ #: includes/class-cntctfrm-settings.php:1228
972
  msgid "One column"
973
  msgstr "En kolonne"
974
 
975
+ #: includes/class-cntctfrm-settings.php:1231
976
  msgid "Two columns"
977
  msgstr "To kolonner"
978
 
979
+ #: includes/class-cntctfrm-settings.php:1240
980
+ #: includes/class-cntctfrm-settings.php:1280
981
+ #: includes/class-cntctfrm-settings.php:1298
982
+ #: includes/class-cntctfrm-settings.php:1313
983
  msgid "Left"
984
  msgstr "Venstre"
985
 
986
+ #: includes/class-cntctfrm-settings.php:1243
987
+ #: includes/class-cntctfrm-settings.php:1286
988
+ #: includes/class-cntctfrm-settings.php:1301
989
+ #: includes/class-cntctfrm-settings.php:1319
990
  msgid "Right"
991
  msgstr "Højre"
992
 
993
+ #: includes/class-cntctfrm-settings.php:1248
994
  msgid "Width"
995
  msgstr ""
996
 
997
+ #: includes/class-cntctfrm-settings.php:1256
998
  msgid "Custom"
999
  msgstr ""
1000
 
1001
+ #: includes/class-cntctfrm-settings.php:1263
1002
  msgid "px"
1003
  msgstr ""
1004
 
1005
+ #: includes/class-cntctfrm-settings.php:1276
1006
  msgid "Form align"
1007
  msgstr ""
1008
 
1009
+ #: includes/class-cntctfrm-settings.php:1283
1010
+ #: includes/class-cntctfrm-settings.php:1316
1011
  msgid "Center"
1012
  msgstr ""
1013
 
1014
+ #: includes/class-cntctfrm-settings.php:1295
 
 
 
 
 
 
1015
  msgid "Top"
1016
  msgstr ""
1017
 
1018
+ #: includes/class-cntctfrm-settings.php:1304
1019
  msgid "Bottom"
1020
  msgstr ""
1021
 
 
 
 
 
1022
  # @ contact_form
1023
+ #: includes/class-cntctfrm-settings.php:1324
1024
  msgid "Errors output"
1025
  msgstr "Fejl output"
1026
 
1027
  # @ contact_form
1028
+ #: includes/class-cntctfrm-settings.php:1327
1029
  msgid "Display error messages"
1030
  msgstr "Vise fejlmeddelelser"
1031
 
1032
  # @ contact_form
1033
+ #: includes/class-cntctfrm-settings.php:1328
1034
  msgid "Color of the input field errors."
1035
  msgstr "Farven på input felt fejlene."
1036
 
1037
  # @ contact_form
1038
+ #: includes/class-cntctfrm-settings.php:1329
1039
  msgid "Display error messages & color of the input field errors"
1040
  msgstr "Vise fejlmeddelelser & farven på input felt fejlene"
1041
 
1042
  # @ contact_form
1043
+ #: includes/class-cntctfrm-settings.php:1334
1044
  msgid "Add placeholder to the input blocks"
1045
  msgstr "Tilføje pladsholder til input blokke"
1046
 
1047
  # @ contact_form
1048
+ #: includes/class-cntctfrm-settings.php:1354
 
 
 
 
 
1049
  msgid "Email address"
1050
  msgstr "E-mail-adresse:"
1051
 
1052
  # @ contact_form
1053
+ #: includes/class-cntctfrm-settings.php:1385
 
 
 
 
 
 
 
 
 
 
1054
  msgid "Text color"
1055
  msgstr "Tekstfarve"
1056
 
1057
  # @ contact_form
1058
+ #: includes/class-cntctfrm-settings.php:1393
1059
  msgid "Label text color"
1060
  msgstr "Etiket tekstfarve"
1061
 
1062
  # @ contact_form
1063
+ #: includes/class-cntctfrm-settings.php:1402
1064
  msgid "Placeholder color"
1065
  msgstr "Pladsholder farve"
1066
 
1067
  # @ contact_form
1068
+ #: includes/class-cntctfrm-settings.php:1407
1069
  msgid "Errors color"
1070
  msgstr "Fejl farve"
1071
 
1072
  # @ contact_form
1073
+ #: includes/class-cntctfrm-settings.php:1415
1074
  msgid "Error text color"
1075
  msgstr "Fejl tekstfarve"
1076
 
1077
  # @ contact_form
1078
+ #: includes/class-cntctfrm-settings.php:1423
1079
  msgid "Background color of the input field errors"
1080
  msgstr "Baggrundsfarven af input felt fejl"
1081
 
1082
  # @ contact_form
1083
+ #: includes/class-cntctfrm-settings.php:1431
1084
  msgid "Border color of the input field errors"
1085
  msgstr "Kantfarven på inputfelt fejl"
1086
 
1087
  # @ contact_form
1088
+ #: includes/class-cntctfrm-settings.php:1439
1089
  msgid "Placeholder color of the input field errors"
1090
  msgstr "Pladsholder farven på input felt fejlene"
1091
 
1092
  # @ contact_form
1093
+ #: includes/class-cntctfrm-settings.php:1444
1094
  msgid "Input fields"
1095
  msgstr "Felter"
1096
 
1097
  # @ contact_form
1098
+ #: includes/class-cntctfrm-settings.php:1452
1099
  msgid "Input fields background color"
1100
  msgstr "Inputfelter baggrundsfarve"
1101
 
1102
  # @ contact_form
1103
+ #: includes/class-cntctfrm-settings.php:1460
1104
  msgid "Text fields color"
1105
  msgstr "Tekst felter farve"
1106
 
1107
  # @ contact_form
1108
+ #: includes/class-cntctfrm-settings.php:1464
1109
  msgid "Border width in px, numbers only"
1110
  msgstr "Kantbredde i px, kun tal"
1111
 
1112
  # @ contact_form
1113
+ #: includes/class-cntctfrm-settings.php:1472
1114
+ #: includes/class-cntctfrm-settings.php:1505
1115
  msgid "Border color"
1116
  msgstr "Ramme farve"
1117
 
1118
  # @ contact_form
1119
+ #: includes/class-cntctfrm-settings.php:1477
1120
  msgid "Submit button"
1121
  msgstr "Send knap"
1122
 
1123
  # @ contact_form
1124
+ #: includes/class-cntctfrm-settings.php:1481
1125
  msgid "Width in px, numbers only"
1126
  msgstr "Bredde i px, kun tal"
1127
 
1128
  # @ contact_form
1129
+ #: includes/class-cntctfrm-settings.php:1489
1130
  msgid "Button color"
1131
  msgstr "Knap farve"
1132
 
1133
  # @ contact_form
1134
+ #: includes/class-cntctfrm-settings.php:1497
1135
  msgid "Button text color"
1136
  msgstr "Knap tekstfarve"
1137
 
1138
  # @ contact_form
1139
+ #: includes/class-cntctfrm-settings.php:1524
1140
  msgid "Contact Form | Preview"
1141
  msgstr "Kontakt Form | Preview"
1142
 
1143
+ #: includes/class-cntctfrm-settings.php:1525
1144
  msgid "Drag the necessary field to sort fields."
1145
  msgstr "Træk feltet nødvendigt hvis du vil sortere felterne."
1146
 
1147
+ #: includes/class-cntctfrm-settings.php:1772
1148
+ msgid "Contact Form Shortcode"
 
 
 
 
1149
  msgstr ""
 
 
1150
 
1151
+ #: includes/class-cntctfrm-settings.php:1775
1152
+ msgid "Add Contact Form to your page or post using the following shortcode:"
1153
+ msgstr ""
 
1154
 
1155
  # @ contact_form
1156
+ #~ msgid "If you upgrade to Pro version all your settings will be saved."
1157
+ #~ msgstr ""
1158
+ #~ "Hvis du opgradere til Pro-version vil alle indstillingerne blive gemt."
1159
 
1160
  # @ contact_form
1161
+ #, fuzzy
1162
+ #~ msgid ""
1163
+ #~ "If you would like to add the Contact Form to your website, just copy and "
1164
+ #~ "paste this shortcode to your post or page or widget"
1165
+ #~ msgstr ""
1166
+ #~ "Hvis du vil tilføje kontakt formular på dit websted, blot kopiere og "
1167
+ #~ "indsætte denne ufuldkommenhed til din post eller side eller widget:"
1168
 
1169
+ # @ default
1170
+ #~ msgid "Save Changes"
1171
+ #~ msgstr "Gem ændringer"
 
1172
 
1173
  # @ contact_form
1174
+ #~ msgid "Contact Form"
1175
+ #~ msgstr "Kontaktformular"
 
 
 
 
 
1176
 
1177
+ #~ msgid "All plugin settings were restored."
1178
+ #~ msgstr "Alle plugin indstillinger blev gendannet."
 
 
1179
 
1180
+ #~ msgid "How to Use Step-by-step Instruction"
1181
+ #~ msgstr "Hvordan man bruger en trinvis instruktion"
 
 
1182
 
1183
  # @ contact_form
1184
+ #~ msgid "Additional settings"
1185
+ #~ msgstr "Yderligere indstillinger"
 
1186
 
1187
  # @ contact_form
1188
+ #~ msgid "Go PRO"
1189
+ #~ msgstr " PRO"
 
 
 
 
 
 
 
 
 
1190
 
1191
  # @ contact_form
1192
+ #, fuzzy
1193
+ #~ msgid "Notice"
1194
+ #~ msgstr "Bemærk:"
 
 
 
 
1195
 
1196
+ # @ contact_form
1197
+ #~ msgid ""
1198
+ #~ "If you would like to add a Contact Form to your page or post, please use "
1199
+ #~ "%s button"
1200
+ #~ msgstr ""
1201
+ #~ "Hvis du ønsker at tilføje en kontakt formular på din side eller post, "
1202
+ #~ "skal du bruge knappen for %s"
1203
 
1204
+ #~ msgid ""
1205
+ #~ "You can add the Contact Form to your page or post by clicking on %s "
1206
+ #~ "button in the content edit block using the Visual mode. If the button "
1207
+ #~ "isn't displayed, please use the shortcode %s or %s where * stands for "
1208
+ #~ "Contact Form language."
1209
+ #~ msgstr ""
1210
+ #~ "Du kan tilføje kontaktformular til din side eller post ved at klikke på%s "
1211
+ #~ "knappen i indholdet redigere blokken ved hjælp af Visual tilstand. Hvis "
1212
+ #~ "knappen ikke vises, kan du bruge kortkode%s eller%s, hvor * står for "
1213
+ #~ "Contact Form sprog."
1214
 
1215
+ #~ msgid "Add field 'Reply-To' to the email header"
1216
+ #~ msgstr "Tilføj feltet 'Svar til' til e-mail-header"
 
 
1217
 
1218
+ #~ msgid "Field 'Reply-To' will be initialized by user email"
1219
+ #~ msgstr "Feltet 'Svar til' vil være initialiseret af brugeren e-mail"
 
 
1220
 
1221
+ # @ contact_form_pro
1222
+ #~ msgid "Auto Response"
1223
+ #~ msgstr "Autosvar"
 
1224
 
1225
  # @ contact_form
1226
+ #~ msgid ""
1227
+ #~ "You can use %%NAME%% to display data from the email field and %%MESSAGE%% "
1228
+ #~ "to display data from the Message field, as well as %%SITENAME%% to "
1229
+ #~ "display blog name."
1230
+ #~ msgstr ""
1231
+ #~ "Du kan bruge %% navn %% til at vise data fra feltet e-mail og %% besked %"
1232
+ #~ "% til at vise data fra feltet besked samt %%sITENAME %% for at vise blog "
1233
+ #~ "navn."
1234
 
1235
+ #~ msgid ""
1236
+ #~ "Please enable JavaScript to change '%s', '%s' options and for fields "
1237
+ #~ "sorting."
1238
+ #~ msgstr ""
1239
+ #~ "Venligst JavaScript at ændre '%s', '%s' indstillinger og felter sortering."
1240
 
1241
  # @ contact_form
1242
  #~ msgid "Example: Sent from (IP address):\t127.0.0.1"
languages/contact-form-plugin-de_DE.mo CHANGED
Binary file
languages/contact-form-plugin-de_DE.po CHANGED
@@ -2,8 +2,8 @@ msgid ""
2
  msgstr ""
3
  "Project-Id-Version: Contact Form\n"
4
  "Report-Msgid-Bugs-To: \n"
5
- "POT-Creation-Date: 2018-05-16 14:25+0300\n"
6
- "PO-Revision-Date: 2018-05-16 14:26+0300\n"
7
  "Last-Translator: plugin@bestwebsoft.com <plugin@bestwebsoft.com>\n"
8
  "Language-Team: Alex <private183@web.de>\n"
9
  "Language: de_DE\n"
@@ -17,54 +17,75 @@ msgstr ""
17
  "Plural-Forms: nplurals=2; plural=(n != 1);\n"
18
  "X-Poedit-SearchPath-0: .\n"
19
 
20
- #: contact_form.php:37 contact_form.php:992
 
21
  msgid "Contact Form Settings"
22
  msgstr "Kontakt-Form Einstellungen"
23
 
24
- #: contact_form.php:37
25
- msgid "Contact Form"
26
- msgstr "Kontakt-Form"
 
 
 
 
 
 
 
 
27
 
28
- #: contact_form.php:322 contact_form.php:1172 contact_form.php:1262
29
- #: contact_form.php:1668 contact_form.php:1707 contact_form.php:1975
30
- #: contact_form.php:3134 contact_form.php:3180
 
 
 
31
  msgid "Name"
32
  msgstr "Name"
33
 
34
- #: contact_form.php:323 contact_form.php:1309 contact_form.php:1669
35
- #: contact_form.php:1708 contact_form.php:1980 contact_form.php:3141
36
- #: contact_form.php:3186
 
 
37
  msgid "Address"
38
  msgstr "Adresse: "
39
 
40
- #: contact_form.php:324 contact_form.php:1325 contact_form.php:1670
41
- #: contact_form.php:1709
 
42
  msgid "Email Address"
43
  msgstr "E-Mail Adresse:"
44
 
45
- #: contact_form.php:325 contact_form.php:1348 contact_form.php:1671
46
- #: contact_form.php:1710
 
47
  msgid "Phone number"
48
  msgstr "Telefonnummer:"
49
 
50
- #: contact_form.php:326 contact_form.php:1364 contact_form.php:1672
51
- #: contact_form.php:1711 contact_form.php:1995 contact_form.php:3152
52
- #: contact_form.php:3195
 
 
53
  msgid "Subject"
54
  msgstr "Betreff"
55
 
56
- #: contact_form.php:327 contact_form.php:1388 contact_form.php:1673
57
- #: contact_form.php:1712 contact_form.php:1999 contact_form.php:3157
58
- #: contact_form.php:3199
 
 
59
  msgid "Message"
60
  msgstr "Inhalt"
61
 
62
- #: contact_form.php:328 contact_form.php:1674 contact_form.php:1713
63
- #: contact_form.php:2004
 
64
  msgid "Attachment"
65
  msgstr "Anhang:"
66
 
67
- #: contact_form.php:329
68
  msgid ""
69
  "Supported file types: HTML, TXT, CSS, GIF, PNG, JPEG, JPG, TIFF, BMP, AI, "
70
  "EPS, PS, CSV, RTF, PDF, DOC, DOCX, XLS, XLSX, ZIP, RAR, WAV, MP3, PPT."
@@ -72,176 +93,308 @@ msgstr ""
72
  "Unterstützte Dateitypen: HTML, TXT, CSS, GIF, PNG, JPEG, JPG, TIFF, BMP, AI, "
73
  "EPS, PS, CSV, RTF, PDF, DOC, DOCX, XLS, XLSX, ZIP, RAR, WAV, MP3, PPT."
74
 
75
- #: contact_form.php:330 contact_form.php:1676 contact_form.php:1715
 
76
  msgid "Send me a copy"
77
  msgstr "Kopie an mich senden"
78
 
79
- #: contact_form.php:331 contact_form.php:1677 contact_form.php:1716
 
80
  msgid "I consent to having this site collect my personal data."
81
  msgstr ""
82
 
83
- #: contact_form.php:332 contact_form.php:1678 contact_form.php:1717
 
84
  msgid "Submit"
85
  msgstr "Senden"
86
 
87
- #: contact_form.php:333
88
  msgid "Your name is required."
89
  msgstr "Dein Name wird benötigt."
90
 
91
- #: contact_form.php:334
92
  msgid "Address is required."
93
  msgstr "Adresse wird benötigt"
94
 
95
- #: contact_form.php:335
96
  msgid "A valid email address is required."
97
  msgstr "Eine gültige E-Mail Adresse wird benötigt."
98
 
99
- #: contact_form.php:336
100
  msgid "Phone number is required."
101
  msgstr "Deine Telefonnummer wird benötigt."
102
 
103
- #: contact_form.php:337
104
  msgid "Subject is required."
105
  msgstr "Ein Betreff wird benötigt."
106
 
107
- #: contact_form.php:338
108
  msgid "Message text is required."
109
  msgstr "Ein Inhalt wird benötigt."
110
 
111
- #: contact_form.php:339
112
  msgid "File format is not valid."
113
  msgstr "Datei Format ist nicht erlaubt."
114
 
115
- #: contact_form.php:340
116
  msgid "File upload error."
117
  msgstr "Datei-Übertragungsfehler"
118
 
119
- #: contact_form.php:341
120
  msgid "The file could not be uploaded."
121
  msgstr "Die Datei konnte nicht hochgeladen werden."
122
 
123
- #: contact_form.php:342
124
  msgid "This file is too large."
125
  msgstr "Diese Datei ist zu groß."
126
 
127
- #: contact_form.php:343
128
  msgid "Please fill out the CAPTCHA."
129
  msgstr "Bitte CAPTCHA ausfüllen."
130
 
131
- #: contact_form.php:344
132
  msgid "Please make corrections below and try again."
133
  msgstr "Bitte korrigiere die Fehler unten und versuche es erneut."
134
 
135
- #: contact_form.php:346
136
  msgid "Thank you for contacting us."
137
  msgstr "Danke für Ihre Nachricht."
138
 
139
- #: contact_form.php:683 contact_form.php:949
140
- msgid "Settings saved."
141
- msgstr "Einstellungen gespeichert."
142
 
143
- #: contact_form.php:894
144
  msgid ""
145
- "Email 'FROM' field option was changed, which may cause email messages being "
146
- "moved to the spam folder or email delivery failures."
147
  msgstr ""
148
 
149
- #: contact_form.php:904
150
  msgid ""
151
- "If the 'Redirect to page' option is selected then the URL field should be in "
152
- "the following format"
 
153
  msgstr ""
154
- "Wenn die 'Redirect to page/Umleiten zur Seite' Option verwendet wird, dann "
155
- "sollte das Feld URL in folgendem Format sein"
156
 
157
- #: contact_form.php:911
158
- #, fuzzy
159
- msgid "Such user does not exist."
160
- msgstr "Dieser User exestiert nicht. Einstellungen werden nicht gespeichert."
161
 
162
- #: contact_form.php:921
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
163
  #, fuzzy
 
 
 
 
164
  msgid ""
165
- "Please enter a valid email address in the 'Use this email address' field."
 
166
  msgstr ""
167
- "Bitte geben sie eine gültige Email Adresse in das 'FROM/VON' Feld ein. "
168
- "Einstellungen werden nicht gespeichert."
169
 
170
- #: contact_form.php:929
171
  #, fuzzy
172
- msgid "Please enter a valid email address in the 'FROM' field."
 
 
 
 
 
 
173
  msgstr ""
174
- "Bitte geben sie eine gültige Email Adresse in das 'FROM/VON' Feld ein. "
175
- "Einstellungen werden nicht gespeichert."
176
 
177
- #: contact_form.php:951
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
178
  #, fuzzy
179
- msgid "Settings are not saved."
180
- msgstr "Einstellungen gespeichert."
181
 
182
- #: contact_form.php:989
183
- msgid "All plugin settings were restored."
184
  msgstr ""
185
 
186
- #: contact_form.php:995
187
- msgid "How to Use Step-by-step Instruction"
188
  msgstr ""
189
 
190
- #: contact_form.php:998 contact_form.php:3343 contact_form.php:3357
191
- msgid "Settings"
192
- msgstr "Einstellungen"
 
193
 
194
- #: contact_form.php:999
195
  #, fuzzy
196
- msgid "Additional settings"
197
- msgstr "Weitere Optionen"
198
 
199
- #: contact_form.php:1000
 
 
 
 
 
 
200
  msgid "Appearance"
201
  msgstr ""
202
 
203
- #: contact_form.php:1001
204
- msgid "Custom code"
205
  msgstr ""
206
 
207
- #: contact_form.php:1002
208
- msgid "Go PRO"
209
- msgstr "Go PRO"
210
 
211
- #: contact_form.php:1013
212
- #, fuzzy
213
- msgid "Notice"
214
- msgstr "Notiz:"
215
 
216
- #: contact_form.php:1017
217
- msgid "NEW_FORM"
218
  msgstr ""
219
 
220
- #: contact_form.php:1018
 
221
  msgid ""
222
- "If you want to create multiple contact forms, please install the Contact "
223
- "Form Multi plugin."
224
  msgstr ""
225
 
226
- #: contact_form.php:1027
227
- #, fuzzy, php-format
228
  msgid ""
229
- "If you would like to add a Contact Form to your page or post, please use %s "
230
- "button"
231
  msgstr ""
232
- "Wenn sie die Kontakt-Form auf ihrer Webseite plazieren möchten, kopieren und "
233
- "fügen sie diesen shortcode in ihrem/r Beitrag, Seite oder Widget ein:"
234
 
235
- #: contact_form.php:1033
236
- #, php-format
237
  msgid ""
238
- "You can add the Contact Form to your page or post by clicking on %s button "
239
- "in the content edit block using the Visual mode. If the button isn't "
240
- "displayed, please use the shortcode %s or %s where * stands for Contact Form "
241
- "language."
242
  msgstr ""
 
 
243
 
244
- #: contact_form.php:1042
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
245
  msgid ""
246
  "If you leave the fields empty, the messages will be sent to the email "
247
  "address specified during registration."
@@ -249,17 +402,17 @@ msgstr ""
249
  "Wenn sie die Felder leer lassen, wird die Nachricht an die bei der "
250
  "registrierung angegebenen E-Mail Adresse gesendet."
251
 
252
- #: contact_form.php:1045
253
  #, fuzzy
254
  msgid "The user's email address"
255
  msgstr "Benutzer E-Mail Adresse"
256
 
257
- #: contact_form.php:1049
258
  #, fuzzy
259
  msgid "Select a username"
260
  msgstr "Benutzername erstellen"
261
 
262
- #: contact_form.php:1062
263
  #, fuzzy
264
  msgid ""
265
  "Select a username of the person who should get the messages from the contact "
@@ -268,114 +421,105 @@ msgstr ""
268
  "Geben sie den Benutzernamen des Users an, der die Nachrichten der Kontakt-"
269
  "Form erhalten soll."
270
 
271
- #: contact_form.php:1066
272
  #, fuzzy
273
  msgid "Use this email address"
274
  msgstr "Nutzen sie diese E-Mail Adresse"
275
 
276
- #: contact_form.php:1070
277
  #, fuzzy
278
  msgid "Enter the email address for receiving messages"
279
  msgstr ""
280
  "Geben sie die E-Mail Adresse ein, an welche die Nachricht weitergeleitet "
281
  "werden soll."
282
 
283
- #: contact_form.php:1077 contact_form.php:1588 contact_form.php:1797
284
- #: contact_form.php:1903 contact_form.php:3440
285
- msgid "Close"
286
- msgstr ""
287
-
288
- #: contact_form.php:1081
289
  #, fuzzy
290
  msgid "Add department selectbox to the contact form"
291
  msgstr "Füge Abteilungs- Auswahlbox zu der Kontakt-Form:"
292
 
293
- #: contact_form.php:1089 contact_form.php:1597 contact_form.php:1816
294
- #: contact_form.php:2109
295
- msgid "If you upgrade to Pro version all your settings will be saved."
296
- msgstr "Wenn sie auf Pro upgraden werden alle ihre Einstellungen gespeichert"
297
-
298
- #: contact_form.php:1096 contact_form.php:1418 contact_form.php:1602
299
- #: contact_form.php:1823 contact_form.php:2116
300
- msgid "Upgrade to Pro"
301
- msgstr ""
302
-
303
- #: contact_form.php:1104
304
  msgid "Save emails to the database"
305
  msgstr "Speicher E-Mails in die Datenbank"
306
 
307
- #: contact_form.php:1116 contact_form.php:1130 contact_form.php:1137
 
 
308
  msgid "Using"
309
  msgstr "Verwendet"
310
 
311
- #: contact_form.php:1122 contact_form.php:1490 contact_form.php:1531
312
- #: contact_form.php:1566
 
 
313
  msgid "Please activate the appropriate option on"
314
  msgstr ""
315
 
316
- #: contact_form.php:1125 contact_form.php:1493 contact_form.php:1534
317
- #: contact_form.php:1569
 
 
318
  #, fuzzy
319
  msgid "settings page"
320
  msgstr "Die Einstellungs-Seite"
321
 
322
- #: contact_form.php:1131 contact_form.php:1500 contact_form.php:1542
323
- #: contact_form.php:1576
 
 
324
  #, fuzzy
325
  msgid "Activate"
326
  msgstr "Aktiviere captcha"
327
 
328
- #: contact_form.php:1138 contact_form.php:1509 contact_form.php:1548
329
- #: contact_form.php:1581
 
 
330
  msgid "Download"
331
  msgstr "Download"
332
 
333
- #: contact_form.php:1150
334
  msgid "Sending method"
335
  msgstr ""
336
 
337
- #: contact_form.php:1155
338
  msgid "Wp-mail"
339
  msgstr "Wp-mail"
340
 
341
- #: contact_form.php:1157
342
  #, fuzzy
343
  msgid "You can use the Wordpress wp_mail function for mailing"
344
  msgstr "Sie können die wp_mail Funktion für das versenden verwenden."
345
 
346
- #: contact_form.php:1160
347
  msgid "Mail"
348
  msgstr "Mail"
349
 
350
- #: contact_form.php:1162
351
  #, fuzzy
352
  msgid "You can use the PHP mail function for mailing"
353
  msgstr "Sie können die wp_mail Funktion für das versenden verwenden."
354
 
355
- #: contact_form.php:1167
356
  msgid "'FROM' field"
357
  msgstr ""
358
 
359
- #: contact_form.php:1183
360
  msgid "User name"
361
  msgstr "Benutzer Name"
362
 
363
- #: contact_form.php:1185
364
  msgid ""
365
  "The name of the user who fills the form will be used in the field 'From'."
366
  msgstr ""
367
  "Der Name des Benutzers, der das Formular ausfüllt, wird im Feld 'From/Von' "
368
  "verwendt."
369
 
370
- #: contact_form.php:1196 contact_form.php:3147 contact_form.php:3191
371
- msgid "Email"
372
- msgstr "E-Mail"
373
-
374
- #: contact_form.php:1207
375
  msgid "User email"
376
  msgstr "Benutzer E-Mail"
377
 
378
- #: contact_form.php:1209
379
  msgid ""
380
  "The email address of the user who fills the form will be used in the field "
381
  "'From'."
@@ -383,590 +527,530 @@ msgstr ""
383
  "Die E-Mail Adresse des Benutzers, der das Formular ausfüllt, wird im Feld "
384
  "'From/Von' verwendt."
385
 
386
- #: contact_form.php:1218
387
  msgid ""
388
  "If this option is changed, email messages may be moved to the spam folder or "
389
  "email delivery failures may occur."
390
  msgstr ""
391
 
392
- #: contact_form.php:1227
393
  msgid "Required symbol"
394
  msgstr "Benötigtes Symbol"
395
 
396
- #: contact_form.php:1237
397
  msgid "Fields"
398
  msgstr "Felder"
399
 
400
- #: contact_form.php:1238 contact_form.php:1265 contact_form.php:1292
401
- #: contact_form.php:1312 contact_form.php:1351 contact_form.php:1433
 
 
 
 
402
  msgid "Used"
403
  msgstr "Benutzt"
404
 
405
- #: contact_form.php:1239 contact_form.php:1254 contact_form.php:1269
406
- #: contact_form.php:1296 contact_form.php:1316 contact_form.php:1329
407
- #: contact_form.php:1355 contact_form.php:1368 contact_form.php:1392
 
 
 
 
 
408
  msgid "Required"
409
  msgstr "Benötigt"
410
 
411
- #: contact_form.php:1241 contact_form.php:1274 contact_form.php:1334
412
- #: contact_form.php:1373 contact_form.php:1397
 
 
 
413
  msgid "Visible"
414
  msgstr "Sichtbar"
415
 
416
- #: contact_form.php:1242 contact_form.php:1278 contact_form.php:1338
417
- #: contact_form.php:1377 contact_form.php:1401
 
 
 
418
  msgid "Disabled for editing"
419
  msgstr "Bearbeitung ist ausgeschaltet"
420
 
421
- #: contact_form.php:1243 contact_form.php:1302 contact_form.php:1381
422
- #: contact_form.php:1405
 
 
423
  msgid "Field's default value"
424
  msgstr "Standard-Feld-Wert"
425
 
426
- #: contact_form.php:1250
427
  msgid "Department selectbox"
428
  msgstr ""
429
 
430
- #: contact_form.php:1282
431
  msgid "Use User's name as a default value if the user is logged in."
432
  msgstr ""
433
 
434
- #: contact_form.php:1283 contact_form.php:1343
 
435
  msgid ""
436
  "'Visible' and 'Disabled for editing' options will be applied only to logged-"
437
  "in users."
438
  msgstr ""
439
 
440
- #: contact_form.php:1289
441
  msgid "Location selectbox"
442
  msgstr ""
443
 
444
- #: contact_form.php:1342
445
  msgid "Use User's email as a default value if the user is logged in."
446
  msgstr ""
447
 
448
- #: contact_form.php:1426
449
  msgid "Attachment block"
450
  msgstr "Anhang-Block"
451
 
452
- #: contact_form.php:1428
453
  msgid "Users can attach the following file formats"
454
  msgstr "Benutzer können die folgenden Formate anhängen:"
455
 
456
- #: contact_form.php:1446
457
  msgid "Add to the form"
458
  msgstr "Füge in die Form"
459
 
460
- #: contact_form.php:1451
461
  msgid "Tips below the Attachment"
462
  msgstr "Tipps unterhalb des Anhangs"
463
 
464
- #: contact_form.php:1458
465
  msgid "'Send me a copy' block"
466
  msgstr "'Kopie an mich senden' Block"
467
 
468
- #: contact_form.php:1465
469
  msgid "GDPR Compliance"
470
  msgstr ""
471
 
472
- #: contact_form.php:1470
473
  msgid "Link to Privacy Policy Page"
474
  msgstr ""
475
 
476
- #: contact_form.php:1474
477
  msgid "Text for Privacy Policy Link"
478
  msgstr ""
479
 
480
- #: contact_form.php:1502
481
  #, fuzzy
482
  msgid "Activate for network"
483
  msgstr "Geactiveerde plugins"
484
 
485
- #: contact_form.php:1592
486
  msgid "Agreement checkbox"
487
  msgstr "Agreement checkbox"
488
 
489
- #: contact_form.php:1592
490
  msgid "Required checkbox for submitting the form"
491
  msgstr "Benötigte checkbox zur übermittlung des Formulars"
492
 
493
- #: contact_form.php:1593
494
  msgid "Optional checkbox"
495
  msgstr "Optionale checkbox"
496
 
497
- #: contact_form.php:1593
498
  msgid "Optional checkbox, the results of which will be displayed in email"
499
  msgstr "Optionale checkbox, das Ergebnis davon wird in der E-Mail angezeigt"
500
 
501
- #: contact_form.php:1611
502
  msgid "Delete an attachment file from the server after the email is sent"
503
  msgstr "Lösche die Anhang-Datei vom Server nachdem die E-Mail gesendet wurde"
504
 
505
- #: contact_form.php:1617
506
  msgid "Email in HTML format sending"
507
  msgstr "E-Mail im HTML Format"
508
 
509
- #: contact_form.php:1621
510
  msgid "Display additional info in the email"
511
  msgstr "Zeige weitere Informationen in der E-Mail"
512
 
513
- #: contact_form.php:1627
514
  #, fuzzy
515
  msgid "Sent from (IP address)"
516
  msgstr "Gesendet von (IP-Adresse)"
517
 
518
- #: contact_form.php:1627
519
  msgid "Example: Sent from (IP address): 127.0.0.1"
520
  msgstr ""
521
 
522
- #: contact_form.php:1628 contact_form.php:3096 contact_form.php:3098
523
- msgid "Date/Time"
524
- msgstr "Datum/Zeit"
525
-
526
- #: contact_form.php:1628
527
  msgid "Example: Date/Time: August 19, 2013 8:50 pm"
528
  msgstr ""
529
 
530
- #: contact_form.php:1629 contact_form.php:3102 contact_form.php:3104
531
- msgid "Sent from (referer)"
532
- msgstr "Gesendet von (referer)"
533
-
534
- #: contact_form.php:1629
535
  msgid ""
536
  "Example: Sent from (referer): https://bestwebsoft.com/contacts/contact-us/"
537
  msgstr ""
538
 
539
- #: contact_form.php:1630 contact_form.php:3108 contact_form.php:3110
540
- msgid "Using (user agent)"
541
- msgstr "Verwendet (user agent)"
542
-
543
- #: contact_form.php:1630
544
  msgid ""
545
  "Example: Using (user agent): Mozilla/5.0 (Windows NT 6.2; WOW64) "
546
  "AppleWebKit/537.36 (KHTML, like Gecko) Chrome/28.0.1500.95 Safari/537.36"
547
  msgstr ""
548
 
549
- #: contact_form.php:1635
550
  msgid "Language settings for the field names in the form"
551
  msgstr "Benutzer-Einstellungen für die Feld-Namen in der Form"
552
 
553
- #: contact_form.php:1644
554
  msgid "Add a language"
555
  msgstr "Hinzufügen einer Sprache"
556
 
557
- #: contact_form.php:1648
558
  msgid "Change the names of the contact form fields and error messages"
559
  msgstr "Verändere die Namen der Kontakt-Form-Felder und Fehlermeldungen"
560
 
561
- #: contact_form.php:1653 contact_form.php:1751 contact_form.php:1883
562
- #: contact_form.php:2023 contact_form.php:2028 contact_form.php:2038
563
- #: contact_form.php:2043 contact_form.php:2048 contact_form.php:2053
564
- #: contact_form.php:2063 contact_form.php:2068 contact_form.php:2077
565
- #: contact_form.php:2091 contact_form.php:2096 contact_form.php:2101
566
  msgid "Default"
567
  msgstr "Standard"
568
 
569
- #: contact_form.php:1666 contact_form.php:1705
 
570
  msgid "click to expand/hide the list"
571
  msgstr "Klick zum erweitern/verstecken der Liste"
572
 
573
- #: contact_form.php:1675 contact_form.php:1714
 
574
  msgid "Tips below the Attachment block"
575
  msgstr "Tipps unterhalb des Anhang-Blocks"
576
 
577
- #: contact_form.php:1679 contact_form.php:1718
 
578
  msgid "Error message for the Name field"
579
  msgstr "Fehlermeldung für das Namensfeld"
580
 
581
- #: contact_form.php:1680 contact_form.php:1719
 
582
  msgid "Error message for the Address field"
583
  msgstr "Fehlermeldung für das Adress-Feld"
584
 
585
- #: contact_form.php:1681 contact_form.php:1720
 
586
  msgid "Error message for the Email field"
587
  msgstr "Fehlermeldung für das E-Mail-Feld"
588
 
589
- #: contact_form.php:1682 contact_form.php:1721
 
590
  msgid "Error message for the Phone field"
591
  msgstr "Fehlermeldung für das Telefonnummer-Feld"
592
 
593
- #: contact_form.php:1683 contact_form.php:1722
 
594
  msgid "Error message for the Subject field"
595
  msgstr "Fehlermeldung für das Betreff-Feld"
596
 
597
- #: contact_form.php:1684 contact_form.php:1723
 
598
  msgid "Error message for the Message field"
599
  msgstr "Fehlermeldung für das Inhalts-Feld"
600
 
601
- #: contact_form.php:1685 contact_form.php:1724
 
602
  msgid "Error message about the file type for the Attachment field"
603
  msgstr "Fehlermeldung über den Datei-Typ für das Anhang-Feld"
604
 
605
- #: contact_form.php:1686 contact_form.php:1725
 
606
  msgid ""
607
  "Error message while uploading a file for the Attachment field to the server"
608
  msgstr ""
609
  "Fehlermeldung während des hochladens einer Datei zum Server für das Anhang-"
610
  "Feld"
611
 
612
- #: contact_form.php:1687 contact_form.php:1726
 
613
  msgid "Error message while moving the file for the Attachment field"
614
  msgstr "Fehlermeldung während der Verschiebung für das Anhang-Feld"
615
 
616
- #: contact_form.php:1688 contact_form.php:1727
 
617
  msgid "Error message when file size limit for the Attachment field is exceeded"
618
  msgstr ""
619
  "Fehlermeldung wenn das Datei-Größen-Limit für das Anhang-Feld überschritten "
620
  "wird"
621
 
622
- #: contact_form.php:1689 contact_form.php:1728
 
623
  msgid "Error message for the Captcha field"
624
  msgstr "Fehlermeldung für das Capatcha-Feld"
625
 
626
- #: contact_form.php:1690 contact_form.php:1729
 
627
  msgid "Error message for the whole form"
628
  msgstr "Fehlermeldung für das ganze Formular"
629
 
630
- #: contact_form.php:1693 contact_form.php:1695 contact_form.php:1732
631
- #: contact_form.php:1734 contact_form.php:1766 contact_form.php:1768
632
- #: contact_form.php:1780 contact_form.php:1782 contact_form.php:3530
633
- #: contact_form.php:3532
634
- msgid "Use shortcode"
635
- msgstr "Benutze shortcode"
636
-
637
- #: contact_form.php:1693 contact_form.php:1695 contact_form.php:1732
638
- #: contact_form.php:1734 contact_form.php:1766 contact_form.php:1768
639
- #: contact_form.php:1780 contact_form.php:1782 contact_form.php:3530
640
- #: contact_form.php:3532
641
- msgid "for this language"
642
- msgstr "für diese Sprache"
643
-
644
- #: contact_form.php:1742
645
  #, fuzzy
646
  msgid "Use the changed names of the contact form fields in the email"
647
  msgstr "Verändere die Namen der Kontakt-Form-Felder und Fehlermeldungen"
648
 
649
- #: contact_form.php:1748
650
  msgid "Action after email is sent"
651
  msgstr "Handlung nachdem die E-Mail gesendet wurde"
652
 
653
- #: contact_form.php:1750
654
  msgid "Display text"
655
  msgstr "Zeige Text"
656
 
657
- #: contact_form.php:1764 contact_form.php:1778
 
658
  msgid "Text"
659
  msgstr "Text"
660
 
661
- #: contact_form.php:1789
662
  msgid "Redirect to the page"
663
  msgstr "Umleiten zur Seite"
664
 
665
- #: contact_form.php:1790
666
  msgid "Url"
667
  msgstr "Url"
668
 
669
- #: contact_form.php:1801
670
- msgid "Add field 'Reply-To' to the email header"
671
- msgstr ""
672
-
673
- #: contact_form.php:1803
674
- msgid "Field 'Reply-To' will be initialized by user email"
675
- msgstr ""
676
-
677
- #: contact_form.php:1807
678
- msgid "Auto Response"
679
- msgstr ""
680
-
681
- #: contact_form.php:1811
682
  #, php-format
683
  msgid ""
684
- "You can use %%NAME%% to display data from the email field and %%MESSAGE%% to "
685
- "display data from the Message field, as well as %%SITENAME%% to display blog "
686
- "name."
687
  msgstr ""
688
 
689
- #: contact_form.php:1833 contact_form.php:2375
690
- msgid "Save Changes"
691
- msgstr "Speichere Änderungen"
692
-
693
- #: contact_form.php:1846
694
- #, php-format
695
- msgid ""
696
- "Please enable JavaScript to change '%s', '%s' options and for fields sorting."
697
  msgstr ""
698
 
699
- #: contact_form.php:1846 contact_form.php:1855
700
- msgid "Form layout"
 
 
 
 
 
 
 
701
  msgstr ""
702
 
703
- #: contact_form.php:1846 contact_form.php:1867
 
704
  #, fuzzy
705
  msgid "Submit position"
706
  msgstr "Sende-Schaltfläche"
707
 
708
- #: contact_form.php:1859
 
 
 
 
 
 
 
 
 
 
709
  msgid "One column"
710
  msgstr ""
711
 
712
- #: contact_form.php:1862
713
  msgid "Two columns"
714
  msgstr ""
715
 
716
- #: contact_form.php:1871 contact_form.php:1911 contact_form.php:1929
717
- #: contact_form.php:1944
 
 
718
  msgid "Left"
719
  msgstr ""
720
 
721
- #: contact_form.php:1874 contact_form.php:1917 contact_form.php:1932
722
- #: contact_form.php:1950
 
 
723
  msgid "Right"
724
  msgstr ""
725
 
726
- #: contact_form.php:1879
727
  msgid "Width"
728
  msgstr ""
729
 
730
- #: contact_form.php:1887
731
  msgid "Custom"
732
  msgstr ""
733
 
734
- #: contact_form.php:1894
735
  msgid "px"
736
  msgstr ""
737
 
738
- #: contact_form.php:1907
739
  msgid "Form align"
740
  msgstr ""
741
 
742
- #: contact_form.php:1914 contact_form.php:1947
 
743
  msgid "Center"
744
  msgstr ""
745
 
746
- #: contact_form.php:1922
747
- #, fuzzy
748
- msgid "Labels position"
749
- msgstr "Sende-Schaltfläche"
750
-
751
- #: contact_form.php:1926
752
  msgid "Top"
753
  msgstr ""
754
 
755
- #: contact_form.php:1935
756
  msgid "Bottom"
757
  msgstr ""
758
 
759
- #: contact_form.php:1940
760
- msgid "Labels align"
761
- msgstr ""
762
-
763
- #: contact_form.php:1955
764
  msgid "Errors output"
765
  msgstr "Fehler-Ausgabe"
766
 
767
- #: contact_form.php:1958
768
  msgid "Display error messages"
769
  msgstr "Zeige Fehlermeldungen"
770
 
771
- #: contact_form.php:1959
772
  msgid "Color of the input field errors."
773
  msgstr "Farbe der Eingabe-Fehld-Fehler"
774
 
775
- #: contact_form.php:1960
776
  msgid "Display error messages & color of the input field errors"
777
  msgstr "Zeige Fehlermeldungen & Farbe zu den Eingabe-Feldern"
778
 
779
- #: contact_form.php:1965
780
  msgid "Add placeholder to the input blocks"
781
  msgstr "Füge Platzhalter an die Eingabe-Blöcke"
782
 
783
- #: contact_form.php:1971
784
- msgid "Add tooltips"
785
- msgstr "Füge Tooltips hinzu"
786
-
787
- #: contact_form.php:1985
788
  msgid "Email address"
789
  msgstr "E-Mail Adresse:"
790
 
791
- #: contact_form.php:1990 contact_form.php:3163 contact_form.php:3204
792
- msgid "Phone Number"
793
- msgstr "Telefonnummer:"
794
-
795
- #: contact_form.php:2016
796
- msgid "Style options"
797
- msgstr "Stil-Optionen"
798
-
799
- #: contact_form.php:2020
800
  msgid "Text color"
801
  msgstr "Text -Farbe"
802
 
803
- #: contact_form.php:2025
804
  msgid "Label text color"
805
  msgstr "Beschriftungs-Text -Farbe"
806
 
807
- #: contact_form.php:2030
808
  msgid "Placeholder color"
809
  msgstr "Platzhalter -Farbe"
810
 
811
- #: contact_form.php:2035
812
  msgid "Errors color"
813
  msgstr "Fehler -Farbe"
814
 
815
- #: contact_form.php:2040
816
  msgid "Error text color"
817
  msgstr "Fehler-Text -Farbe"
818
 
819
- #: contact_form.php:2045
820
  msgid "Background color of the input field errors"
821
  msgstr "Hintergrund -Farbe von den Eingabefeld-Fehlern"
822
 
823
- #: contact_form.php:2050
824
  msgid "Border color of the input field errors"
825
  msgstr "Rand -Farbe von den Eingabefeld-Fehlern"
826
 
827
- #: contact_form.php:2055
828
  msgid "Placeholder color of the input field errors"
829
  msgstr "Platzhalter -Farbe von den Eingabefeld-Fehlern"
830
 
831
- #: contact_form.php:2060
832
  msgid "Input fields"
833
  msgstr "Eingabe-Felder"
834
 
835
- #: contact_form.php:2065
836
  msgid "Input fields background color"
837
  msgstr "Eingabefelder - Hintergrundfarbe"
838
 
839
- #: contact_form.php:2070
840
  msgid "Text fields color"
841
  msgstr "Text-Felder -Farbe"
842
 
843
- #: contact_form.php:2074
844
  msgid "Border width in px, numbers only"
845
  msgstr "Rand-Breite in px, nur Zahlen"
846
 
847
- #: contact_form.php:2079 contact_form.php:2103
 
848
  msgid "Border color"
849
  msgstr "Rand -Farbe"
850
 
851
- #: contact_form.php:2084
852
  msgid "Submit button"
853
  msgstr "Sende-Schaltfläche"
854
 
855
- #: contact_form.php:2088
856
  msgid "Width in px, numbers only"
857
  msgstr "Breite in px, nur Zahlen"
858
 
859
- #: contact_form.php:2093
860
  msgid "Button color"
861
  msgstr "Schaltflächen -Farbe"
862
 
863
- #: contact_form.php:2098
864
  msgid "Button text color"
865
  msgstr "Schaltflächen-Text -Farbe"
866
 
867
- #: contact_form.php:2127
868
  #, fuzzy
869
  msgid "Contact Form | Preview"
870
  msgstr "Kontakt-Form Pro | Vorschau"
871
 
872
- #: contact_form.php:2128
873
  msgid "Drag the necessary field to sort fields."
874
  msgstr ""
875
 
876
- #: contact_form.php:2364
877
- #, fuzzy
878
- msgid ""
879
- "If you would like to add the Contact Form to your website, just copy and "
880
- "paste this shortcode to your post or page or widget"
881
  msgstr ""
882
- "Wenn sie die Kontakt-Form auf ihrer Webseite plazieren möchten, kopieren und "
883
- "fügen sie diesen shortcode in ihrem/r Beitrag, Seite oder Widget ein:"
884
-
885
- #: contact_form.php:2486
886
- msgid "Sorry, email message could not be delivered."
887
- msgstr "Verzeihung, die Nachricht konnte nicht gesendet werden."
888
-
889
- #: contact_form.php:3090 contact_form.php:3092
890
- msgid "Sent from (ip address)"
891
- msgstr "Gesendet von (IP-Adresse)"
892
-
893
- #: contact_form.php:3120
894
- msgid "Contact from"
895
- msgstr "Kontakt von"
896
-
897
- #: contact_form.php:3125 contact_form.php:3174
898
- msgid "Site"
899
- msgstr "Webseite"
900
 
901
- #: contact_form.php:3286
902
- msgid ""
903
- "If you can see this MIME, it means that the MIME type is not supported by "
904
- "your email client!"
905
  msgstr ""
906
- "Wenn sie dieses MIME sehen, unterstützt Ihr Browser diesen MIME Typ nicht!"
907
-
908
- #: contact_form.php:3358
909
- msgid "FAQ"
910
- msgstr "Häufig gestellte Fragen (FAQ)"
911
-
912
- #: contact_form.php:3359
913
- msgid "Support"
914
- msgstr "Support"
915
-
916
- #: contact_form.php:3408
917
- msgid "Are you sure that you want to delete this language data?"
918
- msgstr "Sind sie sicher, dass sie diese Sprach-Daten löschen wollen?"
919
-
920
- #: contact_form.php:3431
921
- #, fuzzy
922
- msgid "Add multiple forms"
923
- msgstr "Füge in die Form"
924
 
925
- #: contact_form.php:3431
926
- msgid ""
927
- "Install Contact Form Multi plugin to create unlimited number of contact "
928
- "forms."
929
- msgstr ""
930
 
931
- #: contact_form.php:3436
932
  #, fuzzy
933
- msgid "Learn more"
934
- msgstr "Lees verder"
935
-
936
- #: contact_form.php:3494
937
- msgid "Error"
938
- msgstr ""
939
 
940
- #: contact_form.php:3494 contact_form.php:3496
941
- msgid "Illegal language code"
942
- msgstr ""
943
 
944
- #: contact_form.php:3681
945
- msgid "Close notice"
946
- msgstr ""
947
 
948
- #: contact_form.php:3686
949
  #, fuzzy
950
- msgid "allows to store your messages to the database."
951
- msgstr "Speicher E-Mails in die Datenbank"
952
 
953
- #: contact_form.php:3687
954
- msgid "Manage messages that have been sent from your website."
955
- msgstr ""
956
 
957
- #: contact_form.php:3690
958
- msgid "Learn More"
959
- msgstr ""
960
-
961
- #: contact_form.php:3750
962
  #, fuzzy
963
- msgid "Contact form"
964
- msgstr "Kontakt von"
965
 
966
- #: contact_form.php:3763 contact_form.php:3773
967
  #, fuzzy
968
- msgid "Language"
969
- msgstr "Hinzufügen einer Sprache"
 
 
 
 
970
 
971
  #~ msgid "Example: Sent from (IP address):\t127.0.0.1"
972
  #~ msgstr "Beispiel: Gesendet von (IP-Adresse):\t127.0.0.1"
2
  msgstr ""
3
  "Project-Id-Version: Contact Form\n"
4
  "Report-Msgid-Bugs-To: \n"
5
+ "POT-Creation-Date: 2019-02-25 16:26+0200\n"
6
+ "PO-Revision-Date: 2019-02-25 16:26+0200\n"
7
  "Last-Translator: plugin@bestwebsoft.com <plugin@bestwebsoft.com>\n"
8
  "Language-Team: Alex <private183@web.de>\n"
9
  "Language: de_DE\n"
17
  "Plural-Forms: nplurals=2; plural=(n != 1);\n"
18
  "X-Poedit-SearchPath-0: .\n"
19
 
20
+ #: contact_form.php:39 contact_form.php:47 contact_form.php:647
21
+ #: includes/class-cntctfrm-settings.php:425
22
  msgid "Contact Form Settings"
23
  msgstr "Kontakt-Form Einstellungen"
24
 
25
+ #: contact_form.php:48 contact_form.php:1619 contact_form.php:1633
26
+ #: includes/class-cntctfrm-settings.php:27
27
+ msgid "Settings"
28
+ msgstr "Einstellungen"
29
+
30
+ #: contact_form.php:63 includes/class-cntctfrm-settings.php:483
31
+ #: includes/class-cntctfrm-settings.php:817
32
+ #: includes/class-cntctfrm-settings.php:998
33
+ #: includes/class-cntctfrm-settings.php:1513
34
+ msgid "Upgrade to Pro"
35
+ msgstr ""
36
 
37
+ #: contact_form.php:350 contact_form.php:1410 contact_form.php:1456
38
+ #: includes/class-cntctfrm-settings.php:574
39
+ #: includes/class-cntctfrm-settings.php:664
40
+ #: includes/class-cntctfrm-settings.php:1064
41
+ #: includes/class-cntctfrm-settings.php:1103
42
+ #: includes/class-cntctfrm-settings.php:1344
43
  msgid "Name"
44
  msgstr "Name"
45
 
46
+ #: contact_form.php:351 contact_form.php:1417 contact_form.php:1462
47
+ #: includes/class-cntctfrm-settings.php:711
48
+ #: includes/class-cntctfrm-settings.php:1065
49
+ #: includes/class-cntctfrm-settings.php:1104
50
+ #: includes/class-cntctfrm-settings.php:1349
51
  msgid "Address"
52
  msgstr "Adresse: "
53
 
54
+ #: contact_form.php:352 includes/class-cntctfrm-settings.php:727
55
+ #: includes/class-cntctfrm-settings.php:1066
56
+ #: includes/class-cntctfrm-settings.php:1105
57
  msgid "Email Address"
58
  msgstr "E-Mail Adresse:"
59
 
60
+ #: contact_form.php:353 includes/class-cntctfrm-settings.php:747
61
+ #: includes/class-cntctfrm-settings.php:1067
62
+ #: includes/class-cntctfrm-settings.php:1106
63
  msgid "Phone number"
64
  msgstr "Telefonnummer:"
65
 
66
+ #: contact_form.php:354 contact_form.php:1428 contact_form.php:1471
67
+ #: includes/class-cntctfrm-settings.php:763
68
+ #: includes/class-cntctfrm-settings.php:1068
69
+ #: includes/class-cntctfrm-settings.php:1107
70
+ #: includes/class-cntctfrm-settings.php:1364
71
  msgid "Subject"
72
  msgstr "Betreff"
73
 
74
+ #: contact_form.php:355 contact_form.php:1433 contact_form.php:1475
75
+ #: includes/class-cntctfrm-settings.php:787
76
+ #: includes/class-cntctfrm-settings.php:1069
77
+ #: includes/class-cntctfrm-settings.php:1108
78
+ #: includes/class-cntctfrm-settings.php:1368
79
  msgid "Message"
80
  msgstr "Inhalt"
81
 
82
+ #: contact_form.php:356 includes/class-cntctfrm-settings.php:1070
83
+ #: includes/class-cntctfrm-settings.php:1109
84
+ #: includes/class-cntctfrm-settings.php:1373
85
  msgid "Attachment"
86
  msgstr "Anhang:"
87
 
88
+ #: contact_form.php:357
89
  msgid ""
90
  "Supported file types: HTML, TXT, CSS, GIF, PNG, JPEG, JPG, TIFF, BMP, AI, "
91
  "EPS, PS, CSV, RTF, PDF, DOC, DOCX, XLS, XLSX, ZIP, RAR, WAV, MP3, PPT."
93
  "Unterstützte Dateitypen: HTML, TXT, CSS, GIF, PNG, JPEG, JPG, TIFF, BMP, AI, "
94
  "EPS, PS, CSV, RTF, PDF, DOC, DOCX, XLS, XLSX, ZIP, RAR, WAV, MP3, PPT."
95
 
96
+ #: contact_form.php:358 includes/class-cntctfrm-settings.php:1072
97
+ #: includes/class-cntctfrm-settings.php:1111
98
  msgid "Send me a copy"
99
  msgstr "Kopie an mich senden"
100
 
101
+ #: contact_form.php:359 includes/class-cntctfrm-settings.php:1073
102
+ #: includes/class-cntctfrm-settings.php:1112
103
  msgid "I consent to having this site collect my personal data."
104
  msgstr ""
105
 
106
+ #: contact_form.php:360 includes/class-cntctfrm-settings.php:1074
107
+ #: includes/class-cntctfrm-settings.php:1113
108
  msgid "Submit"
109
  msgstr "Senden"
110
 
111
+ #: contact_form.php:361
112
  msgid "Your name is required."
113
  msgstr "Dein Name wird benötigt."
114
 
115
+ #: contact_form.php:362
116
  msgid "Address is required."
117
  msgstr "Adresse wird benötigt"
118
 
119
+ #: contact_form.php:363
120
  msgid "A valid email address is required."
121
  msgstr "Eine gültige E-Mail Adresse wird benötigt."
122
 
123
+ #: contact_form.php:364
124
  msgid "Phone number is required."
125
  msgstr "Deine Telefonnummer wird benötigt."
126
 
127
+ #: contact_form.php:365
128
  msgid "Subject is required."
129
  msgstr "Ein Betreff wird benötigt."
130
 
131
+ #: contact_form.php:366
132
  msgid "Message text is required."
133
  msgstr "Ein Inhalt wird benötigt."
134
 
135
+ #: contact_form.php:367
136
  msgid "File format is not valid."
137
  msgstr "Datei Format ist nicht erlaubt."
138
 
139
+ #: contact_form.php:368
140
  msgid "File upload error."
141
  msgstr "Datei-Übertragungsfehler"
142
 
143
+ #: contact_form.php:369
144
  msgid "The file could not be uploaded."
145
  msgstr "Die Datei konnte nicht hochgeladen werden."
146
 
147
+ #: contact_form.php:370
148
  msgid "This file is too large."
149
  msgstr "Diese Datei ist zu groß."
150
 
151
+ #: contact_form.php:371
152
  msgid "Please fill out the CAPTCHA."
153
  msgstr "Bitte CAPTCHA ausfüllen."
154
 
155
+ #: contact_form.php:372
156
  msgid "Please make corrections below and try again."
157
  msgstr "Bitte korrigiere die Fehler unten und versuche es erneut."
158
 
159
+ #: contact_form.php:374
160
  msgid "Thank you for contacting us."
161
  msgstr "Danke für Ihre Nachricht."
162
 
163
+ #: contact_form.php:651
164
+ msgid "NEW_FORM"
165
+ msgstr ""
166
 
167
+ #: contact_form.php:652
168
  msgid ""
169
+ "If you want to create multiple contact forms, please install the Contact "
170
+ "Form Multi plugin."
171
  msgstr ""
172
 
173
+ #: contact_form.php:657
174
  msgid ""
175
+ "Contact Form plugin doesn't support your current version of Contact Form "
176
+ "Multi plugin. Please update Contact Form Multi plugin to version 1.2.6 or "
177
+ "higher."
178
  msgstr ""
 
 
179
 
180
+ #: contact_form.php:759
181
+ msgid "Sorry, email message could not be delivered."
182
+ msgstr "Verzeihung, die Nachricht konnte nicht gesendet werden."
 
183
 
184
+ #: contact_form.php:1366 contact_form.php:1368
185
+ msgid "Sent from (ip address)"
186
+ msgstr "Gesendet von (IP-Adresse)"
187
+
188
+ #: contact_form.php:1372 contact_form.php:1374
189
+ #: includes/class-cntctfrm-settings.php:1024
190
+ msgid "Date/Time"
191
+ msgstr "Datum/Zeit"
192
+
193
+ #: contact_form.php:1378 contact_form.php:1380
194
+ #: includes/class-cntctfrm-settings.php:1025
195
+ msgid "Sent from (referer)"
196
+ msgstr "Gesendet von (referer)"
197
+
198
+ #: contact_form.php:1384 contact_form.php:1386
199
+ #: includes/class-cntctfrm-settings.php:1026
200
+ msgid "Using (user agent)"
201
+ msgstr "Verwendet (user agent)"
202
+
203
+ #: contact_form.php:1396
204
+ msgid "Contact from"
205
+ msgstr "Kontakt von"
206
+
207
+ #: contact_form.php:1401 contact_form.php:1450
208
+ msgid "Site"
209
+ msgstr "Webseite"
210
+
211
+ #: contact_form.php:1423 contact_form.php:1467
212
+ #: includes/class-cntctfrm-settings.php:598
213
+ msgid "Email"
214
+ msgstr "E-Mail"
215
+
216
+ #: contact_form.php:1439 contact_form.php:1480
217
+ #: includes/class-cntctfrm-settings.php:1359
218
+ msgid "Phone Number"
219
+ msgstr "Telefonnummer:"
220
+
221
+ #: contact_form.php:1562
222
+ msgid ""
223
+ "If you can see this MIME, it means that the MIME type is not supported by "
224
+ "your email client!"
225
+ msgstr ""
226
+ "Wenn sie dieses MIME sehen, unterstützt Ihr Browser diesen MIME Typ nicht!"
227
+
228
+ #: contact_form.php:1634
229
+ msgid "FAQ"
230
+ msgstr "Häufig gestellte Fragen (FAQ)"
231
+
232
+ #: contact_form.php:1635
233
+ msgid "Support"
234
+ msgstr "Support"
235
+
236
+ #: contact_form.php:1684
237
+ msgid "Are you sure that you want to delete this language data?"
238
+ msgstr "Sind sie sicher, dass sie diese Sprach-Daten löschen wollen?"
239
+
240
+ #: contact_form.php:1706
241
  #, fuzzy
242
+ msgid "Add multiple forms"
243
+ msgstr "Füge in die Form"
244
+
245
+ #: contact_form.php:1706
246
  msgid ""
247
+ "Install Contact Form Multi plugin to create unlimited number of contact "
248
+ "forms."
249
  msgstr ""
 
 
250
 
251
+ #: contact_form.php:1711
252
  #, fuzzy
253
+ msgid "Learn more"
254
+ msgstr "Lees verder"
255
+
256
+ #: contact_form.php:1715 includes/class-cntctfrm-settings.php:469
257
+ #: includes/class-cntctfrm-settings.php:987
258
+ #: includes/class-cntctfrm-settings.php:1272
259
+ msgid "Close"
260
  msgstr ""
 
 
261
 
262
+ #: contact_form.php:1769
263
+ msgid "Error"
264
+ msgstr ""
265
+
266
+ #: contact_form.php:1769 contact_form.php:1771
267
+ msgid "Illegal language code"
268
+ msgstr ""
269
+
270
+ #: contact_form.php:1805 contact_form.php:1807
271
+ #: includes/class-cntctfrm-settings.php:1089
272
+ #: includes/class-cntctfrm-settings.php:1091
273
+ #: includes/class-cntctfrm-settings.php:1128
274
+ #: includes/class-cntctfrm-settings.php:1130
275
+ #: includes/class-cntctfrm-settings.php:1162
276
+ #: includes/class-cntctfrm-settings.php:1164
277
+ #: includes/class-cntctfrm-settings.php:1176
278
+ #: includes/class-cntctfrm-settings.php:1178
279
+ msgid "Use shortcode"
280
+ msgstr "Benutze shortcode"
281
+
282
+ #: contact_form.php:1805 contact_form.php:1807
283
+ #: includes/class-cntctfrm-settings.php:1089
284
+ #: includes/class-cntctfrm-settings.php:1091
285
+ #: includes/class-cntctfrm-settings.php:1128
286
+ #: includes/class-cntctfrm-settings.php:1130
287
+ #: includes/class-cntctfrm-settings.php:1162
288
+ #: includes/class-cntctfrm-settings.php:1164
289
+ #: includes/class-cntctfrm-settings.php:1176
290
+ #: includes/class-cntctfrm-settings.php:1178
291
+ msgid "for this language"
292
+ msgstr "für diese Sprache"
293
+
294
+ #: contact_form.php:1955
295
+ msgid "Close notice"
296
+ msgstr ""
297
+
298
+ #: contact_form.php:1960
299
  #, fuzzy
300
+ msgid "allows to store your messages to the database."
301
+ msgstr "Speicher E-Mails in die Datenbank"
302
 
303
+ #: contact_form.php:1961
304
+ msgid "Manage messages that have been sent from your website."
305
  msgstr ""
306
 
307
+ #: contact_form.php:1964
308
+ msgid "Learn More"
309
  msgstr ""
310
 
311
+ #: contact_form.php:2024
312
+ #, fuzzy
313
+ msgid "Contact form"
314
+ msgstr "Kontakt von"
315
 
316
+ #: contact_form.php:2037 contact_form.php:2047
317
  #, fuzzy
318
+ msgid "Language"
319
+ msgstr "Hinzufügen einer Sprache"
320
 
321
+ #: includes/class-cntctfrm-settings.php:28
322
+ #: includes/class-cntctfrm-settings.php:546
323
+ msgid "Additional Settings"
324
+ msgstr ""
325
+
326
+ #: includes/class-cntctfrm-settings.php:29
327
+ #: includes/class-cntctfrm-settings.php:1198
328
  msgid "Appearance"
329
  msgstr ""
330
 
331
+ #: includes/class-cntctfrm-settings.php:30
332
+ msgid "Misc"
333
  msgstr ""
334
 
335
+ #: includes/class-cntctfrm-settings.php:31
336
+ msgid "License Key"
337
+ msgstr ""
338
 
339
+ #: includes/class-cntctfrm-settings.php:32
340
+ msgid "Custom Code"
341
+ msgstr ""
 
342
 
343
+ #: includes/class-cntctfrm-settings.php:99
344
+ msgid "Please enable JavaScript in your browser."
345
  msgstr ""
346
 
347
+ #: includes/class-cntctfrm-settings.php:101
348
+ #, php-format
349
  msgid ""
350
+ "Contact Form plugin requires PHP %s or higher. Please contact your hosting "
351
+ "provider to upgrade PHP version."
352
  msgstr ""
353
 
354
+ #: includes/class-cntctfrm-settings.php:347
 
355
  msgid ""
356
+ "Email 'FROM' field option was changed, which may cause email messages being "
357
+ "moved to the spam folder or email delivery failures."
358
  msgstr ""
 
 
359
 
360
+ #: includes/class-cntctfrm-settings.php:357
 
361
  msgid ""
362
+ "If the 'Redirect to page' option is selected then the URL field should be in "
363
+ "the following format"
 
 
364
  msgstr ""
365
+ "Wenn die 'Redirect to page/Umleiten zur Seite' Option verwendet wird, dann "
366
+ "sollte das Feld URL in folgendem Format sein"
367
 
368
+ #: includes/class-cntctfrm-settings.php:364
369
+ #, fuzzy
370
+ msgid "Such user does not exist."
371
+ msgstr "Dieser User exestiert nicht. Einstellungen werden nicht gespeichert."
372
+
373
+ #: includes/class-cntctfrm-settings.php:374
374
+ #, fuzzy
375
+ msgid ""
376
+ "Please enter a valid email address in the 'Use this email address' field."
377
+ msgstr ""
378
+ "Bitte geben sie eine gültige Email Adresse in das 'FROM/VON' Feld ein. "
379
+ "Einstellungen werden nicht gespeichert."
380
+
381
+ #: includes/class-cntctfrm-settings.php:382
382
+ #, fuzzy
383
+ msgid "Please enter a valid email address in the 'FROM' field."
384
+ msgstr ""
385
+ "Bitte geben sie eine gültige Email Adresse in das 'FROM/VON' Feld ein. "
386
+ "Einstellungen werden nicht gespeichert."
387
+
388
+ #: includes/class-cntctfrm-settings.php:402
389
+ msgid "Settings saved."
390
+ msgstr "Einstellungen gespeichert."
391
+
392
+ #: includes/class-cntctfrm-settings.php:404
393
+ #, fuzzy
394
+ msgid "Settings are not saved."
395
+ msgstr "Einstellungen gespeichert."
396
+
397
+ #: includes/class-cntctfrm-settings.php:429
398
  msgid ""
399
  "If you leave the fields empty, the messages will be sent to the email "
400
  "address specified during registration."
402
  "Wenn sie die Felder leer lassen, wird die Nachricht an die bei der "
403
  "registrierung angegebenen E-Mail Adresse gesendet."
404
 
405
+ #: includes/class-cntctfrm-settings.php:432
406
  #, fuzzy
407
  msgid "The user's email address"
408
  msgstr "Benutzer E-Mail Adresse"
409
 
410
+ #: includes/class-cntctfrm-settings.php:437
411
  #, fuzzy
412
  msgid "Select a username"
413
  msgstr "Benutzername erstellen"
414
 
415
+ #: includes/class-cntctfrm-settings.php:450
416
  #, fuzzy
417
  msgid ""
418
  "Select a username of the person who should get the messages from the contact "
421
  "Geben sie den Benutzernamen des Users an, der die Nachrichten der Kontakt-"
422
  "Form erhalten soll."
423
 
424
+ #: includes/class-cntctfrm-settings.php:455
425
  #, fuzzy
426
  msgid "Use this email address"
427
  msgstr "Nutzen sie diese E-Mail Adresse"
428
 
429
+ #: includes/class-cntctfrm-settings.php:460
430
  #, fuzzy
431
  msgid "Enter the email address for receiving messages"
432
  msgstr ""
433
  "Geben sie die E-Mail Adresse ein, an welche die Nachricht weitergeleitet "
434
  "werden soll."
435
 
436
+ #: includes/class-cntctfrm-settings.php:473
 
 
 
 
 
437
  #, fuzzy
438
  msgid "Add department selectbox to the contact form"
439
  msgstr "Füge Abteilungs- Auswahlbox zu der Kontakt-Form:"
440
 
441
+ #: includes/class-cntctfrm-settings.php:492
 
 
 
 
 
 
 
 
 
 
442
  msgid "Save emails to the database"
443
  msgstr "Speicher E-Mails in die Datenbank"
444
 
445
+ #: includes/class-cntctfrm-settings.php:504
446
+ #: includes/class-cntctfrm-settings.php:518
447
+ #: includes/class-cntctfrm-settings.php:525
448
  msgid "Using"
449
  msgstr "Verwendet"
450
 
451
+ #: includes/class-cntctfrm-settings.php:510
452
+ #: includes/class-cntctfrm-settings.php:889
453
+ #: includes/class-cntctfrm-settings.php:930
454
+ #: includes/class-cntctfrm-settings.php:965
455
  msgid "Please activate the appropriate option on"
456
  msgstr ""
457
 
458
+ #: includes/class-cntctfrm-settings.php:513
459
+ #: includes/class-cntctfrm-settings.php:892
460
+ #: includes/class-cntctfrm-settings.php:933
461
+ #: includes/class-cntctfrm-settings.php:968
462
  #, fuzzy
463
  msgid "settings page"
464
  msgstr "Die Einstellungs-Seite"
465
 
466
+ #: includes/class-cntctfrm-settings.php:519
467
+ #: includes/class-cntctfrm-settings.php:899
468
+ #: includes/class-cntctfrm-settings.php:941
469
+ #: includes/class-cntctfrm-settings.php:975
470
  #, fuzzy
471
  msgid "Activate"
472
  msgstr "Aktiviere captcha"
473
 
474
+ #: includes/class-cntctfrm-settings.php:526
475
+ #: includes/class-cntctfrm-settings.php:908
476
+ #: includes/class-cntctfrm-settings.php:947
477
+ #: includes/class-cntctfrm-settings.php:980
478
  msgid "Download"
479
  msgstr "Download"
480
 
481
+ #: includes/class-cntctfrm-settings.php:551
482
  msgid "Sending method"
483
  msgstr ""
484
 
485
+ #: includes/class-cntctfrm-settings.php:556
486
  msgid "Wp-mail"
487
  msgstr "Wp-mail"
488
 
489
+ #: includes/class-cntctfrm-settings.php:557
490
  #, fuzzy
491
  msgid "You can use the Wordpress wp_mail function for mailing"
492
  msgstr "Sie können die wp_mail Funktion für das versenden verwenden."
493
 
494
+ #: includes/class-cntctfrm-settings.php:562
495
  msgid "Mail"
496
  msgstr "Mail"
497
 
498
+ #: includes/class-cntctfrm-settings.php:563
499
  #, fuzzy
500
  msgid "You can use the PHP mail function for mailing"
501
  msgstr "Sie können die wp_mail Funktion für das versenden verwenden."
502
 
503
+ #: includes/class-cntctfrm-settings.php:569
504
  msgid "'FROM' field"
505
  msgstr ""
506
 
507
+ #: includes/class-cntctfrm-settings.php:585
508
  msgid "User name"
509
  msgstr "Benutzer Name"
510
 
511
+ #: includes/class-cntctfrm-settings.php:587
512
  msgid ""
513
  "The name of the user who fills the form will be used in the field 'From'."
514
  msgstr ""
515
  "Der Name des Benutzers, der das Formular ausfüllt, wird im Feld 'From/Von' "
516
  "verwendt."
517
 
518
+ #: includes/class-cntctfrm-settings.php:609
 
 
 
 
519
  msgid "User email"
520
  msgstr "Benutzer E-Mail"
521
 
522
+ #: includes/class-cntctfrm-settings.php:611
523
  msgid ""
524
  "The email address of the user who fills the form will be used in the field "
525
  "'From'."
527
  "Die E-Mail Adresse des Benutzers, der das Formular ausfüllt, wird im Feld "
528
  "'From/Von' verwendt."
529
 
530
+ #: includes/class-cntctfrm-settings.php:620
531
  msgid ""
532
  "If this option is changed, email messages may be moved to the spam folder or "
533
  "email delivery failures may occur."
534
  msgstr ""
535
 
536
+ #: includes/class-cntctfrm-settings.php:629
537
  msgid "Required symbol"
538
  msgstr "Benötigtes Symbol"
539
 
540
+ #: includes/class-cntctfrm-settings.php:639
541
  msgid "Fields"
542
  msgstr "Felder"
543
 
544
+ #: includes/class-cntctfrm-settings.php:640
545
+ #: includes/class-cntctfrm-settings.php:667
546
+ #: includes/class-cntctfrm-settings.php:694
547
+ #: includes/class-cntctfrm-settings.php:714
548
+ #: includes/class-cntctfrm-settings.php:750
549
+ #: includes/class-cntctfrm-settings.php:832
550
  msgid "Used"
551
  msgstr "Benutzt"
552
 
553
+ #: includes/class-cntctfrm-settings.php:641
554
+ #: includes/class-cntctfrm-settings.php:656
555
+ #: includes/class-cntctfrm-settings.php:671
556
+ #: includes/class-cntctfrm-settings.php:698
557
+ #: includes/class-cntctfrm-settings.php:718
558
+ #: includes/class-cntctfrm-settings.php:754
559
+ #: includes/class-cntctfrm-settings.php:767
560
+ #: includes/class-cntctfrm-settings.php:791
561
  msgid "Required"
562
  msgstr "Benötigt"
563
 
564
+ #: includes/class-cntctfrm-settings.php:643
565
+ #: includes/class-cntctfrm-settings.php:676
566
+ #: includes/class-cntctfrm-settings.php:733
567
+ #: includes/class-cntctfrm-settings.php:772
568
+ #: includes/class-cntctfrm-settings.php:796
569
  msgid "Visible"
570
  msgstr "Sichtbar"
571
 
572
+ #: includes/class-cntctfrm-settings.php:644
573
+ #: includes/class-cntctfrm-settings.php:680
574
+ #: includes/class-cntctfrm-settings.php:737
575
+ #: includes/class-cntctfrm-settings.php:776
576
+ #: includes/class-cntctfrm-settings.php:800
577
  msgid "Disabled for editing"
578
  msgstr "Bearbeitung ist ausgeschaltet"
579
 
580
+ #: includes/class-cntctfrm-settings.php:645
581
+ #: includes/class-cntctfrm-settings.php:704
582
+ #: includes/class-cntctfrm-settings.php:780
583
+ #: includes/class-cntctfrm-settings.php:804
584
  msgid "Field's default value"
585
  msgstr "Standard-Feld-Wert"
586
 
587
+ #: includes/class-cntctfrm-settings.php:652
588
  msgid "Department selectbox"
589
  msgstr ""
590
 
591
+ #: includes/class-cntctfrm-settings.php:684
592
  msgid "Use User's name as a default value if the user is logged in."
593
  msgstr ""
594
 
595
+ #: includes/class-cntctfrm-settings.php:685
596
+ #: includes/class-cntctfrm-settings.php:742
597
  msgid ""
598
  "'Visible' and 'Disabled for editing' options will be applied only to logged-"
599
  "in users."
600
  msgstr ""
601
 
602
+ #: includes/class-cntctfrm-settings.php:691
603
  msgid "Location selectbox"
604
  msgstr ""
605
 
606
+ #: includes/class-cntctfrm-settings.php:741
607
  msgid "Use User's email as a default value if the user is logged in."
608
  msgstr ""
609
 
610
+ #: includes/class-cntctfrm-settings.php:825
611
  msgid "Attachment block"
612
  msgstr "Anhang-Block"
613
 
614
+ #: includes/class-cntctfrm-settings.php:827
615
  msgid "Users can attach the following file formats"
616
  msgstr "Benutzer können die folgenden Formate anhängen:"
617
 
618
+ #: includes/class-cntctfrm-settings.php:845
619
  msgid "Add to the form"
620
  msgstr "Füge in die Form"
621
 
622
+ #: includes/class-cntctfrm-settings.php:850
623
  msgid "Tips below the Attachment"
624
  msgstr "Tipps unterhalb des Anhangs"
625
 
626
+ #: includes/class-cntctfrm-settings.php:857
627
  msgid "'Send me a copy' block"
628
  msgstr "'Kopie an mich senden' Block"
629
 
630
+ #: includes/class-cntctfrm-settings.php:864
631
  msgid "GDPR Compliance"
632
  msgstr ""
633
 
634
+ #: includes/class-cntctfrm-settings.php:869
635
  msgid "Link to Privacy Policy Page"
636
  msgstr ""
637
 
638
+ #: includes/class-cntctfrm-settings.php:873
639
  msgid "Text for Privacy Policy Link"
640
  msgstr ""
641
 
642
+ #: includes/class-cntctfrm-settings.php:901
643
  #, fuzzy
644
  msgid "Activate for network"
645
  msgstr "Geactiveerde plugins"
646
 
647
+ #: includes/class-cntctfrm-settings.php:991
648
  msgid "Agreement checkbox"
649
  msgstr "Agreement checkbox"
650
 
651
+ #: includes/class-cntctfrm-settings.php:991
652
  msgid "Required checkbox for submitting the form"
653
  msgstr "Benötigte checkbox zur übermittlung des Formulars"
654
 
655
+ #: includes/class-cntctfrm-settings.php:992
656
  msgid "Optional checkbox"
657
  msgstr "Optionale checkbox"
658
 
659
+ #: includes/class-cntctfrm-settings.php:992
660
  msgid "Optional checkbox, the results of which will be displayed in email"
661
  msgstr "Optionale checkbox, das Ergebnis davon wird in der E-Mail angezeigt"
662
 
663
+ #: includes/class-cntctfrm-settings.php:1007
664
  msgid "Delete an attachment file from the server after the email is sent"
665
  msgstr "Lösche die Anhang-Datei vom Server nachdem die E-Mail gesendet wurde"
666
 
667
+ #: includes/class-cntctfrm-settings.php:1013
668
  msgid "Email in HTML format sending"
669
  msgstr "E-Mail im HTML Format"
670
 
671
+ #: includes/class-cntctfrm-settings.php:1017
672
  msgid "Display additional info in the email"
673
  msgstr "Zeige weitere Informationen in der E-Mail"
674
 
675
+ #: includes/class-cntctfrm-settings.php:1023
676
  #, fuzzy
677
  msgid "Sent from (IP address)"
678
  msgstr "Gesendet von (IP-Adresse)"
679
 
680
+ #: includes/class-cntctfrm-settings.php:1023
681
  msgid "Example: Sent from (IP address): 127.0.0.1"
682
  msgstr ""
683
 
684
+ #: includes/class-cntctfrm-settings.php:1024
 
 
 
 
685
  msgid "Example: Date/Time: August 19, 2013 8:50 pm"
686
  msgstr ""
687
 
688
+ #: includes/class-cntctfrm-settings.php:1025
 
 
 
 
689
  msgid ""
690
  "Example: Sent from (referer): https://bestwebsoft.com/contacts/contact-us/"
691
  msgstr ""
692
 
693
+ #: includes/class-cntctfrm-settings.php:1026
 
 
 
 
694
  msgid ""
695
  "Example: Using (user agent): Mozilla/5.0 (Windows NT 6.2; WOW64) "
696
  "AppleWebKit/537.36 (KHTML, like Gecko) Chrome/28.0.1500.95 Safari/537.36"
697
  msgstr ""
698
 
699
+ #: includes/class-cntctfrm-settings.php:1031
700
  msgid "Language settings for the field names in the form"
701
  msgstr "Benutzer-Einstellungen für die Feld-Namen in der Form"
702
 
703
+ #: includes/class-cntctfrm-settings.php:1040
704
  msgid "Add a language"
705
  msgstr "Hinzufügen einer Sprache"
706
 
707
+ #: includes/class-cntctfrm-settings.php:1044
708
  msgid "Change the names of the contact form fields and error messages"
709
  msgstr "Verändere die Namen der Kontakt-Form-Felder und Fehlermeldungen"
710
 
711
+ #: includes/class-cntctfrm-settings.php:1049
712
+ #: includes/class-cntctfrm-settings.php:1147
713
+ #: includes/class-cntctfrm-settings.php:1252
 
 
714
  msgid "Default"
715
  msgstr "Standard"
716
 
717
+ #: includes/class-cntctfrm-settings.php:1062
718
+ #: includes/class-cntctfrm-settings.php:1101
719
  msgid "click to expand/hide the list"
720
  msgstr "Klick zum erweitern/verstecken der Liste"
721
 
722
+ #: includes/class-cntctfrm-settings.php:1071
723
+ #: includes/class-cntctfrm-settings.php:1110
724
  msgid "Tips below the Attachment block"
725
  msgstr "Tipps unterhalb des Anhang-Blocks"
726
 
727
+ #: includes/class-cntctfrm-settings.php:1075
728
+ #: includes/class-cntctfrm-settings.php:1114
729
  msgid "Error message for the Name field"
730
  msgstr "Fehlermeldung für das Namensfeld"
731
 
732
+ #: includes/class-cntctfrm-settings.php:1076
733
+ #: includes/class-cntctfrm-settings.php:1115
734
  msgid "Error message for the Address field"
735
  msgstr "Fehlermeldung für das Adress-Feld"
736
 
737
+ #: includes/class-cntctfrm-settings.php:1077
738
+ #: includes/class-cntctfrm-settings.php:1116
739
  msgid "Error message for the Email field"
740
  msgstr "Fehlermeldung für das E-Mail-Feld"
741
 
742
+ #: includes/class-cntctfrm-settings.php:1078
743
+ #: includes/class-cntctfrm-settings.php:1117
744
  msgid "Error message for the Phone field"
745
  msgstr "Fehlermeldung für das Telefonnummer-Feld"
746
 
747
+ #: includes/class-cntctfrm-settings.php:1079
748
+ #: includes/class-cntctfrm-settings.php:1118
749
  msgid "Error message for the Subject field"
750
  msgstr "Fehlermeldung für das Betreff-Feld"
751
 
752
+ #: includes/class-cntctfrm-settings.php:1080
753
+ #: includes/class-cntctfrm-settings.php:1119
754
  msgid "Error message for the Message field"
755
  msgstr "Fehlermeldung für das Inhalts-Feld"
756
 
757
+ #: includes/class-cntctfrm-settings.php:1081
758
+ #: includes/class-cntctfrm-settings.php:1120
759
  msgid "Error message about the file type for the Attachment field"
760
  msgstr "Fehlermeldung über den Datei-Typ für das Anhang-Feld"
761
 
762
+ #: includes/class-cntctfrm-settings.php:1082
763
+ #: includes/class-cntctfrm-settings.php:1121
764
  msgid ""
765
  "Error message while uploading a file for the Attachment field to the server"
766
  msgstr ""
767
  "Fehlermeldung während des hochladens einer Datei zum Server für das Anhang-"
768
  "Feld"
769
 
770
+ #: includes/class-cntctfrm-settings.php:1083
771
+ #: includes/class-cntctfrm-settings.php:1122
772
  msgid "Error message while moving the file for the Attachment field"
773
  msgstr "Fehlermeldung während der Verschiebung für das Anhang-Feld"
774
 
775
+ #: includes/class-cntctfrm-settings.php:1084
776
+ #: includes/class-cntctfrm-settings.php:1123
777
  msgid "Error message when file size limit for the Attachment field is exceeded"
778
  msgstr ""
779
  "Fehlermeldung wenn das Datei-Größen-Limit für das Anhang-Feld überschritten "
780
  "wird"
781
 
782
+ #: includes/class-cntctfrm-settings.php:1085
783
+ #: includes/class-cntctfrm-settings.php:1124
784
  msgid "Error message for the Captcha field"
785
  msgstr "Fehlermeldung für das Capatcha-Feld"
786
 
787
+ #: includes/class-cntctfrm-settings.php:1086
788
+ #: includes/class-cntctfrm-settings.php:1125
789
  msgid "Error message for the whole form"
790
  msgstr "Fehlermeldung für das ganze Formular"
791
 
792
+ #: includes/class-cntctfrm-settings.php:1138
 
 
 
 
 
 
 
 
 
 
 
 
 
 
793
  #, fuzzy
794
  msgid "Use the changed names of the contact form fields in the email"
795
  msgstr "Verändere die Namen der Kontakt-Form-Felder und Fehlermeldungen"
796
 
797
+ #: includes/class-cntctfrm-settings.php:1144
798
  msgid "Action after email is sent"
799
  msgstr "Handlung nachdem die E-Mail gesendet wurde"
800
 
801
+ #: includes/class-cntctfrm-settings.php:1146
802
  msgid "Display text"
803
  msgstr "Zeige Text"
804
 
805
+ #: includes/class-cntctfrm-settings.php:1160
806
+ #: includes/class-cntctfrm-settings.php:1174
807
  msgid "Text"
808
  msgstr "Text"
809
 
810
+ #: includes/class-cntctfrm-settings.php:1185
811
  msgid "Redirect to the page"
812
  msgstr "Umleiten zur Seite"
813
 
814
+ #: includes/class-cntctfrm-settings.php:1186
815
  msgid "Url"
816
  msgstr "Url"
817
 
818
+ #: includes/class-cntctfrm-settings.php:1206
 
 
 
 
 
 
 
 
 
 
 
 
819
  #, php-format
820
  msgid ""
821
+ "Please enable JavaScript to change '%s', '%s', '%s', '%s' options and for "
822
+ "fields sorting."
 
823
  msgstr ""
824
 
825
+ #: includes/class-cntctfrm-settings.php:1207
826
+ #: includes/class-cntctfrm-settings.php:1224
827
+ msgid "Form layout"
 
 
 
 
 
828
  msgstr ""
829
 
830
+ #: includes/class-cntctfrm-settings.php:1208
831
+ #: includes/class-cntctfrm-settings.php:1291
832
+ #, fuzzy
833
+ msgid "Labels position"
834
+ msgstr "Sende-Schaltfläche"
835
+
836
+ #: includes/class-cntctfrm-settings.php:1209
837
+ #: includes/class-cntctfrm-settings.php:1309
838
+ msgid "Labels align"
839
  msgstr ""
840
 
841
+ #: includes/class-cntctfrm-settings.php:1210
842
+ #: includes/class-cntctfrm-settings.php:1236
843
  #, fuzzy
844
  msgid "Submit position"
845
  msgstr "Sende-Schaltfläche"
846
 
847
+ #: includes/class-cntctfrm-settings.php:1211
848
+ #: includes/class-cntctfrm-settings.php:1340
849
+ msgid "Add tooltips"
850
+ msgstr "Füge Tooltips hinzu"
851
+
852
+ #: includes/class-cntctfrm-settings.php:1212
853
+ #: includes/class-cntctfrm-settings.php:1381
854
+ msgid "Style options"
855
+ msgstr "Stil-Optionen"
856
+
857
+ #: includes/class-cntctfrm-settings.php:1228
858
  msgid "One column"
859
  msgstr ""
860
 
861
+ #: includes/class-cntctfrm-settings.php:1231
862
  msgid "Two columns"
863
  msgstr ""
864
 
865
+ #: includes/class-cntctfrm-settings.php:1240
866
+ #: includes/class-cntctfrm-settings.php:1280
867
+ #: includes/class-cntctfrm-settings.php:1298
868
+ #: includes/class-cntctfrm-settings.php:1313
869
  msgid "Left"
870
  msgstr ""
871
 
872
+ #: includes/class-cntctfrm-settings.php:1243
873
+ #: includes/class-cntctfrm-settings.php:1286
874
+ #: includes/class-cntctfrm-settings.php:1301
875
+ #: includes/class-cntctfrm-settings.php:1319
876
  msgid "Right"
877
  msgstr ""
878
 
879
+ #: includes/class-cntctfrm-settings.php:1248
880
  msgid "Width"
881
  msgstr ""
882
 
883
+ #: includes/class-cntctfrm-settings.php:1256
884
  msgid "Custom"
885
  msgstr ""
886
 
887
+ #: includes/class-cntctfrm-settings.php:1263
888
  msgid "px"
889
  msgstr ""
890
 
891
+ #: includes/class-cntctfrm-settings.php:1276
892
  msgid "Form align"
893
  msgstr ""
894
 
895
+ #: includes/class-cntctfrm-settings.php:1283
896
+ #: includes/class-cntctfrm-settings.php:1316
897
  msgid "Center"
898
  msgstr ""
899
 
900
+ #: includes/class-cntctfrm-settings.php:1295
 
 
 
 
 
901
  msgid "Top"
902
  msgstr ""
903
 
904
+ #: includes/class-cntctfrm-settings.php:1304
905
  msgid "Bottom"
906
  msgstr ""
907
 
908
+ #: includes/class-cntctfrm-settings.php:1324
 
 
 
 
909
  msgid "Errors output"
910
  msgstr "Fehler-Ausgabe"
911
 
912
+ #: includes/class-cntctfrm-settings.php:1327
913
  msgid "Display error messages"
914
  msgstr "Zeige Fehlermeldungen"
915
 
916
+ #: includes/class-cntctfrm-settings.php:1328
917
  msgid "Color of the input field errors."
918
  msgstr "Farbe der Eingabe-Fehld-Fehler"
919
 
920
+ #: includes/class-cntctfrm-settings.php:1329
921
  msgid "Display error messages & color of the input field errors"
922
  msgstr "Zeige Fehlermeldungen & Farbe zu den Eingabe-Feldern"
923
 
924
+ #: includes/class-cntctfrm-settings.php:1334
925
  msgid "Add placeholder to the input blocks"
926
  msgstr "Füge Platzhalter an die Eingabe-Blöcke"
927
 
928
+ #: includes/class-cntctfrm-settings.php:1354
 
 
 
 
929
  msgid "Email address"
930
  msgstr "E-Mail Adresse:"
931
 
932
+ #: includes/class-cntctfrm-settings.php:1385
 
 
 
 
 
 
 
 
933
  msgid "Text color"
934
  msgstr "Text -Farbe"
935
 
936
+ #: includes/class-cntctfrm-settings.php:1393
937
  msgid "Label text color"
938
  msgstr "Beschriftungs-Text -Farbe"
939
 
940
+ #: includes/class-cntctfrm-settings.php:1402
941
  msgid "Placeholder color"
942
  msgstr "Platzhalter -Farbe"
943
 
944
+ #: includes/class-cntctfrm-settings.php:1407
945
  msgid "Errors color"
946
  msgstr "Fehler -Farbe"
947
 
948
+ #: includes/class-cntctfrm-settings.php:1415
949
  msgid "Error text color"
950
  msgstr "Fehler-Text -Farbe"
951
 
952
+ #: includes/class-cntctfrm-settings.php:1423
953
  msgid "Background color of the input field errors"
954
  msgstr "Hintergrund -Farbe von den Eingabefeld-Fehlern"
955
 
956
+ #: includes/class-cntctfrm-settings.php:1431
957
  msgid "Border color of the input field errors"
958
  msgstr "Rand -Farbe von den Eingabefeld-Fehlern"
959
 
960
+ #: includes/class-cntctfrm-settings.php:1439
961
  msgid "Placeholder color of the input field errors"
962
  msgstr "Platzhalter -Farbe von den Eingabefeld-Fehlern"
963
 
964
+ #: includes/class-cntctfrm-settings.php:1444
965
  msgid "Input fields"
966
  msgstr "Eingabe-Felder"
967
 
968
+ #: includes/class-cntctfrm-settings.php:1452
969
  msgid "Input fields background color"
970
  msgstr "Eingabefelder - Hintergrundfarbe"
971
 
972
+ #: includes/class-cntctfrm-settings.php:1460
973
  msgid "Text fields color"
974
  msgstr "Text-Felder -Farbe"
975
 
976
+ #: includes/class-cntctfrm-settings.php:1464
977
  msgid "Border width in px, numbers only"
978
  msgstr "Rand-Breite in px, nur Zahlen"
979
 
980
+ #: includes/class-cntctfrm-settings.php:1472
981
+ #: includes/class-cntctfrm-settings.php:1505
982
  msgid "Border color"
983
  msgstr "Rand -Farbe"
984
 
985
+ #: includes/class-cntctfrm-settings.php:1477
986
  msgid "Submit button"
987
  msgstr "Sende-Schaltfläche"
988
 
989
+ #: includes/class-cntctfrm-settings.php:1481
990
  msgid "Width in px, numbers only"
991
  msgstr "Breite in px, nur Zahlen"
992
 
993
+ #: includes/class-cntctfrm-settings.php:1489
994
  msgid "Button color"
995
  msgstr "Schaltflächen -Farbe"
996
 
997
+ #: includes/class-cntctfrm-settings.php:1497
998
  msgid "Button text color"
999
  msgstr "Schaltflächen-Text -Farbe"
1000
 
1001
+ #: includes/class-cntctfrm-settings.php:1524
1002
  #, fuzzy
1003
  msgid "Contact Form | Preview"
1004
  msgstr "Kontakt-Form Pro | Vorschau"
1005
 
1006
+ #: includes/class-cntctfrm-settings.php:1525
1007
  msgid "Drag the necessary field to sort fields."
1008
  msgstr ""
1009
 
1010
+ #: includes/class-cntctfrm-settings.php:1772
1011
+ msgid "Contact Form Shortcode"
 
 
 
1012
  msgstr ""
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1013
 
1014
+ #: includes/class-cntctfrm-settings.php:1775
1015
+ msgid "Add Contact Form to your page or post using the following shortcode:"
 
 
1016
  msgstr ""
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1017
 
1018
+ #~ msgid "If you upgrade to Pro version all your settings will be saved."
1019
+ #~ msgstr ""
1020
+ #~ "Wenn sie auf Pro upgraden werden alle ihre Einstellungen gespeichert"
 
 
1021
 
 
1022
  #, fuzzy
1023
+ #~ msgid ""
1024
+ #~ "If you would like to add the Contact Form to your website, just copy and "
1025
+ #~ "paste this shortcode to your post or page or widget"
1026
+ #~ msgstr ""
1027
+ #~ "Wenn sie die Kontakt-Form auf ihrer Webseite plazieren möchten, kopieren "
1028
+ #~ "und fügen sie diesen shortcode in ihrem/r Beitrag, Seite oder Widget ein:"
1029
 
1030
+ #~ msgid "Save Changes"
1031
+ #~ msgstr "Speichere Änderungen"
 
1032
 
1033
+ #~ msgid "Contact Form"
1034
+ #~ msgstr "Kontakt-Form"
 
1035
 
 
1036
  #, fuzzy
1037
+ #~ msgid "Additional settings"
1038
+ #~ msgstr "Weitere Optionen"
1039
 
1040
+ #~ msgid "Go PRO"
1041
+ #~ msgstr "Go PRO"
 
1042
 
 
 
 
 
 
1043
  #, fuzzy
1044
+ #~ msgid "Notice"
1045
+ #~ msgstr "Notiz:"
1046
 
 
1047
  #, fuzzy
1048
+ #~ msgid ""
1049
+ #~ "If you would like to add a Contact Form to your page or post, please use "
1050
+ #~ "%s button"
1051
+ #~ msgstr ""
1052
+ #~ "Wenn sie die Kontakt-Form auf ihrer Webseite plazieren möchten, kopieren "
1053
+ #~ "und fügen sie diesen shortcode in ihrem/r Beitrag, Seite oder Widget ein:"
1054
 
1055
  #~ msgid "Example: Sent from (IP address):\t127.0.0.1"
1056
  #~ msgstr "Beispiel: Gesendet von (IP-Adresse):\t127.0.0.1"
languages/contact-form-plugin-el.mo CHANGED
Binary file
languages/contact-form-plugin-el.po CHANGED
@@ -2,8 +2,8 @@ msgid ""
2
  msgstr ""
3
  "Project-Id-Version: Contact Form\n"
4
  "Report-Msgid-Bugs-To: \n"
5
- "POT-Creation-Date: 2018-05-16 14:26+0300\n"
6
- "PO-Revision-Date: 2018-05-16 14:26+0300\n"
7
  "Last-Translator: plugin@bestwebsoft.com <plugin@bestwebsoft.com>\n"
8
  "Language-Team: Dimitris Karantonis <dkarantonis@gmail.com>\n"
9
  "Language: el\n"
@@ -21,63 +21,84 @@ msgstr ""
21
  "X-Poedit-SearchPath-0: .\n"
22
 
23
  # @ contact_form
24
- #: contact_form.php:37 contact_form.php:992
 
25
  msgid "Contact Form Settings"
26
  msgstr "Ρυθμίσεις φόρμας επικοινωνίας"
27
 
28
  # @ contact_form
29
- #: contact_form.php:37
30
- msgid "Contact Form"
31
- msgstr "Φόρμα Επικοινωνίας"
 
 
 
 
 
 
 
 
32
 
33
  # @ contact_form
34
- #: contact_form.php:322 contact_form.php:1172 contact_form.php:1262
35
- #: contact_form.php:1668 contact_form.php:1707 contact_form.php:1975
36
- #: contact_form.php:3134 contact_form.php:3180
 
 
 
37
  msgid "Name"
38
  msgstr "Όνομα"
39
 
40
  # @ contact_form
41
- #: contact_form.php:323 contact_form.php:1309 contact_form.php:1669
42
- #: contact_form.php:1708 contact_form.php:1980 contact_form.php:3141
43
- #: contact_form.php:3186
 
 
44
  msgid "Address"
45
  msgstr "Διεύθυνση"
46
 
47
  # @ contact_form
48
- #: contact_form.php:324 contact_form.php:1325 contact_form.php:1670
49
- #: contact_form.php:1709
 
50
  msgid "Email Address"
51
  msgstr "Διεύθυνση Email"
52
 
53
  # @ contact_form
54
- #: contact_form.php:325 contact_form.php:1348 contact_form.php:1671
55
- #: contact_form.php:1710
 
56
  msgid "Phone number"
57
  msgstr "Αριθμός τηλεφώνου"
58
 
59
  # @ contact_form
60
- #: contact_form.php:326 contact_form.php:1364 contact_form.php:1672
61
- #: contact_form.php:1711 contact_form.php:1995 contact_form.php:3152
62
- #: contact_form.php:3195
 
 
63
  msgid "Subject"
64
  msgstr "Θέμα"
65
 
66
  # @ contact_form
67
- #: contact_form.php:327 contact_form.php:1388 contact_form.php:1673
68
- #: contact_form.php:1712 contact_form.php:1999 contact_form.php:3157
69
- #: contact_form.php:3199
 
 
70
  msgid "Message"
71
  msgstr "Μήνυμα"
72
 
73
  # @ contact_form
74
- #: contact_form.php:328 contact_form.php:1674 contact_form.php:1713
75
- #: contact_form.php:2004
 
76
  msgid "Attachment"
77
  msgstr "Συννημένο αρχείο"
78
 
79
  # @ contact_form
80
- #: contact_form.php:329
81
  msgid ""
82
  "Supported file types: HTML, TXT, CSS, GIF, PNG, JPEG, JPG, TIFF, BMP, AI, "
83
  "EPS, PS, CSV, RTF, PDF, DOC, DOCX, XLS, XLSX, ZIP, RAR, WAV, MP3, PPT."
@@ -87,201 +108,353 @@ msgstr ""
87
  "PPT."
88
 
89
  # @ contact_form
90
- #: contact_form.php:330 contact_form.php:1676 contact_form.php:1715
 
91
  msgid "Send me a copy"
92
  msgstr "Αποστολή αντιγράφου"
93
 
94
- #: contact_form.php:331 contact_form.php:1677 contact_form.php:1716
 
95
  msgid "I consent to having this site collect my personal data."
96
  msgstr ""
97
 
98
  # @ contact_form
99
- #: contact_form.php:332 contact_form.php:1678 contact_form.php:1717
 
100
  msgid "Submit"
101
  msgstr "Αποστολή"
102
 
103
  # @ contact_form
104
- #: contact_form.php:333
105
  msgid "Your name is required."
106
  msgstr "Το όνομα σας είναι απαραίτητο."
107
 
108
  # @ contact_form
109
- #: contact_form.php:334
110
  msgid "Address is required."
111
  msgstr "Η διεύθυνσή σας είναι απαραίτητη."
112
 
113
  # @ contact_form
114
- #: contact_form.php:335
115
  msgid "A valid email address is required."
116
  msgstr "Απαιτείται μία έγκυρη διεύθυνση email."
117
 
118
  # @ contact_form
119
- #: contact_form.php:336
120
  msgid "Phone number is required."
121
  msgstr "Ο αριθμός τηλεφώνου είναι απαραίτητος."
122
 
123
  # @ contact_form
124
- #: contact_form.php:337
125
  msgid "Subject is required."
126
  msgstr "Το θέμα είναι απαραίτητο."
127
 
128
  # @ contact_form
129
- #: contact_form.php:338
130
  msgid "Message text is required."
131
  msgstr "Το μήνυμα κειμένου είναι απαραίτητο."
132
 
133
  # @ contact_form
134
- #: contact_form.php:339
135
  msgid "File format is not valid."
136
  msgstr "Ο τύπος του αρχείου δεν είναι έγκυρος."
137
 
138
  # @ contact_form
139
- #: contact_form.php:340
140
  msgid "File upload error."
141
  msgstr "Πρόβλημα κατά το ανέβασμα του αρχείου."
142
 
143
  # @ contact_form
144
- #: contact_form.php:341
145
  msgid "The file could not be uploaded."
146
  msgstr "Το αρχείο δεν μπορούσε να ανέβει."
147
 
148
  # @ contact_form
149
- #: contact_form.php:342
150
  msgid "This file is too large."
151
  msgstr "Το μέγεθος αρχείου είναι πολύ μεγάλο."
152
 
153
  # @ contact_form
154
- #: contact_form.php:343
155
  msgid "Please fill out the CAPTCHA."
156
  msgstr "Παρακαλούμε, συμπληρώστε το πεδίο CAPTCHA."
157
 
158
  # @ contact_form
159
- #: contact_form.php:344
160
  msgid "Please make corrections below and try again."
161
  msgstr ""
162
  "Παρακαλούμε, προχωρήστε στις παρακακάτω διορθώσεις και προσπαθήστε ξανά."
163
 
164
  # @ contact_form
165
- #: contact_form.php:346
166
  msgid "Thank you for contacting us."
167
  msgstr "Σας ευχαριστούμε για την επικοινωνία."
168
 
 
 
 
 
169
  # @ contact_form
170
- #: contact_form.php:683 contact_form.php:949
171
- msgid "Settings saved."
172
- msgstr "Οι ρυθμίσεις αποθηκεύτηκαν."
 
 
 
 
173
 
174
- #: contact_form.php:894
175
  msgid ""
176
- "Email 'FROM' field option was changed, which may cause email messages being "
177
- "moved to the spam folder or email delivery failures."
 
178
  msgstr ""
179
 
180
  # @ contact_form
181
- #: contact_form.php:904
182
- msgid ""
183
- "If the 'Redirect to page' option is selected then the URL field should be in "
184
- "the following format"
185
  msgstr ""
186
- "Αν είναι ενεργοποιημένη η επιλογή \"Ανακατεύθυνση στη σελίδα\", τότε το "
187
- "πεδίο URL θα πρέπει να έχει την ακόλουθη μορφή"
188
 
189
  # @ contact_form
190
- #: contact_form.php:911
191
- msgid "Such user does not exist."
192
- msgstr "Τέτοιος χρήστης δεν υπάρχει."
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
193
 
194
  # @ contact_form
195
- #: contact_form.php:921
 
 
 
 
 
 
196
  msgid ""
197
- "Please enter a valid email address in the 'Use this email address' field."
 
198
  msgstr ""
199
- "Παρακαλούμε, εισάγετε μια έγκυρη διεύθυνση email στο πεδίο 'Χρησιμοποιήστε "
200
- "αυτήν τη διεύθυνση email'."
201
 
202
  # @ contact_form
203
- #: contact_form.php:929
204
- msgid "Please enter a valid email address in the 'FROM' field."
205
- msgstr "Παρακαλούμε, εισάγετε μια έγκυρη διεύθυνση email στο πεδίο «ΑΠΟ»."
206
 
207
  # @ contact_form
208
- #: contact_form.php:951
209
- msgid "Settings are not saved."
210
- msgstr "Οι ρυθμίσεις δεν αποθηκεύτηκαν."
211
 
212
- #: contact_form.php:989
213
- msgid "All plugin settings were restored."
 
 
 
 
 
 
 
 
 
 
 
 
 
214
  msgstr ""
215
 
216
- #: contact_form.php:995
217
- msgid "How to Use Step-by-step Instruction"
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
218
  msgstr ""
219
 
220
  # @ contact_form
221
- #: contact_form.php:998 contact_form.php:3343 contact_form.php:3357
222
- msgid "Settings"
223
- msgstr "Ρυθμίσεις"
 
 
 
 
 
 
 
 
224
 
225
  # @ contact_form
226
- #: contact_form.php:999
227
- #, fuzzy
228
- msgid "Additional settings"
229
- msgstr "Πρόσθετες επιλογές"
 
 
 
 
 
 
 
230
 
231
- #: contact_form.php:1000
232
- msgid "Appearance"
233
  msgstr ""
234
 
235
- #: contact_form.php:1001
236
- msgid "Custom code"
 
 
237
  msgstr ""
 
 
238
 
239
  # @ contact_form
240
- #: contact_form.php:1002
241
- msgid "Go PRO"
242
- msgstr "Αναβάθμιση σε PRO"
243
 
244
  # @ contact_form
245
- #: contact_form.php:1013
 
 
 
 
 
246
  #, fuzzy
247
- msgid "Notice"
248
- msgstr "Σημείωση:"
249
 
250
- #: contact_form.php:1017
251
- msgid "NEW_FORM"
 
 
 
 
 
 
 
252
  msgstr ""
253
 
254
- # @ contact_form
255
- #: contact_form.php:1018
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
256
  msgid ""
257
- "If you want to create multiple contact forms, please install the Contact "
258
- "Form Multi plugin."
 
 
 
 
 
 
259
  msgstr ""
260
- "Αν θέλετε να δημιουργήσετε πολλαπλές μορφές επαφής, παρακαλούμε "
261
- "εγκαταστήσετε την επέκταση φόρμα επικοινωνίας Multi."
262
 
263
  # @ contact_form
264
- #: contact_form.php:1027
265
- #, fuzzy, php-format
266
  msgid ""
267
- "If you would like to add a Contact Form to your page or post, please use %s "
268
- "button"
269
  msgstr ""
270
- "Αν θέλετε να προσθέσετε τη Φόρμα Επικοινωνίας στην ιστοσελίδα σας, απλά "
271
- "αντιγράψετε και επικολλήσετε αυτό το σύντομο κωδικό στο άρθρο, στη σελίδα ή "
272
- "στο widget σας:"
273
 
274
- #: contact_form.php:1033
275
- #, php-format
 
 
 
 
 
276
  msgid ""
277
- "You can add the Contact Form to your page or post by clicking on %s button "
278
- "in the content edit block using the Visual mode. If the button isn't "
279
- "displayed, please use the shortcode %s or %s where * stands for Contact Form "
280
- "language."
281
  msgstr ""
 
 
282
 
283
  # @ contact_form
284
- #: contact_form.php:1042
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
285
  msgid ""
286
  "If you leave the fields empty, the messages will be sent to the email "
287
  "address specified during registration."
@@ -290,19 +463,19 @@ msgstr ""
290
  "καθορίσατε κατά την εγγραφή σας."
291
 
292
  # @ contact_form
293
- #: contact_form.php:1045
294
  #, fuzzy
295
  msgid "The user's email address"
296
  msgstr "Η διεύθυνση email του χρήστη:"
297
 
298
  # @ contact_form
299
- #: contact_form.php:1049
300
  #, fuzzy
301
  msgid "Select a username"
302
  msgstr "Δημιουργήστε ένα όνομα χρήστη"
303
 
304
  # @ contact_form
305
- #: contact_form.php:1062
306
  #, fuzzy
307
  msgid ""
308
  "Select a username of the person who should get the messages from the contact "
@@ -312,115 +485,108 @@ msgstr ""
312
  "επικοινωνίας."
313
 
314
  # @ contact_form
315
- #: contact_form.php:1066
316
  #, fuzzy
317
  msgid "Use this email address"
318
  msgstr "Χρησιμοποιήστε αυτήν τη διεύθυνση email: "
319
 
320
  # @ contact_form
321
- #: contact_form.php:1070
322
  #, fuzzy
323
  msgid "Enter the email address for receiving messages"
324
  msgstr "Εισάγετε τη διεύθυνση email που θέλετε τα μηνύματα να προωθούνται."
325
 
326
- #: contact_form.php:1077 contact_form.php:1588 contact_form.php:1797
327
- #: contact_form.php:1903 contact_form.php:3440
328
- msgid "Close"
329
- msgstr ""
330
-
331
  # @ contact_form
332
- #: contact_form.php:1081
333
  #, fuzzy
334
  msgid "Add department selectbox to the contact form"
335
  msgstr "Προσθέστε τμήμα selectbox στην φόρμα επικοινωνίας:"
336
 
337
  # @ contact_form
338
- #: contact_form.php:1089 contact_form.php:1597 contact_form.php:1816
339
- #: contact_form.php:2109
340
- msgid "If you upgrade to Pro version all your settings will be saved."
341
- msgstr ""
342
- "Εάν κάνετε αναβάθμιση σε έκδοση Pro όλες οι ρυθμίσεις σας θα αποθηκευτούν."
343
-
344
- #: contact_form.php:1096 contact_form.php:1418 contact_form.php:1602
345
- #: contact_form.php:1823 contact_form.php:2116
346
- msgid "Upgrade to Pro"
347
- msgstr ""
348
-
349
- # @ contact_form
350
- #: contact_form.php:1104
351
  msgid "Save emails to the database"
352
  msgstr "Αποθηκεύστε τα μηνύματα ηλεκτρονικού ταχυδρομείου στη βάση δεδομένων"
353
 
354
  # @ contact_form
355
- #: contact_form.php:1116 contact_form.php:1130 contact_form.php:1137
 
 
356
  msgid "Using"
357
  msgstr "Χρήση"
358
 
359
- #: contact_form.php:1122 contact_form.php:1490 contact_form.php:1531
360
- #: contact_form.php:1566
 
 
361
  msgid "Please activate the appropriate option on"
362
  msgstr ""
363
 
364
  # @ contact_form
365
- #: contact_form.php:1125 contact_form.php:1493 contact_form.php:1534
366
- #: contact_form.php:1569
 
 
367
  #, fuzzy
368
  msgid "settings page"
369
  msgstr "Οι ρυθμίσεις αποθηκεύτηκαν."
370
 
371
  # @ contact_form
372
- #: contact_form.php:1131 contact_form.php:1500 contact_form.php:1542
373
- #: contact_form.php:1576
 
 
374
  #, fuzzy
375
  msgid "Activate"
376
  msgstr "Ενεργοποίηση captcha"
377
 
378
  # @ contact_form
379
- #: contact_form.php:1138 contact_form.php:1509 contact_form.php:1548
380
- #: contact_form.php:1581
 
 
381
  #, fuzzy
382
  msgid "Download"
383
  msgstr "Κατέβασμα captcha"
384
 
385
- #: contact_form.php:1150
386
  msgid "Sending method"
387
  msgstr ""
388
 
389
  # @ contact_form
390
- #: contact_form.php:1155
391
  msgid "Wp-mail"
392
  msgstr "Wp-mail"
393
 
394
  # @ contact_form
395
- #: contact_form.php:1157
396
  #, fuzzy
397
  msgid "You can use the Wordpress wp_mail function for mailing"
398
  msgstr ""
399
  "Μπορείτε να χρησιμοποιήσετε τη λειτουργία wp_mail για την αποστολή emails"
400
 
401
  # @ contact_form
402
- #: contact_form.php:1160
403
  msgid "Mail"
404
  msgstr "Tαχυδρομείο"
405
 
406
  # @ contact_form
407
- #: contact_form.php:1162
408
  #, fuzzy
409
  msgid "You can use the PHP mail function for mailing"
410
  msgstr ""
411
  "Μπορείτε να χρησιμοποιήσετε τη λειτουργία wp_mail για την αποστολή emails"
412
 
413
- #: contact_form.php:1167
414
  msgid "'FROM' field"
415
  msgstr ""
416
 
417
  # @ contact_form
418
- #: contact_form.php:1183
419
  msgid "User name"
420
  msgstr "Όνομα χρήστη"
421
 
422
  # @ contact_form
423
- #: contact_form.php:1185
424
  msgid ""
425
  "The name of the user who fills the form will be used in the field 'From'."
426
  msgstr ""
@@ -428,17 +594,12 @@ msgstr ""
428
  "'Από'."
429
 
430
  # @ contact_form
431
- #: contact_form.php:1196 contact_form.php:3147 contact_form.php:3191
432
- msgid "Email"
433
- msgstr "Email"
434
-
435
- # @ contact_form
436
- #: contact_form.php:1207
437
  msgid "User email"
438
  msgstr "Email χρήστη"
439
 
440
  # @ contact_form
441
- #: contact_form.php:1209
442
  msgid ""
443
  "The email address of the user who fills the form will be used in the field "
444
  "'From'."
@@ -446,268 +607,279 @@ msgstr ""
446
  "Η διεύθυνση email του χρήστη που συμπληρώνει τη φόρμα θα χρησιμοποιηθεί στο "
447
  "πεδίο 'Από'."
448
 
449
- #: contact_form.php:1218
450
  msgid ""
451
  "If this option is changed, email messages may be moved to the spam folder or "
452
  "email delivery failures may occur."
453
  msgstr ""
454
 
455
  # @ contact_form
456
- #: contact_form.php:1227
457
  msgid "Required symbol"
458
  msgstr "Απαιτούμενο σύμβολο"
459
 
460
  # @ contact_form
461
- #: contact_form.php:1237
462
  msgid "Fields"
463
  msgstr "Πεδία"
464
 
465
  # @ contact_form
466
- #: contact_form.php:1238 contact_form.php:1265 contact_form.php:1292
467
- #: contact_form.php:1312 contact_form.php:1351 contact_form.php:1433
 
 
 
 
468
  msgid "Used"
469
  msgstr "Χρησιμοποιείται"
470
 
471
  # @ contact_form
472
- #: contact_form.php:1239 contact_form.php:1254 contact_form.php:1269
473
- #: contact_form.php:1296 contact_form.php:1316 contact_form.php:1329
474
- #: contact_form.php:1355 contact_form.php:1368 contact_form.php:1392
 
 
 
 
 
475
  msgid "Required"
476
  msgstr "Απαιτούμενο"
477
 
478
  # @ contact_form
479
- #: contact_form.php:1241 contact_form.php:1274 contact_form.php:1334
480
- #: contact_form.php:1373 contact_form.php:1397
 
 
 
481
  msgid "Visible"
482
  msgstr "Ορατό"
483
 
484
  # @ contact_form
485
- #: contact_form.php:1242 contact_form.php:1278 contact_form.php:1338
486
- #: contact_form.php:1377 contact_form.php:1401
 
 
 
487
  msgid "Disabled for editing"
488
  msgstr "Δεν επιτρέπεται η επεξεργασία"
489
 
490
  # @ contact_form
491
- #: contact_form.php:1243 contact_form.php:1302 contact_form.php:1381
492
- #: contact_form.php:1405
 
 
493
  msgid "Field's default value"
494
  msgstr "Προκαθορισμένη τιμή πεδίου"
495
 
496
  # @ contact_form
497
- #: contact_form.php:1250
498
  #, fuzzy
499
  msgid "Department selectbox"
500
  msgstr "Τοποθεσία selectbox"
501
 
502
- #: contact_form.php:1282
503
  msgid "Use User's name as a default value if the user is logged in."
504
  msgstr ""
505
 
506
- #: contact_form.php:1283 contact_form.php:1343
 
507
  msgid ""
508
  "'Visible' and 'Disabled for editing' options will be applied only to logged-"
509
  "in users."
510
  msgstr ""
511
 
512
  # @ contact_form
513
- #: contact_form.php:1289
514
  msgid "Location selectbox"
515
  msgstr "Τοποθεσία selectbox"
516
 
517
- #: contact_form.php:1342
518
  msgid "Use User's email as a default value if the user is logged in."
519
  msgstr ""
520
 
521
  # @ contact_form
522
- #: contact_form.php:1426
523
  msgid "Attachment block"
524
  msgstr "Συνημμένο μπλοκ"
525
 
526
  # @ contact_form
527
- #: contact_form.php:1428
528
  msgid "Users can attach the following file formats"
529
  msgstr "Οι χρήστες μπορούν να επισυνάψουν τις ακόλουθες μορφές αρχείων"
530
 
531
  # @ contact_form
532
- #: contact_form.php:1446
533
  msgid "Add to the form"
534
  msgstr "Προσθήκη στη φόρμα"
535
 
536
  # @ contact_form
537
- #: contact_form.php:1451
538
  msgid "Tips below the Attachment"
539
  msgstr "Συμβουλές κάτω από το συνημμένο"
540
 
541
  # @ contact_form
542
- #: contact_form.php:1458
543
  msgid "'Send me a copy' block"
544
  msgstr "Μπλοκ 'Στείλε μου ένα αντίγραφο'"
545
 
546
- #: contact_form.php:1465
547
  msgid "GDPR Compliance"
548
  msgstr ""
549
 
550
- #: contact_form.php:1470
551
  msgid "Link to Privacy Policy Page"
552
  msgstr ""
553
 
554
- #: contact_form.php:1474
555
  msgid "Text for Privacy Policy Link"
556
  msgstr ""
557
 
558
- #: contact_form.php:1502
559
  msgid "Activate for network"
560
  msgstr ""
561
 
562
  # @ contact_form
563
- #: contact_form.php:1592
564
  msgid "Agreement checkbox"
565
  msgstr "Checkbox συμφωνίας"
566
 
567
  # @ contact_form
568
- #: contact_form.php:1592
569
  msgid "Required checkbox for submitting the form"
570
  msgstr "Απαιτούμενο checkbox για την υποβολή της φόρμας"
571
 
572
  # @ contact_form
573
- #: contact_form.php:1593
574
  msgid "Optional checkbox"
575
  msgstr "Προαιρετικό checkbox"
576
 
577
  # @ contact_form
578
- #: contact_form.php:1593
579
  msgid "Optional checkbox, the results of which will be displayed in email"
580
  msgstr "Optional checkbox, τα αποτελέσματα του οποίου θα εμφανίζεται στο email"
581
 
582
  # @ contact_form
583
- #: contact_form.php:1611
584
  msgid "Delete an attachment file from the server after the email is sent"
585
  msgstr ""
586
  "Διαγραφή συνημμένου αρχείου από τον διακομιστή μετά την αποστολή του email"
587
 
588
  # @ contact_form
589
- #: contact_form.php:1617
590
  msgid "Email in HTML format sending"
591
  msgstr "Αποστολή email σε μορφή HTML "
592
 
593
  # @ contact_form
594
- #: contact_form.php:1621
595
  msgid "Display additional info in the email"
596
  msgstr "Εμφάνιση περισσότερων πληροφοριών στο email"
597
 
598
  # @ contact_form
599
- #: contact_form.php:1627
600
  #, fuzzy
601
  msgid "Sent from (IP address)"
602
  msgstr "Εστάλη από (διεύθυνση IP)"
603
 
604
- #: contact_form.php:1627
605
  msgid "Example: Sent from (IP address): 127.0.0.1"
606
  msgstr ""
607
 
608
- # @ contact_form
609
- #: contact_form.php:1628 contact_form.php:3096 contact_form.php:3098
610
- msgid "Date/Time"
611
- msgstr "Ημερομηνία/Ώρα"
612
-
613
- #: contact_form.php:1628
614
  msgid "Example: Date/Time: August 19, 2013 8:50 pm"
615
  msgstr ""
616
 
617
- # @ contact_form
618
- #: contact_form.php:1629 contact_form.php:3102 contact_form.php:3104
619
- msgid "Sent from (referer)"
620
- msgstr "Εστάλη από (παραπέμπτης)"
621
-
622
- #: contact_form.php:1629
623
  msgid ""
624
  "Example: Sent from (referer): https://bestwebsoft.com/contacts/contact-us/"
625
  msgstr ""
626
 
627
- # @ contact_form
628
- #: contact_form.php:1630 contact_form.php:3108 contact_form.php:3110
629
- msgid "Using (user agent)"
630
- msgstr "Χρήση (μέσο χρήστη)"
631
-
632
- #: contact_form.php:1630
633
  msgid ""
634
  "Example: Using (user agent): Mozilla/5.0 (Windows NT 6.2; WOW64) "
635
  "AppleWebKit/537.36 (KHTML, like Gecko) Chrome/28.0.1500.95 Safari/537.36"
636
  msgstr ""
637
 
638
  # @ contact_form
639
- #: contact_form.php:1635
640
  msgid "Language settings for the field names in the form"
641
  msgstr "Ρυθμίσεις γλώσσας για τα ονόματα πεδίων στη φόρμα"
642
 
643
  # @ contact_form
644
- #: contact_form.php:1644
645
  msgid "Add a language"
646
  msgstr "Προσθήκη γλώσσας"
647
 
648
  # @ contact_form
649
- #: contact_form.php:1648
650
  msgid "Change the names of the contact form fields and error messages"
651
  msgstr ""
652
  "Αλλάξτε τα ονόματα των πεδίων και των μηνύματα σφαλμάτων στη φόρμας "
653
  "επικοινωνίας "
654
 
655
  # @ contact_form
656
- #: contact_form.php:1653 contact_form.php:1751 contact_form.php:1883
657
- #: contact_form.php:2023 contact_form.php:2028 contact_form.php:2038
658
- #: contact_form.php:2043 contact_form.php:2048 contact_form.php:2053
659
- #: contact_form.php:2063 contact_form.php:2068 contact_form.php:2077
660
- #: contact_form.php:2091 contact_form.php:2096 contact_form.php:2101
661
  msgid "Default"
662
  msgstr "Προκαθορισμένο"
663
 
664
  # @ contact_form
665
- #: contact_form.php:1666 contact_form.php:1705
 
666
  msgid "click to expand/hide the list"
667
  msgstr "κάντε κλικ για να επεκτείνετε/αποκρύψετε τη λίστα"
668
 
669
  # @ contact_form
670
- #: contact_form.php:1675 contact_form.php:1714
 
671
  msgid "Tips below the Attachment block"
672
  msgstr "Συμβουλές κάτω από το Συνημμένο μπλοκ"
673
 
674
  # @ contact_form
675
- #: contact_form.php:1679 contact_form.php:1718
 
676
  msgid "Error message for the Name field"
677
  msgstr "Μήνυμα σφάλματος στο πεδίο 'Όνομα'"
678
 
679
  # @ contact_form
680
- #: contact_form.php:1680 contact_form.php:1719
 
681
  msgid "Error message for the Address field"
682
  msgstr "Μήνυμα σφάλματος στο πεδίο 'Διεύθυνση'"
683
 
684
  # @ contact_form
685
- #: contact_form.php:1681 contact_form.php:1720
 
686
  msgid "Error message for the Email field"
687
  msgstr "Μήνυμα σφάλματος στο πεδίο 'Email'"
688
 
689
  # @ contact_form
690
- #: contact_form.php:1682 contact_form.php:1721
 
691
  msgid "Error message for the Phone field"
692
  msgstr "Μήνυμα σφάλματος στο πεδίο 'Αριθμός τηλεφώνου'"
693
 
694
  # @ contact_form
695
- #: contact_form.php:1683 contact_form.php:1722
 
696
  msgid "Error message for the Subject field"
697
  msgstr "Μήνυμα σφάλματος στο πεδίο 'Θέμα'"
698
 
699
  # @ contact_form
700
- #: contact_form.php:1684 contact_form.php:1723
 
701
  msgid "Error message for the Message field"
702
  msgstr "Μήνυμα σφάλματος στο πεδίο 'Μήνυμα'"
703
 
704
  # @ contact_form
705
- #: contact_form.php:1685 contact_form.php:1724
 
706
  msgid "Error message about the file type for the Attachment field"
707
  msgstr "Μήνυμα σφάλματος σχετικά με τον τύπο αρχείου για το πεδίο 'Συνημμένο'"
708
 
709
  # @ contact_form
710
- #: contact_form.php:1686 contact_form.php:1725
 
711
  msgid ""
712
  "Error message while uploading a file for the Attachment field to the server"
713
  msgstr ""
@@ -715,435 +887,355 @@ msgstr ""
715
  "διακομιστή"
716
 
717
  # @ contact_form
718
- #: contact_form.php:1687 contact_form.php:1726
 
719
  msgid "Error message while moving the file for the Attachment field"
720
  msgstr ""
721
  "Μήνυμα σφάλματος κατά τη μετακίνηση του αρχείου για το πεδίο 'Συνημμένο'"
722
 
723
  # @ contact_form
724
- #: contact_form.php:1688 contact_form.php:1727
 
725
  msgid "Error message when file size limit for the Attachment field is exceeded"
726
  msgstr ""
727
  "Μήνυμα σφάλματος όταν το όριο μεγέθους αρχείου για το πεδίο 'Συνημμένο' έχει "
728
  "ξεπεραστεί"
729
 
730
  # @ contact_form
731
- #: contact_form.php:1689 contact_form.php:1728
 
732
  msgid "Error message for the Captcha field"
733
  msgstr "Μήνυμα σφάλματος για το πεδίο 'Captcha'"
734
 
735
  # @ contact_form
736
- #: contact_form.php:1690 contact_form.php:1729
 
737
  msgid "Error message for the whole form"
738
  msgstr "Μήνυμα σφάλματος συνολικά για τη φόρμα"
739
 
740
  # @ contact_form
741
- #: contact_form.php:1693 contact_form.php:1695 contact_form.php:1732
742
- #: contact_form.php:1734 contact_form.php:1766 contact_form.php:1768
743
- #: contact_form.php:1780 contact_form.php:1782 contact_form.php:3530
744
- #: contact_form.php:3532
745
- msgid "Use shortcode"
746
- msgstr "Χρήση σύντομου κωδικού"
747
-
748
- # @ contact_form
749
- #: contact_form.php:1693 contact_form.php:1695 contact_form.php:1732
750
- #: contact_form.php:1734 contact_form.php:1766 contact_form.php:1768
751
- #: contact_form.php:1780 contact_form.php:1782 contact_form.php:3530
752
- #: contact_form.php:3532
753
- msgid "for this language"
754
- msgstr "για τη συγκεκριμένη γλώσσα"
755
-
756
- # @ contact_form
757
- #: contact_form.php:1742
758
  msgid "Use the changed names of the contact form fields in the email"
759
  msgstr ""
760
  "Χρησιμοποιήστε τα τροποποιημένα ονόματα των πεδίων της φόρμας επικοινωνίας "
761
  "στο email"
762
 
763
  # @ contact_form
764
- #: contact_form.php:1748
765
  msgid "Action after email is sent"
766
  msgstr "Ενέργεια μετά την αποστολή του email"
767
 
768
  # @ contact_form
769
- #: contact_form.php:1750
770
  msgid "Display text"
771
  msgstr "Εμφάνιση κειμένου"
772
 
773
  # @ contact_form
774
- #: contact_form.php:1764 contact_form.php:1778
 
775
  msgid "Text"
776
  msgstr "Κείμενο"
777
 
778
  # @ contact_form
779
- #: contact_form.php:1789
780
  msgid "Redirect to the page"
781
  msgstr "Ανακατεύθυνση στη σελίδα"
782
 
783
  # @ contact_form
784
- #: contact_form.php:1790
785
  msgid "Url"
786
  msgstr "Url"
787
 
788
- #: contact_form.php:1801
789
- msgid "Add field 'Reply-To' to the email header"
790
- msgstr ""
791
-
792
- #: contact_form.php:1803
793
- msgid "Field 'Reply-To' will be initialized by user email"
794
- msgstr ""
795
-
796
- # @ contact_form
797
- #: contact_form.php:1807
798
- msgid "Auto Response"
799
- msgstr "Αυτόματη Απάντηση"
800
-
801
- # @ contact_form
802
- #: contact_form.php:1811
803
  #, php-format
804
  msgid ""
805
- "You can use %%NAME%% to display data from the email field and %%MESSAGE%% to "
806
- "display data from the Message field, as well as %%SITENAME%% to display blog "
807
- "name."
808
  msgstr ""
809
- "Μπορείτε να χρησιμοποιήσετε το %%NAME%% για να εμφανίσετε δεδομένα από το "
810
- "πεδίο 'Email' και το %%MESSAGE%% για να εμφανίσετε δεδομένα από το πεδίο "
811
- "'Μήνυμα', όπως επίσης και το %%SITENAME%% για να εμφανίσετε το όνομα του "
812
- "ιστολογίου."
813
 
814
- # @ default
815
- #: contact_form.php:1833 contact_form.php:2375
816
- msgid "Save Changes"
817
- msgstr "Αποθήκευση αλλαγών"
818
-
819
- #: contact_form.php:1846
820
- #, php-format
821
- msgid ""
822
- "Please enable JavaScript to change '%s', '%s' options and for fields sorting."
823
  msgstr ""
824
 
825
- #: contact_form.php:1846 contact_form.php:1855
826
- msgid "Form layout"
 
 
 
 
 
 
 
 
827
  msgstr ""
828
 
829
  # @ contact_form
830
- #: contact_form.php:1846 contact_form.php:1867
 
831
  #, fuzzy
832
  msgid "Submit position"
833
  msgstr "Κομβίο Υποβολής"
834
 
835
- #: contact_form.php:1859
 
 
 
 
 
 
 
 
 
 
 
 
836
  msgid "One column"
837
  msgstr ""
838
 
839
- #: contact_form.php:1862
840
  msgid "Two columns"
841
  msgstr ""
842
 
843
- #: contact_form.php:1871 contact_form.php:1911 contact_form.php:1929
844
- #: contact_form.php:1944
 
 
845
  msgid "Left"
846
  msgstr ""
847
 
848
- #: contact_form.php:1874 contact_form.php:1917 contact_form.php:1932
849
- #: contact_form.php:1950
 
 
850
  msgid "Right"
851
  msgstr ""
852
 
853
- #: contact_form.php:1879
854
  msgid "Width"
855
  msgstr ""
856
 
857
- #: contact_form.php:1887
858
  msgid "Custom"
859
  msgstr ""
860
 
861
- #: contact_form.php:1894
862
  msgid "px"
863
  msgstr ""
864
 
865
- #: contact_form.php:1907
866
  msgid "Form align"
867
  msgstr ""
868
 
869
- #: contact_form.php:1914 contact_form.php:1947
 
870
  msgid "Center"
871
  msgstr ""
872
 
873
- # @ contact_form
874
- #: contact_form.php:1922
875
- #, fuzzy
876
- msgid "Labels position"
877
- msgstr "Κομβίο Υποβολής"
878
-
879
- #: contact_form.php:1926
880
  msgid "Top"
881
  msgstr ""
882
 
883
- #: contact_form.php:1935
884
  msgid "Bottom"
885
  msgstr ""
886
 
887
- #: contact_form.php:1940
888
- msgid "Labels align"
889
- msgstr ""
890
-
891
  # @ contact_form
892
- #: contact_form.php:1955
893
  msgid "Errors output"
894
  msgstr "Έξοδος σφαλμάτων"
895
 
896
  # @ contact_form
897
- #: contact_form.php:1958
898
  msgid "Display error messages"
899
  msgstr "Εμφάνιση μηνυμάτων σφαλμάτων"
900
 
901
  # @ contact_form
902
- #: contact_form.php:1959
903
  msgid "Color of the input field errors."
904
  msgstr "Χρώμα των σφαλμάτων στα πεδία εισαγωγής."
905
 
906
  # @ contact_form
907
- #: contact_form.php:1960
908
  msgid "Display error messages & color of the input field errors"
909
  msgstr ""
910
  "Εμφάνιση μηνυμάτων σφαλμάτων & χρώμα των σφαλμάτων στα πεδία εισαγωγής."
911
 
912
  # @ contact_form
913
- #: contact_form.php:1965
914
  msgid "Add placeholder to the input blocks"
915
  msgstr "Προσθήκη placeholder στα μπλοκς εισαγωγής"
916
 
917
  # @ contact_form
918
- #: contact_form.php:1971
919
- msgid "Add tooltips"
920
- msgstr "Προσθήκη επεξηγήσεων"
921
-
922
- # @ contact_form
923
- #: contact_form.php:1985
924
  msgid "Email address"
925
  msgstr "Email"
926
 
927
  # @ contact_form
928
- #: contact_form.php:1990 contact_form.php:3163 contact_form.php:3204
929
- msgid "Phone Number"
930
- msgstr "Αριθμός τηλεφώνου"
931
-
932
- # @ contact_form
933
- #: contact_form.php:2016
934
- msgid "Style options"
935
- msgstr "Ρυμθίσεις εμφάνισης"
936
-
937
- # @ contact_form
938
- #: contact_form.php:2020
939
  msgid "Text color"
940
  msgstr "Χρώμα κειμένου"
941
 
942
  # @ contact_form
943
- #: contact_form.php:2025
944
  msgid "Label text color"
945
  msgstr "Χρώμα κειμένου ετικέτας"
946
 
947
  # @ contact_form
948
- #: contact_form.php:2030
949
  msgid "Placeholder color"
950
  msgstr "Χρώμα placeholder"
951
 
952
  # @ contact_form
953
- #: contact_form.php:2035
954
  msgid "Errors color"
955
  msgstr "Χρώμα σφαλμάτων"
956
 
957
  # @ contact_form
958
- #: contact_form.php:2040
959
  msgid "Error text color"
960
  msgstr "Χρώμα κειμένου σφάλματος"
961
 
962
  # @ contact_form
963
- #: contact_form.php:2045
964
  msgid "Background color of the input field errors"
965
  msgstr "Χρώμα φόντου στα πεδία εισαγωγής σφαλμάτων"
966
 
967
  # @ contact_form
968
- #: contact_form.php:2050
969
  msgid "Border color of the input field errors"
970
  msgstr "Χρώμα περιγράμματος στα πεδία εισαγωγής σφαλμάτων"
971
 
972
  # @ contact_form
973
- #: contact_form.php:2055
974
  msgid "Placeholder color of the input field errors"
975
  msgstr "Χρώμα placeholder στα πεδία εισαγωγής σφαλμάτων"
976
 
977
  # @ contact_form
978
- #: contact_form.php:2060
979
  msgid "Input fields"
980
  msgstr "Πεδία εισαγωγής"
981
 
982
  # @ contact_form
983
- #: contact_form.php:2065
984
  msgid "Input fields background color"
985
  msgstr "Χρώμα φόντου στα πεδία εισαγωγής"
986
 
987
  # @ contact_form
988
- #: contact_form.php:2070
989
  msgid "Text fields color"
990
  msgstr "Χρώμα πεδίων κειμένου"
991
 
992
  # @ contact_form
993
- #: contact_form.php:2074
994
  msgid "Border width in px, numbers only"
995
  msgstr "Πλάτος περιγράμματος σε px, μόνο αριθμοί"
996
 
997
  # @ contact_form
998
- #: contact_form.php:2079 contact_form.php:2103
 
999
  msgid "Border color"
1000
  msgstr "Χρώμα περιγράμματος"
1001
 
1002
  # @ contact_form
1003
- #: contact_form.php:2084
1004
  msgid "Submit button"
1005
  msgstr "Κομβίο Υποβολής"
1006
 
1007
  # @ contact_form
1008
- #: contact_form.php:2088
1009
  msgid "Width in px, numbers only"
1010
  msgstr "Πλάτος σε px, μόνο αριθμοί"
1011
 
1012
  # @ contact_form
1013
- #: contact_form.php:2093
1014
  msgid "Button color"
1015
  msgstr "Χρώμα κομβίου"
1016
 
1017
  # @ contact_form
1018
- #: contact_form.php:2098
1019
  msgid "Button text color"
1020
  msgstr "Χρώμα κειμένου κομβίου"
1021
 
1022
  # @ contact_form
1023
- #: contact_form.php:2127
1024
  #, fuzzy
1025
  msgid "Contact Form | Preview"
1026
  msgstr "Contact Form Pro | Προεπισκόπηση"
1027
 
1028
- #: contact_form.php:2128
1029
  msgid "Drag the necessary field to sort fields."
1030
  msgstr ""
1031
 
1032
- # @ contact_form
1033
- #: contact_form.php:2364
1034
- #, fuzzy
1035
- msgid ""
1036
- "If you would like to add the Contact Form to your website, just copy and "
1037
- "paste this shortcode to your post or page or widget"
1038
  msgstr ""
1039
- "Αν θέλετε να προσθέσετε τη Φόρμα Επικοινωνίας στην ιστοσελίδα σας, απλά "
1040
- "αντιγράψετε και επικολλήσετε αυτό το σύντομο κωδικό στο άρθρο, στη σελίδα ή "
1041
- "στο widget σας:"
1042
 
1043
- # @ contact_form
1044
- #: contact_form.php:2486
1045
- msgid "Sorry, email message could not be delivered."
1046
  msgstr ""
1047
- "Λυπούμαστε, το μήνυμα ηλεκτρονικού ταχυδρομείου δεν μπόρεσε να παραδοθεί."
1048
-
1049
- # @ contact_form
1050
- #: contact_form.php:3090 contact_form.php:3092
1051
- msgid "Sent from (ip address)"
1052
- msgstr "Εστάλη από (διεύθυνση IP)"
1053
-
1054
- # @ contact_form
1055
- #: contact_form.php:3120
1056
- msgid "Contact from"
1057
- msgstr "Φόρμμα επικοινωνίας"
1058
 
1059
  # @ contact_form
1060
- #: contact_form.php:3125 contact_form.php:3174
1061
- msgid "Site"
1062
- msgstr "Ιστοσελίδα"
1063
 
1064
  # @ contact_form
1065
- #: contact_form.php:3286
1066
- msgid ""
1067
- "If you can see this MIME, it means that the MIME type is not supported by "
1068
- "your email client!"
1069
- msgstr ""
1070
- "Εάν δεν μπορείτε να δείτε αυτό το MIME, αυτό σημαίνει ότι ο τύπος MIME δεν "
1071
- "υποστηρίζεται από τον email client σας!"
 
1072
 
1073
- # @ contact_form
1074
- #: contact_form.php:3358
1075
- msgid "FAQ"
1076
- msgstr "Συχνές Ερωτήσεις"
1077
 
1078
  # @ contact_form
1079
- #: contact_form.php:3359
1080
- msgid "Support"
1081
- msgstr "Υποστήριξη"
1082
 
1083
  # @ contact_form
1084
- #: contact_form.php:3408
1085
- msgid "Are you sure that you want to delete this language data?"
1086
- msgstr "Είστε σίγουροι ότι θέλετε να διαγράψετε τα δεδομένα αυτής της γλώσσας;"
1087
-
1088
- # @ contact_form
1089
- #: contact_form.php:3431
1090
  #, fuzzy
1091
- msgid "Add multiple forms"
1092
- msgstr "Προσθήκη στη φόρμα"
1093
-
1094
- #: contact_form.php:3431
1095
- msgid ""
1096
- "Install Contact Form Multi plugin to create unlimited number of contact "
1097
- "forms."
1098
- msgstr ""
1099
 
1100
  # @ contact_form
1101
- #: contact_form.php:3436
1102
- #, fuzzy
1103
- msgid "Learn more"
1104
- msgstr "Μάθετε περισσότερα"
1105
-
1106
- #: contact_form.php:3494
1107
- msgid "Error"
1108
- msgstr ""
1109
-
1110
- #: contact_form.php:3494 contact_form.php:3496
1111
- msgid "Illegal language code"
1112
- msgstr ""
1113
-
1114
- #: contact_form.php:3681
1115
- msgid "Close notice"
1116
- msgstr ""
1117
 
1118
  # @ contact_form
1119
- #: contact_form.php:3686
1120
  #, fuzzy
1121
- msgid "allows to store your messages to the database."
1122
- msgstr ""
1123
- "<strong>Contact Form to DB</strong> επιτρέπει να αποθηκεύετε τα μηνύματά σας "
1124
- "στη βάση δεδομένων."
1125
-
1126
- # @ contact_form
1127
- #: contact_form.php:3687
1128
- msgid "Manage messages that have been sent from your website."
1129
- msgstr "Διαχειριστείτε τα μηνύματα που έχουν σταλεί από την ιστοσελίδα σας."
1130
 
1131
  # @ contact_form
1132
- #: contact_form.php:3690
1133
- msgid "Learn More"
1134
- msgstr "Μάθετε περισσότερα"
 
 
 
 
 
1135
 
1136
  # @ contact_form
1137
- #: contact_form.php:3750
1138
- #, fuzzy
1139
- msgid "Contact form"
1140
- msgstr "Φόρμμα επικοινωνίας"
1141
 
1142
  # @ contact_form
1143
- #: contact_form.php:3763 contact_form.php:3773
1144
- #, fuzzy
1145
- msgid "Language"
1146
- msgstr "Προσθήκη γλώσσας"
 
 
 
 
 
1147
 
1148
  # @ contact_form
1149
  #~ msgid "Example: Sent from (IP address):\t127.0.0.1"
2
  msgstr ""
3
  "Project-Id-Version: Contact Form\n"
4
  "Report-Msgid-Bugs-To: \n"
5
+ "POT-Creation-Date: 2019-02-25 16:26+0200\n"
6
+ "PO-Revision-Date: 2019-02-25 16:26+0200\n"
7
  "Last-Translator: plugin@bestwebsoft.com <plugin@bestwebsoft.com>\n"
8
  "Language-Team: Dimitris Karantonis <dkarantonis@gmail.com>\n"
9
  "Language: el\n"
21
  "X-Poedit-SearchPath-0: .\n"
22
 
23
  # @ contact_form
24
+ #: contact_form.php:39 contact_form.php:47 contact_form.php:647
25
+ #: includes/class-cntctfrm-settings.php:425
26
  msgid "Contact Form Settings"
27
  msgstr "Ρυθμίσεις φόρμας επικοινωνίας"
28
 
29
  # @ contact_form
30
+ #: contact_form.php:48 contact_form.php:1619 contact_form.php:1633
31
+ #: includes/class-cntctfrm-settings.php:27
32
+ msgid "Settings"
33
+ msgstr "Ρυθμίσεις"
34
+
35
+ #: contact_form.php:63 includes/class-cntctfrm-settings.php:483
36
+ #: includes/class-cntctfrm-settings.php:817
37
+ #: includes/class-cntctfrm-settings.php:998
38
+ #: includes/class-cntctfrm-settings.php:1513
39
+ msgid "Upgrade to Pro"
40
+ msgstr ""
41
 
42
  # @ contact_form
43
+ #: contact_form.php:350 contact_form.php:1410 contact_form.php:1456
44
+ #: includes/class-cntctfrm-settings.php:574
45
+ #: includes/class-cntctfrm-settings.php:664
46
+ #: includes/class-cntctfrm-settings.php:1064
47
+ #: includes/class-cntctfrm-settings.php:1103
48
+ #: includes/class-cntctfrm-settings.php:1344
49
  msgid "Name"
50
  msgstr "Όνομα"
51
 
52
  # @ contact_form
53
+ #: contact_form.php:351 contact_form.php:1417 contact_form.php:1462
54
+ #: includes/class-cntctfrm-settings.php:711
55
+ #: includes/class-cntctfrm-settings.php:1065
56
+ #: includes/class-cntctfrm-settings.php:1104
57
+ #: includes/class-cntctfrm-settings.php:1349
58
  msgid "Address"
59
  msgstr "Διεύθυνση"
60
 
61
  # @ contact_form
62
+ #: contact_form.php:352 includes/class-cntctfrm-settings.php:727
63
+ #: includes/class-cntctfrm-settings.php:1066
64
+ #: includes/class-cntctfrm-settings.php:1105
65
  msgid "Email Address"
66
  msgstr "Διεύθυνση Email"
67
 
68
  # @ contact_form
69
+ #: contact_form.php:353 includes/class-cntctfrm-settings.php:747
70
+ #: includes/class-cntctfrm-settings.php:1067
71
+ #: includes/class-cntctfrm-settings.php:1106
72
  msgid "Phone number"
73
  msgstr "Αριθμός τηλεφώνου"
74
 
75
  # @ contact_form
76
+ #: contact_form.php:354 contact_form.php:1428 contact_form.php:1471
77
+ #: includes/class-cntctfrm-settings.php:763
78
+ #: includes/class-cntctfrm-settings.php:1068
79
+ #: includes/class-cntctfrm-settings.php:1107
80
+ #: includes/class-cntctfrm-settings.php:1364
81
  msgid "Subject"
82
  msgstr "Θέμα"
83
 
84
  # @ contact_form
85
+ #: contact_form.php:355 contact_form.php:1433 contact_form.php:1475
86
+ #: includes/class-cntctfrm-settings.php:787
87
+ #: includes/class-cntctfrm-settings.php:1069
88
+ #: includes/class-cntctfrm-settings.php:1108
89
+ #: includes/class-cntctfrm-settings.php:1368
90
  msgid "Message"
91
  msgstr "Μήνυμα"
92
 
93
  # @ contact_form
94
+ #: contact_form.php:356 includes/class-cntctfrm-settings.php:1070
95
+ #: includes/class-cntctfrm-settings.php:1109
96
+ #: includes/class-cntctfrm-settings.php:1373
97
  msgid "Attachment"
98
  msgstr "Συννημένο αρχείο"
99
 
100
  # @ contact_form
101
+ #: contact_form.php:357
102
  msgid ""
103
  "Supported file types: HTML, TXT, CSS, GIF, PNG, JPEG, JPG, TIFF, BMP, AI, "
104
  "EPS, PS, CSV, RTF, PDF, DOC, DOCX, XLS, XLSX, ZIP, RAR, WAV, MP3, PPT."
108
  "PPT."
109
 
110
  # @ contact_form
111
+ #: contact_form.php:358 includes/class-cntctfrm-settings.php:1072
112
+ #: includes/class-cntctfrm-settings.php:1111
113
  msgid "Send me a copy"
114
  msgstr "Αποστολή αντιγράφου"
115
 
116
+ #: contact_form.php:359 includes/class-cntctfrm-settings.php:1073
117
+ #: includes/class-cntctfrm-settings.php:1112
118
  msgid "I consent to having this site collect my personal data."
119
  msgstr ""
120
 
121
  # @ contact_form
122
+ #: contact_form.php:360 includes/class-cntctfrm-settings.php:1074
123
+ #: includes/class-cntctfrm-settings.php:1113
124
  msgid "Submit"
125
  msgstr "Αποστολή"
126
 
127
  # @ contact_form
128
+ #: contact_form.php:361
129
  msgid "Your name is required."
130
  msgstr "Το όνομα σας είναι απαραίτητο."
131
 
132
  # @ contact_form
133
+ #: contact_form.php:362
134
  msgid "Address is required."
135
  msgstr "Η διεύθυνσή σας είναι απαραίτητη."
136
 
137
  # @ contact_form
138
+ #: contact_form.php:363
139
  msgid "A valid email address is required."
140
  msgstr "Απαιτείται μία έγκυρη διεύθυνση email."
141
 
142
  # @ contact_form
143
+ #: contact_form.php:364
144
  msgid "Phone number is required."
145
  msgstr "Ο αριθμός τηλεφώνου είναι απαραίτητος."
146
 
147
  # @ contact_form
148
+ #: contact_form.php:365
149
  msgid "Subject is required."
150
  msgstr "Το θέμα είναι απαραίτητο."
151
 
152
  # @ contact_form
153
+ #: contact_form.php:366
154
  msgid "Message text is required."
155
  msgstr "Το μήνυμα κειμένου είναι απαραίτητο."
156
 
157
  # @ contact_form
158
+ #: contact_form.php:367
159
  msgid "File format is not valid."
160
  msgstr "Ο τύπος του αρχείου δεν είναι έγκυρος."
161
 
162
  # @ contact_form
163
+ #: contact_form.php:368
164
  msgid "File upload error."
165
  msgstr "Πρόβλημα κατά το ανέβασμα του αρχείου."
166
 
167
  # @ contact_form
168
+ #: contact_form.php:369
169
  msgid "The file could not be uploaded."
170
  msgstr "Το αρχείο δεν μπορούσε να ανέβει."
171
 
172
  # @ contact_form
173
+ #: contact_form.php:370
174
  msgid "This file is too large."
175
  msgstr "Το μέγεθος αρχείου είναι πολύ μεγάλο."
176
 
177
  # @ contact_form
178
+ #: contact_form.php:371
179
  msgid "Please fill out the CAPTCHA."
180
  msgstr "Παρακαλούμε, συμπληρώστε το πεδίο CAPTCHA."
181
 
182
  # @ contact_form
183
+ #: contact_form.php:372
184
  msgid "Please make corrections below and try again."
185
  msgstr ""
186
  "Παρακαλούμε, προχωρήστε στις παρακακάτω διορθώσεις και προσπαθήστε ξανά."
187
 
188
  # @ contact_form
189
+ #: contact_form.php:374
190
  msgid "Thank you for contacting us."
191
  msgstr "Σας ευχαριστούμε για την επικοινωνία."
192
 
193
+ #: contact_form.php:651
194
+ msgid "NEW_FORM"
195
+ msgstr ""
196
+
197
  # @ contact_form
198
+ #: contact_form.php:652
199
+ msgid ""
200
+ "If you want to create multiple contact forms, please install the Contact "
201
+ "Form Multi plugin."
202
+ msgstr ""
203
+ "Αν θέλετε να δημιουργήσετε πολλαπλές μορφές επαφής, παρακαλούμε "
204
+ "εγκαταστήσετε την επέκταση φόρμα επικοινωνίας Multi."
205
 
206
+ #: contact_form.php:657
207
  msgid ""
208
+ "Contact Form plugin doesn't support your current version of Contact Form "
209
+ "Multi plugin. Please update Contact Form Multi plugin to version 1.2.6 or "
210
+ "higher."
211
  msgstr ""
212
 
213
  # @ contact_form
214
+ #: contact_form.php:759
215
+ msgid "Sorry, email message could not be delivered."
 
 
216
  msgstr ""
217
+ "Λυπούμαστε, το μήνυμα ηλεκτρονικού ταχυδρομείου δεν μπόρεσε να παραδοθεί."
 
218
 
219
  # @ contact_form
220
+ #: contact_form.php:1366 contact_form.php:1368
221
+ msgid "Sent from (ip address)"
222
+ msgstr "Εστάλη από (διεύθυνση IP)"
223
+
224
+ # @ contact_form
225
+ #: contact_form.php:1372 contact_form.php:1374
226
+ #: includes/class-cntctfrm-settings.php:1024
227
+ msgid "Date/Time"
228
+ msgstr "Ημερομηνία/Ώρα"
229
+
230
+ # @ contact_form
231
+ #: contact_form.php:1378 contact_form.php:1380
232
+ #: includes/class-cntctfrm-settings.php:1025
233
+ msgid "Sent from (referer)"
234
+ msgstr "Εστάλη από (παραπέμπτης)"
235
+
236
+ # @ contact_form
237
+ #: contact_form.php:1384 contact_form.php:1386
238
+ #: includes/class-cntctfrm-settings.php:1026
239
+ msgid "Using (user agent)"
240
+ msgstr "Χρήση (μέσο χρήστη)"
241
+
242
+ # @ contact_form
243
+ #: contact_form.php:1396
244
+ msgid "Contact from"
245
+ msgstr "Φόρμμα επικοινωνίας"
246
+
247
+ # @ contact_form
248
+ #: contact_form.php:1401 contact_form.php:1450
249
+ msgid "Site"
250
+ msgstr "Ιστοσελίδα"
251
+
252
+ # @ contact_form
253
+ #: contact_form.php:1423 contact_form.php:1467
254
+ #: includes/class-cntctfrm-settings.php:598
255
+ msgid "Email"
256
+ msgstr "Email"
257
 
258
  # @ contact_form
259
+ #: contact_form.php:1439 contact_form.php:1480
260
+ #: includes/class-cntctfrm-settings.php:1359
261
+ msgid "Phone Number"
262
+ msgstr "Αριθμός τηλεφώνου"
263
+
264
+ # @ contact_form
265
+ #: contact_form.php:1562
266
  msgid ""
267
+ "If you can see this MIME, it means that the MIME type is not supported by "
268
+ "your email client!"
269
  msgstr ""
270
+ "Εάν δεν μπορείτε να δείτε αυτό το MIME, αυτό σημαίνει ότι ο τύπος MIME δεν "
271
+ "υποστηρίζεται από τον email client σας!"
272
 
273
  # @ contact_form
274
+ #: contact_form.php:1634
275
+ msgid "FAQ"
276
+ msgstr "Συχνές Ερωτήσεις"
277
 
278
  # @ contact_form
279
+ #: contact_form.php:1635
280
+ msgid "Support"
281
+ msgstr "Υποστήριξη"
282
 
283
+ # @ contact_form
284
+ #: contact_form.php:1684
285
+ msgid "Are you sure that you want to delete this language data?"
286
+ msgstr "Είστε σίγουροι ότι θέλετε να διαγράψετε τα δεδομένα αυτής της γλώσσας;"
287
+
288
+ # @ contact_form
289
+ #: contact_form.php:1706
290
+ #, fuzzy
291
+ msgid "Add multiple forms"
292
+ msgstr "Προσθήκη στη φόρμα"
293
+
294
+ #: contact_form.php:1706
295
+ msgid ""
296
+ "Install Contact Form Multi plugin to create unlimited number of contact "
297
+ "forms."
298
  msgstr ""
299
 
300
+ # @ contact_form
301
+ #: contact_form.php:1711
302
+ #, fuzzy
303
+ msgid "Learn more"
304
+ msgstr "Μάθετε περισσότερα"
305
+
306
+ #: contact_form.php:1715 includes/class-cntctfrm-settings.php:469
307
+ #: includes/class-cntctfrm-settings.php:987
308
+ #: includes/class-cntctfrm-settings.php:1272
309
+ msgid "Close"
310
+ msgstr ""
311
+
312
+ #: contact_form.php:1769
313
+ msgid "Error"
314
+ msgstr ""
315
+
316
+ #: contact_form.php:1769 contact_form.php:1771
317
+ msgid "Illegal language code"
318
  msgstr ""
319
 
320
  # @ contact_form
321
+ #: contact_form.php:1805 contact_form.php:1807
322
+ #: includes/class-cntctfrm-settings.php:1089
323
+ #: includes/class-cntctfrm-settings.php:1091
324
+ #: includes/class-cntctfrm-settings.php:1128
325
+ #: includes/class-cntctfrm-settings.php:1130
326
+ #: includes/class-cntctfrm-settings.php:1162
327
+ #: includes/class-cntctfrm-settings.php:1164
328
+ #: includes/class-cntctfrm-settings.php:1176
329
+ #: includes/class-cntctfrm-settings.php:1178
330
+ msgid "Use shortcode"
331
+ msgstr "Χρήση σύντομου κωδικού"
332
 
333
  # @ contact_form
334
+ #: contact_form.php:1805 contact_form.php:1807
335
+ #: includes/class-cntctfrm-settings.php:1089
336
+ #: includes/class-cntctfrm-settings.php:1091
337
+ #: includes/class-cntctfrm-settings.php:1128
338
+ #: includes/class-cntctfrm-settings.php:1130
339
+ #: includes/class-cntctfrm-settings.php:1162
340
+ #: includes/class-cntctfrm-settings.php:1164
341
+ #: includes/class-cntctfrm-settings.php:1176
342
+ #: includes/class-cntctfrm-settings.php:1178
343
+ msgid "for this language"
344
+ msgstr "για τη συγκεκριμένη γλώσσα"
345
 
346
+ #: contact_form.php:1955
347
+ msgid "Close notice"
348
  msgstr ""
349
 
350
+ # @ contact_form
351
+ #: contact_form.php:1960
352
+ #, fuzzy
353
+ msgid "allows to store your messages to the database."
354
  msgstr ""
355
+ "<strong>Contact Form to DB</strong> επιτρέπει να αποθηκεύετε τα μηνύματά σας "
356
+ "στη βάση δεδομένων."
357
 
358
  # @ contact_form
359
+ #: contact_form.php:1961
360
+ msgid "Manage messages that have been sent from your website."
361
+ msgstr "Διαχειριστείτε τα μηνύματα που έχουν σταλεί από την ιστοσελίδα σας."
362
 
363
  # @ contact_form
364
+ #: contact_form.php:1964
365
+ msgid "Learn More"
366
+ msgstr "Μάθετε περισσότερα"
367
+
368
+ # @ contact_form
369
+ #: contact_form.php:2024
370
  #, fuzzy
371
+ msgid "Contact form"
372
+ msgstr "Φόρμμα επικοινωνίας"
373
 
374
+ # @ contact_form
375
+ #: contact_form.php:2037 contact_form.php:2047
376
+ #, fuzzy
377
+ msgid "Language"
378
+ msgstr "Προσθήκη γλώσσας"
379
+
380
+ #: includes/class-cntctfrm-settings.php:28
381
+ #: includes/class-cntctfrm-settings.php:546
382
+ msgid "Additional Settings"
383
  msgstr ""
384
 
385
+ #: includes/class-cntctfrm-settings.php:29
386
+ #: includes/class-cntctfrm-settings.php:1198
387
+ msgid "Appearance"
388
+ msgstr ""
389
+
390
+ #: includes/class-cntctfrm-settings.php:30
391
+ msgid "Misc"
392
+ msgstr ""
393
+
394
+ #: includes/class-cntctfrm-settings.php:31
395
+ msgid "License Key"
396
+ msgstr ""
397
+
398
+ #: includes/class-cntctfrm-settings.php:32
399
+ msgid "Custom Code"
400
+ msgstr ""
401
+
402
+ #: includes/class-cntctfrm-settings.php:99
403
+ msgid "Please enable JavaScript in your browser."
404
+ msgstr ""
405
+
406
+ #: includes/class-cntctfrm-settings.php:101
407
+ #, php-format
408
  msgid ""
409
+ "Contact Form plugin requires PHP %s or higher. Please contact your hosting "
410
+ "provider to upgrade PHP version."
411
+ msgstr ""
412
+
413
+ #: includes/class-cntctfrm-settings.php:347
414
+ msgid ""
415
+ "Email 'FROM' field option was changed, which may cause email messages being "
416
+ "moved to the spam folder or email delivery failures."
417
  msgstr ""
 
 
418
 
419
  # @ contact_form
420
+ #: includes/class-cntctfrm-settings.php:357
 
421
  msgid ""
422
+ "If the 'Redirect to page' option is selected then the URL field should be in "
423
+ "the following format"
424
  msgstr ""
425
+ "Αν είναι ενεργοποιημένη η επιλογή \"Ανακατεύθυνση στη σελίδα\", τότε το "
426
+ "πεδίο URL θα πρέπει να έχει την ακόλουθη μορφή"
 
427
 
428
+ # @ contact_form
429
+ #: includes/class-cntctfrm-settings.php:364
430
+ msgid "Such user does not exist."
431
+ msgstr "Τέτοιος χρήστης δεν υπάρχει."
432
+
433
+ # @ contact_form
434
+ #: includes/class-cntctfrm-settings.php:374
435
  msgid ""
436
+ "Please enter a valid email address in the 'Use this email address' field."
 
 
 
437
  msgstr ""
438
+ "Παρακαλούμε, εισάγετε μια έγκυρη διεύθυνση email στο πεδίο 'Χρησιμοποιήστε "
439
+ "αυτήν τη διεύθυνση email'."
440
 
441
  # @ contact_form
442
+ #: includes/class-cntctfrm-settings.php:382
443
+ msgid "Please enter a valid email address in the 'FROM' field."
444
+ msgstr "Παρακαλούμε, εισάγετε μια έγκυρη διεύθυνση email στο πεδίο «ΑΠΟ»."
445
+
446
+ # @ contact_form
447
+ #: includes/class-cntctfrm-settings.php:402
448
+ msgid "Settings saved."
449
+ msgstr "Οι ρυθμίσεις αποθηκεύτηκαν."
450
+
451
+ # @ contact_form
452
+ #: includes/class-cntctfrm-settings.php:404
453
+ msgid "Settings are not saved."
454
+ msgstr "Οι ρυθμίσεις δεν αποθηκεύτηκαν."
455
+
456
+ # @ contact_form
457
+ #: includes/class-cntctfrm-settings.php:429
458
  msgid ""
459
  "If you leave the fields empty, the messages will be sent to the email "
460
  "address specified during registration."
463
  "καθορίσατε κατά την εγγραφή σας."
464
 
465
  # @ contact_form
466
+ #: includes/class-cntctfrm-settings.php:432
467
  #, fuzzy
468
  msgid "The user's email address"
469
  msgstr "Η διεύθυνση email του χρήστη:"
470
 
471
  # @ contact_form
472
+ #: includes/class-cntctfrm-settings.php:437
473
  #, fuzzy
474
  msgid "Select a username"
475
  msgstr "Δημιουργήστε ένα όνομα χρήστη"
476
 
477
  # @ contact_form
478
+ #: includes/class-cntctfrm-settings.php:450
479
  #, fuzzy
480
  msgid ""
481
  "Select a username of the person who should get the messages from the contact "
485
  "επικοινωνίας."
486
 
487
  # @ contact_form
488
+ #: includes/class-cntctfrm-settings.php:455
489
  #, fuzzy
490
  msgid "Use this email address"
491
  msgstr "Χρησιμοποιήστε αυτήν τη διεύθυνση email: "
492
 
493
  # @ contact_form
494
+ #: includes/class-cntctfrm-settings.php:460
495
  #, fuzzy
496
  msgid "Enter the email address for receiving messages"
497
  msgstr "Εισάγετε τη διεύθυνση email που θέλετε τα μηνύματα να προωθούνται."
498
 
 
 
 
 
 
499
  # @ contact_form
500
+ #: includes/class-cntctfrm-settings.php:473
501
  #, fuzzy
502
  msgid "Add department selectbox to the contact form"
503
  msgstr "Προσθέστε τμήμα selectbox στην φόρμα επικοινωνίας:"
504
 
505
  # @ contact_form
506
+ #: includes/class-cntctfrm-settings.php:492
 
 
 
 
 
 
 
 
 
 
 
 
507
  msgid "Save emails to the database"
508
  msgstr "Αποθηκεύστε τα μηνύματα ηλεκτρονικού ταχυδρομείου στη βάση δεδομένων"
509
 
510
  # @ contact_form
511
+ #: includes/class-cntctfrm-settings.php:504
512
+ #: includes/class-cntctfrm-settings.php:518
513
+ #: includes/class-cntctfrm-settings.php:525
514
  msgid "Using"
515
  msgstr "Χρήση"
516
 
517
+ #: includes/class-cntctfrm-settings.php:510
518
+ #: includes/class-cntctfrm-settings.php:889
519
+ #: includes/class-cntctfrm-settings.php:930
520
+ #: includes/class-cntctfrm-settings.php:965
521
  msgid "Please activate the appropriate option on"
522
  msgstr ""
523
 
524
  # @ contact_form
525
+ #: includes/class-cntctfrm-settings.php:513
526
+ #: includes/class-cntctfrm-settings.php:892
527
+ #: includes/class-cntctfrm-settings.php:933
528
+ #: includes/class-cntctfrm-settings.php:968
529
  #, fuzzy
530
  msgid "settings page"
531
  msgstr "Οι ρυθμίσεις αποθηκεύτηκαν."
532
 
533
  # @ contact_form
534
+ #: includes/class-cntctfrm-settings.php:519
535
+ #: includes/class-cntctfrm-settings.php:899
536
+ #: includes/class-cntctfrm-settings.php:941
537
+ #: includes/class-cntctfrm-settings.php:975
538
  #, fuzzy
539
  msgid "Activate"
540
  msgstr "Ενεργοποίηση captcha"
541
 
542
  # @ contact_form
543
+ #: includes/class-cntctfrm-settings.php:526
544
+ #: includes/class-cntctfrm-settings.php:908
545
+ #: includes/class-cntctfrm-settings.php:947
546
+ #: includes/class-cntctfrm-settings.php:980
547
  #, fuzzy
548
  msgid "Download"
549
  msgstr "Κατέβασμα captcha"
550
 
551
+ #: includes/class-cntctfrm-settings.php:551
552
  msgid "Sending method"
553
  msgstr ""
554
 
555
  # @ contact_form
556
+ #: includes/class-cntctfrm-settings.php:556
557
  msgid "Wp-mail"
558
  msgstr "Wp-mail"
559
 
560
  # @ contact_form
561
+ #: includes/class-cntctfrm-settings.php:557
562
  #, fuzzy
563
  msgid "You can use the Wordpress wp_mail function for mailing"
564
  msgstr ""
565
  "Μπορείτε να χρησιμοποιήσετε τη λειτουργία wp_mail για την αποστολή emails"
566
 
567
  # @ contact_form
568
+ #: includes/class-cntctfrm-settings.php:562
569
  msgid "Mail"
570
  msgstr "Tαχυδρομείο"
571
 
572
  # @ contact_form
573
+ #: includes/class-cntctfrm-settings.php:563
574
  #, fuzzy
575
  msgid "You can use the PHP mail function for mailing"
576
  msgstr ""
577
  "Μπορείτε να χρησιμοποιήσετε τη λειτουργία wp_mail για την αποστολή emails"
578
 
579
+ #: includes/class-cntctfrm-settings.php:569
580
  msgid "'FROM' field"
581
  msgstr ""
582
 
583
  # @ contact_form
584
+ #: includes/class-cntctfrm-settings.php:585
585
  msgid "User name"
586
  msgstr "Όνομα χρήστη"
587
 
588
  # @ contact_form
589
+ #: includes/class-cntctfrm-settings.php:587
590
  msgid ""
591
  "The name of the user who fills the form will be used in the field 'From'."
592
  msgstr ""
594
  "'Από'."
595
 
596
  # @ contact_form
597
+ #: includes/class-cntctfrm-settings.php:609
 
 
 
 
 
598
  msgid "User email"
599
  msgstr "Email χρήστη"
600
 
601
  # @ contact_form
602
+ #: includes/class-cntctfrm-settings.php:611
603
  msgid ""
604
  "The email address of the user who fills the form will be used in the field "
605
  "'From'."
607
  "Η διεύθυνση email του χρήστη που συμπληρώνει τη φόρμα θα χρησιμοποιηθεί στο "
608
  "πεδίο 'Από'."
609
 
610
+ #: includes/class-cntctfrm-settings.php:620
611
  msgid ""
612
  "If this option is changed, email messages may be moved to the spam folder or "
613
  "email delivery failures may occur."
614
  msgstr ""
615
 
616
  # @ contact_form
617
+ #: includes/class-cntctfrm-settings.php:629
618
  msgid "Required symbol"
619
  msgstr "Απαιτούμενο σύμβολο"
620
 
621
  # @ contact_form
622
+ #: includes/class-cntctfrm-settings.php:639
623
  msgid "Fields"
624
  msgstr "Πεδία"
625
 
626
  # @ contact_form
627
+ #: includes/class-cntctfrm-settings.php:640
628
+ #: includes/class-cntctfrm-settings.php:667
629
+ #: includes/class-cntctfrm-settings.php:694
630
+ #: includes/class-cntctfrm-settings.php:714
631
+ #: includes/class-cntctfrm-settings.php:750
632
+ #: includes/class-cntctfrm-settings.php:832
633
  msgid "Used"
634
  msgstr "Χρησιμοποιείται"
635
 
636
  # @ contact_form
637
+ #: includes/class-cntctfrm-settings.php:641
638
+ #: includes/class-cntctfrm-settings.php:656
639
+ #: includes/class-cntctfrm-settings.php:671
640
+ #: includes/class-cntctfrm-settings.php:698
641
+ #: includes/class-cntctfrm-settings.php:718
642
+ #: includes/class-cntctfrm-settings.php:754
643
+ #: includes/class-cntctfrm-settings.php:767
644
+ #: includes/class-cntctfrm-settings.php:791
645
  msgid "Required"
646
  msgstr "Απαιτούμενο"
647
 
648
  # @ contact_form
649
+ #: includes/class-cntctfrm-settings.php:643
650
+ #: includes/class-cntctfrm-settings.php:676
651
+ #: includes/class-cntctfrm-settings.php:733
652
+ #: includes/class-cntctfrm-settings.php:772
653
+ #: includes/class-cntctfrm-settings.php:796
654
  msgid "Visible"
655
  msgstr "Ορατό"
656
 
657
  # @ contact_form
658
+ #: includes/class-cntctfrm-settings.php:644
659
+ #: includes/class-cntctfrm-settings.php:680
660
+ #: includes/class-cntctfrm-settings.php:737
661
+ #: includes/class-cntctfrm-settings.php:776
662
+ #: includes/class-cntctfrm-settings.php:800
663
  msgid "Disabled for editing"
664
  msgstr "Δεν επιτρέπεται η επεξεργασία"
665
 
666
  # @ contact_form
667
+ #: includes/class-cntctfrm-settings.php:645
668
+ #: includes/class-cntctfrm-settings.php:704
669
+ #: includes/class-cntctfrm-settings.php:780
670
+ #: includes/class-cntctfrm-settings.php:804
671
  msgid "Field's default value"
672
  msgstr "Προκαθορισμένη τιμή πεδίου"
673
 
674
  # @ contact_form
675
+ #: includes/class-cntctfrm-settings.php:652
676
  #, fuzzy
677
  msgid "Department selectbox"
678
  msgstr "Τοποθεσία selectbox"
679
 
680
+ #: includes/class-cntctfrm-settings.php:684
681
  msgid "Use User's name as a default value if the user is logged in."
682
  msgstr ""
683
 
684
+ #: includes/class-cntctfrm-settings.php:685
685
+ #: includes/class-cntctfrm-settings.php:742
686
  msgid ""
687
  "'Visible' and 'Disabled for editing' options will be applied only to logged-"
688
  "in users."
689
  msgstr ""
690
 
691
  # @ contact_form
692
+ #: includes/class-cntctfrm-settings.php:691
693
  msgid "Location selectbox"
694
  msgstr "Τοποθεσία selectbox"
695
 
696
+ #: includes/class-cntctfrm-settings.php:741
697
  msgid "Use User's email as a default value if the user is logged in."
698
  msgstr ""
699
 
700
  # @ contact_form
701
+ #: includes/class-cntctfrm-settings.php:825
702
  msgid "Attachment block"
703
  msgstr "Συνημμένο μπλοκ"
704
 
705
  # @ contact_form
706
+ #: includes/class-cntctfrm-settings.php:827
707
  msgid "Users can attach the following file formats"
708
  msgstr "Οι χρήστες μπορούν να επισυνάψουν τις ακόλουθες μορφές αρχείων"
709
 
710
  # @ contact_form
711
+ #: includes/class-cntctfrm-settings.php:845
712
  msgid "Add to the form"
713
  msgstr "Προσθήκη στη φόρμα"
714
 
715
  # @ contact_form
716
+ #: includes/class-cntctfrm-settings.php:850
717
  msgid "Tips below the Attachment"
718
  msgstr "Συμβουλές κάτω από το συνημμένο"
719
 
720
  # @ contact_form
721
+ #: includes/class-cntctfrm-settings.php:857
722
  msgid "'Send me a copy' block"
723
  msgstr "Μπλοκ 'Στείλε μου ένα αντίγραφο'"
724
 
725
+ #: includes/class-cntctfrm-settings.php:864
726
  msgid "GDPR Compliance"
727
  msgstr ""
728
 
729
+ #: includes/class-cntctfrm-settings.php:869
730
  msgid "Link to Privacy Policy Page"
731
  msgstr ""
732
 
733
+ #: includes/class-cntctfrm-settings.php:873
734
  msgid "Text for Privacy Policy Link"
735
  msgstr ""
736
 
737
+ #: includes/class-cntctfrm-settings.php:901
738
  msgid "Activate for network"
739
  msgstr ""
740
 
741
  # @ contact_form
742
+ #: includes/class-cntctfrm-settings.php:991
743
  msgid "Agreement checkbox"
744
  msgstr "Checkbox συμφωνίας"
745
 
746
  # @ contact_form
747
+ #: includes/class-cntctfrm-settings.php:991
748
  msgid "Required checkbox for submitting the form"
749
  msgstr "Απαιτούμενο checkbox για την υποβολή της φόρμας"
750
 
751
  # @ contact_form
752
+ #: includes/class-cntctfrm-settings.php:992
753
  msgid "Optional checkbox"
754
  msgstr "Προαιρετικό checkbox"
755
 
756
  # @ contact_form
757
+ #: includes/class-cntctfrm-settings.php:992
758
  msgid "Optional checkbox, the results of which will be displayed in email"
759
  msgstr "Optional checkbox, τα αποτελέσματα του οποίου θα εμφανίζεται στο email"
760
 
761
  # @ contact_form
762
+ #: includes/class-cntctfrm-settings.php:1007
763
  msgid "Delete an attachment file from the server after the email is sent"
764
  msgstr ""
765
  "Διαγραφή συνημμένου αρχείου από τον διακομιστή μετά την αποστολή του email"
766
 
767
  # @ contact_form
768
+ #: includes/class-cntctfrm-settings.php:1013
769
  msgid "Email in HTML format sending"
770
  msgstr "Αποστολή email σε μορφή HTML "
771
 
772
  # @ contact_form
773
+ #: includes/class-cntctfrm-settings.php:1017
774
  msgid "Display additional info in the email"
775
  msgstr "Εμφάνιση περισσότερων πληροφοριών στο email"
776
 
777
  # @ contact_form
778
+ #: includes/class-cntctfrm-settings.php:1023
779
  #, fuzzy
780
  msgid "Sent from (IP address)"
781
  msgstr "Εστάλη από (διεύθυνση IP)"
782
 
783
+ #: includes/class-cntctfrm-settings.php:1023
784
  msgid "Example: Sent from (IP address): 127.0.0.1"
785
  msgstr ""
786
 
787
+ #: includes/class-cntctfrm-settings.php:1024
 
 
 
 
 
788
  msgid "Example: Date/Time: August 19, 2013 8:50 pm"
789
  msgstr ""
790
 
791
+ #: includes/class-cntctfrm-settings.php:1025
 
 
 
 
 
792
  msgid ""
793
  "Example: Sent from (referer): https://bestwebsoft.com/contacts/contact-us/"
794
  msgstr ""
795
 
796
+ #: includes/class-cntctfrm-settings.php:1026
 
 
 
 
 
797
  msgid ""
798
  "Example: Using (user agent): Mozilla/5.0 (Windows NT 6.2; WOW64) "
799
  "AppleWebKit/537.36 (KHTML, like Gecko) Chrome/28.0.1500.95 Safari/537.36"
800
  msgstr ""
801
 
802
  # @ contact_form
803
+ #: includes/class-cntctfrm-settings.php:1031
804
  msgid "Language settings for the field names in the form"
805
  msgstr "Ρυθμίσεις γλώσσας για τα ονόματα πεδίων στη φόρμα"
806
 
807
  # @ contact_form
808
+ #: includes/class-cntctfrm-settings.php:1040
809
  msgid "Add a language"
810
  msgstr "Προσθήκη γλώσσας"
811
 
812
  # @ contact_form
813
+ #: includes/class-cntctfrm-settings.php:1044
814
  msgid "Change the names of the contact form fields and error messages"
815
  msgstr ""
816
  "Αλλάξτε τα ονόματα των πεδίων και των μηνύματα σφαλμάτων στη φόρμας "
817
  "επικοινωνίας "
818
 
819
  # @ contact_form
820
+ #: includes/class-cntctfrm-settings.php:1049
821
+ #: includes/class-cntctfrm-settings.php:1147
822
+ #: includes/class-cntctfrm-settings.php:1252
 
 
823
  msgid "Default"
824
  msgstr "Προκαθορισμένο"
825
 
826
  # @ contact_form
827
+ #: includes/class-cntctfrm-settings.php:1062
828
+ #: includes/class-cntctfrm-settings.php:1101
829
  msgid "click to expand/hide the list"
830
  msgstr "κάντε κλικ για να επεκτείνετε/αποκρύψετε τη λίστα"
831
 
832
  # @ contact_form
833
+ #: includes/class-cntctfrm-settings.php:1071
834
+ #: includes/class-cntctfrm-settings.php:1110
835
  msgid "Tips below the Attachment block"
836
  msgstr "Συμβουλές κάτω από το Συνημμένο μπλοκ"
837
 
838
  # @ contact_form
839
+ #: includes/class-cntctfrm-settings.php:1075
840
+ #: includes/class-cntctfrm-settings.php:1114
841
  msgid "Error message for the Name field"
842
  msgstr "Μήνυμα σφάλματος στο πεδίο 'Όνομα'"
843
 
844
  # @ contact_form
845
+ #: includes/class-cntctfrm-settings.php:1076
846
+ #: includes/class-cntctfrm-settings.php:1115
847
  msgid "Error message for the Address field"
848
  msgstr "Μήνυμα σφάλματος στο πεδίο 'Διεύθυνση'"
849
 
850
  # @ contact_form
851
+ #: includes/class-cntctfrm-settings.php:1077
852
+ #: includes/class-cntctfrm-settings.php:1116
853
  msgid "Error message for the Email field"
854
  msgstr "Μήνυμα σφάλματος στο πεδίο 'Email'"
855
 
856
  # @ contact_form
857
+ #: includes/class-cntctfrm-settings.php:1078
858
+ #: includes/class-cntctfrm-settings.php:1117
859
  msgid "Error message for the Phone field"
860
  msgstr "Μήνυμα σφάλματος στο πεδίο 'Αριθμός τηλεφώνου'"
861
 
862
  # @ contact_form
863
+ #: includes/class-cntctfrm-settings.php:1079
864
+ #: includes/class-cntctfrm-settings.php:1118
865
  msgid "Error message for the Subject field"
866
  msgstr "Μήνυμα σφάλματος στο πεδίο 'Θέμα'"
867
 
868
  # @ contact_form
869
+ #: includes/class-cntctfrm-settings.php:1080
870
+ #: includes/class-cntctfrm-settings.php:1119
871
  msgid "Error message for the Message field"
872
  msgstr "Μήνυμα σφάλματος στο πεδίο 'Μήνυμα'"
873
 
874
  # @ contact_form
875
+ #: includes/class-cntctfrm-settings.php:1081
876
+ #: includes/class-cntctfrm-settings.php:1120
877
  msgid "Error message about the file type for the Attachment field"
878
  msgstr "Μήνυμα σφάλματος σχετικά με τον τύπο αρχείου για το πεδίο 'Συνημμένο'"
879
 
880
  # @ contact_form
881
+ #: includes/class-cntctfrm-settings.php:1082
882
+ #: includes/class-cntctfrm-settings.php:1121
883
  msgid ""
884
  "Error message while uploading a file for the Attachment field to the server"
885
  msgstr ""
887
  "διακομιστή"
888
 
889
  # @ contact_form
890
+ #: includes/class-cntctfrm-settings.php:1083
891
+ #: includes/class-cntctfrm-settings.php:1122
892
  msgid "Error message while moving the file for the Attachment field"
893
  msgstr ""
894
  "Μήνυμα σφάλματος κατά τη μετακίνηση του αρχείου για το πεδίο 'Συνημμένο'"
895
 
896
  # @ contact_form
897
+ #: includes/class-cntctfrm-settings.php:1084
898
+ #: includes/class-cntctfrm-settings.php:1123
899
  msgid "Error message when file size limit for the Attachment field is exceeded"
900
  msgstr ""
901
  "Μήνυμα σφάλματος όταν το όριο μεγέθους αρχείου για το πεδίο 'Συνημμένο' έχει "
902
  "ξεπεραστεί"
903
 
904
  # @ contact_form
905
+ #: includes/class-cntctfrm-settings.php:1085
906
+ #: includes/class-cntctfrm-settings.php:1124
907
  msgid "Error message for the Captcha field"
908
  msgstr "Μήνυμα σφάλματος για το πεδίο 'Captcha'"
909
 
910
  # @ contact_form
911
+ #: includes/class-cntctfrm-settings.php:1086
912
+ #: includes/class-cntctfrm-settings.php:1125
913
  msgid "Error message for the whole form"
914
  msgstr "Μήνυμα σφάλματος συνολικά για τη φόρμα"
915
 
916
  # @ contact_form
917
+ #: includes/class-cntctfrm-settings.php:1138
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
918
  msgid "Use the changed names of the contact form fields in the email"
919
  msgstr ""
920
  "Χρησιμοποιήστε τα τροποποιημένα ονόματα των πεδίων της φόρμας επικοινωνίας "
921
  "στο email"
922
 
923
  # @ contact_form
924
+ #: includes/class-cntctfrm-settings.php:1144
925
  msgid "Action after email is sent"
926
  msgstr "Ενέργεια μετά την αποστολή του email"
927
 
928
  # @ contact_form
929
+ #: includes/class-cntctfrm-settings.php:1146
930
  msgid "Display text"
931
  msgstr "Εμφάνιση κειμένου"
932
 
933
  # @ contact_form
934
+ #: includes/class-cntctfrm-settings.php:1160
935
+ #: includes/class-cntctfrm-settings.php:1174
936
  msgid "Text"
937
  msgstr "Κείμενο"
938
 
939
  # @ contact_form
940
+ #: includes/class-cntctfrm-settings.php:1185
941
  msgid "Redirect to the page"
942
  msgstr "Ανακατεύθυνση στη σελίδα"
943
 
944
  # @ contact_form
945
+ #: includes/class-cntctfrm-settings.php:1186
946
  msgid "Url"
947
  msgstr "Url"
948
 
949
+ #: includes/class-cntctfrm-settings.php:1206
 
 
 
 
 
 
 
 
 
 
 
 
 
 
950
  #, php-format
951
  msgid ""
952
+ "Please enable JavaScript to change '%s', '%s', '%s', '%s' options and for "
953
+ "fields sorting."
 
954
  msgstr ""
 
 
 
 
955
 
956
+ #: includes/class-cntctfrm-settings.php:1207
957
+ #: includes/class-cntctfrm-settings.php:1224
958
+ msgid "Form layout"
 
 
 
 
 
 
959
  msgstr ""
960
 
961
+ # @ contact_form
962
+ #: includes/class-cntctfrm-settings.php:1208
963
+ #: includes/class-cntctfrm-settings.php:1291
964
+ #, fuzzy
965
+ msgid "Labels position"
966
+ msgstr "Κομβίο Υποβολής"
967
+
968
+ #: includes/class-cntctfrm-settings.php:1209
969
+ #: includes/class-cntctfrm-settings.php:1309
970
+ msgid "Labels align"
971
  msgstr ""
972
 
973
  # @ contact_form
974
+ #: includes/class-cntctfrm-settings.php:1210
975
+ #: includes/class-cntctfrm-settings.php:1236
976
  #, fuzzy
977
  msgid "Submit position"
978
  msgstr "Κομβίο Υποβολής"
979
 
980
+ # @ contact_form
981
+ #: includes/class-cntctfrm-settings.php:1211
982
+ #: includes/class-cntctfrm-settings.php:1340
983
+ msgid "Add tooltips"
984
+ msgstr "Προσθήκη επεξηγήσεων"
985
+
986
+ # @ contact_form
987
+ #: includes/class-cntctfrm-settings.php:1212
988
+ #: includes/class-cntctfrm-settings.php:1381
989
+ msgid "Style options"
990
+ msgstr "Ρυμθίσεις εμφάνισης"
991
+
992
+ #: includes/class-cntctfrm-settings.php:1228
993
  msgid "One column"
994
  msgstr ""
995
 
996
+ #: includes/class-cntctfrm-settings.php:1231
997
  msgid "Two columns"
998
  msgstr ""
999
 
1000
+ #: includes/class-cntctfrm-settings.php:1240
1001
+ #: includes/class-cntctfrm-settings.php:1280
1002
+ #: includes/class-cntctfrm-settings.php:1298
1003
+ #: includes/class-cntctfrm-settings.php:1313
1004
  msgid "Left"
1005
  msgstr ""
1006
 
1007
+ #: includes/class-cntctfrm-settings.php:1243
1008
+ #: includes/class-cntctfrm-settings.php:1286
1009
+ #: includes/class-cntctfrm-settings.php:1301
1010
+ #: includes/class-cntctfrm-settings.php:1319
1011
  msgid "Right"
1012
  msgstr ""
1013
 
1014
+ #: includes/class-cntctfrm-settings.php:1248
1015
  msgid "Width"
1016
  msgstr ""
1017
 
1018
+ #: includes/class-cntctfrm-settings.php:1256
1019
  msgid "Custom"
1020
  msgstr ""
1021
 
1022
+ #: includes/class-cntctfrm-settings.php:1263
1023
  msgid "px"
1024
  msgstr ""
1025
 
1026
+ #: includes/class-cntctfrm-settings.php:1276
1027
  msgid "Form align"
1028
  msgstr ""
1029
 
1030
+ #: includes/class-cntctfrm-settings.php:1283
1031
+ #: includes/class-cntctfrm-settings.php:1316
1032
  msgid "Center"
1033
  msgstr ""
1034
 
1035
+ #: includes/class-cntctfrm-settings.php:1295
 
 
 
 
 
 
1036
  msgid "Top"
1037
  msgstr ""
1038
 
1039
+ #: includes/class-cntctfrm-settings.php:1304
1040
  msgid "Bottom"
1041
  msgstr ""
1042
 
 
 
 
 
1043
  # @ contact_form
1044
+ #: includes/class-cntctfrm-settings.php:1324
1045
  msgid "Errors output"
1046
  msgstr "Έξοδος σφαλμάτων"
1047
 
1048
  # @ contact_form
1049
+ #: includes/class-cntctfrm-settings.php:1327
1050
  msgid "Display error messages"
1051
  msgstr "Εμφάνιση μηνυμάτων σφαλμάτων"
1052
 
1053
  # @ contact_form
1054
+ #: includes/class-cntctfrm-settings.php:1328
1055
  msgid "Color of the input field errors."
1056
  msgstr "Χρώμα των σφαλμάτων στα πεδία εισαγωγής."
1057
 
1058
  # @ contact_form
1059
+ #: includes/class-cntctfrm-settings.php:1329
1060
  msgid "Display error messages & color of the input field errors"
1061
  msgstr ""
1062
  "Εμφάνιση μηνυμάτων σφαλμάτων & χρώμα των σφαλμάτων στα πεδία εισαγωγής."
1063
 
1064
  # @ contact_form
1065
+ #: includes/class-cntctfrm-settings.php:1334
1066
  msgid "Add placeholder to the input blocks"
1067
  msgstr "Προσθήκη placeholder στα μπλοκς εισαγωγής"
1068
 
1069
  # @ contact_form
1070
+ #: includes/class-cntctfrm-settings.php:1354
 
 
 
 
 
1071
  msgid "Email address"
1072
  msgstr "Email"
1073
 
1074
  # @ contact_form
1075
+ #: includes/class-cntctfrm-settings.php:1385
 
 
 
 
 
 
 
 
 
 
1076
  msgid "Text color"
1077
  msgstr "Χρώμα κειμένου"
1078
 
1079
  # @ contact_form
1080
+ #: includes/class-cntctfrm-settings.php:1393
1081
  msgid "Label text color"
1082
  msgstr "Χρώμα κειμένου ετικέτας"
1083
 
1084
  # @ contact_form
1085
+ #: includes/class-cntctfrm-settings.php:1402
1086
  msgid "Placeholder color"
1087
  msgstr "Χρώμα placeholder"
1088
 
1089
  # @ contact_form
1090
+ #: includes/class-cntctfrm-settings.php:1407
1091
  msgid "Errors color"
1092
  msgstr "Χρώμα σφαλμάτων"
1093
 
1094
  # @ contact_form
1095
+ #: includes/class-cntctfrm-settings.php:1415
1096
  msgid "Error text color"
1097
  msgstr "Χρώμα κειμένου σφάλματος"
1098
 
1099
  # @ contact_form
1100
+ #: includes/class-cntctfrm-settings.php:1423
1101
  msgid "Background color of the input field errors"
1102
  msgstr "Χρώμα φόντου στα πεδία εισαγωγής σφαλμάτων"
1103
 
1104
  # @ contact_form
1105
+ #: includes/class-cntctfrm-settings.php:1431
1106
  msgid "Border color of the input field errors"
1107
  msgstr "Χρώμα περιγράμματος στα πεδία εισαγωγής σφαλμάτων"
1108
 
1109
  # @ contact_form
1110
+ #: includes/class-cntctfrm-settings.php:1439
1111
  msgid "Placeholder color of the input field errors"
1112
  msgstr "Χρώμα placeholder στα πεδία εισαγωγής σφαλμάτων"
1113
 
1114
  # @ contact_form
1115
+ #: includes/class-cntctfrm-settings.php:1444
1116
  msgid "Input fields"
1117
  msgstr "Πεδία εισαγωγής"
1118
 
1119
  # @ contact_form
1120
+ #: includes/class-cntctfrm-settings.php:1452
1121
  msgid "Input fields background color"
1122
  msgstr "Χρώμα φόντου στα πεδία εισαγωγής"
1123
 
1124
  # @ contact_form
1125
+ #: includes/class-cntctfrm-settings.php:1460
1126
  msgid "Text fields color"
1127
  msgstr "Χρώμα πεδίων κειμένου"
1128
 
1129
  # @ contact_form
1130
+ #: includes/class-cntctfrm-settings.php:1464
1131
  msgid "Border width in px, numbers only"
1132
  msgstr "Πλάτος περιγράμματος σε px, μόνο αριθμοί"
1133
 
1134
  # @ contact_form
1135
+ #: includes/class-cntctfrm-settings.php:1472
1136
+ #: includes/class-cntctfrm-settings.php:1505
1137
  msgid "Border color"
1138
  msgstr "Χρώμα περιγράμματος"
1139
 
1140
  # @ contact_form
1141
+ #: includes/class-cntctfrm-settings.php:1477
1142
  msgid "Submit button"
1143
  msgstr "Κομβίο Υποβολής"
1144
 
1145
  # @ contact_form
1146
+ #: includes/class-cntctfrm-settings.php:1481
1147
  msgid "Width in px, numbers only"
1148
  msgstr "Πλάτος σε px, μόνο αριθμοί"
1149
 
1150
  # @ contact_form
1151
+ #: includes/class-cntctfrm-settings.php:1489
1152
  msgid "Button color"
1153
  msgstr "Χρώμα κομβίου"
1154
 
1155
  # @ contact_form
1156
+ #: includes/class-cntctfrm-settings.php:1497
1157
  msgid "Button text color"
1158
  msgstr "Χρώμα κειμένου κομβίου"
1159
 
1160
  # @ contact_form
1161
+ #: includes/class-cntctfrm-settings.php:1524
1162
  #, fuzzy
1163
  msgid "Contact Form | Preview"
1164
  msgstr "Contact Form Pro | Προεπισκόπηση"
1165
 
1166
+ #: includes/class-cntctfrm-settings.php:1525
1167
  msgid "Drag the necessary field to sort fields."
1168
  msgstr ""
1169
 
1170
+ #: includes/class-cntctfrm-settings.php:1772
1171
+ msgid "Contact Form Shortcode"
 
 
 
 
1172
  msgstr ""
 
 
 
1173
 
1174
+ #: includes/class-cntctfrm-settings.php:1775
1175
+ msgid "Add Contact Form to your page or post using the following shortcode:"
 
1176
  msgstr ""
 
 
 
 
 
 
 
 
 
 
 
1177
 
1178
  # @ contact_form
1179
+ #~ msgid "If you upgrade to Pro version all your settings will be saved."
1180
+ #~ msgstr ""
1181
+ #~ "Εάν κάνετε αναβάθμιση σε έκδοση Pro όλες οι ρυθμίσεις σας θα αποθηκευτούν."
1182
 
1183
  # @ contact_form
1184
+ #, fuzzy
1185
+ #~ msgid ""
1186
+ #~ "If you would like to add the Contact Form to your website, just copy and "
1187
+ #~ "paste this shortcode to your post or page or widget"
1188
+ #~ msgstr ""
1189
+ #~ "Αν θέλετε να προσθέσετε τη Φόρμα Επικοινωνίας στην ιστοσελίδα σας, απλά "
1190
+ #~ "αντιγράψετε και επικολλήσετε αυτό το σύντομο κωδικό στο άρθρο, στη σελίδα "
1191
+ #~ "ή στο widget σας:"
1192
 
1193
+ # @ default
1194
+ #~ msgid "Save Changes"
1195
+ #~ msgstr "Αποθήκευση αλλαγών"
 
1196
 
1197
  # @ contact_form
1198
+ #~ msgid "Contact Form"
1199
+ #~ msgstr "Φόρμα Επικοινωνίας"
 
1200
 
1201
  # @ contact_form
 
 
 
 
 
 
1202
  #, fuzzy
1203
+ #~ msgid "Additional settings"
1204
+ #~ msgstr "Πρόσθετες επιλογές"
 
 
 
 
 
 
1205
 
1206
  # @ contact_form
1207
+ #~ msgid "Go PRO"
1208
+ #~ msgstr "Αναβάθμιση σε PRO"
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1209
 
1210
  # @ contact_form
 
1211
  #, fuzzy
1212
+ #~ msgid "Notice"
1213
+ #~ msgstr "Σημείωση:"
 
 
 
 
 
 
 
1214
 
1215
  # @ contact_form
1216
+ #, fuzzy
1217
+ #~ msgid ""
1218
+ #~ "If you would like to add a Contact Form to your page or post, please use "
1219
+ #~ "%s button"
1220
+ #~ msgstr ""
1221
+ #~ "Αν θέλετε να προσθέσετε τη Φόρμα Επικοινωνίας στην ιστοσελίδα σας, απλά "
1222
+ #~ "αντιγράψετε και επικολλήσετε αυτό το σύντομο κωδικό στο άρθρο, στη σελίδα "
1223
+ #~ "ή στο widget σας:"
1224
 
1225
  # @ contact_form
1226
+ #~ msgid "Auto Response"
1227
+ #~ msgstr "Αυτόματη Απάντηση"
 
 
1228
 
1229
  # @ contact_form
1230
+ #~ msgid ""
1231
+ #~ "You can use %%NAME%% to display data from the email field and %%MESSAGE%% "
1232
+ #~ "to display data from the Message field, as well as %%SITENAME%% to "
1233
+ #~ "display blog name."
1234
+ #~ msgstr ""
1235
+ #~ "Μπορείτε να χρησιμοποιήσετε το %%NAME%% για να εμφανίσετε δεδομένα από το "
1236
+ #~ "πεδίο 'Email' και το %%MESSAGE%% για να εμφανίσετε δεδομένα από το πεδίο "
1237
+ #~ "'Μήνυμα', όπως επίσης και το %%SITENAME%% για να εμφανίσετε το όνομα του "
1238
+ #~ "ιστολογίου."
1239
 
1240
  # @ contact_form
1241
  #~ msgid "Example: Sent from (IP address):\t127.0.0.1"
languages/contact-form-plugin-es_ES.mo CHANGED
Binary file
languages/contact-form-plugin-es_ES.po CHANGED
@@ -2,8 +2,8 @@ msgid ""
2
  msgstr ""
3
  "Project-Id-Version: Contact Form\n"
4
  "Report-Msgid-Bugs-To: \n"
5
- "POT-Creation-Date: 2018-05-16 14:26+0300\n"
6
- "PO-Revision-Date: 2018-05-16 14:26+0300\n"
7
  "Last-Translator: plugin@bestwebsoft.com <plugin@bestwebsoft.com>\n"
8
  "Language-Team: Javitopo <jaawme@hotmail.com>\n"
9
  "Language: es_ES\n"
@@ -17,54 +17,75 @@ msgstr ""
17
  "Plural-Forms: nplurals=2; plural=(n != 1);\n"
18
  "X-Poedit-SearchPath-0: .\n"
19
 
20
- #: contact_form.php:37 contact_form.php:992
 
21
  msgid "Contact Form Settings"
22
  msgstr "Opciones de formulario de contacto"
23
 
24
- #: contact_form.php:37
25
- msgid "Contact Form"
26
- msgstr "Contact Form"
 
 
 
 
 
 
 
 
27
 
28
- #: contact_form.php:322 contact_form.php:1172 contact_form.php:1262
29
- #: contact_form.php:1668 contact_form.php:1707 contact_form.php:1975
30
- #: contact_form.php:3134 contact_form.php:3180
 
 
 
31
  msgid "Name"
32
  msgstr "Nombre"
33
 
34
- #: contact_form.php:323 contact_form.php:1309 contact_form.php:1669
35
- #: contact_form.php:1708 contact_form.php:1980 contact_form.php:3141
36
- #: contact_form.php:3186
 
 
37
  msgid "Address"
38
  msgstr "Dirección"
39
 
40
- #: contact_form.php:324 contact_form.php:1325 contact_form.php:1670
41
- #: contact_form.php:1709
 
42
  msgid "Email Address"
43
  msgstr "Dirección de correo electrónico"
44
 
45
- #: contact_form.php:325 contact_form.php:1348 contact_form.php:1671
46
- #: contact_form.php:1710
 
47
  msgid "Phone number"
48
  msgstr "Número de teléfono"
49
 
50
- #: contact_form.php:326 contact_form.php:1364 contact_form.php:1672
51
- #: contact_form.php:1711 contact_form.php:1995 contact_form.php:3152
52
- #: contact_form.php:3195
 
 
53
  msgid "Subject"
54
  msgstr "Asunto"
55
 
56
- #: contact_form.php:327 contact_form.php:1388 contact_form.php:1673
57
- #: contact_form.php:1712 contact_form.php:1999 contact_form.php:3157
58
- #: contact_form.php:3199
 
 
59
  msgid "Message"
60
  msgstr "Mensaje"
61
 
62
- #: contact_form.php:328 contact_form.php:1674 contact_form.php:1713
63
- #: contact_form.php:2004
 
64
  msgid "Attachment"
65
  msgstr "Adjuntos"
66
 
67
- #: contact_form.php:329
68
  msgid ""
69
  "Supported file types: HTML, TXT, CSS, GIF, PNG, JPEG, JPG, TIFF, BMP, AI, "
70
  "EPS, PS, CSV, RTF, PDF, DOC, DOCX, XLS, XLSX, ZIP, RAR, WAV, MP3, PPT."
@@ -72,180 +93,307 @@ msgstr ""
72
  "Tipos de archivo admitidos: HTML, TXT, CSS, GIF, PNG, JPEG, JPG, TIFF, BMP, "
73
  "AI, EPS, PS, CSV, RTF, PDF, DOC, DOCX, XLS, XLSX, ZIP, RAR, WAV, MP3, PPT."
74
 
75
- #: contact_form.php:330 contact_form.php:1676 contact_form.php:1715
 
76
  msgid "Send me a copy"
77
  msgstr "Deseo recibir una copia"
78
 
79
- #: contact_form.php:331 contact_form.php:1677 contact_form.php:1716
 
80
  msgid "I consent to having this site collect my personal data."
81
  msgstr ""
82
 
83
- #: contact_form.php:332 contact_form.php:1678 contact_form.php:1717
 
84
  msgid "Submit"
85
  msgstr "Enviar"
86
 
87
- #: contact_form.php:333
88
  msgid "Your name is required."
89
  msgstr "Es necesario un nombre."
90
 
91
- #: contact_form.php:334
92
  msgid "Address is required."
93
  msgstr "Se requiere dirección."
94
 
95
- #: contact_form.php:335
96
  msgid "A valid email address is required."
97
  msgstr "Se requiere una dirección de email válida."
98
 
99
- #: contact_form.php:336
100
  msgid "Phone number is required."
101
  msgstr "Es necesario un número de teléfono."
102
 
103
- #: contact_form.php:337
104
  msgid "Subject is required."
105
  msgstr "Es necesario un asunto."
106
 
107
- #: contact_form.php:338
108
  msgid "Message text is required."
109
  msgstr "Es necesario el texto del mensaje."
110
 
111
- #: contact_form.php:339
112
  msgid "File format is not valid."
113
  msgstr "Formato de archivo no válido."
114
 
115
- #: contact_form.php:340
116
  msgid "File upload error."
117
  msgstr "Error de carga de archivos."
118
 
119
- #: contact_form.php:341
120
  msgid "The file could not be uploaded."
121
  msgstr "El archivo no se pudo cargar."
122
 
123
- #: contact_form.php:342
124
  msgid "This file is too large."
125
  msgstr "Este archivo es demasiado grande."
126
 
127
- #: contact_form.php:343
128
  msgid "Please fill out the CAPTCHA."
129
  msgstr "Por favor complete el CAPTCHA."
130
 
131
- #: contact_form.php:344
132
  msgid "Please make corrections below and try again."
133
  msgstr "Por favor, haga las correcciones y a continuación vuelva a intentarlo."
134
 
135
- #: contact_form.php:346
136
  msgid "Thank you for contacting us."
137
  msgstr "Gracias por contactar con nosotros."
138
 
139
- #: contact_form.php:683 contact_form.php:949
140
- msgid "Settings saved."
141
- msgstr "Configuración guardada."
142
 
143
- #: contact_form.php:894
144
  msgid ""
145
- "Email 'FROM' field option was changed, which may cause email messages being "
146
- "moved to the spam folder or email delivery failures."
147
  msgstr ""
148
- "El campo 'DESDE' del correo electrónico ha sido cambiado, por lo que los "
149
- "mensajes de correo electrónico pueden haber sido enviados a la carpeta de "
150
- "correo no deseado o provocar errores en la entrega del correo electrónico."
151
 
152
- #: contact_form.php:904
153
  msgid ""
154
- "If the 'Redirect to page' option is selected then the URL field should be in "
155
- "the following format"
 
156
  msgstr ""
157
- "Si se selecciona la opción 'Redirigir a la página', entonces el campo URL "
158
- "debe estar en el siguiente formato"
159
 
160
- #: contact_form.php:911
161
- msgid "Such user does not exist."
162
- msgstr "Dicho usuario no existe."
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
163
 
164
- #: contact_form.php:921
165
  msgid ""
166
- "Please enter a valid email address in the 'Use this email address' field."
 
167
  msgstr ""
168
- "Por favor, introduce una dirección de correo electrónico válida en el campo "
169
- "\"Correo electrónico\"."
170
 
171
- #: contact_form.php:929
172
- msgid "Please enter a valid email address in the 'FROM' field."
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
173
  msgstr ""
174
- "Por favor, introduce una dirección de correo electrónico válida en el campo "
175
- "\"Desde\"."
176
 
177
- #: contact_form.php:951
178
- msgid "Settings are not saved."
179
- msgstr "Configuración no guardada."
180
 
181
- #: contact_form.php:989
182
- msgid "All plugin settings were restored."
183
- msgstr "Todos los parámetros del plugin serán restaurados."
 
 
184
 
185
- #: contact_form.php:995
186
- msgid "How to Use Step-by-step Instruction"
187
- msgstr "Instrucciones paso a paso"
188
 
189
- #: contact_form.php:998 contact_form.php:3343 contact_form.php:3357
190
- msgid "Settings"
191
- msgstr "Configuración"
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
192
 
193
- #: contact_form.php:999
194
- msgid "Additional settings"
195
- msgstr "Opciones adicionales"
 
 
 
 
 
196
 
197
- #: contact_form.php:1000
 
198
  msgid "Appearance"
199
  msgstr "Apariencia"
200
 
201
- #: contact_form.php:1001
202
- msgid "Custom code"
203
  msgstr ""
204
 
205
- #: contact_form.php:1002
206
- msgid "Go PRO"
207
- msgstr "Ir al PRO"
208
 
209
- #: contact_form.php:1013
210
- #, fuzzy
211
- msgid "Notice"
212
- msgstr "Aviso:"
213
 
214
- #: contact_form.php:1017
215
- msgid "NEW_FORM"
216
- msgstr "NUEVO FORMULARIO"
217
 
218
- #: contact_form.php:1018
 
219
  msgid ""
220
- "If you want to create multiple contact forms, please install the Contact "
221
- "Form Multi plugin."
222
  msgstr ""
223
- "Si desea crear varios formularios de contacto, por favor, instale el plugin "
224
- "Formulario de contacto múltiple."
225
 
226
- #: contact_form.php:1027
227
- #, php-format
228
  msgid ""
229
- "If you would like to add a Contact Form to your page or post, please use %s "
230
- "button"
231
  msgstr ""
232
- "Si usted desea agregar el formulario de contacto a su sitio web o entrada , "
233
- "por favor use el botón %s"
 
234
 
235
- #: contact_form.php:1033
236
- #, php-format
 
 
 
 
 
 
 
 
 
 
 
237
  msgid ""
238
- "You can add the Contact Form to your page or post by clicking on %s button "
239
- "in the content edit block using the Visual mode. If the button isn't "
240
- "displayed, please use the shortcode %s or %s where * stands for Contact Form "
241
- "language."
242
  msgstr ""
243
- "Puedes añadir el Formulario de Contacto a tu página o post clicando en el "
244
- "botón %s en el bloque editar el contenido usando el Modo visual. Si el botón "
245
- "no aparece, por favor usa el shortcode %s o %s donde * representa el idioma "
246
- "del Formulario de Contacto."
 
 
 
 
247
 
248
- #: contact_form.php:1042
 
 
 
 
 
 
 
 
249
  msgid ""
250
  "If you leave the fields empty, the messages will be sent to the email "
251
  "address specified during registration."
@@ -253,16 +401,16 @@ msgstr ""
253
  "Si deja los campos vacíos, se enviarán los mensajes a la dirección de correo "
254
  "electrónico especificada durante el registro."
255
 
256
- #: contact_form.php:1045
257
  #, fuzzy
258
  msgid "The user's email address"
259
  msgstr "Dirección de correo electrónico del usuario:"
260
 
261
- #: contact_form.php:1049
262
  msgid "Select a username"
263
  msgstr "Seleccione un nombre de usuario"
264
 
265
- #: contact_form.php:1062
266
  #, fuzzy
267
  msgid ""
268
  "Select a username of the person who should get the messages from the contact "
@@ -271,111 +419,102 @@ msgstr ""
271
  "Introduzca un nombre de usuario de la persona que debe recibir los mensajes "
272
  "desde el formulario de contacto."
273
 
274
- #: contact_form.php:1066
275
  #, fuzzy
276
  msgid "Use this email address"
277
  msgstr "Utilice esta dirección de correo electrónico:"
278
 
279
- #: contact_form.php:1070
280
  #, fuzzy
281
  msgid "Enter the email address for receiving messages"
282
  msgstr ""
283
  "Introduzca la dirección de correo electrónico que desea que reciba los "
284
  "mensajes."
285
 
286
- #: contact_form.php:1077 contact_form.php:1588 contact_form.php:1797
287
- #: contact_form.php:1903 contact_form.php:3440
288
- msgid "Close"
289
- msgstr "Cerrar"
290
-
291
- #: contact_form.php:1081
292
  #, fuzzy
293
  msgid "Add department selectbox to the contact form"
294
  msgstr "Añadir casilla seleccionable al formulario de contacto:"
295
 
296
- #: contact_form.php:1089 contact_form.php:1597 contact_form.php:1816
297
- #: contact_form.php:2109
298
- msgid "If you upgrade to Pro version all your settings will be saved."
299
- msgstr "Si actualiza a la versión Pro se guardarán todos los ajustes."
300
-
301
- #: contact_form.php:1096 contact_form.php:1418 contact_form.php:1602
302
- #: contact_form.php:1823 contact_form.php:2116
303
- msgid "Upgrade to Pro"
304
- msgstr ""
305
-
306
- #: contact_form.php:1104
307
  msgid "Save emails to the database"
308
  msgstr "Guardar mensajes de correo electrónico a la base de datos"
309
 
310
- #: contact_form.php:1116 contact_form.php:1130 contact_form.php:1137
 
 
311
  msgid "Using"
312
  msgstr "Uso"
313
 
314
- #: contact_form.php:1122 contact_form.php:1490 contact_form.php:1531
315
- #: contact_form.php:1566
 
 
316
  msgid "Please activate the appropriate option on"
317
  msgstr ""
318
 
319
- #: contact_form.php:1125 contact_form.php:1493 contact_form.php:1534
320
- #: contact_form.php:1569
 
 
321
  #, fuzzy
322
  msgid "settings page"
323
  msgstr "la página de configuración"
324
 
325
- #: contact_form.php:1131 contact_form.php:1500 contact_form.php:1542
326
- #: contact_form.php:1576
 
 
327
  msgid "Activate"
328
  msgstr "Activar"
329
 
330
- #: contact_form.php:1138 contact_form.php:1509 contact_form.php:1548
331
- #: contact_form.php:1581
 
 
332
  msgid "Download"
333
  msgstr "Download"
334
 
335
- #: contact_form.php:1150
336
  msgid "Sending method"
337
  msgstr ""
338
 
339
- #: contact_form.php:1155
340
  msgid "Wp-mail"
341
  msgstr "Wp-mail"
342
 
343
- #: contact_form.php:1157
344
  msgid "You can use the Wordpress wp_mail function for mailing"
345
  msgstr "Tú puedes utilizar la función wp_mail para enviar por correo"
346
 
347
- #: contact_form.php:1160
348
  msgid "Mail"
349
  msgstr "Correo"
350
 
351
- #: contact_form.php:1162
352
  msgid "You can use the PHP mail function for mailing"
353
  msgstr "Tú puedes utilizar la función de correo PHP para enviar por correo"
354
 
355
- #: contact_form.php:1167
356
  msgid "'FROM' field"
357
  msgstr "Campo 'DESDE'"
358
 
359
- #: contact_form.php:1183
360
  msgid "User name"
361
  msgstr "Nombre de usuario"
362
 
363
- #: contact_form.php:1185
364
  msgid ""
365
  "The name of the user who fills the form will be used in the field 'From'."
366
  msgstr ""
367
  "El nombre del usuario que rellena en el formulario se utiliza en el campo "
368
  "\"De:\"."
369
 
370
- #: contact_form.php:1196 contact_form.php:3147 contact_form.php:3191
371
- msgid "Email"
372
- msgstr "Correo electrónico"
373
-
374
- #: contact_form.php:1207
375
  msgid "User email"
376
  msgstr "Correo electrónico del usuario"
377
 
378
- #: contact_form.php:1209
379
  msgid ""
380
  "The email address of the user who fills the form will be used in the field "
381
  "'From'."
@@ -383,7 +522,7 @@ msgstr ""
383
  "La dirección de correo electrónico del usuario que rellena el formulario se "
384
  "utiliza en el campo \"De\"."
385
 
386
- #: contact_form.php:1218
387
  msgid ""
388
  "If this option is changed, email messages may be moved to the spam folder or "
389
  "email delivery failures may occur."
@@ -392,51 +531,69 @@ msgstr ""
392
  "a la carpeta de correo no deseado o ocurrir otros errores en la entrega del "
393
  "correo."
394
 
395
- #: contact_form.php:1227
396
  msgid "Required symbol"
397
  msgstr "Símbolo de Obligatorio"
398
 
399
- #: contact_form.php:1237
400
  msgid "Fields"
401
  msgstr "Campos"
402
 
403
- #: contact_form.php:1238 contact_form.php:1265 contact_form.php:1292
404
- #: contact_form.php:1312 contact_form.php:1351 contact_form.php:1433
 
 
 
 
405
  msgid "Used"
406
  msgstr "Usado"
407
 
408
- #: contact_form.php:1239 contact_form.php:1254 contact_form.php:1269
409
- #: contact_form.php:1296 contact_form.php:1316 contact_form.php:1329
410
- #: contact_form.php:1355 contact_form.php:1368 contact_form.php:1392
 
 
 
 
 
411
  msgid "Required"
412
  msgstr "Obligatorio"
413
 
414
- #: contact_form.php:1241 contact_form.php:1274 contact_form.php:1334
415
- #: contact_form.php:1373 contact_form.php:1397
 
 
 
416
  msgid "Visible"
417
  msgstr "Visible"
418
 
419
- #: contact_form.php:1242 contact_form.php:1278 contact_form.php:1338
420
- #: contact_form.php:1377 contact_form.php:1401
 
 
 
421
  msgid "Disabled for editing"
422
  msgstr "Inhabilitado para la edición"
423
 
424
- #: contact_form.php:1243 contact_form.php:1302 contact_form.php:1381
425
- #: contact_form.php:1405
 
 
426
  msgid "Field's default value"
427
  msgstr "Valor predeterminado del campo"
428
 
429
- #: contact_form.php:1250
430
  msgid "Department selectbox"
431
  msgstr "Apartado de casilla seleccionable"
432
 
433
- #: contact_form.php:1282
434
  msgid "Use User's name as a default value if the user is logged in."
435
  msgstr ""
436
  "Usar el nombre de usuario como valor por defecto si el usuario está "
437
  "conectado."
438
 
439
- #: contact_form.php:1283 contact_form.php:1343
 
440
  msgid ""
441
  "'Visible' and 'Disabled for editing' options will be applied only to logged-"
442
  "in users."
@@ -444,549 +601,507 @@ msgstr ""
444
  "Las opciones 'Visible' y 'Desactivado para la edición' solo serán aplicadas "
445
  "a los usuarios con sesión iniciada."
446
 
447
- #: contact_form.php:1289
448
  msgid "Location selectbox"
449
  msgstr "Localización de la casilla seleccionable"
450
 
451
- #: contact_form.php:1342
452
  msgid "Use User's email as a default value if the user is logged in."
453
  msgstr ""
454
  "Utiliza por defecto el correo electrónico del usuario si el usuario está "
455
  "conectado."
456
 
457
- #: contact_form.php:1426
458
  msgid "Attachment block"
459
  msgstr "bloque de adjuntos"
460
 
461
- #: contact_form.php:1428
462
  msgid "Users can attach the following file formats"
463
  msgstr "Los usuarios pueden adjuntar los siguientes formatos de archivo"
464
 
465
- #: contact_form.php:1446
466
  msgid "Add to the form"
467
  msgstr "Añadir a la forma"
468
 
469
- #: contact_form.php:1451
470
  msgid "Tips below the Attachment"
471
  msgstr "Consejos debajo del archivo adjunto"
472
 
473
- #: contact_form.php:1458
474
  msgid "'Send me a copy' block"
475
  msgstr "'Deseo recibir una copia' bloque"
476
 
477
- #: contact_form.php:1465
478
  msgid "GDPR Compliance"
479
  msgstr ""
480
 
481
- #: contact_form.php:1470
482
  msgid "Link to Privacy Policy Page"
483
  msgstr ""
484
 
485
- #: contact_form.php:1474
486
  msgid "Text for Privacy Policy Link"
487
  msgstr ""
488
 
489
- #: contact_form.php:1502
490
  #, fuzzy
491
  msgid "Activate for network"
492
  msgstr "Activar suscripción"
493
 
494
- #: contact_form.php:1592
495
  msgid "Agreement checkbox"
496
  msgstr "casilla de verificación de acuerdo"
497
 
498
- #: contact_form.php:1592
499
  msgid "Required checkbox for submitting the form"
500
  msgstr "Casilla de verificación obligatoria para enviar el formulario"
501
 
502
- #: contact_form.php:1593
503
  msgid "Optional checkbox"
504
  msgstr "Casilla opcional"
505
 
506
- #: contact_form.php:1593
507
  msgid "Optional checkbox, the results of which will be displayed in email"
508
  msgstr ""
509
  "Casilla opcional, cuyos resultados se mostrarán en el correo electrónico"
510
 
511
- #: contact_form.php:1611
512
  msgid "Delete an attachment file from the server after the email is sent"
513
  msgstr ""
514
  "Eliminar un archivo adjunto del servidor después de que se envíe el correo "
515
  "electrónico"
516
 
517
- #: contact_form.php:1617
518
  msgid "Email in HTML format sending"
519
  msgstr "Enviar correo electrónico en formato HTML"
520
 
521
- #: contact_form.php:1621
522
  msgid "Display additional info in the email"
523
  msgstr "Mostrar información adicional en el correo electrónico"
524
 
525
- #: contact_form.php:1627
526
  msgid "Sent from (IP address)"
527
  msgstr "Enviado desde (dirección IP)"
528
 
529
- #: contact_form.php:1627
530
  msgid "Example: Sent from (IP address): 127.0.0.1"
531
  msgstr ""
532
 
533
- #: contact_form.php:1628 contact_form.php:3096 contact_form.php:3098
534
- msgid "Date/Time"
535
- msgstr "Fecha/Hora"
536
-
537
- #: contact_form.php:1628
538
  msgid "Example: Date/Time: August 19, 2013 8:50 pm"
539
  msgstr ""
540
 
541
- #: contact_form.php:1629 contact_form.php:3102 contact_form.php:3104
542
- msgid "Sent from (referer)"
543
- msgstr "Enviado desde (referencia)"
544
-
545
- #: contact_form.php:1629
546
  msgid ""
547
  "Example: Sent from (referer): https://bestwebsoft.com/contacts/contact-us/"
548
  msgstr ""
549
 
550
- #: contact_form.php:1630 contact_form.php:3108 contact_form.php:3110
551
- msgid "Using (user agent)"
552
- msgstr "Usando (agente de usuario)"
553
-
554
- #: contact_form.php:1630
555
  msgid ""
556
  "Example: Using (user agent): Mozilla/5.0 (Windows NT 6.2; WOW64) "
557
  "AppleWebKit/537.36 (KHTML, like Gecko) Chrome/28.0.1500.95 Safari/537.36"
558
  msgstr ""
559
 
560
- #: contact_form.php:1635
561
  msgid "Language settings for the field names in the form"
562
  msgstr ""
563
  "Configuración de idioma para los nombres de los campos en el formulario"
564
 
565
- #: contact_form.php:1644
566
  msgid "Add a language"
567
  msgstr "Añadir un idioma"
568
 
569
- #: contact_form.php:1648
570
  msgid "Change the names of the contact form fields and error messages"
571
  msgstr ""
572
  "Cambie los nombres de los campos del formulario de contacto y mensajes de "
573
  "error"
574
 
575
- #: contact_form.php:1653 contact_form.php:1751 contact_form.php:1883
576
- #: contact_form.php:2023 contact_form.php:2028 contact_form.php:2038
577
- #: contact_form.php:2043 contact_form.php:2048 contact_form.php:2053
578
- #: contact_form.php:2063 contact_form.php:2068 contact_form.php:2077
579
- #: contact_form.php:2091 contact_form.php:2096 contact_form.php:2101
580
  msgid "Default"
581
  msgstr "Defecto"
582
 
583
- #: contact_form.php:1666 contact_form.php:1705
 
584
  msgid "click to expand/hide the list"
585
  msgstr "haga clic para expandir / ocultar la lista"
586
 
587
- #: contact_form.php:1675 contact_form.php:1714
 
588
  msgid "Tips below the Attachment block"
589
  msgstr "Consejos debajo del bloque del archivo adjunto"
590
 
591
- #: contact_form.php:1679 contact_form.php:1718
 
592
  msgid "Error message for the Name field"
593
  msgstr "Mensaje de error para el campo Nombre"
594
 
595
- #: contact_form.php:1680 contact_form.php:1719
 
596
  msgid "Error message for the Address field"
597
  msgstr "Mensaje de error para el campo dirección"
598
 
599
- #: contact_form.php:1681 contact_form.php:1720
 
600
  msgid "Error message for the Email field"
601
  msgstr "Mensaje de error en el campo Correo electrónico"
602
 
603
- #: contact_form.php:1682 contact_form.php:1721
 
604
  msgid "Error message for the Phone field"
605
  msgstr "Mensaje de error para el campo Teléfono"
606
 
607
- #: contact_form.php:1683 contact_form.php:1722
 
608
  msgid "Error message for the Subject field"
609
  msgstr "Mensaje de error para el campo Asunto"
610
 
611
- #: contact_form.php:1684 contact_form.php:1723
 
612
  msgid "Error message for the Message field"
613
  msgstr "Mensaje de error en el campo Mensaje"
614
 
615
- #: contact_form.php:1685 contact_form.php:1724
 
616
  msgid "Error message about the file type for the Attachment field"
617
  msgstr ""
618
  "Mensaje de error sobre el tipo de archivo para el campo de archivos adjuntos"
619
 
620
- #: contact_form.php:1686 contact_form.php:1725
 
621
  msgid ""
622
  "Error message while uploading a file for the Attachment field to the server"
623
  msgstr ""
624
  "Mensaje de error al cargar un archivo en el campo de archivos adjuntos al "
625
  "servidor"
626
 
627
- #: contact_form.php:1687 contact_form.php:1726
 
628
  msgid "Error message while moving the file for the Attachment field"
629
  msgstr ""
630
  "Mensaje de error mientras se mueve el archivo en el campo de archivos "
631
  "adjuntos"
632
 
633
- #: contact_form.php:1688 contact_form.php:1727
 
634
  msgid "Error message when file size limit for the Attachment field is exceeded"
635
  msgstr ""
636
  "Mensaje de error cuando se supera el límite de tamaño de archivo para el "
637
  "campo de archivos adjuntos"
638
 
639
- #: contact_form.php:1689 contact_form.php:1728
 
640
  msgid "Error message for the Captcha field"
641
  msgstr "Mensaje de error para el campo Captcha"
642
 
643
- #: contact_form.php:1690 contact_form.php:1729
 
644
  msgid "Error message for the whole form"
645
  msgstr "Mensaje de error para todo el formulario"
646
 
647
- #: contact_form.php:1693 contact_form.php:1695 contact_form.php:1732
648
- #: contact_form.php:1734 contact_form.php:1766 contact_form.php:1768
649
- #: contact_form.php:1780 contact_form.php:1782 contact_form.php:3530
650
- #: contact_form.php:3532
651
- msgid "Use shortcode"
652
- msgstr "Utilice shortcode"
653
-
654
- #: contact_form.php:1693 contact_form.php:1695 contact_form.php:1732
655
- #: contact_form.php:1734 contact_form.php:1766 contact_form.php:1768
656
- #: contact_form.php:1780 contact_form.php:1782 contact_form.php:3530
657
- #: contact_form.php:3532
658
- msgid "for this language"
659
- msgstr "para este idioma"
660
-
661
- #: contact_form.php:1742
662
  msgid "Use the changed names of the contact form fields in the email"
663
  msgstr ""
664
  "Utilice los nombres cambiados de los campos del formulario de contacto en el "
665
  "correo electrónico"
666
 
667
- #: contact_form.php:1748
668
  msgid "Action after email is sent"
669
  msgstr "Acción después de que se envíe el correo electrónico"
670
 
671
- #: contact_form.php:1750
672
  msgid "Display text"
673
  msgstr "Mostrar texto"
674
 
675
- #: contact_form.php:1764 contact_form.php:1778
 
676
  msgid "Text"
677
  msgstr "Texto"
678
 
679
- #: contact_form.php:1789
680
  msgid "Redirect to the page"
681
  msgstr "Redirigir a la página"
682
 
683
- #: contact_form.php:1790
684
  msgid "Url"
685
  msgstr "Url"
686
 
687
- #: contact_form.php:1801
688
- msgid "Add field 'Reply-To' to the email header"
689
- msgstr "Añadir campo 'Responder a' en la cabecera del correo electrónico"
690
-
691
- #: contact_form.php:1803
692
- msgid "Field 'Reply-To' will be initialized by user email"
693
- msgstr ""
694
- "El campo 'Responder a' se iniciará por el correo electrónico del usuario"
695
-
696
- #: contact_form.php:1807
697
- msgid "Auto Response"
698
- msgstr "Respuesta automática"
699
-
700
- #: contact_form.php:1811
701
  #, php-format
702
  msgid ""
703
- "You can use %%NAME%% to display data from the email field and %%MESSAGE%% to "
704
- "display data from the Message field, as well as %%SITENAME%% to display blog "
705
- "name."
706
  msgstr ""
707
- "Puedes usar %%NAME%% para mostrar los datos del campo correo electrónico y "
708
- "%%MESSAGE%% para mostrar los datos del campo Mensaje, así como %%SITENAME%% "
709
- "para mostrar el nombre del blog."
710
 
711
- #: contact_form.php:1833 contact_form.php:2375
712
- msgid "Save Changes"
713
- msgstr "Guardar cambios"
714
-
715
- #: contact_form.php:1846
716
- #, php-format
717
- msgid ""
718
- "Please enable JavaScript to change '%s', '%s' options and for fields sorting."
719
- msgstr ""
720
- "Por favor, utilice JavaScript para cambiar las opciones '%s', '%s' y para "
721
- "los campos de clasificación."
722
-
723
- #: contact_form.php:1846 contact_form.php:1855
724
  msgid "Form layout"
725
  msgstr "Diseño del formulario"
726
 
727
- #: contact_form.php:1846 contact_form.php:1867
 
 
 
 
 
 
 
 
 
 
 
728
  msgid "Submit position"
729
  msgstr "Enviar posición"
730
 
731
- #: contact_form.php:1859
 
 
 
 
 
 
 
 
 
 
732
  msgid "One column"
733
  msgstr "Una columna"
734
 
735
- #: contact_form.php:1862
736
  msgid "Two columns"
737
  msgstr "Dos columnas"
738
 
739
- #: contact_form.php:1871 contact_form.php:1911 contact_form.php:1929
740
- #: contact_form.php:1944
 
 
741
  msgid "Left"
742
  msgstr "Izquierda"
743
 
744
- #: contact_form.php:1874 contact_form.php:1917 contact_form.php:1932
745
- #: contact_form.php:1950
 
 
746
  msgid "Right"
747
  msgstr "Derecha"
748
 
749
- #: contact_form.php:1879
750
  msgid "Width"
751
  msgstr ""
752
 
753
- #: contact_form.php:1887
754
  msgid "Custom"
755
  msgstr ""
756
 
757
- #: contact_form.php:1894
758
  msgid "px"
759
  msgstr ""
760
 
761
- #: contact_form.php:1907
762
  msgid "Form align"
763
  msgstr "Alinear formulario"
764
 
765
- #: contact_form.php:1914 contact_form.php:1947
 
766
  msgid "Center"
767
  msgstr "Centro"
768
 
769
- #: contact_form.php:1922
770
- msgid "Labels position"
771
- msgstr "Posición de las etiquetas"
772
-
773
- #: contact_form.php:1926
774
  msgid "Top"
775
  msgstr "Arriba"
776
 
777
- #: contact_form.php:1935
778
  msgid "Bottom"
779
  msgstr "Abajo"
780
 
781
- #: contact_form.php:1940
782
- msgid "Labels align"
783
- msgstr "Alinear etiquetas"
784
-
785
- #: contact_form.php:1955
786
  msgid "Errors output"
787
  msgstr "Salida de errores"
788
 
789
- #: contact_form.php:1958
790
  msgid "Display error messages"
791
  msgstr "Mostrar mensajes de error"
792
 
793
- #: contact_form.php:1959
794
  msgid "Color of the input field errors."
795
  msgstr "El color de los errores del campo de entrada."
796
 
797
- #: contact_form.php:1960
798
  msgid "Display error messages & color of the input field errors"
799
  msgstr ""
800
  "Mostrar mensajes de error y el color de los errores de campo de entrada"
801
 
802
- #: contact_form.php:1965
803
  msgid "Add placeholder to the input blocks"
804
  msgstr "Añadir marcador de posición de los bloques de entrada"
805
 
806
- #: contact_form.php:1971
807
- msgid "Add tooltips"
808
- msgstr "Añadir información sobre herramientas"
809
-
810
- #: contact_form.php:1985
811
  msgid "Email address"
812
  msgstr "Correo electrónico"
813
 
814
- #: contact_form.php:1990 contact_form.php:3163 contact_form.php:3204
815
- msgid "Phone Number"
816
- msgstr "Número de teléfono"
817
-
818
- #: contact_form.php:2016
819
- msgid "Style options"
820
- msgstr "Opciones de estilo"
821
-
822
- #: contact_form.php:2020
823
  msgid "Text color"
824
  msgstr "Color del texto"
825
 
826
- #: contact_form.php:2025
827
  msgid "Label text color"
828
  msgstr "Color del texto de la Etiqueta"
829
 
830
- #: contact_form.php:2030
831
  msgid "Placeholder color"
832
  msgstr "El color de marcador de posición"
833
 
834
- #: contact_form.php:2035
835
  msgid "Errors color"
836
  msgstr "Color del error"
837
 
838
- #: contact_form.php:2040
839
  msgid "Error text color"
840
  msgstr "Color del texto de error"
841
 
842
- #: contact_form.php:2045
843
  msgid "Background color of the input field errors"
844
  msgstr "Color de fondo de los errores de campo de entrada"
845
 
846
- #: contact_form.php:2050
847
  msgid "Border color of the input field errors"
848
  msgstr "Color del borde de los errores de campo de entrada"
849
 
850
- #: contact_form.php:2055
851
  msgid "Placeholder color of the input field errors"
852
  msgstr "El color de marcador de posición de los errores de campo de entrada"
853
 
854
- #: contact_form.php:2060
855
  msgid "Input fields"
856
  msgstr "Campos de entrada"
857
 
858
- #: contact_form.php:2065
859
  msgid "Input fields background color"
860
  msgstr "Color de fondo de los campos de entrada"
861
 
862
- #: contact_form.php:2070
863
  msgid "Text fields color"
864
  msgstr "Color de los campos de texto"
865
 
866
- #: contact_form.php:2074
867
  msgid "Border width in px, numbers only"
868
  msgstr "Ancho del borde en píxeles, sólo números"
869
 
870
- #: contact_form.php:2079 contact_form.php:2103
 
871
  msgid "Border color"
872
  msgstr "Color del borde"
873
 
874
- #: contact_form.php:2084
875
  msgid "Submit button"
876
  msgstr "Botón enviar"
877
 
878
- #: contact_form.php:2088
879
  msgid "Width in px, numbers only"
880
  msgstr "Ancho en píxeles, sólo números"
881
 
882
- #: contact_form.php:2093
883
  msgid "Button color"
884
  msgstr "Color del botón"
885
 
886
- #: contact_form.php:2098
887
  msgid "Button text color"
888
  msgstr "Color del texto del botón"
889
 
890
- #: contact_form.php:2127
891
  msgid "Contact Form | Preview"
892
  msgstr "Formulario de Contacto | Vista previa"
893
 
894
- #: contact_form.php:2128
895
  msgid "Drag the necessary field to sort fields."
896
  msgstr "Arrastre el campo necesario para ordenar los campos."
897
 
898
- #: contact_form.php:2364
899
- #, fuzzy
900
- msgid ""
901
- "If you would like to add the Contact Form to your website, just copy and "
902
- "paste this shortcode to your post or page or widget"
903
  msgstr ""
904
- "Si quieres agregar el formulario de contacto en tu sitio web, sólo tienes "
905
- "que copiar y pegar este código corto a tu post, una página o un widget:"
906
 
907
- #: contact_form.php:2486
908
- msgid "Sorry, email message could not be delivered."
909
- msgstr "Lo sentimos, el mensaje de correo electrónico no se pudo entregar."
910
-
911
- #: contact_form.php:3090 contact_form.php:3092
912
- msgid "Sent from (ip address)"
913
- msgstr "Enviado desde (dirección IP)"
914
-
915
- #: contact_form.php:3120
916
- msgid "Contact from"
917
- msgstr "Contact from"
918
 
919
- #: contact_form.php:3125 contact_form.php:3174
920
- msgid "Site"
921
- msgstr "Sitio"
922
 
923
- #: contact_form.php:3286
924
- msgid ""
925
- "If you can see this MIME, it means that the MIME type is not supported by "
926
- "your email client!"
927
- msgstr ""
928
- "Si puede ver esta MIME, significa que el tipo MIME no es compatible con su "
929
- "cliente de correo electrónico!"
930
 
931
- #: contact_form.php:3358
932
- msgid "FAQ"
933
- msgstr "Preguntas más frecuentes"
934
 
935
- #: contact_form.php:3359
936
- msgid "Support"
937
- msgstr "Soporte técnico"
938
 
939
- #: contact_form.php:3408
940
- msgid "Are you sure that you want to delete this language data?"
941
- msgstr "¿Estás seguro de que quieres eliminar este idioma?"
942
 
943
- #: contact_form.php:3431
944
- msgid "Add multiple forms"
945
- msgstr "Añadir múltiples forularios"
946
 
947
- #: contact_form.php:3431
948
- msgid ""
949
- "Install Contact Form Multi plugin to create unlimited number of contact "
950
- "forms."
951
- msgstr ""
952
- "Instalar el plugin Contact Form Multi para crear un número ilimitado de "
953
- "formas de contacto."
954
 
955
- #: contact_form.php:3436
956
- msgid "Learn more"
957
- msgstr "Más información"
958
 
959
- #: contact_form.php:3494
960
- msgid "Error"
961
- msgstr ""
962
 
963
- #: contact_form.php:3494 contact_form.php:3496
964
- msgid "Illegal language code"
965
- msgstr ""
 
 
 
966
 
967
- #: contact_form.php:3681
968
- msgid "Close notice"
969
- msgstr "Cerrar aviso"
 
 
 
 
 
 
 
970
 
971
- #: contact_form.php:3686
972
- msgid "allows to store your messages to the database."
973
- msgstr "Permite almacenar sus mensajes en la base de datos."
974
 
975
- #: contact_form.php:3687
976
- msgid "Manage messages that have been sent from your website."
977
- msgstr "Administración de mensajes que han sido enviados desde su sitio web."
978
 
979
- #: contact_form.php:3690
980
- msgid "Learn More"
981
- msgstr "Más información"
982
 
983
- #: contact_form.php:3750
984
- msgid "Contact form"
985
- msgstr "Formulario de contacto"
 
 
 
 
 
986
 
987
- #: contact_form.php:3763 contact_form.php:3773
988
- msgid "Language"
989
- msgstr "Idioma"
 
 
 
990
 
991
  #~ msgid "Example: Sent from (IP address):\t127.0.0.1"
992
  #~ msgstr "Ejemplo: Enviado desde (dirección IP:\t127.0.0.1"
2
  msgstr ""
3
  "Project-Id-Version: Contact Form\n"
4
  "Report-Msgid-Bugs-To: \n"
5
+ "POT-Creation-Date: 2019-02-25 16:26+0200\n"
6
+ "PO-Revision-Date: 2019-02-25 16:26+0200\n"
7
  "Last-Translator: plugin@bestwebsoft.com <plugin@bestwebsoft.com>\n"
8
  "Language-Team: Javitopo <jaawme@hotmail.com>\n"
9
  "Language: es_ES\n"
17
  "Plural-Forms: nplurals=2; plural=(n != 1);\n"
18
  "X-Poedit-SearchPath-0: .\n"
19
 
20
+ #: contact_form.php:39 contact_form.php:47 contact_form.php:647
21
+ #: includes/class-cntctfrm-settings.php:425
22
  msgid "Contact Form Settings"
23
  msgstr "Opciones de formulario de contacto"
24
 
25
+ #: contact_form.php:48 contact_form.php:1619 contact_form.php:1633
26
+ #: includes/class-cntctfrm-settings.php:27
27
+ msgid "Settings"
28
+ msgstr "Configuración"
29
+
30
+ #: contact_form.php:63 includes/class-cntctfrm-settings.php:483
31
+ #: includes/class-cntctfrm-settings.php:817
32
+ #: includes/class-cntctfrm-settings.php:998
33
+ #: includes/class-cntctfrm-settings.php:1513
34
+ msgid "Upgrade to Pro"
35
+ msgstr ""
36
 
37
+ #: contact_form.php:350 contact_form.php:1410 contact_form.php:1456
38
+ #: includes/class-cntctfrm-settings.php:574
39
+ #: includes/class-cntctfrm-settings.php:664
40
+ #: includes/class-cntctfrm-settings.php:1064
41
+ #: includes/class-cntctfrm-settings.php:1103
42
+ #: includes/class-cntctfrm-settings.php:1344
43
  msgid "Name"
44
  msgstr "Nombre"
45
 
46
+ #: contact_form.php:351 contact_form.php:1417 contact_form.php:1462
47
+ #: includes/class-cntctfrm-settings.php:711
48
+ #: includes/class-cntctfrm-settings.php:1065
49
+ #: includes/class-cntctfrm-settings.php:1104
50
+ #: includes/class-cntctfrm-settings.php:1349
51
  msgid "Address"
52
  msgstr "Dirección"
53
 
54
+ #: contact_form.php:352 includes/class-cntctfrm-settings.php:727
55
+ #: includes/class-cntctfrm-settings.php:1066
56
+ #: includes/class-cntctfrm-settings.php:1105
57
  msgid "Email Address"
58
  msgstr "Dirección de correo electrónico"
59
 
60
+ #: contact_form.php:353 includes/class-cntctfrm-settings.php:747
61
+ #: includes/class-cntctfrm-settings.php:1067
62
+ #: includes/class-cntctfrm-settings.php:1106
63
  msgid "Phone number"
64
  msgstr "Número de teléfono"
65
 
66
+ #: contact_form.php:354 contact_form.php:1428 contact_form.php:1471
67
+ #: includes/class-cntctfrm-settings.php:763
68
+ #: includes/class-cntctfrm-settings.php:1068
69
+ #: includes/class-cntctfrm-settings.php:1107
70
+ #: includes/class-cntctfrm-settings.php:1364
71
  msgid "Subject"
72
  msgstr "Asunto"
73
 
74
+ #: contact_form.php:355 contact_form.php:1433 contact_form.php:1475
75
+ #: includes/class-cntctfrm-settings.php:787
76
+ #: includes/class-cntctfrm-settings.php:1069
77
+ #: includes/class-cntctfrm-settings.php:1108
78
+ #: includes/class-cntctfrm-settings.php:1368
79
  msgid "Message"
80
  msgstr "Mensaje"
81
 
82
+ #: contact_form.php:356 includes/class-cntctfrm-settings.php:1070
83
+ #: includes/class-cntctfrm-settings.php:1109
84
+ #: includes/class-cntctfrm-settings.php:1373
85
  msgid "Attachment"
86
  msgstr "Adjuntos"
87
 
88
+ #: contact_form.php:357
89
  msgid ""
90
  "Supported file types: HTML, TXT, CSS, GIF, PNG, JPEG, JPG, TIFF, BMP, AI, "
91
  "EPS, PS, CSV, RTF, PDF, DOC, DOCX, XLS, XLSX, ZIP, RAR, WAV, MP3, PPT."
93
  "Tipos de archivo admitidos: HTML, TXT, CSS, GIF, PNG, JPEG, JPG, TIFF, BMP, "
94
  "AI, EPS, PS, CSV, RTF, PDF, DOC, DOCX, XLS, XLSX, ZIP, RAR, WAV, MP3, PPT."
95
 
96
+ #: contact_form.php:358 includes/class-cntctfrm-settings.php:1072
97
+ #: includes/class-cntctfrm-settings.php:1111
98
  msgid "Send me a copy"
99
  msgstr "Deseo recibir una copia"
100
 
101
+ #: contact_form.php:359 includes/class-cntctfrm-settings.php:1073
102
+ #: includes/class-cntctfrm-settings.php:1112
103
  msgid "I consent to having this site collect my personal data."
104
  msgstr ""
105
 
106
+ #: contact_form.php:360 includes/class-cntctfrm-settings.php:1074
107
+ #: includes/class-cntctfrm-settings.php:1113
108
  msgid "Submit"
109
  msgstr "Enviar"
110
 
111
+ #: contact_form.php:361
112
  msgid "Your name is required."
113
  msgstr "Es necesario un nombre."
114
 
115
+ #: contact_form.php:362
116
  msgid "Address is required."
117
  msgstr "Se requiere dirección."
118
 
119
+ #: contact_form.php:363
120
  msgid "A valid email address is required."
121
  msgstr "Se requiere una dirección de email válida."
122
 
123
+ #: contact_form.php:364
124
  msgid "Phone number is required."
125
  msgstr "Es necesario un número de teléfono."
126
 
127
+ #: contact_form.php:365
128
  msgid "Subject is required."
129
  msgstr "Es necesario un asunto."
130
 
131
+ #: contact_form.php:366
132
  msgid "Message text is required."
133
  msgstr "Es necesario el texto del mensaje."
134
 
135
+ #: contact_form.php:367
136
  msgid "File format is not valid."
137
  msgstr "Formato de archivo no válido."
138
 
139
+ #: contact_form.php:368
140
  msgid "File upload error."
141
  msgstr "Error de carga de archivos."
142
 
143
+ #: contact_form.php:369
144
  msgid "The file could not be uploaded."
145
  msgstr "El archivo no se pudo cargar."
146
 
147
+ #: contact_form.php:370
148
  msgid "This file is too large."
149
  msgstr "Este archivo es demasiado grande."
150
 
151
+ #: contact_form.php:371
152
  msgid "Please fill out the CAPTCHA."
153
  msgstr "Por favor complete el CAPTCHA."
154
 
155
+ #: contact_form.php:372
156
  msgid "Please make corrections below and try again."
157
  msgstr "Por favor, haga las correcciones y a continuación vuelva a intentarlo."
158
 
159
+ #: contact_form.php:374
160
  msgid "Thank you for contacting us."
161
  msgstr "Gracias por contactar con nosotros."
162
 
163
+ #: contact_form.php:651
164
+ msgid "NEW_FORM"
165
+ msgstr "NUEVO FORMULARIO"
166
 
167
+ #: contact_form.php:652
168
  msgid ""
169
+ "If you want to create multiple contact forms, please install the Contact "
170
+ "Form Multi plugin."
171
  msgstr ""
172
+ "Si desea crear varios formularios de contacto, por favor, instale el plugin "
173
+ "Formulario de contacto múltiple."
 
174
 
175
+ #: contact_form.php:657
176
  msgid ""
177
+ "Contact Form plugin doesn't support your current version of Contact Form "
178
+ "Multi plugin. Please update Contact Form Multi plugin to version 1.2.6 or "
179
+ "higher."
180
  msgstr ""
 
 
181
 
182
+ #: contact_form.php:759
183
+ msgid "Sorry, email message could not be delivered."
184
+ msgstr "Lo sentimos, el mensaje de correo electrónico no se pudo entregar."
185
+
186
+ #: contact_form.php:1366 contact_form.php:1368
187
+ msgid "Sent from (ip address)"
188
+ msgstr "Enviado desde (dirección IP)"
189
+
190
+ #: contact_form.php:1372 contact_form.php:1374
191
+ #: includes/class-cntctfrm-settings.php:1024
192
+ msgid "Date/Time"
193
+ msgstr "Fecha/Hora"
194
+
195
+ #: contact_form.php:1378 contact_form.php:1380
196
+ #: includes/class-cntctfrm-settings.php:1025
197
+ msgid "Sent from (referer)"
198
+ msgstr "Enviado desde (referencia)"
199
+
200
+ #: contact_form.php:1384 contact_form.php:1386
201
+ #: includes/class-cntctfrm-settings.php:1026
202
+ msgid "Using (user agent)"
203
+ msgstr "Usando (agente de usuario)"
204
+
205
+ #: contact_form.php:1396
206
+ msgid "Contact from"
207
+ msgstr "Contact from"
208
+
209
+ #: contact_form.php:1401 contact_form.php:1450
210
+ msgid "Site"
211
+ msgstr "Sitio"
212
+
213
+ #: contact_form.php:1423 contact_form.php:1467
214
+ #: includes/class-cntctfrm-settings.php:598
215
+ msgid "Email"
216
+ msgstr "Correo electrónico"
217
+
218
+ #: contact_form.php:1439 contact_form.php:1480
219
+ #: includes/class-cntctfrm-settings.php:1359
220
+ msgid "Phone Number"
221
+ msgstr "Número de teléfono"
222
 
223
+ #: contact_form.php:1562
224
  msgid ""
225
+ "If you can see this MIME, it means that the MIME type is not supported by "
226
+ "your email client!"
227
  msgstr ""
228
+ "Si puede ver esta MIME, significa que el tipo MIME no es compatible con su "
229
+ "cliente de correo electrónico!"
230
 
231
+ #: contact_form.php:1634
232
+ msgid "FAQ"
233
+ msgstr "Preguntas más frecuentes"
234
+
235
+ #: contact_form.php:1635
236
+ msgid "Support"
237
+ msgstr "Soporte técnico"
238
+
239
+ #: contact_form.php:1684
240
+ msgid "Are you sure that you want to delete this language data?"
241
+ msgstr "¿Estás seguro de que quieres eliminar este idioma?"
242
+
243
+ #: contact_form.php:1706
244
+ msgid "Add multiple forms"
245
+ msgstr "Añadir múltiples forularios"
246
+
247
+ #: contact_form.php:1706
248
+ msgid ""
249
+ "Install Contact Form Multi plugin to create unlimited number of contact "
250
+ "forms."
251
  msgstr ""
252
+ "Instalar el plugin Contact Form Multi para crear un número ilimitado de "
253
+ "formas de contacto."
254
 
255
+ #: contact_form.php:1711
256
+ msgid "Learn more"
257
+ msgstr "Más información"
258
 
259
+ #: contact_form.php:1715 includes/class-cntctfrm-settings.php:469
260
+ #: includes/class-cntctfrm-settings.php:987
261
+ #: includes/class-cntctfrm-settings.php:1272
262
+ msgid "Close"
263
+ msgstr "Cerrar"
264
 
265
+ #: contact_form.php:1769
266
+ msgid "Error"
267
+ msgstr ""
268
 
269
+ #: contact_form.php:1769 contact_form.php:1771
270
+ msgid "Illegal language code"
271
+ msgstr ""
272
+
273
+ #: contact_form.php:1805 contact_form.php:1807
274
+ #: includes/class-cntctfrm-settings.php:1089
275
+ #: includes/class-cntctfrm-settings.php:1091
276
+ #: includes/class-cntctfrm-settings.php:1128
277
+ #: includes/class-cntctfrm-settings.php:1130
278
+ #: includes/class-cntctfrm-settings.php:1162
279
+ #: includes/class-cntctfrm-settings.php:1164
280
+ #: includes/class-cntctfrm-settings.php:1176
281
+ #: includes/class-cntctfrm-settings.php:1178
282
+ msgid "Use shortcode"
283
+ msgstr "Utilice shortcode"
284
+
285
+ #: contact_form.php:1805 contact_form.php:1807
286
+ #: includes/class-cntctfrm-settings.php:1089
287
+ #: includes/class-cntctfrm-settings.php:1091
288
+ #: includes/class-cntctfrm-settings.php:1128
289
+ #: includes/class-cntctfrm-settings.php:1130
290
+ #: includes/class-cntctfrm-settings.php:1162
291
+ #: includes/class-cntctfrm-settings.php:1164
292
+ #: includes/class-cntctfrm-settings.php:1176
293
+ #: includes/class-cntctfrm-settings.php:1178
294
+ msgid "for this language"
295
+ msgstr "para este idioma"
296
+
297
+ #: contact_form.php:1955
298
+ msgid "Close notice"
299
+ msgstr "Cerrar aviso"
300
+
301
+ #: contact_form.php:1960
302
+ msgid "allows to store your messages to the database."
303
+ msgstr "Permite almacenar sus mensajes en la base de datos."
304
+
305
+ #: contact_form.php:1961
306
+ msgid "Manage messages that have been sent from your website."
307
+ msgstr "Administración de mensajes que han sido enviados desde su sitio web."
308
+
309
+ #: contact_form.php:1964
310
+ msgid "Learn More"
311
+ msgstr "Más información"
312
+
313
+ #: contact_form.php:2024
314
+ msgid "Contact form"
315
+ msgstr "Formulario de contacto"
316
 
317
+ #: contact_form.php:2037 contact_form.php:2047
318
+ msgid "Language"
319
+ msgstr "Idioma"
320
+
321
+ #: includes/class-cntctfrm-settings.php:28
322
+ #: includes/class-cntctfrm-settings.php:546
323
+ msgid "Additional Settings"
324
+ msgstr ""
325
 
326
+ #: includes/class-cntctfrm-settings.php:29
327
+ #: includes/class-cntctfrm-settings.php:1198
328
  msgid "Appearance"
329
  msgstr "Apariencia"
330
 
331
+ #: includes/class-cntctfrm-settings.php:30
332
+ msgid "Misc"
333
  msgstr ""
334
 
335
+ #: includes/class-cntctfrm-settings.php:31
336
+ msgid "License Key"
337
+ msgstr ""
338
 
339
+ #: includes/class-cntctfrm-settings.php:32
340
+ msgid "Custom Code"
341
+ msgstr ""
 
342
 
343
+ #: includes/class-cntctfrm-settings.php:99
344
+ msgid "Please enable JavaScript in your browser."
345
+ msgstr ""
346
 
347
+ #: includes/class-cntctfrm-settings.php:101
348
+ #, php-format
349
  msgid ""
350
+ "Contact Form plugin requires PHP %s or higher. Please contact your hosting "
351
+ "provider to upgrade PHP version."
352
  msgstr ""
 
 
353
 
354
+ #: includes/class-cntctfrm-settings.php:347
 
355
  msgid ""
356
+ "Email 'FROM' field option was changed, which may cause email messages being "
357
+ "moved to the spam folder or email delivery failures."
358
  msgstr ""
359
+ "El campo 'DESDE' del correo electrónico ha sido cambiado, por lo que los "
360
+ "mensajes de correo electrónico pueden haber sido enviados a la carpeta de "
361
+ "correo no deseado o provocar errores en la entrega del correo electrónico."
362
 
363
+ #: includes/class-cntctfrm-settings.php:357
364
+ msgid ""
365
+ "If the 'Redirect to page' option is selected then the URL field should be in "
366
+ "the following format"
367
+ msgstr ""
368
+ "Si se selecciona la opción 'Redirigir a la página', entonces el campo URL "
369
+ "debe estar en el siguiente formato"
370
+
371
+ #: includes/class-cntctfrm-settings.php:364
372
+ msgid "Such user does not exist."
373
+ msgstr "Dicho usuario no existe."
374
+
375
+ #: includes/class-cntctfrm-settings.php:374
376
  msgid ""
377
+ "Please enter a valid email address in the 'Use this email address' field."
 
 
 
378
  msgstr ""
379
+ "Por favor, introduce una dirección de correo electrónico válida en el campo "
380
+ "\"Correo electrónico\"."
381
+
382
+ #: includes/class-cntctfrm-settings.php:382
383
+ msgid "Please enter a valid email address in the 'FROM' field."
384
+ msgstr ""
385
+ "Por favor, introduce una dirección de correo electrónico válida en el campo "
386
+ "\"Desde\"."
387
 
388
+ #: includes/class-cntctfrm-settings.php:402
389
+ msgid "Settings saved."
390
+ msgstr "Configuración guardada."
391
+
392
+ #: includes/class-cntctfrm-settings.php:404
393
+ msgid "Settings are not saved."
394
+ msgstr "Configuración no guardada."
395
+
396
+ #: includes/class-cntctfrm-settings.php:429
397
  msgid ""
398
  "If you leave the fields empty, the messages will be sent to the email "
399
  "address specified during registration."
401
  "Si deja los campos vacíos, se enviarán los mensajes a la dirección de correo "
402
  "electrónico especificada durante el registro."
403
 
404
+ #: includes/class-cntctfrm-settings.php:432
405
  #, fuzzy
406
  msgid "The user's email address"
407
  msgstr "Dirección de correo electrónico del usuario:"
408
 
409
+ #: includes/class-cntctfrm-settings.php:437
410
  msgid "Select a username"
411
  msgstr "Seleccione un nombre de usuario"
412
 
413
+ #: includes/class-cntctfrm-settings.php:450
414
  #, fuzzy
415
  msgid ""
416
  "Select a username of the person who should get the messages from the contact "
419
  "Introduzca un nombre de usuario de la persona que debe recibir los mensajes "
420
  "desde el formulario de contacto."
421
 
422
+ #: includes/class-cntctfrm-settings.php:455
423
  #, fuzzy
424
  msgid "Use this email address"
425
  msgstr "Utilice esta dirección de correo electrónico:"
426
 
427
+ #: includes/class-cntctfrm-settings.php:460
428
  #, fuzzy
429
  msgid "Enter the email address for receiving messages"
430
  msgstr ""
431
  "Introduzca la dirección de correo electrónico que desea que reciba los "
432
  "mensajes."
433
 
434
+ #: includes/class-cntctfrm-settings.php:473
 
 
 
 
 
435
  #, fuzzy
436
  msgid "Add department selectbox to the contact form"
437
  msgstr "Añadir casilla seleccionable al formulario de contacto:"
438
 
439
+ #: includes/class-cntctfrm-settings.php:492
 
 
 
 
 
 
 
 
 
 
440
  msgid "Save emails to the database"
441
  msgstr "Guardar mensajes de correo electrónico a la base de datos"
442
 
443
+ #: includes/class-cntctfrm-settings.php:504
444
+ #: includes/class-cntctfrm-settings.php:518
445
+ #: includes/class-cntctfrm-settings.php:525
446
  msgid "Using"
447
  msgstr "Uso"
448
 
449
+ #: includes/class-cntctfrm-settings.php:510
450
+ #: includes/class-cntctfrm-settings.php:889
451
+ #: includes/class-cntctfrm-settings.php:930
452
+ #: includes/class-cntctfrm-settings.php:965
453
  msgid "Please activate the appropriate option on"
454
  msgstr ""
455
 
456
+ #: includes/class-cntctfrm-settings.php:513
457
+ #: includes/class-cntctfrm-settings.php:892
458
+ #: includes/class-cntctfrm-settings.php:933
459
+ #: includes/class-cntctfrm-settings.php:968
460
  #, fuzzy
461
  msgid "settings page"
462
  msgstr "la página de configuración"
463
 
464
+ #: includes/class-cntctfrm-settings.php:519
465
+ #: includes/class-cntctfrm-settings.php:899
466
+ #: includes/class-cntctfrm-settings.php:941
467
+ #: includes/class-cntctfrm-settings.php:975
468
  msgid "Activate"
469
  msgstr "Activar"
470
 
471
+ #: includes/class-cntctfrm-settings.php:526
472
+ #: includes/class-cntctfrm-settings.php:908
473
+ #: includes/class-cntctfrm-settings.php:947
474
+ #: includes/class-cntctfrm-settings.php:980
475
  msgid "Download"
476
  msgstr "Download"
477
 
478
+ #: includes/class-cntctfrm-settings.php:551
479
  msgid "Sending method"
480
  msgstr ""
481
 
482
+ #: includes/class-cntctfrm-settings.php:556
483
  msgid "Wp-mail"
484
  msgstr "Wp-mail"
485
 
486
+ #: includes/class-cntctfrm-settings.php:557
487
  msgid "You can use the Wordpress wp_mail function for mailing"
488
  msgstr "Tú puedes utilizar la función wp_mail para enviar por correo"
489
 
490
+ #: includes/class-cntctfrm-settings.php:562
491
  msgid "Mail"
492
  msgstr "Correo"
493
 
494
+ #: includes/class-cntctfrm-settings.php:563
495
  msgid "You can use the PHP mail function for mailing"
496
  msgstr "Tú puedes utilizar la función de correo PHP para enviar por correo"
497
 
498
+ #: includes/class-cntctfrm-settings.php:569
499
  msgid "'FROM' field"
500
  msgstr "Campo 'DESDE'"
501
 
502
+ #: includes/class-cntctfrm-settings.php:585
503
  msgid "User name"
504
  msgstr "Nombre de usuario"
505
 
506
+ #: includes/class-cntctfrm-settings.php:587
507
  msgid ""
508
  "The name of the user who fills the form will be used in the field 'From'."
509
  msgstr ""
510
  "El nombre del usuario que rellena en el formulario se utiliza en el campo "
511
  "\"De:\"."
512
 
513
+ #: includes/class-cntctfrm-settings.php:609
 
 
 
 
514
  msgid "User email"
515
  msgstr "Correo electrónico del usuario"
516
 
517
+ #: includes/class-cntctfrm-settings.php:611
518
  msgid ""
519
  "The email address of the user who fills the form will be used in the field "
520
  "'From'."
522
  "La dirección de correo electrónico del usuario que rellena el formulario se "
523
  "utiliza en el campo \"De\"."
524
 
525
+ #: includes/class-cntctfrm-settings.php:620
526
  msgid ""
527
  "If this option is changed, email messages may be moved to the spam folder or "
528
  "email delivery failures may occur."
531
  "a la carpeta de correo no deseado o ocurrir otros errores en la entrega del "
532
  "correo."
533
 
534
+ #: includes/class-cntctfrm-settings.php:629
535
  msgid "Required symbol"
536
  msgstr "Símbolo de Obligatorio"
537
 
538
+ #: includes/class-cntctfrm-settings.php:639
539
  msgid "Fields"
540
  msgstr "Campos"
541
 
542
+ #: includes/class-cntctfrm-settings.php:640
543
+ #: includes/class-cntctfrm-settings.php:667
544
+ #: includes/class-cntctfrm-settings.php:694
545
+ #: includes/class-cntctfrm-settings.php:714
546
+ #: includes/class-cntctfrm-settings.php:750
547
+ #: includes/class-cntctfrm-settings.php:832
548
  msgid "Used"
549
  msgstr "Usado"
550
 
551
+ #: includes/class-cntctfrm-settings.php:641
552
+ #: includes/class-cntctfrm-settings.php:656
553
+ #: includes/class-cntctfrm-settings.php:671
554
+ #: includes/class-cntctfrm-settings.php:698
555
+ #: includes/class-cntctfrm-settings.php:718
556
+ #: includes/class-cntctfrm-settings.php:754
557
+ #: includes/class-cntctfrm-settings.php:767
558
+ #: includes/class-cntctfrm-settings.php:791
559
  msgid "Required"
560
  msgstr "Obligatorio"
561
 
562
+ #: includes/class-cntctfrm-settings.php:643
563
+ #: includes/class-cntctfrm-settings.php:676
564
+ #: includes/class-cntctfrm-settings.php:733
565
+ #: includes/class-cntctfrm-settings.php:772
566
+ #: includes/class-cntctfrm-settings.php:796
567
  msgid "Visible"
568
  msgstr "Visible"
569
 
570
+ #: includes/class-cntctfrm-settings.php:644
571
+ #: includes/class-cntctfrm-settings.php:680
572
+ #: includes/class-cntctfrm-settings.php:737
573
+ #: includes/class-cntctfrm-settings.php:776
574
+ #: includes/class-cntctfrm-settings.php:800
575
  msgid "Disabled for editing"
576
  msgstr "Inhabilitado para la edición"
577
 
578
+ #: includes/class-cntctfrm-settings.php:645
579
+ #: includes/class-cntctfrm-settings.php:704
580
+ #: includes/class-cntctfrm-settings.php:780
581
+ #: includes/class-cntctfrm-settings.php:804
582
  msgid "Field's default value"
583
  msgstr "Valor predeterminado del campo"
584
 
585
+ #: includes/class-cntctfrm-settings.php:652
586
  msgid "Department selectbox"
587
  msgstr "Apartado de casilla seleccionable"
588
 
589
+ #: includes/class-cntctfrm-settings.php:684
590
  msgid "Use User's name as a default value if the user is logged in."
591
  msgstr ""
592
  "Usar el nombre de usuario como valor por defecto si el usuario está "
593
  "conectado."
594
 
595
+ #: includes/class-cntctfrm-settings.php:685
596
+ #: includes/class-cntctfrm-settings.php:742
597
  msgid ""
598
  "'Visible' and 'Disabled for editing' options will be applied only to logged-"
599
  "in users."
601
  "Las opciones 'Visible' y 'Desactivado para la edición' solo serán aplicadas "
602
  "a los usuarios con sesión iniciada."
603
 
604
+ #: includes/class-cntctfrm-settings.php:691
605
  msgid "Location selectbox"
606
  msgstr "Localización de la casilla seleccionable"
607
 
608
+ #: includes/class-cntctfrm-settings.php:741
609
  msgid "Use User's email as a default value if the user is logged in."
610
  msgstr ""
611
  "Utiliza por defecto el correo electrónico del usuario si el usuario está "
612
  "conectado."
613
 
614
+ #: includes/class-cntctfrm-settings.php:825
615
  msgid "Attachment block"
616
  msgstr "bloque de adjuntos"
617
 
618
+ #: includes/class-cntctfrm-settings.php:827
619
  msgid "Users can attach the following file formats"
620
  msgstr "Los usuarios pueden adjuntar los siguientes formatos de archivo"
621
 
622
+ #: includes/class-cntctfrm-settings.php:845
623
  msgid "Add to the form"
624
  msgstr "Añadir a la forma"
625
 
626
+ #: includes/class-cntctfrm-settings.php:850
627
  msgid "Tips below the Attachment"
628
  msgstr "Consejos debajo del archivo adjunto"
629
 
630
+ #: includes/class-cntctfrm-settings.php:857
631
  msgid "'Send me a copy' block"
632
  msgstr "'Deseo recibir una copia' bloque"
633
 
634
+ #: includes/class-cntctfrm-settings.php:864
635
  msgid "GDPR Compliance"
636
  msgstr ""
637
 
638
+ #: includes/class-cntctfrm-settings.php:869
639
  msgid "Link to Privacy Policy Page"
640
  msgstr ""
641
 
642
+ #: includes/class-cntctfrm-settings.php:873
643
  msgid "Text for Privacy Policy Link"
644
  msgstr ""
645
 
646
+ #: includes/class-cntctfrm-settings.php:901
647
  #, fuzzy
648
  msgid "Activate for network"
649
  msgstr "Activar suscripción"
650
 
651
+ #: includes/class-cntctfrm-settings.php:991
652
  msgid "Agreement checkbox"
653
  msgstr "casilla de verificación de acuerdo"
654
 
655
+ #: includes/class-cntctfrm-settings.php:991
656
  msgid "Required checkbox for submitting the form"
657
  msgstr "Casilla de verificación obligatoria para enviar el formulario"
658
 
659
+ #: includes/class-cntctfrm-settings.php:992
660
  msgid "Optional checkbox"
661
  msgstr "Casilla opcional"
662
 
663
+ #: includes/class-cntctfrm-settings.php:992
664
  msgid "Optional checkbox, the results of which will be displayed in email"
665
  msgstr ""
666
  "Casilla opcional, cuyos resultados se mostrarán en el correo electrónico"
667
 
668
+ #: includes/class-cntctfrm-settings.php:1007
669
  msgid "Delete an attachment file from the server after the email is sent"
670
  msgstr ""
671
  "Eliminar un archivo adjunto del servidor después de que se envíe el correo "
672
  "electrónico"
673
 
674
+ #: includes/class-cntctfrm-settings.php:1013
675
  msgid "Email in HTML format sending"
676
  msgstr "Enviar correo electrónico en formato HTML"
677
 
678
+ #: includes/class-cntctfrm-settings.php:1017
679
  msgid "Display additional info in the email"
680
  msgstr "Mostrar información adicional en el correo electrónico"
681
 
682
+ #: includes/class-cntctfrm-settings.php:1023
683
  msgid "Sent from (IP address)"
684
  msgstr "Enviado desde (dirección IP)"
685
 
686
+ #: includes/class-cntctfrm-settings.php:1023
687
  msgid "Example: Sent from (IP address): 127.0.0.1"
688
  msgstr ""
689
 
690
+ #: includes/class-cntctfrm-settings.php:1024
 
 
 
 
691
  msgid "Example: Date/Time: August 19, 2013 8:50 pm"
692
  msgstr ""
693
 
694
+ #: includes/class-cntctfrm-settings.php:1025
 
 
 
 
695
  msgid ""
696
  "Example: Sent from (referer): https://bestwebsoft.com/contacts/contact-us/"
697
  msgstr ""
698
 
699
+ #: includes/class-cntctfrm-settings.php:1026
 
 
 
 
700
  msgid ""
701
  "Example: Using (user agent): Mozilla/5.0 (Windows NT 6.2; WOW64) "
702
  "AppleWebKit/537.36 (KHTML, like Gecko) Chrome/28.0.1500.95 Safari/537.36"
703
  msgstr ""
704
 
705
+ #: includes/class-cntctfrm-settings.php:1031
706
  msgid "Language settings for the field names in the form"
707
  msgstr ""
708
  "Configuración de idioma para los nombres de los campos en el formulario"
709
 
710
+ #: includes/class-cntctfrm-settings.php:1040
711
  msgid "Add a language"
712
  msgstr "Añadir un idioma"
713
 
714
+ #: includes/class-cntctfrm-settings.php:1044
715
  msgid "Change the names of the contact form fields and error messages"
716
  msgstr ""
717
  "Cambie los nombres de los campos del formulario de contacto y mensajes de "
718
  "error"
719
 
720
+ #: includes/class-cntctfrm-settings.php:1049
721
+ #: includes/class-cntctfrm-settings.php:1147
722
+ #: includes/class-cntctfrm-settings.php:1252
 
 
723
  msgid "Default"
724
  msgstr "Defecto"
725
 
726
+ #: includes/class-cntctfrm-settings.php:1062
727
+ #: includes/class-cntctfrm-settings.php:1101
728
  msgid "click to expand/hide the list"
729
  msgstr "haga clic para expandir / ocultar la lista"
730
 
731
+ #: includes/class-cntctfrm-settings.php:1071
732
+ #: includes/class-cntctfrm-settings.php:1110
733
  msgid "Tips below the Attachment block"
734
  msgstr "Consejos debajo del bloque del archivo adjunto"
735
 
736
+ #: includes/class-cntctfrm-settings.php:1075
737
+ #: includes/class-cntctfrm-settings.php:1114
738
  msgid "Error message for the Name field"
739
  msgstr "Mensaje de error para el campo Nombre"
740
 
741
+ #: includes/class-cntctfrm-settings.php:1076
742
+ #: includes/class-cntctfrm-settings.php:1115
743
  msgid "Error message for the Address field"
744
  msgstr "Mensaje de error para el campo dirección"
745
 
746
+ #: includes/class-cntctfrm-settings.php:1077
747
+ #: includes/class-cntctfrm-settings.php:1116
748
  msgid "Error message for the Email field"
749
  msgstr "Mensaje de error en el campo Correo electrónico"
750
 
751
+ #: includes/class-cntctfrm-settings.php:1078
752
+ #: includes/class-cntctfrm-settings.php:1117
753
  msgid "Error message for the Phone field"
754
  msgstr "Mensaje de error para el campo Teléfono"
755
 
756
+ #: includes/class-cntctfrm-settings.php:1079
757
+ #: includes/class-cntctfrm-settings.php:1118
758
  msgid "Error message for the Subject field"
759
  msgstr "Mensaje de error para el campo Asunto"
760
 
761
+ #: includes/class-cntctfrm-settings.php:1080
762
+ #: includes/class-cntctfrm-settings.php:1119
763
  msgid "Error message for the Message field"
764
  msgstr "Mensaje de error en el campo Mensaje"
765
 
766
+ #: includes/class-cntctfrm-settings.php:1081
767
+ #: includes/class-cntctfrm-settings.php:1120
768
  msgid "Error message about the file type for the Attachment field"
769
  msgstr ""
770
  "Mensaje de error sobre el tipo de archivo para el campo de archivos adjuntos"
771
 
772
+ #: includes/class-cntctfrm-settings.php:1082
773
+ #: includes/class-cntctfrm-settings.php:1121
774
  msgid ""
775
  "Error message while uploading a file for the Attachment field to the server"
776
  msgstr ""
777
  "Mensaje de error al cargar un archivo en el campo de archivos adjuntos al "
778
  "servidor"
779
 
780
+ #: includes/class-cntctfrm-settings.php:1083
781
+ #: includes/class-cntctfrm-settings.php:1122
782
  msgid "Error message while moving the file for the Attachment field"
783
  msgstr ""
784
  "Mensaje de error mientras se mueve el archivo en el campo de archivos "
785
  "adjuntos"
786
 
787
+ #: includes/class-cntctfrm-settings.php:1084
788
+ #: includes/class-cntctfrm-settings.php:1123
789
  msgid "Error message when file size limit for the Attachment field is exceeded"
790
  msgstr ""
791
  "Mensaje de error cuando se supera el límite de tamaño de archivo para el "
792
  "campo de archivos adjuntos"
793
 
794
+ #: includes/class-cntctfrm-settings.php:1085
795
+ #: includes/class-cntctfrm-settings.php:1124
796
  msgid "Error message for the Captcha field"
797
  msgstr "Mensaje de error para el campo Captcha"
798
 
799
+ #: includes/class-cntctfrm-settings.php:1086
800
+ #: includes/class-cntctfrm-settings.php:1125
801
  msgid "Error message for the whole form"
802
  msgstr "Mensaje de error para todo el formulario"
803
 
804
+ #: includes/class-cntctfrm-settings.php:1138
 
 
 
 
 
 
 
 
 
 
 
 
 
 
805
  msgid "Use the changed names of the contact form fields in the email"
806
  msgstr ""
807
  "Utilice los nombres cambiados de los campos del formulario de contacto en el "
808
  "correo electrónico"
809
 
810
+ #: includes/class-cntctfrm-settings.php:1144
811
  msgid "Action after email is sent"
812
  msgstr "Acción después de que se envíe el correo electrónico"
813
 
814
+ #: includes/class-cntctfrm-settings.php:1146
815
  msgid "Display text"
816
  msgstr "Mostrar texto"
817
 
818
+ #: includes/class-cntctfrm-settings.php:1160
819
+ #: includes/class-cntctfrm-settings.php:1174
820
  msgid "Text"
821
  msgstr "Texto"
822
 
823
+ #: includes/class-cntctfrm-settings.php:1185
824
  msgid "Redirect to the page"
825
  msgstr "Redirigir a la página"
826
 
827
+ #: includes/class-cntctfrm-settings.php:1186
828
  msgid "Url"
829
  msgstr "Url"
830
 
831
+ #: includes/class-cntctfrm-settings.php:1206
 
 
 
 
 
 
 
 
 
 
 
 
 
832
  #, php-format
833
  msgid ""
834
+ "Please enable JavaScript to change '%s', '%s', '%s', '%s' options and for "
835
+ "fields sorting."
 
836
  msgstr ""
 
 
 
837
 
838
+ #: includes/class-cntctfrm-settings.php:1207
839
+ #: includes/class-cntctfrm-settings.php:1224
 
 
 
 
 
 
 
 
 
 
 
840
  msgid "Form layout"
841
  msgstr "Diseño del formulario"
842
 
843
+ #: includes/class-cntctfrm-settings.php:1208
844
+ #: includes/class-cntctfrm-settings.php:1291
845
+ msgid "Labels position"
846
+ msgstr "Posición de las etiquetas"
847
+
848
+ #: includes/class-cntctfrm-settings.php:1209
849
+ #: includes/class-cntctfrm-settings.php:1309
850
+ msgid "Labels align"
851
+ msgstr "Alinear etiquetas"
852
+
853
+ #: includes/class-cntctfrm-settings.php:1210
854
+ #: includes/class-cntctfrm-settings.php:1236
855
  msgid "Submit position"
856
  msgstr "Enviar posición"
857
 
858
+ #: includes/class-cntctfrm-settings.php:1211
859
+ #: includes/class-cntctfrm-settings.php:1340
860
+ msgid "Add tooltips"
861
+ msgstr "Añadir información sobre herramientas"
862
+
863
+ #: includes/class-cntctfrm-settings.php:1212
864
+ #: includes/class-cntctfrm-settings.php:1381
865
+ msgid "Style options"
866
+ msgstr "Opciones de estilo"
867
+
868
+ #: includes/class-cntctfrm-settings.php:1228
869
  msgid "One column"
870
  msgstr "Una columna"
871
 
872
+ #: includes/class-cntctfrm-settings.php:1231
873
  msgid "Two columns"
874
  msgstr "Dos columnas"
875
 
876
+ #: includes/class-cntctfrm-settings.php:1240
877
+ #: includes/class-cntctfrm-settings.php:1280
878
+ #: includes/class-cntctfrm-settings.php:1298
879
+ #: includes/class-cntctfrm-settings.php:1313
880
  msgid "Left"
881
  msgstr "Izquierda"
882
 
883
+ #: includes/class-cntctfrm-settings.php:1243
884
+ #: includes/class-cntctfrm-settings.php:1286
885
+ #: includes/class-cntctfrm-settings.php:1301
886
+ #: includes/class-cntctfrm-settings.php:1319
887
  msgid "Right"
888
  msgstr "Derecha"
889
 
890
+ #: includes/class-cntctfrm-settings.php:1248
891
  msgid "Width"
892
  msgstr ""
893
 
894
+ #: includes/class-cntctfrm-settings.php:1256
895
  msgid "Custom"
896
  msgstr ""
897
 
898
+ #: includes/class-cntctfrm-settings.php:1263
899
  msgid "px"
900
  msgstr ""
901
 
902
+ #: includes/class-cntctfrm-settings.php:1276
903
  msgid "Form align"
904
  msgstr "Alinear formulario"
905
 
906
+ #: includes/class-cntctfrm-settings.php:1283
907
+ #: includes/class-cntctfrm-settings.php:1316
908
  msgid "Center"
909
  msgstr "Centro"
910
 
911
+ #: includes/class-cntctfrm-settings.php:1295
 
 
 
 
912
  msgid "Top"
913
  msgstr "Arriba"
914
 
915
+ #: includes/class-cntctfrm-settings.php:1304
916
  msgid "Bottom"
917
  msgstr "Abajo"
918
 
919
+ #: includes/class-cntctfrm-settings.php:1324
 
 
 
 
920
  msgid "Errors output"
921
  msgstr "Salida de errores"
922
 
923
+ #: includes/class-cntctfrm-settings.php:1327
924
  msgid "Display error messages"
925
  msgstr "Mostrar mensajes de error"
926
 
927
+ #: includes/class-cntctfrm-settings.php:1328
928
  msgid "Color of the input field errors."
929
  msgstr "El color de los errores del campo de entrada."
930
 
931
+ #: includes/class-cntctfrm-settings.php:1329
932
  msgid "Display error messages & color of the input field errors"
933
  msgstr ""
934
  "Mostrar mensajes de error y el color de los errores de campo de entrada"
935
 
936
+ #: includes/class-cntctfrm-settings.php:1334
937
  msgid "Add placeholder to the input blocks"
938
  msgstr "Añadir marcador de posición de los bloques de entrada"
939
 
940
+ #: includes/class-cntctfrm-settings.php:1354
 
 
 
 
941
  msgid "Email address"
942
  msgstr "Correo electrónico"
943
 
944
+ #: includes/class-cntctfrm-settings.php:1385
 
 
 
 
 
 
 
 
945
  msgid "Text color"
946
  msgstr "Color del texto"
947
 
948
+ #: includes/class-cntctfrm-settings.php:1393
949
  msgid "Label text color"
950
  msgstr "Color del texto de la Etiqueta"
951
 
952
+ #: includes/class-cntctfrm-settings.php:1402
953
  msgid "Placeholder color"
954
  msgstr "El color de marcador de posición"
955
 
956
+ #: includes/class-cntctfrm-settings.php:1407
957
  msgid "Errors color"
958
  msgstr "Color del error"
959
 
960
+ #: includes/class-cntctfrm-settings.php:1415
961
  msgid "Error text color"
962
  msgstr "Color del texto de error"
963
 
964
+ #: includes/class-cntctfrm-settings.php:1423
965
  msgid "Background color of the input field errors"
966
  msgstr "Color de fondo de los errores de campo de entrada"
967
 
968
+ #: includes/class-cntctfrm-settings.php:1431
969
  msgid "Border color of the input field errors"
970
  msgstr "Color del borde de los errores de campo de entrada"
971
 
972
+ #: includes/class-cntctfrm-settings.php:1439
973
  msgid "Placeholder color of the input field errors"
974
  msgstr "El color de marcador de posición de los errores de campo de entrada"
975
 
976
+ #: includes/class-cntctfrm-settings.php:1444
977
  msgid "Input fields"
978
  msgstr "Campos de entrada"
979
 
980
+ #: includes/class-cntctfrm-settings.php:1452
981
  msgid "Input fields background color"
982
  msgstr "Color de fondo de los campos de entrada"
983
 
984
+ #: includes/class-cntctfrm-settings.php:1460
985
  msgid "Text fields color"
986
  msgstr "Color de los campos de texto"
987
 
988
+ #: includes/class-cntctfrm-settings.php:1464
989
  msgid "Border width in px, numbers only"
990
  msgstr "Ancho del borde en píxeles, sólo números"
991
 
992
+ #: includes/class-cntctfrm-settings.php:1472
993
+ #: includes/class-cntctfrm-settings.php:1505
994
  msgid "Border color"
995
  msgstr "Color del borde"
996
 
997
+ #: includes/class-cntctfrm-settings.php:1477
998
  msgid "Submit button"
999
  msgstr "Botón enviar"
1000
 
1001
+ #: includes/class-cntctfrm-settings.php:1481
1002
  msgid "Width in px, numbers only"
1003
  msgstr "Ancho en píxeles, sólo números"
1004
 
1005
+ #: includes/class-cntctfrm-settings.php:1489
1006
  msgid "Button color"
1007
  msgstr "Color del botón"
1008
 
1009
+ #: includes/class-cntctfrm-settings.php:1497
1010
  msgid "Button text color"
1011
  msgstr "Color del texto del botón"
1012
 
1013
+ #: includes/class-cntctfrm-settings.php:1524
1014
  msgid "Contact Form | Preview"
1015
  msgstr "Formulario de Contacto | Vista previa"
1016
 
1017
+ #: includes/class-cntctfrm-settings.php:1525
1018
  msgid "Drag the necessary field to sort fields."
1019
  msgstr "Arrastre el campo necesario para ordenar los campos."
1020
 
1021
+ #: includes/class-cntctfrm-settings.php:1772
1022
+ msgid "Contact Form Shortcode"
 
 
 
1023
  msgstr ""
 
 
1024
 
1025
+ #: includes/class-cntctfrm-settings.php:1775
1026
+ msgid "Add Contact Form to your page or post using the following shortcode:"
1027
+ msgstr ""
 
 
 
 
 
 
 
 
1028
 
1029
+ #~ msgid "If you upgrade to Pro version all your settings will be saved."
1030
+ #~ msgstr "Si actualiza a la versión Pro se guardarán todos los ajustes."
 
1031
 
1032
+ #, fuzzy
1033
+ #~ msgid ""
1034
+ #~ "If you would like to add the Contact Form to your website, just copy and "
1035
+ #~ "paste this shortcode to your post or page or widget"
1036
+ #~ msgstr ""
1037
+ #~ "Si quieres agregar el formulario de contacto en tu sitio web, sólo tienes "
1038
+ #~ "que copiar y pegar este código corto a tu post, una página o un widget:"
1039
 
1040
+ #~ msgid "Save Changes"
1041
+ #~ msgstr "Guardar cambios"
 
1042
 
1043
+ #~ msgid "Contact Form"
1044
+ #~ msgstr "Contact Form"
 
1045
 
1046
+ #~ msgid "All plugin settings were restored."
1047
+ #~ msgstr "Todos los parámetros del plugin serán restaurados."
 
1048
 
1049
+ #~ msgid "How to Use Step-by-step Instruction"
1050
+ #~ msgstr "Instrucciones paso a paso"
 
1051
 
1052
+ #~ msgid "Additional settings"
1053
+ #~ msgstr "Opciones adicionales"
 
 
 
 
 
1054
 
1055
+ #~ msgid "Go PRO"
1056
+ #~ msgstr "Ir al PRO"
 
1057
 
1058
+ #, fuzzy
1059
+ #~ msgid "Notice"
1060
+ #~ msgstr "Aviso:"
1061
 
1062
+ #~ msgid ""
1063
+ #~ "If you would like to add a Contact Form to your page or post, please use "
1064
+ #~ "%s button"
1065
+ #~ msgstr ""
1066
+ #~ "Si usted desea agregar el formulario de contacto a su sitio web o "
1067
+ #~ "entrada , por favor use el botón %s"
1068
 
1069
+ #~ msgid ""
1070
+ #~ "You can add the Contact Form to your page or post by clicking on %s "
1071
+ #~ "button in the content edit block using the Visual mode. If the button "
1072
+ #~ "isn't displayed, please use the shortcode %s or %s where * stands for "
1073
+ #~ "Contact Form language."
1074
+ #~ msgstr ""
1075
+ #~ "Puedes añadir el Formulario de Contacto a tu página o post clicando en el "
1076
+ #~ "botón %s en el bloque editar el contenido usando el Modo visual. Si el "
1077
+ #~ "botón no aparece, por favor usa el shortcode %s o %s donde * representa "
1078
+ #~ "el idioma del Formulario de Contacto."
1079
 
1080
+ #~ msgid "Add field 'Reply-To' to the email header"
1081
+ #~ msgstr "Añadir campo 'Responder a' en la cabecera del correo electrónico"
 
1082
 
1083
+ #~ msgid "Field 'Reply-To' will be initialized by user email"
1084
+ #~ msgstr ""
1085
+ #~ "El campo 'Responder a' se iniciará por el correo electrónico del usuario"
1086
 
1087
+ #~ msgid "Auto Response"
1088
+ #~ msgstr "Respuesta automática"
 
1089
 
1090
+ #~ msgid ""
1091
+ #~ "You can use %%NAME%% to display data from the email field and %%MESSAGE%% "
1092
+ #~ "to display data from the Message field, as well as %%SITENAME%% to "
1093
+ #~ "display blog name."
1094
+ #~ msgstr ""
1095
+ #~ "Puedes usar %%NAME%% para mostrar los datos del campo correo electrónico "
1096
+ #~ "y %%MESSAGE%% para mostrar los datos del campo Mensaje, así como %"
1097
+ #~ "%SITENAME%% para mostrar el nombre del blog."
1098
 
1099
+ #~ msgid ""
1100
+ #~ "Please enable JavaScript to change '%s', '%s' options and for fields "
1101
+ #~ "sorting."
1102
+ #~ msgstr ""
1103
+ #~ "Por favor, utilice JavaScript para cambiar las opciones '%s', '%s' y para "
1104
+ #~ "los campos de clasificación."
1105
 
1106
  #~ msgid "Example: Sent from (IP address):\t127.0.0.1"
1107
  #~ msgstr "Ejemplo: Enviado desde (dirección IP:\t127.0.0.1"
languages/contact-form-plugin-et.mo CHANGED
Binary file
languages/contact-form-plugin-et.po CHANGED
@@ -2,8 +2,8 @@ msgid ""
2
  msgstr ""
3
  "Project-Id-Version: Contact Form\n"
4
  "Report-Msgid-Bugs-To: \n"
5
- "POT-Creation-Date: 2018-05-16 14:26+0300\n"
6
- "PO-Revision-Date: 2018-05-16 14:26+0300\n"
7
  "Last-Translator: plugin@bestwebsoft.com <plugin@bestwebsoft.com>\n"
8
  "Language-Team: Feliks <feliks@veebimeister.com>\n"
9
  "Language: ca_ES\n"
@@ -16,54 +16,75 @@ msgstr ""
16
  "X-Generator: Poedit 1.8.7.1\n"
17
  "X-Poedit-SearchPath-0: .\n"
18
 
19
- #: contact_form.php:37 contact_form.php:992
 
20
  msgid "Contact Form Settings"
21
  msgstr "Contact Form seaded"
22
 
23
- #: contact_form.php:37
24
- msgid "Contact Form"
25
- msgstr "Contact Form"
 
 
 
 
 
 
 
 
26
 
27
- #: contact_form.php:322 contact_form.php:1172 contact_form.php:1262
28
- #: contact_form.php:1668 contact_form.php:1707 contact_form.php:1975
29
- #: contact_form.php:3134 contact_form.php:3180
 
 
 
30
  msgid "Name"
31
  msgstr "Nimi"
32
 
33
- #: contact_form.php:323 contact_form.php:1309 contact_form.php:1669
34
- #: contact_form.php:1708 contact_form.php:1980 contact_form.php:3141
35
- #: contact_form.php:3186
 
 
36
  msgid "Address"
37
  msgstr "Aadress"
38
 
39
- #: contact_form.php:324 contact_form.php:1325 contact_form.php:1670
40
- #: contact_form.php:1709
 
41
  msgid "Email Address"
42
  msgstr "E-maili aadress"
43
 
44
- #: contact_form.php:325 contact_form.php:1348 contact_form.php:1671
45
- #: contact_form.php:1710
 
46
  msgid "Phone number"
47
  msgstr "Telefoni number"
48
 
49
- #: contact_form.php:326 contact_form.php:1364 contact_form.php:1672
50
- #: contact_form.php:1711 contact_form.php:1995 contact_form.php:3152
51
- #: contact_form.php:3195
 
 
52
  msgid "Subject"
53
  msgstr "Pealkiri"
54
 
55
- #: contact_form.php:327 contact_form.php:1388 contact_form.php:1673
56
- #: contact_form.php:1712 contact_form.php:1999 contact_form.php:3157
57
- #: contact_form.php:3199
 
 
58
  msgid "Message"
59
  msgstr "Sõnum"
60
 
61
- #: contact_form.php:328 contact_form.php:1674 contact_form.php:1713
62
- #: contact_form.php:2004
 
63
  msgid "Attachment"
64
  msgstr "Manus"
65
 
66
- #: contact_form.php:329
67
  msgid ""
68
  "Supported file types: HTML, TXT, CSS, GIF, PNG, JPEG, JPG, TIFF, BMP, AI, "
69
  "EPS, PS, CSV, RTF, PDF, DOC, DOCX, XLS, XLSX, ZIP, RAR, WAV, MP3, PPT."
@@ -71,170 +92,304 @@ msgstr ""
71
  "Toetatud failitüübid: HTML, TXT, CSS, GIF, PNG, JPEG, JPG, TIFF, BMP, AI, "
72
  "EPS, PS, CSV, RTF, PDF, DOC, DOCX, XLS, XLSX, ZIP, RAR, WAV, MP3, PPT."
73
 
74
- #: contact_form.php:330 contact_form.php:1676 contact_form.php:1715
 
75
  msgid "Send me a copy"
76
  msgstr "Saada mulle koopia"
77
 
78
- #: contact_form.php:331 contact_form.php:1677 contact_form.php:1716
 
79
  msgid "I consent to having this site collect my personal data."
80
  msgstr ""
81
 
82
- #: contact_form.php:332 contact_form.php:1678 contact_form.php:1717
 
83
  msgid "Submit"
84
  msgstr "Saada"
85
 
86
- #: contact_form.php:333
87
  msgid "Your name is required."
88
  msgstr "Sinu nimi on kohustuslik."
89
 
90
- #: contact_form.php:334
91
  msgid "Address is required."
92
  msgstr "Aadress on kohustuslik."
93
 
94
- #: contact_form.php:335
95
  msgid "A valid email address is required."
96
  msgstr "Korrektne e-mail on kohustuslik."
97
 
98
- #: contact_form.php:336
99
  msgid "Phone number is required."
100
  msgstr "Telefoni number on kohustuslik."
101
 
102
- #: contact_form.php:337
103
  msgid "Subject is required."
104
  msgstr "Pealkiri on kohustuslik."
105
 
106
- #: contact_form.php:338
107
  msgid "Message text is required."
108
  msgstr "Sõnumi tekst on kohustuslik."
109
 
110
- #: contact_form.php:339
111
  msgid "File format is not valid."
112
  msgstr "Failiformaat pole toetatud."
113
 
114
- #: contact_form.php:340
115
  msgid "File upload error."
116
  msgstr "Error faili üles laadimisel."
117
 
118
- #: contact_form.php:341
119
  msgid "The file could not be uploaded."
120
  msgstr "Faili ei saanud üles laadida."
121
 
122
- #: contact_form.php:342
123
  msgid "This file is too large."
124
  msgstr "See fail on liiga suur."
125
 
126
- #: contact_form.php:343
127
  msgid "Please fill out the CAPTCHA."
128
  msgstr "Palun täida CAPTCHA."
129
 
130
- #: contact_form.php:344
131
  msgid "Please make corrections below and try again."
132
  msgstr "Palun tee allolevad parandused ja proovi uuesti."
133
 
134
- #: contact_form.php:346
135
  msgid "Thank you for contacting us."
136
  msgstr "Tänan meiega kontakteerumast."
137
 
138
- #: contact_form.php:683 contact_form.php:949
139
- msgid "Settings saved."
140
- msgstr "Seaded salvestatud."
141
 
142
- #: contact_form.php:894
143
  msgid ""
144
- "Email 'FROM' field option was changed, which may cause email messages being "
145
- "moved to the spam folder or email delivery failures."
146
  msgstr ""
 
 
147
 
148
- #: contact_form.php:904
149
  msgid ""
150
- "If the 'Redirect to page' option is selected then the URL field should be in "
151
- "the following format"
 
152
  msgstr ""
153
- "Kui 'Suuna lehele' valik on aktiveeritud, siis URL-i väli peab olema "
154
- "järgnevas formaadis"
155
 
156
- #: contact_form.php:911
157
- msgid "Such user does not exist."
158
- msgstr "Sellist kasutajat ei eksisteeri. "
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
159
 
160
- #: contact_form.php:921
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
161
  msgid ""
162
- "Please enter a valid email address in the 'Use this email address' field."
163
- msgstr "Palun sisesta 'Kellelt' väljale korrektne e-maili aadress. "
 
 
 
164
 
165
- #: contact_form.php:929
166
- msgid "Please enter a valid email address in the 'FROM' field."
167
- msgstr "Palun sisesta 'Kellelt' väljale korrektne e-maili aadress. "
168
 
169
- #: contact_form.php:951
170
- msgid "Settings are not saved."
171
- msgstr "Seaded pole salvestatud."
 
 
 
 
172
 
173
- #: contact_form.php:989
174
- msgid "All plugin settings were restored."
 
 
 
 
 
 
 
175
  msgstr ""
176
 
177
- #: contact_form.php:995
178
- msgid "How to Use Step-by-step Instruction"
 
 
 
 
 
 
 
179
  msgstr ""
180
 
181
- #: contact_form.php:998 contact_form.php:3343 contact_form.php:3357
182
- msgid "Settings"
183
- msgstr "Seaded"
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
184
 
185
- #: contact_form.php:999
 
 
 
 
186
  #, fuzzy
187
- msgid "Additional settings"
188
- msgstr "Opcions addicionals"
189
 
190
- #: contact_form.php:1000
 
 
 
 
 
 
 
 
 
 
 
191
  msgid "Appearance"
192
  msgstr ""
193
 
194
- #: contact_form.php:1001
195
- msgid "Custom code"
196
  msgstr ""
197
 
198
- #: contact_form.php:1002
199
- msgid "Go PRO"
200
- msgstr "Telli PRO"
201
 
202
- #: contact_form.php:1013
203
- #, fuzzy
204
- msgid "Notice"
205
- msgstr "Märkus:"
206
 
207
- #: contact_form.php:1017
208
- msgid "NEW_FORM"
209
  msgstr ""
210
 
211
- #: contact_form.php:1018
 
212
  msgid ""
213
- "If you want to create multiple contact forms, please install the Contact "
214
- "Form Multi plugin."
215
  msgstr ""
216
- "Kui soovid sisestada mitut kontaktivormi, siis installi Contact Form Multi "
217
- "plugin."
218
 
219
- #: contact_form.php:1027
220
- #, fuzzy, php-format
221
  msgid ""
222
- "If you would like to add a Contact Form to your page or post, please use %s "
223
- "button"
224
  msgstr ""
225
- "Kui soovid lisada kontakti vormi oma kodulehele, siis lihtsalt kopeeri see "
226
- "lühikood oma postitusele või lehele või moodulile:"
227
 
228
- #: contact_form.php:1033
229
- #, php-format
230
  msgid ""
231
- "You can add the Contact Form to your page or post by clicking on %s button "
232
- "in the content edit block using the Visual mode. If the button isn't "
233
- "displayed, please use the shortcode %s or %s where * stands for Contact Form "
234
- "language."
235
  msgstr ""
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
236
 
237
- #: contact_form.php:1042
238
  msgid ""
239
  "If you leave the fields empty, the messages will be sent to the email "
240
  "address specified during registration."
@@ -242,17 +397,17 @@ msgstr ""
242
  "Kui sa jätad selle välja tühjaks, siis sõnumid saadetakse registreerumisel "
243
  "antud e-maili aadressile."
244
 
245
- #: contact_form.php:1045
246
  #, fuzzy
247
  msgid "The user's email address"
248
  msgstr "Kasutaja e-maili aadress:"
249
 
250
- #: contact_form.php:1049
251
  #, fuzzy
252
  msgid "Select a username"
253
  msgstr "Loo kasutajanimi"
254
 
255
- #: contact_form.php:1062
256
  #, fuzzy
257
  msgid ""
258
  "Select a username of the person who should get the messages from the contact "
@@ -260,110 +415,101 @@ msgid ""
260
  msgstr ""
261
  "Sisesta selle isiku kasutajanimi, kes peaks saama sõnumid kontaktivormilt."
262
 
263
- #: contact_form.php:1066
264
  #, fuzzy
265
  msgid "Use this email address"
266
  msgstr "Kasuta seda e-maili aadressi:"
267
 
268
- #: contact_form.php:1070
269
  #, fuzzy
270
  msgid "Enter the email address for receiving messages"
271
  msgstr ""
272
  "Introdueixi una adreça de correu electrònic on vulgui re-enviar el missatge"
273
 
274
- #: contact_form.php:1077 contact_form.php:1588 contact_form.php:1797
275
- #: contact_form.php:1903 contact_form.php:3440
276
- msgid "Close"
277
- msgstr ""
278
-
279
- #: contact_form.php:1081
280
  #, fuzzy
281
  msgid "Add department selectbox to the contact form"
282
  msgstr "Lisa valikukast kontakti vormile:"
283
 
284
- #: contact_form.php:1089 contact_form.php:1597 contact_form.php:1816
285
- #: contact_form.php:2109
286
- msgid "If you upgrade to Pro version all your settings will be saved."
287
- msgstr "Kui sa lähed üle Pro versioonile, siis kõik seaded salvestatakse."
288
-
289
- #: contact_form.php:1096 contact_form.php:1418 contact_form.php:1602
290
- #: contact_form.php:1823 contact_form.php:2116
291
- msgid "Upgrade to Pro"
292
- msgstr ""
293
-
294
- #: contact_form.php:1104
295
  msgid "Save emails to the database"
296
  msgstr "Salvesta e-mailid andmebaasi"
297
 
298
- #: contact_form.php:1116 contact_form.php:1130 contact_form.php:1137
 
 
299
  msgid "Using"
300
  msgstr "Kasutan"
301
 
302
- #: contact_form.php:1122 contact_form.php:1490 contact_form.php:1531
303
- #: contact_form.php:1566
 
 
304
  msgid "Please activate the appropriate option on"
305
  msgstr ""
306
 
307
- #: contact_form.php:1125 contact_form.php:1493 contact_form.php:1534
308
- #: contact_form.php:1569
 
 
309
  #, fuzzy
310
  msgid "settings page"
311
  msgstr "seadete leht"
312
 
313
- #: contact_form.php:1131 contact_form.php:1500 contact_form.php:1542
314
- #: contact_form.php:1576
 
 
315
  msgid "Activate"
316
  msgstr "Aktiveeri"
317
 
318
- #: contact_form.php:1138 contact_form.php:1509 contact_form.php:1548
319
- #: contact_form.php:1581
 
 
320
  msgid "Download"
321
  msgstr "Descarregar"
322
 
323
- #: contact_form.php:1150
324
  msgid "Sending method"
325
  msgstr ""
326
 
327
- #: contact_form.php:1155
328
  msgid "Wp-mail"
329
  msgstr "Wp-mail"
330
 
331
- #: contact_form.php:1157
332
  #, fuzzy
333
  msgid "You can use the Wordpress wp_mail function for mailing"
334
  msgstr "Võid kasutada wp_mail funktsiooni e-mailide saatmiseks"
335
 
336
- #: contact_form.php:1160
337
  msgid "Mail"
338
  msgstr "E-mail"
339
 
340
- #: contact_form.php:1162
341
  #, fuzzy
342
  msgid "You can use the PHP mail function for mailing"
343
  msgstr "Võid kasutada wp_mail funktsiooni e-mailide saatmiseks"
344
 
345
- #: contact_form.php:1167
346
  msgid "'FROM' field"
347
  msgstr ""
348
 
349
- #: contact_form.php:1183
350
  msgid "User name"
351
  msgstr "Kasutaja nimi"
352
 
353
- #: contact_form.php:1185
354
  msgid ""
355
  "The name of the user who fills the form will be used in the field 'From'."
356
  msgstr "Kasutaja nime (kes täidab vormi) kasutatakse 'Kellelt' väljal."
357
 
358
- #: contact_form.php:1196 contact_form.php:3147 contact_form.php:3191
359
- msgid "Email"
360
- msgstr "E-mail"
361
-
362
- #: contact_form.php:1207
363
  msgid "User email"
364
  msgstr "Kasutaja e-mail"
365
 
366
- #: contact_form.php:1209
367
  msgid ""
368
  "The email address of the user who fills the form will be used in the field "
369
  "'From'."
@@ -371,588 +517,525 @@ msgstr ""
371
  "Selle kasutaja, kes täidab vormi, e-maili aadressi kasutatakse 'Kellelt' "
372
  "väljal."
373
 
374
- #: contact_form.php:1218
375
  msgid ""
376
  "If this option is changed, email messages may be moved to the spam folder or "
377
  "email delivery failures may occur."
378
  msgstr ""
379
 
380
- #: contact_form.php:1227
381
  msgid "Required symbol"
382
  msgstr "Nõutud sümbol"
383
 
384
- #: contact_form.php:1237
385
  msgid "Fields"
386
  msgstr "Väljad"
387
 
388
- #: contact_form.php:1238 contact_form.php:1265 contact_form.php:1292
389
- #: contact_form.php:1312 contact_form.php:1351 contact_form.php:1433
 
 
 
 
390
  msgid "Used"
391
  msgstr "Kasutatud"
392
 
393
- #: contact_form.php:1239 contact_form.php:1254 contact_form.php:1269
394
- #: contact_form.php:1296 contact_form.php:1316 contact_form.php:1329
395
- #: contact_form.php:1355 contact_form.php:1368 contact_form.php:1392
 
 
 
 
 
396
  msgid "Required"
397
  msgstr "Nõutud"
398
 
399
- #: contact_form.php:1241 contact_form.php:1274 contact_form.php:1334
400
- #: contact_form.php:1373 contact_form.php:1397
 
 
 
401
  msgid "Visible"
402
  msgstr "Nähtav"
403
 
404
- #: contact_form.php:1242 contact_form.php:1278 contact_form.php:1338
405
- #: contact_form.php:1377 contact_form.php:1401
 
 
 
406
  msgid "Disabled for editing"
407
  msgstr "Toimetamiseks välja lülitatud"
408
 
409
- #: contact_form.php:1243 contact_form.php:1302 contact_form.php:1381
410
- #: contact_form.php:1405
 
 
411
  msgid "Field's default value"
412
  msgstr "Välja vaikeseades väärtus"
413
 
414
- #: contact_form.php:1250
415
  #, fuzzy
416
  msgid "Department selectbox"
417
  msgstr "Asukoha valik"
418
 
419
- #: contact_form.php:1282
420
  msgid "Use User's name as a default value if the user is logged in."
421
  msgstr ""
422
 
423
- #: contact_form.php:1283 contact_form.php:1343
 
424
  msgid ""
425
  "'Visible' and 'Disabled for editing' options will be applied only to logged-"
426
  "in users."
427
  msgstr ""
428
 
429
- #: contact_form.php:1289
430
  msgid "Location selectbox"
431
  msgstr "Asukoha valik"
432
 
433
- #: contact_form.php:1342
434
  msgid "Use User's email as a default value if the user is logged in."
435
  msgstr ""
436
 
437
- #: contact_form.php:1426
438
  msgid "Attachment block"
439
  msgstr "Manuste blokk"
440
 
441
- #: contact_form.php:1428
442
  msgid "Users can attach the following file formats"
443
  msgstr "Kasutajad saavad lisada manuseid järgnevates formaatides"
444
 
445
- #: contact_form.php:1446
446
  msgid "Add to the form"
447
  msgstr "Lisa vormile"
448
 
449
- #: contact_form.php:1451
450
  msgid "Tips below the Attachment"
451
  msgstr "Vihjed manuse alla"
452
 
453
- #: contact_form.php:1458
454
  msgid "'Send me a copy' block"
455
  msgstr "'Saada mulle koopia' blokk"
456
 
457
- #: contact_form.php:1465
458
  msgid "GDPR Compliance"
459
  msgstr ""
460
 
461
- #: contact_form.php:1470
462
  msgid "Link to Privacy Policy Page"
463
  msgstr ""
464
 
465
- #: contact_form.php:1474
466
  msgid "Text for Privacy Policy Link"
467
  msgstr ""
468
 
469
- #: contact_form.php:1502
470
  #, fuzzy
471
  msgid "Activate for network"
472
  msgstr "Plugin activat"
473
 
474
- #: contact_form.php:1592
475
  msgid "Agreement checkbox"
476
  msgstr "Nõustumise kastike"
477
 
478
- #: contact_form.php:1592
479
  msgid "Required checkbox for submitting the form"
480
  msgstr "Nõutud kastike vormi saatmiseks"
481
 
482
- #: contact_form.php:1593
483
  msgid "Optional checkbox"
484
  msgstr "Valikuline kastike"
485
 
486
- #: contact_form.php:1593
487
  msgid "Optional checkbox, the results of which will be displayed in email"
488
  msgstr "Valikuline kastike, mille tulemusi näidatakse e-mailis"
489
 
490
- #: contact_form.php:1611
491
  msgid "Delete an attachment file from the server after the email is sent"
492
  msgstr "Kustuta manuse fail serverist peale e-maili saatmist"
493
 
494
- #: contact_form.php:1617
495
  msgid "Email in HTML format sending"
496
  msgstr "E-maili saatmine HTML formaadis"
497
 
498
- #: contact_form.php:1621
499
  msgid "Display additional info in the email"
500
  msgstr "Näita e-mailis lisainfot"
501
 
502
- #: contact_form.php:1627
503
  #, fuzzy
504
  msgid "Sent from (IP address)"
505
  msgstr "Saadetud (IP aadress)"
506
 
507
- #: contact_form.php:1627
508
  msgid "Example: Sent from (IP address): 127.0.0.1"
509
  msgstr ""
510
 
511
- #: contact_form.php:1628 contact_form.php:3096 contact_form.php:3098
512
- msgid "Date/Time"
513
- msgstr "Kuupäev/Aeg"
514
-
515
- #: contact_form.php:1628
516
  msgid "Example: Date/Time: August 19, 2013 8:50 pm"
517
  msgstr ""
518
 
519
- #: contact_form.php:1629 contact_form.php:3102 contact_form.php:3104
520
- msgid "Sent from (referer)"
521
- msgstr "Saadetud (referer)"
522
-
523
- #: contact_form.php:1629
524
  msgid ""
525
  "Example: Sent from (referer): https://bestwebsoft.com/contacts/contact-us/"
526
  msgstr ""
527
 
528
- #: contact_form.php:1630 contact_form.php:3108 contact_form.php:3110
529
- msgid "Using (user agent)"
530
- msgstr "Kasutab (user agent)"
531
-
532
- #: contact_form.php:1630
533
  msgid ""
534
  "Example: Using (user agent): Mozilla/5.0 (Windows NT 6.2; WOW64) "
535
  "AppleWebKit/537.36 (KHTML, like Gecko) Chrome/28.0.1500.95 Safari/537.36"
536
  msgstr ""
537
 
538
- #: contact_form.php:1635
539
  msgid "Language settings for the field names in the form"
540
  msgstr "Vormi keeleseaded nimeväljadele"
541
 
542
- #: contact_form.php:1644
543
  msgid "Add a language"
544
  msgstr "Lisa keel"
545
 
546
- #: contact_form.php:1648
547
  msgid "Change the names of the contact form fields and error messages"
548
  msgstr "Muuda kontakti vormi väljade ja error-sõnumite nimesid"
549
 
550
- #: contact_form.php:1653 contact_form.php:1751 contact_form.php:1883
551
- #: contact_form.php:2023 contact_form.php:2028 contact_form.php:2038
552
- #: contact_form.php:2043 contact_form.php:2048 contact_form.php:2053
553
- #: contact_form.php:2063 contact_form.php:2068 contact_form.php:2077
554
- #: contact_form.php:2091 contact_form.php:2096 contact_form.php:2101
555
  msgid "Default"
556
  msgstr "Vaikimisi valik"
557
 
558
- #: contact_form.php:1666 contact_form.php:1705
 
559
  msgid "click to expand/hide the list"
560
  msgstr "avamiseks/sulgemiseks klikka"
561
 
562
- #: contact_form.php:1675 contact_form.php:1714
 
563
  msgid "Tips below the Attachment block"
564
  msgstr "Vihje manuse bloki all"
565
 
566
- #: contact_form.php:1679 contact_form.php:1718
 
567
  msgid "Error message for the Name field"
568
  msgstr "Error väljal 'Nimi'"
569
 
570
- #: contact_form.php:1680 contact_form.php:1719
 
571
  msgid "Error message for the Address field"
572
  msgstr "Error väljal 'Aadress'"
573
 
574
- #: contact_form.php:1681 contact_form.php:1720
 
575
  msgid "Error message for the Email field"
576
  msgstr "Error väljal 'E-mail'"
577
 
578
- #: contact_form.php:1682 contact_form.php:1721
 
579
  msgid "Error message for the Phone field"
580
  msgstr "Error väljal 'Telefon'"
581
 
582
- #: contact_form.php:1683 contact_form.php:1722
 
583
  msgid "Error message for the Subject field"
584
  msgstr "Error väljal 'Pealkiri'"
585
 
586
- #: contact_form.php:1684 contact_form.php:1723
 
587
  msgid "Error message for the Message field"
588
  msgstr "Error väljal 'Sõnum'"
589
 
590
- #: contact_form.php:1685 contact_form.php:1724
 
591
  msgid "Error message about the file type for the Attachment field"
592
  msgstr "Error faili tüübi kohta manuse väljal"
593
 
594
- #: contact_form.php:1686 contact_form.php:1725
 
595
  msgid ""
596
  "Error message while uploading a file for the Attachment field to the server"
597
  msgstr "Error faili üles laadimisel serverisse manuse välja jaoks"
598
 
599
- #: contact_form.php:1687 contact_form.php:1726
 
600
  msgid "Error message while moving the file for the Attachment field"
601
  msgstr "Error faili liigutamisel manuse väljale"
602
 
603
- #: contact_form.php:1688 contact_form.php:1727
 
604
  msgid "Error message when file size limit for the Attachment field is exceeded"
605
  msgstr "Error ületades faili suuruse limiiti manuse väljal"
606
 
607
- #: contact_form.php:1689 contact_form.php:1728
 
608
  msgid "Error message for the Captcha field"
609
  msgstr "Error väljal 'Captcha'"
610
 
611
- #: contact_form.php:1690 contact_form.php:1729
 
612
  msgid "Error message for the whole form"
613
  msgstr "Error kogu vormi kohta"
614
 
615
- #: contact_form.php:1693 contact_form.php:1695 contact_form.php:1732
616
- #: contact_form.php:1734 contact_form.php:1766 contact_form.php:1768
617
- #: contact_form.php:1780 contact_form.php:1782 contact_form.php:3530
618
- #: contact_form.php:3532
619
- msgid "Use shortcode"
620
- msgstr "Kasuta lühikoodi"
621
-
622
- #: contact_form.php:1693 contact_form.php:1695 contact_form.php:1732
623
- #: contact_form.php:1734 contact_form.php:1766 contact_form.php:1768
624
- #: contact_form.php:1780 contact_form.php:1782 contact_form.php:3530
625
- #: contact_form.php:3532
626
- msgid "for this language"
627
- msgstr "selle keele jaoks"
628
-
629
- #: contact_form.php:1742
630
  msgid "Use the changed names of the contact form fields in the email"
631
  msgstr "Kasuta kontaktivormi väljade muudetud nimesid emailis"
632
 
633
- #: contact_form.php:1748
634
  msgid "Action after email is sent"
635
  msgstr "Tegevus peale e-maili saatmist"
636
 
637
- #: contact_form.php:1750
638
  msgid "Display text"
639
  msgstr "Näita teksti"
640
 
641
- #: contact_form.php:1764 contact_form.php:1778
 
642
  msgid "Text"
643
  msgstr "Tekst"
644
 
645
- #: contact_form.php:1789
646
  msgid "Redirect to the page"
647
  msgstr "Suuna lehele"
648
 
649
- #: contact_form.php:1790
650
  msgid "Url"
651
  msgstr "Url"
652
 
653
- #: contact_form.php:1801
654
- msgid "Add field 'Reply-To' to the email header"
655
- msgstr ""
656
-
657
- #: contact_form.php:1803
658
- msgid "Field 'Reply-To' will be initialized by user email"
659
- msgstr ""
660
-
661
- #: contact_form.php:1807
662
- msgid "Auto Response"
663
- msgstr ""
664
-
665
- #: contact_form.php:1811
666
  #, php-format
667
  msgid ""
668
- "You can use %%NAME%% to display data from the email field and %%MESSAGE%% to "
669
- "display data from the Message field, as well as %%SITENAME%% to display blog "
670
- "name."
671
  msgstr ""
672
 
673
- #: contact_form.php:1833 contact_form.php:2375
674
- msgid "Save Changes"
675
- msgstr "Salvesta muudatused"
676
-
677
- #: contact_form.php:1846
678
- #, php-format
679
- msgid ""
680
- "Please enable JavaScript to change '%s', '%s' options and for fields sorting."
681
  msgstr ""
682
 
683
- #: contact_form.php:1846 contact_form.php:1855
684
- msgid "Form layout"
 
 
 
 
 
 
 
685
  msgstr ""
686
 
687
- #: contact_form.php:1846 contact_form.php:1867
 
688
  #, fuzzy
689
  msgid "Submit position"
690
  msgstr "'Saada' nupp"
691
 
692
- #: contact_form.php:1859
 
 
 
 
 
 
 
 
 
 
693
  msgid "One column"
694
  msgstr ""
695
 
696
- #: contact_form.php:1862
697
  msgid "Two columns"
698
  msgstr ""
699
 
700
- #: contact_form.php:1871 contact_form.php:1911 contact_form.php:1929
701
- #: contact_form.php:1944
 
 
702
  msgid "Left"
703
  msgstr ""
704
 
705
- #: contact_form.php:1874 contact_form.php:1917 contact_form.php:1932
706
- #: contact_form.php:1950
 
 
707
  msgid "Right"
708
  msgstr ""
709
 
710
- #: contact_form.php:1879
711
  msgid "Width"
712
  msgstr ""
713
 
714
- #: contact_form.php:1887
715
  msgid "Custom"
716
  msgstr ""
717
 
718
- #: contact_form.php:1894
719
  msgid "px"
720
  msgstr ""
721
 
722
- #: contact_form.php:1907
723
  msgid "Form align"
724
  msgstr ""
725
 
726
- #: contact_form.php:1914 contact_form.php:1947
 
727
  msgid "Center"
728
  msgstr ""
729
 
730
- #: contact_form.php:1922
731
- #, fuzzy
732
- msgid "Labels position"
733
- msgstr "'Saada' nupp"
734
-
735
- #: contact_form.php:1926
736
  msgid "Top"
737
  msgstr ""
738
 
739
- #: contact_form.php:1935
740
  msgid "Bottom"
741
  msgstr ""
742
 
743
- #: contact_form.php:1940
744
- msgid "Labels align"
745
- msgstr ""
746
-
747
- #: contact_form.php:1955
748
  msgid "Errors output"
749
  msgstr "Errorite väljund"
750
 
751
- #: contact_form.php:1958
752
  msgid "Display error messages"
753
  msgstr "Näita error-sõnumeid"
754
 
755
- #: contact_form.php:1959
756
  msgid "Color of the input field errors."
757
  msgstr "Sisestusväljade errorite värv"
758
 
759
- #: contact_form.php:1960
760
  msgid "Display error messages & color of the input field errors"
761
  msgstr "Näita error-sõnumeid ja sisestusväljade errorite värvi"
762
 
763
- #: contact_form.php:1965
764
  msgid "Add placeholder to the input blocks"
765
  msgstr "Lisa kohahoidja sisestusblokkidele"
766
 
767
- #: contact_form.php:1971
768
- msgid "Add tooltips"
769
- msgstr "Lisa vihjed"
770
-
771
- #: contact_form.php:1985
772
  msgid "Email address"
773
  msgstr "E-maili aadress"
774
 
775
- #: contact_form.php:1990 contact_form.php:3163 contact_form.php:3204
776
- msgid "Phone Number"
777
- msgstr "Telefoni number"
778
-
779
- #: contact_form.php:2016
780
- msgid "Style options"
781
- msgstr "Stiili valikud"
782
-
783
- #: contact_form.php:2020
784
  msgid "Text color"
785
  msgstr "Teksti värv"
786
 
787
- #: contact_form.php:2025
788
  msgid "Label text color"
789
  msgstr "Sildi teksti värv"
790
 
791
- #: contact_form.php:2030
792
  msgid "Placeholder color"
793
  msgstr "Kohahoidja värv"
794
 
795
- #: contact_form.php:2035
796
  msgid "Errors color"
797
  msgstr "Errorite värv"
798
 
799
- #: contact_form.php:2040
800
  msgid "Error text color"
801
  msgstr "Error-teksti värv"
802
 
803
- #: contact_form.php:2045
804
  msgid "Background color of the input field errors"
805
  msgstr "Sisestusväljade errorite taustavärv"
806
 
807
- #: contact_form.php:2050
808
  msgid "Border color of the input field errors"
809
  msgstr "Sisestusväljade errorite piirjoonte värv"
810
 
811
- #: contact_form.php:2055
812
  msgid "Placeholder color of the input field errors"
813
  msgstr "Sisestusväljade errorite kohahoidja värv"
814
 
815
- #: contact_form.php:2060
816
  msgid "Input fields"
817
  msgstr "Sisestusväljad"
818
 
819
- #: contact_form.php:2065
820
  msgid "Input fields background color"
821
  msgstr "Sisestusväljade taustavärv"
822
 
823
- #: contact_form.php:2070
824
  msgid "Text fields color"
825
  msgstr "Tekstiväljade värv"
826
 
827
- #: contact_form.php:2074
828
  msgid "Border width in px, numbers only"
829
  msgstr "Piirjoone paksus pikslites. Ainult number"
830
 
831
- #: contact_form.php:2079 contact_form.php:2103
 
832
  msgid "Border color"
833
  msgstr "Piirjoone värv"
834
 
835
- #: contact_form.php:2084
836
  msgid "Submit button"
837
  msgstr "'Saada' nupp"
838
 
839
- #: contact_form.php:2088
840
  msgid "Width in px, numbers only"
841
  msgstr "Laius pikslites, ainult numbrid"
842
 
843
- #: contact_form.php:2093
844
  msgid "Button color"
845
  msgstr "Nupu värv"
846
 
847
- #: contact_form.php:2098
848
  msgid "Button text color"
849
  msgstr "Nupu teksti värv"
850
 
851
- #: contact_form.php:2127
852
  #, fuzzy
853
  msgid "Contact Form | Preview"
854
  msgstr "Contact Form Pro | Eelvaade"
855
 
856
- #: contact_form.php:2128
857
  msgid "Drag the necessary field to sort fields."
858
  msgstr ""
859
 
860
- #: contact_form.php:2364
861
- #, fuzzy
862
- msgid ""
863
- "If you would like to add the Contact Form to your website, just copy and "
864
- "paste this shortcode to your post or page or widget"
865
  msgstr ""
866
- "Kui soovid lisada kontakti vormi oma kodulehele, siis lihtsalt kopeeri see "
867
- "lühikood oma postitusele või lehele või moodulile:"
868
-
869
- #: contact_form.php:2486
870
- msgid "Sorry, email message could not be delivered."
871
- msgstr "Vabandust, see kiri jäi saatmata."
872
-
873
- #: contact_form.php:3090 contact_form.php:3092
874
- msgid "Sent from (ip address)"
875
- msgstr "Saadetud (IP aadress)"
876
-
877
- #: contact_form.php:3120
878
- msgid "Contact from"
879
- msgstr "Kontakti vorm"
880
 
881
- #: contact_form.php:3125 contact_form.php:3174
882
- msgid "Site"
883
- msgstr "Leht"
884
-
885
- #: contact_form.php:3286
886
- msgid ""
887
- "If you can see this MIME, it means that the MIME type is not supported by "
888
- "your email client!"
889
  msgstr ""
890
- "Kui sa näed seda MIME-t, siis MIME tüüp pole sinu e-maili kliendi poolt "
891
- "toetatud!"
892
-
893
- #: contact_form.php:3358
894
- msgid "FAQ"
895
- msgstr "KKK"
896
-
897
- #: contact_form.php:3359
898
- msgid "Support"
899
- msgstr "Klienditugi"
900
-
901
- #: contact_form.php:3408
902
- msgid "Are you sure that you want to delete this language data?"
903
- msgstr "Oled sa kindel, et soovid kustutada selle keele andmeid?"
904
-
905
- #: contact_form.php:3431
906
- #, fuzzy
907
- msgid "Add multiple forms"
908
- msgstr "Lisa vormile"
909
 
910
- #: contact_form.php:3431
911
- msgid ""
912
- "Install Contact Form Multi plugin to create unlimited number of contact "
913
- "forms."
914
- msgstr ""
915
 
916
- #: contact_form.php:3436
917
  #, fuzzy
918
- msgid "Learn more"
919
- msgstr "Uuri lähemalt"
920
-
921
- #: contact_form.php:3494
922
- msgid "Error"
923
- msgstr ""
924
 
925
- #: contact_form.php:3494 contact_form.php:3496
926
- msgid "Illegal language code"
927
- msgstr ""
928
 
929
- #: contact_form.php:3681
930
- msgid "Close notice"
931
- msgstr ""
932
 
933
- #: contact_form.php:3686
934
  #, fuzzy
935
- msgid "allows to store your messages to the database."
936
- msgstr ""
937
- "<strong>Contact Form to DB</strong> laseb sul salvestada sõnumeid andmebaasi."
938
 
939
- #: contact_form.php:3687
940
- msgid "Manage messages that have been sent from your website."
941
- msgstr "Toimeta sõnumeid, mis on sulle saadetud sinu veebilehelt."
942
 
943
- #: contact_form.php:3690
944
- msgid "Learn More"
945
- msgstr "Uuri lähemalt"
946
-
947
- #: contact_form.php:3750
948
  #, fuzzy
949
- msgid "Contact form"
950
- msgstr "Kontakti vorm"
951
 
952
- #: contact_form.php:3763 contact_form.php:3773
953
  #, fuzzy
954
- msgid "Language"
955
- msgstr "Lisa keel"
 
 
 
 
956
 
957
  #~ msgid "Example: Sent from (IP address):\t127.0.0.1"
958
  #~ msgstr "Näide: Saadetud (IP address):\t127.0.0.1"
2
  msgstr ""
3
  "Project-Id-Version: Contact Form\n"
4
  "Report-Msgid-Bugs-To: \n"
5
+ "POT-Creation-Date: 2019-02-25 16:26+0200\n"
6
+ "PO-Revision-Date: 2019-02-25 16:26+0200\n"
7
  "Last-Translator: plugin@bestwebsoft.com <plugin@bestwebsoft.com>\n"
8
  "Language-Team: Feliks <feliks@veebimeister.com>\n"
9
  "Language: ca_ES\n"
16
  "X-Generator: Poedit 1.8.7.1\n"
17
  "X-Poedit-SearchPath-0: .\n"
18
 
19
+ #: contact_form.php:39 contact_form.php:47 contact_form.php:647
20
+ #: includes/class-cntctfrm-settings.php:425
21
  msgid "Contact Form Settings"
22
  msgstr "Contact Form seaded"
23
 
24
+ #: contact_form.php:48 contact_form.php:1619 contact_form.php:1633
25
+ #: includes/class-cntctfrm-settings.php:27
26
+ msgid "Settings"
27
+ msgstr "Seaded"
28
+
29
+ #: contact_form.php:63 includes/class-cntctfrm-settings.php:483
30
+ #: includes/class-cntctfrm-settings.php:817
31
+ #: includes/class-cntctfrm-settings.php:998
32
+ #: includes/class-cntctfrm-settings.php:1513
33
+ msgid "Upgrade to Pro"
34
+ msgstr ""
35
 
36
+ #: contact_form.php:350 contact_form.php:1410 contact_form.php:1456
37
+ #: includes/class-cntctfrm-settings.php:574
38
+ #: includes/class-cntctfrm-settings.php:664
39
+ #: includes/class-cntctfrm-settings.php:1064
40
+ #: includes/class-cntctfrm-settings.php:1103
41
+ #: includes/class-cntctfrm-settings.php:1344
42
  msgid "Name"
43
  msgstr "Nimi"
44
 
45
+ #: contact_form.php:351 contact_form.php:1417 contact_form.php:1462
46
+ #: includes/class-cntctfrm-settings.php:711
47
+ #: includes/class-cntctfrm-settings.php:1065
48
+ #: includes/class-cntctfrm-settings.php:1104
49
+ #: includes/class-cntctfrm-settings.php:1349
50
  msgid "Address"
51
  msgstr "Aadress"
52
 
53
+ #: contact_form.php:352 includes/class-cntctfrm-settings.php:727
54
+ #: includes/class-cntctfrm-settings.php:1066
55
+ #: includes/class-cntctfrm-settings.php:1105
56
  msgid "Email Address"
57
  msgstr "E-maili aadress"
58
 
59
+ #: contact_form.php:353 includes/class-cntctfrm-settings.php:747
60
+ #: includes/class-cntctfrm-settings.php:1067
61
+ #: includes/class-cntctfrm-settings.php:1106
62
  msgid "Phone number"
63
  msgstr "Telefoni number"
64
 
65
+ #: contact_form.php:354 contact_form.php:1428 contact_form.php:1471
66
+ #: includes/class-cntctfrm-settings.php:763
67
+ #: includes/class-cntctfrm-settings.php:1068
68
+ #: includes/class-cntctfrm-settings.php:1107
69
+ #: includes/class-cntctfrm-settings.php:1364
70
  msgid "Subject"
71
  msgstr "Pealkiri"
72
 
73
+ #: contact_form.php:355 contact_form.php:1433 contact_form.php:1475
74
+ #: includes/class-cntctfrm-settings.php:787
75
+ #: includes/class-cntctfrm-settings.php:1069
76
+ #: includes/class-cntctfrm-settings.php:1108
77
+ #: includes/class-cntctfrm-settings.php:1368
78
  msgid "Message"
79
  msgstr "Sõnum"
80
 
81
+ #: contact_form.php:356 includes/class-cntctfrm-settings.php:1070
82
+ #: includes/class-cntctfrm-settings.php:1109
83
+ #: includes/class-cntctfrm-settings.php:1373
84
  msgid "Attachment"
85
  msgstr "Manus"
86
 
87
+ #: contact_form.php:357
88
  msgid ""
89
  "Supported file types: HTML, TXT, CSS, GIF, PNG, JPEG, JPG, TIFF, BMP, AI, "
90
  "EPS, PS, CSV, RTF, PDF, DOC, DOCX, XLS, XLSX, ZIP, RAR, WAV, MP3, PPT."
92
  "Toetatud failitüübid: HTML, TXT, CSS, GIF, PNG, JPEG, JPG, TIFF, BMP, AI, "
93
  "EPS, PS, CSV, RTF, PDF, DOC, DOCX, XLS, XLSX, ZIP, RAR, WAV, MP3, PPT."
94
 
95
+ #: contact_form.php:358 includes/class-cntctfrm-settings.php:1072
96
+ #: includes/class-cntctfrm-settings.php:1111
97
  msgid "Send me a copy"
98
  msgstr "Saada mulle koopia"
99
 
100
+ #: contact_form.php:359 includes/class-cntctfrm-settings.php:1073
101
+ #: includes/class-cntctfrm-settings.php:1112
102
  msgid "I consent to having this site collect my personal data."
103
  msgstr ""
104
 
105
+ #: contact_form.php:360 includes/class-cntctfrm-settings.php:1074
106
+ #: includes/class-cntctfrm-settings.php:1113
107
  msgid "Submit"
108
  msgstr "Saada"
109
 
110
+ #: contact_form.php:361
111
  msgid "Your name is required."
112
  msgstr "Sinu nimi on kohustuslik."
113
 
114
+ #: contact_form.php:362
115
  msgid "Address is required."
116
  msgstr "Aadress on kohustuslik."
117
 
118
+ #: contact_form.php:363
119
  msgid "A valid email address is required."
120
  msgstr "Korrektne e-mail on kohustuslik."
121
 
122
+ #: contact_form.php:364
123
  msgid "Phone number is required."
124
  msgstr "Telefoni number on kohustuslik."
125
 
126
+ #: contact_form.php:365
127
  msgid "Subject is required."
128
  msgstr "Pealkiri on kohustuslik."
129
 
130
+ #: contact_form.php:366
131
  msgid "Message text is required."
132
  msgstr "Sõnumi tekst on kohustuslik."
133
 
134
+ #: contact_form.php:367
135
  msgid "File format is not valid."
136
  msgstr "Failiformaat pole toetatud."
137
 
138
+ #: contact_form.php:368
139
  msgid "File upload error."
140
  msgstr "Error faili üles laadimisel."
141
 
142
+ #: contact_form.php:369
143
  msgid "The file could not be uploaded."
144
  msgstr "Faili ei saanud üles laadida."
145
 
146
+ #: contact_form.php:370
147
  msgid "This file is too large."
148
  msgstr "See fail on liiga suur."
149
 
150
+ #: contact_form.php:371
151
  msgid "Please fill out the CAPTCHA."
152
  msgstr "Palun täida CAPTCHA."
153
 
154
+ #: contact_form.php:372
155
  msgid "Please make corrections below and try again."
156
  msgstr "Palun tee allolevad parandused ja proovi uuesti."
157
 
158
+ #: contact_form.php:374
159
  msgid "Thank you for contacting us."
160
  msgstr "Tänan meiega kontakteerumast."
161
 
162
+ #: contact_form.php:651
163
+ msgid "NEW_FORM"
164
+ msgstr ""
165
 
166
+ #: contact_form.php:652
167
  msgid ""
168
+ "If you want to create multiple contact forms, please install the Contact "
169
+ "Form Multi plugin."
170
  msgstr ""
171
+ "Kui soovid sisestada mitut kontaktivormi, siis installi Contact Form Multi "
172
+ "plugin."
173
 
174
+ #: contact_form.php:657
175
  msgid ""
176
+ "Contact Form plugin doesn't support your current version of Contact Form "
177
+ "Multi plugin. Please update Contact Form Multi plugin to version 1.2.6 or "
178
+ "higher."
179
  msgstr ""
 
 
180
 
181
+ #: contact_form.php:759
182
+ msgid "Sorry, email message could not be delivered."
183
+ msgstr "Vabandust, see kiri jäi saatmata."
184
+
185
+ #: contact_form.php:1366 contact_form.php:1368
186
+ msgid "Sent from (ip address)"
187
+ msgstr "Saadetud (IP aadress)"
188
+
189
+ #: contact_form.php:1372 contact_form.php:1374
190
+ #: includes/class-cntctfrm-settings.php:1024
191
+ msgid "Date/Time"
192
+ msgstr "Kuupäev/Aeg"
193
+
194
+ #: contact_form.php:1378 contact_form.php:1380
195
+ #: includes/class-cntctfrm-settings.php:1025
196
+ msgid "Sent from (referer)"
197
+ msgstr "Saadetud (referer)"
198
+
199
+ #: contact_form.php:1384 contact_form.php:1386
200
+ #: includes/class-cntctfrm-settings.php:1026
201
+ msgid "Using (user agent)"
202
+ msgstr "Kasutab (user agent)"
203
 
204
+ #: contact_form.php:1396
205
+ msgid "Contact from"
206
+ msgstr "Kontakti vorm"
207
+
208
+ #: contact_form.php:1401 contact_form.php:1450
209
+ msgid "Site"
210
+ msgstr "Leht"
211
+
212
+ #: contact_form.php:1423 contact_form.php:1467
213
+ #: includes/class-cntctfrm-settings.php:598
214
+ msgid "Email"
215
+ msgstr "E-mail"
216
+
217
+ #: contact_form.php:1439 contact_form.php:1480
218
+ #: includes/class-cntctfrm-settings.php:1359
219
+ msgid "Phone Number"
220
+ msgstr "Telefoni number"
221
+
222
+ #: contact_form.php:1562
223
  msgid ""
224
+ "If you can see this MIME, it means that the MIME type is not supported by "
225
+ "your email client!"
226
+ msgstr ""
227
+ "Kui sa näed seda MIME-t, siis MIME tüüp pole sinu e-maili kliendi poolt "
228
+ "toetatud!"
229
 
230
+ #: contact_form.php:1634
231
+ msgid "FAQ"
232
+ msgstr "KKK"
233
 
234
+ #: contact_form.php:1635
235
+ msgid "Support"
236
+ msgstr "Klienditugi"
237
+
238
+ #: contact_form.php:1684
239
+ msgid "Are you sure that you want to delete this language data?"
240
+ msgstr "Oled sa kindel, et soovid kustutada selle keele andmeid?"
241
 
242
+ #: contact_form.php:1706
243
+ #, fuzzy
244
+ msgid "Add multiple forms"
245
+ msgstr "Lisa vormile"
246
+
247
+ #: contact_form.php:1706
248
+ msgid ""
249
+ "Install Contact Form Multi plugin to create unlimited number of contact "
250
+ "forms."
251
  msgstr ""
252
 
253
+ #: contact_form.php:1711
254
+ #, fuzzy
255
+ msgid "Learn more"
256
+ msgstr "Uuri lähemalt"
257
+
258
+ #: contact_form.php:1715 includes/class-cntctfrm-settings.php:469
259
+ #: includes/class-cntctfrm-settings.php:987
260
+ #: includes/class-cntctfrm-settings.php:1272
261
+ msgid "Close"
262
  msgstr ""
263
 
264
+ #: contact_form.php:1769
265
+ msgid "Error"
266
+ msgstr ""
267
+
268
+ #: contact_form.php:1769 contact_form.php:1771
269
+ msgid "Illegal language code"
270
+ msgstr ""
271
+
272
+ #: contact_form.php:1805 contact_form.php:1807
273
+ #: includes/class-cntctfrm-settings.php:1089
274
+ #: includes/class-cntctfrm-settings.php:1091
275
+ #: includes/class-cntctfrm-settings.php:1128
276
+ #: includes/class-cntctfrm-settings.php:1130
277
+ #: includes/class-cntctfrm-settings.php:1162
278
+ #: includes/class-cntctfrm-settings.php:1164
279
+ #: includes/class-cntctfrm-settings.php:1176
280
+ #: includes/class-cntctfrm-settings.php:1178
281
+ msgid "Use shortcode"
282
+ msgstr "Kasuta lühikoodi"
283
+
284
+ #: contact_form.php:1805 contact_form.php:1807
285
+ #: includes/class-cntctfrm-settings.php:1089
286
+ #: includes/class-cntctfrm-settings.php:1091
287
+ #: includes/class-cntctfrm-settings.php:1128
288
+ #: includes/class-cntctfrm-settings.php:1130
289
+ #: includes/class-cntctfrm-settings.php:1162
290
+ #: includes/class-cntctfrm-settings.php:1164
291
+ #: includes/class-cntctfrm-settings.php:1176
292
+ #: includes/class-cntctfrm-settings.php:1178
293
+ msgid "for this language"
294
+ msgstr "selle keele jaoks"
295
+
296
+ #: contact_form.php:1955
297
+ msgid "Close notice"
298
+ msgstr ""
299
+
300
+ #: contact_form.php:1960
301
+ #, fuzzy
302
+ msgid "allows to store your messages to the database."
303
+ msgstr ""
304
+ "<strong>Contact Form to DB</strong> laseb sul salvestada sõnumeid andmebaasi."
305
+
306
+ #: contact_form.php:1961
307
+ msgid "Manage messages that have been sent from your website."
308
+ msgstr "Toimeta sõnumeid, mis on sulle saadetud sinu veebilehelt."
309
 
310
+ #: contact_form.php:1964
311
+ msgid "Learn More"
312
+ msgstr "Uuri lähemalt"
313
+
314
+ #: contact_form.php:2024
315
  #, fuzzy
316
+ msgid "Contact form"
317
+ msgstr "Kontakti vorm"
318
 
319
+ #: contact_form.php:2037 contact_form.php:2047
320
+ #, fuzzy
321
+ msgid "Language"
322
+ msgstr "Lisa keel"
323
+
324
+ #: includes/class-cntctfrm-settings.php:28
325
+ #: includes/class-cntctfrm-settings.php:546
326
+ msgid "Additional Settings"
327
+ msgstr ""
328
+
329
+ #: includes/class-cntctfrm-settings.php:29
330
+ #: includes/class-cntctfrm-settings.php:1198
331
  msgid "Appearance"
332
  msgstr ""
333
 
334
+ #: includes/class-cntctfrm-settings.php:30
335
+ msgid "Misc"
336
  msgstr ""
337
 
338
+ #: includes/class-cntctfrm-settings.php:31
339
+ msgid "License Key"
340
+ msgstr ""
341
 
342
+ #: includes/class-cntctfrm-settings.php:32
343
+ msgid "Custom Code"
344
+ msgstr ""
 
345
 
346
+ #: includes/class-cntctfrm-settings.php:99
347
+ msgid "Please enable JavaScript in your browser."
348
  msgstr ""
349
 
350
+ #: includes/class-cntctfrm-settings.php:101
351
+ #, php-format
352
  msgid ""
353
+ "Contact Form plugin requires PHP %s or higher. Please contact your hosting "
354
+ "provider to upgrade PHP version."
355
  msgstr ""
 
 
356
 
357
+ #: includes/class-cntctfrm-settings.php:347
 
358
  msgid ""
359
+ "Email 'FROM' field option was changed, which may cause email messages being "
360
+ "moved to the spam folder or email delivery failures."
361
  msgstr ""
 
 
362
 
363
+ #: includes/class-cntctfrm-settings.php:357
 
364
  msgid ""
365
+ "If the 'Redirect to page' option is selected then the URL field should be in "
366
+ "the following format"
 
 
367
  msgstr ""
368
+ "Kui 'Suuna lehele' valik on aktiveeritud, siis URL-i väli peab olema "
369
+ "järgnevas formaadis"
370
+
371
+ #: includes/class-cntctfrm-settings.php:364
372
+ msgid "Such user does not exist."
373
+ msgstr "Sellist kasutajat ei eksisteeri. "
374
+
375
+ #: includes/class-cntctfrm-settings.php:374
376
+ msgid ""
377
+ "Please enter a valid email address in the 'Use this email address' field."
378
+ msgstr "Palun sisesta 'Kellelt' väljale korrektne e-maili aadress. "
379
+
380
+ #: includes/class-cntctfrm-settings.php:382
381
+ msgid "Please enter a valid email address in the 'FROM' field."
382
+ msgstr "Palun sisesta 'Kellelt' väljale korrektne e-maili aadress. "
383
+
384
+ #: includes/class-cntctfrm-settings.php:402
385
+ msgid "Settings saved."
386
+ msgstr "Seaded salvestatud."
387
+
388
+ #: includes/class-cntctfrm-settings.php:404
389
+ msgid "Settings are not saved."
390
+ msgstr "Seaded pole salvestatud."
391
 
392
+ #: includes/class-cntctfrm-settings.php:429
393
  msgid ""
394
  "If you leave the fields empty, the messages will be sent to the email "
395
  "address specified during registration."
397
  "Kui sa jätad selle välja tühjaks, siis sõnumid saadetakse registreerumisel "
398
  "antud e-maili aadressile."
399
 
400
+ #: includes/class-cntctfrm-settings.php:432
401
  #, fuzzy
402
  msgid "The user's email address"
403
  msgstr "Kasutaja e-maili aadress:"
404
 
405
+ #: includes/class-cntctfrm-settings.php:437
406
  #, fuzzy
407
  msgid "Select a username"
408
  msgstr "Loo kasutajanimi"
409
 
410
+ #: includes/class-cntctfrm-settings.php:450
411
  #, fuzzy
412
  msgid ""
413
  "Select a username of the person who should get the messages from the contact "
415
  msgstr ""
416
  "Sisesta selle isiku kasutajanimi, kes peaks saama sõnumid kontaktivormilt."
417
 
418
+ #: includes/class-cntctfrm-settings.php:455
419
  #, fuzzy
420
  msgid "Use this email address"
421
  msgstr "Kasuta seda e-maili aadressi:"
422
 
423
+ #: includes/class-cntctfrm-settings.php:460
424
  #, fuzzy
425
  msgid "Enter the email address for receiving messages"
426
  msgstr ""
427
  "Introdueixi una adreça de correu electrònic on vulgui re-enviar el missatge"
428
 
429
+ #: includes/class-cntctfrm-settings.php:473
 
 
 
 
 
430
  #, fuzzy
431
  msgid "Add department selectbox to the contact form"
432
  msgstr "Lisa valikukast kontakti vormile:"
433
 
434
+ #: includes/class-cntctfrm-settings.php:492
 
 
 
 
 
 
 
 
 
 
435
  msgid "Save emails to the database"
436
  msgstr "Salvesta e-mailid andmebaasi"
437
 
438
+ #: includes/class-cntctfrm-settings.php:504
439
+ #: includes/class-cntctfrm-settings.php:518
440
+ #: includes/class-cntctfrm-settings.php:525
441
  msgid "Using"
442
  msgstr "Kasutan"
443
 
444
+ #: includes/class-cntctfrm-settings.php:510
445
+ #: includes/class-cntctfrm-settings.php:889
446
+ #: includes/class-cntctfrm-settings.php:930
447
+ #: includes/class-cntctfrm-settings.php:965
448
  msgid "Please activate the appropriate option on"
449
  msgstr ""
450
 
451
+ #: includes/class-cntctfrm-settings.php:513
452
+ #: includes/class-cntctfrm-settings.php:892
453
+ #: includes/class-cntctfrm-settings.php:933
454
+ #: includes/class-cntctfrm-settings.php:968
455
  #, fuzzy
456
  msgid "settings page"
457
  msgstr "seadete leht"
458
 
459
+ #: includes/class-cntctfrm-settings.php:519
460
+ #: includes/class-cntctfrm-settings.php:899
461
+ #: includes/class-cntctfrm-settings.php:941
462
+ #: includes/class-cntctfrm-settings.php:975
463
  msgid "Activate"
464
  msgstr "Aktiveeri"
465
 
466
+ #: includes/class-cntctfrm-settings.php:526
467
+ #: includes/class-cntctfrm-settings.php:908
468
+ #: includes/class-cntctfrm-settings.php:947
469
+ #: includes/class-cntctfrm-settings.php:980
470
  msgid "Download"
471
  msgstr "Descarregar"
472
 
473
+ #: includes/class-cntctfrm-settings.php:551
474
  msgid "Sending method"
475
  msgstr ""
476
 
477
+ #: includes/class-cntctfrm-settings.php:556
478
  msgid "Wp-mail"
479
  msgstr "Wp-mail"
480
 
481
+ #: includes/class-cntctfrm-settings.php:557
482
  #, fuzzy
483
  msgid "You can use the Wordpress wp_mail function for mailing"
484
  msgstr "Võid kasutada wp_mail funktsiooni e-mailide saatmiseks"
485
 
486
+ #: includes/class-cntctfrm-settings.php:562
487
  msgid "Mail"
488
  msgstr "E-mail"
489
 
490
+ #: includes/class-cntctfrm-settings.php:563
491
  #, fuzzy
492
  msgid "You can use the PHP mail function for mailing"
493
  msgstr "Võid kasutada wp_mail funktsiooni e-mailide saatmiseks"
494
 
495
+ #: includes/class-cntctfrm-settings.php:569
496
  msgid "'FROM' field"
497
  msgstr ""
498
 
499
+ #: includes/class-cntctfrm-settings.php:585
500
  msgid "User name"
501
  msgstr "Kasutaja nimi"
502
 
503
+ #: includes/class-cntctfrm-settings.php:587
504
  msgid ""
505
  "The name of the user who fills the form will be used in the field 'From'."
506
  msgstr "Kasutaja nime (kes täidab vormi) kasutatakse 'Kellelt' väljal."
507
 
508
+ #: includes/class-cntctfrm-settings.php:609
 
 
 
 
509
  msgid "User email"
510
  msgstr "Kasutaja e-mail"
511
 
512
+ #: includes/class-cntctfrm-settings.php:611
513
  msgid ""
514
  "The email address of the user who fills the form will be used in the field "
515
  "'From'."
517
  "Selle kasutaja, kes täidab vormi, e-maili aadressi kasutatakse 'Kellelt' "
518
  "väljal."
519
 
520
+ #: includes/class-cntctfrm-settings.php:620
521
  msgid ""
522
  "If this option is changed, email messages may be moved to the spam folder or "
523
  "email delivery failures may occur."
524
  msgstr ""
525
 
526
+ #: includes/class-cntctfrm-settings.php:629
527
  msgid "Required symbol"
528
  msgstr "Nõutud sümbol"
529
 
530
+ #: includes/class-cntctfrm-settings.php:639
531
  msgid "Fields"
532
  msgstr "Väljad"
533
 
534
+ #: includes/class-cntctfrm-settings.php:640
535
+ #: includes/class-cntctfrm-settings.php:667
536
+ #: includes/class-cntctfrm-settings.php:694
537
+ #: includes/class-cntctfrm-settings.php:714
538
+ #: includes/class-cntctfrm-settings.php:750
539
+ #: includes/class-cntctfrm-settings.php:832
540
  msgid "Used"
541
  msgstr "Kasutatud"
542
 
543
+ #: includes/class-cntctfrm-settings.php:641
544
+ #: includes/class-cntctfrm-settings.php:656
545
+ #: includes/class-cntctfrm-settings.php:671
546
+ #: includes/class-cntctfrm-settings.php:698
547
+ #: includes/class-cntctfrm-settings.php:718
548
+ #: includes/class-cntctfrm-settings.php:754
549
+ #: includes/class-cntctfrm-settings.php:767
550
+ #: includes/class-cntctfrm-settings.php:791
551
  msgid "Required"
552
  msgstr "Nõutud"
553
 
554
+ #: includes/class-cntctfrm-settings.php:643
555
+ #: includes/class-cntctfrm-settings.php:676
556
+ #: includes/class-cntctfrm-settings.php:733
557
+ #: includes/class-cntctfrm-settings.php:772
558
+ #: includes/class-cntctfrm-settings.php:796
559
  msgid "Visible"
560
  msgstr "Nähtav"
561
 
562
+ #: includes/class-cntctfrm-settings.php:644
563
+ #: includes/class-cntctfrm-settings.php:680
564
+ #: includes/class-cntctfrm-settings.php:737
565
+ #: includes/class-cntctfrm-settings.php:776
566
+ #: includes/class-cntctfrm-settings.php:800
567
  msgid "Disabled for editing"
568
  msgstr "Toimetamiseks välja lülitatud"
569
 
570
+ #: includes/class-cntctfrm-settings.php:645
571
+ #: includes/class-cntctfrm-settings.php:704
572
+ #: includes/class-cntctfrm-settings.php:780
573
+ #: includes/class-cntctfrm-settings.php:804
574
  msgid "Field's default value"
575
  msgstr "Välja vaikeseades väärtus"
576
 
577
+ #: includes/class-cntctfrm-settings.php:652
578
  #, fuzzy
579
  msgid "Department selectbox"
580
  msgstr "Asukoha valik"
581
 
582
+ #: includes/class-cntctfrm-settings.php:684
583
  msgid "Use User's name as a default value if the user is logged in."
584
  msgstr ""
585
 
586
+ #: includes/class-cntctfrm-settings.php:685
587
+ #: includes/class-cntctfrm-settings.php:742
588
  msgid ""
589
  "'Visible' and 'Disabled for editing' options will be applied only to logged-"
590
  "in users."
591
  msgstr ""
592
 
593
+ #: includes/class-cntctfrm-settings.php:691
594
  msgid "Location selectbox"
595
  msgstr "Asukoha valik"
596
 
597
+ #: includes/class-cntctfrm-settings.php:741
598
  msgid "Use User's email as a default value if the user is logged in."
599
  msgstr ""
600
 
601
+ #: includes/class-cntctfrm-settings.php:825
602
  msgid "Attachment block"
603
  msgstr "Manuste blokk"
604
 
605
+ #: includes/class-cntctfrm-settings.php:827
606
  msgid "Users can attach the following file formats"
607
  msgstr "Kasutajad saavad lisada manuseid järgnevates formaatides"
608
 
609
+ #: includes/class-cntctfrm-settings.php:845
610
  msgid "Add to the form"
611
  msgstr "Lisa vormile"
612
 
613
+ #: includes/class-cntctfrm-settings.php:850
614
  msgid "Tips below the Attachment"
615
  msgstr "Vihjed manuse alla"
616
 
617
+ #: includes/class-cntctfrm-settings.php:857
618
  msgid "'Send me a copy' block"
619
  msgstr "'Saada mulle koopia' blokk"
620
 
621
+ #: includes/class-cntctfrm-settings.php:864
622
  msgid "GDPR Compliance"
623
  msgstr ""
624
 
625
+ #: includes/class-cntctfrm-settings.php:869
626
  msgid "Link to Privacy Policy Page"
627
  msgstr ""
628
 
629
+ #: includes/class-cntctfrm-settings.php:873
630
  msgid "Text for Privacy Policy Link"
631
  msgstr ""
632
 
633
+ #: includes/class-cntctfrm-settings.php:901
634
  #, fuzzy
635
  msgid "Activate for network"
636
  msgstr "Plugin activat"
637
 
638
+ #: includes/class-cntctfrm-settings.php:991
639
  msgid "Agreement checkbox"
640
  msgstr "Nõustumise kastike"
641
 
642
+ #: includes/class-cntctfrm-settings.php:991
643
  msgid "Required checkbox for submitting the form"
644
  msgstr "Nõutud kastike vormi saatmiseks"
645
 
646
+ #: includes/class-cntctfrm-settings.php:992
647
  msgid "Optional checkbox"
648
  msgstr "Valikuline kastike"
649
 
650
+ #: includes/class-cntctfrm-settings.php:992
651
  msgid "Optional checkbox, the results of which will be displayed in email"
652
  msgstr "Valikuline kastike, mille tulemusi näidatakse e-mailis"
653
 
654
+ #: includes/class-cntctfrm-settings.php:1007
655
  msgid "Delete an attachment file from the server after the email is sent"
656
  msgstr "Kustuta manuse fail serverist peale e-maili saatmist"
657
 
658
+ #: includes/class-cntctfrm-settings.php:1013
659
  msgid "Email in HTML format sending"
660
  msgstr "E-maili saatmine HTML formaadis"
661
 
662
+ #: includes/class-cntctfrm-settings.php:1017
663
  msgid "Display additional info in the email"
664
  msgstr "Näita e-mailis lisainfot"
665
 
666
+ #: includes/class-cntctfrm-settings.php:1023
667
  #, fuzzy
668
  msgid "Sent from (IP address)"
669
  msgstr "Saadetud (IP aadress)"
670
 
671
+ #: includes/class-cntctfrm-settings.php:1023
672
  msgid "Example: Sent from (IP address): 127.0.0.1"
673
  msgstr ""
674
 
675
+ #: includes/class-cntctfrm-settings.php:1024
 
 
 
 
676
  msgid "Example: Date/Time: August 19, 2013 8:50 pm"
677
  msgstr ""
678
 
679
+ #: includes/class-cntctfrm-settings.php:1025
 
 
 
 
680
  msgid ""
681
  "Example: Sent from (referer): https://bestwebsoft.com/contacts/contact-us/"
682
  msgstr ""
683
 
684
+ #: includes/class-cntctfrm-settings.php:1026
 
 
 
 
685
  msgid ""
686
  "Example: Using (user agent): Mozilla/5.0 (Windows NT 6.2; WOW64) "
687
  "AppleWebKit/537.36 (KHTML, like Gecko) Chrome/28.0.1500.95 Safari/537.36"
688
  msgstr ""
689
 
690
+ #: includes/class-cntctfrm-settings.php:1031
691
  msgid "Language settings for the field names in the form"
692
  msgstr "Vormi keeleseaded nimeväljadele"
693
 
694
+ #: includes/class-cntctfrm-settings.php:1040
695
  msgid "Add a language"
696
  msgstr "Lisa keel"
697
 
698
+ #: includes/class-cntctfrm-settings.php:1044
699
  msgid "Change the names of the contact form fields and error messages"
700
  msgstr "Muuda kontakti vormi väljade ja error-sõnumite nimesid"
701
 
702
+ #: includes/class-cntctfrm-settings.php:1049
703
+ #: includes/class-cntctfrm-settings.php:1147
704
+ #: includes/class-cntctfrm-settings.php:1252
 
 
705
  msgid "Default"
706
  msgstr "Vaikimisi valik"
707
 
708
+ #: includes/class-cntctfrm-settings.php:1062
709
+ #: includes/class-cntctfrm-settings.php:1101
710
  msgid "click to expand/hide the list"
711
  msgstr "avamiseks/sulgemiseks klikka"
712
 
713
+ #: includes/class-cntctfrm-settings.php:1071
714
+ #: includes/class-cntctfrm-settings.php:1110
715
  msgid "Tips below the Attachment block"
716
  msgstr "Vihje manuse bloki all"
717
 
718
+ #: includes/class-cntctfrm-settings.php:1075
719
+ #: includes/class-cntctfrm-settings.php:1114
720
  msgid "Error message for the Name field"
721
  msgstr "Error väljal 'Nimi'"
722
 
723
+ #: includes/class-cntctfrm-settings.php:1076
724
+ #: includes/class-cntctfrm-settings.php:1115
725
  msgid "Error message for the Address field"
726
  msgstr "Error väljal 'Aadress'"
727
 
728
+ #: includes/class-cntctfrm-settings.php:1077
729
+ #: includes/class-cntctfrm-settings.php:1116
730
  msgid "Error message for the Email field"
731
  msgstr "Error väljal 'E-mail'"
732
 
733
+ #: includes/class-cntctfrm-settings.php:1078
734
+ #: includes/class-cntctfrm-settings.php:1117
735
  msgid "Error message for the Phone field"
736
  msgstr "Error väljal 'Telefon'"
737
 
738
+ #: includes/class-cntctfrm-settings.php:1079
739
+ #: includes/class-cntctfrm-settings.php:1118
740
  msgid "Error message for the Subject field"
741
  msgstr "Error väljal 'Pealkiri'"
742
 
743
+ #: includes/class-cntctfrm-settings.php:1080
744
+ #: includes/class-cntctfrm-settings.php:1119
745
  msgid "Error message for the Message field"
746
  msgstr "Error väljal 'Sõnum'"
747
 
748
+ #: includes/class-cntctfrm-settings.php:1081
749
+ #: includes/class-cntctfrm-settings.php:1120
750
  msgid "Error message about the file type for the Attachment field"
751
  msgstr "Error faili tüübi kohta manuse väljal"
752
 
753
+ #: includes/class-cntctfrm-settings.php:1082
754
+ #: includes/class-cntctfrm-settings.php:1121
755
  msgid ""
756
  "Error message while uploading a file for the Attachment field to the server"
757
  msgstr "Error faili üles laadimisel serverisse manuse välja jaoks"
758
 
759
+ #: includes/class-cntctfrm-settings.php:1083
760
+ #: includes/class-cntctfrm-settings.php:1122
761
  msgid "Error message while moving the file for the Attachment field"
762
  msgstr "Error faili liigutamisel manuse väljale"
763
 
764
+ #: includes/class-cntctfrm-settings.php:1084
765
+ #: includes/class-cntctfrm-settings.php:1123
766
  msgid "Error message when file size limit for the Attachment field is exceeded"
767
  msgstr "Error ületades faili suuruse limiiti manuse väljal"
768
 
769
+ #: includes/class-cntctfrm-settings.php:1085
770
+ #: includes/class-cntctfrm-settings.php:1124
771
  msgid "Error message for the Captcha field"
772
  msgstr "Error väljal 'Captcha'"
773
 
774
+ #: includes/class-cntctfrm-settings.php:1086
775
+ #: includes/class-cntctfrm-settings.php:1125
776
  msgid "Error message for the whole form"
777
  msgstr "Error kogu vormi kohta"
778
 
779
+ #: includes/class-cntctfrm-settings.php:1138
 
 
 
 
 
 
 
 
 
 
 
 
 
 
780
  msgid "Use the changed names of the contact form fields in the email"
781
  msgstr "Kasuta kontaktivormi väljade muudetud nimesid emailis"
782
 
783
+ #: includes/class-cntctfrm-settings.php:1144
784
  msgid "Action after email is sent"
785
  msgstr "Tegevus peale e-maili saatmist"
786
 
787
+ #: includes/class-cntctfrm-settings.php:1146
788
  msgid "Display text"
789
  msgstr "Näita teksti"
790
 
791
+ #: includes/class-cntctfrm-settings.php:1160
792
+ #: includes/class-cntctfrm-settings.php:1174
793
  msgid "Text"
794
  msgstr "Tekst"
795
 
796
+ #: includes/class-cntctfrm-settings.php:1185
797
  msgid "Redirect to the page"
798
  msgstr "Suuna lehele"
799
 
800
+ #: includes/class-cntctfrm-settings.php:1186
801
  msgid "Url"
802
  msgstr "Url"
803
 
804
+ #: includes/class-cntctfrm-settings.php:1206
 
 
 
 
 
 
 
 
 
 
 
 
805
  #, php-format
806
  msgid ""
807
+ "Please enable JavaScript to change '%s', '%s', '%s', '%s' options and for "
808
+ "fields sorting."
 
809
  msgstr ""
810
 
811
+ #: includes/class-cntctfrm-settings.php:1207
812
+ #: includes/class-cntctfrm-settings.php:1224
813
+ msgid "Form layout"
 
 
 
 
 
814
  msgstr ""
815
 
816
+ #: includes/class-cntctfrm-settings.php:1208
817
+ #: includes/class-cntctfrm-settings.php:1291
818
+ #, fuzzy
819
+ msgid "Labels position"
820
+ msgstr "'Saada' nupp"
821
+
822
+ #: includes/class-cntctfrm-settings.php:1209
823
+ #: includes/class-cntctfrm-settings.php:1309
824
+ msgid "Labels align"
825
  msgstr ""
826
 
827
+ #: includes/class-cntctfrm-settings.php:1210
828
+ #: includes/class-cntctfrm-settings.php:1236
829
  #, fuzzy
830
  msgid "Submit position"
831
  msgstr "'Saada' nupp"
832
 
833
+ #: includes/class-cntctfrm-settings.php:1211
834
+ #: includes/class-cntctfrm-settings.php:1340
835
+ msgid "Add tooltips"
836
+ msgstr "Lisa vihjed"
837
+
838
+ #: includes/class-cntctfrm-settings.php:1212
839
+ #: includes/class-cntctfrm-settings.php:1381
840
+ msgid "Style options"
841
+ msgstr "Stiili valikud"
842
+
843
+ #: includes/class-cntctfrm-settings.php:1228
844
  msgid "One column"
845
  msgstr ""
846
 
847
+ #: includes/class-cntctfrm-settings.php:1231
848
  msgid "Two columns"
849
  msgstr ""
850
 
851
+ #: includes/class-cntctfrm-settings.php:1240
852
+ #: includes/class-cntctfrm-settings.php:1280
853
+ #: includes/class-cntctfrm-settings.php:1298
854
+ #: includes/class-cntctfrm-settings.php:1313
855
  msgid "Left"
856
  msgstr ""
857
 
858
+ #: includes/class-cntctfrm-settings.php:1243
859
+ #: includes/class-cntctfrm-settings.php:1286
860
+ #: includes/class-cntctfrm-settings.php:1301
861
+ #: includes/class-cntctfrm-settings.php:1319
862
  msgid "Right"
863
  msgstr ""
864
 
865
+ #: includes/class-cntctfrm-settings.php:1248
866
  msgid "Width"
867
  msgstr ""
868
 
869
+ #: includes/class-cntctfrm-settings.php:1256
870
  msgid "Custom"
871
  msgstr ""
872
 
873
+ #: includes/class-cntctfrm-settings.php:1263
874
  msgid "px"
875
  msgstr ""
876
 
877
+ #: includes/class-cntctfrm-settings.php:1276
878
  msgid "Form align"
879
  msgstr ""
880
 
881
+ #: includes/class-cntctfrm-settings.php:1283
882
+ #: includes/class-cntctfrm-settings.php:1316
883
  msgid "Center"
884
  msgstr ""
885
 
886
+ #: includes/class-cntctfrm-settings.php:1295
 
 
 
 
 
887
  msgid "Top"
888
  msgstr ""
889
 
890
+ #: includes/class-cntctfrm-settings.php:1304
891
  msgid "Bottom"
892
  msgstr ""
893
 
894
+ #: includes/class-cntctfrm-settings.php:1324
 
 
 
 
895
  msgid "Errors output"
896
  msgstr "Errorite väljund"
897
 
898
+ #: includes/class-cntctfrm-settings.php:1327
899
  msgid "Display error messages"
900
  msgstr "Näita error-sõnumeid"
901
 
902
+ #: includes/class-cntctfrm-settings.php:1328
903
  msgid "Color of the input field errors."
904
  msgstr "Sisestusväljade errorite värv"
905
 
906
+ #: includes/class-cntctfrm-settings.php:1329
907
  msgid "Display error messages & color of the input field errors"
908
  msgstr "Näita error-sõnumeid ja sisestusväljade errorite värvi"
909
 
910
+ #: includes/class-cntctfrm-settings.php:1334
911
  msgid "Add placeholder to the input blocks"
912
  msgstr "Lisa kohahoidja sisestusblokkidele"
913
 
914
+ #: includes/class-cntctfrm-settings.php:1354
 
 
 
 
915
  msgid "Email address"
916
  msgstr "E-maili aadress"
917
 
918
+ #: includes/class-cntctfrm-settings.php:1385
 
 
 
 
 
 
 
 
919
  msgid "Text color"
920
  msgstr "Teksti värv"
921
 
922
+ #: includes/class-cntctfrm-settings.php:1393
923
  msgid "Label text color"
924
  msgstr "Sildi teksti värv"
925
 
926
+ #: includes/class-cntctfrm-settings.php:1402
927
  msgid "Placeholder color"
928
  msgstr "Kohahoidja värv"
929
 
930
+ #: includes/class-cntctfrm-settings.php:1407
931
  msgid "Errors color"
932
  msgstr "Errorite värv"
933
 
934
+ #: includes/class-cntctfrm-settings.php:1415
935
  msgid "Error text color"
936
  msgstr "Error-teksti värv"
937
 
938
+ #: includes/class-cntctfrm-settings.php:1423
939
  msgid "Background color of the input field errors"
940
  msgstr "Sisestusväljade errorite taustavärv"
941
 
942
+ #: includes/class-cntctfrm-settings.php:1431
943
  msgid "Border color of the input field errors"
944
  msgstr "Sisestusväljade errorite piirjoonte värv"
945
 
946
+ #: includes/class-cntctfrm-settings.php:1439
947
  msgid "Placeholder color of the input field errors"
948
  msgstr "Sisestusväljade errorite kohahoidja värv"
949
 
950
+ #: includes/class-cntctfrm-settings.php:1444
951
  msgid "Input fields"
952
  msgstr "Sisestusväljad"
953
 
954
+ #: includes/class-cntctfrm-settings.php:1452
955
  msgid "Input fields background color"
956
  msgstr "Sisestusväljade taustavärv"
957
 
958
+ #: includes/class-cntctfrm-settings.php:1460
959
  msgid "Text fields color"
960
  msgstr "Tekstiväljade värv"
961
 
962
+ #: includes/class-cntctfrm-settings.php:1464
963
  msgid "Border width in px, numbers only"
964
  msgstr "Piirjoone paksus pikslites. Ainult number"
965
 
966
+ #: includes/class-cntctfrm-settings.php:1472
967
+ #: includes/class-cntctfrm-settings.php:1505
968
  msgid "Border color"
969
  msgstr "Piirjoone värv"
970
 
971
+ #: includes/class-cntctfrm-settings.php:1477
972
  msgid "Submit button"
973
  msgstr "'Saada' nupp"
974
 
975
+ #: includes/class-cntctfrm-settings.php:1481
976
  msgid "Width in px, numbers only"
977
  msgstr "Laius pikslites, ainult numbrid"
978
 
979
+ #: includes/class-cntctfrm-settings.php:1489
980
  msgid "Button color"
981
  msgstr "Nupu värv"
982
 
983
+ #: includes/class-cntctfrm-settings.php:1497
984
  msgid "Button text color"
985
  msgstr "Nupu teksti värv"
986
 
987
+ #: includes/class-cntctfrm-settings.php:1524
988
  #, fuzzy
989
  msgid "Contact Form | Preview"
990
  msgstr "Contact Form Pro | Eelvaade"
991
 
992
+ #: includes/class-cntctfrm-settings.php:1525
993
  msgid "Drag the necessary field to sort fields."
994
  msgstr ""
995
 
996
+ #: includes/class-cntctfrm-settings.php:1772
997
+ msgid "Contact Form Shortcode"
 
 
 
998
  msgstr ""
 
 
 
 
 
 
 
 
 
 
 
 
 
 
999
 
1000
+ #: includes/class-cntctfrm-settings.php:1775
1001
+ msgid "Add Contact Form to your page or post using the following shortcode:"
 
 
 
 
 
 
1002
  msgstr ""
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1003
 
1004
+ #~ msgid "If you upgrade to Pro version all your settings will be saved."
1005
+ #~ msgstr "Kui sa lähed üle Pro versioonile, siis kõik seaded salvestatakse."
 
 
 
1006
 
 
1007
  #, fuzzy
1008
+ #~ msgid ""
1009
+ #~ "If you would like to add the Contact Form to your website, just copy and "
1010
+ #~ "paste this shortcode to your post or page or widget"
1011
+ #~ msgstr ""
1012
+ #~ "Kui soovid lisada kontakti vormi oma kodulehele, siis lihtsalt kopeeri "
1013
+ #~ "see lühikood oma postitusele või lehele või moodulile:"
1014
 
1015
+ #~ msgid "Save Changes"
1016
+ #~ msgstr "Salvesta muudatused"
 
1017
 
1018
+ #~ msgid "Contact Form"
1019
+ #~ msgstr "Contact Form"
 
1020
 
 
1021
  #, fuzzy
1022
+ #~ msgid "Additional settings"
1023
+ #~ msgstr "Opcions addicionals"
 
1024
 
1025
+ #~ msgid "Go PRO"
1026
+ #~ msgstr "Telli PRO"
 
1027
 
 
 
 
 
 
1028
  #, fuzzy
1029
+ #~ msgid "Notice"
1030
+ #~ msgstr "Märkus:"
1031
 
 
1032
  #, fuzzy
1033
+ #~ msgid ""
1034
+ #~ "If you would like to add a Contact Form to your page or post, please use "
1035
+ #~ "%s button"
1036
+ #~ msgstr ""
1037
+ #~ "Kui soovid lisada kontakti vormi oma kodulehele, siis lihtsalt kopeeri "
1038
+ #~ "see lühikood oma postitusele või lehele või moodulile:"
1039
 
1040
  #~ msgid "Example: Sent from (IP address):\t127.0.0.1"
1041
  #~ msgstr "Näide: Saadetud (IP address):\t127.0.0.1"
languages/contact-form-plugin-fr_FR.mo CHANGED
Binary file
languages/contact-form-plugin-fr_FR.po CHANGED
@@ -2,8 +2,8 @@ msgid ""
2
  msgstr ""
3
  "Project-Id-Version: contact-form-plugin 4.0.8\n"
4
  "Report-Msgid-Bugs-To: \n"
5
- "POT-Creation-Date: 2018-05-16 14:26+0300\n"
6
- "PO-Revision-Date: 2018-05-16 14:26+0300\n"
7
  "Last-Translator: Luc Capronnier <lcapronnier@yahoo.com>\n"
8
  "Language-Team: Luc Capronnier <lcapronnier@yahoo.com>\n"
9
  "Language: fr_FR\n"
@@ -18,54 +18,75 @@ msgstr ""
18
  "X-Generator: Poedit 1.8.7.1\n"
19
  "X-Poedit-SearchPath-0: .\n"
20
 
21
- #: contact_form.php:37 contact_form.php:992
 
22
  msgid "Contact Form Settings"
23
  msgstr "Options du formulaire de contact"
24
 
25
- #: contact_form.php:37
26
- msgid "Contact Form"
27
- msgstr "Formulaire de contact"
 
 
 
 
 
 
 
 
28
 
29
- #: contact_form.php:322 contact_form.php:1172 contact_form.php:1262
30
- #: contact_form.php:1668 contact_form.php:1707 contact_form.php:1975
31
- #: contact_form.php:3134 contact_form.php:3180
 
 
 
32
  msgid "Name"
33
  msgstr "Nom"
34
 
35
- #: contact_form.php:323 contact_form.php:1309 contact_form.php:1669
36
- #: contact_form.php:1708 contact_form.php:1980 contact_form.php:3141
37
- #: contact_form.php:3186
 
 
38
  msgid "Address"
39
  msgstr "Adresse"
40
 
41
- #: contact_form.php:324 contact_form.php:1325 contact_form.php:1670
42
- #: contact_form.php:1709
 
43
  msgid "Email Address"
44
  msgstr "Adresse e-mail"
45
 
46
- #: contact_form.php:325 contact_form.php:1348 contact_form.php:1671
47
- #: contact_form.php:1710
 
48
  msgid "Phone number"
49
  msgstr "Téléphone"
50
 
51
- #: contact_form.php:326 contact_form.php:1364 contact_form.php:1672
52
- #: contact_form.php:1711 contact_form.php:1995 contact_form.php:3152
53
- #: contact_form.php:3195
 
 
54
  msgid "Subject"
55
  msgstr "Sujet"
56
 
57
- #: contact_form.php:327 contact_form.php:1388 contact_form.php:1673
58
- #: contact_form.php:1712 contact_form.php:1999 contact_form.php:3157
59
- #: contact_form.php:3199
 
 
60
  msgid "Message"
61
  msgstr "Message"
62
 
63
- #: contact_form.php:328 contact_form.php:1674 contact_form.php:1713
64
- #: contact_form.php:2004
 
65
  msgid "Attachment"
66
  msgstr "Pièce jointe"
67
 
68
- #: contact_form.php:329
69
  msgid ""
70
  "Supported file types: HTML, TXT, CSS, GIF, PNG, JPEG, JPG, TIFF, BMP, AI, "
71
  "EPS, PS, CSV, RTF, PDF, DOC, DOCX, XLS, XLSX, ZIP, RAR, WAV, MP3, PPT."
@@ -74,177 +95,305 @@ msgstr ""
74
  "TIFF, BMP, AI, EPS, PS, CSV, RTF, PDF, DOC, DOCX, XLS, XLSX, ZIP, RAR, WAV, "
75
  "MP3, PPT."
76
 
77
- #: contact_form.php:330 contact_form.php:1676 contact_form.php:1715
 
78
  msgid "Send me a copy"
79
  msgstr "M&rsquo;envoyer une copie"
80
 
81
- #: contact_form.php:331 contact_form.php:1677 contact_form.php:1716
 
82
  msgid "I consent to having this site collect my personal data."
83
  msgstr ""
84
 
85
- #: contact_form.php:332 contact_form.php:1678 contact_form.php:1717
 
86
  msgid "Submit"
87
  msgstr "Envoyer"
88
 
89
- #: contact_form.php:333
90
  msgid "Your name is required."
91
  msgstr "Un nom est obligatoire."
92
 
93
- #: contact_form.php:334
94
  msgid "Address is required."
95
  msgstr "Une adresse est obligatoire."
96
 
97
- #: contact_form.php:335
98
  msgid "A valid email address is required."
99
  msgstr "Une adresse e-mail valide est obligatoire."
100
 
101
- #: contact_form.php:336
102
  msgid "Phone number is required."
103
  msgstr "Le numéro de téléphone est obligatoire."
104
 
105
- #: contact_form.php:337
106
  msgid "Subject is required."
107
  msgstr "Le sujet est obligatoire."
108
 
109
- #: contact_form.php:338
110
  msgid "Message text is required."
111
  msgstr "Un message est obligatoire."
112
 
113
- #: contact_form.php:339
114
  msgid "File format is not valid."
115
  msgstr "Le type de pièce jointe n&rsquo;est pas valide."
116
 
117
- #: contact_form.php:340
118
  msgid "File upload error."
119
  msgstr "Erreur de chargement du fichier."
120
 
121
- #: contact_form.php:341
122
  msgid "The file could not be uploaded."
123
  msgstr "Le fichier n&rsquo;a pas pu être envoyé."
124
 
125
- #: contact_form.php:342
126
  msgid "This file is too large."
127
  msgstr "Le fichier est trop volumineux."
128
 
129
- #: contact_form.php:343
130
  msgid "Please fill out the CAPTCHA."
131
  msgstr "Merci de compléter le CAPTCHA."
132
 
133
- #: contact_form.php:344
134
  msgid "Please make corrections below and try again."
135
  msgstr "Merci de faire les corrections suivantes et de réessayer."
136
 
137
- #: contact_form.php:346
138
  msgid "Thank you for contacting us."
139
  msgstr "Merci de nous avoir contacté."
140
 
141
- #: contact_form.php:683 contact_form.php:949
142
- msgid "Settings saved."
143
- msgstr "Options enregistrées."
144
 
145
- #: contact_form.php:894
146
  msgid ""
147
- "Email 'FROM' field option was changed, which may cause email messages being "
148
- "moved to the spam folder or email delivery failures."
149
  msgstr ""
150
- "L&rsquo;option pour le champ 'From' des courriels a été modifiée, cela peut "
151
- "entraîner un classement des messages dans les dossiers spam ou bien une "
152
- "erreur d&rsquo;acheminement peut survenir."
153
 
154
- #: contact_form.php:904
155
  msgid ""
156
- "If the 'Redirect to page' option is selected then the URL field should be in "
157
- "the following format"
 
158
  msgstr ""
159
- "Si l&rsquo;option 'Rediriger vers la page' est positionnée, alors le champ "
160
- "Url doit être rempli avec le format suivant"
161
 
162
- #: contact_form.php:911
163
- msgid "Such user does not exist."
164
- msgstr "Cet utilisateur est inconnu."
 
 
 
 
 
 
 
 
 
165
 
166
- #: contact_form.php:921
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
167
  msgid ""
168
- "Please enter a valid email address in the 'Use this email address' field."
 
169
  msgstr ""
170
- "Merci de saisir une adresse e-mail valide pour le champ 'Utiliser cette "
171
- "adresse e-mail'."
172
 
173
- #: contact_form.php:929
174
- msgid "Please enter a valid email address in the 'FROM' field."
175
- msgstr "Merci de saisir une adresse e-mail valide pour le champ 'FROM'."
176
 
177
- #: contact_form.php:951
178
- msgid "Settings are not saved."
179
- msgstr "Paramètres non enregistrées."
180
 
181
- #: contact_form.php:989
182
- msgid "All plugin settings were restored."
183
- msgstr "Remettre les valeurs par défaut des paramètres de l&rsquo;extension."
184
 
185
- #: contact_form.php:995
186
- msgid "How to Use Step-by-step Instruction"
187
- msgstr "Mode d&rsquo;emploi pas à pas"
188
 
189
- #: contact_form.php:998 contact_form.php:3343 contact_form.php:3357
190
- msgid "Settings"
191
- msgstr "Paramètres"
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
192
 
193
- #: contact_form.php:999
194
- msgid "Additional settings"
195
- msgstr "Options supplémentaires"
 
 
 
 
 
196
 
197
- #: contact_form.php:1000
 
198
  msgid "Appearance"
199
  msgstr "Aspect"
200
 
201
- #: contact_form.php:1001
202
- msgid "Custom code"
203
- msgstr "Personnaliser"
204
 
205
- #: contact_form.php:1002
206
- msgid "Go PRO"
207
- msgstr "Choisir la version PRO"
208
 
209
- #: contact_form.php:1013
210
- msgid "Notice"
211
- msgstr "Avertissement"
212
 
213
- #: contact_form.php:1017
214
- msgid "NEW_FORM"
215
- msgstr "Nouveau formulaire"
216
 
217
- #: contact_form.php:1018
 
218
  msgid ""
219
- "If you want to create multiple contact forms, please install the Contact "
220
- "Form Multi plugin."
221
  msgstr ""
222
- "Si vous voulez créer plusieurs formulaire de contact, merci d&rsquo;"
223
- "installer l&rsquo;extension 'Contact Form Multi'"
224
 
225
- #: contact_form.php:1027
226
- #, php-format
227
  msgid ""
228
- "If you would like to add a Contact Form to your page or post, please use %s "
229
- "button"
230
  msgstr ""
231
- "Si vous souhaitez ajouter un formulaire de contact à votre page ou votre "
232
- "article, merci d&rsquo;utiliser le bouton %s"
 
233
 
234
- #: contact_form.php:1033
235
- #, php-format
236
  msgid ""
237
- "You can add the Contact Form to your page or post by clicking on %s button "
238
- "in the content edit block using the Visual mode. If the button isn't "
239
- "displayed, please use the shortcode %s or %s where * stands for Contact Form "
240
- "language."
241
  msgstr ""
242
- "Vous pouvez ajouter le formulaire de contact sur une page ou un article en "
243
- "utilisant le bouton %s dans l&rsquo;éditeur de contenu en mode visuel. Si le "
244
- "bouton n&rsquo;est pas affiché, merci d&rsquo;utiliser le code court %s ou "
245
- "%s où * est à remplacer par la langue du formulaire de contact."
246
 
247
- #: contact_form.php:1042
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
248
  msgid ""
249
  "If you leave the fields empty, the messages will be sent to the email "
250
  "address specified during registration."
@@ -252,15 +401,15 @@ msgstr ""
252
  "Si les champs ci-dessous ne sont pas renseignés le message sera envoyé à "
253
  "l&rsquo;adresse spécifiée lors de l&rsquo;enregistrement."
254
 
255
- #: contact_form.php:1045
256
  msgid "The user's email address"
257
  msgstr "Utiliser l&rsquo;e-mail du compte WordPress"
258
 
259
- #: contact_form.php:1049
260
  msgid "Select a username"
261
  msgstr "Choisir un nom d&rsquo;utilisateur"
262
 
263
- #: contact_form.php:1062
264
  msgid ""
265
  "Select a username of the person who should get the messages from the contact "
266
  "form."
@@ -268,112 +417,102 @@ msgstr ""
268
  "Choisir le nom d&rsquo;utilisateur qui recevra les messages envoyés depuis "
269
  "le formulaire de contact."
270
 
271
- #: contact_form.php:1066
272
  msgid "Use this email address"
273
  msgstr "Utiliser cette adresse e-mail"
274
 
275
- #: contact_form.php:1070
276
  msgid "Enter the email address for receiving messages"
277
  msgstr ""
278
  "Choisir l&rsquo;adresse e-mail qui sera utilisée pour recevoir les messages"
279
 
280
- #: contact_form.php:1077 contact_form.php:1588 contact_form.php:1797
281
- #: contact_form.php:1903 contact_form.php:3440
282
- msgid "Close"
283
- msgstr "Fermer"
284
-
285
- #: contact_form.php:1081
286
  msgid "Add department selectbox to the contact form"
287
  msgstr ""
288
  "Ajouter la liste déroulante pour le département dans le formulaire de contact"
289
 
290
- #: contact_form.php:1089 contact_form.php:1597 contact_form.php:1816
291
- #: contact_form.php:2109
292
- msgid "If you upgrade to Pro version all your settings will be saved."
293
- msgstr ""
294
- "Si vous passez à la version Pro, tous ces paramètres seront enregistrés."
295
-
296
- #: contact_form.php:1096 contact_form.php:1418 contact_form.php:1602
297
- #: contact_form.php:1823 contact_form.php:2116
298
- msgid "Upgrade to Pro"
299
- msgstr "Passer à la version PRO"
300
-
301
- #: contact_form.php:1104
302
  msgid "Save emails to the database"
303
  msgstr "Enregistrer les e-mails dans la base de données"
304
 
305
- #: contact_form.php:1116 contact_form.php:1130 contact_form.php:1137
 
 
306
  msgid "Using"
307
  msgstr "Utilisant"
308
 
309
- #: contact_form.php:1122 contact_form.php:1490 contact_form.php:1531
310
- #: contact_form.php:1566
 
 
311
  msgid "Please activate the appropriate option on"
312
  msgstr "Merci de configure les options appropriées sur"
313
 
314
- #: contact_form.php:1125 contact_form.php:1493 contact_form.php:1534
315
- #: contact_form.php:1569
 
 
316
  msgid "settings page"
317
  msgstr "Page des paramètres"
318
 
319
- #: contact_form.php:1131 contact_form.php:1500 contact_form.php:1542
320
- #: contact_form.php:1576
 
 
321
  msgid "Activate"
322
  msgstr "Activé"
323
 
324
- #: contact_form.php:1138 contact_form.php:1509 contact_form.php:1548
325
- #: contact_form.php:1581
 
 
326
  msgid "Download"
327
  msgstr "Téléchargement"
328
 
329
- #: contact_form.php:1150
330
  msgid "Sending method"
331
  msgstr "Méthode pour l&rsquo;envoie"
332
 
333
- #: contact_form.php:1155
334
  msgid "Wp-mail"
335
  msgstr "Wp-mail"
336
 
337
- #: contact_form.php:1157
338
  msgid "You can use the Wordpress wp_mail function for mailing"
339
  msgstr ""
340
  "Pour envoyer le courriel, vous pouvez utiliser la fonction wp_mail de "
341
  "WordPress."
342
 
343
- #: contact_form.php:1160
344
  msgid "Mail"
345
  msgstr "E-mail"
346
 
347
- #: contact_form.php:1162
348
  msgid "You can use the PHP mail function for mailing"
349
  msgstr ""
350
  "Pour envoyer le courriel, vous pouvez utiliser la fonction PHP mail de "
351
  "WordPress."
352
 
353
- #: contact_form.php:1167
354
  msgid "'FROM' field"
355
  msgstr "Champ 'From'"
356
 
357
- #: contact_form.php:1183
358
  msgid "User name"
359
  msgstr "Nom de l&rsquo;utilisateur"
360
 
361
- #: contact_form.php:1185
362
  msgid ""
363
  "The name of the user who fills the form will be used in the field 'From'."
364
  msgstr ""
365
  "Dans le champ 'FROM' du courriel, il sera utilisé l&rsquo;adresse e-mail de "
366
  "l&rsquo;utilisateur qui rempli le formulaire."
367
 
368
- #: contact_form.php:1196 contact_form.php:3147 contact_form.php:3191
369
- msgid "Email"
370
- msgstr "E-mail"
371
-
372
- #: contact_form.php:1207
373
  msgid "User email"
374
  msgstr "E-mail de l&rsquo;utilisateur"
375
 
376
- #: contact_form.php:1209
377
  msgid ""
378
  "The email address of the user who fills the form will be used in the field "
379
  "'From'."
@@ -381,7 +520,7 @@ msgstr ""
381
  "Dans le champ 'FROM' du courriel, il sera utilisé l&rsquo;adresse e-mail de "
382
  "l&rsquo;utilisateur qui rempli le formulaire."
383
 
384
- #: contact_form.php:1218
385
  msgid ""
386
  "If this option is changed, email messages may be moved to the spam folder or "
387
  "email delivery failures may occur."
@@ -389,51 +528,69 @@ msgstr ""
389
  "Si cette option est modifiée, les courriels pourront se retrouver classer "
390
  "dans le dossier spam ou bien une erreur d&rsquo;acheminement peut survenir."
391
 
392
- #: contact_form.php:1227
393
  msgid "Required symbol"
394
  msgstr "Symbole obligatoire"
395
 
396
- #: contact_form.php:1237
397
  msgid "Fields"
398
  msgstr "Champs"
399
 
400
- #: contact_form.php:1238 contact_form.php:1265 contact_form.php:1292
401
- #: contact_form.php:1312 contact_form.php:1351 contact_form.php:1433
 
 
 
 
402
  msgid "Used"
403
  msgstr "Utilisé"
404
 
405
- #: contact_form.php:1239 contact_form.php:1254 contact_form.php:1269
406
- #: contact_form.php:1296 contact_form.php:1316 contact_form.php:1329
407
- #: contact_form.php:1355 contact_form.php:1368 contact_form.php:1392
 
 
 
 
 
408
  msgid "Required"
409
  msgstr "Obligatoire"
410
 
411
- #: contact_form.php:1241 contact_form.php:1274 contact_form.php:1334
412
- #: contact_form.php:1373 contact_form.php:1397
 
 
 
413
  msgid "Visible"
414
  msgstr "Visible"
415
 
416
- #: contact_form.php:1242 contact_form.php:1278 contact_form.php:1338
417
- #: contact_form.php:1377 contact_form.php:1401
 
 
 
418
  msgid "Disabled for editing"
419
  msgstr "Non actif pour l&rsquo;édition"
420
 
421
- #: contact_form.php:1243 contact_form.php:1302 contact_form.php:1381
422
- #: contact_form.php:1405
 
 
423
  msgid "Field's default value"
424
  msgstr "Valeur par défaut du champ"
425
 
426
- #: contact_form.php:1250
427
  msgid "Department selectbox"
428
  msgstr "Liste déroulante des localisations"
429
 
430
- #: contact_form.php:1282
431
  msgid "Use User's name as a default value if the user is logged in."
432
  msgstr ""
433
  "Utiliser le nom de l&rsquo;utilisateur comme valeur par défaut si un "
434
  "utilisateur est connecté."
435
 
436
- #: contact_form.php:1283 contact_form.php:1343
 
437
  msgid ""
438
  "'Visible' and 'Disabled for editing' options will be applied only to logged-"
439
  "in users."
@@ -441,113 +598,101 @@ msgstr ""
441
  "'Visible' et 'Inactif', ces options ne seront appliqués qu&rsquo;aux "
442
  "utilisateurs connectés."
443
 
444
- #: contact_form.php:1289
445
  msgid "Location selectbox"
446
  msgstr "Liste déroulante des localisations"
447
 
448
- #: contact_form.php:1342
449
  msgid "Use User's email as a default value if the user is logged in."
450
  msgstr ""
451
  "Utiliser l&rsquo;adresse e-mail de l&rsquo;utilisateur comme valeur par "
452
  "défaut si un utilisateur est connecté."
453
 
454
- #: contact_form.php:1426
455
  msgid "Attachment block"
456
  msgstr "Bloc pièce jointe"
457
 
458
- #: contact_form.php:1428
459
  msgid "Users can attach the following file formats"
460
  msgstr "Les utilisateurs peuvent joindre des documents des types suivants"
461
 
462
- #: contact_form.php:1446
463
  msgid "Add to the form"
464
  msgstr "Ajouter au formulaire"
465
 
466
- #: contact_form.php:1451
467
  msgid "Tips below the Attachment"
468
  msgstr "Afficher les explications en-dessous du bloc des pièces jointes"
469
 
470
- #: contact_form.php:1458
471
  msgid "'Send me a copy' block"
472
  msgstr "Afficher le bloc \"M&rsquo;envoyer une copie\""
473
 
474
- #: contact_form.php:1465
475
  msgid "GDPR Compliance"
476
  msgstr ""
477
 
478
- #: contact_form.php:1470
479
  msgid "Link to Privacy Policy Page"
480
  msgstr ""
481
 
482
- #: contact_form.php:1474
483
  msgid "Text for Privacy Policy Link"
484
  msgstr ""
485
 
486
- #: contact_form.php:1502
487
  msgid "Activate for network"
488
  msgstr "Activer pour le réseau"
489
 
490
- #: contact_form.php:1592
491
  msgid "Agreement checkbox"
492
  msgstr "Case à cocher pour valider le formulaire"
493
 
494
- #: contact_form.php:1592
495
  msgid "Required checkbox for submitting the form"
496
  msgstr "Boite à cocher obligatoire pour la validation du formulaire."
497
 
498
- #: contact_form.php:1593
499
  msgid "Optional checkbox"
500
  msgstr "Boite à cocher optionnelle"
501
 
502
- #: contact_form.php:1593
503
  msgid "Optional checkbox, the results of which will be displayed in email"
504
  msgstr "Boite à cocher optionnelle, le résultat sera affiché dans le courriel"
505
 
506
- #: contact_form.php:1611
507
  msgid "Delete an attachment file from the server after the email is sent"
508
  msgstr ""
509
  "Supprimer le fichier joint sur le serveur après l&rsquo;envoie du courriel"
510
 
511
- #: contact_form.php:1617
512
  msgid "Email in HTML format sending"
513
  msgstr "Courriel au format HTML"
514
 
515
- #: contact_form.php:1621
516
  msgid "Display additional info in the email"
517
  msgstr "Afficher les informations complémentaires dans le courriel"
518
 
519
- #: contact_form.php:1627
520
  msgid "Sent from (IP address)"
521
  msgstr "Envoyé de (adresse IP)"
522
 
523
- #: contact_form.php:1627
524
  msgid "Example: Sent from (IP address): 127.0.0.1"
525
  msgstr "Exemple&nbsp;: Envoyé de (adresse IP)&nbsp;: 127.0.0.1"
526
 
527
- #: contact_form.php:1628 contact_form.php:3096 contact_form.php:3098
528
- msgid "Date/Time"
529
- msgstr "Date/Heure"
530
-
531
- #: contact_form.php:1628
532
  msgid "Example: Date/Time: August 19, 2013 8:50 pm"
533
  msgstr "Exemple&nbsp;: Date/Heure&nbsp;: 19 août 2013 8:50"
534
 
535
- #: contact_form.php:1629 contact_form.php:3102 contact_form.php:3104
536
- msgid "Sent from (referer)"
537
- msgstr "Envoyer de (référence)"
538
-
539
- #: contact_form.php:1629
540
  msgid ""
541
  "Example: Sent from (referer): https://bestwebsoft.com/contacts/contact-us/"
542
  msgstr ""
543
  "Exemple&nbsp;: Envoyer de (referer)&nbsp;: http://bestwebsoft.com/contacts/"
544
  "contact-us/"
545
 
546
- #: contact_form.php:1630 contact_form.php:3108 contact_form.php:3110
547
- msgid "Using (user agent)"
548
- msgstr "Depuis (navigateur)"
549
-
550
- #: contact_form.php:1630
551
  msgid ""
552
  "Example: Using (user agent): Mozilla/5.0 (Windows NT 6.2; WOW64) "
553
  "AppleWebKit/537.36 (KHTML, like Gecko) Chrome/28.0.1500.95 Safari/537.36"
@@ -556,433 +701,409 @@ msgstr ""
556
  "WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/28.0.1500.95 "
557
  "Safari/537.36"
558
 
559
- #: contact_form.php:1635
560
  msgid "Language settings for the field names in the form"
561
  msgstr "Définition des langues pour les titres des champs"
562
 
563
- #: contact_form.php:1644
564
  msgid "Add a language"
565
  msgstr "Ajouter une langue"
566
 
567
- #: contact_form.php:1648
568
  msgid "Change the names of the contact form fields and error messages"
569
  msgstr ""
570
  "Modifier le texte pour les champs du formulaire de contact et les messages "
571
  "d&rsquo;erreur"
572
 
573
- #: contact_form.php:1653 contact_form.php:1751 contact_form.php:1883
574
- #: contact_form.php:2023 contact_form.php:2028 contact_form.php:2038
575
- #: contact_form.php:2043 contact_form.php:2048 contact_form.php:2053
576
- #: contact_form.php:2063 contact_form.php:2068 contact_form.php:2077
577
- #: contact_form.php:2091 contact_form.php:2096 contact_form.php:2101
578
  msgid "Default"
579
  msgstr "Défaut"
580
 
581
- #: contact_form.php:1666 contact_form.php:1705
 
582
  msgid "click to expand/hide the list"
583
  msgstr "Cliquer pour voir/cacher la liste"
584
 
585
- #: contact_form.php:1675 contact_form.php:1714
 
586
  msgid "Tips below the Attachment block"
587
  msgstr "Afficher les explications en-dessous du bloc des pièces jointes"
588
 
589
- #: contact_form.php:1679 contact_form.php:1718
 
590
  msgid "Error message for the Name field"
591
  msgstr "Message d&rsquo;erreur pour le champ Nom"
592
 
593
- #: contact_form.php:1680 contact_form.php:1719
 
594
  msgid "Error message for the Address field"
595
  msgstr "Message d&rsquo;erreur pour le champ Adresse"
596
 
597
- #: contact_form.php:1681 contact_form.php:1720
 
598
  msgid "Error message for the Email field"
599
  msgstr "Message d&rsquo;erreur pour le champ E-mail"
600
 
601
- #: contact_form.php:1682 contact_form.php:1721
 
602
  msgid "Error message for the Phone field"
603
  msgstr "Message d&rsquo;erreur pour le champ Téléphone"
604
 
605
- #: contact_form.php:1683 contact_form.php:1722
 
606
  msgid "Error message for the Subject field"
607
  msgstr "Message d&rsquo;erreur pour le champ Sujet"
608
 
609
- #: contact_form.php:1684 contact_form.php:1723
 
610
  msgid "Error message for the Message field"
611
  msgstr "Message d&rsquo;erreur pour le champ Message"
612
 
613
- #: contact_form.php:1685 contact_form.php:1724
 
614
  msgid "Error message about the file type for the Attachment field"
615
  msgstr "Message d&rsquo;erreur pour le champ Fichier joint (type du fichier)"
616
 
617
- #: contact_form.php:1686 contact_form.php:1725
 
618
  msgid ""
619
  "Error message while uploading a file for the Attachment field to the server"
620
  msgstr ""
621
  "Message d&rsquo;erreur pour le champ Fichier joint (problème d&rsquo;envoi "
622
  "vers le serveur)"
623
 
624
- #: contact_form.php:1687 contact_form.php:1726
 
625
  msgid "Error message while moving the file for the Attachment field"
626
  msgstr ""
627
  "Message d&rsquo;erreur pour le champ Fichier joint (déplacement du fichier)"
628
 
629
- #: contact_form.php:1688 contact_form.php:1727
 
630
  msgid "Error message when file size limit for the Attachment field is exceeded"
631
  msgstr ""
632
  "Message d&rsquo;erreur pour le champ Fichier joint (taille limite du fichier "
633
  "atteinte)"
634
 
635
- #: contact_form.php:1689 contact_form.php:1728
 
636
  msgid "Error message for the Captcha field"
637
  msgstr "Message d&rsquo;erreur pour le CAPTCHA"
638
 
639
- #: contact_form.php:1690 contact_form.php:1729
 
640
  msgid "Error message for the whole form"
641
  msgstr "Message d&rsquo;erreur demandant à compléter les champs manquants"
642
 
643
- #: contact_form.php:1693 contact_form.php:1695 contact_form.php:1732
644
- #: contact_form.php:1734 contact_form.php:1766 contact_form.php:1768
645
- #: contact_form.php:1780 contact_form.php:1782 contact_form.php:3530
646
- #: contact_form.php:3532
647
- msgid "Use shortcode"
648
- msgstr "Utiliser le code court"
649
-
650
- #: contact_form.php:1693 contact_form.php:1695 contact_form.php:1732
651
- #: contact_form.php:1734 contact_form.php:1766 contact_form.php:1768
652
- #: contact_form.php:1780 contact_form.php:1782 contact_form.php:3530
653
- #: contact_form.php:3532
654
- msgid "for this language"
655
- msgstr "pour cette langue"
656
-
657
- #: contact_form.php:1742
658
  msgid "Use the changed names of the contact form fields in the email"
659
  msgstr "Utiliser les noms des champs modifiés dans les courriels"
660
 
661
- #: contact_form.php:1748
662
  msgid "Action after email is sent"
663
  msgstr "Action après l&rsquo;envoie du courriel"
664
 
665
- #: contact_form.php:1750
666
  msgid "Display text"
667
  msgstr "Afficher le texte"
668
 
669
- #: contact_form.php:1764 contact_form.php:1778
 
670
  msgid "Text"
671
  msgstr "Texte"
672
 
673
- #: contact_form.php:1789
674
  msgid "Redirect to the page"
675
  msgstr "Rediriger vers la page"
676
 
677
- #: contact_form.php:1790
678
  msgid "Url"
679
  msgstr "Url"
680
 
681
- #: contact_form.php:1801
682
- msgid "Add field 'Reply-To' to the email header"
683
- msgstr "Ajouter le champ 'Répondre à/Reply-To' dans l&rsquo;entête du courriel"
684
-
685
- #: contact_form.php:1803
686
- msgid "Field 'Reply-To' will be initialized by user email"
687
- msgstr ""
688
- "Le champ 'Répondre à/Reply-To' sera rempli avec l&rsquo;adresse e-mail de "
689
- "l&rsquo;utilisateur"
690
-
691
- #: contact_form.php:1807
692
- msgid "Auto Response"
693
- msgstr "Réponse automatique"
694
-
695
- #: contact_form.php:1811
696
- #, php-format
697
- msgid ""
698
- "You can use %%NAME%% to display data from the email field and %%MESSAGE%% to "
699
- "display data from the Message field, as well as %%SITENAME%% to display blog "
700
- "name."
701
- msgstr ""
702
- "Vous pouvez utiliser %%NAME%% pour afficher des données du champ email et "
703
- "%%MESSAGE%% pour afficher des données du champ message, de même %%SITENAME%% "
704
- "pour afficher le nom du site."
705
-
706
- #: contact_form.php:1833 contact_form.php:2375
707
- msgid "Save Changes"
708
- msgstr "Enregistrer les modifications"
709
-
710
- #: contact_form.php:1846
711
  #, php-format
712
  msgid ""
713
- "Please enable JavaScript to change '%s', '%s' options and for fields sorting."
 
714
  msgstr ""
715
- "Merci d&rsquo;activer le JavaScript pour modifier les options '%s', '%s' "
716
- "ainsi que pour trier les champs."
717
 
718
- #: contact_form.php:1846 contact_form.php:1855
 
719
  msgid "Form layout"
720
  msgstr "Structure du formulaire"
721
 
722
- #: contact_form.php:1846 contact_form.php:1867
 
 
 
 
 
 
 
 
 
 
 
723
  msgid "Submit position"
724
  msgstr "Position du bouton envoyer"
725
 
726
- #: contact_form.php:1859
 
 
 
 
 
 
 
 
 
 
727
  msgid "One column"
728
  msgstr "Une colonne"
729
 
730
- #: contact_form.php:1862
731
  msgid "Two columns"
732
  msgstr "Deux colonnes"
733
 
734
- #: contact_form.php:1871 contact_form.php:1911 contact_form.php:1929
735
- #: contact_form.php:1944
 
 
736
  msgid "Left"
737
  msgstr "Gauche"
738
 
739
- #: contact_form.php:1874 contact_form.php:1917 contact_form.php:1932
740
- #: contact_form.php:1950
 
 
741
  msgid "Right"
742
  msgstr "Droite"
743
 
744
- #: contact_form.php:1879
745
  msgid "Width"
746
  msgstr "Largeur"
747
 
748
- #: contact_form.php:1887
749
  msgid "Custom"
750
  msgstr "Personnaliser"
751
 
752
- #: contact_form.php:1894
753
  msgid "px"
754
  msgstr "px"
755
 
756
- #: contact_form.php:1907
757
  msgid "Form align"
758
  msgstr "Alignement des champs"
759
 
760
- #: contact_form.php:1914 contact_form.php:1947
 
761
  msgid "Center"
762
  msgstr "Centre"
763
 
764
- #: contact_form.php:1922
765
- msgid "Labels position"
766
- msgstr "Position des textes"
767
-
768
- #: contact_form.php:1926
769
  msgid "Top"
770
  msgstr "Haut"
771
 
772
- #: contact_form.php:1935
773
  msgid "Bottom"
774
  msgstr "Bas"
775
 
776
- #: contact_form.php:1940
777
- msgid "Labels align"
778
- msgstr "Alignement des textes"
779
-
780
- #: contact_form.php:1955
781
  msgid "Errors output"
782
  msgstr "Affichage des erreurs"
783
 
784
- #: contact_form.php:1958
785
  msgid "Display error messages"
786
  msgstr "Afficher les messages d&rsquo;erreur"
787
 
788
- #: contact_form.php:1959
789
  msgid "Color of the input field errors."
790
  msgstr "Mettre en couleur les champs ayant des erreurs"
791
 
792
- #: contact_form.php:1960
793
  msgid "Display error messages & color of the input field errors"
794
  msgstr ""
795
  "Afficher les messages d&rsquo;erreur et mettre en couleur les champs ayant "
796
  "des erreurs"
797
 
798
- #: contact_form.php:1965
799
  msgid "Add placeholder to the input blocks"
800
  msgstr "Ajouter la localisation dans le bloc de saisie"
801
 
802
- #: contact_form.php:1971
803
- msgid "Add tooltips"
804
- msgstr "Ajouter les conseils"
805
-
806
- #: contact_form.php:1985
807
  msgid "Email address"
808
  msgstr "Adresse e-mail"
809
 
810
- #: contact_form.php:1990 contact_form.php:3163 contact_form.php:3204
811
- msgid "Phone Number"
812
- msgstr "Téléphone"
813
-
814
- #: contact_form.php:2016
815
- msgid "Style options"
816
- msgstr "Options de style"
817
-
818
- #: contact_form.php:2020
819
  msgid "Text color"
820
  msgstr "Couleur du texte"
821
 
822
- #: contact_form.php:2025
823
  msgid "Label text color"
824
  msgstr "Couleur des textes des intitulés"
825
 
826
- #: contact_form.php:2030
827
  msgid "Placeholder color"
828
  msgstr "Couleur pour la localisation"
829
 
830
- #: contact_form.php:2035
831
  msgid "Errors color"
832
  msgstr "Couleur pour les erreurs"
833
 
834
- #: contact_form.php:2040
835
  msgid "Error text color"
836
  msgstr "Couleur pour le texte des erreurs"
837
 
838
- #: contact_form.php:2045
839
  msgid "Background color of the input field errors"
840
  msgstr "Couleur de fond pour les erreurs de saisie dans les champs"
841
 
842
- #: contact_form.php:2050
843
  msgid "Border color of the input field errors"
844
  msgstr "Couleur de la bordure pour les erreurs de saisie dans les champs"
845
 
846
- #: contact_form.php:2055
847
  msgid "Placeholder color of the input field errors"
848
  msgstr ""
849
  "Couleur pour la localisation lors d&rsquo;une erreur de saisie du champ"
850
 
851
- #: contact_form.php:2060
852
  msgid "Input fields"
853
  msgstr "Champs de saisie"
854
 
855
- #: contact_form.php:2065
856
  msgid "Input fields background color"
857
  msgstr "Couleur de fond pour les champs de saisie"
858
 
859
- #: contact_form.php:2070
860
  msgid "Text fields color"
861
  msgstr "Couleur pour les textes des champs de saisie"
862
 
863
- #: contact_form.php:2074
864
  msgid "Border width in px, numbers only"
865
  msgstr "Largeur des bordures en px, nombre seulement"
866
 
867
- #: contact_form.php:2079 contact_form.php:2103
 
868
  msgid "Border color"
869
  msgstr "Couleur des bordures"
870
 
871
- #: contact_form.php:2084
872
  msgid "Submit button"
873
  msgstr "Bouton Envoyer"
874
 
875
- #: contact_form.php:2088
876
  msgid "Width in px, numbers only"
877
  msgstr "Largeur en px, nombre seulement"
878
 
879
- #: contact_form.php:2093
880
  msgid "Button color"
881
  msgstr "Couleur du bouton"
882
 
883
- #: contact_form.php:2098
884
  msgid "Button text color"
885
  msgstr "Couleur du texte du bouton"
886
 
887
- #: contact_form.php:2127
888
  msgid "Contact Form | Preview"
889
  msgstr "Formulaire de Contact | Prévisualisation"
890
 
891
- #: contact_form.php:2128
892
  msgid "Drag the necessary field to sort fields."
893
  msgstr "Déposer/déplacer les champs nécessaires dans la liste et les ordonner."
894
 
895
- #: contact_form.php:2364
896
- msgid ""
897
- "If you would like to add the Contact Form to your website, just copy and "
898
- "paste this shortcode to your post or page or widget"
899
  msgstr ""
900
- "Si vous souhaiter ajouter un formulaire de contact à votre site web, copiez "
901
- "juste ce code dans un article ou sur une page ou un widget"
902
-
903
- #: contact_form.php:2486
904
- msgid "Sorry, email message could not be delivered."
905
- msgstr "Désolé, votre courriel n&rsquo;a pas pu être envoyé."
906
 
907
- #: contact_form.php:3090 contact_form.php:3092
908
- msgid "Sent from (ip address)"
909
- msgstr "Envoyé de (adresse IP)"
910
 
911
- #: contact_form.php:3120
912
- msgid "Contact from"
913
- msgstr "Contact de"
914
 
915
- #: contact_form.php:3125 contact_form.php:3174
916
- msgid "Site"
917
- msgstr "Site"
 
 
 
918
 
919
- #: contact_form.php:3286
920
- msgid ""
921
- "If you can see this MIME, it means that the MIME type is not supported by "
922
- "your email client!"
923
- msgstr ""
924
- "Si vous voyez ce MIME c&rsquo;est que votre navigateur n&rsquo;accepte pas "
925
- "ce type de MIME&nbsp;!"
926
 
927
- #: contact_form.php:3358
928
- msgid "FAQ"
929
- msgstr "FAQ"
930
 
931
- #: contact_form.php:3359
932
- msgid "Support"
933
- msgstr "Support"
934
 
935
- #: contact_form.php:3408
936
- msgid "Are you sure that you want to delete this language data?"
937
- msgstr "Êtes vous sûr de vouloir supprimer cette langue&nbsp;?"
938
 
939
- #: contact_form.php:3431
940
- msgid "Add multiple forms"
941
- msgstr "Ajouter plusieurs formulaires"
942
 
943
- #: contact_form.php:3431
944
- msgid ""
945
- "Install Contact Form Multi plugin to create unlimited number of contact "
946
- "forms."
947
- msgstr ""
948
- "Installer l&rsquo;extension 'Contact Form Multi' pour créer un nombre infini "
949
- "de formulaires de contact."
950
 
951
- #: contact_form.php:3436
952
- msgid "Learn more"
953
- msgstr "En savoir plus"
954
 
955
- #: contact_form.php:3494
956
- msgid "Error"
957
- msgstr "Erreur"
958
 
959
- #: contact_form.php:3494 contact_form.php:3496
960
- msgid "Illegal language code"
961
- msgstr "Code de langue inconnu"
 
 
 
962
 
963
- #: contact_form.php:3681
964
- msgid "Close notice"
965
- msgstr "Fermer l&rsquo;avertissement"
 
 
 
 
 
 
 
 
966
 
967
- #: contact_form.php:3686
968
- msgid "allows to store your messages to the database."
969
- msgstr "permet d&rsquo;enregistrer les messages dans la base de données."
970
 
971
- #: contact_form.php:3687
972
- msgid "Manage messages that have been sent from your website."
973
- msgstr "Gérer les messages qui ont été envoyés depuis votre site."
 
974
 
975
- #: contact_form.php:3690
976
- msgid "Learn More"
977
- msgstr "En savoir plus"
978
 
979
- #: contact_form.php:3750
980
- msgid "Contact form"
981
- msgstr "Formulaire de contact"
 
 
 
 
 
982
 
983
- #: contact_form.php:3763 contact_form.php:3773
984
- msgid "Language"
985
- msgstr "Langue"
 
 
 
986
 
987
  #~ msgid "requires"
988
  #~ msgstr "obligatoire"
@@ -1542,9 +1663,6 @@ msgstr "Langue"
1542
  #~ msgid "Version"
1543
  #~ msgstr "Version"
1544
 
1545
- #~ msgid "Custom Code"
1546
- #~ msgstr "Code personnalisé"
1547
-
1548
  #~ msgid ""
1549
  #~ "You do not have sufficient permissions to edit plugins for this site."
1550
  #~ msgstr ""
@@ -1627,9 +1745,6 @@ msgstr "Langue"
1627
  #~ msgid "Import / Export"
1628
  #~ msgstr "Importer / Exporter"
1629
 
1630
- #~ msgid "License Key"
1631
- #~ msgstr "Clé de licence"
1632
-
1633
  #~ msgid "Congratulations! Pro license is activated successfully."
1634
  #~ msgstr ""
1635
  #~ "Félicitations&nbsp;! La version PRO de cette extension a été activée avec "
2
  msgstr ""
3
  "Project-Id-Version: contact-form-plugin 4.0.8\n"
4
  "Report-Msgid-Bugs-To: \n"
5
+ "POT-Creation-Date: 2019-02-25 16:27+0200\n"
6
+ "PO-Revision-Date: 2019-02-25 16:27+0200\n"
7
  "Last-Translator: Luc Capronnier <lcapronnier@yahoo.com>\n"
8
  "Language-Team: Luc Capronnier <lcapronnier@yahoo.com>\n"
9
  "Language: fr_FR\n"
18
  "X-Generator: Poedit 1.8.7.1\n"
19
  "X-Poedit-SearchPath-0: .\n"
20
 
21
+ #: contact_form.php:39 contact_form.php:47 contact_form.php:647
22
+ #: includes/class-cntctfrm-settings.php:425
23
  msgid "Contact Form Settings"
24
  msgstr "Options du formulaire de contact"
25
 
26
+ #: contact_form.php:48 contact_form.php:1619 contact_form.php:1633
27
+ #: includes/class-cntctfrm-settings.php:27
28
+ msgid "Settings"
29
+ msgstr "Paramètres"
30
+
31
+ #: contact_form.php:63 includes/class-cntctfrm-settings.php:483
32
+ #: includes/class-cntctfrm-settings.php:817
33
+ #: includes/class-cntctfrm-settings.php:998
34
+ #: includes/class-cntctfrm-settings.php:1513
35
+ msgid "Upgrade to Pro"
36
+ msgstr "Passer à la version PRO"
37
 
38
+ #: contact_form.php:350 contact_form.php:1410 contact_form.php:1456
39
+ #: includes/class-cntctfrm-settings.php:574
40
+ #: includes/class-cntctfrm-settings.php:664
41
+ #: includes/class-cntctfrm-settings.php:1064
42
+ #: includes/class-cntctfrm-settings.php:1103
43
+ #: includes/class-cntctfrm-settings.php:1344
44
  msgid "Name"
45
  msgstr "Nom"
46
 
47
+ #: contact_form.php:351 contact_form.php:1417 contact_form.php:1462
48
+ #: includes/class-cntctfrm-settings.php:711
49
+ #: includes/class-cntctfrm-settings.php:1065
50
+ #: includes/class-cntctfrm-settings.php:1104
51
+ #: includes/class-cntctfrm-settings.php:1349
52
  msgid "Address"
53
  msgstr "Adresse"
54
 
55
+ #: contact_form.php:352 includes/class-cntctfrm-settings.php:727
56
+ #: includes/class-cntctfrm-settings.php:1066
57
+ #: includes/class-cntctfrm-settings.php:1105
58
  msgid "Email Address"
59
  msgstr "Adresse e-mail"
60
 
61
+ #: contact_form.php:353 includes/class-cntctfrm-settings.php:747
62
+ #: includes/class-cntctfrm-settings.php:1067
63
+ #: includes/class-cntctfrm-settings.php:1106
64
  msgid "Phone number"
65
  msgstr "Téléphone"
66
 
67
+ #: contact_form.php:354 contact_form.php:1428 contact_form.php:1471
68
+ #: includes/class-cntctfrm-settings.php:763
69
+ #: includes/class-cntctfrm-settings.php:1068
70
+ #: includes/class-cntctfrm-settings.php:1107
71
+ #: includes/class-cntctfrm-settings.php:1364
72
  msgid "Subject"
73
  msgstr "Sujet"
74
 
75
+ #: contact_form.php:355 contact_form.php:1433 contact_form.php:1475
76
+ #: includes/class-cntctfrm-settings.php:787
77
+ #: includes/class-cntctfrm-settings.php:1069
78
+ #: includes/class-cntctfrm-settings.php:1108
79
+ #: includes/class-cntctfrm-settings.php:1368
80
  msgid "Message"
81
  msgstr "Message"
82
 
83
+ #: contact_form.php:356 includes/class-cntctfrm-settings.php:1070
84
+ #: includes/class-cntctfrm-settings.php:1109
85
+ #: includes/class-cntctfrm-settings.php:1373
86
  msgid "Attachment"
87
  msgstr "Pièce jointe"
88
 
89
+ #: contact_form.php:357
90
  msgid ""
91
  "Supported file types: HTML, TXT, CSS, GIF, PNG, JPEG, JPG, TIFF, BMP, AI, "
92
  "EPS, PS, CSV, RTF, PDF, DOC, DOCX, XLS, XLSX, ZIP, RAR, WAV, MP3, PPT."
95
  "TIFF, BMP, AI, EPS, PS, CSV, RTF, PDF, DOC, DOCX, XLS, XLSX, ZIP, RAR, WAV, "
96
  "MP3, PPT."
97
 
98
+ #: contact_form.php:358 includes/class-cntctfrm-settings.php:1072
99
+ #: includes/class-cntctfrm-settings.php:1111
100
  msgid "Send me a copy"
101
  msgstr "M&rsquo;envoyer une copie"
102
 
103
+ #: contact_form.php:359 includes/class-cntctfrm-settings.php:1073
104
+ #: includes/class-cntctfrm-settings.php:1112
105
  msgid "I consent to having this site collect my personal data."
106
  msgstr ""
107
 
108
+ #: contact_form.php:360 includes/class-cntctfrm-settings.php:1074
109
+ #: includes/class-cntctfrm-settings.php:1113
110
  msgid "Submit"
111
  msgstr "Envoyer"
112
 
113
+ #: contact_form.php:361
114
  msgid "Your name is required."
115
  msgstr "Un nom est obligatoire."
116
 
117
+ #: contact_form.php:362
118
  msgid "Address is required."
119
  msgstr "Une adresse est obligatoire."
120
 
121
+ #: contact_form.php:363
122
  msgid "A valid email address is required."
123
  msgstr "Une adresse e-mail valide est obligatoire."
124
 
125
+ #: contact_form.php:364
126
  msgid "Phone number is required."
127
  msgstr "Le numéro de téléphone est obligatoire."
128
 
129
+ #: contact_form.php:365
130
  msgid "Subject is required."
131
  msgstr "Le sujet est obligatoire."
132
 
133
+ #: contact_form.php:366
134
  msgid "Message text is required."
135
  msgstr "Un message est obligatoire."
136
 
137
+ #: contact_form.php:367
138
  msgid "File format is not valid."
139
  msgstr "Le type de pièce jointe n&rsquo;est pas valide."
140
 
141
+ #: contact_form.php:368
142
  msgid "File upload error."
143
  msgstr "Erreur de chargement du fichier."
144
 
145
+ #: contact_form.php:369
146
  msgid "The file could not be uploaded."
147
  msgstr "Le fichier n&rsquo;a pas pu être envoyé."
148
 
149
+ #: contact_form.php:370
150
  msgid "This file is too large."
151
  msgstr "Le fichier est trop volumineux."
152
 
153
+ #: contact_form.php:371
154
  msgid "Please fill out the CAPTCHA."
155
  msgstr "Merci de compléter le CAPTCHA."
156
 
157
+ #: contact_form.php:372
158
  msgid "Please make corrections below and try again."
159
  msgstr "Merci de faire les corrections suivantes et de réessayer."
160
 
161
+ #: contact_form.php:374
162
  msgid "Thank you for contacting us."
163
  msgstr "Merci de nous avoir contacté."
164
 
165
+ #: contact_form.php:651
166
+ msgid "NEW_FORM"
167
+ msgstr "Nouveau formulaire"
168
 
169
+ #: contact_form.php:652
170
  msgid ""
171
+ "If you want to create multiple contact forms, please install the Contact "
172
+ "Form Multi plugin."
173
  msgstr ""
174
+ "Si vous voulez créer plusieurs formulaire de contact, merci d&rsquo;"
175
+ "installer l&rsquo;extension 'Contact Form Multi'"
 
176
 
177
+ #: contact_form.php:657
178
  msgid ""
179
+ "Contact Form plugin doesn't support your current version of Contact Form "
180
+ "Multi plugin. Please update Contact Form Multi plugin to version 1.2.6 or "
181
+ "higher."
182
  msgstr ""
 
 
183
 
184
+ #: contact_form.php:759
185
+ msgid "Sorry, email message could not be delivered."
186
+ msgstr "Désolé, votre courriel n&rsquo;a pas pu être envoyé."
187
+
188
+ #: contact_form.php:1366 contact_form.php:1368
189
+ msgid "Sent from (ip address)"
190
+ msgstr "Envoyé de (adresse IP)"
191
+
192
+ #: contact_form.php:1372 contact_form.php:1374
193
+ #: includes/class-cntctfrm-settings.php:1024
194
+ msgid "Date/Time"
195
+ msgstr "Date/Heure"
196
 
197
+ #: contact_form.php:1378 contact_form.php:1380
198
+ #: includes/class-cntctfrm-settings.php:1025
199
+ msgid "Sent from (referer)"
200
+ msgstr "Envoyer de (référence)"
201
+
202
+ #: contact_form.php:1384 contact_form.php:1386
203
+ #: includes/class-cntctfrm-settings.php:1026
204
+ msgid "Using (user agent)"
205
+ msgstr "Depuis (navigateur)"
206
+
207
+ #: contact_form.php:1396
208
+ msgid "Contact from"
209
+ msgstr "Contact de"
210
+
211
+ #: contact_form.php:1401 contact_form.php:1450
212
+ msgid "Site"
213
+ msgstr "Site"
214
+
215
+ #: contact_form.php:1423 contact_form.php:1467
216
+ #: includes/class-cntctfrm-settings.php:598
217
+ msgid "Email"
218
+ msgstr "E-mail"
219
+
220
+ #: contact_form.php:1439 contact_form.php:1480
221
+ #: includes/class-cntctfrm-settings.php:1359
222
+ msgid "Phone Number"
223
+ msgstr "Téléphone"
224
+
225
+ #: contact_form.php:1562
226
  msgid ""
227
+ "If you can see this MIME, it means that the MIME type is not supported by "
228
+ "your email client!"
229
  msgstr ""
230
+ "Si vous voyez ce MIME c&rsquo;est que votre navigateur n&rsquo;accepte pas "
231
+ "ce type de MIME&nbsp;!"
232
 
233
+ #: contact_form.php:1634
234
+ msgid "FAQ"
235
+ msgstr "FAQ"
236
 
237
+ #: contact_form.php:1635
238
+ msgid "Support"
239
+ msgstr "Support"
240
 
241
+ #: contact_form.php:1684
242
+ msgid "Are you sure that you want to delete this language data?"
243
+ msgstr "Êtes vous sûr de vouloir supprimer cette langue&nbsp;?"
244
 
245
+ #: contact_form.php:1706
246
+ msgid "Add multiple forms"
247
+ msgstr "Ajouter plusieurs formulaires"
248
 
249
+ #: contact_form.php:1706
250
+ msgid ""
251
+ "Install Contact Form Multi plugin to create unlimited number of contact "
252
+ "forms."
253
+ msgstr ""
254
+ "Installer l&rsquo;extension 'Contact Form Multi' pour créer un nombre infini "
255
+ "de formulaires de contact."
256
+
257
+ #: contact_form.php:1711
258
+ msgid "Learn more"
259
+ msgstr "En savoir plus"
260
+
261
+ #: contact_form.php:1715 includes/class-cntctfrm-settings.php:469
262
+ #: includes/class-cntctfrm-settings.php:987
263
+ #: includes/class-cntctfrm-settings.php:1272
264
+ msgid "Close"
265
+ msgstr "Fermer"
266
+
267
+ #: contact_form.php:1769
268
+ msgid "Error"
269
+ msgstr "Erreur"
270
+
271
+ #: contact_form.php:1769 contact_form.php:1771
272
+ msgid "Illegal language code"
273
+ msgstr "Code de langue inconnu"
274
+
275
+ #: contact_form.php:1805 contact_form.php:1807
276
+ #: includes/class-cntctfrm-settings.php:1089
277
+ #: includes/class-cntctfrm-settings.php:1091
278
+ #: includes/class-cntctfrm-settings.php:1128
279
+ #: includes/class-cntctfrm-settings.php:1130
280
+ #: includes/class-cntctfrm-settings.php:1162
281
+ #: includes/class-cntctfrm-settings.php:1164
282
+ #: includes/class-cntctfrm-settings.php:1176
283
+ #: includes/class-cntctfrm-settings.php:1178
284
+ msgid "Use shortcode"
285
+ msgstr "Utiliser le code court"
286
+
287
+ #: contact_form.php:1805 contact_form.php:1807
288
+ #: includes/class-cntctfrm-settings.php:1089
289
+ #: includes/class-cntctfrm-settings.php:1091
290
+ #: includes/class-cntctfrm-settings.php:1128
291
+ #: includes/class-cntctfrm-settings.php:1130
292
+ #: includes/class-cntctfrm-settings.php:1162
293
+ #: includes/class-cntctfrm-settings.php:1164
294
+ #: includes/class-cntctfrm-settings.php:1176
295
+ #: includes/class-cntctfrm-settings.php:1178
296
+ msgid "for this language"
297
+ msgstr "pour cette langue"
298
+
299
+ #: contact_form.php:1955
300
+ msgid "Close notice"
301
+ msgstr "Fermer l&rsquo;avertissement"
302
+
303
+ #: contact_form.php:1960
304
+ msgid "allows to store your messages to the database."
305
+ msgstr "permet d&rsquo;enregistrer les messages dans la base de données."
306
+
307
+ #: contact_form.php:1961
308
+ msgid "Manage messages that have been sent from your website."
309
+ msgstr "Gérer les messages qui ont été envoyés depuis votre site."
310
+
311
+ #: contact_form.php:1964
312
+ msgid "Learn More"
313
+ msgstr "En savoir plus"
314
+
315
+ #: contact_form.php:2024
316
+ msgid "Contact form"
317
+ msgstr "Formulaire de contact"
318
 
319
+ #: contact_form.php:2037 contact_form.php:2047
320
+ msgid "Language"
321
+ msgstr "Langue"
322
+
323
+ #: includes/class-cntctfrm-settings.php:28
324
+ #: includes/class-cntctfrm-settings.php:546
325
+ msgid "Additional Settings"
326
+ msgstr ""
327
 
328
+ #: includes/class-cntctfrm-settings.php:29
329
+ #: includes/class-cntctfrm-settings.php:1198
330
  msgid "Appearance"
331
  msgstr "Aspect"
332
 
333
+ #: includes/class-cntctfrm-settings.php:30
334
+ msgid "Misc"
335
+ msgstr ""
336
 
337
+ #: includes/class-cntctfrm-settings.php:31
338
+ msgid "License Key"
339
+ msgstr "Clé de licence"
340
 
341
+ #: includes/class-cntctfrm-settings.php:32
342
+ msgid "Custom Code"
343
+ msgstr "Code personnalisé"
344
 
345
+ #: includes/class-cntctfrm-settings.php:99
346
+ msgid "Please enable JavaScript in your browser."
347
+ msgstr ""
348
 
349
+ #: includes/class-cntctfrm-settings.php:101
350
+ #, php-format
351
  msgid ""
352
+ "Contact Form plugin requires PHP %s or higher. Please contact your hosting "
353
+ "provider to upgrade PHP version."
354
  msgstr ""
 
 
355
 
356
+ #: includes/class-cntctfrm-settings.php:347
 
357
  msgid ""
358
+ "Email 'FROM' field option was changed, which may cause email messages being "
359
+ "moved to the spam folder or email delivery failures."
360
  msgstr ""
361
+ "L&rsquo;option pour le champ 'From' des courriels a été modifiée, cela peut "
362
+ "entraîner un classement des messages dans les dossiers spam ou bien une "
363
+ "erreur d&rsquo;acheminement peut survenir."
364
 
365
+ #: includes/class-cntctfrm-settings.php:357
 
366
  msgid ""
367
+ "If the 'Redirect to page' option is selected then the URL field should be in "
368
+ "the following format"
 
 
369
  msgstr ""
370
+ "Si l&rsquo;option 'Rediriger vers la page' est positionnée, alors le champ "
371
+ "Url doit être rempli avec le format suivant"
 
 
372
 
373
+ #: includes/class-cntctfrm-settings.php:364
374
+ msgid "Such user does not exist."
375
+ msgstr "Cet utilisateur est inconnu."
376
+
377
+ #: includes/class-cntctfrm-settings.php:374
378
+ msgid ""
379
+ "Please enter a valid email address in the 'Use this email address' field."
380
+ msgstr ""
381
+ "Merci de saisir une adresse e-mail valide pour le champ 'Utiliser cette "
382
+ "adresse e-mail'."
383
+
384
+ #: includes/class-cntctfrm-settings.php:382
385
+ msgid "Please enter a valid email address in the 'FROM' field."
386
+ msgstr "Merci de saisir une adresse e-mail valide pour le champ 'FROM'."
387
+
388
+ #: includes/class-cntctfrm-settings.php:402
389
+ msgid "Settings saved."
390
+ msgstr "Options enregistrées."
391
+
392
+ #: includes/class-cntctfrm-settings.php:404
393
+ msgid "Settings are not saved."
394
+ msgstr "Paramètres non enregistrées."
395
+
396
+ #: includes/class-cntctfrm-settings.php:429
397
  msgid ""
398
  "If you leave the fields empty, the messages will be sent to the email "
399
  "address specified during registration."
401
  "Si les champs ci-dessous ne sont pas renseignés le message sera envoyé à "
402
  "l&rsquo;adresse spécifiée lors de l&rsquo;enregistrement."
403
 
404
+ #: includes/class-cntctfrm-settings.php:432
405
  msgid "The user's email address"
406
  msgstr "Utiliser l&rsquo;e-mail du compte WordPress"
407
 
408
+ #: includes/class-cntctfrm-settings.php:437
409
  msgid "Select a username"
410
  msgstr "Choisir un nom d&rsquo;utilisateur"
411
 
412
+ #: includes/class-cntctfrm-settings.php:450
413
  msgid ""
414
  "Select a username of the person who should get the messages from the contact "
415
  "form."
417
  "Choisir le nom d&rsquo;utilisateur qui recevra les messages envoyés depuis "
418
  "le formulaire de contact."
419
 
420
+ #: includes/class-cntctfrm-settings.php:455
421
  msgid "Use this email address"
422
  msgstr "Utiliser cette adresse e-mail"
423
 
424
+ #: includes/class-cntctfrm-settings.php:460
425
  msgid "Enter the email address for receiving messages"
426
  msgstr ""
427
  "Choisir l&rsquo;adresse e-mail qui sera utilisée pour recevoir les messages"
428
 
429
+ #: includes/class-cntctfrm-settings.php:473
 
 
 
 
 
430
  msgid "Add department selectbox to the contact form"
431
  msgstr ""
432
  "Ajouter la liste déroulante pour le département dans le formulaire de contact"
433
 
434
+ #: includes/class-cntctfrm-settings.php:492
 
 
 
 
 
 
 
 
 
 
 
435
  msgid "Save emails to the database"
436
  msgstr "Enregistrer les e-mails dans la base de données"
437
 
438
+ #: includes/class-cntctfrm-settings.php:504
439
+ #: includes/class-cntctfrm-settings.php:518
440
+ #: includes/class-cntctfrm-settings.php:525
441
  msgid "Using"
442
  msgstr "Utilisant"
443
 
444
+ #: includes/class-cntctfrm-settings.php:510
445
+ #: includes/class-cntctfrm-settings.php:889
446
+ #: includes/class-cntctfrm-settings.php:930
447
+ #: includes/class-cntctfrm-settings.php:965
448
  msgid "Please activate the appropriate option on"
449
  msgstr "Merci de configure les options appropriées sur"
450
 
451
+ #: includes/class-cntctfrm-settings.php:513
452
+ #: includes/class-cntctfrm-settings.php:892
453
+ #: includes/class-cntctfrm-settings.php:933
454
+ #: includes/class-cntctfrm-settings.php:968
455
  msgid "settings page"
456
  msgstr "Page des paramètres"
457
 
458
+ #: includes/class-cntctfrm-settings.php:519
459
+ #: includes/class-cntctfrm-settings.php:899
460
+ #: includes/class-cntctfrm-settings.php:941
461
+ #: includes/class-cntctfrm-settings.php:975
462
  msgid "Activate"
463
  msgstr "Activé"
464
 
465
+ #: includes/class-cntctfrm-settings.php:526
466
+ #: includes/class-cntctfrm-settings.php:908
467
+ #: includes/class-cntctfrm-settings.php:947
468
+ #: includes/class-cntctfrm-settings.php:980
469
  msgid "Download"
470
  msgstr "Téléchargement"
471
 
472
+ #: includes/class-cntctfrm-settings.php:551
473
  msgid "Sending method"
474
  msgstr "Méthode pour l&rsquo;envoie"
475
 
476
+ #: includes/class-cntctfrm-settings.php:556
477
  msgid "Wp-mail"
478
  msgstr "Wp-mail"
479
 
480
+ #: includes/class-cntctfrm-settings.php:557
481
  msgid "You can use the Wordpress wp_mail function for mailing"
482
  msgstr ""
483
  "Pour envoyer le courriel, vous pouvez utiliser la fonction wp_mail de "
484
  "WordPress."
485
 
486
+ #: includes/class-cntctfrm-settings.php:562
487
  msgid "Mail"
488
  msgstr "E-mail"
489
 
490
+ #: includes/class-cntctfrm-settings.php:563
491
  msgid "You can use the PHP mail function for mailing"
492
  msgstr ""
493
  "Pour envoyer le courriel, vous pouvez utiliser la fonction PHP mail de "
494
  "WordPress."
495
 
496
+ #: includes/class-cntctfrm-settings.php:569
497
  msgid "'FROM' field"
498
  msgstr "Champ 'From'"
499
 
500
+ #: includes/class-cntctfrm-settings.php:585
501
  msgid "User name"
502
  msgstr "Nom de l&rsquo;utilisateur"
503
 
504
+ #: includes/class-cntctfrm-settings.php:587
505
  msgid ""
506
  "The name of the user who fills the form will be used in the field 'From'."
507
  msgstr ""
508
  "Dans le champ 'FROM' du courriel, il sera utilisé l&rsquo;adresse e-mail de "
509
  "l&rsquo;utilisateur qui rempli le formulaire."
510
 
511
+ #: includes/class-cntctfrm-settings.php:609
 
 
 
 
512
  msgid "User email"
513
  msgstr "E-mail de l&rsquo;utilisateur"
514
 
515
+ #: includes/class-cntctfrm-settings.php:611
516
  msgid ""
517
  "The email address of the user who fills the form will be used in the field "
518
  "'From'."
520
  "Dans le champ 'FROM' du courriel, il sera utilisé l&rsquo;adresse e-mail de "
521
  "l&rsquo;utilisateur qui rempli le formulaire."
522
 
523
+ #: includes/class-cntctfrm-settings.php:620
524
  msgid ""
525
  "If this option is changed, email messages may be moved to the spam folder or "
526
  "email delivery failures may occur."
528
  "Si cette option est modifiée, les courriels pourront se retrouver classer "
529
  "dans le dossier spam ou bien une erreur d&rsquo;acheminement peut survenir."
530
 
531
+ #: includes/class-cntctfrm-settings.php:629
532
  msgid "Required symbol"
533
  msgstr "Symbole obligatoire"
534
 
535
+ #: includes/class-cntctfrm-settings.php:639
536
  msgid "Fields"
537
  msgstr "Champs"
538
 
539
+ #: includes/class-cntctfrm-settings.php:640
540
+ #: includes/class-cntctfrm-settings.php:667
541
+ #: includes/class-cntctfrm-settings.php:694
542
+ #: includes/class-cntctfrm-settings.php:714
543
+ #: includes/class-cntctfrm-settings.php:750
544
+ #: includes/class-cntctfrm-settings.php:832
545
  msgid "Used"
546
  msgstr "Utilisé"
547
 
548
+ #: includes/class-cntctfrm-settings.php:641
549
+ #: includes/class-cntctfrm-settings.php:656
550
+ #: includes/class-cntctfrm-settings.php:671
551
+ #: includes/class-cntctfrm-settings.php:698
552
+ #: includes/class-cntctfrm-settings.php:718
553
+ #: includes/class-cntctfrm-settings.php:754
554
+ #: includes/class-cntctfrm-settings.php:767
555
+ #: includes/class-cntctfrm-settings.php:791
556
  msgid "Required"
557
  msgstr "Obligatoire"
558
 
559
+ #: includes/class-cntctfrm-settings.php:643
560
+ #: includes/class-cntctfrm-settings.php:676
561
+ #: includes/class-cntctfrm-settings.php:733
562
+ #: includes/class-cntctfrm-settings.php:772
563
+ #: includes/class-cntctfrm-settings.php:796
564
  msgid "Visible"
565
  msgstr "Visible"
566
 
567
+ #: includes/class-cntctfrm-settings.php:644
568
+ #: includes/class-cntctfrm-settings.php:680
569
+ #: includes/class-cntctfrm-settings.php:737
570
+ #: includes/class-cntctfrm-settings.php:776
571
+ #: includes/class-cntctfrm-settings.php:800
572
  msgid "Disabled for editing"
573
  msgstr "Non actif pour l&rsquo;édition"
574
 
575
+ #: includes/class-cntctfrm-settings.php:645
576
+ #: includes/class-cntctfrm-settings.php:704
577
+ #: includes/class-cntctfrm-settings.php:780
578
+ #: includes/class-cntctfrm-settings.php:804
579
  msgid "Field's default value"
580
  msgstr "Valeur par défaut du champ"
581
 
582
+ #: includes/class-cntctfrm-settings.php:652
583
  msgid "Department selectbox"
584
  msgstr "Liste déroulante des localisations"
585
 
586
+ #: includes/class-cntctfrm-settings.php:684
587
  msgid "Use User's name as a default value if the user is logged in."
588
  msgstr ""
589
  "Utiliser le nom de l&rsquo;utilisateur comme valeur par défaut si un "
590
  "utilisateur est connecté."
591
 
592
+ #: includes/class-cntctfrm-settings.php:685
593
+ #: includes/class-cntctfrm-settings.php:742
594
  msgid ""
595
  "'Visible' and 'Disabled for editing' options will be applied only to logged-"
596
  "in users."
598
  "'Visible' et 'Inactif', ces options ne seront appliqués qu&rsquo;aux "
599
  "utilisateurs connectés."
600
 
601
+ #: includes/class-cntctfrm-settings.php:691
602
  msgid "Location selectbox"
603
  msgstr "Liste déroulante des localisations"
604
 
605
+ #: includes/class-cntctfrm-settings.php:741
606
  msgid "Use User's email as a default value if the user is logged in."
607
  msgstr ""
608
  "Utiliser l&rsquo;adresse e-mail de l&rsquo;utilisateur comme valeur par "
609
  "défaut si un utilisateur est connecté."
610
 
611
+ #: includes/class-cntctfrm-settings.php:825
612
  msgid "Attachment block"
613
  msgstr "Bloc pièce jointe"
614
 
615
+ #: includes/class-cntctfrm-settings.php:827
616
  msgid "Users can attach the following file formats"
617
  msgstr "Les utilisateurs peuvent joindre des documents des types suivants"
618
 
619
+ #: includes/class-cntctfrm-settings.php:845
620
  msgid "Add to the form"
621
  msgstr "Ajouter au formulaire"
622
 
623
+ #: includes/class-cntctfrm-settings.php:850
624
  msgid "Tips below the Attachment"
625
  msgstr "Afficher les explications en-dessous du bloc des pièces jointes"
626
 
627
+ #: includes/class-cntctfrm-settings.php:857
628
  msgid "'Send me a copy' block"
629
  msgstr "Afficher le bloc \"M&rsquo;envoyer une copie\""
630
 
631
+ #: includes/class-cntctfrm-settings.php:864
632
  msgid "GDPR Compliance"
633
  msgstr ""
634
 
635
+ #: includes/class-cntctfrm-settings.php:869
636
  msgid "Link to Privacy Policy Page"
637
  msgstr ""
638
 
639
+ #: includes/class-cntctfrm-settings.php:873
640
  msgid "Text for Privacy Policy Link"
641
  msgstr ""
642
 
643
+ #: includes/class-cntctfrm-settings.php:901
644
  msgid "Activate for network"
645
  msgstr "Activer pour le réseau"
646
 
647
+ #: includes/class-cntctfrm-settings.php:991
648
  msgid "Agreement checkbox"
649
  msgstr "Case à cocher pour valider le formulaire"
650
 
651
+ #: includes/class-cntctfrm-settings.php:991
652
  msgid "Required checkbox for submitting the form"
653
  msgstr "Boite à cocher obligatoire pour la validation du formulaire."
654
 
655
+ #: includes/class-cntctfrm-settings.php:992
656
  msgid "Optional checkbox"
657
  msgstr "Boite à cocher optionnelle"
658
 
659
+ #: includes/class-cntctfrm-settings.php:992
660
  msgid "Optional checkbox, the results of which will be displayed in email"
661
  msgstr "Boite à cocher optionnelle, le résultat sera affiché dans le courriel"
662
 
663
+ #: includes/class-cntctfrm-settings.php:1007
664
  msgid "Delete an attachment file from the server after the email is sent"
665
  msgstr ""
666
  "Supprimer le fichier joint sur le serveur après l&rsquo;envoie du courriel"
667
 
668
+ #: includes/class-cntctfrm-settings.php:1013
669
  msgid "Email in HTML format sending"
670
  msgstr "Courriel au format HTML"
671
 
672
+ #: includes/class-cntctfrm-settings.php:1017
673
  msgid "Display additional info in the email"
674
  msgstr "Afficher les informations complémentaires dans le courriel"
675
 
676
+ #: includes/class-cntctfrm-settings.php:1023
677
  msgid "Sent from (IP address)"
678
  msgstr "Envoyé de (adresse IP)"
679
 
680
+ #: includes/class-cntctfrm-settings.php:1023
681
  msgid "Example: Sent from (IP address): 127.0.0.1"
682
  msgstr "Exemple&nbsp;: Envoyé de (adresse IP)&nbsp;: 127.0.0.1"
683
 
684
+ #: includes/class-cntctfrm-settings.php:1024
 
 
 
 
685
  msgid "Example: Date/Time: August 19, 2013 8:50 pm"
686
  msgstr "Exemple&nbsp;: Date/Heure&nbsp;: 19 août 2013 8:50"
687
 
688
+ #: includes/class-cntctfrm-settings.php:1025
 
 
 
 
689
  msgid ""
690
  "Example: Sent from (referer): https://bestwebsoft.com/contacts/contact-us/"
691
  msgstr ""
692
  "Exemple&nbsp;: Envoyer de (referer)&nbsp;: http://bestwebsoft.com/contacts/"
693
  "contact-us/"
694
 
695
+ #: includes/class-cntctfrm-settings.php:1026
 
 
 
 
696
  msgid ""
697
  "Example: Using (user agent): Mozilla/5.0 (Windows NT 6.2; WOW64) "
698
  "AppleWebKit/537.36 (KHTML, like Gecko) Chrome/28.0.1500.95 Safari/537.36"
701
  "WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/28.0.1500.95 "
702
  "Safari/537.36"
703
 
704
+ #: includes/class-cntctfrm-settings.php:1031
705
  msgid "Language settings for the field names in the form"
706
  msgstr "Définition des langues pour les titres des champs"
707
 
708
+ #: includes/class-cntctfrm-settings.php:1040
709
  msgid "Add a language"
710
  msgstr "Ajouter une langue"
711
 
712
+ #: includes/class-cntctfrm-settings.php:1044
713
  msgid "Change the names of the contact form fields and error messages"
714
  msgstr ""
715
  "Modifier le texte pour les champs du formulaire de contact et les messages "
716
  "d&rsquo;erreur"
717
 
718
+ #: includes/class-cntctfrm-settings.php:1049
719
+ #: includes/class-cntctfrm-settings.php:1147
720
+ #: includes/class-cntctfrm-settings.php:1252
 
 
721
  msgid "Default"
722
  msgstr "Défaut"
723
 
724
+ #: includes/class-cntctfrm-settings.php:1062
725
+ #: includes/class-cntctfrm-settings.php:1101
726
  msgid "click to expand/hide the list"
727
  msgstr "Cliquer pour voir/cacher la liste"
728
 
729
+ #: includes/class-cntctfrm-settings.php:1071
730
+ #: includes/class-cntctfrm-settings.php:1110
731
  msgid "Tips below the Attachment block"
732
  msgstr "Afficher les explications en-dessous du bloc des pièces jointes"
733
 
734
+ #: includes/class-cntctfrm-settings.php:1075
735
+ #: includes/class-cntctfrm-settings.php:1114
736
  msgid "Error message for the Name field"
737
  msgstr "Message d&rsquo;erreur pour le champ Nom"
738
 
739
+ #: includes/class-cntctfrm-settings.php:1076
740
+ #: includes/class-cntctfrm-settings.php:1115
741
  msgid "Error message for the Address field"
742
  msgstr "Message d&rsquo;erreur pour le champ Adresse"
743
 
744
+ #: includes/class-cntctfrm-settings.php:1077
745
+ #: includes/class-cntctfrm-settings.php:1116
746
  msgid "Error message for the Email field"
747
  msgstr "Message d&rsquo;erreur pour le champ E-mail"
748
 
749
+ #: includes/class-cntctfrm-settings.php:1078
750
+ #: includes/class-cntctfrm-settings.php:1117
751
  msgid "Error message for the Phone field"
752
  msgstr "Message d&rsquo;erreur pour le champ Téléphone"
753
 
754
+ #: includes/class-cntctfrm-settings.php:1079
755
+ #: includes/class-cntctfrm-settings.php:1118
756
  msgid "Error message for the Subject field"
757
  msgstr "Message d&rsquo;erreur pour le champ Sujet"
758
 
759
+ #: includes/class-cntctfrm-settings.php:1080
760
+ #: includes/class-cntctfrm-settings.php:1119
761
  msgid "Error message for the Message field"
762
  msgstr "Message d&rsquo;erreur pour le champ Message"
763
 
764
+ #: includes/class-cntctfrm-settings.php:1081
765
+ #: includes/class-cntctfrm-settings.php:1120
766
  msgid "Error message about the file type for the Attachment field"
767
  msgstr "Message d&rsquo;erreur pour le champ Fichier joint (type du fichier)"
768
 
769
+ #: includes/class-cntctfrm-settings.php:1082
770
+ #: includes/class-cntctfrm-settings.php:1121
771
  msgid ""
772
  "Error message while uploading a file for the Attachment field to the server"
773
  msgstr ""
774
  "Message d&rsquo;erreur pour le champ Fichier joint (problème d&rsquo;envoi "
775
  "vers le serveur)"
776
 
777
+ #: includes/class-cntctfrm-settings.php:1083
778
+ #: includes/class-cntctfrm-settings.php:1122
779
  msgid "Error message while moving the file for the Attachment field"
780
  msgstr ""
781
  "Message d&rsquo;erreur pour le champ Fichier joint (déplacement du fichier)"
782
 
783
+ #: includes/class-cntctfrm-settings.php:1084
784
+ #: includes/class-cntctfrm-settings.php:1123
785
  msgid "Error message when file size limit for the Attachment field is exceeded"
786
  msgstr ""
787
  "Message d&rsquo;erreur pour le champ Fichier joint (taille limite du fichier "
788
  "atteinte)"
789
 
790
+ #: includes/class-cntctfrm-settings.php:1085
791
+ #: includes/class-cntctfrm-settings.php:1124
792
  msgid "Error message for the Captcha field"
793
  msgstr "Message d&rsquo;erreur pour le CAPTCHA"
794
 
795
+ #: includes/class-cntctfrm-settings.php:1086
796
+ #: includes/class-cntctfrm-settings.php:1125
797
  msgid "Error message for the whole form"
798
  msgstr "Message d&rsquo;erreur demandant à compléter les champs manquants"
799
 
800
+ #: includes/class-cntctfrm-settings.php:1138
 
 
 
 
 
 
 
 
 
 
 
 
 
 
801
  msgid "Use the changed names of the contact form fields in the email"
802
  msgstr "Utiliser les noms des champs modifiés dans les courriels"
803
 
804
+ #: includes/class-cntctfrm-settings.php:1144
805
  msgid "Action after email is sent"
806
  msgstr "Action après l&rsquo;envoie du courriel"
807
 
808
+ #: includes/class-cntctfrm-settings.php:1146
809
  msgid "Display text"
810
  msgstr "Afficher le texte"
811
 
812
+ #: includes/class-cntctfrm-settings.php:1160
813
+ #: includes/class-cntctfrm-settings.php:1174
814
  msgid "Text"
815
  msgstr "Texte"
816
 
817
+ #: includes/class-cntctfrm-settings.php:1185
818
  msgid "Redirect to the page"
819
  msgstr "Rediriger vers la page"
820
 
821
+ #: includes/class-cntctfrm-settings.php:1186
822
  msgid "Url"
823
  msgstr "Url"
824
 
825
+ #: includes/class-cntctfrm-settings.php:1206
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
826
  #, php-format
827
  msgid ""
828
+ "Please enable JavaScript to change '%s', '%s', '%s', '%s' options and for "
829
+ "fields sorting."
830
  msgstr ""
 
 
831
 
832
+ #: includes/class-cntctfrm-settings.php:1207
833
+ #: includes/class-cntctfrm-settings.php:1224
834
  msgid "Form layout"
835
  msgstr "Structure du formulaire"
836
 
837
+ #: includes/class-cntctfrm-settings.php:1208
838
+ #: includes/class-cntctfrm-settings.php:1291
839
+ msgid "Labels position"
840
+ msgstr "Position des textes"
841
+
842
+ #: includes/class-cntctfrm-settings.php:1209
843
+ #: includes/class-cntctfrm-settings.php:1309
844
+ msgid "Labels align"
845
+ msgstr "Alignement des textes"
846
+
847
+ #: includes/class-cntctfrm-settings.php:1210
848
+ #: includes/class-cntctfrm-settings.php:1236
849
  msgid "Submit position"
850
  msgstr "Position du bouton envoyer"
851
 
852
+ #: includes/class-cntctfrm-settings.php:1211
853
+ #: includes/class-cntctfrm-settings.php:1340
854
+ msgid "Add tooltips"
855
+ msgstr "Ajouter les conseils"
856
+
857
+ #: includes/class-cntctfrm-settings.php:1212
858
+ #: includes/class-cntctfrm-settings.php:1381
859
+ msgid "Style options"
860
+ msgstr "Options de style"
861
+
862
+ #: includes/class-cntctfrm-settings.php:1228
863
  msgid "One column"
864
  msgstr "Une colonne"
865
 
866
+ #: includes/class-cntctfrm-settings.php:1231
867
  msgid "Two columns"
868
  msgstr "Deux colonnes"
869
 
870
+ #: includes/class-cntctfrm-settings.php:1240
871
+ #: includes/class-cntctfrm-settings.php:1280
872
+ #: includes/class-cntctfrm-settings.php:1298
873
+ #: includes/class-cntctfrm-settings.php:1313
874
  msgid "Left"
875
  msgstr "Gauche"
876
 
877
+ #: includes/class-cntctfrm-settings.php:1243
878
+ #: includes/class-cntctfrm-settings.php:1286
879
+ #: includes/class-cntctfrm-settings.php:1301
880
+ #: includes/class-cntctfrm-settings.php:1319
881
  msgid "Right"
882
  msgstr "Droite"
883
 
884
+ #: includes/class-cntctfrm-settings.php:1248
885
  msgid "Width"
886
  msgstr "Largeur"
887
 
888
+ #: includes/class-cntctfrm-settings.php:1256
889
  msgid "Custom"
890
  msgstr "Personnaliser"
891
 
892
+ #: includes/class-cntctfrm-settings.php:1263
893
  msgid "px"
894
  msgstr "px"
895
 
896
+ #: includes/class-cntctfrm-settings.php:1276
897
  msgid "Form align"
898
  msgstr "Alignement des champs"
899
 
900
+ #: includes/class-cntctfrm-settings.php:1283
901
+ #: includes/class-cntctfrm-settings.php:1316
902
  msgid "Center"
903
  msgstr "Centre"
904
 
905
+ #: includes/class-cntctfrm-settings.php:1295
 
 
 
 
906
  msgid "Top"
907
  msgstr "Haut"
908
 
909
+ #: includes/class-cntctfrm-settings.php:1304
910
  msgid "Bottom"
911
  msgstr "Bas"
912
 
913
+ #: includes/class-cntctfrm-settings.php:1324
 
 
 
 
914
  msgid "Errors output"
915
  msgstr "Affichage des erreurs"
916
 
917
+ #: includes/class-cntctfrm-settings.php:1327
918
  msgid "Display error messages"
919
  msgstr "Afficher les messages d&rsquo;erreur"
920
 
921
+ #: includes/class-cntctfrm-settings.php:1328
922
  msgid "Color of the input field errors."
923
  msgstr "Mettre en couleur les champs ayant des erreurs"
924
 
925
+ #: includes/class-cntctfrm-settings.php:1329
926
  msgid "Display error messages & color of the input field errors"
927
  msgstr ""
928
  "Afficher les messages d&rsquo;erreur et mettre en couleur les champs ayant "
929
  "des erreurs"
930
 
931
+ #: includes/class-cntctfrm-settings.php:1334
932
  msgid "Add placeholder to the input blocks"
933
  msgstr "Ajouter la localisation dans le bloc de saisie"
934
 
935
+ #: includes/class-cntctfrm-settings.php:1354
 
 
 
 
936
  msgid "Email address"
937
  msgstr "Adresse e-mail"
938
 
939
+ #: includes/class-cntctfrm-settings.php:1385
 
 
 
 
 
 
 
 
940
  msgid "Text color"
941
  msgstr "Couleur du texte"
942
 
943
+ #: includes/class-cntctfrm-settings.php:1393
944
  msgid "Label text color"
945
  msgstr "Couleur des textes des intitulés"
946
 
947
+ #: includes/class-cntctfrm-settings.php:1402
948
  msgid "Placeholder color"
949
  msgstr "Couleur pour la localisation"
950
 
951
+ #: includes/class-cntctfrm-settings.php:1407
952
  msgid "Errors color"
953
  msgstr "Couleur pour les erreurs"
954
 
955
+ #: includes/class-cntctfrm-settings.php:1415
956
  msgid "Error text color"
957
  msgstr "Couleur pour le texte des erreurs"
958
 
959
+ #: includes/class-cntctfrm-settings.php:1423
960
  msgid "Background color of the input field errors"
961
  msgstr "Couleur de fond pour les erreurs de saisie dans les champs"
962
 
963
+ #: includes/class-cntctfrm-settings.php:1431
964
  msgid "Border color of the input field errors"
965
  msgstr "Couleur de la bordure pour les erreurs de saisie dans les champs"
966
 
967
+ #: includes/class-cntctfrm-settings.php:1439
968
  msgid "Placeholder color of the input field errors"
969
  msgstr ""
970
  "Couleur pour la localisation lors d&rsquo;une erreur de saisie du champ"
971
 
972
+ #: includes/class-cntctfrm-settings.php:1444
973
  msgid "Input fields"
974
  msgstr "Champs de saisie"
975
 
976
+ #: includes/class-cntctfrm-settings.php:1452
977
  msgid "Input fields background color"
978
  msgstr "Couleur de fond pour les champs de saisie"
979
 
980
+ #: includes/class-cntctfrm-settings.php:1460
981
  msgid "Text fields color"
982
  msgstr "Couleur pour les textes des champs de saisie"
983
 
984
+ #: includes/class-cntctfrm-settings.php:1464
985
  msgid "Border width in px, numbers only"
986
  msgstr "Largeur des bordures en px, nombre seulement"
987
 
988
+ #: includes/class-cntctfrm-settings.php:1472
989
+ #: includes/class-cntctfrm-settings.php:1505
990
  msgid "Border color"
991
  msgstr "Couleur des bordures"
992
 
993
+ #: includes/class-cntctfrm-settings.php:1477
994
  msgid "Submit button"
995
  msgstr "Bouton Envoyer"
996
 
997
+ #: includes/class-cntctfrm-settings.php:1481
998
  msgid "Width in px, numbers only"
999
  msgstr "Largeur en px, nombre seulement"
1000
 
1001
+ #: includes/class-cntctfrm-settings.php:1489
1002
  msgid "Button color"
1003
  msgstr "Couleur du bouton"
1004
 
1005
+ #: includes/class-cntctfrm-settings.php:1497
1006
  msgid "Button text color"
1007
  msgstr "Couleur du texte du bouton"
1008
 
1009
+ #: includes/class-cntctfrm-settings.php:1524
1010
  msgid "Contact Form | Preview"
1011
  msgstr "Formulaire de Contact | Prévisualisation"
1012
 
1013
+ #: includes/class-cntctfrm-settings.php:1525
1014
  msgid "Drag the necessary field to sort fields."
1015
  msgstr "Déposer/déplacer les champs nécessaires dans la liste et les ordonner."
1016
 
1017
+ #: includes/class-cntctfrm-settings.php:1772
1018
+ msgid "Contact Form Shortcode"
 
 
1019
  msgstr ""
 
 
 
 
 
 
1020
 
1021
+ #: includes/class-cntctfrm-settings.php:1775
1022
+ msgid "Add Contact Form to your page or post using the following shortcode:"
1023
+ msgstr ""
1024
 
1025
+ #~ msgid "If you upgrade to Pro version all your settings will be saved."
1026
+ #~ msgstr ""
1027
+ #~ "Si vous passez à la version Pro, tous ces paramètres seront enregistrés."
1028
 
1029
+ #~ msgid ""
1030
+ #~ "If you would like to add the Contact Form to your website, just copy and "
1031
+ #~ "paste this shortcode to your post or page or widget"
1032
+ #~ msgstr ""
1033
+ #~ "Si vous souhaiter ajouter un formulaire de contact à votre site web, "
1034
+ #~ "copiez juste ce code dans un article ou sur une page ou un widget"
1035
 
1036
+ #~ msgid "Save Changes"
1037
+ #~ msgstr "Enregistrer les modifications"
 
 
 
 
 
1038
 
1039
+ #~ msgid "Contact Form"
1040
+ #~ msgstr "Formulaire de contact"
 
1041
 
1042
+ #~ msgid "All plugin settings were restored."
1043
+ #~ msgstr ""
1044
+ #~ "Remettre les valeurs par défaut des paramètres de l&rsquo;extension."
1045
 
1046
+ #~ msgid "How to Use Step-by-step Instruction"
1047
+ #~ msgstr "Mode d&rsquo;emploi pas à pas"
 
1048
 
1049
+ #~ msgid "Additional settings"
1050
+ #~ msgstr "Options supplémentaires"
 
1051
 
1052
+ #~ msgid "Custom code"
1053
+ #~ msgstr "Personnaliser"
 
 
 
 
 
1054
 
1055
+ #~ msgid "Go PRO"
1056
+ #~ msgstr "Choisir la version PRO"
 
1057
 
1058
+ #~ msgid "Notice"
1059
+ #~ msgstr "Avertissement"
 
1060
 
1061
+ #~ msgid ""
1062
+ #~ "If you would like to add a Contact Form to your page or post, please use "
1063
+ #~ "%s button"
1064
+ #~ msgstr ""
1065
+ #~ "Si vous souhaitez ajouter un formulaire de contact à votre page ou votre "
1066
+ #~ "article, merci d&rsquo;utiliser le bouton %s"
1067
 
1068
+ #~ msgid ""
1069
+ #~ "You can add the Contact Form to your page or post by clicking on %s "
1070
+ #~ "button in the content edit block using the Visual mode. If the button "
1071
+ #~ "isn't displayed, please use the shortcode %s or %s where * stands for "
1072
+ #~ "Contact Form language."
1073
+ #~ msgstr ""
1074
+ #~ "Vous pouvez ajouter le formulaire de contact sur une page ou un article "
1075
+ #~ "en utilisant le bouton %s dans l&rsquo;éditeur de contenu en mode visuel. "
1076
+ #~ "Si le bouton n&rsquo;est pas affiché, merci d&rsquo;utiliser le code "
1077
+ #~ "court %s ou %s où * est à remplacer par la langue du formulaire de "
1078
+ #~ "contact."
1079
 
1080
+ #~ msgid "Add field 'Reply-To' to the email header"
1081
+ #~ msgstr ""
1082
+ #~ "Ajouter le champ 'Répondre à/Reply-To' dans l&rsquo;entête du courriel"
1083
 
1084
+ #~ msgid "Field 'Reply-To' will be initialized by user email"
1085
+ #~ msgstr ""
1086
+ #~ "Le champ 'Répondre à/Reply-To' sera rempli avec l&rsquo;adresse e-mail de "
1087
+ #~ "l&rsquo;utilisateur"
1088
 
1089
+ #~ msgid "Auto Response"
1090
+ #~ msgstr "Réponse automatique"
 
1091
 
1092
+ #~ msgid ""
1093
+ #~ "You can use %%NAME%% to display data from the email field and %%MESSAGE%% "
1094
+ #~ "to display data from the Message field, as well as %%SITENAME%% to "
1095
+ #~ "display blog name."
1096
+ #~ msgstr ""
1097
+ #~ "Vous pouvez utiliser %%NAME%% pour afficher des données du champ email et "
1098
+ #~ "%%MESSAGE%% pour afficher des données du champ message, de même %%SITENAME"
1099
+ #~ "%% pour afficher le nom du site."
1100
 
1101
+ #~ msgid ""
1102
+ #~ "Please enable JavaScript to change '%s', '%s' options and for fields "
1103
+ #~ "sorting."
1104
+ #~ msgstr ""
1105
+ #~ "Merci d&rsquo;activer le JavaScript pour modifier les options '%s', '%s' "
1106
+ #~ "ainsi que pour trier les champs."
1107
 
1108
  #~ msgid "requires"
1109
  #~ msgstr "obligatoire"
1663
  #~ msgid "Version"
1664
  #~ msgstr "Version"
1665
 
 
 
 
1666
  #~ msgid ""
1667
  #~ "You do not have sufficient permissions to edit plugins for this site."
1668
  #~ msgstr ""
1745
  #~ msgid "Import / Export"
1746
  #~ msgstr "Importer / Exporter"
1747
 
 
 
 
1748
  #~ msgid "Congratulations! Pro license is activated successfully."
1749
  #~ msgstr ""
1750
  #~ "Félicitations&nbsp;! La version PRO de cette extension a été activée avec "
languages/contact-form-plugin-id_ID.mo CHANGED
Binary file
languages/contact-form-plugin-id_ID.po CHANGED
@@ -2,8 +2,8 @@ msgid ""
2
  msgstr ""
3
  "Project-Id-Version: Contact Form\n"
4
  "Report-Msgid-Bugs-To: \n"
5
- "POT-Creation-Date: 2018-05-16 14:26+0300\n"
6
- "PO-Revision-Date: 2018-05-16 14:26+0300\n"
7
  "Last-Translator: Jordan Silaen <jordan.silaen@chameleonjohn.com>\n"
8
  "Language-Team: ChameleonJohn.com <jordan.silaen@chameleonjohn.com>\n"
9
  "Language: id_ID\n"
@@ -17,54 +17,75 @@ msgstr ""
17
  "Plural-Forms: nplurals=2; plural=(n != 1);\n"
18
  "X-Poedit-SearchPath-0: .\n"
19
 
20
- #: contact_form.php:37 contact_form.php:992
 
21
  msgid "Contact Form Settings"
22
  msgstr "Pengaturan Form kontak"
23
 
24
- #: contact_form.php:37
25
- msgid "Contact Form"
26
- msgstr "formulir kontak"
 
 
 
 
 
 
 
 
27
 
28
- #: contact_form.php:322 contact_form.php:1172 contact_form.php:1262
29
- #: contact_form.php:1668 contact_form.php:1707 contact_form.php:1975
30
- #: contact_form.php:3134 contact_form.php:3180
 
 
 
31
  msgid "Name"
32
  msgstr "Nama"
33
 
34
- #: contact_form.php:323 contact_form.php:1309 contact_form.php:1669
35
- #: contact_form.php:1708 contact_form.php:1980 contact_form.php:3141
36
- #: contact_form.php:3186
 
 
37
  msgid "Address"
38
  msgstr "Alamat"
39
 
40
- #: contact_form.php:324 contact_form.php:1325 contact_form.php:1670
41
- #: contact_form.php:1709
 
42
  msgid "Email Address"
43
  msgstr "Alamat email"
44
 
45
- #: contact_form.php:325 contact_form.php:1348 contact_form.php:1671
46
- #: contact_form.php:1710
 
47
  msgid "Phone number"
48
  msgstr "Nomor telepon"
49
 
50
- #: contact_form.php:326 contact_form.php:1364 contact_form.php:1672
51
- #: contact_form.php:1711 contact_form.php:1995 contact_form.php:3152
52
- #: contact_form.php:3195
 
 
53
  msgid "Subject"
54
  msgstr "Subyek"
55
 
56
- #: contact_form.php:327 contact_form.php:1388 contact_form.php:1673
57
- #: contact_form.php:1712 contact_form.php:1999 contact_form.php:3157
58
- #: contact_form.php:3199
 
 
59
  msgid "Message"
60
  msgstr "Pesan"
61
 
62
- #: contact_form.php:328 contact_form.php:1674 contact_form.php:1713
63
- #: contact_form.php:2004
 
64
  msgid "Attachment"
65
  msgstr "Lampiran"
66
 
67
- #: contact_form.php:329
68
  msgid ""
69
  "Supported file types: HTML, TXT, CSS, GIF, PNG, JPEG, JPG, TIFF, BMP, AI, "
70
  "EPS, PS, CSV, RTF, PDF, DOC, DOCX, XLS, XLSX, ZIP, RAR, WAV, MP3, PPT."
@@ -72,181 +93,312 @@ msgstr ""
72
  "Jenis file yang didukung: HTML, TXT, CSS, GIF, PNG, JPEG, JPG, TIFF, BMP, "
73
  "AI, EPS, PS, CSV, RTF, PDF, DOC, DOCX, XLS, XLSX, ZIP, RAR, WAV, MP3, PPT."
74
 
75
- #: contact_form.php:330 contact_form.php:1676 contact_form.php:1715
 
76
  msgid "Send me a copy"
77
  msgstr "Kirimkan saya salinan"
78
 
79
- #: contact_form.php:331 contact_form.php:1677 contact_form.php:1716
 
80
  msgid "I consent to having this site collect my personal data."
81
  msgstr ""
82
 
83
- #: contact_form.php:332 contact_form.php:1678 contact_form.php:1717
 
84
  msgid "Submit"
85
  msgstr "Menyerahkan"
86
 
87
- #: contact_form.php:333
88
  msgid "Your name is required."
89
  msgstr "Nama Anda diperlukan."
90
 
91
- #: contact_form.php:334
92
  msgid "Address is required."
93
  msgstr "Alamat diperlukan."
94
 
95
- #: contact_form.php:335
96
  msgid "A valid email address is required."
97
  msgstr "Sebuah alamat email yang valid diperlukan."
98
 
99
- #: contact_form.php:336
100
  msgid "Phone number is required."
101
  msgstr "Nomor telepon diperlukan."
102
 
103
- #: contact_form.php:337
104
  msgid "Subject is required."
105
  msgstr "Subjek diperlukan."
106
 
107
- #: contact_form.php:338
108
  msgid "Message text is required."
109
  msgstr "Pesan teks diperlukan."
110
 
111
- #: contact_form.php:339
112
  msgid "File format is not valid."
113
  msgstr "format file tidak valid."
114
 
115
- #: contact_form.php:340
116
  msgid "File upload error."
117
  msgstr "Berkas kesalahan upload."
118
 
119
- #: contact_form.php:341
120
  msgid "The file could not be uploaded."
121
  msgstr "file tidak bisa di-upload."
122
 
123
- #: contact_form.php:342
124
  msgid "This file is too large."
125
  msgstr "File ini terlalu besar."
126
 
127
- #: contact_form.php:343
128
  msgid "Please fill out the CAPTCHA."
129
  msgstr "Silahkan isi CAPTCHA."
130
 
131
- #: contact_form.php:344
132
  msgid "Please make corrections below and try again."
133
  msgstr "Silakan membuat koreksi di bawah ini dan coba lagi."
134
 
135
- #: contact_form.php:346
136
  msgid "Thank you for contacting us."
137
  msgstr "Terima kasih sudah menghubungi kami."
138
 
139
- #: contact_form.php:683 contact_form.php:949
140
- msgid "Settings saved."
141
- msgstr "Pengaturan disimpan."
142
 
143
- #: contact_form.php:894
144
  msgid ""
145
- "Email 'FROM' field option was changed, which may cause email messages being "
146
- "moved to the spam folder or email delivery failures."
147
  msgstr ""
148
- "Email 'DARI' pilihan lapangan berubah, yang dapat menyebabkan pesan email "
149
- "dipindahkan ke folder spam atau email kegagalan pengiriman."
150
 
151
- #: contact_form.php:904
152
  msgid ""
153
- "If the 'Redirect to page' option is selected then the URL field should be in "
154
- "the following format"
 
155
  msgstr ""
156
- "Jika 'Redirect ke halaman' opsi yang dipilih maka bidang URL harus dalam "
157
- "format berikut"
158
 
159
- #: contact_form.php:911
160
- #, fuzzy
161
- msgid "Such user does not exist."
162
- msgstr "pengguna tersebut tidak ada."
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
163
 
164
- #: contact_form.php:921
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
165
  #, fuzzy
 
 
 
 
166
  msgid ""
167
- "Please enter a valid email address in the 'Use this email address' field."
 
168
  msgstr ""
169
- "Masukkan alamat email yang valid dalam 'Gunakan alamat email ini' lapangan."
 
170
 
171
- #: contact_form.php:929
172
  #, fuzzy
173
- msgid "Please enter a valid email address in the 'FROM' field."
174
- msgstr "Masukkan alamat email yang valid di bidang 'DARI'."
175
 
176
- #: contact_form.php:951
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
177
  #, fuzzy
178
- msgid "Settings are not saved."
179
- msgstr "Setelan tidak disimpan."
180
 
181
- #: contact_form.php:989
182
- msgid "All plugin settings were restored."
183
- msgstr "Semua pengaturan Plugin dipulihkan. "
184
 
185
- #: contact_form.php:995
186
- msgid "How to Use Step-by-step Instruction"
187
- msgstr "Cara Menggunakan Langkah-demi-langkah Instruksi"
188
 
189
- #: contact_form.php:998 contact_form.php:3343 contact_form.php:3357
190
- msgid "Settings"
191
- msgstr "pengaturan"
 
192
 
193
- #: contact_form.php:999
194
  #, fuzzy
195
- msgid "Additional settings"
196
- msgstr "pengaturan tambahan"
197
 
198
- #: contact_form.php:1000
 
 
 
 
 
 
199
  msgid "Appearance"
200
  msgstr "Penampilan"
201
 
202
- #: contact_form.php:1001
203
- msgid "Custom code"
204
- msgstr "kode kustom"
205
 
206
- #: contact_form.php:1002
207
- msgid "Go PRO"
208
- msgstr "Go PRO"
209
 
210
- #: contact_form.php:1013
211
- #, fuzzy
212
- msgid "Notice"
213
- msgstr "Melihat"
214
 
215
- #: contact_form.php:1017
216
- msgid "NEW_FORM"
217
- msgstr "NEW_FORM"
218
 
219
- #: contact_form.php:1018
 
220
  msgid ""
221
- "If you want to create multiple contact forms, please install the Contact "
222
- "Form Multi plugin."
223
  msgstr ""
224
- "Jika Anda ingin membuat beberapa bentuk kontak, silahkan install plugin "
225
- "Formulir Kontak multi."
226
 
227
- #: contact_form.php:1027
228
- #, fuzzy, php-format
229
  msgid ""
230
- "If you would like to add a Contact Form to your page or post, please use %s "
231
- "button"
232
  msgstr ""
233
- "Jika Anda ingin menambahkan Formulir Kontak ke halaman Anda atau posting, "
234
- "silakan gunakan %s tombol"
235
 
236
- #: contact_form.php:1033
237
- #, php-format
238
  msgid ""
239
- "You can add the Contact Form to your page or post by clicking on %s button "
240
- "in the content edit block using the Visual mode. If the button isn't "
241
- "displayed, please use the shortcode %s or %s where * stands for Contact Form "
242
- "language."
243
  msgstr ""
244
- "Anda dapat menambahkan Form Kontak ke halaman Anda atau posting dengan "
245
- "mengklik %s tombol di blok mengedit konten menggunakan modus Visual. Jika "
246
- "tombol tidak ditampilkan, gunakan shortcode %s atau %s mana * singkatan "
247
- "bahasa Form Kontak."
248
 
249
- #: contact_form.php:1042
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
250
  msgid ""
251
  "If you leave the fields empty, the messages will be sent to the email "
252
  "address specified during registration."
@@ -254,17 +406,17 @@ msgstr ""
254
  "Jika Anda meninggalkan bidang kosong, pesan akan dikirim ke alamat email "
255
  "yang ditentukan saat pendaftaran."
256
 
257
- #: contact_form.php:1045
258
  #, fuzzy
259
  msgid "The user's email address"
260
  msgstr "Alamat email pengguna"
261
 
262
- #: contact_form.php:1049
263
  #, fuzzy
264
  msgid "Select a username"
265
  msgstr "Memilih nama pengguna"
266
 
267
- #: contact_form.php:1062
268
  #, fuzzy
269
  msgid ""
270
  "Select a username of the person who should get the messages from the contact "
@@ -273,118 +425,108 @@ msgstr ""
273
  "Pilih nama pengguna dari orang yang harus mendapatkan pesan dari formulir "
274
  "kontak."
275
 
276
- #: contact_form.php:1066
277
  #, fuzzy
278
  msgid "Use this email address"
279
  msgstr "Gunakan alamat email ini"
280
 
281
- #: contact_form.php:1070
282
  #, fuzzy
283
  msgid "Enter the email address for receiving messages"
284
  msgstr "Masukkan alamat email untuk menerima pesan"
285
 
286
- #: contact_form.php:1077 contact_form.php:1588 contact_form.php:1797
287
- #: contact_form.php:1903 contact_form.php:3440
288
- msgid "Close"
289
- msgstr "Dekat"
290
-
291
- #: contact_form.php:1081
292
  #, fuzzy
293
  msgid "Add department selectbox to the contact form"
294
  msgstr "Menambahkan departemen selectbox ke formulir kontak"
295
 
296
- #: contact_form.php:1089 contact_form.php:1597 contact_form.php:1816
297
- #: contact_form.php:2109
298
- msgid "If you upgrade to Pro version all your settings will be saved."
299
- msgstr ""
300
- "Jika Anda meng-upgrade ke versi Pro semua pengaturan Anda akan disimpan."
301
-
302
- #: contact_form.php:1096 contact_form.php:1418 contact_form.php:1602
303
- #: contact_form.php:1823 contact_form.php:2116
304
- msgid "Upgrade to Pro"
305
- msgstr "Upgrade ke yang lebih baik"
306
-
307
- #: contact_form.php:1104
308
  msgid "Save emails to the database"
309
  msgstr "Menyimpan email ke database"
310
 
311
- #: contact_form.php:1116 contact_form.php:1130 contact_form.php:1137
 
 
312
  msgid "Using"
313
  msgstr "menggunakan"
314
 
315
- #: contact_form.php:1122 contact_form.php:1490 contact_form.php:1531
316
- #: contact_form.php:1566
 
 
317
  msgid "Please activate the appropriate option on"
318
  msgstr "Silakan aktifkan opsi yang sesuai pada"
319
 
320
- #: contact_form.php:1125 contact_form.php:1493 contact_form.php:1534
321
- #: contact_form.php:1569
 
 
322
  #, fuzzy
323
  msgid "settings page"
324
  msgstr "halaman pengaturan"
325
 
326
- #: contact_form.php:1131 contact_form.php:1500 contact_form.php:1542
327
- #: contact_form.php:1576
 
 
328
  #, fuzzy
329
  msgid "Activate"
330
  msgstr "Mengaktifkan"
331
 
332
- #: contact_form.php:1138 contact_form.php:1509 contact_form.php:1548
333
- #: contact_form.php:1581
 
 
334
  msgid "Download"
335
  msgstr "Download"
336
 
337
- #: contact_form.php:1150
338
  msgid "Sending method"
339
  msgstr "metode pengiriman"
340
 
341
- #: contact_form.php:1155
342
  msgid "Wp-mail"
343
  msgstr "Wp-mail"
344
 
345
- #: contact_form.php:1157
346
  #, fuzzy
347
  msgid "You can use the Wordpress wp_mail function for mailing"
348
  msgstr "Anda dapat menggunakan fungsi Wordpress wp_mail untuk mailing"
349
 
350
- #: contact_form.php:1160
351
  msgid "Mail"
352
  msgstr "Surat"
353
 
354
- #: contact_form.php:1162
355
  #, fuzzy
356
  msgid "You can use the PHP mail function for mailing"
357
  msgstr "Anda dapat menggunakan fungsi PHP mail untuk mailing"
358
 
359
- #: contact_form.php:1167
360
  msgid "'FROM' field"
361
  msgstr "'DARI' lapangan"
362
 
363
- #: contact_form.php:1183
364
  msgid "User name"
365
  msgstr "Nama pengguna"
366
 
367
- #: contact_form.php:1185
368
  msgid ""
369
  "The name of the user who fills the form will be used in the field 'From'."
370
  msgstr "Nama pengguna yang mengisi form akan digunakan dalam bidang 'Dari'."
371
 
372
- #: contact_form.php:1196 contact_form.php:3147 contact_form.php:3191
373
- msgid "Email"
374
- msgstr "E-mail"
375
-
376
- #: contact_form.php:1207
377
  msgid "User email"
378
  msgstr "email pengguna"
379
 
380
- #: contact_form.php:1209
381
  msgid ""
382
  "The email address of the user who fills the form will be used in the field "
383
  "'From'."
384
  msgstr ""
385
  "Alamat email pengguna yang mengisi form akan digunakan dalam bidang 'Dari'."
386
 
387
- #: contact_form.php:1218
388
  msgid ""
389
  "If this option is changed, email messages may be moved to the spam folder or "
390
  "email delivery failures may occur."
@@ -392,49 +534,67 @@ msgstr ""
392
  "Jika opsi ini berubah, pesan email mungkin akan dipindahkan ke folder spam "
393
  "atau email kegagalan pengiriman dapat terjadi."
394
 
395
- #: contact_form.php:1227
396
  msgid "Required symbol"
397
  msgstr "simbol diperlukan"
398
 
399
- #: contact_form.php:1237
400
  msgid "Fields"
401
  msgstr "Fields"
402
 
403
- #: contact_form.php:1238 contact_form.php:1265 contact_form.php:1292
404
- #: contact_form.php:1312 contact_form.php:1351 contact_form.php:1433
 
 
 
 
405
  msgid "Used"
406
  msgstr "Bekas"
407
 
408
- #: contact_form.php:1239 contact_form.php:1254 contact_form.php:1269
409
- #: contact_form.php:1296 contact_form.php:1316 contact_form.php:1329
410
- #: contact_form.php:1355 contact_form.php:1368 contact_form.php:1392
 
 
 
 
 
411
  msgid "Required"
412
  msgstr "Wajib"
413
 
414
- #: contact_form.php:1241 contact_form.php:1274 contact_form.php:1334
415
- #: contact_form.php:1373 contact_form.php:1397
 
 
 
416
  msgid "Visible"
417
  msgstr "Terlihat"
418
 
419
- #: contact_form.php:1242 contact_form.php:1278 contact_form.php:1338
420
- #: contact_form.php:1377 contact_form.php:1401
 
 
 
421
  msgid "Disabled for editing"
422
  msgstr "Dinonaktifkan untuk mengedit"
423
 
424
- #: contact_form.php:1243 contact_form.php:1302 contact_form.php:1381
425
- #: contact_form.php:1405
 
 
426
  msgid "Field's default value"
427
  msgstr "Nilai default Field"
428
 
429
- #: contact_form.php:1250
430
  msgid "Department selectbox"
431
  msgstr "Departemen selectbox"
432
 
433
- #: contact_form.php:1282
434
  msgid "Use User's name as a default value if the user is logged in."
435
  msgstr "Gunakan Nama Pengguna sebagai nilai default jika pengguna login."
436
 
437
- #: contact_form.php:1283 contact_form.php:1343
 
438
  msgid ""
439
  "'Visible' and 'Disabled for editing' options will be applied only to logged-"
440
  "in users."
@@ -442,540 +602,499 @@ msgstr ""
442
  "'Visible' dan 'Dinonaktifkan untuk mengedit' pilihan akan diterapkan hanya "
443
  "untuk log-in pengguna."
444
 
445
- #: contact_form.php:1289
446
  msgid "Location selectbox"
447
  msgstr "lokasi selectbox"
448
 
449
- #: contact_form.php:1342
450
  msgid "Use User's email as a default value if the user is logged in."
451
  msgstr "Gunakan email Pengguna sebagai nilai default jika pengguna login."
452
 
453
- #: contact_form.php:1426
454
  msgid "Attachment block"
455
  msgstr "blok lampiran"
456
 
457
- #: contact_form.php:1428
458
  msgid "Users can attach the following file formats"
459
  msgstr "Pengguna dapat melampirkan format file berikut"
460
 
461
- #: contact_form.php:1446
462
  msgid "Add to the form"
463
  msgstr "Tambahkan ke form"
464
 
465
- #: contact_form.php:1451
466
  msgid "Tips below the Attachment"
467
  msgstr "Tips di bawah ini Lampiran"
468
 
469
- #: contact_form.php:1458
470
  msgid "'Send me a copy' block"
471
  msgstr "'Kirimkan saya salinan' block"
472
 
473
- #: contact_form.php:1465
474
  msgid "GDPR Compliance"
475
  msgstr ""
476
 
477
- #: contact_form.php:1470
478
  msgid "Link to Privacy Policy Page"
479
  msgstr ""
480
 
481
- #: contact_form.php:1474
482
  msgid "Text for Privacy Policy Link"
483
  msgstr ""
484
 
485
- #: contact_form.php:1502
486
  #, fuzzy
487
  msgid "Activate for network"
488
  msgstr "Aktifkan untuk jaringan"
489
 
490
- #: contact_form.php:1592
491
  msgid "Agreement checkbox"
492
  msgstr "kotak centang perjanjian"
493
 
494
- #: contact_form.php:1592
495
  msgid "Required checkbox for submitting the form"
496
  msgstr "checkbox diperlukan untuk mengirimkan formulir"
497
 
498
- #: contact_form.php:1593
499
  msgid "Optional checkbox"
500
  msgstr "kotak centang opsional"
501
 
502
- #: contact_form.php:1593
503
  msgid "Optional checkbox, the results of which will be displayed in email"
504
  msgstr "Opsional kotak centang, yang hasilnya akan ditampilkan dalam email"
505
 
506
- #: contact_form.php:1611
507
  msgid "Delete an attachment file from the server after the email is sent"
508
  msgstr "Hapus file lampiran dari server setelah email tersebut dikirim"
509
 
510
- #: contact_form.php:1617
511
  msgid "Email in HTML format sending"
512
  msgstr "Email dalam format HTML mengirim"
513
 
514
- #: contact_form.php:1621
515
  msgid "Display additional info in the email"
516
  msgstr "Menampilkan info tambahan dalam email"
517
 
518
- #: contact_form.php:1627
519
  #, fuzzy
520
  msgid "Sent from (IP address)"
521
  msgstr "Dikirim dari (alamat IP)"
522
 
523
- #: contact_form.php:1627
524
  msgid "Example: Sent from (IP address): 127.0.0.1"
525
  msgstr ""
526
 
527
- #: contact_form.php:1628 contact_form.php:3096 contact_form.php:3098
528
- msgid "Date/Time"
529
- msgstr "Tanggal Waktu"
530
-
531
- #: contact_form.php:1628
532
  msgid "Example: Date/Time: August 19, 2013 8:50 pm"
533
  msgstr ""
534
 
535
- #: contact_form.php:1629 contact_form.php:3102 contact_form.php:3104
536
- msgid "Sent from (referer)"
537
- msgstr "Dikirim dari (referer)"
538
-
539
- #: contact_form.php:1629
540
  msgid ""
541
  "Example: Sent from (referer): https://bestwebsoft.com/contacts/contact-us/"
542
  msgstr ""
543
 
544
- #: contact_form.php:1630 contact_form.php:3108 contact_form.php:3110
545
- msgid "Using (user agent)"
546
- msgstr "Menggunakan (agen pengguna)"
547
-
548
- #: contact_form.php:1630
549
  msgid ""
550
  "Example: Using (user agent): Mozilla/5.0 (Windows NT 6.2; WOW64) "
551
  "AppleWebKit/537.36 (KHTML, like Gecko) Chrome/28.0.1500.95 Safari/537.36"
552
  msgstr ""
553
 
554
- #: contact_form.php:1635
555
  msgid "Language settings for the field names in the form"
556
  msgstr "Pengaturan bahasa untuk nama field dalam bentuk"
557
 
558
- #: contact_form.php:1644
559
  msgid "Add a language"
560
  msgstr "Menambahkan bahasa"
561
 
562
- #: contact_form.php:1648
563
  msgid "Change the names of the contact form fields and error messages"
564
  msgstr "Mengubah nama-nama kolom formulir kontak dan pesan kesalahan"
565
 
566
- #: contact_form.php:1653 contact_form.php:1751 contact_form.php:1883
567
- #: contact_form.php:2023 contact_form.php:2028 contact_form.php:2038
568
- #: contact_form.php:2043 contact_form.php:2048 contact_form.php:2053
569
- #: contact_form.php:2063 contact_form.php:2068 contact_form.php:2077
570
- #: contact_form.php:2091 contact_form.php:2096 contact_form.php:2101
571
  msgid "Default"
572
  msgstr "kegagalan"
573
 
574
- #: contact_form.php:1666 contact_form.php:1705
 
575
  msgid "click to expand/hide the list"
576
  msgstr "klik untuk memperluas / menyembunyikan daftar"
577
 
578
- #: contact_form.php:1675 contact_form.php:1714
 
579
  msgid "Tips below the Attachment block"
580
  msgstr "Tips di bawah ini blok Lampiran"
581
 
582
- #: contact_form.php:1679 contact_form.php:1718
 
583
  msgid "Error message for the Name field"
584
  msgstr "pesan kesalahan untuk bidang Nama"
585
 
586
- #: contact_form.php:1680 contact_form.php:1719
 
587
  msgid "Error message for the Address field"
588
  msgstr "pesan kesalahan untuk bidang Alamat"
589
 
590
- #: contact_form.php:1681 contact_form.php:1720
 
591
  msgid "Error message for the Email field"
592
  msgstr "pesan kesalahan untuk bidang Email"
593
 
594
- #: contact_form.php:1682 contact_form.php:1721
 
595
  msgid "Error message for the Phone field"
596
  msgstr "pesan kesalahan untuk bidang Telepon"
597
 
598
- #: contact_form.php:1683 contact_form.php:1722
 
599
  msgid "Error message for the Subject field"
600
  msgstr "pesan kesalahan untuk kolom Subyek"
601
 
602
- #: contact_form.php:1684 contact_form.php:1723
 
603
  msgid "Error message for the Message field"
604
  msgstr "pesan kesalahan untuk bidang Pesan"
605
 
606
- #: contact_form.php:1685 contact_form.php:1724
 
607
  msgid "Error message about the file type for the Attachment field"
608
  msgstr "pesan kesalahan tentang jenis file untuk bidang Lampiran"
609
 
610
- #: contact_form.php:1686 contact_form.php:1725
 
611
  msgid ""
612
  "Error message while uploading a file for the Attachment field to the server"
613
  msgstr "pesan kesalahan saat mengunggah file untuk bidang Lampiran ke server"
614
 
615
- #: contact_form.php:1687 contact_form.php:1726
 
616
  msgid "Error message while moving the file for the Attachment field"
617
  msgstr "pesan kesalahan saat memindahkan file untuk bidang Lampiran"
618
 
619
- #: contact_form.php:1688 contact_form.php:1727
 
620
  msgid "Error message when file size limit for the Attachment field is exceeded"
621
  msgstr "Pesan galat saat batas ukuran file untuk bidang Lampiran terlampaui"
622
 
623
- #: contact_form.php:1689 contact_form.php:1728
 
624
  msgid "Error message for the Captcha field"
625
  msgstr "pesan kesalahan untuk bidang Captcha"
626
 
627
- #: contact_form.php:1690 contact_form.php:1729
 
628
  msgid "Error message for the whole form"
629
  msgstr "pesan kesalahan untuk seluruh bentuk"
630
 
631
- #: contact_form.php:1693 contact_form.php:1695 contact_form.php:1732
632
- #: contact_form.php:1734 contact_form.php:1766 contact_form.php:1768
633
- #: contact_form.php:1780 contact_form.php:1782 contact_form.php:3530
634
- #: contact_form.php:3532
635
- msgid "Use shortcode"
636
- msgstr "Gunakan shortcode"
637
-
638
- #: contact_form.php:1693 contact_form.php:1695 contact_form.php:1732
639
- #: contact_form.php:1734 contact_form.php:1766 contact_form.php:1768
640
- #: contact_form.php:1780 contact_form.php:1782 contact_form.php:3530
641
- #: contact_form.php:3532
642
- msgid "for this language"
643
- msgstr "untuk bahasa ini"
644
-
645
- #: contact_form.php:1742
646
  #, fuzzy
647
  msgid "Use the changed names of the contact form fields in the email"
648
  msgstr "Menggunakan nama berubah dari kolom formulir kontak di email"
649
 
650
- #: contact_form.php:1748
651
  msgid "Action after email is sent"
652
  msgstr "Tindakan setelah email dikirim"
653
 
654
- #: contact_form.php:1750
655
  msgid "Display text"
656
  msgstr "menampilkan teks"
657
 
658
- #: contact_form.php:1764 contact_form.php:1778
 
659
  msgid "Text"
660
  msgstr "Teks"
661
 
662
- #: contact_form.php:1789
663
  msgid "Redirect to the page"
664
  msgstr "Redirect ke halaman"
665
 
666
- #: contact_form.php:1790
667
  msgid "Url"
668
  msgstr "url"
669
 
670
- #: contact_form.php:1801
671
- msgid "Add field 'Reply-To' to the email header"
672
- msgstr "Menambahkan field 'Reply-To' ke header email"
673
-
674
- #: contact_form.php:1803
675
- msgid "Field 'Reply-To' will be initialized by user email"
676
- msgstr "'Reply-To' lapangan akan diawali dengan email pengguna"
677
-
678
- #: contact_form.php:1807
679
- msgid "Auto Response"
680
- msgstr "Respon otomatis"
681
-
682
- #: contact_form.php:1811
683
- #, php-format
684
- msgid ""
685
- "You can use %%NAME%% to display data from the email field and %%MESSAGE%% to "
686
- "display data from the Message field, as well as %%SITENAME%% to display blog "
687
- "name."
688
- msgstr ""
689
- "Anda dapat menggunakan %%NAME%% untuk menampilkan data dari lapangan email "
690
- "dan %%MESSAGE%% untuk menampilkan data dari lapangan Pesan, serta %%SITENAME"
691
- "%% untuk menampilkan nama blog."
692
-
693
- #: contact_form.php:1833 contact_form.php:2375
694
- msgid "Save Changes"
695
- msgstr "Simpan perubahan"
696
-
697
- #: contact_form.php:1846
698
  #, php-format
699
  msgid ""
700
- "Please enable JavaScript to change '%s', '%s' options and for fields sorting."
 
701
  msgstr ""
702
- "Silahkan aktifkan JavaScript untuk mengubah '%s', '%s' pilihan dan untuk "
703
- "bidang penyortiran."
704
 
705
- #: contact_form.php:1846 contact_form.php:1855
 
706
  msgid "Form layout"
707
  msgstr "tata letak bentuk"
708
 
709
- #: contact_form.php:1846 contact_form.php:1867
 
 
 
 
 
 
 
 
 
 
 
 
710
  #, fuzzy
711
  msgid "Submit position"
712
  msgstr "Kirim posisi"
713
 
714
- #: contact_form.php:1859
 
 
 
 
 
 
 
 
 
 
715
  msgid "One column"
716
  msgstr "satu kolom"
717
 
718
- #: contact_form.php:1862
719
  msgid "Two columns"
720
  msgstr "dua kolom"
721
 
722
- #: contact_form.php:1871 contact_form.php:1911 contact_form.php:1929
723
- #: contact_form.php:1944
 
 
724
  msgid "Left"
725
  msgstr "Kiri"
726
 
727
- #: contact_form.php:1874 contact_form.php:1917 contact_form.php:1932
728
- #: contact_form.php:1950
 
 
729
  msgid "Right"
730
  msgstr "Kanan"
731
 
732
- #: contact_form.php:1879
733
  msgid "Width"
734
  msgstr ""
735
 
736
- #: contact_form.php:1887
737
  msgid "Custom"
738
  msgstr ""
739
 
740
- #: contact_form.php:1894
741
  msgid "px"
742
  msgstr ""
743
 
744
- #: contact_form.php:1907
745
  msgid "Form align"
746
  msgstr "Form menyelaraskan"
747
 
748
- #: contact_form.php:1914 contact_form.php:1947
 
749
  msgid "Center"
750
  msgstr "Pusat"
751
 
752
- #: contact_form.php:1922
753
- #, fuzzy
754
- msgid "Labels position"
755
- msgstr "posisi label"
756
-
757
- #: contact_form.php:1926
758
  msgid "Top"
759
  msgstr "Puncak"
760
 
761
- #: contact_form.php:1935
762
  msgid "Bottom"
763
  msgstr "Bawah"
764
 
765
- #: contact_form.php:1940
766
- msgid "Labels align"
767
- msgstr "label menyelaraskan"
768
-
769
- #: contact_form.php:1955
770
  msgid "Errors output"
771
  msgstr "kesalahan keluaran"
772
 
773
- #: contact_form.php:1958
774
  msgid "Display error messages"
775
  msgstr "pesan kesalahan display"
776
 
777
- #: contact_form.php:1959
778
  msgid "Color of the input field errors."
779
  msgstr "Warna kesalahan field input."
780
 
781
- #: contact_form.php:1960
782
  msgid "Display error messages & color of the input field errors"
783
  msgstr "pesan kesalahan layar & warna kesalahan field input"
784
 
785
- #: contact_form.php:1965
786
  msgid "Add placeholder to the input blocks"
787
  msgstr "Menambahkan placeholder ke blok masukan"
788
 
789
- #: contact_form.php:1971
790
- msgid "Add tooltips"
791
- msgstr "menambahkan tooltips"
792
-
793
- #: contact_form.php:1985
794
  msgid "Email address"
795
  msgstr "Alamat email"
796
 
797
- #: contact_form.php:1990 contact_form.php:3163 contact_form.php:3204
798
- msgid "Phone Number"
799
- msgstr "Nomor telepon"
800
-
801
- #: contact_form.php:2016
802
- msgid "Style options"
803
- msgstr "pilihan gaya"
804
-
805
- #: contact_form.php:2020
806
  msgid "Text color"
807
  msgstr "Warna teks"
808
 
809
- #: contact_form.php:2025
810
  msgid "Label text color"
811
  msgstr "Warna teks Label"
812
 
813
- #: contact_form.php:2030
814
  msgid "Placeholder color"
815
  msgstr "warna placeholder"
816
 
817
- #: contact_form.php:2035
818
  msgid "Errors color"
819
  msgstr "warna kesalahan"
820
 
821
- #: contact_form.php:2040
822
  msgid "Error text color"
823
  msgstr "Warna teks kesalahan"
824
 
825
- #: contact_form.php:2045
826
  msgid "Background color of the input field errors"
827
  msgstr "warna latar belakang kesalahan field input"
828
 
829
- #: contact_form.php:2050
830
  msgid "Border color of the input field errors"
831
  msgstr "warna perbatasan kesalahan field input"
832
 
833
- #: contact_form.php:2055
834
  msgid "Placeholder color of the input field errors"
835
  msgstr "warna placeholder kesalahan field input"
836
 
837
- #: contact_form.php:2060
838
  msgid "Input fields"
839
  msgstr "field input"
840
 
841
- #: contact_form.php:2065
842
  msgid "Input fields background color"
843
  msgstr "Input field warna latar belakang"
844
 
845
- #: contact_form.php:2070
846
  msgid "Text fields color"
847
  msgstr "Teks ladang warna"
848
 
849
- #: contact_form.php:2074
850
  msgid "Border width in px, numbers only"
851
  msgstr "lebar perbatasan di px, angka saja"
852
 
853
- #: contact_form.php:2079 contact_form.php:2103
 
854
  msgid "Border color"
855
  msgstr "warna perbatasan"
856
 
857
- #: contact_form.php:2084
858
  msgid "Submit button"
859
  msgstr "tombol Submit"
860
 
861
- #: contact_form.php:2088
862
  msgid "Width in px, numbers only"
863
  msgstr "Lebar di px, angka saja"
864
 
865
- #: contact_form.php:2093
866
  msgid "Button color"
867
  msgstr "warna tombol"
868
 
869
- #: contact_form.php:2098
870
  msgid "Button text color"
871
  msgstr "Warna teks tombol"
872
 
873
- #: contact_form.php:2127
874
  #, fuzzy
875
  msgid "Contact Form | Preview"
876
  msgstr "Hubungi Formulir | Preview"
877
 
878
- #: contact_form.php:2128
879
  msgid "Drag the necessary field to sort fields."
880
  msgstr "Tarik bidang yang diperlukan untuk memilah bidang."
881
 
882
- #: contact_form.php:2364
883
- #, fuzzy
884
- msgid ""
885
- "If you would like to add the Contact Form to your website, just copy and "
886
- "paste this shortcode to your post or page or widget"
887
  msgstr ""
888
- "Jika Anda ingin menambahkan Formulir Kontak ke website Anda, hanya copy dan "
889
- "paste shortcode ini untuk posting atau halaman atau widget"
890
-
891
- #: contact_form.php:2486
892
- msgid "Sorry, email message could not be delivered."
893
- msgstr "Maaf, pesan email tidak dapat disampaikan."
894
 
895
- #: contact_form.php:3090 contact_form.php:3092
896
- msgid "Sent from (ip address)"
897
- msgstr "Dikirim dari (alamat ip)"
898
 
899
- #: contact_form.php:3120
900
- msgid "Contact from"
901
- msgstr "kontak dari"
902
 
903
- #: contact_form.php:3125 contact_form.php:3174
904
- msgid "Site"
905
- msgstr "situs"
 
 
 
 
906
 
907
- #: contact_form.php:3286
908
- msgid ""
909
- "If you can see this MIME, it means that the MIME type is not supported by "
910
- "your email client!"
911
- msgstr ""
912
- "Jika Anda dapat melihat MIME ini, itu berarti bahwa tipe MIME tidak didukung "
913
- "oleh klien email Anda!"
914
 
915
- #: contact_form.php:3358
916
- msgid "FAQ"
917
- msgstr "FAQ"
918
 
919
- #: contact_form.php:3359
920
- msgid "Support"
921
- msgstr "Mendukung"
922
 
923
- #: contact_form.php:3408
924
- msgid "Are you sure that you want to delete this language data?"
925
- msgstr "Apakah Anda yakin bahwa Anda ingin menghapus data bahasa ini?"
926
 
927
- #: contact_form.php:3431
928
  #, fuzzy
929
- msgid "Add multiple forms"
930
- msgstr "Tambahkan beberapa bentuk"
931
 
932
- #: contact_form.php:3431
933
- msgid ""
934
- "Install Contact Form Multi plugin to create unlimited number of contact "
935
- "forms."
936
- msgstr ""
937
- "Instal Form Kontak multi plugin untuk membuat jumlah yang tidak terbatas "
938
- "formulir kontak."
939
 
940
- #: contact_form.php:3436
941
- #, fuzzy
942
- msgid "Learn more"
943
- msgstr "Belajarlah lagi"
944
 
945
- #: contact_form.php:3494
946
- msgid "Error"
947
- msgstr ""
948
 
949
- #: contact_form.php:3494 contact_form.php:3496
950
- msgid "Illegal language code"
951
- msgstr ""
 
 
 
 
952
 
953
- #: contact_form.php:3681
954
- msgid "Close notice"
955
- msgstr "Tutup pemberitahuan"
 
 
 
 
 
 
 
956
 
957
- #: contact_form.php:3686
958
- #, fuzzy
959
- msgid "allows to store your messages to the database."
960
- msgstr "memungkinkan untuk menyimpan pesan Anda ke database."
961
 
962
- #: contact_form.php:3687
963
- msgid "Manage messages that have been sent from your website."
964
- msgstr "Mengelola pesan yang telah dikirim dari situs web Anda."
965
 
966
- #: contact_form.php:3690
967
- msgid "Learn More"
968
- msgstr "Belajarlah lagi"
969
 
970
- #: contact_form.php:3750
971
- #, fuzzy
972
- msgid "Contact form"
973
- msgstr "Formulir kontak"
 
 
 
 
974
 
975
- #: contact_form.php:3763 contact_form.php:3773
976
- #, fuzzy
977
- msgid "Language"
978
- msgstr "Bahasa"
 
 
979
 
980
  #~ msgid "Example: Sent from (IP address):\t127.0.0.1"
981
  #~ msgstr "Contoh: Dikirim dari (alamat IP): \\ t127.0.0.1"
2
  msgstr ""
3
  "Project-Id-Version: Contact Form\n"
4
  "Report-Msgid-Bugs-To: \n"
5
+ "POT-Creation-Date: 2019-02-25 16:27+0200\n"
6
+ "PO-Revision-Date: 2019-02-25 16:27+0200\n"
7
  "Last-Translator: Jordan Silaen <jordan.silaen@chameleonjohn.com>\n"
8
  "Language-Team: ChameleonJohn.com <jordan.silaen@chameleonjohn.com>\n"
9
  "Language: id_ID\n"
17
  "Plural-Forms: nplurals=2; plural=(n != 1);\n"
18
  "X-Poedit-SearchPath-0: .\n"
19
 
20
+ #: contact_form.php:39 contact_form.php:47 contact_form.php:647
21
+ #: includes/class-cntctfrm-settings.php:425
22
  msgid "Contact Form Settings"
23
  msgstr "Pengaturan Form kontak"
24
 
25
+ #: contact_form.php:48 contact_form.php:1619 contact_form.php:1633
26
+ #: includes/class-cntctfrm-settings.php:27
27
+ msgid "Settings"
28
+ msgstr "pengaturan"
29
+
30
+ #: contact_form.php:63 includes/class-cntctfrm-settings.php:483
31
+ #: includes/class-cntctfrm-settings.php:817
32
+ #: includes/class-cntctfrm-settings.php:998
33
+ #: includes/class-cntctfrm-settings.php:1513
34
+ msgid "Upgrade to Pro"
35
+ msgstr "Upgrade ke yang lebih baik"
36
 
37
+ #: contact_form.php:350 contact_form.php:1410 contact_form.php:1456
38
+ #: includes/class-cntctfrm-settings.php:574
39
+ #: includes/class-cntctfrm-settings.php:664
40
+ #: includes/class-cntctfrm-settings.php:1064
41
+ #: includes/class-cntctfrm-settings.php:1103
42
+ #: includes/class-cntctfrm-settings.php:1344
43
  msgid "Name"
44
  msgstr "Nama"
45
 
46
+ #: contact_form.php:351 contact_form.php:1417 contact_form.php:1462
47
+ #: includes/class-cntctfrm-settings.php:711
48
+ #: includes/class-cntctfrm-settings.php:1065
49
+ #: includes/class-cntctfrm-settings.php:1104
50
+ #: includes/class-cntctfrm-settings.php:1349
51
  msgid "Address"
52
  msgstr "Alamat"
53
 
54
+ #: contact_form.php:352 includes/class-cntctfrm-settings.php:727
55
+ #: includes/class-cntctfrm-settings.php:1066
56
+ #: includes/class-cntctfrm-settings.php:1105
57
  msgid "Email Address"
58
  msgstr "Alamat email"
59
 
60
+ #: contact_form.php:353 includes/class-cntctfrm-settings.php:747
61
+ #: includes/class-cntctfrm-settings.php:1067
62
+ #: includes/class-cntctfrm-settings.php:1106
63
  msgid "Phone number"
64
  msgstr "Nomor telepon"
65
 
66
+ #: contact_form.php:354 contact_form.php:1428 contact_form.php:1471
67
+ #: includes/class-cntctfrm-settings.php:763
68
+ #: includes/class-cntctfrm-settings.php:1068
69
+ #: includes/class-cntctfrm-settings.php:1107
70
+ #: includes/class-cntctfrm-settings.php:1364
71
  msgid "Subject"
72
  msgstr "Subyek"
73
 
74
+ #: contact_form.php:355 contact_form.php:1433 contact_form.php:1475
75
+ #: includes/class-cntctfrm-settings.php:787
76
+ #: includes/class-cntctfrm-settings.php:1069
77
+ #: includes/class-cntctfrm-settings.php:1108
78
+ #: includes/class-cntctfrm-settings.php:1368
79
  msgid "Message"
80
  msgstr "Pesan"
81
 
82
+ #: contact_form.php:356 includes/class-cntctfrm-settings.php:1070
83
+ #: includes/class-cntctfrm-settings.php:1109
84
+ #: includes/class-cntctfrm-settings.php:1373
85
  msgid "Attachment"
86
  msgstr "Lampiran"
87
 
88
+ #: contact_form.php:357
89
  msgid ""
90
  "Supported file types: HTML, TXT, CSS, GIF, PNG, JPEG, JPG, TIFF, BMP, AI, "
91
  "EPS, PS, CSV, RTF, PDF, DOC, DOCX, XLS, XLSX, ZIP, RAR, WAV, MP3, PPT."
93
  "Jenis file yang didukung: HTML, TXT, CSS, GIF, PNG, JPEG, JPG, TIFF, BMP, "
94
  "AI, EPS, PS, CSV, RTF, PDF, DOC, DOCX, XLS, XLSX, ZIP, RAR, WAV, MP3, PPT."
95
 
96
+ #: contact_form.php:358 includes/class-cntctfrm-settings.php:1072
97
+ #: includes/class-cntctfrm-settings.php:1111
98
  msgid "Send me a copy"
99
  msgstr "Kirimkan saya salinan"
100
 
101
+ #: contact_form.php:359 includes/class-cntctfrm-settings.php:1073
102
+ #: includes/class-cntctfrm-settings.php:1112
103
  msgid "I consent to having this site collect my personal data."
104
  msgstr ""
105
 
106
+ #: contact_form.php:360 includes/class-cntctfrm-settings.php:1074
107
+ #: includes/class-cntctfrm-settings.php:1113
108
  msgid "Submit"
109
  msgstr "Menyerahkan"
110
 
111
+ #: contact_form.php:361
112
  msgid "Your name is required."
113
  msgstr "Nama Anda diperlukan."
114
 
115
+ #: contact_form.php:362
116
  msgid "Address is required."
117
  msgstr "Alamat diperlukan."
118
 
119
+ #: contact_form.php:363
120
  msgid "A valid email address is required."
121
  msgstr "Sebuah alamat email yang valid diperlukan."
122
 
123
+ #: contact_form.php:364
124
  msgid "Phone number is required."
125
  msgstr "Nomor telepon diperlukan."
126
 
127
+ #: contact_form.php:365
128
  msgid "Subject is required."
129
  msgstr "Subjek diperlukan."
130
 
131
+ #: contact_form.php:366
132
  msgid "Message text is required."
133
  msgstr "Pesan teks diperlukan."
134
 
135
+ #: contact_form.php:367
136
  msgid "File format is not valid."
137
  msgstr "format file tidak valid."
138
 
139
+ #: contact_form.php:368
140
  msgid "File upload error."
141
  msgstr "Berkas kesalahan upload."
142
 
143
+ #: contact_form.php:369
144
  msgid "The file could not be uploaded."
145
  msgstr "file tidak bisa di-upload."
146
 
147
+ #: contact_form.php:370
148
  msgid "This file is too large."
149
  msgstr "File ini terlalu besar."
150
 
151
+ #: contact_form.php:371
152
  msgid "Please fill out the CAPTCHA."
153
  msgstr "Silahkan isi CAPTCHA."
154
 
155
+ #: contact_form.php:372
156
  msgid "Please make corrections below and try again."
157
  msgstr "Silakan membuat koreksi di bawah ini dan coba lagi."
158
 
159
+ #: contact_form.php:374
160
  msgid "Thank you for contacting us."
161
  msgstr "Terima kasih sudah menghubungi kami."
162
 
163
+ #: contact_form.php:651
164
+ msgid "NEW_FORM"
165
+ msgstr "NEW_FORM"
166
 
167
+ #: contact_form.php:652
168
  msgid ""
169
+ "If you want to create multiple contact forms, please install the Contact "
170
+ "Form Multi plugin."
171
  msgstr ""
172
+ "Jika Anda ingin membuat beberapa bentuk kontak, silahkan install plugin "
173
+ "Formulir Kontak multi."
174
 
175
+ #: contact_form.php:657
176
  msgid ""
177
+ "Contact Form plugin doesn't support your current version of Contact Form "
178
+ "Multi plugin. Please update Contact Form Multi plugin to version 1.2.6 or "
179
+ "higher."
180
  msgstr ""
 
 
181
 
182
+ #: contact_form.php:759
183
+ msgid "Sorry, email message could not be delivered."
184
+ msgstr "Maaf, pesan email tidak dapat disampaikan."
185
+
186
+ #: contact_form.php:1366 contact_form.php:1368
187
+ msgid "Sent from (ip address)"
188
+ msgstr "Dikirim dari (alamat ip)"
189
+
190
+ #: contact_form.php:1372 contact_form.php:1374
191
+ #: includes/class-cntctfrm-settings.php:1024
192
+ msgid "Date/Time"
193
+ msgstr "Tanggal Waktu"
194
+
195
+ #: contact_form.php:1378 contact_form.php:1380
196
+ #: includes/class-cntctfrm-settings.php:1025
197
+ msgid "Sent from (referer)"
198
+ msgstr "Dikirim dari (referer)"
199
+
200
+ #: contact_form.php:1384 contact_form.php:1386
201
+ #: includes/class-cntctfrm-settings.php:1026
202
+ msgid "Using (user agent)"
203
+ msgstr "Menggunakan (agen pengguna)"
204
+
205
+ #: contact_form.php:1396
206
+ msgid "Contact from"
207
+ msgstr "kontak dari"
208
+
209
+ #: contact_form.php:1401 contact_form.php:1450
210
+ msgid "Site"
211
+ msgstr "situs"
212
+
213
+ #: contact_form.php:1423 contact_form.php:1467
214
+ #: includes/class-cntctfrm-settings.php:598
215
+ msgid "Email"
216
+ msgstr "E-mail"
217
 
218
+ #: contact_form.php:1439 contact_form.php:1480
219
+ #: includes/class-cntctfrm-settings.php:1359
220
+ msgid "Phone Number"
221
+ msgstr "Nomor telepon"
222
+
223
+ #: contact_form.php:1562
224
+ msgid ""
225
+ "If you can see this MIME, it means that the MIME type is not supported by "
226
+ "your email client!"
227
+ msgstr ""
228
+ "Jika Anda dapat melihat MIME ini, itu berarti bahwa tipe MIME tidak didukung "
229
+ "oleh klien email Anda!"
230
+
231
+ #: contact_form.php:1634
232
+ msgid "FAQ"
233
+ msgstr "FAQ"
234
+
235
+ #: contact_form.php:1635
236
+ msgid "Support"
237
+ msgstr "Mendukung"
238
+
239
+ #: contact_form.php:1684
240
+ msgid "Are you sure that you want to delete this language data?"
241
+ msgstr "Apakah Anda yakin bahwa Anda ingin menghapus data bahasa ini?"
242
+
243
+ #: contact_form.php:1706
244
  #, fuzzy
245
+ msgid "Add multiple forms"
246
+ msgstr "Tambahkan beberapa bentuk"
247
+
248
+ #: contact_form.php:1706
249
  msgid ""
250
+ "Install Contact Form Multi plugin to create unlimited number of contact "
251
+ "forms."
252
  msgstr ""
253
+ "Instal Form Kontak multi plugin untuk membuat jumlah yang tidak terbatas "
254
+ "formulir kontak."
255
 
256
+ #: contact_form.php:1711
257
  #, fuzzy
258
+ msgid "Learn more"
259
+ msgstr "Belajarlah lagi"
260
 
261
+ #: contact_form.php:1715 includes/class-cntctfrm-settings.php:469
262
+ #: includes/class-cntctfrm-settings.php:987
263
+ #: includes/class-cntctfrm-settings.php:1272
264
+ msgid "Close"
265
+ msgstr "Dekat"
266
+
267
+ #: contact_form.php:1769
268
+ msgid "Error"
269
+ msgstr ""
270
+
271
+ #: contact_form.php:1769 contact_form.php:1771
272
+ msgid "Illegal language code"
273
+ msgstr ""
274
+
275
+ #: contact_form.php:1805 contact_form.php:1807
276
+ #: includes/class-cntctfrm-settings.php:1089
277
+ #: includes/class-cntctfrm-settings.php:1091
278
+ #: includes/class-cntctfrm-settings.php:1128
279
+ #: includes/class-cntctfrm-settings.php:1130
280
+ #: includes/class-cntctfrm-settings.php:1162
281
+ #: includes/class-cntctfrm-settings.php:1164
282
+ #: includes/class-cntctfrm-settings.php:1176
283
+ #: includes/class-cntctfrm-settings.php:1178
284
+ msgid "Use shortcode"
285
+ msgstr "Gunakan shortcode"
286
+
287
+ #: contact_form.php:1805 contact_form.php:1807
288
+ #: includes/class-cntctfrm-settings.php:1089
289
+ #: includes/class-cntctfrm-settings.php:1091
290
+ #: includes/class-cntctfrm-settings.php:1128
291
+ #: includes/class-cntctfrm-settings.php:1130
292
+ #: includes/class-cntctfrm-settings.php:1162
293
+ #: includes/class-cntctfrm-settings.php:1164
294
+ #: includes/class-cntctfrm-settings.php:1176
295
+ #: includes/class-cntctfrm-settings.php:1178
296
+ msgid "for this language"
297
+ msgstr "untuk bahasa ini"
298
+
299
+ #: contact_form.php:1955
300
+ msgid "Close notice"
301
+ msgstr "Tutup pemberitahuan"
302
+
303
+ #: contact_form.php:1960
304
  #, fuzzy
305
+ msgid "allows to store your messages to the database."
306
+ msgstr "memungkinkan untuk menyimpan pesan Anda ke database."
307
 
308
+ #: contact_form.php:1961
309
+ msgid "Manage messages that have been sent from your website."
310
+ msgstr "Mengelola pesan yang telah dikirim dari situs web Anda."
311
 
312
+ #: contact_form.php:1964
313
+ msgid "Learn More"
314
+ msgstr "Belajarlah lagi"
315
 
316
+ #: contact_form.php:2024
317
+ #, fuzzy
318
+ msgid "Contact form"
319
+ msgstr "Formulir kontak"
320
 
321
+ #: contact_form.php:2037 contact_form.php:2047
322
  #, fuzzy
323
+ msgid "Language"
324
+ msgstr "Bahasa"
325
 
326
+ #: includes/class-cntctfrm-settings.php:28
327
+ #: includes/class-cntctfrm-settings.php:546
328
+ msgid "Additional Settings"
329
+ msgstr ""
330
+
331
+ #: includes/class-cntctfrm-settings.php:29
332
+ #: includes/class-cntctfrm-settings.php:1198
333
  msgid "Appearance"
334
  msgstr "Penampilan"
335
 
336
+ #: includes/class-cntctfrm-settings.php:30
337
+ msgid "Misc"
338
+ msgstr ""
339
 
340
+ #: includes/class-cntctfrm-settings.php:31
341
+ msgid "License Key"
342
+ msgstr ""
343
 
344
+ #: includes/class-cntctfrm-settings.php:32
345
+ msgid "Custom Code"
346
+ msgstr ""
 
347
 
348
+ #: includes/class-cntctfrm-settings.php:99
349
+ msgid "Please enable JavaScript in your browser."
350
+ msgstr ""
351
 
352
+ #: includes/class-cntctfrm-settings.php:101
353
+ #, php-format
354
  msgid ""
355
+ "Contact Form plugin requires PHP %s or higher. Please contact your hosting "
356
+ "provider to upgrade PHP version."
357
  msgstr ""
 
 
358
 
359
+ #: includes/class-cntctfrm-settings.php:347
 
360
  msgid ""
361
+ "Email 'FROM' field option was changed, which may cause email messages being "
362
+ "moved to the spam folder or email delivery failures."
363
  msgstr ""
364
+ "Email 'DARI' pilihan lapangan berubah, yang dapat menyebabkan pesan email "
365
+ "dipindahkan ke folder spam atau email kegagalan pengiriman."
366
 
367
+ #: includes/class-cntctfrm-settings.php:357
 
368
  msgid ""
369
+ "If the 'Redirect to page' option is selected then the URL field should be in "
370
+ "the following format"
 
 
371
  msgstr ""
372
+ "Jika 'Redirect ke halaman' opsi yang dipilih maka bidang URL harus dalam "
373
+ "format berikut"
 
 
374
 
375
+ #: includes/class-cntctfrm-settings.php:364
376
+ #, fuzzy
377
+ msgid "Such user does not exist."
378
+ msgstr "pengguna tersebut tidak ada."
379
+
380
+ #: includes/class-cntctfrm-settings.php:374
381
+ #, fuzzy
382
+ msgid ""
383
+ "Please enter a valid email address in the 'Use this email address' field."
384
+ msgstr ""
385
+ "Masukkan alamat email yang valid dalam 'Gunakan alamat email ini' lapangan."
386
+
387
+ #: includes/class-cntctfrm-settings.php:382
388
+ #, fuzzy
389
+ msgid "Please enter a valid email address in the 'FROM' field."
390
+ msgstr "Masukkan alamat email yang valid di bidang 'DARI'."
391
+
392
+ #: includes/class-cntctfrm-settings.php:402
393
+ msgid "Settings saved."
394
+ msgstr "Pengaturan disimpan."
395
+
396
+ #: includes/class-cntctfrm-settings.php:404
397
+ #, fuzzy
398
+ msgid "Settings are not saved."
399
+ msgstr "Setelan tidak disimpan."
400
+
401
+ #: includes/class-cntctfrm-settings.php:429
402
  msgid ""
403
  "If you leave the fields empty, the messages will be sent to the email "
404
  "address specified during registration."
406
  "Jika Anda meninggalkan bidang kosong, pesan akan dikirim ke alamat email "
407
  "yang ditentukan saat pendaftaran."
408
 
409
+ #: includes/class-cntctfrm-settings.php:432
410
  #, fuzzy
411
  msgid "The user's email address"
412
  msgstr "Alamat email pengguna"
413
 
414
+ #: includes/class-cntctfrm-settings.php:437
415
  #, fuzzy
416
  msgid "Select a username"
417
  msgstr "Memilih nama pengguna"
418
 
419
+ #: includes/class-cntctfrm-settings.php:450
420
  #, fuzzy
421
  msgid ""
422
  "Select a username of the person who should get the messages from the contact "
425
  "Pilih nama pengguna dari orang yang harus mendapatkan pesan dari formulir "
426
  "kontak."
427
 
428
+ #: includes/class-cntctfrm-settings.php:455
429
  #, fuzzy
430
  msgid "Use this email address"
431
  msgstr "Gunakan alamat email ini"
432
 
433
+ #: includes/class-cntctfrm-settings.php:460
434
  #, fuzzy
435
  msgid "Enter the email address for receiving messages"
436
  msgstr "Masukkan alamat email untuk menerima pesan"
437
 
438
+ #: includes/class-cntctfrm-settings.php:473
 
 
 
 
 
439
  #, fuzzy
440
  msgid "Add department selectbox to the contact form"
441
  msgstr "Menambahkan departemen selectbox ke formulir kontak"
442
 
443
+ #: includes/class-cntctfrm-settings.php:492
 
 
 
 
 
 
 
 
 
 
 
444
  msgid "Save emails to the database"
445
  msgstr "Menyimpan email ke database"
446
 
447
+ #: includes/class-cntctfrm-settings.php:504
448
+ #: includes/class-cntctfrm-settings.php:518
449
+ #: includes/class-cntctfrm-settings.php:525
450
  msgid "Using"
451
  msgstr "menggunakan"
452
 
453
+ #: includes/class-cntctfrm-settings.php:510
454
+ #: includes/class-cntctfrm-settings.php:889
455
+ #: includes/class-cntctfrm-settings.php:930
456
+ #: includes/class-cntctfrm-settings.php:965
457
  msgid "Please activate the appropriate option on"
458
  msgstr "Silakan aktifkan opsi yang sesuai pada"
459
 
460
+ #: includes/class-cntctfrm-settings.php:513
461
+ #: includes/class-cntctfrm-settings.php:892
462
+ #: includes/class-cntctfrm-settings.php:933
463
+ #: includes/class-cntctfrm-settings.php:968
464
  #, fuzzy
465
  msgid "settings page"
466
  msgstr "halaman pengaturan"
467
 
468
+ #: includes/class-cntctfrm-settings.php:519
469
+ #: includes/class-cntctfrm-settings.php:899
470
+ #: includes/class-cntctfrm-settings.php:941
471
+ #: includes/class-cntctfrm-settings.php:975
472
  #, fuzzy
473
  msgid "Activate"
474
  msgstr "Mengaktifkan"
475
 
476
+ #: includes/class-cntctfrm-settings.php:526
477
+ #: includes/class-cntctfrm-settings.php:908
478
+ #: includes/class-cntctfrm-settings.php:947
479
+ #: includes/class-cntctfrm-settings.php:980
480
  msgid "Download"
481
  msgstr "Download"
482
 
483
+ #: includes/class-cntctfrm-settings.php:551
484
  msgid "Sending method"
485
  msgstr "metode pengiriman"
486
 
487
+ #: includes/class-cntctfrm-settings.php:556
488
  msgid "Wp-mail"
489
  msgstr "Wp-mail"
490
 
491
+ #: includes/class-cntctfrm-settings.php:557
492
  #, fuzzy
493
  msgid "You can use the Wordpress wp_mail function for mailing"
494
  msgstr "Anda dapat menggunakan fungsi Wordpress wp_mail untuk mailing"
495
 
496
+ #: includes/class-cntctfrm-settings.php:562
497
  msgid "Mail"
498
  msgstr "Surat"
499
 
500
+ #: includes/class-cntctfrm-settings.php:563
501
  #, fuzzy
502
  msgid "You can use the PHP mail function for mailing"
503
  msgstr "Anda dapat menggunakan fungsi PHP mail untuk mailing"
504
 
505
+ #: includes/class-cntctfrm-settings.php:569
506
  msgid "'FROM' field"
507
  msgstr "'DARI' lapangan"
508
 
509
+ #: includes/class-cntctfrm-settings.php:585
510
  msgid "User name"
511
  msgstr "Nama pengguna"
512
 
513
+ #: includes/class-cntctfrm-settings.php:587
514
  msgid ""
515
  "The name of the user who fills the form will be used in the field 'From'."
516
  msgstr "Nama pengguna yang mengisi form akan digunakan dalam bidang 'Dari'."
517
 
518
+ #: includes/class-cntctfrm-settings.php:609
 
 
 
 
519
  msgid "User email"
520
  msgstr "email pengguna"
521
 
522
+ #: includes/class-cntctfrm-settings.php:611
523
  msgid ""
524
  "The email address of the user who fills the form will be used in the field "
525
  "'From'."
526
  msgstr ""
527
  "Alamat email pengguna yang mengisi form akan digunakan dalam bidang 'Dari'."
528
 
529
+ #: includes/class-cntctfrm-settings.php:620
530
  msgid ""
531
  "If this option is changed, email messages may be moved to the spam folder or "
532
  "email delivery failures may occur."
534
  "Jika opsi ini berubah, pesan email mungkin akan dipindahkan ke folder spam "
535
  "atau email kegagalan pengiriman dapat terjadi."
536
 
537
+ #: includes/class-cntctfrm-settings.php:629
538
  msgid "Required symbol"
539
  msgstr "simbol diperlukan"
540
 
541
+ #: includes/class-cntctfrm-settings.php:639
542
  msgid "Fields"
543
  msgstr "Fields"
544
 
545
+ #: includes/class-cntctfrm-settings.php:640
546
+ #: includes/class-cntctfrm-settings.php:667
547
+ #: includes/class-cntctfrm-settings.php:694
548
+ #: includes/class-cntctfrm-settings.php:714
549
+ #: includes/class-cntctfrm-settings.php:750
550
+ #: includes/class-cntctfrm-settings.php:832
551
  msgid "Used"
552
  msgstr "Bekas"
553
 
554
+ #: includes/class-cntctfrm-settings.php:641
555
+ #: includes/class-cntctfrm-settings.php:656
556
+ #: includes/class-cntctfrm-settings.php:671
557
+ #: includes/class-cntctfrm-settings.php:698
558
+ #: includes/class-cntctfrm-settings.php:718
559
+ #: includes/class-cntctfrm-settings.php:754
560
+ #: includes/class-cntctfrm-settings.php:767
561
+ #: includes/class-cntctfrm-settings.php:791
562
  msgid "Required"
563
  msgstr "Wajib"
564
 
565
+ #: includes/class-cntctfrm-settings.php:643
566
+ #: includes/class-cntctfrm-settings.php:676
567
+ #: includes/class-cntctfrm-settings.php:733
568
+ #: includes/class-cntctfrm-settings.php:772
569
+ #: includes/class-cntctfrm-settings.php:796
570
  msgid "Visible"
571
  msgstr "Terlihat"
572
 
573
+ #: includes/class-cntctfrm-settings.php:644
574
+ #: includes/class-cntctfrm-settings.php:680
575
+ #: includes/class-cntctfrm-settings.php:737
576
+ #: includes/class-cntctfrm-settings.php:776
577
+ #: includes/class-cntctfrm-settings.php:800
578
  msgid "Disabled for editing"
579
  msgstr "Dinonaktifkan untuk mengedit"
580
 
581
+ #: includes/class-cntctfrm-settings.php:645
582
+ #: includes/class-cntctfrm-settings.php:704
583
+ #: includes/class-cntctfrm-settings.php:780
584
+ #: includes/class-cntctfrm-settings.php:804
585
  msgid "Field's default value"
586
  msgstr "Nilai default Field"
587
 
588
+ #: includes/class-cntctfrm-settings.php:652
589
  msgid "Department selectbox"
590
  msgstr "Departemen selectbox"
591
 
592
+ #: includes/class-cntctfrm-settings.php:684
593
  msgid "Use User's name as a default value if the user is logged in."
594
  msgstr "Gunakan Nama Pengguna sebagai nilai default jika pengguna login."
595
 
596
+ #: includes/class-cntctfrm-settings.php:685
597
+ #: includes/class-cntctfrm-settings.php:742
598
  msgid ""
599
  "'Visible' and 'Disabled for editing' options will be applied only to logged-"
600
  "in users."
602
  "'Visible' dan 'Dinonaktifkan untuk mengedit' pilihan akan diterapkan hanya "
603
  "untuk log-in pengguna."
604
 
605
+ #: includes/class-cntctfrm-settings.php:691
606
  msgid "Location selectbox"
607
  msgstr "lokasi selectbox"
608
 
609
+ #: includes/class-cntctfrm-settings.php:741
610
  msgid "Use User's email as a default value if the user is logged in."
611
  msgstr "Gunakan email Pengguna sebagai nilai default jika pengguna login."
612
 
613
+ #: includes/class-cntctfrm-settings.php:825
614
  msgid "Attachment block"
615
  msgstr "blok lampiran"
616
 
617
+ #: includes/class-cntctfrm-settings.php:827
618
  msgid "Users can attach the following file formats"
619
  msgstr "Pengguna dapat melampirkan format file berikut"
620
 
621
+ #: includes/class-cntctfrm-settings.php:845
622
  msgid "Add to the form"
623
  msgstr "Tambahkan ke form"
624
 
625
+ #: includes/class-cntctfrm-settings.php:850
626
  msgid "Tips below the Attachment"
627
  msgstr "Tips di bawah ini Lampiran"
628
 
629
+ #: includes/class-cntctfrm-settings.php:857
630
  msgid "'Send me a copy' block"
631
  msgstr "'Kirimkan saya salinan' block"
632
 
633
+ #: includes/class-cntctfrm-settings.php:864
634
  msgid "GDPR Compliance"
635
  msgstr ""
636
 
637
+ #: includes/class-cntctfrm-settings.php:869
638
  msgid "Link to Privacy Policy Page"
639
  msgstr ""
640
 
641
+ #: includes/class-cntctfrm-settings.php:873
642
  msgid "Text for Privacy Policy Link"
643
  msgstr ""
644
 
645
+ #: includes/class-cntctfrm-settings.php:901
646
  #, fuzzy
647
  msgid "Activate for network"
648
  msgstr "Aktifkan untuk jaringan"
649
 
650
+ #: includes/class-cntctfrm-settings.php:991
651
  msgid "Agreement checkbox"
652
  msgstr "kotak centang perjanjian"
653
 
654
+ #: includes/class-cntctfrm-settings.php:991
655
  msgid "Required checkbox for submitting the form"
656
  msgstr "checkbox diperlukan untuk mengirimkan formulir"
657
 
658
+ #: includes/class-cntctfrm-settings.php:992
659
  msgid "Optional checkbox"
660
  msgstr "kotak centang opsional"
661
 
662
+ #: includes/class-cntctfrm-settings.php:992
663
  msgid "Optional checkbox, the results of which will be displayed in email"
664
  msgstr "Opsional kotak centang, yang hasilnya akan ditampilkan dalam email"
665
 
666
+ #: includes/class-cntctfrm-settings.php:1007
667
  msgid "Delete an attachment file from the server after the email is sent"
668
  msgstr "Hapus file lampiran dari server setelah email tersebut dikirim"
669
 
670
+ #: includes/class-cntctfrm-settings.php:1013
671
  msgid "Email in HTML format sending"
672
  msgstr "Email dalam format HTML mengirim"
673
 
674
+ #: includes/class-cntctfrm-settings.php:1017
675
  msgid "Display additional info in the email"
676
  msgstr "Menampilkan info tambahan dalam email"
677
 
678
+ #: includes/class-cntctfrm-settings.php:1023
679
  #, fuzzy
680
  msgid "Sent from (IP address)"
681
  msgstr "Dikirim dari (alamat IP)"
682
 
683
+ #: includes/class-cntctfrm-settings.php:1023
684
  msgid "Example: Sent from (IP address): 127.0.0.1"
685
  msgstr ""
686
 
687
+ #: includes/class-cntctfrm-settings.php:1024
 
 
 
 
688
  msgid "Example: Date/Time: August 19, 2013 8:50 pm"
689
  msgstr ""
690
 
691
+ #: includes/class-cntctfrm-settings.php:1025
 
 
 
 
692
  msgid ""
693
  "Example: Sent from (referer): https://bestwebsoft.com/contacts/contact-us/"
694
  msgstr ""
695
 
696
+ #: includes/class-cntctfrm-settings.php:1026
 
 
 
 
697
  msgid ""
698
  "Example: Using (user agent): Mozilla/5.0 (Windows NT 6.2; WOW64) "
699
  "AppleWebKit/537.36 (KHTML, like Gecko) Chrome/28.0.1500.95 Safari/537.36"
700
  msgstr ""
701
 
702
+ #: includes/class-cntctfrm-settings.php:1031
703
  msgid "Language settings for the field names in the form"
704
  msgstr "Pengaturan bahasa untuk nama field dalam bentuk"
705
 
706
+ #: includes/class-cntctfrm-settings.php:1040
707
  msgid "Add a language"
708
  msgstr "Menambahkan bahasa"
709
 
710
+ #: includes/class-cntctfrm-settings.php:1044
711
  msgid "Change the names of the contact form fields and error messages"
712
  msgstr "Mengubah nama-nama kolom formulir kontak dan pesan kesalahan"
713
 
714
+ #: includes/class-cntctfrm-settings.php:1049
715
+ #: includes/class-cntctfrm-settings.php:1147
716
+ #: includes/class-cntctfrm-settings.php:1252
 
 
717
  msgid "Default"
718
  msgstr "kegagalan"
719
 
720
+ #: includes/class-cntctfrm-settings.php:1062
721
+ #: includes/class-cntctfrm-settings.php:1101
722
  msgid "click to expand/hide the list"
723
  msgstr "klik untuk memperluas / menyembunyikan daftar"
724
 
725
+ #: includes/class-cntctfrm-settings.php:1071
726
+ #: includes/class-cntctfrm-settings.php:1110
727
  msgid "Tips below the Attachment block"
728
  msgstr "Tips di bawah ini blok Lampiran"
729
 
730
+ #: includes/class-cntctfrm-settings.php:1075
731
+ #: includes/class-cntctfrm-settings.php:1114
732
  msgid "Error message for the Name field"
733
  msgstr "pesan kesalahan untuk bidang Nama"
734
 
735
+ #: includes/class-cntctfrm-settings.php:1076
736
+ #: includes/class-cntctfrm-settings.php:1115
737
  msgid "Error message for the Address field"
738
  msgstr "pesan kesalahan untuk bidang Alamat"
739
 
740
+ #: includes/class-cntctfrm-settings.php:1077
741
+ #: includes/class-cntctfrm-settings.php:1116
742
  msgid "Error message for the Email field"
743
  msgstr "pesan kesalahan untuk bidang Email"
744
 
745
+ #: includes/class-cntctfrm-settings.php:1078
746
+ #: includes/class-cntctfrm-settings.php:1117
747
  msgid "Error message for the Phone field"
748
  msgstr "pesan kesalahan untuk bidang Telepon"
749
 
750
+ #: includes/class-cntctfrm-settings.php:1079
751
+ #: includes/class-cntctfrm-settings.php:1118
752
  msgid "Error message for the Subject field"
753
  msgstr "pesan kesalahan untuk kolom Subyek"
754
 
755
+ #: includes/class-cntctfrm-settings.php:1080
756
+ #: includes/class-cntctfrm-settings.php:1119
757
  msgid "Error message for the Message field"
758
  msgstr "pesan kesalahan untuk bidang Pesan"
759
 
760
+ #: includes/class-cntctfrm-settings.php:1081
761
+ #: includes/class-cntctfrm-settings.php:1120
762
  msgid "Error message about the file type for the Attachment field"
763
  msgstr "pesan kesalahan tentang jenis file untuk bidang Lampiran"
764
 
765
+ #: includes/class-cntctfrm-settings.php:1082
766
+ #: includes/class-cntctfrm-settings.php:1121
767
  msgid ""
768
  "Error message while uploading a file for the Attachment field to the server"
769
  msgstr "pesan kesalahan saat mengunggah file untuk bidang Lampiran ke server"
770
 
771
+ #: includes/class-cntctfrm-settings.php:1083
772
+ #: includes/class-cntctfrm-settings.php:1122
773
  msgid "Error message while moving the file for the Attachment field"
774
  msgstr "pesan kesalahan saat memindahkan file untuk bidang Lampiran"
775
 
776
+ #: includes/class-cntctfrm-settings.php:1084
777
+ #: includes/class-cntctfrm-settings.php:1123
778
  msgid "Error message when file size limit for the Attachment field is exceeded"
779
  msgstr "Pesan galat saat batas ukuran file untuk bidang Lampiran terlampaui"
780
 
781
+ #: includes/class-cntctfrm-settings.php:1085
782
+ #: includes/class-cntctfrm-settings.php:1124
783
  msgid "Error message for the Captcha field"
784
  msgstr "pesan kesalahan untuk bidang Captcha"
785
 
786
+ #: includes/class-cntctfrm-settings.php:1086
787
+ #: includes/class-cntctfrm-settings.php:1125
788
  msgid "Error message for the whole form"
789
  msgstr "pesan kesalahan untuk seluruh bentuk"
790
 
791
+ #: includes/class-cntctfrm-settings.php:1138
 
 
 
 
 
 
 
 
 
 
 
 
 
 
792
  #, fuzzy
793
  msgid "Use the changed names of the contact form fields in the email"
794
  msgstr "Menggunakan nama berubah dari kolom formulir kontak di email"
795
 
796
+ #: includes/class-cntctfrm-settings.php:1144
797
  msgid "Action after email is sent"
798
  msgstr "Tindakan setelah email dikirim"
799
 
800
+ #: includes/class-cntctfrm-settings.php:1146
801
  msgid "Display text"
802
  msgstr "menampilkan teks"
803
 
804
+ #: includes/class-cntctfrm-settings.php:1160
805
+ #: includes/class-cntctfrm-settings.php:1174
806
  msgid "Text"
807
  msgstr "Teks"
808
 
809
+ #: includes/class-cntctfrm-settings.php:1185
810
  msgid "Redirect to the page"
811
  msgstr "Redirect ke halaman"
812
 
813
+ #: includes/class-cntctfrm-settings.php:1186
814
  msgid "Url"
815
  msgstr "url"
816
 
817
+ #: includes/class-cntctfrm-settings.php:1206
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
818
  #, php-format
819
  msgid ""
820
+ "Please enable JavaScript to change '%s', '%s', '%s', '%s' options and for "
821
+ "fields sorting."
822
  msgstr ""
 
 
823
 
824
+ #: includes/class-cntctfrm-settings.php:1207
825
+ #: includes/class-cntctfrm-settings.php:1224
826
  msgid "Form layout"
827
  msgstr "tata letak bentuk"
828
 
829
+ #: includes/class-cntctfrm-settings.php:1208
830
+ #: includes/class-cntctfrm-settings.php:1291
831
+ #, fuzzy
832
+ msgid "Labels position"
833
+ msgstr "posisi label"
834
+
835
+ #: includes/class-cntctfrm-settings.php:1209
836
+ #: includes/class-cntctfrm-settings.php:1309
837
+ msgid "Labels align"
838
+ msgstr "label menyelaraskan"
839
+
840
+ #: includes/class-cntctfrm-settings.php:1210
841
+ #: includes/class-cntctfrm-settings.php:1236
842
  #, fuzzy
843
  msgid "Submit position"
844
  msgstr "Kirim posisi"
845
 
846
+ #: includes/class-cntctfrm-settings.php:1211
847
+ #: includes/class-cntctfrm-settings.php:1340
848
+ msgid "Add tooltips"
849
+ msgstr "menambahkan tooltips"
850
+
851
+ #: includes/class-cntctfrm-settings.php:1212
852
+ #: includes/class-cntctfrm-settings.php:1381
853
+ msgid "Style options"
854
+ msgstr "pilihan gaya"
855
+
856
+ #: includes/class-cntctfrm-settings.php:1228
857
  msgid "One column"
858
  msgstr "satu kolom"
859
 
860
+ #: includes/class-cntctfrm-settings.php:1231
861
  msgid "Two columns"
862
  msgstr "dua kolom"
863
 
864
+ #: includes/class-cntctfrm-settings.php:1240
865
+ #: includes/class-cntctfrm-settings.php:1280
866
+ #: includes/class-cntctfrm-settings.php:1298
867
+ #: includes/class-cntctfrm-settings.php:1313
868
  msgid "Left"
869
  msgstr "Kiri"
870
 
871
+ #: includes/class-cntctfrm-settings.php:1243
872
+ #: includes/class-cntctfrm-settings.php:1286
873
+ #: includes/class-cntctfrm-settings.php:1301
874
+ #: includes/class-cntctfrm-settings.php:1319
875
  msgid "Right"
876
  msgstr "Kanan"
877
 
878
+ #: includes/class-cntctfrm-settings.php:1248
879
  msgid "Width"
880
  msgstr ""
881
 
882
+ #: includes/class-cntctfrm-settings.php:1256
883
  msgid "Custom"
884
  msgstr ""
885
 
886
+ #: includes/class-cntctfrm-settings.php:1263
887
  msgid "px"
888
  msgstr ""
889
 
890
+ #: includes/class-cntctfrm-settings.php:1276
891
  msgid "Form align"
892
  msgstr "Form menyelaraskan"
893
 
894
+ #: includes/class-cntctfrm-settings.php:1283
895
+ #: includes/class-cntctfrm-settings.php:1316
896
  msgid "Center"
897
  msgstr "Pusat"
898
 
899
+ #: includes/class-cntctfrm-settings.php:1295
 
 
 
 
 
900
  msgid "Top"
901
  msgstr "Puncak"
902
 
903
+ #: includes/class-cntctfrm-settings.php:1304
904
  msgid "Bottom"
905
  msgstr "Bawah"
906
 
907
+ #: includes/class-cntctfrm-settings.php:1324
 
 
 
 
908
  msgid "Errors output"
909
  msgstr "kesalahan keluaran"
910
 
911
+ #: includes/class-cntctfrm-settings.php:1327
912
  msgid "Display error messages"
913
  msgstr "pesan kesalahan display"
914
 
915
+ #: includes/class-cntctfrm-settings.php:1328
916
  msgid "Color of the input field errors."
917
  msgstr "Warna kesalahan field input."
918
 
919
+ #: includes/class-cntctfrm-settings.php:1329
920
  msgid "Display error messages & color of the input field errors"
921
  msgstr "pesan kesalahan layar & warna kesalahan field input"
922
 
923
+ #: includes/class-cntctfrm-settings.php:1334
924
  msgid "Add placeholder to the input blocks"
925
  msgstr "Menambahkan placeholder ke blok masukan"
926
 
927
+ #: includes/class-cntctfrm-settings.php:1354
 
 
 
 
928
  msgid "Email address"
929
  msgstr "Alamat email"
930
 
931
+ #: includes/class-cntctfrm-settings.php:1385
 
 
 
 
 
 
 
 
932
  msgid "Text color"
933
  msgstr "Warna teks"
934
 
935
+ #: includes/class-cntctfrm-settings.php:1393
936
  msgid "Label text color"
937
  msgstr "Warna teks Label"
938
 
939
+ #: includes/class-cntctfrm-settings.php:1402
940
  msgid "Placeholder color"
941
  msgstr "warna placeholder"
942
 
943
+ #: includes/class-cntctfrm-settings.php:1407
944
  msgid "Errors color"
945
  msgstr "warna kesalahan"
946
 
947
+ #: includes/class-cntctfrm-settings.php:1415
948
  msgid "Error text color"
949
  msgstr "Warna teks kesalahan"
950
 
951
+ #: includes/class-cntctfrm-settings.php:1423
952
  msgid "Background color of the input field errors"
953
  msgstr "warna latar belakang kesalahan field input"
954
 
955
+ #: includes/class-cntctfrm-settings.php:1431
956
  msgid "Border color of the input field errors"
957
  msgstr "warna perbatasan kesalahan field input"
958
 
959
+ #: includes/class-cntctfrm-settings.php:1439
960
  msgid "Placeholder color of the input field errors"
961
  msgstr "warna placeholder kesalahan field input"
962
 
963
+ #: includes/class-cntctfrm-settings.php:1444
964
  msgid "Input fields"
965
  msgstr "field input"
966
 
967
+ #: includes/class-cntctfrm-settings.php:1452
968
  msgid "Input fields background color"
969
  msgstr "Input field warna latar belakang"
970
 
971
+ #: includes/class-cntctfrm-settings.php:1460
972
  msgid "Text fields color"
973
  msgstr "Teks ladang warna"
974
 
975
+ #: includes/class-cntctfrm-settings.php:1464
976
  msgid "Border width in px, numbers only"
977
  msgstr "lebar perbatasan di px, angka saja"
978
 
979
+ #: includes/class-cntctfrm-settings.php:1472
980
+ #: includes/class-cntctfrm-settings.php:1505
981
  msgid "Border color"
982
  msgstr "warna perbatasan"
983
 
984
+ #: includes/class-cntctfrm-settings.php:1477
985
  msgid "Submit button"
986
  msgstr "tombol Submit"
987
 
988
+ #: includes/class-cntctfrm-settings.php:1481
989
  msgid "Width in px, numbers only"
990
  msgstr "Lebar di px, angka saja"
991
 
992
+ #: includes/class-cntctfrm-settings.php:1489
993
  msgid "Button color"
994
  msgstr "warna tombol"
995
 
996
+ #: includes/class-cntctfrm-settings.php:1497
997
  msgid "Button text color"
998
  msgstr "Warna teks tombol"
999
 
1000
+ #: includes/class-cntctfrm-settings.php:1524
1001
  #, fuzzy
1002
  msgid "Contact Form | Preview"
1003
  msgstr "Hubungi Formulir | Preview"
1004
 
1005
+ #: includes/class-cntctfrm-settings.php:1525
1006
  msgid "Drag the necessary field to sort fields."
1007
  msgstr "Tarik bidang yang diperlukan untuk memilah bidang."
1008
 
1009
+ #: includes/class-cntctfrm-settings.php:1772
1010
+ msgid "Contact Form Shortcode"
 
 
 
1011
  msgstr ""
 
 
 
 
 
 
1012
 
1013
+ #: includes/class-cntctfrm-settings.php:1775
1014
+ msgid "Add Contact Form to your page or post using the following shortcode:"
1015
+ msgstr ""
1016
 
1017
+ #~ msgid "If you upgrade to Pro version all your settings will be saved."
1018
+ #~ msgstr ""
1019
+ #~ "Jika Anda meng-upgrade ke versi Pro semua pengaturan Anda akan disimpan."
1020
 
1021
+ #, fuzzy
1022
+ #~ msgid ""
1023
+ #~ "If you would like to add the Contact Form to your website, just copy and "
1024
+ #~ "paste this shortcode to your post or page or widget"
1025
+ #~ msgstr ""
1026
+ #~ "Jika Anda ingin menambahkan Formulir Kontak ke website Anda, hanya copy "
1027
+ #~ "dan paste shortcode ini untuk posting atau halaman atau widget"
1028
 
1029
+ #~ msgid "Save Changes"
1030
+ #~ msgstr "Simpan perubahan"
 
 
 
 
 
1031
 
1032
+ #~ msgid "Contact Form"
1033
+ #~ msgstr "formulir kontak"
 
1034
 
1035
+ #~ msgid "All plugin settings were restored."
1036
+ #~ msgstr "Semua pengaturan Plugin dipulihkan. "
 
1037
 
1038
+ #~ msgid "How to Use Step-by-step Instruction"
1039
+ #~ msgstr "Cara Menggunakan Langkah-demi-langkah Instruksi"
 
1040
 
 
1041
  #, fuzzy
1042
+ #~ msgid "Additional settings"
1043
+ #~ msgstr "pengaturan tambahan"
1044
 
1045
+ #~ msgid "Custom code"
1046
+ #~ msgstr "kode kustom"
 
 
 
 
 
1047
 
1048
+ #~ msgid "Go PRO"
1049
+ #~ msgstr "Go PRO"
 
 
1050
 
1051
+ #, fuzzy
1052
+ #~ msgid "Notice"
1053
+ #~ msgstr "Melihat"
1054
 
1055
+ #, fuzzy
1056
+ #~ msgid ""
1057
+ #~ "If you would like to add a Contact Form to your page or post, please use "
1058
+ #~ "%s button"
1059
+ #~ msgstr ""
1060
+ #~ "Jika Anda ingin menambahkan Formulir Kontak ke halaman Anda atau posting, "
1061
+ #~ "silakan gunakan %s tombol"
1062
 
1063
+ #~ msgid ""
1064
+ #~ "You can add the Contact Form to your page or post by clicking on %s "
1065
+ #~ "button in the content edit block using the Visual mode. If the button "
1066
+ #~ "isn't displayed, please use the shortcode %s or %s where * stands for "
1067
+ #~ "Contact Form language."
1068
+ #~ msgstr ""
1069
+ #~ "Anda dapat menambahkan Form Kontak ke halaman Anda atau posting dengan "
1070
+ #~ "mengklik %s tombol di blok mengedit konten menggunakan modus Visual. Jika "
1071
+ #~ "tombol tidak ditampilkan, gunakan shortcode %s atau %s mana * singkatan "
1072
+ #~ "bahasa Form Kontak."
1073
 
1074
+ #~ msgid "Add field 'Reply-To' to the email header"
1075
+ #~ msgstr "Menambahkan field 'Reply-To' ke header email"
 
 
1076
 
1077
+ #~ msgid "Field 'Reply-To' will be initialized by user email"
1078
+ #~ msgstr "'Reply-To' lapangan akan diawali dengan email pengguna"
 
1079
 
1080
+ #~ msgid "Auto Response"
1081
+ #~ msgstr "Respon otomatis"
 
1082
 
1083
+ #~ msgid ""
1084
+ #~ "You can use %%NAME%% to display data from the email field and %%MESSAGE%% "
1085
+ #~ "to display data from the Message field, as well as %%SITENAME%% to "
1086
+ #~ "display blog name."
1087
+ #~ msgstr ""
1088
+ #~ "Anda dapat menggunakan %%NAME%% untuk menampilkan data dari lapangan "
1089
+ #~ "email dan %%MESSAGE%% untuk menampilkan data dari lapangan Pesan, serta %"
1090
+ #~ "%SITENAME%% untuk menampilkan nama blog."
1091
 
1092
+ #~ msgid ""
1093
+ #~ "Please enable JavaScript to change '%s', '%s' options and for fields "
1094
+ #~ "sorting."
1095
+ #~ msgstr ""
1096
+ #~ "Silahkan aktifkan JavaScript untuk mengubah '%s', '%s' pilihan dan untuk "
1097
+ #~ "bidang penyortiran."
1098
 
1099
  #~ msgid "Example: Sent from (IP address):\t127.0.0.1"
1100
  #~ msgstr "Contoh: Dikirim dari (alamat IP): \\ t127.0.0.1"
languages/contact-form-plugin-ja.mo CHANGED
Binary file
languages/contact-form-plugin-ja.po CHANGED
@@ -2,8 +2,8 @@ msgid ""
2
  msgstr ""
3
  "Project-Id-Version: Contact Form\n"
4
  "Report-Msgid-Bugs-To: \n"
5
- "POT-Creation-Date: 2018-05-16 14:26+0300\n"
6
- "PO-Revision-Date: 2018-05-16 14:26+0300\n"
7
  "Last-Translator: plugin@bestwebsoft.com <plugin@bestwebsoft.com>\n"
8
  "Language-Team: foken <foken@gmx.com>\n"
9
  "Language: ja_JP\n"
@@ -16,54 +16,75 @@ msgstr ""
16
  "X-Generator: Poedit 1.8.7.1\n"
17
  "X-Poedit-SearchPath-0: .\n"
18
 
19
- #: contact_form.php:37 contact_form.php:992
 
20
  msgid "Contact Form Settings"
21
  msgstr "Contact Form設定"
22
 
23
- #: contact_form.php:37
24
- msgid "Contact Form"
25
- msgstr "Contact Form"
 
26
 
27
- #: contact_form.php:322 contact_form.php:1172 contact_form.php:1262
28
- #: contact_form.php:1668 contact_form.php:1707 contact_form.php:1975
29
- #: contact_form.php:3134 contact_form.php:3180
 
 
 
 
 
 
 
 
 
 
30
  msgid "Name"
31
  msgstr "名前"
32
 
33
- #: contact_form.php:323 contact_form.php:1309 contact_form.php:1669
34
- #: contact_form.php:1708 contact_form.php:1980 contact_form.php:3141
35
- #: contact_form.php:3186
 
 
36
  msgid "Address"
37
  msgstr "住所"
38
 
39
- #: contact_form.php:324 contact_form.php:1325 contact_form.php:1670
40
- #: contact_form.php:1709
 
41
  msgid "Email Address"
42
  msgstr "Eメール・アドレス"
43
 
44
- #: contact_form.php:325 contact_form.php:1348 contact_form.php:1671
45
- #: contact_form.php:1710
 
46
  msgid "Phone number"
47
  msgstr "電話番号"
48
 
49
- #: contact_form.php:326 contact_form.php:1364 contact_form.php:1672
50
- #: contact_form.php:1711 contact_form.php:1995 contact_form.php:3152
51
- #: contact_form.php:3195
 
 
52
  msgid "Subject"
53
  msgstr "件名"
54
 
55
- #: contact_form.php:327 contact_form.php:1388 contact_form.php:1673
56
- #: contact_form.php:1712 contact_form.php:1999 contact_form.php:3157
57
- #: contact_form.php:3199
 
 
58
  msgid "Message"
59
  msgstr "メッセージ"
60
 
61
- #: contact_form.php:328 contact_form.php:1674 contact_form.php:1713
62
- #: contact_form.php:2004
 
63
  msgid "Attachment"
64
  msgstr "添付"
65
 
66
- #: contact_form.php:329
67
  msgid ""
68
  "Supported file types: HTML, TXT, CSS, GIF, PNG, JPEG, JPG, TIFF, BMP, AI, "
69
  "EPS, PS, CSV, RTF, PDF, DOC, DOCX, XLS, XLSX, ZIP, RAR, WAV, MP3, PPT."
@@ -71,172 +92,304 @@ msgstr ""
71
  "サポートしてるファイル形式: HTML, TXT, CSS, GIF, PNG, JPEG, JPG, TIFF, BMP, "
72
  "AI, EPS, PS, CSV, RTF, PDF, DOC, DOCX, XLS, XLSX, ZIP, RAR, WAV, MP3, PPT."
73
 
74
- #: contact_form.php:330 contact_form.php:1676 contact_form.php:1715
 
75
  msgid "Send me a copy"
76
  msgstr "コピーを自分に送る"
77
 
78
- #: contact_form.php:331 contact_form.php:1677 contact_form.php:1716
 
79
  msgid "I consent to having this site collect my personal data."
80
  msgstr ""
81
 
82
- #: contact_form.php:332 contact_form.php:1678 contact_form.php:1717
 
83
  msgid "Submit"
84
  msgstr "送信"
85
 
86
- #: contact_form.php:333
87
  msgid "Your name is required."
88
  msgstr "名前は必須です。"
89
 
90
- #: contact_form.php:334
91
  msgid "Address is required."
92
  msgstr "住所が必要です。"
93
 
94
- #: contact_form.php:335
95
  msgid "A valid email address is required."
96
  msgstr "有効なEメールアドレスlが必須です。"
97
 
98
- #: contact_form.php:336
99
  msgid "Phone number is required."
100
  msgstr "電話番号は必須です。"
101
 
102
- #: contact_form.php:337
103
  msgid "Subject is required."
104
  msgstr "件名は必須です。"
105
 
106
- #: contact_form.php:338
107
  msgid "Message text is required."
108
  msgstr "メッセージ本文は必須です。"
109
 
110
- #: contact_form.php:339
111
  msgid "File format is not valid."
112
  msgstr "添付が壊れています。"
113
 
114
- #: contact_form.php:340
115
  msgid "File upload error."
116
  msgstr "ファイル・アップロード・エラー。"
117
 
118
- #: contact_form.php:341
119
  msgid "The file could not be uploaded."
120
  msgstr "ファイルは、アップロード出来ませんでした。"
121
 
122
- #: contact_form.php:342
123
  msgid "This file is too large."
124
  msgstr "このファイルは大きすぎます。"
125
 
126
- #: contact_form.php:343
127
  msgid "Please fill out the CAPTCHA."
128
  msgstr "CAPTCHAを入力して下さい。"
129
 
130
- #: contact_form.php:344
131
  msgid "Please make corrections below and try again."
132
  msgstr "以下を修正し、再度試して下さい。"
133
 
134
- #: contact_form.php:346
135
  msgid "Thank you for contacting us."
136
  msgstr "ご連絡ありがとうございます"
137
 
138
- #: contact_form.php:683 contact_form.php:949
139
- msgid "Settings saved."
140
- msgstr "設定保存."
141
 
142
- #: contact_form.php:894
143
  msgid ""
144
- "Email 'FROM' field option was changed, which may cause email messages being "
145
- "moved to the spam folder or email delivery failures."
146
  msgstr ""
 
 
147
 
148
- #: contact_form.php:904
149
  msgid ""
150
- "If the 'Redirect to page' option is selected then the URL field should be in "
151
- "the following format"
 
152
  msgstr ""
153
- "’ページに転送’オプションを選択した場合は、URLフィールドが、以下の形式になりま"
154
- "す"
155
 
156
- #: contact_form.php:911
157
- msgid "Such user does not exist."
158
- msgstr "そのようなユーザは存在しません。"
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
159
 
160
- #: contact_form.php:921
 
 
 
 
 
161
  msgid ""
162
- "Please enter a valid email address in the 'Use this email address' field."
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
163
  msgstr ""
164
- "'このEメールアドレスを使用'フィールドに有効化なEメール・アドレスを入力して下"
165
- "さい。"
166
 
167
- #: contact_form.php:929
168
- msgid "Please enter a valid email address in the 'FROM' field."
169
- msgstr "'送信者'フィールドに有効なEメールアドレスを入力して下さい。"
170
 
171
- #: contact_form.php:951
172
- msgid "Settings are not saved."
173
- msgstr "設定は保存さていません。"
 
 
174
 
175
- #: contact_form.php:989
176
- msgid "All plugin settings were restored."
177
  msgstr ""
178
 
179
- #: contact_form.php:995
180
- msgid "How to Use Step-by-step Instruction"
181
  msgstr ""
182
 
183
- #: contact_form.php:998 contact_form.php:3343 contact_form.php:3357
184
- msgid "Settings"
185
- msgstr "設定"
 
 
 
 
 
 
 
 
186
 
187
- #: contact_form.php:999
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
188
  #, fuzzy
189
- msgid "Additional settings"
190
- msgstr "追加オプション"
 
 
 
 
 
 
191
 
192
- #: contact_form.php:1000
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
193
  msgid "Appearance"
194
  msgstr ""
195
 
196
- #: contact_form.php:1001
197
- msgid "Custom code"
198
  msgstr ""
199
 
200
- #: contact_form.php:1002
201
- msgid "Go PRO"
202
- msgstr "PROに進む"
203
 
204
- #: contact_form.php:1013
205
- #, fuzzy
206
- msgid "Notice"
207
- msgstr "通知:"
208
 
209
- #: contact_form.php:1017
210
- msgid "NEW_FORM"
211
  msgstr ""
212
 
213
- #: contact_form.php:1018
 
214
  msgid ""
215
- "If you want to create multiple contact forms, please install the Contact "
216
- "Form Multi plugin."
217
  msgstr ""
218
- "複数のコンタクトフォームを作成したい場合は、Contact Form Multiプラグインを導"
219
- "入して下さい。"
220
 
221
- #: contact_form.php:1027
222
- #, fuzzy, php-format
223
  msgid ""
224
- "If you would like to add a Contact Form to your page or post, please use %s "
225
- "button"
226
  msgstr ""
227
- "Contact Formをあなたのサイトに追加したい場合は、このショートカットを投稿、"
228
- "ページ又はウェジットにコピーして貼り付けるだけです:"
229
 
230
- #: contact_form.php:1033
231
- #, php-format
232
  msgid ""
233
- "You can add the Contact Form to your page or post by clicking on %s button "
234
- "in the content edit block using the Visual mode. If the button isn't "
235
- "displayed, please use the shortcode %s or %s where * stands for Contact Form "
236
- "language."
237
  msgstr ""
 
 
 
 
 
 
 
 
 
 
 
 
 
238
 
239
- #: contact_form.php:1042
 
 
 
 
 
 
 
 
 
 
 
 
240
  msgid ""
241
  "If you leave the fields empty, the messages will be sent to the email "
242
  "address specified during registration."
@@ -244,126 +397,117 @@ msgstr ""
244
  "以下の項目の情報が空欄の場合、登録の際に記述したアドレスにメッセージが送られ"
245
  "ます。"
246
 
247
- #: contact_form.php:1045
248
  #, fuzzy
249
  msgid "The user's email address"
250
  msgstr "wordpressユーザのEメールを利用r:"
251
 
252
- #: contact_form.php:1049
253
  #, fuzzy
254
  msgid "Select a username"
255
  msgstr "ユーザ名の選択"
256
 
257
- #: contact_form.php:1062
258
  #, fuzzy
259
  msgid ""
260
  "Select a username of the person who should get the messages from the contact "
261
  "form."
262
  msgstr "コンタクトフォームからメッセージを受け取る方のユーザ名を入力。"
263
 
264
- #: contact_form.php:1066
265
  #, fuzzy
266
  msgid "Use this email address"
267
  msgstr "このEメールを利用:"
268
 
269
- #: contact_form.php:1070
270
  #, fuzzy
271
  msgid "Enter the email address for receiving messages"
272
  msgstr "メッセージ受信用のEメールを設定。"
273
 
274
- #: contact_form.php:1077 contact_form.php:1588 contact_form.php:1797
275
- #: contact_form.php:1903 contact_form.php:3440
276
- msgid "Close"
277
- msgstr ""
278
-
279
- #: contact_form.php:1081
280
  #, fuzzy
281
  msgid "Add department selectbox to the contact form"
282
  msgstr "部署選択ボックスをコンタクトフォームに追加:"
283
 
284
- #: contact_form.php:1089 contact_form.php:1597 contact_form.php:1816
285
- #: contact_form.php:2109
286
- msgid "If you upgrade to Pro version all your settings will be saved."
287
- msgstr "PROバージョンにアップグレードすると、設定が保存されます。"
288
-
289
- #: contact_form.php:1096 contact_form.php:1418 contact_form.php:1602
290
- #: contact_form.php:1823 contact_form.php:2116
291
- msgid "Upgrade to Pro"
292
- msgstr ""
293
-
294
- #: contact_form.php:1104
295
  msgid "Save emails to the database"
296
  msgstr "メールをデータベースに保存"
297
 
298
- #: contact_form.php:1116 contact_form.php:1130 contact_form.php:1137
 
 
299
  msgid "Using"
300
  msgstr "使用中"
301
 
302
- #: contact_form.php:1122 contact_form.php:1490 contact_form.php:1531
303
- #: contact_form.php:1566
 
 
304
  msgid "Please activate the appropriate option on"
305
  msgstr ""
306
 
307
- #: contact_form.php:1125 contact_form.php:1493 contact_form.php:1534
308
- #: contact_form.php:1569
 
 
309
  #, fuzzy
310
  msgid "settings page"
311
  msgstr "設定ページ"
312
 
313
- #: contact_form.php:1131 contact_form.php:1500 contact_form.php:1542
314
- #: contact_form.php:1576
 
 
315
  msgid "Activate"
316
  msgstr "有効化"
317
 
318
- #: contact_form.php:1138 contact_form.php:1509 contact_form.php:1548
319
- #: contact_form.php:1581
 
 
320
  msgid "Download"
321
  msgstr "ダウンロード"
322
 
323
- #: contact_form.php:1150
324
  msgid "Sending method"
325
  msgstr ""
326
 
327
- #: contact_form.php:1155
328
  msgid "Wp-mail"
329
  msgstr "WPメール"
330
 
331
- #: contact_form.php:1157
332
  #, fuzzy
333
  msgid "You can use the Wordpress wp_mail function for mailing"
334
  msgstr "メールにwp_mali機能が利用できます"
335
 
336
- #: contact_form.php:1160
337
  msgid "Mail"
338
  msgstr "メール"
339
 
340
- #: contact_form.php:1162
341
  #, fuzzy
342
  msgid "You can use the PHP mail function for mailing"
343
  msgstr "メールにwp_mali機能が利用できます"
344
 
345
- #: contact_form.php:1167
346
  msgid "'FROM' field"
347
  msgstr ""
348
 
349
- #: contact_form.php:1183
350
  msgid "User name"
351
  msgstr "ユーザ名"
352
 
353
- #: contact_form.php:1185
354
  msgid ""
355
  "The name of the user who fills the form will be used in the field 'From'."
356
  msgstr "フォームを入力するユーザの名前が、'送信者'フィールドに使用されます。"
357
 
358
- #: contact_form.php:1196 contact_form.php:3147 contact_form.php:3191
359
- msgid "Email"
360
- msgstr "Eメール"
361
-
362
- #: contact_form.php:1207
363
  msgid "User email"
364
  msgstr "ユーザ・Eメール"
365
 
366
- #: contact_form.php:1209
367
  msgid ""
368
  "The email address of the user who fills the form will be used in the field "
369
  "'From'."
@@ -371,588 +515,536 @@ msgstr ""
371
  "フォームを入力したユーザのEメール・アドレスは、'送信者'フィールドに使用されま"
372
  "す。"
373
 
374
- #: contact_form.php:1218
375
  msgid ""
376
  "If this option is changed, email messages may be moved to the spam folder or "
377
  "email delivery failures may occur."
378
  msgstr ""
379
 
380
- #: contact_form.php:1227
381
  msgid "Required symbol"
382
  msgstr "必須シンボル"
383
 
384
- #: contact_form.php:1237
385
  msgid "Fields"
386
  msgstr "フィールド"
387
 
388
- #: contact_form.php:1238 contact_form.php:1265 contact_form.php:1292
389
- #: contact_form.php:1312 contact_form.php:1351 contact_form.php:1433
 
 
 
 
390
  msgid "Used"
391
  msgstr "使用済"
392
 
393
- #: contact_form.php:1239 contact_form.php:1254 contact_form.php:1269
394
- #: contact_form.php:1296 contact_form.php:1316 contact_form.php:1329
395
- #: contact_form.php:1355 contact_form.php:1368 contact_form.php:1392
 
 
 
 
 
396
  msgid "Required"
397
  msgstr "必須"
398
 
399
- #: contact_form.php:1241 contact_form.php:1274 contact_form.php:1334
400
- #: contact_form.php:1373 contact_form.php:1397
 
 
 
401
  msgid "Visible"
402
  msgstr "可視"
403
 
404
- #: contact_form.php:1242 contact_form.php:1278 contact_form.php:1338
405
- #: contact_form.php:1377 contact_form.php:1401
 
 
 
406
  msgid "Disabled for editing"
407
  msgstr "編集を無効化"
408
 
409
- #: contact_form.php:1243 contact_form.php:1302 contact_form.php:1381
410
- #: contact_form.php:1405
 
 
411
  msgid "Field's default value"
412
  msgstr "フィールドのデフォルト値"
413
 
414
- #: contact_form.php:1250
415
  #, fuzzy
416
  msgid "Department selectbox"
417
  msgstr "場所選択ボックス"
418
 
419
- #: contact_form.php:1282
420
  msgid "Use User's name as a default value if the user is logged in."
421
  msgstr ""
422
 
423
- #: contact_form.php:1283 contact_form.php:1343
 
424
  msgid ""
425
  "'Visible' and 'Disabled for editing' options will be applied only to logged-"
426
  "in users."
427
  msgstr ""
428
 
429
- #: contact_form.php:1289
430
  msgid "Location selectbox"
431
  msgstr "場所選択ボックス"
432
 
433
- #: contact_form.php:1342
434
  msgid "Use User's email as a default value if the user is logged in."
435
  msgstr ""
436
 
437
- #: contact_form.php:1426
438
  msgid "Attachment block"
439
  msgstr "添付ブロック"
440
 
441
- #: contact_form.php:1428
442
  msgid "Users can attach the following file formats"
443
  msgstr "ユーザは、以下のタイプのファイルを添付できる"
444
 
445
- #: contact_form.php:1446
446
  msgid "Add to the form"
447
  msgstr "フォームに追加"
448
 
449
- #: contact_form.php:1451
450
  msgid "Tips below the Attachment"
451
  msgstr "添付ファイルの下のチップス"
452
 
453
- #: contact_form.php:1458
454
  msgid "'Send me a copy' block"
455
  msgstr "'コピーを自分に送る'ブロック"
456
 
457
- #: contact_form.php:1465
458
  msgid "GDPR Compliance"
459
  msgstr ""
460
 
461
- #: contact_form.php:1470
462
  msgid "Link to Privacy Policy Page"
463
  msgstr ""
464
 
465
- #: contact_form.php:1474
466
  msgid "Text for Privacy Policy Link"
467
  msgstr ""
468
 
469
- #: contact_form.php:1502
470
  msgid "Activate for network"
471
  msgstr ""
472
 
473
- #: contact_form.php:1592
474
  msgid "Agreement checkbox"
475
  msgstr "同意のチェックボックス"
476
 
477
- #: contact_form.php:1592
478
  msgid "Required checkbox for submitting the form"
479
  msgstr "フォームを送信するために必須のチェックボックス"
480
 
481
- #: contact_form.php:1593
482
  msgid "Optional checkbox"
483
  msgstr "オプションのチェックボックス"
484
 
485
- #: contact_form.php:1593
486
  msgid "Optional checkbox, the results of which will be displayed in email"
487
  msgstr "オプションのチェックボックス、Eメールに表示される結果"
488
 
489
- #: contact_form.php:1611
490
  msgid "Delete an attachment file from the server after the email is sent"
491
  msgstr "Eメール送信後、サーバから添付ファイルを削除"
492
 
493
- #: contact_form.php:1617
494
  msgid "Email in HTML format sending"
495
  msgstr "HTMLフォーマットでメール送信"
496
 
497
- #: contact_form.php:1621
498
  msgid "Display additional info in the email"
499
  msgstr "メール中に追加情報を表示"
500
 
501
- #: contact_form.php:1627
502
  #, fuzzy
503
  msgid "Sent from (IP address)"
504
  msgstr "送信された(IP-Adresse)"
505
 
506
- #: contact_form.php:1627
507
  msgid "Example: Sent from (IP address): 127.0.0.1"
508
  msgstr ""
509
 
510
- #: contact_form.php:1628 contact_form.php:3096 contact_form.php:3098
511
- msgid "Date/Time"
512
- msgstr "日時"
513
-
514
- #: contact_form.php:1628
515
  msgid "Example: Date/Time: August 19, 2013 8:50 pm"
516
  msgstr ""
517
 
518
- #: contact_form.php:1629 contact_form.php:3102 contact_form.php:3104
519
- msgid "Sent from (referer)"
520
- msgstr "送信された(referer)"
521
-
522
- #: contact_form.php:1629
523
  msgid ""
524
  "Example: Sent from (referer): https://bestwebsoft.com/contacts/contact-us/"
525
  msgstr ""
526
 
527
- #: contact_form.php:1630 contact_form.php:3108 contact_form.php:3110
528
- msgid "Using (user agent)"
529
- msgstr "利用中の (user agent)"
530
-
531
- #: contact_form.php:1630
532
  msgid ""
533
  "Example: Using (user agent): Mozilla/5.0 (Windows NT 6.2; WOW64) "
534
  "AppleWebKit/537.36 (KHTML, like Gecko) Chrome/28.0.1500.95 Safari/537.36"
535
  msgstr ""
536
 
537
- #: contact_form.php:1635
538
  msgid "Language settings for the field names in the form"
539
  msgstr "フォーム内のフィールド名の言語設定"
540
 
541
- #: contact_form.php:1644
542
  msgid "Add a language"
543
  msgstr "言語の追加"
544
 
545
- #: contact_form.php:1648
546
  msgid "Change the names of the contact form fields and error messages"
547
  msgstr "コンタクトフォームのフィールド名及びエラーメッセージを変更"
548
 
549
- #: contact_form.php:1653 contact_form.php:1751 contact_form.php:1883
550
- #: contact_form.php:2023 contact_form.php:2028 contact_form.php:2038
551
- #: contact_form.php:2043 contact_form.php:2048 contact_form.php:2053
552
- #: contact_form.php:2063 contact_form.php:2068 contact_form.php:2077
553
- #: contact_form.php:2091 contact_form.php:2096 contact_form.php:2101
554
  msgid "Default"
555
  msgstr "標準"
556
 
557
- #: contact_form.php:1666 contact_form.php:1705
 
558
  msgid "click to expand/hide the list"
559
  msgstr "クリックして、このリストを展開/隠す"
560
 
561
- #: contact_form.php:1675 contact_form.php:1714
 
562
  msgid "Tips below the Attachment block"
563
  msgstr "添付ファイル・ブロックの下のチップス"
564
 
565
- #: contact_form.php:1679 contact_form.php:1718
 
566
  msgid "Error message for the Name field"
567
  msgstr "名前フィールド用のエラーメッセージ"
568
 
569
- #: contact_form.php:1680 contact_form.php:1719
 
570
  msgid "Error message for the Address field"
571
  msgstr "住所フィールド用のエラーメッセージ"
572
 
573
- #: contact_form.php:1681 contact_form.php:1720
 
574
  msgid "Error message for the Email field"
575
  msgstr "Eメール・フィールド用のエラーメッセージ"
576
 
577
- #: contact_form.php:1682 contact_form.php:1721
 
578
  msgid "Error message for the Phone field"
579
  msgstr "電話フィールド用のエラーメッセージ"
580
 
581
- #: contact_form.php:1683 contact_form.php:1722
 
582
  msgid "Error message for the Subject field"
583
  msgstr "件名フィールド用のエラーメッセージ"
584
 
585
- #: contact_form.php:1684 contact_form.php:1723
 
586
  msgid "Error message for the Message field"
587
  msgstr "メッセージ・フィールド用のエラーメッセージ"
588
 
589
- #: contact_form.php:1685 contact_form.php:1724
 
590
  msgid "Error message about the file type for the Attachment field"
591
  msgstr "添付フィールド用の拡張子タイプに関するエラーメッセージ"
592
 
593
- #: contact_form.php:1686 contact_form.php:1725
 
594
  msgid ""
595
  "Error message while uploading a file for the Attachment field to the server"
596
  msgstr "添付フィールド用のファイルをサーバにアップロード中のエラーメッセージ"
597
 
598
- #: contact_form.php:1687 contact_form.php:1726
 
599
  msgid "Error message while moving the file for the Attachment field"
600
  msgstr "添付フィールド用のファイルを移動中のエラーメッセージ"
601
 
602
- #: contact_form.php:1688 contact_form.php:1727
 
603
  msgid "Error message when file size limit for the Attachment field is exceeded"
604
  msgstr "添付フィールド用のファイルサイズ制限を超した場合のエラーメッセージ"
605
 
606
- #: contact_form.php:1689 contact_form.php:1728
 
607
  msgid "Error message for the Captcha field"
608
  msgstr "Captcha フィールド用のエラーメッセージ"
609
 
610
- #: contact_form.php:1690 contact_form.php:1729
 
611
  msgid "Error message for the whole form"
612
  msgstr "全体フォーム用のエラーメッセージ"
613
 
614
- #: contact_form.php:1693 contact_form.php:1695 contact_form.php:1732
615
- #: contact_form.php:1734 contact_form.php:1766 contact_form.php:1768
616
- #: contact_form.php:1780 contact_form.php:1782 contact_form.php:3530
617
- #: contact_form.php:3532
618
- msgid "Use shortcode"
619
- msgstr "短いコードの利用"
620
-
621
- #: contact_form.php:1693 contact_form.php:1695 contact_form.php:1732
622
- #: contact_form.php:1734 contact_form.php:1766 contact_form.php:1768
623
- #: contact_form.php:1780 contact_form.php:1782 contact_form.php:3530
624
- #: contact_form.php:3532
625
- msgid "for this language"
626
- msgstr "この言語用に"
627
-
628
- #: contact_form.php:1742
629
  msgid "Use the changed names of the contact form fields in the email"
630
  msgstr "Eメール内のコンタクトフォーム・フィールドの変更された名前を使用"
631
 
632
- #: contact_form.php:1748
633
  msgid "Action after email is sent"
634
  msgstr "メール送信後の動作"
635
 
636
- #: contact_form.php:1750
637
  msgid "Display text"
638
  msgstr "テキストを表示"
639
 
640
- #: contact_form.php:1764 contact_form.php:1778
 
641
  msgid "Text"
642
  msgstr "文字"
643
 
644
- #: contact_form.php:1789
645
  msgid "Redirect to the page"
646
  msgstr "ページに転送"
647
 
648
- #: contact_form.php:1790
649
  msgid "Url"
650
  msgstr "Url"
651
 
652
- #: contact_form.php:1801
653
- msgid "Add field 'Reply-To' to the email header"
654
- msgstr ""
655
-
656
- #: contact_form.php:1803
657
- msgid "Field 'Reply-To' will be initialized by user email"
658
- msgstr ""
659
-
660
- #: contact_form.php:1807
661
- msgid "Auto Response"
662
- msgstr "自動応答"
663
-
664
- #: contact_form.php:1811
665
  #, php-format
666
  msgid ""
667
- "You can use %%NAME%% to display data from the email field and %%MESSAGE%% to "
668
- "display data from the Message field, as well as %%SITENAME%% to display blog "
669
- "name."
670
  msgstr ""
671
- "ブログ名を表示するための%%SITENAME%% と同様に、Eメールフィールドからデータを"
672
- "表示するために%%NAME%%を、メッセージフィールドからデータを表示するため"
673
- "に%%MESSAGE%%が利用することが出来ます。"
674
 
675
- #: contact_form.php:1833 contact_form.php:2375
676
- msgid "Save Changes"
677
- msgstr "変更保存"
678
-
679
- #: contact_form.php:1846
680
- #, php-format
681
- msgid ""
682
- "Please enable JavaScript to change '%s', '%s' options and for fields sorting."
683
  msgstr ""
684
 
685
- #: contact_form.php:1846 contact_form.php:1855
686
- msgid "Form layout"
 
 
 
 
 
 
 
687
  msgstr ""
688
 
689
- #: contact_form.php:1846 contact_form.php:1867
 
690
  #, fuzzy
691
  msgid "Submit position"
692
  msgstr "送信ボタン"
693
 
694
- #: contact_form.php:1859
 
 
 
 
 
 
 
 
 
 
695
  msgid "One column"
696
  msgstr ""
697
 
698
- #: contact_form.php:1862
699
  msgid "Two columns"
700
  msgstr ""
701
 
702
- #: contact_form.php:1871 contact_form.php:1911 contact_form.php:1929
703
- #: contact_form.php:1944
 
 
704
  msgid "Left"
705
  msgstr ""
706
 
707
- #: contact_form.php:1874 contact_form.php:1917 contact_form.php:1932
708
- #: contact_form.php:1950
 
 
709
  msgid "Right"
710
  msgstr ""
711
 
712
- #: contact_form.php:1879
713
  msgid "Width"
714
  msgstr ""
715
 
716
- #: contact_form.php:1887
717
  msgid "Custom"
718
  msgstr ""
719
 
720
- #: contact_form.php:1894
721
  msgid "px"
722
  msgstr ""
723
 
724
- #: contact_form.php:1907
725
  msgid "Form align"
726
  msgstr ""
727
 
728
- #: contact_form.php:1914 contact_form.php:1947
 
729
  msgid "Center"
730
  msgstr ""
731
 
732
- #: contact_form.php:1922
733
- #, fuzzy
734
- msgid "Labels position"
735
- msgstr "送信ボタン"
736
-
737
- #: contact_form.php:1926
738
  msgid "Top"
739
  msgstr ""
740
 
741
- #: contact_form.php:1935
742
  msgid "Bottom"
743
  msgstr ""
744
 
745
- #: contact_form.php:1940
746
- msgid "Labels align"
747
- msgstr ""
748
-
749
- #: contact_form.php:1955
750
  msgid "Errors output"
751
  msgstr "エラー出力"
752
 
753
- #: contact_form.php:1958
754
  msgid "Display error messages"
755
  msgstr "エラーメッセージの表示"
756
 
757
- #: contact_form.php:1959
758
  msgid "Color of the input field errors."
759
  msgstr "入力フィールド・エラーの色"
760
 
761
- #: contact_form.php:1960
762
  msgid "Display error messages & color of the input field errors"
763
  msgstr "エラーメッセージと入力フィールド・エラーの色を表示"
764
 
765
- #: contact_form.php:1965
766
  msgid "Add placeholder to the input blocks"
767
  msgstr "プレースホルダーを入力ブロックに追加"
768
 
769
- #: contact_form.php:1971
770
- msgid "Add tooltips"
771
- msgstr "ツールチップの追加"
772
-
773
- #: contact_form.php:1985
774
  msgid "Email address"
775
  msgstr "Eメール・アドレス"
776
 
777
- #: contact_form.php:1990 contact_form.php:3163 contact_form.php:3204
778
- msgid "Phone Number"
779
- msgstr "電話番号"
780
-
781
- #: contact_form.php:2016
782
- msgid "Style options"
783
- msgstr "スタイル・オプション"
784
-
785
- #: contact_form.php:2020
786
  msgid "Text color"
787
  msgstr "文字色"
788
 
789
- #: contact_form.php:2025
790
  msgid "Label text color"
791
  msgstr "ラベル文字色"
792
 
793
- #: contact_form.php:2030
794
  msgid "Placeholder color"
795
  msgstr "プレースホルダ色"
796
 
797
- #: contact_form.php:2035
798
  msgid "Errors color"
799
  msgstr "エラーの色"
800
 
801
- #: contact_form.php:2040
802
  msgid "Error text color"
803
  msgstr "エラーテキストの色"
804
 
805
- #: contact_form.php:2045
806
  msgid "Background color of the input field errors"
807
  msgstr "入力フィールド・エラーの背景色"
808
 
809
- #: contact_form.php:2050
810
  msgid "Border color of the input field errors"
811
  msgstr "入力フィールド・エラーの罫線色"
812
 
813
- #: contact_form.php:2055
814
  msgid "Placeholder color of the input field errors"
815
  msgstr "入力フィールド・エラー用のプレースホルダ色"
816
 
817
- #: contact_form.php:2060
818
  msgid "Input fields"
819
  msgstr "フィールドを入力"
820
 
821
- #: contact_form.php:2065
822
  msgid "Input fields background color"
823
  msgstr "フィールドの背景色の入力"
824
 
825
- #: contact_form.php:2070
826
  msgid "Text fields color"
827
  msgstr "文字フィールド色"
828
 
829
- #: contact_form.php:2074
830
  msgid "Border width in px, numbers only"
831
  msgstr "罫線幅(px単位)、数値のみ"
832
 
833
- #: contact_form.php:2079 contact_form.php:2103
 
834
  msgid "Border color"
835
  msgstr "罫線色"
836
 
837
- #: contact_form.php:2084
838
  msgid "Submit button"
839
  msgstr "送信ボタン"
840
 
841
- #: contact_form.php:2088
842
  msgid "Width in px, numbers only"
843
  msgstr "px単位の幅、数字のみ"
844
 
845
- #: contact_form.php:2093
846
  msgid "Button color"
847
  msgstr "ボタンの色"
848
 
849
- #: contact_form.php:2098
850
  msgid "Button text color"
851
  msgstr "ボタン文字の色"
852
 
853
- #: contact_form.php:2127
854
  #, fuzzy
855
  msgid "Contact Form | Preview"
856
  msgstr "Contact Form Pro | プレビュー"
857
 
858
- #: contact_form.php:2128
859
  msgid "Drag the necessary field to sort fields."
860
  msgstr ""
861
 
862
- #: contact_form.php:2364
863
- #, fuzzy
864
- msgid ""
865
- "If you would like to add the Contact Form to your website, just copy and "
866
- "paste this shortcode to your post or page or widget"
867
  msgstr ""
868
- "Contact Formをあなたのサイトに追加したい場合は、このショートカットを投稿、"
869
- "ページ又はウェジットにコピーして貼り付けるだけです:"
870
-
871
- #: contact_form.php:2486
872
- msgid "Sorry, email message could not be delivered."
873
- msgstr "申し訳ございませんが、貴方のemailは配信できませんでした。"
874
-
875
- #: contact_form.php:3090 contact_form.php:3092
876
- msgid "Sent from (ip address)"
877
- msgstr "送信された(IP-Adresse)"
878
-
879
- #: contact_form.php:3120
880
- msgid "Contact from"
881
- msgstr "Contact Form"
882
-
883
- #: contact_form.php:3125 contact_form.php:3174
884
- msgid "Site"
885
- msgstr "サイト"
886
 
887
- #: contact_form.php:3286
888
- msgid ""
889
- "If you can see this MIME, it means that the MIME type is not supported by "
890
- "your email client!"
891
- msgstr "このMIMEを見ている場合は、貴方のクライアントはMIMEタイプを読めません。"
892
-
893
- #: contact_form.php:3358
894
- msgid "FAQ"
895
- msgstr "FAQ"
896
-
897
- #: contact_form.php:3359
898
- msgid "Support"
899
- msgstr "サポート"
900
-
901
- #: contact_form.php:3408
902
- msgid "Are you sure that you want to delete this language data?"
903
- msgstr "本当に、この言語データを削除しますか?"
904
-
905
- #: contact_form.php:3431
906
- #, fuzzy
907
- msgid "Add multiple forms"
908
- msgstr "フォームに追加"
909
-
910
- #: contact_form.php:3431
911
- msgid ""
912
- "Install Contact Form Multi plugin to create unlimited number of contact "
913
- "forms."
914
  msgstr ""
915
 
916
- #: contact_form.php:3436
917
- msgid "Learn more"
918
- msgstr "もっと学ぶ"
919
 
920
- #: contact_form.php:3494
921
- msgid "Error"
922
- msgstr ""
 
 
 
 
923
 
924
- #: contact_form.php:3494 contact_form.php:3496
925
- msgid "Illegal language code"
926
- msgstr ""
927
 
928
- #: contact_form.php:3681
929
- msgid "Close notice"
930
- msgstr ""
931
 
932
- #: contact_form.php:3686
933
  #, fuzzy
934
- msgid "allows to store your messages to the database."
935
- msgstr ""
936
- "<strong>Contact Form to DB</strong>は、貴方のメッセージをデータベースに保存し"
937
- "ます。"
938
 
939
- #: contact_form.php:3687
940
- msgid "Manage messages that have been sent from your website."
941
- msgstr "貴方のウェブサイトから送られるメッセージを管理"
942
 
943
- #: contact_form.php:3690
944
- msgid "Learn More"
945
- msgstr "もっと学ぶ"
946
-
947
- #: contact_form.php:3750
948
  #, fuzzy
949
- msgid "Contact form"
950
- msgstr "Contact Form"
951
 
952
- #: contact_form.php:3763 contact_form.php:3773
953
  #, fuzzy
954
- msgid "Language"
955
- msgstr "言語の追加"
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
956
 
957
  #~ msgid "Example: Sent from (IP address):\t127.0.0.1"
958
  #~ msgstr "例: 送信された(IP-Adresse):\t127.0.0.1"
2
  msgstr ""
3
  "Project-Id-Version: Contact Form\n"
4
  "Report-Msgid-Bugs-To: \n"
5
+ "POT-Creation-Date: 2019-02-25 16:27+0200\n"
6
+ "PO-Revision-Date: 2019-02-25 16:27+0200\n"
7
  "Last-Translator: plugin@bestwebsoft.com <plugin@bestwebsoft.com>\n"
8
  "Language-Team: foken <foken@gmx.com>\n"
9
  "Language: ja_JP\n"
16
  "X-Generator: Poedit 1.8.7.1\n"
17
  "X-Poedit-SearchPath-0: .\n"
18
 
19
+ #: contact_form.php:39 contact_form.php:47 contact_form.php:647
20
+ #: includes/class-cntctfrm-settings.php:425
21
  msgid "Contact Form Settings"
22
  msgstr "Contact Form設定"
23
 
24
+ #: contact_form.php:48 contact_form.php:1619 contact_form.php:1633
25
+ #: includes/class-cntctfrm-settings.php:27
26
+ msgid "Settings"
27
+ msgstr "設定"
28
 
29
+ #: contact_form.php:63 includes/class-cntctfrm-settings.php:483
30
+ #: includes/class-cntctfrm-settings.php:817
31
+ #: includes/class-cntctfrm-settings.php:998
32
+ #: includes/class-cntctfrm-settings.php:1513
33
+ msgid "Upgrade to Pro"
34
+ msgstr ""
35
+
36
+ #: contact_form.php:350 contact_form.php:1410 contact_form.php:1456
37
+ #: includes/class-cntctfrm-settings.php:574
38
+ #: includes/class-cntctfrm-settings.php:664
39
+ #: includes/class-cntctfrm-settings.php:1064
40
+ #: includes/class-cntctfrm-settings.php:1103
41
+ #: includes/class-cntctfrm-settings.php:1344
42
  msgid "Name"
43
  msgstr "名前"
44
 
45
+ #: contact_form.php:351 contact_form.php:1417 contact_form.php:1462
46
+ #: includes/class-cntctfrm-settings.php:711
47
+ #: includes/class-cntctfrm-settings.php:1065
48
+ #: includes/class-cntctfrm-settings.php:1104
49
+ #: includes/class-cntctfrm-settings.php:1349
50
  msgid "Address"
51
  msgstr "住所"
52
 
53
+ #: contact_form.php:352 includes/class-cntctfrm-settings.php:727
54
+ #: includes/class-cntctfrm-settings.php:1066
55
+ #: includes/class-cntctfrm-settings.php:1105
56
  msgid "Email Address"
57
  msgstr "Eメール・アドレス"
58
 
59
+ #: contact_form.php:353 includes/class-cntctfrm-settings.php:747
60
+ #: includes/class-cntctfrm-settings.php:1067
61
+ #: includes/class-cntctfrm-settings.php:1106
62
  msgid "Phone number"
63
  msgstr "電話番号"
64
 
65
+ #: contact_form.php:354 contact_form.php:1428 contact_form.php:1471
66
+ #: includes/class-cntctfrm-settings.php:763
67
+ #: includes/class-cntctfrm-settings.php:1068
68
+ #: includes/class-cntctfrm-settings.php:1107
69
+ #: includes/class-cntctfrm-settings.php:1364
70
  msgid "Subject"
71
  msgstr "件名"
72
 
73
+ #: contact_form.php:355 contact_form.php:1433 contact_form.php:1475
74
+ #: includes/class-cntctfrm-settings.php:787
75
+ #: includes/class-cntctfrm-settings.php:1069
76
+ #: includes/class-cntctfrm-settings.php:1108
77
+ #: includes/class-cntctfrm-settings.php:1368
78
  msgid "Message"
79
  msgstr "メッセージ"
80
 
81
+ #: contact_form.php:356 includes/class-cntctfrm-settings.php:1070
82
+ #: includes/class-cntctfrm-settings.php:1109
83
+ #: includes/class-cntctfrm-settings.php:1373
84
  msgid "Attachment"
85
  msgstr "添付"
86
 
87
+ #: contact_form.php:357
88
  msgid ""
89
  "Supported file types: HTML, TXT, CSS, GIF, PNG, JPEG, JPG, TIFF, BMP, AI, "
90
  "EPS, PS, CSV, RTF, PDF, DOC, DOCX, XLS, XLSX, ZIP, RAR, WAV, MP3, PPT."
92
  "サポートしてるファイル形式: HTML, TXT, CSS, GIF, PNG, JPEG, JPG, TIFF, BMP, "
93
  "AI, EPS, PS, CSV, RTF, PDF, DOC, DOCX, XLS, XLSX, ZIP, RAR, WAV, MP3, PPT."
94
 
95
+ #: contact_form.php:358 includes/class-cntctfrm-settings.php:1072
96
+ #: includes/class-cntctfrm-settings.php:1111
97
  msgid "Send me a copy"
98
  msgstr "コピーを自分に送る"
99
 
100
+ #: contact_form.php:359 includes/class-cntctfrm-settings.php:1073
101
+ #: includes/class-cntctfrm-settings.php:1112
102
  msgid "I consent to having this site collect my personal data."
103
  msgstr ""
104
 
105
+ #: contact_form.php:360 includes/class-cntctfrm-settings.php:1074
106
+ #: includes/class-cntctfrm-settings.php:1113
107
  msgid "Submit"
108
  msgstr "送信"
109
 
110
+ #: contact_form.php:361
111
  msgid "Your name is required."
112
  msgstr "名前は必須です。"
113
 
114
+ #: contact_form.php:362
115
  msgid "Address is required."
116
  msgstr "住所が必要です。"
117
 
118
+ #: contact_form.php:363
119
  msgid "A valid email address is required."
120
  msgstr "有効なEメールアドレスlが必須です。"
121
 
122
+ #: contact_form.php:364
123
  msgid "Phone number is required."
124
  msgstr "電話番号は必須です。"
125
 
126
+ #: contact_form.php:365
127
  msgid "Subject is required."
128
  msgstr "件名は必須です。"
129
 
130
+ #: contact_form.php:366
131
  msgid "Message text is required."
132
  msgstr "メッセージ本文は必須です。"
133
 
134
+ #: contact_form.php:367
135
  msgid "File format is not valid."
136
  msgstr "添付が壊れています。"
137
 
138
+ #: contact_form.php:368
139
  msgid "File upload error."
140
  msgstr "ファイル・アップロード・エラー。"
141
 
142
+ #: contact_form.php:369
143
  msgid "The file could not be uploaded."
144
  msgstr "ファイルは、アップロード出来ませんでした。"
145
 
146
+ #: contact_form.php:370
147
  msgid "This file is too large."
148
  msgstr "このファイルは大きすぎます。"
149
 
150
+ #: contact_form.php:371
151
  msgid "Please fill out the CAPTCHA."
152
  msgstr "CAPTCHAを入力して下さい。"
153
 
154
+ #: contact_form.php:372
155
  msgid "Please make corrections below and try again."
156
  msgstr "以下を修正し、再度試して下さい。"
157
 
158
+ #: contact_form.php:374
159
  msgid "Thank you for contacting us."
160
  msgstr "ご連絡ありがとうございます"
161
 
162
+ #: contact_form.php:651
163
+ msgid "NEW_FORM"
164
+ msgstr ""
165
 
166
+ #: contact_form.php:652
167
  msgid ""
168
+ "If you want to create multiple contact forms, please install the Contact "
169
+ "Form Multi plugin."
170
  msgstr ""
171
+ "複数のコンタクトフォームを作成したい場合は、Contact Form Multiプラグインを導"
172
+ "入して下さい。"
173
 
174
+ #: contact_form.php:657
175
  msgid ""
176
+ "Contact Form plugin doesn't support your current version of Contact Form "
177
+ "Multi plugin. Please update Contact Form Multi plugin to version 1.2.6 or "
178
+ "higher."
179
  msgstr ""
 
 
180
 
181
+ #: contact_form.php:759
182
+ msgid "Sorry, email message could not be delivered."
183
+ msgstr "申し訳ございませんが、貴方のemailは配信できませんでした。"
184
+
185
+ #: contact_form.php:1366 contact_form.php:1368
186
+ msgid "Sent from (ip address)"
187
+ msgstr "送信された(IP-Adresse)"
188
+
189
+ #: contact_form.php:1372 contact_form.php:1374
190
+ #: includes/class-cntctfrm-settings.php:1024
191
+ msgid "Date/Time"
192
+ msgstr "日時"
193
+
194
+ #: contact_form.php:1378 contact_form.php:1380
195
+ #: includes/class-cntctfrm-settings.php:1025
196
+ msgid "Sent from (referer)"
197
+ msgstr "送信された(referer)"
198
+
199
+ #: contact_form.php:1384 contact_form.php:1386
200
+ #: includes/class-cntctfrm-settings.php:1026
201
+ msgid "Using (user agent)"
202
+ msgstr "利用中の (user agent)"
203
+
204
+ #: contact_form.php:1396
205
+ msgid "Contact from"
206
+ msgstr "Contact Form"
207
+
208
+ #: contact_form.php:1401 contact_form.php:1450
209
+ msgid "Site"
210
+ msgstr "サイト"
211
+
212
+ #: contact_form.php:1423 contact_form.php:1467
213
+ #: includes/class-cntctfrm-settings.php:598
214
+ msgid "Email"
215
+ msgstr "Eメール"
216
 
217
+ #: contact_form.php:1439 contact_form.php:1480
218
+ #: includes/class-cntctfrm-settings.php:1359
219
+ msgid "Phone Number"
220
+ msgstr "電話番号"
221
+
222
+ #: contact_form.php:1562
223
  msgid ""
224
+ "If you can see this MIME, it means that the MIME type is not supported by "
225
+ "your email client!"
226
+ msgstr "このMIMEを見ている場合は、貴方のクライアントはMIMEタイプを読めません。"
227
+
228
+ #: contact_form.php:1634
229
+ msgid "FAQ"
230
+ msgstr "FAQ"
231
+
232
+ #: contact_form.php:1635
233
+ msgid "Support"
234
+ msgstr "サポート"
235
+
236
+ #: contact_form.php:1684
237
+ msgid "Are you sure that you want to delete this language data?"
238
+ msgstr "本当に、この言語データを削除しますか?"
239
+
240
+ #: contact_form.php:1706
241
+ #, fuzzy
242
+ msgid "Add multiple forms"
243
+ msgstr "フォームに追加"
244
+
245
+ #: contact_form.php:1706
246
+ msgid ""
247
+ "Install Contact Form Multi plugin to create unlimited number of contact "
248
+ "forms."
249
  msgstr ""
 
 
250
 
251
+ #: contact_form.php:1711
252
+ msgid "Learn more"
253
+ msgstr "もっと学ぶ"
254
 
255
+ #: contact_form.php:1715 includes/class-cntctfrm-settings.php:469
256
+ #: includes/class-cntctfrm-settings.php:987
257
+ #: includes/class-cntctfrm-settings.php:1272
258
+ msgid "Close"
259
+ msgstr ""
260
 
261
+ #: contact_form.php:1769
262
+ msgid "Error"
263
  msgstr ""
264
 
265
+ #: contact_form.php:1769 contact_form.php:1771
266
+ msgid "Illegal language code"
267
  msgstr ""
268
 
269
+ #: contact_form.php:1805 contact_form.php:1807
270
+ #: includes/class-cntctfrm-settings.php:1089
271
+ #: includes/class-cntctfrm-settings.php:1091
272
+ #: includes/class-cntctfrm-settings.php:1128
273
+ #: includes/class-cntctfrm-settings.php:1130
274
+ #: includes/class-cntctfrm-settings.php:1162
275
+ #: includes/class-cntctfrm-settings.php:1164
276
+ #: includes/class-cntctfrm-settings.php:1176
277
+ #: includes/class-cntctfrm-settings.php:1178
278
+ msgid "Use shortcode"
279
+ msgstr "短いコードの利用"
280
 
281
+ #: contact_form.php:1805 contact_form.php:1807
282
+ #: includes/class-cntctfrm-settings.php:1089
283
+ #: includes/class-cntctfrm-settings.php:1091
284
+ #: includes/class-cntctfrm-settings.php:1128
285
+ #: includes/class-cntctfrm-settings.php:1130
286
+ #: includes/class-cntctfrm-settings.php:1162
287
+ #: includes/class-cntctfrm-settings.php:1164
288
+ #: includes/class-cntctfrm-settings.php:1176
289
+ #: includes/class-cntctfrm-settings.php:1178
290
+ msgid "for this language"
291
+ msgstr "この言語用に"
292
+
293
+ #: contact_form.php:1955
294
+ msgid "Close notice"
295
+ msgstr ""
296
+
297
+ #: contact_form.php:1960
298
  #, fuzzy
299
+ msgid "allows to store your messages to the database."
300
+ msgstr ""
301
+ "<strong>Contact Form to DB</strong>は、貴方のメッセージをデータベースに保存し"
302
+ "ます。"
303
+
304
+ #: contact_form.php:1961
305
+ msgid "Manage messages that have been sent from your website."
306
+ msgstr "貴方のウェブサイトから送られるメッセージを管理"
307
 
308
+ #: contact_form.php:1964
309
+ msgid "Learn More"
310
+ msgstr "もっと学ぶ"
311
+
312
+ #: contact_form.php:2024
313
+ #, fuzzy
314
+ msgid "Contact form"
315
+ msgstr "Contact Form"
316
+
317
+ #: contact_form.php:2037 contact_form.php:2047
318
+ #, fuzzy
319
+ msgid "Language"
320
+ msgstr "言語の追加"
321
+
322
+ #: includes/class-cntctfrm-settings.php:28
323
+ #: includes/class-cntctfrm-settings.php:546
324
+ msgid "Additional Settings"
325
+ msgstr ""
326
+
327
+ #: includes/class-cntctfrm-settings.php:29
328
+ #: includes/class-cntctfrm-settings.php:1198
329
  msgid "Appearance"
330
  msgstr ""
331
 
332
+ #: includes/class-cntctfrm-settings.php:30
333
+ msgid "Misc"
334
  msgstr ""
335
 
336
+ #: includes/class-cntctfrm-settings.php:31
337
+ msgid "License Key"
338
+ msgstr ""
339
 
340
+ #: includes/class-cntctfrm-settings.php:32
341
+ msgid "Custom Code"
342
+ msgstr ""
 
343
 
344
+ #: includes/class-cntctfrm-settings.php:99
345
+ msgid "Please enable JavaScript in your browser."
346
  msgstr ""
347
 
348
+ #: includes/class-cntctfrm-settings.php:101
349
+ #, php-format
350
  msgid ""
351
+ "Contact Form plugin requires PHP %s or higher. Please contact your hosting "
352
+ "provider to upgrade PHP version."
353
  msgstr ""
 
 
354
 
355
+ #: includes/class-cntctfrm-settings.php:347
 
356
  msgid ""
357
+ "Email 'FROM' field option was changed, which may cause email messages being "
358
+ "moved to the spam folder or email delivery failures."
359
  msgstr ""
 
 
360
 
361
+ #: includes/class-cntctfrm-settings.php:357
 
362
  msgid ""
363
+ "If the 'Redirect to page' option is selected then the URL field should be in "
364
+ "the following format"
 
 
365
  msgstr ""
366
+ "’ページに転送’オプションを選択した場合は、URLフィールドが、以下の形式になりま"
367
+ "す"
368
+
369
+ #: includes/class-cntctfrm-settings.php:364
370
+ msgid "Such user does not exist."
371
+ msgstr "そのようなユーザは存在しません。"
372
+
373
+ #: includes/class-cntctfrm-settings.php:374
374
+ msgid ""
375
+ "Please enter a valid email address in the 'Use this email address' field."
376
+ msgstr ""
377
+ "'このEメールアドレスを使用'フィールドに有効化なEメール・アドレスを入力して下"
378
+ "さい。"
379
 
380
+ #: includes/class-cntctfrm-settings.php:382
381
+ msgid "Please enter a valid email address in the 'FROM' field."
382
+ msgstr "'送信者'フィールドに有効なEメールアドレスを入力して下さい。"
383
+
384
+ #: includes/class-cntctfrm-settings.php:402
385
+ msgid "Settings saved."
386
+ msgstr "設定保存."
387
+
388
+ #: includes/class-cntctfrm-settings.php:404
389
+ msgid "Settings are not saved."
390
+ msgstr "設定は保存さていません。"
391
+
392
+ #: includes/class-cntctfrm-settings.php:429
393
  msgid ""
394
  "If you leave the fields empty, the messages will be sent to the email "
395
  "address specified during registration."
397
  "以下の項目の情報が空欄の場合、登録の際に記述したアドレスにメッセージが送られ"
398
  "ます。"
399
 
400
+ #: includes/class-cntctfrm-settings.php:432
401
  #, fuzzy
402
  msgid "The user's email address"
403
  msgstr "wordpressユーザのEメールを利用r:"
404
 
405
+ #: includes/class-cntctfrm-settings.php:437
406
  #, fuzzy
407
  msgid "Select a username"
408
  msgstr "ユーザ名の選択"
409
 
410
+ #: includes/class-cntctfrm-settings.php:450
411
  #, fuzzy
412
  msgid ""
413
  "Select a username of the person who should get the messages from the contact "
414
  "form."
415
  msgstr "コンタクトフォームからメッセージを受け取る方のユーザ名を入力。"
416
 
417
+ #: includes/class-cntctfrm-settings.php:455
418
  #, fuzzy
419
  msgid "Use this email address"
420
  msgstr "このEメールを利用:"
421
 
422
+ #: includes/class-cntctfrm-settings.php:460
423
  #, fuzzy
424
  msgid "Enter the email address for receiving messages"
425
  msgstr "メッセージ受信用のEメールを設定。"
426
 
427
+ #: includes/class-cntctfrm-settings.php:473
 
 
 
 
 
428
  #, fuzzy
429
  msgid "Add department selectbox to the contact form"
430
  msgstr "部署選択ボックスをコンタクトフォームに追加:"
431
 
432
+ #: includes/class-cntctfrm-settings.php:492
 
 
 
 
 
 
 
 
 
 
433
  msgid "Save emails to the database"
434
  msgstr "メールをデータベースに保存"
435
 
436
+ #: includes/class-cntctfrm-settings.php:504
437
+ #: includes/class-cntctfrm-settings.php:518
438
+ #: includes/class-cntctfrm-settings.php:525
439
  msgid "Using"
440
  msgstr "使用中"
441
 
442
+ #: includes/class-cntctfrm-settings.php:510
443
+ #: includes/class-cntctfrm-settings.php:889
444
+ #: includes/class-cntctfrm-settings.php:930
445
+ #: includes/class-cntctfrm-settings.php:965
446
  msgid "Please activate the appropriate option on"
447
  msgstr ""
448
 
449
+ #: includes/class-cntctfrm-settings.php:513
450
+ #: includes/class-cntctfrm-settings.php:892
451
+ #: includes/class-cntctfrm-settings.php:933
452
+ #: includes/class-cntctfrm-settings.php:968
453
  #, fuzzy
454
  msgid "settings page"
455
  msgstr "設定ページ"
456
 
457
+ #: includes/class-cntctfrm-settings.php:519
458
+ #: includes/class-cntctfrm-settings.php:899
459
+ #: includes/class-cntctfrm-settings.php:941
460
+ #: includes/class-cntctfrm-settings.php:975
461
  msgid "Activate"
462
  msgstr "有効化"
463
 
464
+ #: includes/class-cntctfrm-settings.php:526
465
+ #: includes/class-cntctfrm-settings.php:908
466
+ #: includes/class-cntctfrm-settings.php:947
467
+ #: includes/class-cntctfrm-settings.php:980
468
  msgid "Download"
469
  msgstr "ダウンロード"
470
 
471
+ #: includes/class-cntctfrm-settings.php:551
472
  msgid "Sending method"
473
  msgstr ""
474
 
475
+ #: includes/class-cntctfrm-settings.php:556
476
  msgid "Wp-mail"
477
  msgstr "WPメール"
478
 
479
+ #: includes/class-cntctfrm-settings.php:557
480
  #, fuzzy
481
  msgid "You can use the Wordpress wp_mail function for mailing"
482
  msgstr "メールにwp_mali機能が利用できます"
483
 
484
+ #: includes/class-cntctfrm-settings.php:562
485
  msgid "Mail"
486
  msgstr "メール"
487
 
488
+ #: includes/class-cntctfrm-settings.php:563
489
  #, fuzzy
490
  msgid "You can use the PHP mail function for mailing"
491
  msgstr "メールにwp_mali機能が利用できます"
492
 
493
+ #: includes/class-cntctfrm-settings.php:569
494
  msgid "'FROM' field"
495
  msgstr ""
496
 
497
+ #: includes/class-cntctfrm-settings.php:585
498
  msgid "User name"
499
  msgstr "ユーザ名"
500
 
501
+ #: includes/class-cntctfrm-settings.php:587
502
  msgid ""
503
  "The name of the user who fills the form will be used in the field 'From'."
504
  msgstr "フォームを入力するユーザの名前が、'送信者'フィールドに使用されます。"
505
 
506
+ #: includes/class-cntctfrm-settings.php:609
 
 
 
 
507
  msgid "User email"
508
  msgstr "ユーザ・Eメール"
509
 
510
+ #: includes/class-cntctfrm-settings.php:611
511
  msgid ""
512
  "The email address of the user who fills the form will be used in the field "
513
  "'From'."
515
  "フォームを入力したユーザのEメール・アドレスは、'送信者'フィールドに使用されま"
516
  "す。"
517
 
518
+ #: includes/class-cntctfrm-settings.php:620
519
  msgid ""
520
  "If this option is changed, email messages may be moved to the spam folder or "
521
  "email delivery failures may occur."
522
  msgstr ""
523
 
524
+ #: includes/class-cntctfrm-settings.php:629
525
  msgid "Required symbol"
526
  msgstr "必須シンボル"
527
 
528
+ #: includes/class-cntctfrm-settings.php:639
529
  msgid "Fields"
530
  msgstr "フィールド"
531
 
532
+ #: includes/class-cntctfrm-settings.php:640
533
+ #: includes/class-cntctfrm-settings.php:667
534
+ #: includes/class-cntctfrm-settings.php:694
535
+ #: includes/class-cntctfrm-settings.php:714
536
+ #: includes/class-cntctfrm-settings.php:750
537
+ #: includes/class-cntctfrm-settings.php:832
538
  msgid "Used"
539
  msgstr "使用済"
540
 
541
+ #: includes/class-cntctfrm-settings.php:641
542
+ #: includes/class-cntctfrm-settings.php:656
543
+ #: includes/class-cntctfrm-settings.php:671
544
+ #: includes/class-cntctfrm-settings.php:698
545
+ #: includes/class-cntctfrm-settings.php:718
546
+ #: includes/class-cntctfrm-settings.php:754
547
+ #: includes/class-cntctfrm-settings.php:767
548
+ #: includes/class-cntctfrm-settings.php:791
549
  msgid "Required"
550
  msgstr "必須"
551
 
552
+ #: includes/class-cntctfrm-settings.php:643
553
+ #: includes/class-cntctfrm-settings.php:676
554
+ #: includes/class-cntctfrm-settings.php:733
555
+ #: includes/class-cntctfrm-settings.php:772
556
+ #: includes/class-cntctfrm-settings.php:796
557
  msgid "Visible"
558
  msgstr "可視"
559
 
560
+ #: includes/class-cntctfrm-settings.php:644
561
+ #: includes/class-cntctfrm-settings.php:680
562
+ #: includes/class-cntctfrm-settings.php:737
563
+ #: includes/class-cntctfrm-settings.php:776
564
+ #: includes/class-cntctfrm-settings.php:800
565
  msgid "Disabled for editing"
566
  msgstr "編集を無効化"
567
 
568
+ #: includes/class-cntctfrm-settings.php:645
569
+ #: includes/class-cntctfrm-settings.php:704
570
+ #: includes/class-cntctfrm-settings.php:780
571
+ #: includes/class-cntctfrm-settings.php:804
572
  msgid "Field's default value"
573
  msgstr "フィールドのデフォルト値"
574
 
575
+ #: includes/class-cntctfrm-settings.php:652
576
  #, fuzzy
577
  msgid "Department selectbox"
578
  msgstr "場所選択ボックス"
579
 
580
+ #: includes/class-cntctfrm-settings.php:684
581
  msgid "Use User's name as a default value if the user is logged in."
582
  msgstr ""
583
 
584
+ #: includes/class-cntctfrm-settings.php:685
585
+ #: includes/class-cntctfrm-settings.php:742
586
  msgid ""
587
  "'Visible' and 'Disabled for editing' options will be applied only to logged-"
588
  "in users."
589
  msgstr ""
590
 
591
+ #: includes/class-cntctfrm-settings.php:691
592
  msgid "Location selectbox"
593
  msgstr "場所選択ボックス"
594
 
595
+ #: includes/class-cntctfrm-settings.php:741
596
  msgid "Use User's email as a default value if the user is logged in."
597
  msgstr ""
598
 
599
+ #: includes/class-cntctfrm-settings.php:825
600
  msgid "Attachment block"
601
  msgstr "添付ブロック"
602
 
603
+ #: includes/class-cntctfrm-settings.php:827
604
  msgid "Users can attach the following file formats"
605
  msgstr "ユーザは、以下のタイプのファイルを添付できる"
606
 
607
+ #: includes/class-cntctfrm-settings.php:845
608
  msgid "Add to the form"
609
  msgstr "フォームに追加"
610
 
611
+ #: includes/class-cntctfrm-settings.php:850
612
  msgid "Tips below the Attachment"
613
  msgstr "添付ファイルの下のチップス"
614
 
615
+ #: includes/class-cntctfrm-settings.php:857
616
  msgid "'Send me a copy' block"
617
  msgstr "'コピーを自分に送る'ブロック"
618
 
619
+ #: includes/class-cntctfrm-settings.php:864
620
  msgid "GDPR Compliance"
621
  msgstr ""
622
 
623
+ #: includes/class-cntctfrm-settings.php:869
624
  msgid "Link to Privacy Policy Page"
625
  msgstr ""
626
 
627
+ #: includes/class-cntctfrm-settings.php:873
628
  msgid "Text for Privacy Policy Link"
629
  msgstr ""
630
 
631
+ #: includes/class-cntctfrm-settings.php:901
632
  msgid "Activate for network"
633
  msgstr ""
634
 
635
+ #: includes/class-cntctfrm-settings.php:991
636
  msgid "Agreement checkbox"
637
  msgstr "同意のチェックボックス"
638
 
639
+ #: includes/class-cntctfrm-settings.php:991
640
  msgid "Required checkbox for submitting the form"
641
  msgstr "フォームを送信するために必須のチェックボックス"
642
 
643
+ #: includes/class-cntctfrm-settings.php:992
644
  msgid "Optional checkbox"
645
  msgstr "オプションのチェックボックス"
646
 
647
+ #: includes/class-cntctfrm-settings.php:992
648
  msgid "Optional checkbox, the results of which will be displayed in email"
649
  msgstr "オプションのチェックボックス、Eメールに表示される結果"
650
 
651
+ #: includes/class-cntctfrm-settings.php:1007
652
  msgid "Delete an attachment file from the server after the email is sent"
653
  msgstr "Eメール送信後、サーバから添付ファイルを削除"
654
 
655
+ #: includes/class-cntctfrm-settings.php:1013
656
  msgid "Email in HTML format sending"
657
  msgstr "HTMLフォーマットでメール送信"
658
 
659
+ #: includes/class-cntctfrm-settings.php:1017
660
  msgid "Display additional info in the email"
661
  msgstr "メール中に追加情報を表示"
662
 
663
+ #: includes/class-cntctfrm-settings.php:1023
664
  #, fuzzy
665
  msgid "Sent from (IP address)"
666
  msgstr "送信された(IP-Adresse)"
667
 
668
+ #: includes/class-cntctfrm-settings.php:1023
669
  msgid "Example: Sent from (IP address): 127.0.0.1"
670
  msgstr ""
671
 
672
+ #: includes/class-cntctfrm-settings.php:1024
 
 
 
 
673
  msgid "Example: Date/Time: August 19, 2013 8:50 pm"
674
  msgstr ""
675
 
676
+ #: includes/class-cntctfrm-settings.php:1025
 
 
 
 
677
  msgid ""
678
  "Example: Sent from (referer): https://bestwebsoft.com/contacts/contact-us/"
679
  msgstr ""
680
 
681
+ #: includes/class-cntctfrm-settings.php:1026
 
 
 
 
682
  msgid ""
683
  "Example: Using (user agent): Mozilla/5.0 (Windows NT 6.2; WOW64) "
684
  "AppleWebKit/537.36 (KHTML, like Gecko) Chrome/28.0.1500.95 Safari/537.36"
685
  msgstr ""
686
 
687
+ #: includes/class-cntctfrm-settings.php:1031
688
  msgid "Language settings for the field names in the form"
689
  msgstr "フォーム内のフィールド名の言語設定"
690
 
691
+ #: includes/class-cntctfrm-settings.php:1040
692
  msgid "Add a language"
693
  msgstr "言語の追加"
694
 
695
+ #: includes/class-cntctfrm-settings.php:1044
696
  msgid "Change the names of the contact form fields and error messages"
697
  msgstr "コンタクトフォームのフィールド名及びエラーメッセージを変更"
698
 
699
+ #: includes/class-cntctfrm-settings.php:1049
700
+ #: includes/class-cntctfrm-settings.php:1147
701
+ #: includes/class-cntctfrm-settings.php:1252
 
 
702
  msgid "Default"
703
  msgstr "標準"
704
 
705
+ #: includes/class-cntctfrm-settings.php:1062
706
+ #: includes/class-cntctfrm-settings.php:1101
707
  msgid "click to expand/hide the list"
708
  msgstr "クリックして、このリストを展開/隠す"
709
 
710
+ #: includes/class-cntctfrm-settings.php:1071
711
+ #: includes/class-cntctfrm-settings.php:1110
712
  msgid "Tips below the Attachment block"
713
  msgstr "添付ファイル・ブロックの下のチップス"
714
 
715
+ #: includes/class-cntctfrm-settings.php:1075
716
+ #: includes/class-cntctfrm-settings.php:1114
717
  msgid "Error message for the Name field"
718
  msgstr "名前フィールド用のエラーメッセージ"
719
 
720
+ #: includes/class-cntctfrm-settings.php:1076
721
+ #: includes/class-cntctfrm-settings.php:1115
722
  msgid "Error message for the Address field"
723
  msgstr "住所フィールド用のエラーメッセージ"
724
 
725
+ #: includes/class-cntctfrm-settings.php:1077
726
+ #: includes/class-cntctfrm-settings.php:1116
727
  msgid "Error message for the Email field"
728
  msgstr "Eメール・フィールド用のエラーメッセージ"
729
 
730
+ #: includes/class-cntctfrm-settings.php:1078
731
+ #: includes/class-cntctfrm-settings.php:1117
732
  msgid "Error message for the Phone field"
733
  msgstr "電話フィールド用のエラーメッセージ"
734
 
735
+ #: includes/class-cntctfrm-settings.php:1079
736
+ #: includes/class-cntctfrm-settings.php:1118
737
  msgid "Error message for the Subject field"
738
  msgstr "件名フィールド用のエラーメッセージ"
739
 
740
+ #: includes/class-cntctfrm-settings.php:1080
741
+ #: includes/class-cntctfrm-settings.php:1119
742
  msgid "Error message for the Message field"
743
  msgstr "メッセージ・フィールド用のエラーメッセージ"
744
 
745
+ #: includes/class-cntctfrm-settings.php:1081
746
+ #: includes/class-cntctfrm-settings.php:1120
747
  msgid "Error message about the file type for the Attachment field"
748
  msgstr "添付フィールド用の拡張子タイプに関するエラーメッセージ"
749
 
750
+ #: includes/class-cntctfrm-settings.php:1082
751
+ #: includes/class-cntctfrm-settings.php:1121
752
  msgid ""
753
  "Error message while uploading a file for the Attachment field to the server"
754
  msgstr "添付フィールド用のファイルをサーバにアップロード中のエラーメッセージ"
755
 
756
+ #: includes/class-cntctfrm-settings.php:1083
757
+ #: includes/class-cntctfrm-settings.php:1122
758
  msgid "Error message while moving the file for the Attachment field"
759
  msgstr "添付フィールド用のファイルを移動中のエラーメッセージ"
760
 
761
+ #: includes/class-cntctfrm-settings.php:1084
762
+ #: includes/class-cntctfrm-settings.php:1123
763
  msgid "Error message when file size limit for the Attachment field is exceeded"
764
  msgstr "添付フィールド用のファイルサイズ制限を超した場合のエラーメッセージ"
765
 
766
+ #: includes/class-cntctfrm-settings.php:1085
767
+ #: includes/class-cntctfrm-settings.php:1124
768
  msgid "Error message for the Captcha field"
769
  msgstr "Captcha フィールド用のエラーメッセージ"
770
 
771
+ #: includes/class-cntctfrm-settings.php:1086
772
+ #: includes/class-cntctfrm-settings.php:1125
773
  msgid "Error message for the whole form"
774
  msgstr "全体フォーム用のエラーメッセージ"
775
 
776
+ #: includes/class-cntctfrm-settings.php:1138
 
 
 
 
 
 
 
 
 
 
 
 
 
 
777
  msgid "Use the changed names of the contact form fields in the email"
778
  msgstr "Eメール内のコンタクトフォーム・フィールドの変更された名前を使用"
779
 
780
+ #: includes/class-cntctfrm-settings.php:1144
781
  msgid "Action after email is sent"
782
  msgstr "メール送信後の動作"
783
 
784
+ #: includes/class-cntctfrm-settings.php:1146
785
  msgid "Display text"
786
  msgstr "テキストを表示"
787
 
788
+ #: includes/class-cntctfrm-settings.php:1160
789
+ #: includes/class-cntctfrm-settings.php:1174
790
  msgid "Text"
791
  msgstr "文字"
792
 
793
+ #: includes/class-cntctfrm-settings.php:1185
794
  msgid "Redirect to the page"
795
  msgstr "ページに転送"
796
 
797
+ #: includes/class-cntctfrm-settings.php:1186
798
  msgid "Url"
799
  msgstr "Url"
800
 
801
+ #: includes/class-cntctfrm-settings.php:1206
 
 
 
 
 
 
 
 
 
 
 
 
802
  #, php-format
803
  msgid ""
804
+ "Please enable JavaScript to change '%s', '%s', '%s', '%s' options and for "
805
+ "fields sorting."
 
806
  msgstr ""
 
 
 
807
 
808
+ #: includes/class-cntctfrm-settings.php:1207
809
+ #: includes/class-cntctfrm-settings.php:1224
810
+ msgid "Form layout"
 
 
 
 
 
811
  msgstr ""
812
 
813
+ #: includes/class-cntctfrm-settings.php:1208
814
+ #: includes/class-cntctfrm-settings.php:1291
815
+ #, fuzzy
816
+ msgid "Labels position"
817
+ msgstr "送信ボタン"
818
+
819
+ #: includes/class-cntctfrm-settings.php:1209
820
+ #: includes/class-cntctfrm-settings.php:1309
821
+ msgid "Labels align"
822
  msgstr ""
823
 
824
+ #: includes/class-cntctfrm-settings.php:1210
825
+ #: includes/class-cntctfrm-settings.php:1236
826
  #, fuzzy
827
  msgid "Submit position"
828
  msgstr "送信ボタン"
829
 
830
+ #: includes/class-cntctfrm-settings.php:1211
831
+ #: includes/class-cntctfrm-settings.php:1340
832
+ msgid "Add tooltips"
833
+ msgstr "ツールチップの追加"
834
+
835
+ #: includes/class-cntctfrm-settings.php:1212
836
+ #: includes/class-cntctfrm-settings.php:1381
837
+ msgid "Style options"
838
+ msgstr "スタイル・オプション"
839
+
840
+ #: includes/class-cntctfrm-settings.php:1228
841
  msgid "One column"
842
  msgstr ""
843
 
844
+ #: includes/class-cntctfrm-settings.php:1231
845
  msgid "Two columns"
846
  msgstr ""
847
 
848
+ #: includes/class-cntctfrm-settings.php:1240
849
+ #: includes/class-cntctfrm-settings.php:1280
850
+ #: includes/class-cntctfrm-settings.php:1298
851
+ #: includes/class-cntctfrm-settings.php:1313
852
  msgid "Left"
853
  msgstr ""
854
 
855
+ #: includes/class-cntctfrm-settings.php:1243
856
+ #: includes/class-cntctfrm-settings.php:1286
857
+ #: includes/class-cntctfrm-settings.php:1301
858
+ #: includes/class-cntctfrm-settings.php:1319
859
  msgid "Right"
860
  msgstr ""
861
 
862
+ #: includes/class-cntctfrm-settings.php:1248
863
  msgid "Width"
864
  msgstr ""
865
 
866
+ #: includes/class-cntctfrm-settings.php:1256
867
  msgid "Custom"
868
  msgstr ""
869
 
870
+ #: includes/class-cntctfrm-settings.php:1263
871
  msgid "px"
872
  msgstr ""
873
 
874
+ #: includes/class-cntctfrm-settings.php:1276
875
  msgid "Form align"
876
  msgstr ""
877
 
878
+ #: includes/class-cntctfrm-settings.php:1283
879
+ #: includes/class-cntctfrm-settings.php:1316
880
  msgid "Center"
881
  msgstr ""
882
 
883
+ #: includes/class-cntctfrm-settings.php:1295
 
 
 
 
 
884
  msgid "Top"
885
  msgstr ""
886
 
887
+ #: includes/class-cntctfrm-settings.php:1304
888
  msgid "Bottom"
889
  msgstr ""
890
 
891
+ #: includes/class-cntctfrm-settings.php:1324
 
 
 
 
892
  msgid "Errors output"
893
  msgstr "エラー出力"
894
 
895
+ #: includes/class-cntctfrm-settings.php:1327
896
  msgid "Display error messages"
897
  msgstr "エラーメッセージの表示"
898
 
899
+ #: includes/class-cntctfrm-settings.php:1328
900
  msgid "Color of the input field errors."
901
  msgstr "入力フィールド・エラーの色"
902
 
903
+ #: includes/class-cntctfrm-settings.php:1329
904
  msgid "Display error messages & color of the input field errors"
905
  msgstr "エラーメッセージと入力フィールド・エラーの色を表示"
906
 
907
+ #: includes/class-cntctfrm-settings.php:1334
908
  msgid "Add placeholder to the input blocks"
909
  msgstr "プレースホルダーを入力ブロックに追加"
910
 
911
+ #: includes/class-cntctfrm-settings.php:1354
 
 
 
 
912
  msgid "Email address"
913
  msgstr "Eメール・アドレス"
914
 
915
+ #: includes/class-cntctfrm-settings.php:1385
 
 
 
 
 
 
 
 
916
  msgid "Text color"
917
  msgstr "文字色"
918
 
919
+ #: includes/class-cntctfrm-settings.php:1393
920
  msgid "Label text color"
921
  msgstr "ラベル文字色"
922
 
923
+ #: includes/class-cntctfrm-settings.php:1402
924
  msgid "Placeholder color"
925
  msgstr "プレースホルダ色"
926
 
927
+ #: includes/class-cntctfrm-settings.php:1407
928
  msgid "Errors color"
929
  msgstr "エラーの色"
930
 
931
+ #: includes/class-cntctfrm-settings.php:1415
932
  msgid "Error text color"
933
  msgstr "エラーテキストの色"
934
 
935
+ #: includes/class-cntctfrm-settings.php:1423
936
  msgid "Background color of the input field errors"
937
  msgstr "入力フィールド・エラーの背景色"
938
 
939
+ #: includes/class-cntctfrm-settings.php:1431
940
  msgid "Border color of the input field errors"
941
  msgstr "入力フィールド・エラーの罫線色"
942
 
943
+ #: includes/class-cntctfrm-settings.php:1439
944
  msgid "Placeholder color of the input field errors"
945
  msgstr "入力フィールド・エラー用のプレースホルダ色"
946
 
947
+ #: includes/class-cntctfrm-settings.php:1444
948
  msgid "Input fields"
949
  msgstr "フィールドを入力"
950
 
951
+ #: includes/class-cntctfrm-settings.php:1452
952
  msgid "Input fields background color"
953
  msgstr "フィールドの背景色の入力"
954
 
955
+ #: includes/class-cntctfrm-settings.php:1460
956
  msgid "Text fields color"
957
  msgstr "文字フィールド色"
958
 
959
+ #: includes/class-cntctfrm-settings.php:1464
960
  msgid "Border width in px, numbers only"
961
  msgstr "罫線幅(px単位)、数値のみ"
962
 
963
+ #: includes/class-cntctfrm-settings.php:1472
964
+ #: includes/class-cntctfrm-settings.php:1505
965
  msgid "Border color"
966
  msgstr "罫線色"
967
 
968
+ #: includes/class-cntctfrm-settings.php:1477
969
  msgid "Submit button"
970
  msgstr "送信ボタン"
971
 
972
+ #: includes/class-cntctfrm-settings.php:1481
973
  msgid "Width in px, numbers only"
974
  msgstr "px単位の幅、数字のみ"
975
 
976
+ #: includes/class-cntctfrm-settings.php:1489
977
  msgid "Button color"
978
  msgstr "ボタンの色"
979
 
980
+ #: includes/class-cntctfrm-settings.php:1497
981
  msgid "Button text color"
982
  msgstr "ボタン文字の色"
983
 
984
+ #: includes/class-cntctfrm-settings.php:1524
985
  #, fuzzy
986
  msgid "Contact Form | Preview"
987
  msgstr "Contact Form Pro | プレビュー"
988
 
989
+ #: includes/class-cntctfrm-settings.php:1525
990
  msgid "Drag the necessary field to sort fields."
991
  msgstr ""
992
 
993
+ #: includes/class-cntctfrm-settings.php:1772
994
+ msgid "Contact Form Shortcode"
 
 
 
995
  msgstr ""
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
996
 
997
+ #: includes/class-cntctfrm-settings.php:1775
998
+ msgid "Add Contact Form to your page or post using the following shortcode:"
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
999
  msgstr ""
1000
 
1001
+ #~ msgid "If you upgrade to Pro version all your settings will be saved."
1002
+ #~ msgstr "PROバージョンにアップグレードすると、設定が保存されます。"
 
1003
 
1004
+ #, fuzzy
1005
+ #~ msgid ""
1006
+ #~ "If you would like to add the Contact Form to your website, just copy and "
1007
+ #~ "paste this shortcode to your post or page or widget"
1008
+ #~ msgstr ""
1009
+ #~ "Contact Formをあなたのサイトに追加したい場合は、このショートカットを投稿、"
1010
+ #~ "ページ又はウェジットにコピーして貼り付けるだけです:"
1011
 
1012
+ #~ msgid "Save Changes"
1013
+ #~ msgstr "変更保存"
 
1014
 
1015
+ #~ msgid "Contact Form"
1016
+ #~ msgstr "Contact Form"
 
1017
 
 
1018
  #, fuzzy
1019
+ #~ msgid "Additional settings"
1020
+ #~ msgstr "追加オプション"
 
 
1021
 
1022
+ #~ msgid "Go PRO"
1023
+ #~ msgstr "PROに進む"
 
1024
 
 
 
 
 
 
1025
  #, fuzzy
1026
+ #~ msgid "Notice"
1027
+ #~ msgstr "通知:"
1028
 
 
1029
  #, fuzzy
1030
+ #~ msgid ""
1031
+ #~ "If you would like to add a Contact Form to your page or post, please use "
1032
+ #~ "%s button"
1033
+ #~ msgstr ""
1034
+ #~ "Contact Formをあなたのサイトに追加したい場合は、このショートカットを投稿、"
1035
+ #~ "ページ又はウェジットにコピーして貼り付けるだけです:"
1036
+
1037
+ #~ msgid "Auto Response"
1038
+ #~ msgstr "自動応答"
1039
+
1040
+ #~ msgid ""
1041
+ #~ "You can use %%NAME%% to display data from the email field and %%MESSAGE%% "
1042
+ #~ "to display data from the Message field, as well as %%SITENAME%% to "
1043
+ #~ "display blog name."
1044
+ #~ msgstr ""
1045
+ #~ "ブログ名を表示するための%%SITENAME%% と同様に、Eメールフィールドからデータ"
1046
+ #~ "を表示するために%%NAME%%を、メッセージフィールドからデータを表示するため"
1047
+ #~ "に%%MESSAGE%%が利用することが出来ます。"
1048
 
1049
  #~ msgid "Example: Sent from (IP address):\t127.0.0.1"
1050
  #~ msgstr "例: 送信された(IP-Adresse):\t127.0.0.1"
languages/contact-form-plugin-nb_NO.mo CHANGED
Binary file
languages/contact-form-plugin-nb_NO.po CHANGED
@@ -2,8 +2,8 @@ msgid ""
2
  msgstr ""
3
  "Project-Id-Version: Contact Form\n"
4
  "Report-Msgid-Bugs-To: \n"
5
- "POT-Creation-Date: 2018-05-16 14:26+0300\n"
6
- "PO-Revision-Date: 2018-05-16 14:26+0300\n"
7
  "Last-Translator: plugin@bestwebsoft.com <plugin@bestwebsoft.com>\n"
8
  "Language-Team: Per Rommetveit <bestwebsoftcontact@nordsoft.no>\n"
9
  "Language: nb_NO\n"
@@ -16,54 +16,75 @@ msgstr ""
16
  "X-Generator: Poedit 1.8.7.1\n"
17
  "X-Poedit-SearchPath-0: .\n"
18
 
19
- #: contact_form.php:37 contact_form.php:992
 
20
  msgid "Contact Form Settings"
21
  msgstr "Instillinger for kontaktskjema"
22
 
23
- #: contact_form.php:37
24
- msgid "Contact Form"
25
- msgstr "Kontaktskjema"
 
26
 
27
- #: contact_form.php:322 contact_form.php:1172 contact_form.php:1262
28
- #: contact_form.php:1668 contact_form.php:1707 contact_form.php:1975
29
- #: contact_form.php:3134 contact_form.php:3180
 
 
 
 
 
 
 
 
 
 
30
  msgid "Name"
31
  msgstr "Navn"
32
 
33
- #: contact_form.php:323 contact_form.php:1309 contact_form.php:1669
34
- #: contact_form.php:1708 contact_form.php:1980 contact_form.php:3141
35
- #: contact_form.php:3186
 
 
36
  msgid "Address"
37
  msgstr "Adresse"
38
 
39
- #: contact_form.php:324 contact_form.php:1325 contact_form.php:1670
40
- #: contact_form.php:1709
 
41
  msgid "Email Address"
42
  msgstr "E-post"
43
 
44
- #: contact_form.php:325 contact_form.php:1348 contact_form.php:1671
45
- #: contact_form.php:1710
 
46
  msgid "Phone number"
47
  msgstr "Telefon"
48
 
49
- #: contact_form.php:326 contact_form.php:1364 contact_form.php:1672
50
- #: contact_form.php:1711 contact_form.php:1995 contact_form.php:3152
51
- #: contact_form.php:3195
 
 
52
  msgid "Subject"
53
  msgstr "Tema"
54
 
55
- #: contact_form.php:327 contact_form.php:1388 contact_form.php:1673
56
- #: contact_form.php:1712 contact_form.php:1999 contact_form.php:3157
57
- #: contact_form.php:3199
 
 
58
  msgid "Message"
59
  msgstr "Melding"
60
 
61
- #: contact_form.php:328 contact_form.php:1674 contact_form.php:1713
62
- #: contact_form.php:2004
 
63
  msgid "Attachment"
64
  msgstr "Vedheng"
65
 
66
- #: contact_form.php:329
67
  msgid ""
68
  "Supported file types: HTML, TXT, CSS, GIF, PNG, JPEG, JPG, TIFF, BMP, AI, "
69
  "EPS, PS, CSV, RTF, PDF, DOC, DOCX, XLS, XLSX, ZIP, RAR, WAV, MP3, PPT."
@@ -71,171 +92,305 @@ msgstr ""
71
  "Støttede filtyper: HTML, TXT, CSS, GIF, PNG, JPEG, JPG, TIFF, BMP, AI, EPS, "
72
  "PS, CSV, RTF, PDF, DOC, DOCX, XLS, XLSX, ZIP, RAR, WAV, MP3, PPT."
73
 
74
- #: contact_form.php:330 contact_form.php:1676 contact_form.php:1715
 
75
  msgid "Send me a copy"
76
  msgstr "Send meg en kopi"
77
 
78
- #: contact_form.php:331 contact_form.php:1677 contact_form.php:1716
 
79
  msgid "I consent to having this site collect my personal data."
80
  msgstr ""
81
 
82
- #: contact_form.php:332 contact_form.php:1678 contact_form.php:1717
 
83
  msgid "Submit"
84
  msgstr "Send"
85
 
86
- #: contact_form.php:333
87
  msgid "Your name is required."
88
  msgstr "Navn er obligatorisk."
89
 
90
- #: contact_form.php:334
91
  msgid "Address is required."
92
  msgstr "Adresse er påkrevet."
93
 
94
- #: contact_form.php:335
95
  msgid "A valid email address is required."
96
  msgstr "Gyldig e-post adresse er nødvendig."
97
 
98
- #: contact_form.php:336
99
  msgid "Phone number is required."
100
  msgstr "Telefon er nødvendig."
101
 
102
- #: contact_form.php:337
103
  msgid "Subject is required."
104
  msgstr "Tema er nødvendig."
105
 
106
- #: contact_form.php:338
107
  msgid "Message text is required."
108
  msgstr "Meldingsinnhold er nødvendig."
109
 
110
- #: contact_form.php:339
111
  msgid "File format is not valid."
112
  msgstr "Filformat er ikke gyldig"
113
 
114
- #: contact_form.php:340
115
  msgid "File upload error."
116
  msgstr "Feil ved opplasting av fil."
117
 
118
- #: contact_form.php:341
119
  msgid "The file could not be uploaded."
120
  msgstr "Filen kunne ikke lastes opp."
121
 
122
- #: contact_form.php:342
123
  msgid "This file is too large."
124
  msgstr "Filen er for stor."
125
 
126
- #: contact_form.php:343
127
  msgid "Please fill out the CAPTCHA."
128
  msgstr "Vennligst fyll ut CAPTCHA."
129
 
130
- #: contact_form.php:344
131
  msgid "Please make corrections below and try again."
132
  msgstr "Vennligst gjør korrigeringer, og prøv igjen."
133
 
134
- #: contact_form.php:346
135
  msgid "Thank you for contacting us."
136
  msgstr "Takk for at du kontakter oss."
137
 
138
- #: contact_form.php:683 contact_form.php:949
139
- msgid "Settings saved."
140
- msgstr "Instillinger lagret."
141
 
142
- #: contact_form.php:894
143
  msgid ""
144
- "Email 'FROM' field option was changed, which may cause email messages being "
145
- "moved to the spam folder or email delivery failures."
146
  msgstr ""
 
 
147
 
148
- #: contact_form.php:904
149
  msgid ""
150
- "If the 'Redirect to page' option is selected then the URL field should be in "
151
- "the following format"
 
152
  msgstr ""
153
- "Dersom 'Videresend til side' instilling er valgt, så skal URL feltet være i "
154
- "følgende format"
155
 
156
- #: contact_form.php:911
157
- msgid "Such user does not exist."
158
- msgstr "En slik bruker eksisterer ikke."
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
159
 
160
- #: contact_form.php:921
 
 
 
 
 
161
  msgid ""
162
- "Please enter a valid email address in the 'Use this email address' field."
 
163
  msgstr ""
164
- "Vennligst skriv inn en gyldig e-postadresse i 'Bruk denne e-posten' feltet."
 
165
 
166
- #: contact_form.php:929
167
- msgid "Please enter a valid email address in the 'FROM' field."
168
- msgstr "Vennligst skriv inn en gyldig e-post i 'FRA' feltet."
169
 
170
- #: contact_form.php:951
171
- msgid "Settings are not saved."
172
- msgstr "Instillinger er ikke lagret."
 
 
 
 
 
 
 
 
 
173
 
174
- #: contact_form.php:989
175
- msgid "All plugin settings were restored."
 
 
176
  msgstr ""
177
 
178
- #: contact_form.php:995
179
- msgid "How to Use Step-by-step Instruction"
 
 
 
 
 
 
 
180
  msgstr ""
181
 
182
- #: contact_form.php:998 contact_form.php:3343 contact_form.php:3357
183
- msgid "Settings"
184
- msgstr "Instillinger"
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
185
 
186
- #: contact_form.php:999
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
187
  #, fuzzy
188
- msgid "Additional settings"
189
- msgstr "Ekstrainstillinger"
 
 
 
 
 
 
 
 
 
190
 
191
- #: contact_form.php:1000
 
 
 
 
 
2
  msgstr ""
3
  "Project-Id-Version: Contact Form\n"
4
  "Report-Msgid-Bugs-To: \n"
5
+ "POT-Creation-Date: 2019-02-25 16:27+0200\n"
6
+ "PO-Revision-Date: 2019-02-25 16:27+0200\n"
7
  "Last-Translator: plugin@bestwebsoft.com <plugin@bestwebsoft.com>\n"
8
  "Language-Team: Per Rommetveit <bestwebsoftcontact@nordsoft.no>\n"
9
  "Language: nb_NO\n"
16
  "X-Generator: Poedit 1.8.7.1\n"
17
  "X-Poedit-SearchPath-0: .\n"
18
 
19
+ #: contact_form.php:39 contact_form.php:47 contact_form.php:647
20
+ #: includes/class-cntctfrm-settings.php:425
21
  msgid "Contact Form Settings"
22
  msgstr "Instillinger for kontaktskjema"
23
 
24
+ #: contact_form.php:48 contact_form.php:1619 contact_form.php:1633
25
+ #: includes/class-cntctfrm-settings.php:27
26
+ msgid "Settings"
27
+ msgstr "Instillinger"
28
 
29
+ #: contact_form.php:63 includes/class-cntctfrm-settings.php:483
30
+ #: includes/class-cntctfrm-settings.php:817
31
+ #: includes/class-cntctfrm-settings.php:998
32
+ #: includes/class-cntctfrm-settings.php:1513
33
+ msgid "Upgrade to Pro"
34
+ msgstr ""
35
+
36
+ #: contact_form.php:350 contact_form.php:1410 contact_form.php:1456
37
+ #: includes/class-cntctfrm-settings.php:574
38
+ #: includes/class-cntctfrm-settings.php:664
39
+ #: includes/class-cntctfrm-settings.php:1064
40
+ #: includes/class-cntctfrm-settings.php:1103
41
+ #: includes/class-cntctfrm-settings.php:1344
42
  msgid "Name"
43
  msgstr "Navn"
44
 
45
+ #: contact_form.php:351 contact_form.php:1417 contact_form.php:1462
46
+ #: includes/class-cntctfrm-settings.php:711
47
+ #: includes/class-cntctfrm-settings.php:1065
48
+ #: includes/class-cntctfrm-settings.php:1104
49
+ #: includes/class-cntctfrm-settings.php:1349
50
  msgid "Address"
51
  msgstr "Adresse"
52
 
53
+ #: contact_form.php:352 includes/class-cntctfrm-settings.php:727
54
+ #: includes/class-cntctfrm-settings.php:1066
55
+ #: includes/class-cntctfrm-settings.php:1105
56
  msgid "Email Address"
57
  msgstr "E-post"
58
 
59
+ #: contact_form.php:353 includes/class-cntctfrm-settings.php:747
60
+ #: includes/class-cntctfrm-settings.php:1067
61
+ #: includes/class-cntctfrm-settings.php:1106
62
  msgid "Phone number"
63
  msgstr "Telefon"
64
 
65
+ #: contact_form.php:354 contact_form.php:1428 contact_form.php:1471
66
+ #: includes/class-cntctfrm-settings.php:763
67
+ #: includes/class-cntctfrm-settings.php:1068
68
+ #: includes/class-cntctfrm-settings.php:1107
69
+ #: includes/class-cntctfrm-settings.php:1364
70
  msgid "Subject"
71
  msgstr "Tema"
72
 
73
+ #: contact_form.php:355 contact_form.php:1433 contact_form.php:1475
74
+ #: includes/class-cntctfrm-settings.php:787
75
+ #: includes/class-cntctfrm-settings.php:1069
76
+ #: includes/class-cntctfrm-settings.php:1108
77
+ #: includes/class-cntctfrm-settings.php:1368
78
  msgid "Message"
79
  msgstr "Melding"
80
 
81
+ #: contact_form.php:356 includes/class-cntctfrm-settings.php:1070
82
+ #: includes/class-cntctfrm-settings.php:1109
83
+ #: includes/class-cntctfrm-settings.php:1373
84
  msgid "Attachment"
85
  msgstr "Vedheng"
86
 
87
+ #: contact_form.php:357
88
  msgid ""
89
  "Supported file types: HTML, TXT, CSS, GIF, PNG, JPEG, JPG, TIFF, BMP, AI, "
90
  "EPS, PS, CSV, RTF, PDF, DOC, DOCX, XLS, XLSX, ZIP, RAR, WAV, MP3, PPT."
92
  "Støttede filtyper: HTML, TXT, CSS, GIF, PNG, JPEG, JPG, TIFF, BMP, AI, EPS, "
93
  "PS, CSV, RTF, PDF, DOC, DOCX, XLS, XLSX, ZIP, RAR, WAV, MP3, PPT."
94
 
95
+ #: contact_form.php:358 includes/class-cntctfrm-settings.php:1072
96
+ #: includes/class-cntctfrm-settings.php:1111
97
  msgid "Send me a copy"
98
  msgstr "Send meg en kopi"
99
 
100
+ #: contact_form.php:359 includes/class-cntctfrm-settings.php:1073
101
+ #: includes/class-cntctfrm-settings.php:1112
102
  msgid "I consent to having this site collect my personal data."
103
  msgstr ""
104
 
105
+ #: contact_form.php:360 includes/class-cntctfrm-settings.php:1074
106
+ #: includes/class-cntctfrm-settings.php:1113
107
  msgid "Submit"
108
  msgstr "Send"
109
 
110
+ #: contact_form.php:361
111
  msgid "Your name is required."
112
  msgstr "Navn er obligatorisk."
113
 
114
+ #: contact_form.php:362
115
  msgid "Address is required."
116
  msgstr "Adresse er påkrevet."
117
 
118
+ #: contact_form.php:363
119
  msgid "A valid email address is required."
120
  msgstr "Gyldig e-post adresse er nødvendig."
121
 
122
+ #: contact_form.php:364
123
  msgid "Phone number is required."
124
  msgstr "Telefon er nødvendig."
125
 
126
+ #: contact_form.php:365
127
  msgid "Subject is required."
128
  msgstr "Tema er nødvendig."
129
 
130
+ #: contact_form.php:366
131
  msgid "Message text is required."
132
  msgstr "Meldingsinnhold er nødvendig."
133
 
134
+ #: contact_form.php:367
135
  msgid "File format is not valid."
136
  msgstr "Filformat er ikke gyldig"
137
 
138
+ #: contact_form.php:368
139
  msgid "File upload error."
140
  msgstr "Feil ved opplasting av fil."
141
 
142
+ #: contact_form.php:369
143
  msgid "The file could not be uploaded."
144
  msgstr "Filen kunne ikke lastes opp."
145
 
146
+ #: contact_form.php:370
147
  msgid "This file is too large."
148
  msgstr "Filen er for stor."
149
 
150
+ #: contact_form.php:371
151
  msgid "Please fill out the CAPTCHA."
152
  msgstr "Vennligst fyll ut CAPTCHA."
153
 
154
+ #: contact_form.php:372
155
  msgid "Please make corrections below and try again."
156
  msgstr "Vennligst gjør korrigeringer, og prøv igjen."
157
 
158
+ #: contact_form.php:374
159
  msgid "Thank you for contacting us."
160
  msgstr "Takk for at du kontakter oss."
161
 
162
+ #: contact_form.php:651
163
+ msgid "NEW_FORM"
164
+ msgstr ""
165
 
166
+ #: contact_form.php:652
167
  msgid ""
168
+ "If you want to create multiple contact forms, please install the Contact "
169
+ "Form Multi plugin."
170
  msgstr ""
171
+ "Dersom du ønsker å opprette flere kontaktskjema, vennligst installer Contact "
172
+ "From Multi plugin"
173
 
174
+ #: contact_form.php:657
175
  msgid ""
176
+ "Contact Form plugin doesn't support your current version of Contact Form "
177
+ "Multi plugin. Please update Contact Form Multi plugin to version 1.2.6 or "
178
+ "higher."
179
  msgstr ""
 
 
180
 
181
+ #: contact_form.php:759
182
+ msgid "Sorry, email message could not be delivered."
183
+ msgstr "Beklager, e-postmelding kunne ikke leveres."
184
+
185
+ #: contact_form.php:1366 contact_form.php:1368
186
+ msgid "Sent from (ip address)"
187
+ msgstr "Sent fra (ip-adresse)"
188
+
189
+ #: contact_form.php:1372 contact_form.php:1374
190
+ #: includes/class-cntctfrm-settings.php:1024
191
+ msgid "Date/Time"
192
+ msgstr "Dato/Tid"
193
+
194
+ #: contact_form.php:1378 contact_form.php:1380
195
+ #: includes/class-cntctfrm-settings.php:1025
196
+ msgid "Sent from (referer)"
197
+ msgstr "Sent fra (referer)"
198
+
199
+ #: contact_form.php:1384 contact_form.php:1386
200
+ #: includes/class-cntctfrm-settings.php:1026
201
+ msgid "Using (user agent)"
202
+ msgstr "Bruker (user agent)"
203
+
204
+ #: contact_form.php:1396
205
+ msgid "Contact from"
206
+ msgstr "Kontaktskjema"
207
+
208
+ #: contact_form.php:1401 contact_form.php:1450
209
+ msgid "Site"
210
+ msgstr "side"
211
+
212
+ #: contact_form.php:1423 contact_form.php:1467
213
+ #: includes/class-cntctfrm-settings.php:598
214
+ msgid "Email"
215
+ msgstr "E-post"
216
 
217
+ #: contact_form.php:1439 contact_form.php:1480
218
+ #: includes/class-cntctfrm-settings.php:1359
219
+ msgid "Phone Number"
220
+ msgstr "Telefon"
221
+
222
+ #: contact_form.php:1562
223
  msgid ""
224
+ "If you can see this MIME, it means that the MIME type is not supported by "
225
+ "your email client!"
226
  msgstr ""
227
+ "Om du kan se denne MIME, betyr det at MIME format ikke er støttet av din e-"
228
+ "postklient!"
229
 
230
+ #: contact_form.php:1634
231
+ msgid "FAQ"
232
+ msgstr "Часті питання"
233
 
234
+ #: contact_form.php:1635
235
+ msgid "Support"
236
+ msgstr "Support"
237
+
238
+ #: contact_form.php:1684
239
+ msgid "Are you sure that you want to delete this language data?"
240
+ msgstr "Er du sikker på at du ønsker å slette disse språkdatane?"
241
+
242
+ #: contact_form.php:1706
243
+ #, fuzzy
244
+ msgid "Add multiple forms"
245
+ msgstr "Legg til skjemaet"
246
 
247
+ #: contact_form.php:1706
248
+ msgid ""
249
+ "Install Contact Form Multi plugin to create unlimited number of contact "
250
+ "forms."
251
  msgstr ""
252
 
253
+ #: contact_form.php:1711
254
+ #, fuzzy
255
+ msgid "Learn more"
256
+ msgstr "Lær mer"
257
+
258
+ #: contact_form.php:1715 includes/class-cntctfrm-settings.php:469
259
+ #: includes/class-cntctfrm-settings.php:987
260
+ #: includes/class-cntctfrm-settings.php:1272
261
+ msgid "Close"
262
  msgstr ""
263
 
264
+ #: contact_form.php:1769
265
+ msgid "Error"
266
+ msgstr ""
267
+
268
+ #: contact_form.php:1769 contact_form.php:1771
269
+ msgid "Illegal language code"
270
+ msgstr ""
271
+
272
+ #: contact_form.php:1805 contact_form.php:1807
273
+ #: includes/class-cntctfrm-settings.php:1089
274
+ #: includes/class-cntctfrm-settings.php:1091
275
+ #: includes/class-cntctfrm-settings.php:1128
276
+ #: includes/class-cntctfrm-settings.php:1130
277
+ #: includes/class-cntctfrm-settings.php:1162
278
+ #: includes/class-cntctfrm-settings.php:1164
279
+ #: includes/class-cntctfrm-settings.php:1176
280
+ #: includes/class-cntctfrm-settings.php:1178
281
+ msgid "Use shortcode"
282
+ msgstr "Bruk shortcode"
283
 
284
+ #: contact_form.php:1805 contact_form.php:1807
285
+ #: includes/class-cntctfrm-settings.php:1089
286
+ #: includes/class-cntctfrm-settings.php:1091
287
+ #: includes/class-cntctfrm-settings.php:1128
288
+ #: includes/class-cntctfrm-settings.php:1130
289
+ #: includes/class-cntctfrm-settings.php:1162
290
+ #: includes/class-cntctfrm-settings.php:1164
291
+ #: includes/class-cntctfrm-settings.php:1176
292
+ #: includes/class-cntctfrm-settings.php:1178
293
+ msgid "for this language"
294
+ msgstr "for dette språket"
295
+
296
+ #: contact_form.php:1955
297
+ msgid "Close notice"
298
+ msgstr ""
299
+
300
+ #: contact_form.php:1960
301
  #, fuzzy
302
+ msgid "allows to store your messages to the database."
303
+ msgstr ""
304
+ "<strong>Contact Form to DB</strong> lar deg lagre meldinger i databasen."
305
+
306
+ #: contact_form.php:1961
307
+ msgid "Manage messages that have been sent from your website."
308
+ msgstr "Administrer meldinger som har blitt sendt fra din webside."
309
+
310
+ #: contact_form.php:1964
311
+ msgid "Learn More"
312
+ msgstr "Lær mer"
313
 
314
+ #: contact_form.php:2024
315
+ #, fuzzy
316
+ msgid "Contact form"
317
+ msgstr "Kontaktskjema"
318
+
319
+ #: contact_form.php:2037 con