Contact Form & SMTP Plugin for WordPress by PirateForms - Version 1.0.10

Version Description

Download this release

Release Info

Developer codeinwp
Plugin Icon 128x128 Contact Form & SMTP Plugin for WordPress by PirateForms
Version 1.0.10
Comparing to
See all releases

Code changes from version 1.0.7 to 1.0.10

CHANGELOG.md ADDED
@@ -0,0 +1,19 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+
2
+
3
+ ### 1.0.9 - 10/03/2016
4
+
5
+ Changes:
6
+
7
+
8
+ * Fixed layout issues #52
9
+ * Update readme.txt with == Changelog == section #51
10
+
11
+
12
+ ### 1.0.8 - 09/03/2016
13
+
14
+ Changes:
15
+
16
+
17
+ * Update readme.txt
18
+ * Update translations files
19
+ * #42, translation issues fixed
css/front.css CHANGED
@@ -16,9 +16,12 @@
16
  }
17
  .sidebar .pirate-forms-submit-button, .sidebar-wrap .pirate-forms-submit-button, #sidebar-secondary .pirate-forms-submit-button {
18
  float:left !important;
19
- margin-left: 15px;
20
- width: 90%;
21
  }
22
  .sidebar .pirate_forms_wrap label, .sidebar-wrap .pirate_forms_wrap label, #sidebar-secondary .pirate_forms_wrap label {
23
  display: none;
 
 
 
24
  }
16
  }
17
  .sidebar .pirate-forms-submit-button, .sidebar-wrap .pirate-forms-submit-button, #sidebar-secondary .pirate-forms-submit-button {
18
  float:left !important;
19
+ margin-left: 0px;
20
+ width: 100%;
21
  }
22
  .sidebar .pirate_forms_wrap label, .sidebar-wrap .pirate_forms_wrap label, #sidebar-secondary .pirate_forms_wrap label {
23
  display: none;
24
+ }
25
+ .pirate_forms_clearfix {
26
+ clear: both;
27
  }
inc/PhpFormBuilder.php CHANGED
@@ -359,8 +359,8 @@ class PhpFormBuilder {
359
  break;
360
  endif;
361
  case 'submit':
362
- $element = 'button';
363
- $end .= ' class="" type="' . $val['type'] . '">' . $val['value'] . '</button>';
364
  break;
365
  default :
366
  $element = 'input';
359
  break;
360
  endif;
361
  case 'submit':
362
+ $element = 'div class="col-sm-12 col-lg-12 contact_submit_wrap"><button';
363
+ $end .= ' class="" type="' . $val['type'] . '">' . $val['value'] . '</button></div>';
364
  break;
365
  default :
366
  $element = 'input';
inc/helpers.php CHANGED
@@ -12,11 +12,11 @@ if ( ! function_exists( 'pirate_forms_display_errors' ) ) {
12
 
13
  if( !empty($errs) ):
14
 
15
- $output .= '<div class="pirate_forms_error_box">';
16
  $output .= '<p>'.__( 'Sorry, an error occured.','pirate-forms' ).'</p>';
17
  $output .= '</div>';
18
  foreach ( $errs as $err ) :
19
- $output .= '<div class="pirate_forms_error_box">';
20
  $output .= "<p>$err</p>";
21
  $output .= '</div>';
22
  endforeach;
12
 
13
  if( !empty($errs) ):
14
 
15
+ $output .= '<div class="col-sm-12 col-lg-12 pirate_forms_error_box">';
16
  $output .= '<p>'.__( 'Sorry, an error occured.','pirate-forms' ).'</p>';
17
  $output .= '</div>';
18
  foreach ( $errs as $err ) :
19
+ $output .= '<div class="col-sm-12 col-lg-12 pirate_forms_error_box">';
20
  $output .= "<p>$err</p>";
21
  $output .= '</div>';
22
  endforeach;
inc/settings.php CHANGED
@@ -88,8 +88,7 @@ function pirate_forms_plugin_options() {
88
  ),
89
  'pirateformsopt_email' => array(
90
  __( 'Contact notification sender email','pirate-forms' ),
91
- __( '<strong>Insert [email] to use the contact form submitter\'s email.</strong><br> Email to use for the sender of the contact form emails both to the recipients below and the contact form submitter (if this is activated below). The domain for this email address should match your site\'s domain.',
92
- 'email','pirate-forms' ),
93
  'text',
94
  pirate_forms_from_email()
95
  ),
@@ -595,7 +594,7 @@ function pirate_forms_admin() {
595
  if( $was_submited == false ){
596
  echo sprintf( '<p> %s </p><form class="pirate-forms-submit-mail" method="post"><input name="pirate_forms_mail" type="email" value="'.get_option( 'admin_email' ) .'" /><input class="button" type="submit" value="Submit"></form>', esc_html__('Ready to learn how to reduce your website loading times by half? Come and join the 1st lesson here!', 'pirate-forms' ) );
597
  } else {
598
- echo sprintf( '<p> %s </p>', esc_html__( 'Thank you for subscribing! You have been added to the mailing list and will receive the next email information in the coming weeks. If you ever wish to unsubscribe, simply use the Unsubscribe link included in each newsletter.', 'pirate-forms' ) );
599
  } ?>
600
  </div>
601
  </div>
88
  ),
89
  'pirateformsopt_email' => array(
90
  __( 'Contact notification sender email','pirate-forms' ),
91
+ '<strong>'.__( "Insert [email] to use the contact form submitter's email.","pirate-forms" ).'</strong><br>'.__( "Email to use for the sender of the contact form emails both to the recipients below and the contact form submitter (if this is activated below). The domain for this email address should match your site's domain.","pirate-forms" ),
 
92
  'text',
93
  pirate_forms_from_email()
94
  ),
594
  if( $was_submited == false ){
595
  echo sprintf( '<p> %s </p><form class="pirate-forms-submit-mail" method="post"><input name="pirate_forms_mail" type="email" value="'.get_option( 'admin_email' ) .'" /><input class="button" type="submit" value="Submit"></form>', esc_html__('Ready to learn how to reduce your website loading times by half? Come and join the 1st lesson here!', 'pirate-forms' ) );
596
  } else {
597
+ echo sprintf( '<p> %s </p>', esc_html__( 'Thank you for subscribing! You have been added to the mailing list and will receive the next email information in the coming weeks. If you ever wish to unsubscribe, simply use the "Unsubscribe" link included in each newsletter.', 'pirate-forms' ) );
598
  } ?>
599
  </div>
600
  </div>
languages/pirate-forms-de_DE.mo CHANGED
Binary file
languages/pirate-forms-de_DE.po CHANGED
@@ -2,347 +2,444 @@ msgid ""
2
  msgstr ""
3
  "Project-Id-Version: Pirate Forms\n"
4
  "Report-Msgid-Bugs-To: \n"
5
- "POT-Creation-Date: 2015-09-18 18:41+0200\n"
6
- "PO-Revision-Date: 2015-09-25 13:33+0200\n"
7
  "Last-Translator: \n"
8
  "Language-Team: \n"
9
  "MIME-Version: 1.0\n"
10
  "Content-Type: text/plain; charset=UTF-8\n"
11
  "Content-Transfer-Encoding: 8bit\n"
12
- "X-Poedit-KeywordsList: _;gettext;gettext_noop;__;_e\n"
13
  "X-Poedit-Basepath: ../\n"
14
  "X-Poedit-SearchPath-0: .\n"
15
  "X-Poedit-SearchPath-1: inc\n"
16
 
17
- #: pirate-forms.php:261
18
  msgid "Contact Referrer"
19
  msgstr "Kontakt Referrer"
20
 
21
- #: pirate-forms.php:272
22
  msgid "Referring page"
23
  msgstr "Bezugnehmend Seite"
24
 
25
- #: pirate-forms.php:312
26
  msgid "Nonce failed!"
27
  msgstr "Nonce fehlgeschlagen!"
28
 
29
- #: pirate-forms.php:318
30
  msgid "Form submission failed!"
31
  msgstr "Formularübergabe fehlgeschlagen!"
32
 
33
- #: pirate-forms.php:323
34
  msgid "Contact form submission on"
35
  msgstr "Kontaktformularübertragungauf"
36
 
37
- #: pirate-forms.php:404
38
- #: pirate-forms.php:417
39
  msgid "Wrong reCAPTCHA"
40
  msgstr "Falsche reCAPTCHA"
41
 
42
- #: pirate-forms.php:448
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
43
  msgid "Form submission blocked!"
44
  msgstr "Formularübertragung blockiert!"
45
 
46
- #: pirate-forms.php:630
47
  msgid "Add New Contact"
48
  msgstr "Neuen Kontakt hinzufügen"
49
 
50
- #: pirate-forms.php:631
51
  msgid "New Contact"
52
  msgstr "New Kontakt"
53
 
54
- #: pirate-forms.php:632
55
  msgid "Edit Contact"
56
  msgstr "Kontakt bearbeiten"
57
 
58
- #: pirate-forms.php:633
59
  msgid "View Contact"
60
  msgstr "View Kontakt"
61
 
62
- #: pirate-forms.php:634
63
  msgid "All Contacts"
64
  msgstr "Alle Kontakte"
65
 
66
- #: pirate-forms.php:635
67
  msgid "Search Contacts"
68
  msgstr "Suche Kontakte"
69
 
70
- #: pirate-forms.php:636
71
  msgid "Parent Contacts:"
72
  msgstr "Mutter Kontakte:"
73
 
74
- #: pirate-forms.php:637
75
  msgid "No contacts found."
76
  msgstr "Keine Kontakte gefunden."
77
 
78
- #: pirate-forms.php:638
79
  msgid "No contacts found in Trash."
80
  msgstr "Keine Kontakte gefunden im Papierkorb."
81
 
82
- #: pirate-forms.php:642
83
  msgid "Contacts from Pirate Forms"
84
  msgstr "Kontakte von Pirate Forms"
85
 
 
 
 
 
86
  #: inc/helpers.php:16
87
  msgid "Sorry, an error occured."
88
  msgstr "Sorry, ein Fehler aufgetreten."
89
 
90
- #: inc/settings.php:38
91
- #: inc/settings.php:42
92
  msgid "Send Message"
93
  msgstr "Nachricht senden"
94
 
95
- #: inc/settings.php:59
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
96
  msgid "Fields"
97
  msgstr "Felder"
98
 
99
- #: inc/settings.php:66
100
- #: inc/settings.php:143
101
  msgid "Name"
102
  msgstr "Name"
103
 
104
- #: inc/settings.php:67
105
  msgid "Do you want the name field to be displayed?"
106
  msgstr "Möchten Sie das Namensfeld angezeigt werden?"
107
 
108
- #: inc/settings.php:71
109
- #: inc/settings.php:83
110
- #: inc/settings.php:95
111
- #: inc/settings.php:107
112
  msgid "None"
113
  msgstr "Keine"
114
 
115
- #: inc/settings.php:72
116
- #: inc/settings.php:84
117
- #: inc/settings.php:96
118
- #: inc/settings.php:108
119
  msgid "Yes but not required"
120
  msgstr "Ja, aber nicht erforderlich"
121
 
122
- #: inc/settings.php:73
123
- #: inc/settings.php:85
124
- #: inc/settings.php:97
125
- #: inc/settings.php:109
126
  msgid "Required"
127
  msgstr "Erforderlich"
128
 
129
- #: inc/settings.php:78
130
  msgid "Email address"
131
  msgstr "E-Mail-Addresse"
132
 
133
- #: inc/settings.php:79
134
  msgid "Do you want the email address field be displayed?"
135
  msgstr "Möchten Sie die E-Mail- Adressfeld angezeigt werden?"
136
 
137
- #: inc/settings.php:90
138
- #: inc/settings.php:155
139
- #: inc/settings.php:158
140
  msgid "Subject"
141
  msgstr "Subjekt"
142
 
143
- #: inc/settings.php:91
144
  msgid "Do you want the subject field be displayed?"
145
  msgstr "Möchten Sie das Betreff-Feld angezeigt werden?"
146
 
147
- #: inc/settings.php:102
148
- #: inc/settings.php:161
149
  msgid "Message"
150
  msgstr "Meldung"
151
 
152
- #: inc/settings.php:114
153
  msgid "Add a reCAPTCHA"
154
  msgstr "Fügen Sie einen reCAPTCHA"
155
 
156
- #: inc/settings.php:121
157
  msgid "Site key"
158
  msgstr "Site-Schlüssel"
159
 
160
- #: inc/settings.php:122
161
  msgid "Create an account here "
162
  msgstr "Erstellen Sie ein Konto hier"
163
 
164
- #: inc/settings.php:122
165
  msgid "to get the Site key and the Secret key for the reCaptcha."
166
  msgstr "um die Website- Schlüssel und den geheimen Schlüssel für die reCaptcha zu bekommen."
167
 
168
- #: inc/settings.php:128
169
  msgid "Secret key"
170
  msgstr "geheimen Schlüssel"
171
 
172
- #: inc/settings.php:137
 
173
  msgid "Labels"
174
  msgstr "das Etikett"
175
 
176
- #: inc/settings.php:146
177
  msgid "Your Name"
178
  msgstr "Ihr Name"
179
 
180
- #: inc/settings.php:149
181
  msgid "Email"
182
  msgstr "Email"
183
 
184
- #: inc/settings.php:152
185
  msgid "Your Email"
186
  msgstr "Deine E-Mail"
187
 
188
- #: inc/settings.php:164
189
  msgid "Your message"
190
  msgstr "Ihre Nachricht"
191
 
192
- #: inc/settings.php:167
193
  msgid "Submit button"
194
  msgstr "Submit button"
195
 
196
- #: inc/settings.php:175
 
197
  msgid "Messages"
198
  msgstr "Nachrichten"
199
 
200
- #: inc/settings.php:181
201
  msgid "Name required and missing"
202
  msgstr "Name erforderlich und fehlende"
203
 
204
- #: inc/settings.php:184
205
  msgid "Enter your name"
206
  msgstr "Gib deinen Namen ein"
207
 
208
- #: inc/settings.php:187
209
  msgid "E-mail required and missing"
210
  msgstr "E-mail benötigt und fehlende"
211
 
212
- #: inc/settings.php:190
213
  msgid "Enter a valid email"
214
  msgstr "Geben Sie eine gültige E-Mail"
215
 
216
- #: inc/settings.php:193
217
  msgid "Subject required and missing"
218
  msgstr "Angabe erforderlich und fehlende"
219
 
220
- #: inc/settings.php:196
221
  msgid "Please enter a subject"
222
  msgstr "Bitte geben Sie einen Betreff"
223
 
224
- #: inc/settings.php:199
225
  msgid "Question/comment is missing"
226
  msgstr "Frage / Anmerkung fehlt"
227
 
228
- #: inc/settings.php:202
229
  msgid "Enter your question or comment"
230
  msgstr "Geben Sie Ihre Frage oder einen Kommentar"
231
 
232
- #: inc/settings.php:205
233
  msgid "Successful form submission text"
234
  msgstr "Erfolgreiche Formularübertragung Text"
235
 
236
- #: inc/settings.php:206
237
  msgid "This text is used on the page if no \"Thank You\" URL is set above. This is also used as the confirmation email title, if one is set to send out."
238
  msgstr "Dieser Text wird auf der Seite verwendet werden, wenn keine \"Dankeschön \" URL ist oben angegeben. Dies wird auch als der Bestätigungsmail Titel verwendet , wenn man gesetzt zu versenden ."
239
 
240
- #: inc/settings.php:208
241
  msgid "Thanks, your email was sent successfully!"
242
  msgstr "Vielen Dank , Ihre E-Mail wurde erfolgreich gesendet!"
243
 
244
- #: inc/settings.php:213
245
- msgid "Form processing options"
246
- msgstr "Form Verarbeitungsoptionen"
247
-
248
- #: inc/settings.php:219
249
- msgid "Contact notification sender email"
250
- msgstr "Kontakt E-Mail- Benachrichtigung Absender"
251
-
252
- #: inc/settings.php:220
253
- msgid "Email to use for the sender of the contact form emails both to the recipients below and the contact form submitter (if this is activated below). The domain for this email address should match your site's domain."
254
- msgstr "E-Mail an die Absender der Kontakt-Formular E-Mails sowohl auf die unten Empfänger und das Kontaktformular Einreicher ( wenn dies unten aktiviert) verwenden . Die Domain für diese E-Mail- Adresse sollte Ihre Website -Domain entsprechen."
255
-
256
- #: inc/settings.php:226
257
- msgid "Use the email address above as notification sender"
258
- msgstr "Verwenden Sie die E-Mail- Adresse oben als Benachrichtigung Absender"
259
-
260
- #: inc/settings.php:227
261
- msgid "When this is on, the notification emails sent from your site will come from the email address above. When this is off, the emails will come from the form submitter, making it easy to reply. If you are not receiving notifications from the site, then turn this option off as your email server might be marking them as spam."
262
- msgstr "Wenn diese aktiviert ist, wird die Benachrichtigungs-Mails von Ihrer Website geschickt aus der E-Mail- Adresse oben zu kommen. Wenn diese Option deaktiviert ist , werden die E-Mails aus dem Formular Einreicher kommen , dass es leicht zu beantworten. Wenn Sie nicht den Empfang von Benachrichtigungen von der Seite , und schalten Sie diese Option ab , wie Ihre E-Mail -Server könnte als Spam markiert sie ."
263
-
264
- #: inc/settings.php:232
265
- msgid "Contact submission recipients"
266
- msgstr "Kontakt Einreichung Empfänger"
267
-
268
- #: inc/settings.php:233
269
- msgid "Email address(es) to receive contact submission notifications. You can separate multiple emails with a comma."
270
- msgstr "E-Mail- Adresse (n) , um den Kontakt Einreichung Benachrichtigungen zu erhalten. Sie können mehrere E-Mails durch Komma trennen."
271
-
272
- #: inc/settings.php:238
273
- msgid "Store submissions in the database"
274
- msgstr "Shop Einreichungen in der Datenbank"
275
-
276
- #: inc/settings.php:239
277
- msgid "Should the submissions be stored in the admin area? If chosen, contact form submissions will be saved in Contacts on the left (appears after this option is activated)."
278
- msgstr "Sollten die Einreichungen im Admin-Bereich gespeichert werden? Wenn gewählt , werden Kontaktformular Einreichungen in den Kontakten auf der linken Seite ( wird angezeigt, nachdem diese Option aktiviert ) gespeichert werden."
279
-
280
- #: inc/settings.php:244
281
- msgid "Use the comments blacklist to restrict submissions"
282
- msgstr "Verwenden Sie die Kommentare Blacklist , um Einsendungen zu beschränken"
283
-
284
- #: inc/settings.php:245
285
- msgid "Should form submission IP and email addresses be compared against the Comment Blacklist, found in"
286
- msgstr "Sollte die Einreichung IP bilden und Email-Adressen gegen den Kommentar Blacklist verglichen werden , in gefunden"
287
-
288
- #: inc/settings.php:245
289
- msgid "wp-admin > Settings > Discussion > Comment Blacklist?"
290
- msgstr "wp-admin > Einstellungen> Diskussion > Hats Blacklist ?"
291
-
292
- #: inc/settings.php:250
293
- msgid "Send email confirmation to form submitter"
294
- msgstr "Senden Sie E-Mail- Bestätigung an Einreicher bilden"
295
-
296
- #: inc/settings.php:251
297
- msgid "Adding text here will send an email to the form submitter. The email uses the \"Text to show when form is submitted...\" field below as the subject line. Plain text only here, no HTML."
298
- msgstr "Hinzufügen von Text hier eine E-Mail in das Formular Einreicher zu senden. Die E-Mail verwendet die \"Text , um zu zeigen , wenn das Formular ... vorgelegt \" Feld unterhalb dem Betreff . Klartext nur hier , kein HTML ."
299
-
300
- #: inc/settings.php:258
301
  msgid "Use SMTP to send emails?"
302
  msgstr "Verwenden Sie SMTP- E-Mails schicken?"
303
 
304
- #: inc/settings.php:259
305
  msgid "Instead of PHP mail function"
306
  msgstr "Anstelle von PHP Mail-Funktion"
307
 
308
- #: inc/settings.php:264
309
  msgid "SMTP Host"
310
  msgstr "SMTP Host"
311
 
312
- #: inc/settings.php:270
313
  msgid "SMTP Port"
314
  msgstr "SMTP Port"
315
 
316
- #: inc/settings.php:276
317
  msgid "Use SMTP Authentication?"
318
  msgstr "Verwenden Sie SMTP-Authentifizierung ?"
319
 
320
- #: inc/settings.php:277
321
  msgid "If you check this box, make sure the SMTP Username and SMTP Password are completed."
322
  msgstr "Wenn Sie dieses Kontrollkästchen aktivieren , stellen Sie sicher, dass der SMTP- Benutzernamen und das SMTP-Kennwort abgeschlossen sind."
323
 
324
- #: inc/settings.php:282
325
  msgid "SMTP Username"
326
  msgstr "SMTP Benutzername"
327
 
328
- #: inc/settings.php:288
329
  msgid "SMTP Password"
330
  msgstr "SMTP Passwort"
331
 
332
- #: inc/settings.php:306
333
  msgid "Pirate Forms settings"
334
  msgstr "Piraten Forms Einstellungen"
335
 
336
- #: inc/settings.php:307
 
337
  #: inc/widget.php:15
338
  #: inc/widget.php:16
339
  msgid "Pirate Forms"
340
  msgstr "Piraten Forms"
341
 
342
- #: inc/settings.php:503
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
343
  msgid "Save changes"
344
  msgstr "Änderungen speichern"
345
 
 
 
 
 
 
 
 
 
 
 
 
 
346
  #: inc/widget.php:75
347
  msgid "Title"
348
  msgstr "Titel"
@@ -359,3 +456,20 @@ msgstr "Titel:"
359
  msgid "Subtext:"
360
  msgstr "Subtext:"
361
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
2
  msgstr ""
3
  "Project-Id-Version: Pirate Forms\n"
4
  "Report-Msgid-Bugs-To: \n"
5
+ "POT-Creation-Date: 2016-03-09 18:51+0200\n"
6
+ "PO-Revision-Date: 2016-03-09 18:51+0200\n"
7
  "Last-Translator: \n"
8
  "Language-Team: \n"
9
  "MIME-Version: 1.0\n"
10
  "Content-Type: text/plain; charset=UTF-8\n"
11
  "Content-Transfer-Encoding: 8bit\n"
12
+ "X-Poedit-KeywordsList: _;gettext;gettext_noop;__;_e;esc_html__;esc_html_e\n"
13
  "X-Poedit-Basepath: ../\n"
14
  "X-Poedit-SearchPath-0: .\n"
15
  "X-Poedit-SearchPath-1: inc\n"
16
 
17
+ #: pirate-forms.php:295
18
  msgid "Contact Referrer"
19
  msgstr "Kontakt Referrer"
20
 
21
+ #: pirate-forms.php:306
22
  msgid "Referring page"
23
  msgstr "Bezugnehmend Seite"
24
 
25
+ #: pirate-forms.php:346
26
  msgid "Nonce failed!"
27
  msgstr "Nonce fehlgeschlagen!"
28
 
29
+ #: pirate-forms.php:352
30
  msgid "Form submission failed!"
31
  msgstr "Formularübergabe fehlgeschlagen!"
32
 
33
+ #: pirate-forms.php:357
34
  msgid "Contact form submission on"
35
  msgstr "Kontaktformularübertragungauf"
36
 
37
+ #: pirate-forms.php:438
38
+ #: pirate-forms.php:451
39
  msgid "Wrong reCAPTCHA"
40
  msgstr "Falsche reCAPTCHA"
41
 
42
+ #: pirate-forms.php:462
43
+ #, fuzzy
44
+ msgid "Please enter one or more Contact submission recipients"
45
+ msgstr "Kontakt Einreichung Empfänger"
46
+
47
+ #: pirate-forms.php:473
48
+ #, fuzzy
49
+ msgid "IP address: "
50
+ msgstr "E-Mail-Addresse"
51
+
52
+ #: pirate-forms.php:473
53
+ msgid "IP search:"
54
+ msgstr ""
55
+
56
+ #: pirate-forms.php:478
57
+ msgid "Came from: "
58
+ msgstr ""
59
+
60
+ #: pirate-forms.php:482
61
+ msgid "Sent from page: "
62
+ msgstr ""
63
+
64
+ #: pirate-forms.php:491
65
  msgid "Form submission blocked!"
66
  msgstr "Formularübertragung blockiert!"
67
 
68
+ #: pirate-forms.php:705
69
  msgid "Add New Contact"
70
  msgstr "Neuen Kontakt hinzufügen"
71
 
72
+ #: pirate-forms.php:706
73
  msgid "New Contact"
74
  msgstr "New Kontakt"
75
 
76
+ #: pirate-forms.php:707
77
  msgid "Edit Contact"
78
  msgstr "Kontakt bearbeiten"
79
 
80
+ #: pirate-forms.php:708
81
  msgid "View Contact"
82
  msgstr "View Kontakt"
83
 
84
+ #: pirate-forms.php:709
85
  msgid "All Contacts"
86
  msgstr "Alle Kontakte"
87
 
88
+ #: pirate-forms.php:710
89
  msgid "Search Contacts"
90
  msgstr "Suche Kontakte"
91
 
92
+ #: pirate-forms.php:711
93
  msgid "Parent Contacts:"
94
  msgstr "Mutter Kontakte:"
95
 
96
+ #: pirate-forms.php:712
97
  msgid "No contacts found."
98
  msgstr "Keine Kontakte gefunden."
99
 
100
+ #: pirate-forms.php:713
101
  msgid "No contacts found in Trash."
102
  msgstr "Keine Kontakte gefunden im Papierkorb."
103
 
104
+ #: pirate-forms.php:717
105
  msgid "Contacts from Pirate Forms"
106
  msgstr "Kontakte von Pirate Forms"
107
 
108
+ #: pirate-forms.php:739
109
+ msgid "Settings"
110
+ msgstr ""
111
+
112
  #: inc/helpers.php:16
113
  msgid "Sorry, an error occured."
114
  msgstr "Sorry, ein Fehler aufgetreten."
115
 
116
+ #: inc/settings.php:62
117
+ #: inc/settings.php:66
118
  msgid "Send Message"
119
  msgstr "Nachricht senden"
120
 
121
+ #: inc/settings.php:84
122
+ msgid "Form processing options"
123
+ msgstr "Form Verarbeitungsoptionen"
124
+
125
+ #: inc/settings.php:90
126
+ msgid "Contact notification sender email"
127
+ msgstr "Kontakt E-Mail- Benachrichtigung Absender"
128
+
129
+ #: inc/settings.php:91
130
+ msgid "Insert [email] to use the contact form submitter's email."
131
+ msgstr ""
132
+
133
+ #: inc/settings.php:91
134
+ #, fuzzy
135
+ msgid "Email to use for the sender of the contact form emails both to the recipients below and the contact form submitter (if this is activated below). The domain for this email address should match your site's domain."
136
+ msgstr "E-Mail an die Absender der Kontakt-Formular E-Mails sowohl auf die unten Empfänger und das Kontaktformular Einreicher ( wenn dies unten aktiviert) verwenden . Die Domain für diese E-Mail- Adresse sollte Ihre Website -Domain entsprechen."
137
+
138
+ #: inc/settings.php:96
139
+ msgid "Contact submission recipients"
140
+ msgstr "Kontakt Einreichung Empfänger"
141
+
142
+ #: inc/settings.php:97
143
+ msgid "Email address(es) to receive contact submission notifications. You can separate multiple emails with a comma."
144
+ msgstr "E-Mail- Adresse (n) , um den Kontakt Einreichung Benachrichtigungen zu erhalten. Sie können mehrere E-Mails durch Komma trennen."
145
+
146
+ #: inc/settings.php:102
147
+ msgid "Store submissions in the database"
148
+ msgstr "Shop Einreichungen in der Datenbank"
149
+
150
+ #: inc/settings.php:103
151
+ msgid "Should the submissions be stored in the admin area? If chosen, contact form submissions will be saved in Contacts on the left (appears after this option is activated)."
152
+ msgstr "Sollten die Einreichungen im Admin-Bereich gespeichert werden? Wenn gewählt , werden Kontaktformular Einreichungen in den Kontakten auf der linken Seite ( wird angezeigt, nachdem diese Option aktiviert ) gespeichert werden."
153
+
154
+ #: inc/settings.php:108
155
+ msgid "Use the comments blacklist to restrict submissions"
156
+ msgstr "Verwenden Sie die Kommentare Blacklist , um Einsendungen zu beschränken"
157
+
158
+ #: inc/settings.php:109
159
+ msgid "Should form submission IP and email addresses be compared against the Comment Blacklist, found in"
160
+ msgstr "Sollte die Einreichung IP bilden und Email-Adressen gegen den Kommentar Blacklist verglichen werden , in gefunden"
161
+
162
+ #: inc/settings.php:109
163
+ msgid "wp-admin > Settings > Discussion > Comment Blacklist?"
164
+ msgstr "wp-admin > Einstellungen> Diskussion > Hats Blacklist ?"
165
+
166
+ #: inc/settings.php:114
167
+ msgid "Send email confirmation to form submitter"
168
+ msgstr "Senden Sie E-Mail- Bestätigung an Einreicher bilden"
169
+
170
+ #: inc/settings.php:115
171
+ msgid "Adding text here will send an email to the form submitter. The email uses the \"Text to show when form is submitted...\" field below as the subject line. Plain text only here, no HTML."
172
+ msgstr "Hinzufügen von Text hier eine E-Mail in das Formular Einreicher zu senden. Die E-Mail verwendet die \"Text , um zu zeigen , wenn das Formular ... vorgelegt \" Feld unterhalb dem Betreff . Klartext nur hier , kein HTML ."
173
+
174
+ #: inc/settings.php:122
175
+ #: inc/settings.php:424
176
  msgid "Fields"
177
  msgstr "Felder"
178
 
179
+ #: inc/settings.php:129
180
+ #: inc/settings.php:206
181
  msgid "Name"
182
  msgstr "Name"
183
 
184
+ #: inc/settings.php:130
185
  msgid "Do you want the name field to be displayed?"
186
  msgstr "Möchten Sie das Namensfeld angezeigt werden?"
187
 
188
+ #: inc/settings.php:134
189
+ #: inc/settings.php:146
190
+ #: inc/settings.php:158
191
+ #: inc/settings.php:170
192
  msgid "None"
193
  msgstr "Keine"
194
 
195
+ #: inc/settings.php:135
196
+ #: inc/settings.php:147
197
+ #: inc/settings.php:159
198
+ #: inc/settings.php:171
199
  msgid "Yes but not required"
200
  msgstr "Ja, aber nicht erforderlich"
201
 
202
+ #: inc/settings.php:136
203
+ #: inc/settings.php:148
204
+ #: inc/settings.php:160
205
+ #: inc/settings.php:172
206
  msgid "Required"
207
  msgstr "Erforderlich"
208
 
209
+ #: inc/settings.php:141
210
  msgid "Email address"
211
  msgstr "E-Mail-Addresse"
212
 
213
+ #: inc/settings.php:142
214
  msgid "Do you want the email address field be displayed?"
215
  msgstr "Möchten Sie die E-Mail- Adressfeld angezeigt werden?"
216
 
217
+ #: inc/settings.php:153
218
+ #: inc/settings.php:218
219
+ #: inc/settings.php:221
220
  msgid "Subject"
221
  msgstr "Subjekt"
222
 
223
+ #: inc/settings.php:154
224
  msgid "Do you want the subject field be displayed?"
225
  msgstr "Möchten Sie das Betreff-Feld angezeigt werden?"
226
 
227
+ #: inc/settings.php:165
228
+ #: inc/settings.php:224
229
  msgid "Message"
230
  msgstr "Meldung"
231
 
232
+ #: inc/settings.php:177
233
  msgid "Add a reCAPTCHA"
234
  msgstr "Fügen Sie einen reCAPTCHA"
235
 
236
+ #: inc/settings.php:184
237
  msgid "Site key"
238
  msgstr "Site-Schlüssel"
239
 
240
+ #: inc/settings.php:185
241
  msgid "Create an account here "
242
  msgstr "Erstellen Sie ein Konto hier"
243
 
244
+ #: inc/settings.php:185
245
  msgid "to get the Site key and the Secret key for the reCaptcha."
246
  msgstr "um die Website- Schlüssel und den geheimen Schlüssel für die reCaptcha zu bekommen."
247
 
248
+ #: inc/settings.php:191
249
  msgid "Secret key"
250
  msgstr "geheimen Schlüssel"
251
 
252
+ #: inc/settings.php:200
253
+ #: inc/settings.php:425
254
  msgid "Labels"
255
  msgstr "das Etikett"
256
 
257
+ #: inc/settings.php:209
258
  msgid "Your Name"
259
  msgstr "Ihr Name"
260
 
261
+ #: inc/settings.php:212
262
  msgid "Email"
263
  msgstr "Email"
264
 
265
+ #: inc/settings.php:215
266
  msgid "Your Email"
267
  msgstr "Deine E-Mail"
268
 
269
+ #: inc/settings.php:227
270
  msgid "Your message"
271
  msgstr "Ihre Nachricht"
272
 
273
+ #: inc/settings.php:230
274
  msgid "Submit button"
275
  msgstr "Submit button"
276
 
277
+ #: inc/settings.php:238
278
+ #: inc/settings.php:426
279
  msgid "Messages"
280
  msgstr "Nachrichten"
281
 
282
+ #: inc/settings.php:244
283
  msgid "Name required and missing"
284
  msgstr "Name erforderlich und fehlende"
285
 
286
+ #: inc/settings.php:247
287
  msgid "Enter your name"
288
  msgstr "Gib deinen Namen ein"
289
 
290
+ #: inc/settings.php:250
291
  msgid "E-mail required and missing"
292
  msgstr "E-mail benötigt und fehlende"
293
 
294
+ #: inc/settings.php:253
295
  msgid "Enter a valid email"
296
  msgstr "Geben Sie eine gültige E-Mail"
297
 
298
+ #: inc/settings.php:256
299
  msgid "Subject required and missing"
300
  msgstr "Angabe erforderlich und fehlende"
301
 
302
+ #: inc/settings.php:259
303
  msgid "Please enter a subject"
304
  msgstr "Bitte geben Sie einen Betreff"
305
 
306
+ #: inc/settings.php:262
307
  msgid "Question/comment is missing"
308
  msgstr "Frage / Anmerkung fehlt"
309
 
310
+ #: inc/settings.php:265
311
  msgid "Enter your question or comment"
312
  msgstr "Geben Sie Ihre Frage oder einen Kommentar"
313
 
314
+ #: inc/settings.php:268
315
  msgid "Successful form submission text"
316
  msgstr "Erfolgreiche Formularübertragung Text"
317
 
318
+ #: inc/settings.php:269
319
  msgid "This text is used on the page if no \"Thank You\" URL is set above. This is also used as the confirmation email title, if one is set to send out."
320
  msgstr "Dieser Text wird auf der Seite verwendet werden, wenn keine \"Dankeschön \" URL ist oben angegeben. Dies wird auch als der Bestätigungsmail Titel verwendet , wenn man gesetzt zu versenden ."
321
 
322
+ #: inc/settings.php:271
323
  msgid "Thanks, your email was sent successfully!"
324
  msgstr "Vielen Dank , Ihre E-Mail wurde erfolgreich gesendet!"
325
 
326
+ #: inc/settings.php:276
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
327
  msgid "Use SMTP to send emails?"
328
  msgstr "Verwenden Sie SMTP- E-Mails schicken?"
329
 
330
+ #: inc/settings.php:277
331
  msgid "Instead of PHP mail function"
332
  msgstr "Anstelle von PHP Mail-Funktion"
333
 
334
+ #: inc/settings.php:282
335
  msgid "SMTP Host"
336
  msgstr "SMTP Host"
337
 
338
+ #: inc/settings.php:288
339
  msgid "SMTP Port"
340
  msgstr "SMTP Port"
341
 
342
+ #: inc/settings.php:294
343
  msgid "Use SMTP Authentication?"
344
  msgstr "Verwenden Sie SMTP-Authentifizierung ?"
345
 
346
+ #: inc/settings.php:295
347
  msgid "If you check this box, make sure the SMTP Username and SMTP Password are completed."
348
  msgstr "Wenn Sie dieses Kontrollkästchen aktivieren , stellen Sie sicher, dass der SMTP- Benutzernamen und das SMTP-Kennwort abgeschlossen sind."
349
 
350
+ #: inc/settings.php:300
351
  msgid "SMTP Username"
352
  msgstr "SMTP Benutzername"
353
 
354
+ #: inc/settings.php:306
355
  msgid "SMTP Password"
356
  msgstr "SMTP Passwort"
357
 
358
+ #: inc/settings.php:324
359
  msgid "Pirate Forms settings"
360
  msgstr "Piraten Forms Einstellungen"
361
 
362
+ #: inc/settings.php:325
363
+ #: inc/settings.php:417
364
  #: inc/widget.php:15
365
  #: inc/widget.php:16
366
  msgid "Pirate Forms"
367
  msgstr "Piraten Forms"
368
 
369
+ #: inc/settings.php:422
370
+ msgid "How to use"
371
+ msgstr ""
372
+
373
+ #: inc/settings.php:423
374
+ msgid "Options"
375
+ msgstr ""
376
+
377
+ #: inc/settings.php:427
378
+ #, fuzzy
379
+ msgid "SMTP"
380
+ msgstr "SMTP Host"
381
+
382
+ #: inc/settings.php:434
383
+ #, fuzzy
384
+ msgid "Welcome to Pirate Forms!"
385
+ msgstr "Piraten Forms"
386
+
387
+ #: inc/settings.php:435
388
+ msgid "To get started, just "
389
+ msgstr ""
390
+
391
+ #: inc/settings.php:435
392
+ msgid "configure all the options "
393
+ msgstr ""
394
+
395
+ #: inc/settings.php:435
396
+ msgid "you need, hit save and start using the created form."
397
+ msgstr ""
398
+
399
+ #: inc/settings.php:439
400
+ msgid "There are 3 ways of using the newly created form:"
401
+ msgstr ""
402
+
403
+ #: inc/settings.php:440
404
+ msgid "1. Use the shortcode "
405
+ msgstr ""
406
+
407
+ #: inc/settings.php:440
408
+ msgid "in any page or post."
409
+ msgstr ""
410
+
411
+ #: inc/settings.php:441
412
+ msgid "2. Add a "
413
+ msgstr ""
414
+
415
+ #: inc/settings.php:441
416
+ msgid "widget"
417
+ msgstr ""
418
+
419
+ #: inc/settings.php:442
420
+ msgid "3. Use the shortcode "
421
+ msgstr ""
422
+
423
+ #: inc/settings.php:442
424
+ msgid "in the theme's files."
425
+ msgstr ""
426
+
427
+ #: inc/settings.php:561
428
  msgid "Save changes"
429
  msgstr "Änderungen speichern"
430
 
431
+ #: inc/settings.php:575
432
+ msgid "Get Our Free Email Course"
433
+ msgstr ""
434
+
435
+ #: inc/settings.php:595
436
+ msgid "Ready to learn how to reduce your website loading times by half? Come and join the 1st lesson here!"
437
+ msgstr ""
438
+
439
+ #: inc/settings.php:597
440
+ msgid "Thank you for subscribing! You have been added to the mailing list and will receive the next email information in the coming weeks. If you ever wish to unsubscribe, simply use the \"Unsubscribe\" link included in each newsletter."
441
+ msgstr ""
442
+
443
  #: inc/widget.php:75
444
  msgid "Title"
445
  msgstr "Titel"
456
  msgid "Subtext:"
457
  msgstr "Subtext:"
458
 
459
+ #~ msgid "Use the email address above as notification sender"
460
+ #~ msgstr ""
461
+ #~ "Verwenden Sie die E-Mail- Adresse oben als Benachrichtigung Absender"
462
+
463
+ #~ msgid ""
464
+ #~ "When this is on, the notification emails sent from your site will come "
465
+ #~ "from the email address above. When this is off, the emails will come from "
466
+ #~ "the form submitter, making it easy to reply. If you are not receiving "
467
+ #~ "notifications from the site, then turn this option off as your email "
468
+ #~ "server might be marking them as spam."
469
+ #~ msgstr ""
470
+ #~ "Wenn diese aktiviert ist, wird die Benachrichtigungs-Mails von Ihrer "
471
+ #~ "Website geschickt aus der E-Mail- Adresse oben zu kommen. Wenn diese "
472
+ #~ "Option deaktiviert ist , werden die E-Mails aus dem Formular Einreicher "
473
+ #~ "kommen , dass es leicht zu beantworten. Wenn Sie nicht den Empfang von "
474
+ #~ "Benachrichtigungen von der Seite , und schalten Sie diese Option ab , wie "
475
+ #~ "Ihre E-Mail -Server könnte als Spam markiert sie ."
languages/pirate-forms-es_ES.mo CHANGED
Binary file
languages/pirate-forms-es_ES.po CHANGED
@@ -2,405 +2,474 @@ msgid ""
2
  msgstr ""
3
  "Project-Id-Version: Pirate Forms\n"
4
  "Report-Msgid-Bugs-To: \n"
5
- "POT-Creation-Date: 2015-10-15 12:30-0300\n"
6
- "PO-Revision-Date: 2015-10-15 12:30-0300\n"
7
- "Last-Translator: Caribdis Web Design <caribdisweb@gmail.com>\n"
8
  "Language-Team: \n"
9
- "Language: es_ES\n"
10
  "MIME-Version: 1.0\n"
11
  "Content-Type: text/plain; charset=UTF-8\n"
12
  "Content-Transfer-Encoding: 8bit\n"
13
- "X-Poedit-KeywordsList: _;gettext;gettext_noop;__;_e\n"
14
- "X-Poedit-Basepath: ..\n"
15
- "X-Generator: Poedit 1.8.5\n"
16
  "X-Poedit-SearchPath-0: .\n"
17
  "X-Poedit-SearchPath-1: inc\n"
18
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
19
  #: inc/helpers.php:16
20
  msgid "Sorry, an error occured."
21
  msgstr "Disculpe, ha ocurrido un error."
22
 
23
- #: inc/settings.php:38 inc/settings.php:42
 
24
  msgid "Send Message"
25
  msgstr "Enviar mensaje"
26
 
27
- #: inc/settings.php:58
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
28
  msgid "Fields"
29
  msgstr "Campos"
30
 
31
- #: inc/settings.php:65 inc/settings.php:142
 
32
  msgid "Name"
33
  msgstr "Nombre"
34
 
35
- #: inc/settings.php:66
36
  msgid "Do you want the name field to be displayed?"
37
  msgstr "¿Desea mostrar el campo \"Nombre\"?"
38
 
39
- #: inc/settings.php:70 inc/settings.php:82 inc/settings.php:94
40
- #: inc/settings.php:106
 
 
41
  msgid "None"
42
  msgstr "No"
43
 
44
- #: inc/settings.php:71 inc/settings.php:83 inc/settings.php:95
45
- #: inc/settings.php:107
 
 
46
  msgid "Yes but not required"
47
  msgstr "Sí, pero no obligatorio"
48
 
49
- #: inc/settings.php:72 inc/settings.php:84 inc/settings.php:96
50
- #: inc/settings.php:108
 
 
51
  msgid "Required"
52
  msgstr "Obligatorio"
53
 
54
- #: inc/settings.php:77
55
  msgid "Email address"
56
  msgstr "Dirección de correo electrónico"
57
 
58
- #: inc/settings.php:78
59
  msgid "Do you want the email address field be displayed?"
60
  msgstr "¿Desea mostrar el campo \"Dirección de correo electrónico\"?"
61
 
62
- #: inc/settings.php:89 inc/settings.php:154 inc/settings.php:157
 
 
63
  msgid "Subject"
64
  msgstr "Asunto"
65
 
66
- #: inc/settings.php:90
67
  msgid "Do you want the subject field be displayed?"
68
  msgstr "¿Desea mostrar el campo \"Asunto\"?"
69
 
70
- #: inc/settings.php:101 inc/settings.php:160
 
71
  msgid "Message"
72
  msgstr "Mensaje"
73
 
74
- #: inc/settings.php:113
75
  msgid "Add a reCAPTCHA"
76
  msgstr "Añadir un reCAPTCHA"
77
 
78
- #: inc/settings.php:120
79
  msgid "Site key"
80
  msgstr "Clave del sitio"
81
 
82
- #: inc/settings.php:121
83
  msgid "Create an account here "
84
  msgstr "Crear una cuenta aquí "
85
 
86
- #: inc/settings.php:121
87
  msgid "to get the Site key and the Secret key for the reCaptcha."
88
  msgstr "para obtener la clave del sitio y la clave secreta para el reCaptcha."
89
 
90
- #: inc/settings.php:127
91
  msgid "Secret key"
92
  msgstr "Clave secreta"
93
 
94
- #: inc/settings.php:136
 
95
  msgid "Labels"
96
  msgstr "Etiquetas"
97
 
98
- #: inc/settings.php:145
99
  msgid "Your Name"
100
  msgstr "Nombre"
101
 
102
- #: inc/settings.php:148
103
  msgid "Email"
104
  msgstr "Correo electrónico"
105
 
106
- #: inc/settings.php:151
107
  msgid "Your Email"
108
  msgstr "Correo electrónico"
109
 
110
- #: inc/settings.php:163
111
  msgid "Your message"
112
  msgstr "Mensaje"
113
 
114
- #: inc/settings.php:166
115
  msgid "Submit button"
116
  msgstr "Botón \"Enviar\""
117
 
118
- #: inc/settings.php:174
 
119
  msgid "Messages"
120
  msgstr "Mensajes"
121
 
122
- #: inc/settings.php:180
123
  msgid "Name required and missing"
124
  msgstr "Falta el nombre y es obligatorio"
125
 
126
- #: inc/settings.php:183
127
  msgid "Enter your name"
128
  msgstr "Escriba su nombre"
129
 
130
- #: inc/settings.php:186
131
  msgid "E-mail required and missing"
132
  msgstr "Falta el correo electrónico y es obligatorio"
133
 
134
- #: inc/settings.php:189
135
  msgid "Enter a valid email"
136
  msgstr "Escriba un correo electrónico válido"
137
 
138
- #: inc/settings.php:192
139
  msgid "Subject required and missing"
140
  msgstr "Falta el asunto y es obligatorio"
141
 
142
- #: inc/settings.php:195
143
  msgid "Please enter a subject"
144
  msgstr "Por favor, escriba un asunto"
145
 
146
- #: inc/settings.php:198
147
  msgid "Question/comment is missing"
148
  msgstr "Falta la pregunta/comentario"
149
 
150
- #: inc/settings.php:201
151
  msgid "Enter your question or comment"
152
  msgstr "Escriba su pregunta o comentario"
153
 
154
- #: inc/settings.php:204
155
  msgid "Successful form submission text"
156
  msgstr "Envío del formulario con éxito"
157
 
158
- #: inc/settings.php:205
159
- msgid ""
160
- "This text is used on the page if no \"Thank You\" URL is set above. This is "
161
- "also used as the confirmation email title, if one is set to send out."
162
- msgstr ""
163
- "Este texto se usa en la página cuando no se asigna una URL distinta para el "
164
- "mensaje de agradecimiento. También se utiliza como título del mensaje de "
165
- "confirmación, si ha establecido que se envíe."
166
 
167
- #: inc/settings.php:207
168
  msgid "Thanks, your email was sent successfully!"
169
  msgstr "¡Gracias, su mensaje fue enviado con éxito!"
170
 
171
- #: inc/settings.php:212
172
- msgid "Form processing options"
173
- msgstr "Opciones de procesamiento del formulario"
174
-
175
- #: inc/settings.php:218
176
- msgid "Contact notification sender email"
177
- msgstr "Correo electrónico del remitente para notificaciones"
178
-
179
- #: inc/settings.php:219
180
- msgid ""
181
- "Email to use for the sender of the contact form emails both to the "
182
- "recipients below and the contact form submitter (if this is activated "
183
- "below). The domain for this email address should match your site's domain."
184
- msgstr ""
185
- "El correo electrónico para usar como remitente de los mensajes, tanto para "
186
- "los siguientes destinatarios como para quien envía el mensaje desde el "
187
- "formulario (si se activa a continuación). El dominio de esta dirección de "
188
- "correo electrónico debe coincidir con el dominio de su sitio."
189
-
190
- #: inc/settings.php:225
191
- msgid "Use the email address above as notification sender"
192
- msgstr ""
193
- "Usar la dirección de correo electrónico anterior como remitente de la "
194
- "notificación"
195
-
196
- #: inc/settings.php:226
197
- msgid ""
198
- "When this is on, the notification emails sent from your site will come from "
199
- "the email address above. When this is off, the emails will come from the "
200
- "form submitter, making it easy to reply. If you are not receiving "
201
- "notifications from the site, then turn this option off as your email server "
202
- "might be marking them as spam."
203
- msgstr ""
204
- "Cuando esto está activado, los mensajes de notificación enviados desde su "
205
- "sitio provendrán de la dirección de correo electrónico anterior. Cuando esto "
206
- "está desactivado, los mensajes provendrán del remitente del formulario, para "
207
- "que sea más fácil responderlos. Si no está recibiendo notificaciones desde "
208
- "el sitio, desactive esta opción, ya que su servidor de correo puede estar "
209
- "marcándolos como spam."
210
-
211
- #: inc/settings.php:231
212
- msgid "Contact submission recipients"
213
- msgstr "Destinatarios del envío"
214
-
215
- #: inc/settings.php:232
216
- msgid ""
217
- "Email address(es) to receive contact submission notifications. You can "
218
- "separate multiple emails with a comma."
219
- msgstr ""
220
- "La o las direcciones de correo electrónico para recibir notificaciones de "
221
- "envío. Puede separar múltiples direcciones con una coma."
222
-
223
- #: inc/settings.php:237
224
- msgid "Store submissions in the database"
225
- msgstr "Guardar los envíos en la base de datos"
226
-
227
- #: inc/settings.php:238
228
- msgid ""
229
- "Should the submissions be stored in the admin area? If chosen, contact form "
230
- "submissions will be saved in Contacts on the left (appears after this option "
231
- "is activated)."
232
- msgstr ""
233
- "¿Los envíos deben guardarse en el área de administración? Si se selecciona, "
234
- "los envíos desde el formulario de contacto serán guardados en \"Contactos\", "
235
- "en la parte la izquierda (aparecerá una vez activada esta opción)."
236
-
237
- #: inc/settings.php:243
238
- msgid "Use the comments blacklist to restrict submissions"
239
- msgstr "Usar lista negra de comentarios para restringir envíos"
240
-
241
- #: inc/settings.php:244
242
- msgid ""
243
- "Should form submission IP and email addresses be compared against the "
244
- "Comment Blacklist, found in"
245
- msgstr ""
246
- "¿Las IP y direcciones de los envíos desde el formulario deben compararse con "
247
- "la lista negra de comentarios que se encuentra en"
248
-
249
- #: inc/settings.php:244
250
- msgid "wp-admin > Settings > Discussion > Comment Blacklist?"
251
- msgstr "WordPress > Ajustes > Comentarios > Lista negra de comentarios?"
252
-
253
- #: inc/settings.php:249
254
- msgid "Send email confirmation to form submitter"
255
- msgstr "Enviar un mensaje de confirmación al remitente del formulario"
256
-
257
- #: inc/settings.php:250
258
- msgid ""
259
- "Adding text here will send an email to the form submitter. The email uses "
260
- "the \"Text to show when form is submitted...\" field below as the subject "
261
- "line. Plain text only here, no HTML."
262
- msgstr ""
263
- "Si añade un texto aquí se le enviará un mensaje al remitente del formulario. "
264
- "Este mensaje usa el siguiente campo \"Texto para mostrar cuando se envía el "
265
- "formulario...\" como línea del asunto. Solo se admite texto sin formato, no "
266
- "HTML."
267
-
268
- #: inc/settings.php:257
269
  msgid "Use SMTP to send emails?"
270
  msgstr "¿Usar SMTP para enviar los mensajes?"
271
 
272
- #: inc/settings.php:258
273
  msgid "Instead of PHP mail function"
274
  msgstr "En lugar de la función PHP mail"
275
 
276
- #: inc/settings.php:263
277
  msgid "SMTP Host"
278
  msgstr "Servidor de SMTP"
279
 
280
- #: inc/settings.php:269
281
  msgid "SMTP Port"
282
  msgstr "Puerto SMTP"
283
 
284
- #: inc/settings.php:275
285
  msgid "Use SMTP Authentication?"
286
  msgstr "¿Usar autenticación SMTP?"
287
 
288
- #: inc/settings.php:276
289
- msgid ""
290
- "If you check this box, make sure the SMTP Username and SMTP Password are "
291
- "completed."
292
- msgstr ""
293
- "Si selecciona esta casilla, asegúrese de completar el nombre de usuario SMTP "
294
- "y la contraseña SMTP."
295
 
296
- #: inc/settings.php:281
297
  msgid "SMTP Username"
298
  msgstr "Nombre de usuario SMTP"
299
 
300
- #: inc/settings.php:287
301
  msgid "SMTP Password"
302
  msgstr "Contraseña SMTP"
303
 
304
- #: inc/settings.php:305
305
  msgid "Pirate Forms settings"
306
  msgstr "Ajustes de Pirate Forms"
307
 
308
- #: inc/settings.php:306 inc/widget.php:15 inc/widget.php:16
 
 
 
309
  msgid "Pirate Forms"
310
  msgstr "Pirate Forms"
311
 
312
- #: inc/settings.php:542
313
- msgid "Save changes"
314
- msgstr "Guardar cambios"
315
-
316
- #: inc/widget.php:75
317
- msgid "Title"
318
- msgstr "Título"
319
 
320
- #: inc/widget.php:76
321
- msgid "Text above form"
322
- msgstr "Texto arriba del formulario"
323
 
324
- #: inc/widget.php:79
325
- msgid "Title:"
326
- msgstr "Título:"
 
327
 
328
- #: inc/widget.php:83
329
- msgid "Subtext:"
330
- msgstr "Subtítulo:"
 
331
 
332
- #: pirate-forms.php:294
333
- msgid "Contact Referrer"
334
- msgstr "Contacto referente"
335
 
336
- #: pirate-forms.php:305
337
- msgid "Referring page"
338
- msgstr "Página de referencia"
339
 
340
- #: pirate-forms.php:345
341
- msgid "Nonce failed!"
342
- msgstr "¡Falló nonce!"
343
 
344
- #: pirate-forms.php:351
345
- msgid "Form submission failed!"
346
- msgstr "¡Falló el envío del formulario!"
347
 
348
- #: pirate-forms.php:356
349
- msgid "Contact form submission on"
350
- msgstr "Envío del formulario de contacto en"
351
 
352
- #: pirate-forms.php:437 pirate-forms.php:450
353
- msgid "Wrong reCAPTCHA"
354
- msgstr "reCAPTCHA incorrecto"
355
 
356
- #: pirate-forms.php:461
357
- msgid "Please enter one or more Contact submission recipients"
358
- msgstr "Por favor, introduzca uno o más destinatarios del envío"
359
 
360
- #: pirate-forms.php:490
361
- msgid "Form submission blocked!"
362
- msgstr "¡Envío de formulario bloqueado!"
363
 
364
- #: pirate-forms.php:683
365
- msgid "Add New Contact"
366
- msgstr "Añadir nuevo contacto"
367
 
368
- #: pirate-forms.php:684
369
- msgid "New Contact"
370
- msgstr "Nuevo contacto"
371
 
372
- #: pirate-forms.php:685
373
- msgid "Edit Contact"
374
- msgstr "Editar contacto"
375
 
376
- #: pirate-forms.php:686
377
- msgid "View Contact"
378
- msgstr "Ver contacto"
379
 
380
- #: pirate-forms.php:687
381
- msgid "All Contacts"
382
- msgstr "Todos los contactos"
383
 
384
- #: pirate-forms.php:688
385
- msgid "Search Contacts"
386
- msgstr "Buscar contactos"
387
 
388
- #: pirate-forms.php:689
389
- msgid "Parent Contacts:"
390
- msgstr "Contactos superiores:"
391
 
392
- #: pirate-forms.php:690
393
- msgid "No contacts found."
394
- msgstr "No se han encontrado contactos."
395
 
396
- #: pirate-forms.php:691
397
- msgid "No contacts found in Trash."
398
- msgstr "No se han encontrado contactos en la papelera."
399
 
400
- #: pirate-forms.php:695
401
- msgid "Contacts from Pirate Forms"
402
- msgstr "Contactos de Pirate Forms"
403
 
404
- #: pirate-forms.php:717
405
- msgid "Settings"
406
- msgstr "Ajustes"
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
2
  msgstr ""
3
  "Project-Id-Version: Pirate Forms\n"
4
  "Report-Msgid-Bugs-To: \n"
5
+ "POT-Creation-Date: 2016-03-09 18:51+0200\n"
6
+ "PO-Revision-Date: 2016-03-09 18:52+0200\n"
7
+ "Last-Translator: \n"
8
  "Language-Team: \n"
 
9
  "MIME-Version: 1.0\n"
10
  "Content-Type: text/plain; charset=UTF-8\n"
11
  "Content-Transfer-Encoding: 8bit\n"
12
+ "X-Poedit-KeywordsList: _;gettext;gettext_noop;__;_e;esc_html__;esc_html_e\n"
13
+ "X-Poedit-Basepath: ../\n"
 
14
  "X-Poedit-SearchPath-0: .\n"
15
  "X-Poedit-SearchPath-1: inc\n"
16
 
17
+ #: pirate-forms.php:295
18
+ msgid "Contact Referrer"
19
+ msgstr "Contacto referente"
20
+
21
+ #: pirate-forms.php:306
22
+ msgid "Referring page"
23
+ msgstr "Página de referencia"
24
+
25
+ #: pirate-forms.php:346
26
+ msgid "Nonce failed!"
27
+ msgstr "¡Falló nonce!"
28
+
29
+ #: pirate-forms.php:352
30
+ msgid "Form submission failed!"
31
+ msgstr "¡Falló el envío del formulario!"
32
+
33
+ #: pirate-forms.php:357
34
+ msgid "Contact form submission on"
35
+ msgstr "Envío del formulario de contacto en"
36
+
37
+ #: pirate-forms.php:438
38
+ #: pirate-forms.php:451
39
+ msgid "Wrong reCAPTCHA"
40
+ msgstr "reCAPTCHA incorrecto"
41
+
42
+ #: pirate-forms.php:462
43
+ msgid "Please enter one or more Contact submission recipients"
44
+ msgstr "Por favor, introduzca uno o más destinatarios del envío"
45
+
46
+ #: pirate-forms.php:473
47
+ #, fuzzy
48
+ msgid "IP address: "
49
+ msgstr "Dirección de correo electrónico"
50
+
51
+ #: pirate-forms.php:473
52
+ msgid "IP search:"
53
+ msgstr ""
54
+
55
+ #: pirate-forms.php:478
56
+ msgid "Came from: "
57
+ msgstr ""
58
+
59
+ #: pirate-forms.php:482
60
+ msgid "Sent from page: "
61
+ msgstr ""
62
+
63
+ #: pirate-forms.php:491
64
+ msgid "Form submission blocked!"
65
+ msgstr "¡Envío de formulario bloqueado!"
66
+
67
+ #: pirate-forms.php:705
68
+ msgid "Add New Contact"
69
+ msgstr "Añadir nuevo contacto"
70
+
71
+ #: pirate-forms.php:706
72
+ msgid "New Contact"
73
+ msgstr "Nuevo contacto"
74
+
75
+ #: pirate-forms.php:707
76
+ msgid "Edit Contact"
77
+ msgstr "Editar contacto"
78
+
79
+ #: pirate-forms.php:708
80
+ msgid "View Contact"
81
+ msgstr "Ver contacto"
82
+
83
+ #: pirate-forms.php:709
84
+ msgid "All Contacts"
85
+ msgstr "Todos los contactos"
86
+
87
+ #: pirate-forms.php:710
88
+ msgid "Search Contacts"
89
+ msgstr "Buscar contactos"
90
+
91
+ #: pirate-forms.php:711
92
+ msgid "Parent Contacts:"
93
+ msgstr "Contactos superiores:"
94
+
95
+ #: pirate-forms.php:712
96
+ msgid "No contacts found."
97
+ msgstr "No se han encontrado contactos."
98
+
99
+ #: pirate-forms.php:713
100
+ msgid "No contacts found in Trash."
101
+ msgstr "No se han encontrado contactos en la papelera."
102
+
103
+ #: pirate-forms.php:717
104
+ msgid "Contacts from Pirate Forms"
105
+ msgstr "Contactos de Pirate Forms"
106
+
107
+ #: pirate-forms.php:739
108
+ msgid "Settings"
109
+ msgstr "Ajustes"
110
+
111
  #: inc/helpers.php:16
112
  msgid "Sorry, an error occured."
113
  msgstr "Disculpe, ha ocurrido un error."
114
 
115
+ #: inc/settings.php:62
116
+ #: inc/settings.php:66
117
  msgid "Send Message"
118
  msgstr "Enviar mensaje"
119
 
120
+ #: inc/settings.php:84
121
+ msgid "Form processing options"
122
+ msgstr "Opciones de procesamiento del formulario"
123
+
124
+ #: inc/settings.php:90
125
+ msgid "Contact notification sender email"
126
+ msgstr "Correo electrónico del remitente para notificaciones"
127
+
128
+ #: inc/settings.php:91
129
+ msgid "Insert [email] to use the contact form submitter's email."
130
+ msgstr ""
131
+
132
+ #: inc/settings.php:91
133
+ #, fuzzy
134
+ msgid "Email to use for the sender of the contact form emails both to the recipients below and the contact form submitter (if this is activated below). The domain for this email address should match your site's domain."
135
+ msgstr "El correo electrónico para usar como remitente de los mensajes, tanto para los siguientes destinatarios como para quien envía el mensaje desde el formulario (si se activa a continuación). El dominio de esta dirección de correo electrónico debe coincidir con el dominio de su sitio."
136
+
137
+ #: inc/settings.php:96
138
+ msgid "Contact submission recipients"
139
+ msgstr "Destinatarios del envío"
140
+
141
+ #: inc/settings.php:97
142
+ msgid "Email address(es) to receive contact submission notifications. You can separate multiple emails with a comma."
143
+ msgstr "La o las direcciones de correo electrónico para recibir notificaciones de envío. Puede separar múltiples direcciones con una coma."
144
+
145
+ #: inc/settings.php:102
146
+ msgid "Store submissions in the database"
147
+ msgstr "Guardar los envíos en la base de datos"
148
+
149
+ #: inc/settings.php:103
150
+ msgid "Should the submissions be stored in the admin area? If chosen, contact form submissions will be saved in Contacts on the left (appears after this option is activated)."
151
+ msgstr "¿Los envíos deben guardarse en el área de administración? Si se selecciona, los envíos desde el formulario de contacto serán guardados en \"Contactos\", en la parte la izquierda (aparecerá una vez activada esta opción)."
152
+
153
+ #: inc/settings.php:108
154
+ msgid "Use the comments blacklist to restrict submissions"
155
+ msgstr "Usar lista negra de comentarios para restringir envíos"
156
+
157
+ #: inc/settings.php:109
158
+ msgid "Should form submission IP and email addresses be compared against the Comment Blacklist, found in"
159
+ msgstr "¿Las IP y direcciones de los envíos desde el formulario deben compararse con la lista negra de comentarios que se encuentra en"
160
+
161
+ #: inc/settings.php:109
162
+ msgid "wp-admin > Settings > Discussion > Comment Blacklist?"
163
+ msgstr "WordPress > Ajustes > Comentarios > Lista negra de comentarios?"
164
+
165
+ #: inc/settings.php:114
166
+ msgid "Send email confirmation to form submitter"
167
+ msgstr "Enviar un mensaje de confirmación al remitente del formulario"
168
+
169
+ #: inc/settings.php:115
170
+ msgid "Adding text here will send an email to the form submitter. The email uses the \"Text to show when form is submitted...\" field below as the subject line. Plain text only here, no HTML."
171
+ msgstr "Si añade un texto aquí se le enviará un mensaje al remitente del formulario. Este mensaje usa el siguiente campo \"Texto para mostrar cuando se envía el formulario...\" como línea del asunto. Solo se admite texto sin formato, no HTML."
172
+
173
+ #: inc/settings.php:122
174
+ #: inc/settings.php:424
175
  msgid "Fields"
176
  msgstr "Campos"
177
 
178
+ #: inc/settings.php:129
179
+ #: inc/settings.php:206
180
  msgid "Name"
181
  msgstr "Nombre"
182
 
183
+ #: inc/settings.php:130
184
  msgid "Do you want the name field to be displayed?"
185
  msgstr "¿Desea mostrar el campo \"Nombre\"?"
186
 
187
+ #: inc/settings.php:134
188
+ #: inc/settings.php:146
189
+ #: inc/settings.php:158
190
+ #: inc/settings.php:170
191
  msgid "None"
192
  msgstr "No"
193
 
194
+ #: inc/settings.php:135
195
+ #: inc/settings.php:147
196
+ #: inc/settings.php:159
197
+ #: inc/settings.php:171
198
  msgid "Yes but not required"
199
  msgstr "Sí, pero no obligatorio"
200
 
201
+ #: inc/settings.php:136
202
+ #: inc/settings.php:148
203
+ #: inc/settings.php:160
204
+ #: inc/settings.php:172
205
  msgid "Required"
206
  msgstr "Obligatorio"
207
 
208
+ #: inc/settings.php:141
209
  msgid "Email address"
210
  msgstr "Dirección de correo electrónico"
211
 
212
+ #: inc/settings.php:142
213
  msgid "Do you want the email address field be displayed?"
214
  msgstr "¿Desea mostrar el campo \"Dirección de correo electrónico\"?"
215
 
216
+ #: inc/settings.php:153
217
+ #: inc/settings.php:218
218
+ #: inc/settings.php:221
219
  msgid "Subject"
220
  msgstr "Asunto"
221
 
222
+ #: inc/settings.php:154
223
  msgid "Do you want the subject field be displayed?"
224
  msgstr "¿Desea mostrar el campo \"Asunto\"?"
225
 
226
+ #: inc/settings.php:165
227
+ #: inc/settings.php:224
228
  msgid "Message"
229
  msgstr "Mensaje"
230
 
231
+ #: inc/settings.php:177
232
  msgid "Add a reCAPTCHA"
233
  msgstr "Añadir un reCAPTCHA"
234
 
235
+ #: inc/settings.php:184
236
  msgid "Site key"
237
  msgstr "Clave del sitio"
238
 
239
+ #: inc/settings.php:185
240
  msgid "Create an account here "
241
  msgstr "Crear una cuenta aquí "
242
 
243
+ #: inc/settings.php:185
244
  msgid "to get the Site key and the Secret key for the reCaptcha."
245
  msgstr "para obtener la clave del sitio y la clave secreta para el reCaptcha."
246
 
247
+ #: inc/settings.php:191
248
  msgid "Secret key"
249
  msgstr "Clave secreta"
250
 
251
+ #: inc/settings.php:200
252
+ #: inc/settings.php:425
253
  msgid "Labels"
254
  msgstr "Etiquetas"
255
 
256
+ #: inc/settings.php:209
257
  msgid "Your Name"
258
  msgstr "Nombre"
259
 
260
+ #: inc/settings.php:212
261
  msgid "Email"
262
  msgstr "Correo electrónico"
263
 
264
+ #: inc/settings.php:215
265
  msgid "Your Email"
266
  msgstr "Correo electrónico"
267
 
268
+ #: inc/settings.php:227
269
  msgid "Your message"
270
  msgstr "Mensaje"
271
 
272
+ #: inc/settings.php:230
273
  msgid "Submit button"
274
  msgstr "Botón \"Enviar\""
275
 
276
+ #: inc/settings.php:238
277
+ #: inc/settings.php:426
278
  msgid "Messages"
279
  msgstr "Mensajes"
280
 
281
+ #: inc/settings.php:244
282
  msgid "Name required and missing"
283
  msgstr "Falta el nombre y es obligatorio"
284
 
285
+ #: inc/settings.php:247
286
  msgid "Enter your name"
287
  msgstr "Escriba su nombre"
288
 
289
+ #: inc/settings.php:250
290
  msgid "E-mail required and missing"
291
  msgstr "Falta el correo electrónico y es obligatorio"
292
 
293
+ #: inc/settings.php:253
294
  msgid "Enter a valid email"
295
  msgstr "Escriba un correo electrónico válido"
296
 
297
+ #: inc/settings.php:256
298
  msgid "Subject required and missing"
299
  msgstr "Falta el asunto y es obligatorio"
300
 
301
+ #: inc/settings.php:259
302
  msgid "Please enter a subject"
303
  msgstr "Por favor, escriba un asunto"
304
 
305
+ #: inc/settings.php:262
306
  msgid "Question/comment is missing"
307
  msgstr "Falta la pregunta/comentario"
308
 
309
+ #: inc/settings.php:265
310
  msgid "Enter your question or comment"
311
  msgstr "Escriba su pregunta o comentario"
312
 
313
+ #: inc/settings.php:268
314
  msgid "Successful form submission text"
315
  msgstr "Envío del formulario con éxito"
316
 
317
+ #: inc/settings.php:269
318
+ msgid "This text is used on the page if no \"Thank You\" URL is set above. This is also used as the confirmation email title, if one is set to send out."
319
+ msgstr "Este texto se usa en la página cuando no se asigna una URL distinta para el mensaje de agradecimiento. También se utiliza como título del mensaje de confirmación, si ha establecido que se envíe."
 
 
 
 
 
320
 
321
+ #: inc/settings.php:271
322
  msgid "Thanks, your email was sent successfully!"
323
  msgstr "¡Gracias, su mensaje fue enviado con éxito!"
324
 
325
+ #: inc/settings.php:276
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
326
  msgid "Use SMTP to send emails?"
327
  msgstr "¿Usar SMTP para enviar los mensajes?"
328
 
329
+ #: inc/settings.php:277
330
  msgid "Instead of PHP mail function"
331
  msgstr "En lugar de la función PHP mail"
332
 
333
+ #: inc/settings.php:282
334
  msgid "SMTP Host"
335
  msgstr "Servidor de SMTP"
336
 
337
+ #: inc/settings.php:288
338
  msgid "SMTP Port"
339
  msgstr "Puerto SMTP"
340
 
341
+ #: inc/settings.php:294
342
  msgid "Use SMTP Authentication?"
343
  msgstr "¿Usar autenticación SMTP?"
344
 
345
+ #: inc/settings.php:295
346
+ msgid "If you check this box, make sure the SMTP Username and SMTP Password are completed."
347
+ msgstr "Si selecciona esta casilla, asegúrese de completar el nombre de usuario SMTP y la contraseña SMTP."
 
 
 
 
348
 
349
+ #: inc/settings.php:300
350
  msgid "SMTP Username"
351
  msgstr "Nombre de usuario SMTP"
352
 
353
+ #: inc/settings.php:306
354
  msgid "SMTP Password"
355
  msgstr "Contraseña SMTP"
356
 
357
+ #: inc/settings.php:324
358
  msgid "Pirate Forms settings"
359
  msgstr "Ajustes de Pirate Forms"
360
 
361
+ #: inc/settings.php:325
362
+ #: inc/settings.php:417
363
+ #: inc/widget.php:15
364
+ #: inc/widget.php:16
365
  msgid "Pirate Forms"
366
  msgstr "Pirate Forms"
367
 
368
+ #: inc/settings.php:422
369
+ msgid "How to use"
370
+ msgstr ""
 
 
 
 
371
 
372
+ #: inc/settings.php:423
373
+ msgid "Options"
374
+ msgstr ""
375
 
376
+ #: inc/settings.php:427
377
+ #, fuzzy
378
+ msgid "SMTP"
379
+ msgstr "Servidor de SMTP"
380
 
381
+ #: inc/settings.php:434
382
+ #, fuzzy
383
+ msgid "Welcome to Pirate Forms!"
384
+ msgstr "Pirate Forms"
385
 
386
+ #: inc/settings.php:435
387
+ msgid "To get started, just "
388
+ msgstr ""
389
 
390
+ #: inc/settings.php:435
391
+ msgid "configure all the options "
392
+ msgstr ""
393
 
394
+ #: inc/settings.php:435
395
+ msgid "you need, hit save and start using the created form."
396
+ msgstr ""
397
 
398
+ #: inc/settings.php:439
399
+ msgid "There are 3 ways of using the newly created form:"
400
+ msgstr ""
401
 
402
+ #: inc/settings.php:440
403
+ msgid "1. Use the shortcode "
404
+ msgstr ""
405
 
406
+ #: inc/settings.php:440
407
+ msgid "in any page or post."
408
+ msgstr ""
409
 
410
+ #: inc/settings.php:441
411
+ msgid "2. Add a "
412
+ msgstr ""
413
 
414
+ #: inc/settings.php:441
415
+ msgid "widget"
416
+ msgstr ""
417
 
418
+ #: inc/settings.php:442
419
+ msgid "3. Use the shortcode "
420
+ msgstr ""
421
 
422
+ #: inc/settings.php:442
423
+ msgid "in the theme's files."
424
+ msgstr ""
425
 
426
+ #: inc/settings.php:561
427
+ msgid "Save changes"
428
+ msgstr "Guardar cambios"
429
 
430
+ #: inc/settings.php:575
431
+ msgid "Get Our Free Email Course"
432
+ msgstr ""
433
 
434
+ #: inc/settings.php:595
435
+ msgid "Ready to learn how to reduce your website loading times by half? Come and join the 1st lesson here!"
436
+ msgstr ""
437
 
438
+ #: inc/settings.php:597
439
+ msgid "Thank you for subscribing! You have been added to the mailing list and will receive the next email information in the coming weeks. If you ever wish to unsubscribe, simply use the \"Unsubscribe\" link included in each newsletter."
440
+ msgstr ""
441
 
442
+ #: inc/widget.php:75
443
+ msgid "Title"
444
+ msgstr "Título"
445
 
446
+ #: inc/widget.php:76
447
+ msgid "Text above form"
448
+ msgstr "Texto arriba del formulario"
449
 
450
+ #: inc/widget.php:79
451
+ msgid "Title:"
452
+ msgstr "Título:"
453
 
454
+ #: inc/widget.php:83
455
+ msgid "Subtext:"
456
+ msgstr "Subtítulo:"
457
 
458
+ #~ msgid "Use the email address above as notification sender"
459
+ #~ msgstr ""
460
+ #~ "Usar la dirección de correo electrónico anterior como remitente de la "
461
+ #~ "notificación"
462
+
463
+ #~ msgid ""
464
+ #~ "When this is on, the notification emails sent from your site will come "
465
+ #~ "from the email address above. When this is off, the emails will come from "
466
+ #~ "the form submitter, making it easy to reply. If you are not receiving "
467
+ #~ "notifications from the site, then turn this option off as your email "
468
+ #~ "server might be marking them as spam."
469
+ #~ msgstr ""
470
+ #~ "Cuando esto está activado, los mensajes de notificación enviados desde su "
471
+ #~ "sitio provendrán de la dirección de correo electrónico anterior. Cuando "
472
+ #~ "esto está desactivado, los mensajes provendrán del remitente del "
473
+ #~ "formulario, para que sea más fácil responderlos. Si no está recibiendo "
474
+ #~ "notificaciones desde el sitio, desactive esta opción, ya que su servidor "
475
+ #~ "de correo puede estar marcándolos como spam."
languages/pirate-forms-ro_RO.mo CHANGED
Binary file
languages/pirate-forms-ro_RO.po CHANGED
@@ -2,347 +2,444 @@ msgid ""
2
  msgstr ""
3
  "Project-Id-Version: Pirate Forms\n"
4
  "Report-Msgid-Bugs-To: \n"
5
- "POT-Creation-Date: 2015-09-18 18:41+0200\n"
6
- "PO-Revision-Date: 2015-09-25 15:53+0200\n"
7
  "Last-Translator: \n"
8
  "Language-Team: \n"
9
  "MIME-Version: 1.0\n"
10
  "Content-Type: text/plain; charset=UTF-8\n"
11
  "Content-Transfer-Encoding: 8bit\n"
12
- "X-Poedit-KeywordsList: _;gettext;gettext_noop;__;_e\n"
13
  "X-Poedit-Basepath: ../\n"
14
  "X-Poedit-SearchPath-0: .\n"
15
  "X-Poedit-SearchPath-1: inc\n"
16
 
17
- #: pirate-forms.php:261
18
  msgid "Contact Referrer"
19
  msgstr "Contact Referrer"
20
 
21
- #: pirate-forms.php:272
22
  msgid "Referring page"
23
  msgstr "Pagina de referință"
24
 
25
- #: pirate-forms.php:312
26
  msgid "Nonce failed!"
27
  msgstr "Eroare la nounce!"
28
 
29
- #: pirate-forms.php:318
30
  msgid "Form submission failed!"
31
  msgstr "Trimiterea formularului nu a reușit !"
32
 
33
- #: pirate-forms.php:323
34
  msgid "Contact form submission on"
35
  msgstr "Trimiterea formularului de contact pe"
36
 
37
- #: pirate-forms.php:404
38
- #: pirate-forms.php:417
39
  msgid "Wrong reCAPTCHA"
40
  msgstr "reCAPTCHA greșită"
41
 
42
- #: pirate-forms.php:448
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
43
  msgid "Form submission blocked!"
44
  msgstr "Trimiterea formularului a fost blocată!"
45
 
46
- #: pirate-forms.php:630
47
  msgid "Add New Contact"
48
  msgstr "Adauga contact nou"
49
 
50
- #: pirate-forms.php:631
51
  msgid "New Contact"
52
  msgstr "Contact nou"
53
 
54
- #: pirate-forms.php:632
55
  msgid "Edit Contact"
56
  msgstr "Editeaza contact"
57
 
58
- #: pirate-forms.php:633
59
  msgid "View Contact"
60
  msgstr "Vezi Contact"
61
 
62
- #: pirate-forms.php:634
63
  msgid "All Contacts"
64
  msgstr "Toate Contactele"
65
 
66
- #: pirate-forms.php:635
67
  msgid "Search Contacts"
68
  msgstr "Caută contacte"
69
 
70
- #: pirate-forms.php:636
71
  msgid "Parent Contacts:"
72
  msgstr "Părinte Contacte:"
73
 
74
- #: pirate-forms.php:637
75
  msgid "No contacts found."
76
  msgstr "Nu au fost găsite contacte"
77
 
78
- #: pirate-forms.php:638
79
  msgid "No contacts found in Trash."
80
  msgstr " Nu au fost găsite contacte în coșul de gunoi"
81
 
82
- #: pirate-forms.php:642
83
  msgid "Contacts from Pirate Forms"
84
  msgstr "Contacte din Formularul Pirate"
85
 
 
 
 
 
86
  #: inc/helpers.php:16
87
  msgid "Sorry, an error occured."
88
  msgstr "Ne pare rău, a apărut o eroare."
89
 
90
- #: inc/settings.php:38
91
- #: inc/settings.php:42
92
  msgid "Send Message"
93
  msgstr "Trimite mesajul"
94
 
95
- #: inc/settings.php:59
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
96
  msgid "Fields"
97
  msgstr "Câmpuri"
98
 
99
- #: inc/settings.php:66
100
- #: inc/settings.php:143
101
  msgid "Name"
102
  msgstr "Nume"
103
 
104
- #: inc/settings.php:67
105
  msgid "Do you want the name field to be displayed?"
106
  msgstr "Vrei să fie afișat câmpul nume?"
107
 
108
- #: inc/settings.php:71
109
- #: inc/settings.php:83
110
- #: inc/settings.php:95
111
- #: inc/settings.php:107
112
  msgid "None"
113
  msgstr "Nu"
114
 
115
- #: inc/settings.php:72
116
- #: inc/settings.php:84
117
- #: inc/settings.php:96
118
- #: inc/settings.php:108
119
  msgid "Yes but not required"
120
  msgstr "Da, dar nu obligatoriu"
121
 
122
- #: inc/settings.php:73
123
- #: inc/settings.php:85
124
- #: inc/settings.php:97
125
- #: inc/settings.php:109
126
  msgid "Required"
127
  msgstr "Obligatoriu"
128
 
129
- #: inc/settings.php:78
130
  msgid "Email address"
131
  msgstr "Adresă de email"
132
 
133
- #: inc/settings.php:79
134
  msgid "Do you want the email address field be displayed?"
135
  msgstr "Vreți sa fie afișat câmpul adresa de email?"
136
 
137
- #: inc/settings.php:90
138
- #: inc/settings.php:155
139
- #: inc/settings.php:158
140
  msgid "Subject"
141
  msgstr "Subiect"
142
 
143
- #: inc/settings.php:91
144
  msgid "Do you want the subject field be displayed?"
145
  msgstr "Vrei să fie afișat câmpul subiect?"
146
 
147
- #: inc/settings.php:102
148
- #: inc/settings.php:161
149
  msgid "Message"
150
  msgstr "Mesaj"
151
 
152
- #: inc/settings.php:114
153
  msgid "Add a reCAPTCHA"
154
  msgstr "Adaugă reCAPTCHA"
155
 
156
- #: inc/settings.php:121
157
  msgid "Site key"
158
  msgstr "Cheia site-ului"
159
 
160
- #: inc/settings.php:122
161
  msgid "Create an account here "
162
  msgstr "Creează-ți un cont aici"
163
 
164
- #: inc/settings.php:122
165
  msgid "to get the Site key and the Secret key for the reCaptcha."
166
  msgstr "pentru a obține cheia site-ului și cheia secretă pentru reCAPTCHA."
167
 
168
- #: inc/settings.php:128
169
  msgid "Secret key"
170
  msgstr "Cheia secretă"
171
 
172
- #: inc/settings.php:137
 
173
  msgid "Labels"
174
  msgstr "Etichete"
175
 
176
- #: inc/settings.php:146
177
  msgid "Your Name"
178
  msgstr "Numele tău"
179
 
180
- #: inc/settings.php:149
181
  msgid "Email"
182
  msgstr "Email"
183
 
184
- #: inc/settings.php:152
185
  msgid "Your Email"
186
  msgstr "Emailul tău"
187
 
188
- #: inc/settings.php:164
189
  msgid "Your message"
190
  msgstr "Mesajul tău"
191
 
192
- #: inc/settings.php:167
193
  msgid "Submit button"
194
  msgstr "Buton de trimis formularul"
195
 
196
- #: inc/settings.php:175
 
197
  msgid "Messages"
198
  msgstr "Mesaje"
199
 
200
- #: inc/settings.php:181
201
  msgid "Name required and missing"
202
  msgstr "Numele este necesar și lipsește"
203
 
204
- #: inc/settings.php:184
205
  msgid "Enter your name"
206
  msgstr "Introdu numele tău"
207
 
208
- #: inc/settings.php:187
209
  msgid "E-mail required and missing"
210
  msgstr "Adresa de e-mail este necesară și lipsește"
211
 
212
- #: inc/settings.php:190
213
  msgid "Enter a valid email"
214
  msgstr "Introduceți o adresă de e-mail validă"
215
 
216
- #: inc/settings.php:193
217
  msgid "Subject required and missing"
218
  msgstr "Subiectul este necesar și lipseşte"
219
 
220
- #: inc/settings.php:196
221
  msgid "Please enter a subject"
222
  msgstr "Vă rugăm să introduceți un subiect"
223
 
224
- #: inc/settings.php:199
225
  msgid "Question/comment is missing"
226
  msgstr "Intrebarea / comentariul lipsește"
227
 
228
- #: inc/settings.php:202
229
  msgid "Enter your question or comment"
230
  msgstr "Introduceți întrebarea dvs. sau comentariul"
231
 
232
- #: inc/settings.php:205
233
  msgid "Successful form submission text"
234
  msgstr "Mesajul de succes pentru formular"
235
 
236
- #: inc/settings.php:206
237
  msgid "This text is used on the page if no \"Thank You\" URL is set above. This is also used as the confirmation email title, if one is set to send out."
238
  msgstr "Acest text este folosit în pagină dacă nu este setat mai sus \" Thank You \" URL. Acest text este, de asemenea, utilizat ca titlul email-ului de confirmare, în cazul în care unul este setat."
239
 
240
- #: inc/settings.php:208
241
  msgid "Thanks, your email was sent successfully!"
242
  msgstr "Mulțumim , e-mailul a fost trimis cu succes !"
243
 
244
- #: inc/settings.php:213
245
- msgid "Form processing options"
246
- msgstr "Opțiuni de procesare a formularului"
247
-
248
- #: inc/settings.php:219
249
- msgid "Contact notification sender email"
250
- msgstr "Email-ul expeditorului pentru notificari"
251
-
252
- #: inc/settings.php:220
253
- msgid "Email to use for the sender of the contact form emails both to the recipients below and the contact form submitter (if this is activated below). The domain for this email address should match your site's domain."
254
- msgstr "E-mail utilizat pentru expeditorul e-mailurilor, atât la destinatarii de mai jos și cel care a trimis formularul de contact ( dacă acest lucru este activat de mai jos ) . Domeniul pentru această adresă de e-mail ar trebui să corespundă domeniului site-ului."
255
-
256
- #: inc/settings.php:226
257
- msgid "Use the email address above as notification sender"
258
- msgstr "Utilizați adresa de email de mai sus ca expeditorul notificarilor"
259
-
260
- #: inc/settings.php:227
261
- msgid "When this is on, the notification emails sent from your site will come from the email address above. When this is off, the emails will come from the form submitter, making it easy to reply. If you are not receiving notifications from the site, then turn this option off as your email server might be marking them as spam."
262
- msgstr "Când acestă căsuță este selectată, e-mailurile de notificare trimise de site-ul dvs. vor veni de la adresa de email de mai sus . Atunci când acestă căsuță nu este selectată , e-mailurile vor veni de la autorul formularului, făcând ușoară modalitatea de a răspunde. Dacă nu primiți notificări de pe site-ul dvs., dezactivați această opțiune deoarece server-ul dvs. de e-mail le-ar putea marca ca spam."
263
-
264
- #: inc/settings.php:232
265
- msgid "Contact submission recipients"
266
- msgstr "Destinatarii formularelor de contact"
267
-
268
- #: inc/settings.php:233
269
- msgid "Email address(es) to receive contact submission notifications. You can separate multiple emails with a comma."
270
- msgstr "Adresa/e de email, la care se primesc notificări. Puteți separa mai multe e-mailuri cu virgulă."
271
-
272
- #: inc/settings.php:238
273
- msgid "Store submissions in the database"
274
- msgstr "Doriți să salvați email-urile în baza de date"
275
-
276
- #: inc/settings.php:239
277
- msgid "Should the submissions be stored in the admin area? If chosen, contact form submissions will be saved in Contacts on the left (appears after this option is activated)."
278
- msgstr "Doriți ca observațiile să fie stocate în zona de admin? Dacă da , email-urile vor fi salvate în Contacte în meniul din stanga ( apare după ce această opțiune este activată)."
279
-
280
- #: inc/settings.php:244
281
- msgid "Use the comments blacklist to restrict submissions"
282
- msgstr "Utilizați lista neagră a comentariilor pentru a restricționa email-urile"
283
-
284
- #: inc/settings.php:245
285
- msgid "Should form submission IP and email addresses be compared against the Comment Blacklist, found in"
286
- msgstr "Ar trebui ca IP-ul și adresa de email să fie comparate cu lista neagră, găsită în"
287
-
288
- #: inc/settings.php:245
289
- msgid "wp-admin > Settings > Discussion > Comment Blacklist?"
290
- msgstr "wp-admin > Settings > Discutii > Lista neagra?"
291
-
292
- #: inc/settings.php:250
293
- msgid "Send email confirmation to form submitter"
294
- msgstr "Trimite confirmare prin e-mail celui care a emis formularul"
295
-
296
- #: inc/settings.php:251
297
- msgid "Adding text here will send an email to the form submitter. The email uses the \"Text to show when form is submitted...\" field below as the subject line. Plain text only here, no HTML."
298
- msgstr "Adăugarea de text aici va trimite un e-mail la emitentul formularului. E-mail utilizează \" Text afisat atunci când formularul este trimis ... \" câmpul de mai jos ca linia de subiect. Doar text simplu aici, nu HTML."
299
-
300
- #: inc/settings.php:258
301
  msgid "Use SMTP to send emails?"
302
  msgstr "Doriți să utilizați SMTP pentru a trimite emailuri?"
303
 
304
- #: inc/settings.php:259
305
  msgid "Instead of PHP mail function"
306
  msgstr "în loc de funcția PHP mail"
307
 
308
- #: inc/settings.php:264
309
  msgid "SMTP Host"
310
  msgstr "Gazda SMTP"
311
 
312
- #: inc/settings.php:270
313
  msgid "SMTP Port"
314
  msgstr "Portul SMTP"
315
 
316
- #: inc/settings.php:276
317
  msgid "Use SMTP Authentication?"
318
  msgstr "Doriți autentificarea SMTP?"
319
 
320
- #: inc/settings.php:277
321
  msgid "If you check this box, make sure the SMTP Username and SMTP Password are completed."
322
  msgstr "După selectarea acestei căsuțe, te rugăm să completezi utilizatorul SMTP și parola SMTP. "
323
 
324
- #: inc/settings.php:282
325
  msgid "SMTP Username"
326
  msgstr "Utilizator SMTP"
327
 
328
- #: inc/settings.php:288
329
  msgid "SMTP Password"
330
  msgstr "Parola SMTP"
331
 
332
- #: inc/settings.php:306
333
  msgid "Pirate Forms settings"
334
  msgstr "Formularul Piraților - setări"
335
 
336
- #: inc/settings.php:307
 
337
  #: inc/widget.php:15
338
  #: inc/widget.php:16
339
  msgid "Pirate Forms"
340
  msgstr "Formularul Piraților"
341
 
342
- #: inc/settings.php:503
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
343
  msgid "Save changes"
344
  msgstr "Salvează"
345
 
 
 
 
 
 
 
 
 
 
 
 
 
346
  #: inc/widget.php:75
347
  msgid "Title"
348
  msgstr "Titlu"
@@ -359,3 +456,19 @@ msgstr "Titlu:"
359
  msgid "Subtext:"
360
  msgstr "Subtext:"
361
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
2
  msgstr ""
3
  "Project-Id-Version: Pirate Forms\n"
4
  "Report-Msgid-Bugs-To: \n"
5
+ "POT-Creation-Date: 2016-03-09 18:51+0200\n"
6
+ "PO-Revision-Date: 2016-03-09 18:52+0200\n"
7
  "Last-Translator: \n"
8
  "Language-Team: \n"
9
  "MIME-Version: 1.0\n"
10
  "Content-Type: text/plain; charset=UTF-8\n"
11
  "Content-Transfer-Encoding: 8bit\n"
12
+ "X-Poedit-KeywordsList: _;gettext;gettext_noop;__;_e;esc_html__;esc_html_e\n"
13
  "X-Poedit-Basepath: ../\n"
14
  "X-Poedit-SearchPath-0: .\n"
15
  "X-Poedit-SearchPath-1: inc\n"
16
 
17
+ #: pirate-forms.php:295
18
  msgid "Contact Referrer"
19
  msgstr "Contact Referrer"
20
 
21
+ #: pirate-forms.php:306
22
  msgid "Referring page"
23
  msgstr "Pagina de referință"
24
 
25
+ #: pirate-forms.php:346
26
  msgid "Nonce failed!"
27
  msgstr "Eroare la nounce!"
28
 
29
+ #: pirate-forms.php:352
30
  msgid "Form submission failed!"
31
  msgstr "Trimiterea formularului nu a reușit !"
32
 
33
+ #: pirate-forms.php:357
34
  msgid "Contact form submission on"
35
  msgstr "Trimiterea formularului de contact pe"
36
 
37
+ #: pirate-forms.php:438
38
+ #: pirate-forms.php:451
39
  msgid "Wrong reCAPTCHA"
40
  msgstr "reCAPTCHA greșită"
41
 
42
+ #: pirate-forms.php:462
43
+ #, fuzzy
44
+ msgid "Please enter one or more Contact submission recipients"
45
+ msgstr "Destinatarii formularelor de contact"
46
+
47
+ #: pirate-forms.php:473
48
+ #, fuzzy
49
+ msgid "IP address: "
50
+ msgstr "Adresă de email"
51
+
52
+ #: pirate-forms.php:473
53
+ msgid "IP search:"
54
+ msgstr ""
55
+
56
+ #: pirate-forms.php:478
57
+ msgid "Came from: "
58
+ msgstr ""
59
+
60
+ #: pirate-forms.php:482
61
+ msgid "Sent from page: "
62
+ msgstr ""
63
+
64
+ #: pirate-forms.php:491
65
  msgid "Form submission blocked!"
66
  msgstr "Trimiterea formularului a fost blocată!"
67
 
68
+ #: pirate-forms.php:705
69
  msgid "Add New Contact"
70
  msgstr "Adauga contact nou"
71
 
72
+ #: pirate-forms.php:706
73
  msgid "New Contact"
74
  msgstr "Contact nou"
75
 
76
+ #: pirate-forms.php:707
77
  msgid "Edit Contact"
78
  msgstr "Editeaza contact"
79
 
80
+ #: pirate-forms.php:708
81
  msgid "View Contact"
82
  msgstr "Vezi Contact"
83
 
84
+ #: pirate-forms.php:709
85
  msgid "All Contacts"
86
  msgstr "Toate Contactele"
87
 
88
+ #: pirate-forms.php:710
89
  msgid "Search Contacts"
90
  msgstr "Caută contacte"
91
 
92
+ #: pirate-forms.php:711
93
  msgid "Parent Contacts:"
94
  msgstr "Părinte Contacte:"
95
 
96
+ #: pirate-forms.php:712
97
  msgid "No contacts found."
98
  msgstr "Nu au fost găsite contacte"
99
 
100
+ #: pirate-forms.php:713
101
  msgid "No contacts found in Trash."
102
  msgstr " Nu au fost găsite contacte în coșul de gunoi"
103
 
104
+ #: pirate-forms.php:717
105
  msgid "Contacts from Pirate Forms"
106
  msgstr "Contacte din Formularul Pirate"
107
 
108
+ #: pirate-forms.php:739
109
+ msgid "Settings"
110
+ msgstr "Setari"
111
+
112
  #: inc/helpers.php:16
113
  msgid "Sorry, an error occured."
114
  msgstr "Ne pare rău, a apărut o eroare."
115
 
116
+ #: inc/settings.php:62
117
+ #: inc/settings.php:66
118
  msgid "Send Message"
119
  msgstr "Trimite mesajul"
120
 
121
+ #: inc/settings.php:84
122
+ msgid "Form processing options"
123
+ msgstr "Opțiuni de procesare a formularului"
124
+
125
+ #: inc/settings.php:90
126
+ msgid "Contact notification sender email"
127
+ msgstr "Email-ul expeditorului pentru notificari"
128
+
129
+ #: inc/settings.php:91
130
+ msgid "Insert [email] to use the contact form submitter's email."
131
+ msgstr ""
132
+
133
+ #: inc/settings.php:91
134
+ #, fuzzy
135
+ msgid "Email to use for the sender of the contact form emails both to the recipients below and the contact form submitter (if this is activated below). The domain for this email address should match your site's domain."
136
+ msgstr "E-mail utilizat pentru expeditorul e-mailurilor, atât la destinatarii de mai jos și cel care a trimis formularul de contact ( dacă acest lucru este activat de mai jos ) . Domeniul pentru această adresă de e-mail ar trebui să corespundă domeniului site-ului."
137
+
138
+ #: inc/settings.php:96
139
+ msgid "Contact submission recipients"
140
+ msgstr "Destinatarii formularelor de contact"
141
+
142
+ #: inc/settings.php:97
143
+ msgid "Email address(es) to receive contact submission notifications. You can separate multiple emails with a comma."
144
+ msgstr "Adresa/e de email, la care se primesc notificări. Puteți separa mai multe e-mailuri cu virgulă."
145
+
146
+ #: inc/settings.php:102
147
+ msgid "Store submissions in the database"
148
+ msgstr "Doriți să salvați email-urile în baza de date"
149
+
150
+ #: inc/settings.php:103
151
+ msgid "Should the submissions be stored in the admin area? If chosen, contact form submissions will be saved in Contacts on the left (appears after this option is activated)."
152
+ msgstr "Doriți ca observațiile să fie stocate în zona de admin? Dacă da , email-urile vor fi salvate în Contacte în meniul din stanga ( apare după ce această opțiune este activată)."
153
+
154
+ #: inc/settings.php:108
155
+ msgid "Use the comments blacklist to restrict submissions"
156
+ msgstr "Utilizați lista neagră a comentariilor pentru a restricționa email-urile"
157
+
158
+ #: inc/settings.php:109
159
+ msgid "Should form submission IP and email addresses be compared against the Comment Blacklist, found in"
160
+ msgstr "Ar trebui ca IP-ul și adresa de email să fie comparate cu lista neagră, găsită în"
161
+
162
+ #: inc/settings.php:109
163
+ msgid "wp-admin > Settings > Discussion > Comment Blacklist?"
164
+ msgstr "wp-admin > Settings > Discutii > Lista neagra?"
165
+
166
+ #: inc/settings.php:114
167
+ msgid "Send email confirmation to form submitter"
168
+ msgstr "Trimite confirmare prin e-mail celui care a emis formularul"
169
+
170
+ #: inc/settings.php:115
171
+ msgid "Adding text here will send an email to the form submitter. The email uses the \"Text to show when form is submitted...\" field below as the subject line. Plain text only here, no HTML."
172
+ msgstr "Adăugarea de text aici va trimite un e-mail la emitentul formularului. E-mail utilizează \" Text afisat atunci când formularul este trimis ... \" câmpul de mai jos ca linia de subiect. Doar text simplu aici, nu HTML."
173
+
174
+ #: inc/settings.php:122
175
+ #: inc/settings.php:424
176
  msgid "Fields"
177
  msgstr "Câmpuri"
178
 
179
+ #: inc/settings.php:129
180
+ #: inc/settings.php:206
181
  msgid "Name"
182
  msgstr "Nume"
183
 
184
+ #: inc/settings.php:130
185
  msgid "Do you want the name field to be displayed?"
186
  msgstr "Vrei să fie afișat câmpul nume?"
187
 
188
+ #: inc/settings.php:134
189
+ #: inc/settings.php:146
190
+ #: inc/settings.php:158
191
+ #: inc/settings.php:170
192
  msgid "None"
193
  msgstr "Nu"
194
 
195
+ #: inc/settings.php:135
196
+ #: inc/settings.php:147
197
+ #: inc/settings.php:159
198
+ #: inc/settings.php:171
199
  msgid "Yes but not required"
200
  msgstr "Da, dar nu obligatoriu"
201
 
202
+ #: inc/settings.php:136
203
+ #: inc/settings.php:148
204
+ #: inc/settings.php:160
205
+ #: inc/settings.php:172
206
  msgid "Required"
207
  msgstr "Obligatoriu"
208
 
209
+ #: inc/settings.php:141
210
  msgid "Email address"
211
  msgstr "Adresă de email"
212
 
213
+ #: inc/settings.php:142
214
  msgid "Do you want the email address field be displayed?"
215
  msgstr "Vreți sa fie afișat câmpul adresa de email?"
216
 
217
+ #: inc/settings.php:153
218
+ #: inc/settings.php:218
219
+ #: inc/settings.php:221
220
  msgid "Subject"
221
  msgstr "Subiect"
222
 
223
+ #: inc/settings.php:154
224
  msgid "Do you want the subject field be displayed?"
225
  msgstr "Vrei să fie afișat câmpul subiect?"
226
 
227
+ #: inc/settings.php:165
228
+ #: inc/settings.php:224
229
  msgid "Message"
230
  msgstr "Mesaj"
231
 
232
+ #: inc/settings.php:177
233
  msgid "Add a reCAPTCHA"
234
  msgstr "Adaugă reCAPTCHA"
235
 
236
+ #: inc/settings.php:184
237
  msgid "Site key"
238
  msgstr "Cheia site-ului"
239
 
240
+ #: inc/settings.php:185
241
  msgid "Create an account here "
242
  msgstr "Creează-ți un cont aici"
243
 
244
+ #: inc/settings.php:185
245
  msgid "to get the Site key and the Secret key for the reCaptcha."
246
  msgstr "pentru a obține cheia site-ului și cheia secretă pentru reCAPTCHA."
247
 
248
+ #: inc/settings.php:191
249
  msgid "Secret key"
250
  msgstr "Cheia secretă"
251
 
252
+ #: inc/settings.php:200
253
+ #: inc/settings.php:425
254
  msgid "Labels"
255
  msgstr "Etichete"
256
 
257
+ #: inc/settings.php:209
258
  msgid "Your Name"
259
  msgstr "Numele tău"
260
 
261
+ #: inc/settings.php:212
262
  msgid "Email"
263
  msgstr "Email"
264
 
265
+ #: inc/settings.php:215
266
  msgid "Your Email"
267
  msgstr "Emailul tău"
268
 
269
+ #: inc/settings.php:227
270
  msgid "Your message"
271
  msgstr "Mesajul tău"
272
 
273
+ #: inc/settings.php:230
274
  msgid "Submit button"
275
  msgstr "Buton de trimis formularul"
276
 
277
+ #: inc/settings.php:238
278
+ #: inc/settings.php:426
279
  msgid "Messages"
280
  msgstr "Mesaje"
281
 
282
+ #: inc/settings.php:244
283
  msgid "Name required and missing"
284
  msgstr "Numele este necesar și lipsește"
285
 
286
+ #: inc/settings.php:247
287
  msgid "Enter your name"
288
  msgstr "Introdu numele tău"
289
 
290
+ #: inc/settings.php:250
291
  msgid "E-mail required and missing"
292
  msgstr "Adresa de e-mail este necesară și lipsește"
293
 
294
+ #: inc/settings.php:253
295
  msgid "Enter a valid email"
296
  msgstr "Introduceți o adresă de e-mail validă"
297
 
298
+ #: inc/settings.php:256
299
  msgid "Subject required and missing"
300
  msgstr "Subiectul este necesar și lipseşte"
301
 
302
+ #: inc/settings.php:259
303
  msgid "Please enter a subject"
304
  msgstr "Vă rugăm să introduceți un subiect"
305
 
306
+ #: inc/settings.php:262
307
  msgid "Question/comment is missing"
308
  msgstr "Intrebarea / comentariul lipsește"
309
 
310
+ #: inc/settings.php:265
311
  msgid "Enter your question or comment"
312
  msgstr "Introduceți întrebarea dvs. sau comentariul"
313
 
314
+ #: inc/settings.php:268
315
  msgid "Successful form submission text"
316
  msgstr "Mesajul de succes pentru formular"
317
 
318
+ #: inc/settings.php:269
319
  msgid "This text is used on the page if no \"Thank You\" URL is set above. This is also used as the confirmation email title, if one is set to send out."
320
  msgstr "Acest text este folosit în pagină dacă nu este setat mai sus \" Thank You \" URL. Acest text este, de asemenea, utilizat ca titlul email-ului de confirmare, în cazul în care unul este setat."
321
 
322
+ #: inc/settings.php:271
323
  msgid "Thanks, your email was sent successfully!"
324
  msgstr "Mulțumim , e-mailul a fost trimis cu succes !"
325
 
326
+ #: inc/settings.php:276
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
327
  msgid "Use SMTP to send emails?"
328
  msgstr "Doriți să utilizați SMTP pentru a trimite emailuri?"
329
 
330
+ #: inc/settings.php:277
331
  msgid "Instead of PHP mail function"
332
  msgstr "în loc de funcția PHP mail"
333
 
334
+ #: inc/settings.php:282
335
  msgid "SMTP Host"
336
  msgstr "Gazda SMTP"
337
 
338
+ #: inc/settings.php:288
339
  msgid "SMTP Port"
340
  msgstr "Portul SMTP"
341
 
342
+ #: inc/settings.php:294
343
  msgid "Use SMTP Authentication?"
344
  msgstr "Doriți autentificarea SMTP?"
345
 
346
+ #: inc/settings.php:295
347
  msgid "If you check this box, make sure the SMTP Username and SMTP Password are completed."
348
  msgstr "După selectarea acestei căsuțe, te rugăm să completezi utilizatorul SMTP și parola SMTP. "
349
 
350
+ #: inc/settings.php:300
351
  msgid "SMTP Username"
352
  msgstr "Utilizator SMTP"
353
 
354
+ #: inc/settings.php:306
355
  msgid "SMTP Password"
356
  msgstr "Parola SMTP"
357
 
358
+ #: inc/settings.php:324
359
  msgid "Pirate Forms settings"
360
  msgstr "Formularul Piraților - setări"
361
 
362
+ #: inc/settings.php:325
363
+ #: inc/settings.php:417
364
  #: inc/widget.php:15
365
  #: inc/widget.php:16
366
  msgid "Pirate Forms"
367
  msgstr "Formularul Piraților"
368
 
369
+ #: inc/settings.php:422
370
+ msgid "How to use"
371
+ msgstr ""
372
+
373
+ #: inc/settings.php:423
374
+ msgid "Options"
375
+ msgstr ""
376
+
377
+ #: inc/settings.php:427
378
+ #, fuzzy
379
+ msgid "SMTP"
380
+ msgstr "Gazda SMTP"
381
+
382
+ #: inc/settings.php:434
383
+ #, fuzzy
384
+ msgid "Welcome to Pirate Forms!"
385
+ msgstr "Formularul Piraților"
386
+
387
+ #: inc/settings.php:435
388
+ msgid "To get started, just "
389
+ msgstr ""
390
+
391
+ #: inc/settings.php:435
392
+ msgid "configure all the options "
393
+ msgstr ""
394
+
395
+ #: inc/settings.php:435
396
+ msgid "you need, hit save and start using the created form."
397
+ msgstr ""
398
+
399
+ #: inc/settings.php:439
400
+ msgid "There are 3 ways of using the newly created form:"
401
+ msgstr ""
402
+
403
+ #: inc/settings.php:440
404
+ msgid "1. Use the shortcode "
405
+ msgstr ""
406
+
407
+ #: inc/settings.php:440
408
+ msgid "in any page or post."
409
+ msgstr ""
410
+
411
+ #: inc/settings.php:441
412
+ msgid "2. Add a "
413
+ msgstr ""
414
+
415
+ #: inc/settings.php:441
416
+ msgid "widget"
417
+ msgstr ""
418
+
419
+ #: inc/settings.php:442
420
+ msgid "3. Use the shortcode "
421
+ msgstr ""
422
+
423
+ #: inc/settings.php:442
424
+ msgid "in the theme's files."
425
+ msgstr ""
426
+
427
+ #: inc/settings.php:561
428
  msgid "Save changes"
429
  msgstr "Salvează"
430
 
431
+ #: inc/settings.php:575
432
+ msgid "Get Our Free Email Course"
433
+ msgstr ""
434
+
435
+ #: inc/settings.php:595
436
+ msgid "Ready to learn how to reduce your website loading times by half? Come and join the 1st lesson here!"
437
+ msgstr ""
438
+
439
+ #: inc/settings.php:597
440
+ msgid "Thank you for subscribing! You have been added to the mailing list and will receive the next email information in the coming weeks. If you ever wish to unsubscribe, simply use the \"Unsubscribe\" link included in each newsletter."
441
+ msgstr ""
442
+
443
  #: inc/widget.php:75
444
  msgid "Title"
445
  msgstr "Titlu"
456
  msgid "Subtext:"
457
  msgstr "Subtext:"
458
 
459
+ #~ msgid "Use the email address above as notification sender"
460
+ #~ msgstr "Utilizați adresa de email de mai sus ca expeditorul notificarilor"
461
+
462
+ #~ msgid ""
463
+ #~ "When this is on, the notification emails sent from your site will come "
464
+ #~ "from the email address above. When this is off, the emails will come from "
465
+ #~ "the form submitter, making it easy to reply. If you are not receiving "
466
+ #~ "notifications from the site, then turn this option off as your email "
467
+ #~ "server might be marking them as spam."
468
+ #~ msgstr ""
469
+ #~ "Când acestă căsuță este selectată, e-mailurile de notificare trimise de "
470
+ #~ "site-ul dvs. vor veni de la adresa de email de mai sus . Atunci când "
471
+ #~ "acestă căsuță nu este selectată , e-mailurile vor veni de la autorul "
472
+ #~ "formularului, făcând ușoară modalitatea de a răspunde. Dacă nu primiți "
473
+ #~ "notificări de pe site-ul dvs., dezactivați această opțiune deoarece "
474
+ #~ "server-ul dvs. de e-mail le-ar putea marca ca spam."
languages/pirate-forms.pot CHANGED
@@ -2,347 +2,439 @@ msgid ""
2
  msgstr ""
3
  "Project-Id-Version: Pirate Forms\n"
4
  "Report-Msgid-Bugs-To: \n"
5
- "POT-Creation-Date: 2015-09-18 18:41+0200\n"
6
- "PO-Revision-Date: 2015-09-18 18:41+0200\n"
7
  "Last-Translator: \n"
8
- "Language-Team: themeisle <friends@themeisle.com>\n"
9
  "MIME-Version: 1.0\n"
10
  "Content-Type: text/plain; charset=UTF-8\n"
11
  "Content-Transfer-Encoding: 8bit\n"
12
- "X-Poedit-KeywordsList: _;gettext;gettext_noop;__;_e\n"
13
  "X-Poedit-Basepath: ../\n"
14
  "X-Poedit-SearchPath-0: .\n"
15
  "X-Poedit-SearchPath-1: inc\n"
16
 
17
- #: pirate-forms.php:261
18
  msgid "Contact Referrer"
19
  msgstr ""
20
 
21
- #: pirate-forms.php:272
22
  msgid "Referring page"
23
  msgstr ""
24
 
25
- #: pirate-forms.php:312
26
  msgid "Nonce failed!"
27
  msgstr ""
28
 
29
- #: pirate-forms.php:318
30
  msgid "Form submission failed!"
31
  msgstr ""
32
 
33
- #: pirate-forms.php:323
34
  msgid "Contact form submission on"
35
  msgstr ""
36
 
37
- #: pirate-forms.php:404
38
- #: pirate-forms.php:417
39
  msgid "Wrong reCAPTCHA"
40
  msgstr ""
41
 
42
- #: pirate-forms.php:448
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
43
  msgid "Form submission blocked!"
44
  msgstr ""
45
 
46
- #: pirate-forms.php:630
47
  msgid "Add New Contact"
48
  msgstr ""
49
 
50
- #: pirate-forms.php:631
51
  msgid "New Contact"
52
  msgstr ""
53
 
54
- #: pirate-forms.php:632
55
  msgid "Edit Contact"
56
  msgstr ""
57
 
58
- #: pirate-forms.php:633
59
  msgid "View Contact"
60
  msgstr ""
61
 
62
- #: pirate-forms.php:634
63
  msgid "All Contacts"
64
  msgstr ""
65
 
66
- #: pirate-forms.php:635
67
  msgid "Search Contacts"
68
  msgstr ""
69
 
70
- #: pirate-forms.php:636
71
  msgid "Parent Contacts:"
72
  msgstr ""
73
 
74
- #: pirate-forms.php:637
75
  msgid "No contacts found."
76
  msgstr ""
77
 
78
- #: pirate-forms.php:638
79
  msgid "No contacts found in Trash."
80
  msgstr ""
81
 
82
- #: pirate-forms.php:642
83
  msgid "Contacts from Pirate Forms"
84
  msgstr ""
85
 
 
 
 
 
86
  #: inc/helpers.php:16
87
  msgid "Sorry, an error occured."
88
  msgstr ""
89
 
90
- #: inc/settings.php:38
91
- #: inc/settings.php:42
92
  msgid "Send Message"
93
  msgstr ""
94
 
95
- #: inc/settings.php:59
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
96
  msgid "Fields"
97
  msgstr ""
98
 
99
- #: inc/settings.php:66
100
- #: inc/settings.php:143
101
  msgid "Name"
102
  msgstr ""
103
 
104
- #: inc/settings.php:67
105
  msgid "Do you want the name field to be displayed?"
106
  msgstr ""
107
 
108
- #: inc/settings.php:71
109
- #: inc/settings.php:83
110
- #: inc/settings.php:95
111
- #: inc/settings.php:107
112
  msgid "None"
113
  msgstr ""
114
 
115
- #: inc/settings.php:72
116
- #: inc/settings.php:84
117
- #: inc/settings.php:96
118
- #: inc/settings.php:108
119
  msgid "Yes but not required"
120
  msgstr ""
121
 
122
- #: inc/settings.php:73
123
- #: inc/settings.php:85
124
- #: inc/settings.php:97
125
- #: inc/settings.php:109
126
  msgid "Required"
127
  msgstr ""
128
 
129
- #: inc/settings.php:78
130
  msgid "Email address"
131
  msgstr ""
132
 
133
- #: inc/settings.php:79
134
  msgid "Do you want the email address field be displayed?"
135
  msgstr ""
136
 
137
- #: inc/settings.php:90
138
- #: inc/settings.php:155
139
- #: inc/settings.php:158
140
  msgid "Subject"
141
  msgstr ""
142
 
143
- #: inc/settings.php:91
144
  msgid "Do you want the subject field be displayed?"
145
  msgstr ""
146
 
147
- #: inc/settings.php:102
148
- #: inc/settings.php:161
149
  msgid "Message"
150
  msgstr ""
151
 
152
- #: inc/settings.php:114
153
  msgid "Add a reCAPTCHA"
154
  msgstr ""
155
 
156
- #: inc/settings.php:121
157
  msgid "Site key"
158
  msgstr ""
159
 
160
- #: inc/settings.php:122
161
  msgid "Create an account here "
162
  msgstr ""
163
 
164
- #: inc/settings.php:122
165
  msgid "to get the Site key and the Secret key for the reCaptcha."
166
  msgstr ""
167
 
168
- #: inc/settings.php:128
169
  msgid "Secret key"
170
  msgstr ""
171
 
172
- #: inc/settings.php:137
 
173
  msgid "Labels"
174
  msgstr ""
175
 
176
- #: inc/settings.php:146
177
  msgid "Your Name"
178
  msgstr ""
179
 
180
- #: inc/settings.php:149
181
  msgid "Email"
182
  msgstr ""
183
 
184
- #: inc/settings.php:152
185
  msgid "Your Email"
186
  msgstr ""
187
 
188
- #: inc/settings.php:164
189
  msgid "Your message"
190
  msgstr ""
191
 
192
- #: inc/settings.php:167
193
  msgid "Submit button"
194
  msgstr ""
195
 
196
- #: inc/settings.php:175
 
197
  msgid "Messages"
198
  msgstr ""
199
 
200
- #: inc/settings.php:181
201
  msgid "Name required and missing"
202
  msgstr ""
203
 
204
- #: inc/settings.php:184
205
  msgid "Enter your name"
206
  msgstr ""
207
 
208
- #: inc/settings.php:187
209
  msgid "E-mail required and missing"
210
  msgstr ""
211
 
212
- #: inc/settings.php:190
213
  msgid "Enter a valid email"
214
  msgstr ""
215
 
216
- #: inc/settings.php:193
217
  msgid "Subject required and missing"
218
  msgstr ""
219
 
220
- #: inc/settings.php:196
221
  msgid "Please enter a subject"
222
  msgstr ""
223
 
224
- #: inc/settings.php:199
225
  msgid "Question/comment is missing"
226
  msgstr ""
227
 
228
- #: inc/settings.php:202
229
  msgid "Enter your question or comment"
230
  msgstr ""
231
 
232
- #: inc/settings.php:205
233
  msgid "Successful form submission text"
234
  msgstr ""
235
 
236
- #: inc/settings.php:206
237
  msgid "This text is used on the page if no \"Thank You\" URL is set above. This is also used as the confirmation email title, if one is set to send out."
238
  msgstr ""
239
 
240
- #: inc/settings.php:208
241
  msgid "Thanks, your email was sent successfully!"
242
  msgstr ""
243
 
244
- #: inc/settings.php:213
245
- msgid "Form processing options"
246
  msgstr ""
247
 
248
- #: inc/settings.php:219
249
- msgid "Contact notification sender email"
250
  msgstr ""
251
 
252
- #: inc/settings.php:220
253
- msgid "Email to use for the sender of the contact form emails both to the recipients below and the contact form submitter (if this is activated below). The domain for this email address should match your site's domain."
254
  msgstr ""
255
 
256
- #: inc/settings.php:226
257
- msgid "Use the email address above as notification sender"
258
  msgstr ""
259
 
260
- #: inc/settings.php:227
261
- msgid "When this is on, the notification emails sent from your site will come from the email address above. When this is off, the emails will come from the form submitter, making it easy to reply. If you are not receiving notifications from the site, then turn this option off as your email server might be marking them as spam."
262
  msgstr ""
263
 
264
- #: inc/settings.php:232
265
- msgid "Contact submission recipients"
266
  msgstr ""
267
 
268
- #: inc/settings.php:233
269
- msgid "Email address(es) to receive contact submission notifications. You can separate multiple emails with a comma."
270
  msgstr ""
271
 
272
- #: inc/settings.php:238
273
- msgid "Store submissions in the database"
274
  msgstr ""
275
 
276
- #: inc/settings.php:239
277
- msgid "Should the submissions be stored in the admin area? If chosen, contact form submissions will be saved in Contacts on the left (appears after this option is activated)."
278
  msgstr ""
279
 
280
- #: inc/settings.php:244
281
- msgid "Use the comments blacklist to restrict submissions"
 
 
 
282
  msgstr ""
283
 
284
- #: inc/settings.php:245
285
- msgid "Should form submission IP and email addresses be compared against the Comment Blacklist, found in"
286
  msgstr ""
287
 
288
- #: inc/settings.php:245
289
- msgid "wp-admin > Settings > Discussion > Comment Blacklist?"
290
  msgstr ""
291
 
292
- #: inc/settings.php:250
293
- msgid "Send email confirmation to form submitter"
294
  msgstr ""
295
 
296
- #: inc/settings.php:251
297
- msgid "Adding text here will send an email to the form submitter. The email uses the \"Text to show when form is submitted...\" field below as the subject line. Plain text only here, no HTML."
298
  msgstr ""
299
 
300
- #: inc/settings.php:258
301
- msgid "Use SMTP to send emails?"
302
  msgstr ""
303
 
304
- #: inc/settings.php:259
305
- msgid "Instead of PHP mail function"
306
  msgstr ""
307
 
308
- #: inc/settings.php:264
309
- msgid "SMTP Host"
310
  msgstr ""
311
 
312
- #: inc/settings.php:270
313
- msgid "SMTP Port"
314
  msgstr ""
315
 
316
- #: inc/settings.php:276
317
- msgid "Use SMTP Authentication?"
318
  msgstr ""
319
 
320
- #: inc/settings.php:277
321
- msgid "If you check this box, make sure the SMTP Username and SMTP Password are completed."
322
  msgstr ""
323
 
324
- #: inc/settings.php:282
325
- msgid "SMTP Username"
326
  msgstr ""
327
 
328
- #: inc/settings.php:288
329
- msgid "SMTP Password"
330
  msgstr ""
331
 
332
- #: inc/settings.php:306
333
- msgid "Pirate Forms settings"
334
  msgstr ""
335
 
336
- #: inc/settings.php:307
337
- #: inc/widget.php:15
338
- #: inc/widget.php:16
339
- msgid "Pirate Forms"
340
  msgstr ""
341
 
342
- #: inc/settings.php:503
343
  msgid "Save changes"
344
  msgstr ""
345
 
 
 
 
 
 
 
 
 
 
 
 
 
346
  #: inc/widget.php:75
347
  msgid "Title"
348
  msgstr ""
2
  msgstr ""
3
  "Project-Id-Version: Pirate Forms\n"
4
  "Report-Msgid-Bugs-To: \n"
5
+ "POT-Creation-Date: 2016-03-09 18:51+0200\n"
6
+ "PO-Revision-Date: 2016-03-09 18:51+0200\n"
7
  "Last-Translator: \n"
8
+ "Language-Team: Themeisle <friends@themeisle.com>\n"
9
  "MIME-Version: 1.0\n"
10
  "Content-Type: text/plain; charset=UTF-8\n"
11
  "Content-Transfer-Encoding: 8bit\n"
12
+ "X-Poedit-KeywordsList: _;gettext;gettext_noop;__;_e;esc_html__;esc_html_e\n"
13
  "X-Poedit-Basepath: ../\n"
14
  "X-Poedit-SearchPath-0: .\n"
15
  "X-Poedit-SearchPath-1: inc\n"
16
 
17
+ #: pirate-forms.php:295
18
  msgid "Contact Referrer"
19
  msgstr ""
20
 
21
+ #: pirate-forms.php:306
22
  msgid "Referring page"
23
  msgstr ""
24
 
25
+ #: pirate-forms.php:346
26
  msgid "Nonce failed!"
27
  msgstr ""
28
 
29
+ #: pirate-forms.php:352
30
  msgid "Form submission failed!"
31
  msgstr ""
32
 
33
+ #: pirate-forms.php:357
34
  msgid "Contact form submission on"
35
  msgstr ""
36
 
37
+ #: pirate-forms.php:438
38
+ #: pirate-forms.php:451
39
  msgid "Wrong reCAPTCHA"
40
  msgstr ""
41
 
42
+ #: pirate-forms.php:462
43
+ msgid "Please enter one or more Contact submission recipients"
44
+ msgstr ""
45
+
46
+ #: pirate-forms.php:473
47
+ msgid "IP address: "
48
+ msgstr ""
49
+
50
+ #: pirate-forms.php:473
51
+ msgid "IP search:"
52
+ msgstr ""
53
+
54
+ #: pirate-forms.php:478
55
+ msgid "Came from: "
56
+ msgstr ""
57
+
58
+ #: pirate-forms.php:482
59
+ msgid "Sent from page: "
60
+ msgstr ""
61
+
62
+ #: pirate-forms.php:491
63
  msgid "Form submission blocked!"
64
  msgstr ""
65
 
66
+ #: pirate-forms.php:705
67
  msgid "Add New Contact"
68
  msgstr ""
69
 
70
+ #: pirate-forms.php:706
71
  msgid "New Contact"
72
  msgstr ""
73
 
74
+ #: pirate-forms.php:707
75
  msgid "Edit Contact"
76
  msgstr ""
77
 
78
+ #: pirate-forms.php:708
79
  msgid "View Contact"
80
  msgstr ""
81
 
82
+ #: pirate-forms.php:709
83
  msgid "All Contacts"
84
  msgstr ""
85
 
86
+ #: pirate-forms.php:710
87
  msgid "Search Contacts"
88
  msgstr ""
89
 
90
+ #: pirate-forms.php:711
91
  msgid "Parent Contacts:"
92
  msgstr ""
93
 
94
+ #: pirate-forms.php:712
95
  msgid "No contacts found."
96
  msgstr ""
97
 
98
+ #: pirate-forms.php:713
99
  msgid "No contacts found in Trash."
100
  msgstr ""
101
 
102
+ #: pirate-forms.php:717
103
  msgid "Contacts from Pirate Forms"
104
  msgstr ""
105
 
106
+ #: pirate-forms.php:739
107
+ msgid "Settings"
108
+ msgstr ""
109
+
110
  #: inc/helpers.php:16
111
  msgid "Sorry, an error occured."
112
  msgstr ""
113
 
114
+ #: inc/settings.php:62
115
+ #: inc/settings.php:66
116
  msgid "Send Message"
117
  msgstr ""
118
 
119
+ #: inc/settings.php:84
120
+ msgid "Form processing options"
121
+ msgstr ""
122
+
123
+ #: inc/settings.php:90
124
+ msgid "Contact notification sender email"
125
+ msgstr ""
126
+
127
+ #: inc/settings.php:91
128
+ msgid "Insert [email] to use the contact form submitter's email."
129
+ msgstr ""
130
+
131
+ #: inc/settings.php:91
132
+ msgid "Email to use for the sender of the contact form emails both to the recipients below and the contact form submitter (if this is activated below). The domain for this email address should match your site's domain."
133
+ msgstr ""
134
+
135
+ #: inc/settings.php:96
136
+ msgid "Contact submission recipients"
137
+ msgstr ""
138
+
139
+ #: inc/settings.php:97
140
+ msgid "Email address(es) to receive contact submission notifications. You can separate multiple emails with a comma."
141
+ msgstr ""
142
+
143
+ #: inc/settings.php:102
144
+ msgid "Store submissions in the database"
145
+ msgstr ""
146
+
147
+ #: inc/settings.php:103
148
+ msgid "Should the submissions be stored in the admin area? If chosen, contact form submissions will be saved in Contacts on the left (appears after this option is activated)."
149
+ msgstr ""
150
+
151
+ #: inc/settings.php:108
152
+ msgid "Use the comments blacklist to restrict submissions"
153
+ msgstr ""
154
+
155
+ #: inc/settings.php:109
156
+ msgid "Should form submission IP and email addresses be compared against the Comment Blacklist, found in"
157
+ msgstr ""
158
+
159
+ #: inc/settings.php:109
160
+ msgid "wp-admin > Settings > Discussion > Comment Blacklist?"
161
+ msgstr ""
162
+
163
+ #: inc/settings.php:114
164
+ msgid "Send email confirmation to form submitter"
165
+ msgstr ""
166
+
167
+ #: inc/settings.php:115
168
+ msgid "Adding text here will send an email to the form submitter. The email uses the \"Text to show when form is submitted...\" field below as the subject line. Plain text only here, no HTML."
169
+ msgstr ""
170
+
171
+ #: inc/settings.php:122
172
+ #: inc/settings.php:424
173
  msgid "Fields"
174
  msgstr ""
175
 
176
+ #: inc/settings.php:129
177
+ #: inc/settings.php:206
178
  msgid "Name"
179
  msgstr ""
180
 
181
+ #: inc/settings.php:130
182
  msgid "Do you want the name field to be displayed?"
183
  msgstr ""
184
 
185
+ #: inc/settings.php:134
186
+ #: inc/settings.php:146
187
+ #: inc/settings.php:158
188
+ #: inc/settings.php:170
189
  msgid "None"
190
  msgstr ""
191
 
192
+ #: inc/settings.php:135
193
+ #: inc/settings.php:147
194
+ #: inc/settings.php:159
195
+ #: inc/settings.php:171
196
  msgid "Yes but not required"
197
  msgstr ""
198
 
199
+ #: inc/settings.php:136
200
+ #: inc/settings.php:148
201
+ #: inc/settings.php:160
202
+ #: inc/settings.php:172
203
  msgid "Required"
204
  msgstr ""
205
 
206
+ #: inc/settings.php:141
207
  msgid "Email address"
208
  msgstr ""
209
 
210
+ #: inc/settings.php:142
211
  msgid "Do you want the email address field be displayed?"
212
  msgstr ""
213
 
214
+ #: inc/settings.php:153
215
+ #: inc/settings.php:218
216
+ #: inc/settings.php:221
217
  msgid "Subject"
218
  msgstr ""
219
 
220
+ #: inc/settings.php:154
221
  msgid "Do you want the subject field be displayed?"
222
  msgstr ""
223
 
224
+ #: inc/settings.php:165
225
+ #: inc/settings.php:224
226
  msgid "Message"
227
  msgstr ""
228
 
229
+ #: inc/settings.php:177
230
  msgid "Add a reCAPTCHA"
231
  msgstr ""
232
 
233
+ #: inc/settings.php:184
234
  msgid "Site key"
235
  msgstr ""
236
 
237
+ #: inc/settings.php:185
238
  msgid "Create an account here "
239
  msgstr ""
240
 
241
+ #: inc/settings.php:185
242
  msgid "to get the Site key and the Secret key for the reCaptcha."
243
  msgstr ""
244
 
245
+ #: inc/settings.php:191
246
  msgid "Secret key"
247
  msgstr ""
248
 
249
+ #: inc/settings.php:200
250
+ #: inc/settings.php:425
251
  msgid "Labels"
252
  msgstr ""
253
 
254
+ #: inc/settings.php:209
255
  msgid "Your Name"
256
  msgstr ""
257
 
258
+ #: inc/settings.php:212
259
  msgid "Email"
260
  msgstr ""
261
 
262
+ #: inc/settings.php:215
263
  msgid "Your Email"
264
  msgstr ""
265
 
266
+ #: inc/settings.php:227
267
  msgid "Your message"
268
  msgstr ""
269
 
270
+ #: inc/settings.php:230
271
  msgid "Submit button"
272
  msgstr ""
273
 
274
+ #: inc/settings.php:238
275
+ #: inc/settings.php:426
276
  msgid "Messages"
277
  msgstr ""
278
 
279
+ #: inc/settings.php:244
280
  msgid "Name required and missing"
281
  msgstr ""
282
 
283
+ #: inc/settings.php:247
284
  msgid "Enter your name"
285
  msgstr ""
286
 
287
+ #: inc/settings.php:250
288
  msgid "E-mail required and missing"
289
  msgstr ""
290
 
291
+ #: inc/settings.php:253
292
  msgid "Enter a valid email"
293
  msgstr ""
294
 
295
+ #: inc/settings.php:256
296
  msgid "Subject required and missing"
297
  msgstr ""
298
 
299
+ #: inc/settings.php:259
300
  msgid "Please enter a subject"
301
  msgstr ""
302
 
303
+ #: inc/settings.php:262
304
  msgid "Question/comment is missing"
305
  msgstr ""
306
 
307
+ #: inc/settings.php:265
308
  msgid "Enter your question or comment"
309
  msgstr ""
310
 
311
+ #: inc/settings.php:268
312
  msgid "Successful form submission text"
313
  msgstr ""
314
 
315
+ #: inc/settings.php:269
316
  msgid "This text is used on the page if no \"Thank You\" URL is set above. This is also used as the confirmation email title, if one is set to send out."
317
  msgstr ""
318
 
319
+ #: inc/settings.php:271
320
  msgid "Thanks, your email was sent successfully!"
321
  msgstr ""
322
 
323
+ #: inc/settings.php:276
324
+ msgid "Use SMTP to send emails?"
325
  msgstr ""
326
 
327
+ #: inc/settings.php:277
328
+ msgid "Instead of PHP mail function"
329
  msgstr ""
330
 
331
+ #: inc/settings.php:282
332
+ msgid "SMTP Host"
333
  msgstr ""
334
 
335
+ #: inc/settings.php:288
336
+ msgid "SMTP Port"
337
  msgstr ""
338
 
339
+ #: inc/settings.php:294
340
+ msgid "Use SMTP Authentication?"
341
  msgstr ""
342
 
343
+ #: inc/settings.php:295
344
+ msgid "If you check this box, make sure the SMTP Username and SMTP Password are completed."
345
  msgstr ""
346
 
347
+ #: inc/settings.php:300
348
+ msgid "SMTP Username"
349
  msgstr ""
350
 
351
+ #: inc/settings.php:306
352
+ msgid "SMTP Password"
353
  msgstr ""
354
 
355
+ #: inc/settings.php:324
356
+ msgid "Pirate Forms settings"
357
  msgstr ""
358
 
359
+ #: inc/settings.php:325
360
+ #: inc/settings.php:417
361
+ #: inc/widget.php:15
362
+ #: inc/widget.php:16
363
+ msgid "Pirate Forms"
364
  msgstr ""
365
 
366
+ #: inc/settings.php:422
367
+ msgid "How to use"
368
  msgstr ""
369
 
370
+ #: inc/settings.php:423
371
+ msgid "Options"
372
  msgstr ""
373
 
374
+ #: inc/settings.php:427
375
+ msgid "SMTP"
376
  msgstr ""
377
 
378
+ #: inc/settings.php:434
379
+ msgid "Welcome to Pirate Forms!"
380
  msgstr ""
381
 
382
+ #: inc/settings.php:435
383
+ msgid "To get started, just "
384
  msgstr ""
385
 
386
+ #: inc/settings.php:435
387
+ msgid "configure all the options "
388
  msgstr ""
389
 
390
+ #: inc/settings.php:435
391
+ msgid "you need, hit save and start using the created form."
392
  msgstr ""
393
 
394
+ #: inc/settings.php:439
395
+ msgid "There are 3 ways of using the newly created form:"
396
  msgstr ""
397
 
398
+ #: inc/settings.php:440
399
+ msgid "1. Use the shortcode "
400
  msgstr ""
401
 
402
+ #: inc/settings.php:440
403
+ msgid "in any page or post."
404
  msgstr ""
405
 
406
+ #: inc/settings.php:441
407
+ msgid "2. Add a "
408
  msgstr ""
409
 
410
+ #: inc/settings.php:441
411
+ msgid "widget"
412
  msgstr ""
413
 
414
+ #: inc/settings.php:442
415
+ msgid "3. Use the shortcode "
416
  msgstr ""
417
 
418
+ #: inc/settings.php:442
419
+ msgid "in the theme's files."
 
 
420
  msgstr ""
421
 
422
+ #: inc/settings.php:561
423
  msgid "Save changes"
424
  msgstr ""
425
 
426
+ #: inc/settings.php:575
427
+ msgid "Get Our Free Email Course"
428
+ msgstr ""
429
+
430
+ #: inc/settings.php:595
431
+ msgid "Ready to learn how to reduce your website loading times by half? Come and join the 1st lesson here!"
432
+ msgstr ""
433
+
434
+ #: inc/settings.php:597
435
+ msgid "Thank you for subscribing! You have been added to the mailing list and will receive the next email information in the coming weeks. If you ever wish to unsubscribe, simply use the \"Unsubscribe\" link included in each newsletter."
436
+ msgstr ""
437
+
438
  #: inc/widget.php:75
439
  msgid "Title"
440
  msgstr ""
pirate-forms.php CHANGED
@@ -1,9 +1,9 @@
1
  <?php
2
  /*
3
- Plugin Name: Pirate Forms - Contact form and SMTP Plugin
4
  Plugin URI: http://themeisle.com/plugins/pirate-forms/
5
  Description: Easily creates a nice looking, simple contact form on your WP site.
6
- Version: 1.0.7
7
  Author: Themeisle
8
  Author URI: http://themeisle.com
9
  Text Domain: pirate-forms
@@ -53,7 +53,7 @@ function pirate_forms_display_form( $atts, $content = NULL ) {
53
 
54
  if ( isset( $_GET['pcf'] ) && $_GET['pcf'] == 1 ) {
55
  $pirate_forms_thankyou_message .= '
56
- <div class="pirate_forms_thankyou_wrap">
57
  <p>' . sanitize_text_field( pirate_forms_get_key( 'pirateformsopt_label_submit' ) ) . '</p>
58
  </div>';
59
  }
@@ -116,16 +116,16 @@ function pirate_forms_display_form( $atts, $content = NULL ) {
116
 
117
  switch ($pirate_forms_required_fields) {
118
  case 1:
119
- $pirate_forms_layout_input = 'col-lg-12 col-sm-12';
120
  break;
121
  case 2:
122
- $pirate_forms_layout_input = 'col-lg-6 col-sm-6';
123
  break;
124
  case 3:
125
- $pirate_forms_layout_input = 'col-lg-4 col-sm-4';
126
  break;
127
  default:
128
- $pirate_forms_layout_input = 'col-lg-4 col-sm-4';
129
  }
130
 
131
  /******************************/
@@ -135,7 +135,7 @@ function pirate_forms_display_form( $atts, $content = NULL ) {
135
  if ( !empty($pirateformsopt_name_field) && !empty($pirateformsopt_name_label) ):
136
 
137
  $required = $pirateformsopt_name_field === 'req' ? TRUE : FALSE;
138
- $wrap_classes = array( 'form_field_wrap', 'contact_name_wrap '.$pirate_forms_layout_input );
139
 
140
  // If this field was submitted with invalid data
141
  if ( isset( $_SESSION['pirate_forms_contact_errors']['contact-name'] ) ) {
@@ -161,7 +161,7 @@ function pirate_forms_display_form( $atts, $content = NULL ) {
161
  if ( !empty($pirateformsopt_email_field) && !empty($pirateformsopt_email_label) ):
162
 
163
  $required = $pirateformsopt_email_field === 'req' ? TRUE : FALSE;
164
- $wrap_classes = array( 'form_field_wrap', 'contact_email_wrap '.$pirate_forms_layout_input );
165
 
166
  // If this field was submitted with invalid data
167
  if ( isset( $_SESSION['pirate_forms_contact_errors']['contact-email'] ) ) {
@@ -188,7 +188,7 @@ function pirate_forms_display_form( $atts, $content = NULL ) {
188
  if ( !empty($pirateformsopt_subject_field) && !empty($pirateformsopt_subject_label) ):
189
 
190
  $required = $pirateformsopt_subject_field === 'req' ? TRUE : FALSE;
191
- $wrap_classes = array( 'form_field_wrap', 'contact_subject_wrap'.$pirate_forms_layout_input );
192
 
193
  // If this field was submitted with invalid data
194
  if ( isset( $_SESSION['pirate_forms_contact_errors']['contact-subject'] ) ) {
@@ -220,7 +220,7 @@ function pirate_forms_display_form( $atts, $content = NULL ) {
220
 
221
 
222
  $required = $pirateformsopt_message_field === 'req' ? TRUE : FALSE;
223
- $wrap_classes = array( 'form_field_wrap', 'contact_message_wrap col-lg-12 col-sm-12' );
224
 
225
  // If this field was submitted with invalid data
226
  if ( isset( $_SESSION['pirate_forms_contact_errors']['contact-message'] ) ) {
@@ -323,6 +323,7 @@ function pirate_forms_display_form( $atts, $content = NULL ) {
323
  <div class="pirate_forms_wrap">
324
  ' . $errors . '
325
  ' . $pirate_form->build_form( FALSE ) . '
 
326
  </div>';
327
 
328
  }
@@ -470,16 +471,16 @@ function pirate_forms_process_contact() {
470
 
471
  // If valid and present, create a link to an IP search
472
  if ( ! empty( $contact_ip ) ) {
473
- $body .= "IP address: $contact_ip \r IP search: http://whatismyipaddress.com/ip/$contact_ip \n\n";
474
  }
475
 
476
  // Sanitize and prepare referrer;
477
  if ( ! empty( $_POST['pirate-forms-contact-referrer'] ) ) {
478
- $body .= "Came from: " . sanitize_text_field( $_POST['pirate-forms-contact-referrer'] ) . " \r";
479
  }
480
 
481
  // Show the page this contact form was submitted on
482
- $body .= 'Sent from page: ' . get_permalink( get_the_id() );
483
 
484
  // Check the blacklist
485
  $blocked = pirate_forms_get_blacklist();
1
  <?php
2
  /*
3
+ Plugin Name: Free & Simple Contact Form Plugin - PirateForms
4
  Plugin URI: http://themeisle.com/plugins/pirate-forms/
5
  Description: Easily creates a nice looking, simple contact form on your WP site.
6
+ Version: 1.0.10
7
  Author: Themeisle
8
  Author URI: http://themeisle.com
9
  Text Domain: pirate-forms
53
 
54
  if ( isset( $_GET['pcf'] ) && $_GET['pcf'] == 1 ) {
55
  $pirate_forms_thankyou_message .= '
56
+ <div class="col-sm-12 col-lg-12 pirate_forms_thankyou_wrap">
57
  <p>' . sanitize_text_field( pirate_forms_get_key( 'pirateformsopt_label_submit' ) ) . '</p>
58
  </div>';
59
  }
116
 
117
  switch ($pirate_forms_required_fields) {
118
  case 1:
119
+ $pirate_forms_layout_input = 'col-sm-12 col-lg-12';
120
  break;
121
  case 2:
122
+ $pirate_forms_layout_input = 'col-sm-6 col-lg-6';
123
  break;
124
  case 3:
125
+ $pirate_forms_layout_input = 'col-sm-4 col-lg-4';
126
  break;
127
  default:
128
+ $pirate_forms_layout_input = 'col-sm-4 col-lg-4';
129
  }
130
 
131
  /******************************/
135
  if ( !empty($pirateformsopt_name_field) && !empty($pirateformsopt_name_label) ):
136
 
137
  $required = $pirateformsopt_name_field === 'req' ? TRUE : FALSE;
138
+ $wrap_classes = array( $pirate_forms_layout_input.' form_field_wrap', 'contact_name_wrap ' );
139
 
140
  // If this field was submitted with invalid data
141
  if ( isset( $_SESSION['pirate_forms_contact_errors']['contact-name'] ) ) {
161
  if ( !empty($pirateformsopt_email_field) && !empty($pirateformsopt_email_label) ):
162
 
163
  $required = $pirateformsopt_email_field === 'req' ? TRUE : FALSE;
164
+ $wrap_classes = array( $pirate_forms_layout_input.' form_field_wrap', 'contact_email_wrap ' );
165
 
166
  // If this field was submitted with invalid data
167
  if ( isset( $_SESSION['pirate_forms_contact_errors']['contact-email'] ) ) {
188
  if ( !empty($pirateformsopt_subject_field) && !empty($pirateformsopt_subject_label) ):
189
 
190
  $required = $pirateformsopt_subject_field === 'req' ? TRUE : FALSE;
191
+ $wrap_classes = array( $pirate_forms_layout_input.' form_field_wrap', 'contact_subject_wrap ' );
192
 
193
  // If this field was submitted with invalid data
194
  if ( isset( $_SESSION['pirate_forms_contact_errors']['contact-subject'] ) ) {
220
 
221
 
222
  $required = $pirateformsopt_message_field === 'req' ? TRUE : FALSE;
223
+ $wrap_classes = array( 'col-sm-12 col-lg-12 form_field_wrap', 'contact_message_wrap ' );
224
 
225
  // If this field was submitted with invalid data
226
  if ( isset( $_SESSION['pirate_forms_contact_errors']['contact-message'] ) ) {
323
  <div class="pirate_forms_wrap">
324
  ' . $errors . '
325
  ' . $pirate_form->build_form( FALSE ) . '
326
+ <div class="pirate_forms_clearfix"></div>
327
  </div>';
328
 
329
  }
471
 
472
  // If valid and present, create a link to an IP search
473
  if ( ! empty( $contact_ip ) ) {
474
+ $body .= __( 'IP address: ','pirate-forms' ). $contact_ip ."\r ".__( 'IP search:','pirate-forms' )." http://whatismyipaddress.com/ip/$contact_ip \n\n";
475
  }
476
 
477
  // Sanitize and prepare referrer;
478
  if ( ! empty( $_POST['pirate-forms-contact-referrer'] ) ) {
479
+ $body .= __( 'Came from: ','pirate-forms' ) . sanitize_text_field( $_POST['pirate-forms-contact-referrer'] ) . " \r";
480
  }
481
 
482
  // Show the page this contact form was submitted on
483
+ $body .= __( 'Sent from page: ','pirate-forms' ) . get_permalink( get_the_id() );
484
 
485
  // Check the blacklist
486
  $blocked = pirate_forms_get_blacklist();
readme.txt CHANGED
@@ -1,24 +1,24 @@
1
- === Pirate Forms - Contact Form and SMTP Plugin ===
2
  Contributors: themeisle, codeinwp, rodicaelena
3
  Tags: Attachment, cnotact, conact, contact, contact button, contact form, contact form plugin, contact me, contacts, contacts form plugin, contatc, copy, email submit form, email subscription, feedback, feedback form, form, insert the shortcode, message form, post feedback, request, send, send copy, send messages, shortcode, text, web-page feedback,smtp,recaptcha
4
  Requires at least: 3.0
5
  Tested up to: 4.4
 
6
  License: GPLv2 or later
7
  License URI: http://www.gnu.org/licenses/gpl-2.0.html
8
 
9
- Makes your contact form page more engaging by creating a good-looking contact form on your website. The interaction with your visitors was never easier.
10
 
11
  == Description ==
12
 
13
- Stay in touch with your visitors very easily. Pirate Contact Forms offers you a great and friendly contact form for your website.
14
- This is an easy-to-use WordPress contact form plugin. To create a contact form you just need to use the [pirate_forms] shortcode or the 'Pirate Forms' widget.
15
- This plugin is a fork of https://wordpress.org/plugins/proper-contact-form/
16
 
17
  Features:
18
 
19
  - It's easy to use
20
 
21
- Pirate Forms is very easy to set up. You can quickly create an engaging contact form by using a shortcode and copying it where you want it to appear.
22
 
23
  - It's fully customizable
24
 
@@ -36,7 +36,7 @@ With the SMTP option, you can be sure you won’t miss any e-mail from your visi
36
 
37
  You can keep all the contacts in an archive by saving their e-mail addresses. Pirate Contact Form allows you to do that by providing contact databases.
38
 
39
- A simple to use WordPress plugin for creating a contact form using the [pirate_forms] shortcode or the 'Pirate Forms' widget.
40
 
41
  Features:
42
 
@@ -46,6 +46,11 @@ Features:
46
  - reCAPTCHA
47
  - Store the contacts in the database
48
 
 
 
 
 
 
49
  == Installation ==
50
 
51
  Activating the Pirate Contact Form plugin is just like any other plugin. If you've uploaded the plugin package to your server already, skip to step 5 below:
@@ -64,3 +69,14 @@ Activating the Pirate Contact Form plugin is just like any other plugin. If you'
64
  2. Screenshot 2. How to customize contact form labels
65
  3. Screenshot 3. How to use reCaptcha
66
  4. Screenshot 4. Enabling SMTP
 
 
 
 
 
 
 
 
 
 
 
1
+ === Free & Simple Contact Form Plugin - PirateForms ===
2
  Contributors: themeisle, codeinwp, rodicaelena
3
  Tags: Attachment, cnotact, conact, contact, contact button, contact form, contact form plugin, contact me, contacts, contacts form plugin, contatc, copy, email submit form, email subscription, feedback, feedback form, form, insert the shortcode, message form, post feedback, request, send, send copy, send messages, shortcode, text, web-page feedback,smtp,recaptcha
4
  Requires at least: 3.0
5
  Tested up to: 4.4
6
+ Stable tag: trunk
7
  License: GPLv2 or later
8
  License URI: http://www.gnu.org/licenses/gpl-2.0.html
9
 
10
+ Makes your contact form page more engaging by creating a good-looking simple contact form on your website. The interaction with your visitors was never easier.
11
 
12
  == Description ==
13
 
14
+ Stay in touch with your visitors very easily. <a href="http://themeisle.com/plugins/pirate-forms/" rel="friend">Pirate Contact Forms</a> offers you a great and friendly contact form for your website.
15
+ This is an easy-to-use WordPress contact form with captcha plugin. To create a contact form you just need to use the [pirate_forms] shortcode or the 'Pirate Forms' widget.
 
16
 
17
  Features:
18
 
19
  - It's easy to use
20
 
21
+ This Contact Form 7 alternative is very easy to set up. You can quickly create an engaging contact form by using a shortcode and copying it where you want it to appear.
22
 
23
  - It's fully customizable
24
 
36
 
37
  You can keep all the contacts in an archive by saving their e-mail addresses. Pirate Contact Form allows you to do that by providing contact databases.
38
 
39
+ A simple to use contact form plugin for creating a clean contact form using the [pirate_forms] shortcode or the 'Pirate Forms' widget.
40
 
41
  Features:
42
 
46
  - reCAPTCHA
47
  - Store the contacts in the database
48
 
49
+ If are you looking for other alternatives check-out our article on <a href="http://www.codeinwp.com/blog/best-contact-form-plugins-wordpress/" rel="friend">best contact form plugins</a>, also if this doesn't work on your host, take a look at our <a href="http://www.codeinwp.com/blog/best-wordpress-shared-hosting-providers/" rel="friend">WordPress hosting study.
50
+
51
+ This plugin is a fork of https://wordpress.org/plugins/proper-contact-form/.
52
+
53
+
54
  == Installation ==
55
 
56
  Activating the Pirate Contact Form plugin is just like any other plugin. If you've uploaded the plugin package to your server already, skip to step 5 below:
69
  2. Screenshot 2. How to customize contact form labels
70
  3. Screenshot 3. How to use reCaptcha
71
  4. Screenshot 4. Enabling SMTP
72
+
73
+ == Changelog ==
74
+
75
+ = 1.0.9 =
76
+ * Fixed layout issues #52
77
+ * Update readme.txt with == Changelog == section #51
78
+
79
+ = 1.0.8 =
80
+ * Update readme.txt
81
+ * Update translations files
82
+ * #42, translation issues fixed