Contact Form 7 - Version 2.1.2

Version Description

  • Incorrect JSON syntax causing conflict with jQuery 1.4 has been fixed.
  • Some incompatibility issues with IE in admin panel have been fixed.
  • The logic verifying if a plugins JavaScript is loaded has been improved.
  • Translations for German (Ivan Graf) and Slovak (Patrik Bna) have been updated. Translation for Malayalam has been created by RAHUL S.A.
Download this release

Release Info

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

Code changes from version 2.1.1 to 2.1.2

README.txt CHANGED
@@ -1,10 +1,10 @@
1
  === Contact Form 7 ===
2
  Contributors: takayukister
3
- Donate link: http://pledgie.com/campaigns/3117
4
  Tags: contact, form, contact form, feedback, email, ajax, captcha, akismet, multilingual
5
  Requires at least: 2.8
6
- Tested up to: 2.9.1
7
- Stable tag: 2.1.1
8
 
9
  Just another contact form plugin. Simple but flexible.
10
 
@@ -45,6 +45,7 @@ Contact Form 7 can manage multiple contact forms, plus you can customize the for
45
  * Korean (ko_KR) - Seong Eun Lee, [Jong-In Kim](http://incommunity.codex.kr/wordpress/)
46
  * Latvian (lv) - [Sandis Veinbergs](http://www.kleofass.lv/)
47
  * Lithuanian (lt_LT) - [Ernestas Kardzys](http://www.ernestas.info/)
 
48
  * Norwegian (nb_NO) - Kjetil M. Bergem, [aanvik.net](http://www.aanvik.net)
49
  * Persian (Farsi; fa_IR) - [Mohammad Musavi](http://www.musavis.com/)
50
  * Polish (pl_PL) - [Zbigniew Czernik](http://zibik.jogger.pl/), [Daniel Fruzynski](http://www.poradnik-webmastera.com)
@@ -89,6 +90,13 @@ Do you have questions or issues with Contact Form 7? Use these support channels
89
 
90
  == Changelog ==
91
 
 
 
 
 
 
 
 
92
  = 2.1.1 =
93
 
94
  * Some other plugins that attempt to include files in inadvisable way were conflicting with Contact Form 7 2.1. A workaround for avoiding these types of issues has been introduced.
1
  === Contact Form 7 ===
2
  Contributors: takayukister
3
+ Donate link: http://contactform7.com/donate/
4
  Tags: contact, form, contact form, feedback, email, ajax, captcha, akismet, multilingual
5
  Requires at least: 2.8
6
+ Tested up to: 2.9.2
7
+ Stable tag: 2.1.2
8
 
9
  Just another contact form plugin. Simple but flexible.
10
 
45
  * Korean (ko_KR) - Seong Eun Lee, [Jong-In Kim](http://incommunity.codex.kr/wordpress/)
46
  * Latvian (lv) - [Sandis Veinbergs](http://www.kleofass.lv/)
47
  * Lithuanian (lt_LT) - [Ernestas Kardzys](http://www.ernestas.info/)
48
+ * Malayalam (ml_IN) - [RAHUL.S.A](http://www.infution.co.cc/)
49
  * Norwegian (nb_NO) - Kjetil M. Bergem, [aanvik.net](http://www.aanvik.net)
50
  * Persian (Farsi; fa_IR) - [Mohammad Musavi](http://www.musavis.com/)
51
  * Polish (pl_PL) - [Zbigniew Czernik](http://zibik.jogger.pl/), [Daniel Fruzynski](http://www.poradnik-webmastera.com)
90
 
91
  == Changelog ==
92
 
93
+ = 2.1.2 =
94
+
95
+ * Incorrect JSON syntax causing conflict with jQuery 1.4 has been fixed.
96
+ * Some incompatibility issues with IE in admin panel have been fixed.
97
+ * The logic verifying if a plugin’s JavaScript is loaded has been improved.
98
+ * Translations for German (Ivan Graf) and Slovak (Patrik Bóna) have been updated. Translation for Malayalam has been created by RAHUL S.A.
99
+
100
  = 2.1.1 =
101
 
102
  * Some other plugins that attempt to include files in inadvisable way were conflicting with Contact Form 7 2.1. A workaround for avoiding these types of issues has been introduced.
admin/admin.php CHANGED
@@ -28,18 +28,21 @@ function wpcf7_admin_add_pages() {
28
  'recipient' => trim( $_POST['wpcf7-mail-recipient'] ),
29
  'additional_headers' => trim( $_POST['wpcf7-mail-additional-headers'] ),
30
  'attachments' => trim( $_POST['wpcf7-mail-attachments'] ),
31
- 'use_html' => ( 1 == $_POST['wpcf7-mail-use-html'] ) ? true : false
 
32
  );
33
 
34
  $mail_2 = array(
35
- 'active' => ( 1 == $_POST['wpcf7-mail-2-active'] ) ? true : false,
 
36
  'subject' => trim( $_POST['wpcf7-mail-2-subject'] ),
37
  'sender' => trim( $_POST['wpcf7-mail-2-sender'] ),
38
  'body' => trim( $_POST['wpcf7-mail-2-body'] ),
39
  'recipient' => trim( $_POST['wpcf7-mail-2-recipient'] ),
40
  'additional_headers' => trim( $_POST['wpcf7-mail-2-additional-headers'] ),
41
  'attachments' => trim( $_POST['wpcf7-mail-2-attachments'] ),
42
- 'use_html' => ( 1 == $_POST['wpcf7-mail-2-use-html'] ) ? true : false
 
43
  );
44
 
45
  $messages = $contact_form->messages;
@@ -186,10 +189,15 @@ var _wpcf7 = {
186
  function wpcf7_admin_management_page() {
187
  $contact_forms = wpcf7_contact_forms();
188
 
 
 
 
 
 
189
  if ( 'new' == $_GET['contactform'] ) {
190
  $unsaved = true;
191
  $current = -1;
192
- $cf = wpcf7_contact_form_default_pack( $_GET['locale'] );
193
  } elseif ( $cf = wpcf7_contact_form( $_GET['contactform'] ) ) {
194
  $current = (int) $_GET['contactform'];
195
  } else {
@@ -300,6 +308,9 @@ function wpcf7_cf7com_links( &$contact_form ) {
300
  add_action( 'wpcf7_admin_before_subsubsub', 'wpcf7_updated_message' );
301
 
302
  function wpcf7_updated_message( &$contact_form ) {
 
 
 
303
  switch ( $_GET['message'] ) {
304
  case 'created':
305
  $updated_message = __( "Contact form created.", 'wpcf7' );
@@ -337,8 +348,8 @@ function wpcf7_donation_link( &$contact_form ) {
337
 
338
  $show_link = true;
339
 
340
- $num = mt_rand(0, 99);
341
- if ($num >= 10) // 90%
342
  $show_link = false;
343
 
344
  $show_link = apply_filters( 'wpcf7_show_donation_link', $show_link );
@@ -348,18 +359,13 @@ function wpcf7_donation_link( &$contact_form ) {
348
 
349
  $texts = array(
350
  __( "Contact Form 7 needs your support. Please donate today.", 'wpcf7' ),
351
- __( "Is this plugin useful for you? If you like it, please help the developer.", 'wpcf7' ),
352
- __( "Your contribution is needed for making this plugin better.", 'wpcf7' ),
353
- __( "Developing a plugin and providing user support is really hard work. Please help.", 'wpcf7' ) );
354
 
355
  $text = $texts[array_rand( $texts )];
356
 
357
  ?>
358
  <div class="donation">
359
- <p><a href="http://www.pledgie.com/campaigns/3117">
360
- <img alt="Click here to lend your support to: Support Contact Form 7 and make a donation at www.pledgie.com !" src="http://www.pledgie.com/campaigns/3117.png?skin_name=chrome" border="0" width="149" height="37" /></a>
361
- <em><?php echo esc_html( $text ); ?></em>
362
- </p>
363
  </div>
364
  <?php
365
  }
28
  'recipient' => trim( $_POST['wpcf7-mail-recipient'] ),
29
  'additional_headers' => trim( $_POST['wpcf7-mail-additional-headers'] ),
30
  'attachments' => trim( $_POST['wpcf7-mail-attachments'] ),
31
+ 'use_html' =>
32
+ isset( $_POST['wpcf7-mail-use-html'] ) && 1 == $_POST['wpcf7-mail-use-html']
33
  );
34
 
35
  $mail_2 = array(
36
+ 'active' =>
37
+ isset( $_POST['wpcf7-mail-2-active'] ) && 1 == $_POST['wpcf7-mail-2-active'],
38
  'subject' => trim( $_POST['wpcf7-mail-2-subject'] ),
39
  'sender' => trim( $_POST['wpcf7-mail-2-sender'] ),
40
  'body' => trim( $_POST['wpcf7-mail-2-body'] ),
41
  'recipient' => trim( $_POST['wpcf7-mail-2-recipient'] ),
42
  'additional_headers' => trim( $_POST['wpcf7-mail-2-additional-headers'] ),
43
  'attachments' => trim( $_POST['wpcf7-mail-2-attachments'] ),
44
+ 'use_html' =>
45
+ isset( $_POST['wpcf7-mail-2-use-html'] ) && 1 == $_POST['wpcf7-mail-2-use-html']
46
  );
47
 
48
  $messages = $contact_form->messages;
189
  function wpcf7_admin_management_page() {
190
  $contact_forms = wpcf7_contact_forms();
191
 
192
+ $unsaved = false;
193
+
194
+ if ( ! isset( $_GET['contactform'] ) )
195
+ $_GET['contactform'] = '';
196
+
197
  if ( 'new' == $_GET['contactform'] ) {
198
  $unsaved = true;
199
  $current = -1;
200
+ $cf = wpcf7_contact_form_default_pack( isset( $_GET['locale'] ) ? $_GET['locale'] : '' );
201
  } elseif ( $cf = wpcf7_contact_form( $_GET['contactform'] ) ) {
202
  $current = (int) $_GET['contactform'];
203
  } else {
308
  add_action( 'wpcf7_admin_before_subsubsub', 'wpcf7_updated_message' );
309
 
310
  function wpcf7_updated_message( &$contact_form ) {
311
+ if ( ! isset( $_GET['message'] ) )
312
+ return;
313
+
314
  switch ( $_GET['message'] ) {
315
  case 'created':
316
  $updated_message = __( "Contact form created.", 'wpcf7' );
348
 
349
  $show_link = true;
350
 
351
+ $num = mt_rand( 0, 99 );
352
+ if ( $num >= 15 ) // 85%
353
  $show_link = false;
354
 
355
  $show_link = apply_filters( 'wpcf7_show_donation_link', $show_link );
359
 
360
  $texts = array(
361
  __( "Contact Form 7 needs your support. Please donate today.", 'wpcf7' ),
362
+ __( "Your contribution is needed for making this plugin better.", 'wpcf7' ) );
 
 
363
 
364
  $text = $texts[array_rand( $texts )];
365
 
366
  ?>
367
  <div class="donation">
368
+ <p><a href="<?php echo esc_url_raw( __( 'http://contactform7.com/donate/', 'wpcf7' ) ); ?>"><?php echo esc_html( $text ); ?></a> <a href="<?php echo esc_url_raw( __( 'http://contactform7.com/donate/', 'wpcf7' ) ); ?>" class="button"><?php echo esc_html( __( "Donate", 'wpcf7' ) ); ?></a></p>
 
 
 
369
  </div>
370
  <?php
371
  }
admin/scripts.js CHANGED
@@ -48,18 +48,20 @@ jQuery(document).ready(function() {
48
 
49
  updateTag();
50
 
51
- if (! jQuery('#wpcf7-mail-2-active').is(':checked'))
52
- jQuery('#mail-2-fields').hide();
 
53
 
54
- jQuery('#wpcf7-mail-2-active').click(function() {
55
- if (jQuery('#wpcf7-mail-2-active').is(':checked')) {
56
- if (jQuery('#mail-2-fields').is(':hidden'))
57
  jQuery('#mail-2-fields').slideDown('fast');
58
- } else {
59
- if (jQuery('#mail-2-fields').is(':visible'))
60
- jQuery('#mail-2-fields').hide('fast');
61
- }
62
- });
 
63
 
64
  jQuery('#message-fields-toggle-switch').text(_wpcf7L10n.show);
65
  jQuery('#message-fields').hide();
48
 
49
  updateTag();
50
 
51
+ if (jQuery.support.objectAll) {
52
+ if (! jQuery('#wpcf7-mail-2-active').is(':checked'))
53
+ jQuery('#mail-2-fields').hide();
54
 
55
+ jQuery('#wpcf7-mail-2-active').click(function() {
56
+ if (jQuery('#mail-2-fields').is(':hidden')
57
+ && jQuery('#wpcf7-mail-2-active').is(':checked')) {
58
  jQuery('#mail-2-fields').slideDown('fast');
59
+ } else if (jQuery('#mail-2-fields').is(':visible')
60
+ && jQuery('#wpcf7-mail-2-active').not(':checked')) {
61
+ jQuery('#mail-2-fields').slideUp('fast');
62
+ }
63
+ });
64
+ }
65
 
66
  jQuery('#message-fields-toggle-switch').text(_wpcf7L10n.show);
67
  jQuery('#message-fields').hide();
admin/styles.css CHANGED
@@ -23,19 +23,19 @@ div.wpcf7 div.donation {
23
  }
24
 
25
  div.wpcf7 div.donation p {
26
- margin: 0.5em 0;
27
  line-height: 1;
28
  padding: 2px;
 
29
  }
30
 
31
- div.wpcf7 div.donation p img {
32
- vertical-align: text-bottom;
 
33
  }
34
 
35
- div.wpcf7 div.donation p em {
36
- padding-left: 1em;
37
- color: #555;
38
- font-weight: bold;
39
  }
40
 
41
  div.wpcf7 ul.subsubsub {
23
  }
24
 
25
  div.wpcf7 div.donation p {
26
+ margin: .7em 0;
27
  line-height: 1;
28
  padding: 2px;
29
+ font-size: 107%;
30
  }
31
 
32
+ div.wpcf7 div.donation p a {
33
+ font-weight: bold;
34
+ color: #3f3f3f;
35
  }
36
 
37
+ div.wpcf7 div.donation p a.button {
38
+ margin-left: 1em;
 
 
39
  }
40
 
41
  div.wpcf7 ul.subsubsub {
admin/taggenerator.js CHANGED
@@ -117,8 +117,6 @@
117
  }
118
 
119
  $.tgCreateTag = function(pane, tagType) {
120
- pane.find(':input').empty();
121
-
122
  pane.find('input[name="name"]').each(function(i) {
123
  var val = $(this).val();
124
  val = val.replace(/[^0-9a-zA-Z:._-]/g, '').replace(/^[^a-zA-Z]+/, '');
117
  }
118
 
119
  $.tgCreateTag = function(pane, tagType) {
 
 
120
  pane.find('input[name="name"]').each(function(i) {
121
  var val = $(this).val();
122
  val = val.replace(/[^0-9a-zA-Z:._-]/g, '').replace(/^[^a-zA-Z]+/, '');
includes/classes.php CHANGED
@@ -40,8 +40,8 @@ class WPCF7_ContactForm {
40
 
41
  $url = wpcf7_get_request_uri();
42
 
43
- if ( $frag = strstr( $uri, '#' ) )
44
- $uri = substr( $uri, 0, -strlen( $frag ) );
45
 
46
  $url .= '#' . $this->unit_tag;
47
 
@@ -74,6 +74,7 @@ class WPCF7_ContactForm {
74
 
75
  function form_response_output() {
76
  $class = 'wpcf7-response-output';
 
77
 
78
  if ( $this->is_posted() ) { // Post response output for non-AJAX
79
  if ( isset( $_POST['_wpcf7_mail_sent'] ) && $_POST['_wpcf7_mail_sent']['id'] == $this->id ) {
40
 
41
  $url = wpcf7_get_request_uri();
42
 
43
+ if ( $frag = strstr( $url, '#' ) )
44
+ $url = substr( $url, 0, -strlen( $frag ) );
45
 
46
  $url .= '#' . $this->unit_tag;
47
 
74
 
75
  function form_response_output() {
76
  $class = 'wpcf7-response-output';
77
+ $content = '';
78
 
79
  if ( $this->is_posted() ) { // Post response output for non-AJAX
80
  if ( isset( $_POST['_wpcf7_mail_sent'] ) && $_POST['_wpcf7_mail_sent']['id'] == $this->id ) {
includes/controller.php CHANGED
@@ -3,10 +3,10 @@
3
  add_action( 'init', 'wpcf7_init_switch', 11 );
4
 
5
  function wpcf7_init_switch() {
6
- if ( 'GET' == $_SERVER['REQUEST_METHOD'] && 1 == (int) $_GET['_wpcf7_is_ajax_call'] ) {
7
  wpcf7_ajax_onload();
8
  exit();
9
- } elseif ( 'POST' == $_SERVER['REQUEST_METHOD'] && 1 == (int) $_POST['_wpcf7_is_ajax_call'] ) {
10
  wpcf7_ajax_json_echo();
11
  exit();
12
  } elseif ( isset( $_POST['_wpcf7'] ) ) {
@@ -203,12 +203,11 @@ function wpcf7_contact_form_tag_func( $atts ) {
203
  return $form;
204
  }
205
 
206
- if ( WPCF7_LOAD_JS )
207
- add_action( 'wp_head', 'wpcf7_head' );
208
 
209
  function wpcf7_head() {
210
  // Cached?
211
- if ( defined( 'WP_CACHE' ) && WP_CACHE ) :
212
  ?>
213
  <script type="text/javascript">
214
  //<![CDATA[
@@ -231,6 +230,10 @@ function wpcf7_enqueue_scripts() {
231
  array( 'jquery', 'jquery-form' ), WPCF7_VERSION, $in_footer );
232
  }
233
 
 
 
 
 
234
  if ( WPCF7_LOAD_CSS )
235
  add_action( 'wp_print_styles', 'wpcf7_enqueue_styles' );
236
 
@@ -244,4 +247,8 @@ function wpcf7_enqueue_styles() {
244
  }
245
  }
246
 
 
 
 
 
247
  ?>
3
  add_action( 'init', 'wpcf7_init_switch', 11 );
4
 
5
  function wpcf7_init_switch() {
6
+ if ( 'GET' == $_SERVER['REQUEST_METHOD'] && isset( $_GET['_wpcf7_is_ajax_call'] ) ) {
7
  wpcf7_ajax_onload();
8
  exit();
9
+ } elseif ( 'POST' == $_SERVER['REQUEST_METHOD'] && isset( $_POST['_wpcf7_is_ajax_call'] ) ) {
10
  wpcf7_ajax_json_echo();
11
  exit();
12
  } elseif ( isset( $_POST['_wpcf7'] ) ) {
203
  return $form;
204
  }
205
 
206
+ add_action( 'wp_head', 'wpcf7_head' );
 
207
 
208
  function wpcf7_head() {
209
  // Cached?
210
+ if ( wpcf7_script_is() && defined( 'WP_CACHE' ) && WP_CACHE ) :
211
  ?>
212
  <script type="text/javascript">
213
  //<![CDATA[
230
  array( 'jquery', 'jquery-form' ), WPCF7_VERSION, $in_footer );
231
  }
232
 
233
+ function wpcf7_script_is() {
234
+ return wp_script_is( 'contact-form-7' );
235
+ }
236
+
237
  if ( WPCF7_LOAD_CSS )
238
  add_action( 'wp_print_styles', 'wpcf7_enqueue_styles' );
239
 
247
  }
248
  }
249
 
250
+ function wpcf7_style_is() {
251
+ return wp_style_is( 'contact-form-7' );
252
+ }
253
+
254
  ?>
includes/functions.php CHANGED
@@ -42,15 +42,17 @@ function wpcf7_messages() {
42
  }
43
 
44
  function wpcf7_default_form_template() {
45
- $template .= '<p>' . __( 'Your Name', 'wpcf7' ) . ' ' . __( '(required)', 'wpcf7' ) . '<br />' . "\n";
46
- $template .= ' [text* your-name] </p>' . "\n\n";
47
- $template .= '<p>' . __( 'Your Email', 'wpcf7' ) . ' ' . __( '(required)', 'wpcf7' ) . '<br />' . "\n";
48
- $template .= ' [email* your-email] </p>' . "\n\n";
49
- $template .= '<p>' . __( 'Subject', 'wpcf7' ) . '<br />' . "\n";
50
- $template .= ' [text your-subject] </p>' . "\n\n";
51
- $template .= '<p>' . __( 'Your Message', 'wpcf7' ) . '<br />' . "\n";
52
- $template .= ' [textarea your-message] </p>' . "\n\n";
53
- $template .= '<p>[submit "' . __( 'Send', 'wpcf7' ) . '"]</p>';
 
 
54
  return $template;
55
  }
56
 
@@ -63,7 +65,10 @@ function wpcf7_default_mail_template() {
63
  . sprintf( __( 'This mail is sent via contact form on %1$s %2$s', 'wpcf7' ),
64
  get_bloginfo( 'name' ), get_bloginfo( 'url' ) );
65
  $recipient = get_option( 'admin_email' );
66
- return compact( 'subject', 'sender', 'body', 'recipient' );
 
 
 
67
  }
68
 
69
  function wpcf7_default_mail_2_template() {
@@ -74,7 +79,10 @@ function wpcf7_default_mail_2_template() {
74
  . sprintf( __( 'This mail is sent via contact form on %1$s %2$s', 'wpcf7' ),
75
  get_bloginfo( 'name' ), get_bloginfo( 'url' ) );
76
  $recipient = '[your-email]';
77
- return compact( 'active', 'subject', 'sender', 'body', 'recipient' );
 
 
 
78
  }
79
 
80
  function wpcf7_default_messages_template() {
@@ -139,10 +147,7 @@ function wpcf7_json( $items ) {
139
  } else { // Object
140
  $children = array();
141
  foreach ( $items as $key => $item ) {
142
- $key = esc_js( (string) $key );
143
- if ( preg_match( '/[^a-zA-Z]/', $key ) )
144
- $key = '"' . $key . '"';
145
-
146
  $children[] = $key . ': ' . wpcf7_json( $item );
147
  }
148
  return '{ ' . join( ', ', $children ) . ' }';
@@ -190,6 +195,7 @@ function wpcf7_l10n() {
190
  'ko_KR' => __( 'Korean', 'wpcf7' ),
191
  'lv' => __( 'Latvian', 'wpcf7' ),
192
  'lt_LT' => __( 'Lithuanian', 'wpcf7' ),
 
193
  'nb_NO' => __( 'Norwegian', 'wpcf7' ),
194
  'fa_IR' => __( 'Persian', 'wpcf7' ),
195
  'pl_PL' => __( 'Polish', 'wpcf7' ),
42
  }
43
 
44
  function wpcf7_default_form_template() {
45
+ $template =
46
+ '<p>' . __( 'Your Name', 'wpcf7' ) . ' ' . __( '(required)', 'wpcf7' ) . '<br />' . "\n"
47
+ . ' [text* your-name] </p>' . "\n\n"
48
+ . '<p>' . __( 'Your Email', 'wpcf7' ) . ' ' . __( '(required)', 'wpcf7' ) . '<br />' . "\n"
49
+ . ' [email* your-email] </p>' . "\n\n"
50
+ . '<p>' . __( 'Subject', 'wpcf7' ) . '<br />' . "\n"
51
+ . ' [text your-subject] </p>' . "\n\n"
52
+ . '<p>' . __( 'Your Message', 'wpcf7' ) . '<br />' . "\n"
53
+ . ' [textarea your-message] </p>' . "\n\n"
54
+ . '<p>[submit "' . __( 'Send', 'wpcf7' ) . '"]</p>';
55
+
56
  return $template;
57
  }
58
 
65
  . sprintf( __( 'This mail is sent via contact form on %1$s %2$s', 'wpcf7' ),
66
  get_bloginfo( 'name' ), get_bloginfo( 'url' ) );
67
  $recipient = get_option( 'admin_email' );
68
+ $additional_headers = '';
69
+ $attachments = '';
70
+ $use_html = 0;
71
+ return compact( 'subject', 'sender', 'body', 'recipient', 'additional_headers', 'attachments', 'use_html' );
72
  }
73
 
74
  function wpcf7_default_mail_2_template() {
79
  . sprintf( __( 'This mail is sent via contact form on %1$s %2$s', 'wpcf7' ),
80
  get_bloginfo( 'name' ), get_bloginfo( 'url' ) );
81
  $recipient = '[your-email]';
82
+ $additional_headers = '';
83
+ $attachments = '';
84
+ $use_html = 0;
85
+ return compact( 'active', 'subject', 'sender', 'body', 'recipient', 'additional_headers', 'attachments', 'use_html' );
86
  }
87
 
88
  function wpcf7_default_messages_template() {
147
  } else { // Object
148
  $children = array();
149
  foreach ( $items as $key => $item ) {
150
+ $key = '"' . esc_js( (string) $key ) . '"';
 
 
 
151
  $children[] = $key . ': ' . wpcf7_json( $item );
152
  }
153
  return '{ ' . join( ', ', $children ) . ' }';
195
  'ko_KR' => __( 'Korean', 'wpcf7' ),
196
  'lv' => __( 'Latvian', 'wpcf7' ),
197
  'lt_LT' => __( 'Lithuanian', 'wpcf7' ),
198
+ 'ml_IN' => __( 'Malayalam', 'wpcf7' ),
199
  'nb_NO' => __( 'Norwegian', 'wpcf7' ),
200
  'fa_IR' => __( 'Persian', 'wpcf7' ),
201
  'pl_PL' => __( 'Polish', 'wpcf7' ),
includes/shortcodes.php CHANGED
@@ -58,10 +58,11 @@ class WPCF7_ShortcodeManager {
58
  $scanned_tag['type'] = $tag;
59
 
60
  if ( is_array( $attr ) ) {
61
- if ( is_array( $attr['options'] ) && ! empty( $attr['options'] ) ) {
62
- if ( $this->shortcode_tags[$tag]['has_name'] )
63
  $scanned_tag['name'] = array_shift( $attr['options'] );
64
- $scanned_tag['options'] = $attr['options'];
 
65
  }
66
  $scanned_tag['raw_values'] = (array) $attr['values'];
67
 
@@ -96,7 +97,7 @@ class WPCF7_ShortcodeManager {
96
  }
97
 
98
  function shortcode_parse_atts( $text ) {
99
- $atts = array();
100
  $text = preg_replace( "/[\x{00a0}\x{200b}]+/u", " ", $text );
101
  $text = stripcslashes( trim( $text ) );
102
 
58
  $scanned_tag['type'] = $tag;
59
 
60
  if ( is_array( $attr ) ) {
61
+ if ( is_array( $attr['options'] ) ) {
62
+ if ( $this->shortcode_tags[$tag]['has_name'] && ! empty( $attr['options'] ) )
63
  $scanned_tag['name'] = array_shift( $attr['options'] );
64
+
65
+ $scanned_tag['options'] = (array) $attr['options'];
66
  }
67
  $scanned_tag['raw_values'] = (array) $attr['values'];
68
 
97
  }
98
 
99
  function shortcode_parse_atts( $text ) {
100
+ $atts = array( 'options' => array(), 'values' => array() );
101
  $text = preg_replace( "/[\x{00a0}\x{200b}]+/u", " ", $text );
102
  $text = stripcslashes( trim( $text ) );
103
 
languages/wpcf7-de_DE.mo CHANGED
Binary file
languages/wpcf7-de_DE.po CHANGED
@@ -1,11 +1,11 @@
1
  msgid ""
2
  msgstr ""
3
- "Project-Id-Version: Contact Form | V2.1.0*\n"
4
  "Report-Msgid-Bugs-To: \n"
5
- "POT-Creation-Date: 2010-01-01 03:37+0900\n"
6
  "PO-Revision-Date: \n"
7
  "Last-Translator: Ivan Graf <contact@bildergallery.com>\n"
8
- "Language-Team: Ivan Graf\n"
9
  "MIME-Version: 1.0\n"
10
  "Content-Type: text/plain; charset=UTF-8\n"
11
  "Content-Transfer-Encoding: 8bit\n"
@@ -13,128 +13,12 @@ msgstr ""
13
  "X-Poedit-Country: SWITZERLAND\n"
14
  "X-Poedit-SourceCharset: utf-8\n"
15
 
16
- #: contact-form-7/admin/admin-panel.php:9
17
- #, php-format
18
- msgid "<strong>The database table for Contact Form 7 does not exist.</strong> You must <a href=\"%s\">create the table</a> for it to work."
19
- msgstr "<strong>Die Datenbanktabelle für Contact Form 7 ist nicht vorhanden.</strong> Sie müssen zuerst eine <a href=\"%s\">Tabelle erstellen</a>."
20
-
21
- #: contact-form-7/admin/admin-panel.php:12
22
- msgid "<strong>The database table for Contact Form 7 does not exist.</strong>"
23
- msgstr "<strong>Die Datenbanktabelle für Contact Form 7 ist nicht vorhanden.</strong>"
24
-
25
- #: contact-form-7/admin/admin-panel.php:17
26
- #: contact-form-7/admin/admin-panel.php:30
27
  #: contact-form-7/admin/admin.php:117
 
 
28
  msgid "Contact Form 7"
29
  msgstr "Contact Form 7"
30
 
31
- #: contact-form-7/admin/admin-panel.php:45
32
- msgid "Add new"
33
- msgstr "Neues Formular"
34
-
35
- #: contact-form-7/admin/admin-panel.php:67
36
- msgid "Copy this code and paste it into your post, page or text widget content."
37
- msgstr "Kopieren Sie diesen Code und fügen ihn in Ihrem Artikel, Seite oder Text-Widget ein."
38
-
39
- #: contact-form-7/admin/admin-panel.php:75
40
- #: contact-form-7/admin/admin-panel.php:309
41
- msgid "Save"
42
- msgstr "Speichern"
43
-
44
- #: contact-form-7/admin/admin-panel.php:82
45
- msgid "Copy"
46
- msgstr "Kopieren"
47
-
48
- #: contact-form-7/admin/admin-panel.php:87
49
- msgid "Delete"
50
- msgstr "Löschen"
51
-
52
- #: contact-form-7/admin/admin-panel.php:89
53
- msgid ""
54
- "You are about to delete this contact form.\n"
55
- " 'Cancel' to stop, 'OK' to delete."
56
- msgstr ""
57
- "Soll dieses Kontaktformular wirklich gelöscht werden?\n"
58
- "'Abbrechen' um zu stoppen oder 'OK' um zu löschen."
59
-
60
- #: contact-form-7/admin/admin-panel.php:104
61
- msgid "Form"
62
- msgstr "Formular"
63
-
64
- #: contact-form-7/admin/admin-panel.php:128
65
- msgid "Mail"
66
- msgstr "Mail"
67
-
68
- #: contact-form-7/admin/admin-panel.php:135
69
- #: contact-form-7/admin/admin-panel.php:202
70
- msgid "To:"
71
- msgstr "An:"
72
-
73
- #: contact-form-7/admin/admin-panel.php:140
74
- #: contact-form-7/admin/admin-panel.php:207
75
- msgid "From:"
76
- msgstr "Von:"
77
-
78
- #: contact-form-7/admin/admin-panel.php:145
79
- #: contact-form-7/admin/admin-panel.php:212
80
- msgid "Subject:"
81
- msgstr "Betreff:"
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 "Zusätzliche Kopfzeilen:"
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 "Datei Anhänge:"
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 "HTML-Content-Typ verwenden"
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:73
101
- msgid "Message body:"
102
- msgstr "Nachrichtentext:"
103
-
104
- #: contact-form-7/admin/admin-panel.php:188
105
- msgid "Mail (2)"
106
- msgstr "Mail (2)"
107
-
108
- #: contact-form-7/admin/admin-panel.php:194
109
- msgid "Use mail (2)"
110
- msgstr "Verwende Mail (2)"
111
-
112
- #: contact-form-7/admin/admin-panel.php:255
113
- msgid "Messages"
114
- msgstr "Meldungen"
115
-
116
- #: contact-form-7/admin/admin-panel.php:285
117
- msgid "Additional Settings"
118
- msgstr "Zusätzliche Einstellungen"
119
-
120
- #: contact-form-7/admin/admin-panel.php:333
121
- #, php-format
122
- msgid "Use the default language (%s)"
123
- msgstr "Verwenden Sie die Standard Sprache (%s)"
124
-
125
- #: contact-form-7/admin/admin-panel.php:334
126
- #: contact-form-7/admin/admin-panel.php:347
127
- msgid "Add New"
128
- msgstr "Neues Formular"
129
-
130
- #: contact-form-7/admin/admin-panel.php:337
131
- msgid "Or"
132
- msgstr "oder"
133
-
134
- #: contact-form-7/admin/admin-panel.php:342
135
- msgid "(select language)"
136
- msgstr "(wähle Sprache)"
137
-
138
  #: contact-form-7/admin/admin.php:117
139
  msgid "Contact"
140
  msgstr "Formular"
@@ -159,82 +43,198 @@ msgstr "Anzeigen"
159
  msgid "Hide"
160
  msgstr "Verstecken"
161
 
162
- #: contact-form-7/admin/admin.php:305
163
  msgid "Contact form"
164
  msgstr "Kontaktformular"
165
 
166
- #: contact-form-7/admin/admin.php:324
167
  msgid "Settings"
168
  msgstr "Einstellungen"
169
 
170
- #: contact-form-7/admin/admin.php:335
171
  msgid "http://contactform7.com/"
172
  msgstr "http://contactform7.com/"
173
 
174
- #: contact-form-7/admin/admin.php:336
175
  msgid "Contactform7.com"
176
  msgstr "Contactform7.com"
177
 
178
- #: contact-form-7/admin/admin.php:337
179
  msgid "http://contactform7.com/docs/"
180
  msgstr "http://contactform7.com/docs/"
181
 
182
- #: contact-form-7/admin/admin.php:338
183
  msgid "Docs"
184
  msgstr "Dokumente"
185
 
186
- #: contact-form-7/admin/admin.php:339
187
  msgid "http://contactform7.com/faq/"
188
  msgstr "http://contactform7.com/faq/"
189
 
190
- #: contact-form-7/admin/admin.php:340
191
  msgid "FAQ"
192
  msgstr "Faq"
193
 
194
- #: contact-form-7/admin/admin.php:341
195
  msgid "http://contactform7.com/support/"
196
  msgstr "http://contactform7.com/support/"
197
 
198
- #: contact-form-7/admin/admin.php:342
199
  msgid "Support"
200
  msgstr "Support"
201
 
202
- #: contact-form-7/admin/admin.php:353
203
  msgid "Contact form created."
204
  msgstr "Kontaktformular erstellt"
205
 
206
- #: contact-form-7/admin/admin.php:356
207
  msgid "Contact form saved."
208
  msgstr "Kontaktformular gespeichert"
209
 
210
- #: contact-form-7/admin/admin.php:359
211
  msgid "Contact form deleted."
212
  msgstr "Kontaktformular gelöscht"
213
 
214
- #: contact-form-7/admin/admin.php:362
215
  msgid "Database table created."
216
  msgstr "Datenbanktabelle erstellt."
217
 
218
- #: contact-form-7/admin/admin.php:365
219
  msgid "Failed to create database table."
220
  msgstr "Fehler beim Erstellen einer Datenbanktabelle."
221
 
222
- #: contact-form-7/admin/admin.php:398
223
  msgid "Contact Form 7 needs your support. Please donate today."
224
  msgstr "Contact Form 7 braucht Ihre Unterstützung. Bitte spenden Sie noch heute."
225
 
226
- #: contact-form-7/admin/admin.php:399
227
  msgid "Is this plugin useful for you? If you like it, please help the developer."
228
  msgstr "Ist dieses Plugin nützlich für Sie? Wenn es Ihnen gefällt, helfen Sie dem Entwickler."
229
 
230
- #: contact-form-7/admin/admin.php:400
231
  msgid "Your contribution is needed for making this plugin better."
232
  msgstr "Ihr Beitrag ist für die Herstellung dieses Plugin sehr nützlich."
233
 
234
- #: contact-form-7/admin/admin.php:401
235
  msgid "Developing a plugin and providing user support is really hard work. Please help."
236
  msgstr "Die Entwicklung eines Plugins sowie die vielen Support Anfragen verbrauchen viel Zeit. Helfen Sie uns mit einer Spende."
237
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
238
  #: contact-form-7/includes/classes.php:568
239
  msgid "Untitled"
240
  msgstr "Ohne Titel"
@@ -338,178 +338,182 @@ msgid "This mail is sent via contact form on %1$s %2$s"
338
  msgstr "Dieses Mail wurde über das Kontaktformular von %1$s (%2$s) gesendet"
339
 
340
  #: contact-form-7/includes/functions.php:163
 
 
 
 
341
  msgid "Albanian"
342
  msgstr "Albanisch"
343
 
344
- #: contact-form-7/includes/functions.php:164
345
  msgid "Arabic"
346
  msgstr "Arabisch"
347
 
348
- #: contact-form-7/includes/functions.php:165
349
  msgid "Bangla"
350
  msgstr "Bengalisch"
351
 
352
- #: contact-form-7/includes/functions.php:166
353
  msgid "Bosnian"
354
  msgstr "Bosnisch"
355
 
356
- #: contact-form-7/includes/functions.php:167
357
  msgid "Brazilian Portuguese"
358
  msgstr "Brasilianisch Portugiesisch"
359
 
360
- #: contact-form-7/includes/functions.php:168
361
  msgid "Bulgarian"
362
  msgstr "Bulgarisch"
363
 
364
- #: contact-form-7/includes/functions.php:169
365
  msgid "Catalan"
366
  msgstr "Katalanisch"
367
 
368
- #: contact-form-7/includes/functions.php:170
369
  msgid "Chinese (Simplified)"
370
  msgstr "Chinesisch (Vereinfacht)"
371
 
372
- #: contact-form-7/includes/functions.php:171
373
  msgid "Chinese (Traditional)"
374
  msgstr "Chinesisch (Traditionell)"
375
 
376
- #: contact-form-7/includes/functions.php:172
377
  msgid "Croatian"
378
  msgstr "Kroatisch"
379
 
380
- #: contact-form-7/includes/functions.php:173
381
  msgid "Czech"
382
  msgstr "Tschechisch"
383
 
384
- #: contact-form-7/includes/functions.php:174
385
  msgid "Danish"
386
  msgstr "Dänisch"
387
 
388
- #: contact-form-7/includes/functions.php:175
389
  msgid "Dutch"
390
  msgstr "Holländisch"
391
 
392
- #: contact-form-7/includes/functions.php:176
393
  msgid "English"
394
  msgstr "Englisch"
395
 
396
- #: contact-form-7/includes/functions.php:177
397
  msgid "Estonian"
398
  msgstr "Estonian"
399
 
400
- #: contact-form-7/includes/functions.php:178
401
  msgid "Finnish"
402
  msgstr "Finnisch"
403
 
404
- #: contact-form-7/includes/functions.php:179
405
  msgid "French"
406
  msgstr "Französisch"
407
 
408
- #: contact-form-7/includes/functions.php:180
409
  msgid "Georgian"
410
  msgstr "Georgisch"
411
 
412
- #: contact-form-7/includes/functions.php:181
413
  msgid "German"
414
  msgstr "Deutsch"
415
 
416
- #: contact-form-7/includes/functions.php:182
417
  msgid "Greek"
418
  msgstr "Griechisch"
419
 
420
- #: contact-form-7/includes/functions.php:183
421
  msgid "Hebrew"
422
  msgstr "Hebräisch"
423
 
424
- #: contact-form-7/includes/functions.php:184
425
  msgid "Hindi"
426
  msgstr "Hindisch"
427
 
428
- #: contact-form-7/includes/functions.php:185
429
  msgid "Hungarian"
430
  msgstr "Ungarisch"
431
 
432
- #: contact-form-7/includes/functions.php:186
433
  msgid "Indonesian"
434
  msgstr "Indonesisch"
435
 
436
- #: contact-form-7/includes/functions.php:187
437
  msgid "Italian"
438
  msgstr "Italienisch"
439
 
440
- #: contact-form-7/includes/functions.php:188
441
  msgid "Japanese"
442
  msgstr "Japanisch"
443
 
444
- #: contact-form-7/includes/functions.php:189
445
  msgid "Korean"
446
  msgstr "Koreanisch"
447
 
448
- #: contact-form-7/includes/functions.php:190
449
  msgid "Latvian"
450
  msgstr "Lettisch"
451
 
452
- #: contact-form-7/includes/functions.php:191
453
  msgid "Lithuanian"
454
  msgstr "Litauisch"
455
 
456
- #: contact-form-7/includes/functions.php:192
457
  msgid "Norwegian"
458
  msgstr "Norwegisch"
459
 
460
- #: contact-form-7/includes/functions.php:193
461
  msgid "Persian"
462
  msgstr "Persisch"
463
 
464
- #: contact-form-7/includes/functions.php:194
465
  msgid "Polish"
466
  msgstr "Polnisch"
467
 
468
- #: contact-form-7/includes/functions.php:195
469
  msgid "Portuguese"
470
  msgstr "Portugiesisch"
471
 
472
- #: contact-form-7/includes/functions.php:196
473
  msgid "Russian"
474
  msgstr "Russisch"
475
 
476
- #: contact-form-7/includes/functions.php:197
477
  msgid "Romanian"
478
  msgstr "Rumänisch"
479
 
480
- #: contact-form-7/includes/functions.php:198
481
  msgid "Serbian"
482
  msgstr "Serbisch"
483
 
484
- #: contact-form-7/includes/functions.php:199
485
  msgid "Slovak"
486
  msgstr "Slowakisch"
487
 
488
- #: contact-form-7/includes/functions.php:200
489
  msgid "Slovene"
490
  msgstr "Slovenisch"
491
 
492
- #: contact-form-7/includes/functions.php:201
493
  msgid "Spanish"
494
  msgstr "Spanisch"
495
 
496
- #: contact-form-7/includes/functions.php:202
497
  msgid "Swedish"
498
  msgstr "Schwedisch"
499
 
500
- #: contact-form-7/includes/functions.php:203
501
  msgid "Thai"
502
  msgstr "Thailändisch"
503
 
504
- #: contact-form-7/includes/functions.php:204
505
  msgid "Turkish"
506
  msgstr "Türkisch"
507
 
508
- #: contact-form-7/includes/functions.php:205
509
  msgid "Ukrainian"
510
  msgstr "Ukrainisch"
511
 
512
- #: contact-form-7/includes/functions.php:206
513
  msgid "Vietnamese"
514
  msgstr "Vietnamesisch"
515
 
1
  msgid ""
2
  msgstr ""
3
+ "Project-Id-Version: Contact Form | V2.1.1\n"
4
  "Report-Msgid-Bugs-To: \n"
5
+ "POT-Creation-Date: 2010-01-09 03:18+0900\n"
6
  "PO-Revision-Date: \n"
7
  "Last-Translator: Ivan Graf <contact@bildergallery.com>\n"
8
+ "Language-Team: Ivan Graf <contact@bildergallery.com>\n"
9
  "MIME-Version: 1.0\n"
10
  "Content-Type: text/plain; charset=UTF-8\n"
11
  "Content-Transfer-Encoding: 8bit\n"
13
  "X-Poedit-Country: SWITZERLAND\n"
14
  "X-Poedit-SourceCharset: utf-8\n"
15
 
 
 
 
 
 
 
 
 
 
 
 
16
  #: contact-form-7/admin/admin.php:117
17
+ #: contact-form-7/admin/edit.php:17
18
+ #: contact-form-7/admin/edit.php:30
19
  msgid "Contact Form 7"
20
  msgstr "Contact Form 7"
21
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
22
  #: contact-form-7/admin/admin.php:117
23
  msgid "Contact"
24
  msgstr "Formular"
43
  msgid "Hide"
44
  msgstr "Verstecken"
45
 
46
+ #: contact-form-7/admin/admin.php:257
47
  msgid "Contact form"
48
  msgstr "Kontaktformular"
49
 
50
+ #: contact-form-7/admin/admin.php:276
51
  msgid "Settings"
52
  msgstr "Einstellungen"
53
 
54
+ #: contact-form-7/admin/admin.php:287
55
  msgid "http://contactform7.com/"
56
  msgstr "http://contactform7.com/"
57
 
58
+ #: contact-form-7/admin/admin.php:288
59
  msgid "Contactform7.com"
60
  msgstr "Contactform7.com"
61
 
62
+ #: contact-form-7/admin/admin.php:289
63
  msgid "http://contactform7.com/docs/"
64
  msgstr "http://contactform7.com/docs/"
65
 
66
+ #: contact-form-7/admin/admin.php:290
67
  msgid "Docs"
68
  msgstr "Dokumente"
69
 
70
+ #: contact-form-7/admin/admin.php:291
71
  msgid "http://contactform7.com/faq/"
72
  msgstr "http://contactform7.com/faq/"
73
 
74
+ #: contact-form-7/admin/admin.php:292
75
  msgid "FAQ"
76
  msgstr "Faq"
77
 
78
+ #: contact-form-7/admin/admin.php:293
79
  msgid "http://contactform7.com/support/"
80
  msgstr "http://contactform7.com/support/"
81
 
82
+ #: contact-form-7/admin/admin.php:294
83
  msgid "Support"
84
  msgstr "Support"
85
 
86
+ #: contact-form-7/admin/admin.php:305
87
  msgid "Contact form created."
88
  msgstr "Kontaktformular erstellt"
89
 
90
+ #: contact-form-7/admin/admin.php:308
91
  msgid "Contact form saved."
92
  msgstr "Kontaktformular gespeichert"
93
 
94
+ #: contact-form-7/admin/admin.php:311
95
  msgid "Contact form deleted."
96
  msgstr "Kontaktformular gelöscht"
97
 
98
+ #: contact-form-7/admin/admin.php:314
99
  msgid "Database table created."
100
  msgstr "Datenbanktabelle erstellt."
101
 
102
+ #: contact-form-7/admin/admin.php:317
103
  msgid "Failed to create database table."
104
  msgstr "Fehler beim Erstellen einer Datenbanktabelle."
105
 
106
+ #: contact-form-7/admin/admin.php:350
107
  msgid "Contact Form 7 needs your support. Please donate today."
108
  msgstr "Contact Form 7 braucht Ihre Unterstützung. Bitte spenden Sie noch heute."
109
 
110
+ #: contact-form-7/admin/admin.php:351
111
  msgid "Is this plugin useful for you? If you like it, please help the developer."
112
  msgstr "Ist dieses Plugin nützlich für Sie? Wenn es Ihnen gefällt, helfen Sie dem Entwickler."
113
 
114
+ #: contact-form-7/admin/admin.php:352
115
  msgid "Your contribution is needed for making this plugin better."
116
  msgstr "Ihr Beitrag ist für die Herstellung dieses Plugin sehr nützlich."
117
 
118
+ #: contact-form-7/admin/admin.php:353
119
  msgid "Developing a plugin and providing user support is really hard work. Please help."
120
  msgstr "Die Entwicklung eines Plugins sowie die vielen Support Anfragen verbrauchen viel Zeit. Helfen Sie uns mit einer Spende."
121
 
122
+ #: contact-form-7/admin/edit.php:9
123
+ #, php-format
124
+ 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."
125
+ msgstr "<strong>Die Datenbanktabelle für Contact Form 7 ist nicht vorhanden.</strong> Sie müssen zuerst eine <a href=\"%s\">Tabelle erstellen</a>."
126
+
127
+ #: contact-form-7/admin/edit.php:12
128
+ msgid "<strong>The database table for Contact Form 7 does not exist.</strong>"
129
+ msgstr "<strong>Die Datenbanktabelle für Contact Form 7 ist nicht vorhanden.</strong>"
130
+
131
+ #: contact-form-7/admin/edit.php:45
132
+ msgid "Add new"
133
+ msgstr "Neues Formular"
134
+
135
+ #: contact-form-7/admin/edit.php:67
136
+ msgid "Copy this code and paste it into your post, page or text widget content."
137
+ msgstr "Kopieren Sie diesen Code und fügen ihn in Ihrem Artikel, Seite oder Text-Widget ein."
138
+
139
+ #: contact-form-7/admin/edit.php:75
140
+ #: contact-form-7/admin/edit.php:309
141
+ msgid "Save"
142
+ msgstr "Speichern"
143
+
144
+ #: contact-form-7/admin/edit.php:82
145
+ msgid "Copy"
146
+ msgstr "Kopieren"
147
+
148
+ #: contact-form-7/admin/edit.php:87
149
+ msgid "Delete"
150
+ msgstr "Löschen"
151
+
152
+ #: contact-form-7/admin/edit.php:89
153
+ msgid ""
154
+ "You are about to delete this contact form.\n"
155
+ " 'Cancel' to stop, 'OK' to delete."
156
+ msgstr ""
157
+ "Soll dieses Kontaktformular wirklich gelöscht werden?\n"
158
+ "'Abbrechen' um zu stoppen oder 'OK' um zu löschen."
159
+
160
+ #: contact-form-7/admin/edit.php:104
161
+ msgid "Form"
162
+ msgstr "Formular"
163
+
164
+ #: contact-form-7/admin/edit.php:128
165
+ msgid "Mail"
166
+ msgstr "Mail"
167
+
168
+ #: contact-form-7/admin/edit.php:135
169
+ #: contact-form-7/admin/edit.php:202
170
+ msgid "To:"
171
+ msgstr "An:"
172
+
173
+ #: contact-form-7/admin/edit.php:140
174
+ #: contact-form-7/admin/edit.php:207
175
+ msgid "From:"
176
+ msgstr "Von:"
177
+
178
+ #: contact-form-7/admin/edit.php:145
179
+ #: contact-form-7/admin/edit.php:212
180
+ msgid "Subject:"
181
+ msgstr "Betreff:"
182
+
183
+ #: contact-form-7/admin/edit.php:152
184
+ #: contact-form-7/admin/edit.php:219
185
+ msgid "Additional headers:"
186
+ msgstr "Zusätzliche Kopfzeilen:"
187
+
188
+ #: contact-form-7/admin/edit.php:157
189
+ #: contact-form-7/admin/edit.php:224
190
+ msgid "File attachments:"
191
+ msgstr "Datei Anhänge:"
192
+
193
+ #: contact-form-7/admin/edit.php:165
194
+ #: contact-form-7/admin/edit.php:232
195
+ msgid "Use HTML content type"
196
+ msgstr "HTML-Content-Typ verwenden"
197
+
198
+ #: contact-form-7/admin/edit.php:172
199
+ #: contact-form-7/admin/edit.php:239
200
+ #: contact-form-7/includes/functions.php:73
201
+ msgid "Message body:"
202
+ msgstr "Nachrichtentext:"
203
+
204
+ #: contact-form-7/admin/edit.php:188
205
+ msgid "Mail (2)"
206
+ msgstr "Mail (2)"
207
+
208
+ #: contact-form-7/admin/edit.php:194
209
+ msgid "Use mail (2)"
210
+ msgstr "Verwende Mail (2)"
211
+
212
+ #: contact-form-7/admin/edit.php:255
213
+ msgid "Messages"
214
+ msgstr "Meldungen"
215
+
216
+ #: contact-form-7/admin/edit.php:285
217
+ msgid "Additional Settings"
218
+ msgstr "Zusätzliche Einstellungen"
219
+
220
+ #: contact-form-7/admin/edit.php:333
221
+ #, php-format
222
+ msgid "Use the default language (%s)"
223
+ msgstr "Verwenden Sie die Standardsprache (%s)"
224
+
225
+ #: contact-form-7/admin/edit.php:334
226
+ #: contact-form-7/admin/edit.php:347
227
+ msgid "Add New"
228
+ msgstr "Neues Formular"
229
+
230
+ #: contact-form-7/admin/edit.php:337
231
+ msgid "Or"
232
+ msgstr "oder"
233
+
234
+ #: contact-form-7/admin/edit.php:342
235
+ msgid "(select language)"
236
+ msgstr "(wähle Sprache)"
237
+
238
  #: contact-form-7/includes/classes.php:568
239
  msgid "Untitled"
240
  msgstr "Ohne Titel"
338
  msgstr "Dieses Mail wurde über das Kontaktformular von %1$s (%2$s) gesendet"
339
 
340
  #: contact-form-7/includes/functions.php:163
341
+ msgid "Afrikaans"
342
+ msgstr "Afrikanisch"
343
+
344
+ #: contact-form-7/includes/functions.php:164
345
  msgid "Albanian"
346
  msgstr "Albanisch"
347
 
348
+ #: contact-form-7/includes/functions.php:165
349
  msgid "Arabic"
350
  msgstr "Arabisch"
351
 
352
+ #: contact-form-7/includes/functions.php:166
353
  msgid "Bangla"
354
  msgstr "Bengalisch"
355
 
356
+ #: contact-form-7/includes/functions.php:167
357
  msgid "Bosnian"
358
  msgstr "Bosnisch"
359
 
360
+ #: contact-form-7/includes/functions.php:168
361
  msgid "Brazilian Portuguese"
362
  msgstr "Brasilianisch Portugiesisch"
363
 
364
+ #: contact-form-7/includes/functions.php:169
365
  msgid "Bulgarian"
366
  msgstr "Bulgarisch"
367
 
368
+ #: contact-form-7/includes/functions.php:170
369
  msgid "Catalan"
370
  msgstr "Katalanisch"
371
 
372
+ #: contact-form-7/includes/functions.php:171
373
  msgid "Chinese (Simplified)"
374
  msgstr "Chinesisch (Vereinfacht)"
375
 
376
+ #: contact-form-7/includes/functions.php:172
377
  msgid "Chinese (Traditional)"
378
  msgstr "Chinesisch (Traditionell)"
379
 
380
+ #: contact-form-7/includes/functions.php:173
381
  msgid "Croatian"
382
  msgstr "Kroatisch"
383
 
384
+ #: contact-form-7/includes/functions.php:174
385
  msgid "Czech"
386
  msgstr "Tschechisch"
387
 
388
+ #: contact-form-7/includes/functions.php:175
389
  msgid "Danish"
390
  msgstr "Dänisch"
391
 
392
+ #: contact-form-7/includes/functions.php:176
393
  msgid "Dutch"
394
  msgstr "Holländisch"
395
 
396
+ #: contact-form-7/includes/functions.php:177
397
  msgid "English"
398
  msgstr "Englisch"
399
 
400
+ #: contact-form-7/includes/functions.php:178
401
  msgid "Estonian"
402
  msgstr "Estonian"
403
 
404
+ #: contact-form-7/includes/functions.php:179
405
  msgid "Finnish"
406
  msgstr "Finnisch"
407
 
408
+ #: contact-form-7/includes/functions.php:180
409
  msgid "French"
410
  msgstr "Französisch"
411
 
412
+ #: contact-form-7/includes/functions.php:181
413
  msgid "Georgian"
414
  msgstr "Georgisch"
415
 
416
+ #: contact-form-7/includes/functions.php:182
417
  msgid "German"
418
  msgstr "Deutsch"
419
 
420
+ #: contact-form-7/includes/functions.php:183
421
  msgid "Greek"
422
  msgstr "Griechisch"
423
 
424
+ #: contact-form-7/includes/functions.php:184
425
  msgid "Hebrew"
426
  msgstr "Hebräisch"
427
 
428
+ #: contact-form-7/includes/functions.php:185
429
  msgid "Hindi"
430
  msgstr "Hindisch"
431
 
432
+ #: contact-form-7/includes/functions.php:186
433
  msgid "Hungarian"
434
  msgstr "Ungarisch"
435
 
436
+ #: contact-form-7/includes/functions.php:187
437
  msgid "Indonesian"
438
  msgstr "Indonesisch"
439
 
440
+ #: contact-form-7/includes/functions.php:188
441
  msgid "Italian"
442
  msgstr "Italienisch"
443
 
444
+ #: contact-form-7/includes/functions.php:189
445
  msgid "Japanese"
446
  msgstr "Japanisch"
447
 
448
+ #: contact-form-7/includes/functions.php:190
449
  msgid "Korean"
450
  msgstr "Koreanisch"
451
 
452
+ #: contact-form-7/includes/functions.php:191
453
  msgid "Latvian"
454
  msgstr "Lettisch"
455
 
456
+ #: contact-form-7/includes/functions.php:192
457
  msgid "Lithuanian"
458
  msgstr "Litauisch"
459
 
460
+ #: contact-form-7/includes/functions.php:193
461
  msgid "Norwegian"
462
  msgstr "Norwegisch"
463
 
464
+ #: contact-form-7/includes/functions.php:194
465
  msgid "Persian"
466
  msgstr "Persisch"
467
 
468
+ #: contact-form-7/includes/functions.php:195
469
  msgid "Polish"
470
  msgstr "Polnisch"
471
 
472
+ #: contact-form-7/includes/functions.php:196
473
  msgid "Portuguese"
474
  msgstr "Portugiesisch"
475
 
476
+ #: contact-form-7/includes/functions.php:197
477
  msgid "Russian"
478
  msgstr "Russisch"
479
 
480
+ #: contact-form-7/includes/functions.php:198
481
  msgid "Romanian"
482
  msgstr "Rumänisch"
483
 
484
+ #: contact-form-7/includes/functions.php:199
485
  msgid "Serbian"
486
  msgstr "Serbisch"
487
 
488
+ #: contact-form-7/includes/functions.php:200
489
  msgid "Slovak"
490
  msgstr "Slowakisch"
491
 
492
+ #: contact-form-7/includes/functions.php:201
493
  msgid "Slovene"
494
  msgstr "Slovenisch"
495
 
496
+ #: contact-form-7/includes/functions.php:202
497
  msgid "Spanish"
498
  msgstr "Spanisch"
499
 
500
+ #: contact-form-7/includes/functions.php:203
501
  msgid "Swedish"
502
  msgstr "Schwedisch"
503
 
504
+ #: contact-form-7/includes/functions.php:204
505
  msgid "Thai"
506
  msgstr "Thailändisch"
507
 
508
+ #: contact-form-7/includes/functions.php:205
509
  msgid "Turkish"
510
  msgstr "Türkisch"
511
 
512
+ #: contact-form-7/includes/functions.php:206
513
  msgid "Ukrainian"
514
  msgstr "Ukrainisch"
515
 
516
+ #: contact-form-7/includes/functions.php:207
517
  msgid "Vietnamese"
518
  msgstr "Vietnamesisch"
519
 
languages/wpcf7-ja.mo CHANGED
Binary file
languages/wpcf7-ja.po CHANGED
@@ -2,126 +2,126 @@ msgid ""
2
  msgstr ""
3
  "Project-Id-Version: Contact Form 7\n"
4
  "Report-Msgid-Bugs-To: \n"
5
- "POT-Creation-Date: 2010-01-09 03:18+0900\n"
6
- "PO-Revision-Date: 2010-01-09 03:19+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"
10
  "Content-Type: text/plain; charset=UTF-8\n"
11
  "Content-Transfer-Encoding: 8bit\n"
12
- "X-Poedit-Language: Japanese\n"
13
- "X-Poedit-Country: JAPAN\n"
14
  "X-Poedit-SourceCharset: utf-8\n"
15
  "X-Poedit-KeywordsList: __;_e;__ngettext:1,2;_c\n"
16
  "X-Poedit-Basepath: ../..\n"
17
  "Plural-Forms: nplurals=1; plural=0;\n"
 
 
18
  "X-Poedit-SearchPath-0: contact-form-7\n"
19
 
20
- #: contact-form-7/admin/admin.php:117
21
  #: contact-form-7/admin/edit.php:17
22
  #: contact-form-7/admin/edit.php:30
23
  msgid "Contact Form 7"
24
  msgstr "Contact Form 7"
25
 
26
- #: contact-form-7/admin/admin.php:117
27
  msgid "Contact"
28
  msgstr "お問い合わせ"
29
 
30
- #: contact-form-7/admin/admin.php:120
31
  msgid "Edit Contact Forms"
32
  msgstr "コンタクトフォームの編集"
33
 
34
- #: contact-form-7/admin/admin.php:120
35
  msgid "Edit"
36
  msgstr "編集"
37
 
38
- #: contact-form-7/admin/admin.php:159
39
  msgid "Generate Tag"
40
  msgstr "タグの作成"
41
 
42
- #: contact-form-7/admin/admin.php:160
43
  msgid "Show"
44
  msgstr "表示"
45
 
46
- #: contact-form-7/admin/admin.php:161
47
  msgid "Hide"
48
  msgstr "非表示"
49
 
50
- #: contact-form-7/admin/admin.php:257
51
  msgid "Contact form"
52
  msgstr "コンタクトフォーム"
53
 
54
- #: contact-form-7/admin/admin.php:276
55
  msgid "Settings"
56
  msgstr "設定"
57
 
58
- #: contact-form-7/admin/admin.php:287
59
  msgid "http://contactform7.com/"
60
  msgstr "http://contactform7.com/ja/"
61
 
62
- #: contact-form-7/admin/admin.php:288
63
  msgid "Contactform7.com"
64
  msgstr "Contactform7.com (日本語)"
65
 
66
- #: contact-form-7/admin/admin.php:289
67
  msgid "http://contactform7.com/docs/"
68
  msgstr "http://contactform7.com/ja/docs-2/"
69
 
70
- #: contact-form-7/admin/admin.php:290
71
  msgid "Docs"
72
  msgstr "使い方"
73
 
74
- #: contact-form-7/admin/admin.php:291
75
  msgid "http://contactform7.com/faq/"
76
  msgstr "http://contactform7.com/ja/faq-2/"
77
 
78
- #: contact-form-7/admin/admin.php:292
79
  msgid "FAQ"
80
  msgstr "FAQ"
81
 
82
- #: contact-form-7/admin/admin.php:293
83
  msgid "http://contactform7.com/support/"
84
  msgstr "http://contactform7.com/ja/support-2/"
85
 
86
- #: contact-form-7/admin/admin.php:294
87
  msgid "Support"
88
  msgstr "サポート"
89
 
90
- #: contact-form-7/admin/admin.php:305
91
  msgid "Contact form created."
92
  msgstr "コンタクトフォームが作成されました。"
93
 
94
- #: contact-form-7/admin/admin.php:308
95
  msgid "Contact form saved."
96
  msgstr "コンタクトフォームが保存されました。"
97
 
98
- #: contact-form-7/admin/admin.php:311
99
  msgid "Contact form deleted."
100
  msgstr "コンタクトフォームが削除されました。"
101
 
102
- #: contact-form-7/admin/admin.php:314
103
  msgid "Database table created."
104
  msgstr "データベーステーブルを作成しました。"
105
 
106
- #: contact-form-7/admin/admin.php:317
107
  msgid "Failed to create database table."
108
  msgstr "データベーステーブルを作成できませんでした。"
109
 
110
- #: contact-form-7/admin/admin.php:350
111
  msgid "Contact Form 7 needs your support. Please donate today."
112
  msgstr "Contact Form 7 はあなたの支援を必要としています。寄付をお願いします。"
113
 
114
- #: contact-form-7/admin/admin.php:351
115
- msgid "Is this plugin useful for you? If you like it, please help the developer."
116
- msgstr "このプラグインは役に立っていますか? プラグインの開発を続けるためにあなたの支援が必要です。"
117
-
118
- #: contact-form-7/admin/admin.php:352
119
  msgid "Your contribution is needed for making this plugin better."
120
  msgstr "あなたの貢献があればこのプラグインをもっと良くすることができます。"
121
 
122
- #: contact-form-7/admin/admin.php:353
123
- msgid "Developing a plugin and providing user support is really hard work. Please help."
124
- msgstr "プラグインを開発してユーザーサポートを提供するというのはとても大変な仕事です。ちょっとでいいから助けてください。"
 
 
 
 
125
 
126
  #: contact-form-7/admin/edit.php:9
127
  #, php-format
@@ -201,7 +201,7 @@ msgstr "HTML 形式のメールを使用する"
201
 
202
  #: contact-form-7/admin/edit.php:172
203
  #: contact-form-7/admin/edit.php:239
204
- #: contact-form-7/includes/functions.php:73
205
  msgid "Message body:"
206
  msgstr "メッセージ本文:"
207
 
@@ -239,7 +239,7 @@ msgstr "または"
239
  msgid "(select language)"
240
  msgstr "(言語を選択)"
241
 
242
- #: contact-form-7/includes/classes.php:568
243
  msgid "Untitled"
244
  msgstr "無題"
245
 
@@ -296,244 +296,248 @@ msgstr "入力必須の項目が入力されていない"
296
  msgid "Please fill the required field."
297
  msgstr "必須項目に記入もれがあります。"
298
 
299
- #: contact-form-7/includes/functions.php:45
300
  msgid "Your Name"
301
  msgstr "お名前"
302
 
303
- #: contact-form-7/includes/functions.php:45
304
- #: contact-form-7/includes/functions.php:47
305
  msgid "(required)"
306
  msgstr "(必須)"
307
 
308
- #: contact-form-7/includes/functions.php:47
309
  msgid "Your Email"
310
  msgstr "メールアドレス"
311
 
312
- #: contact-form-7/includes/functions.php:49
313
  msgid "Subject"
314
  msgstr "題名"
315
 
316
- #: contact-form-7/includes/functions.php:51
317
  msgid "Your Message"
318
  msgstr "メッセージ本文"
319
 
320
- #: contact-form-7/includes/functions.php:53
321
  msgid "Send"
322
  msgstr "送信"
323
 
324
- #: contact-form-7/includes/functions.php:60
325
  #, php-format
326
  msgid "From: %s"
327
  msgstr "差出人: %s"
328
 
329
- #: contact-form-7/includes/functions.php:61
330
  #, php-format
331
  msgid "Subject: %s"
332
  msgstr "題名: %s"
333
 
334
- #: contact-form-7/includes/functions.php:62
335
  msgid "Message Body:"
336
  msgstr "メッセージ本文:"
337
 
338
- #: contact-form-7/includes/functions.php:63
339
- #: contact-form-7/includes/functions.php:74
340
  #, php-format
341
  msgid "This mail is sent via contact form on %1$s %2$s"
342
  msgstr "このメールは %1$s %2$s のお問い合わせフォームから送信されました"
343
 
344
- #: contact-form-7/includes/functions.php:163
345
  msgid "Afrikaans"
346
  msgstr "アフリカーンス語"
347
 
348
- #: contact-form-7/includes/functions.php:164
349
  msgid "Albanian"
350
  msgstr "アルバニア語"
351
 
352
- #: contact-form-7/includes/functions.php:165
353
  msgid "Arabic"
354
  msgstr "アラビア語"
355
 
356
- #: contact-form-7/includes/functions.php:166
357
  msgid "Bangla"
358
  msgstr "ベンガル語"
359
 
360
- #: contact-form-7/includes/functions.php:167
361
  msgid "Bosnian"
362
  msgstr "ボスニア語"
363
 
364
- #: contact-form-7/includes/functions.php:168
365
  msgid "Brazilian Portuguese"
366
  msgstr "ブラジルのポルトガル語"
367
 
368
- #: contact-form-7/includes/functions.php:169
369
  msgid "Bulgarian"
370
  msgstr "ブルガリア語"
371
 
372
- #: contact-form-7/includes/functions.php:170
373
  msgid "Catalan"
374
  msgstr "カタルーニャ語"
375
 
376
- #: contact-form-7/includes/functions.php:171
377
  msgid "Chinese (Simplified)"
378
  msgstr "中国語 (簡体字)"
379
 
380
- #: contact-form-7/includes/functions.php:172
381
  msgid "Chinese (Traditional)"
382
  msgstr "中国語 (繁体字)"
383
 
384
- #: contact-form-7/includes/functions.php:173
385
  msgid "Croatian"
386
  msgstr "クロアチア語"
387
 
388
- #: contact-form-7/includes/functions.php:174
389
  msgid "Czech"
390
  msgstr "チェコ語"
391
 
392
- #: contact-form-7/includes/functions.php:175
393
  msgid "Danish"
394
  msgstr "デンマーク語"
395
 
396
- #: contact-form-7/includes/functions.php:176
397
  msgid "Dutch"
398
  msgstr "オランダ語"
399
 
400
- #: contact-form-7/includes/functions.php:177
401
  msgid "English"
402
  msgstr "英語"
403
 
404
- #: contact-form-7/includes/functions.php:178
405
  msgid "Estonian"
406
  msgstr "エストニア語"
407
 
408
- #: contact-form-7/includes/functions.php:179
409
  msgid "Finnish"
410
  msgstr "フィンランド語"
411
 
412
- #: contact-form-7/includes/functions.php:180
413
  msgid "French"
414
  msgstr "フランス語"
415
 
416
- #: contact-form-7/includes/functions.php:181
417
  msgid "Georgian"
418
  msgstr "グルジア語"
419
 
420
- #: contact-form-7/includes/functions.php:182
421
  msgid "German"
422
  msgstr "ドイツ語"
423
 
424
- #: contact-form-7/includes/functions.php:183
425
  msgid "Greek"
426
  msgstr "ギリシャ語"
427
 
428
- #: contact-form-7/includes/functions.php:184
429
  msgid "Hebrew"
430
  msgstr "ヘブライ語"
431
 
432
- #: contact-form-7/includes/functions.php:185
433
  msgid "Hindi"
434
  msgstr "ヒンディー語"
435
 
436
- #: contact-form-7/includes/functions.php:186
437
  msgid "Hungarian"
438
  msgstr "ハンガリー語"
439
 
440
- #: contact-form-7/includes/functions.php:187
441
  msgid "Indonesian"
442
  msgstr "インドネシア語"
443
 
444
- #: contact-form-7/includes/functions.php:188
445
  msgid "Italian"
446
  msgstr "イタリア語"
447
 
448
- #: contact-form-7/includes/functions.php:189
449
  msgid "Japanese"
450
  msgstr "日本語"
451
 
452
- #: contact-form-7/includes/functions.php:190
453
  msgid "Korean"
454
  msgstr "韓国語"
455
 
456
- #: contact-form-7/includes/functions.php:191
457
  msgid "Latvian"
458
  msgstr "ラトビア語"
459
 
460
- #: contact-form-7/includes/functions.php:192
461
  msgid "Lithuanian"
462
  msgstr "リトアニア語"
463
 
464
- #: contact-form-7/includes/functions.php:193
 
 
 
 
465
  msgid "Norwegian"
466
  msgstr "ノルウェー語"
467
 
468
- #: contact-form-7/includes/functions.php:194
469
  msgid "Persian"
470
  msgstr "ペルシア語"
471
 
472
- #: contact-form-7/includes/functions.php:195
473
  msgid "Polish"
474
  msgstr "ポーランド語"
475
 
476
- #: contact-form-7/includes/functions.php:196
477
  msgid "Portuguese"
478
  msgstr "ポルトガル語"
479
 
480
- #: contact-form-7/includes/functions.php:197
481
  msgid "Russian"
482
  msgstr "ロシア語"
483
 
484
- #: contact-form-7/includes/functions.php:198
485
  msgid "Romanian"
486
  msgstr "ルーマニア語"
487
 
488
- #: contact-form-7/includes/functions.php:199
489
  msgid "Serbian"
490
  msgstr "セルビア語"
491
 
492
- #: contact-form-7/includes/functions.php:200
493
  msgid "Slovak"
494
  msgstr "スロバキア語"
495
 
496
- #: contact-form-7/includes/functions.php:201
497
  msgid "Slovene"
498
  msgstr "スロベニア語"
499
 
500
- #: contact-form-7/includes/functions.php:202
501
  msgid "Spanish"
502
  msgstr "スペイン語"
503
 
504
- #: contact-form-7/includes/functions.php:203
505
  msgid "Swedish"
506
  msgstr "スウェーデン語"
507
 
508
- #: contact-form-7/includes/functions.php:204
509
  msgid "Thai"
510
  msgstr "タイ語"
511
 
512
- #: contact-form-7/includes/functions.php:205
513
  msgid "Turkish"
514
  msgstr "トルコ語"
515
 
516
- #: contact-form-7/includes/functions.php:206
517
  msgid "Ukrainian"
518
  msgstr "ウクライナ語"
519
 
520
- #: contact-form-7/includes/functions.php:207
521
  msgid "Vietnamese"
522
  msgstr "ベトナム語"
523
 
524
- #: contact-form-7/modules/acceptance.php:94
525
  msgid "Acceptance"
526
  msgstr "承諾の確認"
527
 
528
- #: contact-form-7/modules/acceptance.php:103
529
  #: contact-form-7/modules/captcha.php:206
530
- #: contact-form-7/modules/checkbox.php:196
531
  #: contact-form-7/modules/file.php:234
532
  msgid "Name"
533
  msgstr "名前"
534
 
535
- #: contact-form-7/modules/acceptance.php:108
536
- #: contact-form-7/modules/acceptance.php:111
537
  #: contact-form-7/modules/captcha.php:213
538
  #: contact-form-7/modules/captcha.php:216
539
  #: contact-form-7/modules/captcha.php:221
@@ -543,8 +547,8 @@ msgstr "名前"
543
  #: contact-form-7/modules/captcha.php:242
544
  #: contact-form-7/modules/captcha.php:247
545
  #: contact-form-7/modules/captcha.php:250
546
- #: contact-form-7/modules/checkbox.php:201
547
- #: contact-form-7/modules/checkbox.php:204
548
  #: contact-form-7/modules/file.php:239
549
  #: contact-form-7/modules/file.php:242
550
  #: contact-form-7/modules/file.php:247
@@ -552,21 +556,21 @@ msgstr "名前"
552
  msgid "optional"
553
  msgstr "オプション"
554
 
555
- #: contact-form-7/modules/acceptance.php:117
556
  msgid "Make this checkbox checked by default?"
557
  msgstr "初期状態でチェックボックスにチェックを入れますか?"
558
 
559
- #: contact-form-7/modules/acceptance.php:118
560
  msgid "Make this checkbox work inversely?"
561
  msgstr "チェックボックスを反転させますか?"
562
 
563
- #: contact-form-7/modules/acceptance.php:119
564
  msgid "* That means visitor who accepts the term unchecks it."
565
  msgstr "* つまり、利用者には条項に承諾する場合にチェックボックスのチェックをはずしてもらいます。"
566
 
567
- #: contact-form-7/modules/acceptance.php:124
568
  #: contact-form-7/modules/captcha.php:255
569
- #: contact-form-7/modules/checkbox.php:224
570
  #: contact-form-7/modules/file.php:255
571
  msgid "Copy this code and paste it into the form left."
572
  msgstr "このコードをコピーして、左のフォーム内にペーストしてください。"
@@ -640,40 +644,40 @@ msgstr "このコンタクトフォームは CAPTCHA の項目を含んでいま
640
  msgid "This contact form contains CAPTCHA fields, but the necessary libraries (GD and FreeType) are not available on your server."
641
  msgstr "このコンタクトフォームは CAPTCHA の項目を含んでいますが、お使いのサーバーでは必要なライブラリ (GD および FreeType) が利用可能でありません。"
642
 
643
- #: contact-form-7/modules/checkbox.php:169
644
  msgid "Checkboxes"
645
  msgstr "チェックボックス"
646
 
647
- #: contact-form-7/modules/checkbox.php:172
648
  msgid "Radio buttons"
649
  msgstr "ラジオボタン"
650
 
651
- #: contact-form-7/modules/checkbox.php:193
652
  #: contact-form-7/modules/file.php:233
653
  msgid "Required field?"
654
  msgstr "必須入力の項目ですか?"
655
 
656
- #: contact-form-7/modules/checkbox.php:209
657
  msgid "Choices"
658
  msgstr "選択項目"
659
 
660
- #: contact-form-7/modules/checkbox.php:211
661
  msgid "* One choice per line."
662
  msgstr "* 1行ごとに分けて入力してください。"
663
 
664
- #: contact-form-7/modules/checkbox.php:215
665
  msgid "Put a label first, a checkbox last?"
666
  msgstr "ラベルを先に、チェックボックスを後に置きますか?"
667
 
668
- #: contact-form-7/modules/checkbox.php:216
669
  msgid "Wrap each item with <label> tag?"
670
  msgstr "個々の項目を <label> タグで囲みますか?"
671
 
672
- #: contact-form-7/modules/checkbox.php:218
673
  msgid "Make checkboxes exclusive?"
674
  msgstr "チェックボックスを排他化しますか?"
675
 
676
- #: contact-form-7/modules/checkbox.php:226
677
  msgid "And, put this code into the Mail fields below."
678
  msgstr "それから、このコードを下のメールの項目中に置いてください。"
679
 
@@ -811,11 +815,25 @@ msgstr "デフォルト値"
811
  msgid "Text area"
812
  msgstr "テキストエリア"
813
 
 
 
 
 
 
 
 
 
 
 
 
 
 
814
  #~ msgid "This mail is created by Contact Form 7 plugin for WordPress."
815
  #~ msgstr ""
816
  #~ "このメールは WordPress の Contact Form 7 プラグインにより作成されました。"
 
817
  #~ msgid "(You need WordPress 2.7 or greater to use this feature)"
818
  #~ msgstr "(この機能を使うためには WordPress 2.7 以上が必要です)"
 
819
  #~ msgid "Delete this contact form"
820
  #~ msgstr "このコンタクトフォームを削除"
821
-
2
  msgstr ""
3
  "Project-Id-Version: Contact Form 7\n"
4
  "Report-Msgid-Bugs-To: \n"
5
+ "POT-Creation-Date: 2010-02-24 08:35+0900\n"
6
+ "PO-Revision-Date: 2010-02-24 08:36+0900\n"
7
  "Last-Translator: Takayuki Miyoshi <takayukister@gmail.com>\n"
8
+ "Language-Team: \n"
9
  "MIME-Version: 1.0\n"
10
  "Content-Type: text/plain; charset=UTF-8\n"
11
  "Content-Transfer-Encoding: 8bit\n"
 
 
12
  "X-Poedit-SourceCharset: utf-8\n"
13
  "X-Poedit-KeywordsList: __;_e;__ngettext:1,2;_c\n"
14
  "X-Poedit-Basepath: ../..\n"
15
  "Plural-Forms: nplurals=1; plural=0;\n"
16
+ "X-Poedit-Language: Japanese\n"
17
+ "X-Poedit-Country: JAPAN\n"
18
  "X-Poedit-SearchPath-0: contact-form-7\n"
19
 
20
+ #: contact-form-7/admin/admin.php:120
21
  #: contact-form-7/admin/edit.php:17
22
  #: contact-form-7/admin/edit.php:30
23
  msgid "Contact Form 7"
24
  msgstr "Contact Form 7"
25
 
26
+ #: contact-form-7/admin/admin.php:120
27
  msgid "Contact"
28
  msgstr "お問い合わせ"
29
 
30
+ #: contact-form-7/admin/admin.php:123
31
  msgid "Edit Contact Forms"
32
  msgstr "コンタクトフォームの編集"
33
 
34
+ #: contact-form-7/admin/admin.php:123
35
  msgid "Edit"
36
  msgstr "編集"
37
 
38
+ #: contact-form-7/admin/admin.php:162
39
  msgid "Generate Tag"
40
  msgstr "タグの作成"
41
 
42
+ #: contact-form-7/admin/admin.php:163
43
  msgid "Show"
44
  msgstr "表示"
45
 
46
+ #: contact-form-7/admin/admin.php:164
47
  msgid "Hide"
48
  msgstr "非表示"
49
 
50
+ #: contact-form-7/admin/admin.php:265
51
  msgid "Contact form"
52
  msgstr "コンタクトフォーム"
53
 
54
+ #: contact-form-7/admin/admin.php:284
55
  msgid "Settings"
56
  msgstr "設定"
57
 
58
+ #: contact-form-7/admin/admin.php:295
59
  msgid "http://contactform7.com/"
60
  msgstr "http://contactform7.com/ja/"
61
 
62
+ #: contact-form-7/admin/admin.php:296
63
  msgid "Contactform7.com"
64
  msgstr "Contactform7.com (日本語)"
65
 
66
+ #: contact-form-7/admin/admin.php:297
67
  msgid "http://contactform7.com/docs/"
68
  msgstr "http://contactform7.com/ja/docs-2/"
69
 
70
+ #: contact-form-7/admin/admin.php:298
71
  msgid "Docs"
72
  msgstr "使い方"
73
 
74
+ #: contact-form-7/admin/admin.php:299
75
  msgid "http://contactform7.com/faq/"
76
  msgstr "http://contactform7.com/ja/faq-2/"
77
 
78
+ #: contact-form-7/admin/admin.php:300
79
  msgid "FAQ"
80
  msgstr "FAQ"
81
 
82
+ #: contact-form-7/admin/admin.php:301
83
  msgid "http://contactform7.com/support/"
84
  msgstr "http://contactform7.com/ja/support-2/"
85
 
86
+ #: contact-form-7/admin/admin.php:302
87
  msgid "Support"
88
  msgstr "サポート"
89
 
90
+ #: contact-form-7/admin/admin.php:316
91
  msgid "Contact form created."
92
  msgstr "コンタクトフォームが作成されました。"
93
 
94
+ #: contact-form-7/admin/admin.php:319
95
  msgid "Contact form saved."
96
  msgstr "コンタクトフォームが保存されました。"
97
 
98
+ #: contact-form-7/admin/admin.php:322
99
  msgid "Contact form deleted."
100
  msgstr "コンタクトフォームが削除されました。"
101
 
102
+ #: contact-form-7/admin/admin.php:325
103
  msgid "Database table created."
104
  msgstr "データベーステーブルを作成しました。"
105
 
106
+ #: contact-form-7/admin/admin.php:328
107
  msgid "Failed to create database table."
108
  msgstr "データベーステーブルを作成できませんでした。"
109
 
110
+ #: contact-form-7/admin/admin.php:361
111
  msgid "Contact Form 7 needs your support. Please donate today."
112
  msgstr "Contact Form 7 はあなたの支援を必要としています。寄付をお願いします。"
113
 
114
+ #: contact-form-7/admin/admin.php:362
 
 
 
 
115
  msgid "Your contribution is needed for making this plugin better."
116
  msgstr "あなたの貢献があればこのプラグインをもっと良くすることができます。"
117
 
118
+ #: contact-form-7/admin/admin.php:368
119
+ msgid "http://contactform7.com/donate/"
120
+ msgstr "http://contactform7.com/ja/donate-2/"
121
+
122
+ #: contact-form-7/admin/admin.php:368
123
+ msgid "Donate"
124
+ msgstr "寄付する"
125
 
126
  #: contact-form-7/admin/edit.php:9
127
  #, php-format
201
 
202
  #: contact-form-7/admin/edit.php:172
203
  #: contact-form-7/admin/edit.php:239
204
+ #: contact-form-7/includes/functions.php:78
205
  msgid "Message body:"
206
  msgstr "メッセージ本文:"
207
 
239
  msgid "(select language)"
240
  msgstr "(言語を選択)"
241
 
242
+ #: contact-form-7/includes/classes.php:569
243
  msgid "Untitled"
244
  msgstr "無題"
245
 
296
  msgid "Please fill the required field."
297
  msgstr "必須項目に記入もれがあります。"
298
 
299
+ #: contact-form-7/includes/functions.php:46
300
  msgid "Your Name"
301
  msgstr "お名前"
302
 
303
+ #: contact-form-7/includes/functions.php:46
304
+ #: contact-form-7/includes/functions.php:48
305
  msgid "(required)"
306
  msgstr "(必須)"
307
 
308
+ #: contact-form-7/includes/functions.php:48
309
  msgid "Your Email"
310
  msgstr "メールアドレス"
311
 
312
+ #: contact-form-7/includes/functions.php:50
313
  msgid "Subject"
314
  msgstr "題名"
315
 
316
+ #: contact-form-7/includes/functions.php:52
317
  msgid "Your Message"
318
  msgstr "メッセージ本文"
319
 
320
+ #: contact-form-7/includes/functions.php:54
321
  msgid "Send"
322
  msgstr "送信"
323
 
324
+ #: contact-form-7/includes/functions.php:62
325
  #, php-format
326
  msgid "From: %s"
327
  msgstr "差出人: %s"
328
 
329
+ #: contact-form-7/includes/functions.php:63
330
  #, php-format
331
  msgid "Subject: %s"
332
  msgstr "題名: %s"
333
 
334
+ #: contact-form-7/includes/functions.php:64
335
  msgid "Message Body:"
336
  msgstr "メッセージ本文:"
337
 
338
+ #: contact-form-7/includes/functions.php:65
339
+ #: contact-form-7/includes/functions.php:79
340
  #, php-format
341
  msgid "This mail is sent via contact form on %1$s %2$s"
342
  msgstr "このメールは %1$s %2$s のお問い合わせフォームから送信されました"
343
 
344
+ #: contact-form-7/includes/functions.php:168
345
  msgid "Afrikaans"
346
  msgstr "アフリカーンス語"
347
 
348
+ #: contact-form-7/includes/functions.php:169
349
  msgid "Albanian"
350
  msgstr "アルバニア語"
351
 
352
+ #: contact-form-7/includes/functions.php:170
353
  msgid "Arabic"
354
  msgstr "アラビア語"
355
 
356
+ #: contact-form-7/includes/functions.php:171
357
  msgid "Bangla"
358
  msgstr "ベンガル語"
359
 
360
+ #: contact-form-7/includes/functions.php:172
361
  msgid "Bosnian"
362
  msgstr "ボスニア語"
363
 
364
+ #: contact-form-7/includes/functions.php:173
365
  msgid "Brazilian Portuguese"
366
  msgstr "ブラジルのポルトガル語"
367
 
368
+ #: contact-form-7/includes/functions.php:174
369
  msgid "Bulgarian"
370
  msgstr "ブルガリア語"
371
 
372
+ #: contact-form-7/includes/functions.php:175
373
  msgid "Catalan"
374
  msgstr "カタルーニャ語"
375
 
376
+ #: contact-form-7/includes/functions.php:176
377
  msgid "Chinese (Simplified)"
378
  msgstr "中国語 (簡体字)"
379
 
380
+ #: contact-form-7/includes/functions.php:177
381
  msgid "Chinese (Traditional)"
382
  msgstr "中国語 (繁体字)"
383
 
384
+ #: contact-form-7/includes/functions.php:178
385
  msgid "Croatian"
386
  msgstr "クロアチア語"
387
 
388
+ #: contact-form-7/includes/functions.php:179
389
  msgid "Czech"
390
  msgstr "チェコ語"
391
 
392
+ #: contact-form-7/includes/functions.php:180
393
  msgid "Danish"
394
  msgstr "デンマーク語"
395
 
396
+ #: contact-form-7/includes/functions.php:181
397
  msgid "Dutch"
398
  msgstr "オランダ語"
399
 
400
+ #: contact-form-7/includes/functions.php:182
401
  msgid "English"
402
  msgstr "英語"
403
 
404
+ #: contact-form-7/includes/functions.php:183
405
  msgid "Estonian"
406
  msgstr "エストニア語"
407
 
408
+ #: contact-form-7/includes/functions.php:184
409
  msgid "Finnish"
410
  msgstr "フィンランド語"
411
 
412
+ #: contact-form-7/includes/functions.php:185
413
  msgid "French"
414
  msgstr "フランス語"
415
 
416
+ #: contact-form-7/includes/functions.php:186
417
  msgid "Georgian"
418
  msgstr "グルジア語"
419
 
420
+ #: contact-form-7/includes/functions.php:187
421
  msgid "German"
422
  msgstr "ドイツ語"
423
 
424
+ #: contact-form-7/includes/functions.php:188
425
  msgid "Greek"
426
  msgstr "ギリシャ語"
427
 
428
+ #: contact-form-7/includes/functions.php:189
429
  msgid "Hebrew"
430
  msgstr "ヘブライ語"
431
 
432
+ #: contact-form-7/includes/functions.php:190
433
  msgid "Hindi"
434
  msgstr "ヒンディー語"
435
 
436
+ #: contact-form-7/includes/functions.php:191
437
  msgid "Hungarian"
438
  msgstr "ハンガリー語"
439
 
440
+ #: contact-form-7/includes/functions.php:192
441
  msgid "Indonesian"
442
  msgstr "インドネシア語"
443
 
444
+ #: contact-form-7/includes/functions.php:193
445
  msgid "Italian"
446
  msgstr "イタリア語"
447
 
448
+ #: contact-form-7/includes/functions.php:194
449
  msgid "Japanese"
450
  msgstr "日本語"
451
 
452
+ #: contact-form-7/includes/functions.php:195
453
  msgid "Korean"
454
  msgstr "韓国語"
455
 
456
+ #: contact-form-7/includes/functions.php:196
457
  msgid "Latvian"
458
  msgstr "ラトビア語"
459
 
460
+ #: contact-form-7/includes/functions.php:197
461
  msgid "Lithuanian"
462
  msgstr "リトアニア語"
463
 
464
+ #: contact-form-7/includes/functions.php:198
465
+ msgid "Malayalam"
466
+ msgstr "マラヤーラム語"
467
+
468
+ #: contact-form-7/includes/functions.php:199
469
  msgid "Norwegian"
470
  msgstr "ノルウェー語"
471
 
472
+ #: contact-form-7/includes/functions.php:200
473
  msgid "Persian"
474
  msgstr "ペルシア語"
475
 
476
+ #: contact-form-7/includes/functions.php:201
477
  msgid "Polish"
478
  msgstr "ポーランド語"
479
 
480
+ #: contact-form-7/includes/functions.php:202
481
  msgid "Portuguese"
482
  msgstr "ポルトガル語"
483
 
484
+ #: contact-form-7/includes/functions.php:203
485
  msgid "Russian"
486
  msgstr "ロシア語"
487
 
488
+ #: contact-form-7/includes/functions.php:204
489
  msgid "Romanian"
490
  msgstr "ルーマニア語"
491
 
492
+ #: contact-form-7/includes/functions.php:205
493
  msgid "Serbian"
494
  msgstr "セルビア語"
495
 
496
+ #: contact-form-7/includes/functions.php:206
497
  msgid "Slovak"
498
  msgstr "スロバキア語"
499
 
500
+ #: contact-form-7/includes/functions.php:207
501
  msgid "Slovene"
502
  msgstr "スロベニア語"
503
 
504
+ #: contact-form-7/includes/functions.php:208
505
  msgid "Spanish"
506
  msgstr "スペイン語"
507
 
508
+ #: contact-form-7/includes/functions.php:209
509
  msgid "Swedish"
510
  msgstr "スウェーデン語"
511
 
512
+ #: contact-form-7/includes/functions.php:210
513
  msgid "Thai"
514
  msgstr "タイ語"
515
 
516
+ #: contact-form-7/includes/functions.php:211
517
  msgid "Turkish"
518
  msgstr "トルコ語"
519
 
520
+ #: contact-form-7/includes/functions.php:212
521
  msgid "Ukrainian"
522
  msgstr "ウクライナ語"
523
 
524
+ #: contact-form-7/includes/functions.php:213
525
  msgid "Vietnamese"
526
  msgstr "ベトナム語"
527
 
528
+ #: contact-form-7/modules/acceptance.php:96
529
  msgid "Acceptance"
530
  msgstr "承諾の確認"
531
 
532
+ #: contact-form-7/modules/acceptance.php:105
533
  #: contact-form-7/modules/captcha.php:206
534
+ #: contact-form-7/modules/checkbox.php:198
535
  #: contact-form-7/modules/file.php:234
536
  msgid "Name"
537
  msgstr "名前"
538
 
539
+ #: contact-form-7/modules/acceptance.php:110
540
+ #: contact-form-7/modules/acceptance.php:113
541
  #: contact-form-7/modules/captcha.php:213
542
  #: contact-form-7/modules/captcha.php:216
543
  #: contact-form-7/modules/captcha.php:221
547
  #: contact-form-7/modules/captcha.php:242
548
  #: contact-form-7/modules/captcha.php:247
549
  #: contact-form-7/modules/captcha.php:250
550
+ #: contact-form-7/modules/checkbox.php:203
551
+ #: contact-form-7/modules/checkbox.php:206
552
  #: contact-form-7/modules/file.php:239
553
  #: contact-form-7/modules/file.php:242
554
  #: contact-form-7/modules/file.php:247
556
  msgid "optional"
557
  msgstr "オプション"
558
 
559
+ #: contact-form-7/modules/acceptance.php:119
560
  msgid "Make this checkbox checked by default?"
561
  msgstr "初期状態でチェックボックスにチェックを入れますか?"
562
 
563
+ #: contact-form-7/modules/acceptance.php:120
564
  msgid "Make this checkbox work inversely?"
565
  msgstr "チェックボックスを反転させますか?"
566
 
567
+ #: contact-form-7/modules/acceptance.php:121
568
  msgid "* That means visitor who accepts the term unchecks it."
569
  msgstr "* つまり、利用者には条項に承諾する場合にチェックボックスのチェックをはずしてもらいます。"
570
 
571
+ #: contact-form-7/modules/acceptance.php:126
572
  #: contact-form-7/modules/captcha.php:255
573
+ #: contact-form-7/modules/checkbox.php:226
574
  #: contact-form-7/modules/file.php:255
575
  msgid "Copy this code and paste it into the form left."
576
  msgstr "このコードをコピーして、左のフォーム内にペーストしてください。"
644
  msgid "This contact form contains CAPTCHA fields, but the necessary libraries (GD and FreeType) are not available on your server."
645
  msgstr "このコンタクトフォームは CAPTCHA の項目を含んでいますが、お使いのサーバーでは必要なライブラリ (GD および FreeType) が利用可能でありません。"
646
 
647
+ #: contact-form-7/modules/checkbox.php:171
648
  msgid "Checkboxes"
649
  msgstr "チェックボックス"
650
 
651
+ #: contact-form-7/modules/checkbox.php:174
652
  msgid "Radio buttons"
653
  msgstr "ラジオボタン"
654
 
655
+ #: contact-form-7/modules/checkbox.php:195
656
  #: contact-form-7/modules/file.php:233
657
  msgid "Required field?"
658
  msgstr "必須入力の項目ですか?"
659
 
660
+ #: contact-form-7/modules/checkbox.php:211
661
  msgid "Choices"
662
  msgstr "選択項目"
663
 
664
+ #: contact-form-7/modules/checkbox.php:213
665
  msgid "* One choice per line."
666
  msgstr "* 1行ごとに分けて入力してください。"
667
 
668
+ #: contact-form-7/modules/checkbox.php:217
669
  msgid "Put a label first, a checkbox last?"
670
  msgstr "ラベルを先に、チェックボックスを後に置きますか?"
671
 
672
+ #: contact-form-7/modules/checkbox.php:218
673
  msgid "Wrap each item with <label> tag?"
674
  msgstr "個々の項目を <label> タグで囲みますか?"
675
 
676
+ #: contact-form-7/modules/checkbox.php:220
677
  msgid "Make checkboxes exclusive?"
678
  msgstr "チェックボックスを排他化しますか?"
679
 
680
+ #: contact-form-7/modules/checkbox.php:228
681
  msgid "And, put this code into the Mail fields below."
682
  msgstr "それから、このコードを下のメールの項目中に置いてください。"
683
 
815
  msgid "Text area"
816
  msgstr "テキストエリア"
817
 
818
+ #~ msgid ""
819
+ #~ "Is this plugin useful for you? If you like it, please help the developer."
820
+ #~ msgstr ""
821
+ #~ "このプラグインは役に立っていますか? プラグインの開発を続けるためにあなたの"
822
+ #~ "支援が必要です。"
823
+
824
+ #~ msgid ""
825
+ #~ "Developing a plugin and providing user support is really hard work. "
826
+ #~ "Please help."
827
+ #~ msgstr ""
828
+ #~ "プラグインを開発してユーザーサポートを提供するというのはとても大変な仕事で"
829
+ #~ "す。ちょっとでいいから助けてください。"
830
+
831
  #~ msgid "This mail is created by Contact Form 7 plugin for WordPress."
832
  #~ msgstr ""
833
  #~ "このメールは WordPress の Contact Form 7 プラグインにより作成されました。"
834
+
835
  #~ msgid "(You need WordPress 2.7 or greater to use this feature)"
836
  #~ msgstr "(この機能を使うためには WordPress 2.7 以上が必要です)"
837
+
838
  #~ msgid "Delete this contact form"
839
  #~ msgstr "このコンタクトフォームを削除"
 
languages/wpcf7-ml_IN.mo ADDED
Binary file
languages/wpcf7-ml_IN.po ADDED
@@ -0,0 +1,813 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ msgid ""
2
+ msgstr ""
3
+ "Project-Id-Version: Contact Form 7\n"
4
+ "Report-Msgid-Bugs-To: \n"
5
+ "POT-Creation-Date: 2010-01-09 03:18+0900\n"
6
+ "PO-Revision-Date: 2010-02-04 21:17+0530\n"
7
+ "Last-Translator: RAHUL.S.A <infution@gmail.com>\n"
8
+ "Language-Team: www.infution.co.cc <infution@gmail.com>\n"
9
+ "MIME-Version: 1.0\n"
10
+ "Content-Type: text/plain; charset=UTF-8\n"
11
+ "Content-Transfer-Encoding: 8bit\n"
12
+ "X-Poedit-SourceCharset: utf-8\n"
13
+ "X-Poedit-KeywordsList: __;_e;__ngettext:1,2;_c\n"
14
+ "X-Poedit-Basepath: ../..\n"
15
+ "Plural-Forms: nplurals=1; plural=0;\n"
16
+ "X-Poedit-Language: Malayalam\n"
17
+ "X-Poedit-Country: INDIA\n"
18
+ "X-Poedit-SearchPath-0: contact-form-7\n"
19
+
20
+ #: contact-form-7/admin/admin.php:117
21
+ #: contact-form-7/admin/edit.php:17
22
+ #: contact-form-7/admin/edit.php:30
23
+ msgid "Contact Form 7"
24
+ msgstr "കോണ്ടാക്ട് ഫോം 7"
25
+
26
+ #: contact-form-7/admin/admin.php:117
27
+ msgid "Contact"
28
+ msgstr "കോണ്ടാക്ട്"
29
+
30
+ #: contact-form-7/admin/admin.php:120
31
+ msgid "Edit Contact Forms"
32
+ msgstr "ഏഡിറ്റ് കോണ്ടാക്ട് ഫോം"
33
+
34
+ #: contact-form-7/admin/admin.php:120
35
+ msgid "Edit"
36
+ msgstr "എഡിറ്റ്"
37
+
38
+ #: contact-form-7/admin/admin.php:159
39
+ msgid "Generate Tag"
40
+ msgstr "ടാഗ് നിര്‍മ്മിക്കൂ"
41
+
42
+ #: contact-form-7/admin/admin.php:160
43
+ msgid "Show"
44
+ msgstr "കാണിക്കൂ"
45
+
46
+ #: contact-form-7/admin/admin.php:161
47
+ msgid "Hide"
48
+ msgstr "മറയ്ക്കൂ"
49
+
50
+ #: contact-form-7/admin/admin.php:257
51
+ msgid "Contact form"
52
+ msgstr "കോണ്ടാക്ട് ഫോം"
53
+
54
+ #: contact-form-7/admin/admin.php:276
55
+ msgid "Settings"
56
+ msgstr "സജ്ജീകരണം"
57
+
58
+ #: contact-form-7/admin/admin.php:287
59
+ msgid "http://contactform7.com/"
60
+ msgstr "http://contactform7.com/"
61
+
62
+ #: contact-form-7/admin/admin.php:288
63
+ msgid "Contactform7.com"
64
+ msgstr "Contactform7.com"
65
+
66
+ #: contact-form-7/admin/admin.php:289
67
+ msgid "http://contactform7.com/docs/"
68
+ msgstr "http://contactform7.com/docs/"
69
+
70
+ #: contact-form-7/admin/admin.php:290
71
+ msgid "Docs"
72
+ msgstr "Docs"
73
+
74
+ #: contact-form-7/admin/admin.php:291
75
+ msgid "http://contactform7.com/faq/"
76
+ msgstr "http://contactform7.com/faq/"
77
+
78
+ #: contact-form-7/admin/admin.php:292
79
+ msgid "FAQ"
80
+ msgstr "FAQ"
81
+
82
+ #: contact-form-7/admin/admin.php:293
83
+ msgid "http://contactform7.com/support/"
84
+ msgstr "http://contactform7.com/support/"
85
+
86
+ #: contact-form-7/admin/admin.php:294
87
+ msgid "Support"
88
+ msgstr "Support"
89
+
90
+ #: contact-form-7/admin/admin.php:305
91
+ msgid "Contact form created."
92
+ msgstr "കോണ്ടാക്ട് ഫോം നിര്‍മ്മിച്ചു"
93
+
94
+ #: contact-form-7/admin/admin.php:308
95
+ msgid "Contact form saved."
96
+ msgstr "കോണ്ടാക്ട് ഫോം സേവ് ചെയ്തു"
97
+
98
+ #: contact-form-7/admin/admin.php:311
99
+ msgid "Contact form deleted."
100
+ msgstr "കോണ്ടാക്ട് ഫോം ഡിലീറ്റ് ചെയ്തു"
101
+
102
+ #: contact-form-7/admin/admin.php:314
103
+ msgid "Database table created."
104
+ msgstr "ഡാറ്റാബേസ് നിര്‍മ്മിച്ചു"
105
+
106
+ #: contact-form-7/admin/admin.php:317
107
+ msgid "Failed to create database table."
108
+ msgstr "ഡാറ്റാബേസ് നിര്‍മ്മാണം പരാജയപ്പെട്ടു"
109
+
110
+ #: contact-form-7/admin/admin.php:350
111
+ msgid "Contact Form 7 needs your support. Please donate today."
112
+ msgstr "Contact Form 7 needs your support. Please donate today."
113
+
114
+ #: contact-form-7/admin/admin.php:351
115
+ msgid "Is this plugin useful for you? If you like it, please help the developer."
116
+ msgstr "Is this plugin useful for you? If you like it, please help the developer."
117
+
118
+ #: contact-form-7/admin/admin.php:352
119
+ msgid "Your contribution is needed for making this plugin better."
120
+ msgstr "Your contribution is needed for making this plugin better."
121
+
122
+ #: contact-form-7/admin/admin.php:353
123
+ msgid "Developing a plugin and providing user support is really hard work. Please help."
124
+ msgstr "Developing a plugin and providing user support is really hard work. Please help."
125
+
126
+ #: contact-form-7/admin/edit.php:9
127
+ #, php-format
128
+ 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."
129
+ msgstr "<strong>ഡേറ്റാബേസിലുള്ള കോണ്ടാക്ട് ഫോം നിലവിലില്ല.</strong> നിങ്ങള്‍ <a href=\"%s\">പുതിയ ടേബിള്‍</a> നിര്‍മ്മിക്കൂ."
130
+
131
+ #: contact-form-7/admin/edit.php:12
132
+ msgid "<strong>The database table for Contact Form 7 does not exist.</strong>"
133
+ msgstr "<strong>ഡേറ്റാബേസിലുള്ള കോണ്ടാക്ട് ഫോം നിലവിലില്ല.</strong>"
134
+
135
+ #: contact-form-7/admin/edit.php:45
136
+ msgid "Add new"
137
+ msgstr "പുതിയത് നിര്‍മ്മിക്കൂ"
138
+
139
+ #: contact-form-7/admin/edit.php:67
140
+ msgid "Copy this code and paste it into your post, page or text widget content."
141
+ msgstr "കോഡ് കോപ്പി ചെയ്ത് പോസ്റ്റില്‍ പേസ്റ്റ് ചെയ്യൂ.പേജിലോ വിഡ്ജറ്റ് കണ്ടന്റിലും ആകാം"
142
+
143
+ #: contact-form-7/admin/edit.php:75
144
+ #: contact-form-7/admin/edit.php:309
145
+ msgid "Save"
146
+ msgstr "സംരക്ഷിക്കൂ"
147
+
148
+ #: contact-form-7/admin/edit.php:82
149
+ msgid "Copy"
150
+ msgstr "പകര്‍ത്തുക"
151
+
152
+ #: contact-form-7/admin/edit.php:87
153
+ msgid "Delete"
154
+ msgstr "നശിപ്പിക്കുക"
155
+
156
+ #: contact-form-7/admin/edit.php:89
157
+ msgid ""
158
+ "You are about to delete this contact form.\n"
159
+ " 'Cancel' to stop, 'OK' to delete."
160
+ msgstr ""
161
+ "നിങ്ങള്‍ കോണ്ടാക്ട് ഫോം നശിപ്പിക്കുകയാണ്‍.\n"
162
+ " 'വേണ്ട' ങ്കില്‍ നിറ്ത്തൂ, 'അതെ' എങ്കില്‍ നശിപ്പിക്കൂ"
163
+
164
+ #: contact-form-7/admin/edit.php:104
165
+ msgid "Form"
166
+ msgstr "ഫോം"
167
+
168
+ #: contact-form-7/admin/edit.php:128
169
+ msgid "Mail"
170
+ msgstr "മെയില്‍"
171
+
172
+ #: contact-form-7/admin/edit.php:135
173
+ #: contact-form-7/admin/edit.php:202
174
+ msgid "To:"
175
+ msgstr "പോകേണ്ടിടം"
176
+
177
+ #: contact-form-7/admin/edit.php:140
178
+ #: contact-form-7/admin/edit.php:207
179
+ msgid "From:"
180
+ msgstr "അയക്കുന്നത്:"
181
+
182
+ #: contact-form-7/admin/edit.php:145
183
+ #: contact-form-7/admin/edit.php:212
184
+ msgid "Subject:"
185
+ msgstr "കാരണം:"
186
+
187
+ #: contact-form-7/admin/edit.php:152
188
+ #: contact-form-7/admin/edit.php:219
189
+ msgid "Additional headers:"
190
+ msgstr "കൂടുതല്‍ തലക്കെട്ടുകള്‍:"
191
+
192
+ #: contact-form-7/admin/edit.php:157
193
+ #: contact-form-7/admin/edit.php:224
194
+ msgid "File attachments:"
195
+ msgstr "ഫയല്‍ അറ്റാച്ച്മെന്റ്:"
196
+
197
+ #: contact-form-7/admin/edit.php:165
198
+ #: contact-form-7/admin/edit.php:232
199
+ msgid "Use HTML content type"
200
+ msgstr "എച്ച്.ടി.എം.ല്‍ കണ്ടന്റായി ഉപയോഗിക്കൂ"
201
+
202
+ #: contact-form-7/admin/edit.php:172
203
+ #: contact-form-7/admin/edit.php:239
204
+ #: contact-form-7/includes/functions.php:73
205
+ msgid "Message body:"
206
+ msgstr "മെസ്സേജ് "
207
+
208
+ #: contact-form-7/admin/edit.php:188
209
+ msgid "Mail (2)"
210
+ msgstr "മെയില്‍(2)"
211
+
212
+ #: contact-form-7/admin/edit.php:194
213
+ msgid "Use mail (2)"
214
+ msgstr "മെയില്‍ ഉപയോഗിക്കൂ(2)"
215
+
216
+ #: contact-form-7/admin/edit.php:255
217
+ msgid "Messages"
218
+ msgstr "മെസ്സേജ്"
219
+
220
+ #: contact-form-7/admin/edit.php:285
221
+ msgid "Additional Settings"
222
+ msgstr "കൂടുതല്‍ സജ്ജീകരണം"
223
+
224
+ #: contact-form-7/admin/edit.php:333
225
+ #, php-format
226
+ msgid "Use the default language (%s)"
227
+ msgstr "ഡിഫാള്‍ട്ട് ഭാഷ (%s)"
228
+
229
+ #: contact-form-7/admin/edit.php:334
230
+ #: contact-form-7/admin/edit.php:347
231
+ msgid "Add New"
232
+ msgstr "പുതിയത് ഉണ്ടാക്കൂ"
233
+
234
+ #: contact-form-7/admin/edit.php:337
235
+ msgid "Or"
236
+ msgstr "അല്ലെങ്കില്‍"
237
+
238
+ #: contact-form-7/admin/edit.php:342
239
+ msgid "(select language)"
240
+ msgstr "(ഭാഷ തിരഞ്ഞെടുക്കൂ)"
241
+
242
+ #: contact-form-7/includes/classes.php:568
243
+ msgid "Untitled"
244
+ msgstr "തലക്കെട്ടില്ലാത്തത്"
245
+
246
+ #: contact-form-7/includes/functions.php:6
247
+ msgid "Sender's message was sent successfully"
248
+ msgstr "രചയിതാവിന്റെ മെസ്സേജ് വിജയകരമായി അയച്ചു"
249
+
250
+ #: contact-form-7/includes/functions.php:7
251
+ msgid "Your message was sent successfully. Thanks."
252
+ msgstr "നിങ്ങളുടെ മെസ്സേജ് വിജയകരമായി അയച്ചു.നന്ദി."
253
+
254
+ #: contact-form-7/includes/functions.php:11
255
+ msgid "Sender's message was failed to send"
256
+ msgstr "രചയിതാവിന്റെ മെസ്സേജ് അയക്കുന്നതില്‍ പരാജയപ്പെട്ടു."
257
+
258
+ #: contact-form-7/includes/functions.php:12
259
+ #: contact-form-7/includes/functions.php:17
260
+ msgid "Failed to send your message. Please try later or contact administrator by other way."
261
+ msgstr "നിങ്ങളുടെ മെസ്സേജ് അയക്കുന്നതില്‍ പരാജയപ്പെട്ടു,മറ്റ് മാര്‍ഗ്ഗങ്ങളിലൂടെ അഡ്മിനെ ബന്ധപ്പെടൂ.."
262
+
263
+ #: contact-form-7/includes/functions.php:16
264
+ msgid "Akismet judged the sending activity as spamming"
265
+ msgstr "Akismet നിങ്ങളുടെ പ്രവര്‍ത്തനം സ്പാമിങ്ങ് ആയി കരുതുന്നു"
266
+
267
+ #: contact-form-7/includes/functions.php:21
268
+ msgid "Validation errors occurred"
269
+ msgstr "ഒത്തുനോക്കലില്‍ തെറ്റ് സംഭവിച്ചിരിക്കുന്നു"
270
+
271
+ #: contact-form-7/includes/functions.php:22
272
+ msgid "Validation errors occurred. Please confirm the fields and submit it again."
273
+ msgstr "ഒത്തുനോക്കലില്‍ തെറ്റ് സംഭവിച്ചിരിക്കുന്നു.എല്ലാ വിവരങ്ങളും നല്‍കിയോ എന്ന് പരിശോധിച്ച് അയയ്ക്കൂ."
274
+
275
+ #: contact-form-7/includes/functions.php:26
276
+ msgid "There is a field of term that sender is needed to accept"
277
+ msgstr "രചയിതാവ് ടേംസ് അംഗീകരിക്കൂ."
278
+
279
+ #: contact-form-7/includes/functions.php:27
280
+ msgid "Please accept the terms to proceed."
281
+ msgstr "മുന്നോട്ട് പോകാനായി ടേംസ് അംഗീകരിക്കൂ."
282
+
283
+ #: contact-form-7/includes/functions.php:31
284
+ msgid "Email address that sender entered is invalid"
285
+ msgstr "രചയ്താവ് തന്ന് മെയില്‍ അഡ്രസില്‍ പിശകുണ്ട്"
286
+
287
+ #: contact-form-7/includes/functions.php:32
288
+ msgid "Email address seems invalid."
289
+ msgstr "മെയില്‍ അഡ്രസില്‍ പിശകുണ്ടാകും"
290
+
291
+ #: contact-form-7/includes/functions.php:36
292
+ msgid "There is a field that sender is needed to fill in"
293
+ msgstr "രചയിതാവ് ചേര്‍ക്കേണ്ടതായ വിവരങ്ങള്‍ ഫോമിലുണ്ട്"
294
+
295
+ #: contact-form-7/includes/functions.php:37
296
+ msgid "Please fill the required field."
297
+ msgstr "നല്‍കേണ്ട വിവരങ്ങള്‍ നല്‍കൂ"
298
+
299
+ #: contact-form-7/includes/functions.php:45
300
+ msgid "Your Name"
301
+ msgstr "നിങ്ങളുടെ പേര്"
302
+
303
+ #: contact-form-7/includes/functions.php:45
304
+ #: contact-form-7/includes/functions.php:47
305
+ msgid "(required)"
306
+ msgstr "(വേണം)"
307
+
308
+ #: contact-form-7/includes/functions.php:47
309
+ msgid "Your Email"
310
+ msgstr "നിങ്ങളുടെ ഇ മെയില്‍"
311
+
312
+ #: contact-form-7/includes/functions.php:49
313
+ msgid "Subject"
314
+ msgstr "കാരണം"
315
+
316
+ #: contact-form-7/includes/functions.php:51
317
+ msgid "Your Message"
318
+ msgstr "നിങ്ങളുടെ മെസ്സേജ്"
319
+
320
+ #: contact-form-7/includes/functions.php:53
321
+ msgid "Send"
322
+ msgstr "അയക്കൂ"
323
+
324
+ #: contact-form-7/includes/functions.php:60
325
+ #, php-format
326
+ msgid "From: %s"
327
+ msgstr "അയക്കുന്നത്: %s"
328
+
329
+ #: contact-form-7/includes/functions.php:61
330
+ #, php-format
331
+ msgid "Subject: %s"
332
+ msgstr "കാരണം: %s"
333
+
334
+ #: contact-form-7/includes/functions.php:62
335
+ msgid "Message Body:"
336
+ msgstr "മെസ്സേജ് ബോഡി:"
337
+
338
+ #: contact-form-7/includes/functions.php:63
339
+ #: contact-form-7/includes/functions.php:74
340
+ #, php-format
341
+ msgid "This mail is sent via contact form on %1$s %2$s"
342
+ msgstr "ഈ മെസ്സേജ് ഇത് വഴിയാണ്‍ വന്നത് %1$s %2$s"
343
+
344
+ #: contact-form-7/includes/functions.php:163
345
+ msgid "Afrikaans"
346
+ msgstr "Afrikaans"
347
+
348
+ #: contact-form-7/includes/functions.php:164
349
+ msgid "Albanian"
350
+ msgstr "Albanian"
351
+
352
+ #: contact-form-7/includes/functions.php:165
353
+ msgid "Arabic"
354
+ msgstr "Arabic"
355
+
356
+ #: contact-form-7/includes/functions.php:166
357
+ msgid "Bangla"
358
+ msgstr "Bangla"
359
+
360
+ #: contact-form-7/includes/functions.php:167
361
+ msgid "Bosnian"
362
+ msgstr "Bosnian"
363
+
364
+ #: contact-form-7/includes/functions.php:168
365
+ msgid "Brazilian Portuguese"
366
+ msgstr "Brazilian Portuguese"
367
+
368
+ #: contact-form-7/includes/functions.php:169
369
+ msgid "Bulgarian"
370
+ msgstr "Bulgarian"
371
+
372
+ #: contact-form-7/includes/functions.php:170
373
+ msgid "Catalan"
374
+ msgstr "Catalan"
375
+
376
+ #: contact-form-7/includes/functions.php:171
377
+ msgid "Chinese (Simplified)"
378
+ msgstr "Chinese (Simplified)"
379
+
380
+ #: contact-form-7/includes/functions.php:172
381
+ msgid "Chinese (Traditional)"
382
+ msgstr "Chinese (Traditional)"
383
+
384
+ #: contact-form-7/includes/functions.php:173
385
+ msgid "Croatian"
386
+ msgstr "Croatian"
387
+
388
+ #: contact-form-7/includes/functions.php:174
389
+ msgid "Czech"
390
+ msgstr "Czech"
391
+
392
+ #: contact-form-7/includes/functions.php:175
393
+ msgid "Danish"
394
+ msgstr "Danish"
395
+
396
+ #: contact-form-7/includes/functions.php:176
397
+ msgid "Dutch"
398
+ msgstr "Dutch"
399
+
400
+ #: contact-form-7/includes/functions.php:177
401
+ msgid "English"
402
+ msgstr "English"
403
+
404
+ #: contact-form-7/includes/functions.php:178
405
+ msgid "Estonian"
406
+ msgstr "Estonian"
407
+
408
+ #: contact-form-7/includes/functions.php:179
409
+ msgid "Finnish"
410
+ msgstr "Finnish"
411
+
412
+ #: contact-form-7/includes/functions.php:180
413
+ msgid "French"
414
+ msgstr "French"
415
+
416
+ #: contact-form-7/includes/functions.php:181
417
+ msgid "Georgian"
418
+ msgstr "Georgian"
419
+
420
+ #: contact-form-7/includes/functions.php:182
421
+ msgid "German"
422
+ msgstr "German"
423
+
424
+ #: contact-form-7/includes/functions.php:183
425
+ msgid "Greek"
426
+ msgstr "Greek"
427
+
428
+ #: contact-form-7/includes/functions.php:184
429
+ msgid "Hebrew"
430
+ msgstr "Hebrew"
431
+
432
+ #: contact-form-7/includes/functions.php:185
433
+ msgid "Hindi"
434
+ msgstr "ഹിന്ദി"
435
+
436
+ #: contact-form-7/includes/functions.php:186
437
+ msgid "Hungarian"
438
+ msgstr "Hungarian"
439
+
440
+ #: contact-form-7/includes/functions.php:187
441
+ msgid "Indonesian"
442
+ msgstr "Indonesian"
443
+
444
+ #: contact-form-7/includes/functions.php:188
445
+ msgid "Italian"
446
+ msgstr "Italian"
447
+
448
+ #: contact-form-7/includes/functions.php:189
449
+ msgid "Japanese"
450
+ msgstr "Japanese"
451
+
452
+ #: contact-form-7/includes/functions.php:190
453
+ msgid "Korean"
454
+ msgstr "Korean"
455
+
456
+ #: contact-form-7/includes/functions.php:191
457
+ msgid "Latvian"
458
+ msgstr "Latvian"
459
+
460
+ #: contact-form-7/includes/functions.php:192
461
+ msgid "Lithuanian"
462
+ msgstr "Lithuanian"
463
+
464
+ #: contact-form-7/includes/functions.php:193
465
+ msgid "Norwegian"
466
+ msgstr "Norwegian"
467
+
468
+ #: contact-form-7/includes/functions.php:194
469
+ msgid "Persian"
470
+ msgstr "Persian"
471
+
472
+ #: contact-form-7/includes/functions.php:195
473
+ msgid "Polish"
474
+ msgstr "Polish"
475
+
476
+ #: contact-form-7/includes/functions.php:196
477
+ msgid "Portuguese"
478
+ msgstr "Portuguese"
479
+
480
+ #: contact-form-7/includes/functions.php:197
481
+ msgid "Russian"
482
+ msgstr "Russian"
483
+
484
+ #: contact-form-7/includes/functions.php:198
485
+ msgid "Romanian"
486
+ msgstr "Romanian"
487
+
488
+ #: contact-form-7/includes/functions.php:199
489
+ msgid "Serbian"
490
+ msgstr "Serbian"
491
+
492
+ #: contact-form-7/includes/functions.php:200
493
+ msgid "Slovak"
494
+ msgstr "Slovak"
495
+
496
+ #: contact-form-7/includes/functions.php:201
497
+ msgid "Slovene"
498
+ msgstr "Slovene"
499
+
500
+ #: contact-form-7/includes/functions.php:202
501
+ msgid "Spanish"
502
+ msgstr "Spanish"
503
+
504
+ #: contact-form-7/includes/functions.php:203
505
+ msgid "Swedish"
506
+ msgstr "Swedish"
507
+
508
+ #: contact-form-7/includes/functions.php:204
509
+ msgid "Thai"
510
+ msgstr "Thai"
511
+
512
+ #: contact-form-7/includes/functions.php:205
513
+ msgid "Turkish"
514
+ msgstr "Turkish"
515
+
516
+ #: contact-form-7/includes/functions.php:206
517
+ msgid "Ukrainian"
518
+ msgstr "Ukrainian"
519
+
520
+ #: contact-form-7/includes/functions.php:207
521
+ msgid "Vietnamese"
522
+ msgstr "Vietnamese"
523
+
524
+ #: contact-form-7/modules/acceptance.php:94
525
+ msgid "Acceptance"
526
+ msgstr "Acceptance"
527
+
528
+ #: contact-form-7/modules/acceptance.php:103
529
+ #: contact-form-7/modules/captcha.php:206
530
+ #: contact-form-7/modules/checkbox.php:196
531
+ #: contact-form-7/modules/file.php:234
532
+ msgid "Name"
533
+ msgstr "പേര്‍"
534
+
535
+ #: contact-form-7/modules/acceptance.php:108
536
+ #: contact-form-7/modules/acceptance.php:111
537
+ #: contact-form-7/modules/captcha.php:213
538
+ #: contact-form-7/modules/captcha.php:216
539
+ #: contact-form-7/modules/captcha.php:221
540
+ #: contact-form-7/modules/captcha.php:224
541
+ #: contact-form-7/modules/captcha.php:228
542
+ #: contact-form-7/modules/captcha.php:239
543
+ #: contact-form-7/modules/captcha.php:242
544
+ #: contact-form-7/modules/captcha.php:247
545
+ #: contact-form-7/modules/captcha.php:250
546
+ #: contact-form-7/modules/checkbox.php:201
547
+ #: contact-form-7/modules/checkbox.php:204
548
+ #: contact-form-7/modules/file.php:239
549
+ #: contact-form-7/modules/file.php:242
550
+ #: contact-form-7/modules/file.php:247
551
+ #: contact-form-7/modules/file.php:250
552
+ msgid "optional"
553
+ msgstr "നിറ്ബന്ധമില്ല"
554
+
555
+ #: contact-form-7/modules/acceptance.php:117
556
+ msgid "Make this checkbox checked by default?"
557
+ msgstr "ചെക്ക്ബോക്സ് ഡിഫാള്‍ട്ടായി ടിക്ക് ചെയ്യൂ?"
558
+
559
+ #: contact-form-7/modules/acceptance.php:118
560
+ msgid "Make this checkbox work inversely?"
561
+ msgstr "Make this checkbox work inversely?"
562
+
563
+ #: contact-form-7/modules/acceptance.php:119
564
+ msgid "* That means visitor who accepts the term unchecks it."
565
+ msgstr "* That means visitor who accepts the term unchecks it."
566
+
567
+ #: contact-form-7/modules/acceptance.php:124
568
+ #: contact-form-7/modules/captcha.php:255
569
+ #: contact-form-7/modules/checkbox.php:224
570
+ #: contact-form-7/modules/file.php:255
571
+ msgid "Copy this code and paste it into the form left."
572
+ msgstr "കോഡ് കോപ്പി ചെയ്ത് ഇടതു വശത്തെ ഫോമില്‍ പേസ്റ്റ് ചെയ്യൂ"
573
+
574
+ #: contact-form-7/modules/captcha.php:65
575
+ msgid "To use CAPTCHA, you need <a href=\"http://wordpress.org/extend/plugins/really-simple-captcha/\">Really Simple CAPTCHA</a> plugin installed."
576
+ msgstr "CAPTCHA ഉപയോഗിക്കാനായി,നിങ്ങള്‍ക്ക് <a href=\"http://wordpress.org/extend/plugins/really-simple-captcha/\">Really Simple CAPTCHA</a> ഇന്‍സ്റ്റാള്‍ ചെയ്തിരിക്കണം"
577
+
578
+ #: contact-form-7/modules/captcha.php:181
579
+ msgid "The code that sender entered does not match the CAPTCHA"
580
+ msgstr "രചയിതാവ് കോടുത്ത കോഡ് CAPTCHA മായി ചേരുന്നില്ല"
581
+
582
+ #: contact-form-7/modules/captcha.php:182
583
+ msgid "Your entered code is incorrect."
584
+ msgstr "നിങ്ങള്‍ കോടുത്ത കോഡ് തെറ്റാണ്‍"
585
+
586
+ #: contact-form-7/modules/captcha.php:192
587
+ msgid "CAPTCHA"
588
+ msgstr "CAPTCHA"
589
+
590
+ #: contact-form-7/modules/captcha.php:203
591
+ msgid "Note: To use CAPTCHA, you need Really Simple CAPTCHA plugin installed."
592
+ msgstr "വിവരം:CAPTCHA ഉപയോഗിക്കാനായി,നിങ്ങള്‍ക്ക് Really Simple CAPTCHA ഇന്‍സ്റ്റാള്‍ ചെയ്തിരിക്കണം"
593
+
594
+ #: contact-form-7/modules/captcha.php:210
595
+ msgid "Image settings"
596
+ msgstr "ചിത്ര സജ്ജീകരണം"
597
+
598
+ #: contact-form-7/modules/captcha.php:221
599
+ msgid "Foreground color"
600
+ msgstr "Foreground നിറം"
601
+
602
+ #: contact-form-7/modules/captcha.php:224
603
+ msgid "Background color"
604
+ msgstr "പശ്ചാത്തല നിറം"
605
+
606
+ #: contact-form-7/modules/captcha.php:228
607
+ msgid "Image size"
608
+ msgstr "ചിത്ര വലിപ്പം"
609
+
610
+ #: contact-form-7/modules/captcha.php:229
611
+ msgid "Small"
612
+ msgstr "ചെറുത്"
613
+
614
+ #: contact-form-7/modules/captcha.php:230
615
+ msgid "Medium"
616
+ msgstr "ഇടത്തരം"
617
+
618
+ #: contact-form-7/modules/captcha.php:231
619
+ msgid "Large"
620
+ msgstr "വലുത്"
621
+
622
+ #: contact-form-7/modules/captcha.php:236
623
+ msgid "Input field settings"
624
+ msgstr "ഇന്‍പുട്ട് ഫീല്‍ഡ് സജ്ജീകരണം"
625
+
626
+ #: contact-form-7/modules/captcha.php:256
627
+ msgid "For image"
628
+ msgstr "ചിത്രത്തിനായി"
629
+
630
+ #: contact-form-7/modules/captcha.php:258
631
+ msgid "For input field"
632
+ msgstr "ഇന്‍പുട്ട് ഫീല്‍ഡിനായി"
633
+
634
+ #: contact-form-7/modules/captcha.php:288
635
+ #, php-format
636
+ msgid "This contact form contains CAPTCHA fields, but the temporary folder for the files (%s) does not exist or is not writable. You can create the folder or change its permission manually."
637
+ msgstr "ഈ കോണ്ടാക്ട് ഫോമില്‍ CAPTCHA ഫീല്‍ഡ് ഉണ്ട്,പക്ഷേ ഫയലിനായുള്ള (%s) ടെമ്പററി ഫോള്‍ഡര്‍ നിലവിലില്ല,അല്ലെങ്കില്‍ നിര്‍മ്മിക്കാനാകുന്നില്ല,നിങ്ങള്‍ ഫോള്‍ഡര്‍ നിര്‍മ്മിക്കുകയോ പെര്‍മ്മിഷന്‍ മാറ്റുകയോ വേണം"
638
+
639
+ #: contact-form-7/modules/captcha.php:294
640
+ msgid "This contact form contains CAPTCHA fields, but the necessary libraries (GD and FreeType) are not available on your server."
641
+ msgstr "ഈ കോണ്ടാക്ട് ഫോമില്‍ CAPTCHA ഫീല്‍ഡ് ഉണ്ട്,പക്ഷേ അത്യാവശ്യം വേണ്ട ലൈബ്രറികള്‍ (GD and FreeType) ഈ സെര്‍വറില്‍ ലഭ്യമല്ല."
642
+
643
+ #: contact-form-7/modules/checkbox.php:169
644
+ msgid "Checkboxes"
645
+ msgstr "ചെക്ക് ബോക്സ്"
646
+
647
+ #: contact-form-7/modules/checkbox.php:172
648
+ msgid "Radio buttons"
649
+ msgstr "റേഡിയോ ബട്ടണ്‍"
650
+
651
+ #: contact-form-7/modules/checkbox.php:193
652
+ #: contact-form-7/modules/file.php:233
653
+ msgid "Required field?"
654
+ msgstr "നിര്‍ബന്ധമുള്ളത്?"
655
+
656
+ #: contact-form-7/modules/checkbox.php:209
657
+ msgid "Choices"
658
+ msgstr "ചോയിസ്"
659
+
660
+ #: contact-form-7/modules/checkbox.php:211
661
+ msgid "* One choice per line."
662
+ msgstr "* ഒരു വരിയില്‍ ഒരു ചോയിസ്"
663
+
664
+ #: contact-form-7/modules/checkbox.php:215
665
+ msgid "Put a label first, a checkbox last?"
666
+ msgstr "ലേബല്‍ ആദ്യം.ചെക്ക്ബോക്സ് അവസാനം?"
667
+
668
+ #: contact-form-7/modules/checkbox.php:216
669
+ msgid "Wrap each item with <label> tag?"
670
+ msgstr "Wrap each item with <label> tag?"
671
+
672
+ #: contact-form-7/modules/checkbox.php:218
673
+ msgid "Make checkboxes exclusive?"
674
+ msgstr "Make checkboxes exclusive?"
675
+
676
+ #: contact-form-7/modules/checkbox.php:226
677
+ msgid "And, put this code into the Mail fields below."
678
+ msgstr "കോഡ് താഴെയുള്ള മെയില്‍ ഫീല്‍ഡില്‍ പേസ്റ്റ് ചെയ്യൂ"
679
+
680
+ #: contact-form-7/modules/file.php:197
681
+ msgid "Uploading a file fails for any reason"
682
+ msgstr "ഫയല്‍ കയറ്റം എന്തോ കാരണത്താല്‍ പരാജയപ്പെട്ടു"
683
+
684
+ #: contact-form-7/modules/file.php:198
685
+ msgid "Failed to upload file."
686
+ msgstr "ഫയല്‍ കയറ്റം എന്തോ പരാജയപ്പെട്ടു"
687
+
688
+ #: contact-form-7/modules/file.php:202
689
+ msgid "Uploaded file is not allowed file type"
690
+ msgstr "ഈ ഫയല്‍ ടൈപ്പ് കയറ്റല്‍ അനുവധനീയമല്ല"
691
+
692
+ #: contact-form-7/modules/file.php:203
693
+ msgid "This file type is not allowed."
694
+ msgstr "ഈ ഫയല്‍ അനുവധനീയമല്ല"
695
+
696
+ #: contact-form-7/modules/file.php:207
697
+ msgid "Uploaded file is too large"
698
+ msgstr "കയറ്റാനുള്ള ഫയല്‍ വളരെ വലുതാണ്"
699
+
700
+ #: contact-form-7/modules/file.php:208
701
+ msgid "This file is too large."
702
+ msgstr "ഫയല്‍ വളരെ വലുതാണ്"
703
+
704
+ #: contact-form-7/modules/file.php:212
705
+ msgid "Uploading a file fails for PHP error"
706
+ msgstr "PHP പിശക് കോണ്ട് ഫയല്‍ കയറ്റല്‍ പരാജയപ്പെട്ടു"
707
+
708
+ #: contact-form-7/modules/file.php:213
709
+ msgid "Failed to upload file. Error occurred."
710
+ msgstr "ഫയല്‍ കയറ്റല്‍ പരാജയപ്പെട്ടു,പിശകുണ്ട്"
711
+
712
+ #: contact-form-7/modules/file.php:224
713
+ msgid "File upload"
714
+ msgstr "ഫയല്‍ കയറ്റൂ"
715
+
716
+ #: contact-form-7/modules/file.php:247
717
+ msgid "File size limit"
718
+ msgstr "ഫയല്‍ സൈസ് ലിമിറ്റ്"
719
+
720
+ #: contact-form-7/modules/file.php:247
721
+ msgid "bytes"
722
+ msgstr "ബൈറ്റ്സ്"
723
+
724
+ #: contact-form-7/modules/file.php:250
725
+ msgid "Acceptable file types"
726
+ msgstr "അംഗീകരിക്കാവുന്ന ഫയല്‍ ടെപ്പുകള്‍"
727
+
728
+ #: contact-form-7/modules/file.php:257
729
+ msgid "And, put this code into the File Attachments field below."
730
+ msgstr "ഈ കോഡ് താഴെയുള്ള ഫയല്‍ അറ്റാച്ച്മെന്റ് ഫീല്‍ഡില്‍ പേസ്റ്റ് ചെയ്യുക"
731
+
732
+ #: contact-form-7/modules/file.php:282
733
+ #, php-format
734
+ msgid "This contact form contains file uploading fields, but the temporary folder for the files (%s) does not exist or is not writable. You can create the folder or change its permission manually."
735
+ msgstr "ഈ കോണ്ടാക്ട് ഫോമില്‍ ഫയല്‍ കയറ്റല്‍ ഉണ്ട്,പക്ഷേ ഫയലിനായുള്ള (%s) ടെമ്പററി ഫോള്‍ഡര്‍ നിലവിലില്ല,അല്ലെങ്കില്‍ നിര്‍മ്മിക്കാനാകുന്നില്ല,നിങ്ങള്‍ ഫോള്‍ഡര്‍ നിര്‍മ്മിക്കുകയോ പെര്‍മ്മിഷന്‍ മാറ്റുകയോ വേണം"
736
+
737
+ #: contact-form-7/modules/icl.php:74
738
+ msgid "This contact form contains [icl] tags, but they are obsolete and no longer functioning on this version of Contact Form 7. <a href=\"http://contactform7.com/2009/12/25/contact-form-in-your-language/#Creating_contact_form_in_different_languages\" target=\"_blank\">There is a simpler way for creating contact forms of other languages</a> and you are recommended to use it."
739
+ msgstr "This contact form contains [icl] tags, but they are obsolete and no longer functioning on this version of Contact Form 7. <a href=\"http://contactform7.com/2009/12/25/contact-form-in-your-language/#Creating_contact_form_in_different_languages\" target=\"_blank\">There is a simpler way for creating contact forms of other languages</a> and you are recommended to use it."
740
+
741
+ #: contact-form-7/modules/quiz.php:164
742
+ msgid "Sender doesn't enter the correct answer to the quiz"
743
+ msgstr "രചയിതാവ് ക്വിസിനായുള്ള ശരിയായ ഉത്തരം നല്‍കിയിട്ടില്ല"
744
+
745
+ #: contact-form-7/modules/quiz.php:165
746
+ msgid "Your answer is not correct."
747
+ msgstr "നിങ്ങളുടെ ഉത്തരം തെറ്റാണ്."
748
+
749
+ #: contact-form-7/modules/quiz.php:175
750
+ msgid "Quiz"
751
+ msgstr "ക്വിസ്"
752
+
753
+ #: contact-form-7/modules/quiz.php:205
754
+ msgid "Quizzes"
755
+ msgstr "ക്വിസുകള്‍"
756
+
757
+ #: contact-form-7/modules/quiz.php:207
758
+ msgid "* quiz|answer (e.g. 1+1=?|2)"
759
+ msgstr "* ക്വിസ്|ഉത്തരം (ഉദാ. 1+1=?|2)"
760
+
761
+ #: contact-form-7/modules/select.php:146
762
+ msgid "Drop-down menu"
763
+ msgstr "താഴെക്ക് വീഴുന്ന കണ്ണി"
764
+
765
+ #: contact-form-7/modules/select.php:175
766
+ msgid "Allow multiple selections?"
767
+ msgstr "ഒന്നിലധികം തൈരഞ്ഞെടുപ്പ് അനുവധിക്കൂ?"
768
+
769
+ #: contact-form-7/modules/select.php:176
770
+ msgid "Insert a blank item as the first option?"
771
+ msgstr "ആദ്യ ഓപ്ഷനില്‍ ഒന്നും വേണ്ട?"
772
+
773
+ #: contact-form-7/modules/submit.php:55
774
+ msgid "Submit button"
775
+ msgstr "സബ്മിറ്റ് ബട്ടണ്‍"
776
+
777
+ #: contact-form-7/modules/submit.php:73
778
+ msgid "Label"
779
+ msgstr "ലേബല്‍"
780
+
781
+ #: contact-form-7/modules/text.php:129
782
+ msgid "Text field"
783
+ msgstr "ടെക്സ്റ്റ് ഫീല്‍ഡ്"
784
+
785
+ #: contact-form-7/modules/text.php:132
786
+ msgid "Email field"
787
+ msgstr "ഇമെയില്‍ ഫീല്‍ഡ്"
788
+
789
+ #: contact-form-7/modules/text.php:174
790
+ msgid "Akismet"
791
+ msgstr "Akismet"
792
+
793
+ #: contact-form-7/modules/text.php:176
794
+ msgid "This field requires author's name"
795
+ msgstr "രചയിതാവിന്റെ പേര്‍ നിര്‍ബന്ധമാണ്‍"
796
+
797
+ #: contact-form-7/modules/text.php:177
798
+ msgid "This field requires author's URL"
799
+ msgstr "രചയിതാവിന്റെ URL നിര്‍ബന്ധമാണ്‍"
800
+
801
+ #: contact-form-7/modules/text.php:179
802
+ msgid "This field requires author's email address"
803
+ msgstr "രചയിതാവിന്റെ മെയില്‍ അഡ്രസ് നിര്‍ബന്ധമാണ്‍"
804
+
805
+ #: contact-form-7/modules/text.php:183
806
+ #: contact-form-7/modules/textarea.php:149
807
+ msgid "Default value"
808
+ msgstr "ഡിഫാള്‍ട്ട് വാല്യൂ"
809
+
810
+ #: contact-form-7/modules/textarea.php:118
811
+ msgid "Text area"
812
+ msgstr "ടെക്സ്റ്റ് ഏരിയാ"
813
+
languages/wpcf7-sk.mo CHANGED
Binary file
languages/wpcf7-sk.po CHANGED
@@ -2,9 +2,9 @@ msgid ""
2
  msgstr ""
3
  "Project-Id-Version: Contact Form 7\n"
4
  "Report-Msgid-Bugs-To: \n"
5
- "POT-Creation-Date: 2009-05-31 23:05+0900\n"
6
- "PO-Revision-Date: 2009-06-09 00:40+0100\n"
7
- "Last-Translator: \n"
8
  "Language-Team: \n"
9
  "MIME-Version: 1.0\n"
10
  "Content-Type: text/plain; charset=UTF-8\n"
@@ -15,454 +15,802 @@ msgstr ""
15
  "Plural-Forms: nplurals=1; plural=0;\n"
16
  "X-Poedit-SearchPath-0: contact-form-7\n"
17
 
18
- #: contact-form-7/wp-contact-form-7.php:373
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
19
  msgid "Contact form"
20
  msgstr "Kontaktný formulár"
21
 
22
- #: contact-form-7/admin/admin-panel.php:6
23
- #: contact-form-7/admin/admin.php:111
24
- msgid "Contact Form 7"
 
 
 
 
 
 
 
 
 
 
 
25
  msgstr ""
26
 
27
- #: contact-form-7/admin/admin-panel.php:21
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
28
  msgid "Add new"
29
  msgstr "Vytvor nový formulár"
30
 
31
- #: 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 "Skopírujte tento kód do vášho článku, stránky, alebo textového widgetu."
34
 
35
- #: contact-form-7/admin/admin-panel.php:50
36
- #: contact-form-7/admin/admin-panel.php:290
37
  msgid "Save"
38
  msgstr "Uložiť"
39
 
40
- #: contact-form-7/admin/admin-panel.php:57
41
  msgid "Copy"
42
  msgstr "Kopírovať"
43
 
44
- #: contact-form-7/admin/admin-panel.php:61
45
  msgid "Delete"
46
  msgstr "Vymazať"
47
 
48
- #: 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 "Naozaj chcete vymazať tento formulár ?"
53
 
54
- #: contact-form-7/admin/admin-panel.php:78
55
  msgid "Form"
56
  msgstr "Formulár"
57
 
58
- #: contact-form-7/admin/admin-panel.php:98
59
  msgid "Mail"
60
  msgstr ""
61
 
62
- #: contact-form-7/admin/admin-panel.php:105
63
- #: contact-form-7/admin/admin-panel.php:161
64
  msgid "To:"
65
  msgstr "Komu:"
66
 
67
- #: contact-form-7/admin/admin-panel.php:109
68
- #: contact-form-7/admin/admin-panel.php:165
69
  msgid "From:"
70
  msgstr "Od:"
71
 
72
- #: contact-form-7/admin/admin-panel.php:113
73
- #: contact-form-7/admin/admin-panel.php:169
74
  msgid "Subject:"
75
  msgstr "Predmet:"
76
 
77
- #: contact-form-7/admin/admin-panel.php:118
78
- #: contact-form-7/admin/admin-panel.php:174
79
  msgid "Additional headers:"
80
  msgstr "Dodatočné hlavičky:"
81
 
82
- #: contact-form-7/admin/admin-panel.php:122
83
- #: contact-form-7/admin/admin-panel.php:178
84
  msgid "File attachments:"
85
  msgstr "Prílohy:"
86
 
87
- #: contact-form-7/admin/admin-panel.php:124
88
- #: contact-form-7/admin/admin-panel.php:180
89
- msgid "(You need WordPress 2.7 or greater to use this feature)"
90
- msgstr "(Potrebujete Wordpress 2.7, alebo vyšší, aby ste mohli použiť túto funkciu)"
91
-
92
- #: contact-form-7/admin/admin-panel.php:132
93
- #: contact-form-7/admin/admin-panel.php:188
94
  msgid "Use HTML content type"
95
  msgstr "Použiť HTML"
96
 
97
- #: contact-form-7/admin/admin-panel.php:137
98
- #: contact-form-7/admin/admin-panel.php:193
 
99
  msgid "Message body:"
100
  msgstr "Text správy:"
101
 
102
- #: contact-form-7/admin/admin-panel.php:148
103
  msgid "Mail (2)"
104
  msgstr ""
105
 
106
- #: contact-form-7/admin/admin-panel.php:155
107
  msgid "Use mail (2)"
108
  msgstr "Použiť mail (2)"
109
 
110
- #: contact-form-7/admin/admin-panel.php:204
111
  msgid "Messages"
112
  msgstr "Správy"
113
 
114
- #: contact-form-7/admin/admin-panel.php:212
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
115
  msgid "Sender's message was sent successfully"
116
  msgstr "Užívateľova správa bola úspešne odoslaná"
117
 
118
- #: contact-form-7/admin/admin-panel.php:216
 
 
 
 
119
  msgid "Sender's message was failed to send"
120
  msgstr "Nastala chyba pri odosielaní užívateľovej správy"
121
 
122
- #: contact-form-7/admin/admin-panel.php:220
 
 
 
 
 
123
  msgid "Akismet judged the sending activity as spamming"
124
  msgstr "Akismet označil odosielanie formulára ako spam"
125
 
126
- #: contact-form-7/admin/admin-panel.php:224
127
  msgid "Validation errors occurred"
128
  msgstr "Nastala chyba pri validácii formulára"
129
 
130
- #: contact-form-7/admin/admin-panel.php:228
131
- msgid "There is a field that sender is needed to fill in"
132
- msgstr "Nejaké povinné pole ostalo nevyplnené"
 
 
 
 
133
 
134
- #: contact-form-7/admin/admin-panel.php:232
 
 
 
 
135
  msgid "Email address that sender entered is invalid"
136
  msgstr "Email adresa zadaná užívateľom je neplatná"
137
 
138
- #: contact-form-7/admin/admin-panel.php:236
139
- msgid "There is a field of term that sender is needed to accept"
140
- msgstr "Užívatel musí súhlasiť s podmienkami"
141
 
142
- #: contact-form-7/admin/admin-panel.php:240
143
- msgid "Sender doesn't enter the correct answer to the quiz"
144
- msgstr "Odosielaľ nevyplnil správnu odpoveď z kvízu"
145
 
146
- #: contact-form-7/admin/admin-panel.php:244
147
- msgid "The code that sender entered does not match the CAPTCHA"
148
- msgstr "Užívateľom zadaný kód je iný ako CAPTCHA kód"
149
 
150
- #: contact-form-7/admin/admin-panel.php:248
151
- msgid "Uploading a file fails for any reason"
152
- msgstr "Nahrávanie súboru z nejakého dôvodu zlyhalo"
153
 
154
- #: contact-form-7/admin/admin-panel.php:252
155
- msgid "Uploaded file is not allowed file type"
156
- msgstr "Typ nahraného súboru nie je povolený"
 
157
 
158
- #: contact-form-7/admin/admin-panel.php:256
159
- msgid "Uploaded file is too large"
160
- msgstr "Nahraný súbor je príliš veľký"
161
 
162
- #: contact-form-7/admin/admin-panel.php:269
163
- msgid "Additional Settings"
164
- msgstr "Dodatočné nastavenia"
165
 
166
- #: contact-form-7/admin/admin.php:157
167
- msgid "optional"
168
- msgstr "voliteľné"
169
 
170
- #: contact-form-7/admin/admin.php:158
171
- msgid "Generate Tag"
172
- msgstr "Generuj Tag"
173
 
174
- #: contact-form-7/admin/admin.php:159
175
- msgid "Text field"
176
- msgstr "Textové pole"
 
177
 
178
- #: contact-form-7/admin/admin.php:160
179
- msgid "Email field"
180
- msgstr "Email pole"
 
181
 
182
- #: contact-form-7/admin/admin.php:161
183
- msgid "Text area"
184
- msgstr "Textové pole (viac riadkov)"
 
185
 
186
- #: contact-form-7/admin/admin.php:162
187
- msgid "Drop-down menu"
188
- msgstr "Rozbaľovacie menu"
 
 
189
 
190
- #: contact-form-7/admin/admin.php:163
191
- msgid "Checkboxes"
192
- msgstr "Zaškrtávacie políčka"
193
 
194
- #: contact-form-7/admin/admin.php:164
195
- msgid "Radio buttons"
196
- msgstr "Tlačidlá voľby (radio buttons)"
197
 
198
- #: contact-form-7/admin/admin.php:165
199
- msgid "Acceptance"
200
- msgstr "Akceptácia"
201
 
202
- #: contact-form-7/admin/admin.php:166
203
- msgid "Make this checkbox checked by default?"
204
- msgstr "Nastavit toto políčko ako vybraté ?"
205
 
206
- #: contact-form-7/admin/admin.php:167
207
- msgid "Make this checkbox work inversely?"
208
- msgstr "Nastaviť toto políčko, aby fungovalo inverzne ?"
209
 
210
- #: contact-form-7/admin/admin.php:168
211
- msgid "* That means visitor who accepts the term unchecks it."
212
- msgstr "* To znamená, že užívateľ, ktorý súhlasil s podmienkami, zrušil svoj súhlas."
213
 
214
- #: contact-form-7/admin/admin.php:169
215
- msgid "CAPTCHA"
216
  msgstr ""
217
 
218
- #: contact-form-7/admin/admin.php:170
219
- msgid "Quiz"
220
- msgstr "Kvíz"
221
 
222
- #: contact-form-7/admin/admin.php:171
223
- msgid "Quizzes"
224
- msgstr "Kvízy"
225
 
226
- #: contact-form-7/admin/admin.php:172
227
- msgid "* quiz|answer (e.g. 1+1=?|2)"
228
- msgstr "* kvíz|odpoveď (napr. 1+1=?|2)"
229
 
230
- #: contact-form-7/admin/admin.php:173
231
- msgid "File upload"
232
- msgstr "Nahratie súboru"
233
 
234
- #: contact-form-7/admin/admin.php:174
235
- msgid "bytes"
236
- msgstr "bajtov"
237
 
238
- #: contact-form-7/admin/admin.php:175
239
- msgid "Submit button"
240
- msgstr "Porvrdzovacie tlačítko"
241
 
242
- #: contact-form-7/admin/admin.php:176
243
- msgid "Name"
244
- msgstr "Meno"
245
 
246
- #: contact-form-7/admin/admin.php:177
247
- msgid "Required field?"
248
- msgstr "Povinná položka ?"
249
 
250
- #: contact-form-7/admin/admin.php:178
251
- msgid "Allow multiple selections?"
252
- msgstr "Povoliť viacnásobný výber ?"
253
 
254
- #: contact-form-7/admin/admin.php:179
255
- msgid "Insert a blank item as the first option?"
256
- msgstr "Vložiť prázdnu prvú položku ?"
257
 
258
- #: contact-form-7/admin/admin.php:180
259
- msgid "Make checkboxes exclusive?"
260
- msgstr "Nastaviť zaškrtávacie políčka ako exkluzívne ?"
261
 
262
- #: contact-form-7/admin/admin.php:181
263
- msgid "Choices"
264
- msgstr "Možnosti"
265
 
266
- #: contact-form-7/admin/admin.php:182
267
- msgid "Label"
268
- msgstr "Označenie"
269
 
270
- #: contact-form-7/admin/admin.php:183
271
- msgid "Default value"
272
- msgstr "Predvolená hodnota"
273
 
274
- #: contact-form-7/admin/admin.php:184
275
- msgid "Akismet"
276
  msgstr ""
277
 
278
- #: contact-form-7/admin/admin.php:185
279
- msgid "This field requires author's name"
280
- msgstr "Táto položka vyžaduje meno autora"
281
 
282
- #: contact-form-7/admin/admin.php:186
283
- msgid "This field requires author's URL"
284
- msgstr "Táto položka vyžaduje URL autora"
285
 
286
- #: contact-form-7/admin/admin.php:187
287
- msgid "This field requires author's email address"
288
- msgstr "Táto položka vyžaduje email adresu autora"
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
289
 
290
- #: contact-form-7/admin/admin.php:188
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
291
  msgid "Copy this code and paste it into the form left."
292
  msgstr "Skopírujte tento kód do formulára vľavo."
293
 
294
- #: contact-form-7/admin/admin.php:189
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
295
  msgid "Foreground color"
296
  msgstr "Farba popredia"
297
 
298
- #: contact-form-7/admin/admin.php:190
299
  msgid "Background color"
300
  msgstr "Farba pozadia"
301
 
302
- #: contact-form-7/admin/admin.php:191
303
  msgid "Image size"
304
  msgstr "Veľkosť obrázku"
305
 
306
- #: contact-form-7/admin/admin.php:192
307
  msgid "Small"
308
  msgstr "Malý"
309
 
310
- #: contact-form-7/admin/admin.php:193
311
  msgid "Medium"
312
  msgstr "Stredný"
313
 
314
- #: contact-form-7/admin/admin.php:194
315
  msgid "Large"
316
  msgstr "Veľký"
317
 
318
- #: contact-form-7/admin/admin.php:195
319
- msgid "Image settings"
320
- msgstr "Nastavenia obrázkov"
321
-
322
- #: contact-form-7/admin/admin.php:196
323
  msgid "Input field settings"
324
  msgstr "Nastavenia vstupných polí"
325
 
326
- #: contact-form-7/admin/admin.php:197
327
  msgid "For image"
328
  msgstr "Pre obrázok"
329
 
330
- #: contact-form-7/admin/admin.php:198
331
  msgid "For input field"
332
  msgstr "Pre vstupné pole"
333
 
334
- #: contact-form-7/admin/admin.php:199
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
335
  msgid "* One choice per line."
336
  msgstr "* Jedna možnosť na riadok."
337
 
338
- #: contact-form-7/admin/admin.php:200
339
- msgid "Show"
340
- msgstr "Ukázať"
341
 
342
- #: contact-form-7/admin/admin.php:201
343
- msgid "Hide"
344
- msgstr "Skryť"
345
 
346
- #: contact-form-7/admin/admin.php:202
347
- msgid "File size limit"
348
- msgstr "Maximálna veľkosť súboru"
349
 
350
- #: contact-form-7/admin/admin.php:203
351
- msgid "Acceptable file types"
352
- msgstr "Povolené typy súboru"
353
 
354
- #: contact-form-7/admin/admin.php:204
355
- msgid "Note: To use CAPTCHA, you need Really Simple CAPTCHA plugin installed."
356
- msgstr "Poznámka: Aby ste mohli použiť CAPTCHA, tak musíte nainštalovať modul Really Simple CAPTCHA."
357
 
358
- #: contact-form-7/admin/admin.php:223
359
- msgid "Contact form created."
360
- msgstr "Kontaktný formulár bol vytvorený."
361
 
362
- #: contact-form-7/admin/admin.php:226
363
- msgid "Contact form saved."
364
- msgstr "Kontaktný formulár bol uložený."
365
 
366
- #: contact-form-7/admin/admin.php:229
367
- msgid "Contact form deleted."
368
- msgstr "Kontaktný formulár bol vymazaný."
369
 
370
- #: contact-form-7/admin/admin.php:240
371
- msgid "Untitled"
372
- msgstr "Bez názvu"
373
 
374
- #: contact-form-7/admin/admin.php:253
375
- msgid "Your Name"
376
- msgstr "Vaše meno"
377
 
378
- #: contact-form-7/admin/admin.php:253
379
- #: contact-form-7/admin/admin.php:255
380
- msgid "(required)"
381
- msgstr "(povinné)"
382
 
383
- #: contact-form-7/admin/admin.php:255
384
- msgid "Your Email"
385
- msgstr "Váš email"
386
 
387
- #: contact-form-7/admin/admin.php:257
388
- msgid "Subject"
389
- msgstr "Predmet"
390
 
391
- #: contact-form-7/admin/admin.php:259
392
- msgid "Your Message"
393
- msgstr "Vaša správa"
394
 
395
- #: contact-form-7/admin/admin.php:261
396
- #: contact-form-7/includes/classes.php:411
397
- msgid "Send"
398
- msgstr "Odošli"
399
 
400
- #: contact-form-7/admin/admin.php:334
401
- msgid "Settings"
402
- msgstr "Nastavenia"
403
 
404
- #: contact-form-7/admin/admin.php:355
405
- msgid "Contact Form 7 needs your support. Please donate today."
406
- msgstr "Contact Form 7 potrebuje Vašu pomoc. Prosím prispejte dnes."
407
 
408
- #: 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 "Je tento modul pre Vás užitočný ? Ak chcete, tak pomôžte vývojárovi."
 
411
 
412
- #: contact-form-7/admin/admin.php:357
413
- msgid "Your contribution is needed for making this plugin better."
414
- msgstr "Vaša podpora je potrebná, aby bol tento modul lepší."
415
 
416
- #: contact-form-7/admin/admin.php:358
417
- msgid "Developing a plugin and providing user support is really hard work. Please help."
418
- msgstr "Vytvorenie modulu a poskytvanie užívateľskej podpory je ťažká práca. Prosím pomôžte."
419
 
420
- #: 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 "Pre používanie CAPTCHA nainštalujte <a href=\"http://wordpress.org/extend/plugins/really-simple-captcha/\">Really Simple CAPTCHA</a> modul."
423
 
424
- #: contact-form-7/includes/functions.php:6
425
- msgid "Your message was sent successfully. Thanks."
426
- msgstr "Vaša správa bola úspešne odoslaná. Vďaka."
427
 
428
- #: contact-form-7/includes/functions.php:8
429
- #: contact-form-7/includes/functions.php:10
430
- msgid "Failed to send your message. Please try later or contact administrator by other way."
431
- msgstr "Nastala chyba pri odosielaní Vašej správy. Skúste znovu, alebo kontaktujte administrátora."
432
 
433
- #: contact-form-7/includes/functions.php:12
434
- msgid "Validation errors occurred. Please confirm the fields and submit it again."
435
- msgstr "Nastala chyba pri validácii formulára. Prosím skontrolujte jednotlivé položky a znovu odošlite formulár."
436
 
437
- #: contact-form-7/includes/functions.php:14
438
- msgid "Please accept the terms to proceed."
439
- msgstr "Prosím súhlaste s podmienkami, aby ste mohli pokračovať."
440
 
441
- #: contact-form-7/includes/functions.php:16
442
- msgid "Email address seems invalid."
443
- msgstr "Prosím skontrolujte Email adresu."
444
 
445
- #: contact-form-7/includes/functions.php:18
446
- msgid "Please fill the required field."
447
- msgstr "Prosím vyplnte povinnú položku."
448
 
449
- #: contact-form-7/includes/functions.php:20
450
- msgid "Your entered code is incorrect."
451
- msgstr "Vami vložený kód je nesprávny."
452
 
453
- #: contact-form-7/includes/functions.php:22
454
- msgid "Your answer is not correct."
455
- msgstr "Vaša odpoveď je nesprávna."
456
 
457
- #: contact-form-7/includes/functions.php:24
458
- msgid "Failed to upload file."
459
- msgstr "Nahrávanie súboru zlyhalo."
460
 
461
- #: contact-form-7/includes/functions.php:26
462
- msgid "This file type is not allowed."
463
- msgstr "Tento typ súboru nie je povolený."
464
 
465
- #: contact-form-7/includes/functions.php:28
466
- msgid "This file is too large."
467
- msgstr "Súbor je príliš veľký."
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
468
 
2
  msgstr ""
3
  "Project-Id-Version: Contact Form 7\n"
4
  "Report-Msgid-Bugs-To: \n"
5
+ "POT-Creation-Date: 2010-01-09 03:18+0900\n"
6
+ "PO-Revision-Date: 2010-02-15 00:01+0100\n"
7
+ "Last-Translator: Patrik Bóna <patrik.bona@mrhead.sk>\n"
8
  "Language-Team: \n"
9
  "MIME-Version: 1.0\n"
10
  "Content-Type: text/plain; charset=UTF-8\n"
15
  "Plural-Forms: nplurals=1; plural=0;\n"
16
  "X-Poedit-SearchPath-0: contact-form-7\n"
17
 
18
+ #: contact-form-7/admin/admin.php:117
19
+ #: contact-form-7/admin/edit.php:17
20
+ #: contact-form-7/admin/edit.php:30
21
+ msgid "Contact Form 7"
22
+ msgstr ""
23
+
24
+ #: contact-form-7/admin/admin.php:117
25
+ #, fuzzy
26
+ msgid "Contact"
27
+ msgstr "Kontaktný formulár"
28
+
29
+ #: contact-form-7/admin/admin.php:120
30
+ msgid "Edit Contact Forms"
31
+ msgstr "Edituj kontaktné formuláre"
32
+
33
+ #: contact-form-7/admin/admin.php:120
34
+ msgid "Edit"
35
+ msgstr "Edituj"
36
+
37
+ #: contact-form-7/admin/admin.php:159
38
+ msgid "Generate Tag"
39
+ msgstr "Generuj značku"
40
+
41
+ #: contact-form-7/admin/admin.php:160
42
+ msgid "Show"
43
+ msgstr "Ukázať"
44
+
45
+ #: contact-form-7/admin/admin.php:161
46
+ msgid "Hide"
47
+ msgstr "Skryť"
48
+
49
+ #: contact-form-7/admin/admin.php:257
50
  msgid "Contact form"
51
  msgstr "Kontaktný formulár"
52
 
53
+ #: contact-form-7/admin/admin.php:276
54
+ msgid "Settings"
55
+ msgstr "Nastavenia"
56
+
57
+ #: contact-form-7/admin/admin.php:287
58
+ msgid "http://contactform7.com/"
59
+ msgstr ""
60
+
61
+ #: contact-form-7/admin/admin.php:288
62
+ msgid "Contactform7.com"
63
+ msgstr ""
64
+
65
+ #: contact-form-7/admin/admin.php:289
66
+ msgid "http://contactform7.com/docs/"
67
  msgstr ""
68
 
69
+ #: contact-form-7/admin/admin.php:290
70
+ msgid "Docs"
71
+ msgstr "Dokumentácia"
72
+
73
+ #: contact-form-7/admin/admin.php:291
74
+ msgid "http://contactform7.com/faq/"
75
+ msgstr ""
76
+
77
+ #: contact-form-7/admin/admin.php:292
78
+ msgid "FAQ"
79
+ msgstr "Často kladené otázky"
80
+
81
+ #: contact-form-7/admin/admin.php:293
82
+ msgid "http://contactform7.com/support/"
83
+ msgstr ""
84
+
85
+ #: contact-form-7/admin/admin.php:294
86
+ msgid "Support"
87
+ msgstr "Podpora"
88
+
89
+ #: contact-form-7/admin/admin.php:305
90
+ msgid "Contact form created."
91
+ msgstr "Kontaktný formulár bol vytvorený."
92
+
93
+ #: contact-form-7/admin/admin.php:308
94
+ msgid "Contact form saved."
95
+ msgstr "Kontaktný formulár bol uložený."
96
+
97
+ #: contact-form-7/admin/admin.php:311
98
+ msgid "Contact form deleted."
99
+ msgstr "Kontaktný formulár bol vymazaný."
100
+
101
+ #: contact-form-7/admin/admin.php:314
102
+ msgid "Database table created."
103
+ msgstr "Databázová tabuľka bola vytvorená."
104
+
105
+ #: contact-form-7/admin/admin.php:317
106
+ msgid "Failed to create database table."
107
+ msgstr "Vytvorenie databázovej tabuľky zlyhalo."
108
+
109
+ #: contact-form-7/admin/admin.php:350
110
+ msgid "Contact Form 7 needs your support. Please donate today."
111
+ msgstr "Contact Form 7 potrebuje Vašu pomoc. Prosím prispejte dnes."
112
+
113
+ #: contact-form-7/admin/admin.php:351
114
+ msgid "Is this plugin useful for you? If you like it, please help the developer."
115
+ msgstr "Je tento modul pre Vás užitočný ? Ak chcete, tak pomôžte vývojárovi."
116
+
117
+ #: contact-form-7/admin/admin.php:352
118
+ msgid "Your contribution is needed for making this plugin better."
119
+ msgstr "Vaša podpora je potrebná, aby bol tento modul lepší."
120
+
121
+ #: contact-form-7/admin/admin.php:353
122
+ msgid "Developing a plugin and providing user support is really hard work. Please help."
123
+ msgstr "Vytvorenie modulu a poskytvanie užívateľskej podpory je ťažká práca. Prosím pomôžte."
124
+
125
+ #: contact-form-7/admin/edit.php:9
126
+ #, php-format
127
+ 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."
128
+ msgstr "<strong>Databázová tabuľka pre Contact Form 7 neexistuje.</strong> Musíte <a href=\"%s\">vytvoriť tabuľku</a>, aby to fungovalo."
129
+
130
+ #: contact-form-7/admin/edit.php:12
131
+ msgid "<strong>The database table for Contact Form 7 does not exist.</strong>"
132
+ msgstr "<strong>Databázová tabuľka pre Contact Form 7 neexistuje.</strong>"
133
+
134
+ #: contact-form-7/admin/edit.php:45
135
  msgid "Add new"
136
  msgstr "Vytvor nový formulár"
137
 
138
+ #: contact-form-7/admin/edit.php:67
139
  msgid "Copy this code and paste it into your post, page or text widget content."
140
  msgstr "Skopírujte tento kód do vášho článku, stránky, alebo textového widgetu."
141
 
142
+ #: contact-form-7/admin/edit.php:75
143
+ #: contact-form-7/admin/edit.php:309
144
  msgid "Save"
145
  msgstr "Uložiť"
146
 
147
+ #: contact-form-7/admin/edit.php:82
148
  msgid "Copy"
149
  msgstr "Kopírovať"
150
 
151
+ #: contact-form-7/admin/edit.php:87
152
  msgid "Delete"
153
  msgstr "Vymazať"
154
 
155
+ #: contact-form-7/admin/edit.php:89
156
  msgid ""
157
  "You are about to delete this contact form.\n"
158
  " 'Cancel' to stop, 'OK' to delete."
159
  msgstr "Naozaj chcete vymazať tento formulár ?"
160
 
161
+ #: contact-form-7/admin/edit.php:104
162
  msgid "Form"
163
  msgstr "Formulár"
164
 
165
+ #: contact-form-7/admin/edit.php:128
166
  msgid "Mail"
167
  msgstr ""
168
 
169
+ #: contact-form-7/admin/edit.php:135
170
+ #: contact-form-7/admin/edit.php:202
171
  msgid "To:"
172
  msgstr "Komu:"
173
 
174
+ #: contact-form-7/admin/edit.php:140
175
+ #: contact-form-7/admin/edit.php:207
176
  msgid "From:"
177
  msgstr "Od:"
178
 
179
+ #: contact-form-7/admin/edit.php:145
180
+ #: contact-form-7/admin/edit.php:212
181
  msgid "Subject:"
182
  msgstr "Predmet:"
183
 
184
+ #: contact-form-7/admin/edit.php:152
185
+ #: contact-form-7/admin/edit.php:219
186
  msgid "Additional headers:"
187
  msgstr "Dodatočné hlavičky:"
188
 
189
+ #: contact-form-7/admin/edit.php:157
190
+ #: contact-form-7/admin/edit.php:224
191
  msgid "File attachments:"
192
  msgstr "Prílohy:"
193
 
194
+ #: contact-form-7/admin/edit.php:165
195
+ #: contact-form-7/admin/edit.php:232
 
 
 
 
 
196
  msgid "Use HTML content type"
197
  msgstr "Použiť HTML"
198
 
199
+ #: contact-form-7/admin/edit.php:172
200
+ #: contact-form-7/admin/edit.php:239
201
+ #: contact-form-7/includes/functions.php:73
202
  msgid "Message body:"
203
  msgstr "Text správy:"
204
 
205
+ #: contact-form-7/admin/edit.php:188
206
  msgid "Mail (2)"
207
  msgstr ""
208
 
209
+ #: contact-form-7/admin/edit.php:194
210
  msgid "Use mail (2)"
211
  msgstr "Použiť mail (2)"
212
 
213
+ #: contact-form-7/admin/edit.php:255
214
  msgid "Messages"
215
  msgstr "Správy"
216
 
217
+ #: contact-form-7/admin/edit.php:285
218
+ msgid "Additional Settings"
219
+ msgstr "Dodatočné nastavenia"
220
+
221
+ #: contact-form-7/admin/edit.php:333
222
+ #, php-format
223
+ msgid "Use the default language (%s)"
224
+ msgstr "Použi predvolený jazyk (%s)"
225
+
226
+ #: contact-form-7/admin/edit.php:334
227
+ #: contact-form-7/admin/edit.php:347
228
+ msgid "Add New"
229
+ msgstr "Vytvor nový formulár"
230
+
231
+ #: contact-form-7/admin/edit.php:337
232
+ msgid "Or"
233
+ msgstr "Alebo"
234
+
235
+ #: contact-form-7/admin/edit.php:342
236
+ msgid "(select language)"
237
+ msgstr "(vyber jazyk)"
238
+
239
+ #: contact-form-7/includes/classes.php:568
240
+ msgid "Untitled"
241
+ msgstr "Bez názvu"
242
+
243
+ #: contact-form-7/includes/functions.php:6
244
  msgid "Sender's message was sent successfully"
245
  msgstr "Užívateľova správa bola úspešne odoslaná"
246
 
247
+ #: contact-form-7/includes/functions.php:7
248
+ msgid "Your message was sent successfully. Thanks."
249
+ msgstr "Vaša správa bola úspešne odoslaná. Vďaka."
250
+
251
+ #: contact-form-7/includes/functions.php:11
252
  msgid "Sender's message was failed to send"
253
  msgstr "Nastala chyba pri odosielaní užívateľovej správy"
254
 
255
+ #: contact-form-7/includes/functions.php:12
256
+ #: contact-form-7/includes/functions.php:17
257
+ msgid "Failed to send your message. Please try later or contact administrator by other way."
258
+ msgstr "Nastala chyba pri odosielaní Vašej správy. Skúste znovu, alebo kontaktujte administrátora."
259
+
260
+ #: contact-form-7/includes/functions.php:16
261
  msgid "Akismet judged the sending activity as spamming"
262
  msgstr "Akismet označil odosielanie formulára ako spam"
263
 
264
+ #: contact-form-7/includes/functions.php:21
265
  msgid "Validation errors occurred"
266
  msgstr "Nastala chyba pri validácii formulára"
267
 
268
+ #: contact-form-7/includes/functions.php:22
269
+ msgid "Validation errors occurred. Please confirm the fields and submit it again."
270
+ msgstr "Nastala chyba pri validácii formulára. Prosím skontrolujte jednotlivé položky a znovu odošlite formulár."
271
+
272
+ #: contact-form-7/includes/functions.php:26
273
+ msgid "There is a field of term that sender is needed to accept"
274
+ msgstr "Užívateľ musí súhlasiť s podmienkami"
275
 
276
+ #: contact-form-7/includes/functions.php:27
277
+ msgid "Please accept the terms to proceed."
278
+ msgstr "Prosím súhlaste s podmienkami, aby ste mohli pokračovať."
279
+
280
+ #: contact-form-7/includes/functions.php:31
281
  msgid "Email address that sender entered is invalid"
282
  msgstr "Email adresa zadaná užívateľom je neplatná"
283
 
284
+ #: contact-form-7/includes/functions.php:32
285
+ msgid "Email address seems invalid."
286
+ msgstr "Prosím skontrolujte Email adresu."
287
 
288
+ #: contact-form-7/includes/functions.php:36
289
+ msgid "There is a field that sender is needed to fill in"
290
+ msgstr "Nejaké povinné pole ostalo nevyplnené"
291
 
292
+ #: contact-form-7/includes/functions.php:37
293
+ msgid "Please fill the required field."
294
+ msgstr "Prosím vyplnte povinnú položku."
295
 
296
+ #: contact-form-7/includes/functions.php:45
297
+ msgid "Your Name"
298
+ msgstr "Vaše meno"
299
 
300
+ #: contact-form-7/includes/functions.php:45
301
+ #: contact-form-7/includes/functions.php:47
302
+ msgid "(required)"
303
+ msgstr "(povinné)"
304
 
305
+ #: contact-form-7/includes/functions.php:47
306
+ msgid "Your Email"
307
+ msgstr "Váš email"
308
 
309
+ #: contact-form-7/includes/functions.php:49
310
+ msgid "Subject"
311
+ msgstr "Predmet"
312
 
313
+ #: contact-form-7/includes/functions.php:51
314
+ msgid "Your Message"
315
+ msgstr "Vaša správa"
316
 
317
+ #: contact-form-7/includes/functions.php:53
318
+ msgid "Send"
319
+ msgstr "Odošli"
320
 
321
+ #: contact-form-7/includes/functions.php:60
322
+ #, php-format
323
+ msgid "From: %s"
324
+ msgstr "Od: %s"
325
 
326
+ #: contact-form-7/includes/functions.php:61
327
+ #, php-format
328
+ msgid "Subject: %s"
329
+ msgstr "Predmet: %s"
330
 
331
+ #: contact-form-7/includes/functions.php:62
332
+ #, fuzzy
333
+ msgid "Message Body:"
334
+ msgstr "Text správy:"
335
 
336
+ #: contact-form-7/includes/functions.php:63
337
+ #: contact-form-7/includes/functions.php:74
338
+ #, php-format
339
+ msgid "This mail is sent via contact form on %1$s %2$s"
340
+ msgstr "Tento mail bol odoslaný cez formulár na %1$s %2$s"
341
 
342
+ #: contact-form-7/includes/functions.php:163
343
+ msgid "Afrikaans"
344
+ msgstr ""
345
 
346
+ #: contact-form-7/includes/functions.php:164
347
+ msgid "Albanian"
348
+ msgstr ""
349
 
350
+ #: contact-form-7/includes/functions.php:165
351
+ msgid "Arabic"
352
+ msgstr ""
353
 
354
+ #: contact-form-7/includes/functions.php:166
355
+ msgid "Bangla"
356
+ msgstr ""
357
 
358
+ #: contact-form-7/includes/functions.php:167
359
+ msgid "Bosnian"
360
+ msgstr ""
361
 
362
+ #: contact-form-7/includes/functions.php:168
363
+ msgid "Brazilian Portuguese"
364
+ msgstr ""
365
 
366
+ #: contact-form-7/includes/functions.php:169
367
+ msgid "Bulgarian"
368
  msgstr ""
369
 
370
+ #: contact-form-7/includes/functions.php:170
371
+ msgid "Catalan"
372
+ msgstr ""
373
 
374
+ #: contact-form-7/includes/functions.php:171
375
+ msgid "Chinese (Simplified)"
376
+ msgstr ""
377
 
378
+ #: contact-form-7/includes/functions.php:172
379
+ msgid "Chinese (Traditional)"
380
+ msgstr ""
381
 
382
+ #: contact-form-7/includes/functions.php:173
383
+ msgid "Croatian"
384
+ msgstr ""
385
 
386
+ #: contact-form-7/includes/functions.php:174
387
+ msgid "Czech"
388
+ msgstr ""
389
 
390
+ #: contact-form-7/includes/functions.php:175
391
+ msgid "Danish"
392
+ msgstr ""
393
 
394
+ #: contact-form-7/includes/functions.php:176
395
+ msgid "Dutch"
396
+ msgstr ""
397
 
398
+ #: contact-form-7/includes/functions.php:177
399
+ msgid "English"
400
+ msgstr ""
401
 
402
+ #: contact-form-7/includes/functions.php:178
403
+ msgid "Estonian"
404
+ msgstr ""
405
 
406
+ #: contact-form-7/includes/functions.php:179
407
+ msgid "Finnish"
408
+ msgstr ""
409
 
410
+ #: contact-form-7/includes/functions.php:180
411
+ msgid "French"
412
+ msgstr ""
413
 
414
+ #: contact-form-7/includes/functions.php:181
415
+ msgid "Georgian"
416
+ msgstr ""
417
 
418
+ #: contact-form-7/includes/functions.php:182
419
+ msgid "German"
420
+ msgstr ""
421
 
422
+ #: contact-form-7/includes/functions.php:183
423
+ msgid "Greek"
424
+ msgstr ""
425
 
426
+ #: contact-form-7/includes/functions.php:184
427
+ msgid "Hebrew"
428
  msgstr ""
429
 
430
+ #: contact-form-7/includes/functions.php:185
431
+ msgid "Hindi"
432
+ msgstr ""
433
 
434
+ #: contact-form-7/includes/functions.php:186
435
+ msgid "Hungarian"
436
+ msgstr ""
437
 
438
+ #: contact-form-7/includes/functions.php:187
439
+ msgid "Indonesian"
440
+ msgstr ""
441
+
442
+ #: contact-form-7/includes/functions.php:188
443
+ msgid "Italian"
444
+ msgstr ""
445
+
446
+ #: contact-form-7/includes/functions.php:189
447
+ msgid "Japanese"
448
+ msgstr ""
449
+
450
+ #: contact-form-7/includes/functions.php:190
451
+ msgid "Korean"
452
+ msgstr ""
453
+
454
+ #: contact-form-7/includes/functions.php:191
455
+ msgid "Latvian"
456
+ msgstr ""
457
+
458
+ #: contact-form-7/includes/functions.php:192
459
+ msgid "Lithuanian"
460
+ msgstr ""
461
 
462
+ #: contact-form-7/includes/functions.php:193
463
+ msgid "Norwegian"
464
+ msgstr ""
465
+
466
+ #: contact-form-7/includes/functions.php:194
467
+ msgid "Persian"
468
+ msgstr ""
469
+
470
+ #: contact-form-7/includes/functions.php:195
471
+ msgid "Polish"
472
+ msgstr ""
473
+
474
+ #: contact-form-7/includes/functions.php:196
475
+ msgid "Portuguese"
476
+ msgstr ""
477
+
478
+ #: contact-form-7/includes/functions.php:197
479
+ msgid "Russian"
480
+ msgstr ""
481
+
482
+ #: contact-form-7/includes/functions.php:198
483
+ msgid "Romanian"
484
+ msgstr ""
485
+
486
+ #: contact-form-7/includes/functions.php:199
487
+ msgid "Serbian"
488
+ msgstr ""
489
+
490
+ #: contact-form-7/includes/functions.php:200
491
+ msgid "Slovak"
492
+ msgstr ""
493
+
494
+ #: contact-form-7/includes/functions.php:201
495
+ msgid "Slovene"
496
+ msgstr ""
497
+
498
+ #: contact-form-7/includes/functions.php:202
499
+ msgid "Spanish"
500
+ msgstr ""
501
+
502
+ #: contact-form-7/includes/functions.php:203
503
+ msgid "Swedish"
504
+ msgstr ""
505
+
506
+ #: contact-form-7/includes/functions.php:204
507
+ msgid "Thai"
508
+ msgstr ""
509
+
510
+ #: contact-form-7/includes/functions.php:205
511
+ msgid "Turkish"
512
+ msgstr ""
513
+
514
+ #: contact-form-7/includes/functions.php:206
515
+ msgid "Ukrainian"
516
+ msgstr ""
517
+
518
+ #: contact-form-7/includes/functions.php:207
519
+ msgid "Vietnamese"
520
+ msgstr ""
521
+
522
+ #: contact-form-7/modules/acceptance.php:94
523
+ msgid "Acceptance"
524
+ msgstr "Akceptácia"
525
+
526
+ #: contact-form-7/modules/acceptance.php:103
527
+ #: contact-form-7/modules/captcha.php:206
528
+ #: contact-form-7/modules/checkbox.php:196
529
+ #: contact-form-7/modules/file.php:234
530
+ msgid "Name"
531
+ msgstr "Meno"
532
+
533
+ #: contact-form-7/modules/acceptance.php:108
534
+ #: contact-form-7/modules/acceptance.php:111
535
+ #: contact-form-7/modules/captcha.php:213
536
+ #: contact-form-7/modules/captcha.php:216
537
+ #: contact-form-7/modules/captcha.php:221
538
+ #: contact-form-7/modules/captcha.php:224
539
+ #: contact-form-7/modules/captcha.php:228
540
+ #: contact-form-7/modules/captcha.php:239
541
+ #: contact-form-7/modules/captcha.php:242
542
+ #: contact-form-7/modules/captcha.php:247
543
+ #: contact-form-7/modules/captcha.php:250
544
+ #: contact-form-7/modules/checkbox.php:201
545
+ #: contact-form-7/modules/checkbox.php:204
546
+ #: contact-form-7/modules/file.php:239
547
+ #: contact-form-7/modules/file.php:242
548
+ #: contact-form-7/modules/file.php:247
549
+ #: contact-form-7/modules/file.php:250
550
+ msgid "optional"
551
+ msgstr "voliteľné"
552
+
553
+ #: contact-form-7/modules/acceptance.php:117
554
+ msgid "Make this checkbox checked by default?"
555
+ msgstr "Nastaviť toto políčko ako vybraté ?"
556
+
557
+ #: contact-form-7/modules/acceptance.php:118
558
+ msgid "Make this checkbox work inversely?"
559
+ msgstr "Nastaviť toto políčko, aby fungovalo inverzne ?"
560
+
561
+ #: contact-form-7/modules/acceptance.php:119
562
+ msgid "* That means visitor who accepts the term unchecks it."
563
+ msgstr "* To znamená, že užívateľ, ktorý súhlasil s podmienkami, zrušil svoj súhlas."
564
+
565
+ #: contact-form-7/modules/acceptance.php:124
566
+ #: contact-form-7/modules/captcha.php:255
567
+ #: contact-form-7/modules/checkbox.php:224
568
+ #: contact-form-7/modules/file.php:255
569
  msgid "Copy this code and paste it into the form left."
570
  msgstr "Skopírujte tento kód do formulára vľavo."
571
 
572
+ #: contact-form-7/modules/captcha.php:65
573
+ msgid "To use CAPTCHA, you need <a href=\"http://wordpress.org/extend/plugins/really-simple-captcha/\">Really Simple CAPTCHA</a> plugin installed."
574
+ msgstr "Pre používanie CAPTCHA nainštalujte <a href=\"http://wordpress.org/extend/plugins/really-simple-captcha/\">Really Simple CAPTCHA</a> modul."
575
+
576
+ #: contact-form-7/modules/captcha.php:181
577
+ msgid "The code that sender entered does not match the CAPTCHA"
578
+ msgstr "Užívateľom zadaný kód je iný ako CAPTCHA kód"
579
+
580
+ #: contact-form-7/modules/captcha.php:182
581
+ msgid "Your entered code is incorrect."
582
+ msgstr "Vami vložený kód je nesprávny."
583
+
584
+ #: contact-form-7/modules/captcha.php:192
585
+ msgid "CAPTCHA"
586
+ msgstr ""
587
+
588
+ #: contact-form-7/modules/captcha.php:203
589
+ msgid "Note: To use CAPTCHA, you need Really Simple CAPTCHA plugin installed."
590
+ msgstr "Poznámka: Aby ste mohli použiť CAPTCHA, tak musíte nainštalovať modul Really Simple CAPTCHA."
591
+
592
+ #: contact-form-7/modules/captcha.php:210
593
+ msgid "Image settings"
594
+ msgstr "Nastavenia obrázkov"
595
+
596
+ #: contact-form-7/modules/captcha.php:221
597
  msgid "Foreground color"
598
  msgstr "Farba popredia"
599
 
600
+ #: contact-form-7/modules/captcha.php:224
601
  msgid "Background color"
602
  msgstr "Farba pozadia"
603
 
604
+ #: contact-form-7/modules/captcha.php:228
605
  msgid "Image size"
606
  msgstr "Veľkosť obrázku"
607
 
608
+ #: contact-form-7/modules/captcha.php:229
609
  msgid "Small"
610
  msgstr "Malý"
611
 
612
+ #: contact-form-7/modules/captcha.php:230
613
  msgid "Medium"
614
  msgstr "Stredný"
615
 
616
+ #: contact-form-7/modules/captcha.php:231
617
  msgid "Large"
618
  msgstr "Veľký"
619
 
620
+ #: contact-form-7/modules/captcha.php:236
 
 
 
 
621
  msgid "Input field settings"
622
  msgstr "Nastavenia vstupných polí"
623
 
624
+ #: contact-form-7/modules/captcha.php:256
625
  msgid "For image"
626
  msgstr "Pre obrázok"
627
 
628
+ #: contact-form-7/modules/captcha.php:258
629
  msgid "For input field"
630
  msgstr "Pre vstupné pole"
631
 
632
+ #: contact-form-7/modules/captcha.php:288
633
+ #, php-format
634
+ msgid "This contact form contains CAPTCHA fields, but the temporary folder for the files (%s) does not exist or is not writable. You can create the folder or change its permission manually."
635
+ msgstr "Tento kontaktný formulár obsahuje CAPTCHA polia, ale dočasný adresár pre súbory (%s) neexistuje, alebo nie je možné do neho zapisovať. Môžete ho vytvoriť, alebo zmeniť jeho prístupové práva manuálne."
636
+
637
+ #: contact-form-7/modules/captcha.php:294
638
+ msgid "This contact form contains CAPTCHA fields, but the necessary libraries (GD and FreeType) are not available on your server."
639
+ msgstr "Tento kontaktný formulár obsahuje CAPTCHA polia, ale potrebné knižnice (GD a FreeType) nie sú dostnupné na Vašom serveri."
640
+
641
+ #: contact-form-7/modules/checkbox.php:169
642
+ msgid "Checkboxes"
643
+ msgstr "Zaškrtávacie políčka"
644
+
645
+ #: contact-form-7/modules/checkbox.php:172
646
+ msgid "Radio buttons"
647
+ msgstr "Tlačidlá voľby (radio buttons)"
648
+
649
+ #: contact-form-7/modules/checkbox.php:193
650
+ #: contact-form-7/modules/file.php:233
651
+ msgid "Required field?"
652
+ msgstr "Povinná položka ?"
653
+
654
+ #: contact-form-7/modules/checkbox.php:209
655
+ msgid "Choices"
656
+ msgstr "Možnosti"
657
+
658
+ #: contact-form-7/modules/checkbox.php:211
659
  msgid "* One choice per line."
660
  msgstr "* Jedna možnosť na riadok."
661
 
662
+ #: contact-form-7/modules/checkbox.php:215
663
+ msgid "Put a label first, a checkbox last?"
664
+ msgstr "Vložiť popis ako prvý a zaškrtávacie pole ako posledné ?"
665
 
666
+ #: contact-form-7/modules/checkbox.php:216
667
+ msgid "Wrap each item with <label> tag?"
668
+ msgstr "Vložiť každý prvok do značky <label> ?"
669
 
670
+ #: contact-form-7/modules/checkbox.php:218
671
+ msgid "Make checkboxes exclusive?"
672
+ msgstr "Nastaviť zaškrtávacie políčka ako exkluzívne ?"
673
 
674
+ #: contact-form-7/modules/checkbox.php:226
675
+ msgid "And, put this code into the Mail fields below."
676
+ msgstr "A vložte ho do políčok dole."
677
 
678
+ #: contact-form-7/modules/file.php:197
679
+ msgid "Uploading a file fails for any reason"
680
+ msgstr "Nahrávanie súboru z nejakého dôvodu zlyhalo"
681
 
682
+ #: contact-form-7/modules/file.php:198
683
+ msgid "Failed to upload file."
684
+ msgstr "Nahrávanie súboru zlyhalo."
685
 
686
+ #: contact-form-7/modules/file.php:202
687
+ msgid "Uploaded file is not allowed file type"
688
+ msgstr "Typ nahraného súboru nie je povolený"
689
 
690
+ #: contact-form-7/modules/file.php:203
691
+ msgid "This file type is not allowed."
692
+ msgstr "Tento typ súboru nie je povolený."
693
 
694
+ #: contact-form-7/modules/file.php:207
695
+ msgid "Uploaded file is too large"
696
+ msgstr "Nahraný súbor je príliš veľký"
697
 
698
+ #: contact-form-7/modules/file.php:208
699
+ msgid "This file is too large."
700
+ msgstr "Súbor je príliš veľký."
701
 
702
+ #: contact-form-7/modules/file.php:212
703
+ msgid "Uploading a file fails for PHP error"
704
+ msgstr "Nahrávanie súboru zlyhalo kvôli PHP chybe."
 
705
 
706
+ #: contact-form-7/modules/file.php:213
707
+ msgid "Failed to upload file. Error occurred."
708
+ msgstr "Nahrávanie súboru zlyhalo."
709
 
710
+ #: contact-form-7/modules/file.php:224
711
+ msgid "File upload"
712
+ msgstr "Nahratie súboru"
713
 
714
+ #: contact-form-7/modules/file.php:247
715
+ msgid "File size limit"
716
+ msgstr "Maximálna veľkosť súboru"
717
 
718
+ #: contact-form-7/modules/file.php:247
719
+ msgid "bytes"
720
+ msgstr "bajtov"
 
721
 
722
+ #: contact-form-7/modules/file.php:250
723
+ msgid "Acceptable file types"
724
+ msgstr "Povolené typy súboru"
725
 
726
+ #: contact-form-7/modules/file.php:257
727
+ msgid "And, put this code into the File Attachments field below."
728
+ msgstr "A vložte ho do políčka Prílohy."
729
 
730
+ #: contact-form-7/modules/file.php:282
731
+ #, php-format
732
+ msgid "This contact form contains file uploading fields, but the temporary folder for the files (%s) does not exist or is not writable. You can create the folder or change its permission manually."
733
+ msgstr "Tento formulár obsahuje polia pre nahratie súborov, ale dočasný adresár pre tieto súbory (%s) neexistuje, alebo nie je možné do neho zapisovať. Môžete ho vytvoriť, alebo zmeniť jeho prístupové práva manuálne."
734
 
735
+ #: contact-form-7/modules/icl.php:74
736
+ msgid "This contact form contains [icl] tags, but they are obsolete and no longer functioning on this version of Contact Form 7. <a href=\"http://contactform7.com/2009/12/25/contact-form-in-your-language/#Creating_contact_form_in_different_languages\" target=\"_blank\">There is a simpler way for creating contact forms of other languages</a> and you are recommended to use it."
737
+ msgstr "Tento kontaktný formulár obsahuje značky [icl], ale tie sú neplatné a nefunčné v tejto verzii Contact form 7. <a href=\"http://contactform7.com/2009/12/25/contact-form-in-your-language/#Creating_contact_form_in_different_languages\" target=\"_blank\">Existuje jednoduchšia cesta ako vytvárať kontaktné formuláre v iných jazykoch</a> a odporúča sa použiť ju."
738
 
739
+ #: contact-form-7/modules/quiz.php:164
740
+ msgid "Sender doesn't enter the correct answer to the quiz"
741
+ msgstr "Odosielateľ nevyplnil správnu odpoveď z kvízu"
742
 
743
+ #: contact-form-7/modules/quiz.php:165
744
+ msgid "Your answer is not correct."
745
+ msgstr "Vaša odpoveď je nesprávna."
746
 
747
+ #: contact-form-7/modules/quiz.php:175
748
+ msgid "Quiz"
749
+ msgstr "Kvíz"
750
 
751
+ #: contact-form-7/modules/quiz.php:205
752
+ msgid "Quizzes"
753
+ msgstr "Kvízy"
 
754
 
755
+ #: contact-form-7/modules/quiz.php:207
756
+ msgid "* quiz|answer (e.g. 1+1=?|2)"
757
+ msgstr "* kvíz|odpoveď (napr. 1+1=?|2)"
758
 
759
+ #: contact-form-7/modules/select.php:146
760
+ msgid "Drop-down menu"
761
+ msgstr "Rozbaľovacie menu"
762
 
763
+ #: contact-form-7/modules/select.php:175
764
+ msgid "Allow multiple selections?"
765
+ msgstr "Povoliť viacnásobný výber ?"
766
 
767
+ #: contact-form-7/modules/select.php:176
768
+ msgid "Insert a blank item as the first option?"
769
+ msgstr "Vložiť prázdnu prvú položku ?"
770
 
771
+ #: contact-form-7/modules/submit.php:55
772
+ msgid "Submit button"
773
+ msgstr "Porvrdzovacie tlačidlo"
774
 
775
+ #: contact-form-7/modules/submit.php:73
776
+ msgid "Label"
777
+ msgstr "Označenie"
778
 
779
+ #: contact-form-7/modules/text.php:129
780
+ msgid "Text field"
781
+ msgstr "Textové pole"
782
 
783
+ #: contact-form-7/modules/text.php:132
784
+ msgid "Email field"
785
+ msgstr "Email pole"
786
 
787
+ #: contact-form-7/modules/text.php:174
788
+ msgid "Akismet"
789
+ msgstr ""
790
+
791
+ #: contact-form-7/modules/text.php:176
792
+ msgid "This field requires author's name"
793
+ msgstr "Táto položka vyžaduje meno autora"
794
+
795
+ #: contact-form-7/modules/text.php:177
796
+ msgid "This field requires author's URL"
797
+ msgstr "Táto položka vyžaduje URL autora"
798
+
799
+ #: contact-form-7/modules/text.php:179
800
+ msgid "This field requires author's email address"
801
+ msgstr "Táto položka vyžaduje email adresu autora"
802
+
803
+ #: contact-form-7/modules/text.php:183
804
+ #: contact-form-7/modules/textarea.php:149
805
+ msgid "Default value"
806
+ msgstr "Predvolená hodnota"
807
+
808
+ #: contact-form-7/modules/textarea.php:118
809
+ msgid "Text area"
810
+ msgstr "Textové pole (viac riadkov)"
811
+
812
+ #~ msgid "(You need WordPress 2.7 or greater to use this feature)"
813
+ #~ msgstr ""
814
+ #~ "(Potrebujete Wordpress 2.7, alebo vyšší, aby ste mohli použiť túto "
815
+ #~ "funkciu)"
816
 
languages/wpcf7.pot CHANGED
@@ -2,8 +2,8 @@ msgid ""
2
  msgstr ""
3
  "Project-Id-Version: Contact Form 7\n"
4
  "Report-Msgid-Bugs-To: \n"
5
- "POT-Creation-Date: 2010-01-09 03:18+0900\n"
6
- "PO-Revision-Date: 2010-01-09 03:19+0900\n"
7
  "Last-Translator: Takayuki Miyoshi <takayukister@gmail.com>\n"
8
  "Language-Team: \n"
9
  "MIME-Version: 1.0\n"
@@ -15,110 +15,110 @@ msgstr ""
15
  "Plural-Forms: nplurals=1; plural=0;\n"
16
  "X-Poedit-SearchPath-0: contact-form-7\n"
17
 
18
- #: contact-form-7/admin/admin.php:117
19
  #: contact-form-7/admin/edit.php:17
20
  #: contact-form-7/admin/edit.php:30
21
  msgid "Contact Form 7"
22
  msgstr ""
23
 
24
- #: contact-form-7/admin/admin.php:117
25
  msgid "Contact"
26
  msgstr ""
27
 
28
- #: contact-form-7/admin/admin.php:120
29
  msgid "Edit Contact Forms"
30
  msgstr ""
31
 
32
- #: contact-form-7/admin/admin.php:120
33
  msgid "Edit"
34
  msgstr ""
35
 
36
- #: contact-form-7/admin/admin.php:159
37
  msgid "Generate Tag"
38
  msgstr ""
39
 
40
- #: contact-form-7/admin/admin.php:160
41
  msgid "Show"
42
  msgstr ""
43
 
44
- #: contact-form-7/admin/admin.php:161
45
  msgid "Hide"
46
  msgstr ""
47
 
48
- #: contact-form-7/admin/admin.php:257
49
  msgid "Contact form"
50
  msgstr ""
51
 
52
- #: contact-form-7/admin/admin.php:276
53
  msgid "Settings"
54
  msgstr ""
55
 
56
- #: contact-form-7/admin/admin.php:287
57
  msgid "http://contactform7.com/"
58
  msgstr ""
59
 
60
- #: contact-form-7/admin/admin.php:288
61
  msgid "Contactform7.com"
62
  msgstr ""
63
 
64
- #: contact-form-7/admin/admin.php:289
65
  msgid "http://contactform7.com/docs/"
66
  msgstr ""
67
 
68
- #: contact-form-7/admin/admin.php:290
69
  msgid "Docs"
70
  msgstr ""
71
 
72
- #: contact-form-7/admin/admin.php:291
73
  msgid "http://contactform7.com/faq/"
74
  msgstr ""
75
 
76
- #: contact-form-7/admin/admin.php:292
77
  msgid "FAQ"
78
  msgstr ""
79
 
80
- #: contact-form-7/admin/admin.php:293
81
  msgid "http://contactform7.com/support/"
82
  msgstr ""
83
 
84
- #: contact-form-7/admin/admin.php:294
85
  msgid "Support"
86
  msgstr ""
87
 
88
- #: contact-form-7/admin/admin.php:305
89
  msgid "Contact form created."
90
  msgstr ""
91
 
92
- #: contact-form-7/admin/admin.php:308
93
  msgid "Contact form saved."
94
  msgstr ""
95
 
96
- #: contact-form-7/admin/admin.php:311
97
  msgid "Contact form deleted."
98
  msgstr ""
99
 
100
- #: contact-form-7/admin/admin.php:314
101
  msgid "Database table created."
102
  msgstr ""
103
 
104
- #: contact-form-7/admin/admin.php:317
105
  msgid "Failed to create database table."
106
  msgstr ""
107
 
108
- #: contact-form-7/admin/admin.php:350
109
  msgid "Contact Form 7 needs your support. Please donate today."
110
  msgstr ""
111
 
112
- #: contact-form-7/admin/admin.php:351
113
- msgid "Is this plugin useful for you? If you like it, please help the developer."
114
  msgstr ""
115
 
116
- #: contact-form-7/admin/admin.php:352
117
- msgid "Your contribution is needed for making this plugin better."
118
  msgstr ""
119
 
120
- #: contact-form-7/admin/admin.php:353
121
- msgid "Developing a plugin and providing user support is really hard work. Please help."
122
  msgstr ""
123
 
124
  #: contact-form-7/admin/edit.php:9
@@ -197,7 +197,7 @@ msgstr ""
197
 
198
  #: contact-form-7/admin/edit.php:172
199
  #: contact-form-7/admin/edit.php:239
200
- #: contact-form-7/includes/functions.php:73
201
  msgid "Message body:"
202
  msgstr ""
203
 
@@ -235,7 +235,7 @@ msgstr ""
235
  msgid "(select language)"
236
  msgstr ""
237
 
238
- #: contact-form-7/includes/classes.php:568
239
  msgid "Untitled"
240
  msgstr ""
241
 
@@ -292,244 +292,248 @@ msgstr ""
292
  msgid "Please fill the required field."
293
  msgstr ""
294
 
295
- #: contact-form-7/includes/functions.php:45
296
  msgid "Your Name"
297
  msgstr ""
298
 
299
- #: contact-form-7/includes/functions.php:45
300
- #: contact-form-7/includes/functions.php:47
301
  msgid "(required)"
302
  msgstr ""
303
 
304
- #: contact-form-7/includes/functions.php:47
305
  msgid "Your Email"
306
  msgstr ""
307
 
308
- #: contact-form-7/includes/functions.php:49
309
  msgid "Subject"
310
  msgstr ""
311
 
312
- #: contact-form-7/includes/functions.php:51
313
  msgid "Your Message"
314
  msgstr ""
315
 
316
- #: contact-form-7/includes/functions.php:53
317
  msgid "Send"
318
  msgstr ""
319
 
320
- #: contact-form-7/includes/functions.php:60
321
  #, php-format
322
  msgid "From: %s"
323
  msgstr ""
324
 
325
- #: contact-form-7/includes/functions.php:61
326
  #, php-format
327
  msgid "Subject: %s"
328
  msgstr ""
329
 
330
- #: contact-form-7/includes/functions.php:62
331
  msgid "Message Body:"
332
  msgstr ""
333
 
334
- #: contact-form-7/includes/functions.php:63
335
- #: contact-form-7/includes/functions.php:74
336
  #, php-format
337
  msgid "This mail is sent via contact form on %1$s %2$s"
338
  msgstr ""
339
 
340
- #: contact-form-7/includes/functions.php:163
341
  msgid "Afrikaans"
342
  msgstr ""
343
 
344
- #: contact-form-7/includes/functions.php:164
345
  msgid "Albanian"
346
  msgstr ""
347
 
348
- #: contact-form-7/includes/functions.php:165
349
  msgid "Arabic"
350
  msgstr ""
351
 
352
- #: contact-form-7/includes/functions.php:166
353
  msgid "Bangla"
354
  msgstr ""
355
 
356
- #: contact-form-7/includes/functions.php:167
357
  msgid "Bosnian"
358
  msgstr ""
359
 
360
- #: contact-form-7/includes/functions.php:168
361
  msgid "Brazilian Portuguese"
362
  msgstr ""
363
 
364
- #: contact-form-7/includes/functions.php:169
365
  msgid "Bulgarian"
366
  msgstr ""
367
 
368
- #: contact-form-7/includes/functions.php:170
369
  msgid "Catalan"
370
  msgstr ""
371
 
372
- #: contact-form-7/includes/functions.php:171
373
  msgid "Chinese (Simplified)"
374
  msgstr ""
375
 
376
- #: contact-form-7/includes/functions.php:172
377
  msgid "Chinese (Traditional)"
378
  msgstr ""
379
 
380
- #: contact-form-7/includes/functions.php:173
381
  msgid "Croatian"
382
  msgstr ""
383
 
384
- #: contact-form-7/includes/functions.php:174
385
  msgid "Czech"
386
  msgstr ""
387
 
388
- #: contact-form-7/includes/functions.php:175
389
  msgid "Danish"
390
  msgstr ""
391
 
392
- #: contact-form-7/includes/functions.php:176
393
  msgid "Dutch"
394
  msgstr ""
395
 
396
- #: contact-form-7/includes/functions.php:177
397
  msgid "English"
398
  msgstr ""
399
 
400
- #: contact-form-7/includes/functions.php:178
401
  msgid "Estonian"
402
  msgstr ""
403
 
404
- #: contact-form-7/includes/functions.php:179
405
  msgid "Finnish"
406
  msgstr ""
407
 
408
- #: contact-form-7/includes/functions.php:180
409
  msgid "French"
410
  msgstr ""
411
 
412
- #: contact-form-7/includes/functions.php:181
413
  msgid "Georgian"
414
  msgstr ""
415
 
416
- #: contact-form-7/includes/functions.php:182
417
  msgid "German"
418
  msgstr ""
419
 
420
- #: contact-form-7/includes/functions.php:183
421
  msgid "Greek"
422
  msgstr ""
423
 
424
- #: contact-form-7/includes/functions.php:184
425
  msgid "Hebrew"
426
  msgstr ""
427
 
428
- #: contact-form-7/includes/functions.php:185
429
  msgid "Hindi"
430
  msgstr ""
431
 
432
- #: contact-form-7/includes/functions.php:186
433
  msgid "Hungarian"
434
  msgstr ""
435
 
436
- #: contact-form-7/includes/functions.php:187
437
  msgid "Indonesian"
438
  msgstr ""
439
 
440
- #: contact-form-7/includes/functions.php:188
441
  msgid "Italian"
442
  msgstr ""
443
 
444
- #: contact-form-7/includes/functions.php:189
445
  msgid "Japanese"
446
  msgstr ""
447
 
448
- #: contact-form-7/includes/functions.php:190
449
  msgid "Korean"
450
  msgstr ""
451
 
452
- #: contact-form-7/includes/functions.php:191
453
  msgid "Latvian"
454
  msgstr ""
455
 
456
- #: contact-form-7/includes/functions.php:192
457
  msgid "Lithuanian"
458
  msgstr ""
459
 
460
- #: contact-form-7/includes/functions.php:193
 
 
 
 
461
  msgid "Norwegian"
462
  msgstr ""
463
 
464
- #: contact-form-7/includes/functions.php:194
465
  msgid "Persian"
466
  msgstr ""
467
 
468
- #: contact-form-7/includes/functions.php:195
469
  msgid "Polish"
470
  msgstr ""
471
 
472
- #: contact-form-7/includes/functions.php:196
473
  msgid "Portuguese"
474
  msgstr ""
475
 
476
- #: contact-form-7/includes/functions.php:197
477
  msgid "Russian"
478
  msgstr ""
479
 
480
- #: contact-form-7/includes/functions.php:198
481
  msgid "Romanian"
482
  msgstr ""
483
 
484
- #: contact-form-7/includes/functions.php:199
485
  msgid "Serbian"
486
  msgstr ""
487
 
488
- #: contact-form-7/includes/functions.php:200
489
  msgid "Slovak"
490
  msgstr ""
491
 
492
- #: contact-form-7/includes/functions.php:201
493
  msgid "Slovene"
494
  msgstr ""
495
 
496
- #: contact-form-7/includes/functions.php:202
497
  msgid "Spanish"
498
  msgstr ""
499
 
500
- #: contact-form-7/includes/functions.php:203
501
  msgid "Swedish"
502
  msgstr ""
503
 
504
- #: contact-form-7/includes/functions.php:204
505
  msgid "Thai"
506
  msgstr ""
507
 
508
- #: contact-form-7/includes/functions.php:205
509
  msgid "Turkish"
510
  msgstr ""
511
 
512
- #: contact-form-7/includes/functions.php:206
513
  msgid "Ukrainian"
514
  msgstr ""
515
 
516
- #: contact-form-7/includes/functions.php:207
517
  msgid "Vietnamese"
518
  msgstr ""
519
 
520
- #: contact-form-7/modules/acceptance.php:94
521
  msgid "Acceptance"
522
  msgstr ""
523
 
524
- #: contact-form-7/modules/acceptance.php:103
525
  #: contact-form-7/modules/captcha.php:206
526
- #: contact-form-7/modules/checkbox.php:196
527
  #: contact-form-7/modules/file.php:234
528
  msgid "Name"
529
  msgstr ""
530
 
531
- #: contact-form-7/modules/acceptance.php:108
532
- #: contact-form-7/modules/acceptance.php:111
533
  #: contact-form-7/modules/captcha.php:213
534
  #: contact-form-7/modules/captcha.php:216
535
  #: contact-form-7/modules/captcha.php:221
@@ -539,8 +543,8 @@ msgstr ""
539
  #: contact-form-7/modules/captcha.php:242
540
  #: contact-form-7/modules/captcha.php:247
541
  #: contact-form-7/modules/captcha.php:250
542
- #: contact-form-7/modules/checkbox.php:201
543
- #: contact-form-7/modules/checkbox.php:204
544
  #: contact-form-7/modules/file.php:239
545
  #: contact-form-7/modules/file.php:242
546
  #: contact-form-7/modules/file.php:247
@@ -548,21 +552,21 @@ msgstr ""
548
  msgid "optional"
549
  msgstr ""
550
 
551
- #: contact-form-7/modules/acceptance.php:117
552
  msgid "Make this checkbox checked by default?"
553
  msgstr ""
554
 
555
- #: contact-form-7/modules/acceptance.php:118
556
  msgid "Make this checkbox work inversely?"
557
  msgstr ""
558
 
559
- #: contact-form-7/modules/acceptance.php:119
560
  msgid "* That means visitor who accepts the term unchecks it."
561
  msgstr ""
562
 
563
- #: contact-form-7/modules/acceptance.php:124
564
  #: contact-form-7/modules/captcha.php:255
565
- #: contact-form-7/modules/checkbox.php:224
566
  #: contact-form-7/modules/file.php:255
567
  msgid "Copy this code and paste it into the form left."
568
  msgstr ""
@@ -636,40 +640,40 @@ msgstr ""
636
  msgid "This contact form contains CAPTCHA fields, but the necessary libraries (GD and FreeType) are not available on your server."
637
  msgstr ""
638
 
639
- #: contact-form-7/modules/checkbox.php:169
640
  msgid "Checkboxes"
641
  msgstr ""
642
 
643
- #: contact-form-7/modules/checkbox.php:172
644
  msgid "Radio buttons"
645
  msgstr ""
646
 
647
- #: contact-form-7/modules/checkbox.php:193
648
  #: contact-form-7/modules/file.php:233
649
  msgid "Required field?"
650
  msgstr ""
651
 
652
- #: contact-form-7/modules/checkbox.php:209
653
  msgid "Choices"
654
  msgstr ""
655
 
656
- #: contact-form-7/modules/checkbox.php:211
657
  msgid "* One choice per line."
658
  msgstr ""
659
 
660
- #: contact-form-7/modules/checkbox.php:215
661
  msgid "Put a label first, a checkbox last?"
662
  msgstr ""
663
 
664
- #: contact-form-7/modules/checkbox.php:216
665
  msgid "Wrap each item with <label> tag?"
666
  msgstr ""
667
 
668
- #: contact-form-7/modules/checkbox.php:218
669
  msgid "Make checkboxes exclusive?"
670
  msgstr ""
671
 
672
- #: contact-form-7/modules/checkbox.php:226
673
  msgid "And, put this code into the Mail fields below."
674
  msgstr ""
675
 
2
  msgstr ""
3
  "Project-Id-Version: Contact Form 7\n"
4
  "Report-Msgid-Bugs-To: \n"
5
+ "POT-Creation-Date: 2010-02-24 08:35+0900\n"
6
+ "PO-Revision-Date: 2010-02-24 08:35+0900\n"
7
  "Last-Translator: Takayuki Miyoshi <takayukister@gmail.com>\n"
8
  "Language-Team: \n"
9
  "MIME-Version: 1.0\n"
15
  "Plural-Forms: nplurals=1; plural=0;\n"
16
  "X-Poedit-SearchPath-0: contact-form-7\n"
17
 
18
+ #: contact-form-7/admin/admin.php:120
19
  #: contact-form-7/admin/edit.php:17
20
  #: contact-form-7/admin/edit.php:30
21
  msgid "Contact Form 7"
22
  msgstr ""
23
 
24
+ #: contact-form-7/admin/admin.php:120
25
  msgid "Contact"
26
  msgstr ""
27
 
28
+ #: contact-form-7/admin/admin.php:123
29
  msgid "Edit Contact Forms"
30
  msgstr ""
31
 
32
+ #: contact-form-7/admin/admin.php:123
33
  msgid "Edit"
34
  msgstr ""
35
 
36
+ #: contact-form-7/admin/admin.php:162
37
  msgid "Generate Tag"
38
  msgstr ""
39
 
40
+ #: contact-form-7/admin/admin.php:163
41
  msgid "Show"
42
  msgstr ""
43
 
44
+ #: contact-form-7/admin/admin.php:164
45
  msgid "Hide"
46
  msgstr ""
47
 
48
+ #: contact-form-7/admin/admin.php:265
49
  msgid "Contact form"
50
  msgstr ""
51
 
52
+ #: contact-form-7/admin/admin.php:284
53
  msgid "Settings"
54
  msgstr ""
55
 
56
+ #: contact-form-7/admin/admin.php:295
57
  msgid "http://contactform7.com/"
58
  msgstr ""
59
 
60
+ #: contact-form-7/admin/admin.php:296
61
  msgid "Contactform7.com"
62
  msgstr ""
63
 
64
+ #: contact-form-7/admin/admin.php:297
65
  msgid "http://contactform7.com/docs/"
66
  msgstr ""
67
 
68
+ #: contact-form-7/admin/admin.php:298
69
  msgid "Docs"
70
  msgstr ""
71
 
72
+ #: contact-form-7/admin/admin.php:299
73
  msgid "http://contactform7.com/faq/"
74
  msgstr ""
75
 
76
+ #: contact-form-7/admin/admin.php:300
77
  msgid "FAQ"
78
  msgstr ""
79
 
80
+ #: contact-form-7/admin/admin.php:301
81
  msgid "http://contactform7.com/support/"
82
  msgstr ""
83
 
84
+ #: contact-form-7/admin/admin.php:302
85
  msgid "Support"
86
  msgstr ""
87
 
88
+ #: contact-form-7/admin/admin.php:316
89
  msgid "Contact form created."
90
  msgstr ""
91
 
92
+ #: contact-form-7/admin/admin.php:319
93
  msgid "Contact form saved."
94
  msgstr ""
95
 
96
+ #: contact-form-7/admin/admin.php:322
97
  msgid "Contact form deleted."
98
  msgstr ""
99
 
100
+ #: contact-form-7/admin/admin.php:325
101
  msgid "Database table created."
102
  msgstr ""
103
 
104
+ #: contact-form-7/admin/admin.php:328
105
  msgid "Failed to create database table."
106
  msgstr ""
107
 
108
+ #: contact-form-7/admin/admin.php:361
109
  msgid "Contact Form 7 needs your support. Please donate today."
110
  msgstr ""
111
 
112
+ #: contact-form-7/admin/admin.php:362
113
+ msgid "Your contribution is needed for making this plugin better."
114
  msgstr ""
115
 
116
+ #: contact-form-7/admin/admin.php:368
117
+ msgid "http://contactform7.com/donate/"
118
  msgstr ""
119
 
120
+ #: contact-form-7/admin/admin.php:368
121
+ msgid "Donate"
122
  msgstr ""
123
 
124
  #: contact-form-7/admin/edit.php:9
197
 
198
  #: contact-form-7/admin/edit.php:172
199
  #: contact-form-7/admin/edit.php:239
200
+ #: contact-form-7/includes/functions.php:78
201
  msgid "Message body:"
202
  msgstr ""
203
 
235
  msgid "(select language)"
236
  msgstr ""
237
 
238
+ #: contact-form-7/includes/classes.php:569
239
  msgid "Untitled"
240
  msgstr ""
241
 
292
  msgid "Please fill the required field."
293
  msgstr ""
294
 
295
+ #: contact-form-7/includes/functions.php:46
296
  msgid "Your Name"
297
  msgstr ""
298
 
299
+ #: contact-form-7/includes/functions.php:46
300
+ #: contact-form-7/includes/functions.php:48
301
  msgid "(required)"
302
  msgstr ""
303
 
304
+ #: contact-form-7/includes/functions.php:48
305
  msgid "Your Email"
306
  msgstr ""
307
 
308
+ #: contact-form-7/includes/functions.php:50
309
  msgid "Subject"
310
  msgstr ""
311
 
312
+ #: contact-form-7/includes/functions.php:52
313
  msgid "Your Message"
314
  msgstr ""
315
 
316
+ #: contact-form-7/includes/functions.php:54
317
  msgid "Send"
318
  msgstr ""
319
 
320
+ #: contact-form-7/includes/functions.php:62
321
  #, php-format
322
  msgid "From: %s"
323
  msgstr ""
324
 
325
+ #: contact-form-7/includes/functions.php:63
326
  #, php-format
327
  msgid "Subject: %s"
328
  msgstr ""
329
 
330
+ #: contact-form-7/includes/functions.php:64
331
  msgid "Message Body:"
332
  msgstr ""
333
 
334
+ #: contact-form-7/includes/functions.php:65
335
+ #: contact-form-7/includes/functions.php:79
336
  #, php-format
337
  msgid "This mail is sent via contact form on %1$s %2$s"
338
  msgstr ""
339
 
340
+ #: contact-form-7/includes/functions.php:168
341
  msgid "Afrikaans"
342
  msgstr ""
343
 
344
+ #: contact-form-7/includes/functions.php:169
345
  msgid "Albanian"
346
  msgstr ""
347
 
348
+ #: contact-form-7/includes/functions.php:170
349
  msgid "Arabic"
350
  msgstr ""
351
 
352
+ #: contact-form-7/includes/functions.php:171
353
  msgid "Bangla"
354
  msgstr ""
355
 
356
+ #: contact-form-7/includes/functions.php:172
357
  msgid "Bosnian"
358
  msgstr ""
359
 
360
+ #: contact-form-7/includes/functions.php:173
361
  msgid "Brazilian Portuguese"
362
  msgstr ""
363
 
364
+ #: contact-form-7/includes/functions.php:174
365
  msgid "Bulgarian"
366
  msgstr ""
367
 
368
+ #: contact-form-7/includes/functions.php:175
369
  msgid "Catalan"
370
  msgstr ""
371
 
372
+ #: contact-form-7/includes/functions.php:176
373
  msgid "Chinese (Simplified)"
374
  msgstr ""
375
 
376
+ #: contact-form-7/includes/functions.php:177
377
  msgid "Chinese (Traditional)"
378
  msgstr ""
379
 
380
+ #: contact-form-7/includes/functions.php:178
381
  msgid "Croatian"
382
  msgstr ""
383
 
384
+ #: contact-form-7/includes/functions.php:179
385
  msgid "Czech"
386
  msgstr ""
387
 
388
+ #: contact-form-7/includes/functions.php:180
389
  msgid "Danish"
390
  msgstr ""
391
 
392
+ #: contact-form-7/includes/functions.php:181
393
  msgid "Dutch"
394
  msgstr ""
395
 
396
+ #: contact-form-7/includes/functions.php:182
397
  msgid "English"
398
  msgstr ""
399
 
400
+ #: contact-form-7/includes/functions.php:183
401
  msgid "Estonian"
402
  msgstr ""
403
 
404
+ #: contact-form-7/includes/functions.php:184
405
  msgid "Finnish"
406
  msgstr ""
407
 
408
+ #: contact-form-7/includes/functions.php:185
409
  msgid "French"
410
  msgstr ""
411
 
412
+ #: contact-form-7/includes/functions.php:186
413
  msgid "Georgian"
414
  msgstr ""
415
 
416
+ #: contact-form-7/includes/functions.php:187
417
  msgid "German"
418
  msgstr ""
419
 
420
+ #: contact-form-7/includes/functions.php:188
421
  msgid "Greek"
422
  msgstr ""
423
 
424
+ #: contact-form-7/includes/functions.php:189
425
  msgid "Hebrew"
426
  msgstr ""
427
 
428
+ #: contact-form-7/includes/functions.php:190
429
  msgid "Hindi"
430
  msgstr ""
431
 
432
+ #: contact-form-7/includes/functions.php:191
433
  msgid "Hungarian"
434
  msgstr ""
435
 
436
+ #: contact-form-7/includes/functions.php:192
437
  msgid "Indonesian"
438
  msgstr ""
439
 
440
+ #: contact-form-7/includes/functions.php:193
441
  msgid "Italian"
442
  msgstr ""
443
 
444
+ #: contact-form-7/includes/functions.php:194
445
  msgid "Japanese"
446
  msgstr ""
447
 
448
+ #: contact-form-7/includes/functions.php:195
449
  msgid "Korean"
450
  msgstr ""
451
 
452
+ #: contact-form-7/includes/functions.php:196
453
  msgid "Latvian"
454
  msgstr ""
455
 
456
+ #: contact-form-7/includes/functions.php:197
457
  msgid "Lithuanian"
458
  msgstr ""
459
 
460
+ #: contact-form-7/includes/functions.php:198
461
+ msgid "Malayalam"
462
+ msgstr ""
463
+
464
+ #: contact-form-7/includes/functions.php:199
465
  msgid "Norwegian"
466
  msgstr ""
467
 
468
+ #: contact-form-7/includes/functions.php:200
469
  msgid "Persian"
470
  msgstr ""
471
 
472
+ #: contact-form-7/includes/functions.php:201
473
  msgid "Polish"
474
  msgstr ""
475
 
476
+ #: contact-form-7/includes/functions.php:202
477
  msgid "Portuguese"
478
  msgstr ""
479
 
480
+ #: contact-form-7/includes/functions.php:203
481
  msgid "Russian"
482
  msgstr ""
483
 
484
+ #: contact-form-7/includes/functions.php:204
485
  msgid "Romanian"
486
  msgstr ""
487
 
488
+ #: contact-form-7/includes/functions.php:205
489
  msgid "Serbian"
490
  msgstr ""
491
 
492
+ #: contact-form-7/includes/functions.php:206
493
  msgid "Slovak"
494
  msgstr ""
495
 
496
+ #: contact-form-7/includes/functions.php:207
497
  msgid "Slovene"
498
  msgstr ""
499
 
500
+ #: contact-form-7/includes/functions.php:208
501
  msgid "Spanish"
502
  msgstr ""
503
 
504
+ #: contact-form-7/includes/functions.php:209
505
  msgid "Swedish"
506
  msgstr ""
507
 
508
+ #: contact-form-7/includes/functions.php:210
509
  msgid "Thai"
510
  msgstr ""
511
 
512
+ #: contact-form-7/includes/functions.php:211
513
  msgid "Turkish"
514
  msgstr ""
515
 
516
+ #: contact-form-7/includes/functions.php:212
517
  msgid "Ukrainian"
518
  msgstr ""
519
 
520
+ #: contact-form-7/includes/functions.php:213
521
  msgid "Vietnamese"
522
  msgstr ""
523
 
524
+ #: contact-form-7/modules/acceptance.php:96
525
  msgid "Acceptance"
526
  msgstr ""
527
 
528
+ #: contact-form-7/modules/acceptance.php:105
529
  #: contact-form-7/modules/captcha.php:206
530
+ #: contact-form-7/modules/checkbox.php:198
531
  #: contact-form-7/modules/file.php:234
532
  msgid "Name"
533
  msgstr ""
534
 
535
+ #: contact-form-7/modules/acceptance.php:110
536
+ #: contact-form-7/modules/acceptance.php:113
537
  #: contact-form-7/modules/captcha.php:213
538
  #: contact-form-7/modules/captcha.php:216
539
  #: contact-form-7/modules/captcha.php:221
543
  #: contact-form-7/modules/captcha.php:242
544
  #: contact-form-7/modules/captcha.php:247
545
  #: contact-form-7/modules/captcha.php:250
546
+ #: contact-form-7/modules/checkbox.php:203
547
+ #: contact-form-7/modules/checkbox.php:206
548
  #: contact-form-7/modules/file.php:239
549
  #: contact-form-7/modules/file.php:242
550
  #: contact-form-7/modules/file.php:247
552
  msgid "optional"
553
  msgstr ""
554
 
555
+ #: contact-form-7/modules/acceptance.php:119
556
  msgid "Make this checkbox checked by default?"
557
  msgstr ""
558
 
559
+ #: contact-form-7/modules/acceptance.php:120
560
  msgid "Make this checkbox work inversely?"
561
  msgstr ""
562
 
563
+ #: contact-form-7/modules/acceptance.php:121
564
  msgid "* That means visitor who accepts the term unchecks it."
565
  msgstr ""
566
 
567
+ #: contact-form-7/modules/acceptance.php:126
568
  #: contact-form-7/modules/captcha.php:255
569
+ #: contact-form-7/modules/checkbox.php:226
570
  #: contact-form-7/modules/file.php:255
571
  msgid "Copy this code and paste it into the form left."
572
  msgstr ""
640
  msgid "This contact form contains CAPTCHA fields, but the necessary libraries (GD and FreeType) are not available on your server."
641
  msgstr ""
642
 
643
+ #: contact-form-7/modules/checkbox.php:171
644
  msgid "Checkboxes"
645
  msgstr ""
646
 
647
+ #: contact-form-7/modules/checkbox.php:174
648
  msgid "Radio buttons"
649
  msgstr ""
650
 
651
+ #: contact-form-7/modules/checkbox.php:195
652
  #: contact-form-7/modules/file.php:233
653
  msgid "Required field?"
654
  msgstr ""
655
 
656
+ #: contact-form-7/modules/checkbox.php:211
657
  msgid "Choices"
658
  msgstr ""
659
 
660
+ #: contact-form-7/modules/checkbox.php:213
661
  msgid "* One choice per line."
662
  msgstr ""
663
 
664
+ #: contact-form-7/modules/checkbox.php:217
665
  msgid "Put a label first, a checkbox last?"
666
  msgstr ""
667
 
668
+ #: contact-form-7/modules/checkbox.php:218
669
  msgid "Wrap each item with <label> tag?"
670
  msgstr ""
671
 
672
+ #: contact-form-7/modules/checkbox.php:220
673
  msgid "Make checkboxes exclusive?"
674
  msgstr ""
675
 
676
+ #: contact-form-7/modules/checkbox.php:228
677
  msgid "And, put this code into the Mail fields below."
678
  msgstr ""
679
 
modules/acceptance.php CHANGED
@@ -47,8 +47,10 @@ function wpcf7_acceptance_shortcode_handler( $tag ) {
47
 
48
  $default_on = (bool) preg_grep( '/^default:on$/i', $options );
49
 
50
- if ( WPCF7_LOAD_JS )
51
  $onclick = ' onclick="wpcf7ToggleSubmit(this.form);"';
 
 
52
 
53
  $checked = $default_on ? ' checked="checked"' : '';
54
 
47
 
48
  $default_on = (bool) preg_grep( '/^default:on$/i', $options );
49
 
50
+ if ( wpcf7_script_is() )
51
  $onclick = ' onclick="wpcf7ToggleSubmit(this.form);"';
52
+ else
53
+ $onclick = '';
54
 
55
  $checked = $default_on ? ' checked="checked"' : '';
56
 
modules/checkbox.php CHANGED
@@ -71,8 +71,10 @@ function wpcf7_checkbox_shortcode_handler( $tag ) {
71
 
72
  $html = '';
73
 
74
- if ( preg_match( '/^checkbox[*]?$/', $type ) && ! $multiple && WPCF7_LOAD_JS )
75
  $onclick = ' onclick="wpcf7ExclusiveCheckbox(this);"';
 
 
76
 
77
  $input_type = rtrim( $type, '*' );
78
 
71
 
72
  $html = '';
73
 
74
+ if ( preg_match( '/^checkbox[*]?$/', $type ) && ! $multiple && wpcf7_script_is() )
75
  $onclick = ' onclick="wpcf7ExclusiveCheckbox(this);"';
76
+ else
77
+ $onclick = '';
78
 
79
  $input_type = rtrim( $type, '*' );
80
 
modules/submit.php CHANGED
@@ -34,14 +34,14 @@ function wpcf7_submit_shortcode_handler( $tag ) {
34
  if ( $class_att )
35
  $atts .= ' class="' . trim( $class_att ) . '"';
36
 
37
- $value = $values[0];
38
  if ( empty( $value ) )
39
  $value = __( 'Send', 'wpcf7' );
40
 
41
- $ajax_loader_image_url = wpcf7_plugin_url( 'images/ajax-loader.gif' );
42
-
43
  $html = '<input type="submit" value="' . esc_attr( $value ) . '"' . $atts . ' />';
44
- $html .= ' <img class="ajax-loader" style="visibility: hidden;" alt="ajax loader" src="' . $ajax_loader_image_url . '" />';
 
 
45
 
46
  return $html;
47
  }
34
  if ( $class_att )
35
  $atts .= ' class="' . trim( $class_att ) . '"';
36
 
37
+ $value = isset( $values[0] ) ? $values[0] : '';
38
  if ( empty( $value ) )
39
  $value = __( 'Send', 'wpcf7' );
40
 
 
 
41
  $html = '<input type="submit" value="' . esc_attr( $value ) . '"' . $atts . ' />';
42
+
43
+ if ( wpcf7_script_is() )
44
+ $html .= ' <img class="ajax-loader" style="visibility: hidden;" alt="ajax loader" src="' . wpcf7_plugin_url( 'images/ajax-loader.gif' ) . '" />';
45
 
46
  return $html;
47
  }
modules/text.php CHANGED
@@ -70,7 +70,7 @@ function wpcf7_text_shortcode_handler( $tag ) {
70
  else
71
  $value = stripslashes_deep( $_POST[$name] );
72
  } else {
73
- $value = $values[0];
74
  }
75
 
76
  $html = '<input type="text" name="' . $name . '" value="' . esc_attr( $value ) . '"' . $atts . ' />';
70
  else
71
  $value = stripslashes_deep( $_POST[$name] );
72
  } else {
73
+ $value = isset( $values[0] ) ? $values[0] : '';
74
  }
75
 
76
  $html = '<input type="text" name="' . $name . '" value="' . esc_attr( $value ) . '"' . $atts . ' />';
modules/textarea.php CHANGED
@@ -68,7 +68,7 @@ function wpcf7_textarea_shortcode_handler( $tag ) {
68
  else
69
  $value = stripslashes_deep( $_POST[$name] );
70
  } else {
71
- $value = $values[0];
72
 
73
  if ( ! empty( $content ) )
74
  $value = $content;
68
  else
69
  $value = stripslashes_deep( $_POST[$name] );
70
  } else {
71
+ $value = isset( $values[0] ) ? $values[0] : '';
72
 
73
  if ( ! empty( $content ) )
74
  $value = $content;
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.1.1
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.1.1' );
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.1.2
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.1.2' );
29
 
30
  if ( ! defined( 'WPCF7_PLUGIN_BASENAME' ) )
31
  define( 'WPCF7_PLUGIN_BASENAME', plugin_basename( __FILE__ ) );