Version Description
- 07.08.2014 =
- Budfix : Security Exploit was fixed.
- Update : The French language file is updated.
Download this release
Release Info
Developer | bestwebsoft |
Plugin | Contact Form by BestWebSoft |
Version | 3.82 |
Comparing to | |
See all releases |
Code changes from version 3.81 to 3.82
- bws_menu/bws_menu.php +51 -20
- bws_menu/icons/job-board.png +0 -0
- bws_menu/icons/limit-attempts.png +0 -0
- contact_form.php +26 -23
- languages/contact_form-af_ZA.mo +0 -0
- languages/contact_form-af_ZA.po +371 -376
- languages/contact_form-be_BY.mo +0 -0
- languages/contact_form-be_BY.po +322 -359
- languages/contact_form-ca.mo +0 -0
- languages/contact_form-ca.po +334 -363
- languages/contact_form-de_DE.mo +0 -0
- languages/contact_form-de_DE.po +372 -376
- languages/contact_form-es_ES.mo +0 -0
- languages/contact_form-es_ES.po +416 -394
- languages/contact_form-et.mo +0 -0
- languages/contact_form-et.po +334 -363
- languages/contact_form-fi.mo +0 -0
- languages/contact_form-fi.po +317 -359
- languages/contact_form-fr_FR.mo +0 -0
- languages/contact_form-fr_FR.po +339 -334
- languages/contact_form-hu_HU.mo +0 -0
- languages/contact_form-hu_HU.po +322 -359
- languages/contact_form-it_IT.mo +0 -0
- languages/contact_form-it_IT.po +318 -359
- languages/contact_form-ja.mo +0 -0
- languages/contact_form-ja.po +321 -358
- languages/contact_form-nl_NL.mo +0 -0
- languages/contact_form-nl_NL.po +319 -359
- languages/contact_form-pt_BR.mo +0 -0
- languages/contact_form-pt_BR.po +346 -368
- languages/contact_form-pt_PT.mo +0 -0
- languages/contact_form-pt_PT.po +327 -362
- languages/contact_form-ru_RU.mo +0 -0
- languages/contact_form-ru_RU.po +384 -386
- languages/contact_form-sk_SK.mo +0 -0
- languages/contact_form-sk_SK.po +312 -356
- languages/contact_form-sr_RS.mo +0 -0
- languages/contact_form-sr_RS.po +316 -358
- languages/contact_form-sv_SE.mo +0 -0
- languages/contact_form-sv_SE.po +324 -360
- languages/contact_form-tr.mo +0 -0
- languages/contact_form-tr.po +343 -367
- languages/contact_form-uk.mo +0 -0
- languages/contact_form-uk.po +399 -393
- languages/contact_form-vi.mo +0 -0
- languages/contact_form-vi.po +346 -369
- languages/contact_form-zh_CN.mo +0 -0
- languages/contact_form-zh_CN.po +305 -354
- readme.txt +9 -2
bws_menu/bws_menu.php
CHANGED
@@ -1,7 +1,7 @@
|
|
1 |
<?php
|
2 |
/*
|
3 |
* Function for displaying BestWebSoft menu
|
4 |
-
* Version: 1.3.
|
5 |
*/
|
6 |
|
7 |
if ( ! function_exists( 'bws_add_menu_render' ) ) {
|
@@ -259,6 +259,23 @@ if ( ! function_exists( 'bws_add_menu_render' ) ) {
|
|
259 |
'download' => 'http://bestwebsoft.com/plugin/email-queue/?k=e345e1b6623f0dca119bc2d9433b130b&pn=' . $bws_plugin_info["id"] . '&v=' . $bws_plugin_info["version"] . '&wp_v=' . $wp_version . '#download',
|
260 |
'wp_install' => '/wp-admin/plugin-install.php?tab=search&s=Email+Queue+BestWebSoft&plugin-search-input=Search+Plugins',
|
261 |
'settings' => 'admin.php?page=mlq_settings'
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
262 |
)
|
263 |
);
|
264 |
$bws_plugins_pro = array(
|
@@ -359,6 +376,13 @@ if ( ! function_exists( 'bws_add_menu_render' ) ) {
|
|
359 |
'link' => 'http://bestwebsoft.com/plugin/sender-pro/?k=dc5d1a87bdc8aeab2de40ffb99b38054&pn=' . $bws_plugin_info["id"] . '&v=' . $bws_plugin_info["version"] . '&wp_v=' . $wp_version,
|
360 |
'purchase' => 'http://bestwebsoft.com/plugin/sender-pro/?k=dc5d1a87bdc8aeab2de40ffb99b38054&pn=' . $bws_plugin_info["id"] . '&v=' . $bws_plugin_info["version"] . '&wp_v=' . $wp_version . '#purchase',
|
361 |
'settings' => 'admin.php?page=sndrpr_settings'
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
362 |
)
|
363 |
);
|
364 |
|
@@ -491,8 +515,8 @@ if ( ! function_exists( 'bws_add_menu_render' ) ) {
|
|
491 |
if ( ( isset( $_REQUEST['bwsmn_form_submit'] ) && check_admin_referer( plugin_basename(__FILE__), 'bwsmn_nonce_submit' ) ) ||
|
492 |
( isset( $_REQUEST['bwsmn_form_submit_custom_email'] ) && check_admin_referer( plugin_basename(__FILE__), 'bwsmn_nonce_submit_custom_email' ) ) ) {
|
493 |
if ( isset( $_REQUEST['bwsmn_form_email'] ) ) {
|
494 |
-
$bwsmn_form_email = trim( $_REQUEST['bwsmn_form_email'] );
|
495 |
-
if ( $bwsmn_form_email == "" || !
|
496 |
$error = __( "Please enter a valid email address.", 'bestwebsoft' );
|
497 |
} else {
|
498 |
$email = $bwsmn_form_email;
|
@@ -514,19 +538,24 @@ if ( ! function_exists( 'bws_add_menu_render' ) ) {
|
|
514 |
foreach ( $system_info['system_info'] as $key => $value ) {
|
515 |
$message_text .= '<tr><td>'. $key .'</td><td>'. $value .'</td></tr>';
|
516 |
}
|
517 |
-
$message_text .= '</table>
|
518 |
-
|
519 |
-
|
520 |
-
|
521 |
-
|
|
|
|
|
|
|
522 |
}
|
523 |
-
$
|
524 |
-
|
525 |
-
|
526 |
-
|
527 |
-
|
|
|
|
|
528 |
}
|
529 |
-
$message_text .= '</
|
530 |
$result = wp_mail( $email, 'System Info From ' . $home_url, $message_text, $headers );
|
531 |
if ( $result != true )
|
532 |
$error = __( "Sorry, email message could not be delivered.", 'bestwebsoft' );
|
@@ -874,12 +903,14 @@ if ( ! function_exists( 'bws_add_menu_render' ) ) {
|
|
874 |
<table class="bws_system_info">
|
875 |
<thead><tr><th><?php _e( 'Active Plugins', 'bestwebsoft' ); ?></th><th></th></tr></thead>
|
876 |
<tbody>
|
877 |
-
<?php
|
878 |
-
|
879 |
-
<
|
880 |
-
|
881 |
-
|
882 |
-
|
|
|
|
|
883 |
</tbody>
|
884 |
</table>
|
885 |
<table class="bws_system_info">
|
1 |
<?php
|
2 |
/*
|
3 |
* Function for displaying BestWebSoft menu
|
4 |
+
* Version: 1.3.7
|
5 |
*/
|
6 |
|
7 |
if ( ! function_exists( 'bws_add_menu_render' ) ) {
|
259 |
'download' => 'http://bestwebsoft.com/plugin/email-queue/?k=e345e1b6623f0dca119bc2d9433b130b&pn=' . $bws_plugin_info["id"] . '&v=' . $bws_plugin_info["version"] . '&wp_v=' . $wp_version . '#download',
|
260 |
'wp_install' => '/wp-admin/plugin-install.php?tab=search&s=Email+Queue+BestWebSoft&plugin-search-input=Search+Plugins',
|
261 |
'settings' => 'admin.php?page=mlq_settings'
|
262 |
+
),
|
263 |
+
'limit-attempts/limit-attempts.php' => array(
|
264 |
+
'name' => 'Limit Attempts',
|
265 |
+
'description' => 'Allows you to limit rate of login attempts by the ip, and create whitelist and blacklist.',
|
266 |
+
'link' => 'http://bestwebsoft.com/plugin/limit-attempts/?k=b14e1697ee4d008abcd4bd34d492573a&pn=' . $bws_plugin_info["id"] . '&v=' . $bws_plugin_info["version"] . '&wp_v=' . $wp_version,
|
267 |
+
'download' => 'http://bestwebsoft.com/plugin/limit-attempts/?k=b14e1697ee4d008abcd4bd34d492573a&pn=' . $bws_plugin_info["id"] . '&v=' . $bws_plugin_info["version"] . '&wp_v=' . $wp_version . '#download',
|
268 |
+
'wp_install' => '/wp-admin/plugin-install.php?tab=search&s=Limit+Attempts+BestWebSoft&plugin-search-input=Search+Plugins',
|
269 |
+
'settings' => 'admin.php?page=limit-attempts.php',
|
270 |
+
'pro_version' => 'limit-attempts-pro/limit-attempts-pro.php'
|
271 |
+
),
|
272 |
+
'job-board/job-board.php' => array(
|
273 |
+
'name' => 'Job board',
|
274 |
+
'description' => 'Allows to create a job-board page on your site.',
|
275 |
+
'link' => 'http://bestwebsoft.com/plugin/job-board/?k=b0c504c9ce6edd6692e04222af3fed6f&pn=' . $bws_plugin_info["id"] . '&v=' . $bws_plugin_info["version"] . '&wp_v=' . $wp_version,
|
276 |
+
'download' => 'http://bestwebsoft.com/plugin/job-board/?k=b0c504c9ce6edd6692e04222af3fed6f&pn=' . $bws_plugin_info["id"] . '&v=' . $bws_plugin_info["version"] . '&wp_v=' . $wp_version . '#download',
|
277 |
+
'wp_install' => '/wp-admin/plugin-install.php?tab=search&type=term&s=Job+board+BestWebSoft&plugin-search-input=Search+Plugins',
|
278 |
+
'settings' => 'admin.php?page=job-board.php'
|
279 |
)
|
280 |
);
|
281 |
$bws_plugins_pro = array(
|
376 |
'link' => 'http://bestwebsoft.com/plugin/sender-pro/?k=dc5d1a87bdc8aeab2de40ffb99b38054&pn=' . $bws_plugin_info["id"] . '&v=' . $bws_plugin_info["version"] . '&wp_v=' . $wp_version,
|
377 |
'purchase' => 'http://bestwebsoft.com/plugin/sender-pro/?k=dc5d1a87bdc8aeab2de40ffb99b38054&pn=' . $bws_plugin_info["id"] . '&v=' . $bws_plugin_info["version"] . '&wp_v=' . $wp_version . '#purchase',
|
378 |
'settings' => 'admin.php?page=sndrpr_settings'
|
379 |
+
),
|
380 |
+
'limit-attempts-pro/limit-attempts-pro.php' => array(
|
381 |
+
'name' => 'Limit Attempts Pro',
|
382 |
+
'description' => 'Allows you to limit rate of login attempts by the ip, and create whitelist and blacklist.',
|
383 |
+
'link' => 'http://bestwebsoft.com/plugin/limit-attempts-pro/?k=9d42cdf22c7fce2c4b6b447e6a2856e0&pn=' . $bws_plugin_info["id"] . '&v=' . $bws_plugin_info["version"] . '&wp_v=' . $wp_version,
|
384 |
+
'purchase' => 'http://bestwebsoft.com/plugin/limit-attempts-pro/?k=9d42cdf22c7fce2c4b6b447e6a2856e0&pn=' . $bws_plugin_info["id"] . '&v=' . $bws_plugin_info["version"] . '&wp_v=' . $wp_version . '#purchase',
|
385 |
+
'settings' => 'admin.php?page=limit-attempts-pro.php',
|
386 |
)
|
387 |
);
|
388 |
|
515 |
if ( ( isset( $_REQUEST['bwsmn_form_submit'] ) && check_admin_referer( plugin_basename(__FILE__), 'bwsmn_nonce_submit' ) ) ||
|
516 |
( isset( $_REQUEST['bwsmn_form_submit_custom_email'] ) && check_admin_referer( plugin_basename(__FILE__), 'bwsmn_nonce_submit_custom_email' ) ) ) {
|
517 |
if ( isset( $_REQUEST['bwsmn_form_email'] ) ) {
|
518 |
+
$bwsmn_form_email = esc_html( trim( $_REQUEST['bwsmn_form_email'] ) );
|
519 |
+
if ( $bwsmn_form_email == "" || ! is_email( $bwsmn_form_email ) ) {
|
520 |
$error = __( "Please enter a valid email address.", 'bestwebsoft' );
|
521 |
} else {
|
522 |
$email = $bwsmn_form_email;
|
538 |
foreach ( $system_info['system_info'] as $key => $value ) {
|
539 |
$message_text .= '<tr><td>'. $key .'</td><td>'. $value .'</td></tr>';
|
540 |
}
|
541 |
+
$message_text .= '</table>';
|
542 |
+
if ( ! empty( $system_info['active_plugins'] ) ) {
|
543 |
+
$message_text .= '<h4>Active Plugins</h4>
|
544 |
+
<table>';
|
545 |
+
foreach ( $system_info['active_plugins'] as $key => $value ) {
|
546 |
+
$message_text .= '<tr><td scope="row">'. $key .'</td><td scope="row">'. $value .'</td></tr>';
|
547 |
+
}
|
548 |
+
$message_text .= '</table>';
|
549 |
}
|
550 |
+
if ( ! empty( $system_info['inactive_plugins'] ) ) {
|
551 |
+
$message_text .= '<h4>Inactive Plugins</h4>
|
552 |
+
<table>';
|
553 |
+
foreach ( $system_info['inactive_plugins'] as $key => $value ) {
|
554 |
+
$message_text .= '<tr><td scope="row">'. $key .'</td><td scope="row">'. $value .'</td></tr>';
|
555 |
+
}
|
556 |
+
$message_text .= '</table>';
|
557 |
}
|
558 |
+
$message_text .= '</body></html>';
|
559 |
$result = wp_mail( $email, 'System Info From ' . $home_url, $message_text, $headers );
|
560 |
if ( $result != true )
|
561 |
$error = __( "Sorry, email message could not be delivered.", 'bestwebsoft' );
|
903 |
<table class="bws_system_info">
|
904 |
<thead><tr><th><?php _e( 'Active Plugins', 'bestwebsoft' ); ?></th><th></th></tr></thead>
|
905 |
<tbody>
|
906 |
+
<?php if ( ! empty( $system_info['active_plugins'] ) ) {
|
907 |
+
foreach ( $system_info['active_plugins'] as $key => $value ) { ?>
|
908 |
+
<tr>
|
909 |
+
<td scope="row"><?php echo $key; ?></td>
|
910 |
+
<td scope="row"><?php echo $value; ?></td>
|
911 |
+
</tr>
|
912 |
+
<?php }
|
913 |
+
} ?>
|
914 |
</tbody>
|
915 |
</table>
|
916 |
<table class="bws_system_info">
|
bws_menu/icons/job-board.png
ADDED
Binary file
|
bws_menu/icons/limit-attempts.png
ADDED
Binary file
|
contact_form.php
CHANGED
@@ -4,7 +4,7 @@ Plugin Name: Contact Form
|
|
4 |
Plugin URI: http://bestwebsoft.com/plugin/
|
5 |
Description: Plugin for Contact Form.
|
6 |
Author: BestWebSoft
|
7 |
-
Version: 3.
|
8 |
Author URI: http://bestwebsoft.com/
|
9 |
License: GPLv2 or later
|
10 |
*/
|
@@ -114,7 +114,8 @@ if ( ! function_exists( 'cntctfrm_settings' ) ) {
|
|
114 |
function cntctfrm_settings() {
|
115 |
global $wpmu, $cntctfrm_options, $cntctfrm_option_defaults, $wpdb, $bws_plugin_info, $cntctfrm_plugin_info;
|
116 |
$cntctfrm_db_version = "1.0";
|
117 |
-
|
|
|
118 |
$cntctfrm_option_defaults = array(
|
119 |
'plugin_option_version' => $cntctfrm_plugin_info["Version"],
|
120 |
'plugin_db_version' => $cntctfrm_db_version,
|
@@ -407,10 +408,10 @@ if ( ! function_exists( 'cntctfrm_settings_page' ) ) {
|
|
407 |
/* Save data for settings page */
|
408 |
if ( isset( $_POST['cntctfrm_form_submit'] ) && check_admin_referer( plugin_basename(__FILE__), 'cntctfrm_nonce_name' ) ) {
|
409 |
$cntctfrm_options_submit['cntctfrm_user_email'] = $_POST['cntctfrm_user_email'];
|
410 |
-
$cntctfrm_options_submit['cntctfrm_custom_email'] = stripslashes( $_POST['cntctfrm_custom_email'] );
|
411 |
$cntctfrm_options_submit['cntctfrm_select_email'] = $_POST['cntctfrm_select_email'];
|
412 |
$cntctfrm_options_submit['cntctfrm_from_email'] = $_POST['cntctfrm_from_email'];
|
413 |
-
$cntctfrm_options_submit['cntctfrm_custom_from_email'] = stripslashes( $_POST['cntctfrm_custom_from_email'] );
|
414 |
$cntctfrm_options_submit['cntctfrm_additions_options'] = isset( $_POST['cntctfrm_additions_options']) ? $_POST['cntctfrm_additions_options'] : 0;
|
415 |
if ( 0 == $cntctfrm_options_submit['cntctfrm_additions_options'] ) {
|
416 |
$cntctfrm_options_submit['cntctfrm_attachment'] = 0;
|
@@ -493,7 +494,7 @@ if ( ! function_exists( 'cntctfrm_settings_page' ) ) {
|
|
493 |
} else {
|
494 |
|
495 |
$cntctfrm_options_submit['cntctfrm_mail_method'] = $_POST['cntctfrm_mail_method'];
|
496 |
-
$cntctfrm_options_submit['cntctfrm_from_field'] = $_POST['cntctfrm_from_field'];
|
497 |
$cntctfrm_options_submit['cntctfrm_select_from_field'] = $_POST['cntctfrm_select_from_field'];
|
498 |
$cntctfrm_options_submit['cntctfrm_display_name_field'] = isset( $_POST['cntctfrm_display_name_field']) ? 1 : 0;
|
499 |
$cntctfrm_options_submit['cntctfrm_display_address_field'] = isset( $_POST['cntctfrm_display_address_field']) ? 1 : 0;
|
@@ -563,7 +564,7 @@ if ( ! function_exists( 'cntctfrm_settings_page' ) ) {
|
|
563 |
$cntctfrm_options_submit['cntctfrm_required_subject_field'] = isset( $_POST['cntctfrm_required_subject_field']) ? 1 : 0;
|
564 |
$cntctfrm_options_submit['cntctfrm_required_message_field'] = isset( $_POST['cntctfrm_required_message_field']) ? 1 : 0;
|
565 |
|
566 |
-
$cntctfrm_options_submit['cntctfrm_required_symbol'] = isset( $_POST['cntctfrm_required_symbol']) ? $_POST['cntctfrm_required_symbol'] : '*';
|
567 |
$cntctfrm_options_submit['cntctfrm_html_email'] = isset( $_POST['cntctfrm_html_email']) ? 1 : 0;
|
568 |
$cntctfrm_options_submit['cntctfrm_site_name_parameter'] = $_POST['cntctfrm_site_name_parameter'];
|
569 |
$cntctfrm_options_submit['cntctfrm_display_add_info'] = isset( $_POST['cntctfrm_display_add_info']) ? 1 : 0;
|
@@ -667,13 +668,13 @@ if ( ! function_exists( 'cntctfrm_settings_page' ) ) {
|
|
667 |
}
|
668 |
}
|
669 |
$cntctfrm_options_submit['cntctfrm_action_after_send'] = $_POST['cntctfrm_action_after_send'];
|
670 |
-
$cntctfrm_options_submit['cntctfrm_redirect_url'] = $_POST['cntctfrm_redirect_url'];
|
671 |
}
|
672 |
$cntctfrm_options = array_merge( $cntctfrm_options, $cntctfrm_options_submit );
|
673 |
|
674 |
if ( 0 == $cntctfrm_options_submit['cntctfrm_action_after_send']
|
675 |
&& ( "" == trim( $cntctfrm_options_submit['cntctfrm_redirect_url'] )
|
676 |
-
|| !
|
677 |
$error .=__( "If the 'Redirect to page' option is selected then the URL field should be in the following format", 'contact_form' )." <code>http://your_site/your_page</code>";
|
678 |
$cntctfrm_options['cntctfrm_action_after_send'] = 1;
|
679 |
}
|
@@ -686,13 +687,14 @@ if ( ! function_exists( 'cntctfrm_settings_page' ) ) {
|
|
686 |
$error .= __( "Such user does not exist. Settings are not saved.", 'contact_form' );
|
687 |
}
|
688 |
} else {
|
689 |
-
if ( "" == $cntctfrm_options_submit['cntctfrm_custom_email']
|
690 |
-
|
|
|
691 |
}
|
692 |
}
|
693 |
if ( 'custom' == $cntctfrm_options_submit['cntctfrm_from_email'] ) {
|
694 |
if ( "" == $cntctfrm_options_submit['cntctfrm_custom_from_email']
|
695 |
-
|
696 |
$error .= __( "Please enter a valid email address in the 'FROM' field. Settings are not saved.", 'contact_form' );
|
697 |
}
|
698 |
}
|
@@ -740,14 +742,14 @@ if ( ! function_exists( 'cntctfrm_settings_page' ) ) {
|
|
740 |
if ( isset( $_GET['action'] ) && 'go_pro' == $_GET['action'] ) {
|
741 |
global $wpmu, $bstwbsftwppdtplgns_options;
|
742 |
|
743 |
-
$bws_license_key = ( isset( $_POST['bws_license_key'] ) ) ? trim( $_POST['bws_license_key'] ) : "";
|
744 |
|
745 |
if ( isset( $_POST['bws_license_submit'] ) && check_admin_referer( plugin_basename( __FILE__ ), 'bws_license_nonce_name' ) ) {
|
746 |
if ( '' != $bws_license_key ) {
|
747 |
if ( strlen( $bws_license_key ) != 18 ) {
|
748 |
$error = __( "Wrong license key", 'contact_form' );
|
749 |
} else {
|
750 |
-
$bws_license_plugin =
|
751 |
if ( isset( $bstwbsftwppdtplgns_options['go_pro'][ $bws_license_plugin ]['count'] ) && $bstwbsftwppdtplgns_options['go_pro'][ $bws_license_plugin ]['time'] < ( time() + (24 * 60 * 60) ) ) {
|
752 |
$bstwbsftwppdtplgns_options['go_pro'][ $bws_license_plugin ]['count'] = $bstwbsftwppdtplgns_options['go_pro'][ $bws_license_plugin ]['count'] + 1;
|
753 |
} else {
|
@@ -1175,7 +1177,7 @@ if ( ! function_exists( 'cntctfrm_settings_page' ) ) {
|
|
1175 |
<?php foreach ( $lang_codes as $key => $val ) {
|
1176 |
if ( in_array( $key, $cntctfrm_options['cntctfrm_language'] ) )
|
1177 |
continue;
|
1178 |
-
echo '<option value="' . esc_attr( $key ) . '"> ' . esc_html
|
1179 |
} ?>
|
1180 |
</select>
|
1181 |
<input type="button" class="button-primary" id="cntctfrm_add_language_button" value="<?php _e( 'Add a language', 'contact_form' ); ?>" />
|
@@ -1821,9 +1823,9 @@ if ( ! function_exists( 'cntctfrm_display_form' ) ) {
|
|
1821 |
|
1822 |
$content .= '<div style="text-align: left; padding-top: 8px;">';
|
1823 |
if ( isset( $atts['id'] ) )
|
1824 |
-
$content .= '<input type="hidden" value="' . $atts['id'] . '" name="cntctfrmmlt_shortcode_id">';
|
1825 |
$content .= '<input type="hidden" value="send" name="cntctfrm_contact_action"><input type="hidden" value="Version: 3.30" />
|
1826 |
-
<input type="hidden" value="' . $lang . '" name="cntctfrm_language">
|
1827 |
<input type="submit" value="'. $cntctfrm_options['cntctfrm_submit_label'][ $lang ] . '" style="cursor: pointer; margin: 0pt; text-align: center;margin-bottom:10px;" />
|
1828 |
</div>
|
1829 |
</form>';
|
@@ -1943,7 +1945,8 @@ if ( ! function_exists( 'cntctfrm_check_form' ) ) {
|
|
1943 |
unset( $error_message['error_name'] );
|
1944 |
if ( 1 == $cntctfrm_options['cntctfrm_display_address_field'] && 1 == $cntctfrm_options['cntctfrm_required_address_field'] && "" != $address )
|
1945 |
unset( $error_message['error_address'] );
|
1946 |
-
if ( 1 == $cntctfrm_options['cntctfrm_required_email_field'] && "" != $email &&
|
|
|
1947 |
unset( $error_message['error_email'] );
|
1948 |
if ( 1 == $cntctfrm_options['cntctfrm_display_phone_field'] && 1 == $cntctfrm_options['cntctfrm_required_phone_field'] && "" != $phone )
|
1949 |
unset( $error_message['error_phone'] );
|
@@ -2390,7 +2393,7 @@ if ( ! function_exists ( 'cntctfrm_admin_head' ) ) {
|
|
2390 |
wp_enqueue_style( 'cntctfrm_stylesheet', plugins_url( 'css/style.css', __FILE__ ) );
|
2391 |
|
2392 |
if ( 3.5 > $wp_version )
|
2393 |
-
wp_enqueue_script( 'cntctfrm_script', plugins_url( 'js/script_wp_before_3.5.js', __FILE__ ) );
|
2394 |
else
|
2395 |
wp_enqueue_script( 'cntctfrm_script', plugins_url( 'js/script.js', __FILE__ ) );
|
2396 |
|
@@ -2535,12 +2538,13 @@ if ( ! function_exists ( 'cntctfrm_plugin_banner' ) ) {
|
|
2535 |
if ( 'plugins.php' == $hook_suffix ) {
|
2536 |
global $cntctfrm_plugin_info;
|
2537 |
$banner_array = array(
|
|
|
2538 |
array( 'sndr_hide_banner_on_plugin_page', 'sender/sender.php', '0.5' ),
|
2539 |
array( 'srrl_hide_banner_on_plugin_page', 'user-role/user-role.php', '1.4' ),
|
2540 |
array( 'pdtr_hide_banner_on_plugin_page', 'updater/updater.php', '1.12' ),
|
2541 |
array( 'cntctfrmtdb_hide_banner_on_plugin_page', 'contact-form-to-db/contact_form_to_db.php', '1.2' ),
|
2542 |
-
array( 'cntctfrmmlt_hide_banner_on_plugin_page', 'contact-form-multi/contact-form-multi.php', '1.0.7' ),
|
2543 |
-
array( 'gglmps_hide_banner_on_plugin_page', 'bws-google-maps/bws-google-maps.php', '1.2' ),
|
2544 |
array( 'fcbkbttn_hide_banner_on_plugin_page', 'facebook-button-plugin/facebook-button-plugin.php', '2.29' ),
|
2545 |
array( 'twttr_hide_banner_on_plugin_page', 'twitter-plugin/twitter.php', '2.34' ),
|
2546 |
array( 'pdfprnt_hide_banner_on_plugin_page', 'pdf-print/pdf-print.php', '1.7.1' ),
|
@@ -2550,7 +2554,7 @@ if ( ! function_exists ( 'cntctfrm_plugin_banner' ) ) {
|
|
2550 |
array( 'cntctfrm_for_ctfrmtdb_hide_banner_on_plugin_page', 'contact-form-plugin/contact_form.php', '3.62' ),
|
2551 |
array( 'cntctfrm_hide_banner_on_plugin_page', 'contact-form-plugin/contact_form.php', '3.47' ),
|
2552 |
array( 'cptch_hide_banner_on_plugin_page', 'captcha/captcha.php', '3.8.4' ),
|
2553 |
-
array( 'gllr_hide_banner_on_plugin_page', 'gallery-plugin/gallery-plugin.php', '3.9.1' )
|
2554 |
);
|
2555 |
if ( ! $cntctfrm_plugin_info )
|
2556 |
$cntctfrm_plugin_info = get_plugin_data( __FILE__ );
|
@@ -2672,5 +2676,4 @@ add_action( 'wp_ajax_cntctfrm_remove_language', 'cntctfrm_remove_language' );
|
|
2672 |
|
2673 |
add_action( 'admin_notices', 'cntctfrm_plugin_banner');
|
2674 |
|
2675 |
-
register_uninstall_hook( __FILE__, 'cntctfrm_delete_options' );
|
2676 |
-
?>
|
4 |
Plugin URI: http://bestwebsoft.com/plugin/
|
5 |
Description: Plugin for Contact Form.
|
6 |
Author: BestWebSoft
|
7 |
+
Version: 3.82
|
8 |
Author URI: http://bestwebsoft.com/
|
9 |
License: GPLv2 or later
|
10 |
*/
|
114 |
function cntctfrm_settings() {
|
115 |
global $wpmu, $cntctfrm_options, $cntctfrm_option_defaults, $wpdb, $bws_plugin_info, $cntctfrm_plugin_info;
|
116 |
$cntctfrm_db_version = "1.0";
|
117 |
+
$cntctfrm_plugin_info = get_plugin_data( __FILE__ );
|
118 |
+
|
119 |
$cntctfrm_option_defaults = array(
|
120 |
'plugin_option_version' => $cntctfrm_plugin_info["Version"],
|
121 |
'plugin_db_version' => $cntctfrm_db_version,
|
408 |
/* Save data for settings page */
|
409 |
if ( isset( $_POST['cntctfrm_form_submit'] ) && check_admin_referer( plugin_basename(__FILE__), 'cntctfrm_nonce_name' ) ) {
|
410 |
$cntctfrm_options_submit['cntctfrm_user_email'] = $_POST['cntctfrm_user_email'];
|
411 |
+
$cntctfrm_options_submit['cntctfrm_custom_email'] = stripslashes( esc_html( $_POST['cntctfrm_custom_email'] ) );
|
412 |
$cntctfrm_options_submit['cntctfrm_select_email'] = $_POST['cntctfrm_select_email'];
|
413 |
$cntctfrm_options_submit['cntctfrm_from_email'] = $_POST['cntctfrm_from_email'];
|
414 |
+
$cntctfrm_options_submit['cntctfrm_custom_from_email'] = stripslashes( esc_html( $_POST['cntctfrm_custom_from_email'] ) );
|
415 |
$cntctfrm_options_submit['cntctfrm_additions_options'] = isset( $_POST['cntctfrm_additions_options']) ? $_POST['cntctfrm_additions_options'] : 0;
|
416 |
if ( 0 == $cntctfrm_options_submit['cntctfrm_additions_options'] ) {
|
417 |
$cntctfrm_options_submit['cntctfrm_attachment'] = 0;
|
494 |
} else {
|
495 |
|
496 |
$cntctfrm_options_submit['cntctfrm_mail_method'] = $_POST['cntctfrm_mail_method'];
|
497 |
+
$cntctfrm_options_submit['cntctfrm_from_field'] = stripslashes( esc_html( $_POST['cntctfrm_from_field'] ) );
|
498 |
$cntctfrm_options_submit['cntctfrm_select_from_field'] = $_POST['cntctfrm_select_from_field'];
|
499 |
$cntctfrm_options_submit['cntctfrm_display_name_field'] = isset( $_POST['cntctfrm_display_name_field']) ? 1 : 0;
|
500 |
$cntctfrm_options_submit['cntctfrm_display_address_field'] = isset( $_POST['cntctfrm_display_address_field']) ? 1 : 0;
|
564 |
$cntctfrm_options_submit['cntctfrm_required_subject_field'] = isset( $_POST['cntctfrm_required_subject_field']) ? 1 : 0;
|
565 |
$cntctfrm_options_submit['cntctfrm_required_message_field'] = isset( $_POST['cntctfrm_required_message_field']) ? 1 : 0;
|
566 |
|
567 |
+
$cntctfrm_options_submit['cntctfrm_required_symbol'] = isset( $_POST['cntctfrm_required_symbol']) ? stripslashes( esc_html( $_POST['cntctfrm_required_symbol'] ) ) : '*';
|
568 |
$cntctfrm_options_submit['cntctfrm_html_email'] = isset( $_POST['cntctfrm_html_email']) ? 1 : 0;
|
569 |
$cntctfrm_options_submit['cntctfrm_site_name_parameter'] = $_POST['cntctfrm_site_name_parameter'];
|
570 |
$cntctfrm_options_submit['cntctfrm_display_add_info'] = isset( $_POST['cntctfrm_display_add_info']) ? 1 : 0;
|
668 |
}
|
669 |
}
|
670 |
$cntctfrm_options_submit['cntctfrm_action_after_send'] = $_POST['cntctfrm_action_after_send'];
|
671 |
+
$cntctfrm_options_submit['cntctfrm_redirect_url'] = esc_url( $_POST['cntctfrm_redirect_url'] );
|
672 |
}
|
673 |
$cntctfrm_options = array_merge( $cntctfrm_options, $cntctfrm_options_submit );
|
674 |
|
675 |
if ( 0 == $cntctfrm_options_submit['cntctfrm_action_after_send']
|
676 |
&& ( "" == trim( $cntctfrm_options_submit['cntctfrm_redirect_url'] )
|
677 |
+
|| ! filter_var( $cntctfrm_options_submit['cntctfrm_redirect_url'], FILTER_VALIDATE_URL) ) ) {
|
678 |
$error .=__( "If the 'Redirect to page' option is selected then the URL field should be in the following format", 'contact_form' )." <code>http://your_site/your_page</code>";
|
679 |
$cntctfrm_options['cntctfrm_action_after_send'] = 1;
|
680 |
}
|
687 |
$error .= __( "Such user does not exist. Settings are not saved.", 'contact_form' );
|
688 |
}
|
689 |
} else {
|
690 |
+
if ( "" == $cntctfrm_options_submit['cntctfrm_custom_email']
|
691 |
+
|| ! is_email( trim( $cntctfrm_options_submit['cntctfrm_custom_email'] ) ) ) {
|
692 |
+
$error .= __( "Please enter a valid email address in the 'Use this email address' field. Settings are not saved.", 'contact_form' );
|
693 |
}
|
694 |
}
|
695 |
if ( 'custom' == $cntctfrm_options_submit['cntctfrm_from_email'] ) {
|
696 |
if ( "" == $cntctfrm_options_submit['cntctfrm_custom_from_email']
|
697 |
+
|| ! is_email( trim( $cntctfrm_options_submit['cntctfrm_custom_from_email'] ) ) ) {
|
698 |
$error .= __( "Please enter a valid email address in the 'FROM' field. Settings are not saved.", 'contact_form' );
|
699 |
}
|
700 |
}
|
742 |
if ( isset( $_GET['action'] ) && 'go_pro' == $_GET['action'] ) {
|
743 |
global $wpmu, $bstwbsftwppdtplgns_options;
|
744 |
|
745 |
+
$bws_license_key = ( isset( $_POST['bws_license_key'] ) ) ? trim( esc_html( $_POST['bws_license_key'] ) ) : "";
|
746 |
|
747 |
if ( isset( $_POST['bws_license_submit'] ) && check_admin_referer( plugin_basename( __FILE__ ), 'bws_license_nonce_name' ) ) {
|
748 |
if ( '' != $bws_license_key ) {
|
749 |
if ( strlen( $bws_license_key ) != 18 ) {
|
750 |
$error = __( "Wrong license key", 'contact_form' );
|
751 |
} else {
|
752 |
+
$bws_license_plugin = stripslashes( esc_html( $_POST['bws_license_plugin'] ) );
|
753 |
if ( isset( $bstwbsftwppdtplgns_options['go_pro'][ $bws_license_plugin ]['count'] ) && $bstwbsftwppdtplgns_options['go_pro'][ $bws_license_plugin ]['time'] < ( time() + (24 * 60 * 60) ) ) {
|
754 |
$bstwbsftwppdtplgns_options['go_pro'][ $bws_license_plugin ]['count'] = $bstwbsftwppdtplgns_options['go_pro'][ $bws_license_plugin ]['count'] + 1;
|
755 |
} else {
|
1177 |
<?php foreach ( $lang_codes as $key => $val ) {
|
1178 |
if ( in_array( $key, $cntctfrm_options['cntctfrm_language'] ) )
|
1179 |
continue;
|
1180 |
+
echo '<option value="' . esc_attr( $key ) . '"> ' . esc_html( $val ) . '</option>';
|
1181 |
} ?>
|
1182 |
</select>
|
1183 |
<input type="button" class="button-primary" id="cntctfrm_add_language_button" value="<?php _e( 'Add a language', 'contact_form' ); ?>" />
|
1823 |
|
1824 |
$content .= '<div style="text-align: left; padding-top: 8px;">';
|
1825 |
if ( isset( $atts['id'] ) )
|
1826 |
+
$content .= '<input type="hidden" value="' . esc_attr( $atts['id'] ) . '" name="cntctfrmmlt_shortcode_id">';
|
1827 |
$content .= '<input type="hidden" value="send" name="cntctfrm_contact_action"><input type="hidden" value="Version: 3.30" />
|
1828 |
+
<input type="hidden" value="' . esc_attr( $lang ) . '" name="cntctfrm_language">
|
1829 |
<input type="submit" value="'. $cntctfrm_options['cntctfrm_submit_label'][ $lang ] . '" style="cursor: pointer; margin: 0pt; text-align: center;margin-bottom:10px;" />
|
1830 |
</div>
|
1831 |
</form>';
|
1945 |
unset( $error_message['error_name'] );
|
1946 |
if ( 1 == $cntctfrm_options['cntctfrm_display_address_field'] && 1 == $cntctfrm_options['cntctfrm_required_address_field'] && "" != $address )
|
1947 |
unset( $error_message['error_address'] );
|
1948 |
+
if ( 1 == $cntctfrm_options['cntctfrm_required_email_field'] && "" != $email &&
|
1949 |
+
is_email( trim( stripslashes( $email ) ) ) )
|
1950 |
unset( $error_message['error_email'] );
|
1951 |
if ( 1 == $cntctfrm_options['cntctfrm_display_phone_field'] && 1 == $cntctfrm_options['cntctfrm_required_phone_field'] && "" != $phone )
|
1952 |
unset( $error_message['error_phone'] );
|
2393 |
wp_enqueue_style( 'cntctfrm_stylesheet', plugins_url( 'css/style.css', __FILE__ ) );
|
2394 |
|
2395 |
if ( 3.5 > $wp_version )
|
2396 |
+
wp_enqueue_script( 'cntctfrm_script', plugins_url( 'js/script_wp_before_3.5.js', __FILE__ ) );
|
2397 |
else
|
2398 |
wp_enqueue_script( 'cntctfrm_script', plugins_url( 'js/script.js', __FILE__ ) );
|
2399 |
|
2538 |
if ( 'plugins.php' == $hook_suffix ) {
|
2539 |
global $cntctfrm_plugin_info;
|
2540 |
$banner_array = array(
|
2541 |
+
array( 'lmtttmpts_hide_banner_on_plugin_page', 'limit-attempts/limit-attempts.php', '1.0.2' ),
|
2542 |
array( 'sndr_hide_banner_on_plugin_page', 'sender/sender.php', '0.5' ),
|
2543 |
array( 'srrl_hide_banner_on_plugin_page', 'user-role/user-role.php', '1.4' ),
|
2544 |
array( 'pdtr_hide_banner_on_plugin_page', 'updater/updater.php', '1.12' ),
|
2545 |
array( 'cntctfrmtdb_hide_banner_on_plugin_page', 'contact-form-to-db/contact_form_to_db.php', '1.2' ),
|
2546 |
+
array( 'cntctfrmmlt_hide_banner_on_plugin_page', 'contact-form-multi/contact-form-multi.php', '1.0.7' ),
|
2547 |
+
array( 'gglmps_hide_banner_on_plugin_page', 'bws-google-maps/bws-google-maps.php', '1.2' ),
|
2548 |
array( 'fcbkbttn_hide_banner_on_plugin_page', 'facebook-button-plugin/facebook-button-plugin.php', '2.29' ),
|
2549 |
array( 'twttr_hide_banner_on_plugin_page', 'twitter-plugin/twitter.php', '2.34' ),
|
2550 |
array( 'pdfprnt_hide_banner_on_plugin_page', 'pdf-print/pdf-print.php', '1.7.1' ),
|
2554 |
array( 'cntctfrm_for_ctfrmtdb_hide_banner_on_plugin_page', 'contact-form-plugin/contact_form.php', '3.62' ),
|
2555 |
array( 'cntctfrm_hide_banner_on_plugin_page', 'contact-form-plugin/contact_form.php', '3.47' ),
|
2556 |
array( 'cptch_hide_banner_on_plugin_page', 'captcha/captcha.php', '3.8.4' ),
|
2557 |
+
array( 'gllr_hide_banner_on_plugin_page', 'gallery-plugin/gallery-plugin.php', '3.9.1' )
|
2558 |
);
|
2559 |
if ( ! $cntctfrm_plugin_info )
|
2560 |
$cntctfrm_plugin_info = get_plugin_data( __FILE__ );
|
2676 |
|
2677 |
add_action( 'admin_notices', 'cntctfrm_plugin_banner');
|
2678 |
|
2679 |
+
register_uninstall_hook( __FILE__, 'cntctfrm_delete_options' );
|
|
languages/contact_form-af_ZA.mo
CHANGED
Binary file
|
languages/contact_form-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: 2014-07
|
6 |
-
"PO-Revision-Date: 2014-07
|
7 |
"Last-Translator: bestwebsoft.com <plugins@bestwebsoft.com>\n"
|
8 |
"Language-Team: Aldu <alducornelissen@gmail.com>\n"
|
9 |
"Language: af\n"
|
@@ -13,12 +13,11 @@ msgstr ""
|
|
13 |
"X-Poedit-KeywordsList: __;_e\n"
|
14 |
"X-Poedit-Basepath: ..\n"
|
15 |
"X-Poedit-SourceCharset: UTF-8\n"
|
16 |
-
"X-Generator: Poedit 1.
|
17 |
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
18 |
"X-Poedit-SearchPath-0: .\n"
|
19 |
|
20 |
-
#: contact_form.php:74
|
21 |
-
#: contact_form.php:845
|
22 |
msgid "Contact Form Settings"
|
23 |
msgstr "Kontak Form Verstellings"
|
24 |
|
@@ -26,61 +25,49 @@ msgstr "Kontak Form Verstellings"
|
|
26 |
msgid "Contact Form"
|
27 |
msgstr "Kontak Form"
|
28 |
|
29 |
-
#: contact_form.php:150
|
30 |
-
#: contact_form.php:1200
|
31 |
-
#: contact_form.php:1234
|
32 |
msgid "Name:"
|
33 |
msgstr "Naam:"
|
34 |
|
35 |
-
#: contact_form.php:151
|
36 |
-
#: contact_form.php:1201
|
37 |
-
#: contact_form.php:1235
|
38 |
msgid "Address:"
|
39 |
msgstr "Adres:"
|
40 |
|
41 |
-
#: contact_form.php:152
|
42 |
-
#: contact_form.php:1202
|
43 |
-
#: contact_form.php:1236
|
44 |
msgid "Email Address:"
|
45 |
msgstr "Epos Adres:"
|
46 |
|
47 |
-
#: contact_form.php:153
|
48 |
-
#: contact_form.php:1203
|
49 |
-
#: contact_form.php:1237
|
50 |
msgid "Phone number:"
|
51 |
msgstr "Telefoon nommer:"
|
52 |
|
53 |
-
#: contact_form.php:154
|
54 |
-
#: contact_form.php:1204
|
55 |
-
#: contact_form.php:1238
|
56 |
msgid "Subject:"
|
57 |
msgstr "Onderwerp:"
|
58 |
|
59 |
-
#: contact_form.php:155
|
60 |
-
#: contact_form.php:1205
|
61 |
-
#: contact_form.php:1239
|
62 |
msgid "Message:"
|
63 |
msgstr "Boodskap:"
|
64 |
|
65 |
-
#: contact_form.php:156
|
66 |
-
#: contact_form.php:1206
|
67 |
-
#: contact_form.php:1240
|
68 |
msgid "Attachment:"
|
69 |
msgstr "Aanhegsel:"
|
70 |
|
71 |
#: contact_form.php:157
|
72 |
-
msgid "
|
73 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
74 |
|
75 |
-
#: contact_form.php:158
|
76 |
-
#: contact_form.php:1208
|
77 |
-
#: contact_form.php:1242
|
78 |
msgid "Send me a copy"
|
79 |
msgstr "Stuur vir my 'n kopie"
|
80 |
|
81 |
-
#: contact_form.php:159
|
82 |
-
#: contact_form.php:1209
|
83 |
-
#: contact_form.php:1243
|
84 |
msgid "Submit"
|
85 |
msgstr "Dien in"
|
86 |
|
@@ -141,8 +128,12 @@ msgid "requires"
|
|
141 |
msgstr "benodig"
|
142 |
|
143 |
#: contact_form.php:369
|
144 |
-
msgid "
|
145 |
-
|
|
|
|
|
|
|
|
|
146 |
|
147 |
#: contact_form.php:369
|
148 |
msgid "Back to the WordPress"
|
@@ -153,851 +144,855 @@ msgid "Plugins page"
|
|
153 |
msgstr "Plugin blad"
|
154 |
|
155 |
#: contact_form.php:677
|
156 |
-
msgid "
|
157 |
-
|
|
|
|
|
|
|
|
|
158 |
|
159 |
#: contact_form.php:686
|
160 |
msgid "Such user does not exist. Settings are not saved."
|
161 |
msgstr "Hierdie gebruiker bestaan nie. Die instellings is nie gestoor nie."
|
162 |
|
163 |
-
#: contact_form.php:
|
164 |
-
|
165 |
-
msgid "
|
166 |
-
|
|
|
|
|
|
|
|
|
167 |
|
168 |
-
#: contact_form.php:
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
169 |
msgid "Settings saved."
|
170 |
msgstr "Verstellings is gestoor."
|
171 |
|
172 |
-
#: contact_form.php:
|
173 |
-
#: contact_form.php:780
|
174 |
msgid "Wrong license key"
|
175 |
msgstr "Verkeerde lisensie sleutel"
|
176 |
|
177 |
-
#: contact_form.php:
|
178 |
-
msgid "
|
179 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
180 |
|
181 |
-
#: contact_form.php:
|
182 |
msgid "This license key is bind to another site"
|
183 |
msgstr "Hierdie lisensie sleutel is verbind met 'n ander webblad."
|
184 |
|
185 |
-
#: contact_form.php:
|
186 |
-
|
187 |
-
|
188 |
-
|
|
|
|
|
|
|
189 |
|
190 |
-
#: contact_form.php:
|
191 |
msgid "Failed to open the zip archive. Please, upload the plugin manually"
|
192 |
-
msgstr "
|
|
|
|
|
193 |
|
194 |
-
#: contact_form.php:
|
195 |
-
msgid "
|
196 |
-
|
|
|
|
|
|
|
|
|
197 |
|
198 |
-
#: contact_form.php:
|
199 |
-
#: contact_form.php:820
|
200 |
msgid "Failed to download the zip archive. Please, upload the plugin manually"
|
201 |
-
msgstr "
|
|
|
202 |
|
203 |
-
#: contact_form.php:
|
204 |
-
msgid "
|
205 |
-
|
|
|
|
|
|
|
|
|
206 |
|
207 |
-
#: contact_form.php:
|
208 |
msgid "Please, enter Your license key"
|
209 |
msgstr "Sleutel asseblief u lisensie sleutel in"
|
210 |
|
211 |
-
#: contact_form.php:
|
212 |
-
#: contact_form.php:2306
|
213 |
-
#: contact_form.php:2318
|
214 |
msgid "Settings"
|
215 |
msgstr "Verstellings"
|
216 |
|
217 |
-
#: contact_form.php:
|
218 |
msgid "Extra settings"
|
219 |
msgstr "Ekstra verstellings"
|
220 |
|
221 |
-
#: contact_form.php:
|
222 |
-
#: contact_form.php:2319
|
223 |
msgid "FAQ"
|
224 |
msgstr "Gereeld Gestelde Vrae (FAQ)"
|
225 |
|
226 |
-
#: contact_form.php:
|
227 |
msgid "Go PRO"
|
228 |
msgstr "Gaan PRO"
|
229 |
|
230 |
-
#: contact_form.php:
|
231 |
msgid "Notice:"
|
232 |
msgstr "Kennisgewing:"
|
233 |
|
234 |
-
#: contact_form.php:
|
235 |
-
msgid "
|
236 |
-
|
|
|
|
|
|
|
|
|
237 |
|
238 |
-
#: contact_form.php:
|
239 |
-
msgid "
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
240 |
msgstr ""
|
|
|
|
|
241 |
|
242 |
-
#: contact_form.php:
|
243 |
-
#: contact_form.php:
|
244 |
-
#: contact_form.php:
|
245 |
-
msgid "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:"
|
246 |
-
msgstr "As u die Kontak Vorm by u webstuiste wil bylas, kopieër en plak net die kortkode na u post, bladsy of widget:"
|
247 |
-
|
248 |
-
#: contact_form.php:865
|
249 |
-
#: contact_form.php:866
|
250 |
-
#: contact_form.php:870
|
251 |
-
#: contact_form.php:871
|
252 |
-
#: contact_form.php:1224
|
253 |
-
#: contact_form.php:1226
|
254 |
-
#: contact_form.php:1287
|
255 |
-
#: contact_form.php:1289
|
256 |
msgid "or"
|
257 |
msgstr "of"
|
258 |
|
259 |
-
#: contact_form.php:
|
260 |
-
|
261 |
-
|
262 |
-
|
|
|
|
|
|
|
263 |
|
264 |
-
#: contact_form.php:
|
265 |
-
#: contact_form.php:872
|
266 |
msgid "They work the same way."
|
267 |
msgstr "Hulle werk op dieselfde manier."
|
268 |
|
269 |
-
#: contact_form.php:
|
270 |
-
|
271 |
-
|
272 |
-
|
|
|
|
|
|
|
273 |
|
274 |
-
#: contact_form.php:
|
275 |
msgid "The user's email address:"
|
276 |
msgstr "Die gebruiker se epos adres:"
|
277 |
|
278 |
-
#: contact_form.php:
|
279 |
msgid "Create a username"
|
280 |
msgstr "Skep 'n gebruikersnaam"
|
281 |
|
282 |
-
#: contact_form.php:
|
283 |
-
msgid "
|
284 |
-
|
|
|
|
|
|
|
|
|
285 |
|
286 |
-
#: contact_form.php:
|
287 |
msgid "Use this email address:"
|
288 |
msgstr "Gebruik hierdie epos adres:"
|
289 |
|
290 |
-
#: contact_form.php:
|
291 |
msgid "Enter the email address you want the messages forwarded to."
|
292 |
msgstr "Sleutel in die epos adres in waar u die boodskappe aangestuur wil he."
|
293 |
|
294 |
-
#: contact_form.php:
|
295 |
msgid "Add department selectbox to the contact form:"
|
296 |
msgstr "Voeg 'n departementele keuse-boks by die kontak vorm:"
|
297 |
|
298 |
-
#: contact_form.php:
|
299 |
-
#: contact_form.php:1487
|
300 |
msgid "If you upgrade to Pro version all your settings will be saved."
|
301 |
msgstr "As u opgradeer na die Pro weergawe sal die verstellings gestoor word."
|
302 |
|
303 |
-
#: contact_form.php:
|
304 |
-
#: contact_form.php:
|
305 |
-
#: contact_form.php:1140
|
306 |
-
#: contact_form.php:1494
|
307 |
msgid "Unlock premium options by upgrading to a PRO version."
|
308 |
msgstr ""
|
309 |
|
310 |
-
#: contact_form.php:
|
311 |
-
#: contact_form.php:
|
312 |
-
#: contact_form.php:1141
|
313 |
-
#: contact_form.php:1495
|
314 |
-
#: contact_form.php:2574
|
315 |
-
#: contact_form.php:2590
|
316 |
msgid "Learn More"
|
317 |
msgstr ""
|
318 |
|
319 |
-
#: contact_form.php:
|
320 |
-
#: contact_form.php:
|
321 |
-
#: contact_form.php:1144
|
322 |
-
#: contact_form.php:1498
|
323 |
#, fuzzy
|
324 |
msgid "Go"
|
325 |
msgstr "Go!"
|
326 |
|
327 |
-
#: contact_form.php:
|
328 |
msgid "Save emails to the database"
|
329 |
msgstr "Stoor eposse na die databasis."
|
330 |
|
331 |
-
#: contact_form.php:
|
332 |
msgid "Using"
|
333 |
msgstr "In Gebruik"
|
334 |
|
335 |
-
#: contact_form.php:
|
336 |
-
#: contact_form.php:
|
337 |
-
#: contact_form.php:1120
|
338 |
-
#: contact_form.php:1124
|
339 |
msgid "powered by"
|
340 |
msgstr "Verrig deur"
|
341 |
|
342 |
-
#: contact_form.php:
|
343 |
-
#: contact_form.php:944
|
344 |
msgid "Using Contact Form to DB powered by"
|
345 |
msgstr "Gebruik van Kontak Vorm na DB verrig deur"
|
346 |
|
347 |
-
#: contact_form.php:
|
348 |
msgid "Activate Contact Form to DB"
|
349 |
msgstr "Aktiveer Kontak Vorm na DB"
|
350 |
|
351 |
-
#: contact_form.php:
|
352 |
msgid "Download Contact Form to DB"
|
353 |
msgstr "Laai Kontak Vorm na DB af"
|
354 |
|
355 |
-
#: contact_form.php:
|
356 |
msgid "Additional options"
|
357 |
msgstr "Addisionele opsies"
|
358 |
|
359 |
-
#: contact_form.php:
|
360 |
msgid "Show"
|
361 |
msgstr "Besigtig"
|
362 |
|
363 |
-
#: contact_form.php:
|
364 |
msgid "Hide"
|
365 |
msgstr "Versteek"
|
366 |
|
367 |
-
#: contact_form.php:
|
368 |
msgid "What to use?"
|
369 |
msgstr "Wat om te gebruik?"
|
370 |
|
371 |
-
#: contact_form.php:
|
372 |
msgid "Wp-mail"
|
373 |
msgstr "Wp-mail"
|
374 |
|
375 |
-
#: contact_form.php:
|
376 |
msgid "You can use the wp_mail function for mailing"
|
377 |
msgstr "U kan die wp_mail funksie gebruik vir eposse"
|
378 |
|
379 |
-
#: contact_form.php:
|
380 |
msgid "Mail"
|
381 |
msgstr "Mail"
|
382 |
|
383 |
-
#: contact_form.php:
|
384 |
msgid "To send mail you can use the php mail function"
|
385 |
msgstr "Om eposse te stuur kan u die php epos funksie gebruik"
|
386 |
|
387 |
-
#: contact_form.php:
|
388 |
msgid "The text in the 'From' field"
|
389 |
msgstr "Die teks in die 'From/Van' veld"
|
390 |
|
391 |
-
#: contact_form.php:
|
392 |
msgid "User name"
|
393 |
msgstr "Gebruikersnaam"
|
394 |
|
395 |
-
#: contact_form.php:
|
396 |
-
msgid "
|
397 |
-
|
|
|
|
|
|
|
398 |
|
399 |
-
#: contact_form.php:
|
400 |
msgid "This text will be used in the 'FROM' field"
|
401 |
msgstr "Hierdie teks sal gebruik word in die 'FROM/VAN' veld"
|
402 |
|
403 |
-
#: contact_form.php:
|
404 |
msgid "The email address in the 'From' field"
|
405 |
msgstr "Die epos adres in die 'From/Van' veld"
|
406 |
|
407 |
-
#: contact_form.php:
|
408 |
msgid "User email"
|
409 |
msgstr "Gebruiker epos"
|
410 |
|
411 |
-
#: contact_form.php:
|
412 |
-
msgid "
|
413 |
-
|
|
|
|
|
|
|
|
|
414 |
|
415 |
-
#: contact_form.php:
|
416 |
msgid "This email address will be used in the 'From' field."
|
417 |
msgstr "Hierdie epos adres sal gebruik word in die 'From/Van' veld."
|
418 |
|
419 |
-
#: contact_form.php:
|
420 |
msgid "Required symbol"
|
421 |
msgstr "Benodigde simbool"
|
422 |
|
423 |
-
#: contact_form.php:
|
424 |
msgid "Fields"
|
425 |
msgstr "Velde"
|
426 |
|
427 |
-
#: contact_form.php:
|
428 |
msgid "Used"
|
429 |
msgstr "Gebruik"
|
430 |
|
431 |
-
#: contact_form.php:
|
432 |
msgid "Required"
|
433 |
msgstr "Benodig"
|
434 |
|
435 |
-
#: contact_form.php:
|
436 |
msgid "Visible"
|
437 |
msgstr "Sigbaar"
|
438 |
|
439 |
-
#: contact_form.php:
|
440 |
msgid "Disabled for editing"
|
441 |
msgstr "Gedeaktiveer vir wysiging"
|
442 |
|
443 |
-
#: contact_form.php:
|
444 |
msgid "Field's default value"
|
445 |
msgstr "Veld se verstekwaarde"
|
446 |
|
447 |
-
#: contact_form.php:
|
448 |
-
#: contact_form.php:
|
449 |
-
#: contact_form.php:2125
|
450 |
-
#: contact_form.php:2161
|
451 |
msgid "Name"
|
452 |
msgstr "Naam"
|
453 |
|
454 |
-
#: contact_form.php:
|
455 |
msgid "Location selectbox"
|
456 |
msgstr ""
|
457 |
|
458 |
-
#: contact_form.php:
|
459 |
-
#: contact_form.php:
|
460 |
-
#: contact_form.php:2131
|
461 |
-
#: contact_form.php:2165
|
462 |
msgid "Address"
|
463 |
msgstr "Adres: "
|
464 |
|
465 |
-
#: contact_form.php:
|
466 |
msgid "Email Address"
|
467 |
msgstr "Epos Adres:"
|
468 |
|
469 |
-
#: contact_form.php:
|
470 |
msgid "Phone number"
|
471 |
msgstr "Telefoon nommer:"
|
472 |
|
473 |
-
#: contact_form.php:
|
474 |
-
#: contact_form.php:
|
475 |
-
#: contact_form.php:2146
|
476 |
-
#: contact_form.php:2174
|
477 |
msgid "Subject"
|
478 |
msgstr "Onderwerp"
|
479 |
|
480 |
-
#: contact_form.php:
|
481 |
-
#: contact_form.php:
|
482 |
-
#: contact_form.php:2149
|
483 |
-
#: contact_form.php:2176
|
484 |
msgid "Message"
|
485 |
msgstr "Boodskap"
|
486 |
|
487 |
-
#: contact_form.php:
|
488 |
msgid "Attachment block"
|
489 |
msgstr "Aanhegsel blok"
|
490 |
|
491 |
-
#: contact_form.php:
|
492 |
msgid "Users can attach the following file formats"
|
493 |
msgstr "Gebruikers kan die volgende dataleêr formate aanheg"
|
494 |
|
495 |
-
#: contact_form.php:
|
496 |
msgid "Add to the form"
|
497 |
msgstr "Voeg by die vorm by"
|
498 |
|
499 |
-
#: contact_form.php:
|
500 |
msgid "Tips below the Attachment"
|
501 |
msgstr "Wenke onder die Aanhegsel"
|
502 |
|
503 |
-
#: contact_form.php:
|
504 |
msgid "'Send me a copy' block"
|
505 |
msgstr "'Stuur vir my 'n kopie' blok"
|
506 |
|
507 |
-
#: contact_form.php:
|
508 |
-
#: contact_form.php:
|
509 |
-
#: contact_form.php:1124
|
510 |
-
#: contact_form.php:1396
|
511 |
msgid "Captcha"
|
512 |
msgstr "Captcha"
|
513 |
|
514 |
-
#: contact_form.php:
|
515 |
msgid "Activate captcha"
|
516 |
msgstr "Aktiveer captcha"
|
517 |
|
518 |
-
#: contact_form.php:
|
519 |
msgid "Download captcha"
|
520 |
msgstr "Laai captcha af"
|
521 |
|
522 |
-
#: contact_form.php:
|
523 |
msgid "Agreement checkbox"
|
524 |
msgstr "Ooreenstemming checkbox"
|
525 |
|
526 |
-
#: contact_form.php:
|
527 |
msgid "Required checkbox for submitting the form"
|
528 |
msgstr "Benodigde checkbox om die vorm in te dien"
|
529 |
|
530 |
-
#: contact_form.php:
|
531 |
msgid "Optional checkbox"
|
532 |
msgstr "Opsie checkbox"
|
533 |
|
534 |
-
#: contact_form.php:
|
535 |
msgid "Optional checkbox, the results of which will be displayed in email"
|
536 |
msgstr "Opsionele checkbox, die resultate waarvan in die epos sal verskyn"
|
537 |
|
538 |
-
#: contact_form.php:
|
539 |
msgid "Delete an attachment file from the server after the email is sent"
|
540 |
msgstr "Verwyder 'n aanhegsel dataleêr van die server na epos gestuur is"
|
541 |
|
542 |
-
#: contact_form.php:
|
543 |
msgid "Email in HTML format sending"
|
544 |
msgstr "E-Mail in HTML Format"
|
545 |
|
546 |
-
#: contact_form.php:
|
547 |
msgid "Display additional info in the email"
|
548 |
msgstr "Toon addisionele inligting in die epos"
|
549 |
|
550 |
-
#: contact_form.php:
|
551 |
-
#: contact_form.php:2092
|
552 |
-
#: contact_form.php:2094
|
553 |
msgid "Sent from (ip address)"
|
554 |
msgstr "Gestuur van (IP-Adres)"
|
555 |
|
556 |
-
#: contact_form.php:
|
557 |
msgid "Example: Sent from (IP address):\t127.0.0.1"
|
558 |
msgstr "Voorbeeld: Gestuur van (IP-Adres):\t127.0.0.1"
|
559 |
|
560 |
-
#: contact_form.php:
|
561 |
-
#: contact_form.php:2098
|
562 |
-
#: contact_form.php:2100
|
563 |
msgid "Date/Time"
|
564 |
msgstr "Datum/Tyd"
|
565 |
|
566 |
-
#: contact_form.php:
|
567 |
msgid "Example: Date/Time:\tAugust 19, 2013 8:50 pm"
|
568 |
msgstr "Voorbeeld: Datum/Tyd:\tAugustus 19, 2013 8:50 pm"
|
569 |
|
570 |
-
#: contact_form.php:
|
571 |
-
#: contact_form.php:2104
|
572 |
-
#: contact_form.php:2106
|
573 |
msgid "Sent from (referer)"
|
574 |
msgstr "Gestuur van (referer)"
|
575 |
|
576 |
-
#: contact_form.php:1167
|
577 |
-
msgid "Example: Sent from (referer):\thttp://bestwebsoft.com/contacts/contact-us/"
|
578 |
-
msgstr "Voorbeeld: Gestuur van (referer):\thttp://bestwebsoft.com/kontakte/kontak-ons/"
|
579 |
-
|
580 |
#: contact_form.php:1168
|
581 |
-
|
582 |
-
|
|
|
|
|
|
|
|
|
|
|
583 |
msgid "Using (user agent)"
|
584 |
msgstr "Gebruik (user agent)"
|
585 |
|
586 |
-
#: contact_form.php:
|
587 |
-
msgid "
|
588 |
-
|
|
|
|
|
|
|
|
|
589 |
|
590 |
-
#: contact_form.php:
|
591 |
msgid "Language settings for the field names in the form"
|
592 |
msgstr "Taal verstellings vir die naamvelde in die vorm"
|
593 |
|
594 |
-
#: contact_form.php:
|
595 |
msgid "Add a language"
|
596 |
msgstr "Voeg 'n taal by"
|
597 |
|
598 |
-
#: contact_form.php:
|
599 |
msgid "Change the names of the contact form fields and error messages"
|
600 |
msgstr "Verander die name van die kontak vorm velde en foutboodskappe"
|
601 |
|
602 |
-
#: contact_form.php:
|
603 |
-
#: contact_form.php:1277
|
604 |
msgid "English"
|
605 |
msgstr "Engels"
|
606 |
|
607 |
-
#: contact_form.php:
|
608 |
-
#: contact_form.php:1232
|
609 |
msgid "click to expand/hide the list"
|
610 |
msgstr "Kliek om uit te brei/lys te versteek"
|
611 |
|
612 |
-
#: contact_form.php:
|
613 |
-
#: contact_form.php:1241
|
614 |
msgid "Tips below the Attachment block"
|
615 |
msgstr "Wenke onder toe Aanhegsel blok"
|
616 |
|
617 |
-
#: contact_form.php:
|
618 |
-
#: contact_form.php:1244
|
619 |
msgid "Error message for the Name field"
|
620 |
msgstr "FFoutboodskap vir die Naamveld"
|
621 |
|
622 |
-
#: contact_form.php:
|
623 |
-
#: contact_form.php:1245
|
624 |
msgid "Error message for the Address field"
|
625 |
msgstr "Foutboodskap vir die Adres veld"
|
626 |
|
627 |
-
#: contact_form.php:
|
628 |
-
#: contact_form.php:1246
|
629 |
msgid "Error message for the Email field"
|
630 |
msgstr "Foutboodskap vir die Epos veld"
|
631 |
|
632 |
-
#: contact_form.php:
|
633 |
-
#: contact_form.php:1247
|
634 |
msgid "Error message for the Phone field"
|
635 |
msgstr "Foutboodskap vir die Telefoon Nommer veld"
|
636 |
|
637 |
-
#: contact_form.php:
|
638 |
-
#: contact_form.php:1248
|
639 |
msgid "Error message for the Subject field"
|
640 |
msgstr "Foutboodskap vir die Onderwerp veld"
|
641 |
|
642 |
-
#: contact_form.php:
|
643 |
-
#: contact_form.php:1249
|
644 |
msgid "Error message for the Message field"
|
645 |
msgstr "Foutboodskap vir die Boodskap veld"
|
646 |
|
647 |
-
#: contact_form.php:
|
648 |
-
#: contact_form.php:1250
|
649 |
msgid "Error message about the file type for the Attachment field"
|
650 |
msgstr "Foutboodskap oor die dataleêr tipe vir die Aanhegsel veld"
|
651 |
|
652 |
-
#: contact_form.php:
|
653 |
-
|
654 |
-
|
655 |
-
msgstr "
|
|
|
656 |
|
657 |
-
#: contact_form.php:
|
658 |
-
#: contact_form.php:1252
|
659 |
msgid "Error message while moving the file for the Attachment field"
|
660 |
msgstr "Foutboodskap tydens die skuif van dataleêr vir die Aanhegsel veld"
|
661 |
|
662 |
-
#: contact_form.php:
|
663 |
-
#: contact_form.php:1253
|
664 |
msgid "Error message when file size limit for the Attachment field is exceeded"
|
665 |
-
msgstr "
|
|
|
666 |
|
667 |
-
#: contact_form.php:
|
668 |
-
#: contact_form.php:1254
|
669 |
msgid "Error message for the Captcha field"
|
670 |
msgstr "Foutboodskap vir die Captcha veld"
|
671 |
|
672 |
-
#: contact_form.php:
|
673 |
-
#: contact_form.php:1255
|
674 |
msgid "Error message for the whole form"
|
675 |
msgstr "Foutboodskap vir die hele vorm"
|
676 |
|
677 |
-
#: contact_form.php:
|
678 |
-
#: contact_form.php:
|
679 |
-
#: contact_form.php:
|
680 |
-
#: contact_form.php:1260
|
681 |
-
#: contact_form.php:1287
|
682 |
-
#: contact_form.php:1289
|
683 |
-
#: contact_form.php:1297
|
684 |
-
#: contact_form.php:1299
|
685 |
msgid "Use shortcode"
|
686 |
msgstr "Gebruik kortkode"
|
687 |
|
688 |
-
#: contact_form.php:
|
689 |
-
#: contact_form.php:
|
690 |
-
#: contact_form.php:
|
691 |
-
#: contact_form.php:1260
|
692 |
-
#: contact_form.php:1287
|
693 |
-
#: contact_form.php:1289
|
694 |
-
#: contact_form.php:1297
|
695 |
-
#: contact_form.php:1299
|
696 |
msgid "for this language"
|
697 |
msgstr "vir hierdie taal"
|
698 |
|
699 |
-
#: contact_form.php:
|
700 |
#, fuzzy
|
701 |
msgid "Use the changed names of the contact form fields in the email"
|
702 |
msgstr "Verander die name van die kontak vorm velde en foutboodskappe"
|
703 |
|
704 |
-
#: contact_form.php:
|
705 |
msgid "Action after email is sent"
|
706 |
msgstr "Aksie na epos gestuur is"
|
707 |
|
708 |
-
#: contact_form.php:
|
709 |
msgid "Display text"
|
710 |
msgstr "Toon teks"
|
711 |
|
712 |
-
#: contact_form.php:
|
713 |
-
#: contact_form.php:1295
|
714 |
msgid "Text"
|
715 |
msgstr "teks"
|
716 |
|
717 |
-
#: contact_form.php:
|
718 |
msgid "Redirect to the page"
|
719 |
msgstr "Herlei na die bladsy"
|
720 |
|
721 |
-
#: contact_form.php:
|
722 |
msgid "Url"
|
723 |
msgstr "Url"
|
724 |
|
725 |
-
#: contact_form.php:
|
726 |
msgid "The $_SERVER variable that is used to build a URL of the form"
|
727 |
msgstr ""
|
728 |
|
729 |
-
#: contact_form.php:
|
730 |
-
msgid "
|
|
|
|
|
731 |
msgstr ""
|
732 |
|
733 |
-
#: contact_form.php:
|
734 |
-
#: contact_form.php:1505
|
735 |
msgid "Save Changes"
|
736 |
msgstr "Stoor veranderinge"
|
737 |
|
738 |
-
#: contact_form.php:
|
739 |
msgid "If you enjoy our plugin, please give it 5 stars on WordPress"
|
740 |
msgstr "As u die plugin geniet, gee dit asseblief 5 sterre op WordPress"
|
741 |
|
742 |
-
#: contact_form.php:
|
743 |
msgid "Rate the plugin"
|
744 |
msgstr "Prys die plugin"
|
745 |
|
746 |
-
#: contact_form.php:
|
747 |
msgid "If there is something wrong about it, please contact us"
|
748 |
msgstr "As daar iets fout is met dit, kontak ons asseblief"
|
749 |
|
750 |
-
#: contact_form.php:
|
751 |
msgid "Errors output"
|
752 |
msgstr "Foutboodskap uitset"
|
753 |
|
754 |
-
#: contact_form.php:
|
755 |
msgid "Display error messages"
|
756 |
msgstr "Toon foutboodskappe"
|
757 |
|
758 |
-
#: contact_form.php:
|
759 |
msgid "Color of the input field errors."
|
760 |
msgstr "Kleur van die inset veld foutboodskappe"
|
761 |
|
762 |
-
#: contact_form.php:
|
763 |
msgid "Display error messages & color of the input field errors"
|
764 |
msgstr "Toon foutboodskappe & kleur van die inset veld foutboodskappe"
|
765 |
|
766 |
-
#: contact_form.php:
|
767 |
msgid "Add placeholder to the input blocks"
|
768 |
msgstr "Voeg 'n plekhouer by die inset blokke"
|
769 |
|
770 |
-
#: contact_form.php:
|
771 |
msgid "Add tooltips"
|
772 |
msgstr "Voeg tool-wenke"
|
773 |
|
774 |
-
#: contact_form.php:
|
775 |
msgid "Email address"
|
776 |
msgstr "Epos Adres:"
|
777 |
|
778 |
-
#: contact_form.php:
|
779 |
msgid "Phone Number"
|
780 |
msgstr "Telefoon Nommer:"
|
781 |
|
782 |
-
#: contact_form.php:
|
783 |
msgid "Attachment"
|
784 |
msgstr "Aanhegsel:"
|
785 |
|
786 |
-
#: contact_form.php:
|
787 |
msgid "(powered by bestwebsoft.com)"
|
788 |
msgstr "(Verrig deur bestwebsoft.com)"
|
789 |
|
790 |
-
#: contact_form.php:
|
791 |
msgid "Style options"
|
792 |
msgstr "Styl opsies"
|
793 |
|
794 |
-
#: contact_form.php:
|
795 |
msgid "Text color"
|
796 |
msgstr "Teks kleur"
|
797 |
|
798 |
-
#: contact_form.php:
|
799 |
-
#: contact_form.php:
|
800 |
-
#: contact_form.php:
|
801 |
-
#: contact_form.php:
|
802 |
-
#: contact_form.php:1432
|
803 |
-
#: contact_form.php:1437
|
804 |
-
#: contact_form.php:1447
|
805 |
-
#: contact_form.php:1452
|
806 |
-
#: contact_form.php:1458
|
807 |
-
#: contact_form.php:1469
|
808 |
-
#: contact_form.php:1474
|
809 |
-
#: contact_form.php:1479
|
810 |
msgid "Default"
|
811 |
msgstr "Verstek"
|
812 |
|
813 |
-
#: contact_form.php:
|
814 |
msgid "Label text color"
|
815 |
msgstr "Etiket teks kleur"
|
816 |
|
817 |
-
#: contact_form.php:
|
818 |
msgid "Placeholder color"
|
819 |
msgstr "Plekhouer kleur"
|
820 |
|
821 |
-
#: contact_form.php:
|
822 |
msgid "Errors color"
|
823 |
msgstr "Foutboodskap kleur"
|
824 |
|
825 |
-
#: contact_form.php:
|
826 |
msgid "Error text color"
|
827 |
msgstr "Foutboodskap teks kleur"
|
828 |
|
829 |
-
#: contact_form.php:
|
830 |
msgid "Background color of the input field errors"
|
831 |
msgstr "Agtergrond kleur van die inset veld foutboodskappe"
|
832 |
|
833 |
-
#: contact_form.php:
|
834 |
msgid "Border color of the input field errors"
|
835 |
msgstr "Rand-kleur van die inset veld foutboodskappe"
|
836 |
|
837 |
-
#: contact_form.php:
|
838 |
msgid "Placeholder color of the input field errors"
|
839 |
msgstr "Plekhouer kleur van die inset veld foutboodskappe"
|
840 |
|
841 |
-
#: contact_form.php:
|
842 |
msgid "Input fields"
|
843 |
msgstr "Inset velde"
|
844 |
|
845 |
-
#: contact_form.php:
|
846 |
msgid "Input fields background color"
|
847 |
msgstr "Inset velde agtergrond kleur"
|
848 |
|
849 |
-
#: contact_form.php:
|
850 |
msgid "Text fields color"
|
851 |
msgstr "Teks velde kleur"
|
852 |
|
853 |
-
#: contact_form.php:
|
854 |
msgid "Border width in px, numbers only"
|
855 |
msgstr "Rand wydte in px, nommers alleenlik"
|
856 |
|
857 |
-
#: contact_form.php:
|
858 |
-
#: contact_form.php:1481
|
859 |
msgid "Border color"
|
860 |
msgstr "Rand kleur"
|
861 |
|
862 |
-
#: contact_form.php:
|
863 |
msgid "Submit button"
|
864 |
msgstr "Indien knoppie"
|
865 |
|
866 |
-
#: contact_form.php:
|
867 |
msgid "Width in px, numbers only"
|
868 |
msgstr "Wydte in px, nommers alleenlik"
|
869 |
|
870 |
-
#: contact_form.php:
|
871 |
msgid "Button color"
|
872 |
msgstr "Knoppie Kleur"
|
873 |
|
874 |
-
#: contact_form.php:
|
875 |
msgid "Button text color"
|
876 |
msgstr "Knoppie teks kleur"
|
877 |
|
878 |
-
#: contact_form.php:
|
879 |
msgid "Contact Form Pro | Preview"
|
880 |
msgstr "Kontak Vorm Pro | Voorskou"
|
881 |
|
882 |
-
#: contact_form.php:
|
883 |
msgid "Show with errors"
|
884 |
msgstr "Toon met foutboodskappe"
|
885 |
|
886 |
-
#: contact_form.php:
|
887 |
-
#: contact_form.php:1522
|
888 |
msgid "Please enter your full name..."
|
889 |
msgstr "Vul asseblief u volle name in..."
|
890 |
|
891 |
-
#: contact_form.php:
|
892 |
-
#: contact_form.php:1535
|
893 |
msgid "Please enter your address..."
|
894 |
msgstr "Vul asseblief u adres in... "
|
895 |
|
896 |
-
#: contact_form.php:
|
897 |
-
#: contact_form.php:1546
|
898 |
msgid "Please enter your email address..."
|
899 |
msgstr "Vul asseblief u epos adres in..."
|
900 |
|
901 |
-
#: contact_form.php:
|
902 |
-
#: contact_form.php:1557
|
903 |
msgid "Please enter your phone number..."
|
904 |
msgstr "Vul asseblief u telefoon nommer in... "
|
905 |
|
906 |
-
#: contact_form.php:
|
907 |
-
#: contact_form.php:1568
|
908 |
msgid "Please enter subject..."
|
909 |
msgstr "Vul asseblief 'n onderwerp in... "
|
910 |
|
911 |
-
#: contact_form.php:
|
912 |
-
#: contact_form.php:1578
|
913 |
msgid "Please enter your message..."
|
914 |
msgstr "Vul asseblief jou boodskap in... "
|
915 |
|
916 |
-
#: contact_form.php:
|
917 |
-
msgid "
|
918 |
-
|
|
|
|
|
|
|
|
|
919 |
|
920 |
-
#: contact_form.php:
|
921 |
msgid "Please, go to"
|
922 |
msgstr "Gaan asseblief na"
|
923 |
|
924 |
-
#: contact_form.php:
|
925 |
msgid "the setting page"
|
926 |
msgstr "Die verstelling bladsy"
|
927 |
|
928 |
-
#: contact_form.php:
|
929 |
msgid "You will be redirected automatically in 5 seconds."
|
930 |
msgstr "U sal outomaties herlei word in 5 sekondes."
|
931 |
|
932 |
-
#: contact_form.php:
|
933 |
msgid "You can download and activate"
|
934 |
msgstr "U kan aflaai en aktiveer"
|
935 |
|
936 |
-
#: contact_form.php:
|
937 |
msgid "version of this plugin by entering Your license key."
|
938 |
msgstr "weergawe van hierdie plugin deurom u lisensiekode in te vul."
|
939 |
|
940 |
-
#: contact_form.php:
|
941 |
-
msgid "
|
942 |
-
|
|
|
|
|
|
|
|
|
943 |
|
944 |
-
#: contact_form.php:
|
945 |
msgid "(your username is the email you specify when purchasing the product)."
|
946 |
-
msgstr "
|
|
|
|
|
947 |
|
948 |
-
#: contact_form.php:
|
949 |
-
#: contact_form.php:1652
|
950 |
msgid "Activate"
|
951 |
msgstr "Aktiveer"
|
952 |
|
953 |
-
#: contact_form.php:
|
954 |
msgid "Sorry, email message could not be delivered."
|
955 |
msgstr "Verskoning, die epos kon nie gestuur word nie."
|
956 |
|
957 |
-
#: contact_form.php:
|
958 |
msgid "Contact from"
|
959 |
msgstr "Kontak Vorm"
|
960 |
|
961 |
-
#: contact_form.php:
|
962 |
-
#: contact_form.php:2168
|
963 |
msgid "Email"
|
964 |
msgstr "Epos"
|
965 |
|
966 |
-
#: contact_form.php:
|
967 |
-
#: contact_form.php:2171
|
968 |
msgid "Phone"
|
969 |
msgstr "Telefoon Nommer"
|
970 |
|
971 |
-
#: contact_form.php:
|
972 |
-
#: contact_form.php:2178
|
973 |
msgid "Site"
|
974 |
msgstr "Webtuiste"
|
975 |
|
976 |
-
#: contact_form.php:
|
977 |
-
msgid "
|
978 |
-
|
|
|
|
|
|
|
|
|
979 |
|
980 |
-
#: contact_form.php:
|
981 |
msgid "Support"
|
982 |
msgstr "Steun"
|
983 |
|
984 |
-
#: contact_form.php:
|
985 |
msgid "Are you sure that you want to delete this language data?"
|
986 |
msgstr "Is u seker dat u die taal data wil verwyder?"
|
987 |
|
988 |
-
#: contact_form.php:
|
989 |
-
msgid "
|
|
|
|
|
990 |
msgstr ""
|
991 |
|
992 |
-
#: contact_form.php:
|
993 |
msgid "Extend standard plugin functionality with new great options."
|
994 |
msgstr ""
|
995 |
|
996 |
-
#: contact_form.php:
|
997 |
-
msgid "
|
|
|
|
|
998 |
msgstr ""
|
999 |
|
1000 |
-
#: contact_form.php:
|
1001 |
msgid "Manage messages that have been sent from your website."
|
1002 |
msgstr ""
|
1003 |
|
2 |
msgstr ""
|
3 |
"Project-Id-Version: contact_form\n"
|
4 |
"Report-Msgid-Bugs-To: \n"
|
5 |
+
"POT-Creation-Date: 2014-08-07 14:42+0300\n"
|
6 |
+
"PO-Revision-Date: 2014-08-07 14:42+0300\n"
|
7 |
"Last-Translator: bestwebsoft.com <plugins@bestwebsoft.com>\n"
|
8 |
"Language-Team: Aldu <alducornelissen@gmail.com>\n"
|
9 |
"Language: af\n"
|
13 |
"X-Poedit-KeywordsList: __;_e\n"
|
14 |
"X-Poedit-Basepath: ..\n"
|
15 |
"X-Poedit-SourceCharset: UTF-8\n"
|
16 |
+
"X-Generator: Poedit 1.5.4\n"
|
17 |
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
18 |
"X-Poedit-SearchPath-0: .\n"
|
19 |
|
20 |
+
#: contact_form.php:74 contact_form.php:846
|
|
|
21 |
msgid "Contact Form Settings"
|
22 |
msgstr "Kontak Form Verstellings"
|
23 |
|
25 |
msgid "Contact Form"
|
26 |
msgstr "Kontak Form"
|
27 |
|
28 |
+
#: contact_form.php:150 contact_form.php:1201 contact_form.php:1235
|
|
|
|
|
29 |
msgid "Name:"
|
30 |
msgstr "Naam:"
|
31 |
|
32 |
+
#: contact_form.php:151 contact_form.php:1202 contact_form.php:1236
|
|
|
|
|
33 |
msgid "Address:"
|
34 |
msgstr "Adres:"
|
35 |
|
36 |
+
#: contact_form.php:152 contact_form.php:1203 contact_form.php:1237
|
|
|
|
|
37 |
msgid "Email Address:"
|
38 |
msgstr "Epos Adres:"
|
39 |
|
40 |
+
#: contact_form.php:153 contact_form.php:1204 contact_form.php:1238
|
|
|
|
|
41 |
msgid "Phone number:"
|
42 |
msgstr "Telefoon nommer:"
|
43 |
|
44 |
+
#: contact_form.php:154 contact_form.php:1205 contact_form.php:1239
|
|
|
|
|
45 |
msgid "Subject:"
|
46 |
msgstr "Onderwerp:"
|
47 |
|
48 |
+
#: contact_form.php:155 contact_form.php:1206 contact_form.php:1240
|
|
|
|
|
49 |
msgid "Message:"
|
50 |
msgstr "Boodskap:"
|
51 |
|
52 |
+
#: contact_form.php:156 contact_form.php:1207 contact_form.php:1241
|
|
|
|
|
53 |
msgid "Attachment:"
|
54 |
msgstr "Aanhegsel:"
|
55 |
|
56 |
#: contact_form.php:157
|
57 |
+
msgid ""
|
58 |
+
"Supported file types: HTML, TXT, CSS, GIF, PNG, JPEG, JPG, TIFF, BMP, AI, "
|
59 |
+
"EPS, PS, RTF, PDF, DOC, DOCX, XLS, ZIP, RAR, WAV, MP3, PPT. Max file size: "
|
60 |
+
"2MB"
|
61 |
+
msgstr ""
|
62 |
+
"Ondersteunde datalêer tipes: HTML, TXT, CSS, GIF, PNG, JPEG, JPG, TIFF, BMP, "
|
63 |
+
"AI, EPS, PS, RTF, PDF, DOC, DOCX, XLS, ZIP, RAR, WAV, MP3, PPT. Max Datei-"
|
64 |
+
"Größe: 2MB"
|
65 |
|
66 |
+
#: contact_form.php:158 contact_form.php:1209 contact_form.php:1243
|
|
|
|
|
67 |
msgid "Send me a copy"
|
68 |
msgstr "Stuur vir my 'n kopie"
|
69 |
|
70 |
+
#: contact_form.php:159 contact_form.php:1210 contact_form.php:1244
|
|
|
|
|
71 |
msgid "Submit"
|
72 |
msgstr "Dien in"
|
73 |
|
128 |
msgstr "benodig"
|
129 |
|
130 |
#: contact_form.php:369
|
131 |
+
msgid ""
|
132 |
+
"or higher, that is why it has been deactivated! Please upgrade WordPress and "
|
133 |
+
"try again."
|
134 |
+
msgstr ""
|
135 |
+
"of hoër, dit is waarom dit gedeaktiveer is! Opgradeer asseblief WordPress, "
|
136 |
+
"en probeer weer."
|
137 |
|
138 |
#: contact_form.php:369
|
139 |
msgid "Back to the WordPress"
|
144 |
msgstr "Plugin blad"
|
145 |
|
146 |
#: contact_form.php:677
|
147 |
+
msgid ""
|
148 |
+
"If the 'Redirect to page' option is selected then the URL field should be in "
|
149 |
+
"the following format"
|
150 |
+
msgstr ""
|
151 |
+
"As die 'Redirect to page' opsie geselekteer is moet die URL veld in die "
|
152 |
+
"volgende formaat wees"
|
153 |
|
154 |
#: contact_form.php:686
|
155 |
msgid "Such user does not exist. Settings are not saved."
|
156 |
msgstr "Hierdie gebruiker bestaan nie. Die instellings is nie gestoor nie."
|
157 |
|
158 |
+
#: contact_form.php:691
|
159 |
+
#, fuzzy
|
160 |
+
msgid ""
|
161 |
+
"Please enter a valid email address in the 'Use this email address' field. "
|
162 |
+
"Settings are not saved."
|
163 |
+
msgstr ""
|
164 |
+
"Vul asseblief 'n geldige epos adres in die 'FROM/VAN' veld. Die verstellings "
|
165 |
+
"is nie gestoor nie."
|
166 |
|
167 |
+
#: contact_form.php:697
|
168 |
+
msgid ""
|
169 |
+
"Please enter a valid email address in the 'FROM' field. Settings are not "
|
170 |
+
"saved."
|
171 |
+
msgstr ""
|
172 |
+
"Vul asseblief 'n geldige epos adres in die 'FROM/VAN' veld. Die verstellings "
|
173 |
+
"is nie gestoor nie."
|
174 |
+
|
175 |
+
#: contact_form.php:722
|
176 |
msgid "Settings saved."
|
177 |
msgstr "Verstellings is gestoor."
|
178 |
|
179 |
+
#: contact_form.php:749 contact_form.php:781
|
|
|
180 |
msgid "Wrong license key"
|
181 |
msgstr "Verkeerde lisensie sleutel"
|
182 |
|
183 |
+
#: contact_form.php:774
|
184 |
+
msgid ""
|
185 |
+
"Something went wrong. Try again later. If the error will appear again, "
|
186 |
+
"please, contact us <a href=http://support.bestwebsoft.com>BestWebSoft</a>. "
|
187 |
+
"We are sorry for inconvenience."
|
188 |
+
msgstr ""
|
189 |
+
"Iets het fout gegaan. Probeer weer later. As die foutboodskap weer verskyn, "
|
190 |
+
"kontak ons asseblief by <a href=http://support.bestwebsoft.com>BestWebSoft</"
|
191 |
+
"a>. Ons is jammer vir die ongerief."
|
192 |
|
193 |
+
#: contact_form.php:783
|
194 |
msgid "This license key is bind to another site"
|
195 |
msgstr "Hierdie lisensie sleutel is verbind met 'n ander webblad."
|
196 |
|
197 |
+
#: contact_form.php:785 contact_form.php:1646
|
198 |
+
msgid ""
|
199 |
+
"Unfortunately, you have exceeded the number of available tries per day. "
|
200 |
+
"Please, upload the plugin manually."
|
201 |
+
msgstr ""
|
202 |
+
"Ongelukkig het u die aantal beskikbare probeerslae per dag oorskry. Laai "
|
203 |
+
"asseblief die plugin handmatig op."
|
204 |
|
205 |
+
#: contact_form.php:802
|
206 |
msgid "Failed to open the zip archive. Please, upload the plugin manually"
|
207 |
+
msgstr ""
|
208 |
+
"Mislukking om zip Argiewe oop te maak. Laai asseblief die plugin handmatig "
|
209 |
+
"op."
|
210 |
|
211 |
+
#: contact_form.php:808
|
212 |
+
msgid ""
|
213 |
+
"Your server does not support either ZipArchive or Phar. Please, upload the "
|
214 |
+
"plugin manually"
|
215 |
+
msgstr ""
|
216 |
+
"U server ondersteun of nie ZipArchive of Phar nie. Laai asseblief die plugin "
|
217 |
+
"handmatig op."
|
218 |
|
219 |
+
#: contact_form.php:812 contact_form.php:821
|
|
|
220 |
msgid "Failed to download the zip archive. Please, upload the plugin manually"
|
221 |
+
msgstr ""
|
222 |
+
"Mislukking om zip Argiewe af te laai. Laai asseblief die plugin handmatig op."
|
223 |
|
224 |
+
#: contact_form.php:825
|
225 |
+
msgid ""
|
226 |
+
"Something went wrong. Try again later or upload the plugin manually. We are "
|
227 |
+
"sorry for inconvienience."
|
228 |
+
msgstr ""
|
229 |
+
"Iets het verkeerd gegaan. Probeer weer later, of laai die plugin op "
|
230 |
+
"handmatig. Ons is jammer vir die ongerief."
|
231 |
|
232 |
+
#: contact_form.php:840
|
233 |
msgid "Please, enter Your license key"
|
234 |
msgstr "Sleutel asseblief u lisensie sleutel in"
|
235 |
|
236 |
+
#: contact_form.php:848 contact_form.php:2337 contact_form.php:2349
|
|
|
|
|
237 |
msgid "Settings"
|
238 |
msgstr "Verstellings"
|
239 |
|
240 |
+
#: contact_form.php:849
|
241 |
msgid "Extra settings"
|
242 |
msgstr "Ekstra verstellings"
|
243 |
|
244 |
+
#: contact_form.php:850 contact_form.php:2350
|
|
|
245 |
msgid "FAQ"
|
246 |
msgstr "Gereeld Gestelde Vrae (FAQ)"
|
247 |
|
248 |
+
#: contact_form.php:851
|
249 |
msgid "Go PRO"
|
250 |
msgstr "Gaan PRO"
|
251 |
|
252 |
+
#: contact_form.php:854
|
253 |
msgid "Notice:"
|
254 |
msgstr "Kennisgewing:"
|
255 |
|
256 |
+
#: contact_form.php:854
|
257 |
+
msgid ""
|
258 |
+
"The plugin's settings have been changed. In order to save them please don't "
|
259 |
+
"forget to click the 'Save Changes' button."
|
260 |
+
msgstr ""
|
261 |
+
"Die plugin se verstellings het verander. Onthou om 'Save Changes' te kliek "
|
262 |
+
"om die veranderinge te stoor."
|
263 |
|
264 |
+
#: contact_form.php:860
|
265 |
+
msgid ""
|
266 |
+
"If you want to create multiple contact forms, please install the Contact "
|
267 |
+
"Form Multi plugin."
|
268 |
+
msgstr ""
|
269 |
+
|
270 |
+
#: contact_form.php:866 contact_form.php:871 contact_form.php:1605
|
271 |
+
msgid ""
|
272 |
+
"If you would like to add the Contact Form to your website, just copy and "
|
273 |
+
"paste this shortcode to your post or page or widget:"
|
274 |
msgstr ""
|
275 |
+
"As u die Kontak Vorm by u webstuiste wil bylas, kopieër en plak net die "
|
276 |
+
"kortkode na u post, bladsy of widget:"
|
277 |
|
278 |
+
#: contact_form.php:866 contact_form.php:867 contact_form.php:871
|
279 |
+
#: contact_form.php:872 contact_form.php:1225 contact_form.php:1227
|
280 |
+
#: contact_form.php:1288 contact_form.php:1290
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
281 |
msgid "or"
|
282 |
msgstr "of"
|
283 |
|
284 |
+
#: contact_form.php:867 contact_form.php:872
|
285 |
+
msgid ""
|
286 |
+
"If have any problems with the standard shortcode [contact_form], you should "
|
287 |
+
"use the shortcode"
|
288 |
+
msgstr ""
|
289 |
+
"As u enige probelem het met die standaard kortkode [contact_form], moet u "
|
290 |
+
"die volgende kortkodes gebruik"
|
291 |
|
292 |
+
#: contact_form.php:868 contact_form.php:873
|
|
|
293 |
msgid "They work the same way."
|
294 |
msgstr "Hulle werk op dieselfde manier."
|
295 |
|
296 |
+
#: contact_form.php:869 contact_form.php:874
|
297 |
+
msgid ""
|
298 |
+
"If you leave the fields empty, the messages will be sent to the email "
|
299 |
+
"address specified during registration."
|
300 |
+
msgstr ""
|
301 |
+
"As u die velde leeg laat, sal die boodskappe gestuur word na die epos adres "
|
302 |
+
"wat gespesifiseer was gedurende registrasie"
|
303 |
|
304 |
+
#: contact_form.php:879
|
305 |
msgid "The user's email address:"
|
306 |
msgstr "Die gebruiker se epos adres:"
|
307 |
|
308 |
+
#: contact_form.php:883
|
309 |
msgid "Create a username"
|
310 |
msgstr "Skep 'n gebruikersnaam"
|
311 |
|
312 |
+
#: contact_form.php:890
|
313 |
+
msgid ""
|
314 |
+
"Enter a username of the person who should get the messages from the contact "
|
315 |
+
"form."
|
316 |
+
msgstr ""
|
317 |
+
"Sleutel 'n gebruikersnaam in vir die persoon wat die boodskappe moet kry van "
|
318 |
+
"die kontak vorm."
|
319 |
|
320 |
+
#: contact_form.php:894
|
321 |
msgid "Use this email address:"
|
322 |
msgstr "Gebruik hierdie epos adres:"
|
323 |
|
324 |
+
#: contact_form.php:897
|
325 |
msgid "Enter the email address you want the messages forwarded to."
|
326 |
msgstr "Sleutel in die epos adres in waar u die boodskappe aangestuur wil he."
|
327 |
|
328 |
+
#: contact_form.php:906
|
329 |
msgid "Add department selectbox to the contact form:"
|
330 |
msgstr "Voeg 'n departementele keuse-boks by die kontak vorm:"
|
331 |
|
332 |
+
#: contact_form.php:914 contact_form.php:1488
|
|
|
333 |
msgid "If you upgrade to Pro version all your settings will be saved."
|
334 |
msgstr "As u opgradeer na die Pro weergawe sal die verstellings gestoor word."
|
335 |
|
336 |
+
#: contact_form.php:921 contact_form.php:1067 contact_form.php:1141
|
337 |
+
#: contact_form.php:1495
|
|
|
|
|
338 |
msgid "Unlock premium options by upgrading to a PRO version."
|
339 |
msgstr ""
|
340 |
|
341 |
+
#: contact_form.php:922 contact_form.php:1068 contact_form.php:1142
|
342 |
+
#: contact_form.php:1496 contact_form.php:2605 contact_form.php:2621
|
|
|
|
|
|
|
|
|
343 |
msgid "Learn More"
|
344 |
msgstr ""
|
345 |
|
346 |
+
#: contact_form.php:925 contact_form.php:1071 contact_form.php:1145
|
347 |
+
#: contact_form.php:1499
|
|
|
|
|
348 |
#, fuzzy
|
349 |
msgid "Go"
|
350 |
msgstr "Go!"
|
351 |
|
352 |
+
#: contact_form.php:932
|
353 |
msgid "Save emails to the database"
|
354 |
msgstr "Stoor eposse na die databasis."
|
355 |
|
356 |
+
#: contact_form.php:938
|
357 |
msgid "Using"
|
358 |
msgstr "In Gebruik"
|
359 |
|
360 |
+
#: contact_form.php:938 contact_form.php:1118 contact_form.php:1121
|
361 |
+
#: contact_form.php:1125
|
|
|
|
|
362 |
msgid "powered by"
|
363 |
msgstr "Verrig deur"
|
364 |
|
365 |
+
#: contact_form.php:941 contact_form.php:945
|
|
|
366 |
msgid "Using Contact Form to DB powered by"
|
367 |
msgstr "Gebruik van Kontak Vorm na DB verrig deur"
|
368 |
|
369 |
+
#: contact_form.php:941
|
370 |
msgid "Activate Contact Form to DB"
|
371 |
msgstr "Aktiveer Kontak Vorm na DB"
|
372 |
|
373 |
+
#: contact_form.php:945
|
374 |
msgid "Download Contact Form to DB"
|
375 |
msgstr "Laai Kontak Vorm na DB af"
|
376 |
|
377 |
+
#: contact_form.php:950
|
378 |
msgid "Additional options"
|
379 |
msgstr "Addisionele opsies"
|
380 |
|
381 |
+
#: contact_form.php:952
|
382 |
msgid "Show"
|
383 |
msgstr "Besigtig"
|
384 |
|
385 |
+
#: contact_form.php:953
|
386 |
msgid "Hide"
|
387 |
msgstr "Versteek"
|
388 |
|
389 |
+
#: contact_form.php:957
|
390 |
msgid "What to use?"
|
391 |
msgstr "Wat om te gebruik?"
|
392 |
|
393 |
+
#: contact_form.php:960
|
394 |
msgid "Wp-mail"
|
395 |
msgstr "Wp-mail"
|
396 |
|
397 |
+
#: contact_form.php:960
|
398 |
msgid "You can use the wp_mail function for mailing"
|
399 |
msgstr "U kan die wp_mail funksie gebruik vir eposse"
|
400 |
|
401 |
+
#: contact_form.php:962
|
402 |
msgid "Mail"
|
403 |
msgstr "Mail"
|
404 |
|
405 |
+
#: contact_form.php:962
|
406 |
msgid "To send mail you can use the php mail function"
|
407 |
msgstr "Om eposse te stuur kan u die php epos funksie gebruik"
|
408 |
|
409 |
+
#: contact_form.php:966
|
410 |
msgid "The text in the 'From' field"
|
411 |
msgstr "Die teks in die 'From/Van' veld"
|
412 |
|
413 |
+
#: contact_form.php:968
|
414 |
msgid "User name"
|
415 |
msgstr "Gebruikersnaam"
|
416 |
|
417 |
+
#: contact_form.php:969
|
418 |
+
msgid ""
|
419 |
+
"The name of the user who fills the form will be used in the field 'From'."
|
420 |
+
msgstr ""
|
421 |
+
"Die naam van die gebruiker wie die vorm invul sal gebruik word vir die 'From/"
|
422 |
+
"Van' veld."
|
423 |
|
424 |
+
#: contact_form.php:972
|
425 |
msgid "This text will be used in the 'FROM' field"
|
426 |
msgstr "Hierdie teks sal gebruik word in die 'FROM/VAN' veld"
|
427 |
|
428 |
+
#: contact_form.php:976
|
429 |
msgid "The email address in the 'From' field"
|
430 |
msgstr "Die epos adres in die 'From/Van' veld"
|
431 |
|
432 |
+
#: contact_form.php:978
|
433 |
msgid "User email"
|
434 |
msgstr "Gebruiker epos"
|
435 |
|
436 |
+
#: contact_form.php:979
|
437 |
+
msgid ""
|
438 |
+
"The email address of the user who fills the form will be used in the field "
|
439 |
+
"'From'."
|
440 |
+
msgstr ""
|
441 |
+
"Die epos adres van die gebruiker wie die vorm invul sal gebruik word in die "
|
442 |
+
"'From/van' veld."
|
443 |
|
444 |
+
#: contact_form.php:982
|
445 |
msgid "This email address will be used in the 'From' field."
|
446 |
msgstr "Hierdie epos adres sal gebruik word in die 'From/Van' veld."
|
447 |
|
448 |
+
#: contact_form.php:986
|
449 |
msgid "Required symbol"
|
450 |
msgstr "Benodigde simbool"
|
451 |
|
452 |
+
#: contact_form.php:996
|
453 |
msgid "Fields"
|
454 |
msgstr "Velde"
|
455 |
|
456 |
+
#: contact_form.php:997
|
457 |
msgid "Used"
|
458 |
msgstr "Gebruik"
|
459 |
|
460 |
+
#: contact_form.php:998
|
461 |
msgid "Required"
|
462 |
msgstr "Benodig"
|
463 |
|
464 |
+
#: contact_form.php:999
|
465 |
msgid "Visible"
|
466 |
msgstr "Sigbaar"
|
467 |
|
468 |
+
#: contact_form.php:1000
|
469 |
msgid "Disabled for editing"
|
470 |
msgstr "Gedeaktiveer vir wysiging"
|
471 |
|
472 |
+
#: contact_form.php:1001
|
473 |
msgid "Field's default value"
|
474 |
msgstr "Veld se verstekwaarde"
|
475 |
|
476 |
+
#: contact_form.php:1006 contact_form.php:1363 contact_form.php:2127
|
477 |
+
#: contact_form.php:2163
|
|
|
|
|
478 |
msgid "Name"
|
479 |
msgstr "Naam"
|
480 |
|
481 |
+
#: contact_form.php:1014
|
482 |
msgid "Location selectbox"
|
483 |
msgstr ""
|
484 |
|
485 |
+
#: contact_form.php:1022 contact_form.php:1368 contact_form.php:2133
|
486 |
+
#: contact_form.php:2167
|
|
|
|
|
487 |
msgid "Address"
|
488 |
msgstr "Adres: "
|
489 |
|
490 |
+
#: contact_form.php:1030
|
491 |
msgid "Email Address"
|
492 |
msgstr "Epos Adres:"
|
493 |
|
494 |
+
#: contact_form.php:1038
|
495 |
msgid "Phone number"
|
496 |
msgstr "Telefoon nommer:"
|
497 |
|
498 |
+
#: contact_form.php:1046 contact_form.php:1383 contact_form.php:2148
|
499 |
+
#: contact_form.php:2176
|
|
|
|
|
500 |
msgid "Subject"
|
501 |
msgstr "Onderwerp"
|
502 |
|
503 |
+
#: contact_form.php:1054 contact_form.php:1387 contact_form.php:2151
|
504 |
+
#: contact_form.php:2178
|
|
|
|
|
505 |
msgid "Message"
|
506 |
msgstr "Boodskap"
|
507 |
|
508 |
+
#: contact_form.php:1078
|
509 |
msgid "Attachment block"
|
510 |
msgstr "Aanhegsel blok"
|
511 |
|
512 |
+
#: contact_form.php:1080
|
513 |
msgid "Users can attach the following file formats"
|
514 |
msgstr "Gebruikers kan die volgende dataleêr formate aanheg"
|
515 |
|
516 |
+
#: contact_form.php:1093
|
517 |
msgid "Add to the form"
|
518 |
msgstr "Voeg by die vorm by"
|
519 |
|
520 |
+
#: contact_form.php:1098
|
521 |
msgid "Tips below the Attachment"
|
522 |
msgstr "Wenke onder die Aanhegsel"
|
523 |
|
524 |
+
#: contact_form.php:1107
|
525 |
msgid "'Send me a copy' block"
|
526 |
msgstr "'Stuur vir my 'n kopie' blok"
|
527 |
|
528 |
+
#: contact_form.php:1118 contact_form.php:1121 contact_form.php:1125
|
529 |
+
#: contact_form.php:1397
|
|
|
|
|
530 |
msgid "Captcha"
|
531 |
msgstr "Captcha"
|
532 |
|
533 |
+
#: contact_form.php:1121
|
534 |
msgid "Activate captcha"
|
535 |
msgstr "Aktiveer captcha"
|
536 |
|
537 |
+
#: contact_form.php:1125
|
538 |
msgid "Download captcha"
|
539 |
msgstr "Laai captcha af"
|
540 |
|
541 |
+
#: contact_form.php:1133
|
542 |
msgid "Agreement checkbox"
|
543 |
msgstr "Ooreenstemming checkbox"
|
544 |
|
545 |
+
#: contact_form.php:1133
|
546 |
msgid "Required checkbox for submitting the form"
|
547 |
msgstr "Benodigde checkbox om die vorm in te dien"
|
548 |
|
549 |
+
#: contact_form.php:1134
|
550 |
msgid "Optional checkbox"
|
551 |
msgstr "Opsie checkbox"
|
552 |
|
553 |
+
#: contact_form.php:1134
|
554 |
msgid "Optional checkbox, the results of which will be displayed in email"
|
555 |
msgstr "Opsionele checkbox, die resultate waarvan in die epos sal verskyn"
|
556 |
|
557 |
+
#: contact_form.php:1151
|
558 |
msgid "Delete an attachment file from the server after the email is sent"
|
559 |
msgstr "Verwyder 'n aanhegsel dataleêr van die server na epos gestuur is"
|
560 |
|
561 |
+
#: contact_form.php:1157
|
562 |
msgid "Email in HTML format sending"
|
563 |
msgstr "E-Mail in HTML Format"
|
564 |
|
565 |
+
#: contact_form.php:1161
|
566 |
msgid "Display additional info in the email"
|
567 |
msgstr "Toon addisionele inligting in die epos"
|
568 |
|
569 |
+
#: contact_form.php:1166 contact_form.php:2094 contact_form.php:2096
|
|
|
|
|
570 |
msgid "Sent from (ip address)"
|
571 |
msgstr "Gestuur van (IP-Adres)"
|
572 |
|
573 |
+
#: contact_form.php:1166
|
574 |
msgid "Example: Sent from (IP address):\t127.0.0.1"
|
575 |
msgstr "Voorbeeld: Gestuur van (IP-Adres):\t127.0.0.1"
|
576 |
|
577 |
+
#: contact_form.php:1167 contact_form.php:2100 contact_form.php:2102
|
|
|
|
|
578 |
msgid "Date/Time"
|
579 |
msgstr "Datum/Tyd"
|
580 |
|
581 |
+
#: contact_form.php:1167
|
582 |
msgid "Example: Date/Time:\tAugust 19, 2013 8:50 pm"
|
583 |
msgstr "Voorbeeld: Datum/Tyd:\tAugustus 19, 2013 8:50 pm"
|
584 |
|
585 |
+
#: contact_form.php:1168 contact_form.php:2106 contact_form.php:2108
|
|
|
|
|
586 |
msgid "Sent from (referer)"
|
587 |
msgstr "Gestuur van (referer)"
|
588 |
|
|
|
|
|
|
|
|
|
589 |
#: contact_form.php:1168
|
590 |
+
msgid ""
|
591 |
+
"Example: Sent from (referer):\thttp://bestwebsoft.com/contacts/contact-us/"
|
592 |
+
msgstr ""
|
593 |
+
"Voorbeeld: Gestuur van (referer):\thttp://bestwebsoft.com/kontakte/kontak-"
|
594 |
+
"ons/"
|
595 |
+
|
596 |
+
#: contact_form.php:1169 contact_form.php:2112 contact_form.php:2114
|
597 |
msgid "Using (user agent)"
|
598 |
msgstr "Gebruik (user agent)"
|
599 |
|
600 |
+
#: contact_form.php:1169
|
601 |
+
msgid ""
|
602 |
+
"Example: Using (user agent):\tMozilla/5.0 (Windows NT 6.2; WOW64) "
|
603 |
+
"AppleWebKit/537.36 (KHTML, like Gecko) Chrome/28.0.1500.95 Safari/537.36"
|
604 |
+
msgstr ""
|
605 |
+
"Voorbeeld: Gebruik (user agent):\tMozilla/5.0 (Windows NT 6.2; WOW64) "
|
606 |
+
"AppleWebKit/537.36 (KHTML, like Gecko) Chrome/28.0.1500.95 Safari/537.36"
|
607 |
|
608 |
+
#: contact_form.php:1173
|
609 |
msgid "Language settings for the field names in the form"
|
610 |
msgstr "Taal verstellings vir die naamvelde in die vorm"
|
611 |
|
612 |
+
#: contact_form.php:1182
|
613 |
msgid "Add a language"
|
614 |
msgstr "Voeg 'n taal by"
|
615 |
|
616 |
+
#: contact_form.php:1186
|
617 |
msgid "Change the names of the contact form fields and error messages"
|
618 |
msgstr "Verander die name van die kontak vorm velde en foutboodskappe"
|
619 |
|
620 |
+
#: contact_form.php:1191 contact_form.php:1278
|
|
|
621 |
msgid "English"
|
622 |
msgstr "Engels"
|
623 |
|
624 |
+
#: contact_form.php:1199 contact_form.php:1233
|
|
|
625 |
msgid "click to expand/hide the list"
|
626 |
msgstr "Kliek om uit te brei/lys te versteek"
|
627 |
|
628 |
+
#: contact_form.php:1208 contact_form.php:1242
|
|
|
629 |
msgid "Tips below the Attachment block"
|
630 |
msgstr "Wenke onder toe Aanhegsel blok"
|
631 |
|
632 |
+
#: contact_form.php:1211 contact_form.php:1245
|
|
|
633 |
msgid "Error message for the Name field"
|
634 |
msgstr "FFoutboodskap vir die Naamveld"
|
635 |
|
636 |
+
#: contact_form.php:1212 contact_form.php:1246
|
|
|
637 |
msgid "Error message for the Address field"
|
638 |
msgstr "Foutboodskap vir die Adres veld"
|
639 |
|
640 |
+
#: contact_form.php:1213 contact_form.php:1247
|
|
|
641 |
msgid "Error message for the Email field"
|
642 |
msgstr "Foutboodskap vir die Epos veld"
|
643 |
|
644 |
+
#: contact_form.php:1214 contact_form.php:1248
|
|
|
645 |
msgid "Error message for the Phone field"
|
646 |
msgstr "Foutboodskap vir die Telefoon Nommer veld"
|
647 |
|
648 |
+
#: contact_form.php:1215 contact_form.php:1249
|
|
|
649 |
msgid "Error message for the Subject field"
|
650 |
msgstr "Foutboodskap vir die Onderwerp veld"
|
651 |
|
652 |
+
#: contact_form.php:1216 contact_form.php:1250
|
|
|
653 |
msgid "Error message for the Message field"
|
654 |
msgstr "Foutboodskap vir die Boodskap veld"
|
655 |
|
656 |
+
#: contact_form.php:1217 contact_form.php:1251
|
|
|
657 |
msgid "Error message about the file type for the Attachment field"
|
658 |
msgstr "Foutboodskap oor die dataleêr tipe vir die Aanhegsel veld"
|
659 |
|
660 |
+
#: contact_form.php:1218 contact_form.php:1252
|
661 |
+
msgid ""
|
662 |
+
"Error message while uploading a file for the Attachment field to the server"
|
663 |
+
msgstr ""
|
664 |
+
"Foutboodskap tydens dataleêr oplaai vir die Aanhegsel veld na die server"
|
665 |
|
666 |
+
#: contact_form.php:1219 contact_form.php:1253
|
|
|
667 |
msgid "Error message while moving the file for the Attachment field"
|
668 |
msgstr "Foutboodskap tydens die skuif van dataleêr vir die Aanhegsel veld"
|
669 |
|
670 |
+
#: contact_form.php:1220 contact_form.php:1254
|
|
|
671 |
msgid "Error message when file size limit for the Attachment field is exceeded"
|
672 |
+
msgstr ""
|
673 |
+
"Foutboodskap wanneer die dataleêr limiet vir die Aanhegsel veld oorskry is"
|
674 |
|
675 |
+
#: contact_form.php:1221 contact_form.php:1255
|
|
|
676 |
msgid "Error message for the Captcha field"
|
677 |
msgstr "Foutboodskap vir die Captcha veld"
|
678 |
|
679 |
+
#: contact_form.php:1222 contact_form.php:1256
|
|
|
680 |
msgid "Error message for the whole form"
|
681 |
msgstr "Foutboodskap vir die hele vorm"
|
682 |
|
683 |
+
#: contact_form.php:1225 contact_form.php:1227 contact_form.php:1259
|
684 |
+
#: contact_form.php:1261 contact_form.php:1288 contact_form.php:1290
|
685 |
+
#: contact_form.php:1298 contact_form.php:1300
|
|
|
|
|
|
|
|
|
|
|
686 |
msgid "Use shortcode"
|
687 |
msgstr "Gebruik kortkode"
|
688 |
|
689 |
+
#: contact_form.php:1225 contact_form.php:1227 contact_form.php:1259
|
690 |
+
#: contact_form.php:1261 contact_form.php:1288 contact_form.php:1290
|
691 |
+
#: contact_form.php:1298 contact_form.php:1300
|
|
|
|
|
|
|
|
|
|
|
692 |
msgid "for this language"
|
693 |
msgstr "vir hierdie taal"
|
694 |
|
695 |
+
#: contact_form.php:1269
|
696 |
#, fuzzy
|
697 |
msgid "Use the changed names of the contact form fields in the email"
|
698 |
msgstr "Verander die name van die kontak vorm velde en foutboodskappe"
|
699 |
|
700 |
+
#: contact_form.php:1275
|
701 |
msgid "Action after email is sent"
|
702 |
msgstr "Aksie na epos gestuur is"
|
703 |
|
704 |
+
#: contact_form.php:1277
|
705 |
msgid "Display text"
|
706 |
msgstr "Toon teks"
|
707 |
|
708 |
+
#: contact_form.php:1286 contact_form.php:1296
|
|
|
709 |
msgid "Text"
|
710 |
msgstr "teks"
|
711 |
|
712 |
+
#: contact_form.php:1307
|
713 |
msgid "Redirect to the page"
|
714 |
msgstr "Herlei na die bladsy"
|
715 |
|
716 |
+
#: contact_form.php:1308
|
717 |
msgid "Url"
|
718 |
msgstr "Url"
|
719 |
|
720 |
+
#: contact_form.php:1312
|
721 |
msgid "The $_SERVER variable that is used to build a URL of the form"
|
722 |
msgstr ""
|
723 |
|
724 |
+
#: contact_form.php:1316
|
725 |
+
msgid ""
|
726 |
+
"If you are not sure whether to change this setting or not, please do not do "
|
727 |
+
"that."
|
728 |
msgstr ""
|
729 |
|
730 |
+
#: contact_form.php:1322 contact_form.php:1506
|
|
|
731 |
msgid "Save Changes"
|
732 |
msgstr "Stoor veranderinge"
|
733 |
|
734 |
+
#: contact_form.php:1327
|
735 |
msgid "If you enjoy our plugin, please give it 5 stars on WordPress"
|
736 |
msgstr "As u die plugin geniet, gee dit asseblief 5 sterre op WordPress"
|
737 |
|
738 |
+
#: contact_form.php:1328
|
739 |
msgid "Rate the plugin"
|
740 |
msgstr "Prys die plugin"
|
741 |
|
742 |
+
#: contact_form.php:1331
|
743 |
msgid "If there is something wrong about it, please contact us"
|
744 |
msgstr "As daar iets fout is met dit, kontak ons asseblief"
|
745 |
|
746 |
+
#: contact_form.php:1343
|
747 |
msgid "Errors output"
|
748 |
msgstr "Foutboodskap uitset"
|
749 |
|
750 |
+
#: contact_form.php:1346
|
751 |
msgid "Display error messages"
|
752 |
msgstr "Toon foutboodskappe"
|
753 |
|
754 |
+
#: contact_form.php:1347
|
755 |
msgid "Color of the input field errors."
|
756 |
msgstr "Kleur van die inset veld foutboodskappe"
|
757 |
|
758 |
+
#: contact_form.php:1348
|
759 |
msgid "Display error messages & color of the input field errors"
|
760 |
msgstr "Toon foutboodskappe & kleur van die inset veld foutboodskappe"
|
761 |
|
762 |
+
#: contact_form.php:1353
|
763 |
msgid "Add placeholder to the input blocks"
|
764 |
msgstr "Voeg 'n plekhouer by die inset blokke"
|
765 |
|
766 |
+
#: contact_form.php:1359
|
767 |
msgid "Add tooltips"
|
768 |
msgstr "Voeg tool-wenke"
|
769 |
|
770 |
+
#: contact_form.php:1373
|
771 |
msgid "Email address"
|
772 |
msgstr "Epos Adres:"
|
773 |
|
774 |
+
#: contact_form.php:1378
|
775 |
msgid "Phone Number"
|
776 |
msgstr "Telefoon Nommer:"
|
777 |
|
778 |
+
#: contact_form.php:1392
|
779 |
msgid "Attachment"
|
780 |
msgstr "Aanhegsel:"
|
781 |
|
782 |
+
#: contact_form.php:1397
|
783 |
msgid "(powered by bestwebsoft.com)"
|
784 |
msgstr "(Verrig deur bestwebsoft.com)"
|
785 |
|
786 |
+
#: contact_form.php:1402
|
787 |
msgid "Style options"
|
788 |
msgstr "Styl opsies"
|
789 |
|
790 |
+
#: contact_form.php:1405
|
791 |
msgid "Text color"
|
792 |
msgstr "Teks kleur"
|
793 |
|
794 |
+
#: contact_form.php:1408 contact_form.php:1413 contact_form.php:1423
|
795 |
+
#: contact_form.php:1428 contact_form.php:1433 contact_form.php:1438
|
796 |
+
#: contact_form.php:1448 contact_form.php:1453 contact_form.php:1459
|
797 |
+
#: contact_form.php:1470 contact_form.php:1475 contact_form.php:1480
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
798 |
msgid "Default"
|
799 |
msgstr "Verstek"
|
800 |
|
801 |
+
#: contact_form.php:1410
|
802 |
msgid "Label text color"
|
803 |
msgstr "Etiket teks kleur"
|
804 |
|
805 |
+
#: contact_form.php:1415
|
806 |
msgid "Placeholder color"
|
807 |
msgstr "Plekhouer kleur"
|
808 |
|
809 |
+
#: contact_form.php:1420
|
810 |
msgid "Errors color"
|
811 |
msgstr "Foutboodskap kleur"
|
812 |
|
813 |
+
#: contact_form.php:1425
|
814 |
msgid "Error text color"
|
815 |
msgstr "Foutboodskap teks kleur"
|
816 |
|
817 |
+
#: contact_form.php:1430
|
818 |
msgid "Background color of the input field errors"
|
819 |
msgstr "Agtergrond kleur van die inset veld foutboodskappe"
|
820 |
|
821 |
+
#: contact_form.php:1435
|
822 |
msgid "Border color of the input field errors"
|
823 |
msgstr "Rand-kleur van die inset veld foutboodskappe"
|
824 |
|
825 |
+
#: contact_form.php:1440
|
826 |
msgid "Placeholder color of the input field errors"
|
827 |
msgstr "Plekhouer kleur van die inset veld foutboodskappe"
|
828 |
|
829 |
+
#: contact_form.php:1445
|
830 |
msgid "Input fields"
|
831 |
msgstr "Inset velde"
|
832 |
|
833 |
+
#: contact_form.php:1450
|
834 |
msgid "Input fields background color"
|
835 |
msgstr "Inset velde agtergrond kleur"
|
836 |
|
837 |
+
#: contact_form.php:1455
|
838 |
msgid "Text fields color"
|
839 |
msgstr "Teks velde kleur"
|
840 |
|
841 |
+
#: contact_form.php:1457
|
842 |
msgid "Border width in px, numbers only"
|
843 |
msgstr "Rand wydte in px, nommers alleenlik"
|
844 |
|
845 |
+
#: contact_form.php:1461 contact_form.php:1482
|
|
|
846 |
msgid "Border color"
|
847 |
msgstr "Rand kleur"
|
848 |
|
849 |
+
#: contact_form.php:1466
|
850 |
msgid "Submit button"
|
851 |
msgstr "Indien knoppie"
|
852 |
|
853 |
+
#: contact_form.php:1468
|
854 |
msgid "Width in px, numbers only"
|
855 |
msgstr "Wydte in px, nommers alleenlik"
|
856 |
|
857 |
+
#: contact_form.php:1472
|
858 |
msgid "Button color"
|
859 |
msgstr "Knoppie Kleur"
|
860 |
|
861 |
+
#: contact_form.php:1477
|
862 |
msgid "Button text color"
|
863 |
msgstr "Knoppie teks kleur"
|
864 |
|
865 |
+
#: contact_form.php:1510
|
866 |
msgid "Contact Form Pro | Preview"
|
867 |
msgstr "Kontak Vorm Pro | Voorskou"
|
868 |
|
869 |
+
#: contact_form.php:1513
|
870 |
msgid "Show with errors"
|
871 |
msgstr "Toon met foutboodskappe"
|
872 |
|
873 |
+
#: contact_form.php:1521 contact_form.php:1523
|
|
|
874 |
msgid "Please enter your full name..."
|
875 |
msgstr "Vul asseblief u volle name in..."
|
876 |
|
877 |
+
#: contact_form.php:1534 contact_form.php:1536
|
|
|
878 |
msgid "Please enter your address..."
|
879 |
msgstr "Vul asseblief u adres in... "
|
880 |
|
881 |
+
#: contact_form.php:1545 contact_form.php:1547
|
|
|
882 |
msgid "Please enter your email address..."
|
883 |
msgstr "Vul asseblief u epos adres in..."
|
884 |
|
885 |
+
#: contact_form.php:1556 contact_form.php:1558
|
|
|
886 |
msgid "Please enter your phone number..."
|
887 |
msgstr "Vul asseblief u telefoon nommer in... "
|
888 |
|
889 |
+
#: contact_form.php:1567 contact_form.php:1569
|
|
|
890 |
msgid "Please enter subject..."
|
891 |
msgstr "Vul asseblief 'n onderwerp in... "
|
892 |
|
893 |
+
#: contact_form.php:1577 contact_form.php:1579
|
|
|
894 |
msgid "Please enter your message..."
|
895 |
msgstr "Vul asseblief jou boodskap in... "
|
896 |
|
897 |
+
#: contact_form.php:1621
|
898 |
+
msgid ""
|
899 |
+
"Congratulations! The PRO version of the plugin is successfully download and "
|
900 |
+
"activated."
|
901 |
+
msgstr ""
|
902 |
+
"Geluk! Die PRO weergawe van die plugin het suksesvol afgelaai en is "
|
903 |
+
"geaktiveer"
|
904 |
|
905 |
+
#: contact_form.php:1623
|
906 |
msgid "Please, go to"
|
907 |
msgstr "Gaan asseblief na"
|
908 |
|
909 |
+
#: contact_form.php:1623
|
910 |
msgid "the setting page"
|
911 |
msgstr "Die verstelling bladsy"
|
912 |
|
913 |
+
#: contact_form.php:1624
|
914 |
msgid "You will be redirected automatically in 5 seconds."
|
915 |
msgstr "U sal outomaties herlei word in 5 sekondes."
|
916 |
|
917 |
+
#: contact_form.php:1629
|
918 |
msgid "You can download and activate"
|
919 |
msgstr "U kan aflaai en aktiveer"
|
920 |
|
921 |
+
#: contact_form.php:1631
|
922 |
msgid "version of this plugin by entering Your license key."
|
923 |
msgstr "weergawe van hierdie plugin deurom u lisensiekode in te vul."
|
924 |
|
925 |
+
#: contact_form.php:1633
|
926 |
+
msgid ""
|
927 |
+
"You can find your license key on your personal page Client area, by clicking "
|
928 |
+
"on the link"
|
929 |
+
msgstr ""
|
930 |
+
"U kan u lisensiekode vind op u persoonlike bladsy Klient area, deurom te "
|
931 |
+
"kliek op die skakel"
|
932 |
|
933 |
+
#: contact_form.php:1635
|
934 |
msgid "(your username is the email you specify when purchasing the product)."
|
935 |
+
msgstr ""
|
936 |
+
"(u gebruikersnaam is die epos wat u gespesifiseer het toe u die produk "
|
937 |
+
"aangekoop het)."
|
938 |
|
939 |
+
#: contact_form.php:1643 contact_form.php:1653
|
|
|
940 |
msgid "Activate"
|
941 |
msgstr "Aktiveer"
|
942 |
|
943 |
+
#: contact_form.php:1719
|
944 |
msgid "Sorry, email message could not be delivered."
|
945 |
msgstr "Verskoning, die epos kon nie gestuur word nie."
|
946 |
|
947 |
+
#: contact_form.php:2121
|
948 |
msgid "Contact from"
|
949 |
msgstr "Kontak Vorm"
|
950 |
|
951 |
+
#: contact_form.php:2138 contact_form.php:2170
|
|
|
952 |
msgid "Email"
|
953 |
msgstr "Epos"
|
954 |
|
955 |
+
#: contact_form.php:2143 contact_form.php:2173
|
|
|
956 |
msgid "Phone"
|
957 |
msgstr "Telefoon Nommer"
|
958 |
|
959 |
+
#: contact_form.php:2154 contact_form.php:2180
|
|
|
960 |
msgid "Site"
|
961 |
msgstr "Webtuiste"
|
962 |
|
963 |
+
#: contact_form.php:2270
|
964 |
+
msgid ""
|
965 |
+
"If you can see this MIME, it means that the MIME type is not supported by "
|
966 |
+
"your email client!"
|
967 |
+
msgstr ""
|
968 |
+
"As u die MIME kan sie, beteken dit dat die MIME tipe nie ondersteun word "
|
969 |
+
"deur u epos klient nie!"
|
970 |
|
971 |
+
#: contact_form.php:2351
|
972 |
msgid "Support"
|
973 |
msgstr "Steun"
|
974 |
|
975 |
+
#: contact_form.php:2399
|
976 |
msgid "Are you sure that you want to delete this language data?"
|
977 |
msgstr "Is u seker dat u die taal data wil verwyder?"
|
978 |
|
979 |
+
#: contact_form.php:2608
|
980 |
+
msgid ""
|
981 |
+
"It’s time to upgrade your <strong>Contact Form plugin</strong> to "
|
982 |
+
"<strong>PRO</strong> version"
|
983 |
msgstr ""
|
984 |
|
985 |
+
#: contact_form.php:2609
|
986 |
msgid "Extend standard plugin functionality with new great options."
|
987 |
msgstr ""
|
988 |
|
989 |
+
#: contact_form.php:2624
|
990 |
+
msgid ""
|
991 |
+
"<strong>Contact Form to DB</strong> allows to store your messages to the "
|
992 |
+
"database."
|
993 |
msgstr ""
|
994 |
|
995 |
+
#: contact_form.php:2625
|
996 |
msgid "Manage messages that have been sent from your website."
|
997 |
msgstr ""
|
998 |
|
languages/contact_form-be_BY.mo
CHANGED
Binary file
|
languages/contact_form-be_BY.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: 2014-07
|
6 |
-
"PO-Revision-Date: 2014-07
|
7 |
"Last-Translator: bestwebsoft.com <plugins@bestwebsoft.com>\n"
|
8 |
"Language-Team: Sakałoŭ Alaksiej <nullbsd@gmail.com>\n"
|
9 |
"Language: be_BY\n"
|
@@ -13,11 +13,10 @@ msgstr ""
|
|
13 |
"X-Poedit-KeywordsList: __;_e\n"
|
14 |
"X-Poedit-Basepath: ..\n"
|
15 |
"X-Poedit-SourceCharset: UTF-8\n"
|
16 |
-
"X-Generator: Poedit 1.5.
|
17 |
"X-Poedit-SearchPath-0: .\n"
|
18 |
|
19 |
-
#: contact_form.php:74
|
20 |
-
#: contact_form.php:845
|
21 |
#, fuzzy
|
22 |
msgid "Contact Form Settings"
|
23 |
msgstr "Наладкі кантактнай формы"
|
@@ -26,62 +25,47 @@ msgstr "Наладкі кантактнай формы"
|
|
26 |
msgid "Contact Form"
|
27 |
msgstr "Кантактная форма"
|
28 |
|
29 |
-
#: contact_form.php:150
|
30 |
-
#: contact_form.php:1200
|
31 |
-
#: contact_form.php:1234
|
32 |
msgid "Name:"
|
33 |
msgstr "Імя:"
|
34 |
|
35 |
-
#: contact_form.php:151
|
36 |
-
#: contact_form.php:1201
|
37 |
-
#: contact_form.php:1235
|
38 |
#, fuzzy
|
39 |
msgid "Address:"
|
40 |
msgstr "E-mail адрас:"
|
41 |
|
42 |
-
#: contact_form.php:152
|
43 |
-
#: contact_form.php:1202
|
44 |
-
#: contact_form.php:1236
|
45 |
msgid "Email Address:"
|
46 |
msgstr "E-mail адрас:"
|
47 |
|
48 |
-
#: contact_form.php:153
|
49 |
-
#: contact_form.php:1203
|
50 |
-
#: contact_form.php:1237
|
51 |
msgid "Phone number:"
|
52 |
msgstr "Тэлефон:"
|
53 |
|
54 |
-
#: contact_form.php:154
|
55 |
-
#: contact_form.php:1204
|
56 |
-
#: contact_form.php:1238
|
57 |
msgid "Subject:"
|
58 |
msgstr "Тэма:"
|
59 |
|
60 |
-
#: contact_form.php:155
|
61 |
-
#: contact_form.php:1205
|
62 |
-
#: contact_form.php:1239
|
63 |
msgid "Message:"
|
64 |
msgstr "Паведамленьне:"
|
65 |
|
66 |
-
#: contact_form.php:156
|
67 |
-
#: contact_form.php:1206
|
68 |
-
#: contact_form.php:1240
|
69 |
msgid "Attachment:"
|
70 |
msgstr "Прычапіць файл:"
|
71 |
|
72 |
#: contact_form.php:157
|
73 |
-
msgid "
|
|
|
|
|
|
|
74 |
msgstr ""
|
75 |
|
76 |
-
#: contact_form.php:158
|
77 |
-
#: contact_form.php:1208
|
78 |
-
#: contact_form.php:1242
|
79 |
msgid "Send me a copy"
|
80 |
msgstr "Адправіць мне копію"
|
81 |
|
82 |
-
#: contact_form.php:159
|
83 |
-
#: contact_form.php:1209
|
84 |
-
#: contact_form.php:1243
|
85 |
msgid "Submit"
|
86 |
msgstr "Адправіць"
|
87 |
|
@@ -145,7 +129,9 @@ msgid "requires"
|
|
145 |
msgstr "Абавязковыя палі"
|
146 |
|
147 |
#: contact_form.php:369
|
148 |
-
msgid "
|
|
|
|
|
149 |
msgstr ""
|
150 |
|
151 |
#: contact_form.php:369
|
@@ -158,893 +144,870 @@ msgid "Plugins page"
|
|
158 |
msgstr "Плагины BWS"
|
159 |
|
160 |
#: contact_form.php:677
|
161 |
-
msgid "
|
162 |
-
|
|
|
|
|
|
|
|
|
163 |
|
164 |
#: contact_form.php:686
|
165 |
msgid "Such user does not exist. Settings are not saved."
|
166 |
msgstr "Дадзены карыстальнік ня знойдзен. Наладкі не захаваны"
|
167 |
|
168 |
-
#: contact_form.php:
|
169 |
-
|
170 |
-
msgid "
|
171 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
172 |
|
173 |
-
#: contact_form.php:
|
174 |
#, fuzzy
|
175 |
msgid "Settings saved."
|
176 |
msgstr "Наладкі захаваны."
|
177 |
|
178 |
-
#: contact_form.php:
|
179 |
-
#: contact_form.php:780
|
180 |
msgid "Wrong license key"
|
181 |
msgstr ""
|
182 |
|
183 |
-
#: contact_form.php:
|
184 |
-
msgid "
|
|
|
|
|
|
|
185 |
msgstr ""
|
186 |
|
187 |
-
#: contact_form.php:
|
188 |
msgid "This license key is bind to another site"
|
189 |
msgstr ""
|
190 |
|
191 |
-
#: contact_form.php:
|
192 |
-
|
193 |
-
|
|
|
194 |
msgstr ""
|
195 |
|
196 |
-
#: contact_form.php:
|
197 |
msgid "Failed to open the zip archive. Please, upload the plugin manually"
|
198 |
msgstr ""
|
199 |
|
200 |
-
#: contact_form.php:
|
201 |
-
msgid "
|
|
|
|
|
202 |
msgstr ""
|
203 |
|
204 |
-
#: contact_form.php:
|
205 |
-
#: contact_form.php:820
|
206 |
msgid "Failed to download the zip archive. Please, upload the plugin manually"
|
207 |
msgstr ""
|
208 |
|
209 |
-
#: contact_form.php:
|
210 |
-
msgid "
|
|
|
|
|
211 |
msgstr ""
|
212 |
|
213 |
-
#: contact_form.php:
|
214 |
#, fuzzy
|
215 |
msgid "Please, enter Your license key"
|
216 |
msgstr "Выкарыстоўваць гэты email-адрас:"
|
217 |
|
218 |
-
#: contact_form.php:
|
219 |
-
#: contact_form.php:2306
|
220 |
-
#: contact_form.php:2318
|
221 |
msgid "Settings"
|
222 |
msgstr "Наладкі"
|
223 |
|
224 |
-
#: contact_form.php:
|
225 |
#, fuzzy
|
226 |
msgid "Extra settings"
|
227 |
msgstr "Наладкі"
|
228 |
|
229 |
-
#: contact_form.php:
|
230 |
-
#: contact_form.php:2319
|
231 |
msgid "FAQ"
|
232 |
msgstr "Пытаньні й адказы"
|
233 |
|
234 |
-
#: contact_form.php:
|
235 |
msgid "Go PRO"
|
236 |
msgstr ""
|
237 |
|
238 |
-
#: contact_form.php:
|
239 |
msgid "Notice:"
|
240 |
msgstr ""
|
241 |
|
242 |
-
#: contact_form.php:
|
243 |
-
msgid "
|
|
|
|
|
244 |
msgstr ""
|
245 |
|
246 |
-
#: contact_form.php:
|
247 |
-
msgid "
|
|
|
|
|
248 |
msgstr ""
|
249 |
|
250 |
-
#: contact_form.php:
|
251 |
-
|
252 |
-
|
253 |
-
|
254 |
-
msgstr "
|
|
|
|
|
|
|
255 |
|
256 |
-
#: contact_form.php:
|
257 |
-
#: contact_form.php:
|
258 |
-
#: contact_form.php:
|
259 |
-
#: contact_form.php:871
|
260 |
-
#: contact_form.php:1224
|
261 |
-
#: contact_form.php:1226
|
262 |
-
#: contact_form.php:1287
|
263 |
-
#: contact_form.php:1289
|
264 |
msgid "or"
|
265 |
msgstr ""
|
266 |
|
267 |