Contact Form 7 - Version 2.0.7

Version Description

Download this release

Release Info

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

Code changes from version 2.0.6 to 2.0.7

README.txt CHANGED
@@ -4,7 +4,7 @@ Donate link: http://pledgie.com/campaigns/3117
4
  Tags: contact, contact form, email, ajax, captcha, akismet, WPML, multilingual
5
  Requires at least: 2.7
6
  Tested up to: 2.9-rare
7
- Stable tag: 2.0.6
8
 
9
  Just another contact form plugin. Simple but flexible.
10
 
@@ -73,14 +73,18 @@ Starting with version 2.0, Contact Form 7 can create multilingual contact form u
73
 
74
  You will find 'Contact' menu in your WordPress admin panel.
75
 
76
- For basic usage, you can also have a look at the [plugin homepage](http://contactform7.com/) and [FAQ](http://contactform7.com/support/faq/).
77
 
78
  == Frequently Asked Questions ==
79
 
80
- Please see [FAQ](http://contactform7.com/support/faq/).
81
 
82
- If you have any further questions,
83
- please submit them [to the support forum](http://wordpress.org/tags/contact-form-7?forum_id=10#postform).
 
 
 
 
84
 
85
  == Screenshots ==
86
 
@@ -88,4 +92,13 @@ please submit them [to the support forum](http://wordpress.org/tags/contact-form
88
 
89
  == Changelog ==
90
 
91
- [See change logs in author's blog.](http://ideasilo.wordpress.com/tag/contact-form-7/)
 
 
 
 
 
 
 
 
 
4
  Tags: contact, contact form, email, ajax, captcha, akismet, WPML, multilingual
5
  Requires at least: 2.7
6
  Tested up to: 2.9-rare
7
+ Stable tag: 2.0.7
8
 
9
  Just another contact form plugin. Simple but flexible.
10
 
73
 
74
  You will find 'Contact' menu in your WordPress admin panel.
75
 
76
+ For basic usage, you can also have a look at the [plugin homepage](http://contactform7.com/).
77
 
78
  == Frequently Asked Questions ==
79
 
80
+ Do you have questions or issues with Contact Form 7? Use these support channels appropriately.
81
 
82
+ 1. [FAQ](http://contactform7.com/faq/)
83
+ 1. [Support Forum](http://wordpress.org/tags/contact-form-7?forum_id=10)
84
+ 1. [WordPress HelpCenter](http://wphelpcenter.com/)
85
+ 1. [Customization Service](http://contactform7.com/customization/)
86
+
87
+ [Support](http://contactform7.com/support/)
88
 
89
  == Screenshots ==
90
 
92
 
93
  == Changelog ==
94
 
95
+ = 2.0.7 =
96
+ * add new filter hook (`wpcf7_validation_error`) and action hooks (`wpcf7_admin_after_general_settings`, `wpcf7_admin_after_form`, `wpcf7_admin_after_mail`, `wpcf7_admin_after_mail_2`, `wpcf7_admin_after_messages`, and `wpcf7_admin_after_additional_settings`)
97
+ * call `$captcha->cleanup()` if available and shorten cleanup period (in `modules/captcha.php`)
98
+ * various fixes with administration panels
99
+ * improve DB table check
100
+ * fix bug relating to disappearing backslashes
101
+ * sanitize filenames with multiple extensions (relating to the issue discussed on [Ticket #11122](http://core.trac.wordpress.org/ticket/11122))
102
+ * update translation for Persian (props: Mohammad Musavi)
103
+
104
+ [Releases](http://contactform7.com/category/releases/)
admin/admin-panel.php CHANGED
@@ -96,7 +96,9 @@ if ( ! wpcf7_table_exists() ) {
96
  </tbody>
97
  </table>
98
 
99
- <?php if ( wpcf7_admin_has_edit_cap() ) : ?>
 
 
100
 
101
  <table class="widefat" style="margin-top: 1em;">
102
  <thead><tr><th scope="col" colspan="2"><?php echo esc_html( __( 'Form', 'wpcf7' ) ); ?></th></tr></thead>
@@ -116,6 +118,12 @@ if ( ! wpcf7_table_exists() ) {
116
  </tbody>
117
  </table>
118
 
 
 
 
 
 
 
119
  <table class="widefat" style="margin-top: 1em;">
120
  <thead><tr><th scope="col" colspan="2"><?php echo esc_html( __( 'Mail', 'wpcf7' ) ); ?></th></tr></thead>
121
 
@@ -170,6 +178,12 @@ if ( ! wpcf7_table_exists() ) {
170
  </tbody>
171
  </table>
172
 
 
 
 
 
 
 
173
  <table class="widefat" style="margin-top: 1em;">
174
  <thead><tr><th scope="col" colspan="2"><?php echo esc_html( __( 'Mail (2)', 'wpcf7' ) ); ?></th></tr></thead>
175
 
@@ -231,6 +245,12 @@ if ( ! wpcf7_table_exists() ) {
231
  </tbody>
232
  </table>
233
 
 
 
 
 
 
 
234
  <table class="widefat" style="margin-top: 1em;">
235
  <thead><tr><th scope="col"><?php echo esc_html( __( 'Messages', 'wpcf7' ) ); ?> <span id="message-fields-toggle-switch"></span></th></tr></thead>
236
 
@@ -310,6 +330,12 @@ if ( ! wpcf7_table_exists() ) {
310
  </tbody>
311
  </table>
312
 
 
 
 
 
 
 
313
  <table class="widefat" style="margin-top: 1em;">
314
  <thead><tr><th scope="col"><?php echo esc_html( __( 'Additional Settings', 'wpcf7' ) ); ?> <span id="additional-settings-fields-toggle-switch"></span></th></tr></thead>
315
 
@@ -336,7 +362,9 @@ if ( ! wpcf7_table_exists() ) {
336
  </tbody>
337
  </table>
338
 
339
- <?php endif; ?>
 
 
340
 
341
  </form>
342
 
96
  </tbody>
97
  </table>
98
 
99
+ <?php do_action_ref_array( 'wpcf7_admin_after_general_settings', array( &$cf ) ); ?>
100
+
101
+ <?php if ( wpcf7_admin_has_edit_cap() ) : ?>
102
 
103
  <table class="widefat" style="margin-top: 1em;">
104
  <thead><tr><th scope="col" colspan="2"><?php echo esc_html( __( 'Form', 'wpcf7' ) ); ?></th></tr></thead>
118
  </tbody>
119
  </table>
120
 
121
+ <?php endif; ?>
122
+
123
+ <?php do_action_ref_array( 'wpcf7_admin_after_form', array( &$cf ) ); ?>
124
+
125
+ <?php if ( wpcf7_admin_has_edit_cap() ) : ?>
126
+
127
  <table class="widefat" style="margin-top: 1em;">
128
  <thead><tr><th scope="col" colspan="2"><?php echo esc_html( __( 'Mail', 'wpcf7' ) ); ?></th></tr></thead>
129
 
178
  </tbody>
179
  </table>
180
 
181
+ <?php endif; ?>
182
+
183
+ <?php do_action_ref_array( 'wpcf7_admin_after_mail', array( &$cf ) ); ?>
184
+
185
+ <?php if ( wpcf7_admin_has_edit_cap() ) : ?>
186
+
187
  <table class="widefat" style="margin-top: 1em;">
188
  <thead><tr><th scope="col" colspan="2"><?php echo esc_html( __( 'Mail (2)', 'wpcf7' ) ); ?></th></tr></thead>
189
 
245
  </tbody>
246
  </table>
247
 
248
+ <?php endif; ?>
249
+
250
+ <?php do_action_ref_array( 'wpcf7_admin_after_mail_2', array( &$cf ) ); ?>
251
+
252
+ <?php if ( wpcf7_admin_has_edit_cap() ) : ?>
253
+
254
  <table class="widefat" style="margin-top: 1em;">
255
  <thead><tr><th scope="col"><?php echo esc_html( __( 'Messages', 'wpcf7' ) ); ?> <span id="message-fields-toggle-switch"></span></th></tr></thead>
256
 
330
  </tbody>
331
  </table>
332
 
333
+ <?php endif; ?>
334
+
335
+ <?php do_action_ref_array( 'wpcf7_admin_after_messages', array( &$cf ) ); ?>
336
+
337
+ <?php if ( wpcf7_admin_has_edit_cap() ) : ?>
338
+
339
  <table class="widefat" style="margin-top: 1em;">
340
  <thead><tr><th scope="col"><?php echo esc_html( __( 'Additional Settings', 'wpcf7' ) ); ?> <span id="additional-settings-fields-toggle-switch"></span></th></tr></thead>
341
 
362
  </tbody>
363
  </table>
364
 
365
+ <?php endif; ?>
366
+
367
+ <?php do_action_ref_array( 'wpcf7_admin_after_additional_settings', array( &$cf ) ); ?>
368
 
369
  </form>
370
 
admin/admin.php CHANGED
@@ -164,7 +164,8 @@ function wpcf7_admin_head() {
164
  <script type="text/javascript">
165
  //<![CDATA[
166
  var _wpcf7 = {
167
- captchaMod: <?php echo ( class_exists( 'ReallySimpleCaptcha' ) ) ? 'true' : 'false' ?>
 
168
  };
169
  //]]>
170
  </script>
164
  <script type="text/javascript">
165
  //<![CDATA[
166
  var _wpcf7 = {
167
+ captchaMod: <?php echo ( class_exists( 'ReallySimpleCaptcha' ) ) ? 'true' : 'false' ?>,
168
+ pluginUrl: '<?php echo wpcf7_plugin_url(); ?>'
169
  };
170
  //]]>
171
  </script>
admin/wpcf7-admin.js CHANGED
@@ -107,7 +107,7 @@ function updateTag() {
107
  function tagGenerator() {
108
  var menu = jQuery('<div class="tag-generator"></div>');
109
 
110
- var dropdown_icon = jQuery('<img src="../wp-content/plugins/contact-form-7/images/dropdown.gif" />');
111
  dropdown_icon.css({ 'vertical-align': 'bottom' });
112
 
113
  var selector = jQuery('<span>' + _wpcf7L10n.generateTag + '</span>');
107
  function tagGenerator() {
108
  var menu = jQuery('<div class="tag-generator"></div>');
109
 
110
+ var dropdown_icon = jQuery('<img src="' + _wpcf7.pluginUrl + '/images/dropdown.gif" />');
111
  dropdown_icon.css({ 'vertical-align': 'bottom' });
112
 
113
  var selector = jQuery('<span>' + _wpcf7L10n.generateTag + '</span>');
includes/classes.php CHANGED
@@ -101,7 +101,9 @@ class WPCF7_ContactForm {
101
 
102
  function validation_error( $name ) {
103
  if ( $this->is_posted() && $ve = $_POST['_wpcf7_validation_errors']['messages'][$name] )
104
- return '<span class="wpcf7-not-valid-tip-no-ajax">' . esc_html( $ve ) . '</span>';
 
 
105
 
106
  return '';
107
  }
@@ -543,12 +545,12 @@ function wpcf7_contact_form( $id ) {
543
 
544
  $contact_form = new WPCF7_ContactForm();
545
  $contact_form->id = $row->cf7_unit_id;
546
- $contact_form->title = stripslashes_deep( $row->title );
547
- $contact_form->form = stripslashes_deep( maybe_unserialize( $row->form ) );
548
- $contact_form->mail = stripslashes_deep( maybe_unserialize( $row->mail ) );
549
- $contact_form->mail_2 = stripslashes_deep( maybe_unserialize( $row->mail_2 ) );
550
- $contact_form->messages = stripslashes_deep( maybe_unserialize( $row->messages ) );
551
- $contact_form->additional_settings = stripslashes_deep( maybe_unserialize( $row->additional_settings ) );
552
 
553
  $contact_form->upgrade();
554
 
101
 
102
  function validation_error( $name ) {
103
  if ( $this->is_posted() && $ve = $_POST['_wpcf7_validation_errors']['messages'][$name] )
104
+ return apply_filters( 'wpcf7_validation_error',
105
+ '<span class="wpcf7-not-valid-tip-no-ajax">' . esc_html( $ve ) . '</span>',
106
+ $name, $this );
107
 
108
  return '';
109
  }
545
 
546
  $contact_form = new WPCF7_ContactForm();
547
  $contact_form->id = $row->cf7_unit_id;
548
+ $contact_form->title = maybe_unserialize( $row->title );
549
+ $contact_form->form = maybe_unserialize( $row->form );
550
+ $contact_form->mail = maybe_unserialize( $row->mail );
551
+ $contact_form->mail_2 = maybe_unserialize( $row->mail_2 );
552
+ $contact_form->messages = maybe_unserialize( $row->messages );
553
+ $contact_form->additional_settings = maybe_unserialize( $row->additional_settings );
554
 
555
  $contact_form->upgrade();
556
 
includes/formatting.php CHANGED
@@ -78,4 +78,60 @@ function wpcf7_canonicalize( $text ) {
78
  return $text;
79
  }
80
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
81
  ?>
78
  return $text;
79
  }
80
 
81
+ function wpcf7_sanitize_file_name( $filename ) {
82
+ /* Memo:
83
+ // This function does sanitization introduced in http://core.trac.wordpress.org/ticket/11122
84
+ // WordPress 2.8.6 will implement it in sanitize_file_name().
85
+ // While Contact Form 7's file uploading function uses wp_unique_filename(), and
86
+ // it in turn calls sanitize_file_name(). Therefore this wpcf7_sanitize_file_name() will be
87
+ // redundant and unnecessary when you use Contact Form 7 on WordPress 2.8.6 or higher.
88
+ // This function is provided just for the sake of protecting who uses older WordPress.
89
+ */
90
+
91
+ // Split the filename into a base and extension[s]
92
+ $parts = explode( '.', $filename );
93
+
94
+ // Return if only one extension
95
+ if ( count( $parts ) <= 2 )
96
+ return $filename;
97
+
98
+ // Process multiple extensions
99
+ $filename = array_shift( $parts );
100
+ $extension = array_pop( $parts );
101
+
102
+ $mimes = array( 'jpg|jpeg|jpe', 'gif', 'png', 'bmp',
103
+ 'tif|tiff', 'ico', 'asf|asx|wax|wmv|wmx', 'avi',
104
+ 'divx', 'mov|qt', 'mpeg|mpg|mpe', 'txt|c|cc|h',
105
+ 'rtx', 'css', 'htm|html', 'mp3|m4a', 'mp4|m4v',
106
+ 'ra|ram', 'wav', 'ogg', 'mid|midi', 'wma', 'rtf',
107
+ 'js', 'pdf', 'doc|docx', 'pot|pps|ppt|pptx', 'wri',
108
+ 'xla|xls|xlsx|xlt|xlw', 'mdb', 'mpp', 'swf', 'class',
109
+ 'tar', 'zip', 'gz|gzip', 'exe',
110
+ // openoffice formats
111
+ 'odt', 'odp', 'ods', 'odg', 'odc', 'odb', 'odf' );
112
+
113
+ // Loop over any intermediate extensions.
114
+ // Munge them with a trailing underscore if they are a 2 - 5 character
115
+ // long alpha string not in the extension whitelist.
116
+ foreach ( (array) $parts as $part) {
117
+ $filename .= '.' . $part;
118
+
119
+ if ( preg_match( '/^[a-zA-Z]{2,5}\d?$/', $part ) ) {
120
+ $allowed = false;
121
+ foreach ( $mimes as $ext_preg ) {
122
+ $ext_preg = '!(^' . $ext_preg . ')$!i';
123
+ if ( preg_match( $ext_preg, $part ) ) {
124
+ $allowed = true;
125
+ break;
126
+ }
127
+ }
128
+ if ( ! $allowed )
129
+ $filename .= '_';
130
+ }
131
+ }
132
+ $filename .= '.' . $extension;
133
+
134
+ return $filename;
135
+ }
136
+
137
  ?>
includes/functions.php CHANGED
@@ -48,8 +48,8 @@ function wpcf7_default_mail_template() {
48
  $subject = '[your-subject]';
49
  $sender = '[your-name] <[your-email]>';
50
  $body = __( 'Message body:', 'wpcf7' ) . "\n" . '[your-message]' . "\n\n" . '--' . "\n"
51
- . __( "This mail is created by Contact Form 7 plugin for WordPress.", 'wpcf7' )
52
- . "\n\n" . __( 'Contact Form 7', 'wpcf7' ) . "\n" . 'http://contactform7.com';
53
  $recipient = get_option( 'admin_email' );
54
  return compact( 'subject', 'sender', 'body', 'recipient' );
55
  }
@@ -58,7 +58,9 @@ function wpcf7_default_mail_2_template() {
58
  $active = false;
59
  $subject = '[your-subject]';
60
  $sender = '[your-name] <[your-email]>';
61
- $body = '[your-message]';
 
 
62
  $recipient = '[your-email]';
63
  return compact( 'active', 'subject', 'sender', 'body', 'recipient' );
64
  }
@@ -113,27 +115,6 @@ function wpcf7_upload_dir( $type = false ) {
113
  return array( 'dir' => $dir, 'url' => $url );
114
  }
115
 
116
- function wpcf7_captcha_tmp_dir() {
117
- if ( defined( 'WPCF7_CAPTCHA_TMP_DIR' ) )
118
- return WPCF7_CAPTCHA_TMP_DIR;
119
- else
120
- return wpcf7_upload_dir( 'dir' ) . '/wpcf7_captcha';
121
- }
122
-
123
- function wpcf7_captcha_tmp_url() {
124
- if ( defined( 'WPCF7_CAPTCHA_TMP_URL' ) )
125
- return WPCF7_CAPTCHA_TMP_URL;
126
- else
127
- return wpcf7_upload_dir( 'url' ) . '/wpcf7_captcha';
128
- }
129
-
130
- function wpcf7_upload_tmp_dir() {
131
- if ( defined( 'WPCF7_UPLOADS_TMP_DIR' ) )
132
- return WPCF7_UPLOADS_TMP_DIR;
133
- else
134
- return wpcf7_upload_dir( 'dir' ) . '/wpcf7_uploads';
135
- }
136
-
137
  function wpcf7_json( $items ) {
138
  if ( is_array( $items ) ) {
139
  if ( empty( $items ) )
48
  $subject = '[your-subject]';
49
  $sender = '[your-name] <[your-email]>';
50
  $body = __( 'Message body:', 'wpcf7' ) . "\n" . '[your-message]' . "\n\n" . '--' . "\n"
51
+ . sprintf( __( 'This mail is sent via contact form on %1$s %2$s', 'wpcf7' ),
52
+ get_bloginfo( 'name' ), get_bloginfo( 'url' ) );
53
  $recipient = get_option( 'admin_email' );
54
  return compact( 'subject', 'sender', 'body', 'recipient' );
55
  }
58
  $active = false;
59
  $subject = '[your-subject]';
60
  $sender = '[your-name] <[your-email]>';
61
+ $body = __( 'Message body:', 'wpcf7' ) . "\n" . '[your-message]' . "\n\n" . '--' . "\n"
62
+ . sprintf( __( 'This mail is sent via contact form on %1$s %2$s', 'wpcf7' ),
63
+ get_bloginfo( 'name' ), get_bloginfo( 'url' ) );
64
  $recipient = '[your-email]';
65
  return compact( 'active', 'subject', 'sender', 'body', 'recipient' );
66
  }
115
  return array( 'dir' => $dir, 'url' => $url );
116
  }
117
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
118
  function wpcf7_json( $items ) {
119
  if ( is_array( $items ) ) {
120
  if ( empty( $items ) )
languages/wpcf7-fa_IR.mo CHANGED
Binary file
languages/wpcf7-fa_IR.po CHANGED
@@ -2,7 +2,7 @@ msgid ""
2
  msgstr ""
3
  "Project-Id-Version: Contact Form 7\n"
4
  "Report-Msgid-Bugs-To: \n"
5
- "POT-Creation-Date: 2009-06-01 14:23+0330\n"
6
  "PO-Revision-Date: \n"
7
  "Last-Translator: Mohammad Musavi <mohammad at musavis.com>\n"
8
  "Language-Team: musavis.com <mohammad at musavis.com>\n"
@@ -15,411 +15,412 @@ msgstr ""
15
  "X-Poedit-Basepath: e:\\mohammad\\xampp2\\htdocs\\wordpress\\wp-content\\plugins\\contact-form-7\\\n"
16
  "X-Poedit-SearchPath-0: e:\\mohammad\\xampp2\\htdocs\\wordpress\\wp-content\\plugins\\contact-form-7\n"
17
 
18
- #: e:\mohammad\xampp2\htdocs\wordpress\wp-content\plugins\contact-form-7/wp-contact-form-7.php:382
19
- msgid "Contact form"
20
- msgstr "فرم تماس"
 
21
 
22
- #: e:\mohammad\xampp2\htdocs\wordpress\wp-content\plugins\contact-form-7/admin/admin-panel.php:6
23
- #: e:\mohammad\xampp2\htdocs\wordpress\wp-content\plugins\contact-form-7/admin/admin.php:111
 
 
 
 
 
 
24
  msgid "Contact Form 7"
25
  msgstr "فرم تماس نسخه 7"
26
 
27
- #: e:\mohammad\xampp2\htdocs\wordpress\wp-content\plugins\contact-form-7/admin/admin-panel.php:21
28
  msgid "Add new"
29
  msgstr "جدید"
30
 
31
- #: e:\mohammad\xampp2\htdocs\wordpress\wp-content\plugins\contact-form-7/admin/admin-panel.php:43
32
  msgid "Copy this code and paste it into your post, page or text widget content."
33
  msgstr "این کد را کپی نموده و در نوشته، برگه یا ابزارک خود بچسبانید."
34
 
35
- #: e:\mohammad\xampp2\htdocs\wordpress\wp-content\plugins\contact-form-7/admin/admin-panel.php:50
36
- #: e:\mohammad\xampp2\htdocs\wordpress\wp-content\plugins\contact-form-7/admin/admin-panel.php:290
37
  msgid "Save"
38
  msgstr "ذخیره"
39
 
40
- #: e:\mohammad\xampp2\htdocs\wordpress\wp-content\plugins\contact-form-7/admin/admin-panel.php:57
41
  msgid "Copy"
42
  msgstr "کپی"
43
 
44
- #: e:\mohammad\xampp2\htdocs\wordpress\wp-content\plugins\contact-form-7/admin/admin-panel.php:61
45
  msgid "Delete"
46
  msgstr "حذف"
47
 
48
- #: e:\mohammad\xampp2\htdocs\wordpress\wp-content\plugins\contact-form-7/admin/admin-panel.php:63
49
  msgid ""
50
  "You are about to delete this contact form.\n"
51
  " 'Cancel' to stop, 'OK' to delete."
52
  msgstr "شما در حال حذف این فرم تماس هستید. آیا از حذف این فرم اطمینان دارید؟"
53
 
54
- #: e:\mohammad\xampp2\htdocs\wordpress\wp-content\plugins\contact-form-7/admin/admin-panel.php:78
55
  msgid "Form"
56
  msgstr "فرم"
57
 
58
- #: e:\mohammad\xampp2\htdocs\wordpress\wp-content\plugins\contact-form-7/admin/admin-panel.php:98
59
  msgid "Mail"
60
  msgstr "پست الکترونیک"
61
 
62
- #: e:\mohammad\xampp2\htdocs\wordpress\wp-content\plugins\contact-form-7/admin/admin-panel.php:105
63
- #: e:\mohammad\xampp2\htdocs\wordpress\wp-content\plugins\contact-form-7/admin/admin-panel.php:161
64
  msgid "To:"
65
  msgstr "گیرنده:"
66
 
67
- #: e:\mohammad\xampp2\htdocs\wordpress\wp-content\plugins\contact-form-7/admin/admin-panel.php:109
68
- #: e:\mohammad\xampp2\htdocs\wordpress\wp-content\plugins\contact-form-7/admin/admin-panel.php:165
69
  msgid "From:"
70
  msgstr "فرستنده:"
71
 
72
- #: e:\mohammad\xampp2\htdocs\wordpress\wp-content\plugins\contact-form-7/admin/admin-panel.php:113
73
- #: e:\mohammad\xampp2\htdocs\wordpress\wp-content\plugins\contact-form-7/admin/admin-panel.php:169
74
  msgid "Subject:"
75
  msgstr "موضوع:"
76
 
77
- #: e:\mohammad\xampp2\htdocs\wordpress\wp-content\plugins\contact-form-7/admin/admin-panel.php:118
78
- #: e:\mohammad\xampp2\htdocs\wordpress\wp-content\plugins\contact-form-7/admin/admin-panel.php:174
79
  msgid "Additional headers:"
80
  msgstr "هدرهای اضافی:"
81
 
82
- #: e:\mohammad\xampp2\htdocs\wordpress\wp-content\plugins\contact-form-7/admin/admin-panel.php:122
83
- #: e:\mohammad\xampp2\htdocs\wordpress\wp-content\plugins\contact-form-7/admin/admin-panel.php:178
84
  msgid "File attachments:"
85
  msgstr "فایل های الصاق شده:"
86
 
87
- #: e:\mohammad\xampp2\htdocs\wordpress\wp-content\plugins\contact-form-7/admin/admin-panel.php:124
88
- #: e:\mohammad\xampp2\htdocs\wordpress\wp-content\plugins\contact-form-7/admin/admin-panel.php:180
89
- msgid "(You need WordPress 2.7 or greater to use this feature)"
90
- msgstr "(جهت استفاده از این قابلیت نیاز به وردپرس نسخه 2.7 به بالا دارید)"
91
-
92
- #: e:\mohammad\xampp2\htdocs\wordpress\wp-content\plugins\contact-form-7/admin/admin-panel.php:132
93
- #: e:\mohammad\xampp2\htdocs\wordpress\wp-content\plugins\contact-form-7/admin/admin-panel.php:188
94
  msgid "Use HTML content type"
95
  msgstr "استفاده از HTML در محتوا"
96
 
97
- #: e:\mohammad\xampp2\htdocs\wordpress\wp-content\plugins\contact-form-7/admin/admin-panel.php:137
98
- #: e:\mohammad\xampp2\htdocs\wordpress\wp-content\plugins\contact-form-7/admin/admin-panel.php:193
 
99
  msgid "Message body:"
100
  msgstr "متن نامه"
101
 
102
- #: e:\mohammad\xampp2\htdocs\wordpress\wp-content\plugins\contact-form-7/admin/admin-panel.php:148
103
  msgid "Mail (2)"
104
  msgstr "پست الکترونیک 2"
105
 
106
- #: e:\mohammad\xampp2\htdocs\wordpress\wp-content\plugins\contact-form-7/admin/admin-panel.php:155
107
  msgid "Use mail (2)"
108
  msgstr "استفاده از پست الکترونیک 2"
109
 
110
- #: e:\mohammad\xampp2\htdocs\wordpress\wp-content\plugins\contact-form-7/admin/admin-panel.php:204
111
  msgid "Messages"
112
  msgstr "پیغام ها"
113
 
114
- #: e:\mohammad\xampp2\htdocs\wordpress\wp-content\plugins\contact-form-7/admin/admin-panel.php:212
115
  msgid "Sender's message was sent successfully"
116
  msgstr "پیام با موفقیت ارسال شد."
117
 
118
- #: e:\mohammad\xampp2\htdocs\wordpress\wp-content\plugins\contact-form-7/admin/admin-panel.php:216
119
  msgid "Sender's message was failed to send"
120
  msgstr "ارسال ناموفق بود"
121
 
122
- #: e:\mohammad\xampp2\htdocs\wordpress\wp-content\plugins\contact-form-7/admin/admin-panel.php:220
123
  msgid "Akismet judged the sending activity as spamming"
124
  msgstr "آکیسمت متن ارسالی را هرزنامه تشخیص داد"
125
 
126
- #: e:\mohammad\xampp2\htdocs\wordpress\wp-content\plugins\contact-form-7/admin/admin-panel.php:224
127
  msgid "Validation errors occurred"
128
  msgstr "خطای تائید رخ داد"
129
 
130
- #: e:\mohammad\xampp2\htdocs\wordpress\wp-content\plugins\contact-form-7/admin/admin-panel.php:228
131
  msgid "There is a field that sender is needed to fill in"
132
  msgstr "ارسال کننده ملزم به تکمیل فیلدهای الزامیست."
133
 
134
- #: e:\mohammad\xampp2\htdocs\wordpress\wp-content\plugins\contact-form-7/admin/admin-panel.php:232
135
  msgid "Email address that sender entered is invalid"
136
  msgstr "آدرس پست الکترونیک وارد شده نامعتبر به نظر می رسد."
137
 
138
- #: e:\mohammad\xampp2\htdocs\wordpress\wp-content\plugins\contact-form-7/admin/admin-panel.php:236
139
  msgid "There is a field of term that sender is needed to accept"
140
  msgstr "ارسال کننده فرم ملزم به پذیرش فیلد الزامیست."
141
 
142
- #: e:\mohammad\xampp2\htdocs\wordpress\wp-content\plugins\contact-form-7/admin/admin-panel.php:240
143
  msgid "Sender doesn't enter the correct answer to the quiz"
144
  msgstr "پاسخ شما به پرسش امنیتی اشتباه است."
145
 
146
- #: e:\mohammad\xampp2\htdocs\wordpress\wp-content\plugins\contact-form-7/admin/admin-panel.php:244
147
  msgid "The code that sender entered does not match the CAPTCHA"
148
  msgstr "کد امنیتی وارد شده معتبر نیست."
149
 
150
- #: e:\mohammad\xampp2\htdocs\wordpress\wp-content\plugins\contact-form-7/admin/admin-panel.php:248
151
  msgid "Uploading a file fails for any reason"
152
  msgstr "آپلود فایل به هر علتی با مشکل مواجه می شود."
153
 
154
- #: e:\mohammad\xampp2\htdocs\wordpress\wp-content\plugins\contact-form-7/admin/admin-panel.php:252
155
  msgid "Uploaded file is not allowed file type"
156
  msgstr "پسوند فایل آپلود شده مجاز نمی باشد."
157
 
158
- #: e:\mohammad\xampp2\htdocs\wordpress\wp-content\plugins\contact-form-7/admin/admin-panel.php:256
159
  msgid "Uploaded file is too large"
160
  msgstr "حجم فایل آپلود شده بیش از حد مجاز است."
161
 
162
- #: e:\mohammad\xampp2\htdocs\wordpress\wp-content\plugins\contact-form-7/admin/admin-panel.php:269
 
 
 
 
163
  msgid "Additional Settings"
164
  msgstr "تنظیمات اضافی"
165
 
166
- #: e:\mohammad\xampp2\htdocs\wordpress\wp-content\plugins\contact-form-7/admin/admin.php:157
 
 
 
 
 
 
 
 
 
 
 
 
167
  msgid "optional"
168
  msgstr "انتخابی"
169
 
170
- #: e:\mohammad\xampp2\htdocs\wordpress\wp-content\plugins\contact-form-7/admin/admin.php:158
171
  msgid "Generate Tag"
172
  msgstr "برچسب عمومی"
173
 
174
- #: e:\mohammad\xampp2\htdocs\wordpress\wp-content\plugins\contact-form-7/admin/admin.php:159
175
  msgid "Text field"
176
  msgstr "فیلد متنی"
177
 
178
- #: e:\mohammad\xampp2\htdocs\wordpress\wp-content\plugins\contact-form-7/admin/admin.php:160
179
  msgid "Email field"
180
  msgstr "فیلد ایمیل"
181
 
182
- #: e:\mohammad\xampp2\htdocs\wordpress\wp-content\plugins\contact-form-7/admin/admin.php:161
183
  msgid "Text area"
184
  msgstr "فضای متنی"
185
 
186
- #: e:\mohammad\xampp2\htdocs\wordpress\wp-content\plugins\contact-form-7/admin/admin.php:162
187
  msgid "Drop-down menu"
188
  msgstr "منوی بازشو"
189
 
190
- #: e:\mohammad\xampp2\htdocs\wordpress\wp-content\plugins\contact-form-7/admin/admin.php:163
191
  msgid "Checkboxes"
192
  msgstr "جعبه علامتگذاری"
193
 
194
- #: e:\mohammad\xampp2\htdocs\wordpress\wp-content\plugins\contact-form-7/admin/admin.php:164
195
  msgid "Radio buttons"
196
  msgstr "دکمه انتخابی"
197
 
198
- #: e:\mohammad\xampp2\htdocs\wordpress\wp-content\plugins\contact-form-7/admin/admin.php:165
199
  msgid "Acceptance"
200
  msgstr "پذیرش"
201
 
202
- #: e:\mohammad\xampp2\htdocs\wordpress\wp-content\plugins\contact-form-7/admin/admin.php:166
203
  msgid "Make this checkbox checked by default?"
204
  msgstr "آیا این جعبه به صورت پیش فرض تیک خورده باشد؟"
205
 
206
- #: e:\mohammad\xampp2\htdocs\wordpress\wp-content\plugins\contact-form-7/admin/admin.php:167
207
  msgid "Make this checkbox work inversely?"
208
  msgstr "این جعبه بصورت برعکس عمل نماید؟"
209
 
210
- #: e:\mohammad\xampp2\htdocs\wordpress\wp-content\plugins\contact-form-7/admin/admin.php:168
211
  msgid "* That means visitor who accepts the term unchecks it."
212
  msgstr "* این بدین معناست که کسی که شرایط را می پذیرد آنرا به حالت تیک نخورده در می آورد."
213
 
214
- #: e:\mohammad\xampp2\htdocs\wordpress\wp-content\plugins\contact-form-7/admin/admin.php:169
215
  msgid "CAPTCHA"
216
  msgstr "کد امنیتی"
217
 
218
- #: e:\mohammad\xampp2\htdocs\wordpress\wp-content\plugins\contact-form-7/admin/admin.php:170
219
  msgid "Quiz"
220
  msgstr "پرسش"
221
 
222
- #: e:\mohammad\xampp2\htdocs\wordpress\wp-content\plugins\contact-form-7/admin/admin.php:171
223
  msgid "Quizzes"
224
  msgstr "پرسش ها"
225
 
226
- #: e:\mohammad\xampp2\htdocs\wordpress\wp-content\plugins\contact-form-7/admin/admin.php:172
227
  msgid "* quiz|answer (e.g. 1+1=?|2)"
228
  msgstr "* پرسش|پاسخ (مثال: 1+1؟|2)"
229
 
230
- #: e:\mohammad\xampp2\htdocs\wordpress\wp-content\plugins\contact-form-7/admin/admin.php:173
231
  msgid "File upload"
232
  msgstr "آپلود فایل"
233
 
234
- #: e:\mohammad\xampp2\htdocs\wordpress\wp-content\plugins\contact-form-7/admin/admin.php:174
235
  msgid "bytes"
236
  msgstr "بایت"
237
 
238
- #: e:\mohammad\xampp2\htdocs\wordpress\wp-content\plugins\contact-form-7/admin/admin.php:175
239
  msgid "Submit button"
240
  msgstr "ارسال"
241
 
242
- #: e:\mohammad\xampp2\htdocs\wordpress\wp-content\plugins\contact-form-7/admin/admin.php:176
243
  msgid "Name"
244
  msgstr "نام فیلد"
245
 
246
- #: e:\mohammad\xampp2\htdocs\wordpress\wp-content\plugins\contact-form-7/admin/admin.php:177
247
  msgid "Required field?"
248
  msgstr "گزینه اجباری"
249
 
250
- #: e:\mohammad\xampp2\htdocs\wordpress\wp-content\plugins\contact-form-7/admin/admin.php:178
251
  msgid "Allow multiple selections?"
252
  msgstr "مجاز به انتخاب چند گزینه به طور همزمان؟"
253
 
254
- #: e:\mohammad\xampp2\htdocs\wordpress\wp-content\plugins\contact-form-7/admin/admin.php:179
255
  msgid "Insert a blank item as the first option?"
256
  msgstr "آیتم خالی به عنوان اولین انتخاب قرار داده شود؟"
257
 
258
- #: e:\mohammad\xampp2\htdocs\wordpress\wp-content\plugins\contact-form-7/admin/admin.php:180
259
  msgid "Make checkboxes exclusive?"
260
  msgstr "جعبه های علامتگذاری به صورت انحصاری باشند؟"
261
 
262
- #: e:\mohammad\xampp2\htdocs\wordpress\wp-content\plugins\contact-form-7/admin/admin.php:181
263
  msgid "Choices"
264
  msgstr "انتخاب ها"
265
 
266
- #: e:\mohammad\xampp2\htdocs\wordpress\wp-content\plugins\contact-form-7/admin/admin.php:182
267
  msgid "Label"
268
  msgstr "برچسب"
269
 
270
- #: e:\mohammad\xampp2\htdocs\wordpress\wp-content\plugins\contact-form-7/admin/admin.php:183
271
  msgid "Default value"
272
  msgstr "مقدار پیش فرض"
273
 
274
- #: e:\mohammad\xampp2\htdocs\wordpress\wp-content\plugins\contact-form-7/admin/admin.php:184
275
  msgid "Akismet"
276
  msgstr "اکیسمت"
277
 
278
- #: e:\mohammad\xampp2\htdocs\wordpress\wp-content\plugins\contact-form-7/admin/admin.php:185
279
  msgid "This field requires author's name"
280
  msgstr "این گزینه نیازمند نام نویسنده است"
281
 
282
- #: e:\mohammad\xampp2\htdocs\wordpress\wp-content\plugins\contact-form-7/admin/admin.php:186
283
  msgid "This field requires author's URL"
284
  msgstr "این گزینه نیازمند آدرس اینترنتی نویسنده است"
285
 
286
- #: e:\mohammad\xampp2\htdocs\wordpress\wp-content\plugins\contact-form-7/admin/admin.php:187
287
  msgid "This field requires author's email address"
288
  msgstr "این گزینه نیازمند آدرس پست الکترونیک نویسنده است"
289
 
290
- #: e:\mohammad\xampp2\htdocs\wordpress\wp-content\plugins\contact-form-7/admin/admin.php:188
291
  msgid "Copy this code and paste it into the form left."
292
  msgstr "این کد را در فرم خود بچسبانید"
293
 
294
- #: e:\mohammad\xampp2\htdocs\wordpress\wp-content\plugins\contact-form-7/admin/admin.php:189
295
  msgid "Foreground color"
296
  msgstr "رنگ پیش زمینه"
297
 
298
- #: e:\mohammad\xampp2\htdocs\wordpress\wp-content\plugins\contact-form-7/admin/admin.php:190
299
  msgid "Background color"
300
  msgstr "رنگ پس زمینه"
301
 
302
- #: e:\mohammad\xampp2\htdocs\wordpress\wp-content\plugins\contact-form-7/admin/admin.php:191
303
  msgid "Image size"
304
  msgstr "اندازه تصویر"
305
 
306
- #: e:\mohammad\xampp2\htdocs\wordpress\wp-content\plugins\contact-form-7/admin/admin.php:192
307
  msgid "Small"
308
  msgstr "کوچک"
309
 
310
- #: e:\mohammad\xampp2\htdocs\wordpress\wp-content\plugins\contact-form-7/admin/admin.php:193
311
  msgid "Medium"
312
  msgstr "متوسط"
313
 
314
- #: e:\mohammad\xampp2\htdocs\wordpress\wp-content\plugins\contact-form-7/admin/admin.php:194
315
  msgid "Large"
316
  msgstr "بزرگ"
317
 
318
- #: e:\mohammad\xampp2\htdocs\wordpress\wp-content\plugins\contact-form-7/admin/admin.php:195
319
  msgid "Image settings"
320
  msgstr "تنظیمات تصویر"
321
 
322
- #: e:\mohammad\xampp2\htdocs\wordpress\wp-content\plugins\contact-form-7/admin/admin.php:196
323
  msgid "Input field settings"
324
  msgstr "قرار دادن تنظیمات گزینه"
325
 
326
- #: e:\mohammad\xampp2\htdocs\wordpress\wp-content\plugins\contact-form-7/admin/admin.php:197
327
  msgid "For image"
328
  msgstr "برای تصویر"
329
 
330
- #: e:\mohammad\xampp2\htdocs\wordpress\wp-content\plugins\contact-form-7/admin/admin.php:198
331
  msgid "For input field"
332
  msgstr "برای گزینه ورودی"
333
 
334
- #: e:\mohammad\xampp2\htdocs\wordpress\wp-content\plugins\contact-form-7/admin/admin.php:199
335
  msgid "* One choice per line."
336
- msgstr "* یک انتخاب در هر خط"
337
 
338
- #: e:\mohammad\xampp2\htdocs\wordpress\wp-content\plugins\contact-form-7/admin/admin.php:200
339
  msgid "Show"
340
  msgstr "نمایش"
341
 
342
- #: e:\mohammad\xampp2\htdocs\wordpress\wp-content\plugins\contact-form-7/admin/admin.php:201
343
  msgid "Hide"
344
  msgstr "پنهان"
345
 
346
- #: e:\mohammad\xampp2\htdocs\wordpress\wp-content\plugins\contact-form-7/admin/admin.php:202
347
  msgid "File size limit"
348
  msgstr "حجم مجاز آپلود"
349
 
350
- #: e:\mohammad\xampp2\htdocs\wordpress\wp-content\plugins\contact-form-7/admin/admin.php:203
351
  msgid "Acceptable file types"
352
  msgstr "فایل های مجاز"
353
 
354
- #: e:\mohammad\xampp2\htdocs\wordpress\wp-content\plugins\contact-form-7/admin/admin.php:204
355
  msgid "Note: To use CAPTCHA, you need Really Simple CAPTCHA plugin installed."
356
  msgstr "تذکر: جهت استفاده از تصاویرامنیتی (کپچا) باید افزونه Really Simple CAPTCHA را نصب نمائید."
357
 
358
- #: e:\mohammad\xampp2\htdocs\wordpress\wp-content\plugins\contact-form-7/admin/admin.php:223
359
  msgid "Contact form created."
360
  msgstr "فرم تماس ایجاد شد"
361
 
362
- #: e:\mohammad\xampp2\htdocs\wordpress\wp-content\plugins\contact-form-7/admin/admin.php:226
363
  msgid "Contact form saved."
364
  msgstr "فرم تماس ذخیره شد"
365
 
366
- #: e:\mohammad\xampp2\htdocs\wordpress\wp-content\plugins\contact-form-7/admin/admin.php:229
367
  msgid "Contact form deleted."
368
  msgstr "فرم تماس حذف گردید"
369
 
370
- #: e:\mohammad\xampp2\htdocs\wordpress\wp-content\plugins\contact-form-7/admin/admin.php:240
371
- msgid "Untitled"
372
- msgstr "بی نام و نشان"
373
 
374
  #: e:\mohammad\xampp2\htdocs\wordpress\wp-content\plugins\contact-form-7/admin/admin.php:253
375
- msgid "Your Name"
376
- msgstr "نام و نام خانوادگی"
377
 
378
- #: e:\mohammad\xampp2\htdocs\wordpress\wp-content\plugins\contact-form-7/admin/admin.php:253
379
- #: e:\mohammad\xampp2\htdocs\wordpress\wp-content\plugins\contact-form-7/admin/admin.php:255
380
- msgid "(required)"
381
- msgstr "(گزینه الزامی)"
382
-
383
- #: e:\mohammad\xampp2\htdocs\wordpress\wp-content\plugins\contact-form-7/admin/admin.php:255
384
- msgid "Your Email"
385
- msgstr "پست الکترونیک"
386
-
387
- #: e:\mohammad\xampp2\htdocs\wordpress\wp-content\plugins\contact-form-7/admin/admin.php:257
388
- msgid "Subject"
389
- msgstr "موضوع"
390
-
391
- #: e:\mohammad\xampp2\htdocs\wordpress\wp-content\plugins\contact-form-7/admin/admin.php:259
392
- msgid "Your Message"
393
- msgstr "پیغام"
394
-
395
- #: e:\mohammad\xampp2\htdocs\wordpress\wp-content\plugins\contact-form-7/admin/admin.php:261
396
- #: e:\mohammad\xampp2\htdocs\wordpress\wp-content\plugins\contact-form-7/includes/classes.php:411
397
- msgid "Send"
398
- msgstr "ارسال"
399
 
400
- #: e:\mohammad\xampp2\htdocs\wordpress\wp-content\plugins\contact-form-7/admin/admin.php:334
401
  msgid "Settings"
402
- msgstr "تنظیمات تصویر"
403
 
404
- #: e:\mohammad\xampp2\htdocs\wordpress\wp-content\plugins\contact-form-7/admin/admin.php:355
405
  msgid "Contact Form 7 needs your support. Please donate today."
406
  msgstr "فرم تماس نسخه 7 به یاری شما نیازمند است. لطفاً کمک های مالی خود را برای ما ارسال فرمائید."
407
 
408
- #: e:\mohammad\xampp2\htdocs\wordpress\wp-content\plugins\contact-form-7/admin/admin.php:356
409
  msgid "Is this plugin useful for you? If you like it, please help the developer."
410
  msgstr "آیا این افزونه برای شما مفید بوده اس؟ در صورتیکه از آن رضایتمندید، لطفاً به توسعه دهنده آن کمک نمائید."
411
 
412
- #: e:\mohammad\xampp2\htdocs\wordpress\wp-content\plugins\contact-form-7/admin/admin.php:357
413
  msgid "Your contribution is needed for making this plugin better."
414
  msgstr "برای بهبود این افزونه به مشارکت صمیمانه شما نیازمندیم."
415
 
416
- #: e:\mohammad\xampp2\htdocs\wordpress\wp-content\plugins\contact-form-7/admin/admin.php:358
417
  msgid "Developing a plugin and providing user support is really hard work. Please help."
418
  msgstr "توسعه افزونه و ارائه خدمات پشتیبانی کار بسیار طاقت فرسایی است. لطفاً ما را یاری نمائید."
419
 
420
- #: e:\mohammad\xampp2\htdocs\wordpress\wp-content\plugins\contact-form-7/includes/classes.php:352
421
- msgid "To use CAPTCHA, you need <a href=\"http://wordpress.org/extend/plugins/really-simple-captcha/\">Really Simple CAPTCHA</a> plugin installed."
422
- msgstr "برای استفاده از تصاویر امنیتی (کپچا)، باید <a href=\"http://wordpress.org/extend/plugins/really-simple-captcha/\">Really Simple CAPTCHA</a> را نصب نمائید."
423
 
424
  #: e:\mohammad\xampp2\htdocs\wordpress\wp-content\plugins\contact-form-7/includes/functions.php:6
425
  msgid "Your message was sent successfully. Thanks."
@@ -436,7 +437,7 @@ msgstr "تائید ناموفق. لطفاً گزینه مورد نظر را تا
436
 
437
  #: e:\mohammad\xampp2\htdocs\wordpress\wp-content\plugins\contact-form-7/includes/functions.php:14
438
  msgid "Please accept the terms to proceed."
439
- msgstr "لطفاً جهت ادامه شرایط ارسال نامه را پذیرفته و تائید نمائید."
440
 
441
  #: e:\mohammad\xampp2\htdocs\wordpress\wp-content\plugins\contact-form-7/includes/functions.php:16
442
  msgid "Email address seems invalid."
@@ -466,6 +467,45 @@ msgstr "الصاق این نوع فایل مجاز نمی باشد."
466
  msgid "This file is too large."
467
  msgstr "اندازه این فایل بیش از حد بزرگ است."
468
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
469
  #~ msgid "Delete this contact form"
470
  #~ msgstr "حذف این فرم تماس"
471
 
2
  msgstr ""
3
  "Project-Id-Version: Contact Form 7\n"
4
  "Report-Msgid-Bugs-To: \n"
5
+ "POT-Creation-Date: 2009-10-14 12:03+0330\n"
6
  "PO-Revision-Date: \n"
7
  "Last-Translator: Mohammad Musavi <mohammad at musavis.com>\n"
8
  "Language-Team: musavis.com <mohammad at musavis.com>\n"
15
  "X-Poedit-Basepath: e:\\mohammad\\xampp2\\htdocs\\wordpress\\wp-content\\plugins\\contact-form-7\\\n"
16
  "X-Poedit-SearchPath-0: e:\\mohammad\\xampp2\\htdocs\\wordpress\\wp-content\\plugins\\contact-form-7\n"
17
 
18
+ #: e:\mohammad\xampp2\htdocs\wordpress\wp-content\plugins\contact-form-7/admin/admin-panel.php:9
19
+ #, php-format
20
+ 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."
21
+ msgstr "جدول پایگاه داده برای افزونه فرم تماس 7 وجود ندارد. برای کارکرد آن باید <a href=\"%s\">آنرا ایجاد کنید</a>"
22
 
23
+ #: e:\mohammad\xampp2\htdocs\wordpress\wp-content\plugins\contact-form-7/admin/admin-panel.php:12
24
+ msgid "<strong>The database table for Contact Form 7 does not exist.</strong>"
25
+ msgstr "جدول پایگاه داده برای افزونه فرم تماس 7 وجود ندارد."
26
+
27
+ #: e:\mohammad\xampp2\htdocs\wordpress\wp-content\plugins\contact-form-7/admin/admin-panel.php:17
28
+ #: e:\mohammad\xampp2\htdocs\wordpress\wp-content\plugins\contact-form-7/admin/admin-panel.php:30
29
+ #: e:\mohammad\xampp2\htdocs\wordpress\wp-content\plugins\contact-form-7/admin/admin.php:121
30
+ #: e:\mohammad\xampp2\htdocs\wordpress\wp-content\plugins\contact-form-7/includes/functions.php:52
31
  msgid "Contact Form 7"
32
  msgstr "فرم تماس نسخه 7"
33
 
34
+ #: e:\mohammad\xampp2\htdocs\wordpress\wp-content\plugins\contact-form-7/admin/admin-panel.php:45
35
  msgid "Add new"
36
  msgstr "جدید"
37
 
38
+ #: e:\mohammad\xampp2\htdocs\wordpress\wp-content\plugins\contact-form-7/admin/admin-panel.php:67
39
  msgid "Copy this code and paste it into your post, page or text widget content."
40
  msgstr "این کد را کپی نموده و در نوشته، برگه یا ابزارک خود بچسبانید."
41
 
42
+ #: e:\mohammad\xampp2\htdocs\wordpress\wp-content\plugins\contact-form-7/admin/admin-panel.php:75
43
+ #: e:\mohammad\xampp2\htdocs\wordpress\wp-content\plugins\contact-form-7/admin/admin-panel.php:332
44
  msgid "Save"
45
  msgstr "ذخیره"
46
 
47
+ #: e:\mohammad\xampp2\htdocs\wordpress\wp-content\plugins\contact-form-7/admin/admin-panel.php:82
48
  msgid "Copy"
49
  msgstr "کپی"
50
 
51
+ #: e:\mohammad\xampp2\htdocs\wordpress\wp-content\plugins\contact-form-7/admin/admin-panel.php:87
52
  msgid "Delete"
53
  msgstr "حذف"
54
 
55
+ #: e:\mohammad\xampp2\htdocs\wordpress\wp-content\plugins\contact-form-7/admin/admin-panel.php:89
56
  msgid ""
57
  "You are about to delete this contact form.\n"
58
  " 'Cancel' to stop, 'OK' to delete."
59
  msgstr "شما در حال حذف این فرم تماس هستید. آیا از حذف این فرم اطمینان دارید؟"
60
 
61
+ #: e:\mohammad\xampp2\htdocs\wordpress\wp-content\plugins\contact-form-7/admin/admin-panel.php:102
62
  msgid "Form"
63
  msgstr "فرم"
64
 
65
+ #: e:\mohammad\xampp2\htdocs\wordpress\wp-content\plugins\contact-form-7/admin/admin-panel.php:120
66
  msgid "Mail"
67
  msgstr "پست الکترونیک"
68
 
69
+ #: e:\mohammad\xampp2\htdocs\wordpress\wp-content\plugins\contact-form-7/admin/admin-panel.php:127
70
+ #: e:\mohammad\xampp2\htdocs\wordpress\wp-content\plugins\contact-form-7/admin/admin-panel.php:188
71
  msgid "To:"
72
  msgstr "گیرنده:"
73
 
74
+ #: e:\mohammad\xampp2\htdocs\wordpress\wp-content\plugins\contact-form-7/admin/admin-panel.php:132
75
+ #: e:\mohammad\xampp2\htdocs\wordpress\wp-content\plugins\contact-form-7/admin/admin-panel.php:193
76
  msgid "From:"
77
  msgstr "فرستنده:"
78
 
79
+ #: e:\mohammad\xampp2\htdocs\wordpress\wp-content\plugins\contact-form-7/admin/admin-panel.php:137
80
+ #: e:\mohammad\xampp2\htdocs\wordpress\wp-content\plugins\contact-form-7/admin/admin-panel.php:198
81
  msgid "Subject:"
82
  msgstr "موضوع:"
83
 
84
+ #: e:\mohammad\xampp2\htdocs\wordpress\wp-content\plugins\contact-form-7/admin/admin-panel.php:144
85
+ #: e:\mohammad\xampp2\htdocs\wordpress\wp-content\plugins\contact-form-7/admin/admin-panel.php:205
86
  msgid "Additional headers:"
87
  msgstr "هدرهای اضافی:"
88
 
89
+ #: e:\mohammad\xampp2\htdocs\wordpress\wp-content\plugins\contact-form-7/admin/admin-panel.php:149
90
+ #: e:\mohammad\xampp2\htdocs\wordpress\wp-content\plugins\contact-form-7/admin/admin-panel.php:210
91
  msgid "File attachments:"
92
  msgstr "فایل های الصاق شده:"
93
 
94
+ #: e:\mohammad\xampp2\htdocs\wordpress\wp-content\plugins\contact-form-7/admin/admin-panel.php:157
95
+ #: e:\mohammad\xampp2\htdocs\wordpress\wp-content\plugins\contact-form-7/admin/admin-panel.php:218
 
 
 
 
 
96
  msgid "Use HTML content type"
97
  msgstr "استفاده از HTML در محتوا"
98
 
99
+ #: e:\mohammad\xampp2\htdocs\wordpress\wp-content\plugins\contact-form-7/admin/admin-panel.php:164
100
+ #: e:\mohammad\xampp2\htdocs\wordpress\wp-content\plugins\contact-form-7/admin/admin-panel.php:225
101
+ #: e:\mohammad\xampp2\htdocs\wordpress\wp-content\plugins\contact-form-7/includes/functions.php:50
102
  msgid "Message body:"
103
  msgstr "متن نامه"
104
 
105
+ #: e:\mohammad\xampp2\htdocs\wordpress\wp-content\plugins\contact-form-7/admin/admin-panel.php:174
106
  msgid "Mail (2)"
107
  msgstr "پست الکترونیک 2"
108
 
109
+ #: e:\mohammad\xampp2\htdocs\wordpress\wp-content\plugins\contact-form-7/admin/admin-panel.php:180
110
  msgid "Use mail (2)"
111
  msgstr "استفاده از پست الکترونیک 2"
112
 
113
+ #: e:\mohammad\xampp2\htdocs\wordpress\wp-content\plugins\contact-form-7/admin/admin-panel.php:235
114
  msgid "Messages"
115
  msgstr "پیغام ها"
116
 
117
+ #: e:\mohammad\xampp2\htdocs\wordpress\wp-content\plugins\contact-form-7/admin/admin-panel.php:243
118
  msgid "Sender's message was sent successfully"
119
  msgstr "پیام با موفقیت ارسال شد."
120
 
121
+ #: e:\mohammad\xampp2\htdocs\wordpress\wp-content\plugins\contact-form-7/admin/admin-panel.php:248
122
  msgid "Sender's message was failed to send"
123
  msgstr "ارسال ناموفق بود"
124
 
125
+ #: e:\mohammad\xampp2\htdocs\wordpress\wp-content\plugins\contact-form-7/admin/admin-panel.php:253
126
  msgid "Akismet judged the sending activity as spamming"
127
  msgstr "آکیسمت متن ارسالی را هرزنامه تشخیص داد"
128
 
129
+ #: e:\mohammad\xampp2\htdocs\wordpress\wp-content\plugins\contact-form-7/admin/admin-panel.php:258
130
  msgid "Validation errors occurred"
131
  msgstr "خطای تائید رخ داد"
132
 
133
+ #: e:\mohammad\xampp2\htdocs\wordpress\wp-content\plugins\contact-form-7/admin/admin-panel.php:263
134
  msgid "There is a field that sender is needed to fill in"
135
  msgstr "ارسال کننده ملزم به تکمیل فیلدهای الزامیست."
136
 
137
+ #: e:\mohammad\xampp2\htdocs\wordpress\wp-content\plugins\contact-form-7/admin/admin-panel.php:268
138
  msgid "Email address that sender entered is invalid"
139
  msgstr "آدرس پست الکترونیک وارد شده نامعتبر به نظر می رسد."
140
 
141
+ #: e:\mohammad\xampp2\htdocs\wordpress\wp-content\plugins\contact-form-7/admin/admin-panel.php:273
142
  msgid "There is a field of term that sender is needed to accept"
143
  msgstr "ارسال کننده فرم ملزم به پذیرش فیلد الزامیست."
144
 
145
+ #: e:\mohammad\xampp2\htdocs\wordpress\wp-content\plugins\contact-form-7/admin/admin-panel.php:278
146
  msgid "Sender doesn't enter the correct answer to the quiz"
147
  msgstr "پاسخ شما به پرسش امنیتی اشتباه است."
148
 
149
+ #: e:\mohammad\xampp2\htdocs\wordpress\wp-content\plugins\contact-form-7/admin/admin-panel.php:283
150
  msgid "The code that sender entered does not match the CAPTCHA"
151
  msgstr "کد امنیتی وارد شده معتبر نیست."
152
 
153
+ #: e:\mohammad\xampp2\htdocs\wordpress\wp-content\plugins\contact-form-7/admin/admin-panel.php:288
154
  msgid "Uploading a file fails for any reason"
155
  msgstr "آپلود فایل به هر علتی با مشکل مواجه می شود."
156
 
157
+ #: e:\mohammad\xampp2\htdocs\wordpress\wp-content\plugins\contact-form-7/admin/admin-panel.php:293
158
  msgid "Uploaded file is not allowed file type"
159
  msgstr "پسوند فایل آپلود شده مجاز نمی باشد."
160
 
161
+ #: e:\mohammad\xampp2\htdocs\wordpress\wp-content\plugins\contact-form-7/admin/admin-panel.php:298
162
  msgid "Uploaded file is too large"
163
  msgstr "حجم فایل آپلود شده بیش از حد مجاز است."
164
 
165
+ #: e:\mohammad\xampp2\htdocs\wordpress\wp-content\plugins\contact-form-7/admin/admin-panel.php:303
166
+ msgid "Uploading a file fails for PHP error"
167
+ msgstr "آپلود فایل به علل خطای PHP با مشکل مواجه شد."
168
+
169
+ #: e:\mohammad\xampp2\htdocs\wordpress\wp-content\plugins\contact-form-7/admin/admin-panel.php:314
170
  msgid "Additional Settings"
171
  msgstr "تنظیمات اضافی"
172
 
173
+ #: e:\mohammad\xampp2\htdocs\wordpress\wp-content\plugins\contact-form-7/admin/admin.php:121
174
+ msgid "Contact"
175
+ msgstr "تماس"
176
+
177
+ #: e:\mohammad\xampp2\htdocs\wordpress\wp-content\plugins\contact-form-7/admin/admin.php:125
178
+ msgid "Edit Contact Forms"
179
+ msgstr "ویرایش فرم های تماس"
180
+
181
+ #: e:\mohammad\xampp2\htdocs\wordpress\wp-content\plugins\contact-form-7/admin/admin.php:125
182
+ msgid "Edit"
183
+ msgstr "ویرایش"
184
+
185
+ #: e:\mohammad\xampp2\htdocs\wordpress\wp-content\plugins\contact-form-7/admin/admin.php:185
186
  msgid "optional"
187
  msgstr "انتخابی"
188
 
189
+ #: e:\mohammad\xampp2\htdocs\wordpress\wp-content\plugins\contact-form-7/admin/admin.php:186
190
  msgid "Generate Tag"
191
  msgstr "برچسب عمومی"
192
 
193
+ #: e:\mohammad\xampp2\htdocs\wordpress\wp-content\plugins\contact-form-7/admin/admin.php:187
194
  msgid "Text field"
195
  msgstr "فیلد متنی"
196
 
197
+ #: e:\mohammad\xampp2\htdocs\wordpress\wp-content\plugins\contact-form-7/admin/admin.php:188
198
  msgid "Email field"
199
  msgstr "فیلد ایمیل"
200
 
201
+ #: e:\mohammad\xampp2\htdocs\wordpress\wp-content\plugins\contact-form-7/admin/admin.php:189
202
  msgid "Text area"
203
  msgstr "فضای متنی"
204
 
205
+ #: e:\mohammad\xampp2\htdocs\wordpress\wp-content\plugins\contact-form-7/admin/admin.php:190
206
  msgid "Drop-down menu"
207
  msgstr "منوی بازشو"
208
 
209
+ #: e:\mohammad\xampp2\htdocs\wordpress\wp-content\plugins\contact-form-7/admin/admin.php:191
210
  msgid "Checkboxes"
211
  msgstr "جعبه علامتگذاری"
212
 
213
+ #: e:\mohammad\xampp2\htdocs\wordpress\wp-content\plugins\contact-form-7/admin/admin.php:192
214
  msgid "Radio buttons"
215
  msgstr "دکمه انتخابی"
216
 
217
+ #: e:\mohammad\xampp2\htdocs\wordpress\wp-content\plugins\contact-form-7/admin/admin.php:193
218
  msgid "Acceptance"
219
  msgstr "پذیرش"
220
 
221
+ #: e:\mohammad\xampp2\htdocs\wordpress\wp-content\plugins\contact-form-7/admin/admin.php:194
222
  msgid "Make this checkbox checked by default?"
223
  msgstr "آیا این جعبه به صورت پیش فرض تیک خورده باشد؟"
224
 
225
+ #: e:\mohammad\xampp2\htdocs\wordpress\wp-content\plugins\contact-form-7/admin/admin.php:195
226
  msgid "Make this checkbox work inversely?"
227
  msgstr "این جعبه بصورت برعکس عمل نماید؟"
228
 
229
+ #: e:\mohammad\xampp2\htdocs\wordpress\wp-content\plugins\contact-form-7/admin/admin.php:196
230
  msgid "* That means visitor who accepts the term unchecks it."
231
  msgstr "* این بدین معناست که کسی که شرایط را می پذیرد آنرا به حالت تیک نخورده در می آورد."
232
 
233
+ #: e:\mohammad\xampp2\htdocs\wordpress\wp-content\plugins\contact-form-7/admin/admin.php:197
234
  msgid "CAPTCHA"
235
  msgstr "کد امنیتی"
236
 
237
+ #: e:\mohammad\xampp2\htdocs\wordpress\wp-content\plugins\contact-form-7/admin/admin.php:198
238
  msgid "Quiz"
239
  msgstr "پرسش"
240
 
241
+ #: e:\mohammad\xampp2\htdocs\wordpress\wp-content\plugins\contact-form-7/admin/admin.php:199
242
  msgid "Quizzes"
243
  msgstr "پرسش ها"
244
 
245
+ #: e:\mohammad\xampp2\htdocs\wordpress\wp-content\plugins\contact-form-7/admin/admin.php:200
246
  msgid "* quiz|answer (e.g. 1+1=?|2)"
247
  msgstr "* پرسش|پاسخ (مثال: 1+1؟|2)"
248
 
249
+ #: e:\mohammad\xampp2\htdocs\wordpress\wp-content\plugins\contact-form-7/admin/admin.php:201
250
  msgid "File upload"
251
  msgstr "آپلود فایل"
252
 
253
+ #: e:\mohammad\xampp2\htdocs\wordpress\wp-content\plugins\contact-form-7/admin/admin.php:202
254
  msgid "bytes"
255
  msgstr "بایت"
256
 
257
+ #: e:\mohammad\xampp2\htdocs\wordpress\wp-content\plugins\contact-form-7/admin/admin.php:203
258
  msgid "Submit button"
259
  msgstr "ارسال"
260
 
261
+ #: e:\mohammad\xampp2\htdocs\wordpress\wp-content\plugins\contact-form-7/admin/admin.php:204
262
  msgid "Name"
263
  msgstr "نام فیلد"
264
 
265
+ #: e:\mohammad\xampp2\htdocs\wordpress\wp-content\plugins\contact-form-7/admin/admin.php:205
266
  msgid "Required field?"
267
  msgstr "گزینه اجباری"
268
 
269
+ #: e:\mohammad\xampp2\htdocs\wordpress\wp-content\plugins\contact-form-7/admin/admin.php:206
270
  msgid "Allow multiple selections?"
271
  msgstr "مجاز به انتخاب چند گزینه به طور همزمان؟"
272
 
273
+ #: e:\mohammad\xampp2\htdocs\wordpress\wp-content\plugins\contact-form-7/admin/admin.php:207
274
  msgid "Insert a blank item as the first option?"
275
  msgstr "آیتم خالی به عنوان اولین انتخاب قرار داده شود؟"
276
 
277
+ #: e:\mohammad\xampp2\htdocs\wordpress\wp-content\plugins\contact-form-7/admin/admin.php:208
278
  msgid "Make checkboxes exclusive?"
279
  msgstr "جعبه های علامتگذاری به صورت انحصاری باشند؟"
280
 
281
+ #: e:\mohammad\xampp2\htdocs\wordpress\wp-content\plugins\contact-form-7/admin/admin.php:209
282
  msgid "Choices"
283
  msgstr "انتخاب ها"
284
 
285
+ #: e:\mohammad\xampp2\htdocs\wordpress\wp-content\plugins\contact-form-7/admin/admin.php:210
286
  msgid "Label"
287
  msgstr "برچسب"
288
 
289
+ #: e:\mohammad\xampp2\htdocs\wordpress\wp-content\plugins\contact-form-7/admin/admin.php:211
290
  msgid "Default value"
291
  msgstr "مقدار پیش فرض"
292
 
293
+ #: e:\mohammad\xampp2\htdocs\wordpress\wp-content\plugins\contact-form-7/admin/admin.php:212
294
  msgid "Akismet"
295
  msgstr "اکیسمت"
296
 
297
+ #: e:\mohammad\xampp2\htdocs\wordpress\wp-content\plugins\contact-form-7/admin/admin.php:213
298
  msgid "This field requires author's name"
299
  msgstr "این گزینه نیازمند نام نویسنده است"
300
 
301
+ #: e:\mohammad\xampp2\htdocs\wordpress\wp-content\plugins\contact-form-7/admin/admin.php:214
302
  msgid "This field requires author's URL"
303
  msgstr "این گزینه نیازمند آدرس اینترنتی نویسنده است"
304
 
305
+ #: e:\mohammad\xampp2\htdocs\wordpress\wp-content\plugins\contact-form-7/admin/admin.php:215
306
  msgid "This field requires author's email address"
307
  msgstr "این گزینه نیازمند آدرس پست الکترونیک نویسنده است"
308
 
309
+ #: e:\mohammad\xampp2\htdocs\wordpress\wp-content\plugins\contact-form-7/admin/admin.php:216
310
  msgid "Copy this code and paste it into the form left."
311
  msgstr "این کد را در فرم خود بچسبانید"
312
 
313
+ #: e:\mohammad\xampp2\htdocs\wordpress\wp-content\plugins\contact-form-7/admin/admin.php:217
314
  msgid "Foreground color"
315
  msgstr "رنگ پیش زمینه"
316
 
317
+ #: e:\mohammad\xampp2\htdocs\wordpress\wp-content\plugins\contact-form-7/admin/admin.php:218
318
  msgid "Background color"
319
  msgstr "رنگ پس زمینه"
320
 
321
+ #: e:\mohammad\xampp2\htdocs\wordpress\wp-content\plugins\contact-form-7/admin/admin.php:219
322
  msgid "Image size"
323
  msgstr "اندازه تصویر"
324
 
325
+ #: e:\mohammad\xampp2\htdocs\wordpress\wp-content\plugins\contact-form-7/admin/admin.php:220
326
  msgid "Small"
327
  msgstr "کوچک"
328
 
329
+ #: e:\mohammad\xampp2\htdocs\wordpress\wp-content\plugins\contact-form-7/admin/admin.php:221
330
  msgid "Medium"
331
  msgstr "متوسط"
332
 
333
+ #: e:\mohammad\xampp2\htdocs\wordpress\wp-content\plugins\contact-form-7/admin/admin.php:222
334
  msgid "Large"
335
  msgstr "بزرگ"
336
 
337
+ #: e:\mohammad\xampp2\htdocs\wordpress\wp-content\plugins\contact-form-7/admin/admin.php:223
338
  msgid "Image settings"
339
  msgstr "تنظیمات تصویر"
340
 
341
+ #: e:\mohammad\xampp2\htdocs\wordpress\wp-content\plugins\contact-form-7/admin/admin.php:224
342
  msgid "Input field settings"
343
  msgstr "قرار دادن تنظیمات گزینه"
344
 
345
+ #: e:\mohammad\xampp2\htdocs\wordpress\wp-content\plugins\contact-form-7/admin/admin.php:225
346
  msgid "For image"
347
  msgstr "برای تصویر"
348
 
349
+ #: e:\mohammad\xampp2\htdocs\wordpress\wp-content\plugins\contact-form-7/admin/admin.php:226
350
  msgid "For input field"
351
  msgstr "برای گزینه ورودی"
352
 
353
+ #: e:\mohammad\xampp2\htdocs\wordpress\wp-content\plugins\contact-form-7/admin/admin.php:227
354
  msgid "* One choice per line."
355
+ msgstr "* یک انتخاب در هر سطر"
356
 
357
+ #: e:\mohammad\xampp2\htdocs\wordpress\wp-content\plugins\contact-form-7/admin/admin.php:228
358
  msgid "Show"
359
  msgstr "نمایش"
360
 
361
+ #: e:\mohammad\xampp2\htdocs\wordpress\wp-content\plugins\contact-form-7/admin/admin.php:229
362
  msgid "Hide"
363
  msgstr "پنهان"
364
 
365
+ #: e:\mohammad\xampp2\htdocs\wordpress\wp-content\plugins\contact-form-7/admin/admin.php:230
366
  msgid "File size limit"
367
  msgstr "حجم مجاز آپلود"
368
 
369
+ #: e:\mohammad\xampp2\htdocs\wordpress\wp-content\plugins\contact-form-7/admin/admin.php:231
370
  msgid "Acceptable file types"
371
  msgstr "فایل های مجاز"
372
 
373
+ #: e:\mohammad\xampp2\htdocs\wordpress\wp-content\plugins\contact-form-7/admin/admin.php:232
374
  msgid "Note: To use CAPTCHA, you need Really Simple CAPTCHA plugin installed."
375
  msgstr "تذکر: جهت استفاده از تصاویرامنیتی (کپچا) باید افزونه Really Simple CAPTCHA را نصب نمائید."
376
 
377
+ #: e:\mohammad\xampp2\htdocs\wordpress\wp-content\plugins\contact-form-7/admin/admin.php:241
378
  msgid "Contact form created."
379
  msgstr "فرم تماس ایجاد شد"
380
 
381
+ #: e:\mohammad\xampp2\htdocs\wordpress\wp-content\plugins\contact-form-7/admin/admin.php:244
382
  msgid "Contact form saved."
383
  msgstr "فرم تماس ذخیره شد"
384
 
385
+ #: e:\mohammad\xampp2\htdocs\wordpress\wp-content\plugins\contact-form-7/admin/admin.php:247
386
  msgid "Contact form deleted."
387
  msgstr "فرم تماس حذف گردید"
388
 
389
+ #: e:\mohammad\xampp2\htdocs\wordpress\wp-content\plugins\contact-form-7/admin/admin.php:250
390
+ msgid "Database table created."
391
+ msgstr "جدول پایگاه داده ایجاد شد."
392
 
393
  #: e:\mohammad\xampp2\htdocs\wordpress\wp-content\plugins\contact-form-7/admin/admin.php:253
394
+ msgid "Failed to create database table."
395
+ msgstr "ایجاد جدول پایگاه داده ناموفق بود."
396
 
397
+ #: e:\mohammad\xampp2\htdocs\wordpress\wp-content\plugins\contact-form-7/admin/admin.php:328
398
+ msgid "Contact form"
399
+ msgstr "فرم تماس"
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
400
 
401
+ #: e:\mohammad\xampp2\htdocs\wordpress\wp-content\plugins\contact-form-7/admin/admin.php:347
402
  msgid "Settings"
403
+ msgstr "تنظیمات"
404
 
405
+ #: e:\mohammad\xampp2\htdocs\wordpress\wp-content\plugins\contact-form-7/admin/admin.php:366
406
  msgid "Contact Form 7 needs your support. Please donate today."
407
  msgstr "فرم تماس نسخه 7 به یاری شما نیازمند است. لطفاً کمک های مالی خود را برای ما ارسال فرمائید."
408
 
409
+ #: e:\mohammad\xampp2\htdocs\wordpress\wp-content\plugins\contact-form-7/admin/admin.php:367
410
  msgid "Is this plugin useful for you? If you like it, please help the developer."
411
  msgstr "آیا این افزونه برای شما مفید بوده اس؟ در صورتیکه از آن رضایتمندید، لطفاً به توسعه دهنده آن کمک نمائید."
412
 
413
+ #: e:\mohammad\xampp2\htdocs\wordpress\wp-content\plugins\contact-form-7/admin/admin.php:368
414
  msgid "Your contribution is needed for making this plugin better."
415
  msgstr "برای بهبود این افزونه به مشارکت صمیمانه شما نیازمندیم."
416
 
417
+ #: e:\mohammad\xampp2\htdocs\wordpress\wp-content\plugins\contact-form-7/admin/admin.php:369
418
  msgid "Developing a plugin and providing user support is really hard work. Please help."
419
  msgstr "توسعه افزونه و ارائه خدمات پشتیبانی کار بسیار طاقت فرسایی است. لطفاً ما را یاری نمائید."
420
 
421
+ #: e:\mohammad\xampp2\htdocs\wordpress\wp-content\plugins\contact-form-7/includes/classes.php:562
422
+ msgid "Untitled"
423
+ msgstr "بی نام و نشان"
424
 
425
  #: e:\mohammad\xampp2\htdocs\wordpress\wp-content\plugins\contact-form-7/includes/functions.php:6
426
  msgid "Your message was sent successfully. Thanks."
437
 
438
  #: e:\mohammad\xampp2\htdocs\wordpress\wp-content\plugins\contact-form-7/includes/functions.php:14
439
  msgid "Please accept the terms to proceed."
440
+ msgstr "لطفاً برای ادامه، شرایط ارسال نامه را پذیرفته و تائید نمائید."
441
 
442
  #: e:\mohammad\xampp2\htdocs\wordpress\wp-content\plugins\contact-form-7/includes/functions.php:16
443
  msgid "Email address seems invalid."
467
  msgid "This file is too large."
468
  msgstr "اندازه این فایل بیش از حد بزرگ است."
469
 
470
+ #: e:\mohammad\xampp2\htdocs\wordpress\wp-content\plugins\contact-form-7/includes/functions.php:30
471
+ msgid "Failed to upload file. Error occurred."
472
+ msgstr "الصاق فایل ناموفق بود. خطایی رخ داد."
473
+
474
+ #: e:\mohammad\xampp2\htdocs\wordpress\wp-content\plugins\contact-form-7/includes/functions.php:35
475
+ msgid "Your Name"
476
+ msgstr "نام و نام خانوادگی"
477
+
478
+ #: e:\mohammad\xampp2\htdocs\wordpress\wp-content\plugins\contact-form-7/includes/functions.php:35
479
+ #: e:\mohammad\xampp2\htdocs\wordpress\wp-content\plugins\contact-form-7/includes/functions.php:37
480
+ msgid "(required)"
481
+ msgstr "(گزینه الزامی)"
482
+
483
+ #: e:\mohammad\xampp2\htdocs\wordpress\wp-content\plugins\contact-form-7/includes/functions.php:37
484
+ msgid "Your Email"
485
+ msgstr "پست الکترونیک"
486
+
487
+ #: e:\mohammad\xampp2\htdocs\wordpress\wp-content\plugins\contact-form-7/includes/functions.php:39
488
+ msgid "Subject"
489
+ msgstr "موضوع"
490
+
491
+ #: e:\mohammad\xampp2\htdocs\wordpress\wp-content\plugins\contact-form-7/includes/functions.php:41
492
+ msgid "Your Message"
493
+ msgstr "پیغام"
494
+
495
+ #: e:\mohammad\xampp2\htdocs\wordpress\wp-content\plugins\contact-form-7/includes/functions.php:43
496
+ msgid "Send"
497
+ msgstr "ارسال"
498
+
499
+ #: e:\mohammad\xampp2\htdocs\wordpress\wp-content\plugins\contact-form-7/includes/functions.php:51
500
+ msgid "This mail is created by Contact Form 7 plugin for WordPress."
501
+ msgstr "این نامه با استفاده از افزونه فرم تماس 7 ایجاد شده است."
502
+
503
+ #: e:\mohammad\xampp2\htdocs\wordpress\wp-content\plugins\contact-form-7/modules/captcha.php:62
504
+ msgid "To use CAPTCHA, you need <a href=\"http://wordpress.org/extend/plugins/really-simple-captcha/\">Really Simple CAPTCHA</a> plugin installed."
505
+ msgstr "برای استفاده از تصاویر امنیتی (کپچا)، باید <a href=\"http://wordpress.org/extend/plugins/really-simple-captcha/\">Really Simple CAPTCHA</a> را نصب نمائید."
506
+
507
+ #~ msgid "(You need WordPress 2.7 or greater to use this feature)"
508
+ #~ msgstr "(جهت استفاده از این قابلیت نیاز به وردپرس نسخه 2.7 به بالا دارید)"
509
  #~ msgid "Delete this contact form"
510
  #~ msgstr "حذف این فرم تماس"
511
 
languages/wpcf7-ja.mo CHANGED
Binary file
languages/wpcf7-ja.po CHANGED
@@ -2,8 +2,8 @@ msgid ""
2
  msgstr ""
3
  "Project-Id-Version: Contact Form 7\n"
4
  "Report-Msgid-Bugs-To: \n"
5
- "POT-Creation-Date: 2009-09-26 04:03+0900\n"
6
- "PO-Revision-Date: 2009-09-26 04:05+0900\n"
7
  "Last-Translator: Takayuki Miyoshi <takayukister@gmail.com>\n"
8
  "Language-Team: Takayuki Miyoshi <takayukister@gmail.com>\n"
9
  "MIME-Version: 1.0\n"
@@ -29,7 +29,6 @@ msgstr "<strong>Contact Form 7 のデータベーステーブルがありませ
29
  #: contact-form-7/admin/admin-panel.php:17
30
  #: contact-form-7/admin/admin-panel.php:30
31
  #: contact-form-7/admin/admin.php:121
32
- #: contact-form-7/includes/functions.php:52
33
  msgid "Contact Form 7"
34
  msgstr "Contact Form 7"
35
 
@@ -42,7 +41,7 @@ msgid "Copy this code and paste it into your post, page or text widget content."
42
  msgstr "このコードをコピーして、投稿、ページ、またはテキストウィジェットの本文内にペーストしてください。"
43
 
44
  #: contact-form-7/admin/admin-panel.php:75
45
- #: contact-form-7/admin/admin-panel.php:332
46
  msgid "Save"
47
  msgstr "保存"
48
 
@@ -62,115 +61,116 @@ msgstr ""
62
  "このコンタクトフォームを削除しようとしています。\n"
63
  " 'キャンセル' で中止、 'OK' で削除します。"
64
 
65
- #: contact-form-7/admin/admin-panel.php:102
66
  msgid "Form"
67
  msgstr "フォーム"
68
 
69
- #: contact-form-7/admin/admin-panel.php:120
70
  msgid "Mail"
71
  msgstr "メール"
72
 
73
- #: contact-form-7/admin/admin-panel.php:127
74
- #: contact-form-7/admin/admin-panel.php:188
75
  msgid "To:"
76
  msgstr "宛先:"
77
 
78
- #: contact-form-7/admin/admin-panel.php:132
79
- #: contact-form-7/admin/admin-panel.php:193
80
  msgid "From:"
81
  msgstr "差出人:"
82
 
83
- #: contact-form-7/admin/admin-panel.php:137
84
- #: contact-form-7/admin/admin-panel.php:198
85
  msgid "Subject:"
86
  msgstr "件名:"
87
 
88
- #: contact-form-7/admin/admin-panel.php:144
89
- #: contact-form-7/admin/admin-panel.php:205
90
  msgid "Additional headers:"
91
  msgstr "追加ヘッダー:"
92
 
93
- #: contact-form-7/admin/admin-panel.php:149
94
- #: contact-form-7/admin/admin-panel.php:210
95
  msgid "File attachments:"
96
  msgstr "ファイル添付:"
97
 
98
- #: contact-form-7/admin/admin-panel.php:157
99
- #: contact-form-7/admin/admin-panel.php:218
100
  msgid "Use HTML content type"
101
  msgstr "HTML 形式のメールを使用する"
102
 
103
- #: contact-form-7/admin/admin-panel.php:164
104
- #: contact-form-7/admin/admin-panel.php:225
105
  #: contact-form-7/includes/functions.php:50
 
106
  msgid "Message body:"
107
  msgstr "メッセージ本文:"
108
 
109
- #: contact-form-7/admin/admin-panel.php:174
110
  msgid "Mail (2)"
111
  msgstr "メール (2)"
112
 
113
- #: contact-form-7/admin/admin-panel.php:180
114
  msgid "Use mail (2)"
115
  msgstr "メール (2) を使う"
116
 
117
- #: contact-form-7/admin/admin-panel.php:235
118
  msgid "Messages"
119
  msgstr "メッセージ"
120
 
121
- #: contact-form-7/admin/admin-panel.php:243
122
  msgid "Sender's message was sent successfully"
123
  msgstr "メッセージが正常に送信された"
124
 
125
- #: contact-form-7/admin/admin-panel.php:248
126
  msgid "Sender's message was failed to send"
127
  msgstr "メッセージの送信に失敗した"
128
 
129
- #: contact-form-7/admin/admin-panel.php:253
130
  msgid "Akismet judged the sending activity as spamming"
131
  msgstr "Akismet によりスパム行為と判定された"
132
 
133
- #: contact-form-7/admin/admin-panel.php:258
134
  msgid "Validation errors occurred"
135
  msgstr "入力内容に不備が見つかった"
136
 
137
- #: contact-form-7/admin/admin-panel.php:263
138
  msgid "There is a field that sender is needed to fill in"
139
  msgstr "入力必須の項目が入力されていない"
140
 
141
- #: contact-form-7/admin/admin-panel.php:268
142
  msgid "Email address that sender entered is invalid"
143
  msgstr "入力されたメールアドレスの形式が正しくない"
144
 
145
- #: contact-form-7/admin/admin-panel.php:273
146
  msgid "There is a field of term that sender is needed to accept"
147
  msgstr "承諾が必要な項目が承諾されていない"
148
 
149
- #: contact-form-7/admin/admin-panel.php:278
150
  msgid "Sender doesn't enter the correct answer to the quiz"
151
  msgstr "クイズに対する正しい答えが入力されなかった"
152
 
153
- #: contact-form-7/admin/admin-panel.php:283
154
  msgid "The code that sender entered does not match the CAPTCHA"
155
  msgstr "入力されたコードが CAPTCHA に適合していない"
156
 
157
- #: contact-form-7/admin/admin-panel.php:288
158
  msgid "Uploading a file fails for any reason"
159
  msgstr "ファイルのアップロードが何らかの理由により失敗している"
160
 
161
- #: contact-form-7/admin/admin-panel.php:293
162
  msgid "Uploaded file is not allowed file type"
163
  msgstr "アップロードされたファイルが許可されたファイル形式に適合しない"
164
 
165
- #: contact-form-7/admin/admin-panel.php:298
166
  msgid "Uploaded file is too large"
167
  msgstr "アップロードされたファイルが大きすぎる"
168
 
169
- #: contact-form-7/admin/admin-panel.php:303
170
  msgid "Uploading a file fails for PHP error"
171
  msgstr "ファイルのアップロードが PHP のエラーにより失敗している"
172
 
173
- #: contact-form-7/admin/admin-panel.php:314
174
  msgid "Additional Settings"
175
  msgstr "その他の設定"
176
 
@@ -186,243 +186,243 @@ msgstr "コンタクトフォームの編集"
186
  msgid "Edit"
187
  msgstr "編集"
188
 
189
- #: contact-form-7/admin/admin.php:185
190
  msgid "optional"
191
  msgstr "オプション"
192
 
193
- #: contact-form-7/admin/admin.php:186
194
  msgid "Generate Tag"
195
  msgstr "タグの作成"
196
 
197
- #: contact-form-7/admin/admin.php:187
198
  msgid "Text field"
199
  msgstr "テキスト項目"
200
 
201
- #: contact-form-7/admin/admin.php:188
202
  msgid "Email field"
203
  msgstr "メールアドレス項目"
204
 
205
- #: contact-form-7/admin/admin.php:189
206
  msgid "Text area"
207
  msgstr "テキストエリア"
208
 
209
- #: contact-form-7/admin/admin.php:190
210
  msgid "Drop-down menu"
211
  msgstr "ドロップダウン・メニュー"
212
 
213
- #: contact-form-7/admin/admin.php:191
214
  msgid "Checkboxes"
215
  msgstr "チェックボックス"
216
 
217
- #: contact-form-7/admin/admin.php:192
218
  msgid "Radio buttons"
219
  msgstr "ラジオボタン"
220
 
221
- #: contact-form-7/admin/admin.php:193
222
  msgid "Acceptance"
223
  msgstr "承諾の確認"
224
 
225
- #: contact-form-7/admin/admin.php:194
226
  msgid "Make this checkbox checked by default?"
227
  msgstr "初期状態でチェックボックスにチェックを入れますか?"
228
 
229
- #: contact-form-7/admin/admin.php:195
230
  msgid "Make this checkbox work inversely?"
231
  msgstr "チェックボックスを反転させますか?"
232
 
233
- #: contact-form-7/admin/admin.php:196
234
  msgid "* That means visitor who accepts the term unchecks it."
235
  msgstr "* つまり、利用者には条項に承諾する場合にチェックボックスのチェックをはずしてもらいます。"
236
 
237
- #: contact-form-7/admin/admin.php:197
238
  msgid "CAPTCHA"
239
  msgstr "CAPTCHA"
240
 
241
- #: contact-form-7/admin/admin.php:198
242
  msgid "Quiz"
243
  msgstr "クイズ"
244
 
245
- #: contact-form-7/admin/admin.php:199
246
  msgid "Quizzes"
247
  msgstr "質問と答え"
248
 
249
- #: contact-form-7/admin/admin.php:200
250
  msgid "* quiz|answer (e.g. 1+1=?|2)"
251
  msgstr "* 質問|答え (例: 1+1=?|2)"
252
 
253
- #: contact-form-7/admin/admin.php:201
254
  msgid "File upload"
255
  msgstr "ファイルのアップロード"
256
 
257
- #: contact-form-7/admin/admin.php:202
258
  msgid "bytes"
259
  msgstr "バイト"
260
 
261
- #: contact-form-7/admin/admin.php:203
262
  msgid "Submit button"
263
  msgstr "送信ボタン"
264
 
265
- #: contact-form-7/admin/admin.php:204
266
  msgid "Name"
267
  msgstr "名前"
268
 
269
- #: contact-form-7/admin/admin.php:205
270
  msgid "Required field?"
271
  msgstr "必須入力の項目ですか?"
272
 
273
- #: contact-form-7/admin/admin.php:206
274
  msgid "Allow multiple selections?"
275
  msgstr "複数選択を可能にしますか?"
276
 
277
- #: contact-form-7/admin/admin.php:207
278
  msgid "Insert a blank item as the first option?"
279
  msgstr "先頭に空の項目を挿入しますか?"
280
 
281
- #: contact-form-7/admin/admin.php:208
282
  msgid "Make checkboxes exclusive?"
283
  msgstr "チェックボックスを排他化しますか?"
284
 
285
- #: contact-form-7/admin/admin.php:209
286
  msgid "Choices"
287
  msgstr "選択項目"
288
 
289
- #: contact-form-7/admin/admin.php:210
290
  msgid "Label"
291
  msgstr "ラベル"
292
 
293
- #: contact-form-7/admin/admin.php:211
294
  msgid "Default value"
295
  msgstr "デフォルト値"
296
 
297
- #: contact-form-7/admin/admin.php:212
298
  msgid "Akismet"
299
  msgstr "Akismet"
300
 
301
- #: contact-form-7/admin/admin.php:213
302
  msgid "This field requires author's name"
303
  msgstr "送信者の名前の入力を要求する項目"
304
 
305
- #: contact-form-7/admin/admin.php:214
306
  msgid "This field requires author's URL"
307
  msgstr "送信者の URL の入力を要求する項目"
308
 
309
- #: contact-form-7/admin/admin.php:215
310
  msgid "This field requires author's email address"
311
  msgstr "送信者のメールアドレスの入力を要求する項目"
312
 
313
- #: contact-form-7/admin/admin.php:216
314
  msgid "Copy this code and paste it into the form left."
315
  msgstr "このコードをコピーして、左のフォーム内にペーストしてください。"
316
 
317
- #: contact-form-7/admin/admin.php:217
318
  msgid "Foreground color"
319
  msgstr "文字色"
320
 
321
- #: contact-form-7/admin/admin.php:218
322
  msgid "Background color"
323
  msgstr "背景色"
324
 
325
- #: contact-form-7/admin/admin.php:219
326
  msgid "Image size"
327
  msgstr "画像サイズ"
328
 
329
- #: contact-form-7/admin/admin.php:220
330
  msgid "Small"
331
  msgstr "小"
332
 
333
- #: contact-form-7/admin/admin.php:221
334
  msgid "Medium"
335
  msgstr "中"
336
 
337
- #: contact-form-7/admin/admin.php:222
338
  msgid "Large"
339
  msgstr "大"
340
 
341
- #: contact-form-7/admin/admin.php:223
342
  msgid "Image settings"
343
  msgstr "画像の設定"
344
 
345
- #: contact-form-7/admin/admin.php:224
346
  msgid "Input field settings"
347
  msgstr "入力項目の設定"
348
 
349
- #: contact-form-7/admin/admin.php:225
350
  msgid "For image"
351
  msgstr "画像"
352
 
353
- #: contact-form-7/admin/admin.php:226
354
  msgid "For input field"
355
  msgstr "入力項目"
356
 
357
- #: contact-form-7/admin/admin.php:227
358
  msgid "* One choice per line."
359
  msgstr "* 1行ごとに分けて入力してください。"
360
 
361
- #: contact-form-7/admin/admin.php:228
362
  msgid "Show"
363
  msgstr "表示"
364
 
365
- #: contact-form-7/admin/admin.php:229
366
  msgid "Hide"
367
  msgstr "非表示"
368
 
369
- #: contact-form-7/admin/admin.php:230
370
  msgid "File size limit"
371
  msgstr "ファイルサイズの上限"
372
 
373
- #: contact-form-7/admin/admin.php:231
374
  msgid "Acceptable file types"
375
  msgstr "受け入れ可能なファイル形式"
376
 
377
- #: contact-form-7/admin/admin.php:232
378
  msgid "Note: To use CAPTCHA, you need Really Simple CAPTCHA plugin installed."
379
  msgstr "お知らせ: CAPTCHA を使うには Really Simple CAPTCHA プラグインのインストールが必要です。"
380
 
381
- #: contact-form-7/admin/admin.php:241
382
  msgid "Contact form created."
383
  msgstr "コンタクトフォームが作成されました。"
384
 
385
- #: contact-form-7/admin/admin.php:244
386
  msgid "Contact form saved."
387
  msgstr "コンタクトフォームが保存されました。"
388
 
389
- #: contact-form-7/admin/admin.php:247
390
  msgid "Contact form deleted."
391
  msgstr "コンタクトフォームが削除されました。"
392
 
393
- #: contact-form-7/admin/admin.php:250
394
  msgid "Database table created."
395
  msgstr "データベーステーブルを作成しました。"
396
 
397
- #: contact-form-7/admin/admin.php:253
398
  msgid "Failed to create database table."
399
  msgstr "データベーステーブルを作成できませんでした。"
400
 
401
- #: contact-form-7/admin/admin.php:328
402
  msgid "Contact form"
403
  msgstr "コンタクトフォーム"
404
 
405
- #: contact-form-7/admin/admin.php:347
406
  msgid "Settings"
407
  msgstr "設定"
408
 
409
- #: contact-form-7/admin/admin.php:366
410
  msgid "Contact Form 7 needs your support. Please donate today."
411
  msgstr "Contact Form 7 はあなたの支援を必要としています。寄付をお願いします。"
412
 
413
- #: contact-form-7/admin/admin.php:367
414
  msgid "Is this plugin useful for you? If you like it, please help the developer."
415
  msgstr "このプラグインは役に立っていますか? プラグインの開発を続けるためにあなたの支援が必要です。"
416
 
417
- #: contact-form-7/admin/admin.php:368
418
  msgid "Your contribution is needed for making this plugin better."
419
  msgstr "あなたの貢献があればこのプラグインをもっと良くすることができます。"
420
 
421
- #: contact-form-7/admin/admin.php:369
422
  msgid "Developing a plugin and providing user support is really hard work. Please help."
423
  msgstr "プラグインを開発してユーザーサポートを提供するというのはとても大変な仕事です。ちょっとでいいから助けてください。"
424
 
425
- #: contact-form-7/includes/classes.php:552
426
  msgid "Untitled"
427
  msgstr "無題"
428
 
@@ -501,13 +501,18 @@ msgid "Send"
501
  msgstr "送信"
502
 
503
  #: contact-form-7/includes/functions.php:51
504
- msgid "This mail is created by Contact Form 7 plugin for WordPress."
505
- msgstr "このメールは WordPress の Contact Form 7 プラグインにより作成されました。"
 
 
506
 
507
- #: contact-form-7/modules/captcha.php:62
508
  msgid "To use CAPTCHA, you need <a href=\"http://wordpress.org/extend/plugins/really-simple-captcha/\">Really Simple CAPTCHA</a> plugin installed."
509
  msgstr "CAPTCHA を使うには <a href=\"http://wordpress.org/extend/plugins/really-simple-captcha/\">Really Simple CAPTCHA</a> プラグインのインストールが必要です。"
510
 
 
 
 
511
  #~ msgid "(You need WordPress 2.7 or greater to use this feature)"
512
  #~ msgstr "(この機能を使うためには WordPress 2.7 以上が必要です)"
513
  #~ msgid "Delete this contact form"
2
  msgstr ""
3
  "Project-Id-Version: Contact Form 7\n"
4
  "Report-Msgid-Bugs-To: \n"
5
+ "POT-Creation-Date: 2009-11-12 15:29+0900\n"
6
+ "PO-Revision-Date: 2009-11-12 15:33+0900\n"
7
  "Last-Translator: Takayuki Miyoshi <takayukister@gmail.com>\n"
8
  "Language-Team: Takayuki Miyoshi <takayukister@gmail.com>\n"
9
  "MIME-Version: 1.0\n"
29
  #: contact-form-7/admin/admin-panel.php:17
30
  #: contact-form-7/admin/admin-panel.php:30
31
  #: contact-form-7/admin/admin.php:121
 
32
  msgid "Contact Form 7"
33
  msgstr "Contact Form 7"
34
 
41
  msgstr "このコードをコピーして、投稿、ページ、またはテキストウィジェットの本文内にペーストしてください。"
42
 
43
  #: contact-form-7/admin/admin-panel.php:75
44
+ #: contact-form-7/admin/admin-panel.php:358
45
  msgid "Save"
46
  msgstr "保存"
47
 
61
  "このコンタクトフォームを削除しようとしています。\n"
62
  " 'キャンセル' で中止、 'OK' で削除します。"
63
 
64
+ #: contact-form-7/admin/admin-panel.php:104
65
  msgid "Form"
66
  msgstr "フォーム"
67
 
68
+ #: contact-form-7/admin/admin-panel.php:128
69
  msgid "Mail"
70
  msgstr "メール"
71
 
72
+ #: contact-form-7/admin/admin-panel.php:135
73
+ #: contact-form-7/admin/admin-panel.php:202
74
  msgid "To:"
75
  msgstr "宛先:"
76
 
77
+ #: contact-form-7/admin/admin-panel.php:140
78
+ #: contact-form-7/admin/admin-panel.php:207
79
  msgid "From:"
80
  msgstr "差出人:"
81
 
82
+ #: contact-form-7/admin/admin-panel.php:145
83
+ #: contact-form-7/admin/admin-panel.php:212
84
  msgid "Subject:"
85
  msgstr "件名:"
86
 
87
+ #: contact-form-7/admin/admin-panel.php:152
88
+ #: contact-form-7/admin/admin-panel.php:219
89
  msgid "Additional headers:"
90
  msgstr "追加ヘッダー:"
91
 
92
+ #: contact-form-7/admin/admin-panel.php:157
93
+ #: contact-form-7/admin/admin-panel.php:224
94
  msgid "File attachments:"
95
  msgstr "ファイル添付:"
96
 
97
+ #: contact-form-7/admin/admin-panel.php:165
98
+ #: contact-form-7/admin/admin-panel.php:232
99
  msgid "Use HTML content type"
100
  msgstr "HTML 形式のメールを使用する"
101
 
102
+ #: contact-form-7/admin/admin-panel.php:172
103
+ #: contact-form-7/admin/admin-panel.php:239
104
  #: contact-form-7/includes/functions.php:50
105
+ #: contact-form-7/includes/functions.php:61
106
  msgid "Message body:"
107
  msgstr "メッセージ本文:"
108
 
109
+ #: contact-form-7/admin/admin-panel.php:188
110
  msgid "Mail (2)"
111
  msgstr "メール (2)"
112
 
113
+ #: contact-form-7/admin/admin-panel.php:194
114
  msgid "Use mail (2)"
115
  msgstr "メール (2) を使う"
116
 
117
+ #: contact-form-7/admin/admin-panel.php:255
118
  msgid "Messages"
119
  msgstr "メッセージ"
120
 
121
+ #: contact-form-7/admin/admin-panel.php:263
122
  msgid "Sender's message was sent successfully"
123
  msgstr "メッセージが正常に送信された"
124
 
125
+ #: contact-form-7/admin/admin-panel.php:268
126
  msgid "Sender's message was failed to send"
127
  msgstr "メッセージの送信に失敗した"
128
 
129
+ #: contact-form-7/admin/admin-panel.php:273
130
  msgid "Akismet judged the sending activity as spamming"
131
  msgstr "Akismet によりスパム行為と判定された"
132
 
133
+ #: contact-form-7/admin/admin-panel.php:278
134
  msgid "Validation errors occurred"
135
  msgstr "入力内容に不備が見つかった"
136
 
137
+ #: contact-form-7/admin/admin-panel.php:283
138
  msgid "There is a field that sender is needed to fill in"
139
  msgstr "入力必須の項目が入力されていない"
140
 
141
+ #: contact-form-7/admin/admin-panel.php:288
142
  msgid "Email address that sender entered is invalid"
143
  msgstr "入力されたメールアドレスの形式が正しくない"
144
 
145
+ #: contact-form-7/admin/admin-panel.php:293
146
  msgid "There is a field of term that sender is needed to accept"
147
  msgstr "承諾が必要な項目が承諾されていない"
148
 
149
+ #: contact-form-7/admin/admin-panel.php:298
150
  msgid "Sender doesn't enter the correct answer to the quiz"
151
  msgstr "クイズに対する正しい答えが入力されなかった"
152
 
153
+ #: contact-form-7/admin/admin-panel.php:303
154
  msgid "The code that sender entered does not match the CAPTCHA"
155
  msgstr "入力されたコードが CAPTCHA に適合していない"
156
 
157
+ #: contact-form-7/admin/admin-panel.php:308
158
  msgid "Uploading a file fails for any reason"
159
  msgstr "ファイルのアップロードが何らかの理由により失敗している"
160
 
161
+ #: contact-form-7/admin/admin-panel.php:313
162
  msgid "Uploaded file is not allowed file type"
163
  msgstr "アップロードされたファイルが許可されたファイル形式に適合しない"
164
 
165
+ #: contact-form-7/admin/admin-panel.php:318
166
  msgid "Uploaded file is too large"
167
  msgstr "アップロードされたファイルが大きすぎる"
168
 
169
+ #: contact-form-7/admin/admin-panel.php:323
170
  msgid "Uploading a file fails for PHP error"
171
  msgstr "ファイルのアップロードが PHP のエラーにより失敗している"
172
 
173
+ #: contact-form-7/admin/admin-panel.php:340
174
  msgid "Additional Settings"
175
  msgstr "その他の設定"
176
 
186
  msgid "Edit"
187
  msgstr "編集"
188
 
189
+ #: contact-form-7/admin/admin.php:186
190
  msgid "optional"
191
  msgstr "オプション"
192
 
193
+ #: contact-form-7/admin/admin.php:187
194
  msgid "Generate Tag"
195
  msgstr "タグの作成"
196
 
197
+ #: contact-form-7/admin/admin.php:188
198
  msgid "Text field"
199
  msgstr "テキスト項目"
200
 
201
+ #: contact-form-7/admin/admin.php:189
202
  msgid "Email field"
203
  msgstr "メールアドレス項目"
204
 
205
+ #: contact-form-7/admin/admin.php:190
206
  msgid "Text area"
207
  msgstr "テキストエリア"
208
 
209
+ #: contact-form-7/admin/admin.php:191
210
  msgid "Drop-down menu"
211
  msgstr "ドロップダウン・メニュー"
212
 
213
+ #: contact-form-7/admin/admin.php:192
214
  msgid "Checkboxes"
215
  msgstr "チェックボックス"
216
 
217
+ #: contact-form-7/admin/admin.php:193
218
  msgid "Radio buttons"
219
  msgstr "ラジオボタン"
220
 
221
+ #: contact-form-7/admin/admin.php:194
222
  msgid "Acceptance"
223
  msgstr "承諾の確認"
224
 
225
+ #: contact-form-7/admin/admin.php:195
226
  msgid "Make this checkbox checked by default?"
227
  msgstr "初期状態でチェックボックスにチェックを入れますか?"
228
 
229
+ #: contact-form-7/admin/admin.php:196
230
  msgid "Make this checkbox work inversely?"
231
  msgstr "チェックボックスを反転させますか?"
232
 
233
+ #: contact-form-7/admin/admin.php:197
234
  msgid "* That means visitor who accepts the term unchecks it."
235
  msgstr "* つまり、利用者には条項に承諾する場合にチェックボックスのチェックをはずしてもらいます。"
236
 
237
+ #: contact-form-7/admin/admin.php:198
238
  msgid "CAPTCHA"
239
  msgstr "CAPTCHA"
240
 
241
+ #: contact-form-7/admin/admin.php:199
242
  msgid "Quiz"
243
  msgstr "クイズ"
244
 
245
+ #: contact-form-7/admin/admin.php:200
246
  msgid "Quizzes"
247
  msgstr "質問と答え"
248
 
249
+ #: contact-form-7/admin/admin.php:201
250
  msgid "* quiz|answer (e.g. 1+1=?|2)"
251
  msgstr "* 質問|答え (例: 1+1=?|2)"
252
 
253
+ #: contact-form-7/admin/admin.php:202
254
  msgid "File upload"
255
  msgstr "ファイルのアップロード"
256
 
257
+ #: contact-form-7/admin/admin.php:203
258
  msgid "bytes"
259
  msgstr "バイト"
260
 
261
+ #: contact-form-7/admin/admin.php:204
262
  msgid "Submit button"
263
  msgstr "送信ボタン"
264
 
265
+ #: contact-form-7/admin/admin.php:205
266
  msgid "Name"
267
  msgstr "名前"
268
 
269
+ #: contact-form-7/admin/admin.php:206
270
  msgid "Required field?"
271
  msgstr "必須入力の項目ですか?"
272
 
273
+ #: contact-form-7/admin/admin.php:207
274
  msgid "Allow multiple selections?"
275
  msgstr "複数選択を可能にしますか?"
276
 
277
+ #: contact-form-7/admin/admin.php:208
278
  msgid "Insert a blank item as the first option?"
279
  msgstr "先頭に空の項目を挿入しますか?"
280
 
281
+ #: contact-form-7/admin/admin.php:209
282
  msgid "Make checkboxes exclusive?"
283
  msgstr "チェックボックスを排他化しますか?"
284
 
285
+ #: contact-form-7/admin/admin.php:210
286
  msgid "Choices"
287
  msgstr "選択項目"
288
 
289
+ #: contact-form-7/admin/admin.php:211
290
  msgid "Label"
291
  msgstr "ラベル"
292
 
293
+ #: contact-form-7/admin/admin.php:212
294
  msgid "Default value"
295
  msgstr "デフォルト値"
296
 
297
+ #: contact-form-7/admin/admin.php:213
298
  msgid "Akismet"
299
  msgstr "Akismet"
300
 
301
+ #: contact-form-7/admin/admin.php:214
302
  msgid "This field requires author's name"
303
  msgstr "送信者の名前の入力を要求する項目"
304
 
305
+ #: contact-form-7/admin/admin.php:215
306
  msgid "This field requires author's URL"
307
  msgstr "送信者の URL の入力を要求する項目"
308
 
309
+ #: contact-form-7/admin/admin.php:216
310
  msgid "This field requires author's email address"
311
  msgstr "送信者のメールアドレスの入力を要求する項目"
312
 
313
+ #: contact-form-7/admin/admin.php:217
314
  msgid "Copy this code and paste it into the form left."
315
  msgstr "このコードをコピーして、左のフォーム内にペーストしてください。"
316
 
317
+ #: contact-form-7/admin/admin.php:218
318
  msgid "Foreground color"
319
  msgstr "文字色"
320
 
321
+ #: contact-form-7/admin/admin.php:219
322
  msgid "Background color"
323
  msgstr "背景色"
324
 
325
+ #: contact-form-7/admin/admin.php:220
326
  msgid "Image size"
327
  msgstr "画像サイズ"
328
 
329
+ #: contact-form-7/admin/admin.php:221
330
  msgid "Small"
331
  msgstr "小"
332
 
333
+ #: contact-form-7/admin/admin.php:222
334
  msgid "Medium"
335
  msgstr "中"
336
 
337
+ #: contact-form-7/admin/admin.php:223
338
  msgid "Large"
339
  msgstr "大"
340
 
341
+ #: contact-form-7/admin/admin.php:224
342
  msgid "Image settings"
343
  msgstr "画像の設定"
344
 
345
+ #: contact-form-7/admin/admin.php:225
346
  msgid "Input field settings"
347
  msgstr "入力項目の設定"
348
 
349
+ #: contact-form-7/admin/admin.php:226
350
  msgid "For image"
351
  msgstr "画像"
352
 
353
+ #: contact-form-7/admin/admin.php:227
354
  msgid "For input field"
355
  msgstr "入力項目"
356
 
357
+ #: contact-form-7/admin/admin.php:228
358
  msgid "* One choice per line."
359
  msgstr "* 1行ごとに分けて入力してください。"
360
 
361
+ #: contact-form-7/admin/admin.php:229
362
  msgid "Show"
363
  msgstr "表示"
364
 
365
+ #: contact-form-7/admin/admin.php:230
366
  msgid "Hide"
367
  msgstr "非表示"
368
 
369
+ #: contact-form-7/admin/admin.php:231
370
  msgid "File size limit"
371
  msgstr "ファイルサイズの上限"
372
 
373
+ #: contact-form-7/admin/admin.php:232
374
  msgid "Acceptable file types"
375
  msgstr "受け入れ可能なファイル形式"
376
 
377
+ #: contact-form-7/admin/admin.php:233
378
  msgid "Note: To use CAPTCHA, you need Really Simple CAPTCHA plugin installed."
379
  msgstr "お知らせ: CAPTCHA を使うには Really Simple CAPTCHA プラグインのインストールが必要です。"
380
 
381
+ #: contact-form-7/admin/admin.php:242
382
  msgid "Contact form created."
383
  msgstr "コンタクトフォームが作成されました。"
384
 
385
+ #: contact-form-7/admin/admin.php:245
386
  msgid "Contact form saved."
387
  msgstr "コンタクトフォームが保存されました。"
388
 
389
+ #: contact-form-7/admin/admin.php:248
390
  msgid "Contact form deleted."
391
  msgstr "コンタクトフォームが削除されました。"
392
 
393
+ #: contact-form-7/admin/admin.php:251
394
  msgid "Database table created."
395
  msgstr "データベーステーブルを作成しました。"
396
 
397
+ #: contact-form-7/admin/admin.php:254
398
  msgid "Failed to create database table."
399
  msgstr "データベーステーブルを作成できませんでした。"
400
 
401
+ #: contact-form-7/admin/admin.php:329
402
  msgid "Contact form"
403
  msgstr "コンタクトフォーム"
404
 
405
+ #: contact-form-7/admin/admin.php:348
406
  msgid "Settings"
407
  msgstr "設定"
408
 
409
+ #: contact-form-7/admin/admin.php:367
410
  msgid "Contact Form 7 needs your support. Please donate today."
411
  msgstr "Contact Form 7 はあなたの支援を必要としています。寄付をお願いします。"
412
 
413
+ #: contact-form-7/admin/admin.php:368
414
  msgid "Is this plugin useful for you? If you like it, please help the developer."
415
  msgstr "このプラグインは役に立っていますか? プラグインの開発を続けるためにあなたの支援が必要です。"
416
 
417
+ #: contact-form-7/admin/admin.php:369
418
  msgid "Your contribution is needed for making this plugin better."
419
  msgstr "あなたの貢献があればこのプラグインをもっと良くすることができます。"
420
 
421
+ #: contact-form-7/admin/admin.php:370
422
  msgid "Developing a plugin and providing user support is really hard work. Please help."
423
  msgstr "プラグインを開発してユーザーサポートを提供するというのはとても大変な仕事です。ちょっとでいいから助けてください。"
424
 
425
+ #: contact-form-7/includes/classes.php:564
426
  msgid "Untitled"
427
  msgstr "無題"
428
 
501
  msgstr "送信"
502
 
503
  #: contact-form-7/includes/functions.php:51
504
+ #: contact-form-7/includes/functions.php:62
505
+ #, php-format
506
+ msgid "This mail is sent via contact form on %1$s %2$s"
507
+ msgstr "このメールは %1$s %2$s のお問い合わせフォームから送信されました"
508
 
509
+ #: contact-form-7/modules/captcha.php:65
510
  msgid "To use CAPTCHA, you need <a href=\"http://wordpress.org/extend/plugins/really-simple-captcha/\">Really Simple CAPTCHA</a> plugin installed."
511
  msgstr "CAPTCHA を使うには <a href=\"http://wordpress.org/extend/plugins/really-simple-captcha/\">Really Simple CAPTCHA</a> プラグインのインストールが必要です。"
512
 
513
+ #~ msgid "This mail is created by Contact Form 7 plugin for WordPress."
514
+ #~ msgstr ""
515
+ #~ "このメールは WordPress の Contact Form 7 プラグインにより作成されました。"
516
  #~ msgid "(You need WordPress 2.7 or greater to use this feature)"
517
  #~ msgstr "(この機能を使うためには WordPress 2.7 以上が必要です)"
518
  #~ msgid "Delete this contact form"
languages/wpcf7.pot CHANGED
@@ -2,8 +2,8 @@ msgid ""
2
  msgstr ""
3
  "Project-Id-Version: Contact Form 7\n"
4
  "Report-Msgid-Bugs-To: \n"
5
- "POT-Creation-Date: 2009-09-26 04:03+0900\n"
6
- "PO-Revision-Date: 2009-09-26 04:04+0900\n"
7
  "Last-Translator: Takayuki Miyoshi <takayukister@gmail.com>\n"
8
  "Language-Team: \n"
9
  "MIME-Version: 1.0\n"
@@ -27,7 +27,6 @@ msgstr ""
27
  #: contact-form-7/admin/admin-panel.php:17
28
  #: contact-form-7/admin/admin-panel.php:30
29
  #: contact-form-7/admin/admin.php:121
30
- #: contact-form-7/includes/functions.php:52
31
  msgid "Contact Form 7"
32
  msgstr ""
33
 
@@ -40,7 +39,7 @@ msgid "Copy this code and paste it into your post, page or text widget content."
40
  msgstr ""
41
 
42
  #: contact-form-7/admin/admin-panel.php:75
43
- #: contact-form-7/admin/admin-panel.php:332
44
  msgid "Save"
45
  msgstr ""
46
 
@@ -58,115 +57,116 @@ msgid ""
58
  " 'Cancel' to stop, 'OK' to delete."
59
  msgstr ""
60
 
61
- #: contact-form-7/admin/admin-panel.php:102
62
  msgid "Form"
63
  msgstr ""
64
 
65
- #: contact-form-7/admin/admin-panel.php:120
66
  msgid "Mail"
67
  msgstr ""
68
 
69
- #: contact-form-7/admin/admin-panel.php:127
70
- #: contact-form-7/admin/admin-panel.php:188
71
  msgid "To:"
72
  msgstr ""
73
 
74
- #: contact-form-7/admin/admin-panel.php:132
75
- #: contact-form-7/admin/admin-panel.php:193
76
  msgid "From:"
77
  msgstr ""
78
 
79
- #: contact-form-7/admin/admin-panel.php:137
80
- #: contact-form-7/admin/admin-panel.php:198
81
  msgid "Subject:"
82
  msgstr ""
83
 
84
- #: contact-form-7/admin/admin-panel.php:144
85
- #: contact-form-7/admin/admin-panel.php:205
86
  msgid "Additional headers:"
87
  msgstr ""
88
 
89
- #: contact-form-7/admin/admin-panel.php:149
90
- #: contact-form-7/admin/admin-panel.php:210
91
  msgid "File attachments:"
92
  msgstr ""
93
 
94
- #: contact-form-7/admin/admin-panel.php:157
95
- #: contact-form-7/admin/admin-panel.php:218
96
  msgid "Use HTML content type"
97
  msgstr ""
98
 
99
- #: contact-form-7/admin/admin-panel.php:164
100
- #: contact-form-7/admin/admin-panel.php:225
101
  #: contact-form-7/includes/functions.php:50
 
102
  msgid "Message body:"
103
  msgstr ""
104
 
105
- #: contact-form-7/admin/admin-panel.php:174
106
  msgid "Mail (2)"
107
  msgstr ""
108
 
109
- #: contact-form-7/admin/admin-panel.php:180
110
  msgid "Use mail (2)"
111
  msgstr ""
112
 
113
- #: contact-form-7/admin/admin-panel.php:235
114
  msgid "Messages"
115
  msgstr ""
116
 
117
- #: contact-form-7/admin/admin-panel.php:243
118
  msgid "Sender's message was sent successfully"
119
  msgstr ""
120
 
121
- #: contact-form-7/admin/admin-panel.php:248
122
  msgid "Sender's message was failed to send"
123
  msgstr ""
124
 
125
- #: contact-form-7/admin/admin-panel.php:253
126
  msgid "Akismet judged the sending activity as spamming"
127
  msgstr ""
128
 
129
- #: contact-form-7/admin/admin-panel.php:258
130
  msgid "Validation errors occurred"
131
  msgstr ""
132
 
133
- #: contact-form-7/admin/admin-panel.php:263
134
  msgid "There is a field that sender is needed to fill in"
135
  msgstr ""
136
 
137
- #: contact-form-7/admin/admin-panel.php:268
138
  msgid "Email address that sender entered is invalid"
139
  msgstr ""
140
 
141
- #: contact-form-7/admin/admin-panel.php:273
142
  msgid "There is a field of term that sender is needed to accept"
143
  msgstr ""
144
 
145
- #: contact-form-7/admin/admin-panel.php:278
146
  msgid "Sender doesn't enter the correct answer to the quiz"
147
  msgstr ""
148
 
149
- #: contact-form-7/admin/admin-panel.php:283
150
  msgid "The code that sender entered does not match the CAPTCHA"
151
  msgstr ""
152
 
153
- #: contact-form-7/admin/admin-panel.php:288
154
  msgid "Uploading a file fails for any reason"
155
  msgstr ""
156
 
157
- #: contact-form-7/admin/admin-panel.php:293
158
  msgid "Uploaded file is not allowed file type"
159
  msgstr ""
160
 
161
- #: contact-form-7/admin/admin-panel.php:298
162
  msgid "Uploaded file is too large"
163
  msgstr ""
164
 
165
- #: contact-form-7/admin/admin-panel.php:303
166
  msgid "Uploading a file fails for PHP error"
167
  msgstr ""
168
 
169
- #: contact-form-7/admin/admin-panel.php:314
170
  msgid "Additional Settings"
171
  msgstr ""
172
 
@@ -182,243 +182,243 @@ msgstr ""
182
  msgid "Edit"
183
  msgstr ""
184
 
185
- #: contact-form-7/admin/admin.php:185
186
  msgid "optional"
187
  msgstr ""
188
 
189
- #: contact-form-7/admin/admin.php:186
190
  msgid "Generate Tag"
191
  msgstr ""
192
 
193
- #: contact-form-7/admin/admin.php:187
194
  msgid "Text field"
195
  msgstr ""
196
 
197
- #: contact-form-7/admin/admin.php:188
198
  msgid "Email field"
199
  msgstr ""
200
 
201
- #: contact-form-7/admin/admin.php:189
202
  msgid "Text area"
203
  msgstr ""
204
 
205
- #: contact-form-7/admin/admin.php:190
206
  msgid "Drop-down menu"
207
  msgstr ""
208
 
209
- #: contact-form-7/admin/admin.php:191
210
  msgid "Checkboxes"
211
  msgstr ""
212
 
213
- #: contact-form-7/admin/admin.php:192
214
  msgid "Radio buttons"
215
  msgstr ""
216
 
217
- #: contact-form-7/admin/admin.php:193
218
  msgid "Acceptance"
219
  msgstr ""
220
 
221
- #: contact-form-7/admin/admin.php:194
222
  msgid "Make this checkbox checked by default?"
223
  msgstr ""
224
 
225
- #: contact-form-7/admin/admin.php:195
226
  msgid "Make this checkbox work inversely?"
227
  msgstr ""
228
 
229
- #: contact-form-7/admin/admin.php:196
230
  msgid "* That means visitor who accepts the term unchecks it."
231
  msgstr ""
232
 
233
- #: contact-form-7/admin/admin.php:197
234
  msgid "CAPTCHA"
235
  msgstr ""
236
 
237
- #: contact-form-7/admin/admin.php:198
238
  msgid "Quiz"
239
  msgstr ""
240
 
241
- #: contact-form-7/admin/admin.php:199
242
  msgid "Quizzes"
243
  msgstr ""
244
 
245
- #: contact-form-7/admin/admin.php:200
246
  msgid "* quiz|answer (e.g. 1+1=?|2)"
247
  msgstr ""
248
 
249
- #: contact-form-7/admin/admin.php:201
250
  msgid "File upload"
251
  msgstr ""
252
 
253
- #: contact-form-7/admin/admin.php:202
254
  msgid "bytes"
255
  msgstr ""
256
 
257
- #: contact-form-7/admin/admin.php:203
258
  msgid "Submit button"
259
  msgstr ""
260
 
261
- #: contact-form-7/admin/admin.php:204
262
  msgid "Name"
263
  msgstr ""
264
 
265
- #: contact-form-7/admin/admin.php:205
266
  msgid "Required field?"
267
  msgstr ""
268
 
269
- #: contact-form-7/admin/admin.php:206
270
  msgid "Allow multiple selections?"
271
  msgstr ""
272
 
273
- #: contact-form-7/admin/admin.php:207
274
  msgid "Insert a blank item as the first option?"
275
  msgstr ""
276
 
277
- #: contact-form-7/admin/admin.php:208
278
  msgid "Make checkboxes exclusive?"
279
  msgstr ""
280
 
281
- #: contact-form-7/admin/admin.php:209
282
  msgid "Choices"
283
  msgstr ""
284
 
285
- #: contact-form-7/admin/admin.php:210
286
  msgid "Label"
287
  msgstr ""
288
 
289
- #: contact-form-7/admin/admin.php:211
290
  msgid "Default value"
291
  msgstr ""
292
 
293
- #: contact-form-7/admin/admin.php:212
294
  msgid "Akismet"
295
  msgstr ""
296
 
297
- #: contact-form-7/admin/admin.php:213
298
  msgid "This field requires author's name"
299
  msgstr ""
300
 
301
- #: contact-form-7/admin/admin.php:214
302
  msgid "This field requires author's URL"
303
  msgstr ""
304
 
305
- #: contact-form-7/admin/admin.php:215
306
  msgid "This field requires author's email address"
307
  msgstr ""
308
 
309
- #: contact-form-7/admin/admin.php:216
310
  msgid "Copy this code and paste it into the form left."
311
  msgstr ""
312
 
313
- #: contact-form-7/admin/admin.php:217
314
  msgid "Foreground color"
315
  msgstr ""
316
 
317
- #: contact-form-7/admin/admin.php:218
318
  msgid "Background color"
319
  msgstr ""
320
 
321
- #: contact-form-7/admin/admin.php:219
322
  msgid "Image size"
323
  msgstr ""
324
 
325
- #: contact-form-7/admin/admin.php:220
326
  msgid "Small"
327
  msgstr ""
328
 
329
- #: contact-form-7/admin/admin.php:221
330
  msgid "Medium"
331
  msgstr ""
332
 
333
- #: contact-form-7/admin/admin.php:222
334
  msgid "Large"
335
  msgstr ""
336
 
337
- #: contact-form-7/admin/admin.php:223
338
  msgid "Image settings"
339
  msgstr ""
340
 
341
- #: contact-form-7/admin/admin.php:224
342
  msgid "Input field settings"
343
  msgstr ""
344
 
345
- #: contact-form-7/admin/admin.php:225
346
  msgid "For image"
347
  msgstr ""
348
 
349
- #: contact-form-7/admin/admin.php:226
350
  msgid "For input field"
351
  msgstr ""
352
 
353
- #: contact-form-7/admin/admin.php:227
354
  msgid "* One choice per line."
355
  msgstr ""
356
 
357
- #: contact-form-7/admin/admin.php:228
358
  msgid "Show"
359
  msgstr ""
360
 
361
- #: contact-form-7/admin/admin.php:229
362
  msgid "Hide"
363
  msgstr ""
364
 
365
- #: contact-form-7/admin/admin.php:230
366
  msgid "File size limit"
367
  msgstr ""
368
 
369
- #: contact-form-7/admin/admin.php:231
370
  msgid "Acceptable file types"
371
  msgstr ""
372
 
373
- #: contact-form-7/admin/admin.php:232
374
  msgid "Note: To use CAPTCHA, you need Really Simple CAPTCHA plugin installed."
375
  msgstr ""
376
 
377
- #: contact-form-7/admin/admin.php:241
378
  msgid "Contact form created."
379
  msgstr ""
380
 
381
- #: contact-form-7/admin/admin.php:244
382
  msgid "Contact form saved."
383
  msgstr ""
384
 
385
- #: contact-form-7/admin/admin.php:247
386
  msgid "Contact form deleted."
387
  msgstr ""
388
 
389
- #: contact-form-7/admin/admin.php:250
390
  msgid "Database table created."
391
  msgstr ""
392
 
393
- #: contact-form-7/admin/admin.php:253
394
  msgid "Failed to create database table."
395
  msgstr ""
396
 
397
- #: contact-form-7/admin/admin.php:328
398
  msgid "Contact form"
399
  msgstr ""
400
 
401
- #: contact-form-7/admin/admin.php:347
402
  msgid "Settings"
403
  msgstr ""
404
 
405
- #: contact-form-7/admin/admin.php:366
406
  msgid "Contact Form 7 needs your support. Please donate today."
407
  msgstr ""
408
 
409
- #: contact-form-7/admin/admin.php:367
410
  msgid "Is this plugin useful for you? If you like it, please help the developer."
411
  msgstr ""
412
 
413
- #: contact-form-7/admin/admin.php:368
414
  msgid "Your contribution is needed for making this plugin better."
415
  msgstr ""
416
 
417
- #: contact-form-7/admin/admin.php:369
418
  msgid "Developing a plugin and providing user support is really hard work. Please help."
419
  msgstr ""
420
 
421
- #: contact-form-7/includes/classes.php:552
422
  msgid "Untitled"
423
  msgstr ""
424
 
@@ -497,10 +497,12 @@ msgid "Send"
497
  msgstr ""
498
 
499
  #: contact-form-7/includes/functions.php:51
500
- msgid "This mail is created by Contact Form 7 plugin for WordPress."
 
 
501
  msgstr ""
502
 
503
- #: contact-form-7/modules/captcha.php:62
504
  msgid "To use CAPTCHA, you need <a href=\"http://wordpress.org/extend/plugins/really-simple-captcha/\">Really Simple CAPTCHA</a> plugin installed."
505
  msgstr ""
506
 
2
  msgstr ""
3
  "Project-Id-Version: Contact Form 7\n"
4
  "Report-Msgid-Bugs-To: \n"
5
+ "POT-Creation-Date: 2009-11-12 15:29+0900\n"
6
+ "PO-Revision-Date: 2009-11-12 15:29+0900\n"
7
  "Last-Translator: Takayuki Miyoshi <takayukister@gmail.com>\n"
8
  "Language-Team: \n"
9
  "MIME-Version: 1.0\n"
27
  #: contact-form-7/admin/admin-panel.php:17
28
  #: contact-form-7/admin/admin-panel.php:30
29
  #: contact-form-7/admin/admin.php:121
 
30
  msgid "Contact Form 7"
31
  msgstr ""
32
 
39
  msgstr ""
40
 
41
  #: contact-form-7/admin/admin-panel.php:75
42
+ #: contact-form-7/admin/admin-panel.php:358
43
  msgid "Save"
44
  msgstr ""
45
 
57
  " 'Cancel' to stop, 'OK' to delete."
58
  msgstr ""
59
 
60
+ #: contact-form-7/admin/admin-panel.php:104
61
  msgid "Form"
62
  msgstr ""
63
 
64
+ #: contact-form-7/admin/admin-panel.php:128
65
  msgid "Mail"
66
  msgstr ""
67
 
68
+ #: contact-form-7/admin/admin-panel.php:135
69
+ #: contact-form-7/admin/admin-panel.php:202
70
  msgid "To:"
71
  msgstr ""
72
 
73
+ #: contact-form-7/admin/admin-panel.php:140
74
+ #: contact-form-7/admin/admin-panel.php:207
75
  msgid "From:"
76
  msgstr ""
77
 
78
+ #: contact-form-7/admin/admin-panel.php:145
79
+ #: contact-form-7/admin/admin-panel.php:212
80
  msgid "Subject:"
81
  msgstr ""
82
 
83
+ #: contact-form-7/admin/admin-panel.php:152
84
+ #: contact-form-7/admin/admin-panel.php:219
85
  msgid "Additional headers:"
86
  msgstr ""
87
 
88
+ #: contact-form-7/admin/admin-panel.php:157
89
+ #: contact-form-7/admin/admin-panel.php:224
90
  msgid "File attachments:"
91
  msgstr ""
92
 
93
+ #: contact-form-7/admin/admin-panel.php:165
94
+ #: contact-form-7/admin/admin-panel.php:232
95
  msgid "Use HTML content type"
96
  msgstr ""
97
 
98
+ #: contact-form-7/admin/admin-panel.php:172
99
+ #: contact-form-7/admin/admin-panel.php:239
100
  #: contact-form-7/includes/functions.php:50
101
+ #: contact-form-7/includes/functions.php:61
102
  msgid "Message body:"
103
  msgstr ""
104
 
105
+ #: contact-form-7/admin/admin-panel.php:188
106
  msgid "Mail (2)"
107
  msgstr ""
108
 
109
+ #: contact-form-7/admin/admin-panel.php:194
110
  msgid "Use mail (2)"
111
  msgstr ""
112
 
113
+ #: contact-form-7/admin/admin-panel.php:255
114
  msgid "Messages"
115
  msgstr ""
116
 
117
+ #: contact-form-7/admin/admin-panel.php:263
118
  msgid "Sender's message was sent successfully"
119
  msgstr ""
120
 
121
+ #: contact-form-7/admin/admin-panel.php:268
122
  msgid "Sender's message was failed to send"
123
  msgstr ""
124
 
125
+ #: contact-form-7/admin/admin-panel.php:273
126
  msgid "Akismet judged the sending activity as spamming"
127
  msgstr ""
128
 
129
+ #: contact-form-7/admin/admin-panel.php:278
130
  msgid "Validation errors occurred"
131
  msgstr ""
132
 
133
+ #: contact-form-7/admin/admin-panel.php:283
134
  msgid "There is a field that sender is needed to fill in"
135
  msgstr ""
136
 
137
+ #: contact-form-7/admin/admin-panel.php:288
138
  msgid "Email address that sender entered is invalid"
139
  msgstr ""
140
 
141
+ #: contact-form-7/admin/admin-panel.php:293
142
  msgid "There is a field of term that sender is needed to accept"
143
  msgstr ""
144
 
145
+ #: contact-form-7/admin/admin-panel.php:298
146
  msgid "Sender doesn't enter the correct answer to the quiz"
147
  msgstr ""
148
 
149
+ #: contact-form-7/admin/admin-panel.php:303
150
  msgid "The code that sender entered does not match the CAPTCHA"
151
  msgstr ""
152
 
153
+ #: contact-form-7/admin/admin-panel.php:308
154
  msgid "Uploading a file fails for any reason"
155
  msgstr ""
156
 
157
+ #: contact-form-7/admin/admin-panel.php:313
158
  msgid "Uploaded file is not allowed file type"
159
  msgstr ""
160
 
161
+ #: contact-form-7/admin/admin-panel.php:318
162
  msgid "Uploaded file is too large"
163
  msgstr ""
164
 
165
+ #: contact-form-7/admin/admin-panel.php:323
166
  msgid "Uploading a file fails for PHP error"
167
  msgstr ""
168
 
169
+ #: contact-form-7/admin/admin-panel.php:340
170
  msgid "Additional Settings"
171
  msgstr ""
172
 
182
  msgid "Edit"
183
  msgstr ""
184
 
185
+ #: contact-form-7/admin/admin.php:186
186
  msgid "optional"
187
  msgstr ""
188
 
189
+ #: contact-form-7/admin/admin.php:187
190
  msgid "Generate Tag"
191
  msgstr ""
192
 
193
+ #: contact-form-7/admin/admin.php:188
194
  msgid "Text field"
195
  msgstr ""
196
 
197
+ #: contact-form-7/admin/admin.php:189
198
  msgid "Email field"
199
  msgstr ""
200
 
201
+ #: contact-form-7/admin/admin.php:190
202
  msgid "Text area"
203
  msgstr ""
204
 
205
+ #: contact-form-7/admin/admin.php:191
206
  msgid "Drop-down menu"
207
  msgstr ""
208
 
209
+ #: contact-form-7/admin/admin.php:192
210
  msgid "Checkboxes"
211
  msgstr ""
212
 
213
+ #: contact-form-7/admin/admin.php:193
214
  msgid "Radio buttons"
215
  msgstr ""
216
 
217
+ #: contact-form-7/admin/admin.php:194
218
  msgid "Acceptance"
219
  msgstr ""
220
 
221
+ #: contact-form-7/admin/admin.php:195
222
  msgid "Make this checkbox checked by default?"
223
  msgstr ""
224
 
225
+ #: contact-form-7/admin/admin.php:196
226
  msgid "Make this checkbox work inversely?"
227
  msgstr ""
228
 
229
+ #: contact-form-7/admin/admin.php:197
230
  msgid "* That means visitor who accepts the term unchecks it."
231
  msgstr ""
232
 
233
+ #: contact-form-7/admin/admin.php:198
234
  msgid "CAPTCHA"
235
  msgstr ""
236
 
237
+ #: contact-form-7/admin/admin.php:199
238
  msgid "Quiz"
239
  msgstr ""
240
 
241
+ #: contact-form-7/admin/admin.php:200
242
  msgid "Quizzes"
243
  msgstr ""
244
 
245
+ #: contact-form-7/admin/admin.php:201
246
  msgid "* quiz|answer (e.g. 1+1=?|2)"
247
  msgstr ""
248
 
249
+ #: contact-form-7/admin/admin.php:202
250
  msgid "File upload"
251
  msgstr ""
252
 
253
+ #: contact-form-7/admin/admin.php:203
254
  msgid "bytes"
255
  msgstr ""
256
 
257
+ #: contact-form-7/admin/admin.php:204
258
  msgid "Submit button"
259
  msgstr ""
260
 
261
+ #: contact-form-7/admin/admin.php:205
262
  msgid "Name"
263
  msgstr ""
264
 
265
+ #: contact-form-7/admin/admin.php:206
266
  msgid "Required field?"
267
  msgstr ""
268
 
269
+ #: contact-form-7/admin/admin.php:207
270
  msgid "Allow multiple selections?"
271
  msgstr ""
272
 
273
+ #: contact-form-7/admin/admin.php:208
274
  msgid "Insert a blank item as the first option?"
275
  msgstr ""
276
 
277
+ #: contact-form-7/admin/admin.php:209
278
  msgid "Make checkboxes exclusive?"
279
  msgstr ""
280
 
281
+ #: contact-form-7/admin/admin.php:210
282
  msgid "Choices"
283
  msgstr ""
284
 
285
+ #: contact-form-7/admin/admin.php:211
286
  msgid "Label"
287
  msgstr ""
288
 
289
+ #: contact-form-7/admin/admin.php:212
290
  msgid "Default value"
291
  msgstr ""
292
 
293
+ #: contact-form-7/admin/admin.php:213
294
  msgid "Akismet"
295
  msgstr ""
296
 
297
+ #: contact-form-7/admin/admin.php:214
298
  msgid "This field requires author's name"
299
  msgstr ""
300
 
301
+ #: contact-form-7/admin/admin.php:215
302
  msgid "This field requires author's URL"
303
  msgstr ""
304
 
305
+ #: contact-form-7/admin/admin.php:216
306
  msgid "This field requires author's email address"
307
  msgstr ""
308
 
309
+ #: contact-form-7/admin/admin.php:217
310
  msgid "Copy this code and paste it into the form left."
311
  msgstr ""
312
 
313
+ #: contact-form-7/admin/admin.php:218
314
  msgid "Foreground color"
315
  msgstr ""
316
 
317
+ #: contact-form-7/admin/admin.php:219
318
  msgid "Background color"
319
  msgstr ""
320
 
321
+ #: contact-form-7/admin/admin.php:220
322
  msgid "Image size"
323
  msgstr ""
324
 
325
+ #: contact-form-7/admin/admin.php:221
326
  msgid "Small"
327
  msgstr ""
328
 
329
+ #: contact-form-7/admin/admin.php:222
330
  msgid "Medium"
331
  msgstr ""
332
 
333
+ #: contact-form-7/admin/admin.php:223
334
  msgid "Large"
335
  msgstr ""
336
 
337
+ #: contact-form-7/admin/admin.php:224
338
  msgid "Image settings"
339
  msgstr ""
340
 
341
+ #: contact-form-7/admin/admin.php:225
342
  msgid "Input field settings"
343
  msgstr ""
344
 
345
+ #: contact-form-7/admin/admin.php:226
346
  msgid "For image"
347
  msgstr ""
348
 
349
+ #: contact-form-7/admin/admin.php:227
350
  msgid "For input field"
351
  msgstr ""
352
 
353
+ #: contact-form-7/admin/admin.php:228
354
  msgid "* One choice per line."
355
  msgstr ""
356
 
357
+ #: contact-form-7/admin/admin.php:229
358
  msgid "Show"
359
  msgstr ""
360
 
361
+ #: contact-form-7/admin/admin.php:230
362
  msgid "Hide"
363
  msgstr ""
364
 
365
+ #: contact-form-7/admin/admin.php:231
366
  msgid "File size limit"
367
  msgstr ""
368
 
369
+ #: contact-form-7/admin/admin.php:232
370
  msgid "Acceptable file types"
371
  msgstr ""
372
 
373
+ #: contact-form-7/admin/admin.php:233
374
  msgid "Note: To use CAPTCHA, you need Really Simple CAPTCHA plugin installed."
375
  msgstr ""
376
 
377
+ #: contact-form-7/admin/admin.php:242
378
  msgid "Contact form created."
379
  msgstr ""
380
 
381
+ #: contact-form-7/admin/admin.php:245
382
  msgid "Contact form saved."
383
  msgstr ""
384
 
385
+ #: contact-form-7/admin/admin.php:248
386
  msgid "Contact form deleted."
387
  msgstr ""
388
 
389
+ #: contact-form-7/admin/admin.php:251
390
  msgid "Database table created."
391
  msgstr ""
392
 
393
+ #: contact-form-7/admin/admin.php:254
394
  msgid "Failed to create database table."
395
  msgstr ""
396
 
397
+ #: contact-form-7/admin/admin.php:329
398
  msgid "Contact form"
399
  msgstr ""
400
 
401
+ #: contact-form-7/admin/admin.php:348
402
  msgid "Settings"
403
  msgstr ""
404
 
405
+ #: contact-form-7/admin/admin.php:367
406
  msgid "Contact Form 7 needs your support. Please donate today."
407
  msgstr ""
408
 
409
+ #: contact-form-7/admin/admin.php:368
410
  msgid "Is this plugin useful for you? If you like it, please help the developer."
411
  msgstr ""
412
 
413
+ #: contact-form-7/admin/admin.php:369
414
  msgid "Your contribution is needed for making this plugin better."
415
  msgstr ""
416
 
417
+ #: contact-form-7/admin/admin.php:370
418
  msgid "Developing a plugin and providing user support is really hard work. Please help."
419
  msgstr ""
420
 
421
+ #: contact-form-7/includes/classes.php:564
422
  msgid "Untitled"
423
  msgstr ""
424
 
497
  msgstr ""
498
 
499
  #: contact-form-7/includes/functions.php:51
500
+ #: contact-form-7/includes/functions.php:62
501
+ #, php-format
502
+ msgid "This mail is sent via contact form on %1$s %2$s"
503
  msgstr ""
504
 
505
+ #: contact-form-7/modules/captcha.php:65
506
  msgid "To use CAPTCHA, you need <a href=\"http://wordpress.org/extend/plugins/really-simple-captcha/\">Really Simple CAPTCHA</a> plugin installed."
507
  msgstr ""
508
 
modules/acceptance.php CHANGED
@@ -5,6 +5,8 @@
5
 
6
  /* Shortcode handler */
7
 
 
 
8
  function wpcf7_acceptance_shortcode_handler( $tag ) {
9
  global $wpcf7_contact_form;
10
 
@@ -55,11 +57,11 @@ function wpcf7_acceptance_shortcode_handler( $tag ) {
55
  return $html;
56
  }
57
 
58
- wpcf7_add_shortcode( 'acceptance', 'wpcf7_acceptance_shortcode_handler', true );
59
-
60
 
61
  /* Acceptance filter */
62
 
 
 
63
  function wpcf7_acceptance_filter( $accepted ) {
64
  global $wpcf7_contact_form;
65
 
@@ -83,6 +85,4 @@ function wpcf7_acceptance_filter( $accepted ) {
83
  return $accepted;
84
  }
85
 
86
- add_filter( 'wpcf7_acceptance', 'wpcf7_acceptance_filter' );
87
-
88
  ?>
5
 
6
  /* Shortcode handler */
7
 
8
+ wpcf7_add_shortcode( 'acceptance', 'wpcf7_acceptance_shortcode_handler', true );
9
+
10
  function wpcf7_acceptance_shortcode_handler( $tag ) {
11
  global $wpcf7_contact_form;
12
 
57
  return $html;
58
  }
59
 
 
 
60
 
61
  /* Acceptance filter */
62
 
63
+ add_filter( 'wpcf7_acceptance', 'wpcf7_acceptance_filter' );
64
+
65
  function wpcf7_acceptance_filter( $accepted ) {
66
  global $wpcf7_contact_form;
67
 
85
  return $accepted;
86
  }
87
 
 
 
88
  ?>
modules/captcha.php CHANGED
@@ -5,6 +5,9 @@
5
 
6
  /* Shortcode handler */
7
 
 
 
 
8
  function wpcf7_captcha_shortcode_handler( $tag ) {
9
  global $wpcf7_contact_form;
10
 
@@ -100,12 +103,11 @@ function wpcf7_captcha_shortcode_handler( $tag ) {
100
  }
101
  }
102
 
103
- wpcf7_add_shortcode( 'captchac', 'wpcf7_captcha_shortcode_handler', true );
104
- wpcf7_add_shortcode( 'captchar', 'wpcf7_captcha_shortcode_handler', true );
105
-
106
 
107
  /* Validation filter */
108
 
 
 
109
  function wpcf7_captcha_validation_filter( $result, $tag ) {
110
  global $wpcf7_contact_form;
111
 
@@ -126,11 +128,11 @@ function wpcf7_captcha_validation_filter( $result, $tag ) {
126
  return $result;
127
  }
128
 
129
- add_filter( 'wpcf7_validate_captchar', 'wpcf7_captcha_validation_filter', 10, 2 );
130
-
131
 
132
  /* Ajax echo filter */
133
 
 
 
134
  function wpcf7_captcha_ajax_echo_filter( $items ) {
135
  global $wpcf7_contact_form;
136
 
@@ -168,8 +170,6 @@ function wpcf7_captcha_ajax_echo_filter( $items ) {
168
  return $items;
169
  }
170
 
171
- add_filter( 'wpcf7_ajax_json_echo', 'wpcf7_captcha_ajax_echo_filter' );
172
-
173
 
174
  /* CAPTCHA functions */
175
 
@@ -188,6 +188,20 @@ function wpcf7_init_captcha() {
188
  return true;
189
  }
190
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
191
  function wpcf7_generate_captcha( $options = null ) {
192
  global $wpcf7_captcha;
193
 
@@ -249,13 +263,18 @@ function wpcf7_remove_captcha( $prefix ) {
249
  }
250
 
251
  function wpcf7_cleanup_captcha_files() {
252
- $dir = trailingslashit( wpcf7_captcha_tmp_dir() );
253
 
254
- if ( ! is_dir( $dir ) )
255
- return false;
256
- if ( ! is_readable( $dir ) )
257
  return false;
258
- if ( ! is_writable( $dir ) )
 
 
 
 
 
 
 
259
  return false;
260
 
261
  if ( $handle = @opendir( $dir ) ) {
@@ -264,7 +283,7 @@ function wpcf7_cleanup_captcha_files() {
264
  continue;
265
 
266
  $stat = @stat( $dir . $file );
267
- if ( $stat['mtime'] + 21600 < time() ) // 21600 secs == 6 hours
268
  @unlink( $dir . $file );
269
  }
270
  closedir( $handle );
5
 
6
  /* Shortcode handler */
7
 
8
+ wpcf7_add_shortcode( 'captchac', 'wpcf7_captcha_shortcode_handler', true );
9
+ wpcf7_add_shortcode( 'captchar', 'wpcf7_captcha_shortcode_handler', true );
10
+
11
  function wpcf7_captcha_shortcode_handler( $tag ) {
12
  global $wpcf7_contact_form;
13
 
103
  }
104
  }
105
 
 
 
 
106
 
107
  /* Validation filter */
108
 
109
+ add_filter( 'wpcf7_validate_captchar', 'wpcf7_captcha_validation_filter', 10, 2 );
110
+
111
  function wpcf7_captcha_validation_filter( $result, $tag ) {
112
  global $wpcf7_contact_form;
113
 
128
  return $result;
129
  }
130
 
 
 
131
 
132
  /* Ajax echo filter */
133
 
134
+ add_filter( 'wpcf7_ajax_json_echo', 'wpcf7_captcha_ajax_echo_filter' );
135
+
136
  function wpcf7_captcha_ajax_echo_filter( $items ) {
137
  global $wpcf7_contact_form;
138
 
170
  return $items;
171
  }
172
 
 
 
173
 
174
  /* CAPTCHA functions */
175
 
188
  return true;
189
  }
190
 
191
+ function wpcf7_captcha_tmp_dir() {
192
+ if ( defined( 'WPCF7_CAPTCHA_TMP_DIR' ) )
193
+ return WPCF7_CAPTCHA_TMP_DIR;
194
+ else
195
+ return wpcf7_upload_dir( 'dir' ) . '/wpcf7_captcha';
196
+ }
197
+
198
+ function wpcf7_captcha_tmp_url() {
199
+ if ( defined( 'WPCF7_CAPTCHA_TMP_URL' ) )
200
+ return WPCF7_CAPTCHA_TMP_URL;
201
+ else
202
+ return wpcf7_upload_dir( 'url' ) . '/wpcf7_captcha';
203
+ }
204
+
205
  function wpcf7_generate_captcha( $options = null ) {
206
  global $wpcf7_captcha;
207
 
263
  }
264
 
265
  function wpcf7_cleanup_captcha_files() {
266
+ global $wpcf7_captcha;
267
 
268
+ if ( ! wpcf7_init_captcha() )
 
 
269
  return false;
270
+ $captcha =& $wpcf7_captcha;
271
+
272
+ if ( is_callable( array( $captcha, 'cleanup' ) ) )
273
+ return $captcha->cleanup();
274
+
275
+ $dir = trailingslashit( wpcf7_captcha_tmp_dir() );
276
+
277
+ if ( ! is_dir( $dir ) || ! is_readable( $dir ) || ! is_writable( $dir ) )
278
  return false;
279
 
280
  if ( $handle = @opendir( $dir ) ) {
283
  continue;
284
 
285
  $stat = @stat( $dir . $file );
286
+ if ( $stat['mtime'] + 3600 < time() ) // 3600 secs == 1 hour
287
  @unlink( $dir . $file );
288
  }
289
  closedir( $handle );
modules/checkbox.php CHANGED
@@ -5,6 +5,10 @@
5
 
6
  /* Shortcode handler */
7
 
 
 
 
 
8
  function wpcf7_checkbox_shortcode_handler( $tag ) {
9
  global $wpcf7_contact_form;
10
 
@@ -120,13 +124,13 @@ function wpcf7_checkbox_shortcode_handler( $tag ) {
120
  return $html;
121
  }
122
 
123
- wpcf7_add_shortcode( 'checkbox', 'wpcf7_checkbox_shortcode_handler', true );
124
- wpcf7_add_shortcode( 'checkbox*', 'wpcf7_checkbox_shortcode_handler', true );
125
- wpcf7_add_shortcode( 'radio', 'wpcf7_checkbox_shortcode_handler', true );
126
-
127
 
128
  /* Validation filter */
129
 
 
 
 
 
130
  function wpcf7_checkbox_validation_filter( $result, $tag ) {
131
  global $wpcf7_contact_form;
132
 
@@ -156,8 +160,4 @@ function wpcf7_checkbox_validation_filter( $result, $tag ) {
156
  return $result;
157
  }
158
 
159
- add_filter( 'wpcf7_validate_checkbox', 'wpcf7_checkbox_validation_filter', 10, 2 );
160
- add_filter( 'wpcf7_validate_checkbox*', 'wpcf7_checkbox_validation_filter', 10, 2 );
161
- add_filter( 'wpcf7_validate_radio', 'wpcf7_checkbox_validation_filter', 10, 2 );
162
-
163
  ?>
5
 
6
  /* Shortcode handler */
7
 
8
+ wpcf7_add_shortcode( 'checkbox', 'wpcf7_checkbox_shortcode_handler', true );
9
+ wpcf7_add_shortcode( 'checkbox*', 'wpcf7_checkbox_shortcode_handler', true );
10
+ wpcf7_add_shortcode( 'radio', 'wpcf7_checkbox_shortcode_handler', true );
11
+
12
  function wpcf7_checkbox_shortcode_handler( $tag ) {
13
  global $wpcf7_contact_form;
14
 
124
  return $html;
125
  }
126
 
 
 
 
 
127
 
128
  /* Validation filter */
129
 
130
+ add_filter( 'wpcf7_validate_checkbox', 'wpcf7_checkbox_validation_filter', 10, 2 );
131
+ add_filter( 'wpcf7_validate_checkbox*', 'wpcf7_checkbox_validation_filter', 10, 2 );
132
+ add_filter( 'wpcf7_validate_radio', 'wpcf7_checkbox_validation_filter', 10, 2 );
133
+
134
  function wpcf7_checkbox_validation_filter( $result, $tag ) {
135
  global $wpcf7_contact_form;
136
 
160
  return $result;
161
  }
162
 
 
 
 
 
163
  ?>
modules/file.php CHANGED
@@ -3,6 +3,11 @@
3
  ** A base module for [file] and [file*]
4
  **/
5
 
 
 
 
 
 
6
  function wpcf7_file_shortcode_handler( $tag ) {
7
  global $wpcf7_contact_form;
8
 
@@ -51,12 +56,11 @@ function wpcf7_file_shortcode_handler( $tag ) {
51
  return $html;
52
  }
53
 
54
- wpcf7_add_shortcode( 'file', 'wpcf7_file_shortcode_handler', true );
55
- wpcf7_add_shortcode( 'file*', 'wpcf7_file_shortcode_handler', true );
56
-
57
 
58
  /* Encode type filter */
59
 
 
 
60
  function wpcf7_file_form_enctype_filter( $enctype ) {
61
  global $wpcf7_contact_form;
62
 
@@ -69,11 +73,12 @@ function wpcf7_file_form_enctype_filter( $enctype ) {
69
  return $enctype;
70
  }
71
 
72
- add_filter( 'wpcf7_form_enctype', 'wpcf7_file_form_enctype_filter' );
73
-
74
 
75
  /* Validation + upload handling filter */
76
 
 
 
 
77
  function wpcf7_file_validation_filter( $result, $tag ) {
78
  global $wpcf7_contact_form;
79
 
@@ -151,12 +156,17 @@ function wpcf7_file_validation_filter( $result, $tag ) {
151
  $uploads_dir = wpcf7_upload_tmp_dir();
152
  wpcf7_init_uploads(); // Confirm upload dir
153
 
154
- $filename = wp_unique_filename( $uploads_dir, $file['name'] );
155
 
156
  // If you get script file, it's a danger. Make it TXT file.
157
  if ( preg_match( '/\.(php|pl|py|rb|cgi)\d?$/', $filename ) )
158
  $filename .= '.txt';
159
 
 
 
 
 
 
160
  $new_file = trailingslashit( $uploads_dir ) . $filename;
161
 
162
  if ( false === @move_uploaded_file( $file['tmp_name'], $new_file ) ) {
@@ -173,9 +183,6 @@ function wpcf7_file_validation_filter( $result, $tag ) {
173
  return $result;
174
  }
175
 
176
- add_filter( 'wpcf7_validate_file', 'wpcf7_file_validation_filter', 10, 2 );
177
- add_filter( 'wpcf7_validate_file*', 'wpcf7_file_validation_filter', 10, 2 );
178
-
179
 
180
  /* File uploading functions */
181
 
@@ -194,6 +201,13 @@ function wpcf7_init_uploads() {
194
  }
195
  }
196
 
 
 
 
 
 
 
 
197
  function wpcf7_cleanup_upload_files() {
198
  $dir = trailingslashit( wpcf7_upload_tmp_dir() );
199
 
3
  ** A base module for [file] and [file*]
4
  **/
5
 
6
+ /* Shortcode handler */
7
+
8
+ wpcf7_add_shortcode( 'file', 'wpcf7_file_shortcode_handler', true );
9
+ wpcf7_add_shortcode( 'file*', 'wpcf7_file_shortcode_handler', true );
10
+
11
  function wpcf7_file_shortcode_handler( $tag ) {
12
  global $wpcf7_contact_form;
13
 
56
  return $html;
57
  }
58
 
 
 
 
59
 
60
  /* Encode type filter */
61
 
62
+ add_filter( 'wpcf7_form_enctype', 'wpcf7_file_form_enctype_filter' );
63
+
64
  function wpcf7_file_form_enctype_filter( $enctype ) {
65
  global $wpcf7_contact_form;
66
 
73
  return $enctype;
74
  }
75
 
 
 
76
 
77
  /* Validation + upload handling filter */
78
 
79
+ add_filter( 'wpcf7_validate_file', 'wpcf7_file_validation_filter', 10, 2 );
80
+ add_filter( 'wpcf7_validate_file*', 'wpcf7_file_validation_filter', 10, 2 );
81
+
82
  function wpcf7_file_validation_filter( $result, $tag ) {
83
  global $wpcf7_contact_form;
84
 
156
  $uploads_dir = wpcf7_upload_tmp_dir();
157
  wpcf7_init_uploads(); // Confirm upload dir
158
 
159
+ $filename = $file['name'];
160
 
161
  // If you get script file, it's a danger. Make it TXT file.
162
  if ( preg_match( '/\.(php|pl|py|rb|cgi)\d?$/', $filename ) )
163
  $filename .= '.txt';
164
 
165
+ // foo.php.jpg => foo.php_.jpg
166
+ $filename = wpcf7_sanitize_file_name( $filename );
167
+
168
+ $filename = wp_unique_filename( $uploads_dir, $filename );
169
+
170
  $new_file = trailingslashit( $uploads_dir ) . $filename;
171
 
172
  if ( false === @move_uploaded_file( $file['tmp_name'], $new_file ) ) {
183
  return $result;
184
  }
185
 
 
 
 
186
 
187
  /* File uploading functions */
188
 
201
  }
202
  }
203
 
204
+ function wpcf7_upload_tmp_dir() {
205
+ if ( defined( 'WPCF7_UPLOADS_TMP_DIR' ) )
206
+ return WPCF7_UPLOADS_TMP_DIR;
207
+ else
208
+ return wpcf7_upload_dir( 'dir' ) . '/wpcf7_uploads';
209
+ }
210
+
211
  function wpcf7_cleanup_upload_files() {
212
  $dir = trailingslashit( wpcf7_upload_tmp_dir() );
213
 
modules/icl.php CHANGED
@@ -14,6 +14,8 @@ if ( ! icl_wpcf7_wpml_available() )
14
 
15
  /* Shortcode handler */
16
 
 
 
17
  function icl_wpcf7_shortcode_handler( $tag ) {
18
 
19
  if ( ! is_array( $tag ) )
@@ -38,11 +40,11 @@ function icl_wpcf7_shortcode_handler( $tag ) {
38
  return '';
39
  }
40
 
41
- wpcf7_add_shortcode( 'icl', 'icl_wpcf7_shortcode_handler', true );
42
-
43
 
44
  /* Form tag filter */
45
 
 
 
46
  function icl_wpcf7_form_tag_filter( $tag ) {
47
  if ( ! is_array( $tag ) )
48
  return $tag;
@@ -107,11 +109,11 @@ function icl_wpcf7_form_tag_filter( $tag ) {
107
  return $tag;
108
  }
109
 
110
- add_filter( 'wpcf7_form_tag', 'icl_wpcf7_form_tag_filter' );
111
-
112
 
113
  /* Message dispaly filter */
114
 
 
 
115
  function icl_wpcf7_display_message_filter( $message ) {
116
  $shortcode_manager = new WPCF7_ShortcodeManager();
117
  $shortcode_manager->add_shortcode( 'icl', 'icl_wpcf7_shortcode_handler', true );
@@ -119,11 +121,11 @@ function icl_wpcf7_display_message_filter( $message ) {
119
  return $shortcode_manager->do_shortcode( $message );
120
  }
121
 
122
- add_filter( 'wpcf7_display_message', 'icl_wpcf7_display_message_filter' );
123
-
124
 
125
  /* Collecting strings hook after saving */
126
 
 
 
127
  function icl_wpcf7_collect_strings( &$contact_form ) {
128
  $scanned = $contact_form->form_scan_shortcode();
129
 
@@ -195,8 +197,6 @@ function icl_wpcf7_collect_strings( &$contact_form ) {
195
  }
196
  }
197
 
198
- add_action( 'wpcf7_after_save', 'icl_wpcf7_collect_strings' );
199
-
200
 
201
  /* Functions */
202
 
14
 
15
  /* Shortcode handler */
16
 
17
+ wpcf7_add_shortcode( 'icl', 'icl_wpcf7_shortcode_handler', true );
18
+
19
  function icl_wpcf7_shortcode_handler( $tag ) {
20
 
21
  if ( ! is_array( $tag ) )
40
  return '';
41
  }
42
 
 
 
43
 
44
  /* Form tag filter */
45
 
46
+ add_filter( 'wpcf7_form_tag', 'icl_wpcf7_form_tag_filter' );
47
+
48
  function icl_wpcf7_form_tag_filter( $tag ) {
49
  if ( ! is_array( $tag ) )
50
  return $tag;
109
  return $tag;
110
  }
111
 
 
 
112
 
113
  /* Message dispaly filter */
114
 
115
+ add_filter( 'wpcf7_display_message', 'icl_wpcf7_display_message_filter' );
116
+
117
  function icl_wpcf7_display_message_filter( $message ) {
118
  $shortcode_manager = new WPCF7_ShortcodeManager();
119
  $shortcode_manager->add_shortcode( 'icl', 'icl_wpcf7_shortcode_handler', true );
121
  return $shortcode_manager->do_shortcode( $message );
122
  }
123
 
 
 
124
 
125
  /* Collecting strings hook after saving */
126
 
127
+ add_action( 'wpcf7_after_save', 'icl_wpcf7_collect_strings' );
128
+
129
  function icl_wpcf7_collect_strings( &$contact_form ) {
130
  $scanned = $contact_form->form_scan_shortcode();
131
 
197
  }
198
  }
199
 
 
 
200
 
201
  /* Functions */
202
 
modules/quiz.php CHANGED
@@ -5,6 +5,8 @@
5
 
6
  /* Shortcode handler */
7
 
 
 
8
  function wpcf7_quiz_shortcode_handler( $tag ) {
9
  global $wpcf7_contact_form;
10
 
@@ -77,11 +79,11 @@ function wpcf7_quiz_shortcode_handler( $tag ) {
77
  return $html;
78
  }
79
 
80
- wpcf7_add_shortcode( 'quiz', 'wpcf7_quiz_shortcode_handler', true );
81
-
82
 
83
  /* Validation filter */
84
 
 
 
85
  function wpcf7_quiz_validation_filter( $result, $tag ) {
86
  global $wpcf7_contact_form;
87
 
@@ -99,11 +101,11 @@ function wpcf7_quiz_validation_filter( $result, $tag ) {
99
  return $result;
100
  }
101
 
102
- add_filter( 'wpcf7_validate_quiz', 'wpcf7_quiz_validation_filter', 10, 2 );
103
-
104
 
105
  /* Ajax echo filter */
106
 
 
 
107
  function wpcf7_quiz_ajax_echo_filter( $items ) {
108
  global $wpcf7_contact_form;
109
 
@@ -151,6 +153,4 @@ function wpcf7_quiz_ajax_echo_filter( $items ) {
151
  return $items;
152
  }
153
 
154
- add_filter( 'wpcf7_ajax_json_echo', 'wpcf7_quiz_ajax_echo_filter' );
155
-
156
  ?>
5
 
6
  /* Shortcode handler */
7
 
8
+ wpcf7_add_shortcode( 'quiz', 'wpcf7_quiz_shortcode_handler', true );
9
+
10
  function wpcf7_quiz_shortcode_handler( $tag ) {
11
  global $wpcf7_contact_form;
12
 
79
  return $html;
80
  }
81
 
 
 
82
 
83
  /* Validation filter */
84
 
85
+ add_filter( 'wpcf7_validate_quiz', 'wpcf7_quiz_validation_filter', 10, 2 );
86
+
87
  function wpcf7_quiz_validation_filter( $result, $tag ) {
88
  global $wpcf7_contact_form;
89
 
101
  return $result;
102
  }
103
 
 
 
104
 
105
  /* Ajax echo filter */
106
 
107
+ add_filter( 'wpcf7_ajax_json_echo', 'wpcf7_quiz_ajax_echo_filter' );
108
+
109
  function wpcf7_quiz_ajax_echo_filter( $items ) {
110
  global $wpcf7_contact_form;
111
 
153
  return $items;
154
  }
155
 
 
 
156
  ?>
modules/select.php CHANGED
@@ -5,6 +5,9 @@
5
 
6
  /* Shortcode handler */
7
 
 
 
 
8
  function wpcf7_select_shortcode_handler( $tag ) {
9
  global $wpcf7_contact_form;
10
 
@@ -97,12 +100,12 @@ function wpcf7_select_shortcode_handler( $tag ) {
97
  return $html;
98
  }
99
 
100
- wpcf7_add_shortcode( 'select', 'wpcf7_select_shortcode_handler', true );
101
- wpcf7_add_shortcode( 'select*', 'wpcf7_select_shortcode_handler', true );
102
-
103
 
104
  /* Validation filter */
105
 
 
 
 
106
  function wpcf7_select_validation_filter( $result, $tag ) {
107
  global $wpcf7_contact_form;
108
 
@@ -134,7 +137,4 @@ function wpcf7_select_validation_filter( $result, $tag ) {
134
  return $result;
135
  }
136
 
137
- add_filter( 'wpcf7_validate_select', 'wpcf7_select_validation_filter', 10, 2 );
138
- add_filter( 'wpcf7_validate_select*', 'wpcf7_select_validation_filter', 10, 2 );
139
-
140
  ?>
5
 
6
  /* Shortcode handler */
7
 
8
+ wpcf7_add_shortcode( 'select', 'wpcf7_select_shortcode_handler', true );
9
+ wpcf7_add_shortcode( 'select*', 'wpcf7_select_shortcode_handler', true );
10
+
11
  function wpcf7_select_shortcode_handler( $tag ) {
12
  global $wpcf7_contact_form;
13
 
100
  return $html;
101
  }
102
 
 
 
 
103
 
104
  /* Validation filter */
105
 
106
+ add_filter( 'wpcf7_validate_select', 'wpcf7_select_validation_filter', 10, 2 );
107
+ add_filter( 'wpcf7_validate_select*', 'wpcf7_select_validation_filter', 10, 2 );
108
+
109
  function wpcf7_select_validation_filter( $result, $tag ) {
110
  global $wpcf7_contact_form;
111
 
137
  return $result;
138
  }
139
 
 
 
 
140
  ?>
modules/submit.php CHANGED
@@ -5,6 +5,8 @@
5
 
6
  /* Shortcode handler */
7
 
 
 
8
  function wpcf7_submit_shortcode_handler( $tag ) {
9
  if ( ! is_array( $tag ) )
10
  return '';
@@ -44,6 +46,4 @@ function wpcf7_submit_shortcode_handler( $tag ) {
44
  return $html;
45
  }
46
 
47
- wpcf7_add_shortcode( 'submit', 'wpcf7_submit_shortcode_handler' );
48
-
49
  ?>
5
 
6
  /* Shortcode handler */
7
 
8
+ wpcf7_add_shortcode( 'submit', 'wpcf7_submit_shortcode_handler' );
9
+
10
  function wpcf7_submit_shortcode_handler( $tag ) {
11
  if ( ! is_array( $tag ) )
12
  return '';
46
  return $html;
47
  }
48
 
 
 
49
  ?>
modules/text.php CHANGED
@@ -5,6 +5,11 @@
5
 
6
  /* Shortcode handler */
7
 
 
 
 
 
 
8
  function wpcf7_text_shortcode_handler( $tag ) {
9
  global $wpcf7_contact_form;
10
 
@@ -79,14 +84,14 @@ function wpcf7_text_shortcode_handler( $tag ) {
79
  return $html;
80
  }
81
 
82
- wpcf7_add_shortcode( 'text', 'wpcf7_text_shortcode_handler', true );
83
- wpcf7_add_shortcode( 'text*', 'wpcf7_text_shortcode_handler', true );
84
- wpcf7_add_shortcode( 'email', 'wpcf7_text_shortcode_handler', true );
85
- wpcf7_add_shortcode( 'email*', 'wpcf7_text_shortcode_handler', true );
86
-
87
 
88
  /* Validation filter */
89
 
 
 
 
 
 
90
  function wpcf7_text_validation_filter( $result, $tag ) {
91
  global $wpcf7_contact_form;
92
 
@@ -115,9 +120,4 @@ function wpcf7_text_validation_filter( $result, $tag ) {
115
  return $result;
116
  }
117
 
118
- add_filter( 'wpcf7_validate_text', 'wpcf7_text_validation_filter', 10, 2 );
119
- add_filter( 'wpcf7_validate_text*', 'wpcf7_text_validation_filter', 10, 2 );
120
- add_filter( 'wpcf7_validate_email', 'wpcf7_text_validation_filter', 10, 2 );
121
- add_filter( 'wpcf7_validate_email*', 'wpcf7_text_validation_filter', 10, 2 );
122
-
123
  ?>
5
 
6
  /* Shortcode handler */
7
 
8
+ wpcf7_add_shortcode( 'text', 'wpcf7_text_shortcode_handler', true );
9
+ wpcf7_add_shortcode( 'text*', 'wpcf7_text_shortcode_handler', true );
10
+ wpcf7_add_shortcode( 'email', 'wpcf7_text_shortcode_handler', true );
11
+ wpcf7_add_shortcode( 'email*', 'wpcf7_text_shortcode_handler', true );
12
+
13
  function wpcf7_text_shortcode_handler( $tag ) {
14
  global $wpcf7_contact_form;
15
 
84
  return $html;
85
  }
86
 
 
 
 
 
 
87
 
88
  /* Validation filter */
89
 
90
+ add_filter( 'wpcf7_validate_text', 'wpcf7_text_validation_filter', 10, 2 );
91
+ add_filter( 'wpcf7_validate_text*', 'wpcf7_text_validation_filter', 10, 2 );
92
+ add_filter( 'wpcf7_validate_email', 'wpcf7_text_validation_filter', 10, 2 );
93
+ add_filter( 'wpcf7_validate_email*', 'wpcf7_text_validation_filter', 10, 2 );
94
+
95
  function wpcf7_text_validation_filter( $result, $tag ) {
96
  global $wpcf7_contact_form;
97
 
120
  return $result;
121
  }
122
 
 
 
 
 
 
123
  ?>
modules/textarea.php CHANGED
@@ -5,6 +5,9 @@
5
 
6
  /* Shortcode handler */
7
 
 
 
 
8
  function wpcf7_textarea_shortcode_handler( $tag ) {
9
  global $wpcf7_contact_form;
10
 
@@ -82,12 +85,12 @@ function wpcf7_textarea_shortcode_handler( $tag ) {
82
  return $html;
83
  }
84
 
85
- wpcf7_add_shortcode( 'textarea', 'wpcf7_textarea_shortcode_handler', true );
86
- wpcf7_add_shortcode( 'textarea*', 'wpcf7_textarea_shortcode_handler', true );
87
-
88
 
89
  /* Validation filter */
90
 
 
 
 
91
  function wpcf7_textarea_validation_filter( $result, $tag ) {
92
  global $wpcf7_contact_form;
93
 
@@ -106,7 +109,4 @@ function wpcf7_textarea_validation_filter( $result, $tag ) {
106
  return $result;
107
  }
108
 
109
- add_filter( 'wpcf7_validate_textarea', 'wpcf7_textarea_validation_filter', 10, 2 );
110
- add_filter( 'wpcf7_validate_textarea*', 'wpcf7_textarea_validation_filter', 10, 2 );
111
-
112
  ?>
5
 
6
  /* Shortcode handler */
7
 
8
+ wpcf7_add_shortcode( 'textarea', 'wpcf7_textarea_shortcode_handler', true );
9
+ wpcf7_add_shortcode( 'textarea*', 'wpcf7_textarea_shortcode_handler', true );
10
+
11
  function wpcf7_textarea_shortcode_handler( $tag ) {
12
  global $wpcf7_contact_form;
13
 
85
  return $html;
86
  }
87
 
 
 
 
88
 
89
  /* Validation filter */
90
 
91
+ add_filter( 'wpcf7_validate_textarea', 'wpcf7_textarea_validation_filter', 10, 2 );
92
+ add_filter( 'wpcf7_validate_textarea*', 'wpcf7_textarea_validation_filter', 10, 2 );
93
+
94
  function wpcf7_textarea_validation_filter( $result, $tag ) {
95
  global $wpcf7_contact_form;
96
 
109
  return $result;
110
  }
111
 
 
 
 
112
  ?>
settings.php CHANGED
@@ -42,7 +42,7 @@ function wpcf7_table_exists() {
42
 
43
  $table_name = wpcf7_table_name();
44
 
45
- return $wpdb->get_var( "SHOW TABLES LIKE '$table_name'" ) == $table_name;
46
  }
47
 
48
  // Pre-2.8 compatibility
42
 
43
  $table_name = wpcf7_table_name();
44
 
45
+ return strtolower( $wpdb->get_var( "SHOW TABLES LIKE '$table_name'" ) ) == strtolower( $table_name );
46
  }
47
 
48
  // Pre-2.8 compatibility
wp-contact-form-7.php CHANGED
@@ -4,7 +4,7 @@ Plugin Name: Contact Form 7
4
  Plugin URI: http://contactform7.com/
5
  Description: Just another contact form plugin. Simple but flexible.
6
  Author: Takayuki Miyoshi
7
- Version: 2.0.6
8
  Author URI: http://ideasilo.wordpress.com/
9
  */
10
 
@@ -25,7 +25,7 @@ Author URI: http://ideasilo.wordpress.com/
25
  Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
26
  */
27
 
28
- define( 'WPCF7_VERSION', '2.0.6' );
29
 
30
  if ( ! defined( 'WPCF7_PLUGIN_BASENAME' ) )
31
  define( 'WPCF7_PLUGIN_BASENAME', plugin_basename( __FILE__ ) );
4
  Plugin URI: http://contactform7.com/
5
  Description: Just another contact form plugin. Simple but flexible.
6
  Author: Takayuki Miyoshi
7
+ Version: 2.0.7
8
  Author URI: http://ideasilo.wordpress.com/
9
  */
10
 
25
  Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
26
  */
27
 
28
+ define( 'WPCF7_VERSION', '2.0.7' );
29
 
30
  if ( ! defined( 'WPCF7_PLUGIN_BASENAME' ) )
31
  define( 'WPCF7_PLUGIN_BASENAME', plugin_basename( __FILE__ ) );