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
andwpcf7_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 | ![]() |
Version | 2.2.1 |
Comparing to | |
See all releases |
Code changes from version 2.2 to 2.2.1
- admin/admin.php +2 -1
- includes/classes.php +17 -69
- includes/controller.php +4 -0
- includes/formatting.php +143 -143
- languages/wpcf7-de_DE.mo +0 -0
- languages/wpcf7-de_DE.po +139 -135
- languages/wpcf7-fr_FR.mo +0 -0
- languages/wpcf7-fr_FR.po +830 -438
- languages/wpcf7-hu_HU.mo +0 -0
- languages/wpcf7-hu_HU.po +197 -193
- languages/wpcf7-it_IT.mo +0 -0
- languages/wpcf7-it_IT.po +138 -134
- languages/wpcf7-ja.mo +0 -0
- languages/wpcf7-ja.po +7 -7
- languages/wpcf7-zh_TW.mo +0 -0
- languages/wpcf7-zh_TW.po +306 -286
- languages/wpcf7.pot +7 -7
- license.txt +339 -0
- modules/special-mail-tags.php +69 -0
- README.txt → readme.txt +18 -3
- wp-contact-form-7.php +2 -2
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 |
-
|
|
|
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
|
|
|
|
|
|
|
|
|
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+)#x2F;', $_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( '/^"(.*)"#x2F;', $text, $matches ) )
|
51 |
-
$text = $matches[1];
|
52 |
-
elseif ( preg_match( "/^'(.*)'#x2F;", $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?#x2F;', $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_:.]*#x2F;', $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( '/^"(.*)"#x2F;', $text, $matches ) )
|
51 |
+
$text = $matches[1];
|
52 |
+
elseif ( preg_match( "/^'(.*)'#x2F;", $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?#x2F;', $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_:.]*#x2F;', $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.
|
4 |
"Report-Msgid-Bugs-To: \n"
|
5 |
-
"POT-Creation-Date: 2010-
|
6 |
-
"PO-Revision-Date: 2010-
|
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:
|
51 |
msgid "Contact form"
|
52 |
msgstr "Kontaktformular"
|
53 |
|
54 |
-
#: contact-form-7/admin/admin.php:
|
55 |
msgid "Settings"
|
56 |
msgstr "Einstellungen"
|
57 |
|
58 |
-
#: contact-form-7/admin/admin.php:
|
59 |
msgid "http://contactform7.com/"
|
60 |
msgstr "http://contactform7.com/"
|
61 |
|
62 |
-
#: contact-form-7/admin/admin.php:
|
63 |
msgid "Contactform7.com"
|
64 |
msgstr "Contactform7.com"
|
65 |
|
66 |
-
#: contact-form-7/admin/admin.php:
|
67 |
msgid "http://contactform7.com/docs/"
|
68 |
msgstr "http://contactform7.com/docs/"
|
69 |
|
70 |
-
#: contact-form-7/admin/admin.php:
|
71 |
msgid "Docs"
|
72 |
msgstr "Dokumente"
|
73 |
|
74 |
-
#: contact-form-7/admin/admin.php:
|
75 |
msgid "http://contactform7.com/faq/"
|
76 |
msgstr "http://contactform7.com/faq/"
|
77 |
|
78 |
-
#: contact-form-7/admin/admin.php:
|
79 |
msgid "FAQ"
|
80 |
msgstr "Faq"
|
81 |
|
82 |
-
#: contact-form-7/admin/admin.php:
|
83 |
msgid "http://contactform7.com/support/"
|
84 |
msgstr "http://contactform7.com/support/"
|
85 |
|
86 |
-
#: contact-form-7/admin/admin.php:
|
87 |
msgid "Support"
|
88 |
msgstr "Support"
|
89 |
|
90 |
-
#: contact-form-7/admin/admin.php:
|
91 |
msgid "Contact form created."
|
92 |
msgstr "Kontaktformular erstellt."
|
93 |
|
94 |
-
#: contact-form-7/admin/admin.php:
|
95 |
msgid "Contact form saved."
|
96 |
msgstr "Kontaktformular gespeichert."
|
97 |
|
98 |
-
#: contact-form-7/admin/admin.php:
|
99 |
msgid "Contact form deleted."
|
100 |
msgstr "Kontaktformular gelöscht."
|
101 |
|
102 |
-
#: contact-form-7/admin/admin.php:
|
103 |
msgid "Database table created."
|
104 |
msgstr "Datenbanktabelle erstellt."
|
105 |
|
106 |
-
#: contact-form-7/admin/admin.php:
|
107 |
msgid "Failed to create database table."
|
108 |
msgstr "Fehler beim Erstellen einer Datenbanktabelle."
|
109 |
|
110 |
-
#: contact-form-7/admin/admin.php:
|
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:
|
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:
|
119 |
msgid "http://contactform7.com/donate/"
|
120 |
msgstr "http://contactform7.com/donate/"
|
121 |
|
122 |
-
#: contact-form-7/admin/admin.php:
|
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:
|
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:
|
421 |
msgid "German"
|
422 |
msgstr "Deutsch"
|
423 |
|
424 |
-
#: contact-form-7/includes/functions.php:
|
425 |
msgid "Greek"
|
426 |
msgstr "Griechisch"
|
427 |
|
428 |
-
#: contact-form-7/includes/functions.php:
|
429 |
msgid "Hebrew"
|
430 |
msgstr "Hebräisch"
|
431 |
|
432 |
-
#: contact-form-7/includes/functions.php:
|
433 |
msgid "Hindi"
|
434 |
msgstr "Hindisch"
|
435 |
|
436 |
-
#: contact-form-7/includes/functions.php:
|
437 |
msgid "Hungarian"
|
438 |
msgstr "Ungarisch"
|
439 |
|
440 |
-
#: contact-form-7/includes/functions.php:
|
441 |
msgid "Indonesian"
|
442 |
msgstr "Indonesisch"
|
443 |
|
444 |
-
#: contact-form-7/includes/functions.php:
|
445 |
msgid "Italian"
|
446 |
msgstr "Italienisch"
|
447 |
|
448 |
-
#: contact-form-7/includes/functions.php:
|
449 |
msgid "Japanese"
|
450 |
msgstr "Japanisch"
|
451 |
|
452 |
-
#: contact-form-7/includes/functions.php:
|
453 |
msgid "Korean"
|
454 |
msgstr "Koreanisch"
|
455 |
|
456 |
-
#: contact-form-7/includes/functions.php:
|
457 |
msgid "Latvian"
|
458 |
msgstr "Lettisch"
|
459 |
|
460 |
-
#: contact-form-7/includes/functions.php:
|
461 |
msgid "Lithuanian"
|
462 |
msgstr "Litauisch"
|
463 |
|
464 |
-
#: contact-form-7/includes/functions.php:
|
465 |
msgid "Malayalam"
|
466 |
msgstr "Malayalam"
|
467 |
|
468 |
-
#: contact-form-7/includes/functions.php:
|
469 |
msgid "Norwegian"
|
470 |
msgstr "Norwegisch"
|
471 |
|
472 |
-
#: contact-form-7/includes/functions.php:
|
473 |
msgid "Persian"
|
474 |
msgstr "Persisch"
|
475 |
|
476 |
-
#: contact-form-7/includes/functions.php:
|
477 |
msgid "Polish"
|
478 |
msgstr "Polnisch"
|
479 |
|
480 |
-
#: contact-form-7/includes/functions.php:
|
481 |
msgid "Portuguese"
|
482 |
msgstr "Portugiesisch"
|
483 |
|
484 |
-
#: contact-form-7/includes/functions.php:
|
485 |
msgid "Russian"
|
486 |
msgstr "Russisch"
|
487 |
|
488 |
-
#: contact-form-7/includes/functions.php:
|
489 |
msgid "Romanian"
|
490 |
msgstr "Rumänisch"
|
491 |
|
492 |
-
#: contact-form-7/includes/functions.php:
|
493 |
msgid "Serbian"
|
494 |
msgstr "Serbisch"
|
495 |
|
496 |
-
#: contact-form-7/includes/functions.php:
|
497 |
msgid "Slovak"
|
498 |
msgstr "Slowakisch"
|
499 |
|
500 |
-
#: contact-form-7/includes/functions.php:
|
501 |
msgid "Slovene"
|
502 |
msgstr "Slovenisch"
|
503 |
|
504 |
-
#: contact-form-7/includes/functions.php:
|
505 |
msgid "Spanish"
|
506 |
msgstr "Spanisch"
|
507 |
|
508 |
-
#: contact-form-7/includes/functions.php:
|
509 |
msgid "Swedish"
|
510 |
msgstr "Schwedisch"
|
511 |
|
512 |
-
#: contact-form-7/includes/functions.php:
|
513 |
msgid "Thai"
|
514 |
msgstr "Thailändisch"
|
515 |
|
516 |
-
#: contact-form-7/includes/functions.php:
|
517 |
msgid "Turkish"
|
518 |
msgstr "Türkisch"
|
519 |
|
520 |
-
#: contact-form-7/includes/functions.php:
|
521 |
msgid "Ukrainian"
|
522 |
msgstr "Ukrainisch"
|
523 |
|
524 |
-
#: contact-form-7/includes/functions.php:
|
525 |
msgid "Vietnamese"
|
526 |
msgstr "Vietnamesisch"
|
527 |
|
528 |
-
#: contact-form-7/modules/acceptance.php:
|
529 |
msgid "Acceptance"
|
530 |
msgstr "Zustimmung"
|
531 |
|
532 |
-
#: contact-form-7/modules/acceptance.php:
|
533 |
-
#: contact-form-7/modules/captcha.php:
|
534 |
-
#: contact-form-7/modules/checkbox.php:
|
535 |
-
#: contact-form-7/modules/file.php:
|
536 |
msgid "Name"
|
537 |
msgstr "Name"
|
538 |
|
539 |
-
#: contact-form-7/modules/acceptance.php:
|
540 |
-
#: contact-form-7/modules/acceptance.php:
|
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:
|
546 |
-
#: contact-form-7/modules/captcha.php:
|
547 |
-
#: contact-form-7/modules/captcha.php:
|
548 |
#: contact-form-7/modules/captcha.php:247
|
549 |
#: contact-form-7/modules/captcha.php:250
|
550 |
-
#: contact-form-7/modules/
|
551 |
-
#: contact-form-7/modules/
|
552 |
-
#: contact-form-7/modules/
|
553 |
-
#: contact-form-7/modules/
|
554 |
-
#: contact-form-7/modules/file.php:
|
555 |
-
#: contact-form-7/modules/file.php:
|
|
|
|
|
556 |
msgid "optional"
|
557 |
msgstr "optional"
|
558 |
|
559 |
-
#: contact-form-7/modules/acceptance.php:
|
560 |
msgid "Make this checkbox checked by default?"
|
561 |
msgstr "Auswahlbox standardmässig aktivieren?"
|
562 |
|
563 |
-
#: contact-form-7/modules/acceptance.php:
|
564 |
msgid "Make this checkbox work inversely?"
|
565 |
msgstr "Auswahlbox umkehren (Invert)?"
|
566 |
|
567 |
-
#: contact-form-7/modules/acceptance.php:
|
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:
|
572 |
-
#: contact-form-7/modules/captcha.php:
|
573 |
-
#: contact-form-7/modules/checkbox.php:
|
574 |
-
#: contact-form-7/modules/file.php:
|
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:
|
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:
|
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:
|
587 |
msgid "Your entered code is incorrect."
|
588 |
msgstr "Ihr eingegebener Code ist falsch."
|
589 |
|
590 |
-
#: contact-form-7/modules/captcha.php:
|
591 |
msgid "CAPTCHA"
|
592 |
msgstr "Captcha"
|
593 |
|
594 |
-
#: contact-form-7/modules/captcha.php:
|
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:
|
599 |
msgid "Image settings"
|
600 |
msgstr "Bild Einstellungen"
|
601 |
|
602 |
-
#: contact-form-7/modules/captcha.php:
|
603 |
msgid "Foreground color"
|
604 |
msgstr "Vordergrundfarbe"
|
605 |
|
606 |
-
#: contact-form-7/modules/captcha.php:
|
607 |
msgid "Background color"
|
608 |
msgstr "Hintergrundfarbe"
|
609 |
|
610 |
-
#: contact-form-7/modules/captcha.php:
|
611 |
msgid "Image size"
|
612 |
msgstr "Bild Grösse"
|
613 |
|
614 |
-
#: contact-form-7/modules/captcha.php:
|
615 |
msgid "Small"
|
616 |
msgstr "Klein"
|
617 |
|
618 |
-
#: contact-form-7/modules/captcha.php:
|
619 |
msgid "Medium"
|
620 |
msgstr "Mittel"
|
621 |
|
622 |
-
#: contact-form-7/modules/captcha.php:
|
623 |
msgid "Large"
|
624 |
msgstr "Gross"
|
625 |
|
626 |
-
#: contact-form-7/modules/captcha.php:
|
627 |
msgid "Input field settings"
|
628 |
msgstr "Eingabefeld Einstellungen"
|
629 |
|
630 |
-
#: contact-form-7/modules/captcha.php:
|
631 |
msgid "For image"
|
632 |
msgstr "Für das Bild"
|
633 |
|
634 |
-
#: contact-form-7/modules/captcha.php:
|
635 |
msgid "For input field"
|
636 |
msgstr "Für das Eingabefeld"
|
637 |
|
638 |
-
#: contact-form-7/modules/captcha.php:
|
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:
|
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:
|
648 |
msgid "Checkboxes"
|
649 |
msgstr "Auswahlbox"
|
650 |
|
651 |
-
#: contact-form-7/modules/checkbox.php:
|
652 |
msgid "Radio buttons"
|
653 |
msgstr "Radio Button"
|
654 |
|
655 |
-
#: contact-form-7/modules/checkbox.php:
|
656 |
-
#: contact-form-7/modules/file.php:
|
657 |
msgid "Required field?"
|
658 |
msgstr "Pflichtfeld?"
|
659 |
|
660 |
-
#: contact-form-7/modules/checkbox.php:
|
661 |
msgid "Choices"
|
662 |
msgstr "Auswahlmöglichkeiten"
|
663 |
|
664 |
-
#: contact-form-7/modules/checkbox.php:
|
665 |
msgid "* One choice per line."
|
666 |
msgstr "* Eine Auswahlmöglichkeit pro Zeile."
|
667 |
|
668 |
-
#: contact-form-7/modules/checkbox.php:
|
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:
|
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:
|
677 |
msgid "Make checkboxes exclusive?"
|
678 |
msgstr "Exklusive Auswahlboxen erstellen?"
|
679 |
|
680 |
-
#: contact-form-7/modules/checkbox.php:
|
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:
|
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:
|
689 |
msgid "Failed to upload file."
|
690 |
msgstr "Das hochladen der Datei ist fehlgeschlagen."
|
691 |
|
692 |
-
#: contact-form-7/modules/file.php:
|
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:
|
697 |
msgid "This file type is not allowed."
|
698 |
msgstr "Dieser Dateityp ist nicht erlaubt."
|
699 |
|
700 |
-
#: contact-form-7/modules/file.php:
|
701 |
msgid "Uploaded file is too large"
|
702 |
msgstr "Die hochgeladene Datei ist zu gross!"
|
703 |
|
704 |
-
#: contact-form-7/modules/file.php:
|
705 |
msgid "This file is too large."
|
706 |
msgstr "Diese Datei ist zu gross."
|
707 |
|
708 |
-
#: contact-form-7/modules/file.php:
|
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:
|
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:
|
717 |
msgid "File upload"
|
718 |
msgstr "Datei Upload"
|
719 |
|
720 |
-
#: contact-form-7/modules/file.php:
|
721 |
msgid "File size limit"
|
722 |
msgstr "Dateigrössen Begrenzung"
|
723 |
|
724 |
-
#: contact-form-7/modules/file.php:
|
725 |
msgid "bytes"
|
726 |
msgstr "Bytes"
|
727 |
|
728 |
-
#: contact-form-7/modules/file.php:
|
729 |
msgid "Acceptable file types"
|
730 |
msgstr "Akzeptierte Dateitypen"
|
731 |
|
732 |
-
#: contact-form-7/modules/file.php:
|
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:
|
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:
|
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:
|
750 |
msgid "Your answer is not correct."
|
751 |
msgstr "Ihre eingegebene Antwort ist falsch!"
|
752 |
|
753 |
-
#: contact-form-7/modules/quiz.php:
|
754 |
msgid "Quiz"
|
755 |
msgstr "Quiz"
|
756 |
|
757 |
-
#: contact-form-7/modules/quiz.php:
|
758 |
msgid "Quizzes"
|
759 |
msgstr "Quiz"
|
760 |
|
761 |
-
#: contact-form-7/modules/quiz.php:
|
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:
|
766 |
msgid "Drop-down menu"
|
767 |
msgstr "Auswahlmenü"
|
768 |
|
769 |
-
#: contact-form-7/modules/select.php:
|
770 |
msgid "Allow multiple selections?"
|
771 |
msgstr "Mehrfachauswahl erlauben?"
|
772 |
|
773 |
-
#: contact-form-7/modules/select.php:
|
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:
|
778 |
msgid "Submit button"
|
779 |
msgstr "Senden Button"
|
780 |
|
781 |
-
#: contact-form-7/modules/submit.php:
|
782 |
msgid "Label"
|
783 |
msgstr "Beschriftung"
|
784 |
|
785 |
-
#: contact-form-7/modules/text.php:
|
786 |
msgid "Text field"
|
787 |
msgstr "Text Feld"
|
788 |
|
789 |
-
#: contact-form-7/modules/text.php:
|
790 |
msgid "Email field"
|
791 |
msgstr "Email Feld"
|
792 |
|
793 |
-
#: contact-form-7/modules/text.php:
|
794 |
msgid "Akismet"
|
795 |
msgstr "Askimet"
|
796 |
|
797 |
-
#: contact-form-7/modules/text.php:
|
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:
|
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:
|
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:
|
810 |
-
#: contact-form-7/modules/textarea.php:
|
811 |
msgid "Default value"
|
812 |
msgstr "Standardwert"
|
813 |
|
814 |
-
#: contact-form-7/modules/textarea.php:
|
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:
|
7 |
-
"Last-Translator:
|
8 |
"Language-Team: jillij <admin@jillij.com>\n"
|
9 |
"MIME-Version: 1.0\n"
|
10 |
-
"Content-Type: text/plain; charset=
|
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 |
-
|
22 |
-
|
23 |
-
msgid
|
24 |
-
msgstr
|
|
|
|
|
|
|
|
|
25 |
|
26 |
-
|
27 |
-
#: admin/
|
28 |
-
#: admin/
|
|
|
29 |
msgid "Contact Form 7"
|
30 |
msgstr "Contact Form 7"
|
31 |
|
32 |
-
|
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 |
-
|
101 |
-
#: admin/
|
102 |
-
|
103 |
-
|
104 |
-
msgstr "Corps du message:"
|
105 |
|
106 |
-
|
107 |
-
#: admin/
|
108 |
-
#: admin/
|
109 |
msgid "Save"
|
110 |
msgstr "Sauvegarder"
|
111 |
|
112 |
-
|
113 |
-
#: admin/
|
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 |
-
|
187 |
-
#: admin/
|
188 |
msgid "Delete"
|
189 |
msgstr "Supprimer"
|
190 |
|
191 |
-
|
192 |
-
#: admin/
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
193 |
msgid "Form"
|
194 |
msgstr "Formulaire"
|
195 |
|
196 |
-
|
197 |
-
#: admin/
|
198 |
msgid "Mail"
|
199 |
-
msgstr "
|
200 |
|
201 |
-
|
202 |
-
#: admin/
|
203 |
-
#: admin/
|
204 |
msgid "To:"
|
205 |
-
msgstr
|
206 |
|
207 |
-
|
208 |
-
#: admin/
|
209 |
-
#: admin/
|
210 |
msgid "From:"
|
211 |
-
msgstr "De:"
|
212 |
|
213 |
-
|
214 |
-
#: admin/
|
215 |
-
#: admin/
|
216 |
msgid "Subject:"
|
217 |
-
msgstr "Sujet:"
|
218 |
|
219 |
-
|
220 |
-
#: admin/
|
221 |
-
#: admin/
|
222 |
msgid "Additional headers:"
|
223 |
-
msgstr "
|
224 |
|
225 |
-
|
226 |
-
#: admin/
|
227 |
-
#: admin/
|
228 |
msgid "File attachments:"
|
229 |
-
msgstr "
|
230 |
|
231 |
-
|
232 |
-
#: admin/
|
233 |
-
#: admin/
|
234 |
msgid "Use HTML content type"
|
235 |
-
msgstr "
|
236 |
|
237 |
-
|
238 |
-
#: admin/
|
|
|
|
|
|
|
|
|
|
|
|
|
239 |
msgid "Mail (2)"
|
240 |
-
msgstr "
|
241 |
|
242 |
-
|
243 |
-
#: admin/
|
244 |
msgid "Use mail (2)"
|
245 |
-
msgstr "Utiliser
|
246 |
|
247 |
-
|
248 |
-
#: admin/
|
249 |
msgid "Messages"
|
250 |
msgstr "Messages"
|
251 |
|
252 |
-
|
253 |
-
#: admin/
|
254 |
-
msgid "
|
255 |
-
msgstr "
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
256 |
|
257 |
-
|
258 |
-
|
259 |
-
|
260 |
-
msgstr "Votre message n'a pas pu être envoyé"
|
261 |
|
262 |
-
|
263 |
-
|
264 |
-
|
265 |
-
msgstr "Akismet a jugé que cet envoi est un spam"
|
266 |
|
267 |
-
|
268 |
-
#: admin/admin
|
269 |
-
msgid "
|
270 |
-
msgstr "
|
271 |
|
272 |
-
|
273 |
-
#: admin/admin
|
274 |
-
msgid "
|
275 |
-
msgstr "
|
276 |
|
277 |
-
|
278 |
-
#: admin/admin
|
279 |
-
msgid "
|
280 |
-
msgstr "
|
281 |
|
282 |
-
|
283 |
-
#: admin/admin
|
284 |
-
msgid "
|
285 |
-
msgstr "
|
286 |
|
287 |
-
|
288 |
-
#: admin/admin
|
289 |
-
msgid "
|
290 |
-
msgstr "
|
291 |
|
292 |
-
|
293 |
-
#: admin/admin
|
294 |
-
msgid "
|
295 |
-
msgstr "
|
296 |
|
297 |
-
|
298 |
-
#: admin/admin
|
299 |
-
msgid "
|
300 |
-
msgstr "
|
301 |
|
302 |
-
|
303 |
-
|
304 |
-
|
305 |
-
msgstr "Le téléchargement n'autorise pas ce format de fichier"
|
306 |
|
307 |
-
|
308 |
-
|
309 |
-
|
310 |
-
msgstr "Le fichier téléchargé est trop volumineux"
|
311 |
|
312 |
-
|
313 |
-
#: admin/admin
|
314 |
-
msgid "
|
315 |
-
msgstr
|
316 |
|
317 |
-
|
318 |
-
|
319 |
-
|
320 |
-
msgstr "Modifier les Formulaires de contact"
|
321 |
|
322 |
-
|
323 |
-
|
324 |
-
|
325 |
-
|
|
|
|
|
|
|
326 |
|
327 |
-
|
328 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
329 |
msgid "optional"
|
330 |
msgstr "facultatif"
|
331 |
|
332 |
-
|
333 |
-
#:
|
334 |
-
|
335 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
336 |
|
337 |
-
|
338 |
-
#:
|
339 |
msgid "Text field"
|
340 |
msgstr "Champ texte"
|
341 |
|
342 |
-
|
343 |
-
#:
|
344 |
msgid "Email field"
|
345 |
-
msgstr "Champ
|
346 |
|
347 |
-
|
348 |
-
#:
|
349 |
-
msgid "
|
350 |
-
msgstr "
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
351 |
|
352 |
-
|
353 |
-
#:
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
354 |
msgid "Drop-down menu"
|
355 |
msgstr "Menu déroulant"
|
356 |
|
357 |
-
|
358 |
-
#:
|
359 |
-
|
360 |
-
|
|
|
361 |
|
362 |
-
|
363 |
-
#:
|
364 |
-
|
365 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
366 |
|
367 |
-
|
368 |
-
#:
|
|
|
|
|
|
|
|
|
|
|
369 |
msgid "Acceptance"
|
370 |
msgstr "Acceptation"
|
371 |
|
372 |
-
|
373 |
-
#:
|
374 |
msgid "Make this checkbox checked by default?"
|
375 |
-
msgstr "
|
376 |
|
377 |
-
|
378 |
-
#:
|
379 |
msgid "Make this checkbox work inversely?"
|
380 |
-
msgstr "
|
381 |
|
382 |
-
|
383 |
-
#:
|
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 |
-
|
388 |
-
#:
|
389 |
-
msgid "
|
390 |
-
msgstr "
|
391 |
|
392 |
-
|
393 |
-
#:
|
394 |
-
msgid "
|
395 |
-
msgstr "
|
396 |
|
397 |
-
|
398 |
-
|
399 |
-
|
400 |
-
msgstr "Quizs"
|
401 |
|
402 |
-
|
403 |
-
|
404 |
-
|
405 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
406 |
|
407 |
-
|
408 |
-
#:
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
409 |
msgid "File upload"
|
410 |
-
msgstr "
|
411 |
|
412 |
-
|
413 |
-
#:
|
|
|
|
|
|
|
|
|
|
|
414 |
msgid "bytes"
|
415 |
msgstr "octets"
|
416 |
|
417 |
-
|
418 |
-
#:
|
419 |
-
msgid "
|
420 |
-
msgstr "
|
421 |
|
422 |
-
|
423 |
-
|
424 |
-
|
425 |
-
msgstr "Nom"
|
426 |
|
427 |
-
|
428 |
-
|
429 |
-
msgid "
|
430 |
-
msgstr "
|
431 |
|
432 |
-
|
433 |
-
#:
|
434 |
-
msgid "
|
435 |
-
msgstr "
|
436 |
|
437 |
-
|
438 |
-
#:
|
439 |
-
msgid "
|
440 |
-
msgstr "
|
441 |
|
442 |
-
|
443 |
-
#:
|
444 |
-
msgid "
|
445 |
-
msgstr "
|
446 |
|
447 |
-
|
448 |
-
#:
|
449 |
-
msgid "
|
450 |
-
msgstr "
|
451 |
|
452 |
-
|
453 |
-
#:
|
454 |
-
msgid "
|
455 |
-
msgstr "
|
456 |
|
457 |
-
|
458 |
-
#:
|
459 |
-
msgid "
|
460 |
-
msgstr "
|
461 |
|
462 |
-
|
463 |
-
#:
|
464 |
-
msgid "
|
465 |
-
msgstr "
|
|
|
|
|
|
|
|
|
|
|
466 |
|
467 |
-
|
468 |
-
#:
|
469 |
msgid "Image settings"
|
470 |
msgstr "Paramètres des images"
|
471 |
|
472 |
-
|
473 |
-
#:
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
474 |
msgid "Input field settings"
|
475 |
-
msgstr "Paramètres des
|
476 |
|
477 |
-
|
478 |
-
#:
|
479 |
msgid "For image"
|
480 |
msgstr "Pour l'image"
|
481 |
|
482 |
-
|
483 |
-
#:
|
484 |
msgid "For input field"
|
485 |
msgstr "Pour le champ de saisie"
|
486 |
|
487 |
-
|
488 |
-
|
489 |
-
msgid "
|
490 |
-
msgstr "
|
491 |
|
492 |
-
|
493 |
-
|
494 |
-
|
495 |
-
msgstr "Masquer"
|
496 |
|
497 |
-
|
498 |
-
#:
|
499 |
-
msgid "
|
500 |
-
msgstr "
|
501 |
|
502 |
-
|
503 |
-
#:
|
504 |
-
msgid "
|
505 |
-
msgstr "
|
506 |
|
507 |
-
|
508 |
-
#:
|
509 |
-
msgid "
|
510 |
-
msgstr "
|
511 |
|
512 |
-
|
513 |
-
#:
|
514 |
-
msgid "
|
515 |
-
msgstr "
|
516 |
|
517 |
-
|
518 |
-
#:
|
519 |
-
|
520 |
-
|
|
|
521 |
|
522 |
-
|
523 |
-
#:
|
524 |
-
msgid "
|
525 |
-
msgstr "
|
526 |
|
527 |
-
|
528 |
-
|
529 |
-
|
|
|
530 |
|
531 |
-
|
532 |
-
#:
|
533 |
-
msgid "
|
534 |
-
msgstr "
|
535 |
|
536 |
-
|
537 |
-
#:
|
538 |
-
msgid "
|
539 |
-
msgstr "
|
540 |
|
541 |
-
|
542 |
-
#:
|
543 |
-
msgid "
|
544 |
-
msgstr "
|
545 |
|
546 |
-
|
547 |
-
#:
|
548 |
-
msgid "
|
549 |
-
msgstr "
|
550 |
|
551 |
-
|
552 |
-
#: includes/
|
553 |
-
msgid "
|
554 |
-
msgstr "
|
555 |
|
556 |
-
|
557 |
-
#: includes/functions.php:
|
558 |
-
msgid "
|
559 |
-
msgstr "
|
560 |
|
561 |
-
|
562 |
-
#: includes/functions.php:
|
563 |
-
msgid "
|
564 |
-
msgstr "
|
565 |
|
566 |
-
|
567 |
-
#: includes/functions.php:
|
568 |
-
msgid "
|
569 |
-
msgstr "
|
570 |
|
571 |
-
|
572 |
-
#: includes/functions.php:
|
573 |
-
|
574 |
-
|
|
|
575 |
|
576 |
-
|
577 |
-
#: includes/functions.php:
|
578 |
-
msgid "
|
579 |
-
msgstr "
|
580 |
|
581 |
-
|
582 |
-
#:
|
583 |
-
msgid "
|
584 |
-
msgstr "
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
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 |
|