Version Description
- Added Serbian translation thanks to Borisa Djuraskovic
- Added Slovenian translation thanks to Bekim Lutolli
- Fixed some 'notice' errors
- Recaptcha styling workaround for twenty fifteen theme
- Remove empty divs from view
Download this release
Release Info
Developer | megnicholas |
Plugin | Contact Form Clean and Simple |
Version | 4.4.4 |
Comparing to | |
See all releases |
Code changes from version 4.4.3 to 4.4.4
- class.cscf.php +1 -1
- class.cscf_pluginsettings.php +21 -20
- clean-and-simple-contact-form-by-meg-nicholas.php +2 -2
- languages/cleanandsimple-sl_SI.mo +0 -0
- languages/cleanandsimple-sl_SI.po +328 -0
- languages/cleanandsimple-sr_RS.mo +0 -0
- languages/cleanandsimple-sr_RS.po +314 -0
- readme.txt +10 -2
- views/contact-form.view.php +15 -11
class.cscf.php
CHANGED
@@ -197,7 +197,7 @@ class cscf
|
|
197 |
|
198 |
|
199 |
//If it is spam then log as a comment
|
200 |
-
if ( $commentData['akismet_result'] === 'true' ) {
|
201 |
$commentData['comment_approved'] = 'spam';
|
202 |
wp_insert_comment($commentData);
|
203 |
$contact->IsSpam = true;
|
197 |
|
198 |
|
199 |
//If it is spam then log as a comment
|
200 |
+
if ( isset( $commentData['akismet_result'] ) && $commentData['akismet_result'] === 'true' ) {
|
201 |
$commentData['comment_approved'] = 'spam';
|
202 |
wp_insert_comment($commentData);
|
203 |
$contact->IsSpam = true;
|
class.cscf_pluginsettings.php
CHANGED
@@ -20,21 +20,21 @@ class cscf_PluginSettings
|
|
20 |
return isset($options['theme']) ? $options['theme'] : 'red';
|
21 |
}
|
22 |
|
23 |
-
|
24 |
-
|
25 |
-
|
26 |
-
$options = get_option(CSCF_OPTIONS_KEY);
|
27 |
|
28 |
-
|
29 |
-
}
|
30 |
|
31 |
-
|
32 |
-
function PrivateKey()
|
33 |
-
{
|
34 |
-
$options = get_option(CSCF_OPTIONS_KEY);
|
35 |
|
36 |
-
|
37 |
-
|
|
|
|
|
|
|
|
|
|
|
38 |
|
39 |
static
|
40 |
function SentMessageHeading()
|
@@ -76,14 +76,15 @@ class cscf_PluginSettings
|
|
76 |
return isset($options['use_client_validation']) ? true : false;
|
77 |
}
|
78 |
|
79 |
-
|
80 |
-
|
81 |
-
|
82 |
-
|
83 |
-
|
84 |
-
|
85 |
-
|
86 |
-
|
|
|
87 |
|
88 |
static
|
89 |
function Subject()
|
20 |
return isset($options['theme']) ? $options['theme'] : 'red';
|
21 |
}
|
22 |
|
23 |
+
static
|
24 |
+
function PublicKey() {
|
25 |
+
$options = get_option( CSCF_OPTIONS_KEY );
|
|
|
26 |
|
27 |
+
return isset( $options['recaptcha_public_key'] ) ? $options['recaptcha_public_key'] : null;
|
|
|
28 |
|
29 |
+
}
|
|
|
|
|
|
|
30 |
|
31 |
+
static
|
32 |
+
function PrivateKey() {
|
33 |
+
$options = get_option( CSCF_OPTIONS_KEY );
|
34 |
+
|
35 |
+
return isset( $options['recaptcha_private_key'] ) ? $options['recaptcha_private_key'] : null;
|
36 |
+
|
37 |
+
}
|
38 |
|
39 |
static
|
40 |
function SentMessageHeading()
|
76 |
return isset($options['use_client_validation']) ? true : false;
|
77 |
}
|
78 |
|
79 |
+
static
|
80 |
+
function RecipientEmails() {
|
81 |
+
$options = get_option( CSCF_OPTIONS_KEY );
|
82 |
+
if ( isset( $options['recipient_emails'] ) && count( $options['recipient_emails'] ) == 0 ) {
|
83 |
+
unset( $options['recipient_emails'] );
|
84 |
+
}
|
85 |
+
|
86 |
+
return isset( $options['recipient_emails'] ) ? $options['recipient_emails'] : array( get_bloginfo( 'admin_email' ) );
|
87 |
+
}
|
88 |
|
89 |
static
|
90 |
function Subject()
|
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.4.
|
11 |
Author: Meghan Nicholas
|
12 |
Author URI: http://www.megnicholas.co.uk
|
13 |
License: GPLv2 or later
|
@@ -52,7 +52,7 @@ if (!defined('CSCF_PLUGIN_URL')) define('CSCF_PLUGIN_URL', WP_PLUGIN_URL . '/' .
|
|
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.4.
|
56 |
|
57 |
if (!defined('CSCF_OPTIONS_KEY')) define('CSCF_OPTIONS_KEY', 'cscf_options');
|
58 |
|
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.4.4
|
11 |
Author: Meghan Nicholas
|
12 |
Author URI: http://www.megnicholas.co.uk
|
13 |
License: GPLv2 or later
|
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.4.4');
|
56 |
|
57 |
if (!defined('CSCF_OPTIONS_KEY')) define('CSCF_OPTIONS_KEY', 'cscf_options');
|
58 |
|
languages/cleanandsimple-sl_SI.mo
ADDED
Binary file
|
languages/cleanandsimple-sl_SI.po
ADDED
@@ -0,0 +1,328 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
# Copyright (C) 2014 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.4.0\n"
|
6 |
+
"Report-Msgid-Bugs-To: http://wordpress.org/tag/clean-and-simple-contact-form-"
|
7 |
+
"by-meg-nicholas\n"
|
8 |
+
"POT-Creation-Date: 2014-09-24 08:46:00+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: 2015-03-15 12:43+0100\n"
|
13 |
+
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
|
14 |
+
"Language-Team: PC PRO <info@pc-pro.si>\n"
|
15 |
+
"Plural-Forms: nplurals=4; plural=(n%100==1 ? 0 : n%100==2 ? 1 : n%100==3 || n"
|
16 |
+
"%100==4 ? 2 : 3);\n"
|
17 |
+
"Language: sl\n"
|
18 |
+
"X-Generator: Poedit 1.6.5\n"
|
19 |
+
|
20 |
+
#: class.cscf.php:151
|
21 |
+
msgid "Settings"
|
22 |
+
msgstr "Nastavitve"
|
23 |
+
|
24 |
+
#: class.cscf_contact.php:66
|
25 |
+
msgid "Sorry the email addresses do not match."
|
26 |
+
msgstr "Oprostite e-naslov se ne ujema."
|
27 |
+
|
28 |
+
#: class.cscf_contact.php:71 views/contact-form.view.php:54
|
29 |
+
msgid "Please give your email address."
|
30 |
+
msgstr "Prosimo, vpišite e-naslov."
|
31 |
+
|
32 |
+
#: class.cscf_contact.php:75
|
33 |
+
msgid "Please confirm your email address."
|
34 |
+
msgstr "Prosimo potrdite vaš e-naslov."
|
35 |
+
|
36 |
+
#: class.cscf_contact.php:80 views/contact-form.view.php:32
|
37 |
+
msgid "Please give your name."
|
38 |
+
msgstr "Prosimo vnesite vaše ime."
|
39 |
+
|
40 |
+
#: class.cscf_contact.php:84
|
41 |
+
msgid "Please enter a message."
|
42 |
+
msgstr "Prosimo vnesite sporočilo."
|
43 |
+
|
44 |
+
#: class.cscf_contact.php:88 views/contact-form.view.php:55
|
45 |
+
#: views/contact-form.view.php:79
|
46 |
+
msgid "Please enter a valid email address."
|
47 |
+
msgstr "Prosimo vnesite veljaven e-naslov."
|
48 |
+
|
49 |
+
#: class.cscf_contact.php:95
|
50 |
+
msgid "Sorry the code wasn't entered correctly please try again."
|
51 |
+
msgstr "Oprostite, znaki niso bili vnešeni pravilno, prosimo poskusite znova."
|
52 |
+
|
53 |
+
#: class.cscf_contact.php:157
|
54 |
+
msgid "Here is a copy of your message :"
|
55 |
+
msgstr "Tukaj je kopija vašega sporočila:"
|
56 |
+
|
57 |
+
#: class.cscf_pluginsettings.php:44
|
58 |
+
msgid "Message Sent"
|
59 |
+
msgstr "Sporočilo poslano"
|
60 |
+
|
61 |
+
#: class.cscf_pluginsettings.php:52
|
62 |
+
msgid "Thank you for your message, we will be in touch very shortly."
|
63 |
+
msgstr ""
|
64 |
+
"Hvala, za vaše sporočilo. Kontaktirali vas bomo v najkrajšem možnem času."
|
65 |
+
|
66 |
+
#: class.cscf_pluginsettings.php:60
|
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 |
+
"Prosim vnesite vaše kontaktne podatke in kratko sporočilo. Poskušal vam bom "
|
72 |
+
"odgovoriti v najkrajšem možnem času."
|
73 |
+
|
74 |
+
#: class.cscf_pluginsettings.php:93
|
75 |
+
msgid " - Web Enquiry"
|
76 |
+
msgstr "- Spletni vprašalnik"
|
77 |
+
|
78 |
+
#: class.cscf_settings.php:30
|
79 |
+
msgid "Contact Form Settings"
|
80 |
+
msgstr "Nastavitve kontaktnega obrazca"
|
81 |
+
|
82 |
+
#: class.cscf_settings.php:30
|
83 |
+
msgid "Contact Form"
|
84 |
+
msgstr "Kontaktni obrazec"
|
85 |
+
|
86 |
+
#: class.cscf_settings.php:41
|
87 |
+
msgid "Clean and Simple Contact Form Settings"
|
88 |
+
msgstr "Čist in enostaven kontaktni obrazec"
|
89 |
+
|
90 |
+
#: class.cscf_settings.php:47
|
91 |
+
msgid "Donate $10, $20 or $50!"
|
92 |
+
msgstr "Darujte $10, $20 ali $50!"
|
93 |
+
|
94 |
+
#: class.cscf_settings.php:50
|
95 |
+
msgid ""
|
96 |
+
"If you like this plugin, please donate to support development and "
|
97 |
+
"maintenance of:"
|
98 |
+
msgstr ""
|
99 |
+
"Če vam ja ta vtičnik všeč, prosim donirajte za nadaljnji razvoj in "
|
100 |
+
"vzdrževanje: "
|
101 |
+
|
102 |
+
#: class.cscf_settings.php:52
|
103 |
+
msgid "Clean and Simple Contact Form!"
|
104 |
+
msgstr "Čistega in enostavnega kontaktnega obrazca!"
|
105 |
+
|
106 |
+
#: class.cscf_settings.php:72
|
107 |
+
msgid "You are using version"
|
108 |
+
msgstr "Uporabljate različico"
|
109 |
+
|
110 |
+
#: class.cscf_settings.php:74
|
111 |
+
msgid "If you find this plugin useful please consider"
|
112 |
+
msgstr "Če menite, da je ta vtičnik uporaben, prosim"
|
113 |
+
|
114 |
+
#: class.cscf_settings.php:77
|
115 |
+
msgid "leaving a review"
|
116 |
+
msgstr "Pustite oceno"
|
117 |
+
|
118 |
+
#: class.cscf_settings.php:79
|
119 |
+
msgid "Thank you!"
|
120 |
+
msgstr "Hvala!"
|
121 |
+
|
122 |
+
#: class.cscf_settings.php:84
|
123 |
+
msgid ""
|
124 |
+
"NOTICE: You have JetPack's Contact Form enabled please deactivate it or use "
|
125 |
+
"the shortcode [cscf-contact-form] instead."
|
126 |
+
msgstr ""
|
127 |
+
"OBVESTILO: Imate omogočen JetPack's kontaktni obrazec, prosimo, da ga "
|
128 |
+
"izključite ali pa uporabite kratko kodo [cscf-contact-form]."
|
129 |
+
|
130 |
+
#: class.cscf_settings.php:86
|
131 |
+
msgid "Read More"
|
132 |
+
msgstr "Preberi več"
|
133 |
+
|
134 |
+
#: class.cscf_settings.php:90
|
135 |
+
msgid "Please Note: To add the contact form to your page please add the text"
|
136 |
+
msgstr ""
|
137 |
+
"Obvestilo: Če želite dodati kontaktni obrazec na vašo stran, prosim dodajte "
|
138 |
+
"tekst"
|
139 |
+
|
140 |
+
#: class.cscf_settings.php:91
|
141 |
+
msgid "to your post or page."
|
142 |
+
msgstr "v vaš prispevek ali stran."
|
143 |
+
|
144 |
+
#: class.cscf_settings.php:111
|
145 |
+
msgid "ReCAPTCHA Settings"
|
146 |
+
msgstr "ReCAPTCHA Nastavitve"
|
147 |
+
|
148 |
+
#: class.cscf_settings.php:119
|
149 |
+
msgid "Use reCAPTCHA :"
|
150 |
+
msgstr "Uporabi reCAPTCHA :"
|
151 |
+
|
152 |
+
#: class.cscf_settings.php:125
|
153 |
+
msgid "reCAPTCHA Theme :"
|
154 |
+
msgstr "reCAPTCHA Predloga: "
|
155 |
+
|
156 |
+
#: class.cscf_settings.php:131
|
157 |
+
msgid "reCAPTCHA Public Key :"
|
158 |
+
msgstr "reCAPTCHA : Javni ključ :"
|
159 |
+
|
160 |
+
#: class.cscf_settings.php:137
|
161 |
+
msgid "reCAPTCHA Private Key :"
|
162 |
+
msgstr "reCAPTCHA Privatni ključ :"
|
163 |
+
|
164 |
+
#: class.cscf_settings.php:143
|
165 |
+
msgid "Message Settings"
|
166 |
+
msgstr "Nastavitve sporočil"
|
167 |
+
|
168 |
+
#: class.cscf_settings.php:147
|
169 |
+
msgid "Recipient Emails :"
|
170 |
+
msgstr "E-naslovi prejemnika: "
|
171 |
+
|
172 |
+
#: class.cscf_settings.php:153
|
173 |
+
msgid "Confirm Email Address :"
|
174 |
+
msgstr "Potrdite e-naslov :"
|
175 |
+
|
176 |
+
#: class.cscf_settings.php:159
|
177 |
+
msgid "*New*"
|
178 |
+
msgstr "*Novo*"
|
179 |
+
|
180 |
+
#: class.cscf_settings.php:159
|
181 |
+
msgid "Allow users to email themselves a copy :"
|
182 |
+
msgstr "Omogočite uporabnikom, da si pošljejo kopijo sporočila :"
|
183 |
+
|
184 |
+
#: class.cscf_settings.php:165
|
185 |
+
msgid "Override 'From' Address :"
|
186 |
+
msgstr "Zaobidi 'Od' naslova :"
|
187 |
+
|
188 |
+
#: class.cscf_settings.php:171
|
189 |
+
msgid "'From' Email Address :"
|
190 |
+
msgstr "'Od' e-naslov :"
|
191 |
+
|
192 |
+
#: class.cscf_settings.php:177
|
193 |
+
msgid "Email Subject :"
|
194 |
+
msgstr "Zadeva : "
|
195 |
+
|
196 |
+
#: class.cscf_settings.php:183
|
197 |
+
msgid "Message :"
|
198 |
+
msgstr "Sporočilo :"
|
199 |
+
|
200 |
+
#: class.cscf_settings.php:189
|
201 |
+
msgid "Message Sent Heading :"
|
202 |
+
msgstr "Poslano sporočilo naslov :"
|
203 |
+
|
204 |
+
#: class.cscf_settings.php:195
|
205 |
+
msgid "Message Sent Content :"
|
206 |
+
msgstr "Sporočilo poslano vsebina :"
|
207 |
+
|
208 |
+
#: class.cscf_settings.php:201
|
209 |
+
msgid "Styling and Validation"
|
210 |
+
msgstr "Oblikovanje in validacija"
|
211 |
+
|
212 |
+
#: class.cscf_settings.php:205
|
213 |
+
msgid ""
|
214 |
+
"Use the plugin default stylesheet (un-tick to use your theme style sheet "
|
215 |
+
"instead) :"
|
216 |
+
msgstr ""
|
217 |
+
"Uporabi privzeto obliko-css vtičnika (odzanči za uporabo lastne oblikovne "
|
218 |
+
"datoteke css) :"
|
219 |
+
|
220 |
+
#: class.cscf_settings.php:211
|
221 |
+
msgid "Use client side validation (AJAX) :"
|
222 |
+
msgstr "Uporabi validacijo (AJAX) :"
|
223 |
+
|
224 |
+
#: class.cscf_settings.php:283
|
225 |
+
msgid "Enter your reCAPTCHA settings below :"
|
226 |
+
msgstr "Vnesi vaše reCAPTCHA nastavitve spodaj :"
|
227 |
+
|
228 |
+
#: class.cscf_settings.php:284
|
229 |
+
msgid "To use reCAPTCHA you must get an API key from"
|
230 |
+
msgstr "Za uporabo reCAPTCHA morate pridobiti API ključ od "
|
231 |
+
|
232 |
+
#: class.cscf_settings.php:290
|
233 |
+
msgid "Enter your message settings below :"
|
234 |
+
msgstr "Vnesite vaše nastavitve sporočila spodaj :"
|
235 |
+
|
236 |
+
#: class.cscf_settings.php:392
|
237 |
+
msgid "Red"
|
238 |
+
msgstr "Rdeča"
|
239 |
+
|
240 |
+
#: class.cscf_settings.php:394
|
241 |
+
msgid "White"
|
242 |
+
msgstr "Bela"
|
243 |
+
|
244 |
+
#: class.cscf_settings.php:396
|
245 |
+
msgid "Blackglass"
|
246 |
+
msgstr "Črno steklo"
|
247 |
+
|
248 |
+
#: class.cscf_settings.php:398
|
249 |
+
msgid "Clean"
|
250 |
+
msgstr "Čista"
|
251 |
+
|
252 |
+
#: views/contact-form.view.php:25
|
253 |
+
msgid "Name:"
|
254 |
+
msgstr "Ime: "
|
255 |
+
|
256 |
+
#: views/contact-form.view.php:35
|
257 |
+
msgid "Your Name"
|
258 |
+
msgstr "Vaše ime"
|
259 |
+
|
260 |
+
#: views/contact-form.view.php:46
|
261 |
+
msgid "Email Address:"
|
262 |
+
msgstr "E-poštni naslov:"
|
263 |
+
|
264 |
+
#: views/contact-form.view.php:58
|
265 |
+
msgid "Your Email Address"
|
266 |
+
msgstr "Vaš e-poštni naslov"
|
267 |
+
|
268 |
+
#: views/contact-form.view.php:69
|
269 |
+
msgid "Confirm Email Address:"
|
270 |
+
msgstr "Potrdi e-poštni naslov:"
|
271 |
+
|
272 |
+
#: views/contact-form.view.php:78 views/contact-form.view.php:80
|
273 |
+
msgid "Please enter the same email address again."
|
274 |
+
msgstr "Prosim vnesite e-naslov še enkrat."
|
275 |
+
|
276 |
+
#: views/contact-form.view.php:83
|
277 |
+
msgid "Confirm Your Email Address"
|
278 |
+
msgstr "Potrdite vaš e-naslov"
|
279 |
+
|
280 |
+
#: views/contact-form.view.php:95
|
281 |
+
msgid "Message:"
|
282 |
+
msgstr "Sporočilo"
|
283 |
+
|
284 |
+
#: views/contact-form.view.php:102
|
285 |
+
msgid "Please give a message."
|
286 |
+
msgstr "Prosim vnesite sporočilo."
|
287 |
+
|
288 |
+
#: views/contact-form.view.php:104
|
289 |
+
msgid "Your Message"
|
290 |
+
msgstr "Vaše sporočilo"
|
291 |
+
|
292 |
+
#: views/contact-form.view.php:114
|
293 |
+
msgid "Send me a copy:"
|
294 |
+
msgstr "Pošlji mi kopijo:"
|
295 |
+
|
296 |
+
#: views/contact-form.view.php:142
|
297 |
+
msgid "Send Message"
|
298 |
+
msgstr "Pošlji sporočilo"
|
299 |
+
|
300 |
+
#: views/message-not-sent.view.php:1
|
301 |
+
msgid "Sorry, there has been a problem and your message was not sent."
|
302 |
+
msgstr "Oprostite, prišlo je do težav in vašega sporočila ni bilo poslano."
|
303 |
+
|
304 |
+
#. Plugin Name of the plugin/theme
|
305 |
+
msgid "Clean and Simple Contact Form"
|
306 |
+
msgstr "Čist in enostaven kontaktni obrazec"
|
307 |
+
|
308 |
+
#. Plugin URI of the plugin/theme
|
309 |
+
msgid ""
|
310 |
+
"http://www.megnicholas.co.uk/wordpress-plugins/clean-and-simple-contact-form"
|
311 |
+
msgstr ""
|
312 |
+
"http://www.megnicholas.co.uk/wordpress-plugins/clean-and-simple-contact-form"
|
313 |
+
|
314 |
+
#. Description of the plugin/theme
|
315 |
+
msgid ""
|
316 |
+
"A clean and simple contact form with Google reCAPTCHA and Twitter Bootstrap "
|
317 |
+
"markup."
|
318 |
+
msgstr ""
|
319 |
+
"Čist in enostaven kontaktni obrazec z Google reCAPTCHA in Twitter Bootstrap "
|
320 |
+
"označevanjem."
|
321 |
+
|
322 |
+
#. Author of the plugin/theme
|
323 |
+
msgid "Meghan Nicholas"
|
324 |
+
msgstr "Meghan Nicholas"
|
325 |
+
|
326 |
+
#. Author URI of the plugin/theme
|
327 |
+
msgid "http://www.megnicholas.co.uk"
|
328 |
+
msgstr "http://www.megnicholas.co.uk"
|
languages/cleanandsimple-sr_RS.mo
ADDED
Binary file
|
languages/cleanandsimple-sr_RS.po
ADDED
@@ -0,0 +1,314 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
# Copyright (C) 2014 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: Cleand and Simple Contact Form Indonesian\n"
|
6 |
+
"Report-Msgid-Bugs-To: http://wordpress.org/tag/clean-and-simple-contact-form-by-meg-"
|
7 |
+
"nicholas\n"
|
8 |
+
"POT-Creation-Date: 2014-09-24 08:46:00+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: 2015-02-11 10:59+0100\n"
|
13 |
+
"Language-Team: Beny Hirmansyah <beny@beny.me>\n"
|
14 |
+
"X-Generator: Poedit 1.7.4\n"
|
15 |
+
"Plural-Forms: nplurals=1; plural=0;\n"
|
16 |
+
"Language: id_ID\n"
|
17 |
+
"X-Poedit-SourceCharset: UTF-8\n"
|
18 |
+
"Last-Translator: \n"
|
19 |
+
|
20 |
+
#: class.cscf.php:151
|
21 |
+
msgid "Settings"
|
22 |
+
msgstr "Podešavanja"
|
23 |
+
|
24 |
+
#: class.cscf_contact.php:66
|
25 |
+
msgid "Sorry the email addresses do not match."
|
26 |
+
msgstr "Mail adrese se ne podudaraju."
|
27 |
+
|
28 |
+
#: class.cscf_contact.php:71 views/contact-form.view.php:54
|
29 |
+
msgid "Please give your email address."
|
30 |
+
msgstr "Navedite svoju mail adresu."
|
31 |
+
|
32 |
+
#: class.cscf_contact.php:75
|
33 |
+
msgid "Please confirm your email address."
|
34 |
+
msgstr "Potvrdite svoju mail adresu."
|
35 |
+
|
36 |
+
#: class.cscf_contact.php:80 views/contact-form.view.php:32
|
37 |
+
msgid "Please give your name."
|
38 |
+
msgstr "Navedite svoje ime."
|
39 |
+
|
40 |
+
#: class.cscf_contact.php:84
|
41 |
+
msgid "Please enter a message."
|
42 |
+
msgstr "Unesite poruku."
|
43 |
+
|
44 |
+
#: class.cscf_contact.php:88 views/contact-form.view.php:55 views/contact-form.view.php:79
|
45 |
+
msgid "Please enter a valid email address."
|
46 |
+
msgstr "Unesite važeću mail adresu."
|
47 |
+
|
48 |
+
#: class.cscf_contact.php:95
|
49 |
+
msgid "Sorry the code wasn't entered correctly please try again."
|
50 |
+
msgstr "Kod nije ispravno unet. Pokušajte ponovo."
|
51 |
+
|
52 |
+
#: class.cscf_contact.php:157
|
53 |
+
msgid "Here is a copy of your message :"
|
54 |
+
msgstr "Ovo je kopija vaše poruke:"
|
55 |
+
|
56 |
+
#: class.cscf_pluginsettings.php:44
|
57 |
+
msgid "Message Sent"
|
58 |
+
msgstr "Poruka poslata"
|
59 |
+
|
60 |
+
#: class.cscf_pluginsettings.php:52
|
61 |
+
msgid "Thank you for your message, we will be in touch very shortly."
|
62 |
+
msgstr "Hvala vam za poruku, ubrzo ćemo vam se javiti."
|
63 |
+
|
64 |
+
#: class.cscf_pluginsettings.php:60
|
65 |
+
msgid ""
|
66 |
+
"Please enter your contact details and a short message below and I will try to answer your "
|
67 |
+
"query as soon as possible."
|
68 |
+
msgstr ""
|
69 |
+
"U nastavku unesite svoje podatke i kratku poruku, a ja ću se potruditi da vam što pre "
|
70 |
+
"odgovorim na pitanje."
|
71 |
+
|
72 |
+
#: class.cscf_pluginsettings.php:93
|
73 |
+
msgid " - Web Enquiry"
|
74 |
+
msgstr "Web upiti"
|
75 |
+
|
76 |
+
#: class.cscf_settings.php:30
|
77 |
+
msgid "Contact Form Settings"
|
78 |
+
msgstr "Contact Form Podešavanja"
|
79 |
+
|
80 |
+
#: class.cscf_settings.php:30
|
81 |
+
msgid "Contact Form"
|
82 |
+
msgstr "Obrazac za kontakt"
|
83 |
+
|
84 |
+
#: class.cscf_settings.php:41
|
85 |
+
msgid "Clean and Simple Contact Form Settings"
|
86 |
+
msgstr "Clean and Simple Contact Form Podešavanja"
|
87 |
+
|
88 |
+
#: class.cscf_settings.php:47
|
89 |
+
msgid "Donate $10, $20 or $50!"
|
90 |
+
msgstr "Donirajte $10, $20 ili $50!"
|
91 |
+
|
92 |
+
#: class.cscf_settings.php:50
|
93 |
+
msgid "If you like this plugin, please donate to support development and maintenance of:"
|
94 |
+
msgstr ""
|
95 |
+
"Ako vam se sviđa ovaj plugin, molimo vas da donirate kako biste podržali razvoj i održavanje:"
|
96 |
+
|
97 |
+
#: class.cscf_settings.php:52
|
98 |
+
msgid "Clean and Simple Contact Form!"
|
99 |
+
msgstr "Clean and Simple Contact Form!"
|
100 |
+
|
101 |
+
#: class.cscf_settings.php:72
|
102 |
+
msgid "You are using version"
|
103 |
+
msgstr "Koristite verziju"
|
104 |
+
|
105 |
+
#: class.cscf_settings.php:74
|
106 |
+
msgid "If you find this plugin useful please consider"
|
107 |
+
msgstr "Ako vam je ovaj plugin koristio, razmislite o tome da"
|
108 |
+
|
109 |
+
#: class.cscf_settings.php:77
|
110 |
+
msgid "leaving a review"
|
111 |
+
msgstr "napišete komentar"
|
112 |
+
|
113 |
+
#: class.cscf_settings.php:79
|
114 |
+
msgid "Thank you!"
|
115 |
+
msgstr "Hvala!"
|
116 |
+
|
117 |
+
#: class.cscf_settings.php:84
|
118 |
+
msgid ""
|
119 |
+
"NOTICE: You have JetPack's Contact Form enabled please deactivate it or use the shortcode "
|
120 |
+
"[cscf-contact-form] instead."
|
121 |
+
msgstr ""
|
122 |
+
"NAPOMENA: Aktiviran vam je JetPack's Contact Form. Deaktivirajte ga ili, umesto njega, "
|
123 |
+
"koristite shortcode [cscf-contact-form]. "
|
124 |
+
|
125 |
+
#: class.cscf_settings.php:86
|
126 |
+
msgid "Read More"
|
127 |
+
msgstr "Pročitajte više"
|
128 |
+
|
129 |
+
#: class.cscf_settings.php:90
|
130 |
+
msgid "Please Note: To add the contact form to your page please add the text"
|
131 |
+
msgstr "Napomena: Da biste svojoj stranici dodali obrazac za kontakt, dodajte tekst"
|
132 |
+
|
133 |
+
#: class.cscf_settings.php:91
|
134 |
+
msgid "to your post or page."
|
135 |
+
msgstr "svom postu ili stranici."
|
136 |
+
|
137 |
+
#: class.cscf_settings.php:111
|
138 |
+
msgid "ReCAPTCHA Settings"
|
139 |
+
msgstr "ReCAPTCHA Podešavanja"
|
140 |
+
|
141 |
+
#: class.cscf_settings.php:119
|
142 |
+
msgid "Use reCAPTCHA :"
|
143 |
+
msgstr "Koristite reCAPTCHA :"
|
144 |
+
|
145 |
+
#: class.cscf_settings.php:125
|
146 |
+
msgid "reCAPTCHA Theme :"
|
147 |
+
msgstr "reCAPTCHA tema:"
|
148 |
+
|
149 |
+
#: class.cscf_settings.php:131
|
150 |
+
msgid "reCAPTCHA Public Key :"
|
151 |
+
msgstr "reCAPTCHA javni ključ:"
|
152 |
+
|
153 |
+
#: class.cscf_settings.php:137
|
154 |
+
msgid "reCAPTCHA Private Key :"
|
155 |
+
msgstr "reCAPTCHA privatni ključ:"
|
156 |
+
|
157 |
+
#: class.cscf_settings.php:143
|
158 |
+
msgid "Message Settings"
|
159 |
+
msgstr "Podešavanja poruka"
|
160 |
+
|
161 |
+
#: class.cscf_settings.php:147
|
162 |
+
msgid "Recipient Emails :"
|
163 |
+
msgstr "Mail-ovi primalaca:"
|
164 |
+
|
165 |
+
#: class.cscf_settings.php:153
|
166 |
+
msgid "Confirm Email Address :"
|
167 |
+
msgstr "Potvrdite mail adresu:"
|
168 |
+
|
169 |
+
#: class.cscf_settings.php:159
|
170 |
+
msgid "*New*"
|
171 |
+
msgstr "*Novi*"
|
172 |
+
|
173 |
+
#: class.cscf_settings.php:159
|
174 |
+
msgid "Allow users to email themselves a copy :"
|
175 |
+
msgstr "Dozvolite korisnicima da sebi pošalju kopiju mail-a:"
|
176 |
+
|
177 |
+
#: class.cscf_settings.php:165
|
178 |
+
msgid "Override 'From' Address :"
|
179 |
+
msgstr "Poništite ‘Sa adrese’"
|
180 |
+
|
181 |
+
#: class.cscf_settings.php:171
|
182 |
+
msgid "'From' Email Address :"
|
183 |
+
msgstr "Mail adresa pošiljaoca:"
|
184 |
+
|
185 |
+
#: class.cscf_settings.php:177
|
186 |
+
msgid "Email Subject :"
|
187 |
+
msgstr "Tema mail-a"
|
188 |
+
|
189 |
+
#: class.cscf_settings.php:183
|
190 |
+
msgid "Message :"
|
191 |
+
msgstr "Poruka"
|
192 |
+
|
193 |
+
#: class.cscf_settings.php:189
|
194 |
+
msgid "Message Sent Heading :"
|
195 |
+
msgstr "Zaglavlje poslate poruke:"
|
196 |
+
|
197 |
+
#: class.cscf_settings.php:195
|
198 |
+
msgid "Message Sent Content :"
|
199 |
+
msgstr "Sadržaj poslate poruke:"
|
200 |
+
|
201 |
+
#: class.cscf_settings.php:201
|
202 |
+
msgid "Styling and Validation"
|
203 |
+
msgstr "Stilizovanje i provera"
|
204 |
+
|
205 |
+
#: class.cscf_settings.php:205
|
206 |
+
msgid "Use the plugin default stylesheet (un-tick to use your theme style sheet instead) :"
|
207 |
+
msgstr ""
|
208 |
+
"Koristite podrazumevanu datoteku sa stilovima plugin-a (poništite štikliranje ako umesto "
|
209 |
+
"podrazumevane koristite svoju datoteku sa stilovima teme:"
|
210 |
+
|
211 |
+
#: class.cscf_settings.php:211
|
212 |
+
msgid "Use client side validation (AJAX) :"
|
213 |
+
msgstr "Koristite proveru strane klijenta (AJAX) :"
|
214 |
+
|
215 |
+
#: class.cscf_settings.php:283
|
216 |
+
msgid "Enter your reCAPTCHA settings below :"
|
217 |
+
msgstr "Dole unesite svoja reCAPTCHA podešavanja:"
|
218 |
+
|
219 |
+
#: class.cscf_settings.php:284
|
220 |
+
msgid "To use reCAPTCHA you must get an API key from"
|
221 |
+
msgstr "Da biste koristili reCAPTCHA, morate uzeti API ključ sa:"
|
222 |
+
|
223 |
+
#: class.cscf_settings.php:290
|
224 |
+
msgid "Enter your message settings below :"
|
225 |
+
msgstr "Dole unesite podešavanja svoje poruke:"
|
226 |
+
|
227 |
+
#: class.cscf_settings.php:392
|
228 |
+
msgid "Red"
|
229 |
+
msgstr "Crveno"
|
230 |
+
|
231 |
+
#: class.cscf_settings.php:394
|
232 |
+
msgid "White"
|
233 |
+
msgstr "Belo"
|
234 |
+
|
235 |
+
#: class.cscf_settings.php:396
|
236 |
+
msgid "Blackglass"
|
237 |
+
msgstr "Zatamnjeno staklo"
|
238 |
+
|
239 |
+
#: class.cscf_settings.php:398
|
240 |
+
msgid "Clean"
|
241 |
+
msgstr "Providno"
|
242 |
+
|
243 |
+
#: views/contact-form.view.php:25
|
244 |
+
msgid "Name:"
|
245 |
+
msgstr "Naziv:"
|
246 |
+
|
247 |
+
#: views/contact-form.view.php:35
|
248 |
+
msgid "Your Name"
|
249 |
+
msgstr "Vaše ime"
|
250 |
+
|
251 |
+
#: views/contact-form.view.php:46
|
252 |
+
msgid "Email Address:"
|
253 |
+
msgstr "Mail adresa"
|
254 |
+
|
255 |
+
#: views/contact-form.view.php:58
|
256 |
+
msgid "Your Email Address"
|
257 |
+
msgstr "Vaša mail adresa"
|
258 |
+
|
259 |
+
#: views/contact-form.view.php:69
|
260 |
+
msgid "Confirm Email Address:"
|
261 |
+
msgstr "Potvrdite mail adresu:"
|
262 |
+
|
263 |
+
#: views/contact-form.view.php:78 views/contact-form.view.php:80
|
264 |
+
msgid "Please enter the same email address again."
|
265 |
+
msgstr "Unesite ponovo istu mail adresu"
|
266 |
+
|
267 |
+
#: views/contact-form.view.php:83
|
268 |
+
msgid "Confirm Your Email Address"
|
269 |
+
msgstr "Potvrdite svoju mail adresu:"
|
270 |
+
|
271 |
+
#: views/contact-form.view.php:95
|
272 |
+
msgid "Message:"
|
273 |
+
msgstr "Poruka:"
|
274 |
+
|
275 |
+
#: views/contact-form.view.php:102
|
276 |
+
msgid "Please give a message."
|
277 |
+
msgstr "Navedite poruku."
|
278 |
+
|
279 |
+
#: views/contact-form.view.php:104
|
280 |
+
msgid "Your Message"
|
281 |
+
msgstr "Vaša poruka"
|
282 |
+
|
283 |
+
#: views/contact-form.view.php:114
|
284 |
+
msgid "Send me a copy:"
|
285 |
+
msgstr "Pošalji mi kopiju:"
|
286 |
+
|
287 |
+
#: views/contact-form.view.php:142
|
288 |
+
msgid "Send Message"
|
289 |
+
msgstr "Pošalji poruku"
|
290 |
+
|
291 |
+
#: views/message-not-sent.view.php:1
|
292 |
+
msgid "Sorry, there has been a problem and your message was not sent."
|
293 |
+
msgstr "Žao nam je. Došlo je do problema i vaša poruka nije poslata."
|
294 |
+
|
295 |
+
#. Plugin Name of the plugin/theme
|
296 |
+
msgid "Clean and Simple Contact Form"
|
297 |
+
msgstr "Clean and Simple Contact Form"
|
298 |
+
|
299 |
+
#. Plugin URI of the plugin/theme
|
300 |
+
msgid "http://www.megnicholas.co.uk/wordpress-plugins/clean-and-simple-contact-form"
|
301 |
+
msgstr "http://www.megnicholas.co.uk/wordpress-plugins/clean-and-simple-contact-form"
|
302 |
+
|
303 |
+
#. Description of the plugin/theme
|
304 |
+
msgid "A clean and simple contact form with Google reCAPTCHA and Twitter Bootstrap markup."
|
305 |
+
msgstr ""
|
306 |
+
"Jednostavan i pregledan obrazac za kontakt sa Google reCAPTCHA i Twitter Bootstrap oznakama."
|
307 |
+
|
308 |
+
#. Author of the plugin/theme
|
309 |
+
msgid "Meghan Nicholas"
|
310 |
+
msgstr "Meghan Nicholas"
|
311 |
+
|
312 |
+
#. Author URI of the plugin/theme
|
313 |
+
msgid "http://www.megnicholas.co.uk"
|
314 |
+
msgstr "http://www.megnicholas.co.uk"
|
readme.txt
CHANGED
@@ -5,8 +5,8 @@ License: GPLv2 or later
|
|
5 |
License URI: http://www.gnu.org/licenses/gpl.html
|
6 |
Tags: simple, contact, form, contact button, contact form, contact form plugin, akismet, contacts, contacts form plugin, contact me, feedback form, bootstrap, twitter, google, reCAPTCHA, ajax, secure
|
7 |
Requires at least: 3.3
|
8 |
-
Tested up to: 4.1
|
9 |
-
Stable tag: 4.4.
|
10 |
|
11 |
A clean and simple AJAX contact form with Google reCAPTCHA, Twitter Bootstrap markup and Akismet spam filtering.
|
12 |
|
@@ -203,6 +203,12 @@ the reCAPTCHA for the contact form will be displayed correctly but not in the co
|
|
203 |
The comments form will never validate due to no supplied reCAPTCHA code.
|
204 |
|
205 |
== Changelog ==
|
|
|
|
|
|
|
|
|
|
|
|
|
206 |
= 4.4.3 =
|
207 |
* Remove branding
|
208 |
= 4.4.2 =
|
@@ -324,6 +330,8 @@ Polish thanks to Patryk Peas
|
|
324 |
|
325 |
|
326 |
== Upgrade Notice ==
|
|
|
|
|
327 |
= 4.4.3 =
|
328 |
Tested up to 4.1
|
329 |
= 4.4.2 =
|
5 |
License URI: http://www.gnu.org/licenses/gpl.html
|
6 |
Tags: simple, contact, form, contact button, contact form, contact form plugin, akismet, contacts, contacts form plugin, contact me, feedback form, bootstrap, twitter, google, reCAPTCHA, ajax, secure
|
7 |
Requires at least: 3.3
|
8 |
+
Tested up to: 4.1.1
|
9 |
+
Stable tag: 4.4.4
|
10 |
|
11 |
A clean and simple AJAX contact form with Google reCAPTCHA, Twitter Bootstrap markup and Akismet spam filtering.
|
12 |
|
203 |
The comments form will never validate due to no supplied reCAPTCHA code.
|
204 |
|
205 |
== Changelog ==
|
206 |
+
= 4.4.4 =
|
207 |
+
* Added Serbian translation thanks to [Borisa Djuraskovic](http://www.webhostinghub.com "Borisa Djuraskovic")
|
208 |
+
* Added Slovenian translation thanks to Bekim Lutolli
|
209 |
+
* Fixed some 'notice' errors
|
210 |
+
* Recaptcha styling workaround for twenty fifteen theme
|
211 |
+
* Remove empty divs from view
|
212 |
= 4.4.3 =
|
213 |
* Remove branding
|
214 |
= 4.4.2 =
|
330 |
|
331 |
|
332 |
== Upgrade Notice ==
|
333 |
+
= 4.4.4 =
|
334 |
+
Added languages, css fix for twenty fifteen theme, remove 'notice' errors, remove empty divs
|
335 |
= 4.4.3 =
|
336 |
Tested up to 4.1
|
337 |
= 4.4.2 =
|
views/contact-form.view.php
CHANGED
@@ -20,7 +20,7 @@
|
|
20 |
<!-- name -->
|
21 |
<div class="control-group form-group<?php if (isset($contact->Errors['name'])) echo ' error has-error'; ?>">
|
22 |
<label for="cscf_name"><?php _e('Name:','cleanandsimple');?></label>
|
23 |
-
|
24 |
<?php if ( cscf_PluginSettings::InputIcons() == true ) { ?>
|
25 |
<span class="input-group-addon"><span class="glyphicon glyphicon-user"></span></span>
|
26 |
<?php } ?>
|
@@ -31,7 +31,7 @@
|
|
31 |
value="<?php echo esc_attr($contact->Name); ?>"
|
32 |
placeholder="<?php _e('Your Name','cleanandsimple');?>"
|
33 |
/>
|
34 |
-
|
35 |
<span for="cscf_name" class="help-inline help-block error" style="display:<?php echo isset($contact->Errors['name']) ? 'block' : 'none'; ?>;">
|
36 |
<?php if (isset($contact->Errors['name'])) echo $contact->Errors['name']; ?>
|
37 |
</span>
|
@@ -41,7 +41,7 @@
|
|
41 |
<!--email address-->
|
42 |
<div class="control-group form-group<?php if (isset($contact->Errors['email'])) echo ' error has-error'; ?>">
|
43 |
<label for="cscf_email"><?php _e('Email Address:','cleanandsimple');?></label>
|
44 |
-
|
45 |
<?php if ( cscf_PluginSettings::InputIcons() == true ) { ?>
|
46 |
<span class="input-group-addon"><span class="glyphicon glyphicon-envelope"></span></span>
|
47 |
<?php } ?>
|
@@ -54,7 +54,7 @@
|
|
54 |
value="<?php echo esc_attr($contact->Email); ?>"
|
55 |
placeholder="<?php _e('Your Email Address','cleanandsimple');?>"
|
56 |
/>
|
57 |
-
|
58 |
<span for="cscf_email" class="help-inline help-block error" style="display:<?php echo isset($contact->Errors['email']) ? 'block' : 'none'; ?>;">
|
59 |
<?php if (isset($contact->Errors['email'])) echo $contact->Errors['email']; ?>
|
60 |
</span>
|
@@ -64,7 +64,7 @@
|
|
64 |
<!--confirm email address -->
|
65 |
<div class="control-group form-group<?php if (isset($contact->Errors['confirm-email'])) echo ' error has-error'; ?>">
|
66 |
<label for="cscf_confirm-email"><?php _e('Confirm Email Address:','cleanandsimple');?></label>
|
67 |
-
|
68 |
<?php if ( cscf_PluginSettings::InputIcons() == true ) { ?>
|
69 |
<span class="input-group-addon"><span class="glyphicon glyphicon-envelope"></span></span>
|
70 |
<?php } ?>
|
@@ -79,7 +79,7 @@
|
|
79 |
value="<?php echo esc_attr($contact->ConfirmEmail); ?>"
|
80 |
placeholder="<?php _e('Confirm Your Email Address','cleanandsimple');?>"
|
81 |
/>
|
82 |
-
|
83 |
<span for="cscf_confirm-email" class="help-inline help-block error" style="display:<?php echo isset($contact->Errors['confirm-email']) ? 'block' : 'none'; ?>;">
|
84 |
<?php if (isset($contact->Errors['confirm-email'])) echo $contact->Errors['confirm-email']; ?>
|
85 |
</span>
|
@@ -90,7 +90,7 @@
|
|
90 |
<!-- message -->
|
91 |
<div class="control-group form-group<?php if (isset($contact->Errors['message'])) echo ' error has-error'; ?>">
|
92 |
<label for="cscf_message"><?php _e('Message:','cleanandsimple');?></label>
|
93 |
-
|
94 |
<?php if ( cscf_PluginSettings::InputIcons() == true ) { ?>
|
95 |
<span class="input-group-addon"><span class="glyphicon glyphicon-comment"></span></span>
|
96 |
<?php } ?>
|
@@ -99,7 +99,7 @@
|
|
99 |
data-msg-required="<?php _e('Please give a message.','cleanandsimple');?>"
|
100 |
id="cscf_message" name="cscf[message]" rows="10"
|
101 |
placeholder="<?php _e('Your Message','cleanandsimple');?>"><?php echo esc_textarea($contact->Message); ?></textarea>
|
102 |
-
|
103 |
<span for="cscf_message" class="help-inline help-block error" style="display:<?php echo isset($contact->Errors['message']) ? 'block' : 'none'; ?>;">
|
104 |
<?php if (isset($contact->Errors['message'])) echo $contact->Errors['message']; ?>
|
105 |
</span>
|
@@ -109,12 +109,12 @@
|
|
109 |
<!-- email to sender -->
|
110 |
<div class="control-group form-group<?php if (isset($contact->Errors['email-sender'])) echo ' error has-error'; ?>">
|
111 |
<label for="cscf_email-sender"><?php _e('Send me a copy:','cleanandsimple');?></label>
|
112 |
-
|
113 |
<?php if ( cscf_PluginSettings::InputIcons() == true ) { ?>
|
114 |
<span class="input-group-addon"><span class="glyphicon glyphicon-comment"></span></span>
|
115 |
<?php } ?>
|
116 |
<input <?php echo $contact->EmailToSender==true ? 'checked' : ''; ?> type="checkbox" id="cscf_email-sender" name="cscf[email-sender]">
|
117 |
-
|
118 |
<span for="cscf_email-sender" class="help-inline help-block error" style="display:<?php echo isset($contact->Errors['email-sender']) ? 'block' : 'none'; ?>;">
|
119 |
<?php if (isset($contact->Errors['email-sender'])) echo $contact->Errors['email-sender']; ?>
|
120 |
</span>
|
@@ -127,7 +127,11 @@
|
|
127 |
var RecaptchaOptions = {
|
128 |
theme : '<?php echo cscf_PluginSettings::Theme(); ?>'
|
129 |
};
|
130 |
-
</script>
|
|
|
|
|
|
|
|
|
131 |
<div class="control-group form-group<?php
|
132 |
if (isset($contact->Errors['recaptcha'])) echo ' error'; ?>">
|
133 |
<div id="recaptcha_div">
|
20 |
<!-- name -->
|
21 |
<div class="control-group form-group<?php if (isset($contact->Errors['name'])) echo ' error has-error'; ?>">
|
22 |
<label for="cscf_name"><?php _e('Name:','cleanandsimple');?></label>
|
23 |
+
<?php echo cscf_PluginSettings::InputIcons() ? "<div class='input-group'>" : ""; ?>
|
24 |
<?php if ( cscf_PluginSettings::InputIcons() == true ) { ?>
|
25 |
<span class="input-group-addon"><span class="glyphicon glyphicon-user"></span></span>
|
26 |
<?php } ?>
|
31 |
value="<?php echo esc_attr($contact->Name); ?>"
|
32 |
placeholder="<?php _e('Your Name','cleanandsimple');?>"
|
33 |
/>
|
34 |
+
<?php echo cscf_PluginSettings::InputIcons() ? "</div>" : ""; ?>
|
35 |
<span for="cscf_name" class="help-inline help-block error" style="display:<?php echo isset($contact->Errors['name']) ? 'block' : 'none'; ?>;">
|
36 |
<?php if (isset($contact->Errors['name'])) echo $contact->Errors['name']; ?>
|
37 |
</span>
|
41 |
<!--email address-->
|
42 |
<div class="control-group form-group<?php if (isset($contact->Errors['email'])) echo ' error has-error'; ?>">
|
43 |
<label for="cscf_email"><?php _e('Email Address:','cleanandsimple');?></label>
|
44 |
+
<?php echo cscf_PluginSettings::InputIcons() ? "<div class='input-group'>" : ""; ?>
|
45 |
<?php if ( cscf_PluginSettings::InputIcons() == true ) { ?>
|
46 |
<span class="input-group-addon"><span class="glyphicon glyphicon-envelope"></span></span>
|
47 |
<?php } ?>
|
54 |
value="<?php echo esc_attr($contact->Email); ?>"
|
55 |
placeholder="<?php _e('Your Email Address','cleanandsimple');?>"
|
56 |
/>
|
57 |
+
<?php echo cscf_PluginSettings::InputIcons() ? "</div>" : ""; ?>
|
58 |
<span for="cscf_email" class="help-inline help-block error" style="display:<?php echo isset($contact->Errors['email']) ? 'block' : 'none'; ?>;">
|
59 |
<?php if (isset($contact->Errors['email'])) echo $contact->Errors['email']; ?>
|
60 |
</span>
|
64 |
<!--confirm email address -->
|
65 |
<div class="control-group form-group<?php if (isset($contact->Errors['confirm-email'])) echo ' error has-error'; ?>">
|
66 |
<label for="cscf_confirm-email"><?php _e('Confirm Email Address:','cleanandsimple');?></label>
|
67 |
+
<?php echo cscf_PluginSettings::InputIcons() ? "<div class='input-group'>" : ""; ?>
|
68 |
<?php if ( cscf_PluginSettings::InputIcons() == true ) { ?>
|
69 |
<span class="input-group-addon"><span class="glyphicon glyphicon-envelope"></span></span>
|
70 |
<?php } ?>
|
79 |
value="<?php echo esc_attr($contact->ConfirmEmail); ?>"
|
80 |
placeholder="<?php _e('Confirm Your Email Address','cleanandsimple');?>"
|
81 |
/>
|
82 |
+
<?php echo cscf_PluginSettings::InputIcons() ? "</div>" : ""; ?>
|
83 |
<span for="cscf_confirm-email" class="help-inline help-block error" style="display:<?php echo isset($contact->Errors['confirm-email']) ? 'block' : 'none'; ?>;">
|
84 |
<?php if (isset($contact->Errors['confirm-email'])) echo $contact->Errors['confirm-email']; ?>
|
85 |
</span>
|
90 |
<!-- message -->
|
91 |
<div class="control-group form-group<?php if (isset($contact->Errors['message'])) echo ' error has-error'; ?>">
|
92 |
<label for="cscf_message"><?php _e('Message:','cleanandsimple');?></label>
|
93 |
+
<?php echo cscf_PluginSettings::InputIcons() ? "<div class='input-group'>" : ""; ?>
|
94 |
<?php if ( cscf_PluginSettings::InputIcons() == true ) { ?>
|
95 |
<span class="input-group-addon"><span class="glyphicon glyphicon-comment"></span></span>
|
96 |
<?php } ?>
|
99 |
data-msg-required="<?php _e('Please give a message.','cleanandsimple');?>"
|
100 |
id="cscf_message" name="cscf[message]" rows="10"
|
101 |
placeholder="<?php _e('Your Message','cleanandsimple');?>"><?php echo esc_textarea($contact->Message); ?></textarea>
|
102 |
+
<?php echo cscf_PluginSettings::InputIcons() ? "</div>" : ""; ?>
|
103 |
<span for="cscf_message" class="help-inline help-block error" style="display:<?php echo isset($contact->Errors['message']) ? 'block' : 'none'; ?>;">
|
104 |
<?php if (isset($contact->Errors['message'])) echo $contact->Errors['message']; ?>
|
105 |
</span>
|
109 |
<!-- email to sender -->
|
110 |
<div class="control-group form-group<?php if (isset($contact->Errors['email-sender'])) echo ' error has-error'; ?>">
|
111 |
<label for="cscf_email-sender"><?php _e('Send me a copy:','cleanandsimple');?></label>
|
112 |
+
<?php echo cscf_PluginSettings::InputIcons() ? "<div class='input-group'>" : ""; ?>
|
113 |
<?php if ( cscf_PluginSettings::InputIcons() == true ) { ?>
|
114 |
<span class="input-group-addon"><span class="glyphicon glyphicon-comment"></span></span>
|
115 |
<?php } ?>
|
116 |
<input <?php echo $contact->EmailToSender==true ? 'checked' : ''; ?> type="checkbox" id="cscf_email-sender" name="cscf[email-sender]">
|
117 |
+
<?php echo cscf_PluginSettings::InputIcons() ? "</div>" : ""; ?>
|
118 |
<span for="cscf_email-sender" class="help-inline help-block error" style="display:<?php echo isset($contact->Errors['email-sender']) ? 'block' : 'none'; ?>;">
|
119 |
<?php if (isset($contact->Errors['email-sender'])) echo $contact->Errors['email-sender']; ?>
|
120 |
</span>
|
127 |
var RecaptchaOptions = {
|
128 |
theme : '<?php echo cscf_PluginSettings::Theme(); ?>'
|
129 |
};
|
130 |
+
</script>
|
131 |
+
|
132 |
+
<?php /*allow WP theme twenty fifteen to work with recaptcha*/?>
|
133 |
+
<style>.recaptchatable {table-layout:auto;}</style>
|
134 |
+
|
135 |
<div class="control-group form-group<?php
|
136 |
if (isset($contact->Errors['recaptcha'])) echo ' error'; ?>">
|
137 |
<div id="recaptcha_div">
|