Version Description
- Fixed potential conflicts with themes that use bootstrap
- Enabled internationalisation, this plugin will now work with multiple languages
- Added German translation file for my German friends, thanks to faktorzweinet for the translation
Download this release
Release Info
Developer | megnicholas |
Plugin | Contact Form Clean and Simple |
Version | 4.1.1 |
Comparing to | |
See all releases |
Code changes from version 4.1.0 to 4.1.1
- class.cff.php +15 -1
- class.cff_contact.php +9 -9
- class.cff_pluginsettings.php +4 -4
- class.cff_settings.php +26 -26
- clean-and-simple-contact-form-by-meg-nicholas.php +3 -3
- languages/cleanandsimple-de_DE.mo +0 -0
- languages/cleanandsimple-de_DE.po +272 -0
- languages/cleanandsimple-it_IT.mo +0 -0
- languages/cleanandsimple-it_IT.po +266 -0
- languages/cleanandsimple.pot +254 -0
- readme.txt +8 -2
- shortcodes/contact-form.php +1 -1
- views/contact-form-with-recaptcha.view.php +11 -11
- views/contact-form.view.php +9 -9
- views/message-not-sent.view.php +1 -1
class.cff.php
CHANGED
@@ -21,9 +21,23 @@ class cff
|
|
21 |
$this,
|
22 |
'RegisterScripts'
|
23 |
));
|
|
|
|
|
|
|
|
|
|
|
24 |
|
25 |
//create the settings page
|
26 |
$settings = new cff_settings();
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
27 |
}
|
28 |
|
29 |
function RegisterScripts()
|
@@ -37,7 +51,7 @@ class cff
|
|
37 |
wp_register_script('jquery-validate-contact-form', CFF_PLUGIN_URL . '/js/jquery.validate.contact.form.js', array(
|
38 |
'jquery'
|
39 |
) , '1.00', true);
|
40 |
-
wp_register_style('bootstrap', CFF_PLUGIN_URL . '/css/bootstrap-forms.min.css', null, '2.3.1');
|
41 |
}
|
42 |
|
43 |
function Upgrade()
|
21 |
$this,
|
22 |
'RegisterScripts'
|
23 |
));
|
24 |
+
|
25 |
+
add_action('plugins_loaded', array(
|
26 |
+
$this,
|
27 |
+
'RegisterTextDomain'
|
28 |
+
));
|
29 |
|
30 |
//create the settings page
|
31 |
$settings = new cff_settings();
|
32 |
+
|
33 |
+
}
|
34 |
+
|
35 |
+
//load text domain
|
36 |
+
function RegisterTextDomain()
|
37 |
+
{
|
38 |
+
//$path = CFF_PLUGIN_DIR . '/languages';
|
39 |
+
$path = '/' . CFF_PLUGIN_NAME . '/languages';
|
40 |
+
load_plugin_textdomain('cleanandsimple', false, $path );
|
41 |
}
|
42 |
|
43 |
function RegisterScripts()
|
51 |
wp_register_script('jquery-validate-contact-form', CFF_PLUGIN_URL . '/js/jquery.validate.contact.form.js', array(
|
52 |
'jquery'
|
53 |
) , '1.00', true);
|
54 |
+
wp_register_style('cff-bootstrap', CFF_PLUGIN_URL . '/css/bootstrap-forms.min.css', null, '2.3.1');
|
55 |
}
|
56 |
|
57 |
function Upgrade()
|
class.cff_contact.php
CHANGED
@@ -52,27 +52,27 @@ class cff_Contact
|
|
52 |
|
53 |
// email and confirm email are the same
|
54 |
|
55 |
-
if ($this->Email != $this->ConfirmEmail) $this->Errors['Confirm-Email'] = 'Sorry the email addresses do not match.';
|
56 |
|
57 |
//email
|
58 |
|
59 |
-
if (strlen($this->Email) == 0) $this->Errors['Email'] =
|
60 |
|
61 |
-
//email
|
62 |
|
63 |
-
if (strlen($this->ConfirmEmail) == 0) $this->Errors['Confirm-Email'] =
|
64 |
|
65 |
//name
|
66 |
|
67 |
-
if (strlen($this->Name) == 0) $this->Errors['Name'] =
|
68 |
|
69 |
-
//
|
70 |
|
71 |
-
if (strlen($this->Message) == 0) $this->Errors['Message'] =
|
72 |
|
73 |
//email invalid address
|
74 |
|
75 |
-
if (strlen($this->Email) > 0 && !filter_var($this->Email, FILTER_VALIDATE_EMAIL)) $this->Errors['Email'] =
|
76 |
|
77 |
//check recaptcha but only if we have keys
|
78 |
|
@@ -80,7 +80,7 @@ class cff_Contact
|
|
80 |
{
|
81 |
$resp = recaptcha_check_answer($this->RecaptchaPrivateKey, $_SERVER["REMOTE_ADDR"], $_POST["recaptcha_challenge_field"], $_POST["recaptcha_response_field"]);
|
82 |
|
83 |
-
if (!$resp->is_valid) $this->Errors['recaptcha'] =
|
84 |
}
|
85 |
|
86 |
return count($this->Errors) == 0;
|
52 |
|
53 |
// email and confirm email are the same
|
54 |
|
55 |
+
if ($this->Email != $this->ConfirmEmail) $this->Errors['Confirm-Email'] = __('Sorry the email addresses do not match.','cleanandsimple');
|
56 |
|
57 |
//email
|
58 |
|
59 |
+
if (strlen($this->Email) == 0) $this->Errors['Email'] = __('Please give your email address.','cleanandsimple');
|
60 |
|
61 |
+
//confirm email
|
62 |
|
63 |
+
if (strlen($this->ConfirmEmail) == 0) $this->Errors['Confirm-Email'] = __('Please confirm your email address.','cleanandsimple');
|
64 |
|
65 |
//name
|
66 |
|
67 |
+
if (strlen($this->Name) == 0) $this->Errors['Name'] = __('Please give your name.','cleanandsimple');
|
68 |
|
69 |
+
//message
|
70 |
|
71 |
+
if (strlen($this->Message) == 0) $this->Errors['Message'] = __('Please enter a message.','cleanandsimple');
|
72 |
|
73 |
//email invalid address
|
74 |
|
75 |
+
if (strlen($this->Email) > 0 && !filter_var($this->Email, FILTER_VALIDATE_EMAIL)) $this->Errors['Email'] = __('Please enter a valid email address.','cleanandsimple');
|
76 |
|
77 |
//check recaptcha but only if we have keys
|
78 |
|
80 |
{
|
81 |
$resp = recaptcha_check_answer($this->RecaptchaPrivateKey, $_SERVER["REMOTE_ADDR"], $_POST["recaptcha_challenge_field"], $_POST["recaptcha_response_field"]);
|
82 |
|
83 |
+
if (!$resp->is_valid) $this->Errors['recaptcha'] = __('Sorry the code wasn\'t entered correctly please try again.','cleanandsimple');
|
84 |
}
|
85 |
|
86 |
return count($this->Errors) == 0;
|
class.cff_pluginsettings.php
CHANGED
@@ -37,21 +37,21 @@ class cff_PluginSettings
|
|
37 |
{
|
38 |
$options = get_option('cff_options');
|
39 |
|
40 |
-
return isset($options['sent_message_heading']) ? $options['sent_message_heading'] :
|
41 |
}
|
42 |
static
|
43 |
function SentMessageBody()
|
44 |
{
|
45 |
$options = get_option('cff_options');
|
46 |
|
47 |
-
return isset($options['sent_message_body']) ? $options['sent_message_body'] :
|
48 |
}
|
49 |
static
|
50 |
function Message()
|
51 |
{
|
52 |
$options = get_option('cff_options');
|
53 |
|
54 |
-
return isset($options['message']) ? $options['message'] :
|
55 |
}
|
56 |
static
|
57 |
function LoadStyleSheet()
|
@@ -80,7 +80,7 @@ class cff_PluginSettings
|
|
80 |
{
|
81 |
$options = get_option('cff_options');
|
82 |
|
83 |
-
return isset($options['subject']) ? $options['subject'] : get_bloginfo('name') . ' - Web Enquiry';
|
84 |
}
|
85 |
}
|
86 |
|
37 |
{
|
38 |
$options = get_option('cff_options');
|
39 |
|
40 |
+
return isset($options['sent_message_heading']) ? $options['sent_message_heading'] : __('Message Sent','cleanandsimple');
|
41 |
}
|
42 |
static
|
43 |
function SentMessageBody()
|
44 |
{
|
45 |
$options = get_option('cff_options');
|
46 |
|
47 |
+
return isset($options['sent_message_body']) ? $options['sent_message_body'] : __('Thank you for your message, we will be in touch very shortly.','cleanandsimple');
|
48 |
}
|
49 |
static
|
50 |
function Message()
|
51 |
{
|
52 |
$options = get_option('cff_options');
|
53 |
|
54 |
+
return isset($options['message']) ? $options['message'] : __('Please enter your contact details and a short message below and I will try to answer your query as soon as possible.','cleanandsimple');
|
55 |
}
|
56 |
static
|
57 |
function LoadStyleSheet()
|
80 |
{
|
81 |
$options = get_option('cff_options');
|
82 |
|
83 |
+
return isset($options['subject']) ? $options['subject'] : get_bloginfo('name') . __(' - Web Enquiry','cleanandsimple');
|
84 |
}
|
85 |
}
|
86 |
|
class.cff_settings.php
CHANGED
@@ -38,15 +38,15 @@ class cff_settings
|
|
38 |
?>
|
39 |
<div class="wrap">
|
40 |
<?php screen_icon(); ?>
|
41 |
-
<h2
|
42 |
<hr/>
|
43 |
-
<p
|
44 |
-
<p
|
45 |
<a target="_blank"
|
46 |
href="http://wordpress.org/support/view/plugin-reviews/<?php echo CFF_PLUGIN_NAME; ?>">
|
47 |
-
leaving a review
|
48 |
</a>
|
49 |
-
. Thank you!
|
50 |
</p>
|
51 |
<form method="post" action="options.php">
|
52 |
<?php
|
@@ -65,7 +65,7 @@ class cff_settings
|
|
65 |
public
|
66 |
function page_init()
|
67 |
{
|
68 |
-
add_settings_section('section_recaptcha', '<h3>ReCAPTCHA Settings</h3>', array(
|
69 |
$this,
|
70 |
'print_section_info_recaptcha'
|
71 |
) , 'contact-form-settings');
|
@@ -73,75 +73,75 @@ class cff_settings
|
|
73 |
$this,
|
74 |
'check_form'
|
75 |
));
|
76 |
-
add_settings_field('use_recaptcha',
|
77 |
$this,
|
78 |
'create_fields'
|
79 |
) , 'contact-form-settings', 'section_recaptcha', array(
|
80 |
'use_recaptcha'
|
81 |
));
|
82 |
-
add_settings_field('theme',
|
83 |
$this,
|
84 |
'create_fields'
|
85 |
) , 'contact-form-settings', 'section_recaptcha', array(
|
86 |
'theme'
|
87 |
));
|
88 |
-
add_settings_field('recaptcha_public_key', 'reCAPTCHA Public Key :
|
89 |
$this,
|
90 |
'create_fields'
|
91 |
) , 'contact-form-settings', 'section_recaptcha', array(
|
92 |
'recaptcha_public_key'
|
93 |
));
|
94 |
-
add_settings_field('recaptcha_private_key',
|
95 |
$this,
|
96 |
'create_fields'
|
97 |
) , 'contact-form-settings', 'section_recaptcha', array(
|
98 |
'recaptcha_private_key'
|
99 |
));
|
100 |
-
add_settings_section('section_message', '<h3>Message Settings</h3>', array(
|
101 |
$this,
|
102 |
'print_section_info_message'
|
103 |
) , 'contact-form-settings');
|
104 |
-
add_settings_field('recipient_email', 'Recipient Email :
|
105 |
$this,
|
106 |
'create_fields'
|
107 |
) , 'contact-form-settings', 'section_message', array(
|
108 |
'recipient_email'
|
109 |
));
|
110 |
-
add_settings_field('subject', 'Email Subject:
|
111 |
$this,
|
112 |
'create_fields'
|
113 |
) , 'contact-form-settings', 'section_message', array(
|
114 |
'subject'
|
115 |
));
|
116 |
-
add_settings_field('message', 'Message :
|
117 |
$this,
|
118 |
'create_fields'
|
119 |
) , 'contact-form-settings', 'section_message', array(
|
120 |
'message'
|
121 |
));
|
122 |
-
add_settings_field('sent_message_heading', 'Message Sent Heading :
|
123 |
$this,
|
124 |
'create_fields'
|
125 |
) , 'contact-form-settings', 'section_message', array(
|
126 |
'sent_message_heading'
|
127 |
));
|
128 |
-
add_settings_field('sent_message_body', 'Message Sent Content :
|
129 |
$this,
|
130 |
'create_fields'
|
131 |
) , 'contact-form-settings', 'section_message', array(
|
132 |
'sent_message_body'
|
133 |
));
|
134 |
-
add_settings_section('section_styling', '<h3>Styling and Validation</h3>', array(
|
135 |
$this,
|
136 |
'print_section_info_styling'
|
137 |
) , 'contact-form-settings');
|
138 |
-
add_settings_field('load_stylesheet', 'Use
|
139 |
$this,
|
140 |
'create_fields'
|
141 |
) , 'contact-form-settings', 'section_styling', array(
|
142 |
'load_stylesheet'
|
143 |
));
|
144 |
-
add_settings_field('use_client_validation', 'Use client side validation (
|
145 |
$this,
|
146 |
'create_fields'
|
147 |
) , 'contact-form-settings', 'section_styling', array(
|
@@ -213,13 +213,13 @@ class cff_settings
|
|
213 |
public
|
214 |
function print_section_info_recaptcha()
|
215 |
{
|
216 |
-
print 'Enter your reCAPTCHA settings below:';
|
217 |
-
print "<p>To use reCAPTCHA you must get an API key from <a target='_blank' href='https://www.google.com/recaptcha/admin/create'>https://www.google.com/recaptcha/admin/create</a></p>";
|
218 |
}
|
219 |
public
|
220 |
function print_section_info_message()
|
221 |
{
|
222 |
-
print 'Enter your message settings below:';
|
223 |
}
|
224 |
public
|
225 |
function print_section_info_styling()
|
@@ -271,10 +271,10 @@ class cff_settings
|
|
271 |
$disabled = cff_PluginSettings::UseRecaptcha() == false ? "disabled" : "";
|
272 |
?>
|
273 |
<select <?php echo $disabled; ?> id="array_key[theme]" name="array_key[theme]">
|
274 |
-
<option <?php echo $theme == "red" ? "selected" : ""; ?> value="red"
|
275 |
-
<option <?php echo $theme == "white" ? "selected" : ""; ?> value="white"
|
276 |
-
<option <?php echo $theme == "blackglass" ? "selected" : ""; ?> value="blackglass"
|
277 |
-
<option <?php echo $theme == "clean" ? "selected" : ""; ?> value="clean"
|
278 |
</select>
|
279 |
<?php
|
280 |
break;
|
38 |
?>
|
39 |
<div class="wrap">
|
40 |
<?php screen_icon(); ?>
|
41 |
+
<h2><?php _e('Clean and Simple Contact Form Settings','cleanandsimple');?></h2>
|
42 |
<hr/>
|
43 |
+
<p><?php _e('You are using version','cleanandsimple'); ?> <?php echo CFF_VERSION_NUM;?></p>
|
44 |
+
<p><?php _e('If you find this plugin useful please consider','cleanandsimple'); ?>
|
45 |
<a target="_blank"
|
46 |
href="http://wordpress.org/support/view/plugin-reviews/<?php echo CFF_PLUGIN_NAME; ?>">
|
47 |
+
<?php _e('leaving a review', 'cleanandsimple'); ?>
|
48 |
</a>
|
49 |
+
. <?php _e('Thank you!','cleanandsimple'); ?>
|
50 |
</p>
|
51 |
<form method="post" action="options.php">
|
52 |
<?php
|
65 |
public
|
66 |
function page_init()
|
67 |
{
|
68 |
+
add_settings_section('section_recaptcha', '<h3>' . __('ReCAPTCHA Settings','cleanandsimple') . '</h3>', array(
|
69 |
$this,
|
70 |
'print_section_info_recaptcha'
|
71 |
) , 'contact-form-settings');
|
73 |
$this,
|
74 |
'check_form'
|
75 |
));
|
76 |
+
add_settings_field('use_recaptcha',__('Use reCAPTCHA :','cleanandsimple'), array(
|
77 |
$this,
|
78 |
'create_fields'
|
79 |
) , 'contact-form-settings', 'section_recaptcha', array(
|
80 |
'use_recaptcha'
|
81 |
));
|
82 |
+
add_settings_field('theme',__('reCAPTCHA Theme :','cleanandsimple'), array(
|
83 |
$this,
|
84 |
'create_fields'
|
85 |
) , 'contact-form-settings', 'section_recaptcha', array(
|
86 |
'theme'
|
87 |
));
|
88 |
+
add_settings_field('recaptcha_public_key', __('reCAPTCHA Public Key :','cleanandsimple'), array(
|
89 |
$this,
|
90 |
'create_fields'
|
91 |
) , 'contact-form-settings', 'section_recaptcha', array(
|
92 |
'recaptcha_public_key'
|
93 |
));
|
94 |
+
add_settings_field('recaptcha_private_key',__('reCAPTCHA Private Key :','cleanandsimple'), array(
|
95 |
$this,
|
96 |
'create_fields'
|
97 |
) , 'contact-form-settings', 'section_recaptcha', array(
|
98 |
'recaptcha_private_key'
|
99 |
));
|
100 |
+
add_settings_section('section_message', '<h3>'.__('Message Settings','cleanandsimple').'</h3>', array(
|
101 |
$this,
|
102 |
'print_section_info_message'
|
103 |
) , 'contact-form-settings');
|
104 |
+
add_settings_field('recipient_email', __('Recipient Email :','cleanandsimple'), array(
|
105 |
$this,
|
106 |
'create_fields'
|
107 |
) , 'contact-form-settings', 'section_message', array(
|
108 |
'recipient_email'
|
109 |
));
|
110 |
+
add_settings_field('subject', __('Email Subject :','cleanandsimple'), array(
|
111 |
$this,
|
112 |
'create_fields'
|
113 |
) , 'contact-form-settings', 'section_message', array(
|
114 |
'subject'
|
115 |
));
|
116 |
+
add_settings_field('message', __('Message :','cleanandsimple'), array(
|
117 |
$this,
|
118 |
'create_fields'
|
119 |
) , 'contact-form-settings', 'section_message', array(
|
120 |
'message'
|
121 |
));
|
122 |
+
add_settings_field('sent_message_heading', __('Message Sent Heading :','cleanandsimple'), array(
|
123 |
$this,
|
124 |
'create_fields'
|
125 |
) , 'contact-form-settings', 'section_message', array(
|
126 |
'sent_message_heading'
|
127 |
));
|
128 |
+
add_settings_field('sent_message_body', __('Message Sent Content :','cleanandsimple'), array(
|
129 |
$this,
|
130 |
'create_fields'
|
131 |
) , 'contact-form-settings', 'section_message', array(
|
132 |
'sent_message_body'
|
133 |
));
|
134 |
+
add_settings_section('section_styling', '<h3>'.__('Styling and Validation','cleanandsimple').'</h3>', array(
|
135 |
$this,
|
136 |
'print_section_info_styling'
|
137 |
) , 'contact-form-settings');
|
138 |
+
add_settings_field('load_stylesheet', __('Use the plugin default stylesheet (un-tick to use your theme style sheet instead) :','cleanandsimple'), array(
|
139 |
$this,
|
140 |
'create_fields'
|
141 |
) , 'contact-form-settings', 'section_styling', array(
|
142 |
'load_stylesheet'
|
143 |
));
|
144 |
+
add_settings_field('use_client_validation', __('Use client side validation (AJAX) :','cleanandsimple'), array(
|
145 |
$this,
|
146 |
'create_fields'
|
147 |
) , 'contact-form-settings', 'section_styling', array(
|
213 |
public
|
214 |
function print_section_info_recaptcha()
|
215 |
{
|
216 |
+
print __('Enter your reCAPTCHA settings below :','cleanandsimple');
|
217 |
+
print "<p>" . __('To use reCAPTCHA you must get an API key from','cleanandsimple')." <a target='_blank' href='https://www.google.com/recaptcha/admin/create'>https://www.google.com/recaptcha/admin/create</a></p>";
|
218 |
}
|
219 |
public
|
220 |
function print_section_info_message()
|
221 |
{
|
222 |
+
print __('Enter your message settings below :','cleanandsimple');
|
223 |
}
|
224 |
public
|
225 |
function print_section_info_styling()
|
271 |
$disabled = cff_PluginSettings::UseRecaptcha() == false ? "disabled" : "";
|
272 |
?>
|
273 |
<select <?php echo $disabled; ?> id="array_key[theme]" name="array_key[theme]">
|
274 |
+
<option <?php echo $theme == "red" ? "selected" : ""; ?> value="red"><?php _e('Red', 'cleanandsimple'); ?></option>
|
275 |
+
<option <?php echo $theme == "white" ? "selected" : ""; ?> value="white"><?php _e('White','cleanandsimple'); ?></option>
|
276 |
+
<option <?php echo $theme == "blackglass" ? "selected" : ""; ?> value="blackglass"><?php _e('Blackglass', 'cleanandsimple'); ?></option>
|
277 |
+
<option <?php echo $theme == "clean" ? "selected" : ""; ?> value="clean"><?php _e('Clean','cleanandsimple'); ?></option>
|
278 |
</select>
|
279 |
<?php
|
280 |
break;
|
clean-and-simple-contact-form-by-meg-nicholas.php
CHANGED
@@ -7,7 +7,7 @@
|
|
7 |
Plugin Name: Clean and Simple Contact Form
|
8 |
Plugin URI: http://www.megnicholas.co.uk/wordpress-plugins/clean-and-simple-contact-form
|
9 |
Description: A clean and simple contact form with Google reCAPTCHA and Twitter Bootstrap markup.
|
10 |
-
Version: 4.1.
|
11 |
Author: Meghan Nicholas
|
12 |
Author URI: http://www.megnicholas.co.uk
|
13 |
License: GPLv2 or later
|
@@ -52,11 +52,11 @@ if (!defined('CFF_PLUGIN_URL')) define('CFF_PLUGIN_URL', WP_PLUGIN_URL . '/' . C
|
|
52 |
|
53 |
if (!defined('CFF_VERSION_KEY')) define('CFF_VERSION_KEY', 'cff_version');
|
54 |
|
55 |
-
if (!defined('CFF_VERSION_NUM')) define('CFF_VERSION_NUM', '4.1.
|
56 |
|
57 |
if (!defined('CFF_OPTIONS_KEY')) define('CFF_OPTIONS_KEY', 'cff_options');
|
58 |
|
59 |
-
|
60 |
|
61 |
$cff = new cff();
|
62 |
|
7 |
Plugin Name: Clean and Simple Contact Form
|
8 |
Plugin URI: http://www.megnicholas.co.uk/wordpress-plugins/clean-and-simple-contact-form
|
9 |
Description: A clean and simple contact form with Google reCAPTCHA and Twitter Bootstrap markup.
|
10 |
+
Version: 4.1.1
|
11 |
Author: Meghan Nicholas
|
12 |
Author URI: http://www.megnicholas.co.uk
|
13 |
License: GPLv2 or later
|
52 |
|
53 |
if (!defined('CFF_VERSION_KEY')) define('CFF_VERSION_KEY', 'cff_version');
|
54 |
|
55 |
+
if (!defined('CFF_VERSION_NUM')) define('CFF_VERSION_NUM', '4.1.1');
|
56 |
|
57 |
if (!defined('CFF_OPTIONS_KEY')) define('CFF_OPTIONS_KEY', 'cff_options');
|
58 |
|
59 |
+
update_option(CFF_VERSION_KEY, CFF_VERSION_NUM);
|
60 |
|
61 |
$cff = new cff();
|
62 |
|
languages/cleanandsimple-de_DE.mo
ADDED
Binary file
|
languages/cleanandsimple-de_DE.po
ADDED
@@ -0,0 +1,272 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
msgid ""
|
2 |
+
msgstr ""
|
3 |
+
"Project-Id-Version: clean-and-simple-contact-form-by-meg-nicholas.4.1.1\n"
|
4 |
+
"Report-Msgid-Bugs-To: http://wordpress.org/plugins/clean-and-simple-contact-"
|
5 |
+
"form-by-meg-nicholas\n"
|
6 |
+
"POT-Creation-Date: 2013-06-13 10:12:32+00:00\n"
|
7 |
+
"PO-Revision-Date: 2013-06-14 17:46+0100\n"
|
8 |
+
"Last-Translator: \n"
|
9 |
+
"Language-Team: faktorzwei.net <faktorzwei.net@gmail.com>\n"
|
10 |
+
"Language: de_DE informal\n"
|
11 |
+
"MIME-Version: 1.0\n"
|
12 |
+
"Content-Type: text/plain; charset=UTF-8\n"
|
13 |
+
"Content-Transfer-Encoding: 8bit\n"
|
14 |
+
"X-Generator: Poedit 1.5.5\n"
|
15 |
+
"X-Poedit-KeywordsList: _;gettext;gettext_noop\n"
|
16 |
+
"X-Poedit-Basepath: .\n"
|
17 |
+
|
18 |
+
#: class.cff.php:90
|
19 |
+
msgid "Settings"
|
20 |
+
msgstr "Einstellungen"
|
21 |
+
|
22 |
+
#: class.cff_contact.php:55
|
23 |
+
msgid "Sorry the email addresses do not match."
|
24 |
+
msgstr "Entschuldigung, die Emailadressen stimmen nicht überein."
|
25 |
+
|
26 |
+
#: class.cff_contact.php:59 views/contact-form-with-recaptcha.view.php:29
|
27 |
+
#: views/contact-form.view.php:14
|
28 |
+
msgid "Please give your email address."
|
29 |
+
msgstr "Bitte gib deine Emailadresse ein"
|
30 |
+
|
31 |
+
#: class.cff_contact.php:63
|
32 |
+
msgid "Please confirm your email address."
|
33 |
+
msgstr "Bitte bestätige deine Emailadresse nochmals"
|
34 |
+
|
35 |
+
#: class.cff_contact.php:67 views/contact-form-with-recaptcha.view.php:49
|
36 |
+
#: views/contact-form.view.php:34
|
37 |
+
msgid "Please give your name."
|
38 |
+
msgstr "Bitte gib deinen Namen ein."
|
39 |
+
|
40 |
+
#: class.cff_contact.php:71
|
41 |
+
msgid "Please enter a message."
|
42 |
+
msgstr "Bitte gib deine Nachricht ein."
|
43 |
+
|
44 |
+
#: class.cff_contact.php:75 views/contact-form-with-recaptcha.view.php:29
|
45 |
+
#: views/contact-form.view.php:14
|
46 |
+
msgid "Please enter a valid email address."
|
47 |
+
msgstr "Bitte gib eine gültige Emailadresse an."
|
48 |
+
|
49 |
+
#: class.cff_contact.php:83
|
50 |
+
msgid "Sorry the code wasn't entered correctly please try again."
|
51 |
+
msgstr ""
|
52 |
+
"Entschuldigung, der eingegebene Code stimmt nicht überein. Bitte versuch es "
|
53 |
+
"nochmals."
|
54 |
+
|
55 |
+
#: class.cff_pluginsettings.php:40
|
56 |
+
msgid "Message Sent"
|
57 |
+
msgstr "Nachricht gesendet"
|
58 |
+
|
59 |
+
#: class.cff_pluginsettings.php:47
|
60 |
+
msgid "Thank you for your message, we will be in touch very shortly."
|
61 |
+
msgstr ""
|
62 |
+
"Danke für Deine Nachricht, Du wirst sobald wie möglich eine Antwort erhalten."
|
63 |
+
|
64 |
+
#: class.cff_pluginsettings.php:54
|
65 |
+
msgid ""
|
66 |
+
"Please enter your contact details and a short message below and I will try "
|
67 |
+
"to answer your query as soon as possible."
|
68 |
+
msgstr ""
|
69 |
+
"Bitte gib deine Kontaktdaten und deine Nachricht unten ein. Wir werden uns "
|
70 |
+
"so schnell wie möglich um deine Anfrage kümmern."
|
71 |
+
|
72 |
+
#: class.cff_pluginsettings.php:83
|
73 |
+
msgid " - Web Enquiry"
|
74 |
+
msgstr " - Web-Anfrage"
|
75 |
+
|
76 |
+
#: class.cff_settings.php:41
|
77 |
+
msgid "Clean and Simple Contact Form Settings"
|
78 |
+
msgstr "Clean and Simple Contact Form Einstellungen"
|
79 |
+
|
80 |
+
#: class.cff_settings.php:43
|
81 |
+
msgid "You are using version"
|
82 |
+
msgstr "Du benutzt Version"
|
83 |
+
|
84 |
+
#: class.cff_settings.php:44
|
85 |
+
msgid "If you find this plugin useful please consider"
|
86 |
+
msgstr "Falls Du dieses plugin nützlich findest schreibe bitte "
|
87 |
+
|
88 |
+
#: class.cff_settings.php:47
|
89 |
+
msgid "leaving a review"
|
90 |
+
msgstr "eine Bewertung"
|
91 |
+
|
92 |
+
#: class.cff_settings.php:49
|
93 |
+
msgid "Thank you!"
|
94 |
+
msgstr "Danke schön!"
|
95 |
+
|
96 |
+
#: class.cff_settings.php:68
|
97 |
+
msgid "ReCAPTCHA Settings"
|
98 |
+
msgstr "ReCAPTCHA Einstellungen"
|
99 |
+
|
100 |
+
#: class.cff_settings.php:76
|
101 |
+
msgid "Use reCAPTCHA :"
|
102 |
+
msgstr "Verwende reCAPTCHA :"
|
103 |
+
|
104 |
+
#: class.cff_settings.php:82
|
105 |
+
msgid "reCAPTCHA Theme :"
|
106 |
+
msgstr "reCAPTCHA Farbschema :"
|
107 |
+
|
108 |
+
#: class.cff_settings.php:88
|
109 |
+
msgid "reCAPTCHA Public Key :"
|
110 |
+
msgstr "reCAPTCHA Public Key :"
|
111 |
+
|
112 |
+
#: class.cff_settings.php:94
|
113 |
+
msgid "reCAPTCHA Private Key :"
|
114 |
+
msgstr "reCAPTCHA Private Key :"
|
115 |
+
|
116 |
+
#: class.cff_settings.php:100
|
117 |
+
msgid "Message Settings"
|
118 |
+
msgstr "Nachrichten-Einstellungen"
|
119 |
+
|
120 |
+
#: class.cff_settings.php:104
|
121 |
+
msgid "Recipient Email :"
|
122 |
+
msgstr "Empfänger-Emailadresse:"
|
123 |
+
|
124 |
+
#: class.cff_settings.php:110
|
125 |
+
msgid "Email Subject :"
|
126 |
+
msgstr "Email-Betreff:"
|
127 |
+
|
128 |
+
#: class.cff_settings.php:116
|
129 |
+
msgid "Message :"
|
130 |
+
msgstr "Hinweistext:"
|
131 |
+
|
132 |
+
#: class.cff_settings.php:122
|
133 |
+
msgid "Message Sent Heading :"
|
134 |
+
msgstr "Nachricht gesendet, Überschrift:"
|
135 |
+
|
136 |
+
#: class.cff_settings.php:128
|
137 |
+
msgid "Message Sent Content :"
|
138 |
+
msgstr "Nachricht gesendet, Text:"
|
139 |
+
|
140 |
+
#: class.cff_settings.php:134
|
141 |
+
msgid "Styling and Validation"
|
142 |
+
msgstr "Aussehen und Überprüfung"
|
143 |
+
|
144 |
+
#: class.cff_settings.php:138
|
145 |
+
msgid ""
|
146 |
+
"Use the plugin default stylesheet (un-tick to use your theme style sheet "
|
147 |
+
"instead) :"
|
148 |
+
msgstr ""
|
149 |
+
"Nutze das plugin eigene stylesheet (abwählen um dein Theme stylesheet "
|
150 |
+
"stattdessen zu nutzen) :"
|
151 |
+
|
152 |
+
#: class.cff_settings.php:144
|
153 |
+
msgid "Use client side validation (AJAX) :"
|
154 |
+
msgstr "Nutze benutzerseitige Prüfung (AJAX):"
|
155 |
+
|
156 |
+
#: class.cff_settings.php:216
|
157 |
+
msgid "Enter your reCAPTCHA settings below :"
|
158 |
+
msgstr ""
|
159 |
+
"Gib die erforderlichen Daten unten ein, um reCAPTCHA verwenden zu können:"
|
160 |
+
|
161 |
+
#: class.cff_settings.php:217
|
162 |
+
msgid "To use reCAPTCHA you must get an API key from"
|
163 |
+
msgstr "Um reCAPTCHA nutzen zu können muß ein API key generiert werden bei:"
|
164 |
+
|
165 |
+
#: class.cff_settings.php:222
|
166 |
+
msgid "Enter your message settings below :"
|
167 |
+
msgstr "Gib nachfolgend deine Nachrichten-Einstellungen ein:"
|
168 |
+
|
169 |
+
#: class.cff_settings.php:274
|
170 |
+
msgid "Red"
|
171 |
+
msgstr "Rot"
|
172 |
+
|
173 |
+
#: class.cff_settings.php:275
|
174 |
+
msgid "White"
|
175 |
+
msgstr "Weiß"
|
176 |
+
|
177 |
+
#: class.cff_settings.php:276
|
178 |
+
msgid "Blackglass"
|
179 |
+
msgstr "Schwarz-Glas"
|
180 |
+
|
181 |
+
#: class.cff_settings.php:277
|
182 |
+
msgid "Clean"
|
183 |
+
msgstr "Einfach"
|
184 |
+
|
185 |
+
#: views/contact-form-with-recaptcha.view.php:27
|
186 |
+
#: views/contact-form.view.php:12
|
187 |
+
msgid "Email Address:"
|
188 |
+
msgstr "Email-Adresse:"
|
189 |
+
|
190 |
+
#: views/contact-form-with-recaptcha.view.php:29
|
191 |
+
#: views/contact-form.view.php:14
|
192 |
+
msgid "Your Email Address"
|
193 |
+
msgstr "Deine Email-Adresse"
|
194 |
+
|
195 |
+
#: views/contact-form-with-recaptcha.view.php:37
|
196 |
+
#: views/contact-form.view.php:22
|
197 |
+
msgid "Confirm Email Address:"
|
198 |
+
msgstr "Nochmals deine Email-Adresse:"
|
199 |
+
|
200 |
+
#: views/contact-form-with-recaptcha.view.php:39
|
201 |
+
#: views/contact-form.view.php:24
|
202 |
+
msgid "Please enter the same email address again."
|
203 |
+
msgstr "Bitte gib deine Email-Adresse nochmals ein."
|
204 |
+
|
205 |
+
#: views/contact-form-with-recaptcha.view.php:39
|
206 |
+
#: views/contact-form.view.php:24
|
207 |
+
msgid "Confirm Your Email Address"
|
208 |
+
msgstr "Bestätige deine Email-Adresse"
|
209 |
+
|
210 |
+
#: views/contact-form-with-recaptcha.view.php:47
|
211 |
+
#: views/contact-form.view.php:32
|
212 |
+
msgid "Name:"
|
213 |
+
msgstr "Name:"
|
214 |
+
|
215 |
+
#: views/contact-form-with-recaptcha.view.php:49
|
216 |
+
#: views/contact-form.view.php:34
|
217 |
+
msgid "Your Name"
|
218 |
+
msgstr "Dein Name"
|
219 |
+
|
220 |
+
#: views/contact-form-with-recaptcha.view.php:57
|
221 |
+
#: views/contact-form.view.php:42
|
222 |
+
msgid "Message:"
|
223 |
+
msgstr "Nachricht:"
|
224 |
+
|
225 |
+
#: views/contact-form-with-recaptcha.view.php:59
|
226 |
+
#: views/contact-form.view.php:44
|
227 |
+
msgid "Please give a message."
|
228 |
+
msgstr "Bitte gib deine Nachricht ein."
|
229 |
+
|
230 |
+
#: views/contact-form-with-recaptcha.view.php:59
|
231 |
+
#: views/contact-form.view.php:44
|
232 |
+
msgid "Your Message"
|
233 |
+
msgstr "Deine Nachricht"
|
234 |
+
|
235 |
+
#: views/contact-form-with-recaptcha.view.php:75
|
236 |
+
#: views/contact-form.view.php:51
|
237 |
+
msgid "Send Message"
|
238 |
+
msgstr "Nachricht senden"
|
239 |
+
|
240 |
+
#: views/message-not-sent.view.php:1
|
241 |
+
msgid "Sorry, there has been a problem and your message was not sent."
|
242 |
+
msgstr ""
|
243 |
+
"Entschuldigung, es ist ein Fehler aufgetreten und die Nachricht wurde nicht "
|
244 |
+
"gesendet."
|
245 |
+
|
246 |
+
# Plugin Name des plugin/theme
|
247 |
+
#. Plugin Name of the plugin/theme
|
248 |
+
msgid "Clean and Simple Contact Form"
|
249 |
+
msgstr "Clean and Simple Contact Form"
|
250 |
+
|
251 |
+
#. Plugin URI of the plugin/theme
|
252 |
+
msgid ""
|
253 |
+
"http://www.megnicholas.co.uk/wordpress-plugins/clean-and-simple-contact-form"
|
254 |
+
msgstr ""
|
255 |
+
"http://www.megnicholas.co.uk/wordpress-plugins/clean-and-simple-contact-form"
|
256 |
+
|
257 |
+
# Beschreibung des plugin/theme
|
258 |
+
#. Description of the plugin/theme
|
259 |
+
msgid ""
|
260 |
+
"A clean and simple contact form with Google reCAPTCHA and Twitter Bootstrap "
|
261 |
+
"markup."
|
262 |
+
msgstr ""
|
263 |
+
"Ein sauberes und einfaches Kontaktformular mit Google reCAPTCHA und Twitter "
|
264 |
+
"Bootstrap markup."
|
265 |
+
|
266 |
+
#. Author of the plugin/theme
|
267 |
+
msgid "Meghan Nicholas"
|
268 |
+
msgstr "Meghan Nicholas"
|
269 |
+
|
270 |
+
#. Author URI of the plugin/theme
|
271 |
+
msgid "http://www.megnicholas.co.uk"
|
272 |
+
msgstr "http://www.megnicholas.co.uk"
|
languages/cleanandsimple-it_IT.mo
ADDED
Binary file
|
languages/cleanandsimple-it_IT.po
ADDED
@@ -0,0 +1,266 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
# Copyright (C) 2013 Clean and Simple Contact Form
|
2 |
+
# This file is distributed under the same license as the Clean and Simple Contact Form package.
|
3 |
+
msgid ""
|
4 |
+
msgstr ""
|
5 |
+
"Project-Id-Version: Clean and Simple Contact Form 4.1.1\n"
|
6 |
+
"Report-Msgid-Bugs-To: http://wordpress.org/plugins/clean-and-simple-contact-"
|
7 |
+
"form-by-meg-nicholas\n"
|
8 |
+
"POT-Creation-Date: 2013-06-13 10:12:32+00:00\n"
|
9 |
+
"MIME-Version: 1.0\n"
|
10 |
+
"Content-Type: text/plain; charset=UTF-8\n"
|
11 |
+
"Content-Transfer-Encoding: 8bit\n"
|
12 |
+
"PO-Revision-Date: 2013-06-17 20:42+0100\n"
|
13 |
+
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
|
14 |
+
"Language-Team: LANGUAGE <LL@li.org>\n"
|
15 |
+
"X-Generator: Poedit 1.5.5\n"
|
16 |
+
|
17 |
+
#: class.cff.php:90
|
18 |
+
msgid "Settings"
|
19 |
+
msgstr "Impostazioni"
|
20 |
+
|
21 |
+
#: class.cff_contact.php:55
|
22 |
+
msgid "Sorry the email addresses do not match."
|
23 |
+
msgstr "Spiacenti gli indirizzi e-mail non corrispondono."
|
24 |
+
|
25 |
+
#: class.cff_contact.php:59 views/contact-form-with-recaptcha.view.php:29
|
26 |
+
#: views/contact-form.view.php:14
|
27 |
+
msgid "Please give your email address."
|
28 |
+
msgstr "Si prega di fornire il vostro indirizzo email."
|
29 |
+
|
30 |
+
#: class.cff_contact.php:63
|
31 |
+
msgid "Please confirm your email address."
|
32 |
+
msgstr "Si prega di confermare il vostro indirizzo email."
|
33 |
+
|
34 |
+
#: class.cff_contact.php:67 views/contact-form-with-recaptcha.view.php:49
|
35 |
+
#: views/contact-form.view.php:34
|
36 |
+
msgid "Please give your name."
|
37 |
+
msgstr "Il vostro nome."
|
38 |
+
|
39 |
+
#: class.cff_contact.php:71
|
40 |
+
msgid "Please enter a message."
|
41 |
+
msgstr "Inserire un messaggio."
|
42 |
+
|
43 |
+
#: class.cff_contact.php:75 views/contact-form-with-recaptcha.view.php:29
|
44 |
+
#: views/contact-form.view.php:14
|
45 |
+
msgid "Please enter a valid email address."
|
46 |
+
msgstr "Si prega di inserire un indirizzo email valido."
|
47 |
+
|
48 |
+
#: class.cff_contact.php:83
|
49 |
+
msgid "Sorry the code wasn't entered correctly please try again."
|
50 |
+
msgstr ""
|
51 |
+
"Spiacenti ma il codice non è stato inserito correttamente si prega di "
|
52 |
+
"riprovare."
|
53 |
+
|
54 |
+
#: class.cff_pluginsettings.php:40
|
55 |
+
msgid "Message Sent"
|
56 |
+
msgstr "Messaggio Inviato"
|
57 |
+
|
58 |
+
#: class.cff_pluginsettings.php:47
|
59 |
+
msgid "Thank you for your message, we will be in touch very shortly."
|
60 |
+
msgstr "Grazie del Messaggio , vi contatteremo il più presto possibile."
|
61 |
+
|
62 |
+
#: class.cff_pluginsettings.php:54
|
63 |
+
msgid ""
|
64 |
+
"Please enter your contact details and a short message below and I will try "
|
65 |
+
"to answer your query as soon as possible."
|
66 |
+
msgstr ""
|
67 |
+
"Per favore inserire i dati di contatto e un breve messaggio e proveremo a "
|
68 |
+
"rispondere il più presto possibile."
|
69 |
+
|
70 |
+
#: class.cff_pluginsettings.php:83
|
71 |
+
msgid " - Web Enquiry"
|
72 |
+
msgstr "- Richiesta Web"
|
73 |
+
|
74 |
+
#: class.cff_settings.php:41
|
75 |
+
msgid "Clean and Simple Contact Form Settings"
|
76 |
+
msgstr "Impostazioni Clean and Simple Contact Form"
|
77 |
+
|
78 |
+
#: class.cff_settings.php:43
|
79 |
+
msgid "You are using version"
|
80 |
+
msgstr "Versione in uso"
|
81 |
+
|
82 |
+
#: class.cff_settings.php:44
|
83 |
+
msgid "If you find this plugin useful please consider"
|
84 |
+
msgstr "Se trovate questo plugin molto utile prendetelo in considerazione "
|
85 |
+
|
86 |
+
#: class.cff_settings.php:47
|
87 |
+
msgid "leaving a review"
|
88 |
+
msgstr "lascia una revisione"
|
89 |
+
|
90 |
+
#: class.cff_settings.php:49
|
91 |
+
msgid "Thank you!"
|
92 |
+
msgstr "Grazie!"
|
93 |
+
|
94 |
+
#: class.cff_settings.php:68
|
95 |
+
msgid "ReCAPTCHA Settings"
|
96 |
+
msgstr "Impostazioni ReCAPTCHA "
|
97 |
+
|
98 |
+
#: class.cff_settings.php:76
|
99 |
+
msgid "Use reCAPTCHA :"
|
100 |
+
msgstr "Usa ReCAPTCHA :"
|
101 |
+
|
102 |
+
#: class.cff_settings.php:82
|
103 |
+
msgid "reCAPTCHA Theme :"
|
104 |
+
msgstr "Tema reCAPTCHA :"
|
105 |
+
|
106 |
+
#: class.cff_settings.php:88
|
107 |
+
msgid "reCAPTCHA Public Key :"
|
108 |
+
msgstr "Chiave Pubblica reCAPTCHA :"
|
109 |
+
|
110 |
+
#: class.cff_settings.php:94
|
111 |
+
msgid "reCAPTCHA Private Key :"
|
112 |
+
msgstr "Chiave Privata reCAPTCHA :"
|
113 |
+
|
114 |
+
#: class.cff_settings.php:100
|
115 |
+
msgid "Message Settings"
|
116 |
+
msgstr "Impostazioni Messaggio"
|
117 |
+
|
118 |
+
#: class.cff_settings.php:104
|
119 |
+
msgid "Recipient Email :"
|
120 |
+
msgstr "Contenitore Email :"
|
121 |
+
|
122 |
+
#: class.cff_settings.php:110
|
123 |
+
msgid "Email Subject :"
|
124 |
+
msgstr "Soggetto Email :"
|
125 |
+
|
126 |
+
#: class.cff_settings.php:116
|
127 |
+
msgid "Message :"
|
128 |
+
msgstr "Messaggio :"
|
129 |
+
|
130 |
+
#: class.cff_settings.php:122
|
131 |
+
msgid "Message Sent Heading :"
|
132 |
+
msgstr "Intestazione Messaggio Inviato :"
|
133 |
+
|
134 |
+
#: class.cff_settings.php:128
|
135 |
+
msgid "Message Sent Content :"
|
136 |
+
msgstr "Contenuto Messaggio Inviato :"
|
137 |
+
|
138 |
+
#: class.cff_settings.php:134
|
139 |
+
msgid "Styling and Validation"
|
140 |
+
msgstr "Stili e Validazione"
|
141 |
+
|
142 |
+
#: class.cff_settings.php:138
|
143 |
+
msgid ""
|
144 |
+
"Use the plugin default stylesheet (un-tick to use your theme style sheet "
|
145 |
+
"instead) :"
|
146 |
+
msgstr ""
|
147 |
+
"Usa lo stile di default per il plugin( altrimenti deselezionare per usare il "
|
148 |
+
"vosro foglio di stile) :"
|
149 |
+
|
150 |
+
#: class.cff_settings.php:144
|
151 |
+
msgid "Use client side validation (AJAX) :"
|
152 |
+
msgstr "Usa validazione lato client (AJAX) :"
|
153 |
+
|
154 |
+
#: class.cff_settings.php:216
|
155 |
+
msgid "Enter your reCAPTCHA settings below :"
|
156 |
+
msgstr "Inserire le vostre impostazioni reCAPTCHA sotto :"
|
157 |
+
|
158 |
+
#: class.cff_settings.php:217
|
159 |
+
msgid "To use reCAPTCHA you must get an API key from"
|
160 |
+
msgstr "Per usare reCAPTCHA dovete ottenere una chiave tramite API"
|
161 |
+
|
162 |
+
#: class.cff_settings.php:222
|
163 |
+
msgid "Enter your message settings below :"
|
164 |
+
msgstr "Inserite le vostre impostazioni per messaggi qui sotto :"
|
165 |
+
|
166 |
+
#: class.cff_settings.php:274
|
167 |
+
msgid "Red"
|
168 |
+
msgstr "Rosso"
|
169 |
+
|
170 |
+
#: class.cff_settings.php:275
|
171 |
+
msgid "White"
|
172 |
+
msgstr "Bianco"
|
173 |
+
|
174 |
+
#: class.cff_settings.php:276
|
175 |
+
msgid "Blackglass"
|
176 |
+
msgstr "Vetro nero"
|
177 |
+
|
178 |
+
#: class.cff_settings.php:277
|
179 |
+
msgid "Clean"
|
180 |
+
msgstr "Pulisci"
|
181 |
+
|
182 |
+
#: views/contact-form-with-recaptcha.view.php:27
|
183 |
+
#: views/contact-form.view.php:12
|
184 |
+
msgid "Email Address:"
|
185 |
+
msgstr "Indirizzo Email:"
|
186 |
+
|
187 |
+
#: views/contact-form-with-recaptcha.view.php:29
|
188 |
+
#: views/contact-form.view.php:14
|
189 |
+
msgid "Your Email Address"
|
190 |
+
msgstr "Il Vostro Indirizzo Email"
|
191 |
+
|
192 |
+
#: views/contact-form-with-recaptcha.view.php:37
|
193 |
+
#: views/contact-form.view.php:22
|
194 |
+
msgid "Confirm Email Address:"
|
195 |
+
msgstr "Conferma Indirizzo Email:"
|
196 |
+
|
197 |
+
#: views/contact-form-with-recaptcha.view.php:39
|
198 |
+
#: views/contact-form.view.php:24
|
199 |
+
msgid "Please enter the same email address again."
|
200 |
+
msgstr "Si prega di reinserire nuovamente l'indirizzo email ."
|
201 |
+
|
202 |
+
#: views/contact-form-with-recaptcha.view.php:39
|
203 |
+
#: views/contact-form.view.php:24
|
204 |
+
msgid "Confirm Your Email Address"
|
205 |
+
msgstr "Confermate il vostro indirizzo Email"
|
206 |
+
|
207 |
+
#: views/contact-form-with-recaptcha.view.php:47
|
208 |
+
#: views/contact-form.view.php:32
|
209 |
+
msgid "Name:"
|
210 |
+
msgstr "Nome:"
|
211 |
+
|
212 |
+
#: views/contact-form-with-recaptcha.view.php:49
|
213 |
+
#: views/contact-form.view.php:34
|
214 |
+
msgid "Your Name"
|
215 |
+
msgstr "Il Vostro Nome"
|
216 |
+
|
217 |
+
#: views/contact-form-with-recaptcha.view.php:57
|
218 |
+
#: views/contact-form.view.php:42
|
219 |
+
msgid "Message:"
|
220 |
+
msgstr "Messaggio:"
|
221 |
+
|
222 |
+
#: views/contact-form-with-recaptcha.view.php:59
|
223 |
+
#: views/contact-form.view.php:44
|
224 |
+
msgid "Please give a message."
|
225 |
+
msgstr "Inserire un Messaggio."
|
226 |
+
|
227 |
+
#: views/contact-form-with-recaptcha.view.php:59
|
228 |
+
#: views/contact-form.view.php:44
|
229 |
+
msgid "Your Message"
|
230 |
+
msgstr "Il Vostro Messaggio"
|
231 |
+
|
232 |
+
#: views/contact-form-with-recaptcha.view.php:75
|
233 |
+
#: views/contact-form.view.php:51
|
234 |
+
msgid "Send Message"
|
235 |
+
msgstr "Invia Messaggio "
|
236 |
+
|
237 |
+
#: views/message-not-sent.view.php:1
|
238 |
+
msgid "Sorry, there has been a problem and your message was not sent."
|
239 |
+
msgstr ""
|
240 |
+
"Spiacenti, c'è stato un problema e il vostro messaggio non è stato inviato."
|
241 |
+
|
242 |
+
#. Plugin Name of the plugin/theme
|
243 |
+
msgid "Clean and Simple Contact Form"
|
244 |
+
msgstr "Clean and Simple Contact Form"
|
245 |
+
|
246 |
+
#. Plugin URI of the plugin/theme
|
247 |
+
msgid ""
|
248 |
+
"http://www.megnicholas.co.uk/wordpress-plugins/clean-and-simple-contact-form"
|
249 |
+
msgstr ""
|
250 |
+
"http://www.megnicholas.co.uk/wordpress-plugins/clean-and-simple-contact-form"
|
251 |
+
|
252 |
+
#. Description of the plugin/theme
|
253 |
+
msgid ""
|
254 |
+
"A clean and simple contact form with Google reCAPTCHA and Twitter Bootstrap "
|
255 |
+
"markup."
|
256 |
+
msgstr ""
|
257 |
+
"Un semplice e chiaro modulo di contatto con reCAPTCHA Google e Twitter "
|
258 |
+
"Bootstrap markup."
|
259 |
+
|
260 |
+
#. Author of the plugin/theme
|
261 |
+
msgid "Meghan Nicholas"
|
262 |
+
msgstr "Meghan Nicholas"
|
263 |
+
|
264 |
+
#. Author URI of the plugin/theme
|
265 |
+
msgid "http://www.megnicholas.co.uk"
|
266 |
+
msgstr "http://www.megnicholas.co.uk"
|
languages/cleanandsimple.pot
ADDED
@@ -0,0 +1,254 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
# Copyright (C) 2013 Clean and Simple Contact Form
|
2 |
+
# This file is distributed under the same license as the Clean and Simple Contact Form package.
|
3 |
+
msgid ""
|
4 |
+
msgstr ""
|
5 |
+
"Project-Id-Version: Clean and Simple Contact Form 4.1.1\n"
|
6 |
+
"Report-Msgid-Bugs-To: http://wordpress.org/plugins/clean-and-simple-contact-form-by-meg-nicholas\n"
|
7 |
+
"POT-Creation-Date: 2013-06-13 10:12:32+00:00\n"
|
8 |
+
"MIME-Version: 1.0\n"
|
9 |
+
"Content-Type: text/plain; charset=UTF-8\n"
|
10 |
+
"Content-Transfer-Encoding: 8bit\n"
|
11 |
+
"PO-Revision-Date: 2013-MO-DA HO:MI+ZONE\n"
|
12 |
+
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
|
13 |
+
"Language-Team: LANGUAGE <LL@li.org>\n"
|
14 |
+
|
15 |
+
#: class.cff.php:90
|
16 |
+
msgid "Settings"
|
17 |
+
msgstr ""
|
18 |
+
|
19 |
+
#: class.cff_contact.php:55
|
20 |
+
msgid "Sorry the email addresses do not match."
|
21 |
+
msgstr ""
|
22 |
+
|
23 |
+
#: class.cff_contact.php:59 views/contact-form-with-recaptcha.view.php:29
|
24 |
+
#: views/contact-form.view.php:14
|
25 |
+
msgid "Please give your email address."
|
26 |
+
msgstr ""
|
27 |
+
|
28 |
+
#: class.cff_contact.php:63
|
29 |
+
msgid "Please confirm your email address."
|
30 |
+
msgstr ""
|
31 |
+
|
32 |
+
#: class.cff_contact.php:67 views/contact-form-with-recaptcha.view.php:49
|
33 |
+
#: views/contact-form.view.php:34
|
34 |
+
msgid "Please give your name."
|
35 |
+
msgstr ""
|
36 |
+
|
37 |
+
#: class.cff_contact.php:71
|
38 |
+
msgid "Please enter a message."
|
39 |
+
msgstr ""
|
40 |
+
|
41 |
+
#: class.cff_contact.php:75 views/contact-form-with-recaptcha.view.php:29
|
42 |
+
#: views/contact-form.view.php:14
|
43 |
+
msgid "Please enter a valid email address."
|
44 |
+
msgstr ""
|
45 |
+
|
46 |
+
#: class.cff_contact.php:83
|
47 |
+
msgid "Sorry the code wasn't entered correctly please try again."
|
48 |
+
msgstr ""
|
49 |
+
|
50 |
+
#: class.cff_pluginsettings.php:40
|
51 |
+
msgid "Message Sent"
|
52 |
+
msgstr ""
|
53 |
+
|
54 |
+
#: class.cff_pluginsettings.php:47
|
55 |
+
msgid "Thank you for your message, we will be in touch very shortly."
|
56 |
+
msgstr ""
|
57 |
+
|
58 |
+
#: class.cff_pluginsettings.php:54
|
59 |
+
msgid ""
|
60 |
+
"Please enter your contact details and a short message below and I will try "
|
61 |
+
"to answer your query as soon as possible."
|
62 |
+
msgstr ""
|
63 |
+
|
64 |
+
#: class.cff_pluginsettings.php:83
|
65 |
+
msgid " - Web Enquiry"
|
66 |
+
msgstr ""
|
67 |
+
|
68 |
+
#: class.cff_settings.php:41
|
69 |
+
msgid "Clean and Simple Contact Form Settings"
|
70 |
+
msgstr ""
|
71 |
+
|
72 |
+
#: class.cff_settings.php:43
|
73 |
+
msgid "You are using version"
|
74 |
+
msgstr ""
|
75 |
+
|
76 |
+
#: class.cff_settings.php:44
|
77 |
+
msgid "If you find this plugin useful please consider"
|
78 |
+
msgstr ""
|
79 |
+
|
80 |
+
#: class.cff_settings.php:47
|
81 |
+
msgid "leaving a review"
|
82 |
+
msgstr ""
|
83 |
+
|
84 |
+
#: class.cff_settings.php:49
|
85 |
+
msgid "Thank you!"
|
86 |
+
msgstr ""
|
87 |
+
|
88 |
+
#: class.cff_settings.php:68
|
89 |
+
msgid "ReCAPTCHA Settings"
|
90 |
+
msgstr ""
|
91 |
+
|
92 |
+
#: class.cff_settings.php:76
|
93 |
+
msgid "Use reCAPTCHA :"
|
94 |
+
msgstr ""
|
95 |
+
|
96 |
+
#: class.cff_settings.php:82
|
97 |
+
msgid "reCAPTCHA Theme :"
|
98 |
+
msgstr ""
|
99 |
+
|
100 |
+
#: class.cff_settings.php:88
|
101 |
+
msgid "reCAPTCHA Public Key :"
|
102 |
+
msgstr ""
|
103 |
+
|
104 |
+
#: class.cff_settings.php:94
|
105 |
+
msgid "reCAPTCHA Private Key :"
|
106 |
+
msgstr ""
|
107 |
+
|
108 |
+
#: class.cff_settings.php:100
|
109 |
+
msgid "Message Settings"
|
110 |
+
msgstr ""
|
111 |
+
|
112 |
+
#: class.cff_settings.php:104
|
113 |
+
msgid "Recipient Email :"
|
114 |
+
msgstr ""
|
115 |
+
|
116 |
+
#: class.cff_settings.php:110
|
117 |
+
msgid "Email Subject :"
|
118 |
+
msgstr ""
|
119 |
+
|
120 |
+
#: class.cff_settings.php:116
|
121 |
+
msgid "Message :"
|
122 |
+
msgstr ""
|
123 |
+
|
124 |
+
#: class.cff_settings.php:122
|
125 |
+
msgid "Message Sent Heading :"
|
126 |
+
msgstr ""
|
127 |
+
|
128 |
+
#: class.cff_settings.php:128
|
129 |
+
msgid "Message Sent Content :"
|
130 |
+
msgstr ""
|
131 |
+
|
132 |
+
#: class.cff_settings.php:134
|
133 |
+
msgid "Styling and Validation"
|
134 |
+
msgstr ""
|
135 |
+
|
136 |
+
#: class.cff_settings.php:138
|
137 |
+
msgid ""
|
138 |
+
"Use the plugin default stylesheet (un-tick to use your theme style sheet "
|
139 |
+
"instead) :"
|
140 |
+
msgstr ""
|
141 |
+
|
142 |
+
#: class.cff_settings.php:144
|
143 |
+
msgid "Use client side validation (AJAX) :"
|
144 |
+
msgstr ""
|
145 |
+
|
146 |
+
#: class.cff_settings.php:216
|
147 |
+
msgid "Enter your reCAPTCHA settings below :"
|
148 |
+
msgstr ""
|
149 |
+
|
150 |
+
#: class.cff_settings.php:217
|
151 |
+
msgid "To use reCAPTCHA you must get an API key from"
|
152 |
+
msgstr ""
|
153 |
+
|
154 |
+
#: class.cff_settings.php:222
|
155 |
+
msgid "Enter your message settings below :"
|
156 |
+
msgstr ""
|
157 |
+
|
158 |
+
#: class.cff_settings.php:274
|
159 |
+
msgid "Red"
|
160 |
+
msgstr ""
|
161 |
+
|
162 |
+
#: class.cff_settings.php:275
|
163 |
+
msgid "White"
|
164 |
+
msgstr ""
|
165 |
+
|
166 |
+
#: class.cff_settings.php:276
|
167 |
+
msgid "Blackglass"
|
168 |
+
msgstr ""
|
169 |
+
|
170 |
+
#: class.cff_settings.php:277
|
171 |
+
msgid "Clean"
|
172 |
+
msgstr ""
|
173 |
+
|
174 |
+
#: views/contact-form-with-recaptcha.view.php:27
|
175 |
+
#: views/contact-form.view.php:12
|
176 |
+
msgid "Email Address:"
|
177 |
+
msgstr ""
|
178 |
+
|
179 |
+
#: views/contact-form-with-recaptcha.view.php:29
|
180 |
+
#: views/contact-form.view.php:14
|
181 |
+
msgid "Your Email Address"
|
182 |
+
msgstr ""
|
183 |
+
|
184 |
+
#: views/contact-form-with-recaptcha.view.php:37
|
185 |
+
#: views/contact-form.view.php:22
|
186 |
+
msgid "Confirm Email Address:"
|
187 |
+
msgstr ""
|
188 |
+
|
189 |
+
#: views/contact-form-with-recaptcha.view.php:39
|
190 |
+
#: views/contact-form.view.php:24
|
191 |
+
msgid "Please enter the same email address again."
|
192 |
+
msgstr ""
|
193 |
+
|
194 |
+
#: views/contact-form-with-recaptcha.view.php:39
|
195 |
+
#: views/contact-form.view.php:24
|
196 |
+
msgid "Confirm Your Email Address"
|
197 |
+
msgstr ""
|
198 |
+
|
199 |
+
#: views/contact-form-with-recaptcha.view.php:47
|
200 |
+
#: views/contact-form.view.php:32
|
201 |
+
msgid "Name:"
|
202 |
+
msgstr ""
|
203 |
+
|
204 |
+
#: views/contact-form-with-recaptcha.view.php:49
|
205 |
+
#: views/contact-form.view.php:34
|
206 |
+
msgid "Your Name"
|
207 |
+
msgstr ""
|
208 |
+
|
209 |
+
#: views/contact-form-with-recaptcha.view.php:57
|
210 |
+
#: views/contact-form.view.php:42
|
211 |
+
msgid "Message:"
|
212 |
+
msgstr ""
|
213 |
+
|
214 |
+
#: views/contact-form-with-recaptcha.view.php:59
|
215 |
+
#: views/contact-form.view.php:44
|
216 |
+
msgid "Please give a message."
|
217 |
+
msgstr ""
|
218 |
+
|
219 |
+
#: views/contact-form-with-recaptcha.view.php:59
|
220 |
+
#: views/contact-form.view.php:44
|
221 |
+
msgid "Your Message"
|
222 |
+
msgstr ""
|
223 |
+
|
224 |
+
#: views/contact-form-with-recaptcha.view.php:75
|
225 |
+
#: views/contact-form.view.php:51
|
226 |
+
msgid "Send Message"
|
227 |
+
msgstr ""
|
228 |
+
|
229 |
+
#: views/message-not-sent.view.php:1
|
230 |
+
msgid "Sorry, there has been a problem and your message was not sent."
|
231 |
+
msgstr ""
|
232 |
+
|
233 |
+
#. Plugin Name of the plugin/theme
|
234 |
+
msgid "Clean and Simple Contact Form"
|
235 |
+
msgstr ""
|
236 |
+
|
237 |
+
#. Plugin URI of the plugin/theme
|
238 |
+
msgid ""
|
239 |
+
"http://www.megnicholas.co.uk/wordpress-plugins/clean-and-simple-contact-form"
|
240 |
+
msgstr "http://www.megnicholas.co.uk/wordpress-plugins/clean-and-simple-contact-form"
|
241 |
+
|
242 |
+
#. Description of the plugin/theme
|
243 |
+
msgid ""
|
244 |
+
"A clean and simple contact form with Google reCAPTCHA and Twitter Bootstrap "
|
245 |
+
"markup."
|
246 |
+
msgstr ""
|
247 |
+
|
248 |
+
#. Author of the plugin/theme
|
249 |
+
msgid "Meghan Nicholas"
|
250 |
+
msgstr "Meghan Nicholas"
|
251 |
+
|
252 |
+
#. Author URI of the plugin/theme
|
253 |
+
msgid "http://www.megnicholas.co.uk"
|
254 |
+
msgstr "http://www.megnicholas.co.uk"
|
readme.txt
CHANGED
@@ -1,12 +1,12 @@
|
|
1 |
=== Clean and Simple Contact Form ===
|
2 |
-
Contributors:
|
3 |
Donate link: https://www.paypal.com/cgi-bin/webscr?cmd=_s-xclick&hosted_button_id=AKQM4KSBQ4H66
|
4 |
License: GPLv2 or later
|
5 |
License URI: http://www.gnu.org/licenses/gpl.html
|
6 |
Tags: simple, contact, form, contact button, contact form, contact form plugin, contacts, contacts form plugin, contact me, feedback form, bootstrap, twitter, google, reCAPTCHA, ajax, secure
|
7 |
Requires at least: 3.3
|
8 |
Tested up to: 3.5
|
9 |
-
Stable tag: 4.1.
|
10 |
|
11 |
A clean and simple contact form with Google reCAPTCHA and Twitter Bootstrap markup.
|
12 |
|
@@ -117,6 +117,10 @@ I am a freelance WordPress Developer.
|
|
117 |
A clean and simple contact form with Google reCAPTCHA and Twitter Bootstrap markup.
|
118 |
|
119 |
== Changelog ==
|
|
|
|
|
|
|
|
|
120 |
= 4.1.0 =
|
121 |
* Fixed a bug in class.cff_settings.php where php opening tag had got missed off. This problem caused the settings screen not to display correctly but only occurred with some versions of php. Please upgrade if you have this problem.
|
122 |
= 4.0.9 =
|
@@ -134,6 +138,8 @@ A clean and simple contact form with Google reCAPTCHA and Twitter Bootstrap mark
|
|
134 |
|
135 |
|
136 |
== Upgrade Notice ==
|
|
|
|
|
137 |
= 4.1.0 =
|
138 |
Please upgrade if your settings screen is not displaying.
|
139 |
= 4.0.9 =
|
1 |
=== Clean and Simple Contact Form ===
|
2 |
+
Contributors: megnicholas
|
3 |
Donate link: https://www.paypal.com/cgi-bin/webscr?cmd=_s-xclick&hosted_button_id=AKQM4KSBQ4H66
|
4 |
License: GPLv2 or later
|
5 |
License URI: http://www.gnu.org/licenses/gpl.html
|
6 |
Tags: simple, contact, form, contact button, contact form, contact form plugin, contacts, contacts form plugin, contact me, feedback form, bootstrap, twitter, google, reCAPTCHA, ajax, secure
|
7 |
Requires at least: 3.3
|
8 |
Tested up to: 3.5
|
9 |
+
Stable tag: 4.1.1
|
10 |
|
11 |
A clean and simple contact form with Google reCAPTCHA and Twitter Bootstrap markup.
|
12 |
|
117 |
A clean and simple contact form with Google reCAPTCHA and Twitter Bootstrap markup.
|
118 |
|
119 |
== Changelog ==
|
120 |
+
= 4.1.1 =
|
121 |
+
* Fixed potential conflicts with themes that use bootstrap
|
122 |
+
* Enabled internationalisation, this plugin will now work with multiple languages
|
123 |
+
* Added German translation file for my German friends, thanks to faktorzweinet for the translation
|
124 |
= 4.1.0 =
|
125 |
* Fixed a bug in class.cff_settings.php where php opening tag had got missed off. This problem caused the settings screen not to display correctly but only occurred with some versions of php. Please upgrade if you have this problem.
|
126 |
= 4.0.9 =
|
138 |
|
139 |
|
140 |
== Upgrade Notice ==
|
141 |
+
= 4.1.1 =
|
142 |
+
Internationalisation, fixed conflict with some bootstrapped themes.
|
143 |
= 4.1.0 =
|
144 |
Please upgrade if your settings screen is not displaying.
|
145 |
= 4.0.9 =
|
shortcodes/contact-form.php
CHANGED
@@ -43,7 +43,7 @@ function cff_ContactForm()
|
|
43 |
|
44 |
//only load the stylesheet if required
|
45 |
if ( cff_PluginSettings::LoadStyleSheet() == true)
|
46 |
-
wp_enqueue_style('bootstrap');
|
47 |
|
48 |
//set-up the view
|
49 |
if ( $contact->RecaptchaPublicKey<>'' && $contact->RecaptchaPrivateKey<>'')
|
43 |
|
44 |
//only load the stylesheet if required
|
45 |
if ( cff_PluginSettings::LoadStyleSheet() == true)
|
46 |
+
wp_enqueue_style('cff-bootstrap');
|
47 |
|
48 |
//set-up the view
|
49 |
if ( $contact->RecaptchaPublicKey<>'' && $contact->RecaptchaPrivateKey<>'')
|
views/contact-form-with-recaptcha.view.php
CHANGED
@@ -21,12 +21,12 @@
|
|
21 |
</div>
|
22 |
|
23 |
|
24 |
-
|
25 |
<div class="control-group<?php
|
26 |
if (isset($contact->Errors['Email'])) echo ' error'; ?>">
|
27 |
-
<label class="control-label" for="cf-Email"
|
28 |
<div class="controls">
|
29 |
-
<input class="input-xlarge {email:true, required:true, messages:{required:'Please give your email address.',email:'Please enter a valid email address.'}}" type="text" id="cf-Email" name="cf-Email" value="<?php echo $contact->Email; ?>" placeholder="Your Email Address">
|
30 |
<span for="cf-Email" generated="true" class="help-inline" style=""><?php if (isset($contact->Errors['Email'])) echo $contact->Errors['Email']; ?></span>
|
31 |
</div>
|
32 |
</div>
|
@@ -34,9 +34,9 @@
|
|
34 |
<!--confirm email address -->
|
35 |
<div class="control-group<?php
|
36 |
if (isset($contact->Errors['Confirm-Email'])) echo ' error'; ?>">
|
37 |
-
<label class="control-label" for="cfconfirm-email"
|
38 |
<div class="controls">
|
39 |
-
<input class="input-xlarge {email:true, required:true, equalTo:'#cf-Email', messages:{equalTo:'Please enter the same email address again.',required:'Please enter the same email address again.'}}" type="text" id="cfconfirm-email" name="cfconfirm-email" value="<?php echo $contact->ConfirmEmail; ?>" placeholder="Confirm Your Email Address">
|
40 |
<span for="cfconfirm-email" generated="true" class="help-inline" style=""><?php if (isset($contact->Errors['Confirm-Email'])) echo $contact->Errors['Confirm-Email']; ?></span>
|
41 |
</div>
|
42 |
</div>
|
@@ -44,9 +44,9 @@
|
|
44 |
<!-- name -->
|
45 |
<div class="control-group<?php
|
46 |
if (isset($contact->Errors['Name'])) echo ' error'; ?>">
|
47 |
-
<label class="control-label" for="cf-Name"
|
48 |
<div class="controls">
|
49 |
-
<input class="input-xlarge {required:true, messages:{required:'Please give your name.'}}" type="text" id="cf-Name" name="cf-Name" value="<?php echo $contact->Name; ?>" placeholder="Your Name">
|
50 |
<span for="cf-Name" generated="true" class="help-inline" style=""><?php if (isset($contact->Errors['Name'])) echo $contact->Errors['Name']; ?></span>
|
51 |
</div>
|
52 |
</div>
|
@@ -54,13 +54,13 @@
|
|
54 |
<!-- message -->
|
55 |
<div class="control-group<?php
|
56 |
if (isset($contact->Errors['Message'])) echo ' error'; ?>">
|
57 |
-
<label class="control-label" for="cf-Message"
|
58 |
<div class="controls">
|
59 |
-
<textarea class="input-xlarge {required:true, messages:{required:'Please give a message.'}}" id="cf-Message" name="cf-Message" rows="10" placeholder="Your Message"><?php echo $contact->Message; ?></textarea>
|
60 |
<span for="cf-Message" generated="true" class="help-inline" style=""><?php if (isset($contact->Errors['Message'])) echo $contact->Errors['Message']; ?></span>
|
61 |
</div>
|
62 |
</div>
|
63 |
-
|
64 |
|
65 |
<div class="control-group<?php
|
66 |
if (isset($contact->Errors['recaptcha'])) echo ' error'; ?>">
|
@@ -72,7 +72,7 @@
|
|
72 |
|
73 |
<div class="control-group">
|
74 |
<div class="controls">
|
75 |
-
<button type="submit" class="btn"
|
76 |
</div>
|
77 |
</div>
|
78 |
</form>
|
21 |
</div>
|
22 |
|
23 |
|
24 |
+
<!--email address -->
|
25 |
<div class="control-group<?php
|
26 |
if (isset($contact->Errors['Email'])) echo ' error'; ?>">
|
27 |
+
<label class="control-label" for="cf-Email"><?php _e('Email Address:','cleanandsimple');?></label>
|
28 |
<div class="controls">
|
29 |
+
<input class="input-xlarge {email:true, required:true, messages:{required:'<?php _e('Please give your email address.','cleanandsimple');?>',email:'<?php _e('Please enter a valid email address.','cleanandsimple');?>'}}" type="text" id="cf-Email" name="cf-Email" value="<?php echo $contact->Email; ?>" placeholder="<?php _e('Your Email Address','cleanandsimple');?>">
|
30 |
<span for="cf-Email" generated="true" class="help-inline" style=""><?php if (isset($contact->Errors['Email'])) echo $contact->Errors['Email']; ?></span>
|
31 |
</div>
|
32 |
</div>
|
34 |
<!--confirm email address -->
|
35 |
<div class="control-group<?php
|
36 |
if (isset($contact->Errors['Confirm-Email'])) echo ' error'; ?>">
|
37 |
+
<label class="control-label" for="cfconfirm-email"><?php _e('Confirm Email Address:','cleanandsimple');?></label>
|
38 |
<div class="controls">
|
39 |
+
<input class="input-xlarge {email:true, required:true, equalTo:'#cf-Email', messages:{equalTo:'<?php _e('Please enter the same email address again.','cleanandsimple');?>',required:'<?php _e('Please enter the same email address again.','cleanandsimple');?>'}}" type="text" id="cfconfirm-email" name="cfconfirm-email" value="<?php echo $contact->ConfirmEmail; ?>" placeholder="<?php _e('Confirm Your Email Address','cleanandsimple');?>">
|
40 |
<span for="cfconfirm-email" generated="true" class="help-inline" style=""><?php if (isset($contact->Errors['Confirm-Email'])) echo $contact->Errors['Confirm-Email']; ?></span>
|
41 |
</div>
|
42 |
</div>
|
44 |
<!-- name -->
|
45 |
<div class="control-group<?php
|
46 |
if (isset($contact->Errors['Name'])) echo ' error'; ?>">
|
47 |
+
<label class="control-label" for="cf-Name"><?php _e('Name:','cleanandsimple');?></label>
|
48 |
<div class="controls">
|
49 |
+
<input class="input-xlarge {required:true, messages:{required:'<?php _e('Please give your name.','cleanandsimple');?>'}}" type="text" id="cf-Name" name="cf-Name" value="<?php echo $contact->Name; ?>" placeholder="<?php _e('Your Name','cleanandsimple');?>">
|
50 |
<span for="cf-Name" generated="true" class="help-inline" style=""><?php if (isset($contact->Errors['Name'])) echo $contact->Errors['Name']; ?></span>
|
51 |
</div>
|
52 |
</div>
|
54 |
<!-- message -->
|
55 |
<div class="control-group<?php
|
56 |
if (isset($contact->Errors['Message'])) echo ' error'; ?>">
|
57 |
+
<label class="control-label" for="cf-Message"><?php _e('Message:','cleanandsimple');?></label>
|
58 |
<div class="controls">
|
59 |
+
<textarea class="input-xlarge {required:true, messages:{required:'<?php _e('Please give a message.','cleanandsimple');?>'}}" id="cf-Message" name="cf-Message" rows="10" placeholder="<?php _e('Your Message','cleanandsimple');?>"><?php echo $contact->Message; ?></textarea>
|
60 |
<span for="cf-Message" generated="true" class="help-inline" style=""><?php if (isset($contact->Errors['Message'])) echo $contact->Errors['Message']; ?></span>
|
61 |
</div>
|
62 |
</div>
|
63 |
+
|
64 |
|
65 |
<div class="control-group<?php
|
66 |
if (isset($contact->Errors['recaptcha'])) echo ' error'; ?>">
|
72 |
|
73 |
<div class="control-group">
|
74 |
<div class="controls">
|
75 |
+
<button type="submit" class="btn"><?php _e('Send Message','cleanandsimple');?></button>
|
76 |
</div>
|
77 |
</div>
|
78 |
</form>
|
views/contact-form.view.php
CHANGED
@@ -9,9 +9,9 @@
|
|
9 |
<!--email address -->
|
10 |
<div class="control-group<?php
|
11 |
if (isset($contact->Errors['Email'])) echo ' error'; ?>">
|
12 |
-
<label class="control-label" for="cf-Email"
|
13 |
<div class="controls">
|
14 |
-
<input class="input-xlarge {email:true, required:true, messages:{required:'Please give your email address.',email:'Please enter a valid email address.'}}" type="text" id="cf-Email" name="cf-Email" value="<?php echo $contact->Email; ?>" placeholder="Your Email Address">
|
15 |
<span for="cf-Email" generated="true" class="help-inline" style=""><?php if (isset($contact->Errors['Email'])) echo $contact->Errors['Email']; ?></span>
|
16 |
</div>
|
17 |
</div>
|
@@ -19,9 +19,9 @@
|
|
19 |
<!--confirm email address -->
|
20 |
<div class="control-group<?php
|
21 |
if (isset($contact->Errors['Confirm-Email'])) echo ' error'; ?>">
|
22 |
-
<label class="control-label" for="cfconfirm-email"
|
23 |
<div class="controls">
|
24 |
-
<input class="input-xlarge {email:true, required:true, equalTo:'#cf-Email', messages:{equalTo:'Please enter the same email address again.',required:'Please enter the same email address again.'}}" type="text" id="cfconfirm-email" name="cfconfirm-email" value="<?php echo $contact->ConfirmEmail; ?>" placeholder="Confirm Your Email Address">
|
25 |
<span for="cfconfirm-email" generated="true" class="help-inline" style=""><?php if (isset($contact->Errors['Confirm-Email'])) echo $contact->Errors['Confirm-Email']; ?></span>
|
26 |
</div>
|
27 |
</div>
|
@@ -29,9 +29,9 @@
|
|
29 |
<!-- name -->
|
30 |
<div class="control-group<?php
|
31 |
if (isset($contact->Errors['Name'])) echo ' error'; ?>">
|
32 |
-
<label class="control-label" for="cf-Name"
|
33 |
<div class="controls">
|
34 |
-
<input class="input-xlarge {required:true, messages:{required:'Please give your name.'}}" type="text" id="cf-Name" name="cf-Name" value="<?php echo $contact->Name; ?>" placeholder="Your Name">
|
35 |
<span for="cf-Name" generated="true" class="help-inline" style=""><?php if (isset($contact->Errors['Name'])) echo $contact->Errors['Name']; ?></span>
|
36 |
</div>
|
37 |
</div>
|
@@ -39,16 +39,16 @@
|
|
39 |
<!-- message -->
|
40 |
<div class="control-group<?php
|
41 |
if (isset($contact->Errors['Message'])) echo ' error'; ?>">
|
42 |
-
<label class="control-label" for="cf-Message"
|
43 |
<div class="controls">
|
44 |
-
<textarea class="input-xlarge {required:true, messages:{required:'Please give a message.'}}" id="cf-Message" name="cf-Message" rows="10" placeholder="Your Message"><?php echo $contact->Message; ?></textarea>
|
45 |
<span for="cf-Message" generated="true" class="help-inline" style=""><?php if (isset($contact->Errors['Message'])) echo $contact->Errors['Message']; ?></span>
|
46 |
</div>
|
47 |
</div>
|
48 |
|
49 |
<div class="control-group">
|
50 |
<div class="controls">
|
51 |
-
<button type="submit" class="btn"
|
52 |
</div>
|
53 |
</div>
|
54 |
</form>
|
9 |
<!--email address -->
|
10 |
<div class="control-group<?php
|
11 |
if (isset($contact->Errors['Email'])) echo ' error'; ?>">
|
12 |
+
<label class="control-label" for="cf-Email"><?php _e('Email Address:','cleanandsimple');?></label>
|
13 |
<div class="controls">
|
14 |
+
<input class="input-xlarge {email:true, required:true, messages:{required:'<?php _e('Please give your email address.','cleanandsimple');?>',email:'<?php _e('Please enter a valid email address.','cleanandsimple');?>'}}" type="text" id="cf-Email" name="cf-Email" value="<?php echo $contact->Email; ?>" placeholder="<?php _e('Your Email Address','cleanandsimple');?>">
|
15 |
<span for="cf-Email" generated="true" class="help-inline" style=""><?php if (isset($contact->Errors['Email'])) echo $contact->Errors['Email']; ?></span>
|
16 |
</div>
|
17 |
</div>
|
19 |
<!--confirm email address -->
|
20 |
<div class="control-group<?php
|
21 |
if (isset($contact->Errors['Confirm-Email'])) echo ' error'; ?>">
|
22 |
+
<label class="control-label" for="cfconfirm-email"><?php _e('Confirm Email Address:','cleanandsimple');?></label>
|
23 |
<div class="controls">
|
24 |
+
<input class="input-xlarge {email:true, required:true, equalTo:'#cf-Email', messages:{equalTo:'<?php _e('Please enter the same email address again.','cleanandsimple');?>',required:'<?php _e('Please enter the same email address again.','cleanandsimple');?>'}}" type="text" id="cfconfirm-email" name="cfconfirm-email" value="<?php echo $contact->ConfirmEmail; ?>" placeholder="<?php _e('Confirm Your Email Address','cleanandsimple');?>">
|
25 |
<span for="cfconfirm-email" generated="true" class="help-inline" style=""><?php if (isset($contact->Errors['Confirm-Email'])) echo $contact->Errors['Confirm-Email']; ?></span>
|
26 |
</div>
|
27 |
</div>
|
29 |
<!-- name -->
|
30 |
<div class="control-group<?php
|
31 |
if (isset($contact->Errors['Name'])) echo ' error'; ?>">
|
32 |
+
<label class="control-label" for="cf-Name"><?php _e('Name:','cleanandsimple');?></label>
|
33 |
<div class="controls">
|
34 |
+
<input class="input-xlarge {required:true, messages:{required:'<?php _e('Please give your name.','cleanandsimple');?>'}}" type="text" id="cf-Name" name="cf-Name" value="<?php echo $contact->Name; ?>" placeholder="<?php _e('Your Name','cleanandsimple');?>">
|
35 |
<span for="cf-Name" generated="true" class="help-inline" style=""><?php if (isset($contact->Errors['Name'])) echo $contact->Errors['Name']; ?></span>
|
36 |
</div>
|
37 |
</div>
|
39 |
<!-- message -->
|
40 |
<div class="control-group<?php
|
41 |
if (isset($contact->Errors['Message'])) echo ' error'; ?>">
|
42 |
+
<label class="control-label" for="cf-Message"><?php _e('Message:','cleanandsimple');?></label>
|
43 |
<div class="controls">
|
44 |
+
<textarea class="input-xlarge {required:true, messages:{required:'<?php _e('Please give a message.','cleanandsimple');?>'}}" id="cf-Message" name="cf-Message" rows="10" placeholder="<?php _e('Your Message','cleanandsimple');?>"><?php echo $contact->Message; ?></textarea>
|
45 |
<span for="cf-Message" generated="true" class="help-inline" style=""><?php if (isset($contact->Errors['Message'])) echo $contact->Errors['Message']; ?></span>
|
46 |
</div>
|
47 |
</div>
|
48 |
|
49 |
<div class="control-group">
|
50 |
<div class="controls">
|
51 |
+
<button type="submit" class="btn"><?php _e('Send Message','cleanandsimple');?></button>
|
52 |
</div>
|
53 |
</div>
|
54 |
</form>
|
views/message-not-sent.view.php
CHANGED
@@ -1 +1 @@
|
|
1 |
-
<p
|
1 |
+
<p><?php _e('Sorry, there has been a problem and your message was not sent.','cleanandsimple') ?></p>
|