Version Description
Download this release
Release Info
Developer | takayukister |
Plugin | Contact Form 7 |
Version | 1.7.8 |
Comparing to | |
See all releases |
Code changes from version 1.7.7.1 to 1.7.8
- README.txt +4 -3
- admin-stylesheet.css +0 -6
- includes/admin-panel.php +3 -3
- languages/wpcf7-pt_BR.mo +0 -0
- languages/wpcf7-pt_BR.po +243 -105
- languages/wpcf7-ro.mo +0 -0
- languages/wpcf7-ro.po +308 -0
- wp-contact-form-7.php +6 -2
README.txt
CHANGED
@@ -3,8 +3,8 @@ Contributors: takayukister
|
|
3 |
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.6-
|
7 |
-
Stable tag: 1.7.
|
8 |
|
9 |
Just another contact form plugin. Simple but flexible.
|
10 |
|
@@ -41,7 +41,7 @@ comment [on my blog](http://ideasilo.wordpress.com/2007/04/30/contact-form-7/).
|
|
41 |
|
42 |
Contact Form 7 has been translated into the following languages.
|
43 |
|
44 |
-
* Brazilian Portuguese, by [Leonardo Pinheiro](http://www.eletrikabarbarella.com.br/)
|
45 |
* Bulgarian, by [Iliyan Darganov](http://www.darganov.com/)
|
46 |
* Catalan, by [Jordi Sancho](http://www.qasolutions.net/blog)
|
47 |
* Czech, by Korry
|
@@ -55,6 +55,7 @@ Contact Form 7 has been translated into the following languages.
|
|
55 |
* Norwegian, by Kjetil M. Bergem
|
56 |
* Polish, by [Zbigniew Czernik](http://zibik.jogger.pl/)
|
57 |
* Russian, by [Dmitry Volotovich](http://www.volnov.com)
|
|
|
58 |
* Spanish, by [Jordi Sancho](http://www.qasolutions.net/blog)
|
59 |
(revised by [Vladimir Prieto](http://vladimir.prie.to/) and [Federico Mikaelian](http://www.fedemika.com.ar/))
|
60 |
* Swedish, by [Fredrik Jonsson](http://www.fredda-o-ac.se/)
|
3 |
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.6-RC1
|
7 |
+
Stable tag: 1.7.8
|
8 |
|
9 |
Just another contact form plugin. Simple but flexible.
|
10 |
|
41 |
|
42 |
Contact Form 7 has been translated into the following languages.
|
43 |
|
44 |
+
* Brazilian Portuguese, by [Leonardo Pinheiro](http://www.eletrikabarbarella.com.br/) (revised by Henrique Vianna)
|
45 |
* Bulgarian, by [Iliyan Darganov](http://www.darganov.com/)
|
46 |
* Catalan, by [Jordi Sancho](http://www.qasolutions.net/blog)
|
47 |
* Czech, by Korry
|
55 |
* Norwegian, by Kjetil M. Bergem
|
56 |
* Polish, by [Zbigniew Czernik](http://zibik.jogger.pl/)
|
57 |
* Russian, by [Dmitry Volotovich](http://www.volnov.com)
|
58 |
+
* Romanian, by [Stas Sushkov](http://stas.nerd.ro/ascii/)
|
59 |
* Spanish, by [Jordi Sancho](http://www.qasolutions.net/blog)
|
60 |
(revised by [Vladimir Prieto](http://vladimir.prie.to/) and [Federico Mikaelian](http://www.fedemika.com.ar/))
|
61 |
* Swedish, by [Fredrik Jonsson](http://www.fredda-o-ac.se/)
|
admin-stylesheet.css
CHANGED
@@ -35,9 +35,6 @@ input#wpcf7-title {
|
|
35 |
font: bold 20px serif;
|
36 |
cursor: pointer;
|
37 |
}
|
38 |
-
input.cfsave {
|
39 |
-
font-weight: bold;
|
40 |
-
}
|
41 |
p.tagcode {
|
42 |
color: #333;
|
43 |
}
|
@@ -66,9 +63,6 @@ textarea {
|
|
66 |
label.disabled {
|
67 |
color: #777;
|
68 |
}
|
69 |
-
p.submit {
|
70 |
-
margin: 0 24px;
|
71 |
-
}
|
72 |
div.tag-generator {
|
73 |
position: relative;
|
74 |
background: #fff;
|
35 |
font: bold 20px serif;
|
36 |
cursor: pointer;
|
37 |
}
|
|
|
|
|
|
|
38 |
p.tagcode {
|
39 |
color: #333;
|
40 |
}
|
63 |
label.disabled {
|
64 |
color: #777;
|
65 |
}
|
|
|
|
|
|
|
66 |
div.tag-generator {
|
67 |
position: relative;
|
68 |
background: #fff;
|
includes/admin-panel.php
CHANGED
@@ -76,9 +76,9 @@
|
|
76 |
|
77 |
<input type="hidden" id="wpcf7-options-recipient" name="wpcf7-options-recipient" value="<?php echo htmlspecialchars($cf['options']['recipient']); ?>" />
|
78 |
|
79 |
-
<
|
80 |
-
<input type="submit" class="
|
81 |
-
</
|
82 |
</div>
|
83 |
|
84 |
<?php if (! $unsaved) : ?>
|
76 |
|
77 |
<input type="hidden" id="wpcf7-options-recipient" name="wpcf7-options-recipient" value="<?php echo htmlspecialchars($cf['options']['recipient']); ?>" />
|
78 |
|
79 |
+
<div>
|
80 |
+
<input type="submit" class="button button-highlighted" name="wpcf7-save" value="<?php _e('Save', 'wpcf7'); ?>" />
|
81 |
+
</div>
|
82 |
</div>
|
83 |
|
84 |
<?php if (! $unsaved) : ?>
|
languages/wpcf7-pt_BR.mo
CHANGED
Binary file
|
languages/wpcf7-pt_BR.po
CHANGED
@@ -1,165 +1,303 @@
|
|
1 |
msgid ""
|
2 |
msgstr ""
|
3 |
-
"Project-Id-Version:
|
4 |
-
"
|
5 |
-
"
|
6 |
-
"
|
7 |
-
"
|
|
|
8 |
"MIME-Version: 1.0\n"
|
9 |
-
"Content-Type: text/plain; charset=
|
10 |
"Content-Transfer-Encoding: 8bit\n"
|
11 |
-
|
12 |
-
|
13 |
-
"X-Poedit-SourceCharset: utf-8\n"
|
14 |
-
"X-Poedit-KeywordsList: __;_e\n"
|
15 |
-
"X-Poedit-Basepath: ../..\n"
|
16 |
-
"X-Poedit-SearchPath-0: contact-form-7\n"
|
17 |
-
|
18 |
-
#: contact-form-7/wp-contact-form-7.php:128
|
19 |
-
#: contact-form-7/wp-contact-form-7.php:201
|
20 |
msgid "Contact form"
|
21 |
-
msgstr "Formulário de
|
22 |
|
23 |
-
#: contact-form-7/wp-contact-form-7.php:
|
24 |
#: contact-form-7/includes/admin-panel.php:5
|
25 |
msgid "Contact Form 7"
|
26 |
msgstr "Contact Form 7"
|
27 |
|
28 |
-
#: contact-form-7/wp-contact-form-7.php:
|
29 |
-
|
30 |
-
|
31 |
-
msgstr "Formulário de contato \"%s\" excluído."
|
32 |
|
33 |
-
#: contact-form-7/wp-contact-form-7.php:
|
34 |
-
|
35 |
-
|
36 |
-
msgstr "Formulário de contato \"%s\" salvo."
|
37 |
|
38 |
-
#: contact-form-7/wp-contact-form-7.php:
|
39 |
-
msgid "
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
40 |
msgstr "Nome"
|
41 |
|
42 |
-
#: contact-form-7/wp-contact-form-7.php:
|
43 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
44 |
msgid "(required)"
|
45 |
msgstr "(obrigatório)"
|
46 |
|
47 |
-
#: contact-form-7/wp-contact-form-7.php:
|
48 |
msgid "Your Email"
|
49 |
-
msgstr "
|
50 |
|
51 |
-
#: contact-form-7/wp-contact-form-7.php:
|
52 |
msgid "Subject"
|
53 |
msgstr "Assunto"
|
54 |
|
55 |
-
#: contact-form-7/wp-contact-form-7.php:
|
56 |
msgid "Your Message"
|
57 |
-
msgstr "
|
58 |
|
59 |
-
#: contact-form-7/wp-contact-form-7.php:
|
60 |
-
#: contact-form-7/wp-contact-form-7.php:
|
61 |
msgid "Send"
|
62 |
msgstr "Enviar"
|
63 |
|
64 |
-
#: contact-form-7/wp-contact-form-7.php:
|
65 |
msgid "Your message was sent successfully. Thanks."
|
66 |
msgstr "Sua mensagem foi enviada com sucesso. Obrigado."
|
67 |
|
68 |
-
#: contact-form-7/wp-contact-form-7.php:
|
69 |
msgid "Failed to send your message. Please try later or contact administrator by other way."
|
70 |
-
msgstr "
|
71 |
|
72 |
-
#: contact-form-7/wp-contact-form-7.php:
|
73 |
-
#: contact-form-7/wp-contact-form-7.php:424
|
74 |
msgid "Validation errors occurred. Please confirm the fields and submit it again."
|
75 |
-
msgstr "Por favor
|
76 |
|
77 |
-
#: contact-form-7/wp-contact-form-7.php:
|
78 |
-
|
79 |
-
|
80 |
-
msgid "Please fill the required field."
|
81 |
-
msgstr "Por favor preencha os campos obrigatórios."
|
82 |
|
83 |
-
#: contact-form-7/wp-contact-form-7.php:
|
84 |
-
#: contact-form-7/wp-contact-form-7.php:402
|
85 |
msgid "Email address seems invalid."
|
86 |
-
msgstr "O e-mail parece
|
87 |
|
88 |
-
#: contact-form-7/
|
89 |
-
|
90 |
-
|
91 |
-
msgstr "Adiconar novo"
|
92 |
|
93 |
-
#: contact-form-7/
|
94 |
-
msgid "
|
95 |
-
msgstr "
|
96 |
|
97 |
-
#: contact-form-7/includes/admin-panel.php:
|
|
|
|
|
|
|
|
|
98 |
msgid "Copy and paste this code into your post content."
|
99 |
-
msgstr "Copie e
|
100 |
|
101 |
-
#: contact-form-7/includes/admin-panel.php:
|
102 |
-
msgid "Form
|
103 |
-
msgstr "
|
104 |
|
105 |
-
#: contact-form-7/includes/admin-panel.php:
|
106 |
-
msgid "Mail
|
107 |
-
msgstr "
|
108 |
|
109 |
-
#: contact-form-7/includes/admin-panel.php:
|
110 |
-
|
111 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
112 |
|
113 |
-
#: contact-form-7/includes/admin-panel.php:
|
114 |
-
|
115 |
-
|
|
|
116 |
|
117 |
-
#: contact-form-7/includes/admin-panel.php:
|
|
|
118 |
msgid "Message body:"
|
119 |
msgstr "Corpo da mensagem:"
|
120 |
|
121 |
-
#: contact-form-7/includes/admin-panel.php:
|
122 |
-
msgid "
|
123 |
-
msgstr "
|
124 |
|
125 |
-
#: contact-form-7/includes/admin-panel.php:
|
126 |
-
msgid "
|
127 |
-
msgstr "
|
128 |
|
129 |
-
#: contact-form-7/includes/admin-panel.php:
|
130 |
msgid "Save"
|
131 |
msgstr "Salvar"
|
132 |
|
133 |
-
#: contact-form-7/includes/admin-panel.php:
|
134 |
msgid "Delete this contact form"
|
135 |
-
msgstr "
|
136 |
|
137 |
-
#: contact-form-7/includes/admin-panel.php:
|
138 |
msgid ""
|
139 |
"You are about to delete this contact form.\n"
|
140 |
" 'Cancel' to stop, 'OK' to delete."
|
141 |
msgstr ""
|
142 |
-
"
|
143 |
-
" Cancelar para
|
144 |
-
|
145 |
-
#: contact-form-7/includes/admin-panel.php:137
|
146 |
-
#: contact-form-7/includes/admin-panel.php:148
|
147 |
-
msgid "Default value"
|
148 |
-
msgstr "Valor padrão"
|
149 |
-
|
150 |
-
#: contact-form-7/includes/admin-panel.php:156
|
151 |
-
msgid "Choices"
|
152 |
-
msgstr "Opções"
|
153 |
-
|
154 |
-
#: contact-form-7/includes/admin-panel.php:157
|
155 |
-
msgid "* One choice per line."
|
156 |
-
msgstr "* Uma opção por linha"
|
157 |
-
|
158 |
-
#: contact-form-7/includes/admin-panel.php:162
|
159 |
-
msgid "Label"
|
160 |
-
msgstr "Label"
|
161 |
-
|
162 |
-
#: contact-form-7/includes/admin-panel.php:169
|
163 |
-
msgid "Insert"
|
164 |
-
msgstr "Inserir"
|
165 |
|
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: Takayuki Miyoshi <takayukister@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 |
+
|
13 |
+
#: contact-form-7/wp-contact-form-7.php:271
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
14 |
msgid "Contact form"
|
15 |
+
msgstr "Formulário de contato"
|
16 |
|
17 |
+
#: contact-form-7/wp-contact-form-7.php:356
|
18 |
#: contact-form-7/includes/admin-panel.php:5
|
19 |
msgid "Contact Form 7"
|
20 |
msgstr "Contact Form 7"
|
21 |
|
22 |
+
#: contact-form-7/wp-contact-form-7.php:372
|
23 |
+
msgid "optional"
|
24 |
+
msgstr "opcional"
|
|
|
25 |
|
26 |
+
#: contact-form-7/wp-contact-form-7.php:373
|
27 |
+
msgid "Generate Tag"
|
28 |
+
msgstr "Gerar tag"
|
|
|
29 |
|
30 |
+
#: contact-form-7/wp-contact-form-7.php:374
|
31 |
+
msgid "Text field"
|
32 |
+
msgstr "Campo de texto"
|
33 |
+
|
34 |
+
#: contact-form-7/wp-contact-form-7.php:375
|
35 |
+
msgid "Email field"
|
36 |
+
msgstr "Campo de e-mail"
|
37 |
+
|
38 |
+
#: contact-form-7/wp-contact-form-7.php:376
|
39 |
+
msgid "Text area"
|
40 |
+
msgstr "Área de texto"
|
41 |
+
|
42 |
+
#: contact-form-7/wp-contact-form-7.php:377
|
43 |
+
msgid "Drop-down menu"
|
44 |
+
msgstr "Menu drop-down"
|
45 |
+
|
46 |
+
#: contact-form-7/wp-contact-form-7.php:378
|
47 |
+
msgid "Checkboxes"
|
48 |
+
msgstr "Checkboxes"
|
49 |
+
|
50 |
+
#: contact-form-7/wp-contact-form-7.php:379
|
51 |
+
msgid "Radio buttons"
|
52 |
+
msgstr "Botões de rádio"
|
53 |
+
|
54 |
+
#: contact-form-7/wp-contact-form-7.php:380
|
55 |
+
msgid "Acceptance"
|
56 |
+
msgstr "Aceitação"
|
57 |
+
|
58 |
+
#: contact-form-7/wp-contact-form-7.php:381
|
59 |
+
msgid "Make this checkbox checked by default?"
|
60 |
+
msgstr "Deixar esta opção marcada por padrão?"
|
61 |
+
|
62 |
+
#: contact-form-7/wp-contact-form-7.php:382
|
63 |
+
msgid "Make this checkbox work inversely?"
|
64 |
+
msgstr "Fazer esta opção funcionar inversamente?"
|
65 |
+
|
66 |
+
#: contact-form-7/wp-contact-form-7.php:383
|
67 |
+
msgid "* That means visitor who accepts the term unchecks it."
|
68 |
+
msgstr "* Isso significa que o visitante que aceitar os termos deverá desmarcá-la."
|
69 |
+
|
70 |
+
#: contact-form-7/wp-contact-form-7.php:384
|
71 |
+
msgid "CAPTCHA"
|
72 |
+
msgstr "CAPTCHA"
|
73 |
+
|
74 |
+
#: contact-form-7/wp-contact-form-7.php:385
|
75 |
+
msgid "Submit button"
|
76 |
+
msgstr "Botão de envio"
|
77 |
+
|
78 |
+
#: contact-form-7/wp-contact-form-7.php:386
|
79 |
+
msgid "Name"
|
80 |
msgstr "Nome"
|
81 |
|
82 |
+
#: contact-form-7/wp-contact-form-7.php:387
|
83 |
+
msgid "Required field?"
|
84 |
+
msgstr "Campo obrigatório?"
|
85 |
+
|
86 |
+
#: contact-form-7/wp-contact-form-7.php:388
|
87 |
+
msgid "Allow multiple selections?"
|
88 |
+
msgstr "Permitir múltiplas seleções?"
|
89 |
+
|
90 |
+
#: contact-form-7/wp-contact-form-7.php:389
|
91 |
+
msgid "Insert a blank item as the first option?"
|
92 |
+
msgstr "Inserir um ítem em branco como primeira opção?"
|
93 |
+
|
94 |
+
#: contact-form-7/wp-contact-form-7.php:390
|
95 |
+
msgid "Make checkboxes exclusive?"
|
96 |
+
msgstr "Tornar as checkboxes exclusivas?"
|
97 |
+
|
98 |
+
#: contact-form-7/wp-contact-form-7.php:391
|
99 |
+
msgid "Choices"
|
100 |
+
msgstr "Opções"
|
101 |
+
|
102 |
+
#: contact-form-7/wp-contact-form-7.php:392
|
103 |
+
msgid "Label"
|
104 |
+
msgstr "Label"
|
105 |
+
|
106 |
+
#: contact-form-7/wp-contact-form-7.php:393
|
107 |
+
msgid "Default value"
|
108 |
+
msgstr "Valor padrão"
|
109 |
+
|
110 |
+
#: contact-form-7/wp-contact-form-7.php:394
|
111 |
+
msgid "Akismet"
|
112 |
+
msgstr "Akismet"
|
113 |
+
|
114 |
+
#: contact-form-7/wp-contact-form-7.php:395
|
115 |
+
msgid "This field requires author's name"
|
116 |
+
msgstr "Este campo é o nome do autor"
|
117 |
+
|
118 |
+
#: contact-form-7/wp-contact-form-7.php:396
|
119 |
+
msgid "This field requires author's URL"
|
120 |
+
msgstr "Este campo é o URL do autor"
|
121 |
+
|
122 |
+
#: contact-form-7/wp-contact-form-7.php:397
|
123 |
+
msgid "This field requires author's email address"
|
124 |
+
msgstr "Este campo é o endereço de e-mail do autor"
|
125 |
+
|
126 |
+
#: contact-form-7/wp-contact-form-7.php:398
|
127 |
+
msgid "Copy and paste this code into the form"
|
128 |
+
msgstr "Copie e cole o código abaixo no formulário"
|
129 |
+
|
130 |
+
#: contact-form-7/wp-contact-form-7.php:399
|
131 |
+
msgid "Foreground color"
|
132 |
+
msgstr "Cor do texto"
|
133 |
+
|
134 |
+
#: contact-form-7/wp-contact-form-7.php:400
|
135 |
+
msgid "Background color"
|
136 |
+
msgstr "Cor de fundo"
|
137 |
+
|
138 |
+
#: contact-form-7/wp-contact-form-7.php:401
|
139 |
+
msgid "Image size"
|
140 |
+
msgstr "Tamanho da imagem"
|
141 |
+
|
142 |
+
#: contact-form-7/wp-contact-form-7.php:402
|
143 |
+
msgid "Small"
|
144 |
+
msgstr "Pequena"
|
145 |
+
|
146 |
+
#: contact-form-7/wp-contact-form-7.php:403
|
147 |
+
msgid "Medium"
|
148 |
+
msgstr "Média"
|
149 |
+
|
150 |
+
#: contact-form-7/wp-contact-form-7.php:404
|
151 |
+
msgid "Large"
|
152 |
+
msgstr "Grande"
|
153 |
+
|
154 |
+
#: contact-form-7/wp-contact-form-7.php:405
|
155 |
+
msgid "Image settings"
|
156 |
+
msgstr "Configurações da imagem"
|
157 |
+
|
158 |
+
#: contact-form-7/wp-contact-form-7.php:406
|
159 |
+
msgid "Input field settings"
|
160 |
+
msgstr "Configurações do campo de digitação"
|
161 |
+
|
162 |
+
#: contact-form-7/wp-contact-form-7.php:407
|
163 |
+
msgid "For image"
|
164 |
+
msgstr "Para a imagem"
|
165 |
+
|
166 |
+
#: contact-form-7/wp-contact-form-7.php:408
|
167 |
+
msgid "For input field"
|
168 |
+
msgstr "Para o campo de digitação"
|
169 |
+
|
170 |
+
#: contact-form-7/wp-contact-form-7.php:409
|
171 |
+
msgid "* One choice per line."
|
172 |
+
msgstr "* Uma opção por linha."
|
173 |
+
|
174 |
+
#: contact-form-7/wp-contact-form-7.php:428
|
175 |
+
msgid "Contact form created."
|
176 |
+
msgstr "Formulário de contato criado."
|
177 |
+
|
178 |
+
#: contact-form-7/wp-contact-form-7.php:431
|
179 |
+
msgid "Contact form saved."
|
180 |
+
msgstr "Formulário de contato salvo."
|
181 |
+
|
182 |
+
#: contact-form-7/wp-contact-form-7.php:434
|
183 |
+
msgid "Contact form deleted."
|
184 |
+
msgstr "Formulário de contato excluído."
|
185 |
+
|
186 |
+
#: contact-form-7/wp-contact-form-7.php:441
|
187 |
+
msgid "Untitled"
|
188 |
+
msgstr "Sem nome"
|
189 |
+
|
190 |
+
#: contact-form-7/wp-contact-form-7.php:465
|
191 |
+
msgid "Your Name"
|
192 |
+
msgstr "Seu nome"
|
193 |
+
|
194 |
+
#: contact-form-7/wp-contact-form-7.php:465
|
195 |
+
#: contact-form-7/wp-contact-form-7.php:467
|
196 |
msgid "(required)"
|
197 |
msgstr "(obrigatório)"
|
198 |
|
199 |
+
#: contact-form-7/wp-contact-form-7.php:467
|
200 |
msgid "Your Email"
|
201 |
+
msgstr "Seu e-mail"
|
202 |
|
203 |
+
#: contact-form-7/wp-contact-form-7.php:469
|
204 |
msgid "Subject"
|
205 |
msgstr "Assunto"
|
206 |
|
207 |
+
#: contact-form-7/wp-contact-form-7.php:471
|
208 |
msgid "Your Message"
|
209 |
+
msgstr "Sua mensagem"
|
210 |
|
211 |
+
#: contact-form-7/wp-contact-form-7.php:473
|
212 |
+
#: contact-form-7/wp-contact-form-7.php:956
|
213 |
msgid "Send"
|
214 |
msgstr "Enviar"
|
215 |
|
216 |
+
#: contact-form-7/wp-contact-form-7.php:502
|
217 |
msgid "Your message was sent successfully. Thanks."
|
218 |
msgstr "Sua mensagem foi enviada com sucesso. Obrigado."
|
219 |
|
220 |
+
#: contact-form-7/wp-contact-form-7.php:504
|
221 |
msgid "Failed to send your message. Please try later or contact administrator by other way."
|
222 |
+
msgstr "Falha ao enviar sua mensagem. Por favor tente mais tarde ou contacte o administrador de outra forma."
|
223 |
|
224 |
+
#: contact-form-7/wp-contact-form-7.php:506
|
|
|
225 |
msgid "Validation errors occurred. Please confirm the fields and submit it again."
|
226 |
+
msgstr "Ocorreram erros de validação. Por favor confira os dados e envie novamente."
|
227 |
|
228 |
+
#: contact-form-7/wp-contact-form-7.php:508
|
229 |
+
msgid "Please accept the terms to proceed."
|
230 |
+
msgstr "Por favor aceite os termos para prosseguir."
|
|
|
|
|
231 |
|
232 |
+
#: contact-form-7/wp-contact-form-7.php:510
|
|
|
233 |
msgid "Email address seems invalid."
|
234 |
+
msgstr "O endereço de e-mail parece inválido."
|
235 |
|
236 |
+
#: contact-form-7/wp-contact-form-7.php:512
|
237 |
+
msgid "Please fill the required field."
|
238 |
+
msgstr "Por favor preencha este campo obrigatório."
|
|
|
239 |
|
240 |
+
#: contact-form-7/wp-contact-form-7.php:514
|
241 |
+
msgid "Your entered code is incorrect."
|
242 |
+
msgstr "O código digitado está incorreto."
|
243 |
|
244 |
+
#: contact-form-7/includes/admin-panel.php:15
|
245 |
+
msgid "Add new"
|
246 |
+
msgstr "Adicionar novo"
|
247 |
+
|
248 |
+
#: contact-form-7/includes/admin-panel.php:28
|
249 |
msgid "Copy and paste this code into your post content."
|
250 |
+
msgstr "Copie e cole este código no conteúdo do seu post ou página."
|
251 |
|
252 |
+
#: contact-form-7/includes/admin-panel.php:33
|
253 |
+
msgid "Form"
|
254 |
+
msgstr "Formulário"
|
255 |
|
256 |
+
#: contact-form-7/includes/admin-panel.php:37
|
257 |
+
msgid "Mail"
|
258 |
+
msgstr "Mail"
|
259 |
|
260 |
+
#: contact-form-7/includes/admin-panel.php:39
|
261 |
+
#: contact-form-7/includes/admin-panel.php:60
|
262 |
+
msgid "To:"
|
263 |
+
msgstr "Para:"
|
264 |
+
|
265 |
+
#: contact-form-7/includes/admin-panel.php:43
|
266 |
+
#: contact-form-7/includes/admin-panel.php:64
|
267 |
+
msgid "From:"
|
268 |
+
msgstr "De:"
|
269 |
|
270 |
+
#: contact-form-7/includes/admin-panel.php:47
|
271 |
+
#: contact-form-7/includes/admin-panel.php:68
|
272 |
+
msgid "Subject:"
|
273 |
+
msgstr "Assunto:"
|
274 |
|
275 |
+
#: contact-form-7/includes/admin-panel.php:51
|
276 |
+
#: contact-form-7/includes/admin-panel.php:72
|
277 |
msgid "Message body:"
|
278 |
msgstr "Corpo da mensagem:"
|
279 |
|
280 |
+
#: contact-form-7/includes/admin-panel.php:56
|
281 |
+
msgid "Mail (2)"
|
282 |
+
msgstr "Mail (2)"
|
283 |
|
284 |
+
#: contact-form-7/includes/admin-panel.php:58
|
285 |
+
msgid "Use mail (2)"
|
286 |
+
msgstr "Usar mail (2)"
|
287 |
|
288 |
+
#: contact-form-7/includes/admin-panel.php:80
|
289 |
msgid "Save"
|
290 |
msgstr "Salvar"
|
291 |
|
292 |
+
#: contact-form-7/includes/admin-panel.php:86
|
293 |
msgid "Delete this contact form"
|
294 |
+
msgstr "Excluir este formulário de contato"
|
295 |
|
296 |
+
#: contact-form-7/includes/admin-panel.php:87
|
297 |
msgid ""
|
298 |
"You are about to delete this contact form.\n"
|
299 |
" 'Cancel' to stop, 'OK' to delete."
|
300 |
msgstr ""
|
301 |
+
"Você está prestes a excluir este formulário.\n"
|
302 |
+
" 'Cancelar' para interromper, 'OK' para excluir."
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
303 |
|
languages/wpcf7-ro.mo
ADDED
Binary file
|
languages/wpcf7-ro.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-03-02 16:52+0900\n"
|
6 |
+
"PO-Revision-Date: 2008-07-08 07:34+0900\n"
|
7 |
+
"Last-Translator: Takayuki Miyoshi <takayukister@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:271
|
19 |
+
msgid "Contact form"
|
20 |
+
msgstr "Formular pentru contact"
|
21 |
+
|
22 |
+
#: contact-form-7/wp-contact-form-7.php:356
|
23 |
+
#: contact-form-7/includes/admin-panel.php:5
|
24 |
+
msgid "Contact Form 7"
|
25 |
+
msgstr "Contact Form 7"
|
26 |
+
|
27 |
+
#: contact-form-7/wp-contact-form-7.php:372
|
28 |
+
msgid "optional"
|
29 |
+
msgstr "opțional"
|
30 |
+
|
31 |
+
#: contact-form-7/wp-contact-form-7.php:373
|
32 |
+
msgid "Generate Tag"
|
33 |
+
msgstr "Generează Tag"
|
34 |
+
|
35 |
+
#: contact-form-7/wp-contact-form-7.php:374
|
36 |
+
msgid "Text field"
|
37 |
+
msgstr "Câmp text"
|
38 |
+
|
39 |
+
#: contact-form-7/wp-contact-form-7.php:375
|
40 |
+
msgid "Email field"
|
41 |
+
msgstr "Câmp pentru email"
|
42 |
+
|
43 |
+
#: contact-form-7/wp-contact-form-7.php:376
|
44 |
+
msgid "Text area"
|
45 |
+
msgstr "Câmp text (textarea)"
|
46 |
+
|
47 |
+
#: contact-form-7/wp-contact-form-7.php:377
|
48 |
+
msgid "Drop-down menu"
|
49 |
+
msgstr "Meniu selectare"
|
50 |
+
|
51 |
+
#: contact-form-7/wp-contact-form-7.php:378
|
52 |
+
msgid "Checkboxes"
|
53 |
+
msgstr "Căsuțe cu bifă"
|
54 |
+
|
55 |
+
#: contact-form-7/wp-contact-form-7.php:379
|
56 |
+
msgid "Radio buttons"
|
57 |
+
msgstr "Butoane radio"
|
58 |
+
|
59 |
+
#: contact-form-7/wp-contact-form-7.php:380
|
60 |
+
msgid "Acceptance"
|
61 |
+
msgstr "Confirmare"
|
62 |
+
|
63 |
+
#: contact-form-7/wp-contact-form-7.php:381
|
64 |
+
msgid "Make this checkbox checked by default?"
|
65 |
+
msgstr "Să fie bifată implicit această căsuță?"
|
66 |
+
|
67 |
+
#: contact-form-7/wp-contact-form-7.php:382
|
68 |
+
msgid "Make this checkbox work inversely?"
|
69 |
+
msgstr "Să fie inversat modul de funcționare a acestei căsuțe?"
|
70 |
+
|
71 |
+
#: contact-form-7/wp-contact-form-7.php:383
|
72 |
+
msgid "* That means visitor who accepts the term unchecks it."
|
73 |
+
msgstr "* Presupune că vizitatorul care acceptă termenii va fi nevoit să o debifeze."
|
74 |
+
|
75 |
+
#: contact-form-7/wp-contact-form-7.php:384
|
76 |
+
msgid "CAPTCHA"
|
77 |
+
msgstr "CAPTCHA"
|
78 |
+
|
79 |
+
#: contact-form-7/wp-contact-form-7.php:385
|
80 |
+
msgid "Submit button"
|
81 |
+
msgstr "Buton de trimitere"
|
82 |
+
|
83 |
+
#: contact-form-7/wp-contact-form-7.php:386
|
84 |
+
msgid "Name"
|
85 |
+
msgstr "Nume"
|
86 |
+
|
87 |
+
#: contact-form-7/wp-contact-form-7.php:387
|
88 |
+
msgid "Required field?"
|
89 |
+
msgstr "Câmp obligatoriu?"
|
90 |
+
|
91 |
+
#: contact-form-7/wp-contact-form-7.php:388
|
92 |
+
msgid "Allow multiple selections?"
|
93 |
+
msgstr "Permite multiple selecții?"
|
94 |
+
|
95 |
+
#: contact-form-7/wp-contact-form-7.php:389
|
96 |
+
msgid "Insert a blank item as the first option?"
|
97 |
+
msgstr "Inserează un item gol ca primă opțiune?"
|
98 |
+
|
99 |
+
#: contact-form-7/wp-contact-form-7.php:390
|
100 |
+
msgid "Make checkboxes exclusive?"
|
101 |
+
msgstr "Să fie căsuțele exclusive?"
|
102 |
+
|
103 |
+
#: contact-form-7/wp-contact-form-7.php:391
|
104 |
+
msgid "Choices"
|
105 |
+
msgstr "Posibilități de a alege"
|
106 |
+
|
107 |
+
#: contact-form-7/wp-contact-form-7.php:392
|
108 |
+
msgid "Label"
|
109 |
+
msgstr "Etichetă (label)"
|
110 |
+
|
111 |
+
#: contact-form-7/wp-contact-form-7.php:393
|
112 |
+
msgid "Default value"
|
113 |
+
msgstr "Valoarea Implicită"
|
114 |
+
|
115 |
+
#: contact-form-7/wp-contact-form-7.php:394
|
116 |
+
msgid "Akismet"
|
117 |
+
msgstr "Akismet"
|
118 |
+
|
119 |
+
#: contact-form-7/wp-contact-form-7.php:395
|
120 |
+
msgid "This field requires author's name"
|
121 |
+
msgstr "Acest câmp necesită numele autorului"
|
122 |
+
|
123 |
+
#: contact-form-7/wp-contact-form-7.php:396
|
124 |
+
msgid "This field requires author's URL"
|
125 |
+
msgstr "Acest câmp necesită URL-ul autorului"
|
126 |
+
|
127 |
+
#: contact-form-7/wp-contact-form-7.php:397
|
128 |
+
msgid "This field requires author's email address"
|
129 |
+
msgstr "Acest câmp necesită adresa email a autorului"
|
130 |
+
|
131 |
+
#: contact-form-7/wp-contact-form-7.php:398
|
132 |
+
msgid "Copy and paste this code into the form"
|
133 |
+
msgstr "Copiază și lipește acest cod în formular"
|
134 |
+
|
135 |
+
#: contact-form-7/wp-contact-form-7.php:399
|
136 |
+
msgid "Foreground color"
|
137 |
+
msgstr "Culoarea din față"
|
138 |
+
|
139 |
+
#: contact-form-7/wp-contact-form-7.php:400
|
140 |
+
msgid "Background color"
|
141 |
+
msgstr "Culoarea de fundal"
|
142 |
+
|
143 |
+
#: contact-form-7/wp-contact-form-7.php:401
|
144 |
+
msgid "Image size"
|
145 |
+
msgstr "Dimensiunea imaginii"
|
146 |
+
|
147 |
+
#: contact-form-7/wp-contact-form-7.php:402
|
148 |
+
msgid "Small"
|
149 |
+
msgstr "Mică"
|
150 |
+
|
151 |
+
#: contact-form-7/wp-contact-form-7.php:403
|
152 |
+
msgid "Medium"
|
153 |
+
msgstr "Medie"
|
154 |
+
|
155 |
+
#: contact-form-7/wp-contact-form-7.php:404
|
156 |
+
msgid "Large"
|
157 |
+
msgstr "Mare"
|
158 |
+
|
159 |
+
#: contact-form-7/wp-contact-form-7.php:405
|
160 |
+
msgid "Image settings"
|
161 |
+
msgstr "Setări imagine"
|
162 |
+
|
163 |
+
#: contact-form-7/wp-contact-form-7.php:406
|
164 |
+
msgid "Input field settings"
|
165 |
+
msgstr "Setări câmpuri"
|
166 |
+
|
167 |
+
#: contact-form-7/wp-contact-form-7.php:407
|
168 |
+
msgid "For image"
|
169 |
+
msgstr "Pentru imagine"
|
170 |
+
|
171 |
+
#: contact-form-7/wp-contact-form-7.php:408
|
172 |
+
msgid "For input field"
|
173 |
+
msgstr "Pentru câmpuri"
|
174 |
+
|
175 |
+
#: contact-form-7/wp-contact-form-7.php:409
|
176 |
+
msgid "* One choice per line."
|
177 |
+
msgstr "* O opțiune per linie."
|
178 |
+
|
179 |
+
#: contact-form-7/wp-contact-form-7.php:428
|
180 |
+
msgid "Contact form created."
|
181 |
+
msgstr "Formularul de contact a fost creat."
|
182 |
+
|
183 |
+
#: contact-form-7/wp-contact-form-7.php:431
|
184 |
+
msgid "Contact form saved."
|
185 |
+
msgstr "Formularul de contact a fost salvat."
|
186 |
+
|
187 |
+
#: contact-form-7/wp-contact-form-7.php:434
|
188 |
+
msgid "Contact form deleted."
|
189 |
+
msgstr "Formularul de contact a fost șters."
|
190 |
+
|
191 |
+
#: contact-form-7/wp-contact-form-7.php:441
|
192 |
+
msgid "Untitled"
|
193 |
+
msgstr "Fără nume"
|
194 |
+
|
195 |
+
#: contact-form-7/wp-contact-form-7.php:465
|
196 |
+
msgid "Your Name"
|
197 |
+
msgstr "Numele"
|
198 |
+
|
199 |
+
#: contact-form-7/wp-contact-form-7.php:465
|
200 |
+
#: contact-form-7/wp-contact-form-7.php:467
|
201 |
+
msgid "(required)"
|
202 |
+
msgstr "(obligatoriu)"
|
203 |
+
|
204 |
+
#: contact-form-7/wp-contact-form-7.php:467
|
205 |
+
msgid "Your Email"
|
206 |
+
msgstr "Adresa email"
|
207 |
+
|
208 |
+
#: contact-form-7/wp-contact-form-7.php:469
|
209 |
+
msgid "Subject"
|
210 |
+
msgstr "Subiect"
|
211 |
+
|
212 |
+
#: contact-form-7/wp-contact-form-7.php:471
|
213 |
+
msgid "Your Message"
|
214 |
+
msgstr "Mesajul"
|
215 |
+
|
216 |
+
#: contact-form-7/wp-contact-form-7.php:473
|
217 |
+
#: contact-form-7/wp-contact-form-7.php:956
|
218 |
+
msgid "Send"
|
219 |
+
msgstr "Trimite"
|
220 |
+
|
221 |
+
#: contact-form-7/wp-contact-form-7.php:502
|
222 |
+
msgid "Your message was sent successfully. Thanks."
|
223 |
+
msgstr "Mesajul a fost trimis. Vă mulțumim."
|
224 |
+
|
225 |
+
#: contact-form-7/wp-contact-form-7.php:504
|
226 |
+
msgid "Failed to send your message. Please try later or contact administrator by other way."
|
227 |
+
msgstr "Mesajul nu a fost trimis. Vă rugăm să încercați mai târziu, sau încercați o altă cale pentru a intra în contact."
|
228 |
+
|
229 |
+
#: contact-form-7/wp-contact-form-7.php:506
|
230 |
+
msgid "Validation errors occurred. Please confirm the fields and submit it again."
|
231 |
+
msgstr "Au apărut erori de validare. Vă rugăm să verificați câmpurile și reîncercați trimiterea."
|
232 |
+
|
233 |
+
#: contact-form-7/wp-contact-form-7.php:508
|
234 |
+
msgid "Please accept the terms to proceed."
|
235 |
+
msgstr "Vă rugăm să citiți termenii înainte de a trimite."
|
236 |
+
|
237 |
+
#: contact-form-7/wp-contact-form-7.php:510
|
238 |
+
msgid "Email address seems invalid."
|
239 |
+
msgstr "Adresa de email pare invalidă."
|
240 |
+
|
241 |
+
#: contact-form-7/wp-contact-form-7.php:512
|
242 |
+
msgid "Please fill the required field."
|
243 |
+
msgstr "Vă rugăm să verificați câmpurile obligatorii."
|
244 |
+
|
245 |
+
#: contact-form-7/wp-contact-form-7.php:514
|
246 |
+
msgid "Your entered code is incorrect."
|
247 |
+
msgstr "Codul introdus este greșit."
|
248 |
+
|
249 |
+
#: contact-form-7/includes/admin-panel.php:15
|
250 |
+
msgid "Add new"
|
251 |
+
msgstr "Adaugă"
|
252 |
+
|
253 |
+
#: contact-form-7/includes/admin-panel.php:28
|
254 |
+
msgid "Copy and paste this code into your post content."
|
255 |
+
msgstr "Copiază și adaugă acest cod în conținutul tău."
|
256 |
+
|
257 |
+
#: contact-form-7/includes/admin-panel.php:33
|
258 |
+
msgid "Form"
|
259 |
+
msgstr "Formular"
|
260 |
+
|
261 |
+
#: contact-form-7/includes/admin-panel.php:37
|
262 |
+
msgid "Mail"
|
263 |
+
msgstr "Mail"
|
264 |
+
|
265 |
+
#: contact-form-7/includes/admin-panel.php:39
|
266 |
+
#: contact-form-7/includes/admin-panel.php:60
|
267 |
+
msgid "To:"
|
268 |
+
msgstr "Pentru:"
|
269 |
+
|
270 |
+
#: contact-form-7/includes/admin-panel.php:43
|
271 |
+
#: contact-form-7/includes/admin-panel.php:64
|
272 |
+
msgid "From:"
|
273 |
+
msgstr "De la:"
|
274 |
+
|
275 |
+
#: contact-form-7/includes/admin-panel.php:47
|
276 |
+
#: contact-form-7/includes/admin-panel.php:68
|
277 |
+
msgid "Subject:"
|
278 |
+
msgstr "Subiect:"
|
279 |
+
|
280 |
+
#: contact-form-7/includes/admin-panel.php:51
|
281 |
+
#: contact-form-7/includes/admin-panel.php:72
|
282 |
+
msgid "Message body:"
|
283 |
+
msgstr "Mesajul:"
|
284 |
+
|
285 |
+
#: contact-form-7/includes/admin-panel.php:56
|
286 |
+
msgid "Mail (2)"
|
287 |
+
msgstr "Mail (2)"
|
288 |
+
|
289 |
+
#: contact-form-7/includes/admin-panel.php:58
|
290 |
+
msgid "Use mail (2)"
|
291 |
+
msgstr "Folosește și mail (2)"
|
292 |
+
|
293 |
+
#: contact-form-7/includes/admin-panel.php:80
|
294 |
+
msgid "Save"
|
295 |
+
msgstr "Salvează"
|
296 |
+
|
297 |
+
#: contact-form-7/includes/admin-panel.php:86
|
298 |
+
msgid "Delete this contact form"
|
299 |
+
msgstr "Șterge acest formular"
|
300 |
+
|
301 |
+
#: contact-form-7/includes/admin-panel.php:87
|
302 |
+
msgid ""
|
303 |
+
"You are about to delete this contact form.\n"
|
304 |
+
" 'Cancel' to stop, 'OK' to delete."
|
305 |
+
msgstr ""
|
306 |
+
"Doriți să ștergeți acest formular de contact.\n"
|
307 |
+
" 'Cancel' pentru a anula, 'OK' pentru a continua."
|
308 |
+
|
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.7.
|
8 |
Author URI: http://ideasilo.wordpress.com/
|
9 |
*/
|
10 |
|
@@ -259,6 +259,8 @@ class tam_contact_form_seven {
|
|
259 |
}
|
260 |
|
261 |
function set_initial() {
|
|
|
|
|
262 |
$wpcf7 = get_option('wpcf7');
|
263 |
if (! is_array($wpcf7))
|
264 |
$wpcf7 = array();
|
@@ -636,11 +638,13 @@ var _wpcf7 = {
|
|
636 |
if (preg_match('/^(?:select|checkbox|radio)[*]?$/', $type)) {
|
637 |
if (is_array($_POST[$name])) {
|
638 |
foreach ($_POST[$name] as $key => $value) {
|
|
|
639 |
if (! in_array($value, $values)) // Not in given choices.
|
640 |
unset($_POST[$name][$key]);
|
641 |
}
|
642 |
} else {
|
643 |
-
|
|
|
644 |
$_POST[$name] = '';
|
645 |
}
|
646 |
}
|
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.7.8
|
8 |
Author URI: http://ideasilo.wordpress.com/
|
9 |
*/
|
10 |
|
259 |
}
|
260 |
|
261 |
function set_initial() {
|
262 |
+
$this->load_plugin_textdomain();
|
263 |
+
|
264 |
$wpcf7 = get_option('wpcf7');
|
265 |
if (! is_array($wpcf7))
|
266 |
$wpcf7 = array();
|
638 |
if (preg_match('/^(?:select|checkbox|radio)[*]?$/', $type)) {
|
639 |
if (is_array($_POST[$name])) {
|
640 |
foreach ($_POST[$name] as $key => $value) {
|
641 |
+
$value = stripslashes($value);
|
642 |
if (! in_array($value, $values)) // Not in given choices.
|
643 |
unset($_POST[$name][$key]);
|
644 |
}
|
645 |
} else {
|
646 |
+
$value = stripslashes($_POST[$name]);
|
647 |
+
if (! in_array($value, $values)) // Not in given choices.
|
648 |
$_POST[$name] = '';
|
649 |
}
|
650 |
}
|