Version Description
- Added some FAQs
- Added alternative shortcode [cscf-contact-form] for use when conflicts could occur.
- Updated the documentation.
- Recaptcha form now responds to language changes
- Updated pot file to reflect new name space
- Changed name space from cff to cscf
- Settings screen: recaptcha theme and key inputs are immediately enabled/disabled as the 'Use reCAPTCHA' box is clicked.
- Corrected some html seen as invalid by http://validator.w3.org/
- removed '<?=' and replaced with '<?php echo' in cscf_settings, thanks go to andrewbacon
- Added notice to setting screen when JetPack's contact form is active
Download this release
Release Info
Developer | megnicholas |
Plugin | Contact Form Clean and Simple |
Version | 4.1.2 |
Comparing to | |
See all releases |
Code changes from version 4.1.1 to 4.1.2
- class.cff.php → class.cscf.php +21 -11
- class.cff_contact.php → class.cscf_contact.php +18 -20
- class.cff_filters.php → class.cscf_filters.php +1 -1
- class.cff_pluginsettings.php → class.cscf_pluginsettings.php +27 -12
- class.cff_settings.php → class.cscf_settings.php +38 -21
- class.view.php +4 -4
- clean-and-simple-contact-form-by-meg-nicholas.php +16 -16
- js/jquery.validate.contact.form.js +3 -3
- languages/cleanandsimple-da_DK.mo +0 -0
- languages/cleanandsimple-da_DK.po +262 -0
- languages/cleanandsimple-de_DE.mo +0 -0
- languages/cleanandsimple-de_DE.po +27 -35
- languages/cleanandsimple-es_ES.mo +0 -0
- languages/cleanandsimple-es_ES.po +264 -0
- languages/cleanandsimple-fi.mo +0 -0
- languages/cleanandsimple-fi.po +266 -0
- languages/cleanandsimple-fi_FI.mo +0 -0
- languages/cleanandsimple-fi_FI.po +266 -0
- languages/cleanandsimple-fr_FR.mo +0 -0
- languages/cleanandsimple-fr_FR.po +259 -0
- languages/cleanandsimple-hy_AM.mo +0 -0
- languages/cleanandsimple-hy_AM.po +254 -0
- languages/cleanandsimple-nl_NL.mo +0 -0
- languages/cleanandsimple-nl_NL.po +264 -0
- languages/cleanandsimple-pl_PL.mo +0 -0
- languages/cleanandsimple-pl_PL.po +257 -0
- languages/cleanandsimple-pt_PT.mo +0 -0
- languages/cleanandsimple-pt_PT.po +264 -0
- languages/cleanandsimple-sv_SE.mo +0 -0
- languages/cleanandsimple-sv_SE.po +265 -0
- languages/cleanandsimple.pot +56 -55
- readme.txt +56 -7
- recaptcha-php-1.11/recaptchalib.php +2 -2
- shortcodes/contact-form.php +17 -16
- uninstall.php +2 -1
- views/contact-form-with-recaptcha.view.php +21 -24
- views/contact-form.view.php +19 -19
class.cff.php → class.cscf.php
RENAMED
@@ -1,6 +1,6 @@
|
|
1 |
<?php
|
2 |
|
3 |
-
class
|
4 |
{
|
5 |
public
|
6 |
function __construct()
|
@@ -28,35 +28,45 @@ class cff
|
|
28 |
));
|
29 |
|
30 |
//create the settings page
|
31 |
-
$settings = new
|
32 |
|
33 |
}
|
34 |
|
35 |
//load text domain
|
36 |
function RegisterTextDomain()
|
37 |
{
|
38 |
-
//$path =
|
39 |
-
$path = '/' .
|
40 |
load_plugin_textdomain('cleanandsimple', false, $path );
|
41 |
}
|
42 |
|
43 |
function RegisterScripts()
|
44 |
{
|
45 |
-
wp_register_script('jquery-validate',
|
46 |
'jquery'
|
47 |
) , '1.10.0', true);
|
48 |
-
wp_register_script('jquery-meta',
|
49 |
'jquery'
|
50 |
) , '4187', true);
|
51 |
-
wp_register_script('jquery-validate-contact-form',
|
52 |
'jquery'
|
53 |
) , '1.00', true);
|
54 |
-
wp_register_style('
|
55 |
}
|
56 |
|
57 |
function Upgrade()
|
58 |
{
|
59 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
60 |
$updated = false;
|
61 |
|
62 |
if (trim(get_option('recaptcha_public_key')) <> '')
|
@@ -73,7 +83,7 @@ class cff
|
|
73 |
$updated = true;
|
74 |
}
|
75 |
|
76 |
-
if ($updated) update_option('
|
77 |
}
|
78 |
|
79 |
/*
|
@@ -83,7 +93,7 @@ class cff
|
|
83 |
function SettingsLink($links, $file)
|
84 |
{
|
85 |
|
86 |
-
if ($file ==
|
87 |
{
|
88 |
|
89 |
/*
|
1 |
<?php
|
2 |
|
3 |
+
class cscf
|
4 |
{
|
5 |
public
|
6 |
function __construct()
|
28 |
));
|
29 |
|
30 |
//create the settings page
|
31 |
+
$settings = new cscf_settings();
|
32 |
|
33 |
}
|
34 |
|
35 |
//load text domain
|
36 |
function RegisterTextDomain()
|
37 |
{
|
38 |
+
//$path = CSCF_PLUGIN_DIR . '/languages';
|
39 |
+
$path = '/' . CSCF_PLUGIN_NAME . '/languages';
|
40 |
load_plugin_textdomain('cleanandsimple', false, $path );
|
41 |
}
|
42 |
|
43 |
function RegisterScripts()
|
44 |
{
|
45 |
+
wp_register_script('jquery-validate', CSCF_PLUGIN_URL . '/js/jquery.validate.min.js', array(
|
46 |
'jquery'
|
47 |
) , '1.10.0', true);
|
48 |
+
wp_register_script('jquery-meta', CSCF_PLUGIN_URL . '/js/jquery.metadata.js', array(
|
49 |
'jquery'
|
50 |
) , '4187', true);
|
51 |
+
wp_register_script('jquery-validate-contact-form', CSCF_PLUGIN_URL . '/js/jquery.validate.contact.form.js', array(
|
52 |
'jquery'
|
53 |
) , '1.00', true);
|
54 |
+
wp_register_style('cscf-bootstrap', CSCF_PLUGIN_URL . '/css/bootstrap-forms.min.css', null, '2.3.1');
|
55 |
}
|
56 |
|
57 |
function Upgrade()
|
58 |
{
|
59 |
+
//change namespace of options
|
60 |
+
if ( get_option('cff_options') != '') {
|
61 |
+
update_option('cscf_options', get_option('cff_options'));
|
62 |
+
delete_option('cff_options');
|
63 |
+
}
|
64 |
+
if ( get_option('cff_version') != '') {
|
65 |
+
update_option('cscf_version', get_option('cff_version'));
|
66 |
+
delete_option('cff_version');
|
67 |
+
}
|
68 |
+
|
69 |
+
$options = get_option('cscf_options');
|
70 |
$updated = false;
|
71 |
|
72 |
if (trim(get_option('recaptcha_public_key')) <> '')
|
83 |
$updated = true;
|
84 |
}
|
85 |
|
86 |
+
if ($updated) update_option('cscf_options', $option);
|
87 |
}
|
88 |
|
89 |
/*
|
93 |
function SettingsLink($links, $file)
|
94 |
{
|
95 |
|
96 |
+
if ($file == CSCF_PLUGIN_NAME . '/' . CSCF_PLUGIN_NAME . '.php')
|
97 |
{
|
98 |
|
99 |
/*
|
class.cff_contact.php → class.cscf_contact.php
RENAMED
@@ -4,7 +4,7 @@
|
|
4 |
* class for holding and validating data captured from the contact form
|
5 |
*/
|
6 |
|
7 |
-
class
|
8 |
{
|
9 |
var $Name;
|
10 |
var $Email;
|
@@ -19,22 +19,20 @@ class cff_Contact
|
|
19 |
{
|
20 |
$this->Errors = array();
|
21 |
|
22 |
-
if (
|
23 |
{
|
24 |
-
$this->RecaptchaPublicKey =
|
25 |
-
$this->RecaptchaPrivateKey =
|
26 |
}
|
27 |
|
28 |
-
if ($_SERVER['REQUEST_METHOD'] == 'POST')
|
29 |
{
|
30 |
-
$
|
31 |
-
|
32 |
-
$this->Email = filter_var($
|
33 |
-
|
34 |
-
$this->
|
35 |
-
unset($_POST['
|
36 |
-
$this->Message = filter_var($_POST['cf-Message'], FILTER_SANITIZE_STRING);
|
37 |
-
unset($_POST['cf-Message']);
|
38 |
}
|
39 |
}
|
40 |
|
@@ -47,32 +45,32 @@ class cff_Contact
|
|
47 |
|
48 |
//check nonce
|
49 |
|
50 |
-
if (!wp_verify_nonce($_POST['
|
51 |
return false;
|
52 |
|
53 |
// email and confirm email are the same
|
54 |
|
55 |
-
if ($this->Email != $this->ConfirmEmail) $this->Errors['
|
56 |
|
57 |
//email
|
58 |
|
59 |
-
if (strlen($this->Email) == 0) $this->Errors['
|
60 |
|
61 |
//confirm email
|
62 |
|
63 |
-
if (strlen($this->ConfirmEmail) == 0) $this->Errors['
|
64 |
|
65 |
//name
|
66 |
|
67 |
-
if (strlen($this->Name) == 0) $this->Errors['
|
68 |
|
69 |
//message
|
70 |
|
71 |
-
if (strlen($this->Message) == 0) $this->Errors['
|
72 |
|
73 |
//email invalid address
|
74 |
|
75 |
-
if (strlen($this->Email) > 0 && !filter_var($this->Email, FILTER_VALIDATE_EMAIL)) $this->Errors['
|
76 |
|
77 |
//check recaptcha but only if we have keys
|
78 |
|
4 |
* class for holding and validating data captured from the contact form
|
5 |
*/
|
6 |
|
7 |
+
class cscf_Contact
|
8 |
{
|
9 |
var $Name;
|
10 |
var $Email;
|
19 |
{
|
20 |
$this->Errors = array();
|
21 |
|
22 |
+
if (cscf_PluginSettings::UseRecaptcha())
|
23 |
{
|
24 |
+
$this->RecaptchaPublicKey = cscf_PluginSettings::PublicKey();
|
25 |
+
$this->RecaptchaPrivateKey = cscf_PluginSettings::PrivateKey();
|
26 |
}
|
27 |
|
28 |
+
if ( $_SERVER['REQUEST_METHOD'] == 'POST' && isset($_POST['cscf']) )
|
29 |
{
|
30 |
+
$cscf = $_POST['cscf'];
|
31 |
+
$this->Name = filter_var($cscf['name'], FILTER_SANITIZE_STRING);
|
32 |
+
$this->Email = filter_var($cscf['email'], FILTER_SANITIZE_EMAIL);
|
33 |
+
$this->ConfirmEmail = filter_var($cscf['confirm-email'], FILTER_SANITIZE_EMAIL);
|
34 |
+
$this->Message = filter_var($cscf['message'], FILTER_SANITIZE_STRING);
|
35 |
+
unset($_POST['cscf']);
|
|
|
|
|
36 |
}
|
37 |
}
|
38 |
|
45 |
|
46 |
//check nonce
|
47 |
|
48 |
+
if (!wp_verify_nonce($_POST['cscf_nonce'], 'cscf_contact'))
|
49 |
return false;
|
50 |
|
51 |
// email and confirm email are the same
|
52 |
|
53 |
+
if ($this->Email != $this->ConfirmEmail) $this->Errors['confirm-email'] = __('Sorry the email addresses do not match.','cleanandsimple');
|
54 |
|
55 |
//email
|
56 |
|
57 |
+
if (strlen($this->Email) == 0) $this->Errors['email'] = __('Please give your email address.','cleanandsimple');
|
58 |
|
59 |
//confirm email
|
60 |
|
61 |
+
if (strlen($this->ConfirmEmail) == 0) $this->Errors['confirm-email'] = __('Please confirm your email address.','cleanandsimple');
|
62 |
|
63 |
//name
|
64 |
|
65 |
+
if (strlen($this->Name) == 0) $this->Errors['name'] = __('Please give your name.','cleanandsimple');
|
66 |
|
67 |
//message
|
68 |
|
69 |
+
if (strlen($this->Message) == 0) $this->Errors['message'] = __('Please enter a message.','cleanandsimple');
|
70 |
|
71 |
//email invalid address
|
72 |
|
73 |
+
if (strlen($this->Email) > 0 && !filter_var($this->Email, FILTER_VALIDATE_EMAIL)) $this->Errors['email'] = __('Please enter a valid email address.','cleanandsimple');
|
74 |
|
75 |
//check recaptcha but only if we have keys
|
76 |
|
class.cff_filters.php → class.cscf_filters.php
RENAMED
@@ -4,7 +4,7 @@
|
|
4 |
* Add and remove filters as we need in order to play nicely
|
5 |
*/
|
6 |
|
7 |
-
class
|
8 |
|
9 |
var $fromEmail;
|
10 |
var $fromName;
|
4 |
* Add and remove filters as we need in order to play nicely
|
5 |
*/
|
6 |
|
7 |
+
class cscf_Filters {
|
8 |
|
9 |
var $fromEmail;
|
10 |
var $fromName;
|
class.cff_pluginsettings.php → class.cscf_pluginsettings.php
RENAMED
@@ -1,76 +1,76 @@
|
|
1 |
<?php
|
2 |
|
3 |
-
class
|
4 |
{
|
5 |
static
|
6 |
function UseRecaptcha()
|
7 |
{
|
8 |
|
9 |
/* @var $options type array*/
|
10 |
-
$options = get_option('
|
11 |
|
12 |
return isset($options['use_recaptcha']) ? true : false;
|
13 |
}
|
14 |
static
|
15 |
function Theme()
|
16 |
{
|
17 |
-
$options = get_option('
|
18 |
|
19 |
return isset($options['theme']) ? $options['theme'] : 'red';
|
20 |
}
|
21 |
static
|
22 |
function PublicKey()
|
23 |
{
|
24 |
-
$options = get_option('
|
25 |
|
26 |
return $options['recaptcha_public_key'];
|
27 |
}
|
28 |
static
|
29 |
function PrivateKey()
|
30 |
{
|
31 |
-
$options = get_option('
|
32 |
|
33 |
return $options['recaptcha_private_key'];
|
34 |
}
|
35 |
static
|
36 |
function SentMessageHeading()
|
37 |
{
|
38 |
-
$options = get_option('
|
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('
|
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('
|
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()
|
58 |
{
|
59 |
-
$options = get_option('
|
60 |
|
61 |
return isset($options['load_stylesheet']) ? $options['load_stylesheet'] : true;
|
62 |
}
|
63 |
static
|
64 |
function UseClientValidation()
|
65 |
{
|
66 |
-
$options = get_option('
|
67 |
|
68 |
return isset($options['use_client_validation']) ? $options['use_client_validation'] : true;
|
69 |
}
|
70 |
static
|
71 |
function RecipientEmail()
|
72 |
{
|
73 |
-
$options = get_option('
|
74 |
|
75 |
return isset($options['recipient_email']) ? $options['recipient_email'] : get_bloginfo('admin_email');
|
76 |
}
|
@@ -78,9 +78,24 @@ class cff_PluginSettings
|
|
78 |
static
|
79 |
function Subject()
|
80 |
{
|
81 |
-
$options = get_option('
|
82 |
|
83 |
return isset($options['subject']) ? $options['subject'] : get_bloginfo('name') . __(' - Web Enquiry','cleanandsimple');
|
84 |
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
85 |
}
|
86 |
|
1 |
<?php
|
2 |
|
3 |
+
class cscf_PluginSettings
|
4 |
{
|
5 |
static
|
6 |
function UseRecaptcha()
|
7 |
{
|
8 |
|
9 |
/* @var $options type array*/
|
10 |
+
$options = get_option('cscf_options');
|
11 |
|
12 |
return isset($options['use_recaptcha']) ? true : false;
|
13 |
}
|
14 |
static
|
15 |
function Theme()
|
16 |
{
|
17 |
+
$options = get_option('cscf_options');
|
18 |
|
19 |
return isset($options['theme']) ? $options['theme'] : 'red';
|
20 |
}
|
21 |
static
|
22 |
function PublicKey()
|
23 |
{
|
24 |
+
$options = get_option('cscf_options');
|
25 |
|
26 |
return $options['recaptcha_public_key'];
|
27 |
}
|
28 |
static
|
29 |
function PrivateKey()
|
30 |
{
|
31 |
+
$options = get_option('cscf_options');
|
32 |
|
33 |
return $options['recaptcha_private_key'];
|
34 |
}
|
35 |
static
|
36 |
function SentMessageHeading()
|
37 |
{
|
38 |
+
$options = get_option('cscf_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('cscf_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('cscf_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()
|
58 |
{
|
59 |
+
$options = get_option('cscf_options');
|
60 |
|
61 |
return isset($options['load_stylesheet']) ? $options['load_stylesheet'] : true;
|
62 |
}
|
63 |
static
|
64 |
function UseClientValidation()
|
65 |
{
|
66 |
+
$options = get_option('cscf_options');
|
67 |
|
68 |
return isset($options['use_client_validation']) ? $options['use_client_validation'] : true;
|
69 |
}
|
70 |
static
|
71 |
function RecipientEmail()
|
72 |
{
|
73 |
+
$options = get_option('cscf_options');
|
74 |
|
75 |
return isset($options['recipient_email']) ? $options['recipient_email'] : get_bloginfo('admin_email');
|
76 |
}
|
78 |
static
|
79 |
function Subject()
|
80 |
{
|
81 |
+
$options = get_option('cscf_options');
|
82 |
|
83 |
return isset($options['subject']) ? $options['subject'] : get_bloginfo('name') . __(' - Web Enquiry','cleanandsimple');
|
84 |
}
|
85 |
+
|
86 |
+
static
|
87 |
+
function IsJetPackContactFormEnabled() {
|
88 |
+
//check for jetpack plugin
|
89 |
+
if ( ! is_plugin_active('jetpack/jetpack.php') )
|
90 |
+
return false;
|
91 |
+
|
92 |
+
//check we can use the jetpack method
|
93 |
+
if ( ! method_exists('JetPack', 'get_active_modules') )
|
94 |
+
return false;
|
95 |
+
|
96 |
+
//now check if it is in the active modules
|
97 |
+
return in_array( 'contact-form', JetPack::get_active_modules() );
|
98 |
+
|
99 |
+
}
|
100 |
}
|
101 |
|
class.cff_settings.php → class.cscf_settings.php
RENAMED
@@ -4,7 +4,7 @@
|
|
4 |
* creates the settings page for the plugin
|
5 |
*/
|
6 |
|
7 |
-
class
|
8 |
{
|
9 |
public
|
10 |
function __construct()
|
@@ -40,15 +40,23 @@ class cff_settings
|
|
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
|
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
|
47 |
<?php _e('leaving a review', 'cleanandsimple'); ?>
|
48 |
</a>
|
49 |
. <?php _e('Thank you!','cleanandsimple'); ?>
|
50 |
</p>
|
51 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
52 |
<?php
|
53 |
submit_button();
|
54 |
|
@@ -59,6 +67,15 @@ class cff_settings
|
|
59 |
submit_button();
|
60 |
?>
|
61 |
</form>
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
62 |
</div>
|
63 |
<?php
|
64 |
}
|
@@ -151,7 +168,7 @@ class cff_settings
|
|
151 |
public
|
152 |
function check_form($input)
|
153 |
{
|
154 |
-
$options = get_option(
|
155 |
|
156 |
//use_recaptcha
|
157 |
if (isset($input['use_recaptcha']))
|
@@ -204,7 +221,7 @@ class cff_settings
|
|
204 |
}
|
205 |
|
206 |
//update the options
|
207 |
-
update_option(
|
208 |
|
209 |
|
210 |
|
@@ -236,41 +253,41 @@ class cff_settings
|
|
236 |
switch ($fieldname)
|
237 |
{
|
238 |
case 'use_recaptcha':
|
239 |
-
$checked =
|
240 |
?><input type="checkbox" <?php echo $checked; ?> id="use_recaptcha" name="array_key[use_recaptcha]"><?php
|
241 |
break;
|
242 |
case 'load_stylesheet':
|
243 |
-
$checked =
|
244 |
?><input type="checkbox" <?php echo $checked; ?> id="load_stylesheet" name="array_key[load_stylesheet]"><?php
|
245 |
break;
|
246 |
case 'recaptcha_public_key':
|
247 |
-
$disabled =
|
248 |
-
?><input <?php echo $disabled; ?> type="text" size="60" id="recaptcha_public_key" name="array_key[recaptcha_public_key]" value="
|
249 |
break;
|
250 |
case 'recaptcha_private_key':
|
251 |
-
$disabled =
|
252 |
-
?><input <?php echo $disabled; ?> type="text" size="60" id="recaptcha_private_key" name="array_key[recaptcha_private_key]" value="
|
253 |
break;
|
254 |
case 'recipient_email':
|
255 |
-
?><input type="text" size="60" id="recipient_email" name="array_key[recipient_email]" value="
|
256 |
break;
|
257 |
case 'subject':
|
258 |
-
?><input type="text" size="60" id="subject" name="array_key[subject]" value="
|
259 |
break;
|
260 |
case 'sent_message_heading':
|
261 |
-
?><input type="text" size="60" id="sent_message_heading" name="array_key[sent_message_heading]" value="
|
262 |
break;
|
263 |
case 'sent_message_body':
|
264 |
-
?><textarea cols="63" rows="8" name="array_key[sent_message_body]"
|
265 |
break;
|
266 |
case 'message':
|
267 |
-
?><textarea cols="63" rows="8" name="array_key[message]"
|
268 |
break;
|
269 |
case 'theme':
|
270 |
-
$theme =
|
271 |
-
$disabled =
|
272 |
?>
|
273 |
-
<select <?php echo $disabled; ?> id="
|
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>
|
@@ -279,7 +296,7 @@ class cff_settings
|
|
279 |
<?php
|
280 |
break;
|
281 |
case 'use_client_validation':
|
282 |
-
$checked =
|
283 |
?><input type="checkbox" <?php echo $checked; ?> id="use_client_validation" name="array_key[use_client_validation]"><?php
|
284 |
break;
|
285 |
default:
|
4 |
* creates the settings page for the plugin
|
5 |
*/
|
6 |
|
7 |
+
class cscf_settings
|
8 |
{
|
9 |
public
|
10 |
function __construct()
|
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 CSCF_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 CSCF_PLUGIN_NAME; ?>">
|
47 |
<?php _e('leaving a review', 'cleanandsimple'); ?>
|
48 |
</a>
|
49 |
. <?php _e('Thank you!','cleanandsimple'); ?>
|
50 |
</p>
|
51 |
+
|
52 |
+
<?php if ( cscf_PluginSettings::IsJetPackContactFormEnabled() ) { ?>
|
53 |
+
<p class="highlight">
|
54 |
+
<?php _e('NOTICE: You have JetPack\'s Contact Form enabled please deactivate it or use the shortcode [cscf-contact-form] instead.','cleanandsimple'); ?>
|
55 |
+
<a target="_blank" href="http://www.megnicholas.co.uk/articles/clean-and-simple-contact-form-and-jetpack/"><?php _e('Read More');?></a>
|
56 |
+
</p>
|
57 |
+
<?php } ?>
|
58 |
+
|
59 |
+
<form method="post" action="options.php">
|
60 |
<?php
|
61 |
submit_button();
|
62 |
|
67 |
submit_button();
|
68 |
?>
|
69 |
</form>
|
70 |
+
|
71 |
+
<script>
|
72 |
+
jQuery('#use_recaptcha').change(function() {
|
73 |
+
jQuery('#theme').attr('disabled', ! this.checked);
|
74 |
+
jQuery('#recaptcha_public_key').attr('readonly', ! this.checked);
|
75 |
+
jQuery('#recaptcha_private_key').attr('readonly', ! this.checked);
|
76 |
+
});
|
77 |
+
|
78 |
+
</script>
|
79 |
</div>
|
80 |
<?php
|
81 |
}
|
168 |
public
|
169 |
function check_form($input)
|
170 |
{
|
171 |
+
$options = get_option(CSCF_OPTIONS_KEY);
|
172 |
|
173 |
//use_recaptcha
|
174 |
if (isset($input['use_recaptcha']))
|
221 |
}
|
222 |
|
223 |
//update the options
|
224 |
+
update_option(CSCF_OPTIONS_KEY, $options);
|
225 |
|
226 |
|
227 |
|
253 |
switch ($fieldname)
|
254 |
{
|
255 |
case 'use_recaptcha':
|
256 |
+
$checked = cscf_PluginSettings::UseRecaptcha() == true ? "checked" : "";
|
257 |
?><input type="checkbox" <?php echo $checked; ?> id="use_recaptcha" name="array_key[use_recaptcha]"><?php
|
258 |
break;
|
259 |
case 'load_stylesheet':
|
260 |
+
$checked = cscf_PluginSettings::LoadStyleSheet() == true ? "checked" : "";
|
261 |
?><input type="checkbox" <?php echo $checked; ?> id="load_stylesheet" name="array_key[load_stylesheet]"><?php
|
262 |
break;
|
263 |
case 'recaptcha_public_key':
|
264 |
+
$disabled = cscf_PluginSettings::UseRecaptcha() == false ? "readonly" : "";
|
265 |
+
?><input <?php echo $disabled; ?> type="text" size="60" id="recaptcha_public_key" name="array_key[recaptcha_public_key]" value="<?php echo cscf_PluginSettings::PublicKey(); ?>" /><?php
|
266 |
break;
|
267 |
case 'recaptcha_private_key':
|
268 |
+
$disabled = cscf_PluginSettings::UseRecaptcha() == false ? "readonly" : "";
|
269 |
+
?><input <?php echo $disabled; ?> type="text" size="60" id="recaptcha_private_key" name="array_key[recaptcha_private_key]" value="<?php echo cscf_PluginSettings::PrivateKey(); ?>" /><?php
|
270 |
break;
|
271 |
case 'recipient_email':
|
272 |
+
?><input type="text" size="60" id="recipient_email" name="array_key[recipient_email]" value="<?php echo cscf_PluginSettings::RecipientEmail(); ?>" /><?php
|
273 |
break;
|
274 |
case 'subject':
|
275 |
+
?><input type="text" size="60" id="subject" name="array_key[subject]" value="<?php echo cscf_PluginSettings::Subject(); ?>" /><?php
|
276 |
break;
|
277 |
case 'sent_message_heading':
|
278 |
+
?><input type="text" size="60" id="sent_message_heading" name="array_key[sent_message_heading]" value="<?php echo cscf_PluginSettings::SentMessageHeading(); ?>" /><?php
|
279 |
break;
|
280 |
case 'sent_message_body':
|
281 |
+
?><textarea cols="63" rows="8" name="array_key[sent_message_body]"><?php echo cscf_PluginSettings::SentMessageBody(); ?></textarea><?php
|
282 |
break;
|
283 |
case 'message':
|
284 |
+
?><textarea cols="63" rows="8" name="array_key[message]"><?php echo cscf_PluginSettings::Message(); ?></textarea><?php
|
285 |
break;
|
286 |
case 'theme':
|
287 |
+
$theme = cscf_PluginSettings::Theme();
|
288 |
+
$disabled = cscf_PluginSettings::UseRecaptcha() == false ? "disabled" : "";
|
289 |
?>
|
290 |
+
<select <?php echo $disabled; ?> id="theme" name="array_key[theme]">
|
291 |
<option <?php echo $theme == "red" ? "selected" : ""; ?> value="red"><?php _e('Red', 'cleanandsimple'); ?></option>
|
292 |
<option <?php echo $theme == "white" ? "selected" : ""; ?> value="white"><?php _e('White','cleanandsimple'); ?></option>
|
293 |
<option <?php echo $theme == "blackglass" ? "selected" : ""; ?> value="blackglass"><?php _e('Blackglass', 'cleanandsimple'); ?></option>
|
296 |
<?php
|
297 |
break;
|
298 |
case 'use_client_validation':
|
299 |
+
$checked = cscf_PluginSettings::UseClientValidation() == true ? "checked" : "";
|
300 |
?><input type="checkbox" <?php echo $checked; ?> id="use_client_validation" name="array_key[use_client_validation]"><?php
|
301 |
break;
|
302 |
default:
|
class.view.php
CHANGED
@@ -1,6 +1,6 @@
|
|
1 |
<?php
|
2 |
|
3 |
-
class
|
4 |
{
|
5 |
/**
|
6 |
* Path of the view to render
|
@@ -17,13 +17,13 @@ class CFF_View
|
|
17 |
function __construct($view)
|
18 |
{
|
19 |
|
20 |
-
if (file_exists(
|
21 |
{
|
22 |
-
$this->view =
|
23 |
}
|
24 |
else
|
25 |
{
|
26 |
-
wp_die(__("View " .
|
27 |
}
|
28 |
}
|
29 |
/**
|
1 |
<?php
|
2 |
|
3 |
+
class CSCF_View
|
4 |
{
|
5 |
/**
|
6 |
* Path of the view to render
|
17 |
function __construct($view)
|
18 |
{
|
19 |
|
20 |
+
if (file_exists(CSCF_PLUGIN_DIR . "/views/" . $view . ".view.php"))
|
21 |
{
|
22 |
+
$this->view = CSCF_PLUGIN_DIR . "/views/" . $view . ".view.php";
|
23 |
}
|
24 |
else
|
25 |
{
|
26 |
+
wp_die(__("View " . CSCF_PLUGIN_URL . "/views/" . $view . ".view.php" . " not found"));
|
27 |
}
|
28 |
}
|
29 |
/**
|
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
|
@@ -33,30 +33,30 @@ Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
|
|
33 |
* @package Main
|
34 |
*/
|
35 |
include ('shortcodes/contact-form.php');
|
36 |
-
include ('class.
|
37 |
-
include ('class.
|
38 |
-
include ('class.
|
39 |
-
include ('class.
|
40 |
include ('class.view.php');
|
41 |
-
include ('class.
|
42 |
|
43 |
-
if (
|
44 |
|
45 |
-
if (!defined('
|
46 |
|
47 |
-
if (!defined('
|
48 |
|
49 |
-
if (!defined('
|
50 |
|
51 |
-
if (!defined('
|
52 |
|
53 |
-
if (!defined('
|
54 |
|
55 |
-
if (!defined('
|
56 |
|
57 |
-
if (!defined('
|
58 |
|
59 |
-
update_option(
|
60 |
|
61 |
-
$
|
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.2
|
11 |
Author: Meghan Nicholas
|
12 |
Author URI: http://www.megnicholas.co.uk
|
13 |
License: GPLv2 or later
|
33 |
* @package Main
|
34 |
*/
|
35 |
include ('shortcodes/contact-form.php');
|
36 |
+
include ('class.cscf.php');
|
37 |
+
include ('class.cscf_pluginsettings.php');
|
38 |
+
include ('class.cscf_settings.php');
|
39 |
+
include ('class.cscf_contact.php');
|
40 |
include ('class.view.php');
|
41 |
+
include ('class.cscf_filters.php');
|
42 |
|
43 |
+
if (cscf_PluginSettings::UseRecaptcha()) include ('recaptcha-php-1.11/recaptchalib.php');
|
44 |
|
45 |
+
if (!defined('CSCF_THEME_DIR')) define('CSCF_THEME_DIR', ABSPATH . 'wp-content/themes/' . get_template());
|
46 |
|
47 |
+
if (!defined('CSCF_PLUGIN_NAME')) define('CSCF_PLUGIN_NAME', 'clean-and-simple-contact-form-by-meg-nicholas');
|
48 |
|
49 |
+
if (!defined('CSCF_PLUGIN_DIR')) define('CSCF_PLUGIN_DIR', WP_PLUGIN_DIR . '/' . CSCF_PLUGIN_NAME);
|
50 |
|
51 |
+
if (!defined('CSCF_PLUGIN_URL')) define('CSCF_PLUGIN_URL', WP_PLUGIN_URL . '/' . CSCF_PLUGIN_NAME);
|
52 |
|
53 |
+
if (!defined('CSCF_VERSION_KEY')) define('CSCF_VERSION_KEY', 'cscf_version');
|
54 |
|
55 |
+
if (!defined('CSCF_VERSION_NUM')) define('CSCF_VERSION_NUM', '4.1.2');
|
56 |
|
57 |
+
if (!defined('CSCF_OPTIONS_KEY')) define('CSCF_OPTIONS_KEY', 'cscf_options');
|
58 |
|
59 |
+
update_option(CSCF_VERSION_KEY, CSCF_VERSION_NUM);
|
60 |
|
61 |
+
$cscf = new cscf();
|
62 |
|
js/jquery.validate.contact.form.js
CHANGED
@@ -4,13 +4,13 @@
|
|
4 |
|
5 |
jQuery(document).ready(function($) {
|
6 |
|
7 |
-
$('#
|
8 |
-
return $('#
|
9 |
//alert('here');
|
10 |
});
|
11 |
|
12 |
|
13 |
-
$('#
|
14 |
|
15 |
errorElement: 'span',
|
16 |
errorClass: 'help-inline',
|
4 |
|
5 |
jQuery(document).ready(function($) {
|
6 |
|
7 |
+
$('#frmCSCF').submit(function() {
|
8 |
+
return $('#frmCSCF').valid();
|
9 |
//alert('here');
|
10 |
});
|
11 |
|
12 |
|
13 |
+
$('#frmCSCF').validate({
|
14 |
|
15 |
errorElement: 'span',
|
16 |
errorClass: 'help-inline',
|
languages/cleanandsimple-da_DK.mo
ADDED
Binary file
|
languages/cleanandsimple-da_DK.po
ADDED
@@ -0,0 +1,262 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
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\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-20 08:37:17+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-07-08 23:16+0100\n"
|
13 |
+
"Last-Translator: Mike Larsen <mike@hockeycorner.dk>\n"
|
14 |
+
"Language-Team: LANGUAGE <LL@li.org>\n"
|
15 |
+
"X-Generator: Poedit 1.5.7\n"
|
16 |
+
|
17 |
+
#: class.cscf.php:102
|
18 |
+
msgid "Settings"
|
19 |
+
msgstr "Indstillinger"
|
20 |
+
|
21 |
+
#: class.cscf_contact.php:53
|
22 |
+
msgid "Sorry the email addresses do not match."
|
23 |
+
msgstr "Beklager, men mail-adresserne er ikke ens."
|
24 |
+
|
25 |
+
#: class.cscf_contact.php:57 views/contact-form-with-recaptcha.view.php:33
|
26 |
+
#: views/contact-form.view.php:14
|
27 |
+
msgid "Please give your email address."
|
28 |
+
msgstr "Skriv din mail-adresse."
|
29 |
+
|
30 |
+
#: class.cscf_contact.php:61
|
31 |
+
msgid "Please confirm your email address."
|
32 |
+
msgstr "Bekræft venligst din mail-adresse."
|
33 |
+
|
34 |
+
#: class.cscf_contact.php:65 views/contact-form-with-recaptcha.view.php:53
|
35 |
+
#: views/contact-form.view.php:34
|
36 |
+
msgid "Please give your name."
|
37 |
+
msgstr "Skriv dit navn."
|
38 |
+
|
39 |
+
#: class.cscf_contact.php:69
|
40 |
+
msgid "Please enter a message."
|
41 |
+
msgstr "Skriv besked."
|
42 |
+
|
43 |
+
#: class.cscf_contact.php:73 views/contact-form-with-recaptcha.view.php:33
|
44 |
+
#: views/contact-form.view.php:14
|
45 |
+
msgid "Please enter a valid email address."
|
46 |
+
msgstr "Skriv en gyldig mail-adresse."
|
47 |
+
|
48 |
+
#: class.cscf_contact.php:81
|
49 |
+
msgid "Sorry the code wasn't entered correctly please try again."
|
50 |
+
msgstr "Beklager, men koden var forkert. Prøv igen."
|
51 |
+
|
52 |
+
#: class.cscf_pluginsettings.php:40
|
53 |
+
msgid "Message Sent"
|
54 |
+
msgstr "Besked sendt"
|
55 |
+
|
56 |
+
#: class.cscf_pluginsettings.php:47
|
57 |
+
msgid "Thank you for your message, we will be in touch very shortly."
|
58 |
+
msgstr "Tak for din meddelelse. Vi vender tilbage hurtigt muligt."
|
59 |
+
|
60 |
+
#: class.cscf_pluginsettings.php:54
|
61 |
+
msgid ""
|
62 |
+
"Please enter your contact details and a short message below and I will try "
|
63 |
+
"to answer your query as soon as possible."
|
64 |
+
msgstr ""
|
65 |
+
"Udfyld formularen med en kort besked, og vi vender tilbage hurtigst muligt."
|
66 |
+
|
67 |
+
#: class.cscf_pluginsettings.php:83
|
68 |
+
msgid " - Web Enquiry"
|
69 |
+
msgstr "Kontakt formular"
|
70 |
+
|
71 |
+
#: class.cscf_settings.php:41
|
72 |
+
msgid "Clean and Simple Contact Form Settings"
|
73 |
+
msgstr "Indstillinger for Clean and Simple Contact Form"
|
74 |
+
|
75 |
+
#: class.cscf_settings.php:43
|
76 |
+
msgid "You are using version"
|
77 |
+
msgstr "Du bruger version"
|
78 |
+
|
79 |
+
#: class.cscf_settings.php:44
|
80 |
+
msgid "If you find this plugin useful please consider"
|
81 |
+
msgstr "Hvis du finder dette plugin nyttigt, overvej venligst at"
|
82 |
+
|
83 |
+
#: class.cscf_settings.php:47
|
84 |
+
msgid "leaving a review"
|
85 |
+
msgstr "give en bedømmelse"
|
86 |
+
|
87 |
+
#: class.cscf_settings.php:49
|
88 |
+
msgid "Thank you!"
|
89 |
+
msgstr "På forhånd tak!"
|
90 |
+
|
91 |
+
#: class.cscf_settings.php:68
|
92 |
+
msgid "ReCAPTCHA Settings"
|
93 |
+
msgstr "Indstillinger for ReCAPTCHA:"
|
94 |
+
|
95 |
+
#: class.cscf_settings.php:76
|
96 |
+
msgid "Use reCAPTCHA :"
|
97 |
+
msgstr "Brug reCAPTCHA:"
|
98 |
+
|
99 |
+
#: class.cscf_settings.php:82
|
100 |
+
msgid "reCAPTCHA Theme :"
|
101 |
+
msgstr "reCAPTCHA tema :"
|
102 |
+
|
103 |
+
#: class.cscf_settings.php:88
|
104 |
+
msgid "reCAPTCHA Public Key :"
|
105 |
+
msgstr "reCAPTCHA Public Key :"
|
106 |
+
|
107 |
+
#: class.cscf_settings.php:94
|
108 |
+
msgid "reCAPTCHA Private Key :"
|
109 |
+
msgstr "reCAPTCHA Private Key :"
|
110 |
+
|
111 |
+
#: class.cscf_settings.php:100
|
112 |
+
msgid "Message Settings"
|
113 |
+
msgstr "Indstillinger for mails:"
|
114 |
+
|
115 |
+
#: class.cscf_settings.php:104
|
116 |
+
msgid "Recipient Email :"
|
117 |
+
msgstr "Din email adresse:"
|
118 |
+
|
119 |
+
#: class.cscf_settings.php:110
|
120 |
+
msgid "Email Subject :"
|
121 |
+
msgstr "Tekst i emnefelt:"
|
122 |
+
|
123 |
+
#: class.cscf_settings.php:116
|
124 |
+
msgid "Message :"
|
125 |
+
msgstr "Besked:"
|
126 |
+
|
127 |
+
#: class.cscf_settings.php:122
|
128 |
+
msgid "Message Sent Heading :"
|
129 |
+
msgstr "Overskrift for sendt besked:"
|
130 |
+
|
131 |
+
#: class.cscf_settings.php:128
|
132 |
+
msgid "Message Sent Content :"
|
133 |
+
msgstr "Indhold for sendt besked:"
|
134 |
+
|
135 |
+
#: class.cscf_settings.php:134
|
136 |
+
msgid "Styling and Validation"
|
137 |
+
msgstr "Udseende og validering"
|
138 |
+
|
139 |
+
#: class.cscf_settings.php:138
|
140 |
+
msgid ""
|
141 |
+
"Use the plugin default stylesheet (un-tick to use your theme style sheet "
|
142 |
+
"instead) :"
|
143 |
+
msgstr ""
|
144 |
+
"Brug standard temaet for dette plugin (fjern flueben for at bruge dit "
|
145 |
+
"standard tema i stedet):"
|
146 |
+
|
147 |
+
#: class.cscf_settings.php:144
|
148 |
+
msgid "Use client side validation (AJAX) :"
|
149 |
+
msgstr "Brug AJAX validering:"
|
150 |
+
|
151 |
+
#: class.cscf_settings.php:216
|
152 |
+
msgid "Enter your reCAPTCHA settings below :"
|
153 |
+
msgstr "Udfyld med dine reCAPTCHA indstillinger"
|
154 |
+
|
155 |
+
#: class.cscf_settings.php:217
|
156 |
+
msgid "To use reCAPTCHA you must get an API key from"
|
157 |
+
msgstr "For at bruge reCAPTCHA skal du have en API nøgle fra"
|
158 |
+
|
159 |
+
#: class.cscf_settings.php:222
|
160 |
+
msgid "Enter your message settings below :"
|
161 |
+
msgstr "Udfyld med dine indstillinger for mails:"
|
162 |
+
|
163 |
+
#: class.cscf_settings.php:274
|
164 |
+
msgid "Red"
|
165 |
+
msgstr "Rød"
|
166 |
+
|
167 |
+
#: class.cscf_settings.php:275
|
168 |
+
msgid "White"
|
169 |
+
msgstr "Hvid"
|
170 |
+
|
171 |
+
#: class.cscf_settings.php:276
|
172 |
+
msgid "Blackglass"
|
173 |
+
msgstr "Gennemsigtig"
|
174 |
+
|
175 |
+
#: class.cscf_settings.php:277
|
176 |
+
msgid "Clean"
|
177 |
+
msgstr "Ren"
|
178 |
+
|
179 |
+
#: views/contact-form-with-recaptcha.view.php:31
|
180 |
+
#: views/contact-form.view.php:12
|
181 |
+
msgid "Email Address:"
|
182 |
+
msgstr "Din mail-adresse:"
|
183 |
+
|
184 |
+
#: views/contact-form-with-recaptcha.view.php:33
|
185 |
+
#: views/contact-form.view.php:14
|
186 |
+
msgid "Your Email Address"
|
187 |
+
msgstr "Din mail-adresse"
|
188 |
+
|
189 |
+
#: views/contact-form-with-recaptcha.view.php:41
|
190 |
+
#: views/contact-form.view.php:22
|
191 |
+
msgid "Confirm Email Address:"
|
192 |
+
msgstr "Bekræft din mail-adresse:"
|
193 |
+
|
194 |
+
#: views/contact-form-with-recaptcha.view.php:43
|
195 |
+
#: views/contact-form.view.php:24
|
196 |
+
msgid "Please enter the same email address again."
|
197 |
+
msgstr "Skriv venligst den samme mail-adresse igen."
|
198 |
+
|
199 |
+
#: views/contact-form-with-recaptcha.view.php:43
|
200 |
+
#: views/contact-form.view.php:24
|
201 |
+
msgid "Confirm Your Email Address"
|
202 |
+
msgstr "Bekræft din mail-adresse"
|
203 |
+
|
204 |
+
#: views/contact-form-with-recaptcha.view.php:51
|
205 |
+
#: views/contact-form.view.php:32
|
206 |
+
msgid "Name:"
|
207 |
+
msgstr "Dit navn:"
|
208 |
+
|
209 |
+
#: views/contact-form-with-recaptcha.view.php:53
|
210 |
+
#: views/contact-form.view.php:34
|
211 |
+
msgid "Your Name"
|
212 |
+
msgstr "Dit navn"
|
213 |
+
|
214 |
+
#: views/contact-form-with-recaptcha.view.php:61
|
215 |
+
#: views/contact-form.view.php:42
|
216 |
+
msgid "Message:"
|
217 |
+
msgstr "Din besked:"
|
218 |
+
|
219 |
+
#: views/contact-form-with-recaptcha.view.php:63
|
220 |
+
#: views/contact-form.view.php:44
|
221 |
+
msgid "Please give a message."
|
222 |
+
msgstr "Skriv en besked."
|
223 |
+
|
224 |
+
#: views/contact-form-with-recaptcha.view.php:63
|
225 |
+
#: views/contact-form.view.php:44
|
226 |
+
msgid "Your Message"
|
227 |
+
msgstr "Din besked"
|
228 |
+
|
229 |
+
#: views/contact-form-with-recaptcha.view.php:79
|
230 |
+
#: views/contact-form.view.php:51
|
231 |
+
msgid "Send Message"
|
232 |
+
msgstr "Send besked"
|
233 |
+
|
234 |
+
#: views/message-not-sent.view.php:1
|
235 |
+
msgid "Sorry, there has been a problem and your message was not sent."
|
236 |
+
msgstr "Beklager, men der er sket en fejl, og din besked blev ikke sendt."
|
237 |
+
|
238 |
+
#. Plugin Name of the plugin/theme
|
239 |
+
msgid "Clean and Simple Contact Form"
|
240 |
+
msgstr "Clean and Simple Contact Form"
|
241 |
+
|
242 |
+
#. Plugin URI of the plugin/theme
|
243 |
+
msgid ""
|
244 |
+
"http://www.megnicholas.co.uk/wordpress-plugins/clean-and-simple-contact-form"
|
245 |
+
msgstr ""
|
246 |
+
"http://www.megnicholas.co.uk/wordpress-plugins/clean-and-simple-contact-form"
|
247 |
+
|
248 |
+
#. Description of the plugin/theme
|
249 |
+
msgid ""
|
250 |
+
"A clean and simple contact form with Google reCAPTCHA and Twitter Bootstrap "
|
251 |
+
"markup."
|
252 |
+
msgstr ""
|
253 |
+
"En meget simpel kontakt formular med Google reCAPTCHA og Twitter Bootstrap "
|
254 |
+
"markering."
|
255 |
+
|
256 |
+
#. Author of the plugin/theme
|
257 |
+
msgid "Meghan Nicholas"
|
258 |
+
msgstr "Meghan Nicholas"
|
259 |
+
|
260 |
+
#. Author URI of the plugin/theme
|
261 |
+
msgid "http://www.megnicholas.co.uk"
|
262 |
+
msgstr "http://www.megnicholas.co.uk"
|
languages/cleanandsimple-de_DE.mo
CHANGED
Binary file
|
languages/cleanandsimple-de_DE.po
CHANGED
@@ -21,36 +21,34 @@ msgstr "Einstellungen"
|
|
21 |
|
22 |
#: class.cff_contact.php:55
|
23 |
msgid "Sorry the email addresses do not match."
|
24 |
-
msgstr "
|
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
|
30 |
|
31 |
#: class.cff_contact.php:63
|
32 |
msgid "Please confirm your email address."
|
33 |
-
msgstr "Bitte
|
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
|
39 |
|
40 |
#: class.cff_contact.php:71
|
41 |
msgid "Please enter a message."
|
42 |
-
msgstr "Bitte
|
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
|
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"
|
@@ -58,16 +56,13 @@ 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"
|
@@ -79,11 +74,11 @@ msgstr "Clean and Simple Contact Form Einstellungen"
|
|
79 |
|
80 |
#: class.cff_settings.php:43
|
81 |
msgid "You are using version"
|
82 |
-
msgstr "
|
83 |
|
84 |
#: class.cff_settings.php:44
|
85 |
msgid "If you find this plugin useful please consider"
|
86 |
-
msgstr "Falls
|
87 |
|
88 |
#: class.cff_settings.php:47
|
89 |
msgid "leaving a review"
|
@@ -91,7 +86,7 @@ msgstr "eine Bewertung"
|
|
91 |
|
92 |
#: class.cff_settings.php:49
|
93 |
msgid "Thank you!"
|
94 |
-
msgstr "Danke
|
95 |
|
96 |
#: class.cff_settings.php:68
|
97 |
msgid "ReCAPTCHA Settings"
|
@@ -119,7 +114,7 @@ msgstr "Nachrichten-Einstellungen"
|
|
119 |
|
120 |
#: class.cff_settings.php:104
|
121 |
msgid "Recipient Email :"
|
122 |
-
msgstr "Empfänger-
|
123 |
|
124 |
#: class.cff_settings.php:110
|
125 |
msgid "Email Subject :"
|
@@ -139,14 +134,14 @@ msgstr "Nachricht gesendet, Text:"
|
|
139 |
|
140 |
#: class.cff_settings.php:134
|
141 |
msgid "Styling and Validation"
|
142 |
-
msgstr "
|
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
|
150 |
"stattdessen zu nutzen) :"
|
151 |
|
152 |
#: class.cff_settings.php:144
|
@@ -156,11 +151,11 @@ msgstr "Nutze benutzerseitige Prüfung (AJAX):"
|
|
156 |
#: class.cff_settings.php:216
|
157 |
msgid "Enter your reCAPTCHA settings below :"
|
158 |
msgstr ""
|
159 |
-
"
|
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
|
164 |
|
165 |
#: class.cff_settings.php:222
|
166 |
msgid "Enter your message settings below :"
|
@@ -185,27 +180,27 @@ msgstr "Einfach"
|
|
185 |
#: views/contact-form-with-recaptcha.view.php:27
|
186 |
#: views/contact-form.view.php:12
|
187 |
msgid "Email Address:"
|
188 |
-
msgstr "
|
189 |
|
190 |
#: views/contact-form-with-recaptcha.view.php:29
|
191 |
#: views/contact-form.view.php:14
|
192 |
msgid "Your Email Address"
|
193 |
-
msgstr "
|
194 |
|
195 |
#: views/contact-form-with-recaptcha.view.php:37
|
196 |
#: views/contact-form.view.php:22
|
197 |
msgid "Confirm Email Address:"
|
198 |
-
msgstr "
|
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
|
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 "
|
209 |
|
210 |
#: views/contact-form-with-recaptcha.view.php:47
|
211 |
#: views/contact-form.view.php:32
|
@@ -215,7 +210,7 @@ msgstr "Name:"
|
|
215 |
#: views/contact-form-with-recaptcha.view.php:49
|
216 |
#: views/contact-form.view.php:34
|
217 |
msgid "Your Name"
|
218 |
-
msgstr "
|
219 |
|
220 |
#: views/contact-form-with-recaptcha.view.php:57
|
221 |
#: views/contact-form.view.php:42
|
@@ -225,12 +220,12 @@ msgstr "Nachricht:"
|
|
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
|
229 |
|
230 |
#: views/contact-form-with-recaptcha.view.php:59
|
231 |
#: views/contact-form.view.php:44
|
232 |
msgid "Your Message"
|
233 |
-
msgstr "
|
234 |
|
235 |
#: views/contact-form-with-recaptcha.view.php:75
|
236 |
#: views/contact-form.view.php:51
|
@@ -239,9 +234,7 @@ 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
|
@@ -251,8 +244,7 @@ msgstr "Clean and Simple Contact Form"
|
|
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
|
21 |
|
22 |
#: class.cff_contact.php:55
|
23 |
msgid "Sorry the email addresses do not match."
|
24 |
+
msgstr "Die E-Mail-Adressen 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 geben Sie Ihre E-Mail-Adresse ein."
|
30 |
|
31 |
#: class.cff_contact.php:63
|
32 |
msgid "Please confirm your email address."
|
33 |
+
msgstr "Bitte bestätigen Sie Ihre E-Mail-Adresse."
|
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 geben Sie Ihren Namen ein."
|
39 |
|
40 |
#: class.cff_contact.php:71
|
41 |
msgid "Please enter a message."
|
42 |
+
msgstr "Bitte geben Sie Ihre 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 geben Sie eine gültige E-Mail-Adresse an."
|
48 |
|
49 |
#: class.cff_contact.php:83
|
50 |
msgid "Sorry the code wasn't entered correctly please try again."
|
51 |
+
msgstr "Der eingegebene Code stimmt nicht überein. Bitte versuchen Sie es nochmals."
|
|
|
|
|
52 |
|
53 |
#: class.cff_pluginsettings.php:40
|
54 |
msgid "Message Sent"
|
56 |
|
57 |
#: class.cff_pluginsettings.php:47
|
58 |
msgid "Thank you for your message, we will be in touch very shortly."
|
59 |
+
msgstr "Danke für Ihre Nachricht, Sie werden sobald wie möglich eine Antwort erhalten."
|
|
|
60 |
|
61 |
#: class.cff_pluginsettings.php:54
|
62 |
msgid ""
|
63 |
"Please enter your contact details and a short message below and I will try "
|
64 |
"to answer your query as soon as possible."
|
65 |
+
msgstr "Bitte geben Sie Ihre Kontaktdaten und Ihre Nachricht unten ein. Wir werden uns so schnell wie möglich um Ihre Anfrage kümmern."
|
|
|
|
|
66 |
|
67 |
#: class.cff_pluginsettings.php:83
|
68 |
msgid " - Web Enquiry"
|
74 |
|
75 |
#: class.cff_settings.php:43
|
76 |
msgid "You are using version"
|
77 |
+
msgstr "Sie benutzen Version"
|
78 |
|
79 |
#: class.cff_settings.php:44
|
80 |
msgid "If you find this plugin useful please consider"
|
81 |
+
msgstr "Falls Sie dieses Plugin nützlich finden, schreiben Sie bitte"
|
82 |
|
83 |
#: class.cff_settings.php:47
|
84 |
msgid "leaving a review"
|
86 |
|
87 |
#: class.cff_settings.php:49
|
88 |
msgid "Thank you!"
|
89 |
+
msgstr "Danke!"
|
90 |
|
91 |
#: class.cff_settings.php:68
|
92 |
msgid "ReCAPTCHA Settings"
|
114 |
|
115 |
#: class.cff_settings.php:104
|
116 |
msgid "Recipient Email :"
|
117 |
+
msgstr "Empfänger E-Mail-Adresse:"
|
118 |
|
119 |
#: class.cff_settings.php:110
|
120 |
msgid "Email Subject :"
|
134 |
|
135 |
#: class.cff_settings.php:134
|
136 |
msgid "Styling and Validation"
|
137 |
+
msgstr "Darstellung und Überprüfung"
|
138 |
|
139 |
#: class.cff_settings.php:138
|
140 |
msgid ""
|
141 |
"Use the plugin default stylesheet (un-tick to use your theme style sheet "
|
142 |
"instead) :"
|
143 |
msgstr ""
|
144 |
+
"Nutze das plugin-eigene Stylesheet (abwählen, um dein Theme-Stylesheet "
|
145 |
"stattdessen zu nutzen) :"
|
146 |
|
147 |
#: class.cff_settings.php:144
|
151 |
#: class.cff_settings.php:216
|
152 |
msgid "Enter your reCAPTCHA settings below :"
|
153 |
msgstr ""
|
154 |
+
"Geben Sie die erforderlichen Daten unten ein, um reCAPTCHA verwenden zu können:"
|
155 |
|
156 |
#: class.cff_settings.php:217
|
157 |
msgid "To use reCAPTCHA you must get an API key from"
|
158 |
+
msgstr "Um reCAPTCHA nutzen zu können, muss ein API-Key generiert werden bei:"
|
159 |
|
160 |
#: class.cff_settings.php:222
|
161 |
msgid "Enter your message settings below :"
|
180 |
#: views/contact-form-with-recaptcha.view.php:27
|
181 |
#: views/contact-form.view.php:12
|
182 |
msgid "Email Address:"
|
183 |
+
msgstr "E-Mail-Adresse:"
|
184 |
|
185 |
#: views/contact-form-with-recaptcha.view.php:29
|
186 |
#: views/contact-form.view.php:14
|
187 |
msgid "Your Email Address"
|
188 |
+
msgstr "Ihre E-Mail-Adresse"
|
189 |
|
190 |
#: views/contact-form-with-recaptcha.view.php:37
|
191 |
#: views/contact-form.view.php:22
|
192 |
msgid "Confirm Email Address:"
|
193 |
+
msgstr "E-Mail-Adresse bestätigen:"
|
194 |
|
195 |
#: views/contact-form-with-recaptcha.view.php:39
|
196 |
#: views/contact-form.view.php:24
|
197 |
msgid "Please enter the same email address again."
|
198 |
+
msgstr "Bitte geben Sie Ihre E-Mail-Adresse nochmals ein."
|
199 |
|
200 |
#: views/contact-form-with-recaptcha.view.php:39
|
201 |
#: views/contact-form.view.php:24
|
202 |
msgid "Confirm Your Email Address"
|
203 |
+
msgstr "Bestätigen Sie Ihre E-Mail-Adresse"
|
204 |
|
205 |
#: views/contact-form-with-recaptcha.view.php:47
|
206 |
#: views/contact-form.view.php:32
|
210 |
#: views/contact-form-with-recaptcha.view.php:49
|
211 |
#: views/contact-form.view.php:34
|
212 |
msgid "Your Name"
|
213 |
+
msgstr "Ihr Name"
|
214 |
|
215 |
#: views/contact-form-with-recaptcha.view.php:57
|
216 |
#: views/contact-form.view.php:42
|
220 |
#: views/contact-form-with-recaptcha.view.php:59
|
221 |
#: views/contact-form.view.php:44
|
222 |
msgid "Please give a message."
|
223 |
+
msgstr "Bitte geben Sie Ihre Nachricht ein."
|
224 |
|
225 |
#: views/contact-form-with-recaptcha.view.php:59
|
226 |
#: views/contact-form.view.php:44
|
227 |
msgid "Your Message"
|
228 |
+
msgstr "Ihre Nachricht"
|
229 |
|
230 |
#: views/contact-form-with-recaptcha.view.php:75
|
231 |
#: views/contact-form.view.php:51
|
234 |
|
235 |
#: views/message-not-sent.view.php:1
|
236 |
msgid "Sorry, there has been a problem and your message was not sent."
|
237 |
+
msgstr "Entschuldigung, es ist ein Fehler aufgetreten und die Nachricht wurde nicht gesendet."
|
|
|
|
|
238 |
|
239 |
# Plugin Name des plugin/theme
|
240 |
#. Plugin Name of the plugin/theme
|
244 |
#. Plugin URI of the plugin/theme
|
245 |
msgid ""
|
246 |
"http://www.megnicholas.co.uk/wordpress-plugins/clean-and-simple-contact-form"
|
247 |
+
msgstr "http://www.megnicholas.co.uk/wordpress-plugins/clean-and-simple-contact-form"
|
|
|
248 |
|
249 |
# Beschreibung des plugin/theme
|
250 |
#. Description of the plugin/theme
|
languages/cleanandsimple-es_ES.mo
ADDED
Binary file
|
languages/cleanandsimple-es_ES.po
ADDED
@@ -0,0 +1,264 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
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-07-13 22:37-0500\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 "Ajustes"
|
20 |
+
|
21 |
+
#: class.cff_contact.php:55
|
22 |
+
msgid "Sorry the email addresses do not match."
|
23 |
+
msgstr "Lo sentimos las direcciones de correo electrónico no coinciden."
|
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 "Porfavor ingresa tu correo electrónico"
|
29 |
+
|
30 |
+
#: class.cff_contact.php:63
|
31 |
+
msgid "Please confirm your email address."
|
32 |
+
msgstr "Porfavor confirma tu correo electrónico."
|
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 "Porfavor ingresa tu nombre."
|
38 |
+
|
39 |
+
#: class.cff_contact.php:71
|
40 |
+
msgid "Please enter a message."
|
41 |
+
msgstr "Porfavor ingresa un mensaje."
|
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 "Porfavor ingresa una direccion de correo electrónico valida."
|
47 |
+
|
48 |
+
#: class.cff_contact.php:83
|
49 |
+
msgid "Sorry the code wasn't entered correctly please try again."
|
50 |
+
msgstr ""
|
51 |
+
"Lo sentimos el codigo ingresado no es correcto, porfavor intenta de nuevo."
|
52 |
+
|
53 |
+
#: class.cff_pluginsettings.php:40
|
54 |
+
msgid "Message Sent"
|
55 |
+
msgstr "Mensaje enviado"
|
56 |
+
|
57 |
+
#: class.cff_pluginsettings.php:47
|
58 |
+
msgid "Thank you for your message, we will be in touch very shortly."
|
59 |
+
msgstr "Gracias por su mensaje, estaremos en contacto muy pronto."
|
60 |
+
|
61 |
+
#: class.cff_pluginsettings.php:54
|
62 |
+
msgid ""
|
63 |
+
"Please enter your contact details and a short message below and I will try "
|
64 |
+
"to answer your query as soon as possible."
|
65 |
+
msgstr ""
|
66 |
+
"Ingresa tus datos de contacto, un mensaje corto abajo y te contestaremos lo "
|
67 |
+
"mas pronto posible."
|
68 |
+
|
69 |
+
#: class.cff_pluginsettings.php:83
|
70 |
+
msgid " - Web Enquiry"
|
71 |
+
msgstr "- Pregunta Web"
|
72 |
+
|
73 |
+
#: class.cff_settings.php:41
|
74 |
+
msgid "Clean and Simple Contact Form Settings"
|
75 |
+
msgstr "Ajustes de Clean and Simple Contact Form"
|
76 |
+
|
77 |
+
#: class.cff_settings.php:43
|
78 |
+
msgid "You are using version"
|
79 |
+
msgstr "Estas usando la version"
|
80 |
+
|
81 |
+
#: class.cff_settings.php:44
|
82 |
+
msgid "If you find this plugin useful please consider"
|
83 |
+
msgstr "Si encuentras este plugin útil porfavor considera"
|
84 |
+
|
85 |
+
#: class.cff_settings.php:47
|
86 |
+
msgid "leaving a review"
|
87 |
+
msgstr "dejar una reseña"
|
88 |
+
|
89 |
+
#: class.cff_settings.php:49
|
90 |
+
msgid "Thank you!"
|
91 |
+
msgstr "Gracias!"
|
92 |
+
|
93 |
+
#: class.cff_settings.php:68
|
94 |
+
msgid "ReCAPTCHA Settings"
|
95 |
+
msgstr "Ajustes ReCAPTCHA "
|
96 |
+
|
97 |
+
#: class.cff_settings.php:76
|
98 |
+
msgid "Use reCAPTCHA :"
|
99 |
+
msgstr "Usa ReCAPTCHA :"
|
100 |
+
|
101 |
+
#: class.cff_settings.php:82
|
102 |
+
msgid "reCAPTCHA Theme :"
|
103 |
+
msgstr "Tema reCAPTCHA :"
|
104 |
+
|
105 |
+
#: class.cff_settings.php:88
|
106 |
+
msgid "reCAPTCHA Public Key :"
|
107 |
+
msgstr "Clave Publica reCAPTCHA :"
|
108 |
+
|
109 |
+
#: class.cff_settings.php:94
|
110 |
+
msgid "reCAPTCHA Private Key :"
|
111 |
+
msgstr "Clave Privada reCAPTCHA :"
|
112 |
+
|
113 |
+
#: class.cff_settings.php:100
|
114 |
+
msgid "Message Settings"
|
115 |
+
msgstr "Ajustes de Mensajes"
|
116 |
+
|
117 |
+
#: class.cff_settings.php:104
|
118 |
+
msgid "Recipient Email :"
|
119 |
+
msgstr "Correo electrónico del destinatario:"
|
120 |
+
|
121 |
+
#: class.cff_settings.php:110
|
122 |
+
msgid "Email Subject :"
|
123 |
+
msgstr "Asunto del correo:"
|
124 |
+
|
125 |
+
#: class.cff_settings.php:116
|
126 |
+
msgid "Message :"
|
127 |
+
msgstr "Mensaje:"
|
128 |
+
|
129 |
+
#: class.cff_settings.php:122
|
130 |
+
msgid "Message Sent Heading :"
|
131 |
+
msgstr "Titulo de Mensaje Enviado:"
|
132 |
+
|
133 |
+
#: class.cff_settings.php:128
|
134 |
+
msgid "Message Sent Content :"
|
135 |
+
msgstr "Contenido de Mensaje Enviado:"
|
136 |
+
|
137 |
+
#: class.cff_settings.php:134
|
138 |
+
msgid "Styling and Validation"
|
139 |
+
msgstr "Estilos y Validación"
|
140 |
+
|
141 |
+
#: class.cff_settings.php:138
|
142 |
+
msgid ""
|
143 |
+
"Use the plugin default stylesheet (un-tick to use your theme style sheet "
|
144 |
+
"instead) :"
|
145 |
+
msgstr ""
|
146 |
+
"Usa los estilos del plugin por default (desmarca para usar los estilos de tu "
|
147 |
+
"plantilla) :"
|
148 |
+
|
149 |
+
#: class.cff_settings.php:144
|
150 |
+
msgid "Use client side validation (AJAX) :"
|
151 |
+
msgstr "Utilice la validación del lado del cliente (AJAX) :"
|
152 |
+
|
153 |
+
#: class.cff_settings.php:216
|
154 |
+
msgid "Enter your reCAPTCHA settings below :"
|
155 |
+
msgstr "Ingresa tus ajustes reCAPTCHA abajo :"
|
156 |
+
|
157 |
+
#: class.cff_settings.php:217
|
158 |
+
msgid "To use reCAPTCHA you must get an API key from"
|
159 |
+
msgstr "Para usar reCAPTCHA tienes que solicitar una API key de"
|
160 |
+
|
161 |
+
#: class.cff_settings.php:222
|
162 |
+
msgid "Enter your message settings below :"
|
163 |
+
msgstr "Ingresa tus ajustes de mensaje :"
|
164 |
+
|
165 |
+
#: class.cff_settings.php:274
|
166 |
+
msgid "Red"
|
167 |
+
msgstr "Rojo"
|
168 |
+
|
169 |
+
#: class.cff_settings.php:275
|
170 |
+
msgid "White"
|
171 |
+
msgstr "Blanco"
|
172 |
+
|
173 |
+
#: class.cff_settings.php:276
|
174 |
+
msgid "Blackglass"
|
175 |
+
msgstr "Negro Cristal"
|
176 |
+
|
177 |
+
#: class.cff_settings.php:277
|
178 |
+
msgid "Clean"
|
179 |
+
msgstr "Transparente"
|
180 |
+
|
181 |
+
#: views/contact-form-with-recaptcha.view.php:27
|
182 |
+
#: views/contact-form.view.php:12
|
183 |
+
msgid "Email Address:"
|
184 |
+
msgstr "Direccion de correo electrónico:"
|
185 |
+
|
186 |
+
#: views/contact-form-with-recaptcha.view.php:29
|
187 |
+
#: views/contact-form.view.php:14
|
188 |
+
msgid "Your Email Address"
|
189 |
+
msgstr "Tu direccion de correo electrónico:"
|
190 |
+
|
191 |
+
#: views/contact-form-with-recaptcha.view.php:37
|
192 |
+
#: views/contact-form.view.php:22
|
193 |
+
msgid "Confirm Email Address:"
|
194 |
+
msgstr "Confirma tu direccion de correo electrónico:"
|
195 |
+
|
196 |
+
#: views/contact-form-with-recaptcha.view.php:39
|
197 |
+
#: views/contact-form.view.php:24
|
198 |
+
msgid "Please enter the same email address again."
|
199 |
+
msgstr "Porfavor ingresa la misma direccion de correo electrónico de nuevo."
|
200 |
+
|
201 |
+
#: views/contact-form-with-recaptcha.view.php:39
|
202 |
+
#: views/contact-form.view.php:24
|
203 |
+
msgid "Confirm Your Email Address"
|
204 |
+
msgstr "Confirma tu direccion de correo electrónico"
|
205 |
+
|
206 |
+
#: views/contact-form-with-recaptcha.view.php:47
|
207 |
+
#: views/contact-form.view.php:32
|
208 |
+
msgid "Name:"
|
209 |
+
msgstr "Nombre:"
|
210 |
+
|
211 |
+
#: views/contact-form-with-recaptcha.view.php:49
|
212 |
+
#: views/contact-form.view.php:34
|
213 |
+
msgid "Your Name"
|
214 |
+
msgstr "Tu Nombre:"
|
215 |
+
|
216 |
+
#: views/contact-form-with-recaptcha.view.php:57
|
217 |
+
#: views/contact-form.view.php:42
|
218 |
+
msgid "Message:"
|
219 |
+
msgstr "Mensaje:"
|
220 |
+
|
221 |
+
#: views/contact-form-with-recaptcha.view.php:59
|
222 |
+
#: views/contact-form.view.php:44
|
223 |
+
msgid "Please give a message."
|
224 |
+
msgstr "Porfavor ingresa un mensaje."
|
225 |
+
|
226 |
+
#: views/contact-form-with-recaptcha.view.php:59
|
227 |
+
#: views/contact-form.view.php:44
|
228 |
+
msgid "Your Message"
|
229 |
+
msgstr "Tu Mensaje"
|
230 |
+
|
231 |
+
#: views/contact-form-with-recaptcha.view.php:75
|
232 |
+
#: views/contact-form.view.php:51
|
233 |
+
msgid "Send Message"
|
234 |
+
msgstr "Enviar Mensaje"
|
235 |
+
|
236 |
+
#: views/message-not-sent.view.php:1
|
237 |
+
msgid "Sorry, there has been a problem and your message was not sent."
|
238 |
+
msgstr "Lo siento ha habido un error, tu mensaje no se ha enviado."
|
239 |
+
|
240 |
+
#. Plugin Name of the plugin/theme
|
241 |
+
msgid "Clean and Simple Contact Form"
|
242 |
+
msgstr "Clean and Simple Contact Form"
|
243 |
+
|
244 |
+
#. Plugin URI of the plugin/theme
|
245 |
+
msgid ""
|
246 |
+
"http://www.megnicholas.co.uk/wordpress-plugins/clean-and-simple-contact-form"
|
247 |
+
msgstr ""
|
248 |
+
"http://www.megnicholas.co.uk/wordpress-plugins/clean-and-simple-contact-form"
|
249 |
+
|
250 |
+
#. Description of the plugin/theme
|
251 |
+
msgid ""
|
252 |
+
"A clean and simple contact form with Google reCAPTCHA and Twitter Bootstrap "
|
253 |
+
"markup."
|
254 |
+
msgstr ""
|
255 |
+
"Un formulario de contacto limpio y sencillo, con Google, reCAPTCHA y "
|
256 |
+
"Twitter Bootstrap."
|
257 |
+
|
258 |
+
#. Author of the plugin/theme
|
259 |
+
msgid "Meghan Nicholas"
|
260 |
+
msgstr "Meghan Nicholas"
|
261 |
+
|
262 |
+
#. Author URI of the plugin/theme
|
263 |
+
msgid "http://www.megnicholas.co.uk"
|
264 |
+
msgstr "http://www.megnicholas.co.uk"
|
languages/cleanandsimple-fi.mo
ADDED
Binary file
|
languages/cleanandsimple-fi.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\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-20 08:37:17+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-07-14 10:11+0200\n"
|
13 |
+
"Last-Translator: Kai Lindfors <kaijlindfors@gmail.com>\n"
|
14 |
+
"Language-Team: LANGUAGE <LL@li.org>\n"
|
15 |
+
"X-Generator: Poedit 1.5.7\n"
|
16 |
+
"Language: fi\n"
|
17 |
+
|
18 |
+
#: class.cscf.php:102
|
19 |
+
msgid "Settings"
|
20 |
+
msgstr "Asetukset"
|
21 |
+
|
22 |
+
#: class.cscf_contact.php:53
|
23 |
+
msgid "Sorry the email addresses do not match."
|
24 |
+
msgstr "Sähköpostiosoitteiden pitää olla sama"
|
25 |
+
|
26 |
+
#: class.cscf_contact.php:57 views/contact-form-with-recaptcha.view.php:33
|
27 |
+
#: views/contact-form.view.php:14
|
28 |
+
msgid "Please give your email address."
|
29 |
+
msgstr "Ole hyvä ja syötä sähköpostiosoitteesi"
|
30 |
+
|
31 |
+
#: class.cscf_contact.php:61
|
32 |
+
msgid "Please confirm your email address."
|
33 |
+
msgstr "Ole hyvä ja vahvista sähköpostiosoitteesi"
|
34 |
+
|
35 |
+
#: class.cscf_contact.php:65 views/contact-form-with-recaptcha.view.php:53
|
36 |
+
#: views/contact-form.view.php:34
|
37 |
+
msgid "Please give your name."
|
38 |
+
msgstr "Ole hyvä ja syötä nimesi"
|
39 |
+
|
40 |
+
#: class.cscf_contact.php:69
|
41 |
+
msgid "Please enter a message."
|
42 |
+
msgstr "Ole hyvä ja kirjoita viestisi"
|
43 |
+
|
44 |
+
#: class.cscf_contact.php:73 views/contact-form-with-recaptcha.view.php:33
|
45 |
+
#: views/contact-form.view.php:14
|
46 |
+
msgid "Please enter a valid email address."
|
47 |
+
msgstr "Ole hyvä ja syötä kelvollinen sähköpostiosoite"
|
48 |
+
|
49 |
+
#: class.cscf_contact.php:81
|
50 |
+
msgid "Sorry the code wasn't entered correctly please try again."
|
51 |
+
msgstr "Koodi ei ollut oikein. Ole hyvä ja yritä uudestaan."
|
52 |
+
|
53 |
+
#: class.cscf_pluginsettings.php:40
|
54 |
+
msgid "Message Sent"
|
55 |
+
msgstr "Viestisi on lähetetty"
|
56 |
+
|
57 |
+
#: class.cscf_pluginsettings.php:47
|
58 |
+
msgid "Thank you for your message, we will be in touch very shortly."
|
59 |
+
msgstr "Kiitos viestistäsi. Otamme sinuun yhteyttä mahdollisimman pian."
|
60 |
+
|
61 |
+
#: class.cscf_pluginsettings.php:54
|
62 |
+
msgid ""
|
63 |
+
"Please enter your contact details and a short message below and I will try "
|
64 |
+
"to answer your query as soon as possible."
|
65 |
+
msgstr ""
|
66 |
+
"Ole hyvä ja syötä yhteystietosi ja lyhyt viesti alle. Saat vastauksen niin "
|
67 |
+
"pian kuin mahdollista"
|
68 |
+
|
69 |
+
#: class.cscf_pluginsettings.php:83
|
70 |
+
msgid " - Web Enquiry"
|
71 |
+
msgstr " - Yhteydenotto"
|
72 |
+
|
73 |
+
#: class.cscf_settings.php:41
|
74 |
+
msgid "Clean and Simple Contact Form Settings"
|
75 |
+
msgstr "Clean and Simple Contact Form -asetukset"
|
76 |
+
|
77 |
+
#: class.cscf_settings.php:43
|
78 |
+
msgid "You are using version"
|
79 |
+
msgstr "Käytössäsi on versio"
|
80 |
+
|
81 |
+
#: class.cscf_settings.php:44
|
82 |
+
msgid "If you find this plugin useful please consider"
|
83 |
+
msgstr "Jos pidät tätä lisäosaa hyödyllisenä, ole hyvä"
|
84 |
+
|
85 |
+
#: class.cscf_settings.php:47
|
86 |
+
msgid "leaving a review"
|
87 |
+
msgstr "ja anna sille arviosi"
|
88 |
+
|
89 |
+
#: class.cscf_settings.php:49
|
90 |
+
msgid "Thank you!"
|
91 |
+
msgstr "Kiitos!"
|
92 |
+
|
93 |
+
#: class.cscf_settings.php:68
|
94 |
+
msgid "ReCAPTCHA Settings"
|
95 |
+
msgstr "ReCAPTCHA -asetukset"
|
96 |
+
|
97 |
+
#: class.cscf_settings.php:76
|
98 |
+
msgid "Use reCAPTCHA :"
|
99 |
+
msgstr "Käytä reCAPTCHA-palvelua :"
|
100 |
+
|
101 |
+
#: class.cscf_settings.php:82
|
102 |
+
msgid "reCAPTCHA Theme :"
|
103 |
+
msgstr "reCAPTCHA teema :"
|
104 |
+
|
105 |
+
#: class.cscf_settings.php:88
|
106 |
+
msgid "reCAPTCHA Public Key :"
|
107 |
+
msgstr "reCAPTCHA julkinen avain :"
|
108 |
+
|
109 |
+
#: class.cscf_settings.php:94
|
110 |
+
msgid "reCAPTCHA Private Key :"
|
111 |
+
msgstr "reCAPTCHA yksityisavain :"
|
112 |
+
|
113 |
+
#: class.cscf_settings.php:100
|
114 |
+
msgid "Message Settings"
|
115 |
+
msgstr "Viestiasetukset"
|
116 |
+
|
117 |
+
#: class.cscf_settings.php:104
|
118 |
+
msgid "Recipient Email :"
|
119 |
+
msgstr "Vastaanottajan sähköpostiosoite"
|
120 |
+
|
121 |
+
#: class.cscf_settings.php:110
|
122 |
+
msgid "Email Subject :"
|
123 |
+
msgstr "Viestin aihe :"
|
124 |
+
|
125 |
+
#: class.cscf_settings.php:116
|
126 |
+
msgid "Message :"
|
127 |
+
msgstr "Viesti :"
|
128 |
+
|
129 |
+
#: class.cscf_settings.php:122
|
130 |
+
msgid "Message Sent Heading :"
|
131 |
+
msgstr "Viesti lähetetty -otsikkoteksti :"
|
132 |
+
|
133 |
+
#: class.cscf_settings.php:128
|
134 |
+
msgid "Message Sent Content :"
|
135 |
+
msgstr "Viesti lähetetty -ilmoitusteksti"
|
136 |
+
|
137 |
+
#: class.cscf_settings.php:134
|
138 |
+
msgid "Styling and Validation"
|
139 |
+
msgstr "Tyyli ja tarkistukset"
|
140 |
+
|
141 |
+
#: class.cscf_settings.php:138
|
142 |
+
msgid ""
|
143 |
+
"Use the plugin default stylesheet (un-tick to use your theme style sheet "
|
144 |
+
"instead) :"
|
145 |
+
msgstr ""
|
146 |
+
"Käytä lisäosan oletustyyliä (poista rasti jos haluat käyttää teemasi "
|
147 |
+
"tyyliä) :"
|
148 |
+
|
149 |
+
#: class.cscf_settings.php:144
|
150 |
+
msgid "Use client side validation (AJAX) :"
|
151 |
+
msgstr "Tarkista tiedot selaimessa (AJAX) :"
|
152 |
+
|
153 |
+
#: class.cscf_settings.php:216
|
154 |
+
msgid "Enter your reCAPTCHA settings below :"
|
155 |
+
msgstr "Syötä reCAPTCHA asetukset alle :"
|
156 |
+
|
157 |
+
#: class.cscf_settings.php:217
|
158 |
+
msgid "To use reCAPTCHA you must get an API key from"
|
159 |
+
msgstr ""
|
160 |
+
"Jotta voit käyttää reCAPTCHA -palvelua sinun täytyy hankkia API avain "
|
161 |
+
"lähteestä"
|
162 |
+
|
163 |
+
#: class.cscf_settings.php:222
|
164 |
+
msgid "Enter your message settings below :"
|
165 |
+
msgstr "Syötä viestiasetukset alle:"
|
166 |
+
|
167 |
+
#: class.cscf_settings.php:274
|
168 |
+
msgid "Red"
|
169 |
+
msgstr "Punainen"
|
170 |
+
|
171 |
+
#: class.cscf_settings.php:275
|
172 |
+
msgid "White"
|
173 |
+
msgstr "Valkoinen"
|
174 |
+
|
175 |
+
#: class.cscf_settings.php:276
|
176 |
+
msgid "Blackglass"
|
177 |
+
msgstr "Musta lasi"
|
178 |
+
|
179 |
+
#: class.cscf_settings.php:277
|
180 |
+
msgid "Clean"
|
181 |
+
msgstr "Pelkistetty"
|
182 |
+
|
183 |
+
#: views/contact-form-with-recaptcha.view.php:31
|
184 |
+
#: views/contact-form.view.php:12
|
185 |
+
msgid "Email Address:"
|
186 |
+
msgstr "Sähköpostiosoite:"
|
187 |
+
|
188 |
+
#: views/contact-form-with-recaptcha.view.php:33
|
189 |
+
#: views/contact-form.view.php:14
|
190 |
+
msgid "Your Email Address"
|
191 |
+
msgstr "Sähköpostiosoitteesi"
|
192 |
+
|
193 |
+
#: views/contact-form-with-recaptcha.view.php:41
|
194 |
+
#: views/contact-form.view.php:22
|
195 |
+
msgid "Confirm Email Address:"
|
196 |
+
msgstr "Vahvista sähköpostiosoite:"
|
197 |
+
|
198 |
+
#: views/contact-form-with-recaptcha.view.php:43
|
199 |
+
#: views/contact-form.view.php:24
|
200 |
+
msgid "Please enter the same email address again."
|
201 |
+
msgstr "Ole hyvä ja syötä sama sähköpostiosoite uudelleen."
|
202 |
+
|
203 |
+
#: views/contact-form-with-recaptcha.view.php:43
|
204 |
+
#: views/contact-form.view.php:24
|
205 |
+
msgid "Confirm Your Email Address"
|
206 |
+
msgstr "Vahvista sähköpostiosoitteesi"
|
207 |
+
|
208 |
+
#: views/contact-form-with-recaptcha.view.php:51
|
209 |
+
#: views/contact-form.view.php:32
|
210 |
+
msgid "Name:"
|
211 |
+
msgstr "Nimi:"
|
212 |
+
|
213 |
+
#: views/contact-form-with-recaptcha.view.php:53
|
214 |
+
#: views/contact-form.view.php:34
|
215 |
+
msgid "Your Name"
|
216 |
+
msgstr "Oma nimesi"
|
217 |
+
|
218 |
+
#: views/contact-form-with-recaptcha.view.php:61
|
219 |
+
#: views/contact-form.view.php:42
|
220 |
+
msgid "Message:"
|
221 |
+
msgstr "Viesti:"
|
222 |
+
|
223 |
+
#: views/contact-form-with-recaptcha.view.php:63
|
224 |
+
#: views/contact-form.view.php:44
|
225 |
+
msgid "Please give a message."
|
226 |
+
msgstr "Ole hyvä ja kirjoita viesti."
|
227 |
+
|
228 |
+
#: views/contact-form-with-recaptcha.view.php:63
|
229 |
+
#: views/contact-form.view.php:44
|
230 |
+
msgid "Your Message"
|
231 |
+
msgstr "Viestisi"
|
232 |
+
|
233 |
+
#: views/contact-form-with-recaptcha.view.php:79
|
234 |
+
#: views/contact-form.view.php:51
|
235 |
+
msgid "Send Message"
|
236 |
+
msgstr "Lähetä viesti"
|
237 |
+
|
238 |
+
#: views/message-not-sent.view.php:1
|
239 |
+
msgid "Sorry, there has been a problem and your message was not sent."
|
240 |
+
msgstr "Pahoittelemme. Tapahtui virhe eikä viestiäsi pystytty lähettämään."
|
241 |
+
|
242 |
+
#. Plugin Name of the plugin/theme
|
243 |
+
msgid "Clean and Simple Contact Form"
|
244 |
+
msgstr "Selkeä ja yksinkertainen yhteydenottolomake"
|
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 |
+
"Selkeä ja yksinkertainen yhteydenottolomake jossa mukana Google reCAPTCHA ja "
|
258 |
+
"Twitter Bootstrap -merkit."
|
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-fi_FI.mo
ADDED
Binary file
|
languages/cleanandsimple-fi_FI.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\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-20 08:37:17+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-07-14 09:50+0200\n"
|
13 |
+
"Last-Translator: Kai Lindfors <kaijlindfors@gmail.com>\n"
|
14 |
+
"Language-Team: LANGUAGE <LL@li.org>\n"
|
15 |
+
"X-Generator: Poedit 1.5.7\n"
|
16 |
+
"Language: fi\n"
|
17 |
+
|
18 |
+
#: class.cscf.php:102
|
19 |
+
msgid "Settings"
|
20 |
+
msgstr "Asetukset"
|
21 |
+
|
22 |
+
#: class.cscf_contact.php:53
|
23 |
+
msgid "Sorry the email addresses do not match."
|
24 |
+
msgstr "Sähköpostiosoitteiden pitää olla sama"
|
25 |
+
|
26 |
+
#: class.cscf_contact.php:57 views/contact-form-with-recaptcha.view.php:33
|
27 |
+
#: views/contact-form.view.php:14
|
28 |
+
msgid "Please give your email address."
|
29 |
+
msgstr "Ole hyvä ja syötä sähköpostiosoitteesi"
|
30 |
+
|
31 |
+
#: class.cscf_contact.php:61
|
32 |
+
msgid "Please confirm your email address."
|
33 |
+
msgstr "Ole hyvä ja vahvista sähköpostiosoitteesi"
|
34 |
+
|
35 |
+
#: class.cscf_contact.php:65 views/contact-form-with-recaptcha.view.php:53
|
36 |
+
#: views/contact-form.view.php:34
|
37 |
+
msgid "Please give your name."
|
38 |
+
msgstr "Ole hyvä ja syötä nimesi"
|
39 |
+
|
40 |
+
#: class.cscf_contact.php:69
|
41 |
+
msgid "Please enter a message."
|
42 |
+
msgstr "Ole hyvä ja kirjoita viestisi"
|
43 |
+
|
44 |
+
#: class.cscf_contact.php:73 views/contact-form-with-recaptcha.view.php:33
|
45 |
+
#: views/contact-form.view.php:14
|
46 |
+
msgid "Please enter a valid email address."
|
47 |
+
msgstr "Ole hyvä ja syötä kelvollinen sähköpostiosoite"
|
48 |
+
|
49 |
+
#: class.cscf_contact.php:81
|
50 |
+
msgid "Sorry the code wasn't entered correctly please try again."
|
51 |
+
msgstr "Koodi ei ollut oikein. Ole hyvä ja yritä uudestaan."
|
52 |
+
|
53 |
+
#: class.cscf_pluginsettings.php:40
|
54 |
+
msgid "Message Sent"
|
55 |
+
msgstr "Viestisi on lähetetty"
|
56 |
+
|
57 |
+
#: class.cscf_pluginsettings.php:47
|
58 |
+
msgid "Thank you for your message, we will be in touch very shortly."
|
59 |
+
msgstr "Kiitos viestistäsi. Otamme sinuun yhteyttä mahdollisimman pian."
|
60 |
+
|
61 |
+
#: class.cscf_pluginsettings.php:54
|
62 |
+
msgid ""
|
63 |
+
"Please enter your contact details and a short message below and I will try "
|
64 |
+
"to answer your query as soon as possible."
|
65 |
+
msgstr ""
|
66 |
+
"Ole hyvä ja syötä yhteystietosi ja lyhyt viesti alle. Saat vastauksen niin "
|
67 |
+
"pian kuin mahdollista"
|
68 |
+
|
69 |
+
#: class.cscf_pluginsettings.php:83
|
70 |
+
msgid " - Web Enquiry"
|
71 |
+
msgstr " - Yhteydenotto"
|
72 |
+
|
73 |
+
#: class.cscf_settings.php:41
|
74 |
+
msgid "Clean and Simple Contact Form Settings"
|
75 |
+
msgstr "Clean and Simple Contact Form -asetukset"
|
76 |
+
|
77 |
+
#: class.cscf_settings.php:43
|
78 |
+
msgid "You are using version"
|
79 |
+
msgstr "Käytössäsi on versio"
|
80 |
+
|
81 |
+
#: class.cscf_settings.php:44
|
82 |
+
msgid "If you find this plugin useful please consider"
|
83 |
+
msgstr "Jos pidät tätä lisäosaa hyödyllisenä, ole hyvä"
|
84 |
+
|
85 |
+
#: class.cscf_settings.php:47
|
86 |
+
msgid "leaving a review"
|
87 |
+
msgstr "ja anna sille arviosi"
|
88 |
+
|
89 |
+
#: class.cscf_settings.php:49
|
90 |
+
msgid "Thank you!"
|
91 |
+
msgstr "Kiitos!"
|
92 |
+
|
93 |
+
#: class.cscf_settings.php:68
|
94 |
+
msgid "ReCAPTCHA Settings"
|
95 |
+
msgstr "ReCAPTCHA -asetukset"
|
96 |
+
|
97 |
+
#: class.cscf_settings.php:76
|
98 |
+
msgid "Use reCAPTCHA :"
|
99 |
+
msgstr "Käytä reCAPTCHA-palvelua :"
|
100 |
+
|
101 |
+
#: class.cscf_settings.php:82
|
102 |
+
msgid "reCAPTCHA Theme :"
|
103 |
+
msgstr "reCAPTCHA teema :"
|
104 |
+
|
105 |
+
#: class.cscf_settings.php:88
|
106 |
+
msgid "reCAPTCHA Public Key :"
|
107 |
+
msgstr "reCAPTCHA julkinen avain :"
|
108 |
+
|
109 |
+
#: class.cscf_settings.php:94
|
110 |
+
msgid "reCAPTCHA Private Key :"
|
111 |
+
msgstr "reCAPTCHA yksityisavain :"
|
112 |
+
|
113 |
+
#: class.cscf_settings.php:100
|
114 |
+
msgid "Message Settings"
|
115 |
+
msgstr "Viestiasetukset"
|
116 |
+
|
117 |
+
#: class.cscf_settings.php:104
|
118 |
+
msgid "Recipient Email :"
|
119 |
+
msgstr "Vastaanottajan sähköpostiosoite"
|
120 |
+
|
121 |
+
#: class.cscf_settings.php:110
|
122 |
+
msgid "Email Subject :"
|
123 |
+
msgstr "Viestin aihe :"
|
124 |
+
|
125 |
+
#: class.cscf_settings.php:116
|
126 |
+
msgid "Message :"
|
127 |
+
msgstr "Viesti :"
|
128 |
+
|
129 |
+
#: class.cscf_settings.php:122
|
130 |
+
msgid "Message Sent Heading :"
|
131 |
+
msgstr "Viesti lähetetty -otsikkoteksti :"
|
132 |
+
|
133 |
+
#: class.cscf_settings.php:128
|
134 |
+
msgid "Message Sent Content :"
|
135 |
+
msgstr "Viesti lähetetty -ilmoitusteksti"
|
136 |
+
|
137 |
+
#: class.cscf_settings.php:134
|
138 |
+
msgid "Styling and Validation"
|
139 |
+
msgstr "Tyyli ja tarkistukset"
|
140 |
+
|
141 |
+
#: class.cscf_settings.php:138
|
142 |
+
msgid ""
|
143 |
+
"Use the plugin default stylesheet (un-tick to use your theme style sheet "
|
144 |
+
"instead) :"
|
145 |
+
msgstr ""
|
146 |
+
"Käytä lisäosan oletustyyliä (poista rasti jos haluat käyttää teemasi "
|
147 |
+
"tyyliä) :"
|
148 |
+
|
149 |
+
#: class.cscf_settings.php:144
|
150 |
+
msgid "Use client side validation (AJAX) :"
|
151 |
+
msgstr "Tarkista tiedot selaimessa (AJAX) :"
|
152 |
+
|
153 |
+
#: class.cscf_settings.php:216
|
154 |
+
msgid "Enter your reCAPTCHA settings below :"
|
155 |
+
msgstr "Syötä reCAPTCHA asetukset alle :"
|
156 |
+
|
157 |
+
#: class.cscf_settings.php:217
|
158 |
+
msgid "To use reCAPTCHA you must get an API key from"
|
159 |
+
msgstr ""
|
160 |
+
"Jotta voit käyttää reCAPTCHA -palvelua sinun täytyy hankkia API avain "
|
161 |
+
"lähteestä"
|
162 |
+
|
163 |
+
#: class.cscf_settings.php:222
|
164 |
+
msgid "Enter your message settings below :"
|
165 |
+
msgstr "Syötä viestiasetukset alle:"
|
166 |
+
|
167 |
+
#: class.cscf_settings.php:274
|
168 |
+
msgid "Red"
|
169 |
+
msgstr "Punainen"
|
170 |
+
|
171 |
+
#: class.cscf_settings.php:275
|
172 |
+
msgid "White"
|
173 |
+
msgstr "Valkoinen"
|
174 |
+
|
175 |
+
#: class.cscf_settings.php:276
|
176 |
+
msgid "Blackglass"
|
177 |
+
msgstr "Musta lasi"
|
178 |
+
|
179 |
+
#: class.cscf_settings.php:277
|
180 |
+
msgid "Clean"
|
181 |
+
msgstr "Pelkistetty"
|
182 |
+
|
183 |
+
#: views/contact-form-with-recaptcha.view.php:31
|
184 |
+
#: views/contact-form.view.php:12
|
185 |
+
msgid "Email Address:"
|
186 |
+
msgstr "Sähköpostiosoite:"
|
187 |
+
|
188 |
+
#: views/contact-form-with-recaptcha.view.php:33
|
189 |
+
#: views/contact-form.view.php:14
|
190 |
+
msgid "Your Email Address"
|
191 |
+
msgstr "Sähköpostiosoitteesi"
|
192 |
+
|
193 |
+
#: views/contact-form-with-recaptcha.view.php:41
|
194 |
+
#: views/contact-form.view.php:22
|
195 |
+
msgid "Confirm Email Address:"
|
196 |
+
msgstr "Vahvista sähköpostiosoite:"
|
197 |
+
|
198 |
+
#: views/contact-form-with-recaptcha.view.php:43
|
199 |
+
#: views/contact-form.view.php:24
|
200 |
+
msgid "Please enter the same email address again."
|
201 |
+
msgstr "Ole hyvä ja syötä sama sähköpostiosoite uudelleen."
|
202 |
+
|
203 |
+
#: views/contact-form-with-recaptcha.view.php:43
|
204 |
+
#: views/contact-form.view.php:24
|
205 |
+
msgid "Confirm Your Email Address"
|
206 |
+
msgstr "Vahvista sähköpostiosoitteesi"
|
207 |
+
|
208 |
+
#: views/contact-form-with-recaptcha.view.php:51
|
209 |
+
#: views/contact-form.view.php:32
|
210 |
+
msgid "Name:"
|
211 |
+
msgstr "Nimi:"
|
212 |
+
|
213 |
+
#: views/contact-form-with-recaptcha.view.php:53
|
214 |
+
#: views/contact-form.view.php:34
|
215 |
+
msgid "Your Name"
|
216 |
+
msgstr "Oma nimesi"
|
217 |
+
|
218 |
+
#: views/contact-form-with-recaptcha.view.php:61
|
219 |
+
#: views/contact-form.view.php:42
|
220 |
+
msgid "Message:"
|
221 |
+
msgstr "Viesti:"
|
222 |
+
|
223 |
+
#: views/contact-form-with-recaptcha.view.php:63
|
224 |
+
#: views/contact-form.view.php:44
|
225 |
+
msgid "Please give a message."
|
226 |
+
msgstr "Ole hyvä ja kirjoita viesti."
|
227 |
+
|
228 |
+
#: views/contact-form-with-recaptcha.view.php:63
|
229 |
+
#: views/contact-form.view.php:44
|
230 |
+
msgid "Your Message"
|
231 |
+
msgstr "Viestisi"
|
232 |
+
|
233 |
+
#: views/contact-form-with-recaptcha.view.php:79
|
234 |
+
#: views/contact-form.view.php:51
|
235 |
+
msgid "Send Message"
|
236 |
+
msgstr "Lähetä viesti"
|
237 |
+
|
238 |
+
#: views/message-not-sent.view.php:1
|
239 |
+
msgid "Sorry, there has been a problem and your message was not sent."
|
240 |
+
msgstr "Pahoittelemme. Tapahtui virhe eikä viestiäsi pystytty lähettämään."
|
241 |
+
|
242 |
+
#. Plugin Name of the plugin/theme
|
243 |
+
msgid "Clean and Simple Contact Form"
|
244 |
+
msgstr "Selkeä ja yksinkertainen yhteydenottolomake"
|
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 |
+
"Selkeä ja yksinkertainen yhteydenottolomake jossa mukana Google reCAPTCHA ja "
|
258 |
+
"Twitter Bootstrap -merkit."
|
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-fr_FR.mo
ADDED
Binary file
|
languages/cleanandsimple-fr_FR.po
ADDED
@@ -0,0 +1,259 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
msgid ""
|
2 |
+
msgstr ""
|
3 |
+
"Project-Id-Version: Contact Form Clean and Simple\n"
|
4 |
+
"POT-Creation-Date: 2013-07-06 15:03+0100\n"
|
5 |
+
"PO-Revision-Date: 2013-07-06 15:21+0100\n"
|
6 |
+
"Last-Translator: \n"
|
7 |
+
"Language-Team: Matthieu MARECHAL <contact@matthieu-marechal.fr>\n"
|
8 |
+
"Language: French\n"
|
9 |
+
"MIME-Version: 1.0\n"
|
10 |
+
"Content-Type: text/plain; charset=UTF-8\n"
|
11 |
+
"Content-Transfer-Encoding: 8bit\n"
|
12 |
+
"X-Generator: Poedit 1.5.7\n"
|
13 |
+
"X-Poedit-KeywordsList: _;gettext;gettext_noop;__;_e;_c\n"
|
14 |
+
"X-Poedit-Basepath: .\n"
|
15 |
+
"Plural-Forms: nplurals=2; plural=n>1;\n"
|
16 |
+
"X-Poedit-SourceCharset: UTF-8\n"
|
17 |
+
"X-Poedit-SearchPath-0: /Users/jocade/Desktop/clean-and-simple-contact-form-"
|
18 |
+
"by-meg-nicholas\n"
|
19 |
+
|
20 |
+
#: /Users/jocade/Desktop/clean-and-simple-contact-form-by-meg-nicholas/class.cscf.php:102
|
21 |
+
msgid "Settings"
|
22 |
+
msgstr "Paramètre"
|
23 |
+
|
24 |
+
#: /Users/jocade/Desktop/clean-and-simple-contact-form-by-meg-nicholas/class.cscf_contact.php:53
|
25 |
+
msgid "Sorry the email addresses do not match."
|
26 |
+
msgstr "Désolé, cet e-mail n'est pas valide."
|
27 |
+
|
28 |
+
#: /Users/jocade/Desktop/clean-and-simple-contact-form-by-meg-nicholas/class.cscf_contact.php:57
|
29 |
+
#: /Users/jocade/Desktop/clean-and-simple-contact-form-by-meg-nicholas/views/contact-form-with-recaptcha.view.php:27
|
30 |
+
#: /Users/jocade/Desktop/clean-and-simple-contact-form-by-meg-nicholas/views/contact-form.view.php:14
|
31 |
+
msgid "Please give your email address."
|
32 |
+
msgstr "Entrez votre adresse e-mail"
|
33 |
+
|
34 |
+
#: /Users/jocade/Desktop/clean-and-simple-contact-form-by-meg-nicholas/class.cscf_contact.php:61
|
35 |
+
msgid "Please confirm your email address."
|
36 |
+
msgstr "Confirmez votre adresse e-mail"
|
37 |
+
|
38 |
+
#: /Users/jocade/Desktop/clean-and-simple-contact-form-by-meg-nicholas/class.cscf_contact.php:65
|
39 |
+
#: /Users/jocade/Desktop/clean-and-simple-contact-form-by-meg-nicholas/views/contact-form-with-recaptcha.view.php:47
|
40 |
+
#: /Users/jocade/Desktop/clean-and-simple-contact-form-by-meg-nicholas/views/contact-form.view.php:34
|
41 |
+
msgid "Please give your name."
|
42 |
+
msgstr "Entrez votre nom"
|
43 |
+
|
44 |
+
#: /Users/jocade/Desktop/clean-and-simple-contact-form-by-meg-nicholas/class.cscf_contact.php:69
|
45 |
+
msgid "Please enter a message."
|
46 |
+
msgstr "Entrez votre message"
|
47 |
+
|
48 |
+
#: /Users/jocade/Desktop/clean-and-simple-contact-form-by-meg-nicholas/class.cscf_contact.php:73
|
49 |
+
#: /Users/jocade/Desktop/clean-and-simple-contact-form-by-meg-nicholas/views/contact-form-with-recaptcha.view.php:27
|
50 |
+
#: /Users/jocade/Desktop/clean-and-simple-contact-form-by-meg-nicholas/views/contact-form.view.php:14
|
51 |
+
msgid "Please enter a valid email address."
|
52 |
+
msgstr "Entrez une adresse e-mail valide"
|
53 |
+
|
54 |
+
#: /Users/jocade/Desktop/clean-and-simple-contact-form-by-meg-nicholas/class.cscf_contact.php:81
|
55 |
+
msgid "Sorry the code wasn't entered correctly please try again."
|
56 |
+
msgstr "Désolé, le code entré n'est pas correct, veuillez recommencer."
|
57 |
+
|
58 |
+
#: /Users/jocade/Desktop/clean-and-simple-contact-form-by-meg-nicholas/class.cscf_pluginsettings.php:40
|
59 |
+
msgid "Message Sent"
|
60 |
+
msgstr "Message envoyé"
|
61 |
+
|
62 |
+
#: /Users/jocade/Desktop/clean-and-simple-contact-form-by-meg-nicholas/class.cscf_pluginsettings.php:47
|
63 |
+
msgid "Thank you for your message, we will be in touch very shortly."
|
64 |
+
msgstr "Merci pour votre message, nous vous répondrons au plus vite."
|
65 |
+
|
66 |
+
#: /Users/jocade/Desktop/clean-and-simple-contact-form-by-meg-nicholas/class.cscf_pluginsettings.php:54
|
67 |
+
msgid ""
|
68 |
+
"Please enter your contact details and a short message below and I will try "
|
69 |
+
"to answer your query as soon as possible."
|
70 |
+
msgstr ""
|
71 |
+
"Merci d'entrer vos informations de contact ci-dessous et nous nous "
|
72 |
+
"répondrons dès que possible"
|
73 |
+
|
74 |
+
#: /Users/jocade/Desktop/clean-and-simple-contact-form-by-meg-nicholas/class.cscf_pluginsettings.php:83
|
75 |
+
msgid " - Web Enquiry"
|
76 |
+
msgstr " - Enquête Web"
|
77 |
+
|
78 |
+
#: /Users/jocade/Desktop/clean-and-simple-contact-form-by-meg-nicholas/class.cscf_settings.php:41
|
79 |
+
msgid "Clean and Simple Contact Form Settings"
|
80 |
+
msgstr "Clean and Simple Contact Form Settings"
|
81 |
+
|
82 |
+
#: /Users/jocade/Desktop/clean-and-simple-contact-form-by-meg-nicholas/class.cscf_settings.php:43
|
83 |
+
msgid "You are using version"
|
84 |
+
msgstr "Vous utilisez la version"
|
85 |
+
|
86 |
+
#: /Users/jocade/Desktop/clean-and-simple-contact-form-by-meg-nicholas/class.cscf_settings.php:44
|
87 |
+
msgid "If you find this plugin useful please consider"
|
88 |
+
msgstr "Si vous avez trouvé ce plugin intéressant, "
|
89 |
+
|
90 |
+
#: /Users/jocade/Desktop/clean-and-simple-contact-form-by-meg-nicholas/class.cscf_settings.php:47
|
91 |
+
msgid "leaving a review"
|
92 |
+
msgstr "donnez votre avis."
|
93 |
+
|
94 |
+
#: /Users/jocade/Desktop/clean-and-simple-contact-form-by-meg-nicholas/class.cscf_settings.php:49
|
95 |
+
msgid "Thank you!"
|
96 |
+
msgstr "Merci !"
|
97 |
+
|
98 |
+
#: /Users/jocade/Desktop/clean-and-simple-contact-form-by-meg-nicholas/class.cscf_settings.php:54
|
99 |
+
msgid ""
|
100 |
+
"NOTICE: You have JetPack's Contact Form enabled please deactivate it or use "
|
101 |
+
"the shortcode [cscf-contact-form] instead."
|
102 |
+
msgstr ""
|
103 |
+
"NOTE : Vous avez JetPack's Contact Form d'activé. Merci de le désactiver ou "
|
104 |
+
"utilisez le code suivant [cscf-contact-form] à la place"
|
105 |
+
|
106 |
+
#: /Users/jocade/Desktop/clean-and-simple-contact-form-by-meg-nicholas/class.cscf_settings.php:55
|
107 |
+
msgid "Read More"
|
108 |
+
msgstr "Lire plus"
|
109 |
+
|
110 |
+
#: /Users/jocade/Desktop/clean-and-simple-contact-form-by-meg-nicholas/class.cscf_settings.php:85
|
111 |
+
msgid "ReCAPTCHA Settings"
|
112 |
+
msgstr "Paramètres ReCAPTCHA"
|
113 |
+
|
114 |
+
#: /Users/jocade/Desktop/clean-and-simple-contact-form-by-meg-nicholas/class.cscf_settings.php:93
|
115 |
+
msgid "Use reCAPTCHA :"
|
116 |
+
msgstr "Utiliser reCAPTCHA :"
|
117 |
+
|
118 |
+
#: /Users/jocade/Desktop/clean-and-simple-contact-form-by-meg-nicholas/class.cscf_settings.php:99
|
119 |
+
msgid "reCAPTCHA Theme :"
|
120 |
+
msgstr "Thème reCAPTCHA :"
|
121 |
+
|
122 |
+
#: /Users/jocade/Desktop/clean-and-simple-contact-form-by-meg-nicholas/class.cscf_settings.php:105
|
123 |
+
msgid "reCAPTCHA Public Key :"
|
124 |
+
msgstr "reCAPTCHA clé publique :"
|
125 |
+
|
126 |
+
#: /Users/jocade/Desktop/clean-and-simple-contact-form-by-meg-nicholas/class.cscf_settings.php:111
|
127 |
+
msgid "reCAPTCHA Private Key :"
|
128 |
+
msgstr "reCAPTCHA clé privée :"
|
129 |
+
|
130 |
+
#: /Users/jocade/Desktop/clean-and-simple-contact-form-by-meg-nicholas/class.cscf_settings.php:117
|
131 |
+
msgid "Message Settings"
|
132 |
+
msgstr "Paramètres du message"
|
133 |
+
|
134 |
+
#: /Users/jocade/Desktop/clean-and-simple-contact-form-by-meg-nicholas/class.cscf_settings.php:121
|
135 |
+
msgid "Recipient Email :"
|
136 |
+
msgstr "E-mail du destinataire :"
|
137 |
+
|
138 |
+
#: /Users/jocade/Desktop/clean-and-simple-contact-form-by-meg-nicholas/class.cscf_settings.php:127
|
139 |
+
msgid "Email Subject :"
|
140 |
+
msgstr "Sujet de l'e-mail"
|
141 |
+
|
142 |
+
#: /Users/jocade/Desktop/clean-and-simple-contact-form-by-meg-nicholas/class.cscf_settings.php:133
|
143 |
+
msgid "Message :"
|
144 |
+
msgstr "Message :"
|
145 |
+
|
146 |
+
#: /Users/jocade/Desktop/clean-and-simple-contact-form-by-meg-nicholas/class.cscf_settings.php:139
|
147 |
+
msgid "Message Sent Heading :"
|
148 |
+
msgstr "En-tête du message envoyé"
|
149 |
+
|
150 |
+
#: /Users/jocade/Desktop/clean-and-simple-contact-form-by-meg-nicholas/class.cscf_settings.php:145
|
151 |
+
msgid "Message Sent Content :"
|
152 |
+
msgstr "Contenu du message envoyé :"
|
153 |
+
|
154 |
+
#: /Users/jocade/Desktop/clean-and-simple-contact-form-by-meg-nicholas/class.cscf_settings.php:151
|
155 |
+
msgid "Styling and Validation"
|
156 |
+
msgstr "Style et validation"
|
157 |
+
|
158 |
+
#: /Users/jocade/Desktop/clean-and-simple-contact-form-by-meg-nicholas/class.cscf_settings.php:155
|
159 |
+
msgid ""
|
160 |
+
"Use the plugin default stylesheet (un-tick to use your theme style sheet "
|
161 |
+
"instead) :"
|
162 |
+
msgstr ""
|
163 |
+
"Utiliser la feuille de style par défaut du plugin (décocher pour utiliser "
|
164 |
+
"votre propre feuille de style)"
|
165 |
+
|
166 |
+
#: /Users/jocade/Desktop/clean-and-simple-contact-form-by-meg-nicholas/class.cscf_settings.php:161
|
167 |
+
msgid "Use client side validation (AJAX) :"
|
168 |
+
msgstr "Utiliser la validation côté client (AJAX) :"
|
169 |
+
|
170 |
+
#: /Users/jocade/Desktop/clean-and-simple-contact-form-by-meg-nicholas/class.cscf_settings.php:233
|
171 |
+
msgid "Enter your reCAPTCHA settings below :"
|
172 |
+
msgstr "Entrer vos paramètres reCAPTCHA ci-dessous :"
|
173 |
+
|
174 |
+
#: /Users/jocade/Desktop/clean-and-simple-contact-form-by-meg-nicholas/class.cscf_settings.php:234
|
175 |
+
msgid "To use reCAPTCHA you must get an API key from"
|
176 |
+
msgstr "Pour utiliser reCAPTCHA vous devez obtenir une clé depuis l'API"
|
177 |
+
|
178 |
+
#: /Users/jocade/Desktop/clean-and-simple-contact-form-by-meg-nicholas/class.cscf_settings.php:239
|
179 |
+
msgid "Enter your message settings below :"
|
180 |
+
msgstr "Entrez les paramètres de votre message ci-dessous :"
|
181 |
+
|
182 |
+
#: /Users/jocade/Desktop/clean-and-simple-contact-form-by-meg-nicholas/class.cscf_settings.php:291
|
183 |
+
msgid "Red"
|
184 |
+
msgstr "Rouge"
|
185 |
+
|
186 |
+
#: /Users/jocade/Desktop/clean-and-simple-contact-form-by-meg-nicholas/class.cscf_settings.php:292
|
187 |
+
msgid "White"
|
188 |
+
msgstr "Blanc"
|
189 |
+
|
190 |
+
#: /Users/jocade/Desktop/clean-and-simple-contact-form-by-meg-nicholas/class.cscf_settings.php:293
|
191 |
+
msgid "Blackglass"
|
192 |
+
msgstr "Vitre noire"
|
193 |
+
|
194 |
+
#: /Users/jocade/Desktop/clean-and-simple-contact-form-by-meg-nicholas/class.cscf_settings.php:294
|
195 |
+
msgid "Clean"
|
196 |
+
msgstr "Propre"
|
197 |
+
|
198 |
+
#: /Users/jocade/Desktop/clean-and-simple-contact-form-by-meg-nicholas/class.view.php:26
|
199 |
+
msgid "View "
|
200 |
+
msgstr "Vue"
|
201 |
+
|
202 |
+
#: /Users/jocade/Desktop/clean-and-simple-contact-form-by-meg-nicholas/views/contact-form-with-recaptcha.view.php:25
|
203 |
+
#: /Users/jocade/Desktop/clean-and-simple-contact-form-by-meg-nicholas/views/contact-form.view.php:12
|
204 |
+
msgid "Email Address:"
|
205 |
+
msgstr "Adresse e-mail :"
|
206 |
+
|
207 |
+
#: /Users/jocade/Desktop/clean-and-simple-contact-form-by-meg-nicholas/views/contact-form-with-recaptcha.view.php:27
|
208 |
+
#: /Users/jocade/Desktop/clean-and-simple-contact-form-by-meg-nicholas/views/contact-form.view.php:14
|
209 |
+
msgid "Your Email Address"
|
210 |
+
msgstr "Votre adresse e-mail"
|
211 |
+
|
212 |
+
#: /Users/jocade/Desktop/clean-and-simple-contact-form-by-meg-nicholas/views/contact-form-with-recaptcha.view.php:35
|
213 |
+
#: /Users/jocade/Desktop/clean-and-simple-contact-form-by-meg-nicholas/views/contact-form.view.php:22
|
214 |
+
msgid "Confirm Email Address:"
|
215 |
+
msgstr "Confirmez l'adresse e-mail :"
|
216 |
+
|
217 |
+
#: /Users/jocade/Desktop/clean-and-simple-contact-form-by-meg-nicholas/views/contact-form-with-recaptcha.view.php:37
|
218 |
+
#: /Users/jocade/Desktop/clean-and-simple-contact-form-by-meg-nicholas/views/contact-form.view.php:24
|
219 |
+
msgid "Please enter the same email address again."
|
220 |
+
msgstr "Merci d'entrer la même adresse e-mail."
|
221 |
+
|
222 |
+
#: /Users/jocade/Desktop/clean-and-simple-contact-form-by-meg-nicholas/views/contact-form-with-recaptcha.view.php:37
|
223 |
+
#: /Users/jocade/Desktop/clean-and-simple-contact-form-by-meg-nicholas/views/contact-form.view.php:24
|
224 |
+
msgid "Confirm Your Email Address"
|
225 |
+
msgstr "Confirmez votre adresse e-mail"
|
226 |
+
|
227 |
+
#: /Users/jocade/Desktop/clean-and-simple-contact-form-by-meg-nicholas/views/contact-form-with-recaptcha.view.php:45
|
228 |
+
#: /Users/jocade/Desktop/clean-and-simple-contact-form-by-meg-nicholas/views/contact-form.view.php:32
|
229 |
+
msgid "Name:"
|
230 |
+
msgstr "Nom :"
|
231 |
+
|
232 |
+
#: /Users/jocade/Desktop/clean-and-simple-contact-form-by-meg-nicholas/views/contact-form-with-recaptcha.view.php:47
|
233 |
+
#: /Users/jocade/Desktop/clean-and-simple-contact-form-by-meg-nicholas/views/contact-form.view.php:34
|
234 |
+
msgid "Your Name"
|
235 |
+
msgstr "Votre nom"
|
236 |
+
|
237 |
+
#: /Users/jocade/Desktop/clean-and-simple-contact-form-by-meg-nicholas/views/contact-form-with-recaptcha.view.php:55
|
238 |
+
#: /Users/jocade/Desktop/clean-and-simple-contact-form-by-meg-nicholas/views/contact-form.view.php:42
|
239 |
+
msgid "Message:"
|
240 |
+
msgstr "Message :"
|
241 |
+
|
242 |
+
#: /Users/jocade/Desktop/clean-and-simple-contact-form-by-meg-nicholas/views/contact-form-with-recaptcha.view.php:57
|
243 |
+
#: /Users/jocade/Desktop/clean-and-simple-contact-form-by-meg-nicholas/views/contact-form.view.php:44
|
244 |
+
msgid "Please give a message."
|
245 |
+
msgstr "Merci d'entrer un message"
|
246 |
+
|
247 |
+
#: /Users/jocade/Desktop/clean-and-simple-contact-form-by-meg-nicholas/views/contact-form-with-recaptcha.view.php:57
|
248 |
+
#: /Users/jocade/Desktop/clean-and-simple-contact-form-by-meg-nicholas/views/contact-form.view.php:44
|
249 |
+
msgid "Your Message"
|
250 |
+
msgstr "Votre message"
|
251 |
+
|
252 |
+
#: /Users/jocade/Desktop/clean-and-simple-contact-form-by-meg-nicholas/views/contact-form-with-recaptcha.view.php:72
|
253 |
+
#: /Users/jocade/Desktop/clean-and-simple-contact-form-by-meg-nicholas/views/contact-form.view.php:51
|
254 |
+
msgid "Send Message"
|
255 |
+
msgstr "Envoyer le message"
|
256 |
+
|
257 |
+
#: /Users/jocade/Desktop/clean-and-simple-contact-form-by-meg-nicholas/views/message-not-sent.view.php:1
|
258 |
+
msgid "Sorry, there has been a problem and your message was not sent."
|
259 |
+
msgstr "Désolé, un problème est survenu et votre message n'a pu être envoyé"
|
languages/cleanandsimple-hy_AM.mo
ADDED
Binary file
|
languages/cleanandsimple-hy_AM.po
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\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-20 08:37:17+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-07-25 21:32+0400\n"
|
12 |
+
"Last-Translator: hanuman <hanumanum@gmail.com>\n"
|
13 |
+
"Language-Team: Artak Kolyan (aka hanuman, http://ablog.gratun.am) <hanumanum@gmail.com>\n"
|
14 |
+
"Plural-Forms: nplurals=2; plural=n != 1;\n"
|
15 |
+
"X-Poedit-Language: Armenian\n"
|
16 |
+
"X-Poedit-Country: Armenia\n"
|
17 |
+
|
18 |
+
#: class.cscf.php:102
|
19 |
+
msgid "Settings"
|
20 |
+
msgstr "Կարգավորումներ"
|
21 |
+
|
22 |
+
#: class.cscf_contact.php:53
|
23 |
+
msgid "Sorry the email addresses do not match."
|
24 |
+
msgstr "Էլ․փոստի հասցեն չի համընկնում"
|
25 |
+
|
26 |
+
#: class.cscf_contact.php:57
|
27 |
+
#: views/contact-form-with-recaptcha.view.php:33
|
28 |
+
#: views/contact-form.view.php:14
|
29 |
+
msgid "Please give your email address."
|
30 |
+
msgstr "Գրեք ձեր էլ․փոստի հասցեն"
|
31 |
+
|
32 |
+
#: class.cscf_contact.php:61
|
33 |
+
msgid "Please confirm your email address."
|
34 |
+
msgstr "Հաստատեք էլ․փոստի հասցեն"
|
35 |
+
|
36 |
+
#: class.cscf_contact.php:65
|
37 |
+
#: views/contact-form-with-recaptcha.view.php:53
|
38 |
+
#: views/contact-form.view.php:34
|
39 |
+
msgid "Please give your name."
|
40 |
+
msgstr "Գրեք ձեր անունը"
|
41 |
+
|
42 |
+
#: class.cscf_contact.php:69
|
43 |
+
msgid "Please enter a message."
|
44 |
+
msgstr "Գրեք հաղորդագրության տեքստը"
|
45 |
+
|
46 |
+
#: class.cscf_contact.php:73
|
47 |
+
#: views/contact-form-with-recaptcha.view.php:33
|
48 |
+
#: views/contact-form.view.php:14
|
49 |
+
msgid "Please enter a valid email address."
|
50 |
+
msgstr "Մուտքագրեք վալիդ էլ․փոստի հասցե"
|
51 |
+
|
52 |
+
#: class.cscf_contact.php:81
|
53 |
+
msgid "Sorry the code wasn't entered correctly please try again."
|
54 |
+
msgstr "Կոդը ճիշտ չի մուտքագրված, փորձեք նորից"
|
55 |
+
|
56 |
+
#: class.cscf_pluginsettings.php:40
|
57 |
+
msgid "Message Sent"
|
58 |
+
msgstr "Հաղորդագրությունը ուղարկված է"
|
59 |
+
|
60 |
+
#: class.cscf_pluginsettings.php:47
|
61 |
+
msgid "Thank you for your message, we will be in touch very shortly."
|
62 |
+
msgstr "Շնորհակալություն հաղորդագրության համար, մենք արագ կարձագանքենք։"
|
63 |
+
|
64 |
+
#: class.cscf_pluginsettings.php:54
|
65 |
+
msgid "Please enter your contact details and a short message below and I will try to answer your query as soon as possible."
|
66 |
+
msgstr "Գրեք ձեր հաղորդագրությունը և կոնտակտային տվյալները ստորև, մենք կպատասխանենք որքան հնարավոր է արագ։"
|
67 |
+
|
68 |
+
#: class.cscf_pluginsettings.php:83
|
69 |
+
msgid " - Web Enquiry"
|
70 |
+
msgstr ""
|
71 |
+
|
72 |
+
#: class.cscf_settings.php:41
|
73 |
+
msgid "Clean and Simple Contact Form Settings"
|
74 |
+
msgstr "Clean and Simple Contact Form -ի կարգավորումները"
|
75 |
+
|
76 |
+
#: class.cscf_settings.php:43
|
77 |
+
msgid "You are using version"
|
78 |
+
msgstr "Դուք օգտագործում եք հետևյալ վարկածը ՝ "
|
79 |
+
|
80 |
+
#: class.cscf_settings.php:44
|
81 |
+
msgid "If you find this plugin useful please consider"
|
82 |
+
msgstr "Կապվեք, եթե ունեք խնդիրներ փլագինի հետ"
|
83 |
+
|
84 |
+
#: class.cscf_settings.php:47
|
85 |
+
msgid "leaving a review"
|
86 |
+
msgstr ""
|
87 |
+
|
88 |
+
#: class.cscf_settings.php:49
|
89 |
+
msgid "Thank you!"
|
90 |
+
msgstr "Շնորհակալություն"
|
91 |
+
|
92 |
+
#: class.cscf_settings.php:68
|
93 |
+
msgid "ReCAPTCHA Settings"
|
94 |
+
msgstr "ReCAPTCHA-ի կարգավորումները"
|
95 |
+
|
96 |
+
#: class.cscf_settings.php:76
|
97 |
+
msgid "Use reCAPTCHA :"
|
98 |
+
msgstr "Օգտագործել reCAPTCHA :"
|
99 |
+
|
100 |
+
#: class.cscf_settings.php:82
|
101 |
+
msgid "reCAPTCHA Theme :"
|
102 |
+
msgstr "reCAPTCHA թեման,տեսքը:"
|
103 |
+
|
104 |
+
#: class.cscf_settings.php:88
|
105 |
+
msgid "reCAPTCHA Public Key :"
|
106 |
+
msgstr "reCAPTCHA հանրային բանալին :"
|
107 |
+
|
108 |
+
#: class.cscf_settings.php:94
|
109 |
+
msgid "reCAPTCHA Private Key :"
|
110 |
+
msgstr "reCAPTCHA-ի գաղտնի բանալին :"
|
111 |
+
|
112 |
+
#: class.cscf_settings.php:100
|
113 |
+
msgid "Message Settings"
|
114 |
+
msgstr "Հաղորդագրության կարգավորումները"
|
115 |
+
|
116 |
+
#: class.cscf_settings.php:104
|
117 |
+
msgid "Recipient Email :"
|
118 |
+
msgstr "Ստացողի․ էլ․փոստը"
|
119 |
+
|
120 |
+
#: class.cscf_settings.php:110
|
121 |
+
msgid "Email Subject :"
|
122 |
+
msgstr "Էլ․նամակի (էմակի) վերնագիրը"
|
123 |
+
|
124 |
+
#: class.cscf_settings.php:116
|
125 |
+
msgid "Message :"
|
126 |
+
msgstr "Հաղորդագրություն ՝"
|
127 |
+
|
128 |
+
#: class.cscf_settings.php:122
|
129 |
+
msgid "Message Sent Heading :"
|
130 |
+
msgstr "Ուղարկված հաղորդագրության վերնագիրը"
|
131 |
+
|
132 |
+
#: class.cscf_settings.php:128
|
133 |
+
msgid "Message Sent Content :"
|
134 |
+
msgstr "Ուղարկաված հաղորդագրության բովանդակությունը"
|
135 |
+
|
136 |
+
#: class.cscf_settings.php:134
|
137 |
+
msgid "Styling and Validation"
|
138 |
+
msgstr "Ոճավորում և Վալիդացիա"
|
139 |
+
|
140 |
+
#: class.cscf_settings.php:138
|
141 |
+
msgid "Use the plugin default stylesheet (un-tick to use your theme style sheet instead) :"
|
142 |
+
msgstr "Օգտագործել փլագինի լռելայն css-ոճը"
|
143 |
+
|
144 |
+
#: class.cscf_settings.php:144
|
145 |
+
msgid "Use client side validation (AJAX) :"
|
146 |
+
msgstr "Օգտագործել կլիենտ-սայդ վալիդացիա (AJAX)"
|
147 |
+
|
148 |
+
#: class.cscf_settings.php:216
|
149 |
+
msgid "Enter your reCAPTCHA settings below :"
|
150 |
+
msgstr "Կարգավորեք reCAPTCHA-ն ստորև"
|
151 |
+
|
152 |
+
#: class.cscf_settings.php:217
|
153 |
+
msgid "To use reCAPTCHA you must get an API key from"
|
154 |
+
msgstr "reCAPTCHA-ն օգտագործելու համար վերցրեք API բանալին"
|
155 |
+
|
156 |
+
#: class.cscf_settings.php:222
|
157 |
+
msgid "Enter your message settings below :"
|
158 |
+
msgstr "Հաղորդագրության կարգավորումները ստորև"
|
159 |
+
|
160 |
+
#: class.cscf_settings.php:274
|
161 |
+
msgid "Red"
|
162 |
+
msgstr "Կարմիր"
|
163 |
+
|
164 |
+
#: class.cscf_settings.php:275
|
165 |
+
msgid "White"
|
166 |
+
msgstr "Սպիտակ"
|
167 |
+
|
168 |
+
#: class.cscf_settings.php:276
|
169 |
+
msgid "Blackglass"
|
170 |
+
msgstr "Սև ապակի"
|
171 |
+
|
172 |
+
#: class.cscf_settings.php:277
|
173 |
+
msgid "Clean"
|
174 |
+
msgstr "Մաքուր"
|
175 |
+
|
176 |
+
#: views/contact-form-with-recaptcha.view.php:31
|
177 |
+
#: views/contact-form.view.php:12
|
178 |
+
msgid "Email Address:"
|
179 |
+
msgstr "Էլ․փոստի հասցե"
|
180 |
+
|
181 |
+
#: views/contact-form-with-recaptcha.view.php:33
|
182 |
+
#: views/contact-form.view.php:14
|
183 |
+
msgid "Your Email Address"
|
184 |
+
msgstr "Ձեր էլ․փոստի հասցեն"
|
185 |
+
|
186 |
+
#: views/contact-form-with-recaptcha.view.php:41
|
187 |
+
#: views/contact-form.view.php:22
|
188 |
+
msgid "Confirm Email Address:"
|
189 |
+
msgstr "Հաստատել էլ․փոստի հասցեն"
|
190 |
+
|
191 |
+
#: views/contact-form-with-recaptcha.view.php:43
|
192 |
+
#: views/contact-form.view.php:24
|
193 |
+
msgid "Please enter the same email address again."
|
194 |
+
msgstr "Կրկին ներմուծեք ձեր էլ․փոստի հասցեն"
|
195 |
+
|
196 |
+
#: views/contact-form-with-recaptcha.view.php:43
|
197 |
+
#: views/contact-form.view.php:24
|
198 |
+
msgid "Confirm Your Email Address"
|
199 |
+
msgstr "Հաստատեք ձեր էլ․փոստի հասցեն"
|
200 |
+
|
201 |
+
#: views/contact-form-with-recaptcha.view.php:51
|
202 |
+
#: views/contact-form.view.php:32
|
203 |
+
msgid "Name:"
|
204 |
+
msgstr "Անուն"
|
205 |
+
|
206 |
+
#: views/contact-form-with-recaptcha.view.php:53
|
207 |
+
#: views/contact-form.view.php:34
|
208 |
+
msgid "Your Name"
|
209 |
+
msgstr "Ձեր անունը"
|
210 |
+
|
211 |
+
#: views/contact-form-with-recaptcha.view.php:61
|
212 |
+
#: views/contact-form.view.php:42
|
213 |
+
msgid "Message:"
|
214 |
+
msgstr "Հաղորդագրություն"
|
215 |
+
|
216 |
+
#: views/contact-form-with-recaptcha.view.php:63
|
217 |
+
#: views/contact-form.view.php:44
|
218 |
+
msgid "Please give a message."
|
219 |
+
msgstr "Գրեք հաղորդագրություն"
|
220 |
+
|
221 |
+
#: views/contact-form-with-recaptcha.view.php:63
|
222 |
+
#: views/contact-form.view.php:44
|
223 |
+
msgid "Your Message"
|
224 |
+
msgstr "Ձեր հաղորդագրությունը"
|
225 |
+
|
226 |
+
#: views/contact-form-with-recaptcha.view.php:79
|
227 |
+
#: views/contact-form.view.php:51
|
228 |
+
msgid "Send Message"
|
229 |
+
msgstr "Ուղարկել հաղորդագրություն"
|
230 |
+
|
231 |
+
#: views/message-not-sent.view.php:1
|
232 |
+
msgid "Sorry, there has been a problem and your message was not sent."
|
233 |
+
msgstr "Ներողություն, ինչ որ խնդիր կա և ձեր հաղորդագրությունը չի ուղարկվել"
|
234 |
+
|
235 |
+
#. Plugin Name of the plugin/theme
|
236 |
+
msgid "Clean and Simple Contact Form"
|
237 |
+
msgstr "Clean and Simple Contact Form"
|
238 |
+
|
239 |
+
#. Plugin URI of the plugin/theme
|
240 |
+
msgid "http://www.megnicholas.co.uk/wordpress-plugins/clean-and-simple-contact-form"
|
241 |
+
msgstr "http://www.megnicholas.co.uk/wordpress-plugins/clean-and-simple-contact-form"
|
242 |
+
|
243 |
+
#. Description of the plugin/theme
|
244 |
+
msgid "A clean and simple contact form with Google reCAPTCHA and Twitter Bootstrap markup."
|
245 |
+
msgstr "Անվտանգ և պարզ կոնտակտ ֆորմա հիմնված Գուգլի reCAPTCHA-ի և Twitter Bootstrap-ի վրա։"
|
246 |
+
|
247 |
+
#. Author of the plugin/theme
|
248 |
+
msgid "Meghan Nicholas"
|
249 |
+
msgstr "Մեգան Նիկոլաս"
|
250 |
+
|
251 |
+
#. Author URI of the plugin/theme
|
252 |
+
msgid "http://www.megnicholas.co.uk"
|
253 |
+
msgstr "http://www.megnicholas.co.uk"
|
254 |
+
|
languages/cleanandsimple-nl_NL.mo
ADDED
Binary file
|
languages/cleanandsimple-nl_NL.po
ADDED
@@ -0,0 +1,264 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
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\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-20 08:37:17+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-07-25 20:32+0100\n"
|
13 |
+
"Last-Translator: a <a@b.nl>\n"
|
14 |
+
"Language-Team: LANGUAGE <LL@li.org>\n"
|
15 |
+
"X-Generator: Poedit 1.5.7\n"
|
16 |
+
|
17 |
+
#: class.cscf.php:102
|
18 |
+
msgid "Settings"
|
19 |
+
msgstr "Instellingen"
|
20 |
+
|
21 |
+
#: class.cscf_contact.php:53
|
22 |
+
msgid "Sorry the email addresses do not match."
|
23 |
+
msgstr "Sorry, de emailadressen komen niet overeen."
|
24 |
+
|
25 |
+
#: class.cscf_contact.php:57 views/contact-form-with-recaptcha.view.php:33
|
26 |
+
#: views/contact-form.view.php:14
|
27 |
+
msgid "Please give your email address."
|
28 |
+
msgstr "Vul uw emailadres in."
|
29 |
+
|
30 |
+
#: class.cscf_contact.php:61
|
31 |
+
msgid "Please confirm your email address."
|
32 |
+
msgstr "Bevestig uw emailadres."
|
33 |
+
|
34 |
+
#: class.cscf_contact.php:65 views/contact-form-with-recaptcha.view.php:53
|
35 |
+
#: views/contact-form.view.php:34
|
36 |
+
msgid "Please give your name."
|
37 |
+
msgstr "Vul uw naam in."
|
38 |
+
|
39 |
+
#: class.cscf_contact.php:69
|
40 |
+
msgid "Please enter a message."
|
41 |
+
msgstr "Vul een bericht in."
|
42 |
+
|
43 |
+
#: class.cscf_contact.php:73 views/contact-form-with-recaptcha.view.php:33
|
44 |
+
#: views/contact-form.view.php:14
|
45 |
+
msgid "Please enter a valid email address."
|
46 |
+
msgstr "Vul alstublieft een geldig emailadres in."
|
47 |
+
|
48 |
+
#: class.cscf_contact.php:81
|
49 |
+
msgid "Sorry the code wasn't entered correctly please try again."
|
50 |
+
msgstr "Sorry, u heeft de code niet juist ingevoerd. Probeer het opnieuw."
|
51 |
+
|
52 |
+
#: class.cscf_pluginsettings.php:40
|
53 |
+
msgid "Message Sent"
|
54 |
+
msgstr "Bericht verstuurd."
|
55 |
+
|
56 |
+
#: class.cscf_pluginsettings.php:47
|
57 |
+
msgid "Thank you for your message, we will be in touch very shortly."
|
58 |
+
msgstr "Dank u voor uw bericht, we zullen spoedig contact met u opnemen."
|
59 |
+
|
60 |
+
#: class.cscf_pluginsettings.php:54
|
61 |
+
msgid ""
|
62 |
+
"Please enter your contact details and a short message below and I will try "
|
63 |
+
"to answer your query as soon as possible."
|
64 |
+
msgstr ""
|
65 |
+
"Vul alstublieft uw gegevens in en daaronder een kort bericht. We zullen dan "
|
66 |
+
"zo spoedig mogelijk contact met u opnemen."
|
67 |
+
|
68 |
+
#: class.cscf_pluginsettings.php:83
|
69 |
+
msgid " - Web Enquiry"
|
70 |
+
msgstr " - Internet Onderzoek"
|
71 |
+
|
72 |
+
#: class.cscf_settings.php:41
|
73 |
+
msgid "Clean and Simple Contact Form Settings"
|
74 |
+
msgstr "Clean and Simple Contact Form Instellingen"
|
75 |
+
|
76 |
+
#: class.cscf_settings.php:43
|
77 |
+
msgid "You are using version"
|
78 |
+
msgstr "Je gebruikt versie"
|
79 |
+
|
80 |
+
#: class.cscf_settings.php:44
|
81 |
+
msgid "If you find this plugin useful please consider"
|
82 |
+
msgstr "Als je deze plugin nuttig vindt, overweeg dan"
|
83 |
+
|
84 |
+
#: class.cscf_settings.php:47
|
85 |
+
msgid "leaving a review"
|
86 |
+
msgstr "een review achter te laten"
|
87 |
+
|
88 |
+
#: class.cscf_settings.php:49
|
89 |
+
msgid "Thank you!"
|
90 |
+
msgstr "Bedankt!"
|
91 |
+
|
92 |
+
#: class.cscf_settings.php:68
|
93 |
+
msgid "ReCAPTCHA Settings"
|
94 |
+
msgstr "ReCAPTCHA Instellingen"
|
95 |
+
|
96 |
+
#: class.cscf_settings.php:76
|
97 |
+
msgid "Use reCAPTCHA :"
|
98 |
+
msgstr "Gebruik reCAPTCHA:"
|
99 |
+
|
100 |
+
#: class.cscf_settings.php:82
|
101 |
+
msgid "reCAPTCHA Theme :"
|
102 |
+
msgstr "reCAPTCHA Thema:"
|
103 |
+
|
104 |
+
#: class.cscf_settings.php:88
|
105 |
+
msgid "reCAPTCHA Public Key :"
|
106 |
+
msgstr "reCAPTCHA Public Key :"
|
107 |
+
|
108 |
+
#: class.cscf_settings.php:94
|
109 |
+
msgid "reCAPTCHA Private Key :"
|
110 |
+
msgstr "reCAPTCHA Private Key :"
|
111 |
+
|
112 |
+
#: class.cscf_settings.php:100
|
113 |
+
msgid "Message Settings"
|
114 |
+
msgstr "Bericht Instellingen"
|
115 |
+
|
116 |
+
#: class.cscf_settings.php:104
|
117 |
+
msgid "Recipient Email :"
|
118 |
+
msgstr "Email Ontvanger:"
|
119 |
+
|
120 |
+
#: class.cscf_settings.php:110
|
121 |
+
msgid "Email Subject :"
|
122 |
+
msgstr "Email Onderwerp:"
|
123 |
+
|
124 |
+
#: class.cscf_settings.php:116
|
125 |
+
msgid "Message :"
|
126 |
+
msgstr "Bericht:"
|
127 |
+
|
128 |
+
#: class.cscf_settings.php:122
|
129 |
+
msgid "Message Sent Heading :"
|
130 |
+
msgstr "Bericht Verzonden Kop:"
|
131 |
+
|
132 |
+
#: class.cscf_settings.php:128
|
133 |
+
msgid "Message Sent Content :"
|
134 |
+
msgstr "Bericht Verzonden Inhoud:"
|
135 |
+
|
136 |
+
#: class.cscf_settings.php:134
|
137 |
+
msgid "Styling and Validation"
|
138 |
+
msgstr "Styling en Validatie"
|
139 |
+
|
140 |
+
#: class.cscf_settings.php:138
|
141 |
+
msgid ""
|
142 |
+
"Use the plugin default stylesheet (un-tick to use your theme style sheet "
|
143 |
+
"instead) :"
|
144 |
+
msgstr ""
|
145 |
+
"Gebruik de standaard stylesheet van de plugin (uitvinken om de stylesheet "
|
146 |
+
"van je thema te gebruiken) :"
|
147 |
+
|
148 |
+
#: class.cscf_settings.php:144
|
149 |
+
msgid "Use client side validation (AJAX) :"
|
150 |
+
msgstr "Gebruik client-side validatie (AJAX):"
|
151 |
+
|
152 |
+
#: class.cscf_settings.php:216
|
153 |
+
msgid "Enter your reCAPTCHA settings below :"
|
154 |
+
msgstr "Vul hier je reCAPTCHA instellingen in :"
|
155 |
+
|
156 |
+
#: class.cscf_settings.php:217
|
157 |
+
msgid "To use reCAPTCHA you must get an API key from"
|
158 |
+
msgstr "Om reCAPTCHA te gebruiken moet je een API sleutel krijgen van"
|
159 |
+
|
160 |
+
#: class.cscf_settings.php:222
|
161 |
+
msgid "Enter your message settings below :"
|
162 |
+
msgstr "Vul je berichtinstellingen hieronder in :"
|
163 |
+
|
164 |
+
#: class.cscf_settings.php:274
|
165 |
+
msgid "Red"
|
166 |
+
msgstr "Rood"
|
167 |
+
|
168 |
+
#: class.cscf_settings.php:275
|
169 |
+
msgid "White"
|
170 |
+
msgstr "Wit"
|
171 |
+
|
172 |
+
#: class.cscf_settings.php:276
|
173 |
+
msgid "Blackglass"
|
174 |
+
msgstr "Zwartglas"
|
175 |
+
|
176 |
+
#: class.cscf_settings.php:277
|
177 |
+
msgid "Clean"
|
178 |
+
msgstr "Clean"
|
179 |
+
|
180 |
+
#: views/contact-form-with-recaptcha.view.php:31
|
181 |
+
#: views/contact-form.view.php:12
|
182 |
+
msgid "Email Address:"
|
183 |
+
msgstr "Emailadres:"
|
184 |
+
|
185 |
+
#: views/contact-form-with-recaptcha.view.php:33
|
186 |
+
#: views/contact-form.view.php:14
|
187 |
+
msgid "Your Email Address"
|
188 |
+
msgstr "Uw Emailadres"
|
189 |
+
|
190 |
+
#: views/contact-form-with-recaptcha.view.php:41
|
191 |
+
#: views/contact-form.view.php:22
|
192 |
+
msgid "Confirm Email Address:"
|
193 |
+
msgstr "Bevestig Emailadres"
|
194 |
+
|
195 |
+
#: views/contact-form-with-recaptcha.view.php:43
|
196 |
+
#: views/contact-form.view.php:24
|
197 |
+
msgid "Please enter the same email address again."
|
198 |
+
msgstr "Vul nogmaals het zelfde emailadres in."
|
199 |
+
|
200 |
+
#: views/contact-form-with-recaptcha.view.php:43
|
201 |
+
#: views/contact-form.view.php:24
|
202 |
+
msgid "Confirm Your Email Address"
|
203 |
+
msgstr "Bevestig Uw Emailadres"
|
204 |
+
|
205 |
+
#: views/contact-form-with-recaptcha.view.php:51
|
206 |
+
#: views/contact-form.view.php:32
|
207 |
+
msgid "Name:"
|
208 |
+
msgstr "Naam:"
|
209 |
+
|
210 |
+
#: views/contact-form-with-recaptcha.view.php:53
|
211 |
+
#: views/contact-form.view.php:34
|
212 |
+
msgid "Your Name"
|
213 |
+
msgstr "Uw Naam"
|
214 |
+
|
215 |
+
#: views/contact-form-with-recaptcha.view.php:61
|
216 |
+
#: views/contact-form.view.php:42
|
217 |
+
msgid "Message:"
|
218 |
+
msgstr "Bericht:"
|
219 |
+
|
220 |
+
#: views/contact-form-with-recaptcha.view.php:63
|
221 |
+
#: views/contact-form.view.php:44
|
222 |
+
msgid "Please give a message."
|
223 |
+
msgstr "Schrijf alstublieft een bericht."
|
224 |
+
|
225 |
+
#: views/contact-form-with-recaptcha.view.php:63
|
226 |
+
#: views/contact-form.view.php:44
|
227 |
+
msgid "Your Message"
|
228 |
+
msgstr "Uw Bericht"
|
229 |
+
|
230 |
+
#: views/contact-form-with-recaptcha.view.php:79
|
231 |
+
#: views/contact-form.view.php:51
|
232 |
+
msgid "Send Message"
|
233 |
+
msgstr "Bericht Versturen"
|
234 |
+
|
235 |
+
#: views/message-not-sent.view.php:1
|
236 |
+
msgid "Sorry, there has been a problem and your message was not sent."
|
237 |
+
msgstr ""
|
238 |
+
"Sorry, er was een probleem waardoor het bericht niet verzonden kon worden."
|
239 |
+
|
240 |
+
#. Plugin Name of the plugin/theme
|
241 |
+
msgid "Clean and Simple Contact Form"
|
242 |
+
msgstr "Clean and Simple Contact Formulier"
|
243 |
+
|
244 |
+
#. Plugin URI of the plugin/theme
|
245 |
+
msgid ""
|
246 |
+
"http://www.megnicholas.co.uk/wordpress-plugins/clean-and-simple-contact-form"
|
247 |
+
msgstr ""
|
248 |
+
"http://www.megnicholas.co.uk/wordpress-plugins/clean-and-simple-contact-form"
|
249 |
+
|
250 |
+
#. Description of the plugin/theme
|
251 |
+
msgid ""
|
252 |
+
"A clean and simple contact form with Google reCAPTCHA and Twitter Bootstrap "
|
253 |
+
"markup."
|
254 |
+
msgstr ""
|
255 |
+
"A schoon en simpel contactformulier met Google reCAPTCHA en Twitter "
|
256 |
+
"Bootstrap opmaak."
|
257 |
+
|
258 |
+
#. Author of the plugin/theme
|
259 |
+
msgid "Meghan Nicholas"
|
260 |
+
msgstr "Meghan Nicholas"
|
261 |
+
|
262 |
+
#. Author URI of the plugin/theme
|
263 |
+
msgid "http://www.megnicholas.co.uk"
|
264 |
+
msgstr "http://www.megnicholas.co.uk"
|
languages/cleanandsimple-pl_PL.mo
ADDED
Binary file
|
languages/cleanandsimple-pl_PL.po
ADDED
@@ -0,0 +1,257 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
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\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-20 08:37:17+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-07-15 16:05+0100\n"
|
13 |
+
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
|
14 |
+
"Language-Team: LANGUAGE <LL@li.org>\n"
|
15 |
+
"X-Generator: Poedit 1.5.7\n"
|
16 |
+
|
17 |
+
#: class.cscf.php:102
|
18 |
+
msgid "Settings"
|
19 |
+
msgstr "Ustawienia"
|
20 |
+
|
21 |
+
#: class.cscf_contact.php:53
|
22 |
+
msgid "Sorry the email addresses do not match."
|
23 |
+
msgstr "Podane emaile nie są takie same."
|
24 |
+
|
25 |
+
#: class.cscf_contact.php:57 views/contact-form-with-recaptcha.view.php:33
|
26 |
+
#: views/contact-form.view.php:14
|
27 |
+
msgid "Please give your email address."
|
28 |
+
msgstr "Wpisz swój adres email."
|
29 |
+
|
30 |
+
#: class.cscf_contact.php:61
|
31 |
+
msgid "Please confirm your email address."
|
32 |
+
msgstr "Potwierdź swój adres email."
|
33 |
+
|
34 |
+
#: class.cscf_contact.php:65 views/contact-form-with-recaptcha.view.php:53
|
35 |
+
#: views/contact-form.view.php:34
|
36 |
+
msgid "Please give your name."
|
37 |
+
msgstr "Podaj swoje imię."
|
38 |
+
|
39 |
+
#: class.cscf_contact.php:69
|
40 |
+
msgid "Please enter a message."
|
41 |
+
msgstr "Napisz wiadomość."
|
42 |
+
|
43 |
+
#: class.cscf_contact.php:73 views/contact-form-with-recaptcha.view.php:33
|
44 |
+
#: views/contact-form.view.php:14
|
45 |
+
msgid "Please enter a valid email address."
|
46 |
+
msgstr "Podany adres email jest nieprawidłowy."
|
47 |
+
|
48 |
+
#: class.cscf_contact.php:81
|
49 |
+
msgid "Sorry the code wasn't entered correctly please try again."
|
50 |
+
msgstr "Kod jest nieprawidłowy."
|
51 |
+
|
52 |
+
#: class.cscf_pluginsettings.php:40
|
53 |
+
msgid "Message Sent"
|
54 |
+
msgstr "Wiadomość została wysłana"
|
55 |
+
|
56 |
+
#: class.cscf_pluginsettings.php:47
|
57 |
+
msgid "Thank you for your message, we will be in touch very shortly."
|
58 |
+
msgstr "Dziekuje za wiadomość, postaram się odpisać jak najszybciej."
|
59 |
+
|
60 |
+
#: class.cscf_pluginsettings.php:54
|
61 |
+
msgid ""
|
62 |
+
"Please enter your contact details and a short message below and I will try "
|
63 |
+
"to answer your query as soon as possible."
|
64 |
+
msgstr ""
|
65 |
+
|
66 |
+
#: class.cscf_pluginsettings.php:83
|
67 |
+
msgid " - Web Enquiry"
|
68 |
+
msgstr "- Zapytanie"
|
69 |
+
|
70 |
+
#: class.cscf_settings.php:41
|
71 |
+
msgid "Clean and Simple Contact Form Settings"
|
72 |
+
msgstr "Clean and Simple Contact Form Ustawienia"
|
73 |
+
|
74 |
+
#: class.cscf_settings.php:43
|
75 |
+
msgid "You are using version"
|
76 |
+
msgstr "Używasz wersji"
|
77 |
+
|
78 |
+
#: class.cscf_settings.php:44
|
79 |
+
msgid "If you find this plugin useful please consider"
|
80 |
+
msgstr "Jeśli ten plugin Ci się przyda, "
|
81 |
+
|
82 |
+
#: class.cscf_settings.php:47
|
83 |
+
msgid "leaving a review"
|
84 |
+
msgstr "zostaw komentarz"
|
85 |
+
|
86 |
+
#: class.cscf_settings.php:49
|
87 |
+
msgid "Thank you!"
|
88 |
+
msgstr "Dziękuje!"
|
89 |
+
|
90 |
+
#: class.cscf_settings.php:68
|
91 |
+
msgid "ReCAPTCHA Settings"
|
92 |
+
msgstr "Ustawienia ReCAPTCHA"
|
93 |
+
|
94 |
+
#: class.cscf_settings.php:76
|
95 |
+
msgid "Use reCAPTCHA :"
|
96 |
+
msgstr "Uzyj reCAPTCHA"
|
97 |
+
|
98 |
+
#: class.cscf_settings.php:82
|
99 |
+
msgid "reCAPTCHA Theme :"
|
100 |
+
msgstr "Skórka reCAPTCHA:"
|
101 |
+
|
102 |
+
#: class.cscf_settings.php:88
|
103 |
+
msgid "reCAPTCHA Public Key :"
|
104 |
+
msgstr "Publiczny klucz reCAPTCHA :"
|
105 |
+
|
106 |
+
#: class.cscf_settings.php:94
|
107 |
+
msgid "reCAPTCHA Private Key :"
|
108 |
+
msgstr "Prywatny klucz reCAPTCHA :"
|
109 |
+
|
110 |
+
#: class.cscf_settings.php:100
|
111 |
+
msgid "Message Settings"
|
112 |
+
msgstr "Ustawienia wiadomości"
|
113 |
+
|
114 |
+
#: class.cscf_settings.php:104
|
115 |
+
msgid "Recipient Email :"
|
116 |
+
msgstr "Email na który ma zostać wysłany mail :"
|
117 |
+
|
118 |
+
#: class.cscf_settings.php:110
|
119 |
+
msgid "Email Subject :"
|
120 |
+
msgstr "Temat wiadomości :"
|
121 |
+
|
122 |
+
#: class.cscf_settings.php:116
|
123 |
+
msgid "Message :"
|
124 |
+
msgstr "Wiadomość :"
|
125 |
+
|
126 |
+
#: class.cscf_settings.php:122
|
127 |
+
msgid "Message Sent Heading :"
|
128 |
+
msgstr "Nagłówek wyświetlany po wysłaniu wiadomościi :"
|
129 |
+
|
130 |
+
#: class.cscf_settings.php:128
|
131 |
+
msgid "Message Sent Content :"
|
132 |
+
msgstr "Treśći :"
|
133 |
+
|
134 |
+
#: class.cscf_settings.php:134
|
135 |
+
msgid "Styling and Validation"
|
136 |
+
msgstr "Styl i walidacja :"
|
137 |
+
|
138 |
+
#: class.cscf_settings.php:138
|
139 |
+
msgid ""
|
140 |
+
"Use the plugin default stylesheet (un-tick to use your theme style sheet "
|
141 |
+
"instead) :"
|
142 |
+
msgstr "Uzyj wbudowanego stylu (odznaczy by użyć swoich styli) :"
|
143 |
+
|
144 |
+
#: class.cscf_settings.php:144
|
145 |
+
msgid "Use client side validation (AJAX) :"
|
146 |
+
msgstr "Użyć Ajax?"
|
147 |
+
|
148 |
+
#: class.cscf_settings.php:216
|
149 |
+
msgid "Enter your reCAPTCHA settings below :"
|
150 |
+
msgstr "Wpisz ponizej swoje ustawienia reCAPTCHA :"
|
151 |
+
|
152 |
+
#: class.cscf_settings.php:217
|
153 |
+
msgid "To use reCAPTCHA you must get an API key from"
|
154 |
+
msgstr "Aby używać reCAPTCHA musisz mieć klucz API"
|
155 |
+
|
156 |
+
#: class.cscf_settings.php:222
|
157 |
+
msgid "Enter your message settings below :"
|
158 |
+
msgstr "Wpisz swoje ustawienia poniżej"
|
159 |
+
|
160 |
+
#: class.cscf_settings.php:274
|
161 |
+
msgid "Red"
|
162 |
+
msgstr "Czerwony"
|
163 |
+
|
164 |
+
#: class.cscf_settings.php:275
|
165 |
+
msgid "White"
|
166 |
+
msgstr "Biały"
|
167 |
+
|
168 |
+
#: class.cscf_settings.php:276
|
169 |
+
msgid "Blackglass"
|
170 |
+
msgstr "Czarne szkło"
|
171 |
+
|
172 |
+
#: class.cscf_settings.php:277
|
173 |
+
msgid "Clean"
|
174 |
+
msgstr "Czysty"
|
175 |
+
|
176 |
+
#: views/contact-form-with-recaptcha.view.php:31
|
177 |
+
#: views/contact-form.view.php:12
|
178 |
+
msgid "Email Address:"
|
179 |
+
msgstr "Adres email :"
|
180 |
+
|
181 |
+
#: views/contact-form-with-recaptcha.view.php:33
|
182 |
+
#: views/contact-form.view.php:14
|
183 |
+
msgid "Your Email Address"
|
184 |
+
msgstr "Twój adres email"
|
185 |
+
|
186 |
+
#: views/contact-form-with-recaptcha.view.php:41
|
187 |
+
#: views/contact-form.view.php:22
|
188 |
+
msgid "Confirm Email Address:"
|
189 |
+
msgstr "Potwierdz adres email :"
|
190 |
+
|
191 |
+
#: views/contact-form-with-recaptcha.view.php:43
|
192 |
+
#: views/contact-form.view.php:24
|
193 |
+
msgid "Please enter the same email address again."
|
194 |
+
msgstr "Wpisz jeszcze raz swój email"
|
195 |
+
|
196 |
+
#: views/contact-form-with-recaptcha.view.php:43
|
197 |
+
#: views/contact-form.view.php:24
|
198 |
+
msgid "Confirm Your Email Address"
|
199 |
+
msgstr "Potwierdź swoją wiadomość"
|
200 |
+
|
201 |
+
#: views/contact-form-with-recaptcha.view.php:51
|
202 |
+
#: views/contact-form.view.php:32
|
203 |
+
msgid "Name:"
|
204 |
+
msgstr "Imię :"
|
205 |
+
|
206 |
+
#: views/contact-form-with-recaptcha.view.php:53
|
207 |
+
#: views/contact-form.view.php:34
|
208 |
+
msgid "Your Name"
|
209 |
+
msgstr "Imię"
|
210 |
+
|
211 |
+
#: views/contact-form-with-recaptcha.view.php:61
|
212 |
+
#: views/contact-form.view.php:42
|
213 |
+
msgid "Message:"
|
214 |
+
msgstr "Wiadomość :"
|
215 |
+
|
216 |
+
#: views/contact-form-with-recaptcha.view.php:63
|
217 |
+
#: views/contact-form.view.php:44
|
218 |
+
msgid "Please give a message."
|
219 |
+
msgstr "Wpisz wiadomość"
|
220 |
+
|
221 |
+
#: views/contact-form-with-recaptcha.view.php:63
|
222 |
+
#: views/contact-form.view.php:44
|
223 |
+
msgid "Your Message"
|
224 |
+
msgstr "Wiadomość"
|
225 |
+
|
226 |
+
#: views/contact-form-with-recaptcha.view.php:79
|
227 |
+
#: views/contact-form.view.php:51
|
228 |
+
msgid "Send Message"
|
229 |
+
msgstr "Wyślij"
|
230 |
+
|
231 |
+
#: views/message-not-sent.view.php:1
|
232 |
+
msgid "Sorry, there has been a problem and your message was not sent."
|
233 |
+
msgstr "Przepraszam, wiadomość nie została wysłana."
|
234 |
+
|
235 |
+
#. Plugin Name of the plugin/theme
|
236 |
+
msgid "Clean and Simple Contact Form"
|
237 |
+
msgstr ""
|
238 |
+
|
239 |
+
#. Plugin URI of the plugin/theme
|
240 |
+
msgid ""
|
241 |
+
"http://www.megnicholas.co.uk/wordpress-plugins/clean-and-simple-contact-form"
|
242 |
+
msgstr ""
|
243 |
+
|
244 |
+
#. Description of the plugin/theme
|
245 |
+
msgid ""
|
246 |
+
"A clean and simple contact form with Google reCAPTCHA and Twitter Bootstrap "
|
247 |
+
"markup."
|
248 |
+
msgstr ""
|
249 |
+
"Prosty formularz kontaktowy z Google reCAPTCHA i style Twitter Bootstrap."
|
250 |
+
|
251 |
+
#. Author of the plugin/theme
|
252 |
+
msgid "Meghan Nicholas"
|
253 |
+
msgstr ""
|
254 |
+
|
255 |
+
#. Author URI of the plugin/theme
|
256 |
+
msgid "http://www.megnicholas.co.uk"
|
257 |
+
msgstr ""
|
languages/cleanandsimple-pt_PT.mo
ADDED
Binary file
|
languages/cleanandsimple-pt_PT.po
ADDED
@@ -0,0 +1,264 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
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-07-02 18:53-0000\n"
|
13 |
+
"Last-Translator: Ricardo Santos aka BogasoBogolha <jrvsantos@gmail.com>\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 "Configurações"
|
20 |
+
|
21 |
+
#: class.cff_contact.php:55
|
22 |
+
msgid "Sorry the email addresses do not match."
|
23 |
+
msgstr "Desculpe, os endereços de e-mail não coincidem."
|
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 "Por favor, indique o seu endereço de e-mail."
|
29 |
+
|
30 |
+
#: class.cff_contact.php:63
|
31 |
+
msgid "Please confirm your email address."
|
32 |
+
msgstr "Por favor, confirme o seu endereço de e-mail."
|
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 "Por favor, dê o seu nome."
|
38 |
+
|
39 |
+
#: class.cff_contact.php:71
|
40 |
+
msgid "Please enter a message."
|
41 |
+
msgstr "Por favor insira uma mensagem."
|
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 "Por favor insira um endereço de e-mail válido."
|
47 |
+
|
48 |
+
#: class.cff_contact.php:83
|
49 |
+
msgid "Sorry the code wasn't entered correctly please try again."
|
50 |
+
msgstr ""
|
51 |
+
"Desculpe, o código não foi inserido corretamente, por favor tente novamente."
|
52 |
+
|
53 |
+
#: class.cff_pluginsettings.php:40
|
54 |
+
msgid "Message Sent"
|
55 |
+
msgstr "Mensagem enviada."
|
56 |
+
|
57 |
+
#: class.cff_pluginsettings.php:47
|
58 |
+
msgid "Thank you for your message, we will be in touch very shortly."
|
59 |
+
msgstr "Obrigado pela sua mensagem, entraremos em contato muito em breve."
|
60 |
+
|
61 |
+
#: class.cff_pluginsettings.php:54
|
62 |
+
msgid ""
|
63 |
+
"Please enter your contact details and a short message below and I will try "
|
64 |
+
"to answer your query as soon as possible."
|
65 |
+
msgstr ""
|
66 |
+
"Por favor, insira os seus dados de contacto e uma curta mensagem abaixo e "
|
67 |
+
"vou tentar responder à sua consulta o mais breve possível."
|
68 |
+
|
69 |
+
#: class.cff_pluginsettings.php:83
|
70 |
+
msgid " - Web Enquiry"
|
71 |
+
msgstr "- Inquérito Web "
|
72 |
+
|
73 |
+
#: class.cff_settings.php:41
|
74 |
+
msgid "Clean and Simple Contact Form Settings"
|
75 |
+
msgstr " Configurações do Formulário de Contacto Clean and Simple"
|
76 |
+
|
77 |
+
#: class.cff_settings.php:43
|
78 |
+
msgid "You are using version"
|
79 |
+
msgstr "Está a utilizar a versão"
|
80 |
+
|
81 |
+
#: class.cff_settings.php:44
|
82 |
+
msgid "If you find this plugin useful please consider"
|
83 |
+
msgstr "Se achar este plugin útil, por favor considere"
|
84 |
+
|
85 |
+
#: class.cff_settings.php:47
|
86 |
+
msgid "leaving a review"
|
87 |
+
msgstr "deixar um comentário"
|
88 |
+
|
89 |
+
#: class.cff_settings.php:49
|
90 |
+
msgid "Thank you!"
|
91 |
+
msgstr "Obrigado!"
|
92 |
+
|
93 |
+
#: class.cff_settings.php:68
|
94 |
+
msgid "ReCAPTCHA Settings"
|
95 |
+
msgstr "Configurações ReCAPTCHA"
|
96 |
+
|
97 |
+
#: class.cff_settings.php:76
|
98 |
+
msgid "Use reCAPTCHA :"
|
99 |
+
msgstr "Utilize reCAPTCHA:"
|
100 |
+
|
101 |
+
#: class.cff_settings.php:82
|
102 |
+
msgid "reCAPTCHA Theme :"
|
103 |
+
msgstr "Tema do reCAPTCHA :"
|
104 |
+
|
105 |
+
#: class.cff_settings.php:88
|
106 |
+
msgid "reCAPTCHA Public Key :"
|
107 |
+
msgstr "Chave Pública reCAPTCHA :"
|
108 |
+
|
109 |
+
#: class.cff_settings.php:94
|
110 |
+
msgid "reCAPTCHA Private Key :"
|
111 |
+
msgstr "Chave Privada reCAPTCHA :"
|
112 |
+
|
113 |
+
#: class.cff_settings.php:100
|
114 |
+
msgid "Message Settings"
|
115 |
+
msgstr "Configurações de mensagens"
|
116 |
+
|
117 |
+
#: class.cff_settings.php:104
|
118 |
+
msgid "Recipient Email :"
|
119 |
+
msgstr "E-mail do Destinatário:"
|
120 |
+
|
121 |
+
#: class.cff_settings.php:110
|
122 |
+
msgid "Email Subject :"
|
123 |
+
msgstr "Assunto do E-mail :"
|
124 |
+
|
125 |
+
#: class.cff_settings.php:116
|
126 |
+
msgid "Message :"
|
127 |
+
msgstr "Mensagem :"
|
128 |
+
|
129 |
+
#: class.cff_settings.php:122
|
130 |
+
msgid "Message Sent Heading :"
|
131 |
+
msgstr "Título da Mensagem Enviada :"
|
132 |
+
|
133 |
+
#: class.cff_settings.php:128
|
134 |
+
msgid "Message Sent Content :"
|
135 |
+
msgstr "Conteúdo da Mensagem Enviada :"
|
136 |
+
|
137 |
+
#: class.cff_settings.php:134
|
138 |
+
msgid "Styling and Validation"
|
139 |
+
msgstr "Estilos e Validação"
|
140 |
+
|
141 |
+
#: class.cff_settings.php:138
|
142 |
+
msgid ""
|
143 |
+
"Use the plugin default stylesheet (un-tick to use your theme style sheet "
|
144 |
+
"instead) :"
|
145 |
+
msgstr ""
|
146 |
+
"Use o tema de estilo do plugin por defeito (em alternativa, desseleccione "
|
147 |
+
"para utilizar o estilo do seu tema):"
|
148 |
+
|
149 |
+
#: class.cff_settings.php:144
|
150 |
+
msgid "Use client side validation (AJAX) :"
|
151 |
+
msgstr "Use a validação do lado do cliente (AJAX) :"
|
152 |
+
|
153 |
+
#: class.cff_settings.php:216
|
154 |
+
msgid "Enter your reCAPTCHA settings below :"
|
155 |
+
msgstr "Introduza os seus dados reCAPTCHA abaixo :"
|
156 |
+
|
157 |
+
#: class.cff_settings.php:217
|
158 |
+
msgid "To use reCAPTCHA you must get an API key from"
|
159 |
+
msgstr "Para usar o reCAPTCHA deve obter uma chave API do"
|
160 |
+
|
161 |
+
#: class.cff_settings.php:222
|
162 |
+
msgid "Enter your message settings below :"
|
163 |
+
msgstr "Introduza as configurações da sua mensagem abaixo :"
|
164 |
+
|
165 |
+
#: class.cff_settings.php:274
|
166 |
+
msgid "Red"
|
167 |
+
msgstr "Vermelho"
|
168 |
+
|
169 |
+
#: class.cff_settings.php:275
|
170 |
+
msgid "White"
|
171 |
+
msgstr "Branco"
|
172 |
+
|
173 |
+
#: class.cff_settings.php:276
|
174 |
+
msgid "Blackglass"
|
175 |
+
msgstr "Vidro negro"
|
176 |
+
|
177 |
+
#: class.cff_settings.php:277
|
178 |
+
msgid "Clean"
|
179 |
+
msgstr "Limpo"
|
180 |
+
|
181 |
+
#: views/contact-form-with-recaptcha.view.php:27
|
182 |
+
#: views/contact-form.view.php:12
|
183 |
+
msgid "Email Address:"
|
184 |
+
msgstr "Endereço de E-mail:"
|
185 |
+
|
186 |
+
#: views/contact-form-with-recaptcha.view.php:29
|
187 |
+
#: views/contact-form.view.php:14
|
188 |
+
msgid "Your Email Address"
|
189 |
+
msgstr "O seu endereço de e-mail"
|
190 |
+
|
191 |
+
#: views/contact-form-with-recaptcha.view.php:37
|
192 |
+
#: views/contact-form.view.php:22
|
193 |
+
msgid "Confirm Email Address:"
|
194 |
+
msgstr "Confirme o endereço de e-mail:"
|
195 |
+
|
196 |
+
#: views/contact-form-with-recaptcha.view.php:39
|
197 |
+
#: views/contact-form.view.php:24
|
198 |
+
msgid "Please enter the same email address again."
|
199 |
+
msgstr "Por favor, insira o mesmo endereço de e-mail novamente."
|
200 |
+
|
201 |
+
#: views/contact-form-with-recaptcha.view.php:39
|
202 |
+
#: views/contact-form.view.php:24
|
203 |
+
msgid "Confirm Your Email Address"
|
204 |
+
msgstr "Confirme o seu endereço e-mail"
|
205 |
+
|
206 |
+
#: views/contact-form-with-recaptcha.view.php:47
|
207 |
+
#: views/contact-form.view.php:32
|
208 |
+
msgid "Name:"
|
209 |
+
msgstr "Nome:"
|
210 |
+
|
211 |
+
#: views/contact-form-with-recaptcha.view.php:49
|
212 |
+
#: views/contact-form.view.php:34
|
213 |
+
msgid "Your Name"
|
214 |
+
msgstr "O Seu Nome"
|
215 |
+
|
216 |
+
#: views/contact-form-with-recaptcha.view.php:57
|
217 |
+
#: views/contact-form.view.php:42
|
218 |
+
msgid "Message:"
|
219 |
+
msgstr "Mensagem:"
|
220 |
+
|
221 |
+
#: views/contact-form-with-recaptcha.view.php:59
|
222 |
+
#: views/contact-form.view.php:44
|
223 |
+
msgid "Please give a message."
|
224 |
+
msgstr "Por favor, deixe uma mensagem."
|
225 |
+
|
226 |
+
#: views/contact-form-with-recaptcha.view.php:59
|
227 |
+
#: views/contact-form.view.php:44
|
228 |
+
msgid "Your Message"
|
229 |
+
msgstr "A Sua Mensagem"
|
230 |
+
|
231 |
+
#: views/contact-form-with-recaptcha.view.php:75
|
232 |
+
#: views/contact-form.view.php:51
|
233 |
+
msgid "Send Message"
|
234 |
+
msgstr "Enviar Mensagem"
|
235 |
+
|
236 |
+
#: views/message-not-sent.view.php:1
|
237 |
+
msgid "Sorry, there has been a problem and your message was not sent."
|
238 |
+
msgstr "Desculpe, houve um problema e a sua mensagem não foi enviada."
|
239 |
+
|
240 |
+
#. Plugin Name of the plugin/theme
|
241 |
+
msgid "Clean and Simple Contact Form"
|
242 |
+
msgstr "Formulário de Contacto Clean and Simple"
|
243 |
+
|
244 |
+
#. Plugin URI of the plugin/theme
|
245 |
+
msgid ""
|
246 |
+
"http://www.megnicholas.co.uk/wordpress-plugins/clean-and-simple-contact-form"
|
247 |
+
msgstr ""
|
248 |
+
"http://www.megnicholas.co.uk/wordpress-plugins/clean-and-simple-contact-form"
|
249 |
+
|
250 |
+
#. Description of the plugin/theme
|
251 |
+
msgid ""
|
252 |
+
"A clean and simple contact form with Google reCAPTCHA and Twitter Bootstrap "
|
253 |
+
"markup."
|
254 |
+
msgstr ""
|
255 |
+
"Um formulário de contacto limpo e simples, com reCAPTCHA Google e marcação "
|
256 |
+
"Twitter Bootstrap ."
|
257 |
+
|
258 |
+
#. Author of the plugin/theme
|
259 |
+
msgid "Meghan Nicholas"
|
260 |
+
msgstr "Meghan Nicholas"
|
261 |
+
|
262 |
+
#. Author URI of the plugin/theme
|
263 |
+
msgid "http://www.megnicholas.co.uk"
|
264 |
+
msgstr "http://www.megnicholas.co.uk"
|
languages/cleanandsimple-sv_SE.mo
ADDED
Binary file
|
languages/cleanandsimple-sv_SE.po
ADDED
@@ -0,0 +1,265 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
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-07-03 10:48+0100\n"
|
8 |
+
"Last-Translator: hassesetter <hasse@setter-co.se>\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 "Inställningar"
|
21 |
+
|
22 |
+
#: class.cff_contact.php:55
|
23 |
+
msgid "Sorry the email addresses do not match."
|
24 |
+
msgstr "Tyvärr är epostadressen felaktig."
|
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 "Fyll i epostadressen."
|
30 |
+
|
31 |
+
#: class.cff_contact.php:63
|
32 |
+
msgid "Please confirm your email address."
|
33 |
+
msgstr "Bekräfta epostadressen."
|
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 "Fyll i ditt namn."
|
39 |
+
|
40 |
+
#: class.cff_contact.php:71
|
41 |
+
msgid "Please enter a message."
|
42 |
+
msgstr "Skriv ett meddelande."
|
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 "Fyll i en giltig epostadress."
|
48 |
+
|
49 |
+
#: class.cff_contact.php:83
|
50 |
+
msgid "Sorry the code wasn't entered correctly please try again."
|
51 |
+
msgstr "Tyvärr har du fyllt i fel kod, prova igen."
|
52 |
+
|
53 |
+
#: class.cff_pluginsettings.php:40
|
54 |
+
msgid "Message Sent"
|
55 |
+
msgstr "Meddelandet är skickat."
|
56 |
+
|
57 |
+
#: class.cff_pluginsettings.php:47
|
58 |
+
msgid "Thank you for your message, we will be in touch very shortly."
|
59 |
+
msgstr "Tack för ditt meddelande, vi kontaktar er så snart som möjligt."
|
60 |
+
|
61 |
+
#: class.cff_pluginsettings.php:54
|
62 |
+
msgid ""
|
63 |
+
"Please enter your contact details and a short message below and I will try "
|
64 |
+
"to answer your query as soon as possible."
|
65 |
+
msgstr ""
|
66 |
+
"Fyll i dina kontaktuppgifter och ett kort meddelande så kommer vi svara så "
|
67 |
+
"snart som möjligt."
|
68 |
+
|
69 |
+
#: class.cff_pluginsettings.php:83
|
70 |
+
msgid " - Web Enquiry"
|
71 |
+
msgstr " - Webförfrågan"
|
72 |
+
|
73 |
+
#: class.cff_settings.php:41
|
74 |
+
msgid "Clean and Simple Contact Form Settings"
|
75 |
+
msgstr "Inställningar för Clean and Simple Kontaktformulär"
|
76 |
+
|
77 |
+
#: class.cff_settings.php:43
|
78 |
+
msgid "You are using version"
|
79 |
+
msgstr "Du använder version: "
|
80 |
+
|
81 |
+
#: class.cff_settings.php:44
|
82 |
+
msgid "If you find this plugin useful please consider"
|
83 |
+
msgstr "Om du gillar vår plugin,"
|
84 |
+
|
85 |
+
#: class.cff_settings.php:47
|
86 |
+
msgid "leaving a review"
|
87 |
+
msgstr "skriv gärna en recension."
|
88 |
+
|
89 |
+
#: class.cff_settings.php:49
|
90 |
+
msgid "Thank you!"
|
91 |
+
msgstr "Tack på förhand!"
|
92 |
+
|
93 |
+
#: class.cff_settings.php:68
|
94 |
+
msgid "ReCAPTCHA Settings"
|
95 |
+
msgstr "ReCAPTCHA inställningar"
|
96 |
+
|
97 |
+
#: class.cff_settings.php:76
|
98 |
+
msgid "Use reCAPTCHA :"
|
99 |
+
msgstr "Använd reCAPTCHA :"
|
100 |
+
|
101 |
+
#: class.cff_settings.php:82
|
102 |
+
msgid "reCAPTCHA Theme :"
|
103 |
+
msgstr "reCAPTCHA Tema :"
|
104 |
+
|
105 |
+
#: class.cff_settings.php:88
|
106 |
+
msgid "reCAPTCHA Public Key :"
|
107 |
+
msgstr "reCAPTCHA Public Key :"
|
108 |
+
|
109 |
+
#: class.cff_settings.php:94
|
110 |
+
msgid "reCAPTCHA Private Key :"
|
111 |
+
msgstr "reCAPTCHA Private Key :"
|
112 |
+
|
113 |
+
#: class.cff_settings.php:100
|
114 |
+
msgid "Message Settings"
|
115 |
+
msgstr "Meddelande inställningar"
|
116 |
+
|
117 |
+
#: class.cff_settings.php:104
|
118 |
+
msgid "Recipient Email :"
|
119 |
+
msgstr "Mottagande epostadress:"
|
120 |
+
|
121 |
+
#: class.cff_settings.php:110
|
122 |
+
msgid "Email Subject :"
|
123 |
+
msgstr "Epost ämne:"
|
124 |
+
|
125 |
+
#: class.cff_settings.php:116
|
126 |
+
msgid "Message :"
|
127 |
+
msgstr "Meddelande:"
|
128 |
+
|
129 |
+
#: class.cff_settings.php:122
|
130 |
+
msgid "Message Sent Heading :"
|
131 |
+
msgstr "Meddelande skickat, rubrik"
|
132 |
+
|
133 |
+
#: class.cff_settings.php:128
|
134 |
+
msgid "Message Sent Content :"
|
135 |
+
msgstr "Meddelande skickat, innehåll:"
|
136 |
+
|
137 |
+
#: class.cff_settings.php:134
|
138 |
+
msgid "Styling and Validation"
|
139 |
+
msgstr "Utseende och validering."
|
140 |
+
|
141 |
+
#: class.cff_settings.php:138
|
142 |
+
msgid ""
|
143 |
+
"Use the plugin default stylesheet (un-tick to use your theme style sheet "
|
144 |
+
"instead) :"
|
145 |
+
msgstr ""
|
146 |
+
"Använd förvald stilmall i vår plugin (klicka bort om du vill använda "
|
147 |
+
"stilmallen i ditt tema istället):"
|
148 |
+
|
149 |
+
#: class.cff_settings.php:144
|
150 |
+
msgid "Use client side validation (AJAX) :"
|
151 |
+
msgstr "Använd klientvalidering (AJAX):"
|
152 |
+
|
153 |
+
#: class.cff_settings.php:216
|
154 |
+
msgid "Enter your reCAPTCHA settings below :"
|
155 |
+
msgstr "Fyll i dina reCAPTCHA inställningar nedan: "
|
156 |
+
|
157 |
+
#: class.cff_settings.php:217
|
158 |
+
msgid "To use reCAPTCHA you must get an API key from"
|
159 |
+
msgstr "För att använda reCAPTCHA måste du skaffa en API-nyckel från "
|
160 |
+
|
161 |
+
#: class.cff_settings.php:222
|
162 |
+
msgid "Enter your message settings below :"
|
163 |
+
msgstr "Fyll i inställningar för ditt meddelande nedan:"
|
164 |
+
|
165 |
+
#: class.cff_settings.php:274
|
166 |
+
msgid "Red"
|
167 |
+
msgstr "Röd"
|
168 |
+
|
169 |
+
#: class.cff_settings.php:275
|
170 |
+
msgid "White"
|
171 |
+
msgstr "Vit"
|
172 |
+
|
173 |
+
#: class.cff_settings.php:276
|
174 |
+
msgid "Blackglass"
|
175 |
+
msgstr "Svart(glas)"
|
176 |
+
|
177 |
+
#: class.cff_settings.php:277
|
178 |
+
msgid "Clean"
|
179 |
+
msgstr "Enkelt"
|
180 |
+
|
181 |
+
#: views/contact-form-with-recaptcha.view.php:27
|
182 |
+
#: views/contact-form.view.php:12
|
183 |
+
msgid "Email Address:"
|
184 |
+
msgstr "Epostadress:"
|
185 |
+
|
186 |
+
#: views/contact-form-with-recaptcha.view.php:29
|
187 |
+
#: views/contact-form.view.php:14
|
188 |
+
msgid "Your Email Address"
|
189 |
+
msgstr "Din epostadress:"
|
190 |
+
|
191 |
+
#: views/contact-form-with-recaptcha.view.php:37
|
192 |
+
#: views/contact-form.view.php:22
|
193 |
+
msgid "Confirm Email Address:"
|
194 |
+
msgstr "Bekräfta epostadress:"
|
195 |
+
|
196 |
+
#: views/contact-form-with-recaptcha.view.php:39
|
197 |
+
#: views/contact-form.view.php:24
|
198 |
+
msgid "Please enter the same email address again."
|
199 |
+
msgstr "Skriv din epostadress en gång till."
|
200 |
+
|
201 |
+
#: views/contact-form-with-recaptcha.view.php:39
|
202 |
+
#: views/contact-form.view.php:24
|
203 |
+
msgid "Confirm Your Email Address"
|
204 |
+
msgstr "Bekräfta din epostadress."
|
205 |
+
|
206 |
+
#: views/contact-form-with-recaptcha.view.php:47
|
207 |
+
#: views/contact-form.view.php:32
|
208 |
+
msgid "Name:"
|
209 |
+
msgstr "Namn:"
|
210 |
+
|
211 |
+
#: views/contact-form-with-recaptcha.view.php:49
|
212 |
+
#: views/contact-form.view.php:34
|
213 |
+
msgid "Your Name"
|
214 |
+
msgstr "Ditt namn:"
|
215 |
+
|
216 |
+
#: views/contact-form-with-recaptcha.view.php:57
|
217 |
+
#: views/contact-form.view.php:42
|
218 |
+
msgid "Message:"
|
219 |
+
msgstr "Meddelande:"
|
220 |
+
|
221 |
+
#: views/contact-form-with-recaptcha.view.php:59
|
222 |
+
#: views/contact-form.view.php:44
|
223 |
+
msgid "Please give a message."
|
224 |
+
msgstr "Skriv ett meddelande."
|
225 |
+
|
226 |
+
#: views/contact-form-with-recaptcha.view.php:59
|
227 |
+
#: views/contact-form.view.php:44
|
228 |
+
msgid "Your Message"
|
229 |
+
msgstr "Ditt meddelande:"
|
230 |
+
|
231 |
+
#: views/contact-form-with-recaptcha.view.php:75
|
232 |
+
#: views/contact-form.view.php:51
|
233 |
+
msgid "Send Message"
|
234 |
+
msgstr "Skicka meddelande"
|
235 |
+
|
236 |
+
#: views/message-not-sent.view.php:1
|
237 |
+
msgid "Sorry, there has been a problem and your message was not sent."
|
238 |
+
msgstr "Tyvärr, något är fel och ditt meddelande har inte skickats."
|
239 |
+
|
240 |
+
# Plugin Name des plugin/theme
|
241 |
+
#. Plugin Name of the plugin/theme
|
242 |
+
msgid "Clean and Simple Contact Form"
|
243 |
+
msgstr "Clean and Simple Kontaktformulär"
|
244 |
+
|
245 |
+
#. Plugin URI of the plugin/theme
|
246 |
+
msgid ""
|
247 |
+
"http://www.megnicholas.co.uk/wordpress-plugins/clean-and-simple-contact-form"
|
248 |
+
msgstr ""
|
249 |
+
"http://www.megnicholas.co.uk/wordpress-plugins/clean-and-simple-contact-form"
|
250 |
+
|
251 |
+
# Beschreibung des plugin/theme
|
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 |
+
"Ett enkelt kontaktformulär med Google reCAPTCHA och Twitter Bootstrap kod."
|
258 |
+
|
259 |
+
#. Author of the plugin/theme
|
260 |
+
msgid "Meghan Nicholas"
|
261 |
+
msgstr "Meghan Nicholas"
|
262 |
+
|
263 |
+
#. Author URI of the plugin/theme
|
264 |
+
msgid "http://www.megnicholas.co.uk"
|
265 |
+
msgstr "http://www.megnicholas.co.uk"
|
languages/cleanandsimple.pot
CHANGED
@@ -2,9 +2,10 @@
|
|
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
|
6 |
-
"Report-Msgid-Bugs-To: http://wordpress.org/plugins/
|
7 |
-
"
|
|
|
8 |
"MIME-Version: 1.0\n"
|
9 |
"Content-Type: text/plain; charset=UTF-8\n"
|
10 |
"Content-Transfer-Encoding: 8bit\n"
|
@@ -12,216 +13,216 @@ msgstr ""
|
|
12 |
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
|
13 |
"Language-Team: LANGUAGE <LL@li.org>\n"
|
14 |
|
15 |
-
#: class.
|
16 |
msgid "Settings"
|
17 |
msgstr ""
|
18 |
|
19 |
-
#: class.
|
20 |
msgid "Sorry the email addresses do not match."
|
21 |
msgstr ""
|
22 |
|
23 |
-
#: class.
|
24 |
#: views/contact-form.view.php:14
|
25 |
msgid "Please give your email address."
|
26 |
msgstr ""
|
27 |
|
28 |
-
#: class.
|
29 |
msgid "Please confirm your email address."
|
30 |
msgstr ""
|
31 |
|
32 |
-
#: class.
|
33 |
#: views/contact-form.view.php:34
|
34 |
msgid "Please give your name."
|
35 |
msgstr ""
|
36 |
|
37 |
-
#: class.
|
38 |
msgid "Please enter a message."
|
39 |
msgstr ""
|
40 |
|
41 |
-
#: class.
|
42 |
#: views/contact-form.view.php:14
|
43 |
msgid "Please enter a valid email address."
|
44 |
msgstr ""
|
45 |
|
46 |
-
#: class.
|
47 |
msgid "Sorry the code wasn't entered correctly please try again."
|
48 |
msgstr ""
|
49 |
|
50 |
-
#: class.
|
51 |
msgid "Message Sent"
|
52 |
msgstr ""
|
53 |
|
54 |
-
#: class.
|
55 |
msgid "Thank you for your message, we will be in touch very shortly."
|
56 |
msgstr ""
|
57 |
|
58 |
-
#: class.
|
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.
|
65 |
msgid " - Web Enquiry"
|
66 |
msgstr ""
|
67 |
|
68 |
-
#: class.
|
69 |
msgid "Clean and Simple Contact Form Settings"
|
70 |
msgstr ""
|
71 |
|
72 |
-
#: class.
|
73 |
msgid "You are using version"
|
74 |
msgstr ""
|
75 |
|
76 |
-
#: class.
|
77 |
msgid "If you find this plugin useful please consider"
|
78 |
msgstr ""
|
79 |
|
80 |
-
#: class.
|
81 |
msgid "leaving a review"
|
82 |
msgstr ""
|
83 |
|
84 |
-
#: class.
|
85 |
msgid "Thank you!"
|
86 |
msgstr ""
|
87 |
|
88 |
-
#: class.
|
89 |
msgid "ReCAPTCHA Settings"
|
90 |
msgstr ""
|
91 |
|
92 |
-
#: class.
|
93 |
msgid "Use reCAPTCHA :"
|
94 |
msgstr ""
|
95 |
|
96 |
-
#: class.
|
97 |
msgid "reCAPTCHA Theme :"
|
98 |
msgstr ""
|
99 |
|
100 |
-
#: class.
|
101 |
msgid "reCAPTCHA Public Key :"
|
102 |
msgstr ""
|
103 |
|
104 |
-
#: class.
|
105 |
msgid "reCAPTCHA Private Key :"
|
106 |
msgstr ""
|
107 |
|
108 |
-
#: class.
|
109 |
msgid "Message Settings"
|
110 |
msgstr ""
|
111 |
|
112 |
-
#: class.
|
113 |
msgid "Recipient Email :"
|
114 |
msgstr ""
|
115 |
|
116 |
-
#: class.
|
117 |
msgid "Email Subject :"
|
118 |
msgstr ""
|
119 |
|
120 |
-
#: class.
|
121 |
msgid "Message :"
|
122 |
msgstr ""
|
123 |
|
124 |
-
#: class.
|
125 |
msgid "Message Sent Heading :"
|
126 |
msgstr ""
|
127 |
|
128 |
-
#: class.
|
129 |
msgid "Message Sent Content :"
|
130 |
msgstr ""
|
131 |
|
132 |
-
#: class.
|
133 |
msgid "Styling and Validation"
|
134 |
msgstr ""
|
135 |
|
136 |
-
#: class.
|
137 |
msgid ""
|
138 |
"Use the plugin default stylesheet (un-tick to use your theme style sheet "
|
139 |
"instead) :"
|
140 |
msgstr ""
|
141 |
|
142 |
-
#: class.
|
143 |
msgid "Use client side validation (AJAX) :"
|
144 |
msgstr ""
|
145 |
|
146 |
-
#: class.
|
147 |
msgid "Enter your reCAPTCHA settings below :"
|
148 |
msgstr ""
|
149 |
|
150 |
-
#: class.
|
151 |
msgid "To use reCAPTCHA you must get an API key from"
|
152 |
msgstr ""
|
153 |
|
154 |
-
#: class.
|
155 |
msgid "Enter your message settings below :"
|
156 |
msgstr ""
|
157 |
|
158 |
-
#: class.
|
159 |
msgid "Red"
|
160 |
msgstr ""
|
161 |
|
162 |
-
#: class.
|
163 |
msgid "White"
|
164 |
msgstr ""
|
165 |
|
166 |
-
#: class.
|
167 |
msgid "Blackglass"
|
168 |
msgstr ""
|
169 |
|
170 |
-
#: class.
|
171 |
msgid "Clean"
|
172 |
msgstr ""
|
173 |
|
174 |
-
#: views/contact-form-with-recaptcha.view.php:
|
175 |
#: views/contact-form.view.php:12
|
176 |
msgid "Email Address:"
|
177 |
msgstr ""
|
178 |
|
179 |
-
#: views/contact-form-with-recaptcha.view.php:
|
180 |
#: views/contact-form.view.php:14
|
181 |
msgid "Your Email Address"
|
182 |
msgstr ""
|
183 |
|
184 |
-
#: views/contact-form-with-recaptcha.view.php:
|
185 |
#: views/contact-form.view.php:22
|
186 |
msgid "Confirm Email Address:"
|
187 |
msgstr ""
|
188 |
|
189 |
-
#: views/contact-form-with-recaptcha.view.php:
|
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:
|
195 |
#: views/contact-form.view.php:24
|
196 |
msgid "Confirm Your Email Address"
|
197 |
msgstr ""
|
198 |
|
199 |
-
#: views/contact-form-with-recaptcha.view.php:
|
200 |
#: views/contact-form.view.php:32
|
201 |
msgid "Name:"
|
202 |
msgstr ""
|
203 |
|
204 |
-
#: views/contact-form-with-recaptcha.view.php:
|
205 |
#: views/contact-form.view.php:34
|
206 |
msgid "Your Name"
|
207 |
msgstr ""
|
208 |
|
209 |
-
#: views/contact-form-with-recaptcha.view.php:
|
210 |
#: views/contact-form.view.php:42
|
211 |
msgid "Message:"
|
212 |
msgstr ""
|
213 |
|
214 |
-
#: views/contact-form-with-recaptcha.view.php:
|
215 |
#: views/contact-form.view.php:44
|
216 |
msgid "Please give a message."
|
217 |
msgstr ""
|
218 |
|
219 |
-
#: views/contact-form-with-recaptcha.view.php:
|
220 |
#: views/contact-form.view.php:44
|
221 |
msgid "Your Message"
|
222 |
msgstr ""
|
223 |
|
224 |
-
#: views/contact-form-with-recaptcha.view.php:
|
225 |
#: views/contact-form.view.php:51
|
226 |
msgid "Send Message"
|
227 |
msgstr ""
|
@@ -237,7 +238,7 @@ msgstr ""
|
|
237 |
#. Plugin URI of the plugin/theme
|
238 |
msgid ""
|
239 |
"http://www.megnicholas.co.uk/wordpress-plugins/clean-and-simple-contact-form"
|
240 |
-
msgstr "
|
241 |
|
242 |
#. Description of the plugin/theme
|
243 |
msgid ""
|
@@ -247,8 +248,8 @@ msgstr ""
|
|
247 |
|
248 |
#. Author of the plugin/theme
|
249 |
msgid "Meghan Nicholas"
|
250 |
-
msgstr "
|
251 |
|
252 |
#. Author URI of the plugin/theme
|
253 |
msgid "http://www.megnicholas.co.uk"
|
254 |
-
msgstr "
|
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\n"
|
6 |
+
"Report-Msgid-Bugs-To: http://wordpress.org/plugins/"
|
7 |
+
"clean-and-simple-contact-form-by-meg-nicholas/\n"
|
8 |
+
"POT-Creation-Date: 2013-06-20 08:37:17+00:00\n"
|
9 |
"MIME-Version: 1.0\n"
|
10 |
"Content-Type: text/plain; charset=UTF-8\n"
|
11 |
"Content-Transfer-Encoding: 8bit\n"
|
13 |
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
|
14 |
"Language-Team: LANGUAGE <LL@li.org>\n"
|
15 |
|
16 |
+
#: class.cscf.php:102
|
17 |
msgid "Settings"
|
18 |
msgstr ""
|
19 |
|
20 |
+
#: class.cscf_contact.php:53
|
21 |
msgid "Sorry the email addresses do not match."
|
22 |
msgstr ""
|
23 |
|
24 |
+
#: class.cscf_contact.php:57 views/contact-form-with-recaptcha.view.php:33
|
25 |
#: views/contact-form.view.php:14
|
26 |
msgid "Please give your email address."
|
27 |
msgstr ""
|
28 |
|
29 |
+
#: class.cscf_contact.php:61
|
30 |
msgid "Please confirm your email address."
|
31 |
msgstr ""
|
32 |
|
33 |
+
#: class.cscf_contact.php:65 views/contact-form-with-recaptcha.view.php:53
|
34 |
#: views/contact-form.view.php:34
|
35 |
msgid "Please give your name."
|
36 |
msgstr ""
|
37 |
|
38 |
+
#: class.cscf_contact.php:69
|
39 |
msgid "Please enter a message."
|
40 |
msgstr ""
|
41 |
|
42 |
+
#: class.cscf_contact.php:73 views/contact-form-with-recaptcha.view.php:33
|
43 |
#: views/contact-form.view.php:14
|
44 |
msgid "Please enter a valid email address."
|
45 |
msgstr ""
|
46 |
|
47 |
+
#: class.cscf_contact.php:81
|
48 |
msgid "Sorry the code wasn't entered correctly please try again."
|
49 |
msgstr ""
|
50 |
|
51 |
+
#: class.cscf_pluginsettings.php:40
|
52 |
msgid "Message Sent"
|
53 |
msgstr ""
|
54 |
|
55 |
+
#: class.cscf_pluginsettings.php:47
|
56 |
msgid "Thank you for your message, we will be in touch very shortly."
|
57 |
msgstr ""
|
58 |
|
59 |
+
#: class.cscf_pluginsettings.php:54
|
60 |
msgid ""
|
61 |
"Please enter your contact details and a short message below and I will try "
|
62 |
"to answer your query as soon as possible."
|
63 |
msgstr ""
|
64 |
|
65 |
+
#: class.cscf_pluginsettings.php:83
|
66 |
msgid " - Web Enquiry"
|
67 |
msgstr ""
|
68 |
|
69 |
+
#: class.cscf_settings.php:41
|
70 |
msgid "Clean and Simple Contact Form Settings"
|
71 |
msgstr ""
|
72 |
|
73 |
+
#: class.cscf_settings.php:43
|
74 |
msgid "You are using version"
|
75 |
msgstr ""
|
76 |
|
77 |
+
#: class.cscf_settings.php:44
|
78 |
msgid "If you find this plugin useful please consider"
|
79 |
msgstr ""
|
80 |
|
81 |
+
#: class.cscf_settings.php:47
|
82 |
msgid "leaving a review"
|
83 |
msgstr ""
|
84 |
|
85 |
+
#: class.cscf_settings.php:49
|
86 |
msgid "Thank you!"
|
87 |
msgstr ""
|
88 |
|
89 |
+
#: class.cscf_settings.php:68
|
90 |
msgid "ReCAPTCHA Settings"
|
91 |
msgstr ""
|
92 |
|
93 |
+
#: class.cscf_settings.php:76
|
94 |
msgid "Use reCAPTCHA :"
|
95 |
msgstr ""
|
96 |
|
97 |
+
#: class.cscf_settings.php:82
|
98 |
msgid "reCAPTCHA Theme :"
|
99 |
msgstr ""
|
100 |
|
101 |
+
#: class.cscf_settings.php:88
|
102 |
msgid "reCAPTCHA Public Key :"
|
103 |
msgstr ""
|
104 |
|
105 |
+
#: class.cscf_settings.php:94
|
106 |
msgid "reCAPTCHA Private Key :"
|
107 |
msgstr ""
|
108 |
|
109 |
+
#: class.cscf_settings.php:100
|
110 |
msgid "Message Settings"
|
111 |
msgstr ""
|
112 |
|
113 |
+
#: class.cscf_settings.php:104
|
114 |
msgid "Recipient Email :"
|
115 |
msgstr ""
|
116 |
|
117 |
+
#: class.cscf_settings.php:110
|
118 |
msgid "Email Subject :"
|
119 |
msgstr ""
|
120 |
|
121 |
+
#: class.cscf_settings.php:116
|
122 |
msgid "Message :"
|
123 |
msgstr ""
|
124 |
|
125 |
+
#: class.cscf_settings.php:122
|
126 |
msgid "Message Sent Heading :"
|
127 |
msgstr ""
|
128 |
|
129 |
+
#: class.cscf_settings.php:128
|
130 |
msgid "Message Sent Content :"
|
131 |
msgstr ""
|
132 |
|
133 |
+
#: class.cscf_settings.php:134
|
134 |
msgid "Styling and Validation"
|
135 |
msgstr ""
|
136 |
|
137 |
+
#: class.cscf_settings.php:138
|
138 |
msgid ""
|
139 |
"Use the plugin default stylesheet (un-tick to use your theme style sheet "
|
140 |
"instead) :"
|
141 |
msgstr ""
|
142 |
|
143 |
+
#: class.cscf_settings.php:144
|
144 |
msgid "Use client side validation (AJAX) :"
|
145 |
msgstr ""
|
146 |
|
147 |
+
#: class.cscf_settings.php:216
|
148 |
msgid "Enter your reCAPTCHA settings below :"
|
149 |
msgstr ""
|
150 |
|
151 |
+
#: class.cscf_settings.php:217
|
152 |
msgid "To use reCAPTCHA you must get an API key from"
|
153 |
msgstr ""
|
154 |
|
155 |
+
#: class.cscf_settings.php:222
|
156 |
msgid "Enter your message settings below :"
|
157 |
msgstr ""
|
158 |
|
159 |
+
#: class.cscf_settings.php:274
|
160 |
msgid "Red"
|
161 |
msgstr ""
|
162 |
|
163 |
+
#: class.cscf_settings.php:275
|
164 |
msgid "White"
|
165 |
msgstr ""
|
166 |
|
167 |
+
#: class.cscf_settings.php:276
|
168 |
msgid "Blackglass"
|
169 |
msgstr ""
|
170 |
|
171 |
+
#: class.cscf_settings.php:277
|
172 |
msgid "Clean"
|
173 |
msgstr ""
|
174 |
|
175 |
+
#: views/contact-form-with-recaptcha.view.php:31
|
176 |
#: views/contact-form.view.php:12
|
177 |
msgid "Email Address:"
|
178 |
msgstr ""
|
179 |
|
180 |
+
#: views/contact-form-with-recaptcha.view.php:33
|
181 |
#: views/contact-form.view.php:14
|
182 |
msgid "Your Email Address"
|
183 |
msgstr ""
|
184 |
|
185 |
+
#: views/contact-form-with-recaptcha.view.php:41
|
186 |
#: views/contact-form.view.php:22
|
187 |
msgid "Confirm Email Address:"
|
188 |
msgstr ""
|
189 |
|
190 |
+
#: views/contact-form-with-recaptcha.view.php:43
|
191 |
#: views/contact-form.view.php:24
|
192 |
msgid "Please enter the same email address again."
|
193 |
msgstr ""
|
194 |
|
195 |
+
#: views/contact-form-with-recaptcha.view.php:43
|
196 |
#: views/contact-form.view.php:24
|
197 |
msgid "Confirm Your Email Address"
|
198 |
msgstr ""
|
199 |
|
200 |
+
#: views/contact-form-with-recaptcha.view.php:51
|
201 |
#: views/contact-form.view.php:32
|
202 |
msgid "Name:"
|
203 |
msgstr ""
|
204 |
|
205 |
+
#: views/contact-form-with-recaptcha.view.php:53
|
206 |
#: views/contact-form.view.php:34
|
207 |
msgid "Your Name"
|
208 |
msgstr ""
|
209 |
|
210 |
+
#: views/contact-form-with-recaptcha.view.php:61
|
211 |
#: views/contact-form.view.php:42
|
212 |
msgid "Message:"
|
213 |
msgstr ""
|
214 |
|
215 |
+
#: views/contact-form-with-recaptcha.view.php:63
|
216 |
#: views/contact-form.view.php:44
|
217 |
msgid "Please give a message."
|
218 |
msgstr ""
|
219 |
|
220 |
+
#: views/contact-form-with-recaptcha.view.php:63
|
221 |
#: views/contact-form.view.php:44
|
222 |
msgid "Your Message"
|
223 |
msgstr ""
|
224 |
|
225 |
+
#: views/contact-form-with-recaptcha.view.php:79
|
226 |
#: views/contact-form.view.php:51
|
227 |
msgid "Send Message"
|
228 |
msgstr ""
|
238 |
#. Plugin URI of the plugin/theme
|
239 |
msgid ""
|
240 |
"http://www.megnicholas.co.uk/wordpress-plugins/clean-and-simple-contact-form"
|
241 |
+
msgstr ""
|
242 |
|
243 |
#. Description of the plugin/theme
|
244 |
msgid ""
|
248 |
|
249 |
#. Author of the plugin/theme
|
250 |
msgid "Meghan Nicholas"
|
251 |
+
msgstr ""
|
252 |
|
253 |
#. Author URI of the plugin/theme
|
254 |
msgid "http://www.megnicholas.co.uk"
|
255 |
+
msgstr ""
|
readme.txt
CHANGED
@@ -1,4 +1,4 @@
|
|
1 |
-
=== Clean and Simple
|
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
|
@@ -6,7 +6,7 @@ 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 |
|
@@ -21,7 +21,7 @@ A clean and simple contact form with Google reCAPTCHA and Twitter Bootstrap mark
|
|
21 |
Uses **Twitter Bootstrap** classes.
|
22 |
|
23 |
This is a straightforward contact form for your WordPress site. There is very minimal set-up
|
24 |
-
required.
|
25 |
|
26 |
A standard set of input boxes are provided, these include Email Address, Name, Message and a nice big ‘Send Message’ button.
|
27 |
|
@@ -34,7 +34,7 @@ Granted there are many plugins of this type in existence already. Why use this o
|
|
34 |
|
35 |
Here’s why:
|
36 |
|
37 |
-
* Minimal setup. Simply activate the plugin and place the shortcode [contact-form] on any post or page.
|
38 |
|
39 |
* **Safe**. All input entered by your user is stripped back to minimise as far as possible the likelihood of any malicious user attempting to inject a script into your website. You can turn on reCAPTCHA to avoid your form being abused by bots.
|
40 |
|
@@ -58,14 +58,24 @@ There are two ways to install:
|
|
58 |
|
59 |
1. Click the ‘Install Now’ link from the plugin library listing to automatically download and install.
|
60 |
|
61 |
-
2. Download the plugin as a zip file. To install the zip file simply double click to extract it and place the
|
|
|
|
|
|
|
|
|
|
|
|
|
62 |
|
63 |
== How to Use ==
|
64 |
Unless you want to change messages or add reCAPTCHA to your contact form then this plugin will work without any additional setup.
|
65 |
|
66 |
Important: Check that you have an email address set-up in your WordPress ‘Settings’->’General’ page. This is the address that the plugin will use to send the contents of the contact form.
|
67 |
|
68 |
-
To add the contact form to your WordPress website simply place the shortcode [contact-form] on the post or page that you wish the form to appear on.
|
|
|
|
|
|
|
|
|
69 |
|
70 |
== Additional Settings ==
|
71 |
This plugin will work as is without any additional setup. You have the option to change the default messages that are displayed to your user and to add reCAPTCHA capabilities.
|
@@ -114,9 +124,46 @@ I am a freelance WordPress Developer.
|
|
114 |
[Hire me for all your Wordpress needs](http://www.megnicholas.co.uk "Hire Me").
|
115 |
|
116 |
== Frequently Asked Questions ==
|
117 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
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
|
@@ -138,6 +185,8 @@ A clean and simple contact form with Google reCAPTCHA and Twitter Bootstrap mark
|
|
138 |
|
139 |
|
140 |
== Upgrade Notice ==
|
|
|
|
|
141 |
= 4.1.1 =
|
142 |
Internationalisation, fixed conflict with some bootstrapped themes.
|
143 |
= 4.1.0 =
|
1 |
+
=== Contact Form Clean and Simple ===
|
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
|
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.2
|
10 |
|
11 |
A clean and simple contact form with Google reCAPTCHA and Twitter Bootstrap markup.
|
12 |
|
21 |
Uses **Twitter Bootstrap** classes.
|
22 |
|
23 |
This is a straightforward contact form for your WordPress site. There is very minimal set-up
|
24 |
+
required. Simply install, activate, and then place the short code [cscf-contact-form] on your web page.
|
25 |
|
26 |
A standard set of input boxes are provided, these include Email Address, Name, Message and a nice big ‘Send Message’ button.
|
27 |
|
34 |
|
35 |
Here’s why:
|
36 |
|
37 |
+
* Minimal setup. Simply activate the plugin and place the shortcode [cscf-contact-form] on any post or page.
|
38 |
|
39 |
* **Safe**. All input entered by your user is stripped back to minimise as far as possible the likelihood of any malicious user attempting to inject a script into your website. You can turn on reCAPTCHA to avoid your form being abused by bots.
|
40 |
|
58 |
|
59 |
1. Click the ‘Install Now’ link from the plugin library listing to automatically download and install.
|
60 |
|
61 |
+
2. Download the plugin as a zip file. To install the zip file simply double click to extract it and place the whole folder in your wordpress plugins folder, e.g. [wordpress]/wp-content/plugins where [wordpress] is the directory that you installed WordPress in.
|
62 |
+
|
63 |
+
Then visit the plugin page on your wordpress site and click ‘Activate’ against the ‘Clean and Simple Contact Form’ plugin listing.
|
64 |
+
|
65 |
+
To place the contact form on your page use the shortcode [cscf-contact-form]
|
66 |
+
|
67 |
+
[More information on how to use the plugin.](http://www.megnicholas.co.uk/wordpress-plugins/clean-and-simple-contact-form/ "More Information")
|
68 |
|
69 |
== How to Use ==
|
70 |
Unless you want to change messages or add reCAPTCHA to your contact form then this plugin will work without any additional setup.
|
71 |
|
72 |
Important: Check that you have an email address set-up in your WordPress ‘Settings’->’General’ page. This is the address that the plugin will use to send the contents of the contact form.
|
73 |
|
74 |
+
To add the contact form to your WordPress website simply place the shortcode [cscf-contact-form] on the post or page that you wish the form to appear on.
|
75 |
+
|
76 |
+
**If you have Jetpack plugin installed disable the contact form otherwise the wrong form will display.**
|
77 |
+
|
78 |
+
Goto [other notes](http://wordpress.org/plugins/clean-and-simple-contact-form-by-meg-nicholas/other_notes/ "How To Use") for information on how to use.
|
79 |
|
80 |
== Additional Settings ==
|
81 |
This plugin will work as is without any additional setup. You have the option to change the default messages that are displayed to your user and to add reCAPTCHA capabilities.
|
124 |
[Hire me for all your Wordpress needs](http://www.megnicholas.co.uk "Hire Me").
|
125 |
|
126 |
== Frequently Asked Questions ==
|
127 |
+
= Why is a different contact form displayed? =
|
128 |
+
|
129 |
+
You may have a conflict with another plugin. Either deactivate the other contact form plugin, if you don't need it, or use
|
130 |
+
this alternative short code on your webpage - `[cscf-contact-form]`.
|
131 |
+
This problem often occurs when Jetpack plugin is installed.
|
132 |
+
|
133 |
+
= How do I display the contact form on my page/post? =
|
134 |
+
To put the contact form on your page, add the text:
|
135 |
+
`[cscf-contact-form]`
|
136 |
+
|
137 |
+
The contact form will appear when you view the page.
|
138 |
+
|
139 |
+
= Can I have this plugin in my own language? =
|
140 |
+
|
141 |
+
Yes, I am currently building up translation files for this plugin. If your language is not yet available you are very welcome to translate it.
|
142 |
+
If you are not sure how to go about doing this [get in touch](http://www.megnicholas.co.uk/contact-me/ "Contact Me").
|
143 |
+
|
144 |
+
= How do I change the text box sizes? =
|
145 |
+
|
146 |
+
Currently it is not possible to do this.
|
147 |
+
|
148 |
+
= I get a message to say that the message could not be sent =
|
149 |
+
|
150 |
+
If you get this message then you have a general problem with email on your server. This plugin uses Wordpress's send mail function.
|
151 |
+
So a problem sending mail from this plugin indicates that Wordpress as a whole cannot send email.
|
152 |
+
Contact your web host provider for help, or use an SMTP plugin to use a third party email service.
|
153 |
+
|
154 |
|
155 |
== Changelog ==
|
156 |
+
= 4.1.2 =
|
157 |
+
* Added some FAQs
|
158 |
+
* Added alternative shortcode [cscf-contact-form] for use when conflicts could occur.
|
159 |
+
* Updated the documentation.
|
160 |
+
* Recaptcha form now responds to language changes
|
161 |
+
* Updated pot file to reflect new name space
|
162 |
+
* Changed name space from cff to cscf
|
163 |
+
* Settings screen: recaptcha theme and key inputs are immediately enabled/disabled as the 'Use reCAPTCHA' box is clicked.
|
164 |
+
* Corrected some html seen as invalid by http://validator.w3.org/
|
165 |
+
* removed '<?=' and replaced with '<?php echo' in cscf_settings, thanks go to andrewbacon
|
166 |
+
* Added notice to setting screen when JetPack's contact form is active
|
167 |
= 4.1.1 =
|
168 |
* Fixed potential conflicts with themes that use bootstrap
|
169 |
* Enabled internationalisation, this plugin will now work with multiple languages
|
185 |
|
186 |
|
187 |
== Upgrade Notice ==
|
188 |
+
= 4.1.2 =
|
189 |
+
Alternative shortcode, recaptcha internationalisation, Jetpack conflict warning notice
|
190 |
= 4.1.1 =
|
191 |
Internationalisation, fixed conflict with some bootstrapped themes.
|
192 |
= 4.1.0 =
|
recaptcha-php-1.11/recaptchalib.php
CHANGED
@@ -119,10 +119,10 @@ function recaptcha_get_html ($pubkey, $error = null, $use_ssl = false)
|
|
119 |
if ($error) {
|
120 |
$errorpart = "&error=" . $error;
|
121 |
}
|
122 |
-
return '<script type="text/javascript" src="'. $server . '/challenge?k=' . $pubkey . $errorpart . '"></script>
|
123 |
|
124 |
<noscript>
|
125 |
-
<iframe src="'. $server . '/noscript?k=' . $pubkey . $errorpart . '" height="300" width="500"
|
126 |
<textarea name="recaptcha_challenge_field" rows="3" cols="40"></textarea>
|
127 |
<input type="hidden" name="recaptcha_response_field" value="manual_challenge"/>
|
128 |
</noscript>';
|
119 |
if ($error) {
|
120 |
$errorpart = "&error=" . $error;
|
121 |
}
|
122 |
+
return '<script type="text/javascript" src="'. $server . '/challenge?k=' . $pubkey . $errorpart . '&hl=' . get_locale() . '"></script>
|
123 |
|
124 |
<noscript>
|
125 |
+
<iframe src="'. $server . '/noscript?k=' . $pubkey . $errorpart . '" height="300" width="500"></iframe><br/>
|
126 |
<textarea name="recaptcha_challenge_field" rows="3" cols="40"></textarea>
|
127 |
<input type="hidden" name="recaptcha_response_field" value="manual_challenge"/>
|
128 |
</noscript>';
|
shortcodes/contact-form.php
CHANGED
@@ -1,11 +1,12 @@
|
|
1 |
<?php
|
2 |
-
add_shortcode('contact-form', '
|
|
|
3 |
|
4 |
-
function
|
5 |
{
|
6 |
|
7 |
-
$contact = new
|
8 |
-
$filters = new
|
9 |
|
10 |
if ($contact->IsValid())
|
11 |
{
|
@@ -16,15 +17,15 @@ function cff_ContactForm()
|
|
16 |
$filters->add('wp_mail_from');
|
17 |
$filters->add('wp_mail_from_name');
|
18 |
|
19 |
-
if (wp_mail(
|
20 |
{
|
21 |
-
$view = new
|
22 |
-
$view->Set('heading',
|
23 |
-
$view->Set('message',
|
24 |
}
|
25 |
else
|
26 |
{
|
27 |
-
$view = new
|
28 |
}
|
29 |
|
30 |
//remove filters (play nice)
|
@@ -35,25 +36,25 @@ function cff_ContactForm()
|
|
35 |
}
|
36 |
|
37 |
//here we need some jquery scripts and styles, so load them here
|
38 |
-
if (
|
39 |
wp_enqueue_script('jquery-validate');
|
40 |
wp_enqueue_script('jquery-meta');
|
41 |
wp_enqueue_script('jquery-validate-contact-form');
|
42 |
}
|
43 |
|
44 |
//only load the stylesheet if required
|
45 |
-
if (
|
46 |
-
wp_enqueue_style('
|
47 |
|
48 |
//set-up the view
|
49 |
if ( $contact->RecaptchaPublicKey<>'' && $contact->RecaptchaPrivateKey<>'')
|
50 |
-
$view = new
|
51 |
else
|
52 |
-
$view = new
|
53 |
|
54 |
$view->Set('contact',$contact);
|
55 |
-
$view->Set('message',
|
56 |
-
$view->Set('version',
|
57 |
|
58 |
return $view->Render();
|
59 |
|
1 |
<?php
|
2 |
+
add_shortcode('contact-form', 'cscf_ContactForm');
|
3 |
+
add_shortcode('cscf-contact-form', 'cscf_ContactForm');
|
4 |
|
5 |
+
function cscf_ContactForm()
|
6 |
{
|
7 |
|
8 |
+
$contact = new cscf_Contact;
|
9 |
+
$filters = new cscf_Filters;
|
10 |
|
11 |
if ($contact->IsValid())
|
12 |
{
|
17 |
$filters->add('wp_mail_from');
|
18 |
$filters->add('wp_mail_from_name');
|
19 |
|
20 |
+
if (wp_mail(cscf_PluginSettings::RecipientEmail() , cscf_PluginSettings::Subject(), $contact->Message))
|
21 |
{
|
22 |
+
$view = new CSCF_View('message-sent');
|
23 |
+
$view->Set('heading',cscf_PluginSettings::SentMessageHeading());
|
24 |
+
$view->Set('message',cscf_PluginSettings::SentMessageBody());
|
25 |
}
|
26 |
else
|
27 |
{
|
28 |
+
$view = new CSCF_View('message-not-sent');
|
29 |
}
|
30 |
|
31 |
//remove filters (play nice)
|
36 |
}
|
37 |
|
38 |
//here we need some jquery scripts and styles, so load them here
|
39 |
+
if ( cscf_PluginSettings::UseClientValidation() == true) {
|
40 |
wp_enqueue_script('jquery-validate');
|
41 |
wp_enqueue_script('jquery-meta');
|
42 |
wp_enqueue_script('jquery-validate-contact-form');
|
43 |
}
|
44 |
|
45 |
//only load the stylesheet if required
|
46 |
+
if ( cscf_PluginSettings::LoadStyleSheet() == true)
|
47 |
+
wp_enqueue_style('cscf-bootstrap');
|
48 |
|
49 |
//set-up the view
|
50 |
if ( $contact->RecaptchaPublicKey<>'' && $contact->RecaptchaPrivateKey<>'')
|
51 |
+
$view = new CSCF_View('contact-form-with-recaptcha');
|
52 |
else
|
53 |
+
$view = new CSCF_View('contact-form');
|
54 |
|
55 |
$view->Set('contact',$contact);
|
56 |
+
$view->Set('message',cscf_PluginSettings::Message());
|
57 |
+
$view->Set('version', CSCF_VERSION_NUM);
|
58 |
|
59 |
return $view->Render();
|
60 |
|
uninstall.php
CHANGED
@@ -5,4 +5,5 @@
|
|
5 |
if (!defined('WP_UNINSTALL_PLUGIN')) exit();
|
6 |
delete_option('cff_options');
|
7 |
delete_option('cff_version');
|
8 |
-
|
|
5 |
if (!defined('WP_UNINSTALL_PLUGIN')) exit();
|
6 |
delete_option('cff_options');
|
7 |
delete_option('cff_version');
|
8 |
+
delete_option('cscf_options');
|
9 |
+
delete_option('cscf_version');
|
views/contact-form-with-recaptcha.view.php
CHANGED
@@ -1,19 +1,17 @@
|
|
1 |
<script type="text/javascript">
|
2 |
var RecaptchaOptions = {
|
3 |
-
theme : '<?php echo
|
4 |
};
|
5 |
</script>
|
6 |
-
|
7 |
-
|
8 |
<p><?php echo $message; ?></p>
|
9 |
|
10 |
-
<form id="
|
11 |
|
12 |
-
<?php wp_nonce_field('
|
13 |
|
14 |
<!-- Clean and Simple Contact Form by megnicholas. Version <?php echo $version; ?> -->
|
15 |
|
16 |
-
<!-- Clean and Simple Contact Form. Version <?php echo $version; ?> -->
|
17 |
<div class="control-group">
|
18 |
<div class="controls">
|
19 |
<p class="text-error"><?php if (isset($contact->Errors['recaptcha'])) echo $contact->Errors['recaptcha']; ?></p>
|
@@ -21,46 +19,45 @@
|
|
21 |
</div>
|
22 |
|
23 |
|
24 |
-
|
25 |
<div class="control-group<?php
|
26 |
-
if (isset($contact->Errors['
|
27 |
-
<label class="control-label" for="
|
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="
|
30 |
-
<span
|
31 |
</div>
|
32 |
</div>
|
33 |
|
34 |
<!--confirm email address -->
|
35 |
<div class="control-group<?php
|
36 |
-
if (isset($contact->Errors['
|
37 |
-
<label class="control-label" for="
|
38 |
<div class="controls">
|
39 |
-
<input class="input-xlarge {email:true, required:true, equalTo:'#
|
40 |
-
<span
|
41 |
</div>
|
42 |
</div>
|
43 |
|
44 |
<!-- name -->
|
45 |
<div class="control-group<?php
|
46 |
-
if (isset($contact->Errors['
|
47 |
-
<label class="control-label" for="
|
48 |
<div class="controls">
|
49 |
-
<input class="input-xlarge {required:true, messages:{required:'<?php _e('Please give your name.','cleanandsimple');?>'}}" type="text" id="
|
50 |
-
<span
|
51 |
</div>
|
52 |
</div>
|
53 |
|
54 |
<!-- message -->
|
55 |
<div class="control-group<?php
|
56 |
-
if (isset($contact->Errors['
|
57 |
-
<label class="control-label" for="
|
58 |
<div class="controls">
|
59 |
-
<textarea class="input-xlarge {required:true, messages:{required:'<?php _e('Please give a message.','cleanandsimple');?>'}}" id="
|
60 |
-
<span
|
61 |
</div>
|
62 |
</div>
|
63 |
-
|
64 |
|
65 |
<div class="control-group<?php
|
66 |
if (isset($contact->Errors['recaptcha'])) echo ' error'; ?>">
|
1 |
<script type="text/javascript">
|
2 |
var RecaptchaOptions = {
|
3 |
+
theme : '<?php echo cscf_PluginSettings::Theme(); ?>'
|
4 |
};
|
5 |
</script>
|
6 |
+
|
|
|
7 |
<p><?php echo $message; ?></p>
|
8 |
|
9 |
+
<form id="frmCSCF" name="frmCSCF" method="post">
|
10 |
|
11 |
+
<?php wp_nonce_field('cscf_contact','cscf_nonce'); ?>
|
12 |
|
13 |
<!-- Clean and Simple Contact Form by megnicholas. Version <?php echo $version; ?> -->
|
14 |
|
|
|
15 |
<div class="control-group">
|
16 |
<div class="controls">
|
17 |
<p class="text-error"><?php if (isset($contact->Errors['recaptcha'])) echo $contact->Errors['recaptcha']; ?></p>
|
19 |
</div>
|
20 |
|
21 |
|
22 |
+
<!--email address -->
|
23 |
<div class="control-group<?php
|
24 |
+
if (isset($contact->Errors['email'])) echo ' error'; ?>">
|
25 |
+
<label class="control-label" for="cscf_email"><?php _e('Email Address:','cleanandsimple');?></label>
|
26 |
<div class="controls">
|
27 |
+
<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="cscf_email" name="cscf[email]" value="<?php echo $contact->Email; ?>" placeholder="<?php _e('Your Email Address','cleanandsimple');?>">
|
28 |
+
<span class="help-inline"><?php if (isset($contact->Errors['email'])) echo $contact->Errors['email']; ?></span>
|
29 |
</div>
|
30 |
</div>
|
31 |
|
32 |
<!--confirm email address -->
|
33 |
<div class="control-group<?php
|
34 |
+
if (isset($contact->Errors['confirm-email'])) echo ' error'; ?>">
|
35 |
+
<label class="control-label" for="cscf_confirm-email"><?php _e('Confirm Email Address:','cleanandsimple');?></label>
|
36 |
<div class="controls">
|
37 |
+
<input class="input-xlarge {email:true, required:true, equalTo:'#cscf_email', messages:{equalTo:'<?php _e('Please enter the same email address again.','cleanandsimple');?>',required:'<?php _e('Please enter the same email address again.','cleanandsimple');?>',email:'<?php _e('Please enter a valid email address.','cleanandsimple');?>'}}" type="text" id="cscf_confirm-email" name="cscf[confirm-email]" value="<?php echo $contact->ConfirmEmail; ?>" placeholder="<?php _e('Confirm Your Email Address','cleanandsimple');?>">
|
38 |
+
<span class="help-inline"><?php if (isset($contact->Errors['confirm-email'])) echo $contact->Errors['confirm-email']; ?></span>
|
39 |
</div>
|
40 |
</div>
|
41 |
|
42 |
<!-- name -->
|
43 |
<div class="control-group<?php
|
44 |
+
if (isset($contact->Errors['name'])) echo ' error'; ?>">
|
45 |
+
<label class="control-label" for="cscf_name"><?php _e('Name:','cleanandsimple');?></label>
|
46 |
<div class="controls">
|
47 |
+
<input class="input-xlarge {required:true, messages:{required:'<?php _e('Please give your name.','cleanandsimple');?>'}}" type="text" id="cscf_name" name="cscf[name]" value="<?php echo $contact->Name; ?>" placeholder="<?php _e('Your Name','cleanandsimple');?>">
|
48 |
+
<span class="help-inline"><?php if (isset($contact->Errors['name'])) echo $contact->Errors['name']; ?></span>
|
49 |
</div>
|
50 |
</div>
|
51 |
|
52 |
<!-- message -->
|
53 |
<div class="control-group<?php
|
54 |
+
if (isset($contact->Errors['message'])) echo ' error'; ?>">
|
55 |
+
<label class="control-label" for="cscf_message"><?php _e('Message:','cleanandsimple');?></label>
|
56 |
<div class="controls">
|
57 |
+
<textarea class="input-xlarge {required:true, messages:{required:'<?php _e('Please give a message.','cleanandsimple');?>'}}" id="cscf_message" name="cscf[message]" rows="10" placeholder="<?php _e('Your Message','cleanandsimple');?>"><?php echo $contact->Message; ?></textarea>
|
58 |
+
<span class="help-inline"><?php if (isset($contact->Errors['message'])) echo $contact->Errors['message']; ?></span>
|
59 |
</div>
|
60 |
</div>
|
|
|
61 |
|
62 |
<div class="control-group<?php
|
63 |
if (isset($contact->Errors['recaptcha'])) echo ' error'; ?>">
|
views/contact-form.view.php
CHANGED
@@ -1,48 +1,48 @@
|
|
1 |
<p><?php echo $message; ?></p>
|
2 |
|
3 |
-
<form id="
|
4 |
|
5 |
-
<?php wp_nonce_field('
|
6 |
|
7 |
<!-- Clean and Simple Contact Form by megnicholas. Version <?php echo $version; ?> -->
|
8 |
|
9 |
<!--email address -->
|
10 |
<div class="control-group<?php
|
11 |
-
if (isset($contact->Errors['
|
12 |
-
<label class="control-label" for="
|
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="
|
15 |
-
<span
|
16 |
</div>
|
17 |
</div>
|
18 |
|
19 |
-
|
20 |
<div class="control-group<?php
|
21 |
-
if (isset($contact->Errors['
|
22 |
-
<label class="control-label" for="
|
23 |
<div class="controls">
|
24 |
-
<input class="input-xlarge {email:true, required:true, equalTo:'#
|
25 |
-
<span
|
26 |
</div>
|
27 |
</div>
|
28 |
|
29 |
<!-- name -->
|
30 |
<div class="control-group<?php
|
31 |
-
if (isset($contact->Errors['
|
32 |
-
<label class="control-label" for="
|
33 |
<div class="controls">
|
34 |
-
<input class="input-xlarge {required:true, messages:{required:'<?php _e('Please give your name.','cleanandsimple');?>'}}" type="text" id="
|
35 |
-
<span
|
36 |
</div>
|
37 |
</div>
|
38 |
|
39 |
<!-- message -->
|
40 |
<div class="control-group<?php
|
41 |
-
if (isset($contact->Errors['
|
42 |
-
<label class="control-label" for="
|
43 |
<div class="controls">
|
44 |
-
<textarea class="input-xlarge {required:true, messages:{required:'<?php _e('Please give a message.','cleanandsimple');?>'}}" id="
|
45 |
-
<span
|
46 |
</div>
|
47 |
</div>
|
48 |
|
1 |
<p><?php echo $message; ?></p>
|
2 |
|
3 |
+
<form id="frmCSCF" name="frmCSCF" method="post">
|
4 |
|
5 |
+
<?php wp_nonce_field('cscf_contact','cscf_nonce'); ?>
|
6 |
|
7 |
<!-- Clean and Simple Contact Form by megnicholas. Version <?php echo $version; ?> -->
|
8 |
|
9 |
<!--email address -->
|
10 |
<div class="control-group<?php
|
11 |
+
if (isset($contact->Errors['email'])) echo ' error'; ?>">
|
12 |
+
<label class="control-label" for="cscf_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="cscf_email" name="cscf[email]" value="<?php echo $contact->Email; ?>" placeholder="<?php _e('Your Email Address','cleanandsimple');?>">
|
15 |
+
<span class="help-inline"><?php if (isset($contact->Errors['email'])) echo $contact->Errors['email']; ?></span>
|
16 |
</div>
|
17 |
</div>
|
18 |
|
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="cscf_confirm-email"><?php _e('Confirm Email Address:','cleanandsimple');?></label>
|
23 |
<div class="controls">
|
24 |
+
<input class="input-xlarge {email:true, required:true, equalTo:'#cscf_email', messages:{equalTo:'<?php _e('Please enter the same email address again.','cleanandsimple');?>',required:'<?php _e('Please enter the same email address again.','cleanandsimple');?>',email:'<?php _e('Please enter a valid email address.','cleanandsimple');?>'}}" type="text" id="cscf_confirm-email" name="cscf[confirm-email]" value="<?php echo $contact->ConfirmEmail; ?>" placeholder="<?php _e('Confirm Your Email Address','cleanandsimple');?>">
|
25 |
+
<span class="help-inline"><?php if (isset($contact->Errors['confirm-email'])) echo $contact->Errors['confirm-email']; ?></span>
|
26 |
</div>
|
27 |
</div>
|
28 |
|
29 |
<!-- name -->
|
30 |
<div class="control-group<?php
|
31 |
+
if (isset($contact->Errors['name'])) echo ' error'; ?>">
|
32 |
+
<label class="control-label" for="cscf_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="cscf_name" name="cscf[name]" value="<?php echo $contact->Name; ?>" placeholder="<?php _e('Your Name','cleanandsimple');?>">
|
35 |
+
<span class="help-inline"><?php if (isset($contact->Errors['name'])) echo $contact->Errors['name']; ?></span>
|
36 |
</div>
|
37 |
</div>
|
38 |
|
39 |
<!-- message -->
|
40 |
<div class="control-group<?php
|
41 |
+
if (isset($contact->Errors['message'])) echo ' error'; ?>">
|
42 |
+
<label class="control-label" for="cscf_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="cscf_message" name="cscf[message]" rows="10" placeholder="<?php _e('Your Message','cleanandsimple');?>"><?php echo $contact->Message; ?></textarea>
|
45 |
+
<span class="help-inline"><?php if (isset($contact->Errors['message'])) echo $contact->Errors['message']; ?></span>
|
46 |
</div>
|
47 |
</div>
|
48 |
|