Contact Form 7 - Version 2.2.1

Version Description

  • Filters for special mail tags have been moved to modules/special-mail-tags.php.
  • A bug that caused erroneous formatting around <fieldset> tags has been fixed.
  • A bug of pipes, which happened when you used a label with apostrophe and the pipe wouldn't work, has been fixed.
  • esc_html() is applied to posted texts when the texts are inserted into the message body of HTML-formatted mail.
  • Action hooks, wpcf7_enqueue_scripts and wpcf7_enqueue_styles, have been added.
  • Translations for Italian (Gianni Diurno), German (Ivan Graf), French (Oncle Tom), Traditional Chinese (James Wu) and Hungarian (Farkas Gyz) have been updated.
Download this release

Release Info

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

Code changes from version 2.2 to 2.2.1

admin/admin.php CHANGED
@@ -345,7 +345,8 @@ function wpcf7_donation_link( &$contact_form ) {
345
  $show_link = true;
346
 
347
  $num = mt_rand( 0, 99 );
348
- if ( $num >= 15 ) // 85%
 
349
  $show_link = false;
350
 
351
  $show_link = apply_filters( 'wpcf7_show_donation_link', $show_link );
345
  $show_link = true;
346
 
347
  $num = mt_rand( 0, 99 );
348
+
349
+ if ( $num >= 20 )
350
  $show_link = false;
351
 
352
  $show_link = apply_filters( 'wpcf7_show_donation_link', $show_link );
includes/classes.php CHANGED
@@ -301,11 +301,11 @@ class WPCF7_ContactForm {
301
  if ( is_array( $value) ) {
302
  $new_value = array();
303
  foreach ( $value as $v ) {
304
- $new_value[] = $pipes->do_pipe( $v );
305
  }
306
  $value = $new_value;
307
  } else {
308
- $value = $pipes->do_pipe( $value );
309
  }
310
  }
311
 
@@ -336,11 +336,17 @@ class WPCF7_ContactForm {
336
 
337
  $subject = preg_replace_callback( $regex, $callback, $mail_template['subject'] );
338
  $sender = preg_replace_callback( $regex, $callback, $mail_template['sender'] );
339
- $body = preg_replace_callback( $regex, $callback, $mail_template['body'] );
340
  $recipient = preg_replace_callback( $regex, $callback, $mail_template['recipient'] );
341
  $additional_headers =
342
  preg_replace_callback( $regex, $callback, $mail_template['additional_headers'] );
343
 
 
 
 
 
 
 
 
344
  extract( apply_filters( 'wpcf7_mail_components',
345
  compact( 'subject', 'sender', 'body', 'recipient', 'additional_headers' ) ) );
346
 
@@ -365,7 +371,11 @@ class WPCF7_ContactForm {
365
  }
366
  }
367
 
368
- function mail_callback( $matches ) {
 
 
 
 
369
  if ( isset( $this->posted_data[$matches[1]] ) ) {
370
  $submitted = $this->posted_data[$matches[1]];
371
 
@@ -374,6 +384,9 @@ class WPCF7_ContactForm {
374
  else
375
  $replaced = $submitted;
376
 
 
 
 
377
  $replaced = apply_filters( 'wpcf7_mail_tag_replaced', $replaced, $submitted );
378
 
379
  return stripslashes( $replaced );
@@ -573,69 +586,4 @@ function wpcf7_contact_form_default_pack( $locale = null ) {
573
  return $contact_form;
574
  }
575
 
576
- /* Default Filters */
577
-
578
- add_filter( 'wpcf7_special_mail_tags', 'wpcf7_special_mail_tag', 10, 2 );
579
-
580
- function wpcf7_special_mail_tag( $output, $name ) {
581
-
582
- // For backwards compat.
583
- $name = preg_replace( '/^wpcf7\./', '_', $name );
584
-
585
- if ( '_remote_ip' == $name )
586
- $output = preg_replace( '/[^0-9a-f.:, ]/', '', $_SERVER['REMOTE_ADDR'] );
587
-
588
- elseif ( '_url' == $name )
589
- $output = get_option( 'home' ) . wpcf7_get_request_uri();
590
-
591
- elseif ( '_date' == $name )
592
- $output = date_i18n( get_option( 'date_format' ) );
593
-
594
- elseif ( '_time' == $name )
595
- $output = date_i18n( get_option( 'time_format' ) );
596
-
597
- return $output;
598
- }
599
-
600
- add_filter( 'wpcf7_special_mail_tags', 'wpcf7_special_mail_tag_for_post_data', 10, 2 );
601
-
602
- function wpcf7_special_mail_tag_for_post_data( $output, $name ) {
603
-
604
- if ( ! isset( $_POST['_wpcf7_unit_tag'] ) || empty( $_POST['_wpcf7_unit_tag'] ) )
605
- return $output;
606
-
607
- if ( ! preg_match( '/^wpcf7-f(\d+)-p(\d+)-o(\d+)$/', $_POST['_wpcf7_unit_tag'], $matches ) )
608
- return $output;
609
-
610
- $post_id = (int) $matches[2];
611
-
612
- if ( ! $post = get_post( $post_id ) )
613
- return $output;
614
-
615
- $user = new WP_User( $post->post_author );
616
-
617
- // For backwards compat.
618
- $name = preg_replace( '/^wpcf7\./', '_', $name );
619
-
620
- if ( '_post_id' == $name )
621
- $output = (string) $post->ID;
622
-
623
- elseif ( '_post_name' == $name )
624
- $output = $post->post_name;
625
-
626
- elseif ( '_post_title' == $name )
627
- $output = $post->post_title;
628
-
629
- elseif ( '_post_url' == $name )
630
- $output = get_permalink( $post->ID );
631
-
632
- elseif ( '_post_author' == $name )
633
- $output = $user->display_name;
634
-
635
- elseif ( '_post_author_email' == $name )
636
- $output = $user->user_email;
637
-
638
- return $output;
639
- }
640
-
641
  ?>
301
  if ( is_array( $value) ) {
302
  $new_value = array();
303
  foreach ( $value as $v ) {
304
+ $new_value[] = $pipes->do_pipe( stripslashes( $v ) );
305
  }
306
  $value = $new_value;
307
  } else {
308
+ $value = $pipes->do_pipe( stripslashes( $value ) );
309
  }
310
  }
311
 
336
 
337
  $subject = preg_replace_callback( $regex, $callback, $mail_template['subject'] );
338
  $sender = preg_replace_callback( $regex, $callback, $mail_template['sender'] );
 
339
  $recipient = preg_replace_callback( $regex, $callback, $mail_template['recipient'] );
340
  $additional_headers =
341
  preg_replace_callback( $regex, $callback, $mail_template['additional_headers'] );
342
 
343
+ if ( $mail_template['use_html'] ) {
344
+ $callback_html = array( &$this, 'mail_callback_html' );
345
+ $body = preg_replace_callback( $regex, $callback_html, $mail_template['body'] );
346
+ } else {
347
+ $body = preg_replace_callback( $regex, $callback, $mail_template['body'] );
348
+ }
349
+
350
  extract( apply_filters( 'wpcf7_mail_components',
351
  compact( 'subject', 'sender', 'body', 'recipient', 'additional_headers' ) ) );
352
 
371
  }
372
  }
373
 
374
+ function mail_callback_html( $matches ) {
375
+ return $this->mail_callback( $matches, true );
376
+ }
377
+
378
+ function mail_callback( $matches, $html = false ) {
379
  if ( isset( $this->posted_data[$matches[1]] ) ) {
380
  $submitted = $this->posted_data[$matches[1]];
381
 
384
  else
385
  $replaced = $submitted;
386
 
387
+ if ( $html )
388
+ $replaced = esc_html( $replaced );
389
+
390
  $replaced = apply_filters( 'wpcf7_mail_tag_replaced', $replaced, $submitted );
391
 
392
  return stripslashes( $replaced );
586
  return $contact_form;
587
  }
588
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
589
  ?>
includes/controller.php CHANGED
@@ -250,6 +250,8 @@ function wpcf7_enqueue_scripts() {
250
 
251
  wp_enqueue_script( 'contact-form-7', wpcf7_plugin_url( 'scripts.js' ),
252
  array( 'jquery', 'jquery-form' ), WPCF7_VERSION, $in_footer );
 
 
253
  }
254
 
255
  function wpcf7_script_is() {
@@ -267,6 +269,8 @@ function wpcf7_enqueue_styles() {
267
  wp_enqueue_style( 'contact-form-7-rtl', wpcf7_plugin_url( 'styles-rtl.css' ),
268
  array(), WPCF7_VERSION, 'all' );
269
  }
 
 
270
  }
271
 
272
  function wpcf7_style_is() {
250
 
251
  wp_enqueue_script( 'contact-form-7', wpcf7_plugin_url( 'scripts.js' ),
252
  array( 'jquery', 'jquery-form' ), WPCF7_VERSION, $in_footer );
253
+
254
+ do_action( 'wpcf7_enqueue_scripts' );
255
  }
256
 
257
  function wpcf7_script_is() {
269
  wp_enqueue_style( 'contact-form-7-rtl', wpcf7_plugin_url( 'styles-rtl.css' ),
270
  array(), WPCF7_VERSION, 'all' );
271
  }
272
+
273
+ do_action( 'wpcf7_enqueue_styles' );
274
  }
275
 
276
  function wpcf7_style_is() {
includes/formatting.php CHANGED
@@ -1,144 +1,144 @@
1
- <?php
2
-
3
- function wpcf7_autop( $pee, $br = 1 ) {
4
-
5
- if ( trim( $pee ) === '' )
6
- return '';
7
- $pee = $pee . "\n"; // just to make things a little easier, pad the end
8
- $pee = preg_replace( '|<br />\s*<br />|', "\n\n", $pee );
9
- // Space things out a little
10
- /* wpcf7: remove select and input */
11
- $allblocks = '(?:table|thead|tfoot|caption|col|colgroup|tbody|tr|td|th|div|dl|dd|dt|ul|ol|li|pre|form|map|area|blockquote|address|math|style|p|h[1-6]|hr|fieldset|legend)';
12
- $pee = preg_replace( '!(<' . $allblocks . '[^>]*>)!', "\n$1", $pee );
13
- $pee = preg_replace( '!(</' . $allblocks . '>)!', "$1\n\n", $pee );
14
- $pee = str_replace( array( "\r\n", "\r" ), "\n", $pee ); // cross-platform newlines
15
- if ( strpos( $pee, '<object' ) !== false ) {
16
- $pee = preg_replace( '|\s*<param([^>]*)>\s*|', "<param$1>", $pee ); // no pee inside object/embed
17
- $pee = preg_replace( '|\s*</embed>\s*|', '</embed>', $pee );
18
- }
19
- $pee = preg_replace( "/\n\n+/", "\n\n", $pee ); // take care of duplicates
20
- // make paragraphs, including one at the end
21
- $pees = preg_split( '/\n\s*\n/', $pee, -1, PREG_SPLIT_NO_EMPTY );
22
- $pee = '';
23
- foreach ( $pees as $tinkle )
24
- $pee .= '<p>' . trim( $tinkle, "\n" ) . "</p>\n";
25
- $pee = preg_replace( '|<p>\s*</p>|', '', $pee ); // under certain strange conditions it could create a P of entirely whitespace
26
- $pee = preg_replace( '!<p>([^<]+)</(div|address|form)>!', "<p>$1</p></$2>", $pee );
27
- $pee = preg_replace( '!<p>\s*(</?' . $allblocks . '[^>]*>)\s*</p>!', "$1", $pee ); // don't pee all over a tag
28
- $pee = preg_replace( "|<p>(<li.+?)</p>|", "$1", $pee ); // problem with nested lists
29
- $pee = preg_replace( '|<p><blockquote([^>]*)>|i', "<blockquote$1><p>", $pee );
30
- $pee = str_replace( '</blockquote></p>', '</p></blockquote>', $pee );
31
- $pee = preg_replace( '!<p>\s*(</?' . $allblocks . '[^>]*>)!', "$1", $pee );
32
- $pee = preg_replace( '!(</?' . $allblocks . '[^>]*>)\s*</p>!', "$1", $pee );
33
- if ( $br ) {
34
- /* wpcf7: add textarea */
35
- $pee = preg_replace_callback( '/<(script|style|textarea).*?<\/\\1>/s', create_function( '$matches', 'return str_replace("\n", "<WPPreserveNewline />", $matches[0]);' ), $pee );
36
- $pee = preg_replace( '|(?<!<br />)\s*\n|', "<br />\n", $pee ); // optionally make line breaks
37
- $pee = str_replace( '<WPPreserveNewline />', "\n", $pee );
38
- }
39
- $pee = preg_replace( '!(</?' . $allblocks . '[^>]*>)\s*<br />!', "$1", $pee );
40
- $pee = preg_replace( '!<br />(\s*</?(?:p|li|div|dl|dd|dt|th|pre|td|ul|ol)[^>]*>)!', '$1', $pee );
41
- if ( strpos( $pee, '<pre' ) !== false )
42
- $pee = preg_replace_callback( '!(<pre[^>]*>)(.*?)</pre>!is', 'clean_pre', $pee );
43
- $pee = preg_replace( "|\n</p>$|", '</p>', $pee );
44
-
45
- return $pee;
46
- }
47
-
48
- function wpcf7_strip_quote( $text ) {
49
- $text = trim( $text );
50
- if ( preg_match( '/^"(.*)"$/', $text, $matches ) )
51
- $text = $matches[1];
52
- elseif ( preg_match( "/^'(.*)'$/", $text, $matches ) )
53
- $text = $matches[1];
54
- return $text;
55
- }
56
-
57
- function wpcf7_strip_quote_deep( $arr ) {
58
- if ( is_string( $arr ) )
59
- return wpcf7_strip_quote( $arr );
60
-
61
- if ( is_array( $arr ) ) {
62
- $result = array();
63
- foreach ( $arr as $key => $text ) {
64
- $result[$key] = wpcf7_strip_quote( $text );
65
- }
66
- return $result;
67
- }
68
- }
69
-
70
- function wpcf7_canonicalize( $text ) {
71
- if ( function_exists( 'mb_convert_kana' ) && 'UTF-8' == get_option( 'blog_charset' ) )
72
- $text = mb_convert_kana( $text, 'asKV', 'UTF-8' );
73
-
74
- $text = strtolower( $text );
75
- $text = trim( $text );
76
- return $text;
77
- }
78
-
79
- function wpcf7_sanitize_file_name( $filename ) {
80
- /* Memo:
81
- // This function does sanitization introduced in http://core.trac.wordpress.org/ticket/11122
82
- // WordPress 2.8.6 will implement it in sanitize_file_name().
83
- // While Contact Form 7's file uploading function uses wp_unique_filename(), and
84
- // it in turn calls sanitize_file_name(). Therefore this wpcf7_sanitize_file_name() will be
85
- // redundant and unnecessary when you use Contact Form 7 on WordPress 2.8.6 or higher.
86
- // This function is provided just for the sake of protecting who uses older WordPress.
87
- */
88
-
89
- // Split the filename into a base and extension[s]
90
- $parts = explode( '.', $filename );
91
-
92
- // Return if only one extension
93
- if ( count( $parts ) <= 2 )
94
- return $filename;
95
-
96
- // Process multiple extensions
97
- $filename = array_shift( $parts );
98
- $extension = array_pop( $parts );
99
-
100
- $mimes = array( 'jpg|jpeg|jpe', 'gif', 'png', 'bmp',
101
- 'tif|tiff', 'ico', 'asf|asx|wax|wmv|wmx', 'avi',
102
- 'divx', 'mov|qt', 'mpeg|mpg|mpe', 'txt|c|cc|h',
103
- 'rtx', 'css', 'htm|html', 'mp3|m4a', 'mp4|m4v',
104
- 'ra|ram', 'wav', 'ogg', 'mid|midi', 'wma', 'rtf',
105
- 'js', 'pdf', 'doc|docx', 'pot|pps|ppt|pptx', 'wri',
106
- 'xla|xls|xlsx|xlt|xlw', 'mdb', 'mpp', 'swf', 'class',
107
- 'tar', 'zip', 'gz|gzip', 'exe',
108
- // openoffice formats
109
- 'odt', 'odp', 'ods', 'odg', 'odc', 'odb', 'odf' );
110
-
111
- // Loop over any intermediate extensions.
112
- // Munge them with a trailing underscore if they are a 2 - 5 character
113
- // long alpha string not in the extension whitelist.
114
- foreach ( (array) $parts as $part) {
115
- $filename .= '.' . $part;
116
-
117
- if ( preg_match( '/^[a-zA-Z]{2,5}\d?$/', $part ) ) {
118
- $allowed = false;
119
- foreach ( $mimes as $ext_preg ) {
120
- $ext_preg = '!(^' . $ext_preg . ')$!i';
121
- if ( preg_match( $ext_preg, $part ) ) {
122
- $allowed = true;
123
- break;
124
- }
125
- }
126
- if ( ! $allowed )
127
- $filename .= '_';
128
- }
129
- }
130
- $filename .= '.' . $extension;
131
-
132
- return $filename;
133
- }
134
-
135
- function wpcf7_is_name( $string ) {
136
- // See http://www.w3.org/TR/html401/types.html#h-6.2
137
- // ID and NAME tokens must begin with a letter ([A-Za-z])
138
- // and may be followed by any number of letters, digits ([0-9]),
139
- // hyphens ("-"), underscores ("_"), colons (":"), and periods (".").
140
-
141
- return preg_match( '/^[A-Za-z][-A-Za-z0-9_:.]*$/', $string );
142
- }
143
-
144
  ?>
1
+ <?php
2
+
3
+ function wpcf7_autop( $pee, $br = 1 ) {
4
+
5
+ if ( trim( $pee ) === '' )
6
+ return '';
7
+ $pee = $pee . "\n"; // just to make things a little easier, pad the end
8
+ $pee = preg_replace( '|<br />\s*<br />|', "\n\n", $pee );
9
+ // Space things out a little
10
+ /* wpcf7: remove select and input */
11
+ $allblocks = '(?:table|thead|tfoot|caption|col|colgroup|tbody|tr|td|th|div|dl|dd|dt|ul|ol|li|pre|form|map|area|blockquote|address|math|style|p|h[1-6]|hr|fieldset|legend|section|article|aside|hgroup|header|footer|nav|figure|figcaption|details|menu|summary)';
12
+ $pee = preg_replace( '!(<' . $allblocks . '[^>]*>)!', "\n$1", $pee );
13
+ $pee = preg_replace( '!(</' . $allblocks . '>)!', "$1\n\n", $pee );
14
+ $pee = str_replace( array( "\r\n", "\r" ), "\n", $pee ); // cross-platform newlines
15
+ if ( strpos( $pee, '<object' ) !== false ) {
16
+ $pee = preg_replace( '|\s*<param([^>]*)>\s*|', "<param$1>", $pee ); // no pee inside object/embed
17
+ $pee = preg_replace( '|\s*</embed>\s*|', '</embed>', $pee );
18
+ }
19
+ $pee = preg_replace( "/\n\n+/", "\n\n", $pee ); // take care of duplicates
20
+ // make paragraphs, including one at the end
21
+ $pees = preg_split( '/\n\s*\n/', $pee, -1, PREG_SPLIT_NO_EMPTY );
22
+ $pee = '';
23
+ foreach ( $pees as $tinkle )
24
+ $pee .= '<p>' . trim( $tinkle, "\n" ) . "</p>\n";
25
+ $pee = preg_replace( '|<p>\s*</p>|', '', $pee ); // under certain strange conditions it could create a P of entirely whitespace
26
+ $pee = preg_replace( '!<p>([^<]+)</(div|address|form|fieldset)>!', "<p>$1</p></$2>", $pee );
27
+ $pee = preg_replace( '!<p>\s*(</?' . $allblocks . '[^>]*>)\s*</p>!', "$1", $pee ); // don't pee all over a tag
28
+ $pee = preg_replace( "|<p>(<li.+?)</p>|", "$1", $pee ); // problem with nested lists
29
+ $pee = preg_replace( '|<p><blockquote([^>]*)>|i', "<blockquote$1><p>", $pee );
30
+ $pee = str_replace( '</blockquote></p>', '</p></blockquote>', $pee );
31
+ $pee = preg_replace( '!<p>\s*(</?' . $allblocks . '[^>]*>)!', "$1", $pee );
32
+ $pee = preg_replace( '!(</?' . $allblocks . '[^>]*>)\s*</p>!', "$1", $pee );
33
+ if ( $br ) {
34
+ /* wpcf7: add textarea */
35
+ $pee = preg_replace_callback( '/<(script|style|textarea).*?<\/\\1>/s', create_function( '$matches', 'return str_replace("\n", "<WPPreserveNewline />", $matches[0]);' ), $pee );
36
+ $pee = preg_replace( '|(?<!<br />)\s*\n|', "<br />\n", $pee ); // optionally make line breaks
37
+ $pee = str_replace( '<WPPreserveNewline />', "\n", $pee );
38
+ }
39
+ $pee = preg_replace( '!(</?' . $allblocks . '[^>]*>)\s*<br />!', "$1", $pee );
40
+ $pee = preg_replace( '!<br />(\s*</?(?:p|li|div|dl|dd|dt|th|pre|td|ul|ol)[^>]*>)!', '$1', $pee );
41
+ if ( strpos( $pee, '<pre' ) !== false )
42
+ $pee = preg_replace_callback( '!(<pre[^>]*>)(.*?)</pre>!is', 'clean_pre', $pee );
43
+ $pee = preg_replace( "|\n</p>$|", '</p>', $pee );
44
+
45
+ return $pee;
46
+ }
47
+
48
+ function wpcf7_strip_quote( $text ) {
49
+ $text = trim( $text );
50
+ if ( preg_match( '/^"(.*)"$/', $text, $matches ) )
51
+ $text = $matches[1];
52
+ elseif ( preg_match( "/^'(.*)'$/", $text, $matches ) )
53
+ $text = $matches[1];
54
+ return $text;
55
+ }
56
+
57
+ function wpcf7_strip_quote_deep( $arr ) {
58
+ if ( is_string( $arr ) )
59
+ return wpcf7_strip_quote( $arr );
60
+
61
+ if ( is_array( $arr ) ) {
62
+ $result = array();
63
+ foreach ( $arr as $key => $text ) {
64
+ $result[$key] = wpcf7_strip_quote( $text );
65
+ }
66
+ return $result;
67
+ }
68
+ }
69
+
70
+ function wpcf7_canonicalize( $text ) {
71
+ if ( function_exists( 'mb_convert_kana' ) && 'UTF-8' == get_option( 'blog_charset' ) )
72
+ $text = mb_convert_kana( $text, 'asKV', 'UTF-8' );
73
+
74
+ $text = strtolower( $text );
75
+ $text = trim( $text );
76
+ return $text;
77
+ }
78
+
79
+ function wpcf7_sanitize_file_name( $filename ) {
80
+ /* Memo:
81
+ // This function does sanitization introduced in http://core.trac.wordpress.org/ticket/11122
82
+ // WordPress 2.8.6 will implement it in sanitize_file_name().
83
+ // While Contact Form 7's file uploading function uses wp_unique_filename(), and
84
+ // it in turn calls sanitize_file_name(). Therefore this wpcf7_sanitize_file_name() will be
85
+ // redundant and unnecessary when you use Contact Form 7 on WordPress 2.8.6 or higher.
86
+ // This function is provided just for the sake of protecting who uses older WordPress.
87
+ */
88
+
89
+ // Split the filename into a base and extension[s]
90
+ $parts = explode( '.', $filename );
91
+
92
+ // Return if only one extension
93
+ if ( count( $parts ) <= 2 )
94
+ return $filename;
95
+
96
+ // Process multiple extensions
97
+ $filename = array_shift( $parts );
98
+ $extension = array_pop( $parts );
99
+
100
+ $mimes = array( 'jpg|jpeg|jpe', 'gif', 'png', 'bmp',
101
+ 'tif|tiff', 'ico', 'asf|asx|wax|wmv|wmx', 'avi',
102
+ 'divx', 'mov|qt', 'mpeg|mpg|mpe', 'txt|c|cc|h',
103
+ 'rtx', 'css', 'htm|html', 'mp3|m4a', 'mp4|m4v',
104
+ 'ra|ram', 'wav', 'ogg', 'mid|midi', 'wma', 'rtf',
105
+ 'js', 'pdf', 'doc|docx', 'pot|pps|ppt|pptx', 'wri',
106
+ 'xla|xls|xlsx|xlt|xlw', 'mdb', 'mpp', 'swf', 'class',
107
+ 'tar', 'zip', 'gz|gzip', 'exe',
108
+ // openoffice formats
109
+ 'odt', 'odp', 'ods', 'odg', 'odc', 'odb', 'odf' );
110
+
111
+ // Loop over any intermediate extensions.
112
+ // Munge them with a trailing underscore if they are a 2 - 5 character
113
+ // long alpha string not in the extension whitelist.
114
+ foreach ( (array) $parts as $part) {
115
+ $filename .= '.' . $part;
116
+
117
+ if ( preg_match( '/^[a-zA-Z]{2,5}\d?$/', $part ) ) {
118
+ $allowed = false;
119
+ foreach ( $mimes as $ext_preg ) {
120
+ $ext_preg = '!(^' . $ext_preg . ')$!i';
121
+ if ( preg_match( $ext_preg, $part ) ) {
122
+ $allowed = true;
123
+ break;
124
+ }
125
+ }
126
+ if ( ! $allowed )
127
+ $filename .= '_';
128
+ }
129
+ }
130
+ $filename .= '.' . $extension;
131
+
132
+ return $filename;
133
+ }
134
+
135
+ function wpcf7_is_name( $string ) {
136
+ // See http://www.w3.org/TR/html401/types.html#h-6.2
137
+ // ID and NAME tokens must begin with a letter ([A-Za-z])
138
+ // and may be followed by any number of letters, digits ([0-9]),
139
+ // hyphens ("-"), underscores ("_"), colons (":"), and periods (".").
140
+
141
+ return preg_match( '/^[A-Za-z][-A-Za-z0-9_:.]*$/', $string );
142
+ }
143
+
144
  ?>
languages/wpcf7-de_DE.mo CHANGED
Binary file
languages/wpcf7-de_DE.po CHANGED
@@ -1,9 +1,9 @@
1
  msgid ""
2
  msgstr ""
3
- "Project-Id-Version: Contact Form | V2.1.2\n"
4
  "Report-Msgid-Bugs-To: \n"
5
- "POT-Creation-Date: 2010-02-24 08:35+0900\n"
6
- "PO-Revision-Date: 2010-02-25 18:08+0100\n"
7
  "Last-Translator: Ivan Graf <contact@bildergallery.com>\n"
8
  "Language-Team: \n"
9
  "MIME-Version: 1.0\n"
@@ -47,79 +47,79 @@ msgstr "Anzeigen"
47
  msgid "Hide"
48
  msgstr "Verstecken"
49
 
50
- #: contact-form-7/admin/admin.php:265
51
  msgid "Contact form"
52
  msgstr "Kontaktformular"
53
 
54
- #: contact-form-7/admin/admin.php:284
55
  msgid "Settings"
56
  msgstr "Einstellungen"
57
 
58
- #: contact-form-7/admin/admin.php:295
59
  msgid "http://contactform7.com/"
60
  msgstr "http://contactform7.com/"
61
 
62
- #: contact-form-7/admin/admin.php:296
63
  msgid "Contactform7.com"
64
  msgstr "Contactform7.com"
65
 
66
- #: contact-form-7/admin/admin.php:297
67
  msgid "http://contactform7.com/docs/"
68
  msgstr "http://contactform7.com/docs/"
69
 
70
- #: contact-form-7/admin/admin.php:298
71
  msgid "Docs"
72
  msgstr "Dokumente"
73
 
74
- #: contact-form-7/admin/admin.php:299
75
  msgid "http://contactform7.com/faq/"
76
  msgstr "http://contactform7.com/faq/"
77
 
78
- #: contact-form-7/admin/admin.php:300
79
  msgid "FAQ"
80
  msgstr "Faq"
81
 
82
- #: contact-form-7/admin/admin.php:301
83
  msgid "http://contactform7.com/support/"
84
  msgstr "http://contactform7.com/support/"
85
 
86
- #: contact-form-7/admin/admin.php:302
87
  msgid "Support"
88
  msgstr "Support"
89
 
90
- #: contact-form-7/admin/admin.php:316
91
  msgid "Contact form created."
92
  msgstr "Kontaktformular erstellt."
93
 
94
- #: contact-form-7/admin/admin.php:319
95
  msgid "Contact form saved."
96
  msgstr "Kontaktformular gespeichert."
97
 
98
- #: contact-form-7/admin/admin.php:322
99
  msgid "Contact form deleted."
100
  msgstr "Kontaktformular gelöscht."
101
 
102
- #: contact-form-7/admin/admin.php:325
103
  msgid "Database table created."
104
  msgstr "Datenbanktabelle erstellt."
105
 
106
- #: contact-form-7/admin/admin.php:328
107
  msgid "Failed to create database table."
108
  msgstr "Fehler beim Erstellen einer Datenbanktabelle."
109
 
110
- #: contact-form-7/admin/admin.php:361
111
  msgid "Contact Form 7 needs your support. Please donate today."
112
  msgstr "Contact Form 7 braucht Ihre Unterstützung. Bitte spenden Sie noch heute."
113
 
114
- #: contact-form-7/admin/admin.php:362
115
  msgid "Your contribution is needed for making this plugin better."
116
  msgstr "Ihr Beitrag ist für die Herstellung dieses Plugin sehr nützlich."
117
 
118
- #: contact-form-7/admin/admin.php:368
119
  msgid "http://contactform7.com/donate/"
120
  msgstr "http://contactform7.com/donate/"
121
 
122
- #: contact-form-7/admin/admin.php:368
123
  msgid "Donate"
124
  msgstr "Spende"
125
 
@@ -239,7 +239,7 @@ msgstr "oder"
239
  msgid "(select language)"
240
  msgstr "(wähle Sprache)"
241
 
242
- #: contact-form-7/includes/classes.php:569
243
  msgid "Untitled"
244
  msgstr "Ohne Titel"
245
 
@@ -414,326 +414,330 @@ msgid "French"
414
  msgstr "Französisch"
415
 
416
  #: contact-form-7/includes/functions.php:186
 
 
 
 
417
  msgid "Georgian"
418
  msgstr "Georgisch"
419
 
420
- #: contact-form-7/includes/functions.php:187
421
  msgid "German"
422
  msgstr "Deutsch"
423
 
424
- #: contact-form-7/includes/functions.php:188
425
  msgid "Greek"
426
  msgstr "Griechisch"
427
 
428
- #: contact-form-7/includes/functions.php:189
429
  msgid "Hebrew"
430
  msgstr "Hebräisch"
431
 
432
- #: contact-form-7/includes/functions.php:190
433
  msgid "Hindi"
434
  msgstr "Hindisch"
435
 
436
- #: contact-form-7/includes/functions.php:191
437
  msgid "Hungarian"
438
  msgstr "Ungarisch"
439
 
440
- #: contact-form-7/includes/functions.php:192
441
  msgid "Indonesian"
442
  msgstr "Indonesisch"
443
 
444
- #: contact-form-7/includes/functions.php:193
445
  msgid "Italian"
446
  msgstr "Italienisch"
447
 
448
- #: contact-form-7/includes/functions.php:194
449
  msgid "Japanese"
450
  msgstr "Japanisch"
451
 
452
- #: contact-form-7/includes/functions.php:195
453
  msgid "Korean"
454
  msgstr "Koreanisch"
455
 
456
- #: contact-form-7/includes/functions.php:196
457
  msgid "Latvian"
458
  msgstr "Lettisch"
459
 
460
- #: contact-form-7/includes/functions.php:197
461
  msgid "Lithuanian"
462
  msgstr "Litauisch"
463
 
464
- #: contact-form-7/includes/functions.php:198
465
  msgid "Malayalam"
466
  msgstr "Malayalam"
467
 
468
- #: contact-form-7/includes/functions.php:199
469
  msgid "Norwegian"
470
  msgstr "Norwegisch"
471
 
472
- #: contact-form-7/includes/functions.php:200
473
  msgid "Persian"
474
  msgstr "Persisch"
475
 
476
- #: contact-form-7/includes/functions.php:201
477
  msgid "Polish"
478
  msgstr "Polnisch"
479
 
480
- #: contact-form-7/includes/functions.php:202
481
  msgid "Portuguese"
482
  msgstr "Portugiesisch"
483
 
484
- #: contact-form-7/includes/functions.php:203
485
  msgid "Russian"
486
  msgstr "Russisch"
487
 
488
- #: contact-form-7/includes/functions.php:204
489
  msgid "Romanian"
490
  msgstr "Rumänisch"
491
 
492
- #: contact-form-7/includes/functions.php:205
493
  msgid "Serbian"
494
  msgstr "Serbisch"
495
 
496
- #: contact-form-7/includes/functions.php:206
497
  msgid "Slovak"
498
  msgstr "Slowakisch"
499
 
500
- #: contact-form-7/includes/functions.php:207
501
  msgid "Slovene"
502
  msgstr "Slovenisch"
503
 
504
- #: contact-form-7/includes/functions.php:208
505
  msgid "Spanish"
506
  msgstr "Spanisch"
507
 
508
- #: contact-form-7/includes/functions.php:209
509
  msgid "Swedish"
510
  msgstr "Schwedisch"
511
 
512
- #: contact-form-7/includes/functions.php:210
513
  msgid "Thai"
514
  msgstr "Thailändisch"
515
 
516
- #: contact-form-7/includes/functions.php:211
517
  msgid "Turkish"
518
  msgstr "Türkisch"
519
 
520
- #: contact-form-7/includes/functions.php:212
521
  msgid "Ukrainian"
522
  msgstr "Ukrainisch"
523
 
524
- #: contact-form-7/includes/functions.php:213
525
  msgid "Vietnamese"
526
  msgstr "Vietnamesisch"
527
 
528
- #: contact-form-7/modules/acceptance.php:96
529
  msgid "Acceptance"
530
  msgstr "Zustimmung"
531
 
532
- #: contact-form-7/modules/acceptance.php:105
533
- #: contact-form-7/modules/captcha.php:206
534
- #: contact-form-7/modules/checkbox.php:198
535
- #: contact-form-7/modules/file.php:234
536
  msgid "Name"
537
  msgstr "Name"
538
 
539
- #: contact-form-7/modules/acceptance.php:110
540
- #: contact-form-7/modules/acceptance.php:113
541
- #: contact-form-7/modules/captcha.php:213
542
- #: contact-form-7/modules/captcha.php:216
543
  #: contact-form-7/modules/captcha.php:221
544
  #: contact-form-7/modules/captcha.php:224
545
- #: contact-form-7/modules/captcha.php:228
546
- #: contact-form-7/modules/captcha.php:239
547
- #: contact-form-7/modules/captcha.php:242
548
  #: contact-form-7/modules/captcha.php:247
549
  #: contact-form-7/modules/captcha.php:250
550
- #: contact-form-7/modules/checkbox.php:203
551
- #: contact-form-7/modules/checkbox.php:206
552
- #: contact-form-7/modules/file.php:239
553
- #: contact-form-7/modules/file.php:242
554
- #: contact-form-7/modules/file.php:247
555
- #: contact-form-7/modules/file.php:250
 
 
556
  msgid "optional"
557
  msgstr "optional"
558
 
559
- #: contact-form-7/modules/acceptance.php:119
560
  msgid "Make this checkbox checked by default?"
561
  msgstr "Auswahlbox standardmässig aktivieren?"
562
 
563
- #: contact-form-7/modules/acceptance.php:120
564
  msgid "Make this checkbox work inversely?"
565
  msgstr "Auswahlbox umkehren (Invert)?"
566
 
567
- #: contact-form-7/modules/acceptance.php:121
568
  msgid "* That means visitor who accepts the term unchecks it."
569
  msgstr "* Bedeutet, dass der Besucher die Bedingungen akzeptiert wenn er die Auswahlbox deaktiviert."
570
 
571
- #: contact-form-7/modules/acceptance.php:126
572
- #: contact-form-7/modules/captcha.php:255
573
- #: contact-form-7/modules/checkbox.php:226
574
- #: contact-form-7/modules/file.php:255
575
  msgid "Copy this code and paste it into the form left."
576
  msgstr "Kopieren Sie diesen Code und fügen ihn in das Formular links ein."
577
 
578
- #: contact-form-7/modules/captcha.php:65
579
  msgid "To use CAPTCHA, you need <a href=\"http://wordpress.org/extend/plugins/really-simple-captcha/\">Really Simple CAPTCHA</a> plugin installed."
580
  msgstr "Um den Captcha Code anzuzeigen, muss dieses <a href=\"http://wordpress.org/extend/plugins/really-simple-captcha/\">Plugin</a> installiert sein."
581
 
582
- #: contact-form-7/modules/captcha.php:181
583
  msgid "The code that sender entered does not match the CAPTCHA"
584
  msgstr "Der eingegebene Code stimmt nicht mit dem angezeigten Captcha Code überein!"
585
 
586
- #: contact-form-7/modules/captcha.php:182
587
  msgid "Your entered code is incorrect."
588
  msgstr "Ihr eingegebener Code ist falsch."
589
 
590
- #: contact-form-7/modules/captcha.php:192
591
  msgid "CAPTCHA"
592
  msgstr "Captcha"
593
 
594
- #: contact-form-7/modules/captcha.php:203
595
  msgid "Note: To use CAPTCHA, you need Really Simple CAPTCHA plugin installed."
596
  msgstr "Hinweis: Um Captcha zu verwenden, muss dieses Plugin installiert sein."
597
 
598
- #: contact-form-7/modules/captcha.php:210
599
  msgid "Image settings"
600
  msgstr "Bild Einstellungen"
601
 
602
- #: contact-form-7/modules/captcha.php:221
603
  msgid "Foreground color"
604
  msgstr "Vordergrundfarbe"
605
 
606
- #: contact-form-7/modules/captcha.php:224
607
  msgid "Background color"
608
  msgstr "Hintergrundfarbe"
609
 
610
- #: contact-form-7/modules/captcha.php:228
611
  msgid "Image size"
612
  msgstr "Bild Grösse"
613
 
614
- #: contact-form-7/modules/captcha.php:229
615
  msgid "Small"
616
  msgstr "Klein"
617
 
618
- #: contact-form-7/modules/captcha.php:230
619
  msgid "Medium"
620
  msgstr "Mittel"
621
 
622
- #: contact-form-7/modules/captcha.php:231
623
  msgid "Large"
624
  msgstr "Gross"
625
 
626
- #: contact-form-7/modules/captcha.php:236
627
  msgid "Input field settings"
628
  msgstr "Eingabefeld Einstellungen"
629
 
630
- #: contact-form-7/modules/captcha.php:256
631
  msgid "For image"
632
  msgstr "Für das Bild"
633
 
634
- #: contact-form-7/modules/captcha.php:258
635
  msgid "For input field"
636
  msgstr "Für das Eingabefeld"
637
 
638
- #: contact-form-7/modules/captcha.php:288
639
  #, php-format
640
  msgid "This contact form contains CAPTCHA fields, but the temporary folder for the files (%s) does not exist or is not writable. You can create the folder or change its permission manually."
641
  msgstr "Dieses Kontaktformular enthält CAPTCHA-Felder, aber der temporäre Ordner für die Dateien (%s) ist nicht vorhanden oder nicht beschreibbar. Sie können den Ordner anlegen oder die Berechtigung manuell ändern."
642
 
643
- #: contact-form-7/modules/captcha.php:294
644
  msgid "This contact form contains CAPTCHA fields, but the necessary libraries (GD and FreeType) are not available on your server."
645
  msgstr "Dieses Kontaktformular enthält CAPTCHA-Felder, aber die benötigten Bibliotheken (GD und FreeType) sind nicht auf Ihrem Server verfügbar."
646
 
647
- #: contact-form-7/modules/checkbox.php:171
648
  msgid "Checkboxes"
649
  msgstr "Auswahlbox"
650
 
651
- #: contact-form-7/modules/checkbox.php:174
652
  msgid "Radio buttons"
653
  msgstr "Radio Button"
654
 
655
- #: contact-form-7/modules/checkbox.php:195
656
- #: contact-form-7/modules/file.php:233
657
  msgid "Required field?"
658
  msgstr "Pflichtfeld?"
659
 
660
- #: contact-form-7/modules/checkbox.php:211
661
  msgid "Choices"
662
  msgstr "Auswahlmöglichkeiten"
663
 
664
- #: contact-form-7/modules/checkbox.php:213
665
  msgid "* One choice per line."
666
  msgstr "* Eine Auswahlmöglichkeit pro Zeile."
667
 
668
- #: contact-form-7/modules/checkbox.php:217
669
  msgid "Put a label first, a checkbox last?"
670
  msgstr "Erste Auswahlmöglichkeit setzen, danach eine Auswahlbox?"
671
 
672
- #: contact-form-7/modules/checkbox.php:218
673
  msgid "Wrap each item with <label> tag?"
674
  msgstr "Jede Position mit einem <label> Tag umbrechen?"
675
 
676
- #: contact-form-7/modules/checkbox.php:220
677
  msgid "Make checkboxes exclusive?"
678
  msgstr "Exklusive Auswahlboxen erstellen?"
679
 
680
- #: contact-form-7/modules/checkbox.php:228
681
  msgid "And, put this code into the Mail fields below."
682
  msgstr "Und setzen Sie diesen Code in das Nachrichtentext Feld unterhalb ein."
683
 
684
- #: contact-form-7/modules/file.php:197
685
  msgid "Uploading a file fails for any reason"
686
  msgstr "Fehler aus unbekannten Gründen beim hochladen der Datei."
687
 
688
- #: contact-form-7/modules/file.php:198
689
  msgid "Failed to upload file."
690
  msgstr "Das hochladen der Datei ist fehlgeschlagen."
691
 
692
- #: contact-form-7/modules/file.php:202
693
  msgid "Uploaded file is not allowed file type"
694
  msgstr "Die hochgeladene Datei ist ein nicht erlaubter Dateityp!"
695
 
696
- #: contact-form-7/modules/file.php:203
697
  msgid "This file type is not allowed."
698
  msgstr "Dieser Dateityp ist nicht erlaubt."
699
 
700
- #: contact-form-7/modules/file.php:207
701
  msgid "Uploaded file is too large"
702
  msgstr "Die hochgeladene Datei ist zu gross!"
703
 
704
- #: contact-form-7/modules/file.php:208
705
  msgid "This file is too large."
706
  msgstr "Diese Datei ist zu gross."
707
 
708
- #: contact-form-7/modules/file.php:212
709
  msgid "Uploading a file fails for PHP error"
710
  msgstr "Das hochladen der Datei verursachte einen PHP Error."
711
 
712
- #: contact-form-7/modules/file.php:213
713
  msgid "Failed to upload file. Error occurred."
714
  msgstr "Das hochladen der Datei ist fehlgeschlagen. Es sind Fehler aufgetreten."
715
 
716
- #: contact-form-7/modules/file.php:224
717
  msgid "File upload"
718
  msgstr "Datei Upload"
719
 
720
- #: contact-form-7/modules/file.php:247
721
  msgid "File size limit"
722
  msgstr "Dateigrössen Begrenzung"
723
 
724
- #: contact-form-7/modules/file.php:247
725
  msgid "bytes"
726
  msgstr "Bytes"
727
 
728
- #: contact-form-7/modules/file.php:250
729
  msgid "Acceptable file types"
730
  msgstr "Akzeptierte Dateitypen"
731
 
732
- #: contact-form-7/modules/file.php:257
733
  msgid "And, put this code into the File Attachments field below."
734
  msgstr "Und setzen Sie diesen Code in das Datei Anhang Feld unterhalb ein."
735
 
736
- #: contact-form-7/modules/file.php:282
737
  #, php-format
738
  msgid "This contact form contains file uploading fields, but the temporary folder for the files (%s) does not exist or is not writable. You can create the folder or change its permission manually."
739
  msgstr "Dieses Kontaktformular enthält Datei Upload Felder, aber der temporäre Ordner für die Dateien (%s) ist nicht vorhanden oder nicht beschreibbar. Sie können den Ordner anlegen oder die Berechtigung manuell ändern."
@@ -742,76 +746,76 @@ msgstr "Dieses Kontaktformular enthält Datei Upload Felder, aber der temporäre
742
  msgid "This contact form contains [icl] tags, but they are obsolete and no longer functioning on this version of Contact Form 7. <a href=\"http://contactform7.com/2009/12/25/contact-form-in-your-language/#Creating_contact_form_in_different_languages\" target=\"_blank\">There is a simpler way for creating contact forms of other languages</a> and you are recommended to use it."
743
  msgstr "Dieses Kontaktformular enthält [icl] Tags, aber sie sind veraltet und nicht funktionieren nicht mehr in dieser Version von Contact Form 7. <a href=\"http://contactform7.com/2009/12/25/contact-form-in-your-language/#Creating_contact_form_in_different_languages\" target=\"_blank\">Es ist ein einfacher Weg, ein Kontaktformulars in anderen Sprachen zu erstellen</a> und es wird empfohlen, dies zu verwenden."
744
 
745
- #: contact-form-7/modules/quiz.php:164
746
  msgid "Sender doesn't enter the correct answer to the quiz"
747
  msgstr "Der Absender beantwortet im Quiz die Frage falsch."
748
 
749
- #: contact-form-7/modules/quiz.php:165
750
  msgid "Your answer is not correct."
751
  msgstr "Ihre eingegebene Antwort ist falsch!"
752
 
753
- #: contact-form-7/modules/quiz.php:175
754
  msgid "Quiz"
755
  msgstr "Quiz"
756
 
757
- #: contact-form-7/modules/quiz.php:205
758
  msgid "Quizzes"
759
  msgstr "Quiz"
760
 
761
- #: contact-form-7/modules/quiz.php:207
762
  msgid "* quiz|answer (e.g. 1+1=?|2)"
763
  msgstr "* Quiz|Antwort (z.B. 1+1=?|2)"
764
 
765
- #: contact-form-7/modules/select.php:146
766
  msgid "Drop-down menu"
767
  msgstr "Auswahlmenü"
768
 
769
- #: contact-form-7/modules/select.php:175
770
  msgid "Allow multiple selections?"
771
  msgstr "Mehrfachauswahl erlauben?"
772
 
773
- #: contact-form-7/modules/select.php:176
774
  msgid "Insert a blank item as the first option?"
775
  msgstr "Leere Position als die erste Option einfügen?"
776
 
777
- #: contact-form-7/modules/submit.php:55
778
  msgid "Submit button"
779
  msgstr "Senden Button"
780
 
781
- #: contact-form-7/modules/submit.php:73
782
  msgid "Label"
783
  msgstr "Beschriftung"
784
 
785
- #: contact-form-7/modules/text.php:129
786
  msgid "Text field"
787
  msgstr "Text Feld"
788
 
789
- #: contact-form-7/modules/text.php:132
790
  msgid "Email field"
791
  msgstr "Email Feld"
792
 
793
- #: contact-form-7/modules/text.php:174
794
  msgid "Akismet"
795
  msgstr "Askimet"
796
 
797
- #: contact-form-7/modules/text.php:176
798
  msgid "This field requires author's name"
799
  msgstr "Dieses Feld erfordert den Namen des Autors"
800
 
801
- #: contact-form-7/modules/text.php:177
802
  msgid "This field requires author's URL"
803
  msgstr "Dieses Feld erfordert die URL des Autors"
804
 
805
- #: contact-form-7/modules/text.php:179
806
  msgid "This field requires author's email address"
807
  msgstr "Dieses Feld erfordert die Email Adresse des Autors"
808
 
809
- #: contact-form-7/modules/text.php:183
810
- #: contact-form-7/modules/textarea.php:149
811
  msgid "Default value"
812
  msgstr "Standardwert"
813
 
814
- #: contact-form-7/modules/textarea.php:118
815
  msgid "Text area"
816
  msgstr "Text Bereich"
817
 
1
  msgid ""
2
  msgstr ""
3
+ "Project-Id-Version: Contact Form | V2.2\n"
4
  "Report-Msgid-Bugs-To: \n"
5
+ "POT-Creation-Date: 2010-03-23 06:47+0900\n"
6
+ "PO-Revision-Date: 2010-03-24 17:27+0100\n"
7
  "Last-Translator: Ivan Graf <contact@bildergallery.com>\n"
8
  "Language-Team: \n"
9
  "MIME-Version: 1.0\n"
47
  msgid "Hide"
48
  msgstr "Verstecken"
49
 
50
+ #: contact-form-7/admin/admin.php:261
51
  msgid "Contact form"
52
  msgstr "Kontaktformular"
53
 
54
+ #: contact-form-7/admin/admin.php:280
55
  msgid "Settings"
56
  msgstr "Einstellungen"
57
 
58
+ #: contact-form-7/admin/admin.php:291
59
  msgid "http://contactform7.com/"
60
  msgstr "http://contactform7.com/"
61
 
62
+ #: contact-form-7/admin/admin.php:292
63
  msgid "Contactform7.com"
64
  msgstr "Contactform7.com"
65
 
66
+ #: contact-form-7/admin/admin.php:293
67
  msgid "http://contactform7.com/docs/"
68
  msgstr "http://contactform7.com/docs/"
69
 
70
+ #: contact-form-7/admin/admin.php:294
71
  msgid "Docs"
72
  msgstr "Dokumente"
73
 
74
+ #: contact-form-7/admin/admin.php:295
75
  msgid "http://contactform7.com/faq/"
76
  msgstr "http://contactform7.com/faq/"
77
 
78
+ #: contact-form-7/admin/admin.php:296
79
  msgid "FAQ"
80
  msgstr "Faq"
81
 
82
+ #: contact-form-7/admin/admin.php:297
83
  msgid "http://contactform7.com/support/"
84
  msgstr "http://contactform7.com/support/"
85
 
86
+ #: contact-form-7/admin/admin.php:298
87
  msgid "Support"
88
  msgstr "Support"
89
 
90
+ #: contact-form-7/admin/admin.php:312
91
  msgid "Contact form created."
92
  msgstr "Kontaktformular erstellt."
93
 
94
+ #: contact-form-7/admin/admin.php:315
95
  msgid "Contact form saved."
96
  msgstr "Kontaktformular gespeichert."
97
 
98
+ #: contact-form-7/admin/admin.php:318
99
  msgid "Contact form deleted."
100
  msgstr "Kontaktformular gelöscht."
101
 
102
+ #: contact-form-7/admin/admin.php:321
103
  msgid "Database table created."
104
  msgstr "Datenbanktabelle erstellt."
105
 
106
+ #: contact-form-7/admin/admin.php:324
107
  msgid "Failed to create database table."
108
  msgstr "Fehler beim Erstellen einer Datenbanktabelle."
109
 
110
+ #: contact-form-7/admin/admin.php:357
111
  msgid "Contact Form 7 needs your support. Please donate today."
112
  msgstr "Contact Form 7 braucht Ihre Unterstützung. Bitte spenden Sie noch heute."
113
 
114
+ #: contact-form-7/admin/admin.php:358
115
  msgid "Your contribution is needed for making this plugin better."
116
  msgstr "Ihr Beitrag ist für die Herstellung dieses Plugin sehr nützlich."
117
 
118
+ #: contact-form-7/admin/admin.php:364
119
  msgid "http://contactform7.com/donate/"
120
  msgstr "http://contactform7.com/donate/"
121
 
122
+ #: contact-form-7/admin/admin.php:364
123
  msgid "Donate"
124
  msgstr "Spende"
125
 
239
  msgid "(select language)"
240
  msgstr "(wähle Sprache)"
241
 
242
+ #: contact-form-7/includes/classes.php:564
243
  msgid "Untitled"
244
  msgstr "Ohne Titel"
245
 
414
  msgstr "Französisch"
415
 
416
  #: contact-form-7/includes/functions.php:186
417
+ msgid "Galician"
418
+ msgstr "Galicisch"
419
+
420
+ #: contact-form-7/includes/functions.php:187
421
  msgid "Georgian"
422
  msgstr "Georgisch"
423
 
424
+ #: contact-form-7/includes/functions.php:188
425
  msgid "German"
426
  msgstr "Deutsch"
427
 
428
+ #: contact-form-7/includes/functions.php:189
429
  msgid "Greek"
430
  msgstr "Griechisch"
431
 
432
+ #: contact-form-7/includes/functions.php:190
433
  msgid "Hebrew"
434
  msgstr "Hebräisch"
435
 
436
+ #: contact-form-7/includes/functions.php:191
437
  msgid "Hindi"
438
  msgstr "Hindisch"
439
 
440
+ #: contact-form-7/includes/functions.php:192
441
  msgid "Hungarian"
442
  msgstr "Ungarisch"
443
 
444
+ #: contact-form-7/includes/functions.php:193
445
  msgid "Indonesian"
446
  msgstr "Indonesisch"
447
 
448
+ #: contact-form-7/includes/functions.php:194
449
  msgid "Italian"
450
  msgstr "Italienisch"
451
 
452
+ #: contact-form-7/includes/functions.php:195
453
  msgid "Japanese"
454
  msgstr "Japanisch"
455
 
456
+ #: contact-form-7/includes/functions.php:196
457
  msgid "Korean"
458
  msgstr "Koreanisch"
459
 
460
+ #: contact-form-7/includes/functions.php:197
461
  msgid "Latvian"
462
  msgstr "Lettisch"
463
 
464
+ #: contact-form-7/includes/functions.php:198
465
  msgid "Lithuanian"
466
  msgstr "Litauisch"
467
 
468
+ #: contact-form-7/includes/functions.php:199
469
  msgid "Malayalam"
470
  msgstr "Malayalam"
471
 
472
+ #: contact-form-7/includes/functions.php:200
473
  msgid "Norwegian"
474
  msgstr "Norwegisch"
475
 
476
+ #: contact-form-7/includes/functions.php:201
477
  msgid "Persian"
478
  msgstr "Persisch"
479
 
480
+ #: contact-form-7/includes/functions.php:202
481
  msgid "Polish"
482
  msgstr "Polnisch"
483
 
484
+ #: contact-form-7/includes/functions.php:203
485
  msgid "Portuguese"
486
  msgstr "Portugiesisch"
487
 
488
+ #: contact-form-7/includes/functions.php:204
489
  msgid "Russian"
490
  msgstr "Russisch"
491
 
492
+ #: contact-form-7/includes/functions.php:205
493
  msgid "Romanian"
494
  msgstr "Rumänisch"
495
 
496
+ #: contact-form-7/includes/functions.php:206
497
  msgid "Serbian"
498
  msgstr "Serbisch"
499
 
500
+ #: contact-form-7/includes/functions.php:207
501
  msgid "Slovak"
502
  msgstr "Slowakisch"
503
 
504
+ #: contact-form-7/includes/functions.php:208
505
  msgid "Slovene"
506
  msgstr "Slovenisch"
507
 
508
+ #: contact-form-7/includes/functions.php:209
509
  msgid "Spanish"
510
  msgstr "Spanisch"
511
 
512
+ #: contact-form-7/includes/functions.php:210
513
  msgid "Swedish"
514
  msgstr "Schwedisch"
515
 
516
+ #: contact-form-7/includes/functions.php:211
517
  msgid "Thai"
518
  msgstr "Thailändisch"
519
 
520
+ #: contact-form-7/includes/functions.php:212
521
  msgid "Turkish"
522
  msgstr "Türkisch"
523
 
524
+ #: contact-form-7/includes/functions.php:213
525
  msgid "Ukrainian"
526
  msgstr "Ukrainisch"
527
 
528
+ #: contact-form-7/includes/functions.php:214
529
  msgid "Vietnamese"
530
  msgstr "Vietnamesisch"
531
 
532
+ #: contact-form-7/modules/acceptance.php:104
533
  msgid "Acceptance"
534
  msgstr "Zustimmung"
535
 
536
+ #: contact-form-7/modules/acceptance.php:113
537
+ #: contact-form-7/modules/captcha.php:214
538
+ #: contact-form-7/modules/checkbox.php:209
539
+ #: contact-form-7/modules/file.php:241
540
  msgid "Name"
541
  msgstr "Name"
542
 
543
+ #: contact-form-7/modules/acceptance.php:118
544
+ #: contact-form-7/modules/acceptance.php:121
 
 
545
  #: contact-form-7/modules/captcha.php:221
546
  #: contact-form-7/modules/captcha.php:224
547
+ #: contact-form-7/modules/captcha.php:229
548
+ #: contact-form-7/modules/captcha.php:232
549
+ #: contact-form-7/modules/captcha.php:236
550
  #: contact-form-7/modules/captcha.php:247
551
  #: contact-form-7/modules/captcha.php:250
552
+ #: contact-form-7/modules/captcha.php:255
553
+ #: contact-form-7/modules/captcha.php:258
554
+ #: contact-form-7/modules/checkbox.php:214
555
+ #: contact-form-7/modules/checkbox.php:217
556
+ #: contact-form-7/modules/file.php:246
557
+ #: contact-form-7/modules/file.php:249
558
+ #: contact-form-7/modules/file.php:254
559
+ #: contact-form-7/modules/file.php:257
560
  msgid "optional"
561
  msgstr "optional"
562
 
563
+ #: contact-form-7/modules/acceptance.php:127
564
  msgid "Make this checkbox checked by default?"
565
  msgstr "Auswahlbox standardmässig aktivieren?"
566
 
567
+ #: contact-form-7/modules/acceptance.php:128
568
  msgid "Make this checkbox work inversely?"
569
  msgstr "Auswahlbox umkehren (Invert)?"
570
 
571
+ #: contact-form-7/modules/acceptance.php:129
572
  msgid "* That means visitor who accepts the term unchecks it."
573
  msgstr "* Bedeutet, dass der Besucher die Bedingungen akzeptiert wenn er die Auswahlbox deaktiviert."
574
 
575
+ #: contact-form-7/modules/acceptance.php:134
576
+ #: contact-form-7/modules/captcha.php:263
577
+ #: contact-form-7/modules/checkbox.php:237
578
+ #: contact-form-7/modules/file.php:262
579
  msgid "Copy this code and paste it into the form left."
580
  msgstr "Kopieren Sie diesen Code und fügen ihn in das Formular links ein."
581
 
582
+ #: contact-form-7/modules/captcha.php:70
583
  msgid "To use CAPTCHA, you need <a href=\"http://wordpress.org/extend/plugins/really-simple-captcha/\">Really Simple CAPTCHA</a> plugin installed."
584
  msgstr "Um den Captcha Code anzuzeigen, muss dieses <a href=\"http://wordpress.org/extend/plugins/really-simple-captcha/\">Plugin</a> installiert sein."
585
 
586
+ #: contact-form-7/modules/captcha.php:189
587
  msgid "The code that sender entered does not match the CAPTCHA"
588
  msgstr "Der eingegebene Code stimmt nicht mit dem angezeigten Captcha Code überein!"
589
 
590
+ #: contact-form-7/modules/captcha.php:190
591
  msgid "Your entered code is incorrect."
592
  msgstr "Ihr eingegebener Code ist falsch."
593
 
594
+ #: contact-form-7/modules/captcha.php:200
595
  msgid "CAPTCHA"
596
  msgstr "Captcha"
597
 
598
+ #: contact-form-7/modules/captcha.php:211
599
  msgid "Note: To use CAPTCHA, you need Really Simple CAPTCHA plugin installed."
600
  msgstr "Hinweis: Um Captcha zu verwenden, muss dieses Plugin installiert sein."
601
 
602
+ #: contact-form-7/modules/captcha.php:218
603
  msgid "Image settings"
604
  msgstr "Bild Einstellungen"
605
 
606
+ #: contact-form-7/modules/captcha.php:229
607
  msgid "Foreground color"
608
  msgstr "Vordergrundfarbe"
609
 
610
+ #: contact-form-7/modules/captcha.php:232
611
  msgid "Background color"
612
  msgstr "Hintergrundfarbe"
613
 
614
+ #: contact-form-7/modules/captcha.php:236
615
  msgid "Image size"
616
  msgstr "Bild Grösse"
617
 
618
+ #: contact-form-7/modules/captcha.php:237
619
  msgid "Small"
620
  msgstr "Klein"
621
 
622
+ #: contact-form-7/modules/captcha.php:238
623
  msgid "Medium"
624
  msgstr "Mittel"
625
 
626
+ #: contact-form-7/modules/captcha.php:239
627
  msgid "Large"
628
  msgstr "Gross"
629
 
630
+ #: contact-form-7/modules/captcha.php:244
631
  msgid "Input field settings"
632
  msgstr "Eingabefeld Einstellungen"
633
 
634
+ #: contact-form-7/modules/captcha.php:264
635
  msgid "For image"
636
  msgstr "Für das Bild"
637
 
638
+ #: contact-form-7/modules/captcha.php:266
639
  msgid "For input field"
640
  msgstr "Für das Eingabefeld"
641
 
642
+ #: contact-form-7/modules/captcha.php:296
643
  #, php-format
644
  msgid "This contact form contains CAPTCHA fields, but the temporary folder for the files (%s) does not exist or is not writable. You can create the folder or change its permission manually."
645
  msgstr "Dieses Kontaktformular enthält CAPTCHA-Felder, aber der temporäre Ordner für die Dateien (%s) ist nicht vorhanden oder nicht beschreibbar. Sie können den Ordner anlegen oder die Berechtigung manuell ändern."
646
 
647
+ #: contact-form-7/modules/captcha.php:302
648
  msgid "This contact form contains CAPTCHA fields, but the necessary libraries (GD and FreeType) are not available on your server."
649
  msgstr "Dieses Kontaktformular enthält CAPTCHA-Felder, aber die benötigten Bibliotheken (GD und FreeType) sind nicht auf Ihrem Server verfügbar."
650
 
651
+ #: contact-form-7/modules/checkbox.php:182
652
  msgid "Checkboxes"
653
  msgstr "Auswahlbox"
654
 
655
+ #: contact-form-7/modules/checkbox.php:185
656
  msgid "Radio buttons"
657
  msgstr "Radio Button"
658
 
659
+ #: contact-form-7/modules/checkbox.php:206
660
+ #: contact-form-7/modules/file.php:240
661
  msgid "Required field?"
662
  msgstr "Pflichtfeld?"
663
 
664
+ #: contact-form-7/modules/checkbox.php:222
665
  msgid "Choices"
666
  msgstr "Auswahlmöglichkeiten"
667
 
668
+ #: contact-form-7/modules/checkbox.php:224
669
  msgid "* One choice per line."
670
  msgstr "* Eine Auswahlmöglichkeit pro Zeile."
671
 
672
+ #: contact-form-7/modules/checkbox.php:228
673
  msgid "Put a label first, a checkbox last?"
674
  msgstr "Erste Auswahlmöglichkeit setzen, danach eine Auswahlbox?"
675
 
676
+ #: contact-form-7/modules/checkbox.php:229
677
  msgid "Wrap each item with <label> tag?"
678
  msgstr "Jede Position mit einem <label> Tag umbrechen?"
679
 
680
+ #: contact-form-7/modules/checkbox.php:231
681
  msgid "Make checkboxes exclusive?"
682
  msgstr "Exklusive Auswahlboxen erstellen?"
683
 
684
+ #: contact-form-7/modules/checkbox.php:239
685
  msgid "And, put this code into the Mail fields below."
686
  msgstr "Und setzen Sie diesen Code in das Nachrichtentext Feld unterhalb ein."
687
 
688
+ #: contact-form-7/modules/file.php:204
689
  msgid "Uploading a file fails for any reason"
690
  msgstr "Fehler aus unbekannten Gründen beim hochladen der Datei."
691
 
692
+ #: contact-form-7/modules/file.php:205
693
  msgid "Failed to upload file."
694
  msgstr "Das hochladen der Datei ist fehlgeschlagen."
695
 
696
+ #: contact-form-7/modules/file.php:209
697
  msgid "Uploaded file is not allowed file type"
698
  msgstr "Die hochgeladene Datei ist ein nicht erlaubter Dateityp!"
699
 
700
+ #: contact-form-7/modules/file.php:210
701
  msgid "This file type is not allowed."
702
  msgstr "Dieser Dateityp ist nicht erlaubt."
703
 
704
+ #: contact-form-7/modules/file.php:214
705
  msgid "Uploaded file is too large"
706
  msgstr "Die hochgeladene Datei ist zu gross!"
707
 
708
+ #: contact-form-7/modules/file.php:215
709
  msgid "This file is too large."
710
  msgstr "Diese Datei ist zu gross."
711
 
712
+ #: contact-form-7/modules/file.php:219
713
  msgid "Uploading a file fails for PHP error"
714
  msgstr "Das hochladen der Datei verursachte einen PHP Error."
715
 
716
+ #: contact-form-7/modules/file.php:220
717
  msgid "Failed to upload file. Error occurred."
718
  msgstr "Das hochladen der Datei ist fehlgeschlagen. Es sind Fehler aufgetreten."
719
 
720
+ #: contact-form-7/modules/file.php:231
721
  msgid "File upload"
722
  msgstr "Datei Upload"
723
 
724
+ #: contact-form-7/modules/file.php:254
725
  msgid "File size limit"
726
  msgstr "Dateigrössen Begrenzung"
727
 
728
+ #: contact-form-7/modules/file.php:254
729
  msgid "bytes"
730
  msgstr "Bytes"
731
 
732
+ #: contact-form-7/modules/file.php:257
733
  msgid "Acceptable file types"
734
  msgstr "Akzeptierte Dateitypen"
735
 
736
+ #: contact-form-7/modules/file.php:264
737
  msgid "And, put this code into the File Attachments field below."
738
  msgstr "Und setzen Sie diesen Code in das Datei Anhang Feld unterhalb ein."
739
 
740
+ #: contact-form-7/modules/file.php:289
741
  #, php-format
742
  msgid "This contact form contains file uploading fields, but the temporary folder for the files (%s) does not exist or is not writable. You can create the folder or change its permission manually."
743
  msgstr "Dieses Kontaktformular enthält Datei Upload Felder, aber der temporäre Ordner für die Dateien (%s) ist nicht vorhanden oder nicht beschreibbar. Sie können den Ordner anlegen oder die Berechtigung manuell ändern."
746
  msgid "This contact form contains [icl] tags, but they are obsolete and no longer functioning on this version of Contact Form 7. <a href=\"http://contactform7.com/2009/12/25/contact-form-in-your-language/#Creating_contact_form_in_different_languages\" target=\"_blank\">There is a simpler way for creating contact forms of other languages</a> and you are recommended to use it."
747
  msgstr "Dieses Kontaktformular enthält [icl] Tags, aber sie sind veraltet und nicht funktionieren nicht mehr in dieser Version von Contact Form 7. <a href=\"http://contactform7.com/2009/12/25/contact-form-in-your-language/#Creating_contact_form_in_different_languages\" target=\"_blank\">Es ist ein einfacher Weg, ein Kontaktformulars in anderen Sprachen zu erstellen</a> und es wird empfohlen, dies zu verwenden."
748
 
749
+ #: contact-form-7/modules/quiz.php:170
750
  msgid "Sender doesn't enter the correct answer to the quiz"
751
  msgstr "Der Absender beantwortet im Quiz die Frage falsch."
752
 
753
+ #: contact-form-7/modules/quiz.php:171
754
  msgid "Your answer is not correct."
755
  msgstr "Ihre eingegebene Antwort ist falsch!"
756
 
757
+ #: contact-form-7/modules/quiz.php:181
758
  msgid "Quiz"
759
  msgstr "Quiz"
760
 
761
+ #: contact-form-7/modules/quiz.php:211
762
  msgid "Quizzes"
763
  msgstr "Quiz"
764
 
765
+ #: contact-form-7/modules/quiz.php:213
766
  msgid "* quiz|answer (e.g. 1+1=?|2)"
767
  msgstr "* Quiz|Antwort (z.B. 1+1=?|2)"
768
 
769
+ #: contact-form-7/modules/select.php:154
770
  msgid "Drop-down menu"
771
  msgstr "Auswahlmenü"
772
 
773
+ #: contact-form-7/modules/select.php:183
774
  msgid "Allow multiple selections?"
775
  msgstr "Mehrfachauswahl erlauben?"
776
 
777
+ #: contact-form-7/modules/select.php:184
778
  msgid "Insert a blank item as the first option?"
779
  msgstr "Leere Position als die erste Option einfügen?"
780
 
781
+ #: contact-form-7/modules/submit.php:62
782
  msgid "Submit button"
783
  msgstr "Senden Button"
784
 
785
+ #: contact-form-7/modules/submit.php:80
786
  msgid "Label"
787
  msgstr "Beschriftung"
788
 
789
+ #: contact-form-7/modules/text.php:137
790
  msgid "Text field"
791
  msgstr "Text Feld"
792
 
793
+ #: contact-form-7/modules/text.php:140
794
  msgid "Email field"
795
  msgstr "Email Feld"
796
 
797
+ #: contact-form-7/modules/text.php:182
798
  msgid "Akismet"
799
  msgstr "Askimet"
800
 
801
+ #: contact-form-7/modules/text.php:184
802
  msgid "This field requires author's name"
803
  msgstr "Dieses Feld erfordert den Namen des Autors"
804
 
805
+ #: contact-form-7/modules/text.php:185
806
  msgid "This field requires author's URL"
807
  msgstr "Dieses Feld erfordert die URL des Autors"
808
 
809
+ #: contact-form-7/modules/text.php:187
810
  msgid "This field requires author's email address"
811
  msgstr "Dieses Feld erfordert die Email Adresse des Autors"
812
 
813
+ #: contact-form-7/modules/text.php:191
814
+ #: contact-form-7/modules/textarea.php:157
815
  msgid "Default value"
816
  msgstr "Standardwert"
817
 
818
+ #: contact-form-7/modules/textarea.php:126
819
  msgid "Text area"
820
  msgstr "Text Bereich"
821
 
languages/wpcf7-fr_FR.mo CHANGED
Binary file
languages/wpcf7-fr_FR.po CHANGED
@@ -2,12 +2,12 @@ msgid ""
2
  msgstr ""
3
  "Project-Id-Version: WP Contact Form 7\n"
4
  "Report-Msgid-Bugs-To: \n"
5
- "POT-Creation-Date: \n"
6
- "PO-Revision-Date: 2009-07-22 18:32+0900\n"
7
- "Last-Translator: \n"
8
  "Language-Team: jillij <admin@jillij.com>\n"
9
  "MIME-Version: 1.0\n"
10
- "Content-Type: text/plain; charset=utf-8\n"
11
  "Content-Transfer-Encoding: 8bit\n"
12
  "Plural-Forms: nplurals=2; plural=n != 1;\n"
13
  "X-Poedit-Language: French\n"
@@ -18,568 +18,960 @@ msgstr ""
18
  "X-Textdomain-Support: yes\n"
19
  "X-Poedit-SearchPath-0: contact-form-7\n"
20
 
21
- #@ wpcf7
22
- #: admin/admin.php:293
23
- msgid "Contact form"
24
- msgstr "Formulaire de contact"
 
 
 
 
25
 
26
- #@ wpcf7
27
- #: admin/admin-panel.php:3
28
- #: admin/admin.php:102
 
29
  msgid "Contact Form 7"
30
  msgstr "Contact Form 7"
31
 
32
- #@ wpcf7
33
- #: includes/functions.php:33
34
- msgid "Your Name"
35
- msgstr "Votre Nom"
36
-
37
- #@ wpcf7
38
- #: includes/functions.php:33
39
- #: includes/functions.php:35
40
- msgid "(required)"
41
- msgstr "(obligatoire)"
42
-
43
- #@ wpcf7
44
- #: includes/functions.php:35
45
- msgid "Your Email"
46
- msgstr "Votre Email"
47
-
48
- #@ wpcf7
49
- #: includes/functions.php:37
50
- msgid "Subject"
51
- msgstr "Sujet"
52
-
53
- #@ wpcf7
54
- #: includes/functions.php:39
55
- msgid "Your Message"
56
- msgstr "Votre Message"
57
-
58
- #@ wpcf7
59
- #: includes/functions.php:41
60
- #: modules/submit.php:37
61
- msgid "Send"
62
- msgstr "Envoyer"
63
-
64
- #@ wpcf7
65
- #: includes/functions.php:6
66
- msgid "Your message was sent successfully. Thanks."
67
- msgstr "Votre message a bien été envoyé. Merci."
68
-
69
- #@ wpcf7
70
- #: includes/functions.php:8
71
- #: includes/functions.php:10
72
- msgid "Failed to send your message. Please try later or contact administrator by other way."
73
- msgstr "Erreur lors de l'envoi du message. Veuillez réessayer plus tard, ou contacter l'administrateur d'une autre manière."
74
-
75
- #@ wpcf7
76
- #: includes/functions.php:12
77
- msgid "Validation errors occurred. Please confirm the fields and submit it again."
78
- msgstr "Erreur de validation. Veuillez vérifier les champs et soumettre à nouveau."
79
-
80
- #@ wpcf7
81
- #: includes/functions.php:16
82
- msgid "Email address seems invalid."
83
- msgstr "L'adresse Email semble invalide."
84
-
85
- #@ wpcf7
86
- #: includes/functions.php:18
87
- msgid "Please fill the required field."
88
- msgstr "Veuillez remplir les champs requis."
89
-
90
- #@ wpcf7
91
- #: includes/functions.php:20
92
- msgid "Your entered code is incorrect."
93
- msgstr "Le code entre est incorrect."
94
-
95
- #@ wpcf7
96
- #: admin/admin-panel.php:18
97
  msgid "Add new"
98
  msgstr "Ajouter un nouveau"
99
 
100
- #@ wpcf7
101
- #: admin/admin-panel.php:131
102
- #: admin/admin-panel.php:184
103
- msgid "Message body:"
104
- msgstr "Corps du message:"
105
 
106
- #@ wpcf7
107
- #: admin/admin-panel.php:47
108
- #: admin/admin-panel.php:279
109
  msgid "Save"
110
  msgstr "Sauvegarder"
111
 
112
- #@ wpcf7
113
- #: admin/admin-panel.php:60
114
- msgid ""
115
- "You are about to delete this contact form.\n"
116
- " 'Cancel' to stop, 'OK' to delete."
117
- msgstr ""
118
- "Vous etes sur le point de supprimer ce formulaire de contact.\n"
119
- " 'Annuler' pour arreter, 'OK' pour supprimer."
120
-
121
- #@ wpcf7
122
- #: admin/admin.php:179
123
- msgid "Akismet"
124
- msgstr "Akismet"
125
-
126
- #@ wpcf7
127
- #: admin/admin.php:178
128
- msgid "Default value"
129
- msgstr "Valeur par defaut"
130
-
131
- #@ wpcf7
132
- #: admin/admin.php:176
133
- msgid "Choices"
134
- msgstr "Choix"
135
-
136
- #@ wpcf7
137
- #: admin/admin.php:194
138
- msgid "* One choice per line."
139
- msgstr "* Un choix par ligne."
140
-
141
- #@ wpcf7
142
- #: admin/admin.php:184
143
- msgid "Foreground color"
144
- msgstr "Couleur de devant"
145
-
146
- #@ wpcf7
147
- #: admin/admin.php:185
148
- msgid "Background color"
149
- msgstr "Couleur d'arrière plan"
150
-
151
- #@ wpcf7
152
- #: admin/admin.php:186
153
- msgid "Image size"
154
- msgstr "Taille de l'image"
155
-
156
- #@ wpcf7
157
- #: admin/admin.php:187
158
- msgid "Small"
159
- msgstr "Petit"
160
-
161
- #@ wpcf7
162
- #: admin/admin.php:188
163
- msgid "Medium"
164
- msgstr "Moyen"
165
-
166
- #@ wpcf7
167
- #: admin/admin.php:189
168
- msgid "Large"
169
- msgstr "Grand"
170
-
171
- #@ wpcf7
172
- #: admin/admin.php:177
173
- msgid "Label"
174
- msgstr "Étiquette"
175
-
176
- #@ wpcf7
177
- #: admin/admin-panel.php:40
178
- msgid "Copy this code and paste it into your post, page or text widget content."
179
- msgstr "Copiez ce code et collez-le dans vos article, page ou widget-texte."
180
-
181
- #@ wpcf7
182
- #: admin/admin-panel.php:54
183
  msgid "Copy"
184
  msgstr "Copier"
185
 
186
- #@ wpcf7
187
- #: admin/admin-panel.php:58
188
  msgid "Delete"
189
  msgstr "Supprimer"
190
 
191
- #@ wpcf7
192
- #: admin/admin-panel.php:75
 
 
 
 
 
 
 
 
 
193
  msgid "Form"
194
  msgstr "Formulaire"
195
 
196
- #@ wpcf7
197
- #: admin/admin-panel.php:95
198
  msgid "Mail"
199
- msgstr "Mail"
200
 
201
- #@ wpcf7
202
- #: admin/admin-panel.php:102
203
- #: admin/admin-panel.php:155
204
  msgid "To:"
205
- msgstr "A:"
206
 
207
- #@ wpcf7
208
- #: admin/admin-panel.php:106
209
- #: admin/admin-panel.php:159
210
  msgid "From:"
211
- msgstr "De:"
212
 
213
- #@ wpcf7
214
- #: admin/admin-panel.php:110
215
- #: admin/admin-panel.php:163
216
  msgid "Subject:"
217
- msgstr "Sujet:"
218
 
219
- #@ wpcf7
220
- #: admin/admin-panel.php:115
221
- #: admin/admin-panel.php:168
222
  msgid "Additional headers:"
223
- msgstr "En-têtes supplémentaires:"
224
 
225
- #@ wpcf7
226
- #: admin/admin-panel.php:119
227
- #: admin/admin-panel.php:172
228
  msgid "File attachments:"
229
- msgstr "Dossier des pièces jointes:"
230
 
231
- #@ wpcf7
232
- #: admin/admin-panel.php:126
233
- #: admin/admin-panel.php:179
234
  msgid "Use HTML content type"
235
- msgstr "Utilisez un type de contenu HTML"
236
 
237
- #@ wpcf7
238
- #: admin/admin-panel.php:142
 
 
 
 
 
 
239
  msgid "Mail (2)"
240
- msgstr "Mail (2)"
241
 
242
- #@ wpcf7
243
- #: admin/admin-panel.php:149
244
  msgid "Use mail (2)"
245
- msgstr "Utiliser le mail (2)"
246
 
247
- #@ wpcf7
248
- #: admin/admin-panel.php:195
249
  msgid "Messages"
250
  msgstr "Messages"
251
 
252
- #@ wpcf7
253
- #: admin/admin-panel.php:203
254
- msgid "Sender's message was sent successfully"
255
- msgstr "Votre message a été envoyé avec succès"
 
 
 
 
 
 
 
 
 
 
 
 
256
 
257
- #@ wpcf7
258
- #: admin/admin-panel.php:207
259
- msgid "Sender's message was failed to send"
260
- msgstr "Votre message n'a pas pu être envoyé"
261
 
262
- #@ wpcf7
263
- #: admin/admin-panel.php:211
264
- msgid "Akismet judged the sending activity as spamming"
265
- msgstr "Akismet a jugé que cet envoi est un spam"
266
 
267
- #@ wpcf7
268
- #: admin/admin-panel.php:215
269
- msgid "Validation errors occurred"
270
- msgstr "Des erreurs de validation sont survenues"
271
 
272
- #@ wpcf7
273
- #: admin/admin-panel.php:219
274
- msgid "There is a field that sender is needed to fill in"
275
- msgstr "Il y a un champs obligatoire qui n'a pas été rempli"
276
 
277
- #@ wpcf7
278
- #: admin/admin-panel.php:223
279
- msgid "Email address that sender entered is invalid"
280
- msgstr "L'adresse e-mail utilisée n'est pas valide"
281
 
282
- #@ wpcf7
283
- #: admin/admin-panel.php:227
284
- msgid "There is a field of term that sender is needed to accept"
285
- msgstr "Il y a un champ dont il est nécessaire d'accepter les termes"
286
 
287
- #@ wpcf7
288
- #: admin/admin-panel.php:231
289
- msgid "Sender doesn't enter the correct answer to the quiz"
290
- msgstr "Vous n'avez pas entré la bonne réponse au quiz"
291
 
292
- #@ wpcf7
293
- #: admin/admin-panel.php:235
294
- msgid "The code that sender entered does not match the CAPTCHA"
295
- msgstr "Le code entré ne correspond pas à la CAPTCHA"
296
 
297
- #@ wpcf7
298
- #: admin/admin-panel.php:239
299
- msgid "Uploading a file fails for any reason"
300
- msgstr "Le téléchargement de fichier a échoué pour une raison inconnue"
301
 
302
- #@ wpcf7
303
- #: admin/admin-panel.php:243
304
- msgid "Uploaded file is not allowed file type"
305
- msgstr "Le téléchargement n'autorise pas ce format de fichier"
306
 
307
- #@ wpcf7
308
- #: admin/admin-panel.php:247
309
- msgid "Uploaded file is too large"
310
- msgstr "Le fichier téléchargé est trop volumineux"
311
 
312
- #@ wpcf7
313
- #: admin/admin-panel.php:260
314
- msgid "Additional Settings"
315
- msgstr "Réglages additionnels"
316
 
317
- #@ wpcf7
318
- #: admin/admin.php:105
319
- msgid "Edit Contact Forms"
320
- msgstr "Modifier les Formulaires de contact"
321
 
322
- #@ wpcf7
323
- #: admin/admin.php:105
324
- msgid "Edit"
325
- msgstr "Modifier"
 
 
 
326
 
327
- #@ wpcf7
328
- #: admin/admin.php:152
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
329
  msgid "optional"
330
  msgstr "facultatif"
331
 
332
- #@ wpcf7
333
- #: admin/admin.php:153
334
- msgid "Generate Tag"
335
- msgstr "Générer des tags"
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
336
 
337
- #@ wpcf7
338
- #: admin/admin.php:154
339
  msgid "Text field"
340
  msgstr "Champ texte"
341
 
342
- #@ wpcf7
343
- #: admin/admin.php:155
344
  msgid "Email field"
345
- msgstr "Champ e-mail"
346
 
347
- #@ wpcf7
348
- #: admin/admin.php:156
349
- msgid "Text area"
350
- msgstr "Zone de texte"
 
 
 
 
 
 
 
 
 
 
351
 
352
- #@ wpcf7
353
- #: admin/admin.php:157
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
354
  msgid "Drop-down menu"
355
  msgstr "Menu déroulant"
356
 
357
- #@ wpcf7
358
- #: admin/admin.php:158
359
- msgid "Checkboxes"
360
- msgstr "Cases à cocher"
 
361
 
362
- #@ wpcf7
363
- #: admin/admin.php:159
364
- msgid "Radio buttons"
365
- msgstr "Boutons radio"
 
 
 
 
 
 
366
 
367
- #@ wpcf7
368
- #: admin/admin.php:160
 
 
 
 
 
369
  msgid "Acceptance"
370
  msgstr "Acceptation"
371
 
372
- #@ wpcf7
373
- #: admin/admin.php:161
374
  msgid "Make this checkbox checked by default?"
375
- msgstr "Spécifier que cette case soit cochée par défaut?"
376
 
377
- #@ wpcf7
378
- #: admin/admin.php:162
379
  msgid "Make this checkbox work inversely?"
380
- msgstr "Spécifier que cette case à cocher fonctionne de façon inversée ?"
381
 
382
- #@ wpcf7
383
- #: admin/admin.php:163
384
  msgid "* That means visitor who accepts the term unchecks it."
385
  msgstr "* Ceci signifie que le visiteur qui accepte les termes à valider doit décocher la case."
386
 
387
- #@ wpcf7
388
- #: admin/admin.php:164
389
- msgid "CAPTCHA"
390
- msgstr "CAPTCHA"
391
 
392
- #@ wpcf7
393
- #: admin/admin.php:165
394
- msgid "Quiz"
395
- msgstr "Quiz"
396
 
397
- #@ wpcf7
398
- #: admin/admin.php:166
399
- msgid "Quizzes"
400
- msgstr "Quizs"
401
 
402
- #@ wpcf7
403
- #: admin/admin.php:167
404
- msgid "* quiz|answer (e.g. 1+1=?|2)"
405
- msgstr "* quiz|réponse (par exemple : 1 +1 =?|2)"
 
 
 
 
 
 
 
 
 
 
 
 
 
 
406
 
407
- #@ wpcf7
408
- #: admin/admin.php:168
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
409
  msgid "File upload"
410
- msgstr "Fichier téléchargé"
411
 
412
- #@ wpcf7
413
- #: admin/admin.php:169
 
 
 
 
 
414
  msgid "bytes"
415
  msgstr "octets"
416
 
417
- #@ wpcf7
418
- #: admin/admin.php:170
419
- msgid "Submit button"
420
- msgstr "Bouton \\\"Soumettre\\\""
421
 
422
- #@ wpcf7
423
- #: admin/admin.php:171
424
- msgid "Name"
425
- msgstr "Nom"
426
 
427
- #@ wpcf7
428
- #: admin/admin.php:172
429
- msgid "Required field?"
430
- msgstr "Champ obligatoire?"
431
 
432
- #@ wpcf7
433
- #: admin/admin.php:173
434
- msgid "Allow multiple selections?"
435
- msgstr "Autoriser les sélections multiples?"
436
 
437
- #@ wpcf7
438
- #: admin/admin.php:174
439
- msgid "Insert a blank item as the first option?"
440
- msgstr "Insérer un choix vide comme première option?"
441
 
442
- #@ wpcf7
443
- #: admin/admin.php:175
444
- msgid "Make checkboxes exclusive?"
445
- msgstr "Insérer des cases à cocher exclusives?"
446
 
447
- #@ wpcf7
448
- #: admin/admin.php:180
449
- msgid "This field requires author's name"
450
- msgstr "Ce champ requiert le nom de l'auteur"
451
 
452
- #@ wpcf7
453
- #: admin/admin.php:181
454
- msgid "This field requires author's URL"
455
- msgstr "Ce champ requiert l'URL de l'auteur"
456
 
457
- #@ wpcf7
458
- #: admin/admin.php:182
459
- msgid "This field requires author's email address"
460
- msgstr "Ce champ requiert l'adresse e-mail de l'auteur"
461
 
462
- #@ wpcf7
463
- #: admin/admin.php:183
464
- msgid "Copy this code and paste it into the form left."
465
- msgstr "Copiez ce code et collez-le dans le formulaire à gauche."
 
 
 
 
 
466
 
467
- #@ wpcf7
468
- #: admin/admin.php:190
469
  msgid "Image settings"
470
  msgstr "Paramètres des images"
471
 
472
- #@ wpcf7
473
- #: admin/admin.php:191
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
474
  msgid "Input field settings"
475
- msgstr "Paramètres des Champs de saisie"
476
 
477
- #@ wpcf7
478
- #: admin/admin.php:192
479
  msgid "For image"
480
  msgstr "Pour l'image"
481
 
482
- #@ wpcf7
483
- #: admin/admin.php:193
484
  msgid "For input field"
485
  msgstr "Pour le champ de saisie"
486
 
487
- #@ wpcf7
488
- #: admin/admin.php:195
489
- msgid "Show"
490
- msgstr "Montrer"
491
 
492
- #@ wpcf7
493
- #: admin/admin.php:196
494
- msgid "Hide"
495
- msgstr "Masquer"
496
 
497
- #@ wpcf7
498
- #: admin/admin.php:197
499
- msgid "File size limit"
500
- msgstr "Taille maximale du fichier"
501
 
502
- #@ wpcf7
503
- #: admin/admin.php:198
504
- msgid "Acceptable file types"
505
- msgstr "Formats de fichiers acceptés"
506
 
507
- #@ wpcf7
508
- #: admin/admin.php:199
509
- msgid "Note: To use CAPTCHA, you need Really Simple CAPTCHA plugin installed."
510
- msgstr "Note: Pour utiliser la CAPTCHA, vous devez avoir installé l'extension \\\"Really Simple CAPTCHA\\\"."
511
 
512
- #@ wpcf7
513
- #: admin/admin.php:214
514
- msgid "Contact form created."
515
- msgstr "Formulaire de contact créé."
516
 
517
- #@ wpcf7
518
- #: admin/admin.php:217
519
- msgid "Contact form saved."
520
- msgstr "Formulaire de contact sauvegardé."
 
521
 
522
- #@ wpcf7
523
- #: admin/admin.php:220
524
- msgid "Contact form deleted."
525
- msgstr "Formulaire de contact supprimé."
526
 
527
- #: admin/admin.php:313
528
- msgid "Settings"
529
- msgstr ""
 
530
 
531
- #@ wpcf7
532
- #: admin/admin.php:334
533
- msgid "Contact Form 7 needs your support. Please donate today."
534
- msgstr "Contact Form 7 a besoin de votre soutien. Merci de faire un don dès aujourd'hui !"
535
 
536
- #@ wpcf7
537
- #: admin/admin.php:335
538
- msgid "Is this plugin useful for you? If you like it, please help the developer."
539
- msgstr "Est-ce que cette extension vous est utile ? Si vous l'aimez, merci d'aider le développeur."
540
 
541
- #@ wpcf7
542
- #: admin/admin.php:336
543
- msgid "Your contribution is needed for making this plugin better."
544
- msgstr "Votre contribution est nécessaire à rendre meilleure cette extension."
545
 
546
- #@ wpcf7
547
- #: admin/admin.php:337
548
- msgid "Developing a plugin and providing user support is really hard work. Please help."
549
- msgstr "Développer une extension et fournir de l'assistance à ses utilisateurs est réellement un travail conséquent. Merci d'aider l'auteur à le faire."
550
 
551
- #@ wpcf7
552
- #: includes/classes.php:536
553
- msgid "Untitled"
554
- msgstr "Sans titre"
555
 
556
- #@ wpcf7
557
- #: includes/functions.php:14
558
- msgid "Please accept the terms to proceed."
559
- msgstr "Merci de bien vouloir accepter les conditions pour continuer."
560
 
561
- #@ wpcf7
562
- #: includes/functions.php:22
563
- msgid "Your answer is not correct."
564
- msgstr "Votre réponse est incorrecte."
565
 
566
- #@ wpcf7
567
- #: includes/functions.php:24
568
- msgid "Failed to upload file."
569
- msgstr "Impossible de télécharger le fichier."
570
 
571
- #@ wpcf7
572
- #: includes/functions.php:26
573
- msgid "This file type is not allowed."
574
- msgstr "Ce type de fichier n'est pas autorisé."
 
575
 
576
- #@ wpcf7
577
- #: includes/functions.php:28
578
- msgid "This file is too large."
579
- msgstr "Ce fichier est trop volumineux."
580
 
581
- #@ wpcf7
582
- #: modules/captcha.php:62
583
- msgid "To use CAPTCHA, you need <a href=\"http://wordpress.org/extend/plugins/really-simple-captcha/\">Really Simple CAPTCHA</a> plugin installed."
584
- msgstr "Pour utiliser la CAPTCHA, vous devez avoir installé l'extension <a href=\\\"http://wordpress.org/extend/plugins/really-simple-captcha/\\\">Really Simple CAPTCHA</a> ."
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
585
 
2
  msgstr ""
3
  "Project-Id-Version: WP Contact Form 7\n"
4
  "Report-Msgid-Bugs-To: \n"
5
+ "POT-Creation-Date: 2010-03-24 15:49+0100\n"
6
+ "PO-Revision-Date: 2010-03-24 16:43+0100\n"
7
+ "Last-Translator: Oncle Tom <thomas+i18n@oncle-tom.net>\n"
8
  "Language-Team: jillij <admin@jillij.com>\n"
9
  "MIME-Version: 1.0\n"
10
+ "Content-Type: text/plain; charset=UTF-8\n"
11
  "Content-Transfer-Encoding: 8bit\n"
12
  "Plural-Forms: nplurals=2; plural=n != 1;\n"
13
  "X-Poedit-Language: French\n"
18
  "X-Textdomain-Support: yes\n"
19
  "X-Poedit-SearchPath-0: contact-form-7\n"
20
 
21
+ #: contact-form-7/admin/edit.php:9
22
+ #, php-format
23
+ 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."
24
+ msgstr "<strong>La table de base de données pour Contact Forms 7 n'existe pas.</strong> Vous devez <a href=\"%s\">créer la table</a> afin que l'extension fonctionne."
25
+
26
+ #: contact-form-7/admin/edit.php:12
27
+ msgid "<strong>The database table for Contact Form 7 does not exist.</strong>"
28
+ msgstr "<strong>La table de base de données pour Contact Forms 7 n'existe pas.</strong>"
29
 
30
+ # @ wpcf7
31
+ #: contact-form-7/admin/edit.php:17
32
+ #: contact-form-7/admin/edit.php:30
33
+ #: contact-form-7/admin/admin.php:120
34
  msgid "Contact Form 7"
35
  msgstr "Contact Form 7"
36
 
37
+ # @ wpcf7
38
+ #: contact-form-7/admin/edit.php:45
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
39
  msgid "Add new"
40
  msgstr "Ajouter un nouveau"
41
 
42
+ # @ wpcf7
43
+ #: contact-form-7/admin/edit.php:67
44
+ msgid "Copy this code and paste it into your post, page or text widget content."
45
+ msgstr "Copiez ce code et collez-le dans vos article, page ou widget texte."
 
46
 
47
+ # @ wpcf7
48
+ #: contact-form-7/admin/edit.php:75
49
+ #: contact-form-7/admin/edit.php:309
50
  msgid "Save"
51
  msgstr "Sauvegarder"
52
 
53
+ # @ wpcf7
54
+ #: contact-form-7/admin/edit.php:82
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
55
  msgid "Copy"
56
  msgstr "Copier"
57
 
58
+ # @ wpcf7
59
+ #: contact-form-7/admin/edit.php:87
60
  msgid "Delete"
61
  msgstr "Supprimer"
62
 
63
+ # @ wpcf7
64
+ #: contact-form-7/admin/edit.php:89
65
+ msgid ""
66
+ "You are about to delete this contact form.\n"
67
+ " 'Cancel' to stop, 'OK' to delete."
68
+ msgstr ""
69
+ "Vous êtes sur le point de supprimer ce formulaire de contact.\n"
70
+ " 'Annuler' pour arrêter, 'OK' pour supprimer."
71
+
72
+ # @ wpcf7
73
+ #: contact-form-7/admin/edit.php:104
74
  msgid "Form"
75
  msgstr "Formulaire"
76
 
77
+ # @ wpcf7
78
+ #: contact-form-7/admin/edit.php:128
79
  msgid "Mail"
80
+ msgstr "Email"
81
 
82
+ # @ wpcf7
83
+ #: contact-form-7/admin/edit.php:135
84
+ #: contact-form-7/admin/edit.php:202
85
  msgid "To:"
86
+ msgstr "À :"
87
 
88
+ # @ wpcf7
89
+ #: contact-form-7/admin/edit.php:140
90
+ #: contact-form-7/admin/edit.php:207
91
  msgid "From:"
92
+ msgstr "De :"
93
 
94
+ # @ wpcf7
95
+ #: contact-form-7/admin/edit.php:145
96
+ #: contact-form-7/admin/edit.php:212
97
  msgid "Subject:"
98
+ msgstr "Sujet :"
99
 
100
+ # @ wpcf7
101
+ #: contact-form-7/admin/edit.php:152
102
+ #: contact-form-7/admin/edit.php:219
103
  msgid "Additional headers:"
104
+ msgstr "Entêtes supplémentaires :"
105
 
106
+ # @ wpcf7
107
+ #: contact-form-7/admin/edit.php:157
108
+ #: contact-form-7/admin/edit.php:224
109
  msgid "File attachments:"
110
+ msgstr "Pièces jointes :"
111
 
112
+ # @ wpcf7
113
+ #: contact-form-7/admin/edit.php:165
114
+ #: contact-form-7/admin/edit.php:232
115
  msgid "Use HTML content type"
116
+ msgstr "Utiliser un type de contenu HTML"
117
 
118
+ # @ wpcf7
119
+ #: contact-form-7/admin/edit.php:172
120
+ #: contact-form-7/admin/edit.php:239
121
+ msgid "Message body:"
122
+ msgstr "Corps du message :"
123
+
124
+ # @ wpcf7
125
+ #: contact-form-7/admin/edit.php:188
126
  msgid "Mail (2)"
127
+ msgstr "Email (2)"
128
 
129
+ # @ wpcf7
130
+ #: contact-form-7/admin/edit.php:194
131
  msgid "Use mail (2)"
132
+ msgstr "Utiliser l'email (2)"
133
 
134
+ # @ wpcf7
135
+ #: contact-form-7/admin/edit.php:255
136
  msgid "Messages"
137
  msgstr "Messages"
138
 
139
+ # @ wpcf7
140
+ #: contact-form-7/admin/edit.php:285
141
+ msgid "Additional Settings"
142
+ msgstr "Réglages complémentaires"
143
+
144
+ #: contact-form-7/admin/edit.php:333
145
+ #, php-format
146
+ msgid "Use the default language (%s)"
147
+ msgstr "Utiliser la langue par défaut (%s)"
148
+
149
+ # @ wpcf7
150
+ #: contact-form-7/admin/edit.php:334
151
+ #: contact-form-7/admin/edit.php:347
152
+ #, fuzzy
153
+ msgid "Add New"
154
+ msgstr "Ajouter un nouveau"
155
 
156
+ #: contact-form-7/admin/edit.php:337
157
+ msgid "Or"
158
+ msgstr "ou"
 
159
 
160
+ #: contact-form-7/admin/edit.php:342
161
+ msgid "(select language)"
162
+ msgstr "(sélectionner une langue)"
 
163
 
164
+ # @ wpcf7
165
+ #: contact-form-7/admin/admin.php:120
166
+ msgid "Contact"
167
+ msgstr "Contact"
168
 
169
+ # @ wpcf7
170
+ #: contact-form-7/admin/admin.php:123
171
+ msgid "Edit Contact Forms"
172
+ msgstr "Modifier les formulaires de contact"
173
 
174
+ # @ wpcf7
175
+ #: contact-form-7/admin/admin.php:123
176
+ msgid "Edit"
177
+ msgstr "Modifier"
178
 
179
+ # @ wpcf7
180
+ #: contact-form-7/admin/admin.php:162
181
+ msgid "Generate Tag"
182
+ msgstr "Générer un marqueur"
183
 
184
+ # @ wpcf7
185
+ #: contact-form-7/admin/admin.php:163
186
+ msgid "Show"
187
+ msgstr "Montrer"
188
 
189
+ # @ wpcf7
190
+ #: contact-form-7/admin/admin.php:164
191
+ msgid "Hide"
192
+ msgstr "Masquer"
193
 
194
+ # @ wpcf7
195
+ #: contact-form-7/admin/admin.php:261
196
+ msgid "Contact form"
197
+ msgstr "Formulaire de contact"
198
 
199
+ #: contact-form-7/admin/admin.php:280
200
+ msgid "Settings"
201
+ msgstr "Réglages"
 
202
 
203
+ #: contact-form-7/admin/admin.php:291
204
+ msgid "http://contactform7.com/"
205
+ msgstr ""
 
206
 
207
+ # @ wpcf7
208
+ #: contact-form-7/admin/admin.php:292
209
+ msgid "Contactform7.com"
210
+ msgstr ""
211
 
212
+ #: contact-form-7/admin/admin.php:293
213
+ msgid "http://contactform7.com/docs/"
214
+ msgstr ""
 
215
 
216
+ #: contact-form-7/admin/admin.php:294
217
+ msgid "Docs"
218
+ msgstr "Documentation"
219
+
220
+ #: contact-form-7/admin/admin.php:295
221
+ msgid "http://contactform7.com/faq/"
222
+ msgstr ""
223
 
224
+ #: contact-form-7/admin/admin.php:296
225
+ msgid "FAQ"
226
+ msgstr "FAQ"
227
+
228
+ #: contact-form-7/admin/admin.php:297
229
+ msgid "http://contactform7.com/support/"
230
+ msgstr ""
231
+
232
+ #: contact-form-7/admin/admin.php:298
233
+ msgid "Support"
234
+ msgstr "Support"
235
+
236
+ # @ wpcf7
237
+ #: contact-form-7/admin/admin.php:312
238
+ msgid "Contact form created."
239
+ msgstr "Formulaire de contact créé."
240
+
241
+ # @ wpcf7
242
+ #: contact-form-7/admin/admin.php:315
243
+ msgid "Contact form saved."
244
+ msgstr "Formulaire de contact sauvegardé."
245
+
246
+ # @ wpcf7
247
+ #: contact-form-7/admin/admin.php:318
248
+ msgid "Contact form deleted."
249
+ msgstr "Formulaire de contact supprimé."
250
+
251
+ #: contact-form-7/admin/admin.php:321
252
+ msgid "Database table created."
253
+ msgstr "Table de base de données créée."
254
+
255
+ #: contact-form-7/admin/admin.php:324
256
+ msgid "Failed to create database table."
257
+ msgstr "Erreur lors de la création de la table de base de données."
258
+
259
+ # @ wpcf7
260
+ #: contact-form-7/admin/admin.php:357
261
+ msgid "Contact Form 7 needs your support. Please donate today."
262
+ msgstr "Contact Form 7 a besoin de votre soutien. Merci de faire un don dès aujourd'hui !"
263
+
264
+ # @ wpcf7
265
+ #: contact-form-7/admin/admin.php:358
266
+ msgid "Your contribution is needed for making this plugin better."
267
+ msgstr "Votre contribution est nécessaire pour améliorer cette extension."
268
+
269
+ #: contact-form-7/admin/admin.php:364
270
+ msgid "http://contactform7.com/donate/"
271
+ msgstr ""
272
+
273
+ #: contact-form-7/admin/admin.php:364
274
+ msgid "Donate"
275
+ msgstr "Effectuer un don"
276
+
277
+ # @ wpcf7
278
+ #: contact-form-7/modules/textarea.php:126
279
+ msgid "Text area"
280
+ msgstr "Zone de texte"
281
+
282
+ # @ wpcf7
283
+ #: contact-form-7/modules/textarea.php:135
284
+ #: contact-form-7/modules/text.php:160
285
+ #: contact-form-7/modules/select.php:163
286
+ #: contact-form-7/modules/checkbox.php:206
287
+ #: contact-form-7/modules/file.php:240
288
+ msgid "Required field?"
289
+ msgstr "Champ obligatoire ?"
290
+
291
+ # @ wpcf7
292
+ #: contact-form-7/modules/textarea.php:136
293
+ #: contact-form-7/modules/text.php:161
294
+ #: contact-form-7/modules/quiz.php:190
295
+ #: contact-form-7/modules/select.php:164
296
+ #: contact-form-7/modules/acceptance.php:113
297
+ #: contact-form-7/modules/checkbox.php:209
298
+ #: contact-form-7/modules/file.php:241
299
+ #: contact-form-7/modules/captcha.php:214
300
+ msgid "Name"
301
+ msgstr "Nom"
302
+
303
+ # @ wpcf7
304
+ #: contact-form-7/modules/textarea.php:141
305
+ #: contact-form-7/modules/textarea.php:144
306
+ #: contact-form-7/modules/textarea.php:149
307
+ #: contact-form-7/modules/textarea.php:152
308
+ #: contact-form-7/modules/textarea.php:157
309
+ #: contact-form-7/modules/text.php:166
310
+ #: contact-form-7/modules/text.php:169
311
+ #: contact-form-7/modules/text.php:174
312
+ #: contact-form-7/modules/text.php:177
313
+ #: contact-form-7/modules/text.php:182
314
+ #: contact-form-7/modules/text.php:191
315
+ #: contact-form-7/modules/quiz.php:195
316
+ #: contact-form-7/modules/quiz.php:198
317
+ #: contact-form-7/modules/quiz.php:203
318
+ #: contact-form-7/modules/quiz.php:206
319
+ #: contact-form-7/modules/select.php:169
320
+ #: contact-form-7/modules/select.php:172
321
+ #: contact-form-7/modules/acceptance.php:118
322
+ #: contact-form-7/modules/acceptance.php:121
323
+ #: contact-form-7/modules/checkbox.php:214
324
+ #: contact-form-7/modules/checkbox.php:217
325
+ #: contact-form-7/modules/file.php:246
326
+ #: contact-form-7/modules/file.php:249
327
+ #: contact-form-7/modules/file.php:254
328
+ #: contact-form-7/modules/file.php:257
329
+ #: contact-form-7/modules/submit.php:72
330
+ #: contact-form-7/modules/submit.php:75
331
+ #: contact-form-7/modules/submit.php:80
332
+ #: contact-form-7/modules/captcha.php:221
333
+ #: contact-form-7/modules/captcha.php:224
334
+ #: contact-form-7/modules/captcha.php:229
335
+ #: contact-form-7/modules/captcha.php:232
336
+ #: contact-form-7/modules/captcha.php:236
337
+ #: contact-form-7/modules/captcha.php:247
338
+ #: contact-form-7/modules/captcha.php:250
339
+ #: contact-form-7/modules/captcha.php:255
340
+ #: contact-form-7/modules/captcha.php:258
341
  msgid "optional"
342
  msgstr "facultatif"
343
 
344
+ # @ wpcf7
345
+ #: contact-form-7/modules/textarea.php:157
346
+ #: contact-form-7/modules/text.php:191
347
+ msgid "Default value"
348
+ msgstr "Valeur par défaut"
349
+
350
+ # @ wpcf7
351
+ #: contact-form-7/modules/textarea.php:161
352
+ #: contact-form-7/modules/text.php:195
353
+ #: contact-form-7/modules/quiz.php:218
354
+ #: contact-form-7/modules/select.php:189
355
+ #: contact-form-7/modules/acceptance.php:134
356
+ #: contact-form-7/modules/checkbox.php:237
357
+ #: contact-form-7/modules/file.php:262
358
+ #: contact-form-7/modules/submit.php:87
359
+ #: contact-form-7/modules/captcha.php:263
360
+ msgid "Copy this code and paste it into the form left."
361
+ msgstr "Copiez ce code et collez-le dans le formulaire de gauche."
362
+
363
+ #: contact-form-7/modules/textarea.php:163
364
+ #: contact-form-7/modules/text.php:197
365
+ #: contact-form-7/modules/select.php:191
366
+ #: contact-form-7/modules/checkbox.php:239
367
+ msgid "And, put this code into the Mail fields below."
368
+ msgstr "Et placez ce code dans les champs Email ci-dessous."
369
 
370
+ # @ wpcf7
371
+ #: contact-form-7/modules/text.php:137
372
  msgid "Text field"
373
  msgstr "Champ texte"
374
 
375
+ # @ wpcf7
376
+ #: contact-form-7/modules/text.php:140
377
  msgid "Email field"
378
+ msgstr "Champ email"
379
 
380
+ # @ wpcf7
381
+ #: contact-form-7/modules/text.php:182
382
+ msgid "Akismet"
383
+ msgstr "Akismet"
384
+
385
+ # @ wpcf7
386
+ #: contact-form-7/modules/text.php:184
387
+ msgid "This field requires author's name"
388
+ msgstr "Ce champ néessite le nom de l'auteur"
389
+
390
+ # @ wpcf7
391
+ #: contact-form-7/modules/text.php:185
392
+ msgid "This field requires author's URL"
393
+ msgstr "Ce champ nécessite l'URL de l'auteur"
394
 
395
+ # @ wpcf7
396
+ #: contact-form-7/modules/text.php:187
397
+ msgid "This field requires author's email address"
398
+ msgstr "Ce champ nécessite l'adresse e-mail de l'auteur"
399
+
400
+ #: contact-form-7/modules/icl.php:74
401
+ msgid "This contact form contains [icl] tags, but they are obsolete and no longer functioning on this version of Contact Form 7. <a href=\"http://contactform7.com/2009/12/25/contact-form-in-your-language/#Creating_contact_form_in_different_languages\" target=\"_blank\">There is a simpler way for creating contact forms of other languages</a> and you are recommended to use it."
402
+ msgstr "Ce formulaire de contact contient des marqueurs [icl], mais qui sont obsolètes et ne fonctionnent plus avec cette version de Contact Form 7. <a href=\"http://contactform7.com/2009/12/25/contact-form-in-your-language/#Creating_contact_form_in_different_languages\" target=\"_blank\">Il existe un moyen plus simple de créer des formulaires de contact dans d'autres langues</a> et vous êtes encouragé(e) à le 'employer."
403
+
404
+ # @ wpcf7
405
+ #: contact-form-7/modules/quiz.php:170
406
+ msgid "Sender doesn't enter the correct answer to the quiz"
407
+ msgstr "Vous n'avez pas entré la bonne réponse au quiz"
408
+
409
+ # @ wpcf7
410
+ #: contact-form-7/modules/quiz.php:171
411
+ msgid "Your answer is not correct."
412
+ msgstr "Votre réponse est incorrecte."
413
+
414
+ # @ wpcf7
415
+ #: contact-form-7/modules/quiz.php:181
416
+ msgid "Quiz"
417
+ msgstr "Quiz"
418
+
419
+ # @ wpcf7
420
+ #: contact-form-7/modules/quiz.php:211
421
+ msgid "Quizzes"
422
+ msgstr "Quizs"
423
+
424
+ # @ wpcf7
425
+ #: contact-form-7/modules/quiz.php:213
426
+ msgid "* quiz|answer (e.g. 1+1=?|2)"
427
+ msgstr "* quiz|réponse (par exemple : 1+1 =?|2)"
428
+
429
+ # @ wpcf7
430
+ #: contact-form-7/modules/select.php:154
431
  msgid "Drop-down menu"
432
  msgstr "Menu déroulant"
433
 
434
+ # @ wpcf7
435
+ #: contact-form-7/modules/select.php:177
436
+ #: contact-form-7/modules/checkbox.php:222
437
+ msgid "Choices"
438
+ msgstr "Choix"
439
 
440
+ # @ wpcf7
441
+ #: contact-form-7/modules/select.php:179
442
+ #: contact-form-7/modules/checkbox.php:224
443
+ msgid "* One choice per line."
444
+ msgstr "* Un choix par ligne."
445
+
446
+ # @ wpcf7
447
+ #: contact-form-7/modules/select.php:183
448
+ msgid "Allow multiple selections?"
449
+ msgstr "Autoriser les sélections multiples ?"
450
 
451
+ # @ wpcf7
452
+ #: contact-form-7/modules/select.php:184
453
+ msgid "Insert a blank item as the first option?"
454
+ msgstr "Insérer un choix vide comme première option ?"
455
+
456
+ # @ wpcf7
457
+ #: contact-form-7/modules/acceptance.php:104
458
  msgid "Acceptance"
459
  msgstr "Acceptation"
460
 
461
+ # @ wpcf7
462
+ #: contact-form-7/modules/acceptance.php:127
463
  msgid "Make this checkbox checked by default?"
464
+ msgstr "Cocher cette case par défaut ?"
465
 
466
+ # @ wpcf7
467
+ #: contact-form-7/modules/acceptance.php:128
468
  msgid "Make this checkbox work inversely?"
469
+ msgstr "Inverser le fonctionnement de cette case ?"
470
 
471
+ # @ wpcf7
472
+ #: contact-form-7/modules/acceptance.php:129
473
  msgid "* That means visitor who accepts the term unchecks it."
474
  msgstr "* Ceci signifie que le visiteur qui accepte les termes à valider doit décocher la case."
475
 
476
+ # @ wpcf7
477
+ #: contact-form-7/modules/checkbox.php:182
478
+ msgid "Checkboxes"
479
+ msgstr "Cases à cocher"
480
 
481
+ # @ wpcf7
482
+ #: contact-form-7/modules/checkbox.php:185
483
+ msgid "Radio buttons"
484
+ msgstr "Boutons radio"
485
 
486
+ #: contact-form-7/modules/checkbox.php:228
487
+ msgid "Put a label first, a checkbox last?"
488
+ msgstr "Placer d'abord le label, ensuite la case à cocher ?"
 
489
 
490
+ #: contact-form-7/modules/checkbox.php:229
491
+ msgid "Wrap each item with <label> tag?"
492
+ msgstr "Encadrer chaque élément d'une balise <label> ?"
493
+
494
+ # @ wpcf7
495
+ #: contact-form-7/modules/checkbox.php:231
496
+ msgid "Make checkboxes exclusive?"
497
+ msgstr "Rendre les cases à cocher exclusives?"
498
+
499
+ # @ wpcf7
500
+ #: contact-form-7/modules/file.php:204
501
+ msgid "Uploading a file fails for any reason"
502
+ msgstr "Le téléchargement de fichier a échoué pour une raison inconnue"
503
+
504
+ # @ wpcf7
505
+ #: contact-form-7/modules/file.php:205
506
+ msgid "Failed to upload file."
507
+ msgstr "Impossible de télécharger le fichier."
508
 
509
+ # @ wpcf7
510
+ #: contact-form-7/modules/file.php:209
511
+ msgid "Uploaded file is not allowed file type"
512
+ msgstr "Le téléchargement n'autorise pas ce format de fichier"
513
+
514
+ # @ wpcf7
515
+ #: contact-form-7/modules/file.php:210
516
+ msgid "This file type is not allowed."
517
+ msgstr "Ce type de fichier n'est pas autorisé."
518
+
519
+ # @ wpcf7
520
+ #: contact-form-7/modules/file.php:214
521
+ msgid "Uploaded file is too large"
522
+ msgstr "Le fichier téléchargé est trop volumineux"
523
+
524
+ # @ wpcf7
525
+ #: contact-form-7/modules/file.php:215
526
+ msgid "This file is too large."
527
+ msgstr "Ce fichier est trop volumineux."
528
+
529
+ # @ wpcf7
530
+ #: contact-form-7/modules/file.php:219
531
+ #, fuzzy
532
+ msgid "Uploading a file fails for PHP error"
533
+ msgstr "Le téléchargement de fichier a échoué pour une raison inconnue"
534
+
535
+ # @ wpcf7
536
+ #: contact-form-7/modules/file.php:220
537
+ #, fuzzy
538
+ msgid "Failed to upload file. Error occurred."
539
+ msgstr "Impossible de télécharger le fichier."
540
+
541
+ # @ wpcf7
542
+ #: contact-form-7/modules/file.php:231
543
  msgid "File upload"
544
+ msgstr "Upload de fichier"
545
 
546
+ # @ wpcf7
547
+ #: contact-form-7/modules/file.php:254
548
+ msgid "File size limit"
549
+ msgstr "Taille maximale du fichier"
550
+
551
+ # @ wpcf7
552
+ #: contact-form-7/modules/file.php:254
553
  msgid "bytes"
554
  msgstr "octets"
555
 
556
+ # @ wpcf7
557
+ #: contact-form-7/modules/file.php:257
558
+ msgid "Acceptable file types"
559
+ msgstr "Formats de fichiers acceptés"
560
 
561
+ #: contact-form-7/modules/file.php:264
562
+ msgid "And, put this code into the File Attachments field below."
563
+ msgstr "Et placez ce code dans le champ Pièce-jointe ci-dessous."
 
564
 
565
+ #: contact-form-7/modules/file.php:289
566
+ #, php-format
567
+ msgid "This contact form contains file uploading fields, but the temporary folder for the files (%s) does not exist or is not writable. You can create the folder or change its permission manually."
568
+ msgstr "Ce formulaire de contact contient des champs de téléchargement, mais le dossier temporaire de fichiers (%s) n'existe pas ou n'est pas accessible en écriture. Vous pouvez créer le dossier ou modifier ses permissions manuellement."
569
 
570
+ # @ wpcf7
571
+ #: contact-form-7/modules/submit.php:46
572
+ msgid "Send"
573
+ msgstr "Envoyer"
574
 
575
+ # @ wpcf7
576
+ #: contact-form-7/modules/submit.php:62
577
+ msgid "Submit button"
578
+ msgstr "Bouton de soumission"
579
 
580
+ # @ wpcf7
581
+ #: contact-form-7/modules/submit.php:80
582
+ msgid "Label"
583
+ msgstr "Étiquette"
584
 
585
+ # @ wpcf7
586
+ #: contact-form-7/modules/captcha.php:70
587
+ msgid "To use CAPTCHA, you need <a href=\"http://wordpress.org/extend/plugins/really-simple-captcha/\">Really Simple CAPTCHA</a> plugin installed."
588
+ msgstr "Pour utiliser la CAPTCHA, vous devez avoir installé l'extension <a href=\"http://wordpress.org/extend/plugins/really-simple-captcha/\">Really Simple CAPTCHA</a> ."
589
 
590
+ # @ wpcf7
591
+ #: contact-form-7/modules/captcha.php:189
592
+ msgid "The code that sender entered does not match the CAPTCHA"
593
+ msgstr "Le code entré ne correspond pas à la CAPTCHA"
594
 
595
+ # @ wpcf7
596
+ #: contact-form-7/modules/captcha.php:190
597
+ msgid "Your entered code is incorrect."
598
+ msgstr "Le code entre est incorrect."
599
 
600
+ # @ wpcf7
601
+ #: contact-form-7/modules/captcha.php:200
602
+ msgid "CAPTCHA"
603
+ msgstr "CAPTCHA"
604
+
605
+ # @ wpcf7
606
+ #: contact-form-7/modules/captcha.php:211
607
+ msgid "Note: To use CAPTCHA, you need Really Simple CAPTCHA plugin installed."
608
+ msgstr "Note: Pour utiliser la CAPTCHA, vous devez avoir installé l'extension Really Simple CAPTCHA."
609
 
610
+ # @ wpcf7
611
+ #: contact-form-7/modules/captcha.php:218
612
  msgid "Image settings"
613
  msgstr "Paramètres des images"
614
 
615
+ # @ wpcf7
616
+ #: contact-form-7/modules/captcha.php:229
617
+ msgid "Foreground color"
618
+ msgstr "Couleur d'avant-plan"
619
+
620
+ # @ wpcf7
621
+ #: contact-form-7/modules/captcha.php:232
622
+ msgid "Background color"
623
+ msgstr "Couleur d'arrière-plan"
624
+
625
+ # @ wpcf7
626
+ #: contact-form-7/modules/captcha.php:236
627
+ msgid "Image size"
628
+ msgstr "Taille de l'image"
629
+
630
+ # @ wpcf7
631
+ #: contact-form-7/modules/captcha.php:237
632
+ msgid "Small"
633
+ msgstr "Petit"
634
+
635
+ # @ wpcf7
636
+ #: contact-form-7/modules/captcha.php:238
637
+ msgid "Medium"
638
+ msgstr "Moyen"
639
+
640
+ # @ wpcf7
641
+ #: contact-form-7/modules/captcha.php:239
642
+ msgid "Large"
643
+ msgstr "Grand"
644
+
645
+ # @ wpcf7
646
+ #: contact-form-7/modules/captcha.php:244
647
  msgid "Input field settings"
648
+ msgstr "Paramètres des champs de saisie"
649
 
650
+ # @ wpcf7
651
+ #: contact-form-7/modules/captcha.php:264
652
  msgid "For image"
653
  msgstr "Pour l'image"
654
 
655
+ # @ wpcf7
656
+ #: contact-form-7/modules/captcha.php:266
657
  msgid "For input field"
658
  msgstr "Pour le champ de saisie"
659
 
660
+ #: contact-form-7/modules/captcha.php:296
661
+ #, php-format
662
+ msgid "This contact form contains CAPTCHA fields, but the temporary folder for the files (%s) does not exist or is not writable. You can create the folder or change its permission manually."
663
+ msgstr "Ce formulaire de contact contient des champs CAPTCHA, mais le dossier temporaire de fichiers (%s) n'existe pas ou n'est pas accessible en écriture. Vous pouvez créer le dossier ou modifier ses permissions manuellement."
664
 
665
+ #: contact-form-7/modules/captcha.php:302
666
+ msgid "This contact form contains CAPTCHA fields, but the necessary libraries (GD and FreeType) are not available on your server."
667
+ msgstr "Ce formulaire de contact contient des champs CAPTCHA, mais les librairies requises (GD et FreeType) ne sont pas disponibles sur votre serveur."
 
668
 
669
+ # @ wpcf7
670
+ #: contact-form-7/includes/classes.php:564
671
+ msgid "Untitled"
672
+ msgstr "Sans titre"
673
 
674
+ # @ wpcf7
675
+ #: contact-form-7/includes/functions.php:6
676
+ msgid "Sender's message was sent successfully"
677
+ msgstr "Votre message a été envoyé avec succès"
678
 
679
+ # @ wpcf7
680
+ #: contact-form-7/includes/functions.php:7
681
+ msgid "Your message was sent successfully. Thanks."
682
+ msgstr "Votre message a bien été envoyé. Merci."
683
 
684
+ # @ wpcf7
685
+ #: contact-form-7/includes/functions.php:11
686
+ msgid "Sender's message was failed to send"
687
+ msgstr "Votre message n'a pas pu être envoyé"
688
 
689
+ # @ wpcf7
690
+ #: contact-form-7/includes/functions.php:12
691
+ #: contact-form-7/includes/functions.php:17
692
+ msgid "Failed to send your message. Please try later or contact administrator by other way."
693
+ msgstr "Erreur lors de l'envoi du message. Veuillez réessayer plus tard, ou contacter l'administrateur d'une autre manière."
694
 
695
+ # @ wpcf7
696
+ #: contact-form-7/includes/functions.php:16
697
+ msgid "Akismet judged the sending activity as spamming"
698
+ msgstr "Akismet a jugé que cet envoi est un spam"
699
 
700
+ # @ wpcf7
701
+ #: contact-form-7/includes/functions.php:21
702
+ msgid "Validation errors occurred"
703
+ msgstr "Des erreurs de validation sont survenues"
704
 
705
+ # @ wpcf7
706
+ #: contact-form-7/includes/functions.php:22
707
+ msgid "Validation errors occurred. Please confirm the fields and submit it again."
708
+ msgstr "Erreur de validation. Veuillez vérifier les champs et soumettre à nouveau."
709
 
710
+ # @ wpcf7
711
+ #: contact-form-7/includes/functions.php:26
712
+ msgid "There is a field of term that sender is needed to accept"
713
+ msgstr "Il y a un champ dont il est nécessaire d'accepter les termes"
714
 
715
+ # @ wpcf7
716
+ #: contact-form-7/includes/functions.php:27
717
+ msgid "Please accept the terms to proceed."
718
+ msgstr "Merci de bien vouloir accepter les conditions pour continuer."
719
 
720
+ # @ wpcf7
721
+ #: contact-form-7/includes/functions.php:31
722
+ msgid "Email address that sender entered is invalid"
723
+ msgstr "L'adresse email utilisée n'est pas valide"
724
 
725
+ # @ wpcf7
726
+ #: contact-form-7/includes/functions.php:32
727
+ msgid "Email address seems invalid."
728
+ msgstr "L'adresse email semble invalide."
729
 
730
+ # @ wpcf7
731
+ #: contact-form-7/includes/functions.php:36
732
+ msgid "There is a field that sender is needed to fill in"
733
+ msgstr "Il y a un champ obligatoire qui n'a pas été rempli"
734
 
735
+ # @ wpcf7
736
+ #: contact-form-7/includes/functions.php:37
737
+ msgid "Please fill the required field."
738
+ msgstr "Veuillez remplir le champ obligatoire."
739
 
740
+ # @ wpcf7
741
+ #: contact-form-7/includes/functions.php:46
742
+ msgid "Your Name"
743
+ msgstr "Votre nom"
744
 
745
+ # @ wpcf7
746
+ #: contact-form-7/includes/functions.php:46
747
+ #: contact-form-7/includes/functions.php:48
748
+ msgid "(required)"
749
+ msgstr "(obligatoire)"
750
 
751
+ # @ wpcf7
752
+ #: contact-form-7/includes/functions.php:48
753
+ msgid "Your Email"
754
+ msgstr "Votre email"
755
 
756
+ # @ wpcf7
757
+ #: contact-form-7/includes/functions.php:50
758
+ msgid "Subject"
759
+ msgstr "Sujet"
760
+
761
+ # @ wpcf7
762
+ #: contact-form-7/includes/functions.php:52
763
+ msgid "Your Message"
764
+ msgstr "Votre message"
765
+
766
+ # @ wpcf7
767
+ #: contact-form-7/includes/functions.php:62
768
+ #, php-format
769
+ msgid "From: %s"
770
+ msgstr "De : %s"
771
+
772
+ # @ wpcf7
773
+ #: contact-form-7/includes/functions.php:63
774
+ #, php-format
775
+ msgid "Subject: %s"
776
+ msgstr "Sujet : %s"
777
+
778
+ # @ wpcf7
779
+ #: contact-form-7/includes/functions.php:64
780
+ msgid "Message Body:"
781
+ msgstr "Corps du message :"
782
+
783
+ #: contact-form-7/includes/functions.php:65
784
+ #: contact-form-7/includes/functions.php:79
785
+ #, php-format
786
+ msgid "This mail is sent via contact form on %1$s %2$s"
787
+ msgstr "Ce email a été envoyé via formulaire de contact le %1$s %2$s"
788
+
789
+ #: contact-form-7/includes/functions.php:168
790
+ msgid "Afrikaans"
791
+ msgstr "Afrikaans"
792
+
793
+ #: contact-form-7/includes/functions.php:169
794
+ msgid "Albanian"
795
+ msgstr "Albanais"
796
+
797
+ #: contact-form-7/includes/functions.php:170
798
+ msgid "Arabic"
799
+ msgstr "Arabe"
800
+
801
+ #: contact-form-7/includes/functions.php:171
802
+ msgid "Bangla"
803
+ msgstr "Bengali"
804
+
805
+ #: contact-form-7/includes/functions.php:172
806
+ msgid "Bosnian"
807
+ msgstr "Bosnien"
808
+
809
+ #: contact-form-7/includes/functions.php:173
810
+ msgid "Brazilian Portuguese"
811
+ msgstr "Portugais brézilien"
812
+
813
+ #: contact-form-7/includes/functions.php:174
814
+ msgid "Bulgarian"
815
+ msgstr "Bulgare"
816
+
817
+ #: contact-form-7/includes/functions.php:175
818
+ msgid "Catalan"
819
+ msgstr "Catalan"
820
+
821
+ #: contact-form-7/includes/functions.php:176
822
+ msgid "Chinese (Simplified)"
823
+ msgstr "Chinois (simplifié)"
824
+
825
+ #: contact-form-7/includes/functions.php:177
826
+ msgid "Chinese (Traditional)"
827
+ msgstr "Chinois (traditionnel)"
828
+
829
+ #: contact-form-7/includes/functions.php:178
830
+ msgid "Croatian"
831
+ msgstr "Croate"
832
+
833
+ #: contact-form-7/includes/functions.php:179
834
+ msgid "Czech"
835
+ msgstr "Tchèque"
836
+
837
+ #: contact-form-7/includes/functions.php:180
838
+ msgid "Danish"
839
+ msgstr "Danois"
840
+
841
+ #: contact-form-7/includes/functions.php:181
842
+ msgid "Dutch"
843
+ msgstr "Hollandais"
844
+
845
+ #: contact-form-7/includes/functions.php:182
846
+ msgid "English"
847
+ msgstr "Anglais"
848
+
849
+ #: contact-form-7/includes/functions.php:183
850
+ msgid "Estonian"
851
+ msgstr "Estonien"
852
+
853
+ #: contact-form-7/includes/functions.php:184
854
+ msgid "Finnish"
855
+ msgstr "Finlandais"
856
+
857
+ #: contact-form-7/includes/functions.php:185
858
+ msgid "French"
859
+ msgstr "Français"
860
+
861
+ #: contact-form-7/includes/functions.php:186
862
+ msgid "Galician"
863
+ msgstr "Galicien"
864
+
865
+ #: contact-form-7/includes/functions.php:187
866
+ msgid "Georgian"
867
+ msgstr "Géorgien"
868
+
869
+ #: contact-form-7/includes/functions.php:188
870
+ msgid "German"
871
+ msgstr "Allemand"
872
+
873
+ #: contact-form-7/includes/functions.php:189
874
+ msgid "Greek"
875
+ msgstr "Grec"
876
+
877
+ #: contact-form-7/includes/functions.php:190
878
+ msgid "Hebrew"
879
+ msgstr "Hébreu"
880
+
881
+ # @ wpcf7
882
+ #: contact-form-7/includes/functions.php:191
883
+ msgid "Hindi"
884
+ msgstr "Hindi"
885
+
886
+ #: contact-form-7/includes/functions.php:192
887
+ msgid "Hungarian"
888
+ msgstr "Hongrois"
889
+
890
+ #: contact-form-7/includes/functions.php:193
891
+ msgid "Indonesian"
892
+ msgstr "Indonésien"
893
+
894
+ #: contact-form-7/includes/functions.php:194
895
+ msgid "Italian"
896
+ msgstr "Italien"
897
+
898
+ #: contact-form-7/includes/functions.php:195
899
+ msgid "Japanese"
900
+ msgstr "Japonais"
901
+
902
+ #: contact-form-7/includes/functions.php:196
903
+ msgid "Korean"
904
+ msgstr "Coréen"
905
+
906
+ #: contact-form-7/includes/functions.php:197
907
+ msgid "Latvian"
908
+ msgstr "Letton"
909
+
910
+ #: contact-form-7/includes/functions.php:198
911
+ msgid "Lithuanian"
912
+ msgstr "Lituanien"
913
+
914
+ #: contact-form-7/includes/functions.php:199
915
+ msgid "Malayalam"
916
+ msgstr "Malayâlam"
917
+
918
+ #: contact-form-7/includes/functions.php:200
919
+ msgid "Norwegian"
920
+ msgstr "Norvégien"
921
+
922
+ #: contact-form-7/includes/functions.php:201
923
+ msgid "Persian"
924
+ msgstr "Persan"
925
+
926
+ #: contact-form-7/includes/functions.php:202
927
+ msgid "Polish"
928
+ msgstr "Polonais"
929
+
930
+ #: contact-form-7/includes/functions.php:203
931
+ msgid "Portuguese"
932
+ msgstr "Portugais"
933
+
934
+ #: contact-form-7/includes/functions.php:204
935
+ msgid "Russian"
936
+ msgstr "Russe"
937
+
938
+ #: contact-form-7/includes/functions.php:205
939
+ msgid "Romanian"
940
+ msgstr "Roumain"
941
+
942
+ #: contact-form-7/includes/functions.php:206
943
+ msgid "Serbian"
944
+ msgstr "Serbe"
945
+
946
+ #: contact-form-7/includes/functions.php:207
947
+ msgid "Slovak"
948
+ msgstr "Slovaque"
949
+
950
+ #: contact-form-7/includes/functions.php:208
951
+ msgid "Slovene"
952
+ msgstr "Slovène"
953
+
954
+ #: contact-form-7/includes/functions.php:209
955
+ msgid "Spanish"
956
+ msgstr "Espagnol"
957
+
958
+ #: contact-form-7/includes/functions.php:210
959
+ msgid "Swedish"
960
+ msgstr "Suédois"
961
+
962
+ #: contact-form-7/includes/functions.php:211
963
+ msgid "Thai"
964
+ msgstr "Thaïlandais"
965
+
966
+ #: contact-form-7/includes/functions.php:212
967
+ msgid "Turkish"
968
+ msgstr "Turque"
969
+
970
+ #: contact-form-7/includes/functions.php:213
971
+ msgid "Ukrainian"
972
+ msgstr "Ukrainien"
973
+
974
+ #: contact-form-7/includes/functions.php:214
975
+ msgid "Vietnamese"
976
+ msgstr "Vietnamien"
977
 
languages/wpcf7-hu_HU.mo CHANGED
Binary file
languages/wpcf7-hu_HU.po CHANGED
@@ -1,11 +1,11 @@
1
  msgid ""
2
  msgstr ""
3
- "Project-Id-Version: Contact Form 7 v1.hu\n"
4
  "Report-Msgid-Bugs-To: \n"
5
- "POT-Creation-Date: 2010-02-24 08:35+0900\n"
6
- "PO-Revision-Date: 2010-03-11 00:51+0100\n"
7
  "Last-Translator: FYGureout <webmester@sakraft.hu>\n"
8
- "Language-Team: HiA <hia@itblog.hu>\n"
9
  "MIME-Version: 1.0\n"
10
  "Content-Type: text/plain; charset=UTF-8\n"
11
  "Content-Transfer-Encoding: 8bit\n"
@@ -43,79 +43,79 @@ msgstr "Mutat"
43
  msgid "Hide"
44
  msgstr "Elrejt"
45
 
46
- #: contact-form-7/admin/admin.php:265
47
  msgid "Contact form"
48
  msgstr "Kapcsolat űrlap"
49
 
50
- #: contact-form-7/admin/admin.php:284
51
  msgid "Settings"
52
  msgstr "Bállítások"
53
 
54
- #: contact-form-7/admin/admin.php:295
55
  msgid "http://contactform7.com/"
56
  msgstr "http://contactform7.com/"
57
 
58
- #: contact-form-7/admin/admin.php:296
59
  msgid "Contactform7.com"
60
  msgstr "Contactform7.com"
61
 
62
- #: contact-form-7/admin/admin.php:297
63
  msgid "http://contactform7.com/docs/"
64
  msgstr "http://contactform7.com/docs/"
65
 
66
- #: contact-form-7/admin/admin.php:298
67
  msgid "Docs"
68
  msgstr "Dokumentumok"
69
 
70
- #: contact-form-7/admin/admin.php:299
71
  msgid "http://contactform7.com/faq/"
72
  msgstr "http://contactform7.com/faq/"
73
 
74
- #: contact-form-7/admin/admin.php:300
75
  msgid "FAQ"
76
  msgstr "GYIK"
77
 
78
- #: contact-form-7/admin/admin.php:301
79
  msgid "http://contactform7.com/support/"
80
  msgstr "http://contactform7.com/support/"
81
 
82
- #: contact-form-7/admin/admin.php:302
83
  msgid "Support"
84
  msgstr "Támogatás"
85
 
86
- #: contact-form-7/admin/admin.php:316
87
  msgid "Contact form created."
88
  msgstr "Kapcsolat űrlap létrehozva."
89
 
90
- #: contact-form-7/admin/admin.php:319
91
  msgid "Contact form saved."
92
  msgstr "Kapcsolat űrlap elmentve."
93
 
94
- #: contact-form-7/admin/admin.php:322
95
  msgid "Contact form deleted."
96
  msgstr "Kapcsolat űrlap törölve."
97
 
98
- #: contact-form-7/admin/admin.php:325
99
  msgid "Database table created."
100
  msgstr "Adatbázis tábla létrehozva"
101
 
102
- #: contact-form-7/admin/admin.php:328
103
  msgid "Failed to create database table."
104
  msgstr "Hiba az adatbázis tábla létrehozásakor"
105
 
106
- #: contact-form-7/admin/admin.php:361
107
  msgid "Contact Form 7 needs your support. Please donate today."
108
  msgstr "A Contact Form 7 igényli az Ön támogatását. Kérjük, adományozzon még ma!"
109
 
110
- #: contact-form-7/admin/admin.php:362
111
  msgid "Your contribution is needed for making this plugin better."
112
  msgstr "Az Ön együttműködése szükséges ahhoz, hogy a bővítményt még jobbá tegyük"
113
 
114
- #: contact-form-7/admin/admin.php:368
115
  msgid "http://contactform7.com/donate/"
116
  msgstr "http://contactform7.com/donate/"
117
 
118
- #: contact-form-7/admin/admin.php:368
119
  msgid "Donate"
120
  msgstr "Adomány"
121
 
@@ -183,7 +183,7 @@ msgstr "Tárgy:"
183
  #: contact-form-7/admin/edit.php:152
184
  #: contact-form-7/admin/edit.php:219
185
  msgid "Additional headers:"
186
- msgstr "Haladó fejlécek:"
187
 
188
  #: contact-form-7/admin/edit.php:157
189
  #: contact-form-7/admin/edit.php:224
@@ -215,7 +215,7 @@ msgstr "Üzenetek"
215
 
216
  #: contact-form-7/admin/edit.php:285
217
  msgid "Additional Settings"
218
- msgstr "Haladó beállítások:"
219
 
220
  #: contact-form-7/admin/edit.php:333
221
  #, php-format
@@ -235,34 +235,34 @@ msgstr "vagy"
235
  msgid "(select language)"
236
  msgstr "(nyelv választása)"
237
 
238
- #: contact-form-7/includes/classes.php:569
239
  msgid "Untitled"
240
  msgstr "Cím nélkül"
241
 
242
  #: contact-form-7/includes/functions.php:6
243
  msgid "Sender's message was sent successfully"
244
- msgstr "Az üzenet sikeresen el lett küldve"
245
 
246
  #: contact-form-7/includes/functions.php:7
247
  msgid "Your message was sent successfully. Thanks."
248
- msgstr "Az üzenet sikeresen el lett küldve. Köszönjük!"
249
 
250
  #: contact-form-7/includes/functions.php:11
251
  msgid "Sender's message was failed to send"
252
- msgstr "Sikertelen üzenet küldés"
253
 
254
  #: contact-form-7/includes/functions.php:12
255
  #: contact-form-7/includes/functions.php:17
256
  msgid "Failed to send your message. Please try later or contact administrator by other way."
257
- msgstr "Üzenet küldése sikertelen. Kérjük próbálja meg később, vagy más módon keresse a kapcsolatot!"
258
 
259
  #: contact-form-7/includes/functions.php:16
260
  msgid "Akismet judged the sending activity as spamming"
261
- msgstr "Akismet spamnek tekintette a küldést"
262
 
263
  #: contact-form-7/includes/functions.php:21
264
  msgid "Validation errors occurred"
265
- msgstr "Jóváhagyás hiba történt"
266
 
267
  #: contact-form-7/includes/functions.php:22
268
  msgid "Validation errors occurred. Please confirm the fields and submit it again."
@@ -270,7 +270,7 @@ msgstr "Érvényesítési hiba. Kérem a mezők megerősítését és újra elfo
270
 
271
  #: contact-form-7/includes/functions.php:26
272
  msgid "There is a field of term that sender is needed to accept"
273
- msgstr "Van egy mező, amit a küldőnek el kell fogadnia"
274
 
275
  #: contact-form-7/includes/functions.php:27
276
  msgid "Please accept the terms to proceed."
@@ -286,7 +286,7 @@ msgstr "Az e-mail cím nem tűnik helyesnek."
286
 
287
  #: contact-form-7/includes/functions.php:36
288
  msgid "There is a field that sender is needed to fill in"
289
- msgstr "Van egy mező, amit a küldőnek ki kell töltenie"
290
 
291
  #: contact-form-7/includes/functions.php:37
292
  msgid "Please fill the required field."
@@ -339,397 +339,401 @@ msgstr "Ez az email a %1$s kapcsolati űrlap használatával került kiküldésr
339
 
340
  #: contact-form-7/includes/functions.php:168
341
  msgid "Afrikaans"
342
- msgstr "Afrikai"
343
 
344
  #: contact-form-7/includes/functions.php:169
345
  msgid "Albanian"
346
- msgstr "Albán"
347
 
348
  #: contact-form-7/includes/functions.php:170
349
  msgid "Arabic"
350
- msgstr "Arab"
351
 
352
  #: contact-form-7/includes/functions.php:171
353
  msgid "Bangla"
354
- msgstr "Banglades"
355
 
356
  #: contact-form-7/includes/functions.php:172
357
  msgid "Bosnian"
358
- msgstr "Bosnyák"
359
 
360
  #: contact-form-7/includes/functions.php:173
361
  msgid "Brazilian Portuguese"
362
- msgstr "Portugál brazil"
363
 
364
  #: contact-form-7/includes/functions.php:174
365
  msgid "Bulgarian"
366
- msgstr "Bulgár"
367
 
368
  #: contact-form-7/includes/functions.php:175
369
  msgid "Catalan"
370
- msgstr "Katalán"
371
 
372
  #: contact-form-7/includes/functions.php:176
373
  msgid "Chinese (Simplified)"
374
- msgstr "Kínai (egyszerűsített)"
375
 
376
  #: contact-form-7/includes/functions.php:177
377
  msgid "Chinese (Traditional)"
378
- msgstr "Kínai (hagyományos)"
379
 
380
  #: contact-form-7/includes/functions.php:178
381
  msgid "Croatian"
382
- msgstr "Horvát"
383
 
384
  #: contact-form-7/includes/functions.php:179
385
  msgid "Czech"
386
- msgstr "Cseh"
387
 
388
  #: contact-form-7/includes/functions.php:180
389
  msgid "Danish"
390
- msgstr "Dán"
391
 
392
  #: contact-form-7/includes/functions.php:181
393
  msgid "Dutch"
394
- msgstr "Holland"
395
 
396
  #: contact-form-7/includes/functions.php:182
397
  msgid "English"
398
- msgstr "Angol"
399
 
400
  #: contact-form-7/includes/functions.php:183
401
  msgid "Estonian"
402
- msgstr "Észt"
403
 
404
  #: contact-form-7/includes/functions.php:184
405
  msgid "Finnish"
406
- msgstr "Finn"
407
 
408
  #: contact-form-7/includes/functions.php:185
409
  msgid "French"
410
- msgstr "Francia"
411
 
412
  #: contact-form-7/includes/functions.php:186
413
- msgid "Georgian"
414
- msgstr "Grúz"
415
 
416
  #: contact-form-7/includes/functions.php:187
417
- msgid "German"
418
- msgstr "Német"
419
 
420
  #: contact-form-7/includes/functions.php:188
421
- msgid "Greek"
422
- msgstr "Görög"
423
 
424
  #: contact-form-7/includes/functions.php:189
425
- msgid "Hebrew"
426
- msgstr "Zsidó"
427
 
428
  #: contact-form-7/includes/functions.php:190
429
- msgid "Hindi"
430
- msgstr "Hindi"
431
 
432
  #: contact-form-7/includes/functions.php:191
433
- msgid "Hungarian"
434
- msgstr "Magyar"
435
 
436
  #: contact-form-7/includes/functions.php:192
437
- msgid "Indonesian"
438
- msgstr "Indonéz"
439
 
440
  #: contact-form-7/includes/functions.php:193
441
- msgid "Italian"
442
- msgstr "Olasz"
443
 
444
  #: contact-form-7/includes/functions.php:194
445
- msgid "Japanese"
446
- msgstr "Japán"
447
 
448
  #: contact-form-7/includes/functions.php:195
449
- msgid "Korean"
450
- msgstr "Kóreai"
451
 
452
  #: contact-form-7/includes/functions.php:196
453
- msgid "Latvian"
454
- msgstr "Lett"
455
 
456
  #: contact-form-7/includes/functions.php:197
457
- msgid "Lithuanian"
458
- msgstr "Litván"
459
 
460
  #: contact-form-7/includes/functions.php:198
461
- msgid "Malayalam"
462
- msgstr "Maláj"
463
 
464
  #: contact-form-7/includes/functions.php:199
465
- msgid "Norwegian"
466
- msgstr "Norvég"
467
 
468
  #: contact-form-7/includes/functions.php:200
469
- msgid "Persian"
470
- msgstr "Perzsa"
471
 
472
  #: contact-form-7/includes/functions.php:201
473
- msgid "Polish"
474
- msgstr "Lengyel"
475
 
476
  #: contact-form-7/includes/functions.php:202
477
- msgid "Portuguese"
478
- msgstr "Portugál"
479
 
480
  #: contact-form-7/includes/functions.php:203
481
- msgid "Russian"
482
- msgstr "Orosz"
483
 
484
  #: contact-form-7/includes/functions.php:204
485
- msgid "Romanian"
486
- msgstr "Román"
487
 
488
  #: contact-form-7/includes/functions.php:205
489
- msgid "Serbian"
490
- msgstr "Szerb"
491
 
492
  #: contact-form-7/includes/functions.php:206
493
- msgid "Slovak"
494
- msgstr "Szlovák"
495
 
496
  #: contact-form-7/includes/functions.php:207
497
- msgid "Slovene"
498
- msgstr "Szlovén"
499
 
500
  #: contact-form-7/includes/functions.php:208
501
- msgid "Spanish"
502
- msgstr "Spanyol"
503
 
504
  #: contact-form-7/includes/functions.php:209
505
- msgid "Swedish"
506
- msgstr "Svéd"
507
 
508
  #: contact-form-7/includes/functions.php:210
509
- msgid "Thai"
510
- msgstr "Thai"
511
 
512
  #: contact-form-7/includes/functions.php:211
513
- msgid "Turkish"
514
- msgstr "Török"
515
 
516
  #: contact-form-7/includes/functions.php:212
517
- msgid "Ukrainian"
518
- msgstr "Ukrán"
519
 
520
  #: contact-form-7/includes/functions.php:213
 
 
 
 
521
  msgid "Vietnamese"
522
- msgstr "Vietnami"
523
 
524
- #: contact-form-7/modules/acceptance.php:96
525
  msgid "Acceptance"
526
  msgstr "Elfogadás"
527
 
528
- #: contact-form-7/modules/acceptance.php:105
529
- #: contact-form-7/modules/captcha.php:206
530
- #: contact-form-7/modules/checkbox.php:198
531
- #: contact-form-7/modules/file.php:234
532
  msgid "Name"
533
  msgstr "Név"
534
 
535
- #: contact-form-7/modules/acceptance.php:110
536
- #: contact-form-7/modules/acceptance.php:113
537
- #: contact-form-7/modules/captcha.php:213
538
- #: contact-form-7/modules/captcha.php:216
539
  #: contact-form-7/modules/captcha.php:221
540
  #: contact-form-7/modules/captcha.php:224
541
- #: contact-form-7/modules/captcha.php:228
542
- #: contact-form-7/modules/captcha.php:239
543
- #: contact-form-7/modules/captcha.php:242
544
  #: contact-form-7/modules/captcha.php:247
545
  #: contact-form-7/modules/captcha.php:250
546
- #: contact-form-7/modules/checkbox.php:203
547
- #: contact-form-7/modules/checkbox.php:206
548
- #: contact-form-7/modules/file.php:239
549
- #: contact-form-7/modules/file.php:242
550
- #: contact-form-7/modules/file.php:247
551
- #: contact-form-7/modules/file.php:250
 
 
552
  msgid "optional"
553
  msgstr "választható"
554
 
555
- #: contact-form-7/modules/acceptance.php:119
556
  msgid "Make this checkbox checked by default?"
557
- msgstr "Ez a jelölőnyégyzet alapértelmezettnek be legyen kapcsolva?"
558
 
559
- #: contact-form-7/modules/acceptance.php:120
560
  msgid "Make this checkbox work inversely?"
561
  msgstr "Ez a jelölőnégyzet működjön fordítva?"
562
 
563
- #: contact-form-7/modules/acceptance.php:121
564
  msgid "* That means visitor who accepts the term unchecks it."
565
  msgstr "* Azt jelenti, hogy az a látogató kikapcsolja, aki elfogadja a feltételeket."
566
 
567
- #: contact-form-7/modules/acceptance.php:126
568
- #: contact-form-7/modules/captcha.php:255
569
- #: contact-form-7/modules/checkbox.php:226
570
- #: contact-form-7/modules/file.php:255
571
  msgid "Copy this code and paste it into the form left."
572
  msgstr "Másolja- és illessze be ezt a kódot a bal oldali űrlapba."
573
 
574
- #: contact-form-7/modules/captcha.php:65
575
  msgid "To use CAPTCHA, you need <a href=\"http://wordpress.org/extend/plugins/really-simple-captcha/\">Really Simple CAPTCHA</a> plugin installed."
576
  msgstr "A CAPTCHA használatához a <a href=\"http://wordpress.org/extend/plugins/really-simple-captcha/\">Really Simple CAPTCHA</a> bővítményt telepíteni kell."
577
 
578
- #: contact-form-7/modules/captcha.php:181
579
  msgid "The code that sender entered does not match the CAPTCHA"
580
  msgstr "A küldő által beírt kód nem egyezik a CAPTCHA-val"
581
 
582
- #: contact-form-7/modules/captcha.php:182
583
  msgid "Your entered code is incorrect."
584
  msgstr "A beírt kód hibás."
585
 
586
- #: contact-form-7/modules/captcha.php:192
587
  msgid "CAPTCHA"
588
  msgstr "CAPTCHA"
589
 
590
- #: contact-form-7/modules/captcha.php:203
591
  msgid "Note: To use CAPTCHA, you need Really Simple CAPTCHA plugin installed."
592
  msgstr "Figyelem! A CAPTCHA használatához telepíteni kell a Really Simple CAPTCHA bővítményt!"
593
 
594
- #: contact-form-7/modules/captcha.php:210
595
  msgid "Image settings"
596
  msgstr "Képbeállítások"
597
 
598
- #: contact-form-7/modules/captcha.php:221
599
  msgid "Foreground color"
600
  msgstr "Előtér szín"
601
 
602
- #: contact-form-7/modules/captcha.php:224
603
  msgid "Background color"
604
  msgstr "Háttér szín"
605
 
606
- #: contact-form-7/modules/captcha.php:228
607
  msgid "Image size"
608
  msgstr "Kép mérete"
609
 
610
- #: contact-form-7/modules/captcha.php:229
611
  msgid "Small"
612
  msgstr "Kicsi"
613
 
614
- #: contact-form-7/modules/captcha.php:230
615
  msgid "Medium"
616
  msgstr "Közepes"
617
 
618
- #: contact-form-7/modules/captcha.php:231
619
  msgid "Large"
620
  msgstr "Nagy"
621
 
622
- #: contact-form-7/modules/captcha.php:236
623
  msgid "Input field settings"
624
  msgstr "Beviteli mező beállításai"
625
 
626
- #: contact-form-7/modules/captcha.php:256
627
  msgid "For image"
628
  msgstr "Képnek"
629
 
630
- #: contact-form-7/modules/captcha.php:258
631
  msgid "For input field"
632
  msgstr "Beviteli mezőnek"
633
 
634
- #: contact-form-7/modules/captcha.php:288
635
  #, php-format
636
  msgid "This contact form contains CAPTCHA fields, but the temporary folder for the files (%s) does not exist or is not writable. You can create the folder or change its permission manually."
637
  msgstr "Ez a kapcsolati űrlap tartalmazza a CAPTCHA-mezőt, de a %s fájlok átmeneti könyvtára nem létezik, vagy nem írható. Ezt a könyvtárat kézzel kell létrehozni, vagy cserélni a könyvtár-jogokat."
638
 
639
- #: contact-form-7/modules/captcha.php:294
640
  msgid "This contact form contains CAPTCHA fields, but the necessary libraries (GD and FreeType) are not available on your server."
641
  msgstr "Ez a kapcsolati űrlap tartalmazza a CAPTCHA-mezőt, de a hozzá szükséges könyvtárak (GD és FreeType) a szerveren nem érhetőek el."
642
 
643
- #: contact-form-7/modules/checkbox.php:171
644
  msgid "Checkboxes"
645
  msgstr "Jelölőnégyzetek"
646
 
647
- #: contact-form-7/modules/checkbox.php:174
648
  msgid "Radio buttons"
649
  msgstr "Választógombok"
650
 
651
- #: contact-form-7/modules/checkbox.php:195
652
- #: contact-form-7/modules/file.php:233
653
  msgid "Required field?"
654
  msgstr "Kötelező mező?"
655
 
656
- #: contact-form-7/modules/checkbox.php:211
657
  msgid "Choices"
658
  msgstr "Lehetőségek"
659
 
660
- #: contact-form-7/modules/checkbox.php:213
661
  msgid "* One choice per line."
662
  msgstr "* Egy választás soronként."
663
 
664
- #: contact-form-7/modules/checkbox.php:217
665
  msgid "Put a label first, a checkbox last?"
666
  msgstr "Először megjelöl, aztán ellenőriz?"
667
 
668
- #: contact-form-7/modules/checkbox.php:218
669
  msgid "Wrap each item with <label> tag?"
670
  msgstr "Mindegyik tételt <label> tag-gel megjelöljük?"
671
 
672
- #: contact-form-7/modules/checkbox.php:220
673
  msgid "Make checkboxes exclusive?"
674
  msgstr "A jelölőnégyzetek kizáróak legyenek?"
675
 
676
- #: contact-form-7/modules/checkbox.php:228
677
  msgid "And, put this code into the Mail fields below."
678
  msgstr "és helyezze be ezt a kódott az alul található email-mezőbe."
679
 
680
- #: contact-form-7/modules/file.php:197
681
  msgid "Uploading a file fails for any reason"
682
  msgstr "Fájl feltöltés sikertelen"
683
 
684
- #: contact-form-7/modules/file.php:198
685
  msgid "Failed to upload file."
686
  msgstr "Sikertelen feltöltés."
687
 
688
- #: contact-form-7/modules/file.php:202
689
  msgid "Uploaded file is not allowed file type"
690
  msgstr "Feltöltött fájl típusa nem megengedett"
691
 
692
- #: contact-form-7/modules/file.php:203
693
  msgid "This file type is not allowed."
694
  msgstr "Ez a fájl típus nem megengedett."
695
 
696
- #: contact-form-7/modules/file.php:207
697
  msgid "Uploaded file is too large"
698
  msgstr "Feltöltött fájl túl nagy"
699
 
700
- #: contact-form-7/modules/file.php:208
701
  msgid "This file is too large."
702
  msgstr "Ez a fájl túl nagy."
703
 
704
- #: contact-form-7/modules/file.php:212
705
  msgid "Uploading a file fails for PHP error"
706
  msgstr "Fájl feltöltés PHP hibát okozott"
707
 
708
- #: contact-form-7/modules/file.php:213
709
  msgid "Failed to upload file. Error occurred."
710
  msgstr "Hiba történt a fájlfeltöltés közben. "
711
 
712
- #: contact-form-7/modules/file.php:224
713
  msgid "File upload"
714
  msgstr "Fájl feltöltése"
715
 
716
- #: contact-form-7/modules/file.php:247
717
  msgid "File size limit"
718
  msgstr "Fájl méret korlát"
719
 
720
- #: contact-form-7/modules/file.php:247
721
  msgid "bytes"
722
  msgstr "byte"
723
 
724
- #: contact-form-7/modules/file.php:250
725
  msgid "Acceptable file types"
726
  msgstr "Használható fájl típusok"
727
 
728
- #: contact-form-7/modules/file.php:257
729
  msgid "And, put this code into the File Attachments field below."
730
  msgstr "és tegyük ezt a kódot az alul lévő csatolt fájl mezőbe."
731
 
732
- #: contact-form-7/modules/file.php:282
733
  #, php-format
734
  msgid "This contact form contains file uploading fields, but the temporary folder for the files (%s) does not exist or is not writable. You can create the folder or change its permission manually."
735
  msgstr "Ez a kapcsolati űrlap tartalmazza a fájlfeltöltés mezőt, de a %s fájlok átmeneti könyvtára nem létezik, vagy nem írható. A könyvtárat kézzel kell létrehozni, vagy módosítani a jogokat."
@@ -738,76 +742,76 @@ msgstr "Ez a kapcsolati űrlap tartalmazza a fájlfeltöltés mezőt, de a %s f
738
  msgid "This contact form contains [icl] tags, but they are obsolete and no longer functioning on this version of Contact Form 7. <a href=\"http://contactform7.com/2009/12/25/contact-form-in-your-language/#Creating_contact_form_in_different_languages\" target=\"_blank\">There is a simpler way for creating contact forms of other languages</a> and you are recommended to use it."
739
  msgstr "Ez a kapcsolati űrlap tartalmazza az [icl] tag-et, de már elavult, és nem támogatja a Contact Form 7 ezen verziója.<a href=\"http://contactform7.com/2009/12/25/contact-form-in-your-language/#Creating_contact_form_in_different_languages\" target=\"_blank\">Itt egy egyszerűbb megoldás a kapcsolati űrlap létrehozásához más nyelven</a> és ajánlott ennek a használata."
740
 
741
- #: contact-form-7/modules/quiz.php:164
742
  msgid "Sender doesn't enter the correct answer to the quiz"
743
  msgstr "A felhasználó nem adott korrekt választ a quiz-kérdésre."
744
 
745
- #: contact-form-7/modules/quiz.php:165
746
  msgid "Your answer is not correct."
747
  msgstr "Hibás a válasz!"
748
 
749
- #: contact-form-7/modules/quiz.php:175
750
  msgid "Quiz"
751
  msgstr "Quiz"
752
 
753
- #: contact-form-7/modules/quiz.php:205
754
  msgid "Quizzes"
755
  msgstr "Quizek"
756
 
757
- #: contact-form-7/modules/quiz.php:207
758
  msgid "* quiz|answer (e.g. 1+1=?|2)"
759
  msgstr "* quiz|válasz (pl.: 1+1=?|2)"
760
 
761
- #: contact-form-7/modules/select.php:146
762
  msgid "Drop-down menu"
763
  msgstr "Lenyíló menü"
764
 
765
- #: contact-form-7/modules/select.php:175
766
  msgid "Allow multiple selections?"
767
  msgstr "Engedélyezett a többszörös választás?"
768
 
769
- #: contact-form-7/modules/select.php:176
770
  msgid "Insert a blank item as the first option?"
771
  msgstr "Első lehetőségnek egy üres tétel beszúrása?"
772
 
773
- #: contact-form-7/modules/submit.php:55
774
  msgid "Submit button"
775
  msgstr "Elfogadás gomb"
776
 
777
- #: contact-form-7/modules/submit.php:73
778
  msgid "Label"
779
  msgstr "Címke"
780
 
781
- #: contact-form-7/modules/text.php:129
782
  msgid "Text field"
783
  msgstr "Szövegmező"
784
 
785
- #: contact-form-7/modules/text.php:132
786
  msgid "Email field"
787
  msgstr "E-mail mező"
788
 
789
- #: contact-form-7/modules/text.php:174
790
  msgid "Akismet"
791
  msgstr "Akismet"
792
 
793
- #: contact-form-7/modules/text.php:176
794
  msgid "This field requires author's name"
795
  msgstr "Ebbe a mezőbe a szerző neve szükséges"
796
 
797
- #: contact-form-7/modules/text.php:177
798
  msgid "This field requires author's URL"
799
  msgstr "Ebbe a mezőbe a szerző URL-je szükséges"
800
 
801
- #: contact-form-7/modules/text.php:179
802
  msgid "This field requires author's email address"
803
  msgstr "Ebbe a mezőbe a szerző e-mail címe szükséges"
804
 
805
- #: contact-form-7/modules/text.php:183
806
- #: contact-form-7/modules/textarea.php:149
807
  msgid "Default value"
808
  msgstr "Alapértelmezett érték"
809
 
810
- #: contact-form-7/modules/textarea.php:118
811
  msgid "Text area"
812
  msgstr "Többsoros szöveg"
813
 
1
  msgid ""
2
  msgstr ""
3
+ "Project-Id-Version: Contact Form 7 HU\n"
4
  "Report-Msgid-Bugs-To: \n"
5
+ "POT-Creation-Date: 2010-03-23 06:47+0900\n"
6
+ "PO-Revision-Date: 2010-03-23 14:08+0100\n"
7
  "Last-Translator: FYGureout <webmester@sakraft.hu>\n"
8
+ "Language-Team: FYGureout <webmester@sakraft.hu>\n"
9
  "MIME-Version: 1.0\n"
10
  "Content-Type: text/plain; charset=UTF-8\n"
11
  "Content-Transfer-Encoding: 8bit\n"
43
  msgid "Hide"
44
  msgstr "Elrejt"
45
 
46
+ #: contact-form-7/admin/admin.php:261
47
  msgid "Contact form"
48
  msgstr "Kapcsolat űrlap"
49
 
50
+ #: contact-form-7/admin/admin.php:280
51
  msgid "Settings"
52
  msgstr "Bállítások"
53
 
54
+ #: contact-form-7/admin/admin.php:291
55
  msgid "http://contactform7.com/"
56
  msgstr "http://contactform7.com/"
57
 
58
+ #: contact-form-7/admin/admin.php:292
59
  msgid "Contactform7.com"
60
  msgstr "Contactform7.com"
61
 
62
+ #: contact-form-7/admin/admin.php:293
63
  msgid "http://contactform7.com/docs/"
64
  msgstr "http://contactform7.com/docs/"
65
 
66
+ #: contact-form-7/admin/admin.php:294
67
  msgid "Docs"
68
  msgstr "Dokumentumok"
69
 
70
+ #: contact-form-7/admin/admin.php:295
71
  msgid "http://contactform7.com/faq/"
72
  msgstr "http://contactform7.com/faq/"
73
 
74
+ #: contact-form-7/admin/admin.php:296
75
  msgid "FAQ"
76
  msgstr "GYIK"
77
 
78
+ #: contact-form-7/admin/admin.php:297
79
  msgid "http://contactform7.com/support/"
80
  msgstr "http://contactform7.com/support/"
81
 
82
+ #: contact-form-7/admin/admin.php:298
83
  msgid "Support"
84
  msgstr "Támogatás"
85
 
86
+ #: contact-form-7/admin/admin.php:312
87
  msgid "Contact form created."
88
  msgstr "Kapcsolat űrlap létrehozva."
89
 
90
+ #: contact-form-7/admin/admin.php:315
91
  msgid "Contact form saved."
92
  msgstr "Kapcsolat űrlap elmentve."
93
 
94
+ #: contact-form-7/admin/admin.php:318
95
  msgid "Contact form deleted."
96
  msgstr "Kapcsolat űrlap törölve."
97
 
98
+ #: contact-form-7/admin/admin.php:321
99
  msgid "Database table created."
100
  msgstr "Adatbázis tábla létrehozva"
101
 
102
+ #: contact-form-7/admin/admin.php:324
103
  msgid "Failed to create database table."
104
  msgstr "Hiba az adatbázis tábla létrehozásakor"
105
 
106
+ #: contact-form-7/admin/admin.php:357
107
  msgid "Contact Form 7 needs your support. Please donate today."
108
  msgstr "A Contact Form 7 igényli az Ön támogatását. Kérjük, adományozzon még ma!"
109
 
110
+ #: contact-form-7/admin/admin.php:358
111
  msgid "Your contribution is needed for making this plugin better."
112
  msgstr "Az Ön együttműködése szükséges ahhoz, hogy a bővítményt még jobbá tegyük"
113
 
114
+ #: contact-form-7/admin/admin.php:364
115
  msgid "http://contactform7.com/donate/"
116
  msgstr "http://contactform7.com/donate/"
117
 
118
+ #: contact-form-7/admin/admin.php:364
119
  msgid "Donate"
120
  msgstr "Adomány"
121
 
183
  #: contact-form-7/admin/edit.php:152
184
  #: contact-form-7/admin/edit.php:219
185
  msgid "Additional headers:"
186
+ msgstr "További fejlécek:"
187
 
188
  #: contact-form-7/admin/edit.php:157
189
  #: contact-form-7/admin/edit.php:224
215
 
216
  #: contact-form-7/admin/edit.php:285
217
  msgid "Additional Settings"
218
+ msgstr "További beállítások:"
219
 
220
  #: contact-form-7/admin/edit.php:333
221
  #, php-format
235
  msgid "(select language)"
236
  msgstr "(nyelv választása)"
237
 
238
+ #: contact-form-7/includes/classes.php:564
239
  msgid "Untitled"
240
  msgstr "Cím nélkül"
241
 
242
  #: contact-form-7/includes/functions.php:6
243
  msgid "Sender's message was sent successfully"
244
+ msgstr "Az üzenet sikeresen elküldésre került"
245
 
246
  #: contact-form-7/includes/functions.php:7
247
  msgid "Your message was sent successfully. Thanks."
248
+ msgstr "Az üzenet sikeresen elküldve. Köszönjük!"
249
 
250
  #: contact-form-7/includes/functions.php:11
251
  msgid "Sender's message was failed to send"
252
+ msgstr "Sikertelen üzenetküldés"
253
 
254
  #: contact-form-7/includes/functions.php:12
255
  #: contact-form-7/includes/functions.php:17
256
  msgid "Failed to send your message. Please try later or contact administrator by other way."
257
+ msgstr "Üzenet küldése sikertelen. Kérjük próbálja meg később, vagy más módon vegye fel a kapcsolatot az adminisztrátorral!"
258
 
259
  #: contact-form-7/includes/functions.php:16
260
  msgid "Akismet judged the sending activity as spamming"
261
+ msgstr "Akismet spamnek tekintette a küldések intenzítása miatt az üzenetet"
262
 
263
  #: contact-form-7/includes/functions.php:21
264
  msgid "Validation errors occurred"
265
+ msgstr "Érvényesítési hiba történt"
266
 
267
  #: contact-form-7/includes/functions.php:22
268
  msgid "Validation errors occurred. Please confirm the fields and submit it again."
270
 
271
  #: contact-form-7/includes/functions.php:26
272
  msgid "There is a field of term that sender is needed to accept"
273
+ msgstr "A kötelező mezőt a küldőnek el kell fogadnia"
274
 
275
  #: contact-form-7/includes/functions.php:27
276
  msgid "Please accept the terms to proceed."
286
 
287
  #: contact-form-7/includes/functions.php:36
288
  msgid "There is a field that sender is needed to fill in"
289
+ msgstr "A kötelező mezőt, a küldőnek ki kell töltenie"
290
 
291
  #: contact-form-7/includes/functions.php:37
292
  msgid "Please fill the required field."
339
 
340
  #: contact-form-7/includes/functions.php:168
341
  msgid "Afrikaans"
342
+ msgstr "afrikai"
343
 
344
  #: contact-form-7/includes/functions.php:169
345
  msgid "Albanian"
346
+ msgstr "albán"
347
 
348
  #: contact-form-7/includes/functions.php:170
349
  msgid "Arabic"
350
+ msgstr "arab"
351
 
352
  #: contact-form-7/includes/functions.php:171
353
  msgid "Bangla"
354
+ msgstr "bangladesi"
355
 
356
  #: contact-form-7/includes/functions.php:172
357
  msgid "Bosnian"
358
+ msgstr "bosnyák"
359
 
360
  #: contact-form-7/includes/functions.php:173
361
  msgid "Brazilian Portuguese"
362
+ msgstr "portugál brazil"
363
 
364
  #: contact-form-7/includes/functions.php:174
365
  msgid "Bulgarian"
366
+ msgstr "bulgár"
367
 
368
  #: contact-form-7/includes/functions.php:175
369
  msgid "Catalan"
370
+ msgstr "katalán"
371
 
372
  #: contact-form-7/includes/functions.php:176
373
  msgid "Chinese (Simplified)"
374
+ msgstr "kínai (egyszerűsített)"
375
 
376
  #: contact-form-7/includes/functions.php:177
377
  msgid "Chinese (Traditional)"
378
+ msgstr "kínai (hagyományos)"
379
 
380
  #: contact-form-7/includes/functions.php:178
381
  msgid "Croatian"
382
+ msgstr "horvát"
383
 
384
  #: contact-form-7/includes/functions.php:179
385
  msgid "Czech"
386
+ msgstr "cseh"
387
 
388
  #: contact-form-7/includes/functions.php:180
389
  msgid "Danish"
390
+ msgstr "dán"
391
 
392
  #: contact-form-7/includes/functions.php:181
393
  msgid "Dutch"
394
+ msgstr "holland"
395
 
396
  #: contact-form-7/includes/functions.php:182
397
  msgid "English"
398
+ msgstr "angol"
399
 
400
  #: contact-form-7/includes/functions.php:183
401
  msgid "Estonian"
402
+ msgstr "észt"
403
 
404
  #: contact-form-7/includes/functions.php:184
405
  msgid "Finnish"
406
+ msgstr "finn"
407
 
408
  #: contact-form-7/includes/functions.php:185
409
  msgid "French"
410
+ msgstr "francia"
411
 
412
  #: contact-form-7/includes/functions.php:186
413
+ msgid "Galician"
414
+ msgstr "lodomér (gács)"
415
 
416
  #: contact-form-7/includes/functions.php:187
417
+ msgid "Georgian"
418
+ msgstr "grúz"
419
 
420
  #: contact-form-7/includes/functions.php:188
421
+ msgid "German"
422
+ msgstr "német"
423
 
424
  #: contact-form-7/includes/functions.php:189
425
+ msgid "Greek"
426
+ msgstr "görög"
427
 
428
  #: contact-form-7/includes/functions.php:190
429
+ msgid "Hebrew"
430
+ msgstr "zsidó"
431
 
432
  #: contact-form-7/includes/functions.php:191
433
+ msgid "Hindi"
434
+ msgstr "hindi"
435
 
436
  #: contact-form-7/includes/functions.php:192
437
+ msgid "Hungarian"
438
+ msgstr "magyar"
439
 
440
  #: contact-form-7/includes/functions.php:193
441
+ msgid "Indonesian"
442
+ msgstr "indonéz"
443
 
444
  #: contact-form-7/includes/functions.php:194
445
+ msgid "Italian"
446
+ msgstr "olasz"
447
 
448
  #: contact-form-7/includes/functions.php:195
449
+ msgid "Japanese"
450
+ msgstr "japán"
451
 
452
  #: contact-form-7/includes/functions.php:196
453
+ msgid "Korean"
454
+ msgstr "kóreai"
455
 
456
  #: contact-form-7/includes/functions.php:197
457
+ msgid "Latvian"
458
+ msgstr "lett"
459
 
460
  #: contact-form-7/includes/functions.php:198
461
+ msgid "Lithuanian"
462
+ msgstr "litván"
463
 
464
  #: contact-form-7/includes/functions.php:199
465
+ msgid "Malayalam"
466
+ msgstr "maláj"
467
 
468
  #: contact-form-7/includes/functions.php:200
469
+ msgid "Norwegian"
470
+ msgstr "norvég"
471
 
472
  #: contact-form-7/includes/functions.php:201
473
+ msgid "Persian"
474
+ msgstr "perzsa"
475
 
476
  #: contact-form-7/includes/functions.php:202
477
+ msgid "Polish"
478
+ msgstr "lengyel"
479
 
480
  #: contact-form-7/includes/functions.php:203
481
+ msgid "Portuguese"
482
+ msgstr "portugál"
483
 
484
  #: contact-form-7/includes/functions.php:204
485
+ msgid "Russian"
486
+ msgstr "orosz"
487
 
488
  #: contact-form-7/includes/functions.php:205
489
+ msgid "Romanian"
490
+ msgstr "román"
491
 
492
  #: contact-form-7/includes/functions.php:206
493
+ msgid "Serbian"
494
+ msgstr "szerb"
495
 
496
  #: contact-form-7/includes/functions.php:207
497
+ msgid "Slovak"
498
+ msgstr "szlovák"
499
 
500
  #: contact-form-7/includes/functions.php:208
501
+ msgid "Slovene"
502
+ msgstr "szlovén"
503
 
504
  #: contact-form-7/includes/functions.php:209
505
+ msgid "Spanish"
506
+ msgstr "spanyol"
507
 
508
  #: contact-form-7/includes/functions.php:210
509
+ msgid "Swedish"
510
+ msgstr "svéd"
511
 
512
  #: contact-form-7/includes/functions.php:211
513
+ msgid "Thai"
514
+ msgstr "thai"
515
 
516
  #: contact-form-7/includes/functions.php:212
517
+ msgid "Turkish"
518
+ msgstr "török"
519
 
520
  #: contact-form-7/includes/functions.php:213
521
+ msgid "Ukrainian"
522
+ msgstr "ukrán"
523
+
524
+ #: contact-form-7/includes/functions.php:214
525
  msgid "Vietnamese"
526
+ msgstr "vietnami"
527
 
528
+ #: contact-form-7/modules/acceptance.php:104
529
  msgid "Acceptance"
530
  msgstr "Elfogadás"
531
 
532
+ #: contact-form-7/modules/acceptance.php:113
533
+ #: contact-form-7/modules/captcha.php:214
534
+ #: contact-form-7/modules/checkbox.php:209
535
+ #: contact-form-7/modules/file.php:241
536
  msgid "Name"
537
  msgstr "Név"
538
 
539
+ #: contact-form-7/modules/acceptance.php:118
540
+ #: contact-form-7/modules/acceptance.php:121
 
 
541
  #: contact-form-7/modules/captcha.php:221
542
  #: contact-form-7/modules/captcha.php:224
543
+ #: contact-form-7/modules/captcha.php:229
544
+ #: contact-form-7/modules/captcha.php:232
545
+ #: contact-form-7/modules/captcha.php:236
546
  #: contact-form-7/modules/captcha.php:247
547
  #: contact-form-7/modules/captcha.php:250
548
+ #: contact-form-7/modules/captcha.php:255
549
+ #: contact-form-7/modules/captcha.php:258
550
+ #: contact-form-7/modules/checkbox.php:214
551
+ #: contact-form-7/modules/checkbox.php:217
552
+ #: contact-form-7/modules/file.php:246
553
+ #: contact-form-7/modules/file.php:249
554
+ #: contact-form-7/modules/file.php:254
555
+ #: contact-form-7/modules/file.php:257
556
  msgid "optional"
557
  msgstr "választható"
558
 
559
+ #: contact-form-7/modules/acceptance.php:127
560
  msgid "Make this checkbox checked by default?"
561
+ msgstr "Ez a jelölőnyégyzet alapértelmezettként legyen bekapcsolva?"
562
 
563
+ #: contact-form-7/modules/acceptance.php:128
564
  msgid "Make this checkbox work inversely?"
565
  msgstr "Ez a jelölőnégyzet működjön fordítva?"
566
 
567
+ #: contact-form-7/modules/acceptance.php:129
568
  msgid "* That means visitor who accepts the term unchecks it."
569
  msgstr "* Azt jelenti, hogy az a látogató kikapcsolja, aki elfogadja a feltételeket."
570
 
571
+ #: contact-form-7/modules/acceptance.php:134
572
+ #: contact-form-7/modules/captcha.php:263
573
+ #: contact-form-7/modules/checkbox.php:237
574
+ #: contact-form-7/modules/file.php:262
575
  msgid "Copy this code and paste it into the form left."
576
  msgstr "Másolja- és illessze be ezt a kódot a bal oldali űrlapba."
577
 
578
+ #: contact-form-7/modules/captcha.php:70
579
  msgid "To use CAPTCHA, you need <a href=\"http://wordpress.org/extend/plugins/really-simple-captcha/\">Really Simple CAPTCHA</a> plugin installed."
580
  msgstr "A CAPTCHA használatához a <a href=\"http://wordpress.org/extend/plugins/really-simple-captcha/\">Really Simple CAPTCHA</a> bővítményt telepíteni kell."
581
 
582
+ #: contact-form-7/modules/captcha.php:189
583
  msgid "The code that sender entered does not match the CAPTCHA"
584
  msgstr "A küldő által beírt kód nem egyezik a CAPTCHA-val"
585
 
586
+ #: contact-form-7/modules/captcha.php:190
587
  msgid "Your entered code is incorrect."
588
  msgstr "A beírt kód hibás."
589
 
590
+ #: contact-form-7/modules/captcha.php:200
591
  msgid "CAPTCHA"
592
  msgstr "CAPTCHA"
593
 
594
+ #: contact-form-7/modules/captcha.php:211
595
  msgid "Note: To use CAPTCHA, you need Really Simple CAPTCHA plugin installed."
596
  msgstr "Figyelem! A CAPTCHA használatához telepíteni kell a Really Simple CAPTCHA bővítményt!"
597
 
598
+ #: contact-form-7/modules/captcha.php:218
599
  msgid "Image settings"
600
  msgstr "Képbeállítások"
601
 
602
+ #: contact-form-7/modules/captcha.php:229
603
  msgid "Foreground color"
604
  msgstr "Előtér szín"
605
 
606
+ #: contact-form-7/modules/captcha.php:232
607
  msgid "Background color"
608
  msgstr "Háttér szín"
609
 
610
+ #: contact-form-7/modules/captcha.php:236
611
  msgid "Image size"
612
  msgstr "Kép mérete"
613
 
614
+ #: contact-form-7/modules/captcha.php:237
615
  msgid "Small"
616
  msgstr "Kicsi"
617
 
618
+ #: contact-form-7/modules/captcha.php:238
619
  msgid "Medium"
620
  msgstr "Közepes"
621
 
622
+ #: contact-form-7/modules/captcha.php:239
623
  msgid "Large"
624
  msgstr "Nagy"
625
 
626
+ #: contact-form-7/modules/captcha.php:244
627
  msgid "Input field settings"
628
  msgstr "Beviteli mező beállításai"
629
 
630
+ #: contact-form-7/modules/captcha.php:264
631
  msgid "For image"
632
  msgstr "Képnek"
633
 
634
+ #: contact-form-7/modules/captcha.php:266
635
  msgid "For input field"
636
  msgstr "Beviteli mezőnek"
637
 
638
+ #: contact-form-7/modules/captcha.php:296
639
  #, php-format
640
  msgid "This contact form contains CAPTCHA fields, but the temporary folder for the files (%s) does not exist or is not writable. You can create the folder or change its permission manually."
641
  msgstr "Ez a kapcsolati űrlap tartalmazza a CAPTCHA-mezőt, de a %s fájlok átmeneti könyvtára nem létezik, vagy nem írható. Ezt a könyvtárat kézzel kell létrehozni, vagy cserélni a könyvtár-jogokat."
642
 
643
+ #: contact-form-7/modules/captcha.php:302
644
  msgid "This contact form contains CAPTCHA fields, but the necessary libraries (GD and FreeType) are not available on your server."
645
  msgstr "Ez a kapcsolati űrlap tartalmazza a CAPTCHA-mezőt, de a hozzá szükséges könyvtárak (GD és FreeType) a szerveren nem érhetőek el."
646
 
647
+ #: contact-form-7/modules/checkbox.php:182
648
  msgid "Checkboxes"
649
  msgstr "Jelölőnégyzetek"
650
 
651
+ #: contact-form-7/modules/checkbox.php:185
652
  msgid "Radio buttons"
653
  msgstr "Választógombok"
654
 
655
+ #: contact-form-7/modules/checkbox.php:206
656
+ #: contact-form-7/modules/file.php:240
657
  msgid "Required field?"
658
  msgstr "Kötelező mező?"
659
 
660
+ #: contact-form-7/modules/checkbox.php:222
661
  msgid "Choices"
662
  msgstr "Lehetőségek"
663
 
664
+ #: contact-form-7/modules/checkbox.php:224
665
  msgid "* One choice per line."
666
  msgstr "* Egy választás soronként."
667
 
668
+ #: contact-form-7/modules/checkbox.php:228
669
  msgid "Put a label first, a checkbox last?"
670
  msgstr "Először megjelöl, aztán ellenőriz?"
671
 
672
+ #: contact-form-7/modules/checkbox.php:229
673
  msgid "Wrap each item with <label> tag?"
674
  msgstr "Mindegyik tételt <label> tag-gel megjelöljük?"
675
 
676
+ #: contact-form-7/modules/checkbox.php:231
677
  msgid "Make checkboxes exclusive?"
678
  msgstr "A jelölőnégyzetek kizáróak legyenek?"
679
 
680
+ #: contact-form-7/modules/checkbox.php:239
681
  msgid "And, put this code into the Mail fields below."
682
  msgstr "és helyezze be ezt a kódott az alul található email-mezőbe."
683
 
684
+ #: contact-form-7/modules/file.php:204
685
  msgid "Uploading a file fails for any reason"
686
  msgstr "Fájl feltöltés sikertelen"
687
 
688
+ #: contact-form-7/modules/file.php:205
689
  msgid "Failed to upload file."
690
  msgstr "Sikertelen feltöltés."
691
 
692
+ #: contact-form-7/modules/file.php:209
693
  msgid "Uploaded file is not allowed file type"
694
  msgstr "Feltöltött fájl típusa nem megengedett"
695
 
696
+ #: contact-form-7/modules/file.php:210
697
  msgid "This file type is not allowed."
698
  msgstr "Ez a fájl típus nem megengedett."
699
 
700
+ #: contact-form-7/modules/file.php:214
701
  msgid "Uploaded file is too large"
702
  msgstr "Feltöltött fájl túl nagy"
703
 
704
+ #: contact-form-7/modules/file.php:215
705
  msgid "This file is too large."
706
  msgstr "Ez a fájl túl nagy."
707
 
708
+ #: contact-form-7/modules/file.php:219
709
  msgid "Uploading a file fails for PHP error"
710
  msgstr "Fájl feltöltés PHP hibát okozott"
711
 
712
+ #: contact-form-7/modules/file.php:220
713
  msgid "Failed to upload file. Error occurred."
714
  msgstr "Hiba történt a fájlfeltöltés közben. "
715
 
716
+ #: contact-form-7/modules/file.php:231
717
  msgid "File upload"
718
  msgstr "Fájl feltöltése"
719
 
720
+ #: contact-form-7/modules/file.php:254
721
  msgid "File size limit"
722
  msgstr "Fájl méret korlát"
723
 
724
+ #: contact-form-7/modules/file.php:254
725
  msgid "bytes"
726
  msgstr "byte"
727
 
728
+ #: contact-form-7/modules/file.php:257
729
  msgid "Acceptable file types"
730
  msgstr "Használható fájl típusok"
731
 
732
+ #: contact-form-7/modules/file.php:264
733
  msgid "And, put this code into the File Attachments field below."
734
  msgstr "és tegyük ezt a kódot az alul lévő csatolt fájl mezőbe."
735
 
736
+ #: contact-form-7/modules/file.php:289
737
  #, php-format
738
  msgid "This contact form contains file uploading fields, but the temporary folder for the files (%s) does not exist or is not writable. You can create the folder or change its permission manually."
739
  msgstr "Ez a kapcsolati űrlap tartalmazza a fájlfeltöltés mezőt, de a %s fájlok átmeneti könyvtára nem létezik, vagy nem írható. A könyvtárat kézzel kell létrehozni, vagy módosítani a jogokat."
742
  msgid "This contact form contains [icl] tags, but they are obsolete and no longer functioning on this version of Contact Form 7. <a href=\"http://contactform7.com/2009/12/25/contact-form-in-your-language/#Creating_contact_form_in_different_languages\" target=\"_blank\">There is a simpler way for creating contact forms of other languages</a> and you are recommended to use it."
743
  msgstr "Ez a kapcsolati űrlap tartalmazza az [icl] tag-et, de már elavult, és nem támogatja a Contact Form 7 ezen verziója.<a href=\"http://contactform7.com/2009/12/25/contact-form-in-your-language/#Creating_contact_form_in_different_languages\" target=\"_blank\">Itt egy egyszerűbb megoldás a kapcsolati űrlap létrehozásához más nyelven</a> és ajánlott ennek a használata."
744
 
745
+ #: contact-form-7/modules/quiz.php:170
746
  msgid "Sender doesn't enter the correct answer to the quiz"
747
  msgstr "A felhasználó nem adott korrekt választ a quiz-kérdésre."
748
 
749
+ #: contact-form-7/modules/quiz.php:171
750
  msgid "Your answer is not correct."
751
  msgstr "Hibás a válasz!"
752
 
753
+ #: contact-form-7/modules/quiz.php:181
754
  msgid "Quiz"
755
  msgstr "Quiz"
756
 
757
+ #: contact-form-7/modules/quiz.php:211
758
  msgid "Quizzes"
759
  msgstr "Quizek"
760
 
761
+ #: contact-form-7/modules/quiz.php:213
762
  msgid "* quiz|answer (e.g. 1+1=?|2)"
763
  msgstr "* quiz|válasz (pl.: 1+1=?|2)"
764
 
765
+ #: contact-form-7/modules/select.php:154
766
  msgid "Drop-down menu"
767
  msgstr "Lenyíló menü"
768
 
769
+ #: contact-form-7/modules/select.php:183
770
  msgid "Allow multiple selections?"
771
  msgstr "Engedélyezett a többszörös választás?"
772
 
773
+ #: contact-form-7/modules/select.php:184
774
  msgid "Insert a blank item as the first option?"
775
  msgstr "Első lehetőségnek egy üres tétel beszúrása?"
776
 
777
+ #: contact-form-7/modules/submit.php:62
778
  msgid "Submit button"
779
  msgstr "Elfogadás gomb"
780
 
781
+ #: contact-form-7/modules/submit.php:80
782
  msgid "Label"
783
  msgstr "Címke"
784
 
785
+ #: contact-form-7/modules/text.php:137
786
  msgid "Text field"
787
  msgstr "Szövegmező"
788
 
789
+ #: contact-form-7/modules/text.php:140
790
  msgid "Email field"
791
  msgstr "E-mail mező"
792
 
793
+ #: contact-form-7/modules/text.php:182
794
  msgid "Akismet"
795
  msgstr "Akismet"
796
 
797
+ #: contact-form-7/modules/text.php:184
798
  msgid "This field requires author's name"
799
  msgstr "Ebbe a mezőbe a szerző neve szükséges"
800
 
801
+ #: contact-form-7/modules/text.php:185
802
  msgid "This field requires author's URL"
803
  msgstr "Ebbe a mezőbe a szerző URL-je szükséges"
804
 
805
+ #: contact-form-7/modules/text.php:187
806
  msgid "This field requires author's email address"
807
  msgstr "Ebbe a mezőbe a szerző e-mail címe szükséges"
808
 
809
+ #: contact-form-7/modules/text.php:191
810
+ #: contact-form-7/modules/textarea.php:157
811
  msgid "Default value"
812
  msgstr "Alapértelmezett érték"
813
 
814
+ #: contact-form-7/modules/textarea.php:126
815
  msgid "Text area"
816
  msgstr "Többsoros szöveg"
817
 
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: 2010-02-24 08:35+0900\n"
6
- "PO-Revision-Date: 2010-02-24 01:50+0100\n"
7
  "Last-Translator: Gianni Diurno (aka gidibao) <gidibao[at]gmail[dot]com>\n"
8
  "Language-Team: Gianni Diurno | gidibao.net <gidibao[at]gmail[dot]com>\n"
9
  "MIME-Version: 1.0\n"
@@ -46,79 +46,79 @@ msgstr "Mostra"
46
  msgid "Hide"
47
  msgstr "Nascondi"
48
 
49
- #: contact-form-7/admin/admin.php:265
50
  msgid "Contact form"
51
  msgstr "Modulo di contatto"
52
 
53
- #: contact-form-7/admin/admin.php:284
54
  msgid "Settings"
55
  msgstr "Impostazioni"
56
 
57
- #: contact-form-7/admin/admin.php:295
58
  msgid "http://contactform7.com/"
59
  msgstr "http://contactform7.com/"
60
 
61
- #: contact-form-7/admin/admin.php:296
62
  msgid "Contactform7.com"
63
  msgstr "Contactform7.com"
64
 
65
- #: contact-form-7/admin/admin.php:297
66
  msgid "http://contactform7.com/docs/"
67
  msgstr "http://contactform7.com/docs/"
68
 
69
- #: contact-form-7/admin/admin.php:298
70
  msgid "Docs"
71
  msgstr "Documentazione"
72
 
73
- #: contact-form-7/admin/admin.php:299
74
  msgid "http://contactform7.com/faq/"
75
  msgstr "http://contactform7.com/faq/"
76
 
77
- #: contact-form-7/admin/admin.php:300
78
  msgid "FAQ"
79
  msgstr "FAQ"
80
 
81
- #: contact-form-7/admin/admin.php:301
82
  msgid "http://contactform7.com/support/"
83
  msgstr "http://contactform7.com/support/"
84
 
85
- #: contact-form-7/admin/admin.php:302
86
  msgid "Support"
87
  msgstr "Supporto"
88
 
89
- #: contact-form-7/admin/admin.php:316
90
  msgid "Contact form created."
91
  msgstr "Il modulo di contatto é stato creato."
92
 
93
- #: contact-form-7/admin/admin.php:319
94
  msgid "Contact form saved."
95
  msgstr "Il modulo di contatto é stato salvato. "
96
 
97
- #: contact-form-7/admin/admin.php:322
98
  msgid "Contact form deleted."
99
  msgstr "Il modulo di contatto é stato cancellato. "
100
 
101
- #: contact-form-7/admin/admin.php:325
102
  msgid "Database table created."
103
  msgstr "E' stata creata la tabella nel database."
104
 
105
- #: contact-form-7/admin/admin.php:328
106
  msgid "Failed to create database table."
107
  msgstr "Non é stato possibile creare la tabella nel database"
108
 
109
- #: contact-form-7/admin/admin.php:361
110
  msgid "Contact Form 7 needs your support. Please donate today."
111
  msgstr "Contact Form 7 ha bisogno del tuo sostegno. Effettua una donazione oggi stesso."
112
 
113
- #: contact-form-7/admin/admin.php:362
114
  msgid "Your contribution is needed for making this plugin better."
115
  msgstr "Il tuo contributo sarà necessario per potere rendere migliore questo plugin."
116
 
117
- #: contact-form-7/admin/admin.php:368
118
  msgid "http://contactform7.com/donate/"
119
  msgstr "http://contactform7.com/donate/"
120
 
121
- #: contact-form-7/admin/admin.php:368
122
  msgid "Donate"
123
  msgstr "Donazioni"
124
 
@@ -238,7 +238,7 @@ msgstr "oppure"
238
  msgid "(select language)"
239
  msgstr "(seleziona la lingua)"
240
 
241
- #: contact-form-7/includes/classes.php:569
242
  msgid "Untitled"
243
  msgstr "Senza titolo"
244
 
@@ -413,326 +413,330 @@ msgid "French"
413
  msgstr "Francese"
414
 
415
  #: contact-form-7/includes/functions.php:186
 
 
 
 
416
  msgid "Georgian"
417
  msgstr "Georgiano"
418
 
419
- #: contact-form-7/includes/functions.php:187
420
  msgid "German"
421
  msgstr "Tedesco"
422
 
423
- #: contact-form-7/includes/functions.php:188
424
  msgid "Greek"
425
  msgstr "Greco"
426
 
427
- #: contact-form-7/includes/functions.php:189
428
  msgid "Hebrew"
429
  msgstr "Ebreo"
430
 
431
- #: contact-form-7/includes/functions.php:190
432
  msgid "Hindi"
433
  msgstr "Hindi"
434
 
435
- #: contact-form-7/includes/functions.php:191
436
  msgid "Hungarian"
437
  msgstr "Ungherese"
438
 
439
- #: contact-form-7/includes/functions.php:192
440
  msgid "Indonesian"
441
  msgstr "Indonesiano"
442
 
443
- #: contact-form-7/includes/functions.php:193
444
  msgid "Italian"
445
  msgstr "Italiano"
446
 
447
- #: contact-form-7/includes/functions.php:194
448
  msgid "Japanese"
449
  msgstr "Giapponese"
450
 
451
- #: contact-form-7/includes/functions.php:195
452
  msgid "Korean"
453
  msgstr "Coreano"
454
 
455
- #: contact-form-7/includes/functions.php:196
456
  msgid "Latvian"
457
  msgstr "Lettone"
458
 
459
- #: contact-form-7/includes/functions.php:197
460
  msgid "Lithuanian"
461
  msgstr "Lituano"
462
 
463
- #: contact-form-7/includes/functions.php:198
464
  msgid "Malayalam"
465
  msgstr "Malayalam"
466
 
467
- #: contact-form-7/includes/functions.php:199
468
  msgid "Norwegian"
469
  msgstr "Norvegese"
470
 
471
- #: contact-form-7/includes/functions.php:200
472
  msgid "Persian"
473
  msgstr "Persiano"
474
 
475
- #: contact-form-7/includes/functions.php:201
476
  msgid "Polish"
477
  msgstr "Polacco"
478
 
479
- #: contact-form-7/includes/functions.php:202
480
  msgid "Portuguese"
481
  msgstr "Portoghese"
482
 
483
- #: contact-form-7/includes/functions.php:203
484
  msgid "Russian"
485
  msgstr "Russo"
486
 
487
- #: contact-form-7/includes/functions.php:204
488
  msgid "Romanian"
489
  msgstr "Rumeno"
490
 
491
- #: contact-form-7/includes/functions.php:205
492
  msgid "Serbian"
493
  msgstr "Serbo"
494
 
495
- #: contact-form-7/includes/functions.php:206
496
  msgid "Slovak"
497
  msgstr "Slovacco"
498
 
499
- #: contact-form-7/includes/functions.php:207
500
  msgid "Slovene"
501
  msgstr "Sloveno"
502
 
503
- #: contact-form-7/includes/functions.php:208
504
  msgid "Spanish"
505
  msgstr "Spagnolo"
506
 
507
- #: contact-form-7/includes/functions.php:209
508
  msgid "Swedish"
509
  msgstr "Svedese"
510
 
511
- #: contact-form-7/includes/functions.php:210
512
  msgid "Thai"
513
  msgstr "Thai"
514
 
515
- #: contact-form-7/includes/functions.php:211
516
  msgid "Turkish"
517
  msgstr "Turco"
518
 
519
- #: contact-form-7/includes/functions.php:212
520
  msgid "Ukrainian"
521
  msgstr "Ucraino"
522
 
523
- #: contact-form-7/includes/functions.php:213
524
  msgid "Vietnamese"
525
  msgstr "Vietnamita"
526
 
527
- #: contact-form-7/modules/acceptance.php:96
528
  msgid "Acceptance"
529
  msgstr "Consenso"
530
 
531
- #: contact-form-7/modules/acceptance.php:105
532
- #: contact-form-7/modules/captcha.php:206
533
- #: contact-form-7/modules/checkbox.php:198
534
- #: contact-form-7/modules/file.php:234
535
  msgid "Name"
536
  msgstr "Nome"
537
 
538
- #: contact-form-7/modules/acceptance.php:110
539
- #: contact-form-7/modules/acceptance.php:113
540
- #: contact-form-7/modules/captcha.php:213
541
- #: contact-form-7/modules/captcha.php:216
542
  #: contact-form-7/modules/captcha.php:221
543
  #: contact-form-7/modules/captcha.php:224
544
- #: contact-form-7/modules/captcha.php:228
545
- #: contact-form-7/modules/captcha.php:239
546
- #: contact-form-7/modules/captcha.php:242
547
  #: contact-form-7/modules/captcha.php:247
548
  #: contact-form-7/modules/captcha.php:250
549
- #: contact-form-7/modules/checkbox.php:203
550
- #: contact-form-7/modules/checkbox.php:206
551
- #: contact-form-7/modules/file.php:239
552
- #: contact-form-7/modules/file.php:242
553
- #: contact-form-7/modules/file.php:247
554
- #: contact-form-7/modules/file.php:250
 
 
555
  msgid "optional"
556
  msgstr "facoltativo"
557
 
558
- #: contact-form-7/modules/acceptance.php:119
559
  msgid "Make this checkbox checked by default?"
560
  msgstr "Desideri che questa casella di verifica sia selezionata (predefinito)?"
561
 
562
- #: contact-form-7/modules/acceptance.php:120
563
  msgid "Make this checkbox work inversely?"
564
  msgstr "Desideri che questa casella di verifica funzioni in modalità inversa?"
565
 
566
- #: contact-form-7/modules/acceptance.php:121
567
  msgid "* That means visitor who accepts the term unchecks it."
568
  msgstr "* Ciò indica che il visitatore dovrà de-selezionare la casella per esprimere il proprio consenso."
569
 
570
- #: contact-form-7/modules/acceptance.php:126
571
- #: contact-form-7/modules/captcha.php:255
572
- #: contact-form-7/modules/checkbox.php:226
573
- #: contact-form-7/modules/file.php:255
574
  msgid "Copy this code and paste it into the form left."
575
  msgstr "Copia questo codice ed incollalo nel modulo a sinistra."
576
 
577
- #: contact-form-7/modules/captcha.php:65
578
  msgid "To use CAPTCHA, you need <a href=\"http://wordpress.org/extend/plugins/really-simple-captcha/\">Really Simple CAPTCHA</a> plugin installed."
579
  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>."
580
 
581
- #: contact-form-7/modules/captcha.php:181
582
  msgid "The code that sender entered does not match the CAPTCHA"
583
  msgstr "Il codice inserito dal mittente non corrisponde con il CAPTCHA"
584
 
585
- #: contact-form-7/modules/captcha.php:182
586
  msgid "Your entered code is incorrect."
587
  msgstr "Il codice che hai inserito non è valido."
588
 
589
- #: contact-form-7/modules/captcha.php:192
590
  msgid "CAPTCHA"
591
  msgstr "CAPTCHA"
592
 
593
- #: contact-form-7/modules/captcha.php:203
594
  msgid "Note: To use CAPTCHA, you need Really Simple CAPTCHA plugin installed."
595
  msgstr "Nota: per l'utilizzo del CAPTCHA é necessaria l'installazione del plugin Really Simple CAPTCHA."
596
 
597
- #: contact-form-7/modules/captcha.php:210
598
  msgid "Image settings"
599
  msgstr "Impostazioni immagine"
600
 
601
- #: contact-form-7/modules/captcha.php:221
602
  msgid "Foreground color"
603
  msgstr "Colore di primo piano"
604
 
605
- #: contact-form-7/modules/captcha.php:224
606
  msgid "Background color"
607
  msgstr "Colore di sfondo"
608
 
609
- #: contact-form-7/modules/captcha.php:228
610
  msgid "Image size"
611
  msgstr "Dimensione immagine"
612
 
613
- #: contact-form-7/modules/captcha.php:229
614
  msgid "Small"
615
  msgstr "Piccola"
616
 
617
- #: contact-form-7/modules/captcha.php:230
618
  msgid "Medium"
619
  msgstr "Media"
620
 
621
- #: contact-form-7/modules/captcha.php:231
622
  msgid "Large"
623
  msgstr "Grande"
624
 
625
- #: contact-form-7/modules/captcha.php:236
626
  msgid "Input field settings"
627
  msgstr "Impostazione campo dati"
628
 
629
- #: contact-form-7/modules/captcha.php:256
630
  msgid "For image"
631
  msgstr "Per immagine"
632
 
633
- #: contact-form-7/modules/captcha.php:258
634
  msgid "For input field"
635
  msgstr "Per campo dati"
636
 
637
- #: contact-form-7/modules/captcha.php:288
638
  #, php-format
639
  msgid "This contact form contains CAPTCHA fields, but the temporary folder for the files (%s) does not exist or is not writable. You can create the folder or change its permission manually."
640
  msgstr "Questo modulo di contatto contiene dei campi CAPTCHA, ma la cartella temporanea per i file (%s) non esiste oppure non é scrivibile. Puoi creare la cartella o modificare oppure modificare manualmente i suoi permessi."
641
 
642
- #: contact-form-7/modules/captcha.php:294
643
  msgid "This contact form contains CAPTCHA fields, but the necessary libraries (GD and FreeType) are not available on your server."
644
  msgstr "Questo modulo di contatto contiene dei campi CAPTCHA, ma le librerie necessarie (GD e FreeType) non sono disponibili nel tuo server."
645
 
646
- #: contact-form-7/modules/checkbox.php:171
647
  msgid "Checkboxes"
648
  msgstr "Caselle di verifica"
649
 
650
- #: contact-form-7/modules/checkbox.php:174
651
  msgid "Radio buttons"
652
  msgstr "Radio button"
653
 
654
- #: contact-form-7/modules/checkbox.php:195
655
- #: contact-form-7/modules/file.php:233
656
  msgid "Required field?"
657
  msgstr "Campi obbligatori?"
658
 
659
- #: contact-form-7/modules/checkbox.php:211
660
  msgid "Choices"
661
  msgstr "Opzioni"
662
 
663
- #: contact-form-7/modules/checkbox.php:213
664
  msgid "* One choice per line."
665
  msgstr "* Una opzione per linea."
666
 
667
- #: contact-form-7/modules/checkbox.php:217
668
  msgid "Put a label first, a checkbox last?"
669
  msgstr "Inserisci l'etichetta davanti alla casella di verifica?"
670
 
671
- #: contact-form-7/modules/checkbox.php:218
672
  msgid "Wrap each item with <label> tag?"
673
  msgstr "Wrap per ogni item con il tag <label>?"
674
 
675
- #: contact-form-7/modules/checkbox.php:220
676
  msgid "Make checkboxes exclusive?"
677
  msgstr "Desideri escludere le caselle di verifica?"
678
 
679
- #: contact-form-7/modules/checkbox.php:228
680
  msgid "And, put this code into the Mail fields below."
681
  msgstr "Ed inserisci questo codice nei campi mail qui sotto."
682
 
683
- #: contact-form-7/modules/file.php:197
684
  msgid "Uploading a file fails for any reason"
685
  msgstr "Non é stato possibile caricare il file (ragione generica)"
686
 
687
- #: contact-form-7/modules/file.php:198
688
  msgid "Failed to upload file."
689
  msgstr "Si é verificato un errore durante il caricamento del file."
690
 
691
- #: contact-form-7/modules/file.php:202
692
  msgid "Uploaded file is not allowed file type"
693
  msgstr "Non é stato possibile caricare il file (estensione non consentita)"
694
 
695
- #: contact-form-7/modules/file.php:203
696
  msgid "This file type is not allowed."
697
  msgstr "Questo tipo di file non é permesso."
698
 
699
- #: contact-form-7/modules/file.php:207
700
  msgid "Uploaded file is too large"
701
  msgstr "Non é stato possibile caricare il file (dimensione eccessiva)"
702
 
703
- #: contact-form-7/modules/file.php:208
704
  msgid "This file is too large."
705
  msgstr "Questo file é troppo grande."
706
 
707
- #: contact-form-7/modules/file.php:212
708
  msgid "Uploading a file fails for PHP error"
709
  msgstr "Non é stato possibile caricare il file (errore PHP)"
710
 
711
- #: contact-form-7/modules/file.php:213
712
  msgid "Failed to upload file. Error occurred."
713
  msgstr "Si é verificato un errore durante il caricamento del file."
714
 
715
- #: contact-form-7/modules/file.php:224
716
  msgid "File upload"
717
  msgstr "Upload file"
718
 
719
- #: contact-form-7/modules/file.php:247
720
  msgid "File size limit"
721
  msgstr "Limite dimensione file"
722
 
723
- #: contact-form-7/modules/file.php:247
724
  msgid "bytes"
725
  msgstr "bytes"
726
 
727
- #: contact-form-7/modules/file.php:250
728
  msgid "Acceptable file types"
729
  msgstr "Tipologia di file consentiti"
730
 
731
- #: contact-form-7/modules/file.php:257
732
  msgid "And, put this code into the File Attachments field below."
733
  msgstr "Ed inserisci questo codice nei campi per gli allegati qui sotto."
734
 
735
- #: contact-form-7/modules/file.php:282
736
  #, php-format
737
  msgid "This contact form contains file uploading fields, but the temporary folder for the files (%s) does not exist or is not writable. You can create the folder or change its permission manually."
738
  msgstr "Questo modulo di contatto contiene dei campi per l'upload dei file, ma la cartella temporanea per i file (%s) non esiste oppure non é scrivibile. Puoi creare la cartella o modificare oppure modificare manualmente i suoi permessi."
@@ -741,76 +745,76 @@ msgstr "Questo modulo di contatto contiene dei campi per l'upload dei file, ma l
741
  msgid "This contact form contains [icl] tags, but they are obsolete and no longer functioning on this version of Contact Form 7. <a href=\"http://contactform7.com/2009/12/25/contact-form-in-your-language/#Creating_contact_form_in_different_languages\" target=\"_blank\">There is a simpler way for creating contact forms of other languages</a> and you are recommended to use it."
742
  msgstr "Questo modulo di contatto contiene i tag [icl], sappi che essi sono particolarmente datati e non funzioneranno con questa versione di Contact Form 7. <a href=\"http://contactform7.com/2009/12/25/contact-form-in-your-language/#Creating_contact_form_in_different_languages\" target=\"_blank\">Ecco un modo semplice per potere creare dei moduli di contatto in altre lingue</a>: ti invito a provarlo."
743
 
744
- #: contact-form-7/modules/quiz.php:164
745
  msgid "Sender doesn't enter the correct answer to the quiz"
746
  msgstr "Il mittente non ha inserito la risposta corretta"
747
 
748
- #: contact-form-7/modules/quiz.php:165
749
  msgid "Your answer is not correct."
750
  msgstr "La risposta che hai inserito non é corretta."
751
 
752
- #: contact-form-7/modules/quiz.php:175
753
  msgid "Quiz"
754
  msgstr "Quesito"
755
 
756
- #: contact-form-7/modules/quiz.php:205
757
  msgid "Quizzes"
758
  msgstr "Quesiti"
759
 
760
- #: contact-form-7/modules/quiz.php:207
761
  msgid "* quiz|answer (e.g. 1+1=?|2)"
762
  msgstr "* quesito|risposta (ad esempio: 1+1=?|2)"
763
 
764
- #: contact-form-7/modules/select.php:146
765
  msgid "Drop-down menu"
766
  msgstr "Menu a cascata"
767
 
768
- #: contact-form-7/modules/select.php:175
769
  msgid "Allow multiple selections?"
770
  msgstr "Desideri permettere le selezioni multiple?"
771
 
772
- #: contact-form-7/modules/select.php:176
773
  msgid "Insert a blank item as the first option?"
774
  msgstr "Desideri lasciare in bianco la prima opzione?"
775
 
776
- #: contact-form-7/modules/submit.php:55
777
  msgid "Submit button"
778
  msgstr "Pulsante di invio"
779
 
780
- #: contact-form-7/modules/submit.php:73
781
  msgid "Label"
782
  msgstr "Etichetta"
783
 
784
- #: contact-form-7/modules/text.php:129
785
  msgid "Text field"
786
  msgstr "Campo testo"
787
 
788
- #: contact-form-7/modules/text.php:132
789
  msgid "Email field"
790
  msgstr "Campo email"
791
 
792
- #: contact-form-7/modules/text.php:174
793
  msgid "Akismet"
794
  msgstr "Akismet"
795
 
796
- #: contact-form-7/modules/text.php:176
797
  msgid "This field requires author's name"
798
  msgstr "Questo campo necessita del nome autore"
799
 
800
- #: contact-form-7/modules/text.php:177
801
  msgid "This field requires author's URL"
802
  msgstr "Questo campo necessita dell'URL autore"
803
 
804
- #: contact-form-7/modules/text.php:179
805
  msgid "This field requires author's email address"
806
  msgstr "Questo campo necessita dell'indirizzo email autore"
807
 
808
- #: contact-form-7/modules/text.php:183
809
- #: contact-form-7/modules/textarea.php:149
810
  msgid "Default value"
811
  msgstr "Valore predefinito"
812
 
813
- #: contact-form-7/modules/textarea.php:118
814
  msgid "Text area"
815
  msgstr "Area di testo"
816
 
2
  msgstr ""
3
  "Project-Id-Version: WP Contact Form 7 in italiano\n"
4
  "Report-Msgid-Bugs-To: \n"
5
+ "POT-Creation-Date: 2010-03-23 06:47+0900\n"
6
+ "PO-Revision-Date: 2010-03-23 18:04+0100\n"
7
  "Last-Translator: Gianni Diurno (aka gidibao) <gidibao[at]gmail[dot]com>\n"
8
  "Language-Team: Gianni Diurno | gidibao.net <gidibao[at]gmail[dot]com>\n"
9
  "MIME-Version: 1.0\n"
46
  msgid "Hide"
47
  msgstr "Nascondi"
48
 
49
+ #: contact-form-7/admin/admin.php:261
50
  msgid "Contact form"
51
  msgstr "Modulo di contatto"
52
 
53
+ #: contact-form-7/admin/admin.php:280
54
  msgid "Settings"
55
  msgstr "Impostazioni"
56
 
57
+ #: contact-form-7/admin/admin.php:291
58
  msgid "http://contactform7.com/"
59
  msgstr "http://contactform7.com/"
60
 
61
+ #: contact-form-7/admin/admin.php:292
62
  msgid "Contactform7.com"
63
  msgstr "Contactform7.com"
64
 
65
+ #: contact-form-7/admin/admin.php:293
66
  msgid "http://contactform7.com/docs/"
67
  msgstr "http://contactform7.com/docs/"
68
 
69
+ #: contact-form-7/admin/admin.php:294
70
  msgid "Docs"
71
  msgstr "Documentazione"
72
 
73
+ #: contact-form-7/admin/admin.php:295
74
  msgid "http://contactform7.com/faq/"
75
  msgstr "http://contactform7.com/faq/"
76
 
77
+ #: contact-form-7/admin/admin.php:296
78
  msgid "FAQ"
79
  msgstr "FAQ"
80
 
81
+ #: contact-form-7/admin/admin.php:297
82
  msgid "http://contactform7.com/support/"
83
  msgstr "http://contactform7.com/support/"
84
 
85
+ #: contact-form-7/admin/admin.php:298
86
  msgid "Support"
87
  msgstr "Supporto"
88
 
89
+ #: contact-form-7/admin/admin.php:312
90
  msgid "Contact form created."
91
  msgstr "Il modulo di contatto é stato creato."
92
 
93
+ #: contact-form-7/admin/admin.php:315
94
  msgid "Contact form saved."
95
  msgstr "Il modulo di contatto é stato salvato. "
96
 
97
+ #: contact-form-7/admin/admin.php:318
98
  msgid "Contact form deleted."
99
  msgstr "Il modulo di contatto é stato cancellato. "
100
 
101
+ #: contact-form-7/admin/admin.php:321
102
  msgid "Database table created."
103
  msgstr "E' stata creata la tabella nel database."
104
 
105
+ #: contact-form-7/admin/admin.php:324
106
  msgid "Failed to create database table."
107
  msgstr "Non é stato possibile creare la tabella nel database"
108
 
109
+ #: contact-form-7/admin/admin.php:357
110
  msgid "Contact Form 7 needs your support. Please donate today."
111
  msgstr "Contact Form 7 ha bisogno del tuo sostegno. Effettua una donazione oggi stesso."
112
 
113
+ #: contact-form-7/admin/admin.php:358
114
  msgid "Your contribution is needed for making this plugin better."
115
  msgstr "Il tuo contributo sarà necessario per potere rendere migliore questo plugin."
116
 
117
+ #: contact-form-7/admin/admin.php:364
118
  msgid "http://contactform7.com/donate/"
119
  msgstr "http://contactform7.com/donate/"
120
 
121
+ #: contact-form-7/admin/admin.php:364
122
  msgid "Donate"
123
  msgstr "Donazioni"
124
 
238
  msgid "(select language)"
239
  msgstr "(seleziona la lingua)"
240
 
241
+ #: contact-form-7/includes/classes.php:564
242
  msgid "Untitled"
243
  msgstr "Senza titolo"
244
 
413
  msgstr "Francese"
414
 
415
  #: contact-form-7/includes/functions.php:186
416
+ msgid "Galician"
417
+ msgstr "Galiziano"
418
+
419
+ #: contact-form-7/includes/functions.php:187
420
  msgid "Georgian"
421
  msgstr "Georgiano"
422
 
423
+ #: contact-form-7/includes/functions.php:188
424
  msgid "German"
425
  msgstr "Tedesco"
426
 
427
+ #: contact-form-7/includes/functions.php:189
428
  msgid "Greek"
429
  msgstr "Greco"
430
 
431
+ #: contact-form-7/includes/functions.php:190
432
  msgid "Hebrew"
433
  msgstr "Ebreo"
434
 
435
+ #: contact-form-7/includes/functions.php:191
436
  msgid "Hindi"
437
  msgstr "Hindi"
438
 
439
+ #: contact-form-7/includes/functions.php:192
440
  msgid "Hungarian"
441
  msgstr "Ungherese"
442
 
443
+ #: contact-form-7/includes/functions.php:193
444
  msgid "Indonesian"
445
  msgstr "Indonesiano"
446
 
447
+ #: contact-form-7/includes/functions.php:194
448
  msgid "Italian"
449
  msgstr "Italiano"
450
 
451
+ #: contact-form-7/includes/functions.php:195
452
  msgid "Japanese"
453
  msgstr "Giapponese"
454
 
455
+ #: contact-form-7/includes/functions.php:196
456
  msgid "Korean"
457
  msgstr "Coreano"
458
 
459
+ #: contact-form-7/includes/functions.php:197
460
  msgid "Latvian"
461
  msgstr "Lettone"
462
 
463
+ #: contact-form-7/includes/functions.php:198
464
  msgid "Lithuanian"
465
  msgstr "Lituano"
466
 
467
+ #: contact-form-7/includes/functions.php:199
468
  msgid "Malayalam"
469
  msgstr "Malayalam"
470
 
471
+ #: contact-form-7/includes/functions.php:200
472
  msgid "Norwegian"
473
  msgstr "Norvegese"
474
 
475
+ #: contact-form-7/includes/functions.php:201
476
  msgid "Persian"
477
  msgstr "Persiano"
478
 
479
+ #: contact-form-7/includes/functions.php:202
480
  msgid "Polish"
481
  msgstr "Polacco"
482
 
483
+ #: contact-form-7/includes/functions.php:203
484
  msgid "Portuguese"
485
  msgstr "Portoghese"
486
 
487
+ #: contact-form-7/includes/functions.php:204
488
  msgid "Russian"
489
  msgstr "Russo"
490
 
491
+ #: contact-form-7/includes/functions.php:205
492
  msgid "Romanian"
493
  msgstr "Rumeno"
494
 
495
+ #: contact-form-7/includes/functions.php:206
496
  msgid "Serbian"
497
  msgstr "Serbo"
498
 
499
+ #: contact-form-7/includes/functions.php:207
500
  msgid "Slovak"
501
  msgstr "Slovacco"
502
 
503
+ #: contact-form-7/includes/functions.php:208
504
  msgid "Slovene"
505
  msgstr "Sloveno"
506
 
507
+ #: contact-form-7/includes/functions.php:209
508
  msgid "Spanish"
509
  msgstr "Spagnolo"
510
 
511
+ #: contact-form-7/includes/functions.php:210
512
  msgid "Swedish"
513
  msgstr "Svedese"
514
 
515
+ #: contact-form-7/includes/functions.php:211
516
  msgid "Thai"
517
  msgstr "Thai"
518
 
519
+ #: contact-form-7/includes/functions.php:212
520
  msgid "Turkish"
521
  msgstr "Turco"
522
 
523
+ #: contact-form-7/includes/functions.php:213
524
  msgid "Ukrainian"
525
  msgstr "Ucraino"
526
 
527
+ #: contact-form-7/includes/functions.php:214
528
  msgid "Vietnamese"
529
  msgstr "Vietnamita"
530
 
531
+ #: contact-form-7/modules/acceptance.php:104
532
  msgid "Acceptance"
533
  msgstr "Consenso"
534
 
535
+ #: contact-form-7/modules/acceptance.php:113
536
+ #: contact-form-7/modules/captcha.php:214
537
+ #: contact-form-7/modules/checkbox.php:209
538
+ #: contact-form-7/modules/file.php:241
539
  msgid "Name"
540
  msgstr "Nome"
541
 
542
+ #: contact-form-7/modules/acceptance.php:118
543
+ #: contact-form-7/modules/acceptance.php:121
 
 
544
  #: contact-form-7/modules/captcha.php:221
545
  #: contact-form-7/modules/captcha.php:224
546
+ #: contact-form-7/modules/captcha.php:229
547
+ #: contact-form-7/modules/captcha.php:232
548
+ #: contact-form-7/modules/captcha.php:236
549
  #: contact-form-7/modules/captcha.php:247
550
  #: contact-form-7/modules/captcha.php:250
551
+ #: contact-form-7/modules/captcha.php:255
552
+ #: contact-form-7/modules/captcha.php:258
553
+ #: contact-form-7/modules/checkbox.php:214
554
+ #: contact-form-7/modules/checkbox.php:217
555
+ #: contact-form-7/modules/file.php:246
556
+ #: contact-form-7/modules/file.php:249
557
+ #: contact-form-7/modules/file.php:254
558
+ #: contact-form-7/modules/file.php:257
559
  msgid "optional"
560
  msgstr "facoltativo"
561
 
562
+ #: contact-form-7/modules/acceptance.php:127
563
  msgid "Make this checkbox checked by default?"
564
  msgstr "Desideri che questa casella di verifica sia selezionata (predefinito)?"
565
 
566
+ #: contact-form-7/modules/acceptance.php:128
567
  msgid "Make this checkbox work inversely?"
568
  msgstr "Desideri che questa casella di verifica funzioni in modalità inversa?"
569
 
570
+ #: contact-form-7/modules/acceptance.php:129
571
  msgid "* That means visitor who accepts the term unchecks it."
572
  msgstr "* Ciò indica che il visitatore dovrà de-selezionare la casella per esprimere il proprio consenso."
573
 
574
+ #: contact-form-7/modules/acceptance.php:134
575
+ #: contact-form-7/modules/captcha.php:263
576
+ #: contact-form-7/modules/checkbox.php:237
577
+ #: contact-form-7/modules/file.php:262
578
  msgid "Copy this code and paste it into the form left."
579
  msgstr "Copia questo codice ed incollalo nel modulo a sinistra."
580
 
581
+ #: contact-form-7/modules/captcha.php:70
582
  msgid "To use CAPTCHA, you need <a href=\"http://wordpress.org/extend/plugins/really-simple-captcha/\">Really Simple CAPTCHA</a> plugin installed."
583
  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>."
584
 
585
+ #: contact-form-7/modules/captcha.php:189
586
  msgid "The code that sender entered does not match the CAPTCHA"
587
  msgstr "Il codice inserito dal mittente non corrisponde con il CAPTCHA"
588
 
589
+ #: contact-form-7/modules/captcha.php:190
590
  msgid "Your entered code is incorrect."
591
  msgstr "Il codice che hai inserito non è valido."
592
 
593
+ #: contact-form-7/modules/captcha.php:200
594
  msgid "CAPTCHA"
595
  msgstr "CAPTCHA"
596
 
597
+ #: contact-form-7/modules/captcha.php:211
598
  msgid "Note: To use CAPTCHA, you need Really Simple CAPTCHA plugin installed."
599
  msgstr "Nota: per l'utilizzo del CAPTCHA é necessaria l'installazione del plugin Really Simple CAPTCHA."
600
 
601
+ #: contact-form-7/modules/captcha.php:218
602
  msgid "Image settings"
603
  msgstr "Impostazioni immagine"
604
 
605
+ #: contact-form-7/modules/captcha.php:229
606
  msgid "Foreground color"
607
  msgstr "Colore di primo piano"
608
 
609
+ #: contact-form-7/modules/captcha.php:232
610
  msgid "Background color"
611
  msgstr "Colore di sfondo"
612
 
613
+ #: contact-form-7/modules/captcha.php:236
614
  msgid "Image size"
615
  msgstr "Dimensione immagine"
616
 
617
+ #: contact-form-7/modules/captcha.php:237
618
  msgid "Small"
619
  msgstr "Piccola"
620
 
621
+ #: contact-form-7/modules/captcha.php:238
622
  msgid "Medium"
623
  msgstr "Media"
624
 
625
+ #: contact-form-7/modules/captcha.php:239
626
  msgid "Large"
627
  msgstr "Grande"
628
 
629
+ #: contact-form-7/modules/captcha.php:244
630
  msgid "Input field settings"
631
  msgstr "Impostazione campo dati"
632
 
633
+ #: contact-form-7/modules/captcha.php:264
634
  msgid "For image"
635
  msgstr "Per immagine"
636
 
637
+ #: contact-form-7/modules/captcha.php:266
638
  msgid "For input field"
639
  msgstr "Per campo dati"
640
 
641
+ #: contact-form-7/modules/captcha.php:296
642
  #, php-format
643
  msgid "This contact form contains CAPTCHA fields, but the temporary folder for the files (%s) does not exist or is not writable. You can create the folder or change its permission manually."
644
  msgstr "Questo modulo di contatto contiene dei campi CAPTCHA, ma la cartella temporanea per i file (%s) non esiste oppure non é scrivibile. Puoi creare la cartella o modificare oppure modificare manualmente i suoi permessi."
645
 
646
+ #: contact-form-7/modules/captcha.php:302
647
  msgid "This contact form contains CAPTCHA fields, but the necessary libraries (GD and FreeType) are not available on your server."
648
  msgstr "Questo modulo di contatto contiene dei campi CAPTCHA, ma le librerie necessarie (GD e FreeType) non sono disponibili nel tuo server."
649
 
650
+ #: contact-form-7/modules/checkbox.php:182
651
  msgid "Checkboxes"
652
  msgstr "Caselle di verifica"
653
 
654
+ #: contact-form-7/modules/checkbox.php:185
655
  msgid "Radio buttons"
656
  msgstr "Radio button"
657
 
658
+ #: contact-form-7/modules/checkbox.php:206
659
+ #: contact-form-7/modules/file.php:240
660
  msgid "Required field?"
661
  msgstr "Campi obbligatori?"
662
 
663
+ #: contact-form-7/modules/checkbox.php:222
664
  msgid "Choices"
665
  msgstr "Opzioni"
666
 
667
+ #: contact-form-7/modules/checkbox.php:224
668
  msgid "* One choice per line."
669
  msgstr "* Una opzione per linea."
670
 
671
+ #: contact-form-7/modules/checkbox.php:228
672
  msgid "Put a label first, a checkbox last?"
673
  msgstr "Inserisci l'etichetta davanti alla casella di verifica?"
674
 
675
+ #: contact-form-7/modules/checkbox.php:229
676
  msgid "Wrap each item with <label> tag?"
677
  msgstr "Wrap per ogni item con il tag <label>?"
678
 
679
+ #: contact-form-7/modules/checkbox.php:231
680
  msgid "Make checkboxes exclusive?"
681
  msgstr "Desideri escludere le caselle di verifica?"
682
 
683
+ #: contact-form-7/modules/checkbox.php:239
684
  msgid "And, put this code into the Mail fields below."
685
  msgstr "Ed inserisci questo codice nei campi mail qui sotto."
686
 
687
+ #: contact-form-7/modules/file.php:204
688
  msgid "Uploading a file fails for any reason"
689
  msgstr "Non é stato possibile caricare il file (ragione generica)"
690
 
691
+ #: contact-form-7/modules/file.php:205
692
  msgid "Failed to upload file."
693
  msgstr "Si é verificato un errore durante il caricamento del file."
694
 
695
+ #: contact-form-7/modules/file.php:209
696
  msgid "Uploaded file is not allowed file type"
697
  msgstr "Non é stato possibile caricare il file (estensione non consentita)"
698
 
699
+ #: contact-form-7/modules/file.php:210
700
  msgid "This file type is not allowed."
701
  msgstr "Questo tipo di file non é permesso."
702
 
703
+ #: contact-form-7/modules/file.php:214
704
  msgid "Uploaded file is too large"
705
  msgstr "Non é stato possibile caricare il file (dimensione eccessiva)"
706
 
707
+ #: contact-form-7/modules/file.php:215
708
  msgid "This file is too large."
709
  msgstr "Questo file é troppo grande."
710
 
711
+ #: contact-form-7/modules/file.php:219
712
  msgid "Uploading a file fails for PHP error"
713
  msgstr "Non é stato possibile caricare il file (errore PHP)"
714
 
715
+ #: contact-form-7/modules/file.php:220
716
  msgid "Failed to upload file. Error occurred."
717
  msgstr "Si é verificato un errore durante il caricamento del file."
718
 
719
+ #: contact-form-7/modules/file.php:231
720
  msgid "File upload"
721
  msgstr "Upload file"
722
 
723
+ #: contact-form-7/modules/file.php:254
724
  msgid "File size limit"
725
  msgstr "Limite dimensione file"
726
 
727
+ #: contact-form-7/modules/file.php:254
728
  msgid "bytes"
729
  msgstr "bytes"
730
 
731
+ #: contact-form-7/modules/file.php:257
732
  msgid "Acceptable file types"
733
  msgstr "Tipologia di file consentiti"
734
 
735
+ #: contact-form-7/modules/file.php:264
736
  msgid "And, put this code into the File Attachments field below."
737
  msgstr "Ed inserisci questo codice nei campi per gli allegati qui sotto."
738
 
739
+ #: contact-form-7/modules/file.php:289
740
  #, php-format
741
  msgid "This contact form contains file uploading fields, but the temporary folder for the files (%s) does not exist or is not writable. You can create the folder or change its permission manually."
742
  msgstr "Questo modulo di contatto contiene dei campi per l'upload dei file, ma la cartella temporanea per i file (%s) non esiste oppure non é scrivibile. Puoi creare la cartella o modificare oppure modificare manualmente i suoi permessi."
745
  msgid "This contact form contains [icl] tags, but they are obsolete and no longer functioning on this version of Contact Form 7. <a href=\"http://contactform7.com/2009/12/25/contact-form-in-your-language/#Creating_contact_form_in_different_languages\" target=\"_blank\">There is a simpler way for creating contact forms of other languages</a> and you are recommended to use it."
746
  msgstr "Questo modulo di contatto contiene i tag [icl], sappi che essi sono particolarmente datati e non funzioneranno con questa versione di Contact Form 7. <a href=\"http://contactform7.com/2009/12/25/contact-form-in-your-language/#Creating_contact_form_in_different_languages\" target=\"_blank\">Ecco un modo semplice per potere creare dei moduli di contatto in altre lingue</a>: ti invito a provarlo."
747
 
748
+ #: contact-form-7/modules/quiz.php:170
749
  msgid "Sender doesn't enter the correct answer to the quiz"
750
  msgstr "Il mittente non ha inserito la risposta corretta"
751
 
752
+ #: contact-form-7/modules/quiz.php:171
753
  msgid "Your answer is not correct."
754
  msgstr "La risposta che hai inserito non é corretta."
755
 
756
+ #: contact-form-7/modules/quiz.php:181
757
  msgid "Quiz"
758
  msgstr "Quesito"
759
 
760
+ #: contact-form-7/modules/quiz.php:211
761
  msgid "Quizzes"
762
  msgstr "Quesiti"
763
 
764
+ #: contact-form-7/modules/quiz.php:213
765
  msgid "* quiz|answer (e.g. 1+1=?|2)"
766
  msgstr "* quesito|risposta (ad esempio: 1+1=?|2)"
767
 
768
+ #: contact-form-7/modules/select.php:154
769
  msgid "Drop-down menu"
770
  msgstr "Menu a cascata"
771
 
772
+ #: contact-form-7/modules/select.php:183
773
  msgid "Allow multiple selections?"
774
  msgstr "Desideri permettere le selezioni multiple?"
775
 
776
+ #: contact-form-7/modules/select.php:184
777
  msgid "Insert a blank item as the first option?"
778
  msgstr "Desideri lasciare in bianco la prima opzione?"
779
 
780
+ #: contact-form-7/modules/submit.php:62
781
  msgid "Submit button"
782
  msgstr "Pulsante di invio"
783
 
784
+ #: contact-form-7/modules/submit.php:80
785
  msgid "Label"
786
  msgstr "Etichetta"
787
 
788
+ #: contact-form-7/modules/text.php:137
789
  msgid "Text field"
790
  msgstr "Campo testo"
791
 
792
+ #: contact-form-7/modules/text.php:140
793
  msgid "Email field"
794
  msgstr "Campo email"
795
 
796
+ #: contact-form-7/modules/text.php:182
797
  msgid "Akismet"
798
  msgstr "Akismet"
799
 
800
+ #: contact-form-7/modules/text.php:184
801
  msgid "This field requires author's name"
802
  msgstr "Questo campo necessita del nome autore"
803
 
804
+ #: contact-form-7/modules/text.php:185
805
  msgid "This field requires author's URL"
806
  msgstr "Questo campo necessita dell'URL autore"
807
 
808
+ #: contact-form-7/modules/text.php:187
809
  msgid "This field requires author's email address"
810
  msgstr "Questo campo necessita dell'indirizzo email autore"
811
 
812
+ #: contact-form-7/modules/text.php:191
813
+ #: contact-form-7/modules/textarea.php:157
814
  msgid "Default value"
815
  msgstr "Valore predefinito"
816
 
817
+ #: contact-form-7/modules/textarea.php:126
818
  msgid "Text area"
819
  msgstr "Area di testo"
820
 
languages/wpcf7-ja.mo CHANGED
Binary file
languages/wpcf7-ja.po CHANGED
@@ -2,8 +2,8 @@ msgid ""
2
  msgstr ""
3
  "Project-Id-Version: Contact Form 7\n"
4
  "Report-Msgid-Bugs-To: \n"
5
- "POT-Creation-Date: 2010-03-23 06:47+0900\n"
6
- "PO-Revision-Date: 2010-03-23 06:47+0900\n"
7
  "Last-Translator: Takayuki Miyoshi <takayukister@gmail.com>\n"
8
  "Language-Team: \n"
9
  "MIME-Version: 1.0\n"
@@ -107,19 +107,19 @@ msgstr "データベーステーブルを作成しました。"
107
  msgid "Failed to create database table."
108
  msgstr "データベーステーブルを作成できませんでした。"
109
 
110
- #: contact-form-7/admin/admin.php:357
111
  msgid "Contact Form 7 needs your support. Please donate today."
112
  msgstr "Contact Form 7 はあなたの支援を必要としています。寄付をお願いします。"
113
 
114
- #: contact-form-7/admin/admin.php:358
115
  msgid "Your contribution is needed for making this plugin better."
116
  msgstr "あなたの貢献があればこのプラグインをもっと良くすることができます。"
117
 
118
- #: contact-form-7/admin/admin.php:364
119
  msgid "http://contactform7.com/donate/"
120
  msgstr "http://contactform7.com/ja/donate-2/"
121
 
122
- #: contact-form-7/admin/admin.php:364
123
  msgid "Donate"
124
  msgstr "寄付する"
125
 
@@ -239,7 +239,7 @@ msgstr "または"
239
  msgid "(select language)"
240
  msgstr "(言語を選択)"
241
 
242
- #: contact-form-7/includes/classes.php:564
243
  msgid "Untitled"
244
  msgstr "無題"
245
 
2
  msgstr ""
3
  "Project-Id-Version: Contact Form 7\n"
4
  "Report-Msgid-Bugs-To: \n"
5
+ "POT-Creation-Date: 2010-05-18 23:31+0900\n"
6
+ "PO-Revision-Date: 2010-05-18 23:33+0900\n"
7
  "Last-Translator: Takayuki Miyoshi <takayukister@gmail.com>\n"
8
  "Language-Team: \n"
9
  "MIME-Version: 1.0\n"
107
  msgid "Failed to create database table."
108
  msgstr "データベーステーブルを作成できませんでした。"
109
 
110
+ #: contact-form-7/admin/admin.php:358
111
  msgid "Contact Form 7 needs your support. Please donate today."
112
  msgstr "Contact Form 7 はあなたの支援を必要としています。寄付をお願いします。"
113
 
114
+ #: contact-form-7/admin/admin.php:359
115
  msgid "Your contribution is needed for making this plugin better."
116
  msgstr "あなたの貢献があればこのプラグインをもっと良くすることができます。"
117
 
118
+ #: contact-form-7/admin/admin.php:365
119
  msgid "http://contactform7.com/donate/"
120
  msgstr "http://contactform7.com/ja/donate-2/"
121
 
122
+ #: contact-form-7/admin/admin.php:365
123
  msgid "Donate"
124
  msgstr "寄付する"
125
 
239
  msgid "(select language)"
240
  msgstr "(言語を選択)"
241
 
242
+ #: contact-form-7/includes/classes.php:577
243
  msgid "Untitled"
244
  msgstr "無題"
245
 
languages/wpcf7-zh_TW.mo CHANGED
Binary file
languages/wpcf7-zh_TW.po CHANGED
@@ -1,10 +1,10 @@
1
  msgid ""
2
  msgstr ""
3
- "Project-Id-Version: Contact Form 2.1 正體中文語系檔\n"
4
  "Report-Msgid-Bugs-To: \n"
5
- "POT-Creation-Date: 2010-01-01 03:37+0900\n"
6
  "PO-Revision-Date: \n"
7
- "Last-Translator: James Wu <phptech@gmail.com>\n"
8
  "Language-Team: http://jameswublog.com <phptech@gmail.com>\n"
9
  "MIME-Version: 1.0\n"
10
  "Content-Type: text/plain; charset=UTF-8\n"
@@ -14,43 +14,143 @@ msgstr ""
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:117
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:309
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."
@@ -58,185 +158,85 @@ msgstr ""
58
  "您即將刪除這個聯絡表單。\n"
59
  "按「確定」刪除表單,或按「取消」取消刪除表單的動作。"
60
 
61
- #: contact-form-7/admin/admin-panel.php:104
62
  msgid "Form"
63
  msgstr "表單"
64
 
65
- #: contact-form-7/admin/admin-panel.php:128
66
  msgid "Mail"
67
  msgstr "郵件"
68
 
69
- #: contact-form-7/admin/admin-panel.php:135
70
- #: contact-form-7/admin/admin-panel.php:202
71
  msgid "To:"
72
  msgstr "收件人:"
73
 
74
- #: contact-form-7/admin/admin-panel.php:140
75
- #: contact-form-7/admin/admin-panel.php:207
76
  msgid "From:"
77
  msgstr "寄件人:"
78
 
79
- #: contact-form-7/admin/admin-panel.php:145
80
- #: contact-form-7/admin/admin-panel.php:212
81
  msgid "Subject:"
82
  msgstr "主旨:"
83
 
84
- #: contact-form-7/admin/admin-panel.php:152
85
- #: contact-form-7/admin/admin-panel.php:219
86
  msgid "Additional headers:"
87
  msgstr "額外的信件標頭 (header) 資訊:"
88
 
89
- #: contact-form-7/admin/admin-panel.php:157
90
- #: contact-form-7/admin/admin-panel.php:224
91
  msgid "File attachments:"
92
  msgstr "附加檔案:"
93
 
94
- #: contact-form-7/admin/admin-panel.php:165
95
- #: contact-form-7/admin/admin-panel.php:232
96
  msgid "Use HTML content type"
97
  msgstr "使用HTML內文格式"
98
 
99
- #: contact-form-7/admin/admin-panel.php:172
100
- #: contact-form-7/admin/admin-panel.php:239
101
- #: contact-form-7/includes/functions.php:73
102
  msgid "Message body:"
103
  msgstr "郵件內容:"
104
 
105
- #: contact-form-7/admin/admin-panel.php:188
106
  msgid "Mail (2)"
107
  msgstr "郵件(2)"
108
 
109
- #: contact-form-7/admin/admin-panel.php:194
110
  msgid "Use mail (2)"
111
  msgstr "使用郵件(2)"
112
 
113
- #: contact-form-7/admin/admin-panel.php:255
114
  msgid "Messages"
115
  msgstr "郵件內容"
116
 
117
- #: contact-form-7/admin/admin-panel.php:285
118
  msgid "Additional Settings"
119
  msgstr "額外的設定"
120
 
121
- #: contact-form-7/admin/admin-panel.php:333
122
  #, php-format
123
  msgid "Use the default language (%s)"
124
  msgstr "使用預設語言(%s)"
125
 
126
- #: contact-form-7/admin/admin-panel.php:334
127
- #: contact-form-7/admin/admin-panel.php:347
128
  msgid "Add New"
129
  msgstr "建立新的聯絡表單"
130
 
131
- #: contact-form-7/admin/admin-panel.php:337
132
  msgid "Or"
133
  msgstr "或"
134
 
135
- #: contact-form-7/admin/admin-panel.php:342
136
  msgid "(select language)"
137
  msgstr "(選擇語言)"
138
 
139
- #: contact-form-7/admin/admin.php:117
140
- msgid "Contact"
141
- msgstr "聯絡表單"
142
-
143
- #: contact-form-7/admin/admin.php:120
144
- msgid "Edit Contact Forms"
145
- msgstr "編輯聯絡表單"
146
-
147
- #: contact-form-7/admin/admin.php:120
148
- msgid "Edit"
149
- msgstr "編輯"
150
-
151
- #: contact-form-7/admin/admin.php:159
152
- msgid "Generate Tag"
153
- msgstr "標籤產生器"
154
-
155
- #: contact-form-7/admin/admin.php:160
156
- msgid "Show"
157
- msgstr "顯示"
158
-
159
- #: contact-form-7/admin/admin.php:161
160
- msgid "Hide"
161
- msgstr "隱藏"
162
-
163
- #: contact-form-7/admin/admin.php:305
164
- msgid "Contact form"
165
- msgstr "聯絡表單"
166
-
167
- #: contact-form-7/admin/admin.php:324
168
- msgid "Settings"
169
- msgstr "設定"
170
-
171
- #: contact-form-7/admin/admin.php:335
172
- msgid "http://contactform7.com/"
173
- msgstr "http://contactform7.com/"
174
-
175
- #: contact-form-7/admin/admin.php:336
176
- msgid "Contactform7.com"
177
- msgstr "Contactform7.com"
178
-
179
- #: contact-form-7/admin/admin.php:337
180
- msgid "http://contactform7.com/docs/"
181
- msgstr "http://contactform7.com/docs/"
182
-
183
- #: contact-form-7/admin/admin.php:338
184
- msgid "Docs"
185
- msgstr "教學文件"
186
-
187
- #: contact-form-7/admin/admin.php:339
188
- msgid "http://contactform7.com/faq/"
189
- msgstr "http://contactform7.com/faq/"
190
-
191
- #: contact-form-7/admin/admin.php:340
192
- msgid "FAQ"
193
- msgstr "常見問題"
194
-
195
- #: contact-form-7/admin/admin.php:341
196
- msgid "http://contactform7.com/support/"
197
- msgstr "http://contactform7.com/support/"
198
-
199
- #: contact-form-7/admin/admin.php:342
200
- msgid "Support"
201
- msgstr "支援"
202
-
203
- #: contact-form-7/admin/admin.php:353
204
- msgid "Contact form created."
205
- msgstr "已新增聯絡表單。"
206
-
207
- #: contact-form-7/admin/admin.php:356
208
- msgid "Contact form saved."
209
- msgstr "已儲存聯絡表單。"
210
-
211
- #: contact-form-7/admin/admin.php:359
212
- msgid "Contact form deleted."
213
- msgstr "已刪除聯絡表單。"
214
-
215
- #: contact-form-7/admin/admin.php:362
216
- msgid "Database table created."
217
- msgstr "資料庫資料表已建立。"
218
-
219
- #: contact-form-7/admin/admin.php:365
220
- msgid "Failed to create database table."
221
- msgstr "資料庫中的資料表建立失敗。"
222
-
223
- #: contact-form-7/admin/admin.php:398
224
- msgid "Contact Form 7 needs your support. Please donate today."
225
- msgstr "Contact Form 7 需要您的支持,請今天就慷慨解囊。"
226
-
227
- #: contact-form-7/admin/admin.php:399
228
- msgid "Is this plugin useful for you? If you like it, please help the developer."
229
- msgstr "您覺得本外掛實用嗎? 如果您喜歡這個外掛,請捐款支持本外掛的作者。"
230
-
231
- #: contact-form-7/admin/admin.php:400
232
- msgid "Your contribution is needed for making this plugin better."
233
- msgstr "為了讓這個外掛更好用,我們需要您的捐款。"
234
-
235
- #: contact-form-7/admin/admin.php:401
236
- msgid "Developing a plugin and providing user support is really hard work. Please help."
237
- msgstr "外掛程式的製作和幫助使用者解決技術上的問題,是很辛苦的工作。請捐款支持。"
238
-
239
- #: contact-form-7/includes/classes.php:568
240
  msgid "Untitled"
241
  msgstr "無標題"
242
 
@@ -293,436 +293,448 @@ msgstr " 有一個必需填寫的欄位不允許空白,請寄信者再確認
293
  msgid "Please fill the required field."
294
  msgstr "請填寫必要欄位。"
295
 
296
- #: contact-form-7/includes/functions.php:45
297
  msgid "Your Name"
298
  msgstr "您的姓名"
299
 
300
- #: contact-form-7/includes/functions.php:45
301
- #: contact-form-7/includes/functions.php:47
302
  msgid "(required)"
303
  msgstr "〈需填寫〉"
304
 
305
- #: contact-form-7/includes/functions.php:47
306
  msgid "Your Email"
307
  msgstr "您的電子郵件信箱"
308
 
309
- #: contact-form-7/includes/functions.php:49
310
  msgid "Subject"
311
  msgstr "主旨"
312
 
313
- #: contact-form-7/includes/functions.php:51
314
  msgid "Your Message"
315
  msgstr "您的信件內容"
316
 
317
- #: contact-form-7/includes/functions.php:53
318
  msgid "Send"
319
  msgstr "傳送"
320
 
321
- #: contact-form-7/includes/functions.php:60
322
  #, php-format
323
  msgid "From: %s"
324
  msgstr "寄件人:%s"
325
 
326
- #: contact-form-7/includes/functions.php:61
327
  #, php-format
328
  msgid "Subject: %s"
329
  msgstr "主旨:%s"
330
 
331
- #: contact-form-7/includes/functions.php:62
332
  msgid "Message Body:"
333
  msgstr "郵件內文:"
334
 
335
- #: contact-form-7/includes/functions.php:63
336
- #: contact-form-7/includes/functions.php:74
337
  #, php-format
338
  msgid "This mail is sent via contact form on %1$s %2$s"
339
  msgstr "這從由 %1$s %2$s 使用聯絡表單所發送的郵件"
340
 
341
- #: contact-form-7/includes/functions.php:163
 
 
 
 
342
  msgid "Albanian"
343
  msgstr "阿爾巴尼亞文"
344
 
345
- #: contact-form-7/includes/functions.php:164
346
  msgid "Arabic"
347
  msgstr "阿拉伯文"
348
 
349
- #: contact-form-7/includes/functions.php:165
350
  msgid "Bangla"
351
  msgstr "孟加拉文"
352
 
353
- #: contact-form-7/includes/functions.php:166
354
  msgid "Bosnian"
355
  msgstr "波斯尼亞文"
356
 
357
- #: contact-form-7/includes/functions.php:167
358
  msgid "Brazilian Portuguese"
359
  msgstr "巴西葡萄牙語"
360
 
361
- #: contact-form-7/includes/functions.php:168
362
  msgid "Bulgarian"
363
  msgstr "保加利亞文"
364
 
365
- #: contact-form-7/includes/functions.php:169
366
  msgid "Catalan"
367
  msgstr "加泰羅尼亞文"
368
 
369
- #: contact-form-7/includes/functions.php:170
370
  msgid "Chinese (Simplified)"
371
  msgstr "中文(簡體)"
372
 
373
- #: contact-form-7/includes/functions.php:171
374
  msgid "Chinese (Traditional)"
375
  msgstr "中文(正體)"
376
 
377
- #: contact-form-7/includes/functions.php:172
378
  msgid "Croatian"
379
  msgstr "克羅地亞文"
380
 
381
- #: contact-form-7/includes/functions.php:173
382
  msgid "Czech"
383
  msgstr "捷克文"
384
 
385
- #: contact-form-7/includes/functions.php:174
386
  msgid "Danish"
387
  msgstr "丹麥文"
388
 
389
- #: contact-form-7/includes/functions.php:175
390
  msgid "Dutch"
391
  msgstr "荷蘭文"
392
 
393
- #: contact-form-7/includes/functions.php:176
394
  msgid "English"
395
  msgstr "英文"
396
 
397
- #: contact-form-7/includes/functions.php:177
398
  msgid "Estonian"
399
  msgstr "愛沙尼亞文"
400
 
401
- #: contact-form-7/includes/functions.php:178
402
  msgid "Finnish"
403
  msgstr "芬蘭文"
404
 
405
- #: contact-form-7/includes/functions.php:179
406
  msgid "French"
407
  msgstr "法文"
408
 
409
- #: contact-form-7/includes/functions.php:180
 
 
 
 
410
  msgid "Georgian"
411
  msgstr "格魯吉亞文"
412
 
413
- #: contact-form-7/includes/functions.php:181
414
  msgid "German"
415
  msgstr "德文"
416
 
417
- #: contact-form-7/includes/functions.php:182
418
  msgid "Greek"
419
  msgstr "希臘文"
420
 
421
- #: contact-form-7/includes/functions.php:183
422
  msgid "Hebrew"
423
  msgstr "希伯來文"
424
 
425
- #: contact-form-7/includes/functions.php:184
426
  msgid "Hindi"
427
  msgstr "印度文"
428
 
429
- #: contact-form-7/includes/functions.php:185
430
  msgid "Hungarian"
431
  msgstr "匈牙利文"
432
 
433
- #: contact-form-7/includes/functions.php:186
434
  msgid "Indonesian"
435
  msgstr "印度尼西亞文"
436
 
437
- #: contact-form-7/includes/functions.php:187
438
  msgid "Italian"
439
  msgstr "意大利文"
440
 
441
- #: contact-form-7/includes/functions.php:188
442
  msgid "Japanese"
443
  msgstr "日文"
444
 
445
- #: contact-form-7/includes/functions.php:189
446
  msgid "Korean"
447
  msgstr "韓文"
448
 
449
- #: contact-form-7/includes/functions.php:190
450
  msgid "Latvian"
451
  msgstr "拉脫維亞文"
452
 
453
- #: contact-form-7/includes/functions.php:191
454
  msgid "Lithuanian"
455
  msgstr "立陶宛文"
456
 
457
- #: contact-form-7/includes/functions.php:192
 
 
 
 
458
  msgid "Norwegian"
459
  msgstr "挪威文"
460
 
461
- #: contact-form-7/includes/functions.php:193
462
  msgid "Persian"
463
  msgstr "波斯文"
464
 
465
- #: contact-form-7/includes/functions.php:194
466
  msgid "Polish"
467
  msgstr "波蘭文"
468
 
469
- #: contact-form-7/includes/functions.php:195
470
  msgid "Portuguese"
471
  msgstr "葡萄牙文"
472
 
473
- #: contact-form-7/includes/functions.php:196
474
  msgid "Russian"
475
  msgstr "俄文"
476
 
477
- #: contact-form-7/includes/functions.php:197
478
  msgid "Romanian"
479
  msgstr "羅馬尼亞文"
480
 
481
- #: contact-form-7/includes/functions.php:198
482
  msgid "Serbian"
483
  msgstr "塞爾維亞文"
484
 
485
- #: contact-form-7/includes/functions.php:199
486
  msgid "Slovak"
487
  msgstr "斯洛伐克文"
488
 
489
- #: contact-form-7/includes/functions.php:200
490
  msgid "Slovene"
491
  msgstr "斯洛文尼亞文"
492
 
493
- #: contact-form-7/includes/functions.php:201
494
  msgid "Spanish"
495
  msgstr "西班牙文"
496
 
497
- #: contact-form-7/includes/functions.php:202
498
  msgid "Swedish"
499
  msgstr "瑞典文"
500
 
501
- #: contact-form-7/includes/functions.php:203
502
  msgid "Thai"
503
  msgstr "泰文"
504
 
505
- #: contact-form-7/includes/functions.php:204
506
  msgid "Turkish"
507
  msgstr "土耳其文"
508
 
509
- #: contact-form-7/includes/functions.php:205
510
  msgid "Ukrainian"
511
  msgstr "烏克蘭文"
512
 
513
- #: contact-form-7/includes/functions.php:206
514
  msgid "Vietnamese"
515
  msgstr "越南文"
516
 
517
- #: contact-form-7/modules/acceptance.php:94
518
  msgid "Acceptance"
519
  msgstr "接受使用條款"
520
 
521
- #: contact-form-7/modules/acceptance.php:103
522
- #: contact-form-7/modules/captcha.php:206
523
- #: contact-form-7/modules/checkbox.php:196
524
- #: contact-form-7/modules/file.php:234
525
  msgid "Name"
526
  msgstr "物件名稱"
527
 
528
- #: contact-form-7/modules/acceptance.php:108
529
- #: contact-form-7/modules/acceptance.php:111
530
- #: contact-form-7/modules/captcha.php:213
531
- #: contact-form-7/modules/captcha.php:216
532
  #: contact-form-7/modules/captcha.php:221
533
  #: contact-form-7/modules/captcha.php:224
534
- #: contact-form-7/modules/captcha.php:228
535
- #: contact-form-7/modules/captcha.php:239
536
- #: contact-form-7/modules/captcha.php:242
537
  #: contact-form-7/modules/captcha.php:247
538
  #: contact-form-7/modules/captcha.php:250
539
- #: contact-form-7/modules/checkbox.php:201
540
- #: contact-form-7/modules/checkbox.php:204
541
- #: contact-form-7/modules/file.php:239
542
- #: contact-form-7/modules/file.php:242
543
- #: contact-form-7/modules/file.php:247
544
- #: contact-form-7/modules/file.php:250
 
 
545
  msgid "optional"
546
  msgstr "可不填"
547
 
548
- #: contact-form-7/modules/acceptance.php:117
549
  msgid "Make this checkbox checked by default?"
550
  msgstr "預設核選方塊為核取(已勾選)?"
551
 
552
- #: contact-form-7/modules/acceptance.php:118
553
  msgid "Make this checkbox work inversely?"
554
  msgstr "設定核取方塊被選取的狀態相反?"
555
 
556
- #: contact-form-7/modules/acceptance.php:119
557
  msgid "* That means visitor who accepts the term unchecks it."
558
  msgstr "*意思是如果使用者如果接受服務條款,則不需勾選核取方塊。"
559
 
560
- #: contact-form-7/modules/acceptance.php:124
561
- #: contact-form-7/modules/captcha.php:255
562
- #: contact-form-7/modules/checkbox.php:224
563
- #: contact-form-7/modules/file.php:255
564
  msgid "Copy this code and paste it into the form left."
565
  msgstr "把這段代碼複製後,貼到左方的表格"
566
 
567
- #: contact-form-7/modules/captcha.php:65
568
  msgid "To use CAPTCHA, you need <a href=\"http://wordpress.org/extend/plugins/really-simple-captcha/\">Really Simple CAPTCHA</a> plugin installed."
569
  msgstr "使用圖片驗證(CAPTCHA)的功能前,您必需先安裝 <a href=\"http://wordpress.org/extend/plugins/really-simple-captcha/\">Really Simple CAPTCHA</a>這個外掛。"
570
 
571
- #: contact-form-7/modules/captcha.php:181
572
  msgid "The code that sender entered does not match the CAPTCHA"
573
  msgstr "寄信者所輸入的圖片認證碼錯誤"
574
 
575
- #: contact-form-7/modules/captcha.php:182
576
  msgid "Your entered code is incorrect."
577
  msgstr "您輸入的認證代碼錯誤。 "
578
 
579
- #: contact-form-7/modules/captcha.php:192
580
  msgid "CAPTCHA"
581
  msgstr "CAPTCHA 驗證"
582
 
583
- #: contact-form-7/modules/captcha.php:203
584
  msgid "Note: To use CAPTCHA, you need Really Simple CAPTCHA plugin installed."
585
  msgstr "作者註:使用圖片驗證(CAPTCHA)的功能前,您必需先安裝\"Really Simple CAPTCHA\"這個外掛。"
586
 
587
- #: contact-form-7/modules/captcha.php:210
588
  msgid "Image settings"
589
  msgstr "圖片設定"
590
 
591
- #: contact-form-7/modules/captcha.php:221
592
  msgid "Foreground color"
593
  msgstr "前景顏色"
594
 
595
- #: contact-form-7/modules/captcha.php:224
596
  msgid "Background color"
597
  msgstr "背景顏色"
598
 
599
- #: contact-form-7/modules/captcha.php:228
600
  msgid "Image size"
601
  msgstr "圖片尺寸"
602
 
603
- #: contact-form-7/modules/captcha.php:229
604
  msgid "Small"
605
  msgstr "小"
606
 
607
- #: contact-form-7/modules/captcha.php:230
608
  msgid "Medium"
609
  msgstr "中"
610
 
611
- #: contact-form-7/modules/captcha.php:231
612
  msgid "Large"
613
  msgstr "大"
614
 
615
- #: contact-form-7/modules/captcha.php:236
616
  msgid "Input field settings"
617
  msgstr "設定輸入欄位"
618
 
619
- #: contact-form-7/modules/captcha.php:256
620
  msgid "For image"
621
  msgstr "圖片使用"
622
 
623
- #: contact-form-7/modules/captcha.php:258
624
  msgid "For input field"
625
  msgstr "輸入欄位使用"
626
 
627
- #: contact-form-7/modules/captcha.php:288
628
  #, php-format
629
  msgid "This contact form contains CAPTCHA fields, but the temporary folder for the files (%s) does not exist or is not writable. You can create the folder or change its permission manually."
630
  msgstr "這個聯絡表單中包含 CAPTCHA 的欄位,但是(%s) 這個檔案的臨時文件夾並 不存在或不可寫。您可以使用手動的方式新建一個檔案夾,或修改檔案夾的權限設定。"
631
 
632
- #: contact-form-7/modules/captcha.php:294
633
  msgid "This contact form contains CAPTCHA fields, but the necessary libraries (GD and FreeType) are not available on your server."
634
  msgstr "這個聯絡表單中包含 CAPTCHA 的欄位,但您的主機中並沒有可用的 GD 和 FreeType 這兩個必需的函式庫。"
635
 
636
- #: contact-form-7/modules/checkbox.php:169
637
  msgid "Checkboxes"
638
  msgstr "核選方塊"
639
 
640
- #: contact-form-7/modules/checkbox.php:172
641
  msgid "Radio buttons"
642
  msgstr "選項按鈕"
643
 
644
- #: contact-form-7/modules/checkbox.php:193
645
- #: contact-form-7/modules/file.php:233
646
  msgid "Required field?"
647
  msgstr "設定為必要欄位?"
648
 
649
- #: contact-form-7/modules/checkbox.php:209
650
  msgid "Choices"
651
  msgstr "選項"
652
 
653
- #: contact-form-7/modules/checkbox.php:211
654
  msgid "* One choice per line."
655
  msgstr "*每行只能有一個選項。"
656
 
657
- #: contact-form-7/modules/checkbox.php:215
658
  msgid "Put a label first, a checkbox last?"
659
  msgstr "標籤在前,選項在後?"
660
 
661
- #: contact-form-7/modules/checkbox.php:216
662
  msgid "Wrap each item with <label> tag?"
663
  msgstr "使用<label> 標籤,建立表單內文字與表單標籤的關聯關係?"
664
 
665
- #: contact-form-7/modules/checkbox.php:218
666
  msgid "Make checkboxes exclusive?"
667
  msgstr "設定核取方塊,為不允許修改(唯讀)?"
668
 
669
- #: contact-form-7/modules/checkbox.php:226
670
  msgid "And, put this code into the Mail fields below."
671
  msgstr "並且,把這段代碼複製到信件內文的欄位中。"
672
 
673
- #: contact-form-7/modules/file.php:197
674
  msgid "Uploading a file fails for any reason"
675
  msgstr "檔案上傳的過程中,因不明原因導致上傳失敗。"
676
 
677
- #: contact-form-7/modules/file.php:198
678
  msgid "Failed to upload file."
679
  msgstr "上傳檔案失敗。"
680
 
681
- #: contact-form-7/modules/file.php:202
682
  msgid "Uploaded file is not allowed file type"
683
  msgstr "所上傳的檔案是不被允許的檔案種類"
684
 
685
- #: contact-form-7/modules/file.php:203
686
  msgid "This file type is not allowed."
687
  msgstr "上傳的檔案不是允許的檔案種類。"
688
 
689
- #: contact-form-7/modules/file.php:207
690
  msgid "Uploaded file is too large"
691
  msgstr "上傳擋案過大"
692
 
693
- #: contact-form-7/modules/file.php:208
694
  msgid "This file is too large."
695
  msgstr "這個檔案過大。"
696
 
697
- #: contact-form-7/modules/file.php:212
698
  msgid "Uploading a file fails for PHP error"
699
  msgstr "檔案上傳的過程中,因PHP錯誤導致上傳失敗。"
700
 
701
- #: contact-form-7/modules/file.php:213
702
  msgid "Failed to upload file. Error occurred."
703
  msgstr "錯誤發生,檔案上傳失敗。"
704
 
705
- #: contact-form-7/modules/file.php:224
706
  msgid "File upload"
707
  msgstr "檔案上傳"
708
 
709
- #: contact-form-7/modules/file.php:247
710
  msgid "File size limit"
711
  msgstr "檔案大小限制"
712
 
713
- #: contact-form-7/modules/file.php:247
714
  msgid "bytes"
715
  msgstr "位元組"
716
 
717
- #: contact-form-7/modules/file.php:250
718
  msgid "Acceptable file types"
719
  msgstr "可接受上傳檔案的種類"
720
 
721
- #: contact-form-7/modules/file.php:257
722
  msgid "And, put this code into the File Attachments field below."
723
  msgstr "並且,把這段代碼複製到附加檔案:的欄位中。"
724
 
725
- #: contact-form-7/modules/file.php:282
726
  #, php-format
727
  msgid "This contact form contains file uploading fields, but the temporary folder for the files (%s) does not exist or is not writable. You can create the folder or change its permission manually."
728
  msgstr "這個聯絡表單中包含'檔案上傳欄位,但是(%s) 這個上傳檔案的臨時文件夾並 不存在或不可寫。您可以使用手動的方式新建一個檔案夾,或修改檔案夾的權限設定。"
@@ -731,79 +743,87 @@ msgstr "這個聯絡表單中包含'檔案上傳欄位,但是(%s) 這個上傳
731
  msgid "This contact form contains [icl] tags, but they are obsolete and no longer functioning on this version of Contact Form 7. <a href=\"http://contactform7.com/2009/12/25/contact-form-in-your-language/#Creating_contact_form_in_different_languages\" target=\"_blank\">There is a simpler way for creating contact forms of other languages</a> and you are recommended to use it."
732
  msgstr "這個聯絡表單中包含 [icl] 的標籤,但是他們在此版本的Contact Form & 中,已不再被使用並不會再有任何的功能。 <a href=\"http://contactform7.com/2009/12/25/contact-form-in-your-language/#Creating_contact_form_in_different_languages\" target=\"_blank\">我們推薦您使用,更為簡便的方式來為其他語言建立聯絡表單。</a>"
733
 
734
- #: contact-form-7/modules/quiz.php:164
735
  msgid "Sender doesn't enter the correct answer to the quiz"
736
  msgstr "寄信者沒有輸入測驗題目的正確答案"
737
 
738
- #: contact-form-7/modules/quiz.php:165
739
  msgid "Your answer is not correct."
740
  msgstr "您的答案不正確。"
741
 
742
- #: contact-form-7/modules/quiz.php:175
743
  msgid "Quiz"
744
  msgstr "測驗題目驗證"
745
 
746
- #: contact-form-7/modules/quiz.php:205
747
  msgid "Quizzes"
748
  msgstr "測驗題庫"
749
 
750
- #: contact-form-7/modules/quiz.php:207
751
  msgid "* quiz|answer (e.g. 1+1=?|2)"
752
  msgstr "* 測驗題目|答案 (例如 1+1=?|2)"
753
 
754
- #: contact-form-7/modules/select.php:146
755
  msgid "Drop-down menu"
756
  msgstr "下拉式選單"
757
 
758
- #: contact-form-7/modules/select.php:175
759
  msgid "Allow multiple selections?"
760
  msgstr "允許在下拉式選單中,可以選擇一個以上的選項?"
761
 
762
- #: contact-form-7/modules/select.php:176
763
  msgid "Insert a blank item as the first option?"
764
  msgstr "要插入一個空白資料欄位,作為第一個選項?"
765
 
766
- #: contact-form-7/modules/submit.php:55
767
  msgid "Submit button"
768
  msgstr "提交按鈕"
769
 
770
- #: contact-form-7/modules/submit.php:73
771
  msgid "Label"
772
  msgstr "標籤"
773
 
774
- #: contact-form-7/modules/text.php:129
775
  msgid "Text field"
776
  msgstr "文字欄位"
777
 
778
- #: contact-form-7/modules/text.php:132
779
  msgid "Email field"
780
  msgstr "電子郵件欄位"
781
 
782
- #: contact-form-7/modules/text.php:174
783
  msgid "Akismet"
784
  msgstr "Akismet(防止垃圾郵件的插件)"
785
 
786
- #: contact-form-7/modules/text.php:176
787
  msgid "This field requires author's name"
788
  msgstr "這個欄位需要填寫作者的姓名"
789
 
790
- #: contact-form-7/modules/text.php:177
791
  msgid "This field requires author's URL"
792
  msgstr "這個欄位需要填寫作者的網址"
793
 
794
- #: contact-form-7/modules/text.php:179
795
  msgid "This field requires author's email address"
796
  msgstr "這個欄位需要填寫作者的電子郵件信箱"
797
 
798
- #: contact-form-7/modules/text.php:183
799
- #: contact-form-7/modules/textarea.php:149
800
  msgid "Default value"
801
  msgstr "預設值"
802
 
803
- #: contact-form-7/modules/textarea.php:118
804
  msgid "Text area"
805
  msgstr "文字區塊"
806
 
 
 
 
 
 
 
 
 
807
  #~ msgid "This mail is created by Contact Form 7 plugin for WordPress."
808
  #~ msgstr "這封信是由 WordPress 外掛 Contact Form 7 所產生。"
809
  #~ msgid "(You need WordPress 2.7 or greater to use this feature)"
1
  msgid ""
2
  msgstr ""
3
+ "Project-Id-Version: Contact Form 2.2 正體中文語系檔\n"
4
  "Report-Msgid-Bugs-To: \n"
5
+ "POT-Creation-Date: 2010-03-23 06:47+0900\n"
6
  "PO-Revision-Date: \n"
7
+ "Last-Translator: James Wu <blog@jameswublg.com>\n"
8
  "Language-Team: http://jameswublog.com <phptech@gmail.com>\n"
9
  "MIME-Version: 1.0\n"
10
  "Content-Type: text/plain; charset=UTF-8\n"
14
  "X-Poedit-Country: TAIWAN\n"
15
  "X-Poedit-SourceCharset: utf-8\n"
16
 
17
+ #: contact-form-7/admin/admin.php:120
18
+ #: contact-form-7/admin/edit.php:17
19
+ #: contact-form-7/admin/edit.php:30
20
+ msgid "Contact Form 7"
21
+ msgstr "Contact Form 7"
22
+
23
+ #: contact-form-7/admin/admin.php:120
24
+ msgid "Contact"
25
+ msgstr "聯絡表單"
26
+
27
+ #: contact-form-7/admin/admin.php:123
28
+ msgid "Edit Contact Forms"
29
+ msgstr "編輯聯絡表單"
30
+
31
+ #: contact-form-7/admin/admin.php:123
32
+ msgid "Edit"
33
+ msgstr "編輯"
34
+
35
+ #: contact-form-7/admin/admin.php:162
36
+ msgid "Generate Tag"
37
+ msgstr "標籤產生器"
38
+
39
+ #: contact-form-7/admin/admin.php:163
40
+ msgid "Show"
41
+ msgstr "顯示"
42
+
43
+ #: contact-form-7/admin/admin.php:164
44
+ msgid "Hide"
45
+ msgstr "隱藏"
46
+
47
+ #: contact-form-7/admin/admin.php:261
48
+ msgid "Contact form"
49
+ msgstr "聯絡表單"
50
+
51
+ #: contact-form-7/admin/admin.php:280
52
+ msgid "Settings"
53
+ msgstr "設定"
54
+
55
+ #: contact-form-7/admin/admin.php:291
56
+ msgid "http://contactform7.com/"
57
+ msgstr "http://contactform7.com/"
58
+
59
+ #: contact-form-7/admin/admin.php:292
60
+ msgid "Contactform7.com"
61
+ msgstr "Contactform7.com"
62
+
63
+ #: contact-form-7/admin/admin.php:293
64
+ msgid "http://contactform7.com/docs/"
65
+ msgstr "http://contactform7.com/docs/"
66
+
67
+ #: contact-form-7/admin/admin.php:294
68
+ msgid "Docs"
69
+ msgstr "教學文件"
70
+
71
+ #: contact-form-7/admin/admin.php:295
72
+ msgid "http://contactform7.com/faq/"
73
+ msgstr "http://contactform7.com/faq/"
74
+
75
+ #: contact-form-7/admin/admin.php:296
76
+ msgid "FAQ"
77
+ msgstr "常見問題"
78
+
79
+ #: contact-form-7/admin/admin.php:297
80
+ msgid "http://contactform7.com/support/"
81
+ msgstr "http://contactform7.com/support/"
82
+
83
+ #: contact-form-7/admin/admin.php:298
84
+ msgid "Support"
85
+ msgstr "支援"
86
+
87
+ #: contact-form-7/admin/admin.php:312
88
+ msgid "Contact form created."
89
+ msgstr "已新增聯絡表單。"
90
+
91
+ #: contact-form-7/admin/admin.php:315
92
+ msgid "Contact form saved."
93
+ msgstr "已儲存聯絡表單。"
94
+
95
+ #: contact-form-7/admin/admin.php:318
96
+ msgid "Contact form deleted."
97
+ msgstr "已刪除聯絡表單。"
98
+
99
+ #: contact-form-7/admin/admin.php:321
100
+ msgid "Database table created."
101
+ msgstr "資料庫資料表已建立。"
102
+
103
+ #: contact-form-7/admin/admin.php:324
104
+ msgid "Failed to create database table."
105
+ msgstr "資料庫中的資料表建立失敗。"
106
+
107
+ #: contact-form-7/admin/admin.php:357
108
+ msgid "Contact Form 7 needs your support. Please donate today."
109
+ msgstr "Contact Form 7 需要您的支持,請今天就慷慨解囊。"
110
+
111
+ #: contact-form-7/admin/admin.php:358
112
+ msgid "Your contribution is needed for making this plugin better."
113
+ msgstr "為了讓這個外掛更優質,我們需要您的捐款。"
114
+
115
+ #: contact-form-7/admin/admin.php:364
116
+ msgid "http://contactform7.com/donate/"
117
+ msgstr "http://contactform7.com/donate/"
118
+
119
+ #: contact-form-7/admin/admin.php:364
120
+ msgid "Donate"
121
+ msgstr "捐款"
122
+
123
+ #: contact-form-7/admin/edit.php:9
124
  #, php-format
125
  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."
126
  msgstr "<strong>所使用的資料庫資料表並不存在。</strong> 您必需要 <a href=\"%s\">建立一個資料表後</a> ,表單才能運作。"
127
 
128
+ #: contact-form-7/admin/edit.php:12
129
  msgid "<strong>The database table for Contact Form 7 does not exist.</strong>"
130
  msgstr "<strong>Contact Form 7 所使用的資料庫資料表並不存在。</strong>"
131
 
132
+ #: contact-form-7/admin/edit.php:45
 
 
 
 
 
 
133
  msgid "Add new"
134
  msgstr "建立新聯絡表單"
135
 
136
+ #: contact-form-7/admin/edit.php:67
137
  msgid "Copy this code and paste it into your post, page or text widget content."
138
  msgstr "您可以把這段代碼複製到您的網誌文章、分頁或文字小工具(Text Widget)的內容中。"
139
 
140
+ #: contact-form-7/admin/edit.php:75
141
+ #: contact-form-7/admin/edit.php:309
142
  msgid "Save"
143
  msgstr "儲存"
144
 
145
+ #: contact-form-7/admin/edit.php:82
146
  msgid "Copy"
147
  msgstr "複製"
148
 
149
+ #: contact-form-7/admin/edit.php:87
150
  msgid "Delete"
151
  msgstr "刪除"
152
 
153
+ #: contact-form-7/admin/edit.php:89
154
  msgid ""
155
  "You are about to delete this contact form.\n"
156
  " 'Cancel' to stop, 'OK' to delete."
158
  "您即將刪除這個聯絡表單。\n"
159
  "按「確定」刪除表單,或按「取消」取消刪除表單的動作。"
160
 
161
+ #: contact-form-7/admin/edit.php:104
162
  msgid "Form"
163
  msgstr "表單"
164
 
165
+ #: contact-form-7/admin/edit.php:128
166
  msgid "Mail"
167
  msgstr "郵件"
168
 
169
+ #: contact-form-7/admin/edit.php:135
170
+ #: contact-form-7/admin/edit.php:202
171
  msgid "To:"
172
  msgstr "收件人:"
173
 
174
+ #: contact-form-7/admin/edit.php:140
175
+ #: contact-form-7/admin/edit.php:207
176
  msgid "From:"
177
  msgstr "寄件人:"
178
 
179
+ #: contact-form-7/admin/edit.php:145
180
+ #: contact-form-7/admin/edit.php:212
181
  msgid "Subject:"
182
  msgstr "主旨:"
183
 
184
+ #: contact-form-7/admin/edit.php:152
185
+ #: contact-form-7/admin/edit.php:219
186
  msgid "Additional headers:"
187
  msgstr "額外的信件標頭 (header) 資訊:"
188
 
189
+ #: contact-form-7/admin/edit.php:157
190
+ #: contact-form-7/admin/edit.php:224
191
  msgid "File attachments:"
192
  msgstr "附加檔案:"
193
 
194
+ #: contact-form-7/admin/edit.php:165
195
+ #: contact-form-7/admin/edit.php:232
196
  msgid "Use HTML content type"
197
  msgstr "使用HTML內文格式"
198
 
199
+ #: contact-form-7/admin/edit.php:172
200
+ #: contact-form-7/admin/edit.php:239
201
+ #: contact-form-7/includes/functions.php:78
202
  msgid "Message body:"
203
  msgstr "郵件內容:"
204
 
205
+ #: contact-form-7/admin/edit.php:188
206
  msgid "Mail (2)"
207
  msgstr "郵件(2)"
208
 
209
+ #: contact-form-7/admin/edit.php:194
210
  msgid "Use mail (2)"
211
  msgstr "使用郵件(2)"
212
 
213
+ #: contact-form-7/admin/edit.php:255
214
  msgid "Messages"
215
  msgstr "郵件內容"
216
 
217
+ #: contact-form-7/admin/edit.php:285
218
  msgid "Additional Settings"
219
  msgstr "額外的設定"
220
 
221
+ #: contact-form-7/admin/edit.php:333
222
  #, php-format
223
  msgid "Use the default language (%s)"
224
  msgstr "使用預設語言(%s)"
225
 
226
+ #: contact-form-7/admin/edit.php:334
227
+ #: contact-form-7/admin/edit.php:347
228
  msgid "Add New"
229
  msgstr "建立新的聯絡表單"
230
 
231
+ #: contact-form-7/admin/edit.php:337
232
  msgid "Or"
233
  msgstr "或"
234
 
235
+ #: contact-form-7/admin/edit.php:342
236
  msgid "(select language)"
237
  msgstr "(選擇語言)"
238
 
239
+ #: contact-form-7/includes/classes.php:564
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
240
  msgid "Untitled"
241
  msgstr "無標題"
242
 
293
  msgid "Please fill the required field."
294
  msgstr "請填寫必要欄位。"
295
 
296
+ #: contact-form-7/includes/functions.php:46
297
  msgid "Your Name"
298
  msgstr "您的姓名"
299
 
300
+ #: contact-form-7/includes/functions.php:46
301
+ #: contact-form-7/includes/functions.php:48
302
  msgid "(required)"
303
  msgstr "〈需填寫〉"
304
 
305
+ #: contact-form-7/includes/functions.php:48
306
  msgid "Your Email"
307
  msgstr "您的電子郵件信箱"
308
 
309
+ #: contact-form-7/includes/functions.php:50
310
  msgid "Subject"
311
  msgstr "主旨"
312
 
313
+ #: contact-form-7/includes/functions.php:52
314
  msgid "Your Message"
315
  msgstr "您的信件內容"
316
 
317
+ #: contact-form-7/includes/functions.php:54
318
  msgid "Send"
319
  msgstr "傳送"
320
 
321
+ #: contact-form-7/includes/functions.php:62
322
  #, php-format
323
  msgid "From: %s"
324
  msgstr "寄件人:%s"
325
 
326
+ #: contact-form-7/includes/functions.php:63
327
  #, php-format
328
  msgid "Subject: %s"
329
  msgstr "主旨:%s"
330
 
331
+ #: contact-form-7/includes/functions.php:64
332
  msgid "Message Body:"
333
  msgstr "郵件內文:"
334
 
335
+ #: contact-form-7/includes/functions.php:65
336
+ #: contact-form-7/includes/functions.php:79
337
  #, php-format
338
  msgid "This mail is sent via contact form on %1$s %2$s"
339
  msgstr "這從由 %1$s %2$s 使用聯絡表單所發送的郵件"
340
 
341
+ #: contact-form-7/includes/functions.php:168
342
+ msgid "Afrikaans"
343
+ msgstr "南非荷蘭文"
344
+
345
+ #: contact-form-7/includes/functions.php:169
346
  msgid "Albanian"
347
  msgstr "阿爾巴尼亞文"
348
 
349
+ #: contact-form-7/includes/functions.php:170
350
  msgid "Arabic"
351
  msgstr "阿拉伯文"
352
 
353
+ #: contact-form-7/includes/functions.php:171
354
  msgid "Bangla"
355
  msgstr "孟加拉文"
356
 
357
+ #: contact-form-7/includes/functions.php:172
358
  msgid "Bosnian"
359
  msgstr "波斯尼亞文"
360
 
361
+ #: contact-form-7/includes/functions.php:173
362
  msgid "Brazilian Portuguese"
363
  msgstr "巴西葡萄牙語"
364
 
365
+ #: contact-form-7/includes/functions.php:174
366
  msgid "Bulgarian"
367
  msgstr "保加利亞文"
368
 
369
+ #: contact-form-7/includes/functions.php:175
370
  msgid "Catalan"
371
  msgstr "加泰羅尼亞文"
372
 
373
+ #: contact-form-7/includes/functions.php:176
374
  msgid "Chinese (Simplified)"
375
  msgstr "中文(簡體)"
376
 
377
+ #: contact-form-7/includes/functions.php:177
378
  msgid "Chinese (Traditional)"
379
  msgstr "中文(正體)"
380
 
381
+ #: contact-form-7/includes/functions.php:178
382
  msgid "Croatian"
383
  msgstr "克羅地亞文"
384
 
385
+ #: contact-form-7/includes/functions.php:179
386
  msgid "Czech"
387
  msgstr "捷克文"
388
 
389
+ #: contact-form-7/includes/functions.php:180
390
  msgid "Danish"
391
  msgstr "丹麥文"
392
 
393
+ #: contact-form-7/includes/functions.php:181
394
  msgid "Dutch"
395
  msgstr "荷蘭文"
396
 
397
+ #: contact-form-7/includes/functions.php:182
398
  msgid "English"
399
  msgstr "英文"
400
 
401
+ #: contact-form-7/includes/functions.php:183
402
  msgid "Estonian"
403
  msgstr "愛沙尼亞文"
404
 
405
+ #: contact-form-7/includes/functions.php:184
406
  msgid "Finnish"
407
  msgstr "芬蘭文"
408
 
409
+ #: contact-form-7/includes/functions.php:185
410
  msgid "French"
411
  msgstr "法文"
412
 
413
+ #: contact-form-7/includes/functions.php:186
414
+ msgid "Galician"
415
+ msgstr "加里西亞文"
416
+
417
+ #: contact-form-7/includes/functions.php:187
418
  msgid "Georgian"
419
  msgstr "格魯吉亞文"
420
 
421
+ #: contact-form-7/includes/functions.php:188
422
  msgid "German"
423
  msgstr "德文"
424
 
425
+ #: contact-form-7/includes/functions.php:189
426
  msgid "Greek"
427
  msgstr "希臘文"
428
 
429
+ #: contact-form-7/includes/functions.php:190
430
  msgid "Hebrew"
431
  msgstr "希伯來文"
432
 
433
+ #: contact-form-7/includes/functions.php:191
434
  msgid "Hindi"
435
  msgstr "印度文"
436
 
437
+ #: contact-form-7/includes/functions.php:192
438
  msgid "Hungarian"
439
  msgstr "匈牙利文"
440
 
441
+ #: contact-form-7/includes/functions.php:193
442
  msgid "Indonesian"
443
  msgstr "印度尼西亞文"
444
 
445
+ #: contact-form-7/includes/functions.php:194
446
  msgid "Italian"
447
  msgstr "意大利文"
448
 
449
+ #: contact-form-7/includes/functions.php:195
450
  msgid "Japanese"
451
  msgstr "日文"
452
 
453
+ #: contact-form-7/includes/functions.php:196
454
  msgid "Korean"
455
  msgstr "韓文"
456
 
457
+ #: contact-form-7/includes/functions.php:197
458
  msgid "Latvian"
459
  msgstr "拉脫維亞文"
460
 
461
+ #: contact-form-7/includes/functions.php:198
462
  msgid "Lithuanian"
463
  msgstr "立陶宛文"
464
 
465
+ #: contact-form-7/includes/functions.php:199
466
+ msgid "Malayalam"
467
+ msgstr "馬來亞拉姆文"
468
+
469
+ #: contact-form-7/includes/functions.php:200
470
  msgid "Norwegian"
471
  msgstr "挪威文"
472
 
473
+ #: contact-form-7/includes/functions.php:201
474
  msgid "Persian"
475
  msgstr "波斯文"
476
 
477
+ #: contact-form-7/includes/functions.php:202
478
  msgid "Polish"
479
  msgstr "波蘭文"
480
 
481
+ #: contact-form-7/includes/functions.php:203
482
  msgid "Portuguese"
483
  msgstr "葡萄牙文"
484
 
485
+ #: contact-form-7/includes/functions.php:204
486
  msgid "Russian"
487
  msgstr "俄文"
488
 
489
+ #: contact-form-7/includes/functions.php:205
490
  msgid "Romanian"
491
  msgstr "羅馬尼亞文"
492
 
493
+ #: contact-form-7/includes/functions.php:206
494
  msgid "Serbian"
495
  msgstr "塞爾維亞文"
496
 
497
+ #: contact-form-7/includes/functions.php:207
498
  msgid "Slovak"
499
  msgstr "斯洛伐克文"
500
 
501
+ #: contact-form-7/includes/functions.php:208
502
  msgid "Slovene"
503
  msgstr "斯洛文尼亞文"
504
 
505
+ #: contact-form-7/includes/functions.php:209
506
  msgid "Spanish"
507
  msgstr "西班牙文"
508
 
509
+ #: contact-form-7/includes/functions.php:210
510
  msgid "Swedish"
511
  msgstr "瑞典文"
512
 
513
+ #: contact-form-7/includes/functions.php:211
514
  msgid "Thai"
515
  msgstr "泰文"
516
 
517
+ #: contact-form-7/includes/functions.php:212
518
  msgid "Turkish"
519
  msgstr "土耳其文"
520
 
521
+ #: contact-form-7/includes/functions.php:213
522
  msgid "Ukrainian"
523
  msgstr "烏克蘭文"
524
 
525
+ #: contact-form-7/includes/functions.php:214
526
  msgid "Vietnamese"
527
  msgstr "越南文"
528
 
529
+ #: contact-form-7/modules/acceptance.php:104
530
  msgid "Acceptance"
531
  msgstr "接受使用條款"
532
 
533
+ #: contact-form-7/modules/acceptance.php:113
534
+ #: contact-form-7/modules/captcha.php:214
535
+ #: contact-form-7/modules/checkbox.php:209
536
+ #: contact-form-7/modules/file.php:241
537
  msgid "Name"
538
  msgstr "物件名稱"
539
 
540
+ #: contact-form-7/modules/acceptance.php:118
541
+ #: contact-form-7/modules/acceptance.php:121
 
 
542
  #: contact-form-7/modules/captcha.php:221
543
  #: contact-form-7/modules/captcha.php:224
544
+ #: contact-form-7/modules/captcha.php:229
545
+ #: contact-form-7/modules/captcha.php:232
546
+ #: contact-form-7/modules/captcha.php:236
547
  #: contact-form-7/modules/captcha.php:247
548
  #: contact-form-7/modules/captcha.php:250
549
+ #: contact-form-7/modules/captcha.php:255
550
+ #: contact-form-7/modules/captcha.php:258
551
+ #: contact-form-7/modules/checkbox.php:214
552
+ #: contact-form-7/modules/checkbox.php:217
553
+ #: contact-form-7/modules/file.php:246
554
+ #: contact-form-7/modules/file.php:249
555
+ #: contact-form-7/modules/file.php:254
556
+ #: contact-form-7/modules/file.php:257
557
  msgid "optional"
558
  msgstr "可不填"
559
 
560
+ #: contact-form-7/modules/acceptance.php:127
561
  msgid "Make this checkbox checked by default?"
562
  msgstr "預設核選方塊為核取(已勾選)?"
563
 
564
+ #: contact-form-7/modules/acceptance.php:128
565
  msgid "Make this checkbox work inversely?"
566
  msgstr "設定核取方塊被選取的狀態相反?"
567
 
568
+ #: contact-form-7/modules/acceptance.php:129
569
  msgid "* That means visitor who accepts the term unchecks it."
570
  msgstr "*意思是如果使用者如果接受服務條款,則不需勾選核取方塊。"
571
 
572
+ #: contact-form-7/modules/acceptance.php:134
573
+ #: contact-form-7/modules/captcha.php:263
574
+ #: contact-form-7/modules/checkbox.php:237
575
+ #: contact-form-7/modules/file.php:262
576
  msgid "Copy this code and paste it into the form left."
577
  msgstr "把這段代碼複製後,貼到左方的表格"
578
 
579
+ #: contact-form-7/modules/captcha.php:70
580
  msgid "To use CAPTCHA, you need <a href=\"http://wordpress.org/extend/plugins/really-simple-captcha/\">Really Simple CAPTCHA</a> plugin installed."
581
  msgstr "使用圖片驗證(CAPTCHA)的功能前,您必需先安裝 <a href=\"http://wordpress.org/extend/plugins/really-simple-captcha/\">Really Simple CAPTCHA</a>這個外掛。"
582
 
583
+ #: contact-form-7/modules/captcha.php:189
584
  msgid "The code that sender entered does not match the CAPTCHA"
585
  msgstr "寄信者所輸入的圖片認證碼錯誤"
586
 
587
+ #: contact-form-7/modules/captcha.php:190
588
  msgid "Your entered code is incorrect."
589
  msgstr "您輸入的認證代碼錯誤。 "
590
 
591
+ #: contact-form-7/modules/captcha.php:200
592
  msgid "CAPTCHA"
593
  msgstr "CAPTCHA 驗證"
594
 
595
+ #: contact-form-7/modules/captcha.php:211
596
  msgid "Note: To use CAPTCHA, you need Really Simple CAPTCHA plugin installed."
597
  msgstr "作者註:使用圖片驗證(CAPTCHA)的功能前,您必需先安裝\"Really Simple CAPTCHA\"這個外掛。"
598
 
599
+ #: contact-form-7/modules/captcha.php:218
600
  msgid "Image settings"
601
  msgstr "圖片設定"
602
 
603
+ #: contact-form-7/modules/captcha.php:229
604
  msgid "Foreground color"
605
  msgstr "前景顏色"
606
 
607
+ #: contact-form-7/modules/captcha.php:232
608
  msgid "Background color"
609
  msgstr "背景顏色"
610
 
611
+ #: contact-form-7/modules/captcha.php:236
612
  msgid "Image size"
613
  msgstr "圖片尺寸"
614
 
615
+ #: contact-form-7/modules/captcha.php:237
616
  msgid "Small"
617
  msgstr "小"
618
 
619
+ #: contact-form-7/modules/captcha.php:238
620
  msgid "Medium"
621
  msgstr "中"
622
 
623
+ #: contact-form-7/modules/captcha.php:239
624
  msgid "Large"
625
  msgstr "大"
626
 
627
+ #: contact-form-7/modules/captcha.php:244
628
  msgid "Input field settings"
629
  msgstr "設定輸入欄位"
630
 
631
+ #: contact-form-7/modules/captcha.php:264
632
  msgid "For image"
633
  msgstr "圖片使用"
634
 
635
+ #: contact-form-7/modules/captcha.php:266
636
  msgid "For input field"
637
  msgstr "輸入欄位使用"
638
 
639
+ #: contact-form-7/modules/captcha.php:296
640
  #, php-format
641
  msgid "This contact form contains CAPTCHA fields, but the temporary folder for the files (%s) does not exist or is not writable. You can create the folder or change its permission manually."
642
  msgstr "這個聯絡表單中包含 CAPTCHA 的欄位,但是(%s) 這個檔案的臨時文件夾並 不存在或不可寫。您可以使用手動的方式新建一個檔案夾,或修改檔案夾的權限設定。"
643
 
644
+ #: contact-form-7/modules/captcha.php:302
645
  msgid "This contact form contains CAPTCHA fields, but the necessary libraries (GD and FreeType) are not available on your server."
646
  msgstr "這個聯絡表單中包含 CAPTCHA 的欄位,但您的主機中並沒有可用的 GD 和 FreeType 這兩個必需的函式庫。"
647
 
648
+ #: contact-form-7/modules/checkbox.php:182
649
  msgid "Checkboxes"
650
  msgstr "核選方塊"
651
 
652
+ #: contact-form-7/modules/checkbox.php:185
653
  msgid "Radio buttons"
654
  msgstr "選項按鈕"
655
 
656
+ #: contact-form-7/modules/checkbox.php:206
657
+ #: contact-form-7/modules/file.php:240
658
  msgid "Required field?"
659
  msgstr "設定為必要欄位?"
660
 
661
+ #: contact-form-7/modules/checkbox.php:222
662
  msgid "Choices"
663
  msgstr "選項"
664
 
665
+ #: contact-form-7/modules/checkbox.php:224
666
  msgid "* One choice per line."
667
  msgstr "*每行只能有一個選項。"
668
 
669
+ #: contact-form-7/modules/checkbox.php:228
670
  msgid "Put a label first, a checkbox last?"
671
  msgstr "標籤在前,選項在後?"
672
 
673
+ #: contact-form-7/modules/checkbox.php:229
674
  msgid "Wrap each item with <label> tag?"
675
  msgstr "使用<label> 標籤,建立表單內文字與表單標籤的關聯關係?"
676
 
677
+ #: contact-form-7/modules/checkbox.php:231
678
  msgid "Make checkboxes exclusive?"
679
  msgstr "設定核取方塊,為不允許修改(唯讀)?"
680
 
681
+ #: contact-form-7/modules/checkbox.php:239
682
  msgid "And, put this code into the Mail fields below."
683
  msgstr "並且,把這段代碼複製到信件內文的欄位中。"
684
 
685
+ #: contact-form-7/modules/file.php:204
686
  msgid "Uploading a file fails for any reason"
687
  msgstr "檔案上傳的過程中,因不明原因導致上傳失敗。"
688
 
689
+ #: contact-form-7/modules/file.php:205
690
  msgid "Failed to upload file."
691
  msgstr "上傳檔案失敗。"
692
 
693
+ #: contact-form-7/modules/file.php:209
694
  msgid "Uploaded file is not allowed file type"
695
  msgstr "所上傳的檔案是不被允許的檔案種類"
696
 
697
+ #: contact-form-7/modules/file.php:210
698
  msgid "This file type is not allowed."
699
  msgstr "上傳的檔案不是允許的檔案種類。"
700
 
701
+ #: contact-form-7/modules/file.php:214
702
  msgid "Uploaded file is too large"
703
  msgstr "上傳擋案過大"
704
 
705
+ #: contact-form-7/modules/file.php:215
706
  msgid "This file is too large."
707
  msgstr "這個檔案過大。"
708
 
709
+ #: contact-form-7/modules/file.php:219
710
  msgid "Uploading a file fails for PHP error"
711
  msgstr "檔案上傳的過程中,因PHP錯誤導致上傳失敗。"
712
 
713
+ #: contact-form-7/modules/file.php:220
714
  msgid "Failed to upload file. Error occurred."
715
  msgstr "錯誤發生,檔案上傳失敗。"
716
 
717
+ #: contact-form-7/modules/file.php:231
718
  msgid "File upload"
719
  msgstr "檔案上傳"
720
 
721
+ #: contact-form-7/modules/file.php:254
722
  msgid "File size limit"
723
  msgstr "檔案大小限制"
724
 
725
+ #: contact-form-7/modules/file.php:254
726
  msgid "bytes"
727
  msgstr "位元組"
728
 
729
+ #: contact-form-7/modules/file.php:257
730
  msgid "Acceptable file types"
731
  msgstr "可接受上傳檔案的種類"
732
 
733
+ #: contact-form-7/modules/file.php:264
734
  msgid "And, put this code into the File Attachments field below."
735
  msgstr "並且,把這段代碼複製到附加檔案:的欄位中。"
736
 
737
+ #: contact-form-7/modules/file.php:289
738
  #, php-format
739
  msgid "This contact form contains file uploading fields, but the temporary folder for the files (%s) does not exist or is not writable. You can create the folder or change its permission manually."
740
  msgstr "這個聯絡表單中包含'檔案上傳欄位,但是(%s) 這個上傳檔案的臨時文件夾並 不存在或不可寫。您可以使用手動的方式新建一個檔案夾,或修改檔案夾的權限設定。"
743
  msgid "This contact form contains [icl] tags, but they are obsolete and no longer functioning on this version of Contact Form 7. <a href=\"http://contactform7.com/2009/12/25/contact-form-in-your-language/#Creating_contact_form_in_different_languages\" target=\"_blank\">There is a simpler way for creating contact forms of other languages</a> and you are recommended to use it."
744
  msgstr "這個聯絡表單中包含 [icl] 的標籤,但是他們在此版本的Contact Form & 中,已不再被使用並不會再有任何的功能。 <a href=\"http://contactform7.com/2009/12/25/contact-form-in-your-language/#Creating_contact_form_in_different_languages\" target=\"_blank\">我們推薦您使用,更為簡便的方式來為其他語言建立聯絡表單。</a>"
745
 
746
+ #: contact-form-7/modules/quiz.php:170
747
  msgid "Sender doesn't enter the correct answer to the quiz"
748
  msgstr "寄信者沒有輸入測驗題目的正確答案"
749
 
750
+ #: contact-form-7/modules/quiz.php:171
751
  msgid "Your answer is not correct."
752
  msgstr "您的答案不正確。"
753
 
754
+ #: contact-form-7/modules/quiz.php:181
755
  msgid "Quiz"
756
  msgstr "測驗題目驗證"
757
 
758
+ #: contact-form-7/modules/quiz.php:211
759
  msgid "Quizzes"
760
  msgstr "測驗題庫"
761
 
762
+ #: contact-form-7/modules/quiz.php:213
763
  msgid "* quiz|answer (e.g. 1+1=?|2)"
764
  msgstr "* 測驗題目|答案 (例如 1+1=?|2)"
765
 
766
+ #: contact-form-7/modules/select.php:154
767
  msgid "Drop-down menu"
768
  msgstr "下拉式選單"
769
 
770
+ #: contact-form-7/modules/select.php:183
771
  msgid "Allow multiple selections?"
772
  msgstr "允許在下拉式選單中,可以選擇一個以上的選項?"
773
 
774
+ #: contact-form-7/modules/select.php:184
775
  msgid "Insert a blank item as the first option?"
776
  msgstr "要插入一個空白資料欄位,作為第一個選項?"
777
 
778
+ #: contact-form-7/modules/submit.php:62
779
  msgid "Submit button"
780
  msgstr "提交按鈕"
781
 
782
+ #: contact-form-7/modules/submit.php:80
783
  msgid "Label"
784
  msgstr "標籤"
785
 
786
+ #: contact-form-7/modules/text.php:137
787
  msgid "Text field"
788
  msgstr "文字欄位"
789
 
790
+ #: contact-form-7/modules/text.php:140
791
  msgid "Email field"
792
  msgstr "電子郵件欄位"
793
 
794
+ #: contact-form-7/modules/text.php:182
795
  msgid "Akismet"
796
  msgstr "Akismet(防止垃圾郵件的插件)"
797
 
798
+ #: contact-form-7/modules/text.php:184
799
  msgid "This field requires author's name"
800
  msgstr "這個欄位需要填寫作者的姓名"
801
 
802
+ #: contact-form-7/modules/text.php:185
803
  msgid "This field requires author's URL"
804
  msgstr "這個欄位需要填寫作者的網址"
805
 
806
+ #: contact-form-7/modules/text.php:187
807
  msgid "This field requires author's email address"
808
  msgstr "這個欄位需要填寫作者的電子郵件信箱"
809
 
810
+ #: contact-form-7/modules/text.php:191
811
+ #: contact-form-7/modules/textarea.php:157
812
  msgid "Default value"
813
  msgstr "預設值"
814
 
815
+ #: contact-form-7/modules/textarea.php:126
816
  msgid "Text area"
817
  msgstr "文字區塊"
818
 
819
+ #~ msgid ""
820
+ #~ "Is this plugin useful for you? If you like it, please help the developer."
821
+ #~ msgstr "您覺得本外掛實用嗎? 如果您喜歡這個外掛,請捐款支持本外掛的作者。"
822
+ #~ msgid ""
823
+ #~ "Developing a plugin and providing user support is really hard work. "
824
+ #~ "Please help."
825
+ #~ msgstr ""
826
+ #~ "外掛程式的製作和幫助使用者解決技術上的問題,是很辛苦的工作。請捐款支持。"
827
  #~ msgid "This mail is created by Contact Form 7 plugin for WordPress."
828
  #~ msgstr "這封信是由 WordPress 外掛 Contact Form 7 所產生。"
829
  #~ msgid "(You need WordPress 2.7 or greater to use this feature)"
languages/wpcf7.pot CHANGED
@@ -2,8 +2,8 @@ msgid ""
2
  msgstr ""
3
  "Project-Id-Version: Contact Form 7\n"
4
  "Report-Msgid-Bugs-To: \n"
5
- "POT-Creation-Date: 2010-03-23 06:47+0900\n"
6
- "PO-Revision-Date: 2010-03-23 06:47+0900\n"
7
  "Last-Translator: Takayuki Miyoshi <takayukister@gmail.com>\n"
8
  "Language-Team: \n"
9
  "MIME-Version: 1.0\n"
@@ -105,19 +105,19 @@ msgstr ""
105
  msgid "Failed to create database table."
106
  msgstr ""
107
 
108
- #: contact-form-7/admin/admin.php:357
109
  msgid "Contact Form 7 needs your support. Please donate today."
110
  msgstr ""
111
 
112
- #: contact-form-7/admin/admin.php:358
113
  msgid "Your contribution is needed for making this plugin better."
114
  msgstr ""
115
 
116
- #: contact-form-7/admin/admin.php:364
117
  msgid "http://contactform7.com/donate/"
118
  msgstr ""
119
 
120
- #: contact-form-7/admin/admin.php:364
121
  msgid "Donate"
122
  msgstr ""
123
 
@@ -235,7 +235,7 @@ msgstr ""
235
  msgid "(select language)"
236
  msgstr ""
237
 
238
- #: contact-form-7/includes/classes.php:564
239
  msgid "Untitled"
240
  msgstr ""
241
 
2
  msgstr ""
3
  "Project-Id-Version: Contact Form 7\n"
4
  "Report-Msgid-Bugs-To: \n"
5
+ "POT-Creation-Date: 2010-05-18 23:31+0900\n"
6
+ "PO-Revision-Date: 2010-05-18 23:32+0900\n"
7
  "Last-Translator: Takayuki Miyoshi <takayukister@gmail.com>\n"
8
  "Language-Team: \n"
9
  "MIME-Version: 1.0\n"
105
  msgid "Failed to create database table."
106
  msgstr ""
107
 
108
+ #: contact-form-7/admin/admin.php:358
109
  msgid "Contact Form 7 needs your support. Please donate today."
110
  msgstr ""
111
 
112
+ #: contact-form-7/admin/admin.php:359
113
  msgid "Your contribution is needed for making this plugin better."
114
  msgstr ""
115
 
116
+ #: contact-form-7/admin/admin.php:365
117
  msgid "http://contactform7.com/donate/"
118
  msgstr ""
119
 
120
+ #: contact-form-7/admin/admin.php:365
121
  msgid "Donate"
122
  msgstr ""
123
 
235
  msgid "(select language)"
236
  msgstr ""
237
 
238
+ #: contact-form-7/includes/classes.php:577
239
  msgid "Untitled"
240
  msgstr ""
241
 
license.txt ADDED
@@ -0,0 +1,339 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ GNU GENERAL PUBLIC LICENSE
2
+ Version 2, June 1991
3
+
4
+ Copyright (C) 1989, 1991 Free Software Foundation, Inc.,
5
+ 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
6
+ Everyone is permitted to copy and distribute verbatim copies
7
+ of this license document, but changing it is not allowed.
8
+
9
+ Preamble
10
+
11
+ The licenses for most software are designed to take away your
12
+ freedom to share and change it. By contrast, the GNU General Public
13
+ License is intended to guarantee your freedom to share and change free
14
+ software--to make sure the software is free for all its users. This
15
+ General Public License applies to most of the Free Software
16
+ Foundation's software and to any other program whose authors commit to
17
+ using it. (Some other Free Software Foundation software is covered by
18
+ the GNU Lesser General Public License instead.) You can apply it to
19
+ your programs, too.
20
+
21
+ When we speak of free software, we are referring to freedom, not
22
+ price. Our General Public Licenses are designed to make sure that you
23
+ have the freedom to distribute copies of free software (and charge for
24
+ this service if you wish), that you receive source code or can get it
25
+ if you want it, that you can change the software or use pieces of it
26
+ in new free programs; and that you know you can do these things.
27
+
28
+ To protect your rights, we need to make restrictions that forbid
29
+ anyone to deny you these rights or to ask you to surrender the rights.
30
+ These restrictions translate to certain responsibilities for you if you
31
+ distribute copies of the software, or if you modify it.
32
+
33
+ For example, if you distribute copies of such a program, whether
34
+ gratis or for a fee, you must give the recipients all the rights that
35
+ you have. You must make sure that they, too, receive or can get the
36
+ source code. And you must show them these terms so they know their
37
+ rights.
38
+
39
+ We protect your rights with two steps: (1) copyright the software, and
40
+ (2) offer you this license which gives you legal permission to copy,
41
+ distribute and/or modify the software.
42
+
43
+ Also, for each author's protection and ours, we want to make certain
44
+ that everyone understands that there is no warranty for this free
45
+ software. If the software is modified by someone else and passed on, we
46
+ want its recipients to know that what they have is not the original, so
47
+ that any problems introduced by others will not reflect on the original
48
+ authors' reputations.
49
+
50
+ Finally, any free program is threatened constantly by software
51
+ patents. We wish to avoid the danger that redistributors of a free
52
+ program will individually obtain patent licenses, in effect making the
53
+ program proprietary. To prevent this, we have made it clear that any
54
+ patent must be licensed for everyone's free use or not licensed at all.
55
+
56
+ The precise terms and conditions for copying, distribution and
57
+ modification follow.
58
+
59
+ GNU GENERAL PUBLIC LICENSE
60
+ TERMS AND CONDITIONS FOR COPYING, DISTRIBUTION AND MODIFICATION
61
+
62
+ 0. This License applies to any program or other work which contains
63
+ a notice placed by the copyright holder saying it may be distributed
64
+ under the terms of this General Public License. The "Program", below,
65
+ refers to any such program or work, and a "work based on the Program"
66
+ means either the Program or any derivative work under copyright law:
67
+ that is to say, a work containing the Program or a portion of it,
68
+ either verbatim or with modifications and/or translated into another
69
+ language. (Hereinafter, translation is included without limitation in
70
+ the term "modification".) Each licensee is addressed as "you".
71
+
72
+ Activities other than copying, distribution and modification are not
73
+ covered by this License; they are outside its scope. The act of
74
+ running the Program is not restricted, and the output from the Program
75
+ is covered only if its contents constitute a work based on the
76
+ Program (independent of having been made by running the Program).
77
+ Whether that is true depends on what the Program does.
78
+
79
+ 1. You may copy and distribute verbatim copies of the Program's
80
+ source code as you receive it, in any medium, provided that you
81
+ conspicuously and appropriately publish on each copy an appropriate
82
+ copyright notice and disclaimer of warranty; keep intact all the
83
+ notices that refer to this License and to the absence of any warranty;
84
+ and give any other recipients of the Program a copy of this License
85
+ along with the Program.
86
+
87
+ You may charge a fee for the physical act of transferring a copy, and
88
+ you may at your option offer warranty protection in exchange for a fee.
89
+
90
+ 2. You may modify your copy or copies of the Program or any portion
91
+ of it, thus forming a work based on the Program, and copy and
92
+ distribute such modifications or work under the terms of Section 1
93
+ above, provided that you also meet all of these conditions:
94
+
95
+ a) You must cause the modified files to carry prominent notices
96
+ stating that you changed the files and the date of any change.
97
+
98
+ b) You must cause any work that you distribute or publish, that in
99
+ whole or in part contains or is derived from the Program or any
100
+ part thereof, to be licensed as a whole at no charge to all third
101
+ parties under the terms of this License.
102
+
103
+ c) If the modified program normally reads commands interactively
104
+ when run, you must cause it, when started running for such
105
+ interactive use in the most ordinary way, to print or display an
106
+ announcement including an appropriate copyright notice and a
107
+ notice that there is no warranty (or else, saying that you provide
108
+ a warranty) and that users may redistribute the program under
109
+ these conditions, and telling the user how to view a copy of this
110
+ License. (Exception: if the Program itself is interactive but
111
+ does not normally print such an announcement, your work based on
112
+ the Program is not required to print an announcement.)
113
+
114
+ These requirements apply to the modified work as a whole. If
115
+ identifiable sections of that work are not derived from the Program,
116
+ and can be reasonably considered independent and separate works in
117
+ themselves, then this License, and its terms, do not apply to those
118
+ sections when you distribute them as separate works. But when you
119
+ distribute the same sections as part of a whole which is a work based
120
+ on the Program, the distribution of the whole must be on the terms of
121
+ this License, whose permissions for other licensees extend to the
122
+ entire whole, and thus to each and every part regardless of who wrote it.
123
+
124
+ Thus, it is not the intent of this section to claim rights or contest
125
+ your rights to work written entirely by you; rather, the intent is to
126
+ exercise the right to control the distribution of derivative or
127
+ collective works based on the Program.
128
+
129
+ In addition, mere aggregation of another work not based on the Program
130
+ with the Program (or with a work based on the Program) on a volume of
131
+ a storage or distribution medium does not bring the other work under
132
+ the scope of this License.
133
+
134
+ 3. You may copy and distribute the Program (or a work based on it,
135
+ under Section 2) in object code or executable form under the terms of
136
+ Sections 1 and 2 above provided that you also do one of the following:
137
+
138
+ a) Accompany it with the complete corresponding machine-readable
139
+ source code, which must be distributed under the terms of Sections
140
+ 1 and 2 above on a medium customarily used for software interchange; or,
141
+
142
+ b) Accompany it with a written offer, valid for at least three
143
+ years, to give any third party, for a charge no more than your
144
+ cost of physically performing source distribution, a complete
145
+ machine-readable copy of the corresponding source code, to be
146
+ distributed under the terms of Sections 1 and 2 above on a medium
147
+ customarily used for software interchange; or,
148
+
149
+ c) Accompany it with the information you received as to the offer
150
+ to distribute corresponding source code. (This alternative is
151
+ allowed only for noncommercial distribution and only if you
152
+ received the program in object code or executable form with such
153
+ an offer, in accord with Subsection b above.)
154
+
155
+ The source code for a work means the preferred form of the work for
156
+ making modifications to it. For an executable work, complete source
157
+ code means all the source code for all modules it contains, plus any
158
+ associated interface definition files, plus the scripts used to
159
+ control compilation and installation of the executable. However, as a
160
+ special exception, the source code distributed need not include
161
+ anything that is normally distributed (in either source or binary
162
+ form) with the major components (compiler, kernel, and so on) of the
163
+ operating system on which the executable runs, unless that component
164
+ itself accompanies the executable.
165
+
166
+ If distribution of executable or object code is made by offering
167
+ access to copy from a designated place, then offering equivalent
168
+ access to copy the source code from the same place counts as
169
+ distribution of the source code, even though third parties are not
170
+ compelled to copy the source along with the object code.
171
+
172
+ 4. You may not copy, modify, sublicense, or distribute the Program
173
+ except as expressly provided under this License. Any attempt
174
+ otherwise to copy, modify, sublicense or distribute the Program is
175
+ void, and will automatically terminate your rights under this License.
176
+ However, parties who have received copies, or rights, from you under
177
+ this License will not have their licenses terminated so long as such
178
+ parties remain in full compliance.
179
+
180
+ 5. You are not required to accept this License, since you have not
181
+ signed it. However, nothing else grants you permission to modify or
182
+ distribute the Program or its derivative works. These actions are
183
+ prohibited by law if you do not accept this License. Therefore, by
184
+ modifying or distributing the Program (or any work based on the
185
+ Program), you indicate your acceptance of this License to do so, and
186
+ all its terms and conditions for copying, distributing or modifying
187
+ the Program or works based on it.
188
+
189
+ 6. Each time you redistribute the Program (or any work based on the
190
+ Program), the recipient automatically receives a license from the
191
+ original licensor to copy, distribute or modify the Program subject to
192
+ these terms and conditions. You may not impose any further
193
+ restrictions on the recipients' exercise of the rights granted herein.
194
+ You are not responsible for enforcing compliance by third parties to
195
+ this License.
196
+
197
+ 7. If, as a consequence of a court judgment or allegation of patent
198
+ infringement or for any other reason (not limited to patent issues),
199
+ conditions are imposed on you (whether by court order, agreement or
200
+ otherwise) that contradict the conditions of this License, they do not
201
+ excuse you from the conditions of this License. If you cannot
202
+ distribute so as to satisfy simultaneously your obligations under this
203
+ License and any other pertinent obligations, then as a consequence you
204
+ may not distribute the Program at all. For example, if a patent
205
+ license would not permit royalty-free redistribution of the Program by
206
+ all those who receive copies directly or indirectly through you, then
207
+ the only way you could satisfy both it and this License would be to
208
+ refrain entirely from distribution of the Program.
209
+
210
+ If any portion of this section is held invalid or unenforceable under
211
+ any particular circumstance, the balance of the section is intended to
212
+ apply and the section as a whole is intended to apply in other
213
+ circumstances.
214
+
215
+ It is not the purpose of this section to induce you to infringe any
216
+ patents or other property right claims or to contest validity of any
217
+ such claims; this section has the sole purpose of protecting the
218
+ integrity of the free software distribution system, which is
219
+ implemented by public license practices. Many people have made
220
+ generous contributions to the wide range of software distributed
221
+ through that system in reliance on consistent application of that
222
+ system; it is up to the author/donor to decide if he or she is willing
223
+ to distribute software through any other system and a licensee cannot
224
+ impose that choice.
225
+
226
+ This section is intended to make thoroughly clear what is believed to
227
+ be a consequence of the rest of this License.
228
+
229
+ 8. If the distribution and/or use of the Program is restricted in
230
+ certain countries either by patents or by copyrighted interfaces, the
231
+ original copyright holder who places the Program under this License
232
+ may add an explicit geographical distribution limitation excluding
233
+ those countries, so that distribution is permitted only in or among
234
+ countries not thus excluded. In such case, this License incorporates
235
+ the limitation as if written in the body of this License.
236
+
237
+ 9. The Free Software Foundation may publish revised and/or new versions
238
+ of the General Public License from time to time. Such new versions will
239
+ be similar in spirit to the present version, but may differ in detail to
240
+ address new problems or concerns.
241
+
242
+ Each version is given a distinguishing version number. If the Program
243
+ specifies a version number of this License which applies to it and "any
244
+ later version", you have the option of following the terms and conditions
245
+ either of that version or of any later version published by the Free
246
+ Software Foundation. If the Program does not specify a version number of
247
+ this License, you may choose any version ever published by the Free Software
248
+ Foundation.
249
+
250
+ 10. If you wish to incorporate parts of the Program into other free
251
+ programs whose distribution conditions are different, write to the author
252
+ to ask for permission. For software which is copyrighted by the Free
253
+ Software Foundation, write to the Free Software Foundation; we sometimes
254
+ make exceptions for this. Our decision will be guided by the two goals
255
+ of preserving the free status of all derivatives of our free software and
256
+ of promoting the sharing and reuse of software generally.
257
+
258
+ NO WARRANTY
259
+
260
+ 11. BECAUSE THE PROGRAM IS LICENSED FREE OF CHARGE, THERE IS NO WARRANTY
261
+ FOR THE PROGRAM, TO THE EXTENT PERMITTED BY APPLICABLE LAW. EXCEPT WHEN
262
+ OTHERWISE STATED IN WRITING THE COPYRIGHT HOLDERS AND/OR OTHER PARTIES
263
+ PROVIDE THE PROGRAM "AS IS" WITHOUT WARRANTY OF ANY KIND, EITHER EXPRESSED
264
+ OR IMPLIED, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF
265
+ MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE. THE ENTIRE RISK AS
266
+ TO THE QUALITY AND PERFORMANCE OF THE PROGRAM IS WITH YOU. SHOULD THE
267
+ PROGRAM PROVE DEFECTIVE, YOU ASSUME THE COST OF ALL NECESSARY SERVICING,
268
+ REPAIR OR CORRECTION.
269
+
270
+ 12. IN NO EVENT UNLESS REQUIRED BY APPLICABLE LAW OR AGREED TO IN WRITING
271
+ WILL ANY COPYRIGHT HOLDER, OR ANY OTHER PARTY WHO MAY MODIFY AND/OR
272
+ REDISTRIBUTE THE PROGRAM AS PERMITTED ABOVE, BE LIABLE TO YOU FOR DAMAGES,
273
+ INCLUDING ANY GENERAL, SPECIAL, INCIDENTAL OR CONSEQUENTIAL DAMAGES ARISING
274
+ OUT OF THE USE OR INABILITY TO USE THE PROGRAM (INCLUDING BUT NOT LIMITED
275
+ TO LOSS OF DATA OR DATA BEING RENDERED INACCURATE OR LOSSES SUSTAINED BY
276
+ YOU OR THIRD PARTIES OR A FAILURE OF THE PROGRAM TO OPERATE WITH ANY OTHER
277
+ PROGRAMS), EVEN IF SUCH HOLDER OR OTHER PARTY HAS BEEN ADVISED OF THE
278
+ POSSIBILITY OF SUCH DAMAGES.
279
+
280
+ END OF TERMS AND CONDITIONS
281
+
282
+ How to Apply These Terms to Your New Programs
283
+
284
+ If you develop a new program, and you want it to be of the greatest
285
+ possible use to the public, the best way to achieve this is to make it
286
+ free software which everyone can redistribute and change under these terms.
287
+
288
+ To do so, attach the following notices to the program. It is safest
289
+ to attach them to the start of each source file to most effectively
290
+ convey the exclusion of warranty; and each file should have at least
291
+ the "copyright" line and a pointer to where the full notice is found.
292
+
293
+ <one line to give the program's name and a brief idea of what it does.>
294
+ Copyright (C) <year> <name of author>
295
+
296
+ This program is free software; you can redistribute it and/or modify
297
+ it under the terms of the GNU General Public License as published by
298
+ the Free Software Foundation; either version 2 of the License, or
299
+ (at your option) any later version.
300
+
301
+ This program is distributed in the hope that it will be useful,
302
+ but WITHOUT ANY WARRANTY; without even the implied warranty of
303
+ MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
304
+ GNU General Public License for more details.
305
+
306
+ You should have received a copy of the GNU General Public License along
307
+ with this program; if not, write to the Free Software Foundation, Inc.,
308
+ 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
309
+
310
+ Also add information on how to contact you by electronic and paper mail.
311
+
312
+ If the program is interactive, make it output a short notice like this
313
+ when it starts in an interactive mode:
314
+
315
+ Gnomovision version 69, Copyright (C) year name of author
316
+ Gnomovision comes with ABSOLUTELY NO WARRANTY; for details type `show w'.
317
+ This is free software, and you are welcome to redistribute it
318
+ under certain conditions; type `show c' for details.
319
+
320
+ The hypothetical commands `show w' and `show c' should show the appropriate
321
+ parts of the General Public License. Of course, the commands you use may
322
+ be called something other than `show w' and `show c'; they could even be
323
+ mouse-clicks or menu items--whatever suits your program.
324
+
325
+ You should also get your employer (if you work as a programmer) or your
326
+ school, if any, to sign a "copyright disclaimer" for the program, if
327
+ necessary. Here is a sample; alter the names:
328
+
329
+ Yoyodyne, Inc., hereby disclaims all copyright interest in the program
330
+ `Gnomovision' (which makes passes at compilers) written by James Hacker.
331
+
332
+ <signature of Ty Coon>, 1 April 1989
333
+ Ty Coon, President of Vice
334
+
335
+ This General Public License does not permit incorporating your program into
336
+ proprietary programs. If your program is a subroutine library, you may
337
+ consider it more useful to permit linking proprietary applications with the
338
+ library. If this is what you want to do, use the GNU Lesser General
339
+ Public License instead of this License.
modules/special-mail-tags.php ADDED
@@ -0,0 +1,69 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <?php
2
+ /**
3
+ ** Filters for Special Mail Tags
4
+ **/
5
+
6
+ add_filter( 'wpcf7_special_mail_tags', 'wpcf7_special_mail_tag', 10, 2 );
7
+
8
+ function wpcf7_special_mail_tag( $output, $name ) {
9
+
10
+ // For backwards compat.
11
+ $name = preg_replace( '/^wpcf7\./', '_', $name );
12
+
13
+ if ( '_remote_ip' == $name )
14
+ $output = preg_replace( '/[^0-9a-f.:, ]/', '', $_SERVER['REMOTE_ADDR'] );
15
+
16
+ elseif ( '_url' == $name )
17
+ $output = get_option( 'home' ) . wpcf7_get_request_uri();
18
+
19
+ elseif ( '_date' == $name )
20
+ $output = date_i18n( get_option( 'date_format' ) );
21
+
22
+ elseif ( '_time' == $name )
23
+ $output = date_i18n( get_option( 'time_format' ) );
24
+
25
+ return $output;
26
+ }
27
+
28
+ add_filter( 'wpcf7_special_mail_tags', 'wpcf7_special_mail_tag_for_post_data', 10, 2 );
29
+
30
+ function wpcf7_special_mail_tag_for_post_data( $output, $name ) {
31
+
32
+ if ( ! isset( $_POST['_wpcf7_unit_tag'] ) || empty( $_POST['_wpcf7_unit_tag'] ) )
33
+ return $output;
34
+
35
+ if ( ! preg_match( '/^wpcf7-f(\d+)-p(\d+)-o(\d+)$/', $_POST['_wpcf7_unit_tag'], $matches ) )
36
+ return $output;
37
+
38
+ $post_id = (int) $matches[2];
39
+
40
+ if ( ! $post = get_post( $post_id ) )
41
+ return $output;
42
+
43
+ $user = new WP_User( $post->post_author );
44
+
45
+ // For backwards compat.
46
+ $name = preg_replace( '/^wpcf7\./', '_', $name );
47
+
48
+ if ( '_post_id' == $name )
49
+ $output = (string) $post->ID;
50
+
51
+ elseif ( '_post_name' == $name )
52
+ $output = $post->post_name;
53
+
54
+ elseif ( '_post_title' == $name )
55
+ $output = $post->post_title;
56
+
57
+ elseif ( '_post_url' == $name )
58
+ $output = get_permalink( $post->ID );
59
+
60
+ elseif ( '_post_author' == $name )
61
+ $output = $user->display_name;
62
+
63
+ elseif ( '_post_author_email' == $name )
64
+ $output = $user->user_email;
65
+
66
+ return $output;
67
+ }
68
+
69
+ ?>
README.txt → readme.txt RENAMED
@@ -4,7 +4,7 @@ Donate link: http://contactform7.com/donate/
4
  Tags: contact, form, contact form, feedback, email, ajax, captcha, akismet, multilingual
5
  Requires at least: 2.8
6
  Tested up to: 2.9.2
7
- Stable tag: 2.2
8
 
9
  Just another contact form plugin. Simple but flexible.
10
 
@@ -14,7 +14,13 @@ Just another contact form plugin. Simple but flexible.
14
 
15
  Contact Form 7 can manage multiple contact forms, plus you can customize the form and the mail contents flexibly with simple markup. The form supports Ajax-powered submitting, CAPTCHA, Akismet spam filtering and so on.
16
 
17
- [__Contactform7.com__](http://contactform7.com/)
 
 
 
 
 
 
18
 
19
  = Translators =
20
 
@@ -34,7 +40,7 @@ Contact Form 7 can manage multiple contact forms, plus you can customize the for
34
  * Dutch (nl_NL) - [Chris Devriese](http://www.100it.be/), [Martin Hein](http://www.split-a-pixel.nl/)
35
  * Estonian (et) - [Peeter Rahuvarm](http://www.kraabus.ee), Egon Elbre
36
  * Finnish (fi) - [Miika Turunen](http://www.webwork.fi/)
37
- * French (fr_FR) - [Jillij](http://www.jillij.com/), [Maître Mô](http://maitremo.fr/)
38
  * Galician (gl_ES) - [Arume Desenvolvementos Informáticos](http://www.arumeinformatica.es/)
39
  * Georgian (ka_GE) - [Nodar Davituri](http://omedia.ge/)
40
  * German (de_DE) - [Marcel Spitau](http://blog.spitau.de), [Ivan Graf](http://blog.bildergallery.com/)
@@ -93,6 +99,15 @@ Do you have questions or issues with Contact Form 7? Use these support channels
93
 
94
  == Changelog ==
95
 
 
 
 
 
 
 
 
 
 
96
  = 2.2 =
97
 
98
  * Now you can embed contact forms into template files.
4
  Tags: contact, form, contact form, feedback, email, ajax, captcha, akismet, multilingual
5
  Requires at least: 2.8
6
  Tested up to: 2.9.2
7
+ Stable tag: 2.2.1
8
 
9
  Just another contact form plugin. Simple but flexible.
10
 
14
 
15
  Contact Form 7 can manage multiple contact forms, plus you can customize the form and the mail contents flexibly with simple markup. The form supports Ajax-powered submitting, CAPTCHA, Akismet spam filtering and so on.
16
 
17
+ * [Docs](http://contactform7.com/docs/)
18
+ * [FAQ](http://contactform7.com/faq/)
19
+ * [Support](http://contactform7.com/support/)
20
+
21
+ = Contact Form 7 Needs Your Support =
22
+
23
+ It is hard to continue development and support for this plugin without contributions from users like you. If you enjoy using Contact Form 7 and find it useful, please consider [__making a donation__](http://contactform7.com/donate/). Your donation will help encourage and support the plugin's continued development and better user support.
24
 
25
  = Translators =
26
 
40
  * Dutch (nl_NL) - [Chris Devriese](http://www.100it.be/), [Martin Hein](http://www.split-a-pixel.nl/)
41
  * Estonian (et) - [Peeter Rahuvarm](http://www.kraabus.ee), Egon Elbre
42
  * Finnish (fi) - [Miika Turunen](http://www.webwork.fi/)
43
+ * French (fr_FR) - [Jillij](http://www.jillij.com/), [Maître Mô](http://maitremo.fr/), [Oncle Tom](http://case.oncle-tom.net/)
44
  * Galician (gl_ES) - [Arume Desenvolvementos Informáticos](http://www.arumeinformatica.es/)
45
  * Georgian (ka_GE) - [Nodar Davituri](http://omedia.ge/)
46
  * German (de_DE) - [Marcel Spitau](http://blog.spitau.de), [Ivan Graf](http://blog.bildergallery.com/)
99
 
100
  == Changelog ==
101
 
102
+ = 2.2.1 =
103
+
104
+ * Filters for special mail tags have been moved to modules/special-mail-tags.php.
105
+ * A bug that caused erroneous formatting around `<fieldset>` tags has been fixed.
106
+ * A bug of pipes, which happened when you used a label with apostrophe and the pipe wouldn't work, has been fixed.
107
+ * `esc_html()` is applied to posted texts when the texts are inserted into the message body of HTML-formatted mail.
108
+ * Action hooks, `wpcf7_enqueue_scripts` and `wpcf7_enqueue_styles`, have been added.
109
+ * Translations for Italian (Gianni Diurno), German (Ivan Graf), French (Oncle Tom), Traditional Chinese (James Wu) and Hungarian (Farkas Győző) have been updated.
110
+
111
  = 2.2 =
112
 
113
  * Now you can embed contact forms into template files.
wp-contact-form-7.php CHANGED
@@ -5,7 +5,7 @@ Plugin URI: http://contactform7.com/
5
  Description: Just another contact form plugin. Simple but flexible.
6
  Author: Takayuki Miyoshi
7
  Author URI: http://ideasilo.wordpress.com/
8
- Version: 2.2
9
  */
10
 
11
  /* Copyright 2007-2010 Takayuki Miyoshi (email: takayukister at gmail.com)
@@ -25,7 +25,7 @@ Version: 2.2
25
  Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
26
  */
27
 
28
- define( 'WPCF7_VERSION', '2.2' );
29
 
30
  if ( ! defined( 'WPCF7_PLUGIN_BASENAME' ) )
31
  define( 'WPCF7_PLUGIN_BASENAME', plugin_basename( __FILE__ ) );
5
  Description: Just another contact form plugin. Simple but flexible.
6
  Author: Takayuki Miyoshi
7
  Author URI: http://ideasilo.wordpress.com/
8
+ Version: 2.2.1
9
  */
10
 
11
  /* Copyright 2007-2010 Takayuki Miyoshi (email: takayukister at gmail.com)
25
  Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
26
  */
27
 
28
+ define( 'WPCF7_VERSION', '2.2.1' );
29
 
30
  if ( ! defined( 'WPCF7_PLUGIN_BASENAME' ) )
31
  define( 'WPCF7_PLUGIN_BASENAME', plugin_basename( __FILE__ ) );