Contact Form 7 - Version 2.0.3

Version Description

Download this release

Release Info

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

Code changes from version 2.0.2 to 2.0.3

README.txt CHANGED
@@ -4,7 +4,7 @@ Donate link: http://pledgie.com/campaigns/3117
4
  Tags: contact, contact form, email, ajax, captcha, akismet, WPML, multilingual
5
  Requires at least: 2.7
6
  Tested up to: 2.9-rare
7
- Stable tag: 2.0.2
8
 
9
  Just another contact form plugin. Simple but flexible.
10
 
@@ -24,7 +24,7 @@ Since being published in August 2007, Contact Form 7 has been translated into a
24
  * Bosnian (bs) - [Vedran](http://www.seorabbit.com/)
25
  * Brazilian Portuguese (pt_BR) - [Leonardo Pinheiro](http://www.eletrikabarbarella.com.br/) (updated by [Henrique Vianna](http://henriquevianna.com/))
26
  * Bulgarian (bg_BG) - [Iliyan Darganov](http://www.darganov.com/)
27
- * Catalan (ca_ES) - [Jordi Sancho](http://www.qasolutions.net/blog)
28
  * Chinese, Simplified (zh_CN) - [Soz](http://www.webtoolol.com/)
29
  * Chinese, Traditional (zh_TW) - [James Wu](http://jameswublog.com)
30
  * Croatian (hr) - [tolingo Translation Services](http://www.tolingo.com)
@@ -58,7 +58,7 @@ Since being published in August 2007, Contact Form 7 has been translated into a
58
  * Spanish (es_ES) - [Jordi Sancho](http://www.qasolutions.net/blog)
59
  (updated by [Vladimir Prieto](http://vladimir.prie.to/), [Federico Mikaelian](http://www.fedemika.com.ar/) and [Matias Baldanza](http://matiasbaldanza.com/))
60
  * Swedish (sv_SE) - [Fredrik Jonsson](http://www.fredda-o-ac.se/) (updated by [the Swedish community](http://wp-support.se/))
61
- * Turkish (tr_TR) - [Roman Neumuller](http://katpatuka.wordpress.com) (updated by [Hasan Yılmaz](http://hedefturkce.com/))
62
  * Ukrainian (uk_UA) - [Andrey Kovba](http://myserver.com.ua/)
63
  * Vietnamese (vi) - Thanh Hải, Hà
64
 
4
  Tags: contact, contact form, email, ajax, captcha, akismet, WPML, multilingual
5
  Requires at least: 2.7
6
  Tested up to: 2.9-rare
7
+ Stable tag: 2.0.3
8
 
9
  Just another contact form plugin. Simple but flexible.
10
 
24
  * Bosnian (bs) - [Vedran](http://www.seorabbit.com/)
25
  * Brazilian Portuguese (pt_BR) - [Leonardo Pinheiro](http://www.eletrikabarbarella.com.br/) (updated by [Henrique Vianna](http://henriquevianna.com/))
26
  * Bulgarian (bg_BG) - [Iliyan Darganov](http://www.darganov.com/)
27
+ * Catalan (ca) - [Jordi Sancho](http://www.qasolutions.net/blog) (updated by Robert Buj)
28
  * Chinese, Simplified (zh_CN) - [Soz](http://www.webtoolol.com/)
29
  * Chinese, Traditional (zh_TW) - [James Wu](http://jameswublog.com)
30
  * Croatian (hr) - [tolingo Translation Services](http://www.tolingo.com)
58
  * Spanish (es_ES) - [Jordi Sancho](http://www.qasolutions.net/blog)
59
  (updated by [Vladimir Prieto](http://vladimir.prie.to/), [Federico Mikaelian](http://www.fedemika.com.ar/) and [Matias Baldanza](http://matiasbaldanza.com/))
60
  * Swedish (sv_SE) - [Fredrik Jonsson](http://www.fredda-o-ac.se/) (updated by [the Swedish community](http://wp-support.se/))
61
+ * Turkish (tr_TR) - [Roman Neumuller](http://katpatuka.wordpress.com) (updated by [Hasan Yılmaz](http://hedefturkce.com/) and [Emin Buğra Saral](http://www.rahmetli.info/))
62
  * Ukrainian (uk_UA) - [Andrey Kovba](http://myserver.com.ua/)
63
  * Vietnamese (vi) - Thanh Hải, Hà
64
 
includes/classes.php CHANGED
@@ -36,8 +36,12 @@ class WPCF7_ContactForm {
36
  function form_html() {
37
  $form = '<div class="wpcf7" id="' . $this->unit_tag . '">';
38
 
39
- $url = parse_url( $_SERVER['REQUEST_URI'] );
40
- $url = $url['path'] . ( empty( $url['query'] ) ? '' : '?' . $url['query'] ) . '#' . $this->unit_tag;
 
 
 
 
41
 
42
  $enctype = apply_filters( 'wpcf7_form_enctype', '' );
43
 
@@ -430,13 +434,13 @@ class WPCF7_ContactForm {
430
  $table_name = wpcf7_table_name();
431
 
432
  if ( $this->initial ) {
433
- $result = $wpdb->insert( $table_name, array(
434
  'title' => $this->title,
435
  'form' => maybe_serialize( $this->form ),
436
  'mail' => maybe_serialize( $this->mail ),
437
  'mail_2' => maybe_serialize ( $this->mail_2 ),
438
  'messages' => maybe_serialize( $this->messages ),
439
- 'additional_settings' => maybe_serialize( $this->additional_settings ) ) );
440
 
441
  if ( $result ) {
442
  $this->initial = false;
@@ -451,14 +455,14 @@ class WPCF7_ContactForm {
451
  if ( ! (int) $this->id )
452
  return false; // Missing ID
453
 
454
- $result = $wpdb->update( $table_name, array(
455
  'title' => $this->title,
456
  'form' => maybe_serialize( $this->form ),
457
  'mail' => maybe_serialize( $this->mail ),
458
  'mail_2' => maybe_serialize ( $this->mail_2 ),
459
  'messages' => maybe_serialize( $this->messages ),
460
  'additional_settings' => maybe_serialize( $this->additional_settings )
461
- ), array( 'cf7_unit_id' => absint( $this->id) ) );
462
 
463
  if ( false !== $result ) {
464
  do_action_ref_array( 'wpcf7_after_update', array( &$this ) );
36
  function form_html() {
37
  $form = '<div class="wpcf7" id="' . $this->unit_tag . '">';
38
 
39
+ $url = wpcf7_get_request_uri();
40
+
41
+ if ( $frag = strstr( $uri, '#' ) )
42
+ $uri = substr( $uri, 0, -strlen( $frag ) );
43
+
44
+ $url .= '#' . $this->unit_tag;
45
 
46
  $enctype = apply_filters( 'wpcf7_form_enctype', '' );
47
 
434
  $table_name = wpcf7_table_name();
435
 
436
  if ( $this->initial ) {
437
+ $result = $wpdb->insert( $table_name, stripslashes_deep( array(
438
  'title' => $this->title,
439
  'form' => maybe_serialize( $this->form ),
440
  'mail' => maybe_serialize( $this->mail ),
441
  'mail_2' => maybe_serialize ( $this->mail_2 ),
442
  'messages' => maybe_serialize( $this->messages ),
443
+ 'additional_settings' => maybe_serialize( $this->additional_settings ) ) ) );
444
 
445
  if ( $result ) {
446
  $this->initial = false;
455
  if ( ! (int) $this->id )
456
  return false; // Missing ID
457
 
458
+ $result = $wpdb->update( $table_name, stripslashes_deep( array(
459
  'title' => $this->title,
460
  'form' => maybe_serialize( $this->form ),
461
  'mail' => maybe_serialize( $this->mail ),
462
  'mail_2' => maybe_serialize ( $this->mail_2 ),
463
  'messages' => maybe_serialize( $this->messages ),
464
  'additional_settings' => maybe_serialize( $this->additional_settings )
465
+ ) ), array( 'cf7_unit_id' => absint( $this->id) ) );
466
 
467
  if ( false !== $result ) {
468
  do_action_ref_array( 'wpcf7_after_update', array( &$this ) );
includes/shortcodes.php CHANGED
@@ -73,6 +73,8 @@ class WPCF7_ShortcodeManager {
73
  $scanned_tag['values'] = $scanned_tag['raw_values'];
74
  }
75
 
 
 
76
  } else {
77
  $scanned_tag['attr'] = $attr;
78
  }
73
  $scanned_tag['values'] = $scanned_tag['raw_values'];
74
  }
75
 
76
+ $scanned_tag['labels'] = $scanned_tag['values'];
77
+
78
  } else {
79
  $scanned_tag['attr'] = $attr;
80
  }
languages/wpcf7-ca.mo ADDED
Binary file
languages/wpcf7-ca.po ADDED
@@ -0,0 +1,516 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ msgid ""
2
+ msgstr ""
3
+ "Project-Id-Version: WP Contact Form 7\n"
4
+ "Report-Msgid-Bugs-To: \n"
5
+ "POT-Creation-Date: 2009-08-30 19:21+0900\n"
6
+ "PO-Revision-Date: 2009-09-01 23:48+0100\n"
7
+ "Last-Translator: Robert Buj Gelonch <robert.buj@gmail.com>\n"
8
+ "Language-Team: Robert Buj <robert.buj@gmail.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: Catalan\n"
13
+ "X-Poedit-Country: SPAIN\n"
14
+ "X-Poedit-SourceCharset: utf-8\n"
15
+ "X-Poedit-KeywordsList: __;_e\n"
16
+ "X-Poedit-Basepath: ../..\n"
17
+ "X-Poedit-SearchPath-0: contact-form-7\n"
18
+
19
+ #: contact-form-7/admin/admin-panel.php:9
20
+ #, php-format
21
+ msgid "<strong>The database table for Contact Form 7 does not exist.</strong> You must <a href=\"%s\">create the table</a> for it to work."
22
+ msgstr "<strong>La taula de la base de dades per Contact Form 7 no existeix.</strong> Heu de <a href=\"%s\">crear la taula</a> per que funcioni."
23
+
24
+ #: contact-form-7/admin/admin-panel.php:12
25
+ msgid "<strong>The database table for Contact Form 7 does not exist.</strong>"
26
+ msgstr "<strong>La taula de la base de dades per Contact Form 7 no existeix.</strong>"
27
+
28
+ #: contact-form-7/admin/admin-panel.php:17
29
+ #: contact-form-7/admin/admin-panel.php:30
30
+ #: contact-form-7/admin/admin.php:119
31
+ msgid "Contact Form 7"
32
+ msgstr "Contact Form 7"
33
+
34
+ #: contact-form-7/admin/admin-panel.php:45
35
+ msgid "Add new"
36
+ msgstr "Afegir nou"
37
+
38
+ #: contact-form-7/admin/admin-panel.php:67
39
+ msgid "Copy this code and paste it into your post, page or text widget content."
40
+ msgstr "Copieu aquest codi i enganxe-ho a la vostra entrada, pàgina o enginy."
41
+
42
+ #: contact-form-7/admin/admin-panel.php:75
43
+ #: contact-form-7/admin/admin-panel.php:332
44
+ msgid "Save"
45
+ msgstr "Desar"
46
+
47
+ #: contact-form-7/admin/admin-panel.php:82
48
+ msgid "Copy"
49
+ msgstr "Copiar"
50
+
51
+ #: contact-form-7/admin/admin-panel.php:87
52
+ msgid "Delete"
53
+ msgstr "Eliminar"
54
+
55
+ #: contact-form-7/admin/admin-panel.php:89
56
+ msgid ""
57
+ "You are about to delete this contact form.\n"
58
+ " 'Cancel' to stop, 'OK' to delete."
59
+ msgstr ""
60
+ "El formulari de contacte serà esborrat.\n"
61
+ " 'Cancel·lar' per anular, 'OK' per confirmar."
62
+
63
+ #: contact-form-7/admin/admin-panel.php:102
64
+ msgid "Form"
65
+ msgstr "Formulari"
66
+
67
+ #: contact-form-7/admin/admin-panel.php:120
68
+ msgid "Mail"
69
+ msgstr "Correu"
70
+
71
+ #: contact-form-7/admin/admin-panel.php:127
72
+ #: contact-form-7/admin/admin-panel.php:188
73
+ msgid "To:"
74
+ msgstr "A:"
75
+
76
+ #: contact-form-7/admin/admin-panel.php:132
77
+ #: contact-form-7/admin/admin-panel.php:193
78
+ msgid "From:"
79
+ msgstr "De:"
80
+
81
+ #: contact-form-7/admin/admin-panel.php:137
82
+ #: contact-form-7/admin/admin-panel.php:198
83
+ msgid "Subject:"
84
+ msgstr "Assumpte:"
85
+
86
+ #: contact-form-7/admin/admin-panel.php:144
87
+ #: contact-form-7/admin/admin-panel.php:205
88
+ msgid "Additional headers:"
89
+ msgstr "Capçaleres addicionals:"
90
+
91
+ #: contact-form-7/admin/admin-panel.php:149
92
+ #: contact-form-7/admin/admin-panel.php:210
93
+ msgid "File attachments:"
94
+ msgstr "Fitxers adjunts:"
95
+
96
+ #: contact-form-7/admin/admin-panel.php:157
97
+ #: contact-form-7/admin/admin-panel.php:218
98
+ msgid "Use HTML content type"
99
+ msgstr "Utilitzar tipus de contingut HTML"
100
+
101
+ #: contact-form-7/admin/admin-panel.php:164
102
+ #: contact-form-7/admin/admin-panel.php:225
103
+ msgid "Message body:"
104
+ msgstr "Cos del missatge:"
105
+
106
+ #: contact-form-7/admin/admin-panel.php:174
107
+ msgid "Mail (2)"
108
+ msgstr "Correu (2)"
109
+
110
+ #: contact-form-7/admin/admin-panel.php:180
111
+ msgid "Use mail (2)"
112
+ msgstr "Utilitzar correu (2)"
113
+
114
+ #: contact-form-7/admin/admin-panel.php:235
115
+ msgid "Messages"
116
+ msgstr "Missatges"
117
+
118
+ #: contact-form-7/admin/admin-panel.php:243
119
+ msgid "Sender's message was sent successfully"
120
+ msgstr "El vostre missatge s'ha enviat correctament"
121
+
122
+ #: contact-form-7/admin/admin-panel.php:248
123
+ msgid "Sender's message was failed to send"
124
+ msgstr "El missatge del remitent ha produït un error a l'enviar"
125
+
126
+ #: contact-form-7/admin/admin-panel.php:253
127
+ msgid "Akismet judged the sending activity as spamming"
128
+ msgstr "Akismet jutja l'activitat d'enviament per spam"
129
+
130
+ #: contact-form-7/admin/admin-panel.php:258
131
+ msgid "Validation errors occurred"
132
+ msgstr "S'han produït errors de validació"
133
+
134
+ #: contact-form-7/admin/admin-panel.php:263
135
+ msgid "There is a field that sender is needed to fill in"
136
+ msgstr "Hi ha un camp que el remitent és necessari que ompli"
137
+
138
+ #: contact-form-7/admin/admin-panel.php:268
139
+ msgid "Email address that sender entered is invalid"
140
+ msgstr "L'adreça e-mail introduïda sembla que no sigui vàlida"
141
+
142
+ #: contact-form-7/admin/admin-panel.php:273
143
+ msgid "There is a field of term that sender is needed to accept"
144
+ msgstr "Hi ha un camp de terme que el remitent és necessari que accepti"
145
+
146
+ #: contact-form-7/admin/admin-panel.php:278
147
+ msgid "Sender doesn't enter the correct answer to the quiz"
148
+ msgstr "El remitent no ha introduït una resposta vàlida a l'endevinalla"
149
+
150
+ #: contact-form-7/admin/admin-panel.php:283
151
+ msgid "The code that sender entered does not match the CAPTCHA"
152
+ msgstr "El codi que el remitent ha introduït no coincideix amb CAPTCHA"
153
+
154
+ #: contact-form-7/admin/admin-panel.php:288
155
+ msgid "Uploading a file fails for any reason"
156
+ msgstr "Pujar un fitxer ha fallat per qualsevol motiu"
157
+
158
+ #: contact-form-7/admin/admin-panel.php:293
159
+ msgid "Uploaded file is not allowed file type"
160
+ msgstr "El fitxer pujat és un tipus de fitxer permès"
161
+
162
+ #: contact-form-7/admin/admin-panel.php:298
163
+ msgid "Uploaded file is too large"
164
+ msgstr "El fitxer pujat és massa gran"
165
+
166
+ #: contact-form-7/admin/admin-panel.php:303
167
+ msgid "Uploading a file fails for PHP error"
168
+ msgstr "Pujar un fitxer ha fallat per un error PHP"
169
+
170
+ #: contact-form-7/admin/admin-panel.php:314
171
+ msgid "Additional Settings"
172
+ msgstr "Preferències addicionals"
173
+
174
+ #: contact-form-7/admin/admin.php:119
175
+ msgid "Contact"
176
+ msgstr "Contactar"
177
+
178
+ #: contact-form-7/admin/admin.php:123
179
+ msgid "Edit Contact Forms"
180
+ msgstr "Editar formularis de contacte"
181
+
182
+ #: contact-form-7/admin/admin.php:123
183
+ msgid "Edit"
184
+ msgstr "Editar"
185
+
186
+ #: contact-form-7/admin/admin.php:178
187
+ msgid "optional"
188
+ msgstr "opcional"
189
+
190
+ #: contact-form-7/admin/admin.php:179
191
+ msgid "Generate Tag"
192
+ msgstr "Generar etiqueta"
193
+
194
+ #: contact-form-7/admin/admin.php:180
195
+ msgid "Text field"
196
+ msgstr "Quadre de text"
197
+
198
+ #: contact-form-7/admin/admin.php:181
199
+ msgid "Email field"
200
+ msgstr "Quadre de text e-mail"
201
+
202
+ #: contact-form-7/admin/admin.php:182
203
+ msgid "Text area"
204
+ msgstr "Àrea de text"
205
+
206
+ #: contact-form-7/admin/admin.php:183
207
+ msgid "Drop-down menu"
208
+ msgstr "Menú desplegable"
209
+
210
+ #: contact-form-7/admin/admin.php:184
211
+ msgid "Checkboxes"
212
+ msgstr "Caselles de selecció"
213
+
214
+ #: contact-form-7/admin/admin.php:185
215
+ msgid "Radio buttons"
216
+ msgstr "Botons circulars de selecció"
217
+
218
+ #: contact-form-7/admin/admin.php:186
219
+ msgid "Acceptance"
220
+ msgstr "Tolerancia"
221
+
222
+ #: contact-form-7/admin/admin.php:187
223
+ msgid "Make this checkbox checked by default?"
224
+ msgstr "Fer que aquesta casella de selecció estigui marcada per defecte?"
225
+
226
+ #: contact-form-7/admin/admin.php:188
227
+ msgid "Make this checkbox work inversely?"
228
+ msgstr "Fer que aquesta casella de selecció operi de forma inversa?"
229
+
230
+ #: contact-form-7/admin/admin.php:189
231
+ msgid "* That means visitor who accepts the term unchecks it."
232
+ msgstr "* Això significa que el visitant que accepta el terme ho desactiva."
233
+
234
+ #: contact-form-7/admin/admin.php:190
235
+ msgid "CAPTCHA"
236
+ msgstr "CAPTCHA"
237
+
238
+ #: contact-form-7/admin/admin.php:191
239
+ msgid "Quiz"
240
+ msgstr "Prova"
241
+
242
+ #: contact-form-7/admin/admin.php:192
243
+ msgid "Quizzes"
244
+ msgstr "Proves"
245
+
246
+ #: contact-form-7/admin/admin.php:193
247
+ msgid "* quiz|answer (e.g. 1+1=?|2)"
248
+ msgstr "* prova|resposta (pex. 1+1=?|2)"
249
+
250
+ #: contact-form-7/admin/admin.php:194
251
+ msgid "File upload"
252
+ msgstr "Pujar fitxer"
253
+
254
+ #: contact-form-7/admin/admin.php:195
255
+ msgid "bytes"
256
+ msgstr "octets"
257
+
258
+ #: contact-form-7/admin/admin.php:196
259
+ msgid "Submit button"
260
+ msgstr "Botó enviar"
261
+
262
+ #: contact-form-7/admin/admin.php:197
263
+ msgid "Name"
264
+ msgstr "Nom"
265
+
266
+ #: contact-form-7/admin/admin.php:198
267
+ msgid "Required field?"
268
+ msgstr "Camp obligatori?"
269
+
270
+ #: contact-form-7/admin/admin.php:199
271
+ msgid "Allow multiple selections?"
272
+ msgstr "Permetre seleccions múltiples?"
273
+
274
+ #: contact-form-7/admin/admin.php:200
275
+ msgid "Insert a blank item as the first option?"
276
+ msgstr "Inserir un element en blanc com la primer opció?"
277
+
278
+ #: contact-form-7/admin/admin.php:201
279
+ msgid "Make checkboxes exclusive?"
280
+ msgstr "Fer caselles de selecció exclusives?"
281
+
282
+ #: contact-form-7/admin/admin.php:202
283
+ msgid "Choices"
284
+ msgstr "Seleccions"
285
+
286
+ #: contact-form-7/admin/admin.php:203
287
+ msgid "Label"
288
+ msgstr "Etiqueta"
289
+
290
+ #: contact-form-7/admin/admin.php:204
291
+ msgid "Default value"
292
+ msgstr "Valor predeterminat"
293
+
294
+ #: contact-form-7/admin/admin.php:205
295
+ msgid "Akismet"
296
+ msgstr "Akismet"
297
+
298
+ #: contact-form-7/admin/admin.php:206
299
+ msgid "This field requires author's name"
300
+ msgstr "Aquest quadre de text requereix el nom de l'autor"
301
+
302
+ #: contact-form-7/admin/admin.php:207
303
+ msgid "This field requires author's URL"
304
+ msgstr "Aquest quadre de text requereix la URL de l'autor"
305
+
306
+ #: contact-form-7/admin/admin.php:208
307
+ msgid "This field requires author's email address"
308
+ msgstr "Aquest quadre de text requereix l'adreça de correu de l'autor"
309
+
310
+ #: contact-form-7/admin/admin.php:209
311
+ msgid "Copy this code and paste it into the form left."
312
+ msgstr "Copiar aquest codi i enganxar-lo al formulari de l'esquerra."
313
+
314
+ #: contact-form-7/admin/admin.php:210
315
+ msgid "Foreground color"
316
+ msgstr "Color primer pla"
317
+
318
+ #: contact-form-7/admin/admin.php:211
319
+ msgid "Background color"
320
+ msgstr "Color de fons"
321
+
322
+ #: contact-form-7/admin/admin.php:212
323
+ msgid "Image size"
324
+ msgstr "Mida imatge"
325
+
326
+ #: contact-form-7/admin/admin.php:213
327
+ msgid "Small"
328
+ msgstr "Petit"
329
+
330
+ #: contact-form-7/admin/admin.php:214
331
+ msgid "Medium"
332
+ msgstr "Mitjà"
333
+
334
+ #: contact-form-7/admin/admin.php:215
335
+ msgid "Large"
336
+ msgstr "Gran"
337
+
338
+ #: contact-form-7/admin/admin.php:216
339
+ msgid "Image settings"
340
+ msgstr "Preferències imatge"
341
+
342
+ #: contact-form-7/admin/admin.php:217
343
+ msgid "Input field settings"
344
+ msgstr "Preferències camp imatge"
345
+
346
+ #: contact-form-7/admin/admin.php:218
347
+ msgid "For image"
348
+ msgstr "Per imatge"
349
+
350
+ #: contact-form-7/admin/admin.php:219
351
+ msgid "For input field"
352
+ msgstr "Per camp d'entrada"
353
+
354
+ #: contact-form-7/admin/admin.php:220
355
+ msgid "* One choice per line."
356
+ msgstr "* Una opció per línia"
357
+
358
+ #: contact-form-7/admin/admin.php:221
359
+ msgid "Show"
360
+ msgstr "Mostrar"
361
+
362
+ #: contact-form-7/admin/admin.php:222
363
+ msgid "Hide"
364
+ msgstr "Ocultar"
365
+
366
+ #: contact-form-7/admin/admin.php:223
367
+ msgid "File size limit"
368
+ msgstr "Mida límit fitxer"
369
+
370
+ #: contact-form-7/admin/admin.php:224
371
+ msgid "Acceptable file types"
372
+ msgstr "Tipus de fitxers acceptats"
373
+
374
+ #: contact-form-7/admin/admin.php:225
375
+ msgid "Note: To use CAPTCHA, you need Really Simple CAPTCHA plugin installed."
376
+ msgstr "Nota: Per utilitzar CAPTCHA, necessiteu tenir instal·lada l'extensió Really Simple CAPTCHA."
377
+
378
+ #: contact-form-7/admin/admin.php:236
379
+ msgid "Contact form created."
380
+ msgstr "Formulari de contacte creat."
381
+
382
+ #: contact-form-7/admin/admin.php:239
383
+ msgid "Contact form saved."
384
+ msgstr "Formulari de contacte desat."
385
+
386
+ #: contact-form-7/admin/admin.php:242
387
+ msgid "Contact form deleted."
388
+ msgstr "Formulari de contacte eliminat."
389
+
390
+ #: contact-form-7/admin/admin.php:245
391
+ msgid "Database table created."
392
+ msgstr "Taula creada a la base de dades."
393
+
394
+ #: contact-form-7/admin/admin.php:248
395
+ msgid "Failed to create database table."
396
+ msgstr "Error al crear la taula a la base de dades."
397
+
398
+ #: contact-form-7/admin/admin.php:321
399
+ msgid "Contact form"
400
+ msgstr "Formulari de contacte"
401
+
402
+ #: contact-form-7/admin/admin.php:355
403
+ msgid "Settings"
404
+ msgstr "Preferències"
405
+
406
+ #: contact-form-7/admin/admin.php:376
407
+ msgid "Contact Form 7 needs your support. Please donate today."
408
+ msgstr "Contact Form 7 necessita el vostre suport. Si us plau feu una donació avui mateix."
409
+
410
+ #: contact-form-7/admin/admin.php:377
411
+ msgid "Is this plugin useful for you? If you like it, please help the developer."
412
+ msgstr "Aquesta extensió us es útil? Si us agrada, si us plau ajudeu al desenvolupador."
413
+
414
+ #: contact-form-7/admin/admin.php:378
415
+ msgid "Your contribution is needed for making this plugin better."
416
+ msgstr "Necessitem la vostra contribució per tal de millorar aquesta extensió."
417
+
418
+ #: contact-form-7/admin/admin.php:379
419
+ msgid "Developing a plugin and providing user support is really hard work. Please help."
420
+ msgstr "Desenvolupar una extensió i donar suport realment és una tasca feixuga. Si us plau ajuda."
421
+
422
+ #: contact-form-7/includes/classes.php:537
423
+ msgid "Untitled"
424
+ msgstr "Sense títol"
425
+
426
+ #: contact-form-7/includes/functions.php:6
427
+ msgid "Your message was sent successfully. Thanks."
428
+ msgstr "El vostre missatge s'ha enviat correctament. Gràcies."
429
+
430
+ #: contact-form-7/includes/functions.php:8
431
+ #: contact-form-7/includes/functions.php:10
432
+ msgid "Failed to send your message. Please try later or contact administrator by other way."
433
+ msgstr "Error a l'enviar el vostre missatge. Proveu-ho més tard o contacteu amb l'administrador per a un altra manera."
434
+
435
+ #: contact-form-7/includes/functions.php:12
436
+ msgid "Validation errors occurred. Please confirm the fields and submit it again."
437
+ msgstr "S'ha produït errors de validació. Confirmeu els camps i envieu-lo un altre cop."
438
+
439
+ #: contact-form-7/includes/functions.php:14
440
+ msgid "Please accept the terms to proceed."
441
+ msgstr "Accepteu els termes per a continuar."
442
+
443
+ #: contact-form-7/includes/functions.php:16
444
+ msgid "Email address seems invalid."
445
+ msgstr "L'adreça e-mail sembla que no sigui vàlida"
446
+
447
+ #: contact-form-7/includes/functions.php:18
448
+ msgid "Please fill the required field."
449
+ msgstr "Si us plau ompliu els camps obligatoris"
450
+
451
+ #: contact-form-7/includes/functions.php:20
452
+ msgid "Your entered code is incorrect."
453
+ msgstr "Heu introduït un codi incorrecte."
454
+
455
+ #: contact-form-7/includes/functions.php:22
456
+ msgid "Your answer is not correct."
457
+ msgstr "La vostra resposta no és correcta."
458
+
459
+ #: contact-form-7/includes/functions.php:24
460
+ msgid "Failed to upload file."
461
+ msgstr "Error al pujar el fitxer."
462
+
463
+ #: contact-form-7/includes/functions.php:26
464
+ msgid "This file type is not allowed."
465
+ msgstr "Aquest tipus de fitxer no està permès."
466
+
467
+ #: contact-form-7/includes/functions.php:28
468
+ msgid "This file is too large."
469
+ msgstr "Aquest fitxer és massa gran."
470
+
471
+ #: contact-form-7/includes/functions.php:30
472
+ msgid "Failed to upload file. Error occurred."
473
+ msgstr "Error al pujar fitxer. S'ha produït un error."
474
+
475
+ #: contact-form-7/includes/functions.php:35
476
+ msgid "Your Name"
477
+ msgstr "El vostre nom"
478
+
479
+ #: contact-form-7/includes/functions.php:35
480
+ #: contact-form-7/includes/functions.php:37
481
+ msgid "(required)"
482
+ msgstr "(obligatori)"
483
+
484
+ #: contact-form-7/includes/functions.php:37
485
+ msgid "Your Email"
486
+ msgstr "El vostre email"
487
+
488
+ #: contact-form-7/includes/functions.php:39
489
+ msgid "Subject"
490
+ msgstr "Assumpte"
491
+
492
+ #: contact-form-7/includes/functions.php:41
493
+ msgid "Your Message"
494
+ msgstr "El vostre missatge"
495
+
496
+ #: contact-form-7/includes/functions.php:43
497
+ msgid "Send"
498
+ msgstr "Enviar"
499
+
500
+ #: contact-form-7/modules/captcha.php:62
501
+ msgid "To use CAPTCHA, you need <a href=\"http://wordpress.org/extend/plugins/really-simple-captcha/\">Really Simple CAPTCHA</a> plugin installed."
502
+ msgstr "Per utilitzar CAPTCHA, necessiteu tenir instal·lada l'extensió <a href=\"http://wordpress.org/extend/plugins/really-simple-captcha/\">Really Simple CAPTCHA</a>."
503
+
504
+ #~ msgid "Form content"
505
+ #~ msgstr "Contingut del formulari"
506
+ #~ msgid "Mail template"
507
+ #~ msgstr "Plantilla d'email"
508
+ #~ msgid "Sender field:"
509
+ #~ msgstr "Camp de remitent:"
510
+ #~ msgid "Recipient address:"
511
+ #~ msgstr "Adreça del destinatari:"
512
+ #~ msgid "Delete this contact form"
513
+ #~ msgstr "Esborar aquest formulari de contacte"
514
+ #~ msgid "Insert"
515
+ #~ msgstr "Inserir "
516
+
languages/wpcf7-ca_ES.mo DELETED
Binary file
languages/wpcf7-ca_ES.po DELETED
@@ -1,165 +0,0 @@
1
- msgid ""
2
- msgstr ""
3
- "Project-Id-Version: WP Contact Form 7\n"
4
- "POT-Creation-Date: \n"
5
- "PO-Revision-Date: 2007-09-10 18:53+0100\n"
6
- "Last-Translator: QA Solutions.NET <qasolutions.js@gmail.com>\n"
7
- "Language-Team: Takayuki Miyoshi <takayukister@gmail.com>\n"
8
- "MIME-Version: 1.0\n"
9
- "Content-Type: text/plain; charset=utf-8\n"
10
- "Content-Transfer-Encoding: 8bit\n"
11
- "X-Poedit-Language: Japanese\n"
12
- "X-Poedit-Country: JAPAN\n"
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 "Formulari de contacte"
22
-
23
- #: contact-form-7/wp-contact-form-7.php:157
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:177
29
- #, php-format
30
- msgid "Contact form \"%s\" deleted. "
31
- msgstr "Formulari de contacte \"%s\" esborrat. "
32
-
33
- #: contact-form-7/wp-contact-form-7.php:193
34
- #, php-format
35
- msgid "Contact form \"%s\" saved. "
36
- msgstr "Formulari de contacte \"%s\" guardat. "
37
-
38
- #: contact-form-7/wp-contact-form-7.php:222
39
- msgid "Your Name"
40
- msgstr "El teu nom"
41
-
42
- #: contact-form-7/wp-contact-form-7.php:222
43
- #: contact-form-7/wp-contact-form-7.php:224
44
- msgid "(required)"
45
- msgstr "(necesari)"
46
-
47
- #: contact-form-7/wp-contact-form-7.php:224
48
- msgid "Your Email"
49
- msgstr "El teu email"
50
-
51
- #: contact-form-7/wp-contact-form-7.php:226
52
- msgid "Subject"
53
- msgstr "Assumpte"
54
-
55
- #: contact-form-7/wp-contact-form-7.php:228
56
- msgid "Your Message"
57
- msgstr "El teu missatge"
58
-
59
- #: contact-form-7/wp-contact-form-7.php:230
60
- #: contact-form-7/wp-contact-form-7.php:593
61
- msgid "Send"
62
- msgstr "Enviar"
63
-
64
- #: contact-form-7/wp-contact-form-7.php:249
65
- msgid "Your message was sent successfully. Thanks."
66
- msgstr "El teu missatge s'ha enviat correctament. Mercés"
67
-
68
- #: contact-form-7/wp-contact-form-7.php:251
69
- msgid "Failed to send your message. Please try later or contact administrator by other way."
70
- msgstr "Error en enviar el missatge. Si us plau prova-ho més tard o contacta amb l'administrador d'un altra manera"
71
-
72
- #: contact-form-7/wp-contact-form-7.php:324
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 "Errors de validació. Si us plau confirma els camps i envia el formulari un altre cop"
76
-
77
- #: contact-form-7/wp-contact-form-7.php:351
78
- #: contact-form-7/wp-contact-form-7.php:358
79
- #: contact-form-7/wp-contact-form-7.php:409
80
- msgid "Please fill the required field."
81
- msgstr "Si us plau omple els camps necesaris"
82
-
83
- #: contact-form-7/wp-contact-form-7.php:361
84
- #: contact-form-7/wp-contact-form-7.php:402
85
- msgid "Email address seems invalid."
86
- msgstr "l'adreça d'email sembla incorrecte"
87
-
88
- #: contact-form-7/includes/admin-panel.php:19
89
- #: contact-form-7/includes/admin-panel.php:22
90
- msgid "Add new"
91
- msgstr "Afegir un nou"
92
-
93
- #: contact-form-7/includes/admin-panel.php:34
94
- msgid "Title"
95
- msgstr "Títol"
96
-
97
- #: contact-form-7/includes/admin-panel.php:39
98
- msgid "Copy and paste this code into your post content."
99
- msgstr "Copia i pegar aques codi en el contingut de la teva entrada"
100
-
101
- #: contact-form-7/includes/admin-panel.php:45
102
- msgid "Form content"
103
- msgstr "Contingut del formulari"
104
-
105
- #: contact-form-7/includes/admin-panel.php:58
106
- msgid "Mail template"
107
- msgstr "Plantilla d'email"
108
-
109
- #: contact-form-7/includes/admin-panel.php:59
110
- msgid "Subject field:"
111
- msgstr "Camp d'assumpte:"
112
-
113
- #: contact-form-7/includes/admin-panel.php:61
114
- msgid "Sender field:"
115
- msgstr "Camp de remitent:"
116
-
117
- #: contact-form-7/includes/admin-panel.php:63
118
- msgid "Message body:"
119
- msgstr "Cos del missatge:"
120
-
121
- #: contact-form-7/includes/admin-panel.php:67
122
- msgid "Options"
123
- msgstr "Opcions"
124
-
125
- #: contact-form-7/includes/admin-panel.php:68
126
- msgid "Recipient address:"
127
- msgstr "Adreça del destinatari:"
128
-
129
- #: contact-form-7/includes/admin-panel.php:73
130
- msgid "Save"
131
- msgstr "Guardar"
132
-
133
- #: contact-form-7/includes/admin-panel.php:80
134
- msgid "Delete this contact form"
135
- msgstr "Esborar aquest formulari de contacte"
136
-
137
- #: contact-form-7/includes/admin-panel.php:81
138
- msgid ""
139
- "You are about to delete this contact form.\n"
140
- " 'Cancel' to stop, 'OK' to delete."
141
- msgstr ""
142
- "El formulari de contacte serà esborrat.\n"
143
- " 'Cancel·lar' per anular, 'OK' per confirmar."
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 per defecte"
149
-
150
- #: contact-form-7/includes/admin-panel.php:156
151
- msgid "Choices"
152
- msgstr "Opcions"
153
-
154
- #: contact-form-7/includes/admin-panel.php:157
155
- msgid "* One choice per line."
156
- msgstr "* Una opció per línia"
157
-
158
- #: contact-form-7/includes/admin-panel.php:162
159
- msgid "Label"
160
- msgstr "Etiqueta"
161
-
162
- #: contact-form-7/includes/admin-panel.php:169
163
- msgid "Insert"
164
- msgstr "Inserir "
165
-
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
languages/wpcf7-de_DE.mo CHANGED
Binary file
languages/wpcf7-de_DE.po CHANGED
@@ -1,8 +1,8 @@
1
  msgid ""
2
  msgstr ""
3
- "Project-Id-Version: Contact Form | V2.0.1\n"
4
  "Report-Msgid-Bugs-To: \n"
5
- "POT-Creation-Date: 2009-08-01 06:43+0900\n"
6
  "PO-Revision-Date: \n"
7
  "Last-Translator: Ivan Graf <contact@bildergallery.com>\n"
8
  "Language-Team: Ivan Graf\n"
@@ -24,7 +24,7 @@ msgstr "<strong>Die Datenbanktabelle für Contact Form 7 ist nicht vorhanden.</s
24
 
25
  #: contact-form-7/admin/admin-panel.php:17
26
  #: contact-form-7/admin/admin-panel.php:30
27
- #: contact-form-7/admin/admin.php:118
28
  msgid "Contact Form 7"
29
  msgstr "Contact Form 7"
30
 
@@ -37,7 +37,7 @@ msgid "Copy this code and paste it into your post, page or text widget content."
37
  msgstr "Kopieren Sie diesen Code und fügen ihn in Ihrem Artikel, Seite oder Text-Widget ein."
38
 
39
  #: contact-form-7/admin/admin-panel.php:75
40
- #: contact-form-7/admin/admin-panel.php:327
41
  msgid "Save"
42
  msgstr "Speichern"
43
 
@@ -160,259 +160,263 @@ msgstr "Die hochgeladene Datei ist ein nicht erlaubter Dateityp!"
160
  msgid "Uploaded file is too large"
161
  msgstr "Die hochgeladene Datei ist zu gross!"
162
 
163
- #: contact-form-7/admin/admin-panel.php:309
 
 
 
 
164
  msgid "Additional Settings"
165
  msgstr "Zusätzliche Einstellungen"
166
 
167
- #: contact-form-7/admin/admin.php:118
168
  msgid "Contact"
169
  msgstr "Formular"
170
 
171
- #: contact-form-7/admin/admin.php:121
172
  msgid "Edit Contact Forms"
173
  msgstr "Bearbeite Contact Forms"
174
 
175
- #: contact-form-7/admin/admin.php:121
176
  msgid "Edit"
177
  msgstr "Bearbeiten"
178
 
179
- #: contact-form-7/admin/admin.php:168
180
  msgid "optional"
181
  msgstr "optional"
182
 
183
- #: contact-form-7/admin/admin.php:169
184
  msgid "Generate Tag"
185
  msgstr "Generiere Tag"
186
 
187
- #: contact-form-7/admin/admin.php:170
188
  msgid "Text field"
189
  msgstr "Text Feld"
190
 
191
- #: contact-form-7/admin/admin.php:171
192
  msgid "Email field"
193
  msgstr "Email Feld"
194
 
195
- #: contact-form-7/admin/admin.php:172
196
  msgid "Text area"
197
  msgstr "Text Feld"
198
 
199
- #: contact-form-7/admin/admin.php:173
200
  msgid "Drop-down menu"
201
  msgstr "Auswahlmenü"
202
 
203
- #: contact-form-7/admin/admin.php:174
204
  msgid "Checkboxes"
205
  msgstr "Auswahlbox"
206
 
207
- #: contact-form-7/admin/admin.php:175
208
  msgid "Radio buttons"
209
  msgstr "Radio Button"
210
 
211
- #: contact-form-7/admin/admin.php:176
212
  msgid "Acceptance"
213
  msgstr "Zustimmung"
214
 
215
- #: contact-form-7/admin/admin.php:177
216
  msgid "Make this checkbox checked by default?"
217
  msgstr "Auswahlbox standardmässig aktivieren?"
218
 
219
- #: contact-form-7/admin/admin.php:178
220
  msgid "Make this checkbox work inversely?"
221
  msgstr "Auswahlbox umkehren (Invert)?"
222
 
223
- #: contact-form-7/admin/admin.php:179
224
  msgid "* That means visitor who accepts the term unchecks it."
225
  msgstr "* Bedeutet, dass der Besucher die Bedingungen akzeptiert, wenn er die Auswahlbox deaktiviert."
226
 
227
- #: contact-form-7/admin/admin.php:180
228
  msgid "CAPTCHA"
229
  msgstr "Captcha"
230
 
231
- #: contact-form-7/admin/admin.php:181
232
  msgid "Quiz"
233
  msgstr "Quiz"
234
 
235
- #: contact-form-7/admin/admin.php:182
236
  msgid "Quizzes"
237
  msgstr "Quiz"
238
 
239
- #: contact-form-7/admin/admin.php:183
240
  msgid "* quiz|answer (e.g. 1+1=?|2)"
241
  msgstr "* Quiz|Antwort (z.B. 1+1=?|2)"
242
 
243
- #: contact-form-7/admin/admin.php:184
244
  msgid "File upload"
245
  msgstr "Datei Upload"
246
 
247
- #: contact-form-7/admin/admin.php:185
248
  msgid "bytes"
249
  msgstr "Bytes"
250
 
251
- #: contact-form-7/admin/admin.php:186
252
  msgid "Submit button"
253
  msgstr "Senden Button"
254
 
255
- #: contact-form-7/admin/admin.php:187
256
  msgid "Name"
257
  msgstr "Name"
258
 
259
- #: contact-form-7/admin/admin.php:188
260
  msgid "Required field?"
261
  msgstr "Pflichtfeld?"
262
 
263
- #: contact-form-7/admin/admin.php:189
264
  msgid "Allow multiple selections?"
265
  msgstr "Mehrfachauswahl erlauben?"
266
 
267
- #: contact-form-7/admin/admin.php:190
268
  msgid "Insert a blank item as the first option?"
269
  msgstr "Leere Position als die erste Option einfügen?"
270
 
271
- #: contact-form-7/admin/admin.php:191
272
  msgid "Make checkboxes exclusive?"
273
  msgstr "Exklusive Auswahlboxen erstellen?"
274
 
275
- #: contact-form-7/admin/admin.php:192
276
  msgid "Choices"
277
  msgstr "Möglichkeiten"
278
 
279
- #: contact-form-7/admin/admin.php:193
280
  msgid "Label"
281
  msgstr "Beschriftung"
282
 
283
- #: contact-form-7/admin/admin.php:194
284
  msgid "Default value"
285
  msgstr "Standardwert"
286
 
287
- #: contact-form-7/admin/admin.php:195
288
  msgid "Akismet"
289
  msgstr "Askimet"
290
 
291
- #: contact-form-7/admin/admin.php:196
292
  msgid "This field requires author's name"
293
  msgstr "Dieses Feld erfordert den Namen des Autors"
294
 
295
- #: contact-form-7/admin/admin.php:197
296
  msgid "This field requires author's URL"
297
  msgstr "Dieses Feld erfordert die URL des Autors"
298
 
299
- #: contact-form-7/admin/admin.php:198
300
  msgid "This field requires author's email address"
301
  msgstr "Dieses Feld erfordert die Email Adresse des Autors"
302
 
303
- #: contact-form-7/admin/admin.php:199
304
  msgid "Copy this code and paste it into the form left."
305
  msgstr "Kopieren Sie diesen Code und fügen ihn in das Formular links ein."
306
 
307
- #: contact-form-7/admin/admin.php:200
308
  msgid "Foreground color"
309
  msgstr "Vordergrundfarbe"
310
 
311
- #: contact-form-7/admin/admin.php:201
312
  msgid "Background color"
313
  msgstr "Hintergrundfarbe"
314
 
315
- #: contact-form-7/admin/admin.php:202
316
  msgid "Image size"
317
  msgstr "Bild Grösse"
318
 
319
- #: contact-form-7/admin/admin.php:203
320
  msgid "Small"
321
  msgstr "Klein"
322
 
323
- #: contact-form-7/admin/admin.php:204
324
  msgid "Medium"
325
  msgstr "Mittel"
326
 
327
- #: contact-form-7/admin/admin.php:205
328
  msgid "Large"
329
  msgstr "Gross"
330
 
331
- #: contact-form-7/admin/admin.php:206
332
  msgid "Image settings"
333
  msgstr "Bild Einstellungen"
334
 
335
- #: contact-form-7/admin/admin.php:207
336
  msgid "Input field settings"
337
  msgstr "Eingabefeld Einstellungen"
338
 
339
- #: contact-form-7/admin/admin.php:208
340
  msgid "For image"
341
  msgstr "Für das Bild"
342
 
343
- #: contact-form-7/admin/admin.php:209
344
  msgid "For input field"
345
  msgstr "Für das Eingabefeld"
346
 
347
- #: contact-form-7/admin/admin.php:210
348
  msgid "* One choice per line."
349
  msgstr "* Eine Möglichkeit pro Zeile."
350
 
351
- #: contact-form-7/admin/admin.php:211
352
  msgid "Show"
353
  msgstr "Anzeigen"
354
 
355
- #: contact-form-7/admin/admin.php:212
356
  msgid "Hide"
357
  msgstr "Verstecken"
358
 
359
- #: contact-form-7/admin/admin.php:213
360
  msgid "File size limit"
361
  msgstr "Dateigrössen Limit"
362
 
363
- #: contact-form-7/admin/admin.php:214
364
  msgid "Acceptable file types"
365
  msgstr "Akzeptierte Dateitypen"
366
 
367
- #: contact-form-7/admin/admin.php:215
368
  msgid "Note: To use CAPTCHA, you need Really Simple CAPTCHA plugin installed."
369
  msgstr "Hinweis: Um Captcha zu verwenden, muss dieses Plugin installiert sein."
370
 
371
- #: contact-form-7/admin/admin.php:226
372
  msgid "Contact form created."
373
  msgstr "Kontaktformular erstellt"
374
 
375
- #: contact-form-7/admin/admin.php:229
376
  msgid "Contact form saved."
377
  msgstr "Kontaktformular gespeichert"
378
 
379
- #: contact-form-7/admin/admin.php:232
380
  msgid "Contact form deleted."
381
  msgstr "Kontaktformular gelöscht"
382
 
383
- #: contact-form-7/admin/admin.php:235
384
  msgid "Database table created."
385
  msgstr "Datenbanktabelle erstellt."
386
 
387
- #: contact-form-7/admin/admin.php:238
388
  msgid "Failed to create database table."
389
  msgstr "Fehler beim Erstellen einer Datenbanktabelle."
390
 
391
- #: contact-form-7/admin/admin.php:311
392
  msgid "Contact form"
393
  msgstr "Kontaktformular"
394
 
395
- #: contact-form-7/admin/admin.php:345
396
  msgid "Settings"
397
  msgstr "Einstellungen"
398
 
399
- #: contact-form-7/admin/admin.php:366
400
  msgid "Contact Form 7 needs your support. Please donate today."
401
  msgstr "Contact Form 7 braucht Ihre Unterstützung. Bitte spenden Sie noch heute."
402
 
403
- #: contact-form-7/admin/admin.php:367
404
  msgid "Is this plugin useful for you? If you like it, please help the developer."
405
  msgstr "Ist dieses Plugin nützlich für Sie? Wenn es Ihnen gefällt, helfen Sie dem Entwickler."
406
 
407
- #: contact-form-7/admin/admin.php:368
408
  msgid "Your contribution is needed for making this plugin better."
409
  msgstr "Ihr Beitrag ist für die Herstellung dieses Plugin sehr nützlich."
410
 
411
- #: contact-form-7/admin/admin.php:369
412
  msgid "Developing a plugin and providing user support is really hard work. Please help."
413
  msgstr "Die Entwicklung eines Plugins sowie die vielen Support Anfragen verbrauchen viel Zeit. Helfen Sie uns mit einer Spende."
414
 
415
- #: contact-form-7/includes/classes.php:536
416
  msgid "Untitled"
417
  msgstr "Ohne Titel"
418
 
@@ -451,7 +455,7 @@ msgstr "Ihre eingegebene Antwort ist falsch!"
451
 
452
  #: contact-form-7/includes/functions.php:24
453
  msgid "Failed to upload file."
454
- msgstr "Fehler beim hochladen der Datei."
455
 
456
  #: contact-form-7/includes/functions.php:26
457
  msgid "This file type is not allowed."
@@ -461,29 +465,32 @@ msgstr "Dieser Dateityp ist nicht erlaubt."
461
  msgid "This file is too large."
462
  msgstr "Diese Datei ist zu gross."
463
 
464
- #: contact-form-7/includes/functions.php:33
 
 
 
 
465
  msgid "Your Name"
466
  msgstr "Ihre Name"
467
 
468
- #: contact-form-7/includes/functions.php:33
469
  #: contact-form-7/includes/functions.php:35
 
470
  msgid "(required)"
471
  msgstr "(Pflichtfeld)"
472
 
473
- #: contact-form-7/includes/functions.php:35
474
  msgid "Your Email"
475
  msgstr "Ihre Email"
476
 
477
- #: contact-form-7/includes/functions.php:37
478
  msgid "Subject"
479
  msgstr "Betreff"
480
 
481
- #: contact-form-7/includes/functions.php:39
482
  msgid "Your Message"
483
  msgstr "Ihre Nachricht"
484
 
485
- #: contact-form-7/includes/functions.php:41
486
- #: contact-form-7/modules/submit.php:37
487
  msgid "Send"
488
  msgstr "Senden"
489
 
1
  msgid ""
2
  msgstr ""
3
+ "Project-Id-Version: Contact Form | V2.0.2\n"
4
  "Report-Msgid-Bugs-To: \n"
5
+ "POT-Creation-Date: 2009-08-30 19:21+0900\n"
6
  "PO-Revision-Date: \n"
7
  "Last-Translator: Ivan Graf <contact@bildergallery.com>\n"
8
  "Language-Team: Ivan Graf\n"
24
 
25
  #: contact-form-7/admin/admin-panel.php:17
26
  #: contact-form-7/admin/admin-panel.php:30
27
+ #: contact-form-7/admin/admin.php:119
28
  msgid "Contact Form 7"
29
  msgstr "Contact Form 7"
30
 
37
  msgstr "Kopieren Sie diesen Code und fügen ihn in Ihrem Artikel, Seite oder Text-Widget ein."
38
 
39
  #: contact-form-7/admin/admin-panel.php:75
40
+ #: contact-form-7/admin/admin-panel.php:332
41
  msgid "Save"
42
  msgstr "Speichern"
43
 
160
  msgid "Uploaded file is too large"
161
  msgstr "Die hochgeladene Datei ist zu gross!"
162
 
163
+ #: contact-form-7/admin/admin-panel.php:303
164
+ msgid "Uploading a file fails for PHP error"
165
+ msgstr "Das hochladen der Datei verursachte einen PHP Error."
166
+
167
+ #: contact-form-7/admin/admin-panel.php:314
168
  msgid "Additional Settings"
169
  msgstr "Zusätzliche Einstellungen"
170
 
171
+ #: contact-form-7/admin/admin.php:119
172
  msgid "Contact"
173
  msgstr "Formular"
174
 
175
+ #: contact-form-7/admin/admin.php:123
176
  msgid "Edit Contact Forms"
177
  msgstr "Bearbeite Contact Forms"
178
 
179
+ #: contact-form-7/admin/admin.php:123
180
  msgid "Edit"
181
  msgstr "Bearbeiten"
182
 
183
+ #: contact-form-7/admin/admin.php:178
184
  msgid "optional"
185
  msgstr "optional"
186
 
187
+ #: contact-form-7/admin/admin.php:179
188
  msgid "Generate Tag"
189
  msgstr "Generiere Tag"
190
 
191
+ #: contact-form-7/admin/admin.php:180
192
  msgid "Text field"
193
  msgstr "Text Feld"
194
 
195
+ #: contact-form-7/admin/admin.php:181
196
  msgid "Email field"
197
  msgstr "Email Feld"
198
 
199
+ #: contact-form-7/admin/admin.php:182
200
  msgid "Text area"
201
  msgstr "Text Feld"
202
 
203
+ #: contact-form-7/admin/admin.php:183
204
  msgid "Drop-down menu"
205
  msgstr "Auswahlmenü"
206
 
207
+ #: contact-form-7/admin/admin.php:184
208
  msgid "Checkboxes"
209
  msgstr "Auswahlbox"
210
 
211
+ #: contact-form-7/admin/admin.php:185
212
  msgid "Radio buttons"
213
  msgstr "Radio Button"
214
 
215
+ #: contact-form-7/admin/admin.php:186
216
  msgid "Acceptance"
217
  msgstr "Zustimmung"
218
 
219
+ #: contact-form-7/admin/admin.php:187
220
  msgid "Make this checkbox checked by default?"
221
  msgstr "Auswahlbox standardmässig aktivieren?"
222
 
223
+ #: contact-form-7/admin/admin.php:188
224
  msgid "Make this checkbox work inversely?"
225
  msgstr "Auswahlbox umkehren (Invert)?"
226
 
227
+ #: contact-form-7/admin/admin.php:189
228
  msgid "* That means visitor who accepts the term unchecks it."
229
  msgstr "* Bedeutet, dass der Besucher die Bedingungen akzeptiert, wenn er die Auswahlbox deaktiviert."
230
 
231
+ #: contact-form-7/admin/admin.php:190
232
  msgid "CAPTCHA"
233
  msgstr "Captcha"
234
 
235
+ #: contact-form-7/admin/admin.php:191
236
  msgid "Quiz"
237
  msgstr "Quiz"
238
 
239
+ #: contact-form-7/admin/admin.php:192
240
  msgid "Quizzes"
241
  msgstr "Quiz"
242
 
243
+ #: contact-form-7/admin/admin.php:193
244
  msgid "* quiz|answer (e.g. 1+1=?|2)"
245
  msgstr "* Quiz|Antwort (z.B. 1+1=?|2)"
246
 
247
+ #: contact-form-7/admin/admin.php:194
248
  msgid "File upload"
249
  msgstr "Datei Upload"
250
 
251
+ #: contact-form-7/admin/admin.php:195
252
  msgid "bytes"
253
  msgstr "Bytes"
254
 
255
+ #: contact-form-7/admin/admin.php:196
256
  msgid "Submit button"
257
  msgstr "Senden Button"
258
 
259
+ #: contact-form-7/admin/admin.php:197
260
  msgid "Name"
261
  msgstr "Name"
262
 
263
+ #: contact-form-7/admin/admin.php:198
264
  msgid "Required field?"
265
  msgstr "Pflichtfeld?"
266
 
267
+ #: contact-form-7/admin/admin.php:199
268
  msgid "Allow multiple selections?"
269
  msgstr "Mehrfachauswahl erlauben?"
270
 
271
+ #: contact-form-7/admin/admin.php:200
272
  msgid "Insert a blank item as the first option?"
273
  msgstr "Leere Position als die erste Option einfügen?"
274
 
275
+ #: contact-form-7/admin/admin.php:201
276
  msgid "Make checkboxes exclusive?"
277
  msgstr "Exklusive Auswahlboxen erstellen?"
278
 
279
+ #: contact-form-7/admin/admin.php:202
280
  msgid "Choices"
281
  msgstr "Möglichkeiten"
282
 
283
+ #: contact-form-7/admin/admin.php:203
284
  msgid "Label"
285
  msgstr "Beschriftung"
286
 
287
+ #: contact-form-7/admin/admin.php:204
288
  msgid "Default value"
289
  msgstr "Standardwert"
290
 
291
+ #: contact-form-7/admin/admin.php:205
292
  msgid "Akismet"
293
  msgstr "Askimet"
294
 
295
+ #: contact-form-7/admin/admin.php:206
296
  msgid "This field requires author's name"
297
  msgstr "Dieses Feld erfordert den Namen des Autors"
298
 
299
+ #: contact-form-7/admin/admin.php:207
300
  msgid "This field requires author's URL"
301
  msgstr "Dieses Feld erfordert die URL des Autors"
302
 
303
+ #: contact-form-7/admin/admin.php:208
304
  msgid "This field requires author's email address"
305
  msgstr "Dieses Feld erfordert die Email Adresse des Autors"
306
 
307
+ #: contact-form-7/admin/admin.php:209
308
  msgid "Copy this code and paste it into the form left."
309
  msgstr "Kopieren Sie diesen Code und fügen ihn in das Formular links ein."
310
 
311
+ #: contact-form-7/admin/admin.php:210
312
  msgid "Foreground color"
313
  msgstr "Vordergrundfarbe"
314
 
315
+ #: contact-form-7/admin/admin.php:211
316
  msgid "Background color"
317
  msgstr "Hintergrundfarbe"
318
 
319
+ #: contact-form-7/admin/admin.php:212
320
  msgid "Image size"
321
  msgstr "Bild Grösse"
322
 
323
+ #: contact-form-7/admin/admin.php:213
324
  msgid "Small"
325
  msgstr "Klein"
326
 
327
+ #: contact-form-7/admin/admin.php:214
328
  msgid "Medium"
329
  msgstr "Mittel"
330
 
331
+ #: contact-form-7/admin/admin.php:215
332
  msgid "Large"
333
  msgstr "Gross"
334
 
335
+ #: contact-form-7/admin/admin.php:216
336
  msgid "Image settings"
337
  msgstr "Bild Einstellungen"
338
 
339
+ #: contact-form-7/admin/admin.php:217
340
  msgid "Input field settings"
341
  msgstr "Eingabefeld Einstellungen"
342
 
343
+ #: contact-form-7/admin/admin.php:218
344
  msgid "For image"
345
  msgstr "Für das Bild"
346
 
347
+ #: contact-form-7/admin/admin.php:219
348
  msgid "For input field"
349
  msgstr "Für das Eingabefeld"
350
 
351
+ #: contact-form-7/admin/admin.php:220
352
  msgid "* One choice per line."
353
  msgstr "* Eine Möglichkeit pro Zeile."
354
 
355
+ #: contact-form-7/admin/admin.php:221
356
  msgid "Show"
357
  msgstr "Anzeigen"
358
 
359
+ #: contact-form-7/admin/admin.php:222
360
  msgid "Hide"
361
  msgstr "Verstecken"
362
 
363
+ #: contact-form-7/admin/admin.php:223
364
  msgid "File size limit"
365
  msgstr "Dateigrössen Limit"
366
 
367
+ #: contact-form-7/admin/admin.php:224
368
  msgid "Acceptable file types"
369
  msgstr "Akzeptierte Dateitypen"
370
 
371
+ #: contact-form-7/admin/admin.php:225
372
  msgid "Note: To use CAPTCHA, you need Really Simple CAPTCHA plugin installed."
373
  msgstr "Hinweis: Um Captcha zu verwenden, muss dieses Plugin installiert sein."
374
 
375
+ #: contact-form-7/admin/admin.php:236
376
  msgid "Contact form created."
377
  msgstr "Kontaktformular erstellt"
378
 
379
+ #: contact-form-7/admin/admin.php:239
380
  msgid "Contact form saved."
381
  msgstr "Kontaktformular gespeichert"
382
 
383
+ #: contact-form-7/admin/admin.php:242
384
  msgid "Contact form deleted."
385
  msgstr "Kontaktformular gelöscht"
386
 
387
+ #: contact-form-7/admin/admin.php:245
388
  msgid "Database table created."
389
  msgstr "Datenbanktabelle erstellt."
390
 
391
+ #: contact-form-7/admin/admin.php:248
392
  msgid "Failed to create database table."
393
  msgstr "Fehler beim Erstellen einer Datenbanktabelle."
394
 
395
+ #: contact-form-7/admin/admin.php:321
396
  msgid "Contact form"
397
  msgstr "Kontaktformular"
398
 
399
+ #: contact-form-7/admin/admin.php:355
400
  msgid "Settings"
401
  msgstr "Einstellungen"
402
 
403
+ #: contact-form-7/admin/admin.php:376
404
  msgid "Contact Form 7 needs your support. Please donate today."
405
  msgstr "Contact Form 7 braucht Ihre Unterstützung. Bitte spenden Sie noch heute."
406
 
407
+ #: contact-form-7/admin/admin.php:377
408
  msgid "Is this plugin useful for you? If you like it, please help the developer."
409
  msgstr "Ist dieses Plugin nützlich für Sie? Wenn es Ihnen gefällt, helfen Sie dem Entwickler."
410
 
411
+ #: contact-form-7/admin/admin.php:378
412
  msgid "Your contribution is needed for making this plugin better."
413
  msgstr "Ihr Beitrag ist für die Herstellung dieses Plugin sehr nützlich."
414
 
415
+ #: contact-form-7/admin/admin.php:379
416
  msgid "Developing a plugin and providing user support is really hard work. Please help."
417
  msgstr "Die Entwicklung eines Plugins sowie die vielen Support Anfragen verbrauchen viel Zeit. Helfen Sie uns mit einer Spende."
418
 
419
+ #: contact-form-7/includes/classes.php:537
420
  msgid "Untitled"
421
  msgstr "Ohne Titel"
422
 
455
 
456
  #: contact-form-7/includes/functions.php:24
457
  msgid "Failed to upload file."
458
+ msgstr "Das hochladen der Datei ist fehlgeschlagen."
459
 
460
  #: contact-form-7/includes/functions.php:26
461
  msgid "This file type is not allowed."
465
  msgid "This file is too large."
466
  msgstr "Diese Datei ist zu gross."
467
 
468
+ #: contact-form-7/includes/functions.php:30
469
+ msgid "Failed to upload file. Error occurred."
470
+ msgstr "Das hochladen der Datei ist fehlgeschlagen. Es sind Fehler aufgetreten."
471
+
472
+ #: contact-form-7/includes/functions.php:35
473
  msgid "Your Name"
474
  msgstr "Ihre Name"
475
 
 
476
  #: contact-form-7/includes/functions.php:35
477
+ #: contact-form-7/includes/functions.php:37
478
  msgid "(required)"
479
  msgstr "(Pflichtfeld)"
480
 
481
+ #: contact-form-7/includes/functions.php:37
482
  msgid "Your Email"
483
  msgstr "Ihre Email"
484
 
485
+ #: contact-form-7/includes/functions.php:39
486
  msgid "Subject"
487
  msgstr "Betreff"
488
 
489
+ #: contact-form-7/includes/functions.php:41
490
  msgid "Your Message"
491
  msgstr "Ihre Nachricht"
492
 
493
+ #: contact-form-7/includes/functions.php:43
 
494
  msgid "Send"
495
  msgstr "Senden"
496
 
languages/wpcf7-it_IT.mo CHANGED
Binary file
languages/wpcf7-it_IT.po CHANGED
@@ -2,8 +2,8 @@ msgid ""
2
  msgstr ""
3
  "Project-Id-Version: WP Contact Form 7 in italiano\n"
4
  "Report-Msgid-Bugs-To: \n"
5
- "POT-Creation-Date: 2009-08-01 06:43+0900\n"
6
- "PO-Revision-Date: 2009-08-01 18:35+0100\n"
7
  "Last-Translator: Gianni Diurno (aka gidibao) <gidibao@gmail.com>\n"
8
  "Language-Team: Gianni Diurno | http://gidibao.net/ <gidibao@gmail.com>\n"
9
  "MIME-Version: 1.0\n"
@@ -27,7 +27,7 @@ msgstr "<strong>Non esiste nel database la tabella di Contact Form 7.</strong>"
27
 
28
  #: contact-form-7/admin/admin-panel.php:17
29
  #: contact-form-7/admin/admin-panel.php:30
30
- #: contact-form-7/admin/admin.php:118
31
  msgid "Contact Form 7"
32
  msgstr "Contact Form 7"
33
 
@@ -40,7 +40,7 @@ msgid "Copy this code and paste it into your post, page or text widget content."
40
  msgstr "Copia ed incolla questo codice nel tuo articolo, pagina o contenuto del widget di testo."
41
 
42
  #: contact-form-7/admin/admin-panel.php:75
43
- #: contact-form-7/admin/admin-panel.php:327
44
  msgid "Save"
45
  msgstr "Salva"
46
 
@@ -163,259 +163,263 @@ msgstr "Non é stato possibile caricare il file (estensione non consentita)"
163
  msgid "Uploaded file is too large"
164
  msgstr "Non é stato possibile caricare il file (dimensione eccessiva)"
165
 
166
- #: contact-form-7/admin/admin-panel.php:309
 
 
 
 
167
  msgid "Additional Settings"
168
  msgstr "Impostazioni aggiuntive"
169
 
170
- #: contact-form-7/admin/admin.php:118
171
  msgid "Contact"
172
  msgstr "C F 7"
173
 
174
- #: contact-form-7/admin/admin.php:121
175
  msgid "Edit Contact Forms"
176
  msgstr "Modifica Contact Forms"
177
 
178
- #: contact-form-7/admin/admin.php:121
179
  msgid "Edit"
180
  msgstr "Modifica"
181
 
182
- #: contact-form-7/admin/admin.php:168
183
  msgid "optional"
184
  msgstr "facoltativo"
185
 
186
- #: contact-form-7/admin/admin.php:169
187
  msgid "Generate Tag"
188
  msgstr "Genera tag"
189
 
190
- #: contact-form-7/admin/admin.php:170
191
  msgid "Text field"
192
  msgstr "Campo testo"
193
 
194
- #: contact-form-7/admin/admin.php:171
195
  msgid "Email field"
196
  msgstr "Campo email"
197
 
198
- #: contact-form-7/admin/admin.php:172
199
  msgid "Text area"
200
  msgstr "Area di testo"
201
 
202
- #: contact-form-7/admin/admin.php:173
203
  msgid "Drop-down menu"
204
  msgstr "Menu a tendina"
205
 
206
- #: contact-form-7/admin/admin.php:174
207
  msgid "Checkboxes"
208
  msgstr "Caselle di verifica"
209
 
210
- #: contact-form-7/admin/admin.php:175
211
  msgid "Radio buttons"
212
  msgstr "Radio buttons"
213
 
214
- #: contact-form-7/admin/admin.php:176
215
  msgid "Acceptance"
216
  msgstr "Consenso"
217
 
218
- #: contact-form-7/admin/admin.php:177
219
  msgid "Make this checkbox checked by default?"
220
  msgstr "Desideri che questa casella di verifica sia selezionata (predefinito)?"
221
 
222
- #: contact-form-7/admin/admin.php:178
223
  msgid "Make this checkbox work inversely?"
224
  msgstr "Desideri che questa casella di verifica funzioni in modalità inversa?"
225
 
226
- #: contact-form-7/admin/admin.php:179
227
  msgid "* That means visitor who accepts the term unchecks it."
228
  msgstr "* Ciò indica che il visitatore dovrà de-selezionare la casella per esprimere il proprio consenso."
229
 
230
- #: contact-form-7/admin/admin.php:180
231
  msgid "CAPTCHA"
232
  msgstr "CAPTCHA"
233
 
234
- #: contact-form-7/admin/admin.php:181
235
  msgid "Quiz"
236
  msgstr "Quesito"
237
 
238
- #: contact-form-7/admin/admin.php:182
239
  msgid "Quizzes"
240
  msgstr "Quesiti"
241
 
242
- #: contact-form-7/admin/admin.php:183
243
  msgid "* quiz|answer (e.g. 1+1=?|2)"
244
  msgstr "* quesito|domanda (ad esempio: 1+1=?|2)"
245
 
246
- #: contact-form-7/admin/admin.php:184
247
  msgid "File upload"
248
  msgstr "File caricato"
249
 
250
- #: contact-form-7/admin/admin.php:185
251
  msgid "bytes"
252
  msgstr "bytes"
253
 
254
- #: contact-form-7/admin/admin.php:186
255
  msgid "Submit button"
256
  msgstr "Pulsante di invio"
257
 
258
- #: contact-form-7/admin/admin.php:187
259
  msgid "Name"
260
  msgstr "Nome"
261
 
262
- #: contact-form-7/admin/admin.php:188
263
  msgid "Required field?"
264
  msgstr "Campi obbligatori?"
265
 
266
- #: contact-form-7/admin/admin.php:189
267
  msgid "Allow multiple selections?"
268
  msgstr "Desideri permettere le selezioni multiple?"
269
 
270
- #: contact-form-7/admin/admin.php:190
271
  msgid "Insert a blank item as the first option?"
272
  msgstr "Desideri lasciare in bianco la prima opzione?"
273
 
274
- #: contact-form-7/admin/admin.php:191
275
  msgid "Make checkboxes exclusive?"
276
  msgstr "Desideri escludere le caselle di verifica?"
277
 
278
- #: contact-form-7/admin/admin.php:192
279
  msgid "Choices"
280
  msgstr "Opzioni"
281
 
282
- #: contact-form-7/admin/admin.php:193
283
  msgid "Label"
284
  msgstr "Etichetta"
285
 
286
- #: contact-form-7/admin/admin.php:194
287
  msgid "Default value"
288
  msgstr "Valore predefinito"
289
 
290
- #: contact-form-7/admin/admin.php:195
291
  msgid "Akismet"
292
  msgstr "Akismet"
293
 
294
- #: contact-form-7/admin/admin.php:196
295
  msgid "This field requires author's name"
296
  msgstr "Questo campo necessita del nome autore"
297
 
298
- #: contact-form-7/admin/admin.php:197
299
  msgid "This field requires author's URL"
300
  msgstr "Questo campo necessita dell'URL autore"
301
 
302
- #: contact-form-7/admin/admin.php:198
303
  msgid "This field requires author's email address"
304
  msgstr "Questo campo necessita dell'indirizzo email autore"
305
 
306
- #: contact-form-7/admin/admin.php:199
307
  msgid "Copy this code and paste it into the form left."
308
  msgstr "Copia questo codice ed incollalo nel modulo a sinistra."
309
 
310
- #: contact-form-7/admin/admin.php:200
311
  msgid "Foreground color"
312
  msgstr "Colore di primo piano"
313
 
314
- #: contact-form-7/admin/admin.php:201
315
  msgid "Background color"
316
  msgstr "Colore di sfondo"
317
 
318
- #: contact-form-7/admin/admin.php:202
319
  msgid "Image size"
320
  msgstr "Dimensione immagine"
321
 
322
- #: contact-form-7/admin/admin.php:203
323
  msgid "Small"
324
  msgstr "Piccola"
325
 
326
- #: contact-form-7/admin/admin.php:204
327
  msgid "Medium"
328
  msgstr "Media"
329
 
330
- #: contact-form-7/admin/admin.php:205
331
  msgid "Large"
332
  msgstr "Grande"
333
 
334
- #: contact-form-7/admin/admin.php:206
335
  msgid "Image settings"
336
  msgstr "Impostazioni immagine"
337
 
338
- #: contact-form-7/admin/admin.php:207
339
  msgid "Input field settings"
340
  msgstr "Impostazione campo dati"
341
 
342
- #: contact-form-7/admin/admin.php:208
343
  msgid "For image"
344
  msgstr "Per immagine"
345
 
346
- #: contact-form-7/admin/admin.php:209
347
  msgid "For input field"
348
  msgstr "Per campo dati"
349
 
350
- #: contact-form-7/admin/admin.php:210
351
  msgid "* One choice per line."
352
  msgstr "* Una opzione per linea."
353
 
354
- #: contact-form-7/admin/admin.php:211
355
  msgid "Show"
356
  msgstr "Mostra"
357
 
358
- #: contact-form-7/admin/admin.php:212
359
  msgid "Hide"
360
  msgstr "Nascondi"
361
 
362
- #: contact-form-7/admin/admin.php:213
363
  msgid "File size limit"
364
  msgstr "Limite dimensione file"
365
 
366
- #: contact-form-7/admin/admin.php:214
367
  msgid "Acceptable file types"
368
  msgstr "Tipologia di file consentiti"
369
 
370
- #: contact-form-7/admin/admin.php:215
371
  msgid "Note: To use CAPTCHA, you need Really Simple CAPTCHA plugin installed."
372
  msgstr "Nota: per l'utilizzo del CAPTCHA é necessaria l'installazione del plugin Really Simple CAPTCHA."
373
 
374
- #: contact-form-7/admin/admin.php:226
375
  msgid "Contact form created."
376
  msgstr "Il modulo di contatto é stato creato."
377
 
378
- #: contact-form-7/admin/admin.php:229
379
  msgid "Contact form saved."
380
  msgstr "Il modulo di contatto é stato salvato. "
381
 
382
- #: contact-form-7/admin/admin.php:232
383
  msgid "Contact form deleted."
384
  msgstr "Il modulo di contatto é stato cancellato. "
385
 
386
- #: contact-form-7/admin/admin.php:235
387
  msgid "Database table created."
388
  msgstr "E' stata creata la tabella nel database."
389
 
390
- #: contact-form-7/admin/admin.php:238
391
  msgid "Failed to create database table."
392
  msgstr "Non é stato possibile creare la tabella nel database"
393
 
394
- #: contact-form-7/admin/admin.php:311
395
  msgid "Contact form"
396
  msgstr "Modulo di contatto"
397
 
398
- #: contact-form-7/admin/admin.php:345
399
  msgid "Settings"
400
  msgstr "Impostazioni"
401
 
402
- #: contact-form-7/admin/admin.php:366
403
  msgid "Contact Form 7 needs your support. Please donate today."
404
  msgstr "Contact Form 7 ha bisogno del tuo sostegno. Effettua una donazione oggi stesso."
405
 
406
- #: contact-form-7/admin/admin.php:367
407
  msgid "Is this plugin useful for you? If you like it, please help the developer."
408
  msgstr "Questo plugin ti é utile? Aiuta lo sviluppatore."
409
 
410
- #: contact-form-7/admin/admin.php:368
411
  msgid "Your contribution is needed for making this plugin better."
412
  msgstr "Il tuo contributo é necessario per potere rendere migliore questo plugin."
413
 
414
- #: contact-form-7/admin/admin.php:369
415
  msgid "Developing a plugin and providing user support is really hard work. Please help."
416
  msgstr "Lo sviluppo di un plugin ed il servizio di assistenza agli utenti comporta un notevole lavoro. Aiutami!"
417
 
418
- #: contact-form-7/includes/classes.php:536
419
  msgid "Untitled"
420
  msgstr "Senza titolo"
421
 
@@ -464,29 +468,32 @@ msgstr "Questo tipo di file non é permesso"
464
  msgid "This file is too large."
465
  msgstr "Questo file é troppo grande"
466
 
467
- #: contact-form-7/includes/functions.php:33
 
 
 
 
468
  msgid "Your Name"
469
  msgstr "Il tuo nome"
470
 
471
- #: contact-form-7/includes/functions.php:33
472
  #: contact-form-7/includes/functions.php:35
 
473
  msgid "(required)"
474
  msgstr "(richiesto)"
475
 
476
- #: contact-form-7/includes/functions.php:35
477
  msgid "Your Email"
478
  msgstr "La tua email"
479
 
480
- #: contact-form-7/includes/functions.php:37
481
  msgid "Subject"
482
  msgstr "Oggetto"
483
 
484
- #: contact-form-7/includes/functions.php:39
485
  msgid "Your Message"
486
  msgstr "Il tuo messaggio"
487
 
488
- #: contact-form-7/includes/functions.php:41
489
- #: contact-form-7/modules/submit.php:37
490
  msgid "Send"
491
  msgstr "Invia"
492
 
2
  msgstr ""
3
  "Project-Id-Version: WP Contact Form 7 in italiano\n"
4
  "Report-Msgid-Bugs-To: \n"
5
+ "POT-Creation-Date: 2009-08-30 19:21+0900\n"
6
+ "PO-Revision-Date: 2009-09-01 21:37+0100\n"
7
  "Last-Translator: Gianni Diurno (aka gidibao) <gidibao@gmail.com>\n"
8
  "Language-Team: Gianni Diurno | http://gidibao.net/ <gidibao@gmail.com>\n"
9
  "MIME-Version: 1.0\n"
27
 
28
  #: contact-form-7/admin/admin-panel.php:17
29
  #: contact-form-7/admin/admin-panel.php:30
30
+ #: contact-form-7/admin/admin.php:119
31
  msgid "Contact Form 7"
32
  msgstr "Contact Form 7"
33
 
40
  msgstr "Copia ed incolla questo codice nel tuo articolo, pagina o contenuto del widget di testo."
41
 
42
  #: contact-form-7/admin/admin-panel.php:75
43
+ #: contact-form-7/admin/admin-panel.php:332
44
  msgid "Save"
45
  msgstr "Salva"
46
 
163
  msgid "Uploaded file is too large"
164
  msgstr "Non é stato possibile caricare il file (dimensione eccessiva)"
165
 
166
+ #: contact-form-7/admin/admin-panel.php:303
167
+ msgid "Uploading a file fails for PHP error"
168
+ msgstr "Non é stato possibile caricare il file (errore PHP)"
169
+
170
+ #: contact-form-7/admin/admin-panel.php:314
171
  msgid "Additional Settings"
172
  msgstr "Impostazioni aggiuntive"
173
 
174
+ #: contact-form-7/admin/admin.php:119
175
  msgid "Contact"
176
  msgstr "C F 7"
177
 
178
+ #: contact-form-7/admin/admin.php:123
179
  msgid "Edit Contact Forms"
180
  msgstr "Modifica Contact Forms"
181
 
182
+ #: contact-form-7/admin/admin.php:123
183
  msgid "Edit"
184
  msgstr "Modifica"
185
 
186
+ #: contact-form-7/admin/admin.php:178
187
  msgid "optional"
188
  msgstr "facoltativo"
189
 
190
+ #: contact-form-7/admin/admin.php:179
191
  msgid "Generate Tag"
192
  msgstr "Genera tag"
193
 
194
+ #: contact-form-7/admin/admin.php:180
195
  msgid "Text field"
196
  msgstr "Campo testo"
197
 
198
+ #: contact-form-7/admin/admin.php:181
199
  msgid "Email field"
200
  msgstr "Campo email"
201
 
202
+ #: contact-form-7/admin/admin.php:182
203
  msgid "Text area"
204
  msgstr "Area di testo"
205
 
206
+ #: contact-form-7/admin/admin.php:183
207
  msgid "Drop-down menu"
208
  msgstr "Menu a tendina"
209
 
210
+ #: contact-form-7/admin/admin.php:184
211
  msgid "Checkboxes"
212
  msgstr "Caselle di verifica"
213
 
214
+ #: contact-form-7/admin/admin.php:185
215
  msgid "Radio buttons"
216
  msgstr "Radio buttons"
217
 
218
+ #: contact-form-7/admin/admin.php:186
219
  msgid "Acceptance"
220
  msgstr "Consenso"
221
 
222
+ #: contact-form-7/admin/admin.php:187
223
  msgid "Make this checkbox checked by default?"
224
  msgstr "Desideri che questa casella di verifica sia selezionata (predefinito)?"
225
 
226
+ #: contact-form-7/admin/admin.php:188
227
  msgid "Make this checkbox work inversely?"
228
  msgstr "Desideri che questa casella di verifica funzioni in modalità inversa?"
229
 
230
+ #: contact-form-7/admin/admin.php:189
231
  msgid "* That means visitor who accepts the term unchecks it."
232
  msgstr "* Ciò indica che il visitatore dovrà de-selezionare la casella per esprimere il proprio consenso."
233
 
234
+ #: contact-form-7/admin/admin.php:190
235
  msgid "CAPTCHA"
236
  msgstr "CAPTCHA"
237
 
238
+ #: contact-form-7/admin/admin.php:191
239
  msgid "Quiz"
240
  msgstr "Quesito"
241
 
242
+ #: contact-form-7/admin/admin.php:192
243
  msgid "Quizzes"
244
  msgstr "Quesiti"
245
 
246
+ #: contact-form-7/admin/admin.php:193
247
  msgid "* quiz|answer (e.g. 1+1=?|2)"
248
  msgstr "* quesito|domanda (ad esempio: 1+1=?|2)"
249
 
250
+ #: contact-form-7/admin/admin.php:194
251
  msgid "File upload"
252
  msgstr "File caricato"
253
 
254
+ #: contact-form-7/admin/admin.php:195
255
  msgid "bytes"
256
  msgstr "bytes"
257
 
258
+ #: contact-form-7/admin/admin.php:196
259
  msgid "Submit button"
260
  msgstr "Pulsante di invio"
261
 
262
+ #: contact-form-7/admin/admin.php:197
263
  msgid "Name"
264
  msgstr "Nome"
265
 
266
+ #: contact-form-7/admin/admin.php:198
267
  msgid "Required field?"
268
  msgstr "Campi obbligatori?"
269
 
270
+ #: contact-form-7/admin/admin.php:199
271
  msgid "Allow multiple selections?"
272
  msgstr "Desideri permettere le selezioni multiple?"
273
 
274
+ #: contact-form-7/admin/admin.php:200
275
  msgid "Insert a blank item as the first option?"
276
  msgstr "Desideri lasciare in bianco la prima opzione?"
277
 
278
+ #: contact-form-7/admin/admin.php:201
279
  msgid "Make checkboxes exclusive?"
280
  msgstr "Desideri escludere le caselle di verifica?"
281
 
282
+ #: contact-form-7/admin/admin.php:202
283
  msgid "Choices"
284
  msgstr "Opzioni"
285
 
286
+ #: contact-form-7/admin/admin.php:203
287
  msgid "Label"
288
  msgstr "Etichetta"
289
 
290
+ #: contact-form-7/admin/admin.php:204
291
  msgid "Default value"
292
  msgstr "Valore predefinito"
293
 
294
+ #: contact-form-7/admin/admin.php:205
295
  msgid "Akismet"
296
  msgstr "Akismet"
297
 
298
+ #: contact-form-7/admin/admin.php:206
299
  msgid "This field requires author's name"
300
  msgstr "Questo campo necessita del nome autore"
301
 
302
+ #: contact-form-7/admin/admin.php:207
303
  msgid "This field requires author's URL"
304
  msgstr "Questo campo necessita dell'URL autore"
305
 
306
+ #: contact-form-7/admin/admin.php:208
307
  msgid "This field requires author's email address"
308
  msgstr "Questo campo necessita dell'indirizzo email autore"
309
 
310
+ #: contact-form-7/admin/admin.php:209
311
  msgid "Copy this code and paste it into the form left."
312
  msgstr "Copia questo codice ed incollalo nel modulo a sinistra."
313
 
314
+ #: contact-form-7/admin/admin.php:210
315
  msgid "Foreground color"
316
  msgstr "Colore di primo piano"
317
 
318
+ #: contact-form-7/admin/admin.php:211
319
  msgid "Background color"
320
  msgstr "Colore di sfondo"
321
 
322
+ #: contact-form-7/admin/admin.php:212
323
  msgid "Image size"
324
  msgstr "Dimensione immagine"
325
 
326
+ #: contact-form-7/admin/admin.php:213
327
  msgid "Small"
328
  msgstr "Piccola"
329
 
330
+ #: contact-form-7/admin/admin.php:214
331
  msgid "Medium"
332
  msgstr "Media"
333
 
334
+ #: contact-form-7/admin/admin.php:215
335
  msgid "Large"
336
  msgstr "Grande"
337
 
338
+ #: contact-form-7/admin/admin.php:216
339
  msgid "Image settings"
340
  msgstr "Impostazioni immagine"
341
 
342
+ #: contact-form-7/admin/admin.php:217
343
  msgid "Input field settings"
344
  msgstr "Impostazione campo dati"
345
 
346
+ #: contact-form-7/admin/admin.php:218
347
  msgid "For image"
348
  msgstr "Per immagine"
349
 
350
+ #: contact-form-7/admin/admin.php:219
351
  msgid "For input field"
352
  msgstr "Per campo dati"
353
 
354
+ #: contact-form-7/admin/admin.php:220
355
  msgid "* One choice per line."
356
  msgstr "* Una opzione per linea."
357
 
358
+ #: contact-form-7/admin/admin.php:221
359
  msgid "Show"
360
  msgstr "Mostra"
361
 
362
+ #: contact-form-7/admin/admin.php:222
363
  msgid "Hide"
364
  msgstr "Nascondi"
365
 
366
+ #: contact-form-7/admin/admin.php:223
367
  msgid "File size limit"
368
  msgstr "Limite dimensione file"
369
 
370
+ #: contact-form-7/admin/admin.php:224
371
  msgid "Acceptable file types"
372
  msgstr "Tipologia di file consentiti"
373
 
374
+ #: contact-form-7/admin/admin.php:225
375
  msgid "Note: To use CAPTCHA, you need Really Simple CAPTCHA plugin installed."
376
  msgstr "Nota: per l'utilizzo del CAPTCHA é necessaria l'installazione del plugin Really Simple CAPTCHA."
377
 
378
+ #: contact-form-7/admin/admin.php:236
379
  msgid "Contact form created."
380
  msgstr "Il modulo di contatto é stato creato."
381
 
382
+ #: contact-form-7/admin/admin.php:239
383
  msgid "Contact form saved."
384
  msgstr "Il modulo di contatto é stato salvato. "
385
 
386
+ #: contact-form-7/admin/admin.php:242
387
  msgid "Contact form deleted."
388
  msgstr "Il modulo di contatto é stato cancellato. "
389
 
390
+ #: contact-form-7/admin/admin.php:245
391
  msgid "Database table created."
392
  msgstr "E' stata creata la tabella nel database."
393
 
394
+ #: contact-form-7/admin/admin.php:248
395
  msgid "Failed to create database table."
396
  msgstr "Non é stato possibile creare la tabella nel database"
397
 
398
+ #: contact-form-7/admin/admin.php:321
399
  msgid "Contact form"
400
  msgstr "Modulo di contatto"
401
 
402
+ #: contact-form-7/admin/admin.php:355
403
  msgid "Settings"
404
  msgstr "Impostazioni"
405
 
406
+ #: contact-form-7/admin/admin.php:376
407
  msgid "Contact Form 7 needs your support. Please donate today."
408
  msgstr "Contact Form 7 ha bisogno del tuo sostegno. Effettua una donazione oggi stesso."
409
 
410
+ #: contact-form-7/admin/admin.php:377
411
  msgid "Is this plugin useful for you? If you like it, please help the developer."
412
  msgstr "Questo plugin ti é utile? Aiuta lo sviluppatore."
413
 
414
+ #: contact-form-7/admin/admin.php:378
415
  msgid "Your contribution is needed for making this plugin better."
416
  msgstr "Il tuo contributo é necessario per potere rendere migliore questo plugin."
417
 
418
+ #: contact-form-7/admin/admin.php:379
419
  msgid "Developing a plugin and providing user support is really hard work. Please help."
420
  msgstr "Lo sviluppo di un plugin ed il servizio di assistenza agli utenti comporta un notevole lavoro. Aiutami!"
421
 
422
+ #: contact-form-7/includes/classes.php:537
423
  msgid "Untitled"
424
  msgstr "Senza titolo"
425
 
468
  msgid "This file is too large."
469
  msgstr "Questo file é troppo grande"
470
 
471
+ #: contact-form-7/includes/functions.php:30
472
+ msgid "Failed to upload file. Error occurred."
473
+ msgstr "Si é verificato un errore durante il caricamento del file."
474
+
475
+ #: contact-form-7/includes/functions.php:35
476
  msgid "Your Name"
477
  msgstr "Il tuo nome"
478
 
 
479
  #: contact-form-7/includes/functions.php:35
480
+ #: contact-form-7/includes/functions.php:37
481
  msgid "(required)"
482
  msgstr "(richiesto)"
483
 
484
+ #: contact-form-7/includes/functions.php:37
485
  msgid "Your Email"
486
  msgstr "La tua email"
487
 
488
+ #: contact-form-7/includes/functions.php:39
489
  msgid "Subject"
490
  msgstr "Oggetto"
491
 
492
+ #: contact-form-7/includes/functions.php:41
493
  msgid "Your Message"
494
  msgstr "Il tuo messaggio"
495
 
496
+ #: contact-form-7/includes/functions.php:43
 
497
  msgid "Send"
498
  msgstr "Invia"
499
 
languages/wpcf7-tr_TR.mo CHANGED
Binary file
languages/wpcf7-tr_TR.po CHANGED
@@ -2,9 +2,9 @@ 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-02 22:28+0200\n"
7
- "Last-Translator: Hasan Yılmaz <iletisim@hasanyilmaz.net>\n"
8
  "Language-Team: Hedef Türkçe <iletisim@hedeftürkce.com>\n"
9
  "MIME-Version: 1.0\n"
10
  "Content-Type: text/plain; charset=UTF-8\n"
@@ -12,294 +12,491 @@ msgstr ""
12
  "X-Poedit-Language: Turkish\n"
13
  "X-Poedit-Country: TURKEY\n"
14
 
15
- #: contact-form-7/wp-contact-form-7.php:309
16
- msgid "Contact form"
17
- msgstr "İletişim formu"
 
 
 
 
 
18
 
19
- #: contact-form-7/wp-contact-form-7.php:403
20
- #: contact-form-7/includes/admin-panel.php:5
 
21
  msgid "Contact Form 7"
22
  msgstr "İletişim Formu 7"
23
 
24
- #: contact-form-7/wp-contact-form-7.php:419
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
25
  msgid "optional"
26
  msgstr "seçimli"
27
 
28
- #: contact-form-7/wp-contact-form-7.php:420
29
  msgid "Generate Tag"
30
  msgstr "Etiket Oluştur"
31
 
32
- #: contact-form-7/wp-contact-form-7.php:421
33
  msgid "Text field"
34
  msgstr "Metin alanı"
35
 
36
- #: contact-form-7/wp-contact-form-7.php:422
37
  msgid "Email field"
38
  msgstr "E-posta alanı"
39
 
40
- #: contact-form-7/wp-contact-form-7.php:423
41
  msgid "Text area"
42
  msgstr "Metin alanı"
43
 
44
- #: contact-form-7/wp-contact-form-7.php:424
45
  msgid "Drop-down menu"
46
  msgstr "Açılır menü"
47
 
48
- #: contact-form-7/wp-contact-form-7.php:425
49
  msgid "Checkboxes"
50
  msgstr "Onay kutuları"
51
 
52
- #: contact-form-7/wp-contact-form-7.php:426
53
  msgid "Radio buttons"
54
  msgstr "Seçenek butonları"
55
 
56
- #: contact-form-7/wp-contact-form-7.php:427
57
  msgid "Acceptance"
58
  msgstr "Kabul"
59
 
60
- #: contact-form-7/wp-contact-form-7.php:428
61
  msgid "Make this checkbox checked by default?"
62
  msgstr "Bu kutu varsayılan olarak seçili olsun mu?"
63
 
64
- #: contact-form-7/wp-contact-form-7.php:429
65
  msgid "Make this checkbox work inversely?"
66
  msgstr "Onay kutusu ters çalışsın mı?"
67
 
68
- #: contact-form-7/wp-contact-form-7.php:430
69
  msgid "* That means visitor who accepts the term unchecks it."
70
  msgstr "* Koşulu kabul eden ziyaretçi onayı kaldırıyor anlamındadır."
71
 
72
- #: contact-form-7/wp-contact-form-7.php:431
73
  msgid "CAPTCHA"
74
  msgstr "CAPTCHA"
75
 
76
- #: contact-form-7/wp-contact-form-7.php:432
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
77
  msgid "Submit button"
78
  msgstr "Gönderim butonu"
79
 
80
- #: contact-form-7/wp-contact-form-7.php:433
81
  msgid "Name"
82
  msgstr "İsim"
83
 
84
- #: contact-form-7/wp-contact-form-7.php:434
85
  msgid "Required field?"
86
  msgstr "Gerekli alan?"
87
 
88
- #: contact-form-7/wp-contact-form-7.php:435
89
  msgid "Allow multiple selections?"
90
  msgstr "Çoklu seçime izin verilsin mi?"
91
 
92
- #: contact-form-7/wp-contact-form-7.php:436
93
  msgid "Insert a blank item as the first option?"
94
  msgstr "İlk seçenek olarak boş bir öğe eklensin mi?"
95
 
96
- #: contact-form-7/wp-contact-form-7.php:437
97
  msgid "Make checkboxes exclusive?"
98
  msgstr "Onay kutuları tek satırlı olsun mu?"
99
 
100
- #: contact-form-7/wp-contact-form-7.php:438
101
  msgid "Choices"
102
  msgstr "Seçimler"
103
 
104
- #: contact-form-7/wp-contact-form-7.php:439
105
  msgid "Label"
106
  msgstr "Etiket"
107
 
108
- #: contact-form-7/wp-contact-form-7.php:440
109
  msgid "Default value"
110
  msgstr "Varsayılan değer"
111
 
112
- #: contact-form-7/wp-contact-form-7.php:441
113
  msgid "Akismet"
114
  msgstr "Akismet"
115
 
116
- #: contact-form-7/wp-contact-form-7.php:442
117
  msgid "This field requires author's name"
118
  msgstr "Bu alanda yazarın adı olmalı"
119
 
120
- #: contact-form-7/wp-contact-form-7.php:443
121
  msgid "This field requires author's URL"
122
  msgstr "Bu alanda yazarın sitesi olmalı"
123
 
124
- #: contact-form-7/wp-contact-form-7.php:444
125
  msgid "This field requires author's email address"
126
  msgstr "Bu alanda yazarın e-posta adresi olmalı"
127
 
128
- #: contact-form-7/wp-contact-form-7.php:445
129
- msgid "Copy and paste this code into the form"
130
  msgstr "Bu kodu kopyalayıp formun içine yapıştırın"
131
 
132
- #: contact-form-7/wp-contact-form-7.php:446
133
  msgid "Foreground color"
134
  msgstr "Önalan rengi"
135
 
136
- #: contact-form-7/wp-contact-form-7.php:447
137
  msgid "Background color"
138
  msgstr "Artalan rengi"
139
 
140
- #: contact-form-7/wp-contact-form-7.php:448
141
  msgid "Image size"
142
  msgstr "Görüntü boyutu"
143
 
144
- #: contact-form-7/wp-contact-form-7.php:449
145
  msgid "Small"
146
  msgstr "Küçük"
147
 
148
- #: contact-form-7/wp-contact-form-7.php:450
149
  msgid "Medium"
150
  msgstr "Orta"
151
 
152
- #: contact-form-7/wp-contact-form-7.php:451
153
  msgid "Large"
154
  msgstr "Büyük"
155
 
156
- #: contact-form-7/wp-contact-form-7.php:452
157
  msgid "Image settings"
158
  msgstr "Görüntü ayarları"
159
 
160
- #: contact-form-7/wp-contact-form-7.php:453
161
  msgid "Input field settings"
162
  msgstr "Girdi alanı ayarları"
163
 
164
- #: contact-form-7/wp-contact-form-7.php:454
165
  msgid "For image"
166
  msgstr "Görüntü için"
167
 
168
- #: contact-form-7/wp-contact-form-7.php:455
169
  msgid "For input field"
170
  msgstr "Girdi alanı için"
171
 
172
- #: contact-form-7/wp-contact-form-7.php:456
173
  msgid "* One choice per line."
174
  msgstr "* Her satıra bir seçim."
175
 
176
- #: contact-form-7/wp-contact-form-7.php:483
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
177
  msgid "Contact form created."
178
  msgstr "İletişim formu oluşturuldu."
179
 
180
- #: contact-form-7/wp-contact-form-7.php:486
181
  msgid "Contact form saved."
182
  msgstr "İletişim formu kaydedildi."
183
 
184
- #: contact-form-7/wp-contact-form-7.php:489
185
  msgid "Contact form deleted."
186
  msgstr "İletişim formu silindi."
187
 
188
- #: contact-form-7/wp-contact-form-7.php:496
189
- msgid "Untitled"
190
- msgstr "Başlıksız"
191
 
192
- #: contact-form-7/wp-contact-form-7.php:522
193
- msgid "Your Name"
194
- msgstr "İsim"
195
 
196
- #: contact-form-7/wp-contact-form-7.php:522
197
- #: contact-form-7/wp-contact-form-7.php:524
198
- msgid "(required)"
199
- msgstr "(gerekli)"
200
 
201
- #: contact-form-7/wp-contact-form-7.php:524
202
- msgid "Your Email"
203
- msgstr "E-posta"
204
 
205
- #: contact-form-7/wp-contact-form-7.php:526
206
- msgid "Subject"
207
- msgstr "Konu"
208
 
209
- #: contact-form-7/wp-contact-form-7.php:528
210
- msgid "Your Message"
211
- msgstr "İleti"
212
 
213
- #: contact-form-7/wp-contact-form-7.php:530
214
- #: contact-form-7/wp-contact-form-7.php:1046
215
- msgid "Send"
216
- msgstr "Gönder"
 
 
 
217
 
218
- #: contact-form-7/wp-contact-form-7.php:559
 
 
 
 
219
  msgid "Your message was sent successfully. Thanks."
220
  msgstr "İletiniz başarıyla gönderildi. Teşekkürler."
221
 
222
- #: contact-form-7/wp-contact-form-7.php:561
 
223
  msgid "Failed to send your message. Please try later or contact administrator by other way."
224
  msgstr "İletiniz gönderilemedi. Lütfen daha sonra tekrar deneyin ya da yönetici ile farklı bir şekilde iletişime geçin."
225
 
226
- #: contact-form-7/wp-contact-form-7.php:563
227
  msgid "Validation errors occurred. Please confirm the fields and submit it again."
228
  msgstr "Geçerlilik hataları meydana geldi. Lütfen alanları doğrulayın ve gönderimi onaylayın."
229
 
230
- #: contact-form-7/wp-contact-form-7.php:565
231
  msgid "Please accept the terms to proceed."
232
  msgstr "İlerlemek için lütfen koşulları kabul edin."
233
 
234
- #: contact-form-7/wp-contact-form-7.php:567
235
  msgid "Email address seems invalid."
236
  msgstr "E-posta adresi geçersiz görünüyor."
237
 
238
- #: contact-form-7/wp-contact-form-7.php:569
239
  msgid "Please fill the required field."
240
  msgstr "Lütfen gerekli alanları doldurun."
241
 
242
- #: contact-form-7/wp-contact-form-7.php:571
243
  msgid "Your entered code is incorrect."
244
  msgstr "Girdiğiniz kod doğru değil."
245
 
246
- #: contact-form-7/includes/admin-panel.php:16
247
- msgid "Add new"
248
- msgstr "Yeni ekle"
249
 
250
- #: contact-form-7/includes/admin-panel.php:32
251
- msgid "Copy and paste this code into your post content."
252
- msgstr "Aşağıdaki kodu kopyalayıp yazı içeriğinize yapıştırın."
253
 
254
- #: contact-form-7/includes/admin-panel.php:38
255
- msgid "Form"
256
- msgstr "Form"
257
 
258
- #: contact-form-7/includes/admin-panel.php:42
259
- msgid "Mail"
260
- msgstr "Posta"
261
 
262
- #: contact-form-7/includes/admin-panel.php:44
263
- #: contact-form-7/includes/admin-panel.php:65
264
- msgid "To:"
265
- msgstr "Kime:"
266
 
267
- #: contact-form-7/includes/admin-panel.php:48
268
- #: contact-form-7/includes/admin-panel.php:69
269
- msgid "From:"
270
- msgstr "Gönderen:"
271
 
272
- #: contact-form-7/includes/admin-panel.php:52
273
- #: contact-form-7/includes/admin-panel.php:73
274
- msgid "Subject:"
275
- msgstr "Konu:"
276
 
277
- #: contact-form-7/includes/admin-panel.php:56
278
- #: contact-form-7/includes/admin-panel.php:77
279
- msgid "Message body:"
280
- msgstr "İleti gövdesi:"
281
 
282
- #: contact-form-7/includes/admin-panel.php:61
283
- msgid "Mail (2)"
284
- msgstr "Posta (2)"
285
 
286
- #: contact-form-7/includes/admin-panel.php:63
287
- msgid "Use mail (2)"
288
- msgstr "Posta (2) kullan"
289
 
290
- #: contact-form-7/includes/admin-panel.php:85
291
- msgid "Save"
292
- msgstr "Kaydet"
293
 
294
- #: contact-form-7/includes/admin-panel.php:92
295
- msgid "Delete this contact form"
296
- msgstr "Bu iletişim formunu sil"
297
 
298
- #: contact-form-7/includes/admin-panel.php:93
299
- msgid ""
300
- "You are about to delete this contact form.\n"
301
- " 'Cancel' to stop, 'OK' to delete."
302
- msgstr ""
303
- "Bu iletişim formunu silmek üzeresiniz.\n"
304
- " Durdurmak için 'İptal', silmek için 'Tamam'."
305
 
2
  msgstr ""
3
  "Project-Id-Version: Contact Form 7\n"
4
  "Report-Msgid-Bugs-To: \n"
5
+ "POT-Creation-Date: 2009-08-30 19:21+0900\n"
6
+ "PO-Revision-Date: 2009-09-09 02:56+0900\n"
7
+ "Last-Translator: Takayuki Miyoshi <takayukister@gmail.com>\n"
8
  "Language-Team: Hedef Türkçe <iletisim@hedeftürkce.com>\n"
9
  "MIME-Version: 1.0\n"
10
  "Content-Type: text/plain; charset=UTF-8\n"
12
  "X-Poedit-Language: Turkish\n"
13
  "X-Poedit-Country: TURKEY\n"
14
 
15
+ #: contact-form-7/admin/admin-panel.php:9
16
+ #, php-format
17
+ msgid "<strong>The database table for Contact Form 7 does not exist.</strong> You must <a href=\"%s\">create the table</a> for it to work."
18
+ msgstr "<strong>Contact Form 7 için gerekli veritabanı tablosu bulunmuyor.</strong> Çalışması için <a href=\"%s\">tabloyu oluşturmalısınız.</a>"
19
+
20
+ #: contact-form-7/admin/admin-panel.php:12
21
+ msgid "<strong>The database table for Contact Form 7 does not exist.</strong>"
22
+ msgstr "<strong>The database table for Contact Form 7 does not exist.</strong>"
23
 
24
+ #: contact-form-7/admin/admin-panel.php:17
25
+ #: contact-form-7/admin/admin-panel.php:30
26
+ #: contact-form-7/admin/admin.php:119
27
  msgid "Contact Form 7"
28
  msgstr "İletişim Formu 7"
29
 
30
+ #: contact-form-7/admin/admin-panel.php:45
31
+ msgid "Add new"
32
+ msgstr "Yeni ekle"
33
+
34
+ #: contact-form-7/admin/admin-panel.php:67
35
+ msgid "Copy this code and paste it into your post, page or text widget content."
36
+ msgstr "Aşağıdaki kodu kopyalayıp yazı içeriğinize yapıştırın."
37
+
38
+ #: contact-form-7/admin/admin-panel.php:75
39
+ #: contact-form-7/admin/admin-panel.php:332
40
+ msgid "Save"
41
+ msgstr "Kaydet"
42
+
43
+ #: contact-form-7/admin/admin-panel.php:82
44
+ msgid "Copy"
45
+ msgstr "Kopyala"
46
+
47
+ #: contact-form-7/admin/admin-panel.php:87
48
+ msgid "Delete"
49
+ msgstr "Sil"
50
+
51
+ #: contact-form-7/admin/admin-panel.php:89
52
+ msgid ""
53
+ "You are about to delete this contact form.\n"
54
+ " 'Cancel' to stop, 'OK' to delete."
55
+ msgstr ""
56
+ "Bu iletişim formunu silmek üzeresiniz.\n"
57
+ " Durdurmak için 'İptal', silmek için 'Tamam'."
58
+
59
+ #: contact-form-7/admin/admin-panel.php:102
60
+ msgid "Form"
61
+ msgstr "Form"
62
+
63
+ #: contact-form-7/admin/admin-panel.php:120
64
+ msgid "Mail"
65
+ msgstr "Posta"
66
+
67
+ #: contact-form-7/admin/admin-panel.php:127
68
+ #: contact-form-7/admin/admin-panel.php:188
69
+ msgid "To:"
70
+ msgstr "Kime:"
71
+
72
+ #: contact-form-7/admin/admin-panel.php:132
73
+ #: contact-form-7/admin/admin-panel.php:193
74
+ msgid "From:"
75
+ msgstr "Gönderen:"
76
+
77
+ #: contact-form-7/admin/admin-panel.php:137
78
+ #: contact-form-7/admin/admin-panel.php:198
79
+ msgid "Subject:"
80
+ msgstr "Konu:"
81
+
82
+ #: contact-form-7/admin/admin-panel.php:144
83
+ #: contact-form-7/admin/admin-panel.php:205
84
+ msgid "Additional headers:"
85
+ msgstr "Ek başlıklar:"
86
+
87
+ #: contact-form-7/admin/admin-panel.php:149
88
+ #: contact-form-7/admin/admin-panel.php:210
89
+ msgid "File attachments:"
90
+ msgstr "Eklenti Dosyalar:"
91
+
92
+ #: contact-form-7/admin/admin-panel.php:157
93
+ #: contact-form-7/admin/admin-panel.php:218
94
+ msgid "Use HTML content type"
95
+ msgstr "HTML içerik türünü kullan"
96
+
97
+ #: contact-form-7/admin/admin-panel.php:164
98
+ #: contact-form-7/admin/admin-panel.php:225
99
+ msgid "Message body:"
100
+ msgstr "İleti gövdesi:"
101
+
102
+ #: contact-form-7/admin/admin-panel.php:174
103
+ msgid "Mail (2)"
104
+ msgstr "Posta (2)"
105
+
106
+ #: contact-form-7/admin/admin-panel.php:180
107
+ msgid "Use mail (2)"
108
+ msgstr "Posta (2) kullan"
109
+
110
+ #: contact-form-7/admin/admin-panel.php:235
111
+ msgid "Messages"
112
+ msgstr "İleti"
113
+
114
+ #: contact-form-7/admin/admin-panel.php:243
115
+ msgid "Sender's message was sent successfully"
116
+ msgstr "İletiniz başarıyla gönderildi. Teşekkürler."
117
+
118
+ #: contact-form-7/admin/admin-panel.php:248
119
+ msgid "Sender's message was failed to send"
120
+ msgstr "Gönderen'in mesajı gönderilemedi"
121
+
122
+ #: contact-form-7/admin/admin-panel.php:253
123
+ msgid "Akismet judged the sending activity as spamming"
124
+ msgstr "Akismet gönderenin işlemini spam olarak değerlendirdi"
125
+
126
+ #: contact-form-7/admin/admin-panel.php:258
127
+ msgid "Validation errors occurred"
128
+ msgstr "Onaylama hatası oluştu"
129
+
130
+ #: contact-form-7/admin/admin-panel.php:263
131
+ msgid "There is a field that sender is needed to fill in"
132
+ msgstr "Gönderenin doldurması gereken alan bulunuyor"
133
+
134
+ #: contact-form-7/admin/admin-panel.php:268
135
+ msgid "Email address that sender entered is invalid"
136
+ msgstr "E-posta adresi geçersiz görünüyor."
137
+
138
+ #: contact-form-7/admin/admin-panel.php:273
139
+ msgid "There is a field of term that sender is needed to accept"
140
+ msgstr "Gönderenin kabul etmesi gereken bir alan bulunuyor"
141
+
142
+ #: contact-form-7/admin/admin-panel.php:278
143
+ msgid "Sender doesn't enter the correct answer to the quiz"
144
+ msgstr "Gönderen quiz cevabını doğru girmedi"
145
+
146
+ #: contact-form-7/admin/admin-panel.php:283
147
+ msgid "The code that sender entered does not match the CAPTCHA"
148
+ msgstr "Gönderenin girdiği kod CAPTCHA ile uyuşmuyor"
149
+
150
+ #: contact-form-7/admin/admin-panel.php:288
151
+ msgid "Uploading a file fails for any reason"
152
+ msgstr "Dosya yükleme işleme başarısız"
153
+
154
+ #: contact-form-7/admin/admin-panel.php:293
155
+ msgid "Uploaded file is not allowed file type"
156
+ msgstr "Yüklenen dosya geçerli formatı taşımıyor"
157
+
158
+ #: contact-form-7/admin/admin-panel.php:298
159
+ msgid "Uploaded file is too large"
160
+ msgstr "Yüklenen dosya çok büyük"
161
+
162
+ #: contact-form-7/admin/admin-panel.php:303
163
+ msgid "Uploading a file fails for PHP error"
164
+ msgstr "Dosya PHP hatasından dolayı yüklenemedi"
165
+
166
+ #: contact-form-7/admin/admin-panel.php:314
167
+ msgid "Additional Settings"
168
+ msgstr "Ek ayarlar"
169
+
170
+ #: contact-form-7/admin/admin.php:119
171
+ msgid "Contact"
172
+ msgstr "İletişim formu"
173
+
174
+ #: contact-form-7/admin/admin.php:123
175
+ msgid "Edit Contact Forms"
176
+ msgstr "İletişim Formu 7"
177
+
178
+ #: contact-form-7/admin/admin.php:123
179
+ msgid "Edit"
180
+ msgstr "Düzenle"
181
+
182
+ #: contact-form-7/admin/admin.php:178
183
  msgid "optional"
184
  msgstr "seçimli"
185
 
186
+ #: contact-form-7/admin/admin.php:179
187
  msgid "Generate Tag"
188
  msgstr "Etiket Oluştur"
189
 
190
+ #: contact-form-7/admin/admin.php:180
191
  msgid "Text field"
192
  msgstr "Metin alanı"
193
 
194
+ #: contact-form-7/admin/admin.php:181
195
  msgid "Email field"
196
  msgstr "E-posta alanı"
197
 
198
+ #: contact-form-7/admin/admin.php:182
199
  msgid "Text area"
200
  msgstr "Metin alanı"
201
 
202
+ #: contact-form-7/admin/admin.php:183
203
  msgid "Drop-down menu"
204
  msgstr "Açılır menü"
205
 
206
+ #: contact-form-7/admin/admin.php:184
207
  msgid "Checkboxes"
208
  msgstr "Onay kutuları"
209
 
210
+ #: contact-form-7/admin/admin.php:185
211
  msgid "Radio buttons"
212
  msgstr "Seçenek butonları"
213
 
214
+ #: contact-form-7/admin/admin.php:186
215
  msgid "Acceptance"
216
  msgstr "Kabul"
217
 
218
+ #: contact-form-7/admin/admin.php:187
219
  msgid "Make this checkbox checked by default?"
220
  msgstr "Bu kutu varsayılan olarak seçili olsun mu?"
221
 
222
+ #: contact-form-7/admin/admin.php:188
223
  msgid "Make this checkbox work inversely?"
224
  msgstr "Onay kutusu ters çalışsın mı?"
225
 
226
+ #: contact-form-7/admin/admin.php:189
227
  msgid "* That means visitor who accepts the term unchecks it."
228
  msgstr "* Koşulu kabul eden ziyaretçi onayı kaldırıyor anlamındadır."
229
 
230
+ #: contact-form-7/admin/admin.php:190
231
  msgid "CAPTCHA"
232
  msgstr "CAPTCHA"
233
 
234
+ #: contact-form-7/admin/admin.php:191
235
+ msgid "Quiz"
236
+ msgstr "Quiz"
237
+
238
+ #: contact-form-7/admin/admin.php:192
239
+ msgid "Quizzes"
240
+ msgstr "Quizler"
241
+
242
+ #: contact-form-7/admin/admin.php:193
243
+ msgid "* quiz|answer (e.g. 1+1=?|2)"
244
+ msgstr "* quiz|cevap (örnek 1+1=?|2)"
245
+
246
+ #: contact-form-7/admin/admin.php:194
247
+ msgid "File upload"
248
+ msgstr "Dosya yükleme"
249
+
250
+ #: contact-form-7/admin/admin.php:195
251
+ msgid "bytes"
252
+ msgstr "byte"
253
+
254
+ #: contact-form-7/admin/admin.php:196
255
  msgid "Submit button"
256
  msgstr "Gönderim butonu"
257
 
258
+ #: contact-form-7/admin/admin.php:197
259
  msgid "Name"
260
  msgstr "İsim"
261
 
262
+ #: contact-form-7/admin/admin.php:198
263
  msgid "Required field?"
264
  msgstr "Gerekli alan?"
265
 
266
+ #: contact-form-7/admin/admin.php:199
267
  msgid "Allow multiple selections?"
268
  msgstr "Çoklu seçime izin verilsin mi?"
269
 
270
+ #: contact-form-7/admin/admin.php:200
271
  msgid "Insert a blank item as the first option?"
272
  msgstr "İlk seçenek olarak boş bir öğe eklensin mi?"
273
 
274
+ #: contact-form-7/admin/admin.php:201
275
  msgid "Make checkboxes exclusive?"
276
  msgstr "Onay kutuları tek satırlı olsun mu?"
277
 
278
+ #: contact-form-7/admin/admin.php:202
279
  msgid "Choices"
280
  msgstr "Seçimler"
281
 
282
+ #: contact-form-7/admin/admin.php:203
283
  msgid "Label"
284
  msgstr "Etiket"
285
 
286
+ #: contact-form-7/admin/admin.php:204
287
  msgid "Default value"
288
  msgstr "Varsayılan değer"
289
 
290
+ #: contact-form-7/admin/admin.php:205
291
  msgid "Akismet"
292
  msgstr "Akismet"
293
 
294
+ #: contact-form-7/admin/admin.php:206
295
  msgid "This field requires author's name"
296
  msgstr "Bu alanda yazarın adı olmalı"
297
 
298
+ #: contact-form-7/admin/admin.php:207
299
  msgid "This field requires author's URL"
300
  msgstr "Bu alanda yazarın sitesi olmalı"
301
 
302
+ #: contact-form-7/admin/admin.php:208
303
  msgid "This field requires author's email address"
304
  msgstr "Bu alanda yazarın e-posta adresi olmalı"
305
 
306
+ #: contact-form-7/admin/admin.php:209
307
+ msgid "Copy this code and paste it into the form left."
308
  msgstr "Bu kodu kopyalayıp formun içine yapıştırın"
309
 
310
+ #: contact-form-7/admin/admin.php:210
311
  msgid "Foreground color"
312
  msgstr "Önalan rengi"
313
 
314
+ #: contact-form-7/admin/admin.php:211
315
  msgid "Background color"
316
  msgstr "Artalan rengi"
317
 
318
+ #: contact-form-7/admin/admin.php:212
319
  msgid "Image size"
320
  msgstr "Görüntü boyutu"
321
 
322
+ #: contact-form-7/admin/admin.php:213
323
  msgid "Small"
324
  msgstr "Küçük"
325
 
326
+ #: contact-form-7/admin/admin.php:214
327
  msgid "Medium"
328
  msgstr "Orta"
329
 
330
+ #: contact-form-7/admin/admin.php:215
331
  msgid "Large"
332
  msgstr "Büyük"
333
 
334
+ #: contact-form-7/admin/admin.php:216
335
  msgid "Image settings"
336
  msgstr "Görüntü ayarları"
337
 
338
+ #: contact-form-7/admin/admin.php:217
339
  msgid "Input field settings"
340
  msgstr "Girdi alanı ayarları"
341
 
342
+ #: contact-form-7/admin/admin.php:218
343
  msgid "For image"
344
  msgstr "Görüntü için"
345
 
346
+ #: contact-form-7/admin/admin.php:219
347
  msgid "For input field"
348
  msgstr "Girdi alanı için"
349
 
350
+ #: contact-form-7/admin/admin.php:220
351
  msgid "* One choice per line."
352
  msgstr "* Her satıra bir seçim."
353
 
354
+ #: contact-form-7/admin/admin.php:221
355
+ msgid "Show"
356
+ msgstr "Göster"
357
+
358
+ #: contact-form-7/admin/admin.php:222
359
+ msgid "Hide"
360
+ msgstr "Gizle"
361
+
362
+ #: contact-form-7/admin/admin.php:223
363
+ msgid "File size limit"
364
+ msgstr "Dosya boyut limiti"
365
+
366
+ #: contact-form-7/admin/admin.php:224
367
+ msgid "Acceptable file types"
368
+ msgstr "Yüklenebilir dosya türleri"
369
+
370
+ #: contact-form-7/admin/admin.php:225
371
+ msgid "Note: To use CAPTCHA, you need Really Simple CAPTCHA plugin installed."
372
+ msgstr "Not: CAPTCHA kullanmak için, Really Simple CAPTCHA eklentisi yüklü olmalı."
373
+
374
+ #: contact-form-7/admin/admin.php:236
375
  msgid "Contact form created."
376
  msgstr "İletişim formu oluşturuldu."
377
 
378
+ #: contact-form-7/admin/admin.php:239
379
  msgid "Contact form saved."
380
  msgstr "İletişim formu kaydedildi."
381
 
382
+ #: contact-form-7/admin/admin.php:242
383
  msgid "Contact form deleted."
384
  msgstr "İletişim formu silindi."
385
 
386
+ #: contact-form-7/admin/admin.php:245
387
+ msgid "Database table created."
388
+ msgstr "Veritabanı tablosu yaratıldı."
389
 
390
+ #: contact-form-7/admin/admin.php:248
391
+ msgid "Failed to create database table."
392
+ msgstr "Veritabanı tablosu yaratılamadı."
393
 
394
+ #: contact-form-7/admin/admin.php:321
395
+ msgid "Contact form"
396
+ msgstr "İletişim formu"
 
397
 
398
+ #: contact-form-7/admin/admin.php:355
399
+ msgid "Settings"
400
+ msgstr "Görüntü ayarları"
401
 
402
+ #: contact-form-7/admin/admin.php:376
403
+ msgid "Contact Form 7 needs your support. Please donate today."
404
+ msgstr "Contact Form 7 desteğinizi beklyor. Lütfen bugün bağış yapın."
405
 
406
+ #: contact-form-7/admin/admin.php:377
407
+ msgid "Is this plugin useful for you? If you like it, please help the developer."
408
+ msgstr "Bu eklenti işinize yaradı mı? Eğer yaradıysa, geliştiriciye yardım ediniz."
409
 
410
+ #: contact-form-7/admin/admin.php:378
411
+ msgid "Your contribution is needed for making this plugin better."
412
+ msgstr "Bu eklentiyi daha iyi yapmak için görüşlerinize ihtiyaç duyuyoruz."
413
+
414
+ #: contact-form-7/admin/admin.php:379
415
+ msgid "Developing a plugin and providing user support is really hard work. Please help."
416
+ msgstr "Bir eklentiyi geliştirmek ve kullanıcı desteği sunmak gerçekten çok zor. Lütfen yardımcı olun."
417
 
418
+ #: contact-form-7/includes/classes.php:537
419
+ msgid "Untitled"
420
+ msgstr "Başlıksız"
421
+
422
+ #: contact-form-7/includes/functions.php:6
423
  msgid "Your message was sent successfully. Thanks."
424
  msgstr "İletiniz başarıyla gönderildi. Teşekkürler."
425
 
426
+ #: contact-form-7/includes/functions.php:8
427
+ #: contact-form-7/includes/functions.php:10
428
  msgid "Failed to send your message. Please try later or contact administrator by other way."
429
  msgstr "İletiniz gönderilemedi. Lütfen daha sonra tekrar deneyin ya da yönetici ile farklı bir şekilde iletişime geçin."
430
 
431
+ #: contact-form-7/includes/functions.php:12
432
  msgid "Validation errors occurred. Please confirm the fields and submit it again."
433
  msgstr "Geçerlilik hataları meydana geldi. Lütfen alanları doğrulayın ve gönderimi onaylayın."
434
 
435
+ #: contact-form-7/includes/functions.php:14
436
  msgid "Please accept the terms to proceed."
437
  msgstr "İlerlemek için lütfen koşulları kabul edin."
438
 
439
+ #: contact-form-7/includes/functions.php:16
440
  msgid "Email address seems invalid."
441
  msgstr "E-posta adresi geçersiz görünüyor."
442
 
443
+ #: contact-form-7/includes/functions.php:18
444
  msgid "Please fill the required field."
445
  msgstr "Lütfen gerekli alanları doldurun."
446
 
447
+ #: contact-form-7/includes/functions.php:20
448
  msgid "Your entered code is incorrect."
449
  msgstr "Girdiğiniz kod doğru değil."
450
 
451
+ #: contact-form-7/includes/functions.php:22
452
+ msgid "Your answer is not correct."
453
+ msgstr "Girdiğiniz kod doğru değil."
454
 
455
+ #: contact-form-7/includes/functions.php:24
456
+ msgid "Failed to upload file."
457
+ msgstr "Dosya yükleme başarısız."
458
 
459
+ #: contact-form-7/includes/functions.php:26
460
+ msgid "This file type is not allowed."
461
+ msgstr "Bu dosya türü kabul edilmiyor."
462
 
463
+ #: contact-form-7/includes/functions.php:28
464
+ msgid "This file is too large."
465
+ msgstr "Bu alanda yazarın adı olmalı"
466
 
467
+ #: contact-form-7/includes/functions.php:30
468
+ msgid "Failed to upload file. Error occurred."
469
+ msgstr "Dosya yükleme başarısız. Hata oluştu."
 
470
 
471
+ #: contact-form-7/includes/functions.php:35
472
+ msgid "Your Name"
473
+ msgstr "İsim"
 
474
 
475
+ #: contact-form-7/includes/functions.php:35
476
+ #: contact-form-7/includes/functions.php:37
477
+ msgid "(required)"
478
+ msgstr "(gerekli)"
479
 
480
+ #: contact-form-7/includes/functions.php:37
481
+ msgid "Your Email"
482
+ msgstr "E-posta"
 
483
 
484
+ #: contact-form-7/includes/functions.php:39
485
+ msgid "Subject"
486
+ msgstr "Konu"
487
 
488
+ #: contact-form-7/includes/functions.php:41
489
+ msgid "Your Message"
490
+ msgstr "İleti"
491
 
492
+ #: contact-form-7/includes/functions.php:43
493
+ msgid "Send"
494
+ msgstr "Gönder"
495
 
496
+ #: contact-form-7/modules/captcha.php:62
497
+ msgid "To use CAPTCHA, you need <a href=\"http://wordpress.org/extend/plugins/really-simple-captcha/\">Really Simple CAPTCHA</a> plugin installed."
498
+ msgstr "CAPTCHA kullanmak için, <a href=\"http://wordpress.org/extend/plugins/really-simple-captcha/\">Really Simple CAPTCHA</a> eklentisi yüklü olmalı."
499
 
500
+ #~ msgid "Delete this contact form"
501
+ #~ msgstr "Bu iletişim formunu sil"
 
 
 
 
 
502
 
modules/file.php CHANGED
@@ -83,7 +83,7 @@ function wpcf7_file_validation_filter( $result, $tag ) {
83
 
84
  $file = $_FILES[$name];
85
 
86
- if ( $file['error'] ) {
87
  $result['valid'] = false;
88
  $result['reason'][$name] = $wpcf7_contact_form->message( 'upload_failed_php_error' );
89
  return $result;
83
 
84
  $file = $_FILES[$name];
85
 
86
+ if ( $file['error'] && UPLOAD_ERR_NO_FILE != $file['error'] ) {
87
  $result['valid'] = false;
88
  $result['reason'][$name] = $wpcf7_contact_form->message( 'upload_failed_php_error' );
89
  return $result;
modules/icl.php CHANGED
@@ -3,6 +3,15 @@
3
  ** ICL module for ICanLocalize translation service
4
  **/
5
 
 
 
 
 
 
 
 
 
 
6
  /* Shortcode handler */
7
 
8
  function icl_wpcf7_shortcode_handler( $tag ) {
@@ -42,6 +51,8 @@ function icl_wpcf7_form_tag_filter( $tag ) {
42
  $name = $tag['name'];
43
  $options = (array) $tag['options'];
44
  $values = (array) $tag['values'];
 
 
45
  $content = $tag['content'];
46
 
47
  $icl_option = array();
@@ -60,19 +71,31 @@ function icl_wpcf7_form_tag_filter( $tag ) {
60
 
61
  $str_id = $icl_option[1] ? $icl_option[1] : $name;
62
 
63
- if ( ! empty( $values ) ) {
64
- $new_values = array();
 
 
 
 
 
 
 
 
 
 
 
 
65
  foreach ( $values as $key => $value ) {
66
  $string_name = icl_wpcf7_string_name( $value, $str_id, $key );
67
  $new_values[$key] = icl_wpcf7_translate( $string_name, $value );
68
  }
69
-
70
- if ( preg_match( '/^(?:text|email|textarea|captchar|submit)[*]?$/', $type ) )
71
- $tag['values'] = $new_values;
72
- else
73
- $tag['labels'] = $new_values;
74
  }
75
 
 
 
 
 
 
76
  $content = trim( $content );
77
 
78
  if ( ! empty( $content ) ) {
@@ -111,7 +134,7 @@ function icl_wpcf7_collect_strings( &$contact_form ) {
111
  $type = $tag['type'];
112
  $name = $tag['name'];
113
  $options = (array) $tag['options'];
114
- $values = (array) $tag['values'];
115
  $content = $tag['content'];
116
 
117
  $icl_option = array();
@@ -134,8 +157,8 @@ function icl_wpcf7_collect_strings( &$contact_form ) {
134
  $string_name = icl_wpcf7_string_name( $content, $str_id );
135
  icl_wpcf7_register_string( $string_name, $content );
136
 
137
- } elseif ( ! empty( $values ) ) {
138
- foreach ( $values as $key => $value ) {
139
  $value = trim( $value );
140
  $string_name = icl_wpcf7_string_name( $value, $str_id, $key );
141
  icl_wpcf7_register_string( $string_name, $value );
3
  ** ICL module for ICanLocalize translation service
4
  **/
5
 
6
+ function icl_wpcf7_wpml_available() {
7
+ global $sitepress;
8
+
9
+ return is_a( $sitepress, 'SitePress' );
10
+ }
11
+
12
+ if ( ! icl_wpcf7_wpml_available() )
13
+ return;
14
+
15
  /* Shortcode handler */
16
 
17
  function icl_wpcf7_shortcode_handler( $tag ) {
51
  $name = $tag['name'];
52
  $options = (array) $tag['options'];
53
  $values = (array) $tag['values'];
54
+ $raw_values = (array) $tag['raw_values'];
55
+ $pipes = $tag['pipes'];
56
  $content = $tag['content'];
57
 
58
  $icl_option = array();
71
 
72
  $str_id = $icl_option[1] ? $icl_option[1] : $name;
73
 
74
+ $new_values = array();
75
+
76
+ if ( $raw_values && $pipes && is_a( $pipes, 'WPCF7_Pipes' ) && ! $pipes->zero() ) {
77
+ $new_raw_values = array();
78
+ foreach ( $raw_values as $key => $value ) {
79
+ $string_name = icl_wpcf7_string_name( $value, $str_id, $key );
80
+ $new_raw_values[$key] = icl_wpcf7_translate( $string_name, $value );
81
+ }
82
+
83
+ $new_pipes = new WPCF7_Pipes( $new_raw_values );
84
+ $new_values = $new_pipes->collect_befores();
85
+ $tag['pipes'] = $new_pipes;
86
+
87
+ } elseif ( $values ) {
88
  foreach ( $values as $key => $value ) {
89
  $string_name = icl_wpcf7_string_name( $value, $str_id, $key );
90
  $new_values[$key] = icl_wpcf7_translate( $string_name, $value );
91
  }
 
 
 
 
 
92
  }
93
 
94
+ if ( preg_match( '/^(?:text|email|textarea|captchar|submit)[*]?$/', $type ) )
95
+ $tag['labels'] = $tag['values'] = $new_values;
96
+ else
97
+ $tag['labels'] = $new_values;
98
+
99
  $content = trim( $content );
100
 
101
  if ( ! empty( $content ) ) {
134
  $type = $tag['type'];
135
  $name = $tag['name'];
136
  $options = (array) $tag['options'];
137
+ $raw_values = (array) $tag['raw_values'];
138
  $content = $tag['content'];
139
 
140
  $icl_option = array();
157
  $string_name = icl_wpcf7_string_name( $content, $str_id );
158
  icl_wpcf7_register_string( $string_name, $content );
159
 
160
+ } elseif ( ! empty( $raw_values ) ) {
161
+ foreach ( $raw_values as $key => $value ) {
162
  $value = trim( $value );
163
  $string_name = icl_wpcf7_string_name( $value, $str_id, $key );
164
  icl_wpcf7_register_string( $string_name, $value );
modules/quiz.php CHANGED
@@ -122,6 +122,8 @@ function wpcf7_quiz_ajax_echo_filter( $items ) {
122
  $refill = array();
123
 
124
  foreach ( $fes as $fe ) {
 
 
125
  $name = $fe['name'];
126
  $pipes = $fe['pipes'];
127
 
122
  $refill = array();
123
 
124
  foreach ( $fes as $fe ) {
125
+ $fe = apply_filters( 'wpcf7_form_tag', $fe );
126
+
127
  $name = $fe['name'];
128
  $pipes = $fe['pipes'];
129
 
settings.php CHANGED
@@ -73,11 +73,25 @@ function wpcf7_contact_forms() {
73
  }
74
 
75
  $wpcf7_contact_form = null;
76
-
77
  $wpcf7_processing_within = null;
78
  $wpcf7_unit_count = null;
79
  $wpcf7_widget_count = null;
80
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
81
  function wpcf7_ajax_json_echo() {
82
  global $wpcf7_contact_form;
83
 
73
  }
74
 
75
  $wpcf7_contact_form = null;
76
+ $wpcf7_request_uri = null;
77
  $wpcf7_processing_within = null;
78
  $wpcf7_unit_count = null;
79
  $wpcf7_widget_count = null;
80
 
81
+ add_action( 'plugins_loaded', 'wpcf7_set_request_uri', 9 );
82
+
83
+ function wpcf7_set_request_uri() {
84
+ global $wpcf7_request_uri;
85
+
86
+ $wpcf7_request_uri = add_query_arg( array() );
87
+ }
88
+
89
+ function wpcf7_get_request_uri() {
90
+ global $wpcf7_request_uri;
91
+
92
+ return (string) $wpcf7_request_uri;
93
+ }
94
+
95
  function wpcf7_ajax_json_echo() {
96
  global $wpcf7_contact_form;
97
 
wp-contact-form-7.php CHANGED
@@ -4,7 +4,7 @@ Plugin Name: Contact Form 7
4
  Plugin URI: http://contactform7.com/
5
  Description: Just another contact form plugin. Simple but flexible.
6
  Author: Takayuki Miyoshi
7
- Version: 2.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', '2.0.2' );
29
 
30
  if ( ! defined( 'WPCF7_PLUGIN_BASENAME' ) )
31
  define( 'WPCF7_PLUGIN_BASENAME', plugin_basename( __FILE__ ) );
4
  Plugin URI: http://contactform7.com/
5
  Description: Just another contact form plugin. Simple but flexible.
6
  Author: Takayuki Miyoshi
7
+ Version: 2.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', '2.0.3' );
29
 
30
  if ( ! defined( 'WPCF7_PLUGIN_BASENAME' ) )
31
  define( 'WPCF7_PLUGIN_BASENAME', plugin_basename( __FILE__ ) );