Contact Form 7 - Version 2.0.6

Version Description

Download this release

Release Info

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

Code changes from version 2.0.5 to 2.0.6

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.5
8
 
9
  Just another contact form plugin. Simple but flexible.
10
 
@@ -26,7 +26,7 @@ Contact Form 7 can manage multiple contact forms, plus you can customize the for
26
  * Chinese, Simplified (zh_CN) - [Soz](http://www.webtoolol.com/)
27
  * Chinese, Traditional (zh_TW) - [James Wu](http://jameswublog.com)
28
  * Croatian (hr) - [tolingo Translation Services](http://www.tolingo.com)
29
- * Czech (cs_CZ) - Korry
30
  * Danish (da_DK) - [Jens Griebel](http://www.kompas-it.dk/), [Georg S. Adamsen](http://wordpress.blogos.dk/)
31
  * Dutch (nl_NL) - [Chris Devriese](http://www.100it.be/), [Martin Hein](http://www.split-a-pixel.nl/)
32
  * Estonian (et) - [Peeter Rahuvarm](http://www.kraabus.ee)
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.6
8
 
9
  Just another contact form plugin. Simple but flexible.
10
 
26
  * Chinese, Simplified (zh_CN) - [Soz](http://www.webtoolol.com/)
27
  * Chinese, Traditional (zh_TW) - [James Wu](http://jameswublog.com)
28
  * Croatian (hr) - [tolingo Translation Services](http://www.tolingo.com)
29
+ * Czech (cs_CZ) - Korry, [Radovan Fiser](http://algymsa.cz/)
30
  * Danish (da_DK) - [Jens Griebel](http://www.kompas-it.dk/), [Georg S. Adamsen](http://wordpress.blogos.dk/)
31
  * Dutch (nl_NL) - [Chris Devriese](http://www.100it.be/), [Martin Hein](http://www.split-a-pixel.nl/)
32
  * Estonian (et) - [Peeter Rahuvarm](http://www.kraabus.ee)
contact-form-7.js CHANGED
@@ -1,54 +1,54 @@
1
  jQuery(document).ready(function() {
2
- try {
3
- jQuery('div.wpcf7 > form').ajaxForm({
4
- beforeSubmit: wpcf7BeforeSubmit,
5
- dataType: 'json',
6
- success: wpcf7ProcessJson
7
- });
8
- } catch (e) {
9
- }
10
-
11
- try {
12
- jQuery('div.wpcf7 > form').each(function(i, n) {
13
- wpcf7ToggleSubmit(jQuery(n));
14
- });
15
- } catch (e) {
16
- }
17
  });
18
 
19
  // Exclusive checkbox
20
  function wpcf7ExclusiveCheckbox(elem) {
21
- jQuery(elem.form).find('input:checkbox[name="' + elem.name + '"]').not(elem).removeAttr('checked');
22
  }
23
 
24
  // Toggle submit button
25
  function wpcf7ToggleSubmit(form) {
26
- var submit = jQuery(form).find('input:submit');
27
- if (! submit.length) return;
28
-
29
- var acceptances = jQuery(form).find('input:checkbox.wpcf7-acceptance');
30
- if (! acceptances.length) return;
31
-
32
- submit.removeAttr('disabled');
33
- acceptances.each(function(i, n) {
34
- n = jQuery(n);
35
- if (n.hasClass('wpcf7-invert') && n.is(':checked') || ! n.hasClass('wpcf7-invert') && ! n.is(':checked'))
36
- submit.attr('disabled', 'disabled');
37
- });
38
  }
39
 
40
  function wpcf7BeforeSubmit(formData, jqForm, options) {
41
  wpcf7ClearResponseOutput();
42
  jQuery('img.ajax-loader', jqForm[0]).css({ visibility: 'visible' });
43
 
44
- formData.push({name: '_wpcf7_is_ajax_call', value: 1});
45
- jQuery(jqForm[0]).append('<input type="hidden" name="_wpcf7_is_ajax_call" value="1" />');
46
-
47
  return true;
48
  }
49
 
50
  function wpcf7NotValidTip(into, message) {
51
- jQuery(into).append('<span class="wpcf7-not-valid-tip">' + message + '</span>');
52
  jQuery('span.wpcf7-not-valid-tip').mouseover(function() {
53
  jQuery(this).fadeOut('fast');
54
  });
@@ -63,12 +63,14 @@ function wpcf7NotValidTip(into, message) {
63
  function wpcf7ProcessJson(data) {
64
  var wpcf7ResponseOutput = jQuery(data.into).find('div.wpcf7-response-output');
65
  wpcf7ClearResponseOutput();
 
66
  if (data.invalids) {
67
  jQuery.each(data.invalids, function(i, n) {
68
  wpcf7NotValidTip(jQuery(data.into).find(n.into), n.message);
69
  });
70
  wpcf7ResponseOutput.addClass('wpcf7-validation-errors');
71
  }
 
72
  if (data.captcha) {
73
  jQuery.each(data.captcha, function(i, n) {
74
  jQuery(data.into).find(':input[name="' + i + '"]').clearFields();
@@ -77,26 +79,33 @@ function wpcf7ProcessJson(data) {
77
  jQuery(data.into).find('input:hidden[name="_wpcf7_captcha_challenge_' + i + '"]').attr('value', match[1]);
78
  });
79
  }
80
- if (data.quiz) {
81
- jQuery.each(data.quiz, function(i, n) {
82
- jQuery(data.into).find(':input[name="' + i + '"]').clearFields();
83
- jQuery(data.into).find(':input[name="' + i + '"]').siblings('span.wpcf7-quiz-label').text(n[0]);
84
- jQuery(data.into).find('input:hidden[name="_wpcf7_quiz_answer_' + i + '"]').attr('value', n[1]);
85
- });
86
- }
 
 
87
  if (1 == data.spam) {
88
  wpcf7ResponseOutput.addClass('wpcf7-spam-blocked');
89
  }
 
90
  if (1 == data.mailSent) {
91
  jQuery(data.into).find('form').resetForm().clearForm();
92
  wpcf7ResponseOutput.addClass('wpcf7-mail-sent-ok');
93
 
94
- if (data.onSentOk)
95
- jQuery.each(data.onSentOk, function(i, n) { eval(n) });
96
  } else {
97
  wpcf7ResponseOutput.addClass('wpcf7-mail-sent-ng');
98
  }
99
- wpcf7ResponseOutput.append(data.message).fadeIn('fast');
 
 
 
 
100
  }
101
 
102
  function wpcf7ClearResponseOutput() {
1
  jQuery(document).ready(function() {
2
+ try {
3
+ jQuery('div.wpcf7 > form').ajaxForm({
4
+ beforeSubmit: wpcf7BeforeSubmit,
5
+ dataType: 'json',
6
+ success: wpcf7ProcessJson
7
+ });
8
+ } catch (e) {
9
+ }
10
+
11
+ try {
12
+ jQuery('div.wpcf7 > form').each(function(i, n) {
13
+ wpcf7ToggleSubmit(jQuery(n));
14
+ });
15
+ } catch (e) {
16
+ }
17
  });
18
 
19
  // Exclusive checkbox
20
  function wpcf7ExclusiveCheckbox(elem) {
21
+ jQuery(elem.form).find('input:checkbox[name="' + elem.name + '"]').not(elem).removeAttr('checked');
22
  }
23
 
24
  // Toggle submit button
25
  function wpcf7ToggleSubmit(form) {
26
+ var submit = jQuery(form).find('input:submit');
27
+ if (! submit.length) return;
28
+
29
+ var acceptances = jQuery(form).find('input:checkbox.wpcf7-acceptance');
30
+ if (! acceptances.length) return;
31
+
32
+ submit.removeAttr('disabled');
33
+ acceptances.each(function(i, n) {
34
+ n = jQuery(n);
35
+ if (n.hasClass('wpcf7-invert') && n.is(':checked') || ! n.hasClass('wpcf7-invert') && ! n.is(':checked'))
36
+ submit.attr('disabled', 'disabled');
37
+ });
38
  }
39
 
40
  function wpcf7BeforeSubmit(formData, jqForm, options) {
41
  wpcf7ClearResponseOutput();
42
  jQuery('img.ajax-loader', jqForm[0]).css({ visibility: 'visible' });
43
 
44
+ formData.push({name: '_wpcf7_is_ajax_call', value: 1});
45
+ jQuery(jqForm[0]).append('<input type="hidden" name="_wpcf7_is_ajax_call" value="1" />');
46
+
47
  return true;
48
  }
49
 
50
  function wpcf7NotValidTip(into, message) {
51
+ jQuery(into).append('<span class="wpcf7-not-valid-tip">' + message + '</span>');
52
  jQuery('span.wpcf7-not-valid-tip').mouseover(function() {
53
  jQuery(this).fadeOut('fast');
54
  });
63
  function wpcf7ProcessJson(data) {
64
  var wpcf7ResponseOutput = jQuery(data.into).find('div.wpcf7-response-output');
65
  wpcf7ClearResponseOutput();
66
+
67
  if (data.invalids) {
68
  jQuery.each(data.invalids, function(i, n) {
69
  wpcf7NotValidTip(jQuery(data.into).find(n.into), n.message);
70
  });
71
  wpcf7ResponseOutput.addClass('wpcf7-validation-errors');
72
  }
73
+
74
  if (data.captcha) {
75
  jQuery.each(data.captcha, function(i, n) {
76
  jQuery(data.into).find(':input[name="' + i + '"]').clearFields();
79
  jQuery(data.into).find('input:hidden[name="_wpcf7_captcha_challenge_' + i + '"]').attr('value', match[1]);
80
  });
81
  }
82
+
83
+ if (data.quiz) {
84
+ jQuery.each(data.quiz, function(i, n) {
85
+ jQuery(data.into).find(':input[name="' + i + '"]').clearFields();
86
+ jQuery(data.into).find(':input[name="' + i + '"]').siblings('span.wpcf7-quiz-label').text(n[0]);
87
+ jQuery(data.into).find('input:hidden[name="_wpcf7_quiz_answer_' + i + '"]').attr('value', n[1]);
88
+ });
89
+ }
90
+
91
  if (1 == data.spam) {
92
  wpcf7ResponseOutput.addClass('wpcf7-spam-blocked');
93
  }
94
+
95
  if (1 == data.mailSent) {
96
  jQuery(data.into).find('form').resetForm().clearForm();
97
  wpcf7ResponseOutput.addClass('wpcf7-mail-sent-ok');
98
 
99
+ if (data.onSentOk)
100
+ jQuery.each(data.onSentOk, function(i, n) { eval(n) });
101
  } else {
102
  wpcf7ResponseOutput.addClass('wpcf7-mail-sent-ng');
103
  }
104
+
105
+ if (data.onSubmit)
106
+ jQuery.each(data.onSubmit, function(i, n) { eval(n) });
107
+
108
+ wpcf7ResponseOutput.append(data.message).slideDown('fast');
109
  }
110
 
111
  function wpcf7ClearResponseOutput() {
includes/classes.php CHANGED
@@ -169,7 +169,7 @@ class WPCF7_ContactForm {
169
  }
170
 
171
  function form_elements() {
172
- $form = $this->form_do_shortcode();
173
 
174
  // Response output
175
  $response_regex = '%\[\s*response\s*\]%';
@@ -192,13 +192,7 @@ class WPCF7_ContactForm {
192
  $result = array( 'valid' => true, 'reason' => array() );
193
 
194
  foreach ( $fes as $fe ) {
195
- $type = $fe['type'];
196
- $name = $fe['name'];
197
-
198
- if ( empty( $name ) )
199
- continue;
200
-
201
- $result = apply_filters( 'wpcf7_validate_' . $type, $result, $fe );
202
  }
203
 
204
  return $result;
@@ -315,6 +309,9 @@ class WPCF7_ContactForm {
315
  $this->posted_data[$name] = $value;
316
  }
317
 
 
 
 
318
  do_action_ref_array( 'wpcf7_before_send_mail', array( &$this ) );
319
 
320
  if ( $this->skip_mail )
@@ -334,19 +331,22 @@ class WPCF7_ContactForm {
334
  $regex = '/\[\s*([a-zA-Z][0-9a-zA-Z:._-]*)\s*\]/';
335
  $callback = array( &$this, 'mail_callback' );
336
 
337
- $mail_subject = preg_replace_callback( $regex, $callback, $mail_template['subject'] );
338
- $mail_sender = preg_replace_callback( $regex, $callback, $mail_template['sender'] );
339
- $mail_body = preg_replace_callback( $regex, $callback, $mail_template['body'] );
340
- $mail_recipient = preg_replace_callback( $regex, $callback, $mail_template['recipient'] );
 
 
 
 
 
341
 
342
- $mail_headers = "From: $mail_sender\n";
343
 
344
  if ( $mail_template['use_html'] )
345
- $mail_headers .= "Content-Type: text/html\n";
346
 
347
- $mail_additional_headers = preg_replace_callback( $regex, $callback,
348
- $mail_template['additional_headers'] );
349
- $mail_headers .= trim( $mail_additional_headers ) . "\n";
350
 
351
  if ( $this->uploaded_files ) {
352
  $for_this_mail = array();
@@ -356,10 +356,9 @@ class WPCF7_ContactForm {
356
  $for_this_mail[] = $path;
357
  }
358
 
359
- return @wp_mail( $mail_recipient, $mail_subject, $mail_body, $mail_headers,
360
- $for_this_mail );
361
  } else {
362
- return @wp_mail( $mail_recipient, $mail_subject, $mail_body, $mail_headers );
363
  }
364
  }
365
 
@@ -418,6 +417,17 @@ class WPCF7_ContactForm {
418
  return $values;
419
  }
420
 
 
 
 
 
 
 
 
 
 
 
 
421
  /* Upgrade */
422
 
423
  function upgrade() {
169
  }
170
 
171
  function form_elements() {
172
+ $form = apply_filters( 'wpcf7_form_elements', $this->form_do_shortcode() );
173
 
174
  // Response output
175
  $response_regex = '%\[\s*response\s*\]%';
192
  $result = array( 'valid' => true, 'reason' => array() );
193
 
194
  foreach ( $fes as $fe ) {
195
+ $result = apply_filters( 'wpcf7_validate_' . $fe['type'], $result, $fe );
 
 
 
 
 
 
196
  }
197
 
198
  return $result;
309
  $this->posted_data[$name] = $value;
310
  }
311
 
312
+ if ( $this->in_demo_mode() )
313
+ $this->skip_mail = true;
314
+
315
  do_action_ref_array( 'wpcf7_before_send_mail', array( &$this ) );
316
 
317
  if ( $this->skip_mail )
331
  $regex = '/\[\s*([a-zA-Z][0-9a-zA-Z:._-]*)\s*\]/';
332
  $callback = array( &$this, 'mail_callback' );
333
 
334
+ $subject = preg_replace_callback( $regex, $callback, $mail_template['subject'] );
335
+ $sender = preg_replace_callback( $regex, $callback, $mail_template['sender'] );
336
+ $body = preg_replace_callback( $regex, $callback, $mail_template['body'] );
337
+ $recipient = preg_replace_callback( $regex, $callback, $mail_template['recipient'] );
338
+ $additional_headers =
339
+ preg_replace_callback( $regex, $callback, $mail_template['additional_headers'] );
340
+
341
+ extract( apply_filters( 'wpcf7_mail_components',
342
+ compact( 'subject', 'sender', 'body', 'recipient', 'additional_headers' ) ) );
343
 
344
+ $headers = "From: $sender\n";
345
 
346
  if ( $mail_template['use_html'] )
347
+ $headers .= "Content-Type: text/html\n";
348
 
349
+ $headers .= trim( $additional_headers ) . "\n";
 
 
350
 
351
  if ( $this->uploaded_files ) {
352
  $for_this_mail = array();
356
  $for_this_mail[] = $path;
357
  }
358
 
359
+ return @wp_mail( $recipient, $subject, $body, $headers, $for_this_mail );
 
360
  } else {
361
+ return @wp_mail( $recipient, $subject, $body, $headers );
362
  }
363
  }
364
 
417
  return $values;
418
  }
419
 
420
+ function in_demo_mode() {
421
+ $settings = $this->additional_setting( 'demo_mode', false );
422
+
423
+ foreach ( $settings as $setting ) {
424
+ if ( in_array( $setting, array( 'on', 'true', '1' ) ) )
425
+ return true;
426
+ }
427
+
428
+ return false;
429
+ }
430
+
431
  /* Upgrade */
432
 
433
  function upgrade() {
includes/controller.php CHANGED
@@ -6,7 +6,7 @@ function wpcf7_init_switch() {
6
  if ( 'POST' == $_SERVER['REQUEST_METHOD'] && 1 == (int) $_POST['_wpcf7_is_ajax_call'] ) {
7
  wpcf7_ajax_json_echo();
8
  exit();
9
- } elseif ( ! is_admin() ) {
10
  wpcf7_process_nonajax_submitting();
11
  }
12
  }
@@ -175,7 +175,7 @@ function wpcf7_contact_form_tag_func( $atts ) {
175
  return $form;
176
  }
177
 
178
- if ( ! is_admin() && WPCF7_LOAD_JS )
179
  add_action( 'wp_print_scripts', 'wpcf7_enqueue_scripts' );
180
 
181
  function wpcf7_enqueue_scripts() {
6
  if ( 'POST' == $_SERVER['REQUEST_METHOD'] && 1 == (int) $_POST['_wpcf7_is_ajax_call'] ) {
7
  wpcf7_ajax_json_echo();
8
  exit();
9
+ } elseif ( isset( $_POST['_wpcf7'] ) ) {
10
  wpcf7_process_nonajax_submitting();
11
  }
12
  }
175
  return $form;
176
  }
177
 
178
+ if ( WPCF7_LOAD_JS )
179
  add_action( 'wp_print_scripts', 'wpcf7_enqueue_scripts' );
180
 
181
  function wpcf7_enqueue_scripts() {
languages/wpcf7-cs_CZ.mo CHANGED
Binary file
languages/wpcf7-cs_CZ.po CHANGED
@@ -1,272 +1,504 @@
1
- msgid ""
2
- msgstr ""
3
- "Project-Id-Version: \n"
4
- "POT-Creation-Date: \n"
5
- "PO-Revision-Date: 2007-12-08 19:18+0100\n"
6
- "Last-Translator: Korry <pindiky@seznam.cz>\n"
7
- "Language-Team: \n"
8
- "MIME-Version: 1.0\n"
9
- "Content-Type: text/plain; charset=utf-8\n"
10
- "Content-Transfer-Encoding: 8bit\n"
11
-
12
- #: contact-form-7/wp-contact-form-7.php:251
13
- msgid "Contact form"
14
- msgstr "Kontaktní formulář"
15
-
16
- #: contact-form-7/wp-contact-form-7.php:336
17
- #: contact-form-7/includes/admin-panel.php:5
18
- msgid "Contact Form 7"
19
- msgstr "Contact Form 7"
20
-
21
- #: contact-form-7/wp-contact-form-7.php:352
22
- msgid "optional"
23
- msgstr "doporučeno"
24
-
25
- #: contact-form-7/wp-contact-form-7.php:353
26
- msgid "Generate Tag"
27
- msgstr "Generuj Tag"
28
-
29
- #: contact-form-7/wp-contact-form-7.php:354
30
- msgid "Text field"
31
- msgstr "Text field"
32
-
33
- #: contact-form-7/wp-contact-form-7.php:355
34
- msgid "Email field"
35
- msgstr "Email"
36
-
37
- #: contact-form-7/wp-contact-form-7.php:356
38
- msgid "Text area"
39
- msgstr "Text area"
40
-
41
- #: contact-form-7/wp-contact-form-7.php:357
42
- msgid "Drop-down menu"
43
- msgstr "Rozbalovací menu"
44
-
45
- #: contact-form-7/wp-contact-form-7.php:358
46
- msgid "Checkboxes"
47
- msgstr "Checkboxes"
48
-
49
- #: contact-form-7/wp-contact-form-7.php:359
50
- msgid "Radio buttons"
51
- msgstr "Radio buttons"
52
-
53
- #: contact-form-7/wp-contact-form-7.php:360
54
- msgid "CAPTCHA"
55
- msgstr "CAPTCHA"
56
-
57
- #: contact-form-7/wp-contact-form-7.php:361
58
- msgid "Submit button"
59
- msgstr "Potvrzovací tlačítko"
60
-
61
- #: contact-form-7/wp-contact-form-7.php:362
62
- msgid "Name"
63
- msgstr "Jméno"
64
-
65
- #: contact-form-7/wp-contact-form-7.php:363
66
- msgid "Required field?"
67
- msgstr "Vyžadované pole?"
68
-
69
- #: contact-form-7/wp-contact-form-7.php:364
70
- msgid "Allows multiple selections?"
71
- msgstr "Povolit vícenásobný výběr?"
72
-
73
- #: contact-form-7/wp-contact-form-7.php:365
74
- msgid "Choices"
75
- msgstr "Možnosti"
76
-
77
- #: contact-form-7/wp-contact-form-7.php:366
78
- msgid "Label"
79
- msgstr "Popis"
80
-
81
- #: contact-form-7/wp-contact-form-7.php:367
82
- msgid "Default value"
83
- msgstr "Výchozí hodnota"
84
-
85
- #: contact-form-7/wp-contact-form-7.php:368
86
- msgid "Akismet"
87
- msgstr "Akismet"
88
-
89
- #: contact-form-7/wp-contact-form-7.php:369
90
- msgid "This field requires author's name"
91
- msgstr "Toto pole musí obsahovat jméno autora"
92
-
93
- #: contact-form-7/wp-contact-form-7.php:370
94
- msgid "This field requires author's URL"
95
- msgstr "Toto pole musí obsahovat URL autora"
96
-
97
- #: contact-form-7/wp-contact-form-7.php:371
98
- msgid "This field requires author's email address"
99
- msgstr "Toto pole musí obsahovat autorův e-mail"
100
-
101
- #: contact-form-7/wp-contact-form-7.php:372
102
- msgid "Copy and paste this code into the form"
103
- msgstr "Zkopírujte tento kód a vložte jej do formuláře"
104
-
105
- #: contact-form-7/wp-contact-form-7.php:373
106
- msgid "Foreground color"
107
- msgstr "Barva písma"
108
-
109
- #: contact-form-7/wp-contact-form-7.php:374
110
- msgid "Background color"
111
- msgstr "Barva pozadí"
112
-
113
- #: contact-form-7/wp-contact-form-7.php:375
114
- msgid "Image size"
115
- msgstr "Velikost obrázku"
116
-
117
- #: contact-form-7/wp-contact-form-7.php:376
118
- msgid "Small"
119
- msgstr "Malý"
120
-
121
- #: contact-form-7/wp-contact-form-7.php:377
122
- msgid "Medium"
123
- msgstr "Střední"
124
-
125
- #: contact-form-7/wp-contact-form-7.php:378
126
- msgid "Large"
127
- msgstr "Velký"
128
-
129
- #: contact-form-7/wp-contact-form-7.php:379
130
- msgid "Image settings"
131
- msgstr "Nastavení obrázku"
132
-
133
- #: contact-form-7/wp-contact-form-7.php:380
134
- msgid "Input field settings"
135
- msgstr "Parametry vstupního pole"
136
-
137
- #: contact-form-7/wp-contact-form-7.php:381
138
- msgid "For image"
139
- msgstr "For image"
140
-
141
- #: contact-form-7/wp-contact-form-7.php:382
142
- msgid "For input field"
143
- msgstr "Pro vstupní pole"
144
-
145
- #: contact-form-7/wp-contact-form-7.php:383
146
- msgid "* One choice per line."
147
- msgstr "* Jedna možnost na řádku"
148
-
149
- #: contact-form-7/wp-contact-form-7.php:402
150
- msgid "Contact form created."
151
- msgstr "Formulář vytvořen"
152
-
153
- #: contact-form-7/wp-contact-form-7.php:405
154
- msgid "Contact form saved."
155
- msgstr "Formulář uložen"
156
-
157
- #: contact-form-7/wp-contact-form-7.php:408
158
- msgid "Contact form deleted."
159
- msgstr "Contact form deleted"
160
-
161
- #: contact-form-7/wp-contact-form-7.php:415
162
- msgid "Untitled"
163
- msgstr "Untitled"
164
-
165
- #: contact-form-7/wp-contact-form-7.php:439
166
- msgid "Your Name"
167
- msgstr "Vaše jméno"
168
-
169
- #: contact-form-7/wp-contact-form-7.php:439
170
- #: contact-form-7/wp-contact-form-7.php:441
171
- msgid "(required)"
172
- msgstr "(vyžadováno)"
173
-
174
- #: contact-form-7/wp-contact-form-7.php:441
175
- msgid "Your Email"
176
- msgstr "Váš Email"
177
-
178
- #: contact-form-7/wp-contact-form-7.php:443
179
- msgid "Subject"
180
- msgstr "Předmět zprávy"
181
-
182
- #: contact-form-7/wp-contact-form-7.php:445
183
- msgid "Your Message"
184
- msgstr "Vaše zpráva"
185
-
186
- #: contact-form-7/wp-contact-form-7.php:447
187
- #: contact-form-7/wp-contact-form-7.php:891
188
- msgid "Send"
189
- msgstr "Odeslat"
190
-
191
- #: contact-form-7/wp-contact-form-7.php:476
192
- msgid "Your message was sent successfully. Thanks."
193
- msgstr "Vaše zpráva byla úspěšně odeslána. Děkujeme."
194
-
195
- #: contact-form-7/wp-contact-form-7.php:478
196
- msgid "Failed to send your message. Please try later or contact administrator by other way."
197
- msgstr "Nepodařilo se odeslat zprávu. Opakujte později, nebo kontaktujte administátora."
198
-
199
- #: contact-form-7/wp-contact-form-7.php:480
200
- msgid "Validation errors occurred. Please confirm the fields and submit it again."
201
- msgstr "Chyba v ověření. Zkontrolujte prosím všechna povinná pole."
202
-
203
- #: contact-form-7/wp-contact-form-7.php:482
204
- msgid "Email address seems invalid."
205
- msgstr "Emailová adresa není v platném tvaru."
206
-
207
- #: contact-form-7/wp-contact-form-7.php:484
208
- msgid "Please fill the required field."
209
- msgstr "Vyplňte prosím povinná pole."
210
-
211
- #: contact-form-7/wp-contact-form-7.php:486
212
- msgid "Your entered code is incorrect."
213
- msgstr "Vložený ověřovací kód není správně."
214
-
215
- #: contact-form-7/includes/admin-panel.php:15
216
- msgid "Add new"
217
- msgstr "Přidej nový"
218
-
219
- #: contact-form-7/includes/admin-panel.php:28
220
- msgid "Copy and paste this code into your post content."
221
- msgstr "Zkopírujte tento kód a vložte jej do článku."
222
-
223
- #: contact-form-7/includes/admin-panel.php:33
224
- msgid "Form"
225
- msgstr "Formulář"
226
-
227
- #: contact-form-7/includes/admin-panel.php:37
228
- msgid "Mail"
229
- msgstr "Mail"
230
-
231
- #: contact-form-7/includes/admin-panel.php:39
232
- #: contact-form-7/includes/admin-panel.php:60
233
- msgid "To:"
234
- msgstr "Komu:"
235
-
236
- #: contact-form-7/includes/admin-panel.php:43
237
- #: contact-form-7/includes/admin-panel.php:64
238
- msgid "From:"
239
- msgstr "Od:"
240
-
241
- #: contact-form-7/includes/admin-panel.php:47
242
- #: contact-form-7/includes/admin-panel.php:68
243
- msgid "Subject:"
244
- msgstr "Předmět:"
245
-
246
- #: contact-form-7/includes/admin-panel.php:51
247
- #: contact-form-7/includes/admin-panel.php:72
248
- msgid "Message body:"
249
- msgstr "Zpráva:"
250
-
251
- #: contact-form-7/includes/admin-panel.php:56
252
- msgid "Mail (2)"
253
- msgstr "Mail (2)"
254
-
255
- #: contact-form-7/includes/admin-panel.php:58
256
- msgid "Use mail (2)"
257
- msgstr "Use mail (2)"
258
-
259
- #: contact-form-7/includes/admin-panel.php:80
260
- msgid "Save"
261
- msgstr "Uložit"
262
-
263
- #: contact-form-7/includes/admin-panel.php:86
264
- msgid "Delete this contact form"
265
- msgstr "Smaž tento formulář."
266
-
267
- #: contact-form-7/includes/admin-panel.php:87
268
- msgid ""
269
- "You are about to delete this contact form.\n"
270
- " 'Cancel' to stop, 'OK' to delete."
271
- msgstr "Chcete smazat tento formulář?"
272
-
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ msgid ""
2
+ msgstr ""
3
+ "Project-Id-Version: \n"
4
+ "Report-Msgid-Bugs-To: \n"
5
+ "POT-Creation-Date: 2009-09-26 04:03+0900\n"
6
+ "PO-Revision-Date: 2009-10-12 15:10+0100\n"
7
+ "Last-Translator: Radovan Fišer <rfiser@gmail.com>\n"
8
+ "Language-Team: \n"
9
+ "MIME-Version: 1.0\n"
10
+ "Content-Type: text/plain; charset=UTF-8\n"
11
+ "Content-Transfer-Encoding: 8bit\n"
12
+
13
+ #: contact-form-7/admin/admin-panel.php:9
14
+ #, php-format
15
+ 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."
16
+ msgstr "<strong>Databázová tabulka pro Contact Form 7 neexistuje.</strong> Musíte ji <a href=\"%s\">vytvořit</a>, aby plugin fungoval."
17
+
18
+ #: contact-form-7/admin/admin-panel.php:12
19
+ msgid "<strong>The database table for Contact Form 7 does not exist.</strong>"
20
+ msgstr "<strong>Databázová tabulka pluginu Contact Form 7 neexistuje</strong>."
21
+
22
+ #: contact-form-7/admin/admin-panel.php:17
23
+ #: contact-form-7/admin/admin-panel.php:30
24
+ #: contact-form-7/admin/admin.php:121
25
+ #: contact-form-7/includes/functions.php:52
26
+ msgid "Contact Form 7"
27
+ msgstr "Contact Form 7"
28
+
29
+ #: contact-form-7/admin/admin-panel.php:45
30
+ msgid "Add new"
31
+ msgstr "Přidej nový"
32
+
33
+ #: contact-form-7/admin/admin-panel.php:67
34
+ msgid "Copy this code and paste it into your post, page or text widget content."
35
+ msgstr "Zkopírujte tento kód a vložte jej do článku, stránky nebo widgetu."
36
+
37
+ #: contact-form-7/admin/admin-panel.php:75
38
+ #: contact-form-7/admin/admin-panel.php:332
39
+ msgid "Save"
40
+ msgstr "Uložit"
41
+
42
+ #: contact-form-7/admin/admin-panel.php:82
43
+ msgid "Copy"
44
+ msgstr "Kopírovat"
45
+
46
+ #: contact-form-7/admin/admin-panel.php:87
47
+ msgid "Delete"
48
+ msgstr "Smazat"
49
+
50
+ #: contact-form-7/admin/admin-panel.php:89
51
+ msgid ""
52
+ "You are about to delete this contact form.\n"
53
+ " 'Cancel' to stop, 'OK' to delete."
54
+ msgstr "Chcete smazat tento formulář?"
55
+
56
+ #: contact-form-7/admin/admin-panel.php:102
57
+ msgid "Form"
58
+ msgstr "Formulář"
59
+
60
+ #: contact-form-7/admin/admin-panel.php:120
61
+ msgid "Mail"
62
+ msgstr "Mail"
63
+
64
+ #: contact-form-7/admin/admin-panel.php:127
65
+ #: contact-form-7/admin/admin-panel.php:188
66
+ msgid "To:"
67
+ msgstr "Komu:"
68
+
69
+ #: contact-form-7/admin/admin-panel.php:132
70
+ #: contact-form-7/admin/admin-panel.php:193
71
+ msgid "From:"
72
+ msgstr "Od:"
73
+
74
+ #: contact-form-7/admin/admin-panel.php:137
75
+ #: contact-form-7/admin/admin-panel.php:198
76
+ msgid "Subject:"
77
+ msgstr "Předmět:"
78
+
79
+ #: contact-form-7/admin/admin-panel.php:144
80
+ #: contact-form-7/admin/admin-panel.php:205
81
+ msgid "Additional headers:"
82
+ msgstr "Doplňky do hlavičky:"
83
+
84
+ #: contact-form-7/admin/admin-panel.php:149
85
+ #: contact-form-7/admin/admin-panel.php:210
86
+ msgid "File attachments:"
87
+ msgstr "Přílohy:"
88
+
89
+ #: contact-form-7/admin/admin-panel.php:157
90
+ #: contact-form-7/admin/admin-panel.php:218
91
+ msgid "Use HTML content type"
92
+ msgstr "Použij e-mail s HTML obsahem"
93
+
94
+ #: contact-form-7/admin/admin-panel.php:164
95
+ #: contact-form-7/admin/admin-panel.php:225
96
+ #: contact-form-7/includes/functions.php:50
97
+ msgid "Message body:"
98
+ msgstr "Zpráva:"
99
+
100
+ #: contact-form-7/admin/admin-panel.php:174
101
+ msgid "Mail (2)"
102
+ msgstr "Mail (2)"
103
+
104
+ #: contact-form-7/admin/admin-panel.php:180
105
+ msgid "Use mail (2)"
106
+ msgstr "Použij mail (2)"
107
+
108
+ #: contact-form-7/admin/admin-panel.php:235
109
+ msgid "Messages"
110
+ msgstr "Zprávy"
111
+
112
+ #: contact-form-7/admin/admin-panel.php:243
113
+ msgid "Sender's message was sent successfully"
114
+ msgstr "Vaše zpráva byla úspěšně odeslána. Děkujeme."
115
+
116
+ #: contact-form-7/admin/admin-panel.php:248
117
+ msgid "Sender's message was failed to send"
118
+ msgstr "Zprávu se nepodařilo odeslat"
119
+
120
+ #: contact-form-7/admin/admin-panel.php:253
121
+ msgid "Akismet judged the sending activity as spamming"
122
+ msgstr "Akismet usoudil, že toto odesílání e-mailů je spamování."
123
+
124
+ #: contact-form-7/admin/admin-panel.php:258
125
+ msgid "Validation errors occurred"
126
+ msgstr "Při ověřování správnosti nastala chyba"
127
+
128
+ #: contact-form-7/admin/admin-panel.php:263
129
+ msgid "There is a field that sender is needed to fill in"
130
+ msgstr "Nevyplnili jste povinné políčko."
131
+
132
+ #: contact-form-7/admin/admin-panel.php:268
133
+ msgid "Email address that sender entered is invalid"
134
+ msgstr "E-mailová adresa je zadána špatně."
135
+
136
+ #: contact-form-7/admin/admin-panel.php:273
137
+ msgid "There is a field of term that sender is needed to accept"
138
+ msgstr "Pokud nezaškrtnete povinné políčko, e-mail nelze odeslat."
139
+
140
+ #: contact-form-7/admin/admin-panel.php:278
141
+ msgid "Sender doesn't enter the correct answer to the quiz"
142
+ msgstr "Špatně jste odpověděli na kvíz, zkuste to prosím znovu."
143
+
144
+ #: contact-form-7/admin/admin-panel.php:283
145
+ msgid "The code that sender entered does not match the CAPTCHA"
146
+ msgstr "Špatně jste opsali kontrolní kód CAPTCHA, zkuste to prosím znovu."
147
+
148
+ #: contact-form-7/admin/admin-panel.php:288
149
+ msgid "Uploading a file fails for any reason"
150
+ msgstr "Nahrávání souboru se nepodařilo."
151
+
152
+ #: contact-form-7/admin/admin-panel.php:293
153
+ msgid "Uploaded file is not allowed file type"
154
+ msgstr "Nahrávaný soubor je nepovoleného typu."
155
+
156
+ #: contact-form-7/admin/admin-panel.php:298
157
+ msgid "Uploaded file is too large"
158
+ msgstr "Nahrávaný soubor je příliš velký."
159
+
160
+ #: contact-form-7/admin/admin-panel.php:303
161
+ msgid "Uploading a file fails for PHP error"
162
+ msgstr "Nahrávání souboru se nepodařilo kvůli chybě v PHP."
163
+
164
+ #: contact-form-7/admin/admin-panel.php:314
165
+ msgid "Additional Settings"
166
+ msgstr "Další nastavení"
167
+
168
+ #: contact-form-7/admin/admin.php:121
169
+ msgid "Contact"
170
+ msgstr "Kontakt"
171
+
172
+ #: contact-form-7/admin/admin.php:125
173
+ msgid "Edit Contact Forms"
174
+ msgstr "Správa kontaktních formulářů"
175
+
176
+ #: contact-form-7/admin/admin.php:125
177
+ msgid "Edit"
178
+ msgstr "Upravit"
179
+
180
+ #: contact-form-7/admin/admin.php:185
181
+ msgid "optional"
182
+ msgstr "volitelné"
183
+
184
+ #: contact-form-7/admin/admin.php:186
185
+ msgid "Generate Tag"
186
+ msgstr "Generuj Tag"
187
+
188
+ #: contact-form-7/admin/admin.php:187
189
+ msgid "Text field"
190
+ msgstr "Textové pole"
191
+
192
+ #: contact-form-7/admin/admin.php:188
193
+ msgid "Email field"
194
+ msgstr "E-mailové pole"
195
+
196
+ #: contact-form-7/admin/admin.php:189
197
+ msgid "Text area"
198
+ msgstr "Pole pro psaní delšího textu (textarea)"
199
+
200
+ #: contact-form-7/admin/admin.php:190
201
+ msgid "Drop-down menu"
202
+ msgstr "Rozbalovací menu"
203
+
204
+ #: contact-form-7/admin/admin.php:191
205
+ msgid "Checkboxes"
206
+ msgstr "Zaškrtávací políčka"
207
+
208
+ #: contact-form-7/admin/admin.php:192
209
+ msgid "Radio buttons"
210
+ msgstr "Tlačítku typu Radio "
211
+
212
+ #: contact-form-7/admin/admin.php:193
213
+ msgid "Acceptance"
214
+ msgstr "Přijímám"
215
+
216
+ #: contact-form-7/admin/admin.php:194
217
+ msgid "Make this checkbox checked by default?"
218
+ msgstr "Má být zaškrtávací políčko zaškrtnuté samo od sebe?"
219
+
220
+ #: contact-form-7/admin/admin.php:195
221
+ msgid "Make this checkbox work inversely?"
222
+ msgstr "Má zaškrtávací políčko pracovat naopak?"
223
+
224
+ #: contact-form-7/admin/admin.php:196
225
+ msgid "* That means visitor who accepts the term unchecks it."
226
+ msgstr "To znamená, že pokud návštěvník podmínky přijímá, tak políčko musí odškrtnout."
227
+
228
+ #: contact-form-7/admin/admin.php:197
229
+ msgid "CAPTCHA"
230
+ msgstr "CAPTCHA"
231
+
232
+ #: contact-form-7/admin/admin.php:198
233
+ msgid "Quiz"
234
+ msgstr "Příklad"
235
+
236
+ #: contact-form-7/admin/admin.php:199
237
+ msgid "Quizzes"
238
+ msgstr "Příklady"
239
+
240
+ #: contact-form-7/admin/admin.php:200
241
+ msgid "* quiz|answer (e.g. 1+1=?|2)"
242
+ msgstr "* příklad|odpověď (např. 1+1=?|2)"
243
+
244
+ #: contact-form-7/admin/admin.php:201
245
+ msgid "File upload"
246
+ msgstr "Nahrát soubor"
247
+
248
+ #: contact-form-7/admin/admin.php:202
249
+ msgid "bytes"
250
+ msgstr "bajtů"
251
+
252
+ #: contact-form-7/admin/admin.php:203
253
+ msgid "Submit button"
254
+ msgstr "Potvrzovací tlačítko"
255
+
256
+ #: contact-form-7/admin/admin.php:204
257
+ msgid "Name"
258
+ msgstr "Jméno"
259
+
260
+ #: contact-form-7/admin/admin.php:205
261
+ msgid "Required field?"
262
+ msgstr "Vyžadované pole?"
263
+
264
+ #: contact-form-7/admin/admin.php:206
265
+ msgid "Allow multiple selections?"
266
+ msgstr "Povolit vícenásobný výběr?"
267
+
268
+ #: contact-form-7/admin/admin.php:207
269
+ msgid "Insert a blank item as the first option?"
270
+ msgstr "Vložit jako první možnost prázdnou položku?"
271
+
272
+ #: contact-form-7/admin/admin.php:208
273
+ msgid "Make checkboxes exclusive?"
274
+ msgstr "Mají být políčka exkluzivní?"
275
+
276
+ #: contact-form-7/admin/admin.php:209
277
+ msgid "Choices"
278
+ msgstr "Možnosti"
279
+
280
+ #: contact-form-7/admin/admin.php:210
281
+ msgid "Label"
282
+ msgstr "Popis"
283
+
284
+ #: contact-form-7/admin/admin.php:211
285
+ msgid "Default value"
286
+ msgstr "Výchozí hodnota"
287
+
288
+ #: contact-form-7/admin/admin.php:212
289
+ msgid "Akismet"
290
+ msgstr "Akismet"
291
+
292
+ #: contact-form-7/admin/admin.php:213
293
+ msgid "This field requires author's name"
294
+ msgstr "Toto pole musí obsahovat jméno autora"
295
+
296
+ #: contact-form-7/admin/admin.php:214
297
+ msgid "This field requires author's URL"
298
+ msgstr "Toto pole musí obsahovat URL autora"
299
+
300
+ #: contact-form-7/admin/admin.php:215
301
+ msgid "This field requires author's email address"
302
+ msgstr "Toto pole musí obsahovat autorův e-mail"
303
+
304
+ #: contact-form-7/admin/admin.php:216
305
+ msgid "Copy this code and paste it into the form left."
306
+ msgstr "Zkopírujte tento kód a vložte jej do formuláře vlevo."
307
+
308
+ #: contact-form-7/admin/admin.php:217
309
+ msgid "Foreground color"
310
+ msgstr "Barva písma"
311
+
312
+ #: contact-form-7/admin/admin.php:218
313
+ msgid "Background color"
314
+ msgstr "Barva pozadí"
315
+
316
+ #: contact-form-7/admin/admin.php:219
317
+ msgid "Image size"
318
+ msgstr "Velikost obrázku"
319
+
320
+ #: contact-form-7/admin/admin.php:220
321
+ msgid "Small"
322
+ msgstr "Malý"
323
+
324
+ #: contact-form-7/admin/admin.php:221
325
+ msgid "Medium"
326
+ msgstr "Střední"
327
+
328
+ #: contact-form-7/admin/admin.php:222
329
+ msgid "Large"
330
+ msgstr "Velký"
331
+
332
+ #: contact-form-7/admin/admin.php:223
333
+ msgid "Image settings"
334
+ msgstr "Nastavení obrázku"
335
+
336
+ #: contact-form-7/admin/admin.php:224
337
+ msgid "Input field settings"
338
+ msgstr "Parametry vstupního pole"
339
+
340
+ #: contact-form-7/admin/admin.php:225
341
+ msgid "For image"
342
+ msgstr "For image"
343
+
344
+ #: contact-form-7/admin/admin.php:226
345
+ msgid "For input field"
346
+ msgstr "Pro vstupní pole"
347
+
348
+ #: contact-form-7/admin/admin.php:227
349
+ msgid "* One choice per line."
350
+ msgstr "* Jedna možnost na řádku"
351
+
352
+ #: contact-form-7/admin/admin.php:228
353
+ msgid "Show"
354
+ msgstr "Ukázat"
355
+
356
+ #: contact-form-7/admin/admin.php:229
357
+ msgid "Hide"
358
+ msgstr "Skrýt"
359
+
360
+ #: contact-form-7/admin/admin.php:230
361
+ msgid "File size limit"
362
+ msgstr "Maximální velikost souboru"
363
+
364
+ #: contact-form-7/admin/admin.php:231
365
+ msgid "Acceptable file types"
366
+ msgstr "Povolené typy souborů"
367
+
368
+ #: contact-form-7/admin/admin.php:232
369
+ msgid "Note: To use CAPTCHA, you need Really Simple CAPTCHA plugin installed."
370
+ msgstr "Poznámka: CAPTCHA vyžaduje nainstalovaný plugin Really Simple CAPTCHA."
371
+
372
+ #: contact-form-7/admin/admin.php:241
373
+ msgid "Contact form created."
374
+ msgstr "Formulář vytvořen"
375
+
376
+ #: contact-form-7/admin/admin.php:244
377
+ msgid "Contact form saved."
378
+ msgstr "Formulář uložen"
379
+
380
+ #: contact-form-7/admin/admin.php:247
381
+ msgid "Contact form deleted."
382
+ msgstr "Contact form deleted"
383
+
384
+ #: contact-form-7/admin/admin.php:250
385
+ msgid "Database table created."
386
+ msgstr "Databázové tabulky byly vytvořeny."
387
+
388
+ #: contact-form-7/admin/admin.php:253
389
+ msgid "Failed to create database table."
390
+ msgstr "Dtaabázové tabulky se nepodařilo vytvořit."
391
+
392
+ #: contact-form-7/admin/admin.php:328
393
+ msgid "Contact form"
394
+ msgstr "Kontaktní formulář"
395
+
396
+ #: contact-form-7/admin/admin.php:347
397
+ msgid "Settings"
398
+ msgstr "Nastavení"
399
+
400
+ #: contact-form-7/admin/admin.php:366
401
+ msgid "Contact Form 7 needs your support. Please donate today."
402
+ msgstr "Contact Form 7 se bez vaší pomoci neobejde. Oceňte jej právě dnes."
403
+
404
+ #: contact-form-7/admin/admin.php:367
405
+ msgid "Is this plugin useful for you? If you like it, please help the developer."
406
+ msgstr "Je pro vás tento plugin užitečný? Pokud se vám líbí, pomožte jeho tvůrci."
407
+
408
+ #: contact-form-7/admin/admin.php:368
409
+ msgid "Your contribution is needed for making this plugin better."
410
+ msgstr "Váš finanční příspěvek je třeba, aby byl plugin ještě lepší."
411
+
412
+ #: contact-form-7/admin/admin.php:369
413
+ msgid "Developing a plugin and providing user support is really hard work. Please help."
414
+ msgstr "Vývoj pluginu a poskytování pomoci uživatelům je opravdu náročná práce. Pomožte prosím."
415
+
416
+ #: contact-form-7/includes/classes.php:552
417
+ msgid "Untitled"
418
+ msgstr "Untitled"
419
+
420
+ #: contact-form-7/includes/functions.php:6
421
+ msgid "Your message was sent successfully. Thanks."
422
+ msgstr "Vaše zpráva byla úspěšně odeslána. Děkujeme."
423
+
424
+ #: contact-form-7/includes/functions.php:8
425
+ #: contact-form-7/includes/functions.php:10
426
+ msgid "Failed to send your message. Please try later or contact administrator by other way."
427
+ msgstr "Nepodařilo se odeslat zprávu. Opakujte později, nebo kontaktujte administátora."
428
+
429
+ #: contact-form-7/includes/functions.php:12
430
+ msgid "Validation errors occurred. Please confirm the fields and submit it again."
431
+ msgstr "Chyba v ověření. Zkontrolujte prosím všechna povinná pole."
432
+
433
+ #: contact-form-7/includes/functions.php:14
434
+ msgid "Please accept the terms to proceed."
435
+ msgstr "Přijměte prosím podmínky, abyste mohli pokračovat."
436
+
437
+ #: contact-form-7/includes/functions.php:16
438
+ msgid "Email address seems invalid."
439
+ msgstr "Emailová adresa není v platném tvaru."
440
+
441
+ #: contact-form-7/includes/functions.php:18
442
+ msgid "Please fill the required field."
443
+ msgstr "Vyplňte prosím povinná pole."
444
+
445
+ #: contact-form-7/includes/functions.php:20
446
+ msgid "Your entered code is incorrect."
447
+ msgstr "Vložený ověřovací kód není správně."
448
+
449
+ #: contact-form-7/includes/functions.php:22
450
+ msgid "Your answer is not correct."
451
+ msgstr "Vaše odpověď je chybná."
452
+
453
+ #: contact-form-7/includes/functions.php:24
454
+ msgid "Failed to upload file."
455
+ msgstr "Nahrání souboru se nepodařilo."
456
+
457
+ #: contact-form-7/includes/functions.php:26
458
+ msgid "This file type is not allowed."
459
+ msgstr "Tento typ souboru není povolený."
460
+
461
+ #: contact-form-7/includes/functions.php:28
462
+ msgid "This file is too large."
463
+ msgstr "Soubor je příliš velký."
464
+
465
+ #: contact-form-7/includes/functions.php:30
466
+ msgid "Failed to upload file. Error occurred."
467
+ msgstr "Nahrát soubor se nepodařilo."
468
+
469
+ #: contact-form-7/includes/functions.php:35
470
+ msgid "Your Name"
471
+ msgstr "Vaše jméno"
472
+
473
+ #: contact-form-7/includes/functions.php:35
474
+ #: contact-form-7/includes/functions.php:37
475
+ msgid "(required)"
476
+ msgstr "(vyžadováno)"
477
+
478
+ #: contact-form-7/includes/functions.php:37
479
+ msgid "Your Email"
480
+ msgstr "Váš Email"
481
+
482
+ #: contact-form-7/includes/functions.php:39
483
+ msgid "Subject"
484
+ msgstr "Předmět zprávy"
485
+
486
+ #: contact-form-7/includes/functions.php:41
487
+ msgid "Your Message"
488
+ msgstr "Vaše zpráva"
489
+
490
+ #: contact-form-7/includes/functions.php:43
491
+ msgid "Send"
492
+ msgstr "Odeslat"
493
+
494
+ #: contact-form-7/includes/functions.php:51
495
+ msgid "This mail is created by Contact Form 7 plugin for WordPress."
496
+ msgstr "Tento e-mail byl odeslán pomocí pluginu Contact Form 7 pro Wordpress. "
497
+
498
+ #: contact-form-7/modules/captcha.php:62
499
+ msgid "To use CAPTCHA, you need <a href=\"http://wordpress.org/extend/plugins/really-simple-captcha/\">Really Simple CAPTCHA</a> plugin installed."
500
+ msgstr "Používání CAPTCHY je podmíněno instalací pluginu <a href=\"http://wordpress.org/extend/plugins/really-simple-captcha/\">Really Simple CAPTCHA</a>."
501
+
502
+ #~ msgid "Delete this contact form"
503
+ #~ msgstr "Smaž tento formulář."
504
+
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.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,7 +24,8 @@ 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:119
 
28
  msgid "Contact Form 7"
29
  msgstr "Contact Form 7"
30
 
@@ -97,6 +98,7 @@ msgstr "HTML-Content-Typ verwenden"
97
 
98
  #: contact-form-7/admin/admin-panel.php:164
99
  #: contact-form-7/admin/admin-panel.php:225
 
100
  msgid "Message body:"
101
  msgstr "Nachrichtentext:"
102
 
@@ -168,255 +170,255 @@ msgstr "Das hochladen der Datei verursachte einen PHP Error."
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
 
@@ -494,6 +496,10 @@ msgstr "Ihre Nachricht"
494
  msgid "Send"
495
  msgstr "Senden"
496
 
 
 
 
 
497
  #: contact-form-7/modules/captcha.php:62
498
  msgid "To use CAPTCHA, you need <a href=\"http://wordpress.org/extend/plugins/really-simple-captcha/\">Really Simple CAPTCHA</a> plugin installed."
499
  msgstr "Um den Captcha Code anzuzeigen, muss dieses <a href=\"http://wordpress.org/extend/plugins/really-simple-captcha/\">Plugin</a> installiert sein."
1
  msgid ""
2
  msgstr ""
3
+ "Project-Id-Version: Contact Form | V2.0.5\n"
4
  "Report-Msgid-Bugs-To: \n"
5
+ "POT-Creation-Date: 2009-09-26 04:03+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:121
28
+ #: contact-form-7/includes/functions.php:52
29
  msgid "Contact Form 7"
30
  msgstr "Contact Form 7"
31
 
98
 
99
  #: contact-form-7/admin/admin-panel.php:164
100
  #: contact-form-7/admin/admin-panel.php:225
101
+ #: contact-form-7/includes/functions.php:50
102
  msgid "Message body:"
103
  msgstr "Nachrichtentext:"
104
 
170
  msgid "Additional Settings"
171
  msgstr "Zusätzliche Einstellungen"
172
 
173
+ #: contact-form-7/admin/admin.php:121
174
  msgid "Contact"
175
  msgstr "Formular"
176
 
177
+ #: contact-form-7/admin/admin.php:125
178
  msgid "Edit Contact Forms"
179
  msgstr "Bearbeite Contact Forms"
180
 
181
+ #: contact-form-7/admin/admin.php:125
182
  msgid "Edit"
183
  msgstr "Bearbeiten"
184
 
185
+ #: contact-form-7/admin/admin.php:185
186
  msgid "optional"
187
  msgstr "optional"
188
 
189
+ #: contact-form-7/admin/admin.php:186
190
  msgid "Generate Tag"
191
  msgstr "Generiere Tag"
192
 
193
+ #: contact-form-7/admin/admin.php:187
194
  msgid "Text field"
195
  msgstr "Text Feld"
196
 
197
+ #: contact-form-7/admin/admin.php:188
198
  msgid "Email field"
199
  msgstr "Email Feld"
200
 
201
+ #: contact-form-7/admin/admin.php:189
202
  msgid "Text area"
203
  msgstr "Text Feld"
204
 
205
+ #: contact-form-7/admin/admin.php:190
206
  msgid "Drop-down menu"
207
  msgstr "Auswahlmenü"
208
 
209
+ #: contact-form-7/admin/admin.php:191
210
  msgid "Checkboxes"
211
  msgstr "Auswahlbox"
212
 
213
+ #: contact-form-7/admin/admin.php:192
214
  msgid "Radio buttons"
215
  msgstr "Radio Button"
216
 
217
+ #: contact-form-7/admin/admin.php:193
218
  msgid "Acceptance"
219
  msgstr "Zustimmung"
220
 
221
+ #: contact-form-7/admin/admin.php:194
222
  msgid "Make this checkbox checked by default?"
223
  msgstr "Auswahlbox standardmässig aktivieren?"
224
 
225
+ #: contact-form-7/admin/admin.php:195
226
  msgid "Make this checkbox work inversely?"
227
  msgstr "Auswahlbox umkehren (Invert)?"
228
 
229
+ #: contact-form-7/admin/admin.php:196
230
  msgid "* That means visitor who accepts the term unchecks it."
231
  msgstr "* Bedeutet, dass der Besucher die Bedingungen akzeptiert, wenn er die Auswahlbox deaktiviert."
232
 
233
+ #: contact-form-7/admin/admin.php:197
234
  msgid "CAPTCHA"
235
  msgstr "Captcha"
236
 
237
+ #: contact-form-7/admin/admin.php:198
238
  msgid "Quiz"
239
  msgstr "Quiz"
240
 
241
+ #: contact-form-7/admin/admin.php:199
242
  msgid "Quizzes"
243
  msgstr "Quiz"
244
 
245
+ #: contact-form-7/admin/admin.php:200
246
  msgid "* quiz|answer (e.g. 1+1=?|2)"
247
  msgstr "* Quiz|Antwort (z.B. 1+1=?|2)"
248
 
249
+ #: contact-form-7/admin/admin.php:201
250
  msgid "File upload"
251
  msgstr "Datei Upload"
252
 
253
+ #: contact-form-7/admin/admin.php:202
254
  msgid "bytes"
255
  msgstr "Bytes"
256
 
257
+ #: contact-form-7/admin/admin.php:203
258
  msgid "Submit button"
259
  msgstr "Senden Button"
260
 
261
+ #: contact-form-7/admin/admin.php:204
262
  msgid "Name"
263
  msgstr "Name"
264
 
265
+ #: contact-form-7/admin/admin.php:205
266
  msgid "Required field?"
267
  msgstr "Pflichtfeld?"
268
 
269
+ #: contact-form-7/admin/admin.php:206
270
  msgid "Allow multiple selections?"
271
  msgstr "Mehrfachauswahl erlauben?"
272
 
273
+ #: contact-form-7/admin/admin.php:207
274
  msgid "Insert a blank item as the first option?"
275
  msgstr "Leere Position als die erste Option einfügen?"
276
 
277
+ #: contact-form-7/admin/admin.php:208
278
  msgid "Make checkboxes exclusive?"
279
  msgstr "Exklusive Auswahlboxen erstellen?"
280
 
281
+ #: contact-form-7/admin/admin.php:209
282
  msgid "Choices"
283
  msgstr "Möglichkeiten"
284
 
285
+ #: contact-form-7/admin/admin.php:210
286
  msgid "Label"
287
  msgstr "Beschriftung"
288
 
289
+ #: contact-form-7/admin/admin.php:211
290
  msgid "Default value"
291
  msgstr "Standardwert"
292
 
293
+ #: contact-form-7/admin/admin.php:212
294
  msgid "Akismet"
295
  msgstr "Askimet"
296
 
297
+ #: contact-form-7/admin/admin.php:213
298
  msgid "This field requires author's name"
299
  msgstr "Dieses Feld erfordert den Namen des Autors"
300
 
301
+ #: contact-form-7/admin/admin.php:214
302
  msgid "This field requires author's URL"
303
  msgstr "Dieses Feld erfordert die URL des Autors"
304
 
305
+ #: contact-form-7/admin/admin.php:215
306
  msgid "This field requires author's email address"
307
  msgstr "Dieses Feld erfordert die Email Adresse des Autors"
308
 
309
+ #: contact-form-7/admin/admin.php:216
310
  msgid "Copy this code and paste it into the form left."
311
  msgstr "Kopieren Sie diesen Code und fügen ihn in das Formular links ein."
312
 
313
+ #: contact-form-7/admin/admin.php:217
314
  msgid "Foreground color"
315
  msgstr "Vordergrundfarbe"
316
 
317
+ #: contact-form-7/admin/admin.php:218
318
  msgid "Background color"
319
  msgstr "Hintergrundfarbe"
320
 
321
+ #: contact-form-7/admin/admin.php:219
322
  msgid "Image size"
323
  msgstr "Bild Grösse"
324
 
325
+ #: contact-form-7/admin/admin.php:220
326
  msgid "Small"
327
  msgstr "Klein"
328
 
329
+ #: contact-form-7/admin/admin.php:221
330
  msgid "Medium"
331
  msgstr "Mittel"
332
 
333
+ #: contact-form-7/admin/admin.php:222
334
  msgid "Large"
335
  msgstr "Gross"
336
 
337
+ #: contact-form-7/admin/admin.php:223
338
  msgid "Image settings"
339
  msgstr "Bild Einstellungen"
340
 
341
+ #: contact-form-7/admin/admin.php:224
342
  msgid "Input field settings"
343
  msgstr "Eingabefeld Einstellungen"
344
 
345
+ #: contact-form-7/admin/admin.php:225
346
  msgid "For image"
347
  msgstr "Für das Bild"
348
 
349
+ #: contact-form-7/admin/admin.php:226
350
  msgid "For input field"
351
  msgstr "Für das Eingabefeld"
352
 
353
+ #: contact-form-7/admin/admin.php:227
354
  msgid "* One choice per line."
355
  msgstr "* Eine Möglichkeit pro Zeile."
356
 
357
+ #: contact-form-7/admin/admin.php:228
358
  msgid "Show"
359
  msgstr "Anzeigen"
360
 
361
+ #: contact-form-7/admin/admin.php:229
362
  msgid "Hide"
363
  msgstr "Verstecken"
364
 
365
+ #: contact-form-7/admin/admin.php:230
366
  msgid "File size limit"
367
  msgstr "Dateigrössen Limit"
368
 
369
+ #: contact-form-7/admin/admin.php:231
370
  msgid "Acceptable file types"
371
  msgstr "Akzeptierte Dateitypen"
372
 
373
+ #: contact-form-7/admin/admin.php:232
374
  msgid "Note: To use CAPTCHA, you need Really Simple CAPTCHA plugin installed."
375
  msgstr "Hinweis: Um Captcha zu verwenden, muss dieses Plugin installiert sein."
376
 
377
+ #: contact-form-7/admin/admin.php:241
378
  msgid "Contact form created."
379
  msgstr "Kontaktformular erstellt"
380
 
381
+ #: contact-form-7/admin/admin.php:244
382
  msgid "Contact form saved."
383
  msgstr "Kontaktformular gespeichert"
384
 
385
+ #: contact-form-7/admin/admin.php:247
386
  msgid "Contact form deleted."
387
  msgstr "Kontaktformular gelöscht"
388
 
389
+ #: contact-form-7/admin/admin.php:250
390
  msgid "Database table created."
391
  msgstr "Datenbanktabelle erstellt."
392
 
393
+ #: contact-form-7/admin/admin.php:253
394
  msgid "Failed to create database table."
395
  msgstr "Fehler beim Erstellen einer Datenbanktabelle."
396
 
397
+ #: contact-form-7/admin/admin.php:328
398
  msgid "Contact form"
399
  msgstr "Kontaktformular"
400
 
401
+ #: contact-form-7/admin/admin.php:347
402
  msgid "Settings"
403
  msgstr "Einstellungen"
404
 
405
+ #: contact-form-7/admin/admin.php:366
406
  msgid "Contact Form 7 needs your support. Please donate today."
407
  msgstr "Contact Form 7 braucht Ihre Unterstützung. Bitte spenden Sie noch heute."
408
 
409
+ #: contact-form-7/admin/admin.php:367
410
  msgid "Is this plugin useful for you? If you like it, please help the developer."
411
  msgstr "Ist dieses Plugin nützlich für Sie? Wenn es Ihnen gefällt, helfen Sie dem Entwickler."
412
 
413
+ #: contact-form-7/admin/admin.php:368
414
  msgid "Your contribution is needed for making this plugin better."
415
  msgstr "Ihr Beitrag ist für die Herstellung dieses Plugin sehr nützlich."
416
 
417
+ #: contact-form-7/admin/admin.php:369
418
  msgid "Developing a plugin and providing user support is really hard work. Please help."
419
  msgstr "Die Entwicklung eines Plugins sowie die vielen Support Anfragen verbrauchen viel Zeit. Helfen Sie uns mit einer Spende."
420
 
421
+ #: contact-form-7/includes/classes.php:552
422
  msgid "Untitled"
423
  msgstr "Ohne Titel"
424
 
496
  msgid "Send"
497
  msgstr "Senden"
498
 
499
+ #: contact-form-7/includes/functions.php:51
500
+ msgid "This mail is created by Contact Form 7 plugin for WordPress."
501
+ msgstr "Dieses Mail ist vom Wordpress Plugin Contact Form 7 erstellt."
502
+
503
  #: contact-form-7/modules/captcha.php:62
504
  msgid "To use CAPTCHA, you need <a href=\"http://wordpress.org/extend/plugins/really-simple-captcha/\">Really Simple CAPTCHA</a> plugin installed."
505
  msgstr "Um den Captcha Code anzuzeigen, muss dieses <a href=\"http://wordpress.org/extend/plugins/really-simple-captcha/\">Plugin</a> installiert sein."
languages/wpcf7-he_IL.mo CHANGED
Binary file
languages/wpcf7-he_IL.po CHANGED
@@ -2,7 +2,7 @@ msgid ""
2
  msgstr ""
3
  "Project-Id-Version: contactform7\n"
4
  "Report-Msgid-Bugs-To: \n"
5
- "POT-Creation-Date: 2008-08-10 18:56+0900\n"
6
  "PO-Revision-Date: \n"
7
  "Last-Translator: Yaron Ofer <info@gadgetguru.co.il>\n"
8
  "Language-Team: GadgetGuru DevTeam <info@gadgetguru.co.il>\n"
@@ -13,294 +13,497 @@ msgstr ""
13
  "X-Poedit-Country: ISRAEL\n"
14
  "X-Poedit-SourceCharset: utf-8\n"
15
 
16
- #: contact-form-7/wp-contact-form-7.php:309
17
- msgid "Contact form"
18
- msgstr "טופס צור קשר"
 
 
 
 
 
19
 
20
- #: contact-form-7/wp-contact-form-7.php:403
21
- #: contact-form-7/includes/admin-panel.php:5
 
 
22
  msgid "Contact Form 7"
23
  msgstr "Contact Form 7"
24
 
25
- #: contact-form-7/wp-contact-form-7.php:419
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
26
  msgid "optional"
27
  msgstr "אופציונלי"
28
 
29
- #: contact-form-7/wp-contact-form-7.php:420
30
  msgid "Generate Tag"
31
  msgstr "צור תג"
32
 
33
- #: contact-form-7/wp-contact-form-7.php:421
34
  msgid "Text field"
35
  msgstr "שדה טקסט"
36
 
37
- #: contact-form-7/wp-contact-form-7.php:422
38
  msgid "Email field"
39
  msgstr "שדה דואר אלקטרוני"
40
 
41
- #: contact-form-7/wp-contact-form-7.php:423
42
  msgid "Text area"
43
  msgstr "אזור טקסט"
44
 
45
- #: contact-form-7/wp-contact-form-7.php:424
46
  msgid "Drop-down menu"
47
  msgstr "תפריט נפתח"
48
 
49
- #: contact-form-7/wp-contact-form-7.php:425
50
  msgid "Checkboxes"
51
  msgstr "תיבת בחירה"
52
 
53
- #: contact-form-7/wp-contact-form-7.php:426
54
  msgid "Radio buttons"
55
  msgstr "כפתורי רדיו"
56
 
57
- #: contact-form-7/wp-contact-form-7.php:427
58
  msgid "Acceptance"
59
  msgstr "כפתור אישרור"
60
 
61
- #: contact-form-7/wp-contact-form-7.php:428
62
  msgid "Make this checkbox checked by default?"
63
  msgstr "הפוך את תיבת הבחירה מסומנת כברירת מחדל?"
64
 
65
- #: contact-form-7/wp-contact-form-7.php:429
66
  msgid "Make this checkbox work inversely?"
67
  msgstr "לשנות שתיבת הבחירה תעבוד הפוך?"
68
 
69
- #: contact-form-7/wp-contact-form-7.php:430
70
  msgid "* That means visitor who accepts the term unchecks it."
71
  msgstr "* כלומר, גולש שמקבל את התנאי צריך להסיר את הסימון."
72
 
73
- #: contact-form-7/wp-contact-form-7.php:431
74
  msgid "CAPTCHA"
75
  msgstr "CAPTCHA אנטי ספאם"
76
 
77
- #: contact-form-7/wp-contact-form-7.php:432
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
78
  msgid "Submit button"
79
  msgstr "לחצן שלח"
80
 
81
- #: contact-form-7/wp-contact-form-7.php:433
82
  msgid "Name"
83
  msgstr "שם"
84
 
85
- #: contact-form-7/wp-contact-form-7.php:434
86
  msgid "Required field?"
87
  msgstr "שדה חובה?"
88
 
89
- #: contact-form-7/wp-contact-form-7.php:435
90
  msgid "Allow multiple selections?"
91
  msgstr "אפשר בחירות מרובות?"
92
 
93
- #: contact-form-7/wp-contact-form-7.php:436
94
  msgid "Insert a blank item as the first option?"
95
  msgstr "הוספת שדה ריק באפשרות הראשונה?"
96
 
97
- #: contact-form-7/wp-contact-form-7.php:437
98
  msgid "Make checkboxes exclusive?"
99
  msgstr "הפוך תיבת בחירה לבלעדית?"
100
 
101
- #: contact-form-7/wp-contact-form-7.php:438
102
  msgid "Choices"
103
  msgstr "בחירות"
104
 
105
- #: contact-form-7/wp-contact-form-7.php:439
106
  msgid "Label"
107
  msgstr "תווית"
108
 
109
- #: contact-form-7/wp-contact-form-7.php:440
110
  msgid "Default value"
111
  msgstr "ערך ברירת מחדל"
112
 
113
- #: contact-form-7/wp-contact-form-7.php:441
114
  msgid "Akismet"
115
  msgstr "Akismet - בודק תגובות זבל"
116
 
117
- #: contact-form-7/wp-contact-form-7.php:442
118
  msgid "This field requires author's name"
119
  msgstr "שדה זה דורש את השם הכותב"
120
 
121
- #: contact-form-7/wp-contact-form-7.php:443
122
  msgid "This field requires author's URL"
123
  msgstr "שדה זה דורש את הכתובת של הכותב"
124
 
125
- #: contact-form-7/wp-contact-form-7.php:444
126
  msgid "This field requires author's email address"
127
  msgstr "שדה זה דורש הדואר האלקטרוני של הכותב"
128
 
129
- #: contact-form-7/wp-contact-form-7.php:445
130
- msgid "Copy and paste this code into the form"
131
- msgstr "העתק והדבק את הקוד לתוך טופס"
132
 
133
- #: contact-form-7/wp-contact-form-7.php:446
134
  msgid "Foreground color"
135
  msgstr "צבע רקע קדמי"
136
 
137
- #: contact-form-7/wp-contact-form-7.php:447
138
  msgid "Background color"
139
  msgstr "צבע רקע"
140
 
141
- #: contact-form-7/wp-contact-form-7.php:448
142
  msgid "Image size"
143
  msgstr "גודל תמונה"
144
 
145
- #: contact-form-7/wp-contact-form-7.php:449
146
  msgid "Small"
147
  msgstr "קטנה"
148
 
149
- #: contact-form-7/wp-contact-form-7.php:450
150
  msgid "Medium"
151
  msgstr "בינונית"
152
 
153
- #: contact-form-7/wp-contact-form-7.php:451
154
  msgid "Large"
155
  msgstr "גדולה"
156
 
157
- #: contact-form-7/wp-contact-form-7.php:452
158
  msgid "Image settings"
159
  msgstr "הגדרות תמונה"
160
 
161
- #: contact-form-7/wp-contact-form-7.php:453
162
  msgid "Input field settings"
163
  msgstr "הגדרות שדה קלט"
164
 
165
- #: contact-form-7/wp-contact-form-7.php:454
166
  msgid "For image"
167
  msgstr "עבור תמונה"
168
 
169
- #: contact-form-7/wp-contact-form-7.php:455
170
  msgid "For input field"
171
  msgstr "עבור שדה קלט"
172
 
173
- #: contact-form-7/wp-contact-form-7.php:456
174
  msgid "* One choice per line."
175
  msgstr "* בכל שורה בחירה אחד."
176
 
177
- #: contact-form-7/wp-contact-form-7.php:483
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
178
  msgid "Contact form created."
179
  msgstr "נוצר טופס יצירת קשר ."
180
 
181
- #: contact-form-7/wp-contact-form-7.php:486
182
  msgid "Contact form saved."
183
  msgstr "נשמר טופס יצירת קשר."
184
 
185
- #: contact-form-7/wp-contact-form-7.php:489
186
  msgid "Contact form deleted."
187
  msgstr "הטופס נמחק."
188
 
189
- #: contact-form-7/wp-contact-form-7.php:496
190
- msgid "Untitled"
191
- msgstr "ללא כותרת"
192
 
193
- #: contact-form-7/wp-contact-form-7.php:522
194
- msgid "Your Name"
195
- msgstr "השם שלך"
196
 
197
- #: contact-form-7/wp-contact-form-7.php:522
198
- #: contact-form-7/wp-contact-form-7.php:524
199
- msgid "(required)"
200
- msgstr "(חובה)"
201
 
202
- #: contact-form-7/wp-contact-form-7.php:524
203
- msgid "Your Email"
204
- msgstr "הדואר האלקרוני שלך"
205
 
206
- #: contact-form-7/wp-contact-form-7.php:526
207
- msgid "Subject"
208
- msgstr "נושא"
209
 
210
- #: contact-form-7/wp-contact-form-7.php:528
211
- msgid "Your Message"
212
- msgstr "ההודעה שלך"
213
 
214
- #: contact-form-7/wp-contact-form-7.php:530
215
- #: contact-form-7/wp-contact-form-7.php:1046
216
- msgid "Send"
217
- msgstr "שלח"
 
 
 
 
 
 
 
218
 
219
- #: contact-form-7/wp-contact-form-7.php:559
220
  msgid "Your message was sent successfully. Thanks."
221
  msgstr "ההודעה נשלחה בהצלחה. תודה."
222
 
223
- #: contact-form-7/wp-contact-form-7.php:561
 
224
  msgid "Failed to send your message. Please try later or contact administrator by other way."
225
  msgstr "אירעה תקלה בשליחה. אנא נסה במועד מאוחר יותר או פנה למנהל המערכת בדרך אחרת."
226
 
227
- #: contact-form-7/wp-contact-form-7.php:563
228
  msgid "Validation errors occurred. Please confirm the fields and submit it again."
229
  msgstr "אירעה תקלה. נא לבדוק את השדות ולנסות לשלוח שוב."
230
 
231
- #: contact-form-7/wp-contact-form-7.php:565
232
  msgid "Please accept the terms to proceed."
233
  msgstr "לא אישרת את התנאים, נא לאשר על מנת להמשיך."
234
 
235
- #: contact-form-7/wp-contact-form-7.php:567
236
  msgid "Email address seems invalid."
237
  msgstr "כתובת האי-מייל כנראה לא תקין."
238
 
239
- #: contact-form-7/wp-contact-form-7.php:569
240
  msgid "Please fill the required field."
241
  msgstr "נא למלא את כל שדות החובה."
242
 
243
- #: contact-form-7/wp-contact-form-7.php:571
244
  msgid "Your entered code is incorrect."
245
  msgstr "הקוד שהזנת שגוי."
246
 
247
- #: contact-form-7/includes/admin-panel.php:16
248
- msgid "Add new"
249
- msgstr "הוסף טופס חדש"
250
 
251
- #: contact-form-7/includes/admin-panel.php:32
252
- msgid "Copy and paste this code into your post content."
253
- msgstr "העתק והדבק את הקוד לתוכן העמוד/כתבה שלך."
254
 
255
- #: contact-form-7/includes/admin-panel.php:38
256
- msgid "Form"
257
- msgstr "טופס"
258
 
259
- #: contact-form-7/includes/admin-panel.php:42
260
- msgid "Mail"
261
- msgstr "דואר"
262
 
263
- #: contact-form-7/includes/admin-panel.php:44
264
- #: contact-form-7/includes/admin-panel.php:65
265
- msgid "To:"
266
- msgstr "אל:"
267
 
268
- #: contact-form-7/includes/admin-panel.php:48
269
- #: contact-form-7/includes/admin-panel.php:69
270
- msgid "From:"
271
- msgstr "מאת:"
272
 
273
- #: contact-form-7/includes/admin-panel.php:52
274
- #: contact-form-7/includes/admin-panel.php:73
275
- msgid "Subject:"
276
- msgstr "נושא:"
277
 
278
- #: contact-form-7/includes/admin-panel.php:56
279
- #: contact-form-7/includes/admin-panel.php:77
280
- msgid "Message body:"
281
- msgstr "תוכן ההודעה:"
282
 
283
- #: contact-form-7/includes/admin-panel.php:61
284
- msgid "Mail (2)"
285
- msgstr "דואר 2"
286
 
287
- #: contact-form-7/includes/admin-panel.php:63
288
- msgid "Use mail (2)"
289
- msgstr "שימוש בדואר (2)"
290
 
291
- #: contact-form-7/includes/admin-panel.php:85
292
- msgid "Save"
293
- msgstr "שמור"
294
 
295
- #: contact-form-7/includes/admin-panel.php:92
296
- msgid "Delete this contact form"
297
- msgstr "מחק טופס זה"
298
 
299
- #: contact-form-7/includes/admin-panel.php:93
300
- msgid ""
301
- "You are about to delete this contact form.\n"
302
- " 'Cancel' to stop, 'OK' to delete."
303
- msgstr ""
304
- "אתה עומד למחוק את הטופס .\n"
305
- "לחץ 'ביטול' כדי לעצור, 'אישור' כדי למחוק."
306
 
2
  msgstr ""
3
  "Project-Id-Version: contactform7\n"
4
  "Report-Msgid-Bugs-To: \n"
5
+ "POT-Creation-Date: 2009-09-26 04:03+0900\n"
6
  "PO-Revision-Date: \n"
7
  "Last-Translator: Yaron Ofer <info@gadgetguru.co.il>\n"
8
  "Language-Team: GadgetGuru DevTeam <info@gadgetguru.co.il>\n"
13
  "X-Poedit-Country: ISRAEL\n"
14
  "X-Poedit-SourceCharset: utf-8\n"
15
 
16
+ #: contact-form-7/admin/admin-panel.php:9
17
+ #, php-format
18
+ 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."
19
+ msgstr "<strong>אין טבלת מסד הנתונים עבור Contact Form 7.</ strong> חובה <a href=\"%s\">ליצור את הטבלה</a> בשביל שזה יעבוד"
20
+
21
+ #: contact-form-7/admin/admin-panel.php:12
22
+ msgid "<strong>The database table for Contact Form 7 does not exist.</strong>"
23
+ msgstr "<strong>טבלת מסד הנתונים עבור Contact Form 7 אינה קיימת.</ strong>"
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:121
28
+ #: contact-form-7/includes/functions.php:52
29
  msgid "Contact Form 7"
30
  msgstr "Contact Form 7"
31
 
32
+ #: contact-form-7/admin/admin-panel.php:45
33
+ msgid "Add new"
34
+ msgstr "הוסף טופס חדש"
35
+
36
+ #: contact-form-7/admin/admin-panel.php:67
37
+ msgid "Copy this code and paste it into your post, page or text widget content."
38
+ msgstr "העתק קוד זה והדבק אותו לכתבה, דף ביישומון טקסט text widget."
39
+
40
+ #: contact-form-7/admin/admin-panel.php:75
41
+ #: contact-form-7/admin/admin-panel.php:332
42
+ msgid "Save"
43
+ msgstr "שמור"
44
+
45
+ #: contact-form-7/admin/admin-panel.php:82
46
+ msgid "Copy"
47
+ msgstr "להעתיק"
48
+
49
+ #: contact-form-7/admin/admin-panel.php:87
50
+ msgid "Delete"
51
+ msgstr "למחוק"
52
+
53
+ #: contact-form-7/admin/admin-panel.php:89
54
+ msgid ""
55
+ "You are about to delete this contact form.\n"
56
+ " 'Cancel' to stop, 'OK' to delete."
57
+ msgstr ""
58
+ "אתה עומד למחוק את הטופס .\n"
59
+ "לחץ 'ביטול' כדי לעצור, 'אישור' כדי למחוק."
60
+
61
+ #: contact-form-7/admin/admin-panel.php:102
62
+ msgid "Form"
63
+ msgstr "טופס"
64
+
65
+ #: contact-form-7/admin/admin-panel.php:120
66
+ msgid "Mail"
67
+ msgstr "דואר"
68
+
69
+ #: contact-form-7/admin/admin-panel.php:127
70
+ #: contact-form-7/admin/admin-panel.php:188
71
+ msgid "To:"
72
+ msgstr "אל:"
73
+
74
+ #: contact-form-7/admin/admin-panel.php:132
75
+ #: contact-form-7/admin/admin-panel.php:193
76
+ msgid "From:"
77
+ msgstr "מאת:"
78
+
79
+ #: contact-form-7/admin/admin-panel.php:137
80
+ #: contact-form-7/admin/admin-panel.php:198
81
+ msgid "Subject:"
82
+ msgstr "נושא:"
83
+
84
+ #: contact-form-7/admin/admin-panel.php:144
85
+ #: contact-form-7/admin/admin-panel.php:205
86
+ msgid "Additional headers:"
87
+ msgstr "כותרות נוספות:"
88
+
89
+ #: contact-form-7/admin/admin-panel.php:149
90
+ #: contact-form-7/admin/admin-panel.php:210
91
+ msgid "File attachments:"
92
+ msgstr "קבצים מצורפים:"
93
+
94
+ #: contact-form-7/admin/admin-panel.php:157
95
+ #: contact-form-7/admin/admin-panel.php:218
96
+ msgid "Use HTML content type"
97
+ msgstr "השתמש בתוכן מסוג HTML"
98
+
99
+ #: contact-form-7/admin/admin-panel.php:164
100
+ #: contact-form-7/admin/admin-panel.php:225
101
+ #: contact-form-7/includes/functions.php:50
102
+ msgid "Message body:"
103
+ msgstr "תוכן ההודעה:"
104
+
105
+ #: contact-form-7/admin/admin-panel.php:174
106
+ msgid "Mail (2)"
107
+ msgstr "דואר 2"
108
+
109
+ #: contact-form-7/admin/admin-panel.php:180
110
+ msgid "Use mail (2)"
111
+ msgstr "שימוש בדואר (2)"
112
+
113
+ #: contact-form-7/admin/admin-panel.php:235
114
+ msgid "Messages"
115
+ msgstr "הודעות"
116
+
117
+ #: contact-form-7/admin/admin-panel.php:243
118
+ msgid "Sender's message was sent successfully"
119
+ msgstr "ההודעה של השולח נשלחה בהצלחה."
120
+
121
+ #: contact-form-7/admin/admin-panel.php:248
122
+ msgid "Sender's message was failed to send"
123
+ msgstr "נכשל ניסיון שליחת ההודעה של השולח "
124
+
125
+ #: contact-form-7/admin/admin-panel.php:253
126
+ msgid "Akismet judged the sending activity as spamming"
127
+ msgstr "Akismet החליט שהשליחה מזוהה כמו שליחת דואר זבל"
128
+
129
+ #: contact-form-7/admin/admin-panel.php:258
130
+ msgid "Validation errors occurred"
131
+ msgstr "עלו שגיאות אימות"
132
+
133
+ #: contact-form-7/admin/admin-panel.php:263
134
+ msgid "There is a field that sender is needed to fill in"
135
+ msgstr "יש שדה שהשולח צריך למלא"
136
+
137
+ #: contact-form-7/admin/admin-panel.php:268
138
+ msgid "Email address that sender entered is invalid"
139
+ msgstr "כתובת דוא\"ל השולח שהזנת אינה חוקית"
140
+
141
+ #: contact-form-7/admin/admin-panel.php:273
142
+ msgid "There is a field of term that sender is needed to accept"
143
+ msgstr "יש שדה של תנאים שהשולח צריך לאשר"
144
+
145
+ #: contact-form-7/admin/admin-panel.php:278
146
+ msgid "Sender doesn't enter the correct answer to the quiz"
147
+ msgstr "השולח לא להזין את התשובה הנכונה לשאלה"
148
+
149
+ #: contact-form-7/admin/admin-panel.php:283
150
+ msgid "The code that sender entered does not match the CAPTCHA"
151
+ msgstr "הקוד שהשולח הזין אינו תואם את ה CAPTCHA"
152
+
153
+ #: contact-form-7/admin/admin-panel.php:288
154
+ msgid "Uploading a file fails for any reason"
155
+ msgstr "טעינת הקובץ נכשלה מסיבה כלשהי"
156
+
157
+ #: contact-form-7/admin/admin-panel.php:293
158
+ msgid "Uploaded file is not allowed file type"
159
+ msgstr "הקובץ שהועלה אינו סוג קובץ שניתן להעלות"
160
+
161
+ #: contact-form-7/admin/admin-panel.php:298
162
+ msgid "Uploaded file is too large"
163
+ msgstr "הקובץ שהועלה גדול מדי"
164
+
165
+ #: contact-form-7/admin/admin-panel.php:303
166
+ msgid "Uploading a file fails for PHP error"
167
+ msgstr "טעינת קובץ נכשל בגלל שגיאת PHP"
168
+
169
+ #: contact-form-7/admin/admin-panel.php:314
170
+ msgid "Additional Settings"
171
+ msgstr "הגדרות נוספות"
172
+
173
+ #: contact-form-7/admin/admin.php:121
174
+ msgid "Contact"
175
+ msgstr "צור קשר"
176
+
177
+ #: contact-form-7/admin/admin.php:125
178
+ msgid "Edit Contact Forms"
179
+ msgstr "עריכת טפסי צור קשר"
180
+
181
+ #: contact-form-7/admin/admin.php:125
182
+ msgid "Edit"
183
+ msgstr "עריכה"
184
+
185
+ #: contact-form-7/admin/admin.php:185
186
  msgid "optional"
187
  msgstr "אופציונלי"
188
 
189
+ #: contact-form-7/admin/admin.php:186
190
  msgid "Generate Tag"
191
  msgstr "צור תג"
192
 
193
+ #: contact-form-7/admin/admin.php:187
194
  msgid "Text field"
195
  msgstr "שדה טקסט"
196
 
197
+ #: contact-form-7/admin/admin.php:188
198
  msgid "Email field"
199
  msgstr "שדה דואר אלקטרוני"
200
 
201
+ #: contact-form-7/admin/admin.php:189
202
  msgid "Text area"
203
  msgstr "אזור טקסט"
204
 
205
+ #: contact-form-7/admin/admin.php:190
206
  msgid "Drop-down menu"
207
  msgstr "תפריט נפתח"
208
 
209
+ #: contact-form-7/admin/admin.php:191
210
  msgid "Checkboxes"
211
  msgstr "תיבת בחירה"
212
 
213
+ #: contact-form-7/admin/admin.php:192
214
  msgid "Radio buttons"
215
  msgstr "כפתורי רדיו"
216
 
217
+ #: contact-form-7/admin/admin.php:193
218
  msgid "Acceptance"
219
  msgstr "כפתור אישרור"
220
 
221
+ #: contact-form-7/admin/admin.php:194
222
  msgid "Make this checkbox checked by default?"
223
  msgstr "הפוך את תיבת הבחירה מסומנת כברירת מחדל?"
224
 
225
+ #: contact-form-7/admin/admin.php:195
226
  msgid "Make this checkbox work inversely?"
227
  msgstr "לשנות שתיבת הבחירה תעבוד הפוך?"
228
 
229
+ #: contact-form-7/admin/admin.php:196
230
  msgid "* That means visitor who accepts the term unchecks it."
231
  msgstr "* כלומר, גולש שמקבל את התנאי צריך להסיר את הסימון."
232
 
233
+ #: contact-form-7/admin/admin.php:197
234
  msgid "CAPTCHA"
235
  msgstr "CAPTCHA אנטי ספאם"
236
 
237
+ #: contact-form-7/admin/admin.php:198
238
+ msgid "Quiz"
239
+ msgstr "שאלה"
240
+
241
+ #: contact-form-7/admin/admin.php:199
242
+ msgid "Quizzes"
243
+ msgstr "שאלות"
244
+
245
+ #: contact-form-7/admin/admin.php:200
246
+ msgid "* quiz|answer (e.g. 1+1=?|2)"
247
+ msgstr "* שאלה | תשובה (כגון . 1+1=?|2)"
248
+
249
+ #: contact-form-7/admin/admin.php:201
250
+ msgid "File upload"
251
+ msgstr "העלאת קבצים"
252
+
253
+ #: contact-form-7/admin/admin.php:202
254
+ msgid "bytes"
255
+ msgstr "bytes"
256
+
257
+ #: contact-form-7/admin/admin.php:203
258
  msgid "Submit button"
259
  msgstr "לחצן שלח"
260
 
261
+ #: contact-form-7/admin/admin.php:204
262
  msgid "Name"
263
  msgstr "שם"
264
 
265
+ #: contact-form-7/admin/admin.php:205
266
  msgid "Required field?"
267
  msgstr "שדה חובה?"
268
 
269
+ #: contact-form-7/admin/admin.php:206
270
  msgid "Allow multiple selections?"
271
  msgstr "אפשר בחירות מרובות?"
272
 
273
+ #: contact-form-7/admin/admin.php:207
274
  msgid "Insert a blank item as the first option?"
275
  msgstr "הוספת שדה ריק באפשרות הראשונה?"
276
 
277
+ #: contact-form-7/admin/admin.php:208
278
  msgid "Make checkboxes exclusive?"
279
  msgstr "הפוך תיבת בחירה לבלעדית?"
280
 
281
+ #: contact-form-7/admin/admin.php:209
282
  msgid "Choices"
283
  msgstr "בחירות"
284
 
285
+ #: contact-form-7/admin/admin.php:210
286
  msgid "Label"
287
  msgstr "תווית"
288
 
289
+ #: contact-form-7/admin/admin.php:211
290
  msgid "Default value"
291
  msgstr "ערך ברירת מחדל"
292
 
293
+ #: contact-form-7/admin/admin.php:212
294
  msgid "Akismet"
295
  msgstr "Akismet - בודק תגובות זבל"
296
 
297
+ #: contact-form-7/admin/admin.php:213
298
  msgid "This field requires author's name"
299
  msgstr "שדה זה דורש את השם הכותב"
300
 
301
+ #: contact-form-7/admin/admin.php:214
302
  msgid "This field requires author's URL"
303
  msgstr "שדה זה דורש את הכתובת של הכותב"
304
 
305
+ #: contact-form-7/admin/admin.php:215
306
  msgid "This field requires author's email address"
307
  msgstr "שדה זה דורש הדואר האלקטרוני של הכותב"
308
 
309
+ #: contact-form-7/admin/admin.php:216
310
+ msgid "Copy this code and paste it into the form left."
311
+ msgstr "עתק קוד זה והדבק אותו בצידו השמאלי של הטופס."
312
 
313
+ #: contact-form-7/admin/admin.php:217
314
  msgid "Foreground color"
315
  msgstr "צבע רקע קדמי"
316
 
317
+ #: contact-form-7/admin/admin.php:218
318
  msgid "Background color"
319
  msgstr "צבע רקע"
320
 
321
+ #: contact-form-7/admin/admin.php:219
322
  msgid "Image size"
323
  msgstr "גודל תמונה"
324
 
325
+ #: contact-form-7/admin/admin.php:220
326
  msgid "Small"
327
  msgstr "קטנה"
328
 
329
+ #: contact-form-7/admin/admin.php:221
330
  msgid "Medium"
331
  msgstr "בינונית"
332
 
333
+ #: contact-form-7/admin/admin.php:222
334
  msgid "Large"
335
  msgstr "גדולה"
336
 
337
+ #: contact-form-7/admin/admin.php:223
338
  msgid "Image settings"
339
  msgstr "הגדרות תמונה"
340
 
341
+ #: contact-form-7/admin/admin.php:224
342
  msgid "Input field settings"
343
  msgstr "הגדרות שדה קלט"
344
 
345
+ #: contact-form-7/admin/admin.php:225
346
  msgid "For image"
347
  msgstr "עבור תמונה"
348
 
349
+ #: contact-form-7/admin/admin.php:226
350
  msgid "For input field"
351
  msgstr "עבור שדה קלט"
352
 
353
+ #: contact-form-7/admin/admin.php:227
354
  msgid "* One choice per line."
355
  msgstr "* בכל שורה בחירה אחד."
356
 
357
+ #: contact-form-7/admin/admin.php:228
358
+ msgid "Show"
359
+ msgstr "להציג"
360
+
361
+ #: contact-form-7/admin/admin.php:229
362
+ msgid "Hide"
363
+ msgstr "להסתיר"
364
+
365
+ #: contact-form-7/admin/admin.php:230
366
+ msgid "File size limit"
367
+ msgstr "גודל קובץ מקסימלי"
368
+
369
+ #: contact-form-7/admin/admin.php:231
370
+ msgid "Acceptable file types"
371
+ msgstr "סוגי קבצים מקובלים"
372
+
373
+ #: contact-form-7/admin/admin.php:232
374
+ msgid "Note: To use CAPTCHA, you need Really Simple CAPTCHA plugin installed."
375
+ msgstr "הערה: כדי להשתמש CAPTCHA, אתה צריך את התוסף Really Simple CAPTCHA מותקן."
376
+
377
+ #: contact-form-7/admin/admin.php:241
378
  msgid "Contact form created."
379
  msgstr "נוצר טופס יצירת קשר ."
380
 
381
+ #: contact-form-7/admin/admin.php:244
382
  msgid "Contact form saved."
383
  msgstr "נשמר טופס יצירת קשר."
384
 
385
+ #: contact-form-7/admin/admin.php:247
386
  msgid "Contact form deleted."
387
  msgstr "הטופס נמחק."
388
 
389
+ #: contact-form-7/admin/admin.php:250
390
+ msgid "Database table created."
391
+ msgstr "נוצרה טבלת מסד נתונים."
392
 
393
+ #: contact-form-7/admin/admin.php:253
394
+ msgid "Failed to create database table."
395
+ msgstr "נכשל ניסיון ליצור טבלת מסד נתונים."
396
 
397
+ #: contact-form-7/admin/admin.php:328
398
+ msgid "Contact form"
399
+ msgstr "טופס צור קשר"
 
400
 
401
+ #: contact-form-7/admin/admin.php:347
402
+ msgid "Settings"
403
+ msgstr "הגדרות"
404
 
405
+ #: contact-form-7/admin/admin.php:366
406
+ msgid "Contact Form 7 needs your support. Please donate today."
407
+ msgstr "Contact Form 7 זקוק לתמיכה שלך. בבקשה תרום היום."
408
 
409
+ #: contact-form-7/admin/admin.php:367
410
+ msgid "Is this plugin useful for you? If you like it, please help the developer."
411
+ msgstr "האם תוסף זה שימושי בשבילך? אם אתה אוהב אותו, בבקשה לסייע למפתח."
412
 
413
+ #: contact-form-7/admin/admin.php:368
414
+ msgid "Your contribution is needed for making this plugin better."
415
+ msgstr "יש צורך בתומתך על מנת שהתוסף יהיה טוב יותר."
416
+
417
+ #: contact-form-7/admin/admin.php:369
418
+ msgid "Developing a plugin and providing user support is really hard work. Please help."
419
+ msgstr "פיתוח תוסף ומתן תמיכה למשתמשים זו עבודה ממש קשה. אנא עזור."
420
+
421
+ #: contact-form-7/includes/classes.php:552
422
+ msgid "Untitled"
423
+ msgstr "ללא כותרת"
424
 
425
+ #: contact-form-7/includes/functions.php:6
426
  msgid "Your message was sent successfully. Thanks."
427
  msgstr "ההודעה נשלחה בהצלחה. תודה."
428
 
429
+ #: contact-form-7/includes/functions.php:8
430
+ #: contact-form-7/includes/functions.php:10
431
  msgid "Failed to send your message. Please try later or contact administrator by other way."
432
  msgstr "אירעה תקלה בשליחה. אנא נסה במועד מאוחר יותר או פנה למנהל המערכת בדרך אחרת."
433
 
434
+ #: contact-form-7/includes/functions.php:12
435
  msgid "Validation errors occurred. Please confirm the fields and submit it again."
436
  msgstr "אירעה תקלה. נא לבדוק את השדות ולנסות לשלוח שוב."
437
 
438
+ #: contact-form-7/includes/functions.php:14
439
  msgid "Please accept the terms to proceed."
440
  msgstr "לא אישרת את התנאים, נא לאשר על מנת להמשיך."
441
 
442
+ #: contact-form-7/includes/functions.php:16
443
  msgid "Email address seems invalid."
444
  msgstr "כתובת האי-מייל כנראה לא תקין."
445
 
446
+ #: contact-form-7/includes/functions.php:18
447
  msgid "Please fill the required field."
448
  msgstr "נא למלא את כל שדות החובה."
449
 
450
+ #: contact-form-7/includes/functions.php:20
451
  msgid "Your entered code is incorrect."
452
  msgstr "הקוד שהזנת שגוי."
453
 
454
+ #: contact-form-7/includes/functions.php:22
455
+ msgid "Your answer is not correct."
456
+ msgstr "התשובה שלך לא נכונה."
457
 
458
+ #: contact-form-7/includes/functions.php:24
459
+ msgid "Failed to upload file."
460
+ msgstr "טעינת הקובץ נכשלה."
461
 
462
+ #: contact-form-7/includes/functions.php:26
463
+ msgid "This file type is not allowed."
464
+ msgstr "סוג קובץ אסור."
465
 
466
+ #: contact-form-7/includes/functions.php:28
467
+ msgid "This file is too large."
468
+ msgstr "הקובץ גדול מדי, הגבול הוא %s"
469
 
470
+ #: contact-form-7/includes/functions.php:30
471
+ msgid "Failed to upload file. Error occurred."
472
+ msgstr "נכשלה טעינת הקובץ. אירעה שגיאה."
 
473
 
474
+ #: contact-form-7/includes/functions.php:35
475
+ msgid "Your Name"
476
+ msgstr "השם שלך"
 
477
 
478
+ #: contact-form-7/includes/functions.php:35
479
+ #: contact-form-7/includes/functions.php:37
480
+ msgid "(required)"
481
+ msgstr "(חובה)"
482
 
483
+ #: contact-form-7/includes/functions.php:37
484
+ msgid "Your Email"
485
+ msgstr "הדואר האלקרוני שלך"
 
486
 
487
+ #: contact-form-7/includes/functions.php:39
488
+ msgid "Subject"
489
+ msgstr "נושא"
490
 
491
+ #: contact-form-7/includes/functions.php:41
492
+ msgid "Your Message"
493
+ msgstr "ההודעה שלך"
494
 
495
+ #: contact-form-7/includes/functions.php:43
496
+ msgid "Send"
497
+ msgstr "שלח"
498
 
499
+ #: contact-form-7/includes/functions.php:51
500
+ msgid "This mail is created by Contact Form 7 plugin for WordPress."
501
+ msgstr "דואר זה נוצר על ידי טופס Contact Form 7 עבור WordPress."
502
 
503
+ #: contact-form-7/modules/captcha.php:62
504
+ msgid "To use CAPTCHA, you need <a href=\"http://wordpress.org/extend/plugins/really-simple-captcha/\">Really Simple CAPTCHA</a> plugin installed."
505
+ msgstr "כדי להשתמש ב CAPTCHA, עליך להתקין את התוסף <a href=\"http://wordpress.org/extend/plugins/really-simple-captcha/\">."
506
+
507
+ #~ msgid "Delete this contact form"
508
+ #~ msgstr "מחק טופס זה"
 
509
 
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-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"
@@ -19,7 +19,7 @@ msgstr ""
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>Non esiste nel database la tabella di Contact Form 7t.</strong> Dovrai <a href=\"%s\">creare la tabella</a> affinché possa funzionare."
23
 
24
  #: contact-form-7/admin/admin-panel.php:12
25
  msgid "<strong>The database table for Contact Form 7 does not exist.</strong>"
@@ -27,7 +27,8 @@ 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:119
 
31
  msgid "Contact Form 7"
32
  msgstr "Contact Form 7"
33
 
@@ -86,7 +87,7 @@ msgstr "Oggetto:"
86
  #: contact-form-7/admin/admin-panel.php:144
87
  #: contact-form-7/admin/admin-panel.php:205
88
  msgid "Additional headers:"
89
- msgstr "Intestazioni aggiuntive"
90
 
91
  #: contact-form-7/admin/admin-panel.php:149
92
  #: contact-form-7/admin/admin-panel.php:210
@@ -100,6 +101,7 @@ msgstr "Utilizza contenuti in 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 "Corpo del messaggio:"
105
 
@@ -171,255 +173,255 @@ msgstr "Non é stato possibile caricare il file (errore PHP)"
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
 
@@ -438,7 +440,7 @@ msgstr "Si é verificato un errore di convalida. Controlla i campi obbligatori e
438
 
439
  #: contact-form-7/includes/functions.php:14
440
  msgid "Please accept the terms to proceed."
441
- msgstr "Accetta i termini prima di procedere"
442
 
443
  #: contact-form-7/includes/functions.php:16
444
  msgid "Email address seems invalid."
@@ -446,27 +448,27 @@ msgstr "Pare che l'indirizzo email non sia valido."
446
 
447
  #: contact-form-7/includes/functions.php:18
448
  msgid "Please fill the required field."
449
- msgstr "Riempire tutti i campi richiesti. Grazie"
450
 
451
  #: contact-form-7/includes/functions.php:20
452
  msgid "Your entered code is incorrect."
453
- msgstr "Il codice che hai inserito non è valido"
454
 
455
  #: contact-form-7/includes/functions.php:22
456
  msgid "Your answer is not correct."
457
- msgstr "La risposta che hai inserito non é corretta"
458
 
459
  #: contact-form-7/includes/functions.php:24
460
  msgid "Failed to upload file."
461
- msgstr "Si é verificato un errore durante il caricamento del file"
462
 
463
  #: contact-form-7/includes/functions.php:26
464
  msgid "This file type is not allowed."
465
- msgstr "Questo tipo di file non é permesso"
466
 
467
  #: contact-form-7/includes/functions.php:28
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."
@@ -497,6 +499,10 @@ msgstr "Il tuo messaggio"
497
  msgid "Send"
498
  msgstr "Invia"
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 l'utilizzo del CAPTCHA é necessaria l'installazione del plugin <a href=\"http://wordpress.org/extend/plugins/really-simple-captcha/\">Really Simple CAPTCHA</a>."
2
  msgstr ""
3
  "Project-Id-Version: WP Contact Form 7 in italiano\n"
4
  "Report-Msgid-Bugs-To: \n"
5
+ "POT-Creation-Date: 2009-09-26 04:03+0900\n"
6
+ "PO-Revision-Date: 2009-09-25 21:46+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"
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>Non esiste nel database la tabella di Contact Form 7.</strong> Dovrai <a href=\"%s\">creare la tabella</a> affinché possa funzionare."
23
 
24
  #: contact-form-7/admin/admin-panel.php:12
25
  msgid "<strong>The database table for Contact Form 7 does not exist.</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:121
31
+ #: contact-form-7/includes/functions.php:52
32
  msgid "Contact Form 7"
33
  msgstr "Contact Form 7"
34
 
87
  #: contact-form-7/admin/admin-panel.php:144
88
  #: contact-form-7/admin/admin-panel.php:205
89
  msgid "Additional headers:"
90
+ msgstr "Intestazioni aggiuntive:"
91
 
92
  #: contact-form-7/admin/admin-panel.php:149
93
  #: contact-form-7/admin/admin-panel.php:210
101
 
102
  #: contact-form-7/admin/admin-panel.php:164
103
  #: contact-form-7/admin/admin-panel.php:225
104
+ #: contact-form-7/includes/functions.php:50
105
  msgid "Message body:"
106
  msgstr "Corpo del messaggio:"
107
 
173
  msgid "Additional Settings"
174
  msgstr "Impostazioni aggiuntive"
175
 
176
+ #: contact-form-7/admin/admin.php:121
177
  msgid "Contact"
178
  msgstr "C F 7"
179
 
180
+ #: contact-form-7/admin/admin.php:125
181
  msgid "Edit Contact Forms"
182
  msgstr "Modifica Contact Forms"
183
 
184
+ #: contact-form-7/admin/admin.php:125
185
  msgid "Edit"
186
  msgstr "Modifica"
187
 
188
+ #: contact-form-7/admin/admin.php:185
189
  msgid "optional"
190
  msgstr "facoltativo"
191
 
192
+ #: contact-form-7/admin/admin.php:186
193
  msgid "Generate Tag"
194
  msgstr "Genera tag"
195
 
196
+ #: contact-form-7/admin/admin.php:187
197
  msgid "Text field"
198
  msgstr "Campo testo"
199
 
200
+ #: contact-form-7/admin/admin.php:188
201
  msgid "Email field"
202
  msgstr "Campo email"
203
 
204
+ #: contact-form-7/admin/admin.php:189
205
  msgid "Text area"
206
  msgstr "Area di testo"
207
 
208
+ #: contact-form-7/admin/admin.php:190
209
  msgid "Drop-down menu"
210
+ msgstr "Menu a cascata"
211
 
212
+ #: contact-form-7/admin/admin.php:191
213
  msgid "Checkboxes"
214
  msgstr "Caselle di verifica"
215
 
216
+ #: contact-form-7/admin/admin.php:192
217
  msgid "Radio buttons"
218
+ msgstr "Radio button"
219
 
220
+ #: contact-form-7/admin/admin.php:193
221
  msgid "Acceptance"
222
  msgstr "Consenso"
223
 
224
+ #: contact-form-7/admin/admin.php:194
225
  msgid "Make this checkbox checked by default?"
226
  msgstr "Desideri che questa casella di verifica sia selezionata (predefinito)?"
227
 
228
+ #: contact-form-7/admin/admin.php:195
229
  msgid "Make this checkbox work inversely?"
230
  msgstr "Desideri che questa casella di verifica funzioni in modalità inversa?"
231
 
232
+ #: contact-form-7/admin/admin.php:196
233
  msgid "* That means visitor who accepts the term unchecks it."
234
  msgstr "* Ciò indica che il visitatore dovrà de-selezionare la casella per esprimere il proprio consenso."
235
 
236
+ #: contact-form-7/admin/admin.php:197
237
  msgid "CAPTCHA"
238
  msgstr "CAPTCHA"
239
 
240
+ #: contact-form-7/admin/admin.php:198
241
  msgid "Quiz"
242
  msgstr "Quesito"
243
 
244
+ #: contact-form-7/admin/admin.php:199
245
  msgid "Quizzes"
246
  msgstr "Quesiti"
247
 
248
+ #: contact-form-7/admin/admin.php:200
249
  msgid "* quiz|answer (e.g. 1+1=?|2)"
250
+ msgstr "* quesito|risposta (ad esempio: 1+1=?|2)"
251
 
252
+ #: contact-form-7/admin/admin.php:201
253
  msgid "File upload"
254
+ msgstr "Upload file"
255
 
256
+ #: contact-form-7/admin/admin.php:202
257
  msgid "bytes"
258
  msgstr "bytes"
259
 
260
+ #: contact-form-7/admin/admin.php:203
261
  msgid "Submit button"
262
  msgstr "Pulsante di invio"
263
 
264
+ #: contact-form-7/admin/admin.php:204
265
  msgid "Name"
266
  msgstr "Nome"
267
 
268
+ #: contact-form-7/admin/admin.php:205
269
  msgid "Required field?"
270
  msgstr "Campi obbligatori?"
271
 
272
+ #: contact-form-7/admin/admin.php:206
273
  msgid "Allow multiple selections?"
274
  msgstr "Desideri permettere le selezioni multiple?"
275
 
276
+ #: contact-form-7/admin/admin.php:207
277
  msgid "Insert a blank item as the first option?"
278
  msgstr "Desideri lasciare in bianco la prima opzione?"
279
 
280
+ #: contact-form-7/admin/admin.php:208
281
  msgid "Make checkboxes exclusive?"
282
  msgstr "Desideri escludere le caselle di verifica?"
283
 
284
+ #: contact-form-7/admin/admin.php:209
285
  msgid "Choices"
286
  msgstr "Opzioni"
287
 
288
+ #: contact-form-7/admin/admin.php:210
289
  msgid "Label"
290
  msgstr "Etichetta"
291
 
292
+ #: contact-form-7/admin/admin.php:211
293
  msgid "Default value"
294
  msgstr "Valore predefinito"
295
 
296
+ #: contact-form-7/admin/admin.php:212
297
  msgid "Akismet"
298
  msgstr "Akismet"
299
 
300
+ #: contact-form-7/admin/admin.php:213
301
  msgid "This field requires author's name"
302
  msgstr "Questo campo necessita del nome autore"
303
 
304
+ #: contact-form-7/admin/admin.php:214
305
  msgid "This field requires author's URL"
306
  msgstr "Questo campo necessita dell'URL autore"
307
 
308
+ #: contact-form-7/admin/admin.php:215
309
  msgid "This field requires author's email address"
310
  msgstr "Questo campo necessita dell'indirizzo email autore"
311
 
312
+ #: contact-form-7/admin/admin.php:216
313
  msgid "Copy this code and paste it into the form left."
314
  msgstr "Copia questo codice ed incollalo nel modulo a sinistra."
315
 
316
+ #: contact-form-7/admin/admin.php:217
317
  msgid "Foreground color"
318
  msgstr "Colore di primo piano"
319
 
320
+ #: contact-form-7/admin/admin.php:218
321
  msgid "Background color"
322
  msgstr "Colore di sfondo"
323
 
324
+ #: contact-form-7/admin/admin.php:219
325
  msgid "Image size"
326
  msgstr "Dimensione immagine"
327
 
328
+ #: contact-form-7/admin/admin.php:220
329
  msgid "Small"
330
  msgstr "Piccola"
331
 
332
+ #: contact-form-7/admin/admin.php:221
333
  msgid "Medium"
334
  msgstr "Media"
335
 
336
+ #: contact-form-7/admin/admin.php:222
337
  msgid "Large"
338
  msgstr "Grande"
339
 
340
+ #: contact-form-7/admin/admin.php:223
341
  msgid "Image settings"
342
  msgstr "Impostazioni immagine"
343
 
344
+ #: contact-form-7/admin/admin.php:224
345
  msgid "Input field settings"
346
  msgstr "Impostazione campo dati"
347
 
348
+ #: contact-form-7/admin/admin.php:225
349
  msgid "For image"
350
  msgstr "Per immagine"
351
 
352
+ #: contact-form-7/admin/admin.php:226
353
  msgid "For input field"
354
  msgstr "Per campo dati"
355
 
356
+ #: contact-form-7/admin/admin.php:227
357
  msgid "* One choice per line."
358
  msgstr "* Una opzione per linea."
359
 
360
+ #: contact-form-7/admin/admin.php:228
361
  msgid "Show"
362
  msgstr "Mostra"
363
 
364
+ #: contact-form-7/admin/admin.php:229
365
  msgid "Hide"
366
  msgstr "Nascondi"
367
 
368
+ #: contact-form-7/admin/admin.php:230
369
  msgid "File size limit"
370
  msgstr "Limite dimensione file"
371
 
372
+ #: contact-form-7/admin/admin.php:231
373
  msgid "Acceptable file types"
374
  msgstr "Tipologia di file consentiti"
375
 
376
+ #: contact-form-7/admin/admin.php:232
377
  msgid "Note: To use CAPTCHA, you need Really Simple CAPTCHA plugin installed."
378
  msgstr "Nota: per l'utilizzo del CAPTCHA é necessaria l'installazione del plugin Really Simple CAPTCHA."
379
 
380
+ #: contact-form-7/admin/admin.php:241
381
  msgid "Contact form created."
382
  msgstr "Il modulo di contatto é stato creato."
383
 
384
+ #: contact-form-7/admin/admin.php:244
385
  msgid "Contact form saved."
386
  msgstr "Il modulo di contatto é stato salvato. "
387
 
388
+ #: contact-form-7/admin/admin.php:247
389
  msgid "Contact form deleted."
390
  msgstr "Il modulo di contatto é stato cancellato. "
391
 
392
+ #: contact-form-7/admin/admin.php:250
393
  msgid "Database table created."
394
  msgstr "E' stata creata la tabella nel database."
395
 
396
+ #: contact-form-7/admin/admin.php:253
397
  msgid "Failed to create database table."
398
  msgstr "Non é stato possibile creare la tabella nel database"
399
 
400
+ #: contact-form-7/admin/admin.php:328
401
  msgid "Contact form"
402
  msgstr "Modulo di contatto"
403
 
404
+ #: contact-form-7/admin/admin.php:347
405
  msgid "Settings"
406
  msgstr "Impostazioni"
407
 
408
+ #: contact-form-7/admin/admin.php:366
409
  msgid "Contact Form 7 needs your support. Please donate today."
410
  msgstr "Contact Form 7 ha bisogno del tuo sostegno. Effettua una donazione oggi stesso."
411
 
412
+ #: contact-form-7/admin/admin.php:367
413
  msgid "Is this plugin useful for you? If you like it, please help the developer."
414
+ msgstr "Questo plugin é utile per te? Allora, aiuta lo sviluppatore."
415
 
416
+ #: contact-form-7/admin/admin.php:368
417
  msgid "Your contribution is needed for making this plugin better."
418
+ msgstr "Il tuo contributo sarà necessario per potere rendere migliore questo plugin."
419
 
420
+ #: contact-form-7/admin/admin.php:369
421
  msgid "Developing a plugin and providing user support is really hard work. Please help."
422
  msgstr "Lo sviluppo di un plugin ed il servizio di assistenza agli utenti comporta un notevole lavoro. Aiutami!"
423
 
424
+ #: contact-form-7/includes/classes.php:552
425
  msgid "Untitled"
426
  msgstr "Senza titolo"
427
 
440
 
441
  #: contact-form-7/includes/functions.php:14
442
  msgid "Please accept the terms to proceed."
443
+ msgstr "Accetta i termini prima di procedere."
444
 
445
  #: contact-form-7/includes/functions.php:16
446
  msgid "Email address seems invalid."
448
 
449
  #: contact-form-7/includes/functions.php:18
450
  msgid "Please fill the required field."
451
+ msgstr "Compila tutti i campi richiesti. Grazie"
452
 
453
  #: contact-form-7/includes/functions.php:20
454
  msgid "Your entered code is incorrect."
455
+ msgstr "Il codice che hai inserito non è valido."
456
 
457
  #: contact-form-7/includes/functions.php:22
458
  msgid "Your answer is not correct."
459
+ msgstr "La risposta che hai inserito non é corretta."
460
 
461
  #: contact-form-7/includes/functions.php:24
462
  msgid "Failed to upload file."
463
+ msgstr "Si é verificato un errore durante il caricamento del file."
464
 
465
  #: contact-form-7/includes/functions.php:26
466
  msgid "This file type is not allowed."
467
+ msgstr "Questo tipo di file non é permesso."
468
 
469
  #: contact-form-7/includes/functions.php:28
470
  msgid "This file is too large."
471
+ msgstr "Questo file é troppo grande."
472
 
473
  #: contact-form-7/includes/functions.php:30
474
  msgid "Failed to upload file. Error occurred."
499
  msgid "Send"
500
  msgstr "Invia"
501
 
502
+ #: contact-form-7/includes/functions.php:51
503
+ msgid "This mail is created by Contact Form 7 plugin for WordPress."
504
+ msgstr "Questa email é stata creata con il plugin Contact Form 7"
505
+
506
  #: contact-form-7/modules/captcha.php:62
507
  msgid "To use CAPTCHA, you need <a href=\"http://wordpress.org/extend/plugins/really-simple-captcha/\">Really Simple CAPTCHA</a> plugin installed."
508
  msgstr "Per l'utilizzo del CAPTCHA é necessaria l'installazione del plugin <a href=\"http://wordpress.org/extend/plugins/really-simple-captcha/\">Really Simple CAPTCHA</a>."
languages/wpcf7-zh_TW.mo CHANGED
Binary file
languages/wpcf7-zh_TW.po CHANGED
@@ -2,7 +2,7 @@ msgid ""
2
  msgstr ""
3
  "Project-Id-Version: Contact Form 1.9.2.2 正體中文語系檔\n"
4
  "Report-Msgid-Bugs-To: \n"
5
- "POT-Creation-Date: 2009-05-31 23:05+0900\n"
6
  "PO-Revision-Date: \n"
7
  "Last-Translator: James Wu <admin@jameswublog.com>\n"
8
  "Language-Team: http://jameswublog.com <phptech@gmail.com>\n"
@@ -14,37 +14,44 @@ msgstr ""
14
  "X-Poedit-Country: TAIWAN\n"
15
  "X-Poedit-SourceCharset: utf-8\n"
16
 
17
- #: contact-form-7/wp-contact-form-7.php:373
18
- msgid "Contact form"
19
- msgstr "聯絡表單"
 
20
 
21
- #: contact-form-7/admin/admin-panel.php:6
22
- #: contact-form-7/admin/admin.php:111
 
 
 
 
 
 
23
  msgid "Contact Form 7"
24
  msgstr "Contact Form 7"
25
 
26
- #: contact-form-7/admin/admin-panel.php:21
27
  msgid "Add new"
28
  msgstr "建立新聯絡表單"
29
 
30
- #: contact-form-7/admin/admin-panel.php:43
31
  msgid "Copy this code and paste it into your post, page or text widget content."
32
  msgstr "您可以把這段代碼複製到您的網誌文章、分頁或文字小工具(Text Widget)的內容中。"
33
 
34
- #: contact-form-7/admin/admin-panel.php:50
35
- #: contact-form-7/admin/admin-panel.php:290
36
  msgid "Save"
37
  msgstr "儲存"
38
 
39
- #: contact-form-7/admin/admin-panel.php:57
40
  msgid "Copy"
41
  msgstr "複製"
42
 
43
- #: contact-form-7/admin/admin-panel.php:61
44
  msgid "Delete"
45
  msgstr "刪除"
46
 
47
- #: contact-form-7/admin/admin-panel.php:63
48
  msgid ""
49
  "You are about to delete this contact form.\n"
50
  " 'Cancel' to stop, 'OK' to delete."
@@ -52,376 +59,369 @@ msgstr ""
52
  "您即將刪除這個聯絡表單。\n"
53
  "按「確定」刪除表單,或按「取消」取消刪除表單的動作。"
54
 
55
- #: contact-form-7/admin/admin-panel.php:78
56
  msgid "Form"
57
  msgstr "表單"
58
 
59
- #: contact-form-7/admin/admin-panel.php:98
60
  msgid "Mail"
61
  msgstr "郵件"
62
 
63
- #: contact-form-7/admin/admin-panel.php:105
64
- #: contact-form-7/admin/admin-panel.php:161
65
  msgid "To:"
66
  msgstr "收件人:"
67
 
68
- #: contact-form-7/admin/admin-panel.php:109
69
- #: contact-form-7/admin/admin-panel.php:165
70
  msgid "From:"
71
  msgstr "寄件人:"
72
 
73
- #: contact-form-7/admin/admin-panel.php:113
74
- #: contact-form-7/admin/admin-panel.php:169
75
  msgid "Subject:"
76
  msgstr "主旨:"
77
 
78
- #: contact-form-7/admin/admin-panel.php:118
79
- #: contact-form-7/admin/admin-panel.php:174
80
  msgid "Additional headers:"
81
  msgstr "額外的標頭(header) "
82
 
83
- #: contact-form-7/admin/admin-panel.php:122
84
- #: contact-form-7/admin/admin-panel.php:178
85
  msgid "File attachments:"
86
  msgstr "附加檔案:"
87
 
88
- #: contact-form-7/admin/admin-panel.php:124
89
- #: contact-form-7/admin/admin-panel.php:180
90
- msgid "(You need WordPress 2.7 or greater to use this feature)"
91
- msgstr "您必需使用WordPress 2.7或以上版本,才能使用這個功能。"
92
-
93
- #: contact-form-7/admin/admin-panel.php:132
94
- #: contact-form-7/admin/admin-panel.php:188
95
  msgid "Use HTML content type"
96
  msgstr "使用HTML內文格式"
97
 
98
- #: contact-form-7/admin/admin-panel.php:137
99
- #: contact-form-7/admin/admin-panel.php:193
 
100
  msgid "Message body:"
101
  msgstr "郵件內容:"
102
 
103
- #: contact-form-7/admin/admin-panel.php:148
104
  msgid "Mail (2)"
105
  msgstr "郵件(2)"
106
 
107
- #: contact-form-7/admin/admin-panel.php:155
108
  msgid "Use mail (2)"
109
  msgstr "使用郵件(2)"
110
 
111
- #: contact-form-7/admin/admin-panel.php:204
112
  msgid "Messages"
113
  msgstr "郵件內容"
114
 
115
- #: contact-form-7/admin/admin-panel.php:212
116
  msgid "Sender's message was sent successfully"
117
  msgstr "寄件者的信件已經成功寄出"
118
 
119
- #: contact-form-7/admin/admin-panel.php:216
120
  msgid "Sender's message was failed to send"
121
  msgstr "寄件者的信件傳送失敗"
122
 
123
- #: contact-form-7/admin/admin-panel.php:220
124
  msgid "Akismet judged the sending activity as spamming"
125
  msgstr "經Akismet機制判斷,這個寄信的動作為濫發廣告信"
126
 
127
- #: contact-form-7/admin/admin-panel.php:224
128
  msgid "Validation errors occurred"
129
  msgstr "發生認證錯誤"
130
 
131
- #: contact-form-7/admin/admin-panel.php:228
132
  msgid "There is a field that sender is needed to fill in"
133
  msgstr " 有一個必需填寫的欄位不允許空白,請寄信者再確認。"
134
 
135
- #: contact-form-7/admin/admin-panel.php:232
136
  msgid "Email address that sender entered is invalid"
137
  msgstr " 電子郵件格式不符,請寄信者再確認。"
138
 
139
- #: contact-form-7/admin/admin-panel.php:236
140
  msgid "There is a field of term that sender is needed to accept"
141
  msgstr "寄信者必需接受使用者條款"
142
 
143
- #: contact-form-7/admin/admin-panel.php:240
144
  msgid "Sender doesn't enter the correct answer to the quiz"
145
  msgstr "寄信者沒有輸入測驗題目的正確答案"
146
 
147
- #: contact-form-7/admin/admin-panel.php:244
148
  msgid "The code that sender entered does not match the CAPTCHA"
149
  msgstr "寄信者所輸入的圖片認證碼錯誤"
150
 
151
- #: contact-form-7/admin/admin-panel.php:248
152
  msgid "Uploading a file fails for any reason"
153
  msgstr "檔案上傳的過程中,因不明原因導致上傳失敗。"
154
 
155
- #: contact-form-7/admin/admin-panel.php:252
156
  msgid "Uploaded file is not allowed file type"
157
  msgstr "所上傳的檔案是不被允許的檔案種類"
158
 
159
- #: contact-form-7/admin/admin-panel.php:256
160
  msgid "Uploaded file is too large"
161
  msgstr "上傳擋案過大"
162
 
163
- #: contact-form-7/admin/admin-panel.php:269
 
 
 
 
164
  msgid "Additional Settings"
165
  msgstr "額外的設定"
166
 
167
- #: contact-form-7/admin/admin.php:157
 
 
 
 
 
 
 
 
 
 
 
 
168
  msgid "optional"
169
  msgstr "可不填"
170
 
171
- #: contact-form-7/admin/admin.php:158
172
  msgid "Generate Tag"
173
  msgstr "標籤產生器"
174
 
175
- #: contact-form-7/admin/admin.php:159
176
  msgid "Text field"
177
  msgstr "文字欄位"
178
 
179
- #: contact-form-7/admin/admin.php:160
180
  msgid "Email field"
181
  msgstr "電子郵件欄位"
182
 
183
- #: contact-form-7/admin/admin.php:161
184
  msgid "Text area"
185
  msgstr "文字區塊"
186
 
187
- #: contact-form-7/admin/admin.php:162
188
  msgid "Drop-down menu"
189
  msgstr "下拉式選單"
190
 
191
- #: contact-form-7/admin/admin.php:163
192
  msgid "Checkboxes"
193
  msgstr "核選方塊"
194
 
195
- #: contact-form-7/admin/admin.php:164
196
  msgid "Radio buttons"
197
  msgstr "選項按鈕"
198
 
199
- #: contact-form-7/admin/admin.php:165
200
  msgid "Acceptance"
201
  msgstr "接受使用條款"
202
 
203
- #: contact-form-7/admin/admin.php:166
204
  msgid "Make this checkbox checked by default?"
205
  msgstr "預設核選方塊為核取(已勾選)?"
206
 
207
- #: contact-form-7/admin/admin.php:167
208
  msgid "Make this checkbox work inversely?"
209
  msgstr "設定核取方塊被選取的狀態相反?"
210
 
211
- #: contact-form-7/admin/admin.php:168
212
  msgid "* That means visitor who accepts the term unchecks it."
213
  msgstr "*意思是如果使用者如果接受服務條款,則不需勾選核取方塊。"
214
 
215
- #: contact-form-7/admin/admin.php:169
216
  msgid "CAPTCHA"
217
  msgstr "圖片驗證"
218
 
219
- #: contact-form-7/admin/admin.php:170
220
  msgid "Quiz"
221
  msgstr "測驗題目驗證"
222
 
223
- #: contact-form-7/admin/admin.php:171
224
  msgid "Quizzes"
225
  msgstr "測驗題庫"
226
 
227
- #: contact-form-7/admin/admin.php:172
228
  msgid "* quiz|answer (e.g. 1+1=?|2)"
229
  msgstr "* 測驗題目|答案 (例如 1+1=?|2)"
230
 
231
- #: contact-form-7/admin/admin.php:173
232
  msgid "File upload"
233
  msgstr "檔案上傳"
234
 
235
- #: contact-form-7/admin/admin.php:174
236
  msgid "bytes"
237
  msgstr "位元組"
238
 
239
- #: contact-form-7/admin/admin.php:175
240
  msgid "Submit button"
241
  msgstr "提交按鈕"
242
 
243
- #: contact-form-7/admin/admin.php:176
244
  msgid "Name"
245
  msgstr "物件名稱"
246
 
247
- #: contact-form-7/admin/admin.php:177
248
  msgid "Required field?"
249
  msgstr "設定為必要欄位?"
250
 
251
- #: contact-form-7/admin/admin.php:178
252
  msgid "Allow multiple selections?"
253
  msgstr "允許在下拉式選單中,可以選擇一個以上的選項?"
254
 
255
- #: contact-form-7/admin/admin.php:179
256
  msgid "Insert a blank item as the first option?"
257
  msgstr "要插入一個空白資料欄位,作為第一個選項?"
258
 
259
- #: contact-form-7/admin/admin.php:180
260
  msgid "Make checkboxes exclusive?"
261
  msgstr "設定核取方塊,為不允許修改(唯讀)?"
262
 
263
- #: contact-form-7/admin/admin.php:181
264
  msgid "Choices"
265
  msgstr "選項"
266
 
267
- #: contact-form-7/admin/admin.php:182
268
  msgid "Label"
269
  msgstr "標籤"
270
 
271
- #: contact-form-7/admin/admin.php:183
272
  msgid "Default value"
273
  msgstr "預設值"
274
 
275
- #: contact-form-7/admin/admin.php:184
276
  msgid "Akismet"
277
  msgstr "Akismet(防止垃圾郵件的插件)"
278
 
279
- #: contact-form-7/admin/admin.php:185
280
  msgid "This field requires author's name"
281
  msgstr "這個欄位需要填寫作者的姓名"
282
 
283
- #: contact-form-7/admin/admin.php:186
284
  msgid "This field requires author's URL"
285
  msgstr "這個欄位需要填寫作者的網址"
286
 
287
- #: contact-form-7/admin/admin.php:187
288
  msgid "This field requires author's email address"
289
  msgstr "這個欄位需要填寫作者的電子郵件信箱"
290
 
291
- #: contact-form-7/admin/admin.php:188
292
  msgid "Copy this code and paste it into the form left."
293
  msgstr "把這段代碼複製後,貼到左方的表格"
294
 
295
- #: contact-form-7/admin/admin.php:189
296
  msgid "Foreground color"
297
  msgstr "前景顏色"
298
 
299
- #: contact-form-7/admin/admin.php:190
300
  msgid "Background color"
301
  msgstr "背景顏色"
302
 
303
- #: contact-form-7/admin/admin.php:191
304
  msgid "Image size"
305
  msgstr "圖片尺寸"
306
 
307
- #: contact-form-7/admin/admin.php:192
308
  msgid "Small"
309
  msgstr "小"
310
 
311
- #: contact-form-7/admin/admin.php:193
312
  msgid "Medium"
313
  msgstr "中"
314
 
315
- #: contact-form-7/admin/admin.php:194
316
  msgid "Large"
317
  msgstr "大"
318
 
319
- #: contact-form-7/admin/admin.php:195
320
  msgid "Image settings"
321
  msgstr "圖片設定"
322
 
323
- #: contact-form-7/admin/admin.php:196
324
  msgid "Input field settings"
325
  msgstr "設定輸入欄位"
326
 
327
- #: contact-form-7/admin/admin.php:197
328
  msgid "For image"
329
  msgstr "圖片使用"
330
 
331
- #: contact-form-7/admin/admin.php:198
332
  msgid "For input field"
333
  msgstr "輸入欄位使用"
334
 
335
- #: contact-form-7/admin/admin.php:199
336
  msgid "* One choice per line."
337
  msgstr "*每行只能有一個選項。"
338
 
339
- #: contact-form-7/admin/admin.php:200
340
  msgid "Show"
341
  msgstr "顯示"
342
 
343
- #: contact-form-7/admin/admin.php:201
344
  msgid "Hide"
345
  msgstr "隱藏"
346
 
347
- #: contact-form-7/admin/admin.php:202
348
  msgid "File size limit"
349
  msgstr "檔案大小限制"
350
 
351
- #: contact-form-7/admin/admin.php:203
352
  msgid "Acceptable file types"
353
  msgstr "可接受上傳檔案的種類"
354
 
355
- #: contact-form-7/admin/admin.php:204
356
  msgid "Note: To use CAPTCHA, you need Really Simple CAPTCHA plugin installed."
357
  msgstr "作者註:使用圖片驗證(CAPTCHA)的功能前,您必需先安裝\"Really Simple CAPTCHA\"這個外掛。"
358
 
359
- #: contact-form-7/admin/admin.php:223
360
  msgid "Contact form created."
361
  msgstr "已新增聯絡表單。"
362
 
363
- #: contact-form-7/admin/admin.php:226
364
  msgid "Contact form saved."
365
  msgstr "已儲存聯絡表單。"
366
 
367
- #: contact-form-7/admin/admin.php:229
368
  msgid "Contact form deleted."
369
  msgstr "已刪除聯絡表單。"
370
 
371
- #: contact-form-7/admin/admin.php:240
372
- msgid "Untitled"
373
- msgstr "無標題"
374
-
375
- #: contact-form-7/admin/admin.php:253
376
- msgid "Your Name"
377
- msgstr "您的姓名"
378
 
379
  #: contact-form-7/admin/admin.php:253
380
- #: contact-form-7/admin/admin.php:255
381
- msgid "(required)"
382
- msgstr "〈需填寫〉"
383
-
384
- #: contact-form-7/admin/admin.php:255
385
- msgid "Your Email"
386
- msgstr "您的電子郵件信箱"
387
 
388
- #: contact-form-7/admin/admin.php:257
389
- msgid "Subject"
390
- msgstr "主旨"
391
-
392
- #: contact-form-7/admin/admin.php:259
393
- msgid "Your Message"
394
- msgstr "您的信件內容"
395
-
396
- #: contact-form-7/admin/admin.php:261
397
- #: contact-form-7/includes/classes.php:411
398
- msgid "Send"
399
- msgstr "傳送"
400
 
401
- #: contact-form-7/admin/admin.php:334
402
- #, fuzzy
403
  msgid "Settings"
404
- msgstr "圖片設定"
405
 
406
- #: contact-form-7/admin/admin.php:355
407
  msgid "Contact Form 7 needs your support. Please donate today."
408
  msgstr "Contact Form 7 需要您的支持,請今天就慷慨解囊。"
409
 
410
- #: contact-form-7/admin/admin.php:356
411
  msgid "Is this plugin useful for you? If you like it, please help the developer."
412
  msgstr "您覺得本外掛實用嗎? 如果您喜歡這個外掛,請捐款支持本外掛的作者。"
413
 
414
- #: contact-form-7/admin/admin.php:357
415
  msgid "Your contribution is needed for making this plugin better."
416
  msgstr "為了讓這個外掛更好用,我們需要您的捐款。"
417
 
418
- #: contact-form-7/admin/admin.php:358
419
  msgid "Developing a plugin and providing user support is really hard work. Please help."
420
  msgstr "外掛程式的製作和幫助使用者解決技術上的問題,是很辛苦的工作。請捐款支持。"
421
 
422
- #: contact-form-7/includes/classes.php:352
423
- msgid "To use CAPTCHA, you need <a href=\"http://wordpress.org/extend/plugins/really-simple-captcha/\">Really Simple CAPTCHA</a> plugin installed."
424
- msgstr "使用圖片驗證(CAPTCHA)的功能前,您必需先安裝 <a href=\"http://wordpress.org/extend/plugins/really-simple-captcha/\">Really Simple CAPTCHA</a>這個外掛。"
425
 
426
  #: contact-form-7/includes/functions.php:6
427
  msgid "Your message was sent successfully. Thanks."
@@ -468,6 +468,45 @@ msgstr "上傳的檔案不是允許的檔案種類。"
468
  msgid "This file is too large."
469
  msgstr "上傳檔案過大。"
470
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
471
  #~ msgid "Delete this contact form"
472
  #~ msgstr "刪除這個聯絡表單"
473
 
2
  msgstr ""
3
  "Project-Id-Version: Contact Form 1.9.2.2 正體中文語系檔\n"
4
  "Report-Msgid-Bugs-To: \n"
5
+ "POT-Creation-Date: 2009-09-26 04:03+0900\n"
6
  "PO-Revision-Date: \n"
7
  "Last-Translator: James Wu <admin@jameswublog.com>\n"
8
  "Language-Team: http://jameswublog.com <phptech@gmail.com>\n"
14
  "X-Poedit-Country: TAIWAN\n"
15
  "X-Poedit-SourceCharset: utf-8\n"
16
 
17
+ #: contact-form-7/admin/admin-panel.php:9
18
+ #, php-format
19
+ 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."
20
+ msgstr "<strong>所使用的資料庫資料表並不存在。</strong> 您必需要 <a href=\"%s\">建立一個資料表後</a> ,表單才能運作。"
21
 
22
+ #: contact-form-7/admin/admin-panel.php:12
23
+ msgid "<strong>The database table for Contact Form 7 does not exist.</strong>"
24
+ msgstr "<strong>Contact Form 7 所使用的資料庫資料表並不存在。</strong>"
25
+
26
+ #: contact-form-7/admin/admin-panel.php:17
27
+ #: contact-form-7/admin/admin-panel.php:30
28
+ #: contact-form-7/admin/admin.php:121
29
+ #: contact-form-7/includes/functions.php:52
30
  msgid "Contact Form 7"
31
  msgstr "Contact Form 7"
32
 
33
+ #: contact-form-7/admin/admin-panel.php:45
34
  msgid "Add new"
35
  msgstr "建立新聯絡表單"
36
 
37
+ #: contact-form-7/admin/admin-panel.php:67
38
  msgid "Copy this code and paste it into your post, page or text widget content."
39
  msgstr "您可以把這段代碼複製到您的網誌文章、分頁或文字小工具(Text Widget)的內容中。"
40
 
41
+ #: contact-form-7/admin/admin-panel.php:75
42
+ #: contact-form-7/admin/admin-panel.php:332
43
  msgid "Save"
44
  msgstr "儲存"
45
 
46
+ #: contact-form-7/admin/admin-panel.php:82
47
  msgid "Copy"
48
  msgstr "複製"
49
 
50
+ #: contact-form-7/admin/admin-panel.php:87
51
  msgid "Delete"
52
  msgstr "刪除"
53
 
54
+ #: contact-form-7/admin/admin-panel.php:89
55
  msgid ""
56
  "You are about to delete this contact form.\n"
57
  " 'Cancel' to stop, 'OK' to delete."
59
  "您即將刪除這個聯絡表單。\n"
60
  "按「確定」刪除表單,或按「取消」取消刪除表單的動作。"
61
 
62
+ #: contact-form-7/admin/admin-panel.php:102
63
  msgid "Form"
64
  msgstr "表單"
65
 
66
+ #: contact-form-7/admin/admin-panel.php:120
67
  msgid "Mail"
68
  msgstr "郵件"
69
 
70
+ #: contact-form-7/admin/admin-panel.php:127
71
+ #: contact-form-7/admin/admin-panel.php:188
72
  msgid "To:"
73
  msgstr "收件人:"
74
 
75
+ #: contact-form-7/admin/admin-panel.php:132
76
+ #: contact-form-7/admin/admin-panel.php:193
77
  msgid "From:"
78
  msgstr "寄件人:"
79
 
80
+ #: contact-form-7/admin/admin-panel.php:137
81
+ #: contact-form-7/admin/admin-panel.php:198
82
  msgid "Subject:"
83
  msgstr "主旨:"
84
 
85
+ #: contact-form-7/admin/admin-panel.php:144
86
+ #: contact-form-7/admin/admin-panel.php:205
87
  msgid "Additional headers:"
88
  msgstr "額外的標頭(header) "
89
 
90
+ #: contact-form-7/admin/admin-panel.php:149
91
+ #: contact-form-7/admin/admin-panel.php:210
92
  msgid "File attachments:"
93
  msgstr "附加檔案:"
94
 
95
+ #: contact-form-7/admin/admin-panel.php:157
96
+ #: contact-form-7/admin/admin-panel.php:218
 
 
 
 
 
97
  msgid "Use HTML content type"
98
  msgstr "使用HTML內文格式"
99
 
100
+ #: contact-form-7/admin/admin-panel.php:164
101
+ #: contact-form-7/admin/admin-panel.php:225
102
+ #: contact-form-7/includes/functions.php:50
103
  msgid "Message body:"
104
  msgstr "郵件內容:"
105
 
106
+ #: contact-form-7/admin/admin-panel.php:174
107
  msgid "Mail (2)"
108
  msgstr "郵件(2)"
109
 
110
+ #: contact-form-7/admin/admin-panel.php:180
111
  msgid "Use mail (2)"
112
  msgstr "使用郵件(2)"
113
 
114
+ #: contact-form-7/admin/admin-panel.php:235
115
  msgid "Messages"
116
  msgstr "郵件內容"
117
 
118
+ #: contact-form-7/admin/admin-panel.php:243
119
  msgid "Sender's message was sent successfully"
120
  msgstr "寄件者的信件已經成功寄出"
121
 
122
+ #: contact-form-7/admin/admin-panel.php:248
123
  msgid "Sender's message was failed to send"
124
  msgstr "寄件者的信件傳送失敗"
125
 
126
+ #: contact-form-7/admin/admin-panel.php:253
127
  msgid "Akismet judged the sending activity as spamming"
128
  msgstr "經Akismet機制判斷,這個寄信的動作為濫發廣告信"
129
 
130
+ #: contact-form-7/admin/admin-panel.php:258
131
  msgid "Validation errors occurred"
132
  msgstr "發生認證錯誤"
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 " 有一個必需填寫的欄位不允許空白,請寄信者再確認。"
137
 
138
+ #: contact-form-7/admin/admin-panel.php:268
139
  msgid "Email address that sender entered is invalid"
140
  msgstr " 電子郵件格式不符,請寄信者再確認。"
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 "寄信者必需接受使用者條款"
145
 
146
+ #: contact-form-7/admin/admin-panel.php:278
147
  msgid "Sender doesn't enter the correct answer to the quiz"
148
  msgstr "寄信者沒有輸入測驗題目的正確答案"
149
 
150
+ #: contact-form-7/admin/admin-panel.php:283
151
  msgid "The code that sender entered does not match the CAPTCHA"
152
  msgstr "寄信者所輸入的圖片認證碼錯誤"
153
 
154
+ #: contact-form-7/admin/admin-panel.php:288
155
  msgid "Uploading a file fails for any reason"
156
  msgstr "檔案上傳的過程中,因不明原因導致上傳失敗。"
157
 
158
+ #: contact-form-7/admin/admin-panel.php:293
159
  msgid "Uploaded file is not allowed file type"
160
  msgstr "所上傳的檔案是不被允許的檔案種類"
161
 
162
+ #: contact-form-7/admin/admin-panel.php:298
163
  msgid "Uploaded file is too large"
164
  msgstr "上傳擋案過大"
165
 
166
+ #: contact-form-7/admin/admin-panel.php:303
167
+ msgid "Uploading a file fails for PHP error"
168
+ msgstr "檔案上傳的過程中,因PHP錯誤導致上傳失敗。"
169
+
170
+ #: contact-form-7/admin/admin-panel.php:314
171
  msgid "Additional Settings"
172
  msgstr "額外的設定"
173
 
174
+ #: contact-form-7/admin/admin.php:121
175
+ msgid "Contact"
176
+ msgstr "聯絡表單"
177
+
178
+ #: contact-form-7/admin/admin.php:125
179
+ msgid "Edit Contact Forms"
180
+ msgstr "編輯聯絡表單"
181
+
182
+ #: contact-form-7/admin/admin.php:125
183
+ msgid "Edit"
184
+ msgstr "編輯"
185
+
186
+ #: contact-form-7/admin/admin.php:185
187
  msgid "optional"
188
  msgstr "可不填"
189
 
190
+ #: contact-form-7/admin/admin.php:186
191
  msgid "Generate Tag"
192
  msgstr "標籤產生器"
193
 
194
+ #: contact-form-7/admin/admin.php:187
195
  msgid "Text field"
196
  msgstr "文字欄位"
197
 
198
+ #: contact-form-7/admin/admin.php:188
199
  msgid "Email field"
200
  msgstr "電子郵件欄位"
201
 
202
+ #: contact-form-7/admin/admin.php:189
203
  msgid "Text area"
204
  msgstr "文字區塊"
205
 
206
+ #: contact-form-7/admin/admin.php:190
207
  msgid "Drop-down menu"
208
  msgstr "下拉式選單"
209
 
210
+ #: contact-form-7/admin/admin.php:191
211
  msgid "Checkboxes"
212
  msgstr "核選方塊"
213
 
214
+ #: contact-form-7/admin/admin.php:192
215
  msgid "Radio buttons"
216
  msgstr "選項按鈕"
217
 
218
+ #: contact-form-7/admin/admin.php:193
219
  msgid "Acceptance"
220
  msgstr "接受使用條款"
221
 
222
+ #: contact-form-7/admin/admin.php:194
223
  msgid "Make this checkbox checked by default?"
224
  msgstr "預設核選方塊為核取(已勾選)?"
225
 
226
+ #: contact-form-7/admin/admin.php:195
227
  msgid "Make this checkbox work inversely?"
228
  msgstr "設定核取方塊被選取的狀態相反?"
229
 
230
+ #: contact-form-7/admin/admin.php:196
231
  msgid "* That means visitor who accepts the term unchecks it."
232
  msgstr "*意思是如果使用者如果接受服務條款,則不需勾選核取方塊。"
233
 
234
+ #: contact-form-7/admin/admin.php:197
235
  msgid "CAPTCHA"
236
  msgstr "圖片驗證"
237
 
238
+ #: contact-form-7/admin/admin.php:198
239
  msgid "Quiz"
240
  msgstr "測驗題目驗證"
241
 
242
+ #: contact-form-7/admin/admin.php:199
243
  msgid "Quizzes"
244
  msgstr "測驗題庫"
245
 
246
+ #: contact-form-7/admin/admin.php:200
247
  msgid "* quiz|answer (e.g. 1+1=?|2)"
248
  msgstr "* 測驗題目|答案 (例如 1+1=?|2)"
249
 
250
+ #: contact-form-7/admin/admin.php:201
251
  msgid "File upload"
252
  msgstr "檔案上傳"
253
 
254
+ #: contact-form-7/admin/admin.php:202
255
  msgid "bytes"
256
  msgstr "位元組"
257
 
258
+ #: contact-form-7/admin/admin.php:203
259
  msgid "Submit button"
260
  msgstr "提交按鈕"
261
 
262
+ #: contact-form-7/admin/admin.php:204
263
  msgid "Name"
264
  msgstr "物件名稱"
265
 
266
+ #: contact-form-7/admin/admin.php:205
267
  msgid "Required field?"
268
  msgstr "設定為必要欄位?"
269
 
270
+ #: contact-form-7/admin/admin.php:206
271
  msgid "Allow multiple selections?"
272
  msgstr "允許在下拉式選單中,可以選擇一個以上的選項?"
273
 
274
+ #: contact-form-7/admin/admin.php:207
275
  msgid "Insert a blank item as the first option?"
276
  msgstr "要插入一個空白資料欄位,作為第一個選項?"
277
 
278
+ #: contact-form-7/admin/admin.php:208
279
  msgid "Make checkboxes exclusive?"
280
  msgstr "設定核取方塊,為不允許修改(唯讀)?"
281
 
282
+ #: contact-form-7/admin/admin.php:209
283
  msgid "Choices"
284
  msgstr "選項"
285
 
286
+ #: contact-form-7/admin/admin.php:210
287
  msgid "Label"
288
  msgstr "標籤"
289
 
290
+ #: contact-form-7/admin/admin.php:211
291
  msgid "Default value"
292
  msgstr "預設值"
293
 
294
+ #: contact-form-7/admin/admin.php:212
295
  msgid "Akismet"
296
  msgstr "Akismet(防止垃圾郵件的插件)"
297
 
298
+ #: contact-form-7/admin/admin.php:213
299
  msgid "This field requires author's name"
300
  msgstr "這個欄位需要填寫作者的姓名"
301
 
302
+ #: contact-form-7/admin/admin.php:214
303
  msgid "This field requires author's URL"
304
  msgstr "這個欄位需要填寫作者的網址"
305
 
306
+ #: contact-form-7/admin/admin.php:215
307
  msgid "This field requires author's email address"
308
  msgstr "這個欄位需要填寫作者的電子郵件信箱"
309
 
310
+ #: contact-form-7/admin/admin.php:216
311
  msgid "Copy this code and paste it into the form left."
312
  msgstr "把這段代碼複製後,貼到左方的表格"
313
 
314
+ #: contact-form-7/admin/admin.php:217
315
  msgid "Foreground color"
316
  msgstr "前景顏色"
317
 
318
+ #: contact-form-7/admin/admin.php:218
319
  msgid "Background color"
320
  msgstr "背景顏色"
321
 
322
+ #: contact-form-7/admin/admin.php:219
323
  msgid "Image size"
324
  msgstr "圖片尺寸"
325
 
326
+ #: contact-form-7/admin/admin.php:220
327
  msgid "Small"
328
  msgstr "小"
329
 
330
+ #: contact-form-7/admin/admin.php:221
331
  msgid "Medium"
332
  msgstr "中"
333
 
334
+ #: contact-form-7/admin/admin.php:222
335
  msgid "Large"
336
  msgstr "大"
337
 
338
+ #: contact-form-7/admin/admin.php:223
339
  msgid "Image settings"
340
  msgstr "圖片設定"
341
 
342
+ #: contact-form-7/admin/admin.php:224
343
  msgid "Input field settings"
344
  msgstr "設定輸入欄位"
345
 
346
+ #: contact-form-7/admin/admin.php:225
347
  msgid "For image"
348
  msgstr "圖片使用"
349
 
350
+ #: contact-form-7/admin/admin.php:226
351
  msgid "For input field"
352
  msgstr "輸入欄位使用"
353
 
354
+ #: contact-form-7/admin/admin.php:227
355
  msgid "* One choice per line."
356
  msgstr "*每行只能有一個選項。"
357
 
358
+ #: contact-form-7/admin/admin.php:228
359
  msgid "Show"
360
  msgstr "顯示"
361
 
362
+ #: contact-form-7/admin/admin.php:229
363
  msgid "Hide"
364
  msgstr "隱藏"
365
 
366
+ #: contact-form-7/admin/admin.php:230
367
  msgid "File size limit"
368
  msgstr "檔案大小限制"
369
 
370
+ #: contact-form-7/admin/admin.php:231
371
  msgid "Acceptable file types"
372
  msgstr "可接受上傳檔案的種類"
373
 
374
+ #: contact-form-7/admin/admin.php:232
375
  msgid "Note: To use CAPTCHA, you need Really Simple CAPTCHA plugin installed."
376
  msgstr "作者註:使用圖片驗證(CAPTCHA)的功能前,您必需先安裝\"Really Simple CAPTCHA\"這個外掛。"
377
 
378
+ #: contact-form-7/admin/admin.php:241
379
  msgid "Contact form created."
380
  msgstr "已新增聯絡表單。"
381
 
382
+ #: contact-form-7/admin/admin.php:244
383
  msgid "Contact form saved."
384
  msgstr "已儲存聯絡表單。"
385
 
386
+ #: contact-form-7/admin/admin.php:247
387
  msgid "Contact form deleted."
388
  msgstr "已刪除聯絡表單。"
389
 
390
+ #: contact-form-7/admin/admin.php:250
391
+ msgid "Database table created."
392
+ msgstr "資料庫資料表已建立。"
 
 
 
 
393
 
394
  #: contact-form-7/admin/admin.php:253
395
+ msgid "Failed to create database table."
396
+ msgstr "資料庫中的資料表建立失敗。"
 
 
 
 
 
397
 
398
+ #: contact-form-7/admin/admin.php:328
399
+ msgid "Contact form"
400
+ msgstr "聯絡表單"
 
 
 
 
 
 
 
 
 
401
 
402
+ #: contact-form-7/admin/admin.php:347
 
403
  msgid "Settings"
404
+ msgstr "設定"
405
 
406
+ #: contact-form-7/admin/admin.php:366
407
  msgid "Contact Form 7 needs your support. Please donate today."
408
  msgstr "Contact Form 7 需要您的支持,請今天就慷慨解囊。"
409
 
410
+ #: contact-form-7/admin/admin.php:367
411
  msgid "Is this plugin useful for you? If you like it, please help the developer."
412
  msgstr "您覺得本外掛實用嗎? 如果您喜歡這個外掛,請捐款支持本外掛的作者。"
413
 
414
+ #: contact-form-7/admin/admin.php:368
415
  msgid "Your contribution is needed for making this plugin better."
416
  msgstr "為了讓這個外掛更好用,我們需要您的捐款。"
417
 
418
+ #: contact-form-7/admin/admin.php:369
419
  msgid "Developing a plugin and providing user support is really hard work. Please help."
420
  msgstr "外掛程式的製作和幫助使用者解決技術上的問題,是很辛苦的工作。請捐款支持。"
421
 
422
+ #: contact-form-7/includes/classes.php:552
423
+ msgid "Untitled"
424
+ msgstr "無標題"
425
 
426
  #: contact-form-7/includes/functions.php:6
427
  msgid "Your message was sent successfully. Thanks."
468
  msgid "This file is too large."
469
  msgstr "上傳檔案過大。"
470
 
471
+ #: contact-form-7/includes/functions.php:30
472
+ msgid "Failed to upload file. Error occurred."
473
+ msgstr "錯誤發生,檔案上傳失敗。"
474
+
475
+ #: contact-form-7/includes/functions.php:35
476
+ msgid "Your Name"
477
+ msgstr "您的姓名"
478
+
479
+ #: contact-form-7/includes/functions.php:35
480
+ #: contact-form-7/includes/functions.php:37
481
+ msgid "(required)"
482
+ msgstr "〈需填寫〉"
483
+
484
+ #: contact-form-7/includes/functions.php:37
485
+ msgid "Your Email"
486
+ msgstr "您的電子郵件信箱"
487
+
488
+ #: contact-form-7/includes/functions.php:39
489
+ msgid "Subject"
490
+ msgstr "主旨"
491
+
492
+ #: contact-form-7/includes/functions.php:41
493
+ msgid "Your Message"
494
+ msgstr "您的信件內容"
495
+
496
+ #: contact-form-7/includes/functions.php:43
497
+ msgid "Send"
498
+ msgstr "傳送"
499
+
500
+ #: contact-form-7/includes/functions.php:51
501
+ msgid "This mail is created by Contact Form 7 plugin for WordPress."
502
+ msgstr "這封信是由 WordPress 外掛 Contact Form 7 所產生。"
503
+
504
+ #: contact-form-7/modules/captcha.php:62
505
+ msgid "To use CAPTCHA, you need <a href=\"http://wordpress.org/extend/plugins/really-simple-captcha/\">Really Simple CAPTCHA</a> plugin installed."
506
+ msgstr "使用圖片驗證(CAPTCHA)的功能前,您必需先安裝 <a href=\"http://wordpress.org/extend/plugins/really-simple-captcha/\">Really Simple CAPTCHA</a>這個外掛。"
507
+
508
+ #~ msgid "(You need WordPress 2.7 or greater to use this feature)"
509
+ #~ msgstr "您必需使用WordPress 2.7或以上版本,才能使用這個功能。"
510
  #~ msgid "Delete this contact form"
511
  #~ msgstr "刪除這個聯絡表單"
512
 
settings.php CHANGED
@@ -82,10 +82,11 @@ require_once WPCF7_PLUGIN_DIR . '/includes/formatting.php';
82
  require_once WPCF7_PLUGIN_DIR . '/includes/pipe.php';
83
  require_once WPCF7_PLUGIN_DIR . '/includes/shortcodes.php';
84
  require_once WPCF7_PLUGIN_DIR . '/includes/classes.php';
85
- require_once WPCF7_PLUGIN_DIR . '/includes/controller.php';
86
 
87
  if ( is_admin() )
88
  require_once WPCF7_PLUGIN_DIR . '/admin/admin.php';
 
 
89
 
90
  function wpcf7_contact_forms() {
91
  global $wpdb;
82
  require_once WPCF7_PLUGIN_DIR . '/includes/pipe.php';
83
  require_once WPCF7_PLUGIN_DIR . '/includes/shortcodes.php';
84
  require_once WPCF7_PLUGIN_DIR . '/includes/classes.php';
 
85
 
86
  if ( is_admin() )
87
  require_once WPCF7_PLUGIN_DIR . '/admin/admin.php';
88
+ else
89
+ require_once WPCF7_PLUGIN_DIR . '/includes/controller.php';
90
 
91
  function wpcf7_contact_forms() {
92
  global $wpdb;
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.5
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.5' );
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.6
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.6' );
29
 
30
  if ( ! defined( 'WPCF7_PLUGIN_BASENAME' ) )
31
  define( 'WPCF7_PLUGIN_BASENAME', plugin_basename( __FILE__ ) );