Version Description
- correct a couple of text domain issues introduced at 4.7.2
Download this release
Release Info
Developer | fullworks |
Plugin | Contact Form Clean and Simple |
Version | 4.7.5 |
Comparing to | |
See all releases |
Code changes from version 4.7.4 to 4.7.5
- class.cscf_contact.php +1 -1
- class.cscf_settings.php +2 -2
- clean-and-simple-contact-form-by-meg-nicholas.php +2 -2
- js/jquery.validate.js +20 -20
- languages/clean-and-simple-contact-form-by-meg-nicholas-it_IT.po +378 -378
- languages/clean-and-simple-contact-form-by-meg-nicholas-nb_NO.po +262 -262
- languages/clean-and-simple-contact-form-by-meg-nicholas-tr_TR.po +319 -319
- readme.txt +4 -1
class.cscf_contact.php
CHANGED
@@ -188,7 +188,7 @@ class cscf_Contact {
|
|
188 |
|
189 |
$header = "";
|
190 |
$message = cscf_PluginSettings::SentMessageBody() . "\n\n";
|
191 |
-
$message .= esc_html__(
|
192 |
$message .= $this->Message;
|
193 |
|
194 |
$result = ( wp_mail( $this->Email, cscf_PluginSettings::Subject(), stripslashes( $message ), $header ) );
|
188 |
|
189 |
$header = "";
|
190 |
$message = cscf_PluginSettings::SentMessageBody() . "\n\n";
|
191 |
+
$message .= esc_html__( 'Here is a copy of your message :', 'clean-and-simple-contact-form-by-meg-nicholas' ) . "\n\n";
|
192 |
$message .= $this->Message;
|
193 |
|
194 |
$result = ( wp_mail( $this->Email, cscf_PluginSettings::Subject(), stripslashes( $message ), $header ) );
|
class.cscf_settings.php
CHANGED
@@ -55,8 +55,8 @@ class cscf_settings {
|
|
55 |
</p>
|
56 |
<?php } ?>
|
57 |
|
58 |
-
<p class="howto"><?php esc_html_e(
|
59 |
-
<code>[cscf-contact-form]</code> <?php esc_html_e(
|
60 |
</p>
|
61 |
|
62 |
<form method="post" action="options.php">
|
55 |
</p>
|
56 |
<?php } ?>
|
57 |
|
58 |
+
<p class="howto"><?php esc_html_e( 'Please Note: To add the contact form to your page please add the text', 'clean-and-simple-contact-form-by-meg-nicholas' ); ?>
|
59 |
+
<code>[cscf-contact-form]</code> <?php esc_html_e( 'to your post or page.', 'clean-and-simple-contact-form-by-meg-nicholas' ); ?>
|
60 |
</p>
|
61 |
|
62 |
<form method="post" action="options.php">
|
clean-and-simple-contact-form-by-meg-nicholas.php
CHANGED
@@ -7,11 +7,11 @@
|
|
7 |
Plugin Name: Clean and Simple Contact Form
|
8 |
Plugin URI: https://fullworks.net/productsclean-and-simple-contact-form
|
9 |
Description: A clean and simple contact form with Google reCAPTCHA and Twitter Bootstrap markup.
|
10 |
-
Version: 4.7.
|
11 |
Author: Fullworks
|
12 |
Author URI: https://fullworks.net
|
13 |
License: GPLv2 or later
|
14 |
-
Text Domain: clean-and-simple-contact-form
|
15 |
Domain Path: /languages
|
16 |
*/
|
17 |
|
7 |
Plugin Name: Clean and Simple Contact Form
|
8 |
Plugin URI: https://fullworks.net/productsclean-and-simple-contact-form
|
9 |
Description: A clean and simple contact form with Google reCAPTCHA and Twitter Bootstrap markup.
|
10 |
+
Version: 4.7.5
|
11 |
Author: Fullworks
|
12 |
Author URI: https://fullworks.net
|
13 |
License: GPLv2 or later
|
14 |
+
Text Domain: clean-and-simple-contact-form-by-meg-nicholas
|
15 |
Domain Path: /languages
|
16 |
*/
|
17 |
|
js/jquery.validate.js
CHANGED
@@ -1,21 +1,21 @@
|
|
1 |
-
/*!
|
2 |
-
* jQuery Validation Plugin v1.19.3
|
3 |
-
*
|
4 |
-
* https://jqueryvalidation.org/
|
5 |
-
*
|
6 |
-
* Copyright (c) 2021 Jörn Zaefferer
|
7 |
-
* Released under the MIT license
|
8 |
-
*/
|
9 |
-
(function( factory ) {
|
10 |
-
if ( typeof define === "function" && define.amd ) {
|
11 |
-
define( ["jquery"], factory );
|
12 |
-
} else if (typeof module === "object" && module.exports) {
|
13 |
-
module.exports = factory( require( "jquery" ) );
|
14 |
-
} else {
|
15 |
-
factory( jQuery );
|
16 |
-
}
|
17 |
-
}(function( $ ) {
|
18 |
-
|
19 |
$.extend( $.fn, {
|
20 |
|
21 |
// https://jqueryvalidation.org/validate/
|
@@ -1617,7 +1617,7 @@ $.extend( $.validator, {
|
|
1617 |
}
|
1618 |
|
1619 |
} );
|
1620 |
-
|
1621 |
// Ajax mode: abort
|
1622 |
// usage: $.ajax({ mode: "abort"[, port: "uniqueport"]});
|
1623 |
// if mode:"abort" is used, the previous request on that port (port can be undefined) is aborted via XMLHttpRequest.abort()
|
@@ -1653,5 +1653,5 @@ if ( $.ajaxPrefilter ) {
|
|
1653 |
return ajax.apply( this, arguments );
|
1654 |
};
|
1655 |
}
|
1656 |
-
return $;
|
1657 |
}));
|
1 |
+
/*!
|
2 |
+
* jQuery Validation Plugin v1.19.3
|
3 |
+
*
|
4 |
+
* https://jqueryvalidation.org/
|
5 |
+
*
|
6 |
+
* Copyright (c) 2021 Jörn Zaefferer
|
7 |
+
* Released under the MIT license
|
8 |
+
*/
|
9 |
+
(function( factory ) {
|
10 |
+
if ( typeof define === "function" && define.amd ) {
|
11 |
+
define( ["jquery"], factory );
|
12 |
+
} else if (typeof module === "object" && module.exports) {
|
13 |
+
module.exports = factory( require( "jquery" ) );
|
14 |
+
} else {
|
15 |
+
factory( jQuery );
|
16 |
+
}
|
17 |
+
}(function( $ ) {
|
18 |
+
|
19 |
$.extend( $.fn, {
|
20 |
|
21 |
// https://jqueryvalidation.org/validate/
|
1617 |
}
|
1618 |
|
1619 |
} );
|
1620 |
+
|
1621 |
// Ajax mode: abort
|
1622 |
// usage: $.ajax({ mode: "abort"[, port: "uniqueport"]});
|
1623 |
// if mode:"abort" is used, the previous request on that port (port can be undefined) is aborted via XMLHttpRequest.abort()
|
1653 |
return ajax.apply( this, arguments );
|
1654 |
};
|
1655 |
}
|
1656 |
+
return $;
|
1657 |
}));
|
languages/clean-and-simple-contact-form-by-meg-nicholas-it_IT.po
CHANGED
@@ -1,378 +1,378 @@
|
|
1 |
-
msgid ""
|
2 |
-
msgstr ""
|
3 |
-
"Project-Id-Version: Clean and Simple Contact Form\n"
|
4 |
-
"Report-Msgid-Bugs-To: \n"
|
5 |
-
"POT-Creation-Date: Sun Apr 19 2015 03:10:40 GMT+0200 (ora solare Europa "
|
6 |
-
"occidentale)\n"
|
7 |
-
"PO-Revision-Date: 2015-04-22 11:06+0100\n"
|
8 |
-
"Last-Translator: Elfo <relazionigay@altervista.org>\n"
|
9 |
-
"Language-Team: \n"
|
10 |
-
"Language: it\n"
|
11 |
-
"Plural-Forms: nplurals=2; plural=n != 1;\n"
|
12 |
-
"MIME-Version: 1.0\n"
|
13 |
-
"Content-Type: text/plain; charset=UTF-8\n"
|
14 |
-
"Content-Transfer-Encoding: 8bit\n"
|
15 |
-
"X-Poedit-SourceCharset: UTF-8\n"
|
16 |
-
"X-Poedit-Basepath: .\n"
|
17 |
-
"X-Poedit-KeywordsList: _:1;gettext:1;dgettext:2;ngettext:1,2;dngettext:2,3;__:1;"
|
18 |
-
"_e:1;_c:1;_n:1,2;_n_noop:1,2;_nc:1,2;__ngettext:1,2;__ngettext_noop:1,2;_x:1,2c;"
|
19 |
-
"_ex:1,2c;_nx:1,2,4c;_nx_noop:1,2,3c;_n_js:1,2;_nx_js:1,2,3c;esc_attr__:1;"
|
20 |
-
"esc_html__:1;esc_attr_e:1;esc_html_e:1;esc_attr_x:1,2c;esc_html_x:1,2c;"
|
21 |
-
"comments_number_link:2,3;t:1;st:1;trans:1;transChoice:1,2\n"
|
22 |
-
"X-Loco-Target-Locale: it_IT\n"
|
23 |
-
"X-Generator: Poedit 1.7.6\n"
|
24 |
-
"X-Poedit-SearchPath-0: ../../plugins/clean-and-simple-contact-form-by-meg-"
|
25 |
-
"nicholas\n"
|
26 |
-
|
27 |
-
#: ../../plugins/clean-and-simple-contact-form-by-meg-nicholas/class.
|
28 |
-
#: cscf_pluginsettings.php:44
|
29 |
-
msgid "Message Sent"
|
30 |
-
msgstr "Messaggio inviato"
|
31 |
-
|
32 |
-
#: ../../plugins/clean-and-simple-contact-form-by-meg-nicholas/class.
|
33 |
-
#: cscf_pluginsettings.php:52
|
34 |
-
msgid "Thank you for your message, we will be in touch very shortly."
|
35 |
-
msgstr "Grazie del Messaggio, vi contatteremo il più presto possibile."
|
36 |
-
|
37 |
-
#: ../../plugins/clean-and-simple-contact-form-by-meg-nicholas/class.
|
38 |
-
#: cscf_pluginsettings.php:60
|
39 |
-
msgid ""
|
40 |
-
"Please enter your contact details and a short message below and I will try to "
|
41 |
-
"answer your query as soon as possible."
|
42 |
-
msgstr ""
|
43 |
-
"Per favore inserisci di seguito i dati di contatto e un breve messaggio e "
|
44 |
-
"proveremo a risponderti al più presto."
|
45 |
-
|
46 |
-
#: ../../plugins/clean-and-simple-contact-form-by-meg-nicholas/class.
|
47 |
-
#: cscf_pluginsettings.php:94
|
48 |
-
msgid " - Web Enquiry"
|
49 |
-
msgstr "- Richiesta Web"
|
50 |
-
|
51 |
-
#: ../../plugins/clean-and-simple-contact-form-by-meg-nicholas/class.cscf.php:151
|
52 |
-
msgid "Settings"
|
53 |
-
msgstr "Impostazioni"
|
54 |
-
|
55 |
-
#: ../../plugins/clean-and-simple-contact-form-by-meg-nicholas/class.cscf_contact.
|
56 |
-
#: php:66
|
57 |
-
msgid "Sorry the email addresses do not match."
|
58 |
-
msgstr "Spiacente gli indirizzi email non corrispondono."
|
59 |
-
|
60 |
-
#: ../../plugins/clean-and-simple-contact-form-by-meg-nicholas/class.cscf_contact.
|
61 |
-
#: php:71 ../../plugins/clean-and-simple-contact-form-by-meg-
|
62 |
-
#: nicholas/views/contact-form.view.php:51
|
63 |
-
msgid "Please give your email address."
|
64 |
-
msgstr "Si prega di fornire il vostro indirizzo email."
|
65 |
-
|
66 |
-
#: ../../plugins/clean-and-simple-contact-form-by-meg-nicholas/class.cscf_contact.
|
67 |
-
#: php:75
|
68 |
-
msgid "Please confirm your email address."
|
69 |
-
msgstr "Si prega di confermare il vostro indirizzo email."
|
70 |
-
|
71 |
-
#: ../../plugins/clean-and-simple-contact-form-by-meg-nicholas/class.cscf_contact.
|
72 |
-
#: php:80 ../../plugins/clean-and-simple-contact-form-by-meg-
|
73 |
-
#: nicholas/views/contact-form.view.php:29
|
74 |
-
msgid "Please give your name."
|
75 |
-
msgstr "Il vostro nome."
|
76 |
-
|
77 |
-
#: ../../plugins/clean-and-simple-contact-form-by-meg-nicholas/class.cscf_contact.
|
78 |
-
#: php:84
|
79 |
-
msgid "Please enter a message."
|
80 |
-
msgstr "Inserire un messaggio."
|
81 |
-
|
82 |
-
#: ../../plugins/clean-and-simple-contact-form-by-meg-nicholas/class.cscf_contact.
|
83 |
-
#: php:88 ../../plugins/clean-and-simple-contact-form-by-meg-
|
84 |
-
#: nicholas/views/contact-form.view.php:52
|
85 |
-
#: ../../plugins/clean-and-simple-contact-
|
86 |
-
#: form-by-meg-nicholas/views/contact-form.view.php:76
|
87 |
-
msgid "Please enter a valid email address."
|
88 |
-
msgstr "Si prega di inserire un indirizzo email valido."
|
89 |
-
|
90 |
-
#: ../../plugins/clean-and-simple-contact-form-by-meg-nicholas/class.cscf_contact.
|
91 |
-
#: php:95
|
92 |
-
msgid "Sorry the code wasn't entered correctly please try again."
|
93 |
-
msgstr ""
|
94 |
-
"Spiacenti ma il codice non è stato inserito correttamente si prega di riprovare."
|
95 |
-
|
96 |
-
#: ../../plugins/clean-and-simple-contact-form-by-meg-nicholas/class.cscf_contact.
|
97 |
-
#: php:157
|
98 |
-
msgid "Here is a copy of your message :"
|
99 |
-
msgstr "Qui c'è una copia del tuo messaggio:"
|
100 |
-
|
101 |
-
#: ../../plugins/clean-and-simple-contact-form-by-meg-nicholas/class.
|
102 |
-
#: cscf_settings.php:30
|
103 |
-
msgid "Contact Form Settings"
|
104 |
-
msgstr "Impostazioni Contact Form"
|
105 |
-
|
106 |
-
#: ../../plugins/clean-and-simple-contact-form-by-meg-nicholas/class.
|
107 |
-
#: cscf_settings.php:30
|
108 |
-
msgid "Contact Form"
|
109 |
-
msgstr "Contact Form"
|
110 |
-
|
111 |
-
#: ../../plugins/clean-and-simple-contact-form-by-meg-nicholas/class.
|
112 |
-
#: cscf_settings.php:41
|
113 |
-
msgid "Clean and Simple Contact Form Settings"
|
114 |
-
msgstr "Impostazioni Clean and Simple Contact Form"
|
115 |
-
|
116 |
-
#: ../../plugins/clean-and-simple-contact-form-by-meg-nicholas/class.
|
117 |
-
#: cscf_settings.php:47
|
118 |
-
msgid "Donate $10, $20 or $50!"
|
119 |
-
msgstr "Dona $10, $20 o $50!"
|
120 |
-
|
121 |
-
#: ../../plugins/clean-and-simple-contact-form-by-meg-nicholas/class.
|
122 |
-
#: cscf_settings.php:50
|
123 |
-
msgid ""
|
124 |
-
"If you like this plugin, please donate to support development and maintenance "
|
125 |
-
"of:"
|
126 |
-
msgstr ""
|
127 |
-
"Se ti piace questo plugin, per favore supporta lo sviluppo ed il mantenimento "
|
128 |
-
"con una donazione a:"
|
129 |
-
|
130 |
-
#: ../../plugins/clean-and-simple-contact-form-by-meg-nicholas/class.
|
131 |
-
#: cscf_settings.php:52
|
132 |
-
msgid "Clean and Simple Contact Form!"
|
133 |
-
msgstr "Clean and Simple Contact Form!"
|
134 |
-
|
135 |
-
#: ../../plugins/clean-and-simple-contact-form-by-meg-nicholas/class.
|
136 |
-
#: cscf_settings.php:72
|
137 |
-
msgid "You are using version"
|
138 |
-
msgstr "Versione in uso"
|
139 |
-
|
140 |
-
#: ../../plugins/clean-and-simple-contact-form-by-meg-nicholas/class.
|
141 |
-
#: cscf_settings.php:74
|
142 |
-
msgid "If you find this plugin useful please consider"
|
143 |
-
msgstr "Se trovi utile questo plugin per favore"
|
144 |
-
|
145 |
-
#: ../../plugins/clean-and-simple-contact-form-by-meg-nicholas/class.
|
146 |
-
#: cscf_settings.php:77
|
147 |
-
msgid "leaving a review"
|
148 |
-
msgstr "lascia una recensione"
|
149 |
-
|
150 |
-
#: ../../plugins/clean-and-simple-contact-form-by-meg-nicholas/class.
|
151 |
-
#: cscf_settings.php:79
|
152 |
-
msgid "Thank you!"
|
153 |
-
msgstr "Grazie!"
|
154 |
-
|
155 |
-
#: ../../plugins/clean-and-simple-contact-form-by-meg-nicholas/class.
|
156 |
-
#: cscf_settings.php:84
|
157 |
-
msgid ""
|
158 |
-
"NOTICE: You have JetPack's Contact Form enabled please deactivate it or use the "
|
159 |
-
"shortcode [cscf-contact-form] instead."
|
160 |
-
msgstr ""
|
161 |
-
"ATTENZIONE: Hai il modulo di contatto di JetPack abilitato, per favore "
|
162 |
-
"disabilitalo o utilizza lo shortcode [cscf-contact-form] al suo posto."
|
163 |
-
|
164 |
-
#: ../../plugins/clean-and-simple-contact-form-by-meg-nicholas/class.
|
165 |
-
#: cscf_settings.php:86
|
166 |
-
msgid "Read More"
|
167 |
-
msgstr "Leggi di piú"
|
168 |
-
|
169 |
-
#: ../../plugins/clean-and-simple-contact-form-by-meg-nicholas/class.
|
170 |
-
#: cscf_settings.php:90
|
171 |
-
msgid "Please Note: To add the contact form to your page please add the text"
|
172 |
-
msgstr "NOTA: Per aggiungere questo modulo di contatto ad una pagina usa il testo"
|
173 |
-
|
174 |
-
#: ../../plugins/clean-and-simple-contact-form-by-meg-nicholas/class.
|
175 |
-
#: cscf_settings.php:91
|
176 |
-
msgid "to your post or page."
|
177 |
-
msgstr "sul tuo post o sulla tua pagina."
|
178 |
-
|
179 |
-
#: ../../plugins/clean-and-simple-contact-form-by-meg-nicholas/class.
|
180 |
-
#: cscf_settings.php:111
|
181 |
-
msgid "ReCAPTCHA Settings"
|
182 |
-
msgstr "Impostazioni ReCAPTCHA"
|
183 |
-
|
184 |
-
#: ../../plugins/clean-and-simple-contact-form-by-meg-nicholas/class.
|
185 |
-
#: cscf_settings.php:119
|
186 |
-
msgid "Use reCAPTCHA :"
|
187 |
-
msgstr "Usa ReCAPTCHA:"
|
188 |
-
|
189 |
-
#: ../../plugins/clean-and-simple-contact-form-by-meg-nicholas/class.
|
190 |
-
#: cscf_settings.php:125
|
191 |
-
msgid "reCAPTCHA Theme :"
|
192 |
-
msgstr "Tema reCAPTCHA:"
|
193 |
-
|
194 |
-
#: ../../plugins/clean-and-simple-contact-form-by-meg-nicholas/class.
|
195 |
-
#: cscf_settings.php:131
|
196 |
-
msgid "reCAPTCHA Public Key :"
|
197 |
-
msgstr "Chiave Pubblica reCAPTCHA:"
|
198 |
-
|
199 |
-
#: ../../plugins/clean-and-simple-contact-form-by-meg-nicholas/class.
|
200 |
-
#: cscf_settings.php:137
|
201 |
-
msgid "reCAPTCHA Private Key :"
|
202 |
-
msgstr "Chiave Privata reCAPTCHA:"
|
203 |
-
|
204 |
-
#: ../../plugins/clean-and-simple-contact-form-by-meg-nicholas/class.
|
205 |
-
#: cscf_settings.php:143
|
206 |
-
msgid "Message Settings"
|
207 |
-
msgstr "Impostazioni messaggio"
|
208 |
-
|
209 |
-
#: ../../plugins/clean-and-simple-contact-form-by-meg-nicholas/class.
|
210 |
-
#: cscf_settings.php:147
|
211 |
-
msgid "Recipient Emails :"
|
212 |
-
msgstr "Contenitore email:"
|
213 |
-
|
214 |
-
#: ../../plugins/clean-and-simple-contact-form-by-meg-nicholas/class.
|
215 |
-
#: cscf_settings.php:153
|
216 |
-
msgid "Confirm Email Address :"
|
217 |
-
msgstr "Conferma indirizzo email:"
|
218 |
-
|
219 |
-
#: ../../plugins/clean-and-simple-contact-form-by-meg-nicholas/class.
|
220 |
-
#: cscf_settings.php:159
|
221 |
-
msgid "*New*"
|
222 |
-
msgstr "*Novità*"
|
223 |
-
|
224 |
-
#: ../../plugins/clean-and-simple-contact-form-by-meg-nicholas/class.
|
225 |
-
#: cscf_settings.php:159
|
226 |
-
msgid "Allow users to email themselves a copy :"
|
227 |
-
msgstr "Permetti agli utenti di inviarsi una copia:"
|
228 |
-
|
229 |
-
#: ../../plugins/clean-and-simple-contact-form-by-meg-nicholas/class.
|
230 |
-
#: cscf_settings.php:165
|
231 |
-
msgid "Override 'From' Address :"
|
232 |
-
msgstr "Sovrascrivi indirizzo 'From':"
|
233 |
-
|
234 |
-
#: ../../plugins/clean-and-simple-contact-form-by-meg-nicholas/class.
|
235 |
-
#: cscf_settings.php:171
|
236 |
-
msgid "'From' Email Address :"
|
237 |
-
msgstr "Indirizzo email 'From':"
|
238 |
-
|
239 |
-
#: ../../plugins/clean-and-simple-contact-form-by-meg-nicholas/class.
|
240 |
-
#: cscf_settings.php:177
|
241 |
-
msgid "Email Subject :"
|
242 |
-
msgstr "Oggetto dell'email:"
|
243 |
-
|
244 |
-
#: ../../plugins/clean-and-simple-contact-form-by-meg-nicholas/class.
|
245 |
-
#: cscf_settings.php:183
|
246 |
-
msgid "Message :"
|
247 |
-
msgstr "Messaggio:"
|
248 |
-
|
249 |
-
#: ../../plugins/clean-and-simple-contact-form-by-meg-nicholas/class.
|
250 |
-
#: cscf_settings.php:189
|
251 |
-
msgid "Message Sent Heading :"
|
252 |
-
msgstr "Intestazione messaggio inviato:"
|
253 |
-
|
254 |
-
#: ../../plugins/clean-and-simple-contact-form-by-meg-nicholas/class.
|
255 |
-
#: cscf_settings.php:195
|
256 |
-
msgid "Message Sent Content :"
|
257 |
-
msgstr "Contenuto messaggio inviato:"
|
258 |
-
|
259 |
-
#: ../../plugins/clean-and-simple-contact-form-by-meg-nicholas/class.
|
260 |
-
#: cscf_settings.php:201
|
261 |
-
msgid "Styling and Validation"
|
262 |
-
msgstr "Stili e Validazione"
|
263 |
-
|
264 |
-
#: ../../plugins/clean-and-simple-contact-form-by-meg-nicholas/class.
|
265 |
-
#: cscf_settings.php:205
|
266 |
-
msgid ""
|
267 |
-
"Use the plugin default stylesheet (un-tick to use your theme style sheet "
|
268 |
-
"instead) :"
|
269 |
-
msgstr ""
|
270 |
-
"Usa lo stile di default del plugin (deselezionare per usare lo stile del tema "
|
271 |
-
"principale):"
|
272 |
-
|
273 |
-
#: ../../plugins/clean-and-simple-contact-form-by-meg-nicholas/class.
|
274 |
-
#: cscf_settings.php:211
|
275 |
-
msgid "Use client side validation (AJAX) :"
|
276 |
-
msgstr "Usa validazione lato client (AJAX):"
|
277 |
-
|
278 |
-
#: ../../plugins/clean-and-simple-contact-form-by-meg-nicholas/class.
|
279 |
-
#: cscf_settings.php:283
|
280 |
-
msgid "Enter your reCAPTCHA settings below :"
|
281 |
-
msgstr "Inserisci le impostazioni reCAPTCHA di seguito:"
|
282 |
-
|
283 |
-
#: ../../plugins/clean-and-simple-contact-form-by-meg-nicholas/class.
|
284 |
-
#: cscf_settings.php:284
|
285 |
-
msgid "To use reCAPTCHA you must get an API key from"
|
286 |
-
msgstr "Per usare reCAPTCHA dovi ottenere una chiave API tramite"
|
287 |
-
|
288 |
-
#: ../../plugins/clean-and-simple-contact-form-by-meg-nicholas/class.
|
289 |
-
#: cscf_settings.php:290
|
290 |
-
msgid "Enter your message settings below :"
|
291 |
-
msgstr "Inserisci le impostazioni dei messaggi qui sotto:"
|
292 |
-
|
293 |
-
#: ../../plugins/clean-and-simple-contact-form-by-meg-nicholas/class.
|
294 |
-
#: cscf_settings.php:392
|
295 |
-
msgid "Red"
|
296 |
-
msgstr "Rosso"
|
297 |
-
|
298 |
-
#: ../../plugins/clean-and-simple-contact-form-by-meg-nicholas/class.
|
299 |
-
#: cscf_settings.php:394
|
300 |
-
msgid "White"
|
301 |
-
msgstr "Bianco"
|
302 |
-
|
303 |
-
#: ../../plugins/clean-and-simple-contact-form-by-meg-nicholas/class.
|
304 |
-
#: cscf_settings.php:396
|
305 |
-
msgid "Blackglass"
|
306 |
-
msgstr "Vetro nero"
|
307 |
-
|
308 |
-
#: ../../plugins/clean-and-simple-contact-form-by-meg-nicholas/class.
|
309 |
-
#: cscf_settings.php:398
|
310 |
-
msgid "Clean"
|
311 |
-
msgstr "Pulito"
|
312 |
-
|
313 |
-
#: ../../plugins/clean-and-simple-contact-form-by-meg-nicholas/views/message-not-
|
314 |
-
#: sent.view.php:1
|
315 |
-
msgid "Sorry, there has been a problem and your message was not sent."
|
316 |
-
msgstr ""
|
317 |
-
"Spiacenti, c'è stato un problema e il vostro messaggio non è stato inviato."
|
318 |
-
|
319 |
-
#: ../../plugins/clean-and-simple-contact-form-by-meg-nicholas/views/contact-form.
|
320 |
-
#: view.php:22
|
321 |
-
msgid "Name:"
|
322 |
-
msgstr "Nome:"
|
323 |
-
|
324 |
-
#: ../../plugins/clean-and-simple-contact-form-by-meg-nicholas/views/contact-form.
|
325 |
-
#: view.php:32
|
326 |
-
msgid "Your Name"
|
327 |
-
msgstr "Il vostro nome"
|
328 |
-
|
329 |
-
#: ../../plugins/clean-and-simple-contact-form-by-meg-nicholas/views/contact-form.
|
330 |
-
#: view.php:43
|
331 |
-
msgid "Email Address:"
|
332 |
-
msgstr "Indirizzo email:"
|
333 |
-
|
334 |
-
#: ../../plugins/clean-and-simple-contact-form-by-meg-nicholas/views/contact-form.
|
335 |
-
#: view.php:55
|
336 |
-
msgid "Your Email Address"
|
337 |
-
msgstr "Il vostro indirizzo email"
|
338 |
-
|
339 |
-
#: ../../plugins/clean-and-simple-contact-form-by-meg-nicholas/views/contact-form.
|
340 |
-
#: view.php:66
|
341 |
-
msgid "Confirm Email Address:"
|
342 |
-
msgstr "Conferma indirizzo email:"
|
343 |
-
|
344 |
-
#: ../../plugins/clean-and-simple-contact-form-by-meg-nicholas/views/contact-form.
|
345 |
-
#: view.php:75 ../../plugins/clean-and-simple-contact-form-by-meg-
|
346 |
-
#: nicholas/views/contact-form.view.php:77
|
347 |
-
msgid "Please enter the same email address again."
|
348 |
-
msgstr "Si prega di reinserire nuovamente l'indirizzo email."
|
349 |
-
|
350 |
-
#: ../../plugins/clean-and-simple-contact-form-by-meg-nicholas/views/contact-form.
|
351 |
-
#: view.php:80
|
352 |
-
msgid "Confirm Your Email Address"
|
353 |
-
msgstr "Confermate il vostro indirizzo email"
|
354 |
-
|
355 |
-
#: ../../plugins/clean-and-simple-contact-form-by-meg-nicholas/views/contact-form.
|
356 |
-
#: view.php:92
|
357 |
-
msgid "Message:"
|
358 |
-
msgstr "Messaggio:"
|
359 |
-
|
360 |
-
#: ../../plugins/clean-and-simple-contact-form-by-meg-nicholas/views/contact-form.
|
361 |
-
#: view.php:99
|
362 |
-
msgid "Please give a message."
|
363 |
-
msgstr "Inserire un messaggio."
|
364 |
-
|
365 |
-
#: ../../plugins/clean-and-simple-contact-form-by-meg-nicholas/views/contact-form.
|
366 |
-
#: view.php:101
|
367 |
-
msgid "Your Message"
|
368 |
-
msgstr "Il vostro messaggio"
|
369 |
-
|
370 |
-
#: ../../plugins/clean-and-simple-contact-form-by-meg-nicholas/views/contact-form.
|
371 |
-
#: view.php:111
|
372 |
-
msgid "Send me a copy:"
|
373 |
-
msgstr "Inviami una copia del messaggio "
|
374 |
-
|
375 |
-
#: ../../plugins/clean-and-simple-contact-form-by-meg-nicholas/views/contact-form.
|
376 |
-
#: view.php:143
|
377 |
-
msgid "Send Message"
|
378 |
-
msgstr "Invia messaggio"
|
1 |
+
msgid ""
|
2 |
+
msgstr ""
|
3 |
+
"Project-Id-Version: Clean and Simple Contact Form\n"
|
4 |
+
"Report-Msgid-Bugs-To: \n"
|
5 |
+
"POT-Creation-Date: Sun Apr 19 2015 03:10:40 GMT+0200 (ora solare Europa "
|
6 |
+
"occidentale)\n"
|
7 |
+
"PO-Revision-Date: 2015-04-22 11:06+0100\n"
|
8 |
+
"Last-Translator: Elfo <relazionigay@altervista.org>\n"
|
9 |
+
"Language-Team: \n"
|
10 |
+
"Language: it\n"
|
11 |
+
"Plural-Forms: nplurals=2; plural=n != 1;\n"
|
12 |
+
"MIME-Version: 1.0\n"
|
13 |
+
"Content-Type: text/plain; charset=UTF-8\n"
|
14 |
+
"Content-Transfer-Encoding: 8bit\n"
|
15 |
+
"X-Poedit-SourceCharset: UTF-8\n"
|
16 |
+
"X-Poedit-Basepath: .\n"
|
17 |
+
"X-Poedit-KeywordsList: _:1;gettext:1;dgettext:2;ngettext:1,2;dngettext:2,3;__:1;"
|
18 |
+
"_e:1;_c:1;_n:1,2;_n_noop:1,2;_nc:1,2;__ngettext:1,2;__ngettext_noop:1,2;_x:1,2c;"
|
19 |
+
"_ex:1,2c;_nx:1,2,4c;_nx_noop:1,2,3c;_n_js:1,2;_nx_js:1,2,3c;esc_attr__:1;"
|
20 |
+
"esc_html__:1;esc_attr_e:1;esc_html_e:1;esc_attr_x:1,2c;esc_html_x:1,2c;"
|
21 |
+
"comments_number_link:2,3;t:1;st:1;trans:1;transChoice:1,2\n"
|
22 |
+
"X-Loco-Target-Locale: it_IT\n"
|
23 |
+
"X-Generator: Poedit 1.7.6\n"
|
24 |
+
"X-Poedit-SearchPath-0: ../../plugins/clean-and-simple-contact-form-by-meg-"
|
25 |
+
"nicholas\n"
|
26 |
+
|
27 |
+
#: ../../plugins/clean-and-simple-contact-form-by-meg-nicholas/class.
|
28 |
+
#: cscf_pluginsettings.php:44
|
29 |
+
msgid "Message Sent"
|
30 |
+
msgstr "Messaggio inviato"
|
31 |
+
|
32 |
+
#: ../../plugins/clean-and-simple-contact-form-by-meg-nicholas/class.
|
33 |
+
#: cscf_pluginsettings.php:52
|
34 |
+
msgid "Thank you for your message, we will be in touch very shortly."
|
35 |
+
msgstr "Grazie del Messaggio, vi contatteremo il più presto possibile."
|
36 |
+
|
37 |
+
#: ../../plugins/clean-and-simple-contact-form-by-meg-nicholas/class.
|
38 |
+
#: cscf_pluginsettings.php:60
|
39 |
+
msgid ""
|
40 |
+
"Please enter your contact details and a short message below and I will try to "
|
41 |
+
"answer your query as soon as possible."
|
42 |
+
msgstr ""
|
43 |
+
"Per favore inserisci di seguito i dati di contatto e un breve messaggio e "
|
44 |
+
"proveremo a risponderti al più presto."
|
45 |
+
|
46 |
+
#: ../../plugins/clean-and-simple-contact-form-by-meg-nicholas/class.
|
47 |
+
#: cscf_pluginsettings.php:94
|
48 |
+
msgid " - Web Enquiry"
|
49 |
+
msgstr "- Richiesta Web"
|
50 |
+
|
51 |
+
#: ../../plugins/clean-and-simple-contact-form-by-meg-nicholas/class.cscf.php:151
|
52 |
+
msgid "Settings"
|
53 |
+
msgstr "Impostazioni"
|
54 |
+
|
55 |
+
#: ../../plugins/clean-and-simple-contact-form-by-meg-nicholas/class.cscf_contact.
|
56 |
+
#: php:66
|
57 |
+
msgid "Sorry the email addresses do not match."
|
58 |
+
msgstr "Spiacente gli indirizzi email non corrispondono."
|
59 |
+
|
60 |
+
#: ../../plugins/clean-and-simple-contact-form-by-meg-nicholas/class.cscf_contact.
|
61 |
+
#: php:71 ../../plugins/clean-and-simple-contact-form-by-meg-
|
62 |
+
#: nicholas/views/contact-form.view.php:51
|
63 |
+
msgid "Please give your email address."
|
64 |
+
msgstr "Si prega di fornire il vostro indirizzo email."
|
65 |
+
|
66 |
+
#: ../../plugins/clean-and-simple-contact-form-by-meg-nicholas/class.cscf_contact.
|
67 |
+
#: php:75
|
68 |
+
msgid "Please confirm your email address."
|
69 |
+
msgstr "Si prega di confermare il vostro indirizzo email."
|
70 |
+
|
71 |
+
#: ../../plugins/clean-and-simple-contact-form-by-meg-nicholas/class.cscf_contact.
|
72 |
+
#: php:80 ../../plugins/clean-and-simple-contact-form-by-meg-
|
73 |
+
#: nicholas/views/contact-form.view.php:29
|
74 |
+
msgid "Please give your name."
|
75 |
+
msgstr "Il vostro nome."
|
76 |
+
|
77 |
+
#: ../../plugins/clean-and-simple-contact-form-by-meg-nicholas/class.cscf_contact.
|
78 |
+
#: php:84
|
79 |
+
msgid "Please enter a message."
|
80 |
+
msgstr "Inserire un messaggio."
|
81 |
+
|
82 |
+
#: ../../plugins/clean-and-simple-contact-form-by-meg-nicholas/class.cscf_contact.
|
83 |
+
#: php:88 ../../plugins/clean-and-simple-contact-form-by-meg-
|
84 |
+
#: nicholas/views/contact-form.view.php:52
|
85 |
+
#: ../../plugins/clean-and-simple-contact-
|
86 |
+
#: form-by-meg-nicholas/views/contact-form.view.php:76
|
87 |
+
msgid "Please enter a valid email address."
|
88 |
+
msgstr "Si prega di inserire un indirizzo email valido."
|
89 |
+
|
90 |
+
#: ../../plugins/clean-and-simple-contact-form-by-meg-nicholas/class.cscf_contact.
|
91 |
+
#: php:95
|
92 |
+
msgid "Sorry the code wasn't entered correctly please try again."
|
93 |
+
msgstr ""
|
94 |
+
"Spiacenti ma il codice non è stato inserito correttamente si prega di riprovare."
|
95 |
+
|
96 |
+
#: ../../plugins/clean-and-simple-contact-form-by-meg-nicholas/class.cscf_contact.
|
97 |
+
#: php:157
|
98 |
+
msgid "Here is a copy of your message :"
|
99 |
+
msgstr "Qui c'è una copia del tuo messaggio:"
|
100 |
+
|
101 |
+
#: ../../plugins/clean-and-simple-contact-form-by-meg-nicholas/class.
|
102 |
+
#: cscf_settings.php:30
|
103 |
+
msgid "Contact Form Settings"
|
104 |
+
msgstr "Impostazioni Contact Form"
|
105 |
+
|
106 |
+
#: ../../plugins/clean-and-simple-contact-form-by-meg-nicholas/class.
|
107 |
+
#: cscf_settings.php:30
|
108 |
+
msgid "Contact Form"
|
109 |
+
msgstr "Contact Form"
|
110 |
+
|
111 |
+
#: ../../plugins/clean-and-simple-contact-form-by-meg-nicholas/class.
|
112 |
+
#: cscf_settings.php:41
|
113 |
+
msgid "Clean and Simple Contact Form Settings"
|
114 |
+
msgstr "Impostazioni Clean and Simple Contact Form"
|
115 |
+
|
116 |
+
#: ../../plugins/clean-and-simple-contact-form-by-meg-nicholas/class.
|
117 |
+
#: cscf_settings.php:47
|
118 |
+
msgid "Donate $10, $20 or $50!"
|
119 |
+
msgstr "Dona $10, $20 o $50!"
|
120 |
+
|
121 |
+
#: ../../plugins/clean-and-simple-contact-form-by-meg-nicholas/class.
|
122 |
+
#: cscf_settings.php:50
|
123 |
+
msgid ""
|
124 |
+
"If you like this plugin, please donate to support development and maintenance "
|
125 |
+
"of:"
|
126 |
+
msgstr ""
|
127 |
+
"Se ti piace questo plugin, per favore supporta lo sviluppo ed il mantenimento "
|
128 |
+
"con una donazione a:"
|
129 |
+
|
130 |
+
#: ../../plugins/clean-and-simple-contact-form-by-meg-nicholas/class.
|
131 |
+
#: cscf_settings.php:52
|
132 |
+
msgid "Clean and Simple Contact Form!"
|
133 |
+
msgstr "Clean and Simple Contact Form!"
|
134 |
+
|
135 |
+
#: ../../plugins/clean-and-simple-contact-form-by-meg-nicholas/class.
|
136 |
+
#: cscf_settings.php:72
|
137 |
+
msgid "You are using version"
|
138 |
+
msgstr "Versione in uso"
|
139 |
+
|
140 |
+
#: ../../plugins/clean-and-simple-contact-form-by-meg-nicholas/class.
|
141 |
+
#: cscf_settings.php:74
|
142 |
+
msgid "If you find this plugin useful please consider"
|
143 |
+
msgstr "Se trovi utile questo plugin per favore"
|
144 |
+
|
145 |
+
#: ../../plugins/clean-and-simple-contact-form-by-meg-nicholas/class.
|
146 |
+
#: cscf_settings.php:77
|
147 |
+
msgid "leaving a review"
|
148 |
+
msgstr "lascia una recensione"
|
149 |
+
|
150 |
+
#: ../../plugins/clean-and-simple-contact-form-by-meg-nicholas/class.
|
151 |
+
#: cscf_settings.php:79
|
152 |
+
msgid "Thank you!"
|
153 |
+
msgstr "Grazie!"
|
154 |
+
|
155 |
+
#: ../../plugins/clean-and-simple-contact-form-by-meg-nicholas/class.
|
156 |
+
#: cscf_settings.php:84
|
157 |
+
msgid ""
|
158 |
+
"NOTICE: You have JetPack's Contact Form enabled please deactivate it or use the "
|
159 |
+
"shortcode [cscf-contact-form] instead."
|
160 |
+
msgstr ""
|
161 |
+
"ATTENZIONE: Hai il modulo di contatto di JetPack abilitato, per favore "
|
162 |
+
"disabilitalo o utilizza lo shortcode [cscf-contact-form] al suo posto."
|
163 |
+
|
164 |
+
#: ../../plugins/clean-and-simple-contact-form-by-meg-nicholas/class.
|
165 |
+
#: cscf_settings.php:86
|
166 |
+
msgid "Read More"
|
167 |
+
msgstr "Leggi di piú"
|
168 |
+
|
169 |
+
#: ../../plugins/clean-and-simple-contact-form-by-meg-nicholas/class.
|
170 |
+
#: cscf_settings.php:90
|
171 |
+
msgid "Please Note: To add the contact form to your page please add the text"
|
172 |
+
msgstr "NOTA: Per aggiungere questo modulo di contatto ad una pagina usa il testo"
|
173 |
+
|
174 |
+
#: ../../plugins/clean-and-simple-contact-form-by-meg-nicholas/class.
|
175 |
+
#: cscf_settings.php:91
|
176 |
+
msgid "to your post or page."
|
177 |
+
msgstr "sul tuo post o sulla tua pagina."
|
178 |
+
|
179 |
+
#: ../../plugins/clean-and-simple-contact-form-by-meg-nicholas/class.
|
180 |
+
#: cscf_settings.php:111
|
181 |
+
msgid "ReCAPTCHA Settings"
|
182 |
+
msgstr "Impostazioni ReCAPTCHA"
|
183 |
+
|
184 |
+
#: ../../plugins/clean-and-simple-contact-form-by-meg-nicholas/class.
|
185 |
+
#: cscf_settings.php:119
|
186 |
+
msgid "Use reCAPTCHA :"
|
187 |
+
msgstr "Usa ReCAPTCHA:"
|
188 |
+
|
189 |
+
#: ../../plugins/clean-and-simple-contact-form-by-meg-nicholas/class.
|
190 |
+
#: cscf_settings.php:125
|
191 |
+
msgid "reCAPTCHA Theme :"
|
192 |
+
msgstr "Tema reCAPTCHA:"
|
193 |
+
|
194 |
+
#: ../../plugins/clean-and-simple-contact-form-by-meg-nicholas/class.
|
195 |
+
#: cscf_settings.php:131
|
196 |
+
msgid "reCAPTCHA Public Key :"
|
197 |
+
msgstr "Chiave Pubblica reCAPTCHA:"
|
198 |
+
|
199 |
+
#: ../../plugins/clean-and-simple-contact-form-by-meg-nicholas/class.
|
200 |
+
#: cscf_settings.php:137
|
201 |
+
msgid "reCAPTCHA Private Key :"
|
202 |
+
msgstr "Chiave Privata reCAPTCHA:"
|
203 |
+
|
204 |
+
#: ../../plugins/clean-and-simple-contact-form-by-meg-nicholas/class.
|
205 |
+
#: cscf_settings.php:143
|
206 |
+
msgid "Message Settings"
|
207 |
+
msgstr "Impostazioni messaggio"
|
208 |
+
|
209 |
+
#: ../../plugins/clean-and-simple-contact-form-by-meg-nicholas/class.
|
210 |
+
#: cscf_settings.php:147
|
211 |
+
msgid "Recipient Emails :"
|
212 |
+
msgstr "Contenitore email:"
|
213 |
+
|
214 |
+
#: ../../plugins/clean-and-simple-contact-form-by-meg-nicholas/class.
|
215 |
+
#: cscf_settings.php:153
|
216 |
+
msgid "Confirm Email Address :"
|
217 |
+
msgstr "Conferma indirizzo email:"
|
218 |
+
|
219 |
+
#: ../../plugins/clean-and-simple-contact-form-by-meg-nicholas/class.
|
220 |
+
#: cscf_settings.php:159
|
221 |
+
msgid "*New*"
|
222 |
+
msgstr "*Novità*"
|
223 |
+
|
224 |
+
#: ../../plugins/clean-and-simple-contact-form-by-meg-nicholas/class.
|
225 |
+
#: cscf_settings.php:159
|
226 |
+
msgid "Allow users to email themselves a copy :"
|
227 |
+
msgstr "Permetti agli utenti di inviarsi una copia:"
|
228 |
+
|
229 |
+
#: ../../plugins/clean-and-simple-contact-form-by-meg-nicholas/class.
|
230 |
+
#: cscf_settings.php:165
|
231 |
+
msgid "Override 'From' Address :"
|
232 |
+
msgstr "Sovrascrivi indirizzo 'From':"
|
233 |
+
|
234 |
+
#: ../../plugins/clean-and-simple-contact-form-by-meg-nicholas/class.
|
235 |
+
#: cscf_settings.php:171
|
236 |
+
msgid "'From' Email Address :"
|
237 |
+
msgstr "Indirizzo email 'From':"
|
238 |
+
|
239 |
+
#: ../../plugins/clean-and-simple-contact-form-by-meg-nicholas/class.
|
240 |
+
#: cscf_settings.php:177
|
241 |
+
msgid "Email Subject :"
|
242 |
+
msgstr "Oggetto dell'email:"
|
243 |
+
|
244 |
+
#: ../../plugins/clean-and-simple-contact-form-by-meg-nicholas/class.
|
245 |
+
#: cscf_settings.php:183
|
246 |
+
msgid "Message :"
|
247 |
+
msgstr "Messaggio:"
|
248 |
+
|
249 |
+
#: ../../plugins/clean-and-simple-contact-form-by-meg-nicholas/class.
|
250 |
+
#: cscf_settings.php:189
|
251 |
+
msgid "Message Sent Heading :"
|
252 |
+
msgstr "Intestazione messaggio inviato:"
|
253 |
+
|
254 |
+
#: ../../plugins/clean-and-simple-contact-form-by-meg-nicholas/class.
|
255 |
+
#: cscf_settings.php:195
|
256 |
+
msgid "Message Sent Content :"
|
257 |
+
msgstr "Contenuto messaggio inviato:"
|
258 |
+
|
259 |
+
#: ../../plugins/clean-and-simple-contact-form-by-meg-nicholas/class.
|
260 |
+
#: cscf_settings.php:201
|
261 |
+
msgid "Styling and Validation"
|
262 |
+
msgstr "Stili e Validazione"
|
263 |
+
|
264 |
+
#: ../../plugins/clean-and-simple-contact-form-by-meg-nicholas/class.
|
265 |
+
#: cscf_settings.php:205
|
266 |
+
msgid ""
|
267 |
+
"Use the plugin default stylesheet (un-tick to use your theme style sheet "
|
268 |
+
"instead) :"
|
269 |
+
msgstr ""
|
270 |
+
"Usa lo stile di default del plugin (deselezionare per usare lo stile del tema "
|
271 |
+
"principale):"
|
272 |
+
|
273 |
+
#: ../../plugins/clean-and-simple-contact-form-by-meg-nicholas/class.
|
274 |
+
#: cscf_settings.php:211
|
275 |
+
msgid "Use client side validation (AJAX) :"
|
276 |
+
msgstr "Usa validazione lato client (AJAX):"
|
277 |
+
|
278 |
+
#: ../../plugins/clean-and-simple-contact-form-by-meg-nicholas/class.
|
279 |
+
#: cscf_settings.php:283
|
280 |
+
msgid "Enter your reCAPTCHA settings below :"
|
281 |
+
msgstr "Inserisci le impostazioni reCAPTCHA di seguito:"
|
282 |
+
|
283 |
+
#: ../../plugins/clean-and-simple-contact-form-by-meg-nicholas/class.
|
284 |
+
#: cscf_settings.php:284
|
285 |
+
msgid "To use reCAPTCHA you must get an API key from"
|
286 |
+
msgstr "Per usare reCAPTCHA dovi ottenere una chiave API tramite"
|
287 |
+
|
288 |
+
#: ../../plugins/clean-and-simple-contact-form-by-meg-nicholas/class.
|
289 |
+
#: cscf_settings.php:290
|
290 |
+
msgid "Enter your message settings below :"
|
291 |
+
msgstr "Inserisci le impostazioni dei messaggi qui sotto:"
|
292 |
+
|
293 |
+
#: ../../plugins/clean-and-simple-contact-form-by-meg-nicholas/class.
|
294 |
+
#: cscf_settings.php:392
|
295 |
+
msgid "Red"
|
296 |
+
msgstr "Rosso"
|
297 |
+
|
298 |
+
#: ../../plugins/clean-and-simple-contact-form-by-meg-nicholas/class.
|
299 |
+
#: cscf_settings.php:394
|
300 |
+
msgid "White"
|
301 |
+
msgstr "Bianco"
|
302 |
+
|
303 |
+
#: ../../plugins/clean-and-simple-contact-form-by-meg-nicholas/class.
|
304 |
+
#: cscf_settings.php:396
|
305 |
+
msgid "Blackglass"
|
306 |
+
msgstr "Vetro nero"
|
307 |
+
|
308 |
+
#: ../../plugins/clean-and-simple-contact-form-by-meg-nicholas/class.
|
309 |
+
#: cscf_settings.php:398
|
310 |
+
msgid "Clean"
|
311 |
+
msgstr "Pulito"
|
312 |
+
|
313 |
+
#: ../../plugins/clean-and-simple-contact-form-by-meg-nicholas/views/message-not-
|
314 |
+
#: sent.view.php:1
|
315 |
+
msgid "Sorry, there has been a problem and your message was not sent."
|
316 |
+
msgstr ""
|
317 |
+
"Spiacenti, c'è stato un problema e il vostro messaggio non è stato inviato."
|
318 |
+
|
319 |
+
#: ../../plugins/clean-and-simple-contact-form-by-meg-nicholas/views/contact-form.
|
320 |
+
#: view.php:22
|
321 |
+
msgid "Name:"
|
322 |
+
msgstr "Nome:"
|
323 |
+
|
324 |
+
#: ../../plugins/clean-and-simple-contact-form-by-meg-nicholas/views/contact-form.
|
325 |
+
#: view.php:32
|
326 |
+
msgid "Your Name"
|
327 |
+
msgstr "Il vostro nome"
|
328 |
+
|
329 |
+
#: ../../plugins/clean-and-simple-contact-form-by-meg-nicholas/views/contact-form.
|
330 |
+
#: view.php:43
|
331 |
+
msgid "Email Address:"
|
332 |
+
msgstr "Indirizzo email:"
|
333 |
+
|
334 |
+
#: ../../plugins/clean-and-simple-contact-form-by-meg-nicholas/views/contact-form.
|
335 |
+
#: view.php:55
|
336 |
+
msgid "Your Email Address"
|
337 |
+
msgstr "Il vostro indirizzo email"
|
338 |
+
|
339 |
+
#: ../../plugins/clean-and-simple-contact-form-by-meg-nicholas/views/contact-form.
|
340 |
+
#: view.php:66
|
341 |
+
msgid "Confirm Email Address:"
|
342 |
+
msgstr "Conferma indirizzo email:"
|
343 |
+
|
344 |
+
#: ../../plugins/clean-and-simple-contact-form-by-meg-nicholas/views/contact-form.
|
345 |
+
#: view.php:75 ../../plugins/clean-and-simple-contact-form-by-meg-
|
346 |
+
#: nicholas/views/contact-form.view.php:77
|
347 |
+
msgid "Please enter the same email address again."
|
348 |
+
msgstr "Si prega di reinserire nuovamente l'indirizzo email."
|
349 |
+
|
350 |
+
#: ../../plugins/clean-and-simple-contact-form-by-meg-nicholas/views/contact-form.
|
351 |
+
#: view.php:80
|
352 |
+
msgid "Confirm Your Email Address"
|
353 |
+
msgstr "Confermate il vostro indirizzo email"
|
354 |
+
|
355 |
+
#: ../../plugins/clean-and-simple-contact-form-by-meg-nicholas/views/contact-form.
|
356 |
+
#: view.php:92
|
357 |
+
msgid "Message:"
|
358 |
+
msgstr "Messaggio:"
|
359 |
+
|
360 |
+
#: ../../plugins/clean-and-simple-contact-form-by-meg-nicholas/views/contact-form.
|
361 |
+
#: view.php:99
|
362 |
+
msgid "Please give a message."
|
363 |
+
msgstr "Inserire un messaggio."
|
364 |
+
|
365 |
+
#: ../../plugins/clean-and-simple-contact-form-by-meg-nicholas/views/contact-form.
|
366 |
+
#: view.php:101
|
367 |
+
msgid "Your Message"
|
368 |
+
msgstr "Il vostro messaggio"
|
369 |
+
|
370 |
+
#: ../../plugins/clean-and-simple-contact-form-by-meg-nicholas/views/contact-form.
|
371 |
+
#: view.php:111
|
372 |
+
msgid "Send me a copy:"
|
373 |
+
msgstr "Inviami una copia del messaggio "
|
374 |
+
|
375 |
+
#: ../../plugins/clean-and-simple-contact-form-by-meg-nicholas/views/contact-form.
|
376 |
+
#: view.php:143
|
377 |
+
msgid "Send Message"
|
378 |
+
msgstr "Invia messaggio"
|
languages/clean-and-simple-contact-form-by-meg-nicholas-nb_NO.po
CHANGED
@@ -1,262 +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 "Innstillinger"
|
20 |
-
|
21 |
-
#: class.cscf_contact.php:53
|
22 |
-
msgid "Sorry the email addresses do not match."
|
23 |
-
msgstr "Beklager, men epostadressene er ikke like."
|
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 inn din epostadresse."
|
29 |
-
|
30 |
-
#: class.cscf_contact.php:61
|
31 |
-
msgid "Please confirm your email address."
|
32 |
-
msgstr "Vennligst bekreft din epostadresse."
|
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 inn ditt navn."
|
38 |
-
|
39 |
-
#: class.cscf_contact.php:69
|
40 |
-
msgid "Please enter a message."
|
41 |
-
msgstr "Skriv inn beskjed."
|
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 inn en gyldig epostadresse."
|
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 feil. Prøv igen."
|
51 |
-
|
52 |
-
#: class.cscf_pluginsettings.php:40
|
53 |
-
msgid "Message Sent"
|
54 |
-
msgstr "Beskjeden er sendt"
|
55 |
-
|
56 |
-
#: class.cscf_pluginsettings.php:47
|
57 |
-
msgid "Thank you for your message, we will be in touch very shortly."
|
58 |
-
msgstr "Takk for din henvendelse. Vi tar snart kontakt."
|
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 |
-
"Fyll ut skjemaet med en kort beskjed, og vi tar snart kontakt."
|
66 |
-
|
67 |
-
#: class.cscf_pluginsettings.php:83
|
68 |
-
msgid " - Web Enquiry"
|
69 |
-
msgstr "Kontakt fra hjemmeside"
|
70 |
-
|
71 |
-
#: class.cscf_settings.php:41
|
72 |
-
msgid "Clean and Simple Contact Form Settings"
|
73 |
-
msgstr "Innstillinger for Clean and Simple Contact Form"
|
74 |
-
|
75 |
-
#: class.cscf_settings.php:43
|
76 |
-
msgid "You are using version"
|
77 |
-
msgstr "Du bruker versjon"
|
78 |
-
|
79 |
-
#: class.cscf_settings.php:44
|
80 |
-
msgid "If you find this plugin useful please consider"
|
81 |
-
msgstr "Hvis du synes dette plugin er nyttig, vurder å"
|
82 |
-
|
83 |
-
#: class.cscf_settings.php:47
|
84 |
-
msgid "leaving a review"
|
85 |
-
msgstr "gi en bedømmelse"
|
86 |
-
|
87 |
-
#: class.cscf_settings.php:49
|
88 |
-
msgid "Thank you!"
|
89 |
-
msgstr "På forhånd takk!"
|
90 |
-
|
91 |
-
#: class.cscf_settings.php:68
|
92 |
-
msgid "ReCAPTCHA Settings"
|
93 |
-
msgstr "Innstillinger for ReCAPTCHA:"
|
94 |
-
|
95 |
-
#: class.cscf_settings.php:76
|
96 |
-
msgid "Use reCAPTCHA :"
|
97 |
-
msgstr "Bruk 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 "Innstillinger for beskjed:"
|
114 |
-
|
115 |
-
#: class.cscf_settings.php:104
|
116 |
-
msgid "Recipient Email :"
|
117 |
-
msgstr "Din epostadresse:"
|
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 "Beskjed:"
|
126 |
-
|
127 |
-
#: class.cscf_settings.php:122
|
128 |
-
msgid "Message Sent Heading :"
|
129 |
-
msgstr "Overskrift for sendt beskjed:"
|
130 |
-
|
131 |
-
#: class.cscf_settings.php:128
|
132 |
-
msgid "Message Sent Content :"
|
133 |
-
msgstr "Innhold i sendt beskjed:"
|
134 |
-
|
135 |
-
#: class.cscf_settings.php:134
|
136 |
-
msgid "Styling and Validation"
|
137 |
-
msgstr "Utseende 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 |
-
"Bruk standardtemaet for dette plugin (fjern haken for å bruke ditt "
|
145 |
-
"standardtema):"
|
146 |
-
|
147 |
-
#: class.cscf_settings.php:144
|
148 |
-
msgid "Use client side validation (AJAX) :"
|
149 |
-
msgstr "Bruk AJAX validering:"
|
150 |
-
|
151 |
-
#: class.cscf_settings.php:216
|
152 |
-
msgid "Enter your reCAPTCHA settings below :"
|
153 |
-
msgstr "Definer dine reCAPTCHA innstillinger"
|
154 |
-
|
155 |
-
#: class.cscf_settings.php:217
|
156 |
-
msgid "To use reCAPTCHA you must get an API key from"
|
157 |
-
msgstr "For å bruke reCAPTCHA må du ha en API nøkkel fra"
|
158 |
-
|
159 |
-
#: class.cscf_settings.php:222
|
160 |
-
msgid "Enter your message settings below :"
|
161 |
-
msgstr "Definer dine innstillinger for beskjeder:"
|
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 "Hvit"
|
170 |
-
|
171 |
-
#: class.cscf_settings.php:276
|
172 |
-
msgid "Blackglass"
|
173 |
-
msgstr "Gjennomsiktig"
|
174 |
-
|
175 |
-
#: class.cscf_settings.php:277
|
176 |
-
msgid "Clean"
|
177 |
-
msgstr "Enkel"
|
178 |
-
|
179 |
-
#: views/contact-form-with-recaptcha.view.php:31
|
180 |
-
#: views/contact-form.view.php:12
|
181 |
-
msgid "Email Address:"
|
182 |
-
msgstr "Epostadresse:"
|
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 epostadresse"
|
188 |
-
|
189 |
-
#: views/contact-form-with-recaptcha.view.php:41
|
190 |
-
#: views/contact-form.view.php:22
|
191 |
-
msgid "Confirm Email Address:"
|
192 |
-
msgstr "Bekreft din epostadresse:"
|
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 "Vennligst skriv inn den samme epostadressen igjen."
|
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 "Bekreft din epostadresse"
|
203 |
-
|
204 |
-
#: views/contact-form-with-recaptcha.view.php:51
|
205 |
-
#: views/contact-form.view.php:32
|
206 |
-
msgid "Name:"
|
207 |
-
msgstr "Navn:"
|
208 |
-
|
209 |
-
#: views/contact-form-with-recaptcha.view.php:53
|
210 |
-
#: views/contact-form.view.php:34
|
211 |
-
msgid "Your Name"
|
212 |
-
msgstr "Ditt navn"
|
213 |
-
|
214 |
-
#: views/contact-form-with-recaptcha.view.php:61
|
215 |
-
#: views/contact-form.view.php:42
|
216 |
-
msgid "Message:"
|
217 |
-
msgstr "Beskjed:"
|
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 beskjed."
|
223 |
-
|
224 |
-
#: views/contact-form-with-recaptcha.view.php:63
|
225 |
-
#: views/contact-form.view.php:44
|
226 |
-
msgid "Your Message"
|
227 |
-
msgstr "Din beskjed"
|
228 |
-
|
229 |
-
#: views/contact-form-with-recaptcha.view.php:79
|
230 |
-
#: views/contact-form.view.php:51
|
231 |
-
msgid "Send Message"
|
232 |
-
msgstr "Send beskjed"
|
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 det har oppstått en feil og din beskjed ble 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 |
-
"Et stilig og enkelt kontaktskjema med Google reCAPTCHA og Twitter Bootstrap "
|
254 |
-
"stiler."
|
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"
|
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 "Innstillinger"
|
20 |
+
|
21 |
+
#: class.cscf_contact.php:53
|
22 |
+
msgid "Sorry the email addresses do not match."
|
23 |
+
msgstr "Beklager, men epostadressene er ikke like."
|
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 inn din epostadresse."
|
29 |
+
|
30 |
+
#: class.cscf_contact.php:61
|
31 |
+
msgid "Please confirm your email address."
|
32 |
+
msgstr "Vennligst bekreft din epostadresse."
|
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 inn ditt navn."
|
38 |
+
|
39 |
+
#: class.cscf_contact.php:69
|
40 |
+
msgid "Please enter a message."
|
41 |
+
msgstr "Skriv inn beskjed."
|
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 inn en gyldig epostadresse."
|
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 feil. Prøv igen."
|
51 |
+
|
52 |
+
#: class.cscf_pluginsettings.php:40
|
53 |
+
msgid "Message Sent"
|
54 |
+
msgstr "Beskjeden er sendt"
|
55 |
+
|
56 |
+
#: class.cscf_pluginsettings.php:47
|
57 |
+
msgid "Thank you for your message, we will be in touch very shortly."
|
58 |
+
msgstr "Takk for din henvendelse. Vi tar snart kontakt."
|
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 |
+
"Fyll ut skjemaet med en kort beskjed, og vi tar snart kontakt."
|
66 |
+
|
67 |
+
#: class.cscf_pluginsettings.php:83
|
68 |
+
msgid " - Web Enquiry"
|
69 |
+
msgstr "Kontakt fra hjemmeside"
|
70 |
+
|
71 |
+
#: class.cscf_settings.php:41
|
72 |
+
msgid "Clean and Simple Contact Form Settings"
|
73 |
+
msgstr "Innstillinger for Clean and Simple Contact Form"
|
74 |
+
|
75 |
+
#: class.cscf_settings.php:43
|
76 |
+
msgid "You are using version"
|
77 |
+
msgstr "Du bruker versjon"
|
78 |
+
|
79 |
+
#: class.cscf_settings.php:44
|
80 |
+
msgid "If you find this plugin useful please consider"
|
81 |
+
msgstr "Hvis du synes dette plugin er nyttig, vurder å"
|
82 |
+
|
83 |
+
#: class.cscf_settings.php:47
|
84 |
+
msgid "leaving a review"
|
85 |
+
msgstr "gi en bedømmelse"
|
86 |
+
|
87 |
+
#: class.cscf_settings.php:49
|
88 |
+
msgid "Thank you!"
|
89 |
+
msgstr "På forhånd takk!"
|
90 |
+
|
91 |
+
#: class.cscf_settings.php:68
|
92 |
+
msgid "ReCAPTCHA Settings"
|
93 |
+
msgstr "Innstillinger for ReCAPTCHA:"
|
94 |
+
|
95 |
+
#: class.cscf_settings.php:76
|
96 |
+
msgid "Use reCAPTCHA :"
|
97 |
+
msgstr "Bruk 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 "Innstillinger for beskjed:"
|
114 |
+
|
115 |
+
#: class.cscf_settings.php:104
|
116 |
+
msgid "Recipient Email :"
|
117 |
+
msgstr "Din epostadresse:"
|
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 "Beskjed:"
|
126 |
+
|
127 |
+
#: class.cscf_settings.php:122
|
128 |
+
msgid "Message Sent Heading :"
|
129 |
+
msgstr "Overskrift for sendt beskjed:"
|
130 |
+
|
131 |
+
#: class.cscf_settings.php:128
|
132 |
+
msgid "Message Sent Content :"
|
133 |
+
msgstr "Innhold i sendt beskjed:"
|
134 |
+
|
135 |
+
#: class.cscf_settings.php:134
|
136 |
+
msgid "Styling and Validation"
|
137 |
+
msgstr "Utseende 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 |
+
"Bruk standardtemaet for dette plugin (fjern haken for å bruke ditt "
|
145 |
+
"standardtema):"
|
146 |
+
|
147 |
+
#: class.cscf_settings.php:144
|
148 |
+
msgid "Use client side validation (AJAX) :"
|
149 |
+
msgstr "Bruk AJAX validering:"
|
150 |
+
|
151 |
+
#: class.cscf_settings.php:216
|
152 |
+
msgid "Enter your reCAPTCHA settings below :"
|
153 |
+
msgstr "Definer dine reCAPTCHA innstillinger"
|
154 |
+
|
155 |
+
#: class.cscf_settings.php:217
|
156 |
+
msgid "To use reCAPTCHA you must get an API key from"
|
157 |
+
msgstr "For å bruke reCAPTCHA må du ha en API nøkkel fra"
|
158 |
+
|
159 |
+
#: class.cscf_settings.php:222
|
160 |
+
msgid "Enter your message settings below :"
|
161 |
+
msgstr "Definer dine innstillinger for beskjeder:"
|
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 "Hvit"
|
170 |
+
|
171 |
+
#: class.cscf_settings.php:276
|
172 |
+
msgid "Blackglass"
|
173 |
+
msgstr "Gjennomsiktig"
|
174 |
+
|
175 |
+
#: class.cscf_settings.php:277
|
176 |
+
msgid "Clean"
|
177 |
+
msgstr "Enkel"
|
178 |
+
|
179 |
+
#: views/contact-form-with-recaptcha.view.php:31
|
180 |
+
#: views/contact-form.view.php:12
|
181 |
+
msgid "Email Address:"
|
182 |
+
msgstr "Epostadresse:"
|
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 epostadresse"
|
188 |
+
|
189 |
+
#: views/contact-form-with-recaptcha.view.php:41
|
190 |
+
#: views/contact-form.view.php:22
|
191 |
+
msgid "Confirm Email Address:"
|
192 |
+
msgstr "Bekreft din epostadresse:"
|
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 "Vennligst skriv inn den samme epostadressen igjen."
|
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 "Bekreft din epostadresse"
|
203 |
+
|
204 |
+
#: views/contact-form-with-recaptcha.view.php:51
|
205 |
+
#: views/contact-form.view.php:32
|
206 |
+
msgid "Name:"
|
207 |
+
msgstr "Navn:"
|
208 |
+
|
209 |
+
#: views/contact-form-with-recaptcha.view.php:53
|
210 |
+
#: views/contact-form.view.php:34
|
211 |
+
msgid "Your Name"
|
212 |
+
msgstr "Ditt navn"
|
213 |
+
|
214 |
+
#: views/contact-form-with-recaptcha.view.php:61
|
215 |
+
#: views/contact-form.view.php:42
|
216 |
+
msgid "Message:"
|
217 |
+
msgstr "Beskjed:"
|
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 beskjed."
|
223 |
+
|
224 |
+
#: views/contact-form-with-recaptcha.view.php:63
|
225 |
+
#: views/contact-form.view.php:44
|
226 |
+
msgid "Your Message"
|
227 |
+
msgstr "Din beskjed"
|
228 |
+
|
229 |
+
#: views/contact-form-with-recaptcha.view.php:79
|
230 |
+
#: views/contact-form.view.php:51
|
231 |
+
msgid "Send Message"
|
232 |
+
msgstr "Send beskjed"
|
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 det har oppstått en feil og din beskjed ble 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 |
+
"Et stilig og enkelt kontaktskjema med Google reCAPTCHA og Twitter Bootstrap "
|
254 |
+
"stiler."
|
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/clean-and-simple-contact-form-by-meg-nicholas-tr_TR.po
CHANGED
@@ -1,319 +1,319 @@
|
|
1 |
-
msgid ""
|
2 |
-
msgstr ""
|
3 |
-
"Project-Id-Version: Clean and Simple Contact Form 4.6.0\n"
|
4 |
-
"Report-Msgid-Bugs-To: http://wordpress.org/tag/clean-and-simple-contact-form-"
|
5 |
-
"by-meg-nicholas\n"
|
6 |
-
"POT-Creation-Date: 2016-01-19 14:59:22+00:00\n"
|
7 |
-
"PO-Revision-Date: Fri Jan 22 2016 15:51:56 GMT+0200\n"
|
8 |
-
"Last-Translator: Abdullah Manaz <abdullahmanaz@gmail.com>\n"
|
9 |
-
"Language-Team: LANGUAGE <LL@li.org>\n"
|
10 |
-
"Language: Turkish\n"
|
11 |
-
"Plural-Forms: nplurals=1; plural=0\n"
|
12 |
-
"MIME-Version: 1.0\n"
|
13 |
-
"Content-Type: text/plain; charset=UTF-8\n"
|
14 |
-
"Content-Transfer-Encoding: 8bit\n"
|
15 |
-
"X-Poedit-SourceCharset: UTF-8\n"
|
16 |
-
"X-Generator: Loco - https://localise.biz/\n"
|
17 |
-
"X-Poedit-Basepath: .\n"
|
18 |
-
"X-Poedit-SearchPath-0: ..\n"
|
19 |
-
"X-Poedit-KeywordsList: _:1;gettext:1;dgettext:2;ngettext:1,2;dngettext:2,3;"
|
20 |
-
"__:1;_e:1;_c:1;_n:1,2;_n_noop:1,2;_nc:1,2;__ngettext:1,2;__ngettext_noop:1,2;"
|
21 |
-
"_x:1,2c;_ex:1,2c;_nx:1,2,4c;_nx_noop:1,2,3c;_n_js:1,2;_nx_js:1,2,3c;"
|
22 |
-
"esc_attr__:1;esc_html__:1;esc_attr_e:1;esc_html_e:1;esc_attr_x:1,2c;"
|
23 |
-
"esc_html_x:1,2c;comments_number_link:2,3;t:1;st:1;trans:1;transChoice:1,2\n"
|
24 |
-
"X-Loco-Target-Locale: tr_TR"
|
25 |
-
|
26 |
-
#: class.cscf_contact.php:97
|
27 |
-
msgid "Please solve the recaptcha to continue."
|
28 |
-
msgstr "Devam etmek için Güvenlik Sorgulamasını düzeltiniz."
|
29 |
-
|
30 |
-
#: class.cscf_settings.php:387
|
31 |
-
msgid "Light"
|
32 |
-
msgstr "AçıkRenk"
|
33 |
-
|
34 |
-
#: class.cscf_settings.php:389
|
35 |
-
msgid "Dark"
|
36 |
-
msgstr "KoyuRenk"
|
37 |
-
|
38 |
-
#. Plugin Name of the plugin/theme
|
39 |
-
msgid "Clean and Simple Contact Form"
|
40 |
-
msgstr "Clean and Simple Contact Form"
|
41 |
-
|
42 |
-
#. Plugin URI of the plugin/theme
|
43 |
-
msgid "http://www.megnicholas.co.uk/wordpress-plugins/clean-and-simple-contact-form"
|
44 |
-
msgstr "http://www.megnicholas.co.uk/wordpress-plugins/clean-and-simple-contact-form"
|
45 |
-
|
46 |
-
#. Description of the plugin/theme
|
47 |
-
msgid ""
|
48 |
-
"A clean and simple contact form with Google reCAPTCHA and Twitter Bootstrap "
|
49 |
-
"markup."
|
50 |
-
msgstr ""
|
51 |
-
"Google reCAPTCHA ve Twitter Bootstrap biçimlendirmeleriyle Temiz ve Basit "
|
52 |
-
"Bir İletişim Formu"
|
53 |
-
|
54 |
-
#. Author of the plugin/theme
|
55 |
-
msgid "Meghan Nicholas"
|
56 |
-
msgstr "Meghan Nicholas"
|
57 |
-
|
58 |
-
#. Author URI of the plugin/theme
|
59 |
-
msgid "http://www.megnicholas.co.uk"
|
60 |
-
msgstr "http://www.megnicholas.co.uk"
|
61 |
-
|
62 |
-
#: class.cscf.php:157
|
63 |
-
msgid "Settings"
|
64 |
-
msgstr "Kurgu"
|
65 |
-
|
66 |
-
#: class.cscf_contact.php:66
|
67 |
-
msgid "Sorry the email addresses do not match."
|
68 |
-
msgstr "Afedersiniz, EPosta Adresleriniz uyuşmuyor."
|
69 |
-
|
70 |
-
#: class.cscf_contact.php:71 views/contact-form.view.php:63
|
71 |
-
msgid "Please give your email address."
|
72 |
-
msgstr "Lütfen EPosta Adresinizi giriniz."
|
73 |
-
|
74 |
-
#: class.cscf_contact.php:75
|
75 |
-
msgid "Please confirm your email address."
|
76 |
-
msgstr "Lütfen EPosta Adresinizi doğrulayınız."
|
77 |
-
|
78 |
-
#: class.cscf_contact.php:80 views/contact-form.view.php:34
|
79 |
-
msgid "Please give your name."
|
80 |
-
msgstr "Lütfen isminizi giriniz."
|
81 |
-
|
82 |
-
#: class.cscf_contact.php:84
|
83 |
-
msgid "Please enter a message."
|
84 |
-
msgstr "Lütfen bir mesaj giriniz."
|
85 |
-
|
86 |
-
#: class.cscf_contact.php:88 views/contact-form.view.php:64
|
87 |
-
#: views/contact-form.view.php:93
|
88 |
-
msgid "Please enter a valid email address."
|
89 |
-
msgstr "Lütfen, geçerli bir EPosta Adresi giriniz."
|
90 |
-
|
91 |
-
#: class.cscf_contact.php:160
|
92 |
-
msgid "Here is a copy of your message :"
|
93 |
-
msgstr "EPosta Mesajınızın bir kopyası :"
|
94 |
-
|
95 |
-
#: class.cscf_pluginsettings.php:44
|
96 |
-
msgid "Message Sent"
|
97 |
-
msgstr "Mesajınız Gönderildi!"
|
98 |
-
|
99 |
-
#: class.cscf_pluginsettings.php:52
|
100 |
-
msgid "Thank you for your message, we will be in touch very shortly."
|
101 |
-
msgstr "Teşekkürler, Mesajınız alındı, en kısa zamanda cevaplanacaktır."
|
102 |
-
|
103 |
-
#: class.cscf_pluginsettings.php:60
|
104 |
-
msgid ""
|
105 |
-
"Please enter your contact details and a short message below and I will try "
|
106 |
-
"to answer your query as soon as possible."
|
107 |
-
msgstr ""
|
108 |
-
"Mesajınızı ve iletişim bilgilerinizi aşağıya yazınız.En kısa zamanda "
|
109 |
-
"cevaplanacaktır."
|
110 |
-
|
111 |
-
#: class.cscf_pluginsettings.php:94
|
112 |
-
msgid " - Web Enquiry"
|
113 |
-
msgstr " - Web Talebi"
|
114 |
-
|
115 |
-
#: class.cscf_settings.php:30
|
116 |
-
msgid "Contact Form Settings"
|
117 |
-
msgstr "İletişim Formu Kurgusu"
|
118 |
-
|
119 |
-
#: class.cscf_settings.php:30
|
120 |
-
msgid "Contact Form"
|
121 |
-
msgstr "İletişim Formu"
|
122 |
-
|
123 |
-
#: class.cscf_settings.php:41
|
124 |
-
msgid "Clean and Simple Contact Form Settings"
|
125 |
-
msgstr "Temiz ve Basit İletişim Formu Kurgusu"
|
126 |
-
|
127 |
-
#: class.cscf_settings.php:47
|
128 |
-
msgid "Donate $10, $20 or $50!"
|
129 |
-
msgstr "Bağış $10, $20 veya $50!"
|
130 |
-
|
131 |
-
#: class.cscf_settings.php:50
|
132 |
-
msgid ""
|
133 |
-
"If you like this plugin, please donate to support development and "
|
134 |
-
"maintenance of:"
|
135 |
-
msgstr ""
|
136 |
-
"Bu eklentiyi beğendiyseniz, geliştirilmesine katkıda bulunmak için bağış "
|
137 |
-
"yapabilirsiniz."
|
138 |
-
|
139 |
-
#: class.cscf_settings.php:52
|
140 |
-
msgid "Clean and Simple Contact Form!"
|
141 |
-
msgstr "Temiz ve Basit İleşitim Formu!"
|
142 |
-
|
143 |
-
#: class.cscf_settings.php:67
|
144 |
-
msgid "You are using version"
|
145 |
-
msgstr "Kullanılan Versiyon"
|
146 |
-
|
147 |
-
#: class.cscf_settings.php:69
|
148 |
-
msgid "If you find this plugin useful please consider"
|
149 |
-
msgstr "Bu eklentiyi yararlı bulursanız, lütfen desteklemek için "
|
150 |
-
|
151 |
-
#: class.cscf_settings.php:72
|
152 |
-
msgid "leaving a review"
|
153 |
-
msgstr "Bir görüş belirtiniz."
|
154 |
-
|
155 |
-
#: class.cscf_settings.php:74
|
156 |
-
msgid "Thank you!"
|
157 |
-
msgstr "Teşekkür Ederiz!"
|
158 |
-
|
159 |
-
#: class.cscf_settings.php:79
|
160 |
-
msgid ""
|
161 |
-
"NOTICE: You have JetPack's Contact Form enabled please deactivate it or use "
|
162 |
-
"the shortcode [cscf-contact-form] instead."
|
163 |
-
msgstr ""
|
164 |
-
"NOT: JetPack's Contact Form eklentisi aktif, lütfen onu deaktif ediniz veya "
|
165 |
-
"[cscf-contact-form] kısa kodunu kullanınız."
|
166 |
-
|
167 |
-
#: class.cscf_settings.php:81
|
168 |
-
msgid "Read More"
|
169 |
-
msgstr "Fazlasını Oku"
|
170 |
-
|
171 |
-
#: class.cscf_settings.php:85
|
172 |
-
msgid "Please Note: To add the contact form to your page please add the text"
|
173 |
-
msgstr "Not: İletişim Formunu bir yazınıza veya sayfanıza eklemek için"
|
174 |
-
|
175 |
-
#: class.cscf_settings.php:86
|
176 |
-
msgid "to your post or page."
|
177 |
-
msgstr "kısa kodunu kullanınız."
|
178 |
-
|
179 |
-
#: class.cscf_settings.php:106
|
180 |
-
msgid "ReCAPTCHA Settings"
|
181 |
-
msgstr "ReCAPTCHA Kurgusu"
|
182 |
-
|
183 |
-
#: class.cscf_settings.php:114
|
184 |
-
msgid "Use reCAPTCHA :"
|
185 |
-
msgstr "ReCAPTCHA Kullan:"
|
186 |
-
|
187 |
-
#: class.cscf_settings.php:120
|
188 |
-
msgid "reCAPTCHA Theme :"
|
189 |
-
msgstr "ReCAPTCHA Teması :"
|
190 |
-
|
191 |
-
#: class.cscf_settings.php:126
|
192 |
-
msgid "reCAPTCHA Public Key :"
|
193 |
-
msgstr "ReCAPTCHA Public Key :"
|
194 |
-
|
195 |
-
#: class.cscf_settings.php:132
|
196 |
-
msgid "reCAPTCHA Private Key :"
|
197 |
-
msgstr "ReCAPTCHA Private Key :"
|
198 |
-
|
199 |
-
#: class.cscf_settings.php:138
|
200 |
-
msgid "Message Settings"
|
201 |
-
msgstr "MesajFormu Kurgusu"
|
202 |
-
|
203 |
-
#: class.cscf_settings.php:142
|
204 |
-
msgid "Recipient Emails :"
|
205 |
-
msgstr "Alıcı EPosta Adres(ler)i:"
|
206 |
-
|
207 |
-
#: class.cscf_settings.php:148
|
208 |
-
msgid "Confirm Email Address :"
|
209 |
-
msgstr "EPosta Adres(ler)ini Onayla"
|
210 |
-
|
211 |
-
#: class.cscf_settings.php:154
|
212 |
-
msgid "*New*"
|
213 |
-
msgstr "Yeni"
|
214 |
-
|
215 |
-
#: class.cscf_settings.php:154
|
216 |
-
msgid "Allow users to email themselves a copy :"
|
217 |
-
msgstr "Kullanıcıların kendilerine bir EPosta Kopyası göndermesine izin ver:"
|
218 |
-
|
219 |
-
#: class.cscf_settings.php:160
|
220 |
-
msgid "Override 'From' Address :"
|
221 |
-
msgstr " 'Kimden' bölümünü düzenle :"
|
222 |
-
|
223 |
-
#: class.cscf_settings.php:166
|
224 |
-
msgid "'From' Email Address :"
|
225 |
-
msgstr " 'Kimden' bölümüne EPosta Adresi :"
|
226 |
-
|
227 |
-
#: class.cscf_settings.php:172
|
228 |
-
msgid "Email Subject :"
|
229 |
-
msgstr "EPosta Konusu:"
|
230 |
-
|
231 |
-
#: class.cscf_settings.php:178
|
232 |
-
msgid "Message :"
|
233 |
-
msgstr "EPosta Metni :"
|
234 |
-
|
235 |
-
#: class.cscf_settings.php:184
|
236 |
-
msgid "Message Sent Heading :"
|
237 |
-
msgstr "Gönderilen Mesaj Başlığı:"
|
238 |
-
|
239 |
-
#: class.cscf_settings.php:190
|
240 |
-
msgid "Message Sent Content :"
|
241 |
-
msgstr "Gönderilen Mesaj Konusu:"
|
242 |
-
|
243 |
-
#: class.cscf_settings.php:196
|
244 |
-
msgid "Styling and Validation"
|
245 |
-
msgstr "Görünüm ve Doğrulama"
|
246 |
-
|
247 |
-
#: class.cscf_settings.php:200
|
248 |
-
msgid ""
|
249 |
-
"Use the plugin default stylesheet (un-tick to use your theme style sheet "
|
250 |
-
"instead) :"
|
251 |
-
msgstr "Temel Görünümü Kullan (Kendi temanızı kullanacaksanız seçimi kaldırın) :"
|
252 |
-
|
253 |
-
#: class.cscf_settings.php:206
|
254 |
-
msgid "Use client side validation (AJAX) :"
|
255 |
-
msgstr "(AJAX) Doğrulama Yöntemini Kullan :"
|
256 |
-
|
257 |
-
#: class.cscf_settings.php:278
|
258 |
-
msgid "Enter your reCAPTCHA settings below :"
|
259 |
-
msgstr "ReCAPTCHA Ayarlarını Aşağıya Giriniz:"
|
260 |
-
|
261 |
-
#: class.cscf_settings.php:279
|
262 |
-
msgid "To use reCAPTCHA you must get an API key from"
|
263 |
-
msgstr "ReCAPTCHA kullanmak için API-Key edinmeniz gerekir:"
|
264 |
-
|
265 |
-
#: class.cscf_settings.php:285
|
266 |
-
msgid "Enter your message settings below :"
|
267 |
-
msgstr "MesajFormu Kurgunuzu aşağıya giriniz:"
|
268 |
-
|
269 |
-
#: views/contact-form.view.php:25
|
270 |
-
msgid "Name:"
|
271 |
-
msgstr "Adınız:"
|
272 |
-
|
273 |
-
#: views/contact-form.view.php:37
|
274 |
-
msgid "Your Name"
|
275 |
-
msgstr "Adınız"
|
276 |
-
|
277 |
-
#: views/contact-form.view.php:54
|
278 |
-
msgid "Email Address:"
|
279 |
-
msgstr "EPosta Adresi:"
|
280 |
-
|
281 |
-
#: views/contact-form.view.php:67
|
282 |
-
msgid "Your Email Address"
|
283 |
-
msgstr "EPosta Adresiniz:"
|
284 |
-
|
285 |
-
#: views/contact-form.view.php:83
|
286 |
-
msgid "Confirm Email Address:"
|
287 |
-
msgstr "EPosta Adresinizi doğrulayın:"
|
288 |
-
|
289 |
-
#: views/contact-form.view.php:92 views/contact-form.view.php:94
|
290 |
-
msgid "Please enter the same email address again."
|
291 |
-
msgstr "EPosta Adresinizi tekrar giriniz."
|
292 |
-
|
293 |
-
#: views/contact-form.view.php:97
|
294 |
-
msgid "Confirm Your Email Address"
|
295 |
-
msgstr "EPosta Adresinizi doğrulayınız"
|
296 |
-
|
297 |
-
#: views/contact-form.view.php:114
|
298 |
-
msgid "Message:"
|
299 |
-
msgstr "Mesaj Metni:"
|
300 |
-
|
301 |
-
#: views/contact-form.view.php:121
|
302 |
-
msgid "Please give a message."
|
303 |
-
msgstr "Lütfen bir Mesaj giriniz."
|
304 |
-
|
305 |
-
#: views/contact-form.view.php:123
|
306 |
-
msgid "Your Message"
|
307 |
-
msgstr "Mesaj Metniniz"
|
308 |
-
|
309 |
-
#: views/contact-form.view.php:139
|
310 |
-
msgid "Send me a copy:"
|
311 |
-
msgstr "Bana da bir Kopya gönder:"
|
312 |
-
|
313 |
-
#: views/contact-form.view.php:201
|
314 |
-
msgid "Send Message"
|
315 |
-
msgstr "Mesajı Gönder"
|
316 |
-
|
317 |
-
#: views/message-not-sent.view.php:1
|
318 |
-
msgid "Sorry, there has been a problem and your message was not sent."
|
319 |
-
msgstr "Afedersiniz, bir sorun oldu, mesajınız gitmedi."
|
1 |
+
msgid ""
|
2 |
+
msgstr ""
|
3 |
+
"Project-Id-Version: Clean and Simple Contact Form 4.6.0\n"
|
4 |
+
"Report-Msgid-Bugs-To: http://wordpress.org/tag/clean-and-simple-contact-form-"
|
5 |
+
"by-meg-nicholas\n"
|
6 |
+
"POT-Creation-Date: 2016-01-19 14:59:22+00:00\n"
|
7 |
+
"PO-Revision-Date: Fri Jan 22 2016 15:51:56 GMT+0200\n"
|
8 |
+
"Last-Translator: Abdullah Manaz <abdullahmanaz@gmail.com>\n"
|
9 |
+
"Language-Team: LANGUAGE <LL@li.org>\n"
|
10 |
+
"Language: Turkish\n"
|
11 |
+
"Plural-Forms: nplurals=1; plural=0\n"
|
12 |
+
"MIME-Version: 1.0\n"
|
13 |
+
"Content-Type: text/plain; charset=UTF-8\n"
|
14 |
+
"Content-Transfer-Encoding: 8bit\n"
|
15 |
+
"X-Poedit-SourceCharset: UTF-8\n"
|
16 |
+
"X-Generator: Loco - https://localise.biz/\n"
|
17 |
+
"X-Poedit-Basepath: .\n"
|
18 |
+
"X-Poedit-SearchPath-0: ..\n"
|
19 |
+
"X-Poedit-KeywordsList: _:1;gettext:1;dgettext:2;ngettext:1,2;dngettext:2,3;"
|
20 |
+
"__:1;_e:1;_c:1;_n:1,2;_n_noop:1,2;_nc:1,2;__ngettext:1,2;__ngettext_noop:1,2;"
|
21 |
+
"_x:1,2c;_ex:1,2c;_nx:1,2,4c;_nx_noop:1,2,3c;_n_js:1,2;_nx_js:1,2,3c;"
|
22 |
+
"esc_attr__:1;esc_html__:1;esc_attr_e:1;esc_html_e:1;esc_attr_x:1,2c;"
|
23 |
+
"esc_html_x:1,2c;comments_number_link:2,3;t:1;st:1;trans:1;transChoice:1,2\n"
|
24 |
+
"X-Loco-Target-Locale: tr_TR"
|
25 |
+
|
26 |
+
#: class.cscf_contact.php:97
|
27 |
+
msgid "Please solve the recaptcha to continue."
|
28 |
+
msgstr "Devam etmek için Güvenlik Sorgulamasını düzeltiniz."
|
29 |
+
|
30 |
+
#: class.cscf_settings.php:387
|
31 |
+
msgid "Light"
|
32 |
+
msgstr "AçıkRenk"
|
33 |
+
|
34 |
+
#: class.cscf_settings.php:389
|
35 |
+
msgid "Dark"
|
36 |
+
msgstr "KoyuRenk"
|
37 |
+
|
38 |
+
#. Plugin Name of the plugin/theme
|
39 |
+
msgid "Clean and Simple Contact Form"
|
40 |
+
msgstr "Clean and Simple Contact Form"
|
41 |
+
|
42 |
+
#. Plugin URI of the plugin/theme
|
43 |
+
msgid "http://www.megnicholas.co.uk/wordpress-plugins/clean-and-simple-contact-form"
|
44 |
+
msgstr "http://www.megnicholas.co.uk/wordpress-plugins/clean-and-simple-contact-form"
|
45 |
+
|
46 |
+
#. Description of the plugin/theme
|
47 |
+
msgid ""
|
48 |
+
"A clean and simple contact form with Google reCAPTCHA and Twitter Bootstrap "
|
49 |
+
"markup."
|
50 |
+
msgstr ""
|
51 |
+
"Google reCAPTCHA ve Twitter Bootstrap biçimlendirmeleriyle Temiz ve Basit "
|
52 |
+
"Bir İletişim Formu"
|
53 |
+
|
54 |
+
#. Author of the plugin/theme
|
55 |
+
msgid "Meghan Nicholas"
|
56 |
+
msgstr "Meghan Nicholas"
|
57 |
+
|
58 |
+
#. Author URI of the plugin/theme
|
59 |
+
msgid "http://www.megnicholas.co.uk"
|
60 |
+
msgstr "http://www.megnicholas.co.uk"
|
61 |
+
|
62 |
+
#: class.cscf.php:157
|
63 |
+
msgid "Settings"
|
64 |
+
msgstr "Kurgu"
|
65 |
+
|
66 |
+
#: class.cscf_contact.php:66
|
67 |
+
msgid "Sorry the email addresses do not match."
|
68 |
+
msgstr "Afedersiniz, EPosta Adresleriniz uyuşmuyor."
|
69 |
+
|
70 |
+
#: class.cscf_contact.php:71 views/contact-form.view.php:63
|
71 |
+
msgid "Please give your email address."
|
72 |
+
msgstr "Lütfen EPosta Adresinizi giriniz."
|
73 |
+
|
74 |
+
#: class.cscf_contact.php:75
|
75 |
+
msgid "Please confirm your email address."
|
76 |
+
msgstr "Lütfen EPosta Adresinizi doğrulayınız."
|
77 |
+
|
78 |
+
#: class.cscf_contact.php:80 views/contact-form.view.php:34
|
79 |
+
msgid "Please give your name."
|
80 |
+
msgstr "Lütfen isminizi giriniz."
|
81 |
+
|
82 |
+
#: class.cscf_contact.php:84
|
83 |
+
msgid "Please enter a message."
|
84 |
+
msgstr "Lütfen bir mesaj giriniz."
|
85 |
+
|
86 |
+
#: class.cscf_contact.php:88 views/contact-form.view.php:64
|
87 |
+
#: views/contact-form.view.php:93
|
88 |
+
msgid "Please enter a valid email address."
|
89 |
+
msgstr "Lütfen, geçerli bir EPosta Adresi giriniz."
|
90 |
+
|
91 |
+
#: class.cscf_contact.php:160
|
92 |
+
msgid "Here is a copy of your message :"
|
93 |
+
msgstr "EPosta Mesajınızın bir kopyası :"
|
94 |
+
|
95 |
+
#: class.cscf_pluginsettings.php:44
|
96 |
+
msgid "Message Sent"
|
97 |
+
msgstr "Mesajınız Gönderildi!"
|
98 |
+
|
99 |
+
#: class.cscf_pluginsettings.php:52
|
100 |
+
msgid "Thank you for your message, we will be in touch very shortly."
|
101 |
+
msgstr "Teşekkürler, Mesajınız alındı, en kısa zamanda cevaplanacaktır."
|
102 |
+
|
103 |
+
#: class.cscf_pluginsettings.php:60
|
104 |
+
msgid ""
|
105 |
+
"Please enter your contact details and a short message below and I will try "
|
106 |
+
"to answer your query as soon as possible."
|
107 |
+
msgstr ""
|
108 |
+
"Mesajınızı ve iletişim bilgilerinizi aşağıya yazınız.En kısa zamanda "
|
109 |
+
"cevaplanacaktır."
|
110 |
+
|
111 |
+
#: class.cscf_pluginsettings.php:94
|
112 |
+
msgid " - Web Enquiry"
|
113 |
+
msgstr " - Web Talebi"
|
114 |
+
|
115 |
+
#: class.cscf_settings.php:30
|
116 |
+
msgid "Contact Form Settings"
|
117 |
+
msgstr "İletişim Formu Kurgusu"
|
118 |
+
|
119 |
+
#: class.cscf_settings.php:30
|
120 |
+
msgid "Contact Form"
|
121 |
+
msgstr "İletişim Formu"
|
122 |
+
|
123 |
+
#: class.cscf_settings.php:41
|
124 |
+
msgid "Clean and Simple Contact Form Settings"
|
125 |
+
msgstr "Temiz ve Basit İletişim Formu Kurgusu"
|
126 |
+
|
127 |
+
#: class.cscf_settings.php:47
|
128 |
+
msgid "Donate $10, $20 or $50!"
|
129 |
+
msgstr "Bağış $10, $20 veya $50!"
|
130 |
+
|
131 |
+
#: class.cscf_settings.php:50
|
132 |
+
msgid ""
|
133 |
+
"If you like this plugin, please donate to support development and "
|
134 |
+
"maintenance of:"
|
135 |
+
msgstr ""
|
136 |
+
"Bu eklentiyi beğendiyseniz, geliştirilmesine katkıda bulunmak için bağış "
|
137 |
+
"yapabilirsiniz."
|
138 |
+
|
139 |
+
#: class.cscf_settings.php:52
|
140 |
+
msgid "Clean and Simple Contact Form!"
|
141 |
+
msgstr "Temiz ve Basit İleşitim Formu!"
|
142 |
+
|
143 |
+
#: class.cscf_settings.php:67
|
144 |
+
msgid "You are using version"
|
145 |
+
msgstr "Kullanılan Versiyon"
|
146 |
+
|
147 |
+
#: class.cscf_settings.php:69
|
148 |
+
msgid "If you find this plugin useful please consider"
|
149 |
+
msgstr "Bu eklentiyi yararlı bulursanız, lütfen desteklemek için "
|
150 |
+
|
151 |
+
#: class.cscf_settings.php:72
|
152 |
+
msgid "leaving a review"
|
153 |
+
msgstr "Bir görüş belirtiniz."
|
154 |
+
|
155 |
+
#: class.cscf_settings.php:74
|
156 |
+
msgid "Thank you!"
|
157 |
+
msgstr "Teşekkür Ederiz!"
|
158 |
+
|
159 |
+
#: class.cscf_settings.php:79
|
160 |
+
msgid ""
|
161 |
+
"NOTICE: You have JetPack's Contact Form enabled please deactivate it or use "
|
162 |
+
"the shortcode [cscf-contact-form] instead."
|
163 |
+
msgstr ""
|
164 |
+
"NOT: JetPack's Contact Form eklentisi aktif, lütfen onu deaktif ediniz veya "
|
165 |
+
"[cscf-contact-form] kısa kodunu kullanınız."
|
166 |
+
|
167 |
+
#: class.cscf_settings.php:81
|
168 |
+
msgid "Read More"
|
169 |
+
msgstr "Fazlasını Oku"
|
170 |
+
|
171 |
+
#: class.cscf_settings.php:85
|
172 |
+
msgid "Please Note: To add the contact form to your page please add the text"
|
173 |
+
msgstr "Not: İletişim Formunu bir yazınıza veya sayfanıza eklemek için"
|
174 |
+
|
175 |
+
#: class.cscf_settings.php:86
|
176 |
+
msgid "to your post or page."
|
177 |
+
msgstr "kısa kodunu kullanınız."
|
178 |
+
|
179 |
+
#: class.cscf_settings.php:106
|
180 |
+
msgid "ReCAPTCHA Settings"
|
181 |
+
msgstr "ReCAPTCHA Kurgusu"
|
182 |
+
|
183 |
+
#: class.cscf_settings.php:114
|
184 |
+
msgid "Use reCAPTCHA :"
|
185 |
+
msgstr "ReCAPTCHA Kullan:"
|
186 |
+
|
187 |
+
#: class.cscf_settings.php:120
|
188 |
+
msgid "reCAPTCHA Theme :"
|
189 |
+
msgstr "ReCAPTCHA Teması :"
|
190 |
+
|
191 |
+
#: class.cscf_settings.php:126
|
192 |
+
msgid "reCAPTCHA Public Key :"
|
193 |
+
msgstr "ReCAPTCHA Public Key :"
|
194 |
+
|
195 |
+
#: class.cscf_settings.php:132
|
196 |
+
msgid "reCAPTCHA Private Key :"
|
197 |
+
msgstr "ReCAPTCHA Private Key :"
|
198 |
+
|
199 |
+
#: class.cscf_settings.php:138
|
200 |
+
msgid "Message Settings"
|
201 |
+
msgstr "MesajFormu Kurgusu"
|
202 |
+
|
203 |
+
#: class.cscf_settings.php:142
|
204 |
+
msgid "Recipient Emails :"
|
205 |
+
msgstr "Alıcı EPosta Adres(ler)i:"
|
206 |
+
|
207 |
+
#: class.cscf_settings.php:148
|
208 |
+
msgid "Confirm Email Address :"
|
209 |
+
msgstr "EPosta Adres(ler)ini Onayla"
|
210 |
+
|
211 |
+
#: class.cscf_settings.php:154
|
212 |
+
msgid "*New*"
|
213 |
+
msgstr "Yeni"
|
214 |
+
|
215 |
+
#: class.cscf_settings.php:154
|
216 |
+
msgid "Allow users to email themselves a copy :"
|
217 |
+
msgstr "Kullanıcıların kendilerine bir EPosta Kopyası göndermesine izin ver:"
|
218 |
+
|
219 |
+
#: class.cscf_settings.php:160
|
220 |
+
msgid "Override 'From' Address :"
|
221 |
+
msgstr " 'Kimden' bölümünü düzenle :"
|
222 |
+
|
223 |
+
#: class.cscf_settings.php:166
|
224 |
+
msgid "'From' Email Address :"
|
225 |
+
msgstr " 'Kimden' bölümüne EPosta Adresi :"
|
226 |
+
|
227 |
+
#: class.cscf_settings.php:172
|
228 |
+
msgid "Email Subject :"
|
229 |
+
msgstr "EPosta Konusu:"
|
230 |
+
|
231 |
+
#: class.cscf_settings.php:178
|
232 |
+
msgid "Message :"
|
233 |
+
msgstr "EPosta Metni :"
|
234 |
+
|
235 |
+
#: class.cscf_settings.php:184
|
236 |
+
msgid "Message Sent Heading :"
|
237 |
+
msgstr "Gönderilen Mesaj Başlığı:"
|
238 |
+
|
239 |
+
#: class.cscf_settings.php:190
|
240 |
+
msgid "Message Sent Content :"
|
241 |
+
msgstr "Gönderilen Mesaj Konusu:"
|
242 |
+
|
243 |
+
#: class.cscf_settings.php:196
|
244 |
+
msgid "Styling and Validation"
|
245 |
+
msgstr "Görünüm ve Doğrulama"
|
246 |
+
|
247 |
+
#: class.cscf_settings.php:200
|
248 |
+
msgid ""
|
249 |
+
"Use the plugin default stylesheet (un-tick to use your theme style sheet "
|
250 |
+
"instead) :"
|
251 |
+
msgstr "Temel Görünümü Kullan (Kendi temanızı kullanacaksanız seçimi kaldırın) :"
|
252 |
+
|
253 |
+
#: class.cscf_settings.php:206
|
254 |
+
msgid "Use client side validation (AJAX) :"
|
255 |
+
msgstr "(AJAX) Doğrulama Yöntemini Kullan :"
|
256 |
+
|
257 |
+
#: class.cscf_settings.php:278
|
258 |
+
msgid "Enter your reCAPTCHA settings below :"
|
259 |
+
msgstr "ReCAPTCHA Ayarlarını Aşağıya Giriniz:"
|
260 |
+
|
261 |
+
#: class.cscf_settings.php:279
|
262 |
+
msgid "To use reCAPTCHA you must get an API key from"
|
263 |
+
msgstr "ReCAPTCHA kullanmak için API-Key edinmeniz gerekir:"
|
264 |
+
|
265 |
+
#: class.cscf_settings.php:285
|
266 |
+
msgid "Enter your message settings below :"
|
267 |
+
msgstr "MesajFormu Kurgunuzu aşağıya giriniz:"
|
268 |
+
|
269 |
+
#: views/contact-form.view.php:25
|
270 |
+
msgid "Name:"
|
271 |
+
msgstr "Adınız:"
|
272 |
+
|
273 |
+
#: views/contact-form.view.php:37
|
274 |
+
msgid "Your Name"
|
275 |
+
msgstr "Adınız"
|
276 |
+
|
277 |
+
#: views/contact-form.view.php:54
|
278 |
+
msgid "Email Address:"
|
279 |
+
msgstr "EPosta Adresi:"
|
280 |
+
|
281 |
+
#: views/contact-form.view.php:67
|
282 |
+
msgid "Your Email Address"
|
283 |
+
msgstr "EPosta Adresiniz:"
|
284 |
+
|
285 |
+
#: views/contact-form.view.php:83
|
286 |
+
msgid "Confirm Email Address:"
|
287 |
+
msgstr "EPosta Adresinizi doğrulayın:"
|
288 |
+
|
289 |
+
#: views/contact-form.view.php:92 views/contact-form.view.php:94
|
290 |
+
msgid "Please enter the same email address again."
|
291 |
+
msgstr "EPosta Adresinizi tekrar giriniz."
|
292 |
+
|
293 |
+
#: views/contact-form.view.php:97
|
294 |
+
msgid "Confirm Your Email Address"
|
295 |
+
msgstr "EPosta Adresinizi doğrulayınız"
|
296 |
+
|
297 |
+
#: views/contact-form.view.php:114
|
298 |
+
msgid "Message:"
|
299 |
+
msgstr "Mesaj Metni:"
|
300 |
+
|
301 |
+
#: views/contact-form.view.php:121
|
302 |
+
msgid "Please give a message."
|
303 |
+
msgstr "Lütfen bir Mesaj giriniz."
|
304 |
+
|
305 |
+
#: views/contact-form.view.php:123
|
306 |
+
msgid "Your Message"
|
307 |
+
msgstr "Mesaj Metniniz"
|
308 |
+
|
309 |
+
#: views/contact-form.view.php:139
|
310 |
+
msgid "Send me a copy:"
|
311 |
+
msgstr "Bana da bir Kopya gönder:"
|
312 |
+
|
313 |
+
#: views/contact-form.view.php:201
|
314 |
+
msgid "Send Message"
|
315 |
+
msgstr "Mesajı Gönder"
|
316 |
+
|
317 |
+
#: views/message-not-sent.view.php:1
|
318 |
+
msgid "Sorry, there has been a problem and your message was not sent."
|
319 |
+
msgstr "Afedersiniz, bir sorun oldu, mesajınız gitmedi."
|
readme.txt
CHANGED
@@ -6,7 +6,7 @@ Tags: simple, contact, form, contact button, contact form, contact form plugin,
|
|
6 |
Requires at least: 4.6
|
7 |
Tested up to: 5.7
|
8 |
Requires PHP: 5.6
|
9 |
-
Stable tag: 4.7.
|
10 |
|
11 |
A clean and simple AJAX contact form with Google reCAPTCHA, Twitter Bootstrap markup and Akismet spam filtering.
|
12 |
|
@@ -197,6 +197,9 @@ the reCAPTCHA for the contact form will be displayed correctly but not in the co
|
|
197 |
The comments form will never validate due to no supplied reCAPTCHA code.
|
198 |
|
199 |
== Changelog ==
|
|
|
|
|
|
|
200 |
= 4.7.4 =
|
201 |
* correct santization
|
202 |
|
6 |
Requires at least: 4.6
|
7 |
Tested up to: 5.7
|
8 |
Requires PHP: 5.6
|
9 |
+
Stable tag: 4.7.5
|
10 |
|
11 |
A clean and simple AJAX contact form with Google reCAPTCHA, Twitter Bootstrap markup and Akismet spam filtering.
|
12 |
|
197 |
The comments form will never validate due to no supplied reCAPTCHA code.
|
198 |
|
199 |
== Changelog ==
|
200 |
+
= 4.7.5 =
|
201 |
+
* correct a couple of text domain issues introduced at 4.7.2
|
202 |
+
|
203 |
= 4.7.4 =
|
204 |
* correct santization
|
205 |
|