Contact Form 7 - Version 1.8.0.3

Version Description

Download this release

Release Info

Developer takayukister
Plugin Icon 128x128 Contact Form 7
Version 1.8.0.3
Comparing to
See all releases

Code changes from version 1.8.0.2 to 1.8.0.3

README.txt CHANGED
@@ -4,7 +4,7 @@ Donate link: http://takayukister.chipin.com/contact-form-7-20
4
  Tags: contact form, email, ajax, captcha, akismet
5
  Requires at least: 2.2
6
  Tested up to: 2.7-hemorrhage
7
- Stable tag: 1.8.0.2
8
 
9
  Just another contact form plugin. Simple but flexible.
10
 
@@ -27,18 +27,20 @@ Since being published in August 2007, Contact Form 7 has been translated into a
27
  * Finnish (fi) - [Miika Turunen](http://www.webwork.fi/)
28
  * French (fr_FR) - [Jillij](http://www.jillij.com/)
29
  * German (de_DE) - [Marcel Spitau](http://blog.spitau.de)
 
30
  * Hungarian (hu_HU) - [Andras Hirschler](http://hia.itblog.hu/)
31
  * Italian (it_IT) - [Bruno](http://www.brunosalzano.com)
32
  * Japanese (ja) - [Takayuki Miyoshi](http://ideasilo.wordpress.com) (plugin author)
33
  * Latvian (lv) - [Sandis Veinbergs](http://www.kleofass.lv/)
34
  * Norwegian (nb_NO) - Kjetil M. Bergem
35
  * Polish (pl_PL) - [Zbigniew Czernik](http://zibik.jogger.pl/)
 
36
  * Russian (ru_RU) - [Dmitry Volotovich](http://www.volnov.com)
37
  * Romanian (ro) - [Stas Sushkov](http://stas.nerd.ro/ascii/)
38
  * Spanish (es_ES) - [Jordi Sancho](http://www.qasolutions.net/blog)
39
  (updated by [Vladimir Prieto](http://vladimir.prie.to/) and [Federico Mikaelian](http://www.fedemika.com.ar/))
40
  * Swedish (sv_SE) - [Fredrik Jonsson](http://www.fredda-o-ac.se/)
41
- * Turkish (tr_TR) - [Roman Neumuller](http://katpatuka.wordpress.com) (updated by Hasan Yılmaz)
42
 
43
  If you have created your own language pack, or have an update of an existing one, you can send [gettext .po and .mo files](http://codex.wordpress.org/Translating_WordPress) to me so that I can bundle it into Contact Form 7.
44
 
4
  Tags: contact form, email, ajax, captcha, akismet
5
  Requires at least: 2.2
6
  Tested up to: 2.7-hemorrhage
7
+ Stable tag: 1.8.0.3
8
 
9
  Just another contact form plugin. Simple but flexible.
10
 
27
  * Finnish (fi) - [Miika Turunen](http://www.webwork.fi/)
28
  * French (fr_FR) - [Jillij](http://www.jillij.com/)
29
  * German (de_DE) - [Marcel Spitau](http://blog.spitau.de)
30
+ * Hindi (hi_IN) - [Tarun Joshi](http://www.readers-cafe.net/)
31
  * Hungarian (hu_HU) - [Andras Hirschler](http://hia.itblog.hu/)
32
  * Italian (it_IT) - [Bruno](http://www.brunosalzano.com)
33
  * Japanese (ja) - [Takayuki Miyoshi](http://ideasilo.wordpress.com) (plugin author)
34
  * Latvian (lv) - [Sandis Veinbergs](http://www.kleofass.lv/)
35
  * Norwegian (nb_NO) - Kjetil M. Bergem
36
  * Polish (pl_PL) - [Zbigniew Czernik](http://zibik.jogger.pl/)
37
+ * Portuguese (pt_PT) - [Hugo Baeta](http://hugobaeta.com)
38
  * Russian (ru_RU) - [Dmitry Volotovich](http://www.volnov.com)
39
  * Romanian (ro) - [Stas Sushkov](http://stas.nerd.ro/ascii/)
40
  * Spanish (es_ES) - [Jordi Sancho](http://www.qasolutions.net/blog)
41
  (updated by [Vladimir Prieto](http://vladimir.prie.to/) and [Federico Mikaelian](http://www.fedemika.com.ar/))
42
  * Swedish (sv_SE) - [Fredrik Jonsson](http://www.fredda-o-ac.se/)
43
+ * Turkish (tr_TR) - [Roman Neumuller](http://katpatuka.wordpress.com) (updated by [Hasan Yılmaz](http://hedefturkce.com/))
44
 
45
  If you have created your own language pack, or have an update of an existing one, you can send [gettext .po and .mo files](http://codex.wordpress.org/Translating_WordPress) to me so that I can bundle it into Contact Form 7.
46
 
captcha/captcha.php CHANGED
@@ -36,7 +36,7 @@ class tam_captcha {
36
  $this->font_size = 14;
37
  $this->font_char_width = 15;
38
  $this->img_type = 'png';
39
- $this->file_mode = 0755;
40
  }
41
 
42
  function generate_random_word() {
@@ -76,10 +76,10 @@ class tam_captcha {
76
  imagepng($im, $this->tmp_dir . $filename);
77
  }
78
  imagedestroy($im);
79
- chmod($this->tmp_dir . $filename, $this->file_mode);
80
  }
81
  if ($fh = fopen($this->tmp_dir . $prefix . '.php', 'w')) {
82
- chmod($this->tmp_dir . $prefix . '.php', $this->file_mode);
83
  fwrite($fh, '<?php $captcha = "' . $captcha . '"; ?>');
84
  fclose($fh);
85
  }
36
  $this->font_size = 14;
37
  $this->font_char_width = 15;
38
  $this->img_type = 'png';
39
+ $this->file_mode = 0755;
40
  }
41
 
42
  function generate_random_word() {
76
  imagepng($im, $this->tmp_dir . $filename);
77
  }
78
  imagedestroy($im);
79
+ @chmod($this->tmp_dir . $filename, $this->file_mode);
80
  }
81
  if ($fh = fopen($this->tmp_dir . $prefix . '.php', 'w')) {
82
+ @chmod($this->tmp_dir . $prefix . '.php', $this->file_mode);
83
  fwrite($fh, '<?php $captcha = "' . $captcha . '"; ?>');
84
  fclose($fh);
85
  }
languages/wpcf7-hi_IN.mo ADDED
Binary file
languages/wpcf7-hi_IN.po ADDED
@@ -0,0 +1,308 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ msgid ""
2
+ msgstr ""
3
+ "Project-Id-Version: Contact Form 7\n"
4
+ "Report-Msgid-Bugs-To: \n"
5
+ "POT-Creation-Date: 2008-08-10 18:56+0900\n"
6
+ "PO-Revision-Date: 2008-09-13 13:31-0500\n"
7
+ "Last-Translator: Tarun Joshi <apni.duniya@gmail.com>\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-SourceCharset: utf-8\n"
13
+ "X-Poedit-KeywordsList: __;_e;__ngettext:1,2;_c\n"
14
+ "X-Poedit-Basepath: ../..\n"
15
+ "Plural-Forms: nplurals=1; plural=0;\n"
16
+ "X-Poedit-SearchPath-0: contact-form-7\n"
17
+
18
+ #: contact-form-7/wp-contact-form-7.php:309
19
+ msgid "Contact form"
20
+ msgstr "संपर्क प्रपत्र "
21
+
22
+ #: contact-form-7/wp-contact-form-7.php:403
23
+ #: contact-form-7/includes/admin-panel.php:5
24
+ msgid "Contact Form 7"
25
+ msgstr "संपर्क प्रपत्र ७"
26
+
27
+ #: contact-form-7/wp-contact-form-7.php:419
28
+ msgid "optional"
29
+ msgstr "वैकल्पिक"
30
+
31
+ #: contact-form-7/wp-contact-form-7.php:420
32
+ msgid "Generate Tag"
33
+ msgstr "टैग उत्पन्न करें"
34
+
35
+ #: contact-form-7/wp-contact-form-7.php:421
36
+ msgid "Text field"
37
+ msgstr "पाठ्य क्षेत्र "
38
+
39
+ #: contact-form-7/wp-contact-form-7.php:422
40
+ msgid "Email field"
41
+ msgstr "ईपत्र क्षेत्र"
42
+
43
+ #: contact-form-7/wp-contact-form-7.php:423
44
+ msgid "Text area"
45
+ msgstr "पाठ्य क्षेत्र "
46
+
47
+ #: contact-form-7/wp-contact-form-7.php:424
48
+ msgid "Drop-down menu"
49
+ msgstr "नीचे गिरके दिखने वाली विकल्प सूची"
50
+
51
+ #: contact-form-7/wp-contact-form-7.php:425
52
+ msgid "Checkboxes"
53
+ msgstr "निशान पेटी"
54
+
55
+ #: contact-form-7/wp-contact-form-7.php:426
56
+ msgid "Radio buttons"
57
+ msgstr "रेडियो बटन"
58
+
59
+ #: contact-form-7/wp-contact-form-7.php:427
60
+ msgid "Acceptance"
61
+ msgstr "सहमति (स्वीकृति)"
62
+
63
+ #: contact-form-7/wp-contact-form-7.php:428
64
+ msgid "Make this checkbox checked by default?"
65
+ msgstr "इस निशान पेटी में पहले से ही निशान लगा के रखें?"
66
+
67
+ #: contact-form-7/wp-contact-form-7.php:429
68
+ msgid "Make this checkbox work inversely?"
69
+ msgstr "इस निशान पेटी से उल्टे से (प्रतिलोम) काम करवायें?"
70
+
71
+ #: contact-form-7/wp-contact-form-7.php:430
72
+ msgid "* That means visitor who accepts the term unchecks it."
73
+ msgstr "* इसका मतलब है कि आगंतुक जिन्होंने शर्तें स्वीकारी थी उन्होंने इस पर लगा चटका हटाया है."
74
+
75
+ #: contact-form-7/wp-contact-form-7.php:431
76
+ msgid "CAPTCHA"
77
+ msgstr "कैप्चा (CAPTCHA)"
78
+
79
+ #: contact-form-7/wp-contact-form-7.php:432
80
+ msgid "Submit button"
81
+ msgstr "भेजने (सबमिट) के लिये बटन"
82
+
83
+ #: contact-form-7/wp-contact-form-7.php:433
84
+ msgid "Name"
85
+ msgstr "नाम"
86
+
87
+ #: contact-form-7/wp-contact-form-7.php:434
88
+ msgid "Required field?"
89
+ msgstr "अपेक्षित क्षेत्र"
90
+
91
+ #: contact-form-7/wp-contact-form-7.php:435
92
+ msgid "Allow multiple selections?"
93
+ msgstr "बहुविकल्प चुनने दें?"
94
+
95
+ #: contact-form-7/wp-contact-form-7.php:436
96
+ msgid "Insert a blank item as the first option?"
97
+ msgstr "एक खाली विषय (चीज) पहले विकल्प के रूप में डालें?"
98
+
99
+ #: contact-form-7/wp-contact-form-7.php:437
100
+ msgid "Make checkboxes exclusive?"
101
+ msgstr "क्या निशान पेटी अलग से बनायें?"
102
+
103
+ #: contact-form-7/wp-contact-form-7.php:438
104
+ msgid "Choices"
105
+ msgstr "अन्य विकल्प"
106
+
107
+ #: contact-form-7/wp-contact-form-7.php:439
108
+ msgid "Label"
109
+ msgstr "चिप्पी (सूचक पत्र)"
110
+
111
+ #: contact-form-7/wp-contact-form-7.php:440
112
+ msgid "Default value"
113
+ msgstr "पहले से तयशुदा गुण"
114
+
115
+ #: contact-form-7/wp-contact-form-7.php:441
116
+ msgid "Akismet"
117
+ msgstr "एक्सिमेट (Akismet)"
118
+
119
+ #: contact-form-7/wp-contact-form-7.php:442
120
+ msgid "This field requires author's name"
121
+ msgstr "यहाँ लेखक का नाम जरूरी (अपेक्षित) है"
122
+
123
+ #: contact-form-7/wp-contact-form-7.php:443
124
+ msgid "This field requires author's URL"
125
+ msgstr "यहाँ लेखक का यू आर एल (वेब पता) जरूरी (अपेक्षित) है"
126
+
127
+ #: contact-form-7/wp-contact-form-7.php:444
128
+ msgid "This field requires author's email address"
129
+ msgstr "यहाँ लेखक का ईपत्र पता जरूरी (अपेक्षित) है"
130
+
131
+ #: contact-form-7/wp-contact-form-7.php:445
132
+ msgid "Copy and paste this code into the form"
133
+ msgstr "इस कूट (कोड) की नकल (प्रतिलिपि) करके प्रपत्र में चिपकायें"
134
+
135
+ #: contact-form-7/wp-contact-form-7.php:446
136
+ msgid "Foreground color"
137
+ msgstr "अग्रभाग के लिये रंग "
138
+
139
+ #: contact-form-7/wp-contact-form-7.php:447
140
+ msgid "Background color"
141
+ msgstr "पृष्टभूमि (परिप्रेक्ष्य) के लिये रंग "
142
+
143
+ #: contact-form-7/wp-contact-form-7.php:448
144
+ msgid "Image size"
145
+ msgstr "तस्वीर (प्रतिबिंब) का आकार "
146
+
147
+ #: contact-form-7/wp-contact-form-7.php:449
148
+ msgid "Small"
149
+ msgstr "छोटा"
150
+
151
+ #: contact-form-7/wp-contact-form-7.php:450
152
+ msgid "Medium"
153
+ msgstr "मध्यम (मझोला)"
154
+
155
+ #: contact-form-7/wp-contact-form-7.php:451
156
+ msgid "Large"
157
+ msgstr "बड़ा"
158
+
159
+ #: contact-form-7/wp-contact-form-7.php:452
160
+ msgid "Image settings"
161
+ msgstr "तस्वीर (प्रतिबिंब) अनुकूलन "
162
+
163
+ #: contact-form-7/wp-contact-form-7.php:453
164
+ msgid "Input field settings"
165
+ msgstr "निवेश स्थान (क्षेत्र) अनुकूलन "
166
+
167
+ #: contact-form-7/wp-contact-form-7.php:454
168
+ msgid "For image"
169
+ msgstr "तस्वीर (प्रतिबिंब) के लिये"
170
+
171
+ #: contact-form-7/wp-contact-form-7.php:455
172
+ msgid "For input field"
173
+ msgstr "निवेश स्थान (क्षेत्र) के लिये"
174
+
175
+ #: contact-form-7/wp-contact-form-7.php:456
176
+ msgid "* One choice per line."
177
+ msgstr "* एक पंक्ति पर एक ही पसंद."
178
+
179
+ #: contact-form-7/wp-contact-form-7.php:483
180
+ msgid "Contact form created."
181
+ msgstr "संपर्क प्रपत्र बना दिया गया है."
182
+
183
+ #: contact-form-7/wp-contact-form-7.php:486
184
+ msgid "Contact form saved."
185
+ msgstr "संपर्क प्रपत्र सुरक्षित रख दिया गया है."
186
+
187
+ #: contact-form-7/wp-contact-form-7.php:489
188
+ msgid "Contact form deleted."
189
+ msgstr "संपर्क प्रपत्र मिटा दिया गया है."
190
+
191
+ #: contact-form-7/wp-contact-form-7.php:496
192
+ msgid "Untitled"
193
+ msgstr "शीर्षक रहित "
194
+
195
+ #: contact-form-7/wp-contact-form-7.php:522
196
+ msgid "Your Name"
197
+ msgstr "आपका नाम"
198
+
199
+ #: contact-form-7/wp-contact-form-7.php:522
200
+ #: contact-form-7/wp-contact-form-7.php:524
201
+ msgid "(required)"
202
+ msgstr "(जरूरी [अपेक्षित])"
203
+
204
+ #: contact-form-7/wp-contact-form-7.php:524
205
+ msgid "Your Email"
206
+ msgstr "आपका ईपत्र पता"
207
+
208
+ #: contact-form-7/wp-contact-form-7.php:526
209
+ msgid "Subject"
210
+ msgstr "विषय"
211
+
212
+ #: contact-form-7/wp-contact-form-7.php:528
213
+ msgid "Your Message"
214
+ msgstr "आपका संदेश"
215
+
216
+ #: contact-form-7/wp-contact-form-7.php:530
217
+ #: contact-form-7/wp-contact-form-7.php:1046
218
+ msgid "Send"
219
+ msgstr "भेजना"
220
+
221
+ #: contact-form-7/wp-contact-form-7.php:559
222
+ msgid "Your message was sent successfully. Thanks."
223
+ msgstr "आपका संदेश सफलतापूर्वक भेज दिया गया, धन्यवाद"
224
+
225
+ #: contact-form-7/wp-contact-form-7.php:561
226
+ msgid "Failed to send your message. Please try later or contact administrator by other way."
227
+ msgstr "आपका संदेश नही भेज पाये. कृप्या दोबारा कोशिश करें या फिर किसी दूसरे तरीके से प्रबंधक से संपर्क करें."
228
+
229
+ #: contact-form-7/wp-contact-form-7.php:563
230
+ msgid "Validation errors occurred. Please confirm the fields and submit it again."
231
+ msgstr "प्रमाणीकरण करने में गलतियाँ आयीं, कृप्या दोबारा जाँच के फिर से बटन पर चटका (सबमिट) लगायें."
232
+
233
+ #: contact-form-7/wp-contact-form-7.php:565
234
+ msgid "Please accept the terms to proceed."
235
+ msgstr "आगे जाने के लिये कृप्या शर्तें स्वीकारें."
236
+
237
+ #: contact-form-7/wp-contact-form-7.php:567
238
+ msgid "Email address seems invalid."
239
+ msgstr "ईपत्र का पता अमान्य (गलत) प्रतीत होता है."
240
+
241
+ #: contact-form-7/wp-contact-form-7.php:569
242
+ msgid "Please fill the required field."
243
+ msgstr "कृप्या अपेक्षित क्षेत्र भरें."
244
+
245
+ #: contact-form-7/wp-contact-form-7.php:571
246
+ msgid "Your entered code is incorrect."
247
+ msgstr "आपके द्वारा लिखा गया कूट (कोड) गलत है."
248
+
249
+ #: contact-form-7/includes/admin-panel.php:16
250
+ msgid "Add new"
251
+ msgstr "नया जोड़ें"
252
+
253
+ #: contact-form-7/includes/admin-panel.php:32
254
+ msgid "Copy and paste this code into your post content."
255
+ msgstr "इस कूट (कोड) की नकल (प्रतिलिपि) करके प्रविष्टि के अंश में चिपकायें."
256
+
257
+ #: contact-form-7/includes/admin-panel.php:38
258
+ msgid "Form"
259
+ msgstr "प्रपत्र (फार्म)"
260
+
261
+ #: contact-form-7/includes/admin-panel.php:42
262
+ msgid "Mail"
263
+ msgstr "चिट्ठी-पत्री "
264
+
265
+ #: contact-form-7/includes/admin-panel.php:44
266
+ #: contact-form-7/includes/admin-panel.php:65
267
+ msgid "To:"
268
+ msgstr "किसको:"
269
+
270
+ #: contact-form-7/includes/admin-panel.php:48
271
+ #: contact-form-7/includes/admin-panel.php:69
272
+ msgid "From:"
273
+ msgstr "किसकी ओर से:"
274
+
275
+ #: contact-form-7/includes/admin-panel.php:52
276
+ #: contact-form-7/includes/admin-panel.php:73
277
+ msgid "Subject:"
278
+ msgstr "विषय:"
279
+
280
+ #: contact-form-7/includes/admin-panel.php:56
281
+ #: contact-form-7/includes/admin-panel.php:77
282
+ msgid "Message body:"
283
+ msgstr "संदेश लिखने की जगह:"
284
+
285
+ #: contact-form-7/includes/admin-panel.php:61
286
+ msgid "Mail (2)"
287
+ msgstr "चिट्ठी-पत्री (२)"
288
+
289
+ #: contact-form-7/includes/admin-panel.php:63
290
+ msgid "Use mail (2)"
291
+ msgstr "चिट्ठी-पत्री (२) उपयोग में लायें"
292
+
293
+ #: contact-form-7/includes/admin-panel.php:85
294
+ msgid "Save"
295
+ msgstr "सुरक्षित करें"
296
+
297
+ #: contact-form-7/includes/admin-panel.php:92
298
+ msgid "Delete this contact form"
299
+ msgstr "इस संपर्क प्रपत्र को मिटायें"
300
+
301
+ #: contact-form-7/includes/admin-panel.php:93
302
+ msgid ""
303
+ "You are about to delete this contact form.\n"
304
+ " 'Cancel' to stop, 'OK' to delete."
305
+ msgstr ""
306
+ "आप इस संपर्क प्रपत्र को डिलीट करने ही वाले हैं. \n"
307
+ " डिलीट नही करने के लिये रद्द करें, डिलीट करने के लिये ओके दबायें"
308
+
languages/wpcf7-pt_PT.mo ADDED
Binary file
languages/wpcf7-pt_PT.po ADDED
@@ -0,0 +1,305 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ msgid ""
2
+ msgstr ""
3
+ "Project-Id-Version: \n"
4
+ "Report-Msgid-Bugs-To: \n"
5
+ "POT-Creation-Date: 2008-03-02 16:52+0900\n"
6
+ "PO-Revision-Date: \n"
7
+ "Last-Translator: Hugo Baeta <info@hugobaeta.com>\n"
8
+ "Language-Team: Hugo Baeta <info@hugobaeta.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-Language: Portuguese\n"
13
+ "X-Poedit-Country: PORTUGAL\n"
14
+
15
+ #: contact-form-7/wp-contact-form-7.php:271
16
+ msgid "Contact form"
17
+ msgstr "Formulário de contacto"
18
+
19
+ #: contact-form-7/wp-contact-form-7.php:356
20
+ #: contact-form-7/includes/admin-panel.php:5
21
+ msgid "Contact Form 7"
22
+ msgstr "Contact Form 7"
23
+
24
+ #: contact-form-7/wp-contact-form-7.php:372
25
+ msgid "optional"
26
+ msgstr "opcional"
27
+
28
+ #: contact-form-7/wp-contact-form-7.php:373
29
+ msgid "Generate Tag"
30
+ msgstr "Gerar tag"
31
+
32
+ #: contact-form-7/wp-contact-form-7.php:374
33
+ msgid "Text field"
34
+ msgstr "Campo de texto"
35
+
36
+ #: contact-form-7/wp-contact-form-7.php:375
37
+ msgid "Email field"
38
+ msgstr "Campo de e-mail"
39
+
40
+ #: contact-form-7/wp-contact-form-7.php:376
41
+ msgid "Text area"
42
+ msgstr "Área de texto"
43
+
44
+ #: contact-form-7/wp-contact-form-7.php:377
45
+ msgid "Drop-down menu"
46
+ msgstr "Menu drop-down"
47
+
48
+ #: contact-form-7/wp-contact-form-7.php:378
49
+ msgid "Checkboxes"
50
+ msgstr "Caixa de Selecção"
51
+
52
+ #: contact-form-7/wp-contact-form-7.php:379
53
+ msgid "Radio buttons"
54
+ msgstr "Botões de Selecção"
55
+
56
+ #: contact-form-7/wp-contact-form-7.php:380
57
+ msgid "Acceptance"
58
+ msgstr "Aceitação"
59
+
60
+ #: contact-form-7/wp-contact-form-7.php:381
61
+ msgid "Make this checkbox checked by default?"
62
+ msgstr "Deixar esta opção marcada por defeito?"
63
+
64
+ #: contact-form-7/wp-contact-form-7.php:382
65
+ msgid "Make this checkbox work inversely?"
66
+ msgstr "Fazer esta Caixa de Selecção funcionar inversamente?"
67
+
68
+ #: contact-form-7/wp-contact-form-7.php:383
69
+ msgid "* That means visitor who accepts the term unchecks it."
70
+ msgstr "* Isso significa que o visitante que aceitar os termos deverá desmarcá-la."
71
+
72
+ #: contact-form-7/wp-contact-form-7.php:384
73
+ msgid "CAPTCHA"
74
+ msgstr "CAPTCHA"
75
+
76
+ #: contact-form-7/wp-contact-form-7.php:385
77
+ msgid "Submit button"
78
+ msgstr "Botão de envio"
79
+
80
+ #: contact-form-7/wp-contact-form-7.php:386
81
+ msgid "Name"
82
+ msgstr "Nome"
83
+
84
+ #: contact-form-7/wp-contact-form-7.php:387
85
+ msgid "Required field?"
86
+ msgstr "Campo obrigatório?"
87
+
88
+ #: contact-form-7/wp-contact-form-7.php:388
89
+ msgid "Allow multiple selections?"
90
+ msgstr "Permitir selecções múltiplas?"
91
+
92
+ #: contact-form-7/wp-contact-form-7.php:389
93
+ msgid "Insert a blank item as the first option?"
94
+ msgstr "Inserir ítem em branco como primeira opção?"
95
+
96
+ #: contact-form-7/wp-contact-form-7.php:390
97
+ msgid "Make checkboxes exclusive?"
98
+ msgstr "Tornar as caixas de selecção exclusivas?"
99
+
100
+ #: contact-form-7/wp-contact-form-7.php:391
101
+ msgid "Choices"
102
+ msgstr "Opções"
103
+
104
+ #: contact-form-7/wp-contact-form-7.php:392
105
+ msgid "Label"
106
+ msgstr "Etiqueta"
107
+
108
+ #: contact-form-7/wp-contact-form-7.php:393
109
+ msgid "Default value"
110
+ msgstr "Valor padrão"
111
+
112
+ #: contact-form-7/wp-contact-form-7.php:394
113
+ msgid "Akismet"
114
+ msgstr "Akismet"
115
+
116
+ #: contact-form-7/wp-contact-form-7.php:395
117
+ msgid "This field requires author's name"
118
+ msgstr "Este campo é o nome do autor"
119
+
120
+ #: contact-form-7/wp-contact-form-7.php:396
121
+ msgid "This field requires author's URL"
122
+ msgstr "Este campo é o URL do autor"
123
+
124
+ #: contact-form-7/wp-contact-form-7.php:397
125
+ msgid "This field requires author's email address"
126
+ msgstr "Este campo é o endereço de e-mail do autor"
127
+
128
+ #: contact-form-7/wp-contact-form-7.php:398
129
+ msgid "Copy and paste this code into the form"
130
+ msgstr "Copie e cole o seguinte código no formulário"
131
+
132
+ #: contact-form-7/wp-contact-form-7.php:399
133
+ msgid "Foreground color"
134
+ msgstr "Cor do texto"
135
+
136
+ #: contact-form-7/wp-contact-form-7.php:400
137
+ msgid "Background color"
138
+ msgstr "Cor de fundo"
139
+
140
+ #: contact-form-7/wp-contact-form-7.php:401
141
+ msgid "Image size"
142
+ msgstr "Tamanho da imagem"
143
+
144
+ #: contact-form-7/wp-contact-form-7.php:402
145
+ msgid "Small"
146
+ msgstr "Pequena"
147
+
148
+ #: contact-form-7/wp-contact-form-7.php:403
149
+ msgid "Medium"
150
+ msgstr "Média"
151
+
152
+ #: contact-form-7/wp-contact-form-7.php:404
153
+ msgid "Large"
154
+ msgstr "Grande"
155
+
156
+ #: contact-form-7/wp-contact-form-7.php:405
157
+ msgid "Image settings"
158
+ msgstr "Configurações da imagem"
159
+
160
+ #: contact-form-7/wp-contact-form-7.php:406
161
+ msgid "Input field settings"
162
+ msgstr "Configurações do campo de introdução"
163
+
164
+ #: contact-form-7/wp-contact-form-7.php:407
165
+ msgid "For image"
166
+ msgstr "Para a imagem"
167
+
168
+ #: contact-form-7/wp-contact-form-7.php:408
169
+ msgid "For input field"
170
+ msgstr "Para o campo de introdução"
171
+
172
+ #: contact-form-7/wp-contact-form-7.php:409
173
+ msgid "* One choice per line."
174
+ msgstr "* Uma opção por linha."
175
+
176
+ #: contact-form-7/wp-contact-form-7.php:428
177
+ msgid "Contact form created."
178
+ msgstr "Formulário de contacto criado."
179
+
180
+ #: contact-form-7/wp-contact-form-7.php:431
181
+ msgid "Contact form saved."
182
+ msgstr "Formulário de contacto salvo."
183
+
184
+ #: contact-form-7/wp-contact-form-7.php:434
185
+ msgid "Contact form deleted."
186
+ msgstr "Formulário de contacto eliminado."
187
+
188
+ #: contact-form-7/wp-contact-form-7.php:441
189
+ msgid "Untitled"
190
+ msgstr "Sem nome"
191
+
192
+ #: contact-form-7/wp-contact-form-7.php:465
193
+ msgid "Your Name"
194
+ msgstr "O seu nome"
195
+
196
+ #: contact-form-7/wp-contact-form-7.php:465
197
+ #: contact-form-7/wp-contact-form-7.php:467
198
+ msgid "(required)"
199
+ msgstr "(obrigatório)"
200
+
201
+ #: contact-form-7/wp-contact-form-7.php:467
202
+ msgid "Your Email"
203
+ msgstr "O seu e-mail"
204
+
205
+ #: contact-form-7/wp-contact-form-7.php:469
206
+ msgid "Subject"
207
+ msgstr "Assunto"
208
+
209
+ #: contact-form-7/wp-contact-form-7.php:471
210
+ msgid "Your Message"
211
+ msgstr "A sua mensagem"
212
+
213
+ #: contact-form-7/wp-contact-form-7.php:473
214
+ #: contact-form-7/wp-contact-form-7.php:956
215
+ msgid "Send"
216
+ msgstr "Enviar"
217
+
218
+ #: contact-form-7/wp-contact-form-7.php:502
219
+ msgid "Your message was sent successfully. Thanks."
220
+ msgstr "A sua mensagem foi enviada com sucesso. Obrigado."
221
+
222
+ #: contact-form-7/wp-contact-form-7.php:504
223
+ msgid "Failed to send your message. Please try later or contact administrator by other way."
224
+ msgstr "Ocorreu um erro ao enviar a sua mensagem. Por favor tente mais tarde ou tente contactar o administrador de outra forma."
225
+
226
+ #: contact-form-7/wp-contact-form-7.php:506
227
+ msgid "Validation errors occurred. Please confirm the fields and submit it again."
228
+ msgstr "Ocorreram erros de validação. Por favor verifique os dados e envie novamente."
229
+
230
+ #: contact-form-7/wp-contact-form-7.php:508
231
+ msgid "Please accept the terms to proceed."
232
+ msgstr "Por favor aceite os termos para prosseguir."
233
+
234
+ #: contact-form-7/wp-contact-form-7.php:510
235
+ msgid "Email address seems invalid."
236
+ msgstr "O endereço de e-mail parece inválido."
237
+
238
+ #: contact-form-7/wp-contact-form-7.php:512
239
+ msgid "Please fill the required field."
240
+ msgstr "Por favor preencha este campo obrigatório."
241
+
242
+ #: contact-form-7/wp-contact-form-7.php:514
243
+ msgid "Your entered code is incorrect."
244
+ msgstr "O código introduzido está incorrecto."
245
+
246
+ #: contact-form-7/includes/admin-panel.php:15
247
+ msgid "Add new"
248
+ msgstr "Adicionar novo"
249
+
250
+ #: contact-form-7/includes/admin-panel.php:28
251
+ msgid "Copy and paste this code into your post content."
252
+ msgstr "Copie e cole este código no conteúdo do seu artigo ou página."
253
+
254
+ #: contact-form-7/includes/admin-panel.php:33
255
+ msgid "Form"
256
+ msgstr "Formulário"
257
+
258
+ #: contact-form-7/includes/admin-panel.php:37
259
+ msgid "Mail"
260
+ msgstr "Mail"
261
+
262
+ #: contact-form-7/includes/admin-panel.php:39
263
+ #: contact-form-7/includes/admin-panel.php:60
264
+ msgid "To:"
265
+ msgstr "Para:"
266
+
267
+ #: contact-form-7/includes/admin-panel.php:43
268
+ #: contact-form-7/includes/admin-panel.php:64
269
+ msgid "From:"
270
+ msgstr "De:"
271
+
272
+ #: contact-form-7/includes/admin-panel.php:47
273
+ #: contact-form-7/includes/admin-panel.php:68
274
+ msgid "Subject:"
275
+ msgstr "Assunto:"
276
+
277
+ #: contact-form-7/includes/admin-panel.php:51
278
+ #: contact-form-7/includes/admin-panel.php:72
279
+ msgid "Message body:"
280
+ msgstr "Corpo da mensagem:"
281
+
282
+ #: contact-form-7/includes/admin-panel.php:56
283
+ msgid "Mail (2)"
284
+ msgstr "Mail (2)"
285
+
286
+ #: contact-form-7/includes/admin-panel.php:58
287
+ msgid "Use mail (2)"
288
+ msgstr "Usar mail (2)"
289
+
290
+ #: contact-form-7/includes/admin-panel.php:80
291
+ msgid "Save"
292
+ msgstr "Salvar"
293
+
294
+ #: contact-form-7/includes/admin-panel.php:86
295
+ msgid "Delete this contact form"
296
+ msgstr "Eliminar este formulário de contato"
297
+
298
+ #: contact-form-7/includes/admin-panel.php:87
299
+ msgid ""
300
+ "You are about to delete this contact form.\n"
301
+ " 'Cancel' to stop, 'OK' to delete."
302
+ msgstr ""
303
+ "Está prestes a eliminar este formulário.\n"
304
+ " 'Cancelar' para interromper, 'OK' para eleminar."
305
+
wp-contact-form-7.php CHANGED
@@ -4,7 +4,7 @@ Plugin Name: Contact Form 7
4
  Plugin URI: http://ideasilo.wordpress.com/2007/04/30/contact-form-7/
5
  Description: Just another contact form plugin. Simple but flexible.
6
  Author: Takayuki Miyoshi
7
- Version: 1.8.0.2
8
  Author URI: http://ideasilo.wordpress.com/
9
  */
10
 
@@ -25,7 +25,7 @@ Author URI: http://ideasilo.wordpress.com/
25
  Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
26
  */
27
 
28
- define('WPCF7_VERSION', '1.8.0.2');
29
 
30
  function wpcf7_version() {
31
  return WPCF7_VERSION;
4
  Plugin URI: http://ideasilo.wordpress.com/2007/04/30/contact-form-7/
5
  Description: Just another contact form plugin. Simple but flexible.
6
  Author: Takayuki Miyoshi
7
+ Version: 1.8.0.3
8
  Author URI: http://ideasilo.wordpress.com/
9
  */
10
 
25
  Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
26
  */
27
 
28
+ define('WPCF7_VERSION', '1.8.0.3');
29
 
30
  function wpcf7_version() {
31
  return WPCF7_VERSION;