Contact Form 7 - Version 2.4

Version Description

  • Moved PO files to the external branch. They were space-consuming and enlarging the plugin package.
  • Added an option for size attribute of <input type="file">.
  • Added 'acceptance_as_validation' additional setting. This setting allows you to use acceptance checkbox as object of validation.
  • Added watermark support to text, email and textarea tags.
  • Use the latest jQuery Form plugin instead of the old one which WordPress bundles.

Releases

=

Download this release

Release Info

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

Code changes from version 2.3.1 to 2.4

Files changed (69) hide show
  1. admin/scripts.js +95 -91
  2. includes/classes.php +57 -5
  3. includes/controller.php +17 -9
  4. includes/functions.php +34 -8
  5. includes/shortcodes.php +19 -2
  6. jquery.form.js +781 -0
  7. languages/readme.txt +9 -0
  8. languages/wpcf7-af.po +0 -809
  9. languages/wpcf7-ar.po +0 -349
  10. languages/wpcf7-bg_BG.po +0 -289
  11. languages/wpcf7-bn_BD.po +0 -437
  12. languages/wpcf7-bs.po +0 -427
  13. languages/wpcf7-ca.po +0 -516
  14. languages/wpcf7-cs_CZ.po +0 -504
  15. languages/wpcf7-da_DK.mo +0 -0
  16. languages/wpcf7-da_DK.po +0 -842
  17. languages/wpcf7-de_DE.po +0 -844
  18. languages/wpcf7-el.po +0 -468
  19. languages/wpcf7-es_ES.po +0 -437
  20. languages/wpcf7-et.po +0 -819
  21. languages/wpcf7-fa_IR.po +0 -511
  22. languages/wpcf7-fi.po +0 -838
  23. languages/wpcf7-fr_FR.po +0 -977
  24. languages/wpcf7-gl_ES.po +0 -836
  25. languages/wpcf7-he_IL.po +0 -509
  26. languages/wpcf7-hi_IN.po +0 -804
  27. languages/wpcf7-hr.po +0 -427
  28. languages/wpcf7-hu_HU.po +0 -823
  29. languages/wpcf7-id_ID.po +0 -308
  30. languages/wpcf7-it_IT.po +0 -856
  31. languages/wpcf7-ja.mo +0 -0
  32. languages/wpcf7-ja.po +0 -843
  33. languages/wpcf7-ka_GE.po +0 -213
  34. languages/wpcf7-ko_KR.po +0 -446
  35. languages/wpcf7-lt_LT.po +0 -488
  36. languages/wpcf7-lv.po +0 -432
  37. languages/wpcf7-ml_IN.po +0 -813
  38. languages/wpcf7-nb_NO.po +0 -266
  39. languages/wpcf7-nl_NL.po +0 -469
  40. languages/wpcf7-pl_PL.po +0 -500
  41. languages/wpcf7-pt_BR.po +0 -837
  42. languages/wpcf7-pt_PT.po +0 -305
  43. languages/wpcf7-ro_RO.po +0 -407
  44. languages/wpcf7-ru_RU.po +0 -213
  45. languages/wpcf7-sk.po +0 -816
  46. languages/wpcf7-sl_SI.po +0 -213
  47. languages/wpcf7-sq.po +0 -305
  48. languages/wpcf7-sr_RS.po +0 -858
  49. languages/wpcf7-sv_SE.po +0 -443
  50. languages/wpcf7-th.po +0 -819
  51. languages/wpcf7-tr_TR.po +0 -502
  52. languages/wpcf7-uk.po +0 -850
  53. languages/wpcf7-vi.po +0 -405
  54. languages/wpcf7-zh_CN.po +0 -306
  55. languages/wpcf7-zh_TW.po +0 -833
  56. languages/wpcf7.pot +145 -136
  57. modules/acceptance.php +57 -11
  58. modules/captcha.php +7 -16
  59. modules/checkbox.php +21 -22
  60. modules/file.php +18 -17
  61. modules/quiz.php +3 -15
  62. modules/response.php +4 -4
  63. modules/select.php +6 -12
  64. modules/text.php +25 -20
  65. modules/textarea.php +23 -20
  66. readme.txt +12 -20
  67. scripts.js +185 -140
  68. styles.css +4 -0
  69. wp-contact-form-7.php +2 -2
admin/scripts.js CHANGED
@@ -1,112 +1,116 @@
1
- jQuery(document).ready(function() {
2
- try {
3
- jQuery.extend(jQuery.tgPanes, _wpcf7.tagGenerators);
4
- jQuery('#taggenerator').tagGenerator(_wpcf7L10n.generateTag,
5
- { dropdownIconUrl: _wpcf7.pluginUrl + '/images/dropdown.gif' });
6
-
7
- jQuery('input#wpcf7-title:enabled').css({
8
- cursor: 'pointer'
9
- });
10
-
11
- jQuery('input#wpcf7-title').mouseover(function() {
12
- jQuery(this).not('.focus').css({
13
- 'background-color': '#ffffdd'
 
 
 
 
 
 
 
 
 
14
  });
15
- });
16
 
17
- jQuery('input#wpcf7-title').mouseout(function() {
18
- jQuery(this).css({
19
- 'background-color': '#fff'
 
 
 
 
 
 
20
  });
21
- });
22
-
23
- jQuery('input#wpcf7-title').focus(function() {
24
- jQuery(this).addClass('focus');
25
- jQuery(this).css({
26
- cursor: 'text',
27
- color: '#333',
28
- border: '1px solid #777',
29
- font: 'normal 13px Verdana, Arial, Helvetica, sans-serif',
30
- 'background-color': '#fff'
31
  });
32
- });
33
-
34
- jQuery('input#wpcf7-title').blur(function() {
35
- jQuery(this).removeClass('focus');
36
- jQuery(this).css({
37
- cursor: 'pointer',
38
- color: '#555',
39
- border: 'none',
40
- font: 'bold 20px serif',
41
- 'background-color': '#fff'
42
  });
43
- });
44
 
45
- jQuery('input#wpcf7-title').change(function() {
46
  updateTag();
47
- });
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();
68
-
69
- jQuery('#message-fields-toggle-switch').click(function() {
70
- if (jQuery('#message-fields').is(':hidden')) {
71
- jQuery('#message-fields').slideDown('fast');
72
- jQuery('#message-fields-toggle-switch').text(_wpcf7L10n.hide);
73
  } else {
74
- jQuery('#message-fields').hide('fast');
75
- jQuery('#message-fields-toggle-switch').text(_wpcf7L10n.show);
76
  }
77
- });
78
-
79
- if ('' == jQuery.trim(jQuery('#wpcf7-additional-settings').text())) {
80
- jQuery('#additional-settings-fields-toggle-switch').text(_wpcf7L10n.show);
81
- jQuery('#additional-settings-fields').hide();
82
- } else {
83
- jQuery('#additional-settings-fields-toggle-switch').text(_wpcf7L10n.hide);
84
- jQuery('#additional-settings-fields').show();
85
- }
86
 
87
- jQuery('#additional-settings-fields-toggle-switch').click(function() {
88
- if (jQuery('#additional-settings-fields').is(':hidden')) {
89
- jQuery('#additional-settings-fields').slideDown('fast');
90
- jQuery('#additional-settings-fields-toggle-switch').text(_wpcf7L10n.hide);
91
- } else {
92
- jQuery('#additional-settings-fields').hide('fast');
93
- jQuery('#additional-settings-fields-toggle-switch').text(_wpcf7L10n.show);
94
- }
95
- });
96
 
97
- } catch (e) {
98
- }
99
- });
100
 
101
- function updateTag() {
102
- var title = jQuery('input#wpcf7-title').val();
103
 
104
- if (title)
105
- title = title.replace(/["'\[\]]/g, '');
106
 
107
- jQuery('input#wpcf7-title').val(title);
108
- var current = jQuery('input#wpcf7-id').val();
109
- var tag = '[contact-form ' + current + ' "' + title + '"]';
 
 
 
110
 
111
- jQuery('input#contact-form-anchor-text').val(tag);
112
- }
1
+ (function($) {
2
+
3
+ $(function() {
4
+ try {
5
+ $.extend($.tgPanes, _wpcf7.tagGenerators);
6
+ $('#taggenerator').tagGenerator(_wpcf7L10n.generateTag,
7
+ { dropdownIconUrl: _wpcf7.pluginUrl + '/images/dropdown.gif' });
8
+
9
+ $('input#wpcf7-title:enabled').css({
10
+ cursor: 'pointer'
11
+ });
12
+
13
+ $('input#wpcf7-title').mouseover(function() {
14
+ $(this).not('.focus').css({
15
+ 'background-color': '#ffffdd'
16
+ });
17
+ });
18
+
19
+ $('input#wpcf7-title').mouseout(function() {
20
+ $(this).css({
21
+ 'background-color': '#fff'
22
+ });
23
  });
 
24
 
25
+ $('input#wpcf7-title').focus(function() {
26
+ $(this).addClass('focus');
27
+ $(this).css({
28
+ cursor: 'text',
29
+ color: '#333',
30
+ border: '1px solid #777',
31
+ font: 'normal 13px Verdana, Arial, Helvetica, sans-serif',
32
+ 'background-color': '#fff'
33
+ });
34
  });
35
+
36
+ $('input#wpcf7-title').blur(function() {
37
+ $(this).removeClass('focus');
38
+ $(this).css({
39
+ cursor: 'pointer',
40
+ color: '#555',
41
+ border: 'none',
42
+ font: 'bold 20px serif',
43
+ 'background-color': '#fff'
44
+ });
45
  });
46
+
47
+ $('input#wpcf7-title').change(function() {
48
+ updateTag();
 
 
 
 
 
 
 
49
  });
 
50
 
 
51
  updateTag();
 
52
 
53
+ if ($.support.objectAll) {
54
+ if (! $('#wpcf7-mail-2-active').is(':checked'))
55
+ $('#mail-2-fields').hide();
56
+
57
+ $('#wpcf7-mail-2-active').click(function() {
58
+ if ($('#mail-2-fields').is(':hidden')
59
+ && $('#wpcf7-mail-2-active').is(':checked')) {
60
+ $('#mail-2-fields').slideDown('fast');
61
+ } else if ($('#mail-2-fields').is(':visible')
62
+ && $('#wpcf7-mail-2-active').not(':checked')) {
63
+ $('#mail-2-fields').slideUp('fast');
64
+ }
65
+ });
66
+ }
67
 
68
+ $('#message-fields-toggle-switch').text(_wpcf7L10n.show);
69
+ $('#message-fields').hide();
 
70
 
71
+ $('#message-fields-toggle-switch').click(function() {
72
+ if ($('#message-fields').is(':hidden')) {
73
+ $('#message-fields').slideDown('fast');
74
+ $('#message-fields-toggle-switch').text(_wpcf7L10n.hide);
75
+ } else {
76
+ $('#message-fields').hide('fast');
77
+ $('#message-fields-toggle-switch').text(_wpcf7L10n.show);
78
  }
79
  });
 
80
 
81
+ if ('' == $.trim($('#wpcf7-additional-settings').text())) {
82
+ $('#additional-settings-fields-toggle-switch').text(_wpcf7L10n.show);
83
+ $('#additional-settings-fields').hide();
 
 
 
 
84
  } else {
85
+ $('#additional-settings-fields-toggle-switch').text(_wpcf7L10n.hide);
86
+ $('#additional-settings-fields').show();
87
  }
 
 
 
 
 
 
 
 
 
88
 
89
+ $('#additional-settings-fields-toggle-switch').click(function() {
90
+ if ($('#additional-settings-fields').is(':hidden')) {
91
+ $('#additional-settings-fields').slideDown('fast');
92
+ $('#additional-settings-fields-toggle-switch').text(_wpcf7L10n.hide);
93
+ } else {
94
+ $('#additional-settings-fields').hide('fast');
95
+ $('#additional-settings-fields-toggle-switch').text(_wpcf7L10n.show);
96
+ }
97
+ });
98
 
99
+ } catch (e) {
100
+ }
101
+ });
102
 
103
+ function updateTag() {
104
+ var title = $('input#wpcf7-title').val();
105
 
106
+ if (title)
107
+ title = title.replace(/["'\[\]]/g, '');
108
 
109
+ $('input#wpcf7-title').val(title);
110
+ var current = $('input#wpcf7-id').val();
111
+ var tag = '[contact-form ' + current + ' "' + title + '"]';
112
+
113
+ $('input#contact-form-anchor-text').val(tag);
114
+ }
115
 
116
+ })(jQuery);
 
includes/classes.php CHANGED
@@ -33,6 +33,20 @@ class WPCF7_ContactForm {
33
  return false;
34
  }
35
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
36
  /* Generating Form HTML */
37
 
38
  function form_html() {
@@ -46,12 +60,11 @@ class WPCF7_ContactForm {
46
  $url .= '#' . $this->unit_tag;
47
 
48
  $url = apply_filters( 'wpcf7_form_action_url', $url );
49
- $url = esc_url_raw( $url );
50
-
51
  $enctype = apply_filters( 'wpcf7_form_enctype', '' );
 
52
 
53
- $form .= '<form action="' . $url
54
- . '" method="post" class="wpcf7-form"' . $enctype . '>' . "\n";
55
  $form .= '<div style="display: none;">' . "\n";
56
  $form .= '<input type="hidden" name="_wpcf7" value="'
57
  . esc_attr( $this->id ) . '" />' . "\n";
@@ -122,8 +135,10 @@ class WPCF7_ContactForm {
122
 
123
  $form = $this->form;
124
 
125
- if ( WPCF7_AUTOP )
 
126
  $form = wpcf7_autop( $form );
 
127
 
128
  $form = $wpcf7_shortcode_manager->do_shortcode( $form );
129
  $this->scanned_form_tags = $wpcf7_shortcode_manager->scanned_tags;
@@ -584,4 +599,41 @@ function wpcf7_contact_form_default_pack( $locale = null ) {
584
  return $contact_form;
585
  }
586
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
587
  ?>
33
  return false;
34
  }
35
 
36
+ function clear_post() {
37
+ $fes = $this->form_scan_shortcode();
38
+
39
+ foreach ( $fes as $fe ) {
40
+ $name = $fe['name'];
41
+
42
+ if ( empty( $name ) )
43
+ continue;
44
+
45
+ if ( isset( $_POST[$name] ) )
46
+ unset( $_POST[$name] );
47
+ }
48
+ }
49
+
50
  /* Generating Form HTML */
51
 
52
  function form_html() {
60
  $url .= '#' . $this->unit_tag;
61
 
62
  $url = apply_filters( 'wpcf7_form_action_url', $url );
 
 
63
  $enctype = apply_filters( 'wpcf7_form_enctype', '' );
64
+ $class = apply_filters( 'wpcf7_form_class_attr', 'wpcf7-form' );
65
 
66
+ $form .= '<form action="' . esc_url_raw( $url ) . '" method="post"'
67
+ . ' class="' . esc_attr( $class ) . '"' . $enctype . '>' . "\n";
68
  $form .= '<div style="display: none;">' . "\n";
69
  $form .= '<input type="hidden" name="_wpcf7" value="'
70
  . esc_attr( $this->id ) . '" />' . "\n";
135
 
136
  $form = $this->form;
137
 
138
+ if ( WPCF7_AUTOP ) {
139
+ $form = $wpcf7_shortcode_manager->normalize_shortcode( $form );
140
  $form = wpcf7_autop( $form );
141
+ }
142
 
143
  $form = $wpcf7_shortcode_manager->do_shortcode( $form );
144
  $this->scanned_form_tags = $wpcf7_shortcode_manager->scanned_tags;
599
  return $contact_form;
600
  }
601
 
602
+ function wpcf7_get_current_contact_form() {
603
+ global $wpcf7_contact_form;
604
+
605
+ if ( ! is_a( $wpcf7_contact_form, 'WPCF7_ContactForm' ) )
606
+ return null;
607
+
608
+ return $wpcf7_contact_form;
609
+ }
610
+
611
+ function wpcf7_is_posted() {
612
+ if ( ! $contact_form = wpcf7_get_current_contact_form() )
613
+ return false;
614
+
615
+ return $contact_form->is_posted();
616
+ }
617
+
618
+ function wpcf7_get_validation_error( $name ) {
619
+ if ( ! $contact_form = wpcf7_get_current_contact_form() )
620
+ return '';
621
+
622
+ return $contact_form->validation_error( $name );
623
+ }
624
+
625
+ function wpcf7_get_message( $status ) {
626
+ if ( ! $contact_form = wpcf7_get_current_contact_form() )
627
+ return '';
628
+
629
+ return $contact_form->message( $status );
630
+ }
631
+
632
+ function wpcf7_scan_shortcode( $cond = null ) {
633
+ if ( ! $contact_form = wpcf7_get_current_contact_form() )
634
+ return null;
635
+
636
+ return $contact_form->form_scan_shortcode( $cond );
637
+ }
638
+
639
  ?>
includes/controller.php CHANGED
@@ -63,19 +63,19 @@ function wpcf7_ajax_json_echo() {
63
  'message' => $reason );
64
  }
65
 
66
- $items['message'] = $wpcf7_contact_form->message( 'validation_error' );
67
  $items['invalids'] = $invalids;
68
 
69
  } elseif ( ! $wpcf7_contact_form->accepted() ) { // Not accepted terms
70
- $items['message'] = $wpcf7_contact_form->message( 'accept_terms' );
71
 
72
  } elseif ( $wpcf7_contact_form->akismet() ) { // Spam!
73
- $items['message'] = $wpcf7_contact_form->message( 'akismet_says_spam' );
74
  $items['spam'] = true;
75
 
76
  } elseif ( $wpcf7_contact_form->mail() ) {
77
  $items['mailSent'] = true;
78
- $items['message'] = $wpcf7_contact_form->message( 'mail_sent_ok' );
79
 
80
  $on_sent_ok = $wpcf7_contact_form->additional_setting( 'on_sent_ok', false );
81
  if ( ! empty( $on_sent_ok ) ) {
@@ -88,7 +88,7 @@ function wpcf7_ajax_json_echo() {
88
  do_action_ref_array( 'wpcf7_mail_sent', array( &$wpcf7_contact_form ) );
89
 
90
  } else {
91
- $items['message'] = $wpcf7_contact_form->message( 'mail_sent_ng' );
92
  }
93
 
94
  // remove upload files
@@ -125,15 +125,17 @@ function wpcf7_process_nonajax_submitting() {
125
  if ( ! $validation['valid'] ) {
126
  $_POST['_wpcf7_validation_errors'] = array( 'id' => $id, 'messages' => $validation['reason'] );
127
  } elseif ( ! $wpcf7_contact_form->accepted() ) { // Not accepted terms
128
- $_POST['_wpcf7_mail_sent'] = array( 'id' => $id, 'ok' => false, 'message' => $wpcf7_contact_form->message( 'accept_terms' ) );
129
  } elseif ( $wpcf7_contact_form->akismet() ) { // Spam!
130
- $_POST['_wpcf7_mail_sent'] = array( 'id' => $id, 'ok' => false, 'message' => $wpcf7_contact_form->message( 'akismet_says_spam' ), 'spam' => true );
131
  } elseif ( $wpcf7_contact_form->mail() ) {
132
- $_POST['_wpcf7_mail_sent'] = array( 'id' => $id, 'ok' => true, 'message' => $wpcf7_contact_form->message( 'mail_sent_ok' ) );
133
 
134
  do_action_ref_array( 'wpcf7_mail_sent', array( &$wpcf7_contact_form ) );
 
 
135
  } else {
136
- $_POST['_wpcf7_mail_sent'] = array( 'id' => $id, 'ok' => false, 'message' => $wpcf7_contact_form->message( 'mail_sent_ng' ) );
137
  }
138
 
139
  // remove upload files
@@ -244,6 +246,12 @@ if ( WPCF7_LOAD_JS )
244
  add_action( 'wp_print_scripts', 'wpcf7_enqueue_scripts' );
245
 
246
  function wpcf7_enqueue_scripts() {
 
 
 
 
 
 
247
  $in_footer = true;
248
  if ( 'header' === WPCF7_LOAD_JS )
249
  $in_footer = false;
63
  'message' => $reason );
64
  }
65
 
66
+ $items['message'] = wpcf7_get_message( 'validation_error' );
67
  $items['invalids'] = $invalids;
68
 
69
  } elseif ( ! $wpcf7_contact_form->accepted() ) { // Not accepted terms
70
+ $items['message'] = wpcf7_get_message( 'accept_terms' );
71
 
72
  } elseif ( $wpcf7_contact_form->akismet() ) { // Spam!
73
+ $items['message'] = wpcf7_get_message( 'akismet_says_spam' );
74
  $items['spam'] = true;
75
 
76
  } elseif ( $wpcf7_contact_form->mail() ) {
77
  $items['mailSent'] = true;
78
+ $items['message'] = wpcf7_get_message( 'mail_sent_ok' );
79
 
80
  $on_sent_ok = $wpcf7_contact_form->additional_setting( 'on_sent_ok', false );
81
  if ( ! empty( $on_sent_ok ) ) {
88
  do_action_ref_array( 'wpcf7_mail_sent', array( &$wpcf7_contact_form ) );
89
 
90
  } else {
91
+ $items['message'] = wpcf7_get_message( 'mail_sent_ng' );
92
  }
93
 
94
  // remove upload files
125
  if ( ! $validation['valid'] ) {
126
  $_POST['_wpcf7_validation_errors'] = array( 'id' => $id, 'messages' => $validation['reason'] );
127
  } elseif ( ! $wpcf7_contact_form->accepted() ) { // Not accepted terms
128
+ $_POST['_wpcf7_mail_sent'] = array( 'id' => $id, 'ok' => false, 'message' => wpcf7_get_message( 'accept_terms' ) );
129
  } elseif ( $wpcf7_contact_form->akismet() ) { // Spam!
130
+ $_POST['_wpcf7_mail_sent'] = array( 'id' => $id, 'ok' => false, 'message' => wpcf7_get_message( 'akismet_says_spam' ), 'spam' => true );
131
  } elseif ( $wpcf7_contact_form->mail() ) {
132
+ $_POST['_wpcf7_mail_sent'] = array( 'id' => $id, 'ok' => true, 'message' => wpcf7_get_message( 'mail_sent_ok' ) );
133
 
134
  do_action_ref_array( 'wpcf7_mail_sent', array( &$wpcf7_contact_form ) );
135
+
136
+ $wpcf7_contact_form->clear_post();
137
  } else {
138
+ $_POST['_wpcf7_mail_sent'] = array( 'id' => $id, 'ok' => false, 'message' => wpcf7_get_message( 'mail_sent_ng' ) );
139
  }
140
 
141
  // remove upload files
246
  add_action( 'wp_print_scripts', 'wpcf7_enqueue_scripts' );
247
 
248
  function wpcf7_enqueue_scripts() {
249
+ // jquery.form.js originally bundled with WordPress is out of date and deprecated
250
+ // so we need to deregister it and re-register the latest one
251
+ wp_deregister_script( 'jquery-form' );
252
+ wp_register_script( 'jquery-form', wpcf7_plugin_url( 'jquery.form.js' ),
253
+ array( 'jquery' ), '2.47', true );
254
+
255
  $in_footer = true;
256
  if ( 'header' === WPCF7_LOAD_JS )
257
  $in_footer = false;
includes/functions.php CHANGED
@@ -96,32 +96,58 @@ function wpcf7_default_messages_template() {
96
  }
97
 
98
  function wpcf7_upload_dir( $type = false ) {
 
 
99
  $siteurl = get_option( 'siteurl' );
100
  $upload_path = trim( get_option( 'upload_path' ) );
101
- if ( empty( $upload_path ) )
 
 
 
102
  $dir = WP_CONTENT_DIR . '/uploads';
103
- else
104
  $dir = $upload_path;
105
 
106
- $dir = path_join( ABSPATH, $dir );
 
 
 
 
 
 
107
 
108
  if ( ! $url = get_option( 'upload_url_path' ) ) {
109
- if ( empty( $upload_path ) || $upload_path == $dir )
 
 
110
  $url = WP_CONTENT_URL . '/uploads';
111
  else
112
  $url = trailingslashit( $siteurl ) . $upload_path;
113
  }
114
 
115
- if ( defined( 'UPLOADS' ) ) {
 
116
  $dir = ABSPATH . UPLOADS;
117
  $url = trailingslashit( $siteurl ) . UPLOADS;
118
  }
119
 
 
 
 
 
 
 
 
 
 
 
 
120
  if ( 'dir' == $type )
121
- return $dir;
122
  if ( 'url' == $type )
123
- return $url;
124
- return array( 'dir' => $dir, 'url' => $url );
 
125
  }
126
 
127
  function wpcf7_l10n() {
96
  }
97
 
98
  function wpcf7_upload_dir( $type = false ) {
99
+ global $switched;
100
+
101
  $siteurl = get_option( 'siteurl' );
102
  $upload_path = trim( get_option( 'upload_path' ) );
103
+
104
+ $main_override = is_multisite() && defined( 'MULTISITE' ) && is_main_site();
105
+
106
+ if ( empty( $upload_path ) ) {
107
  $dir = WP_CONTENT_DIR . '/uploads';
108
+ } else {
109
  $dir = $upload_path;
110
 
111
+ if ( 'wp-content/uploads' == $upload_path ) {
112
+ $dir = WP_CONTENT_DIR . '/uploads';
113
+ } elseif ( 0 !== strpos( $dir, ABSPATH ) ) {
114
+ // $dir is absolute, $upload_path is (maybe) relative to ABSPATH
115
+ $dir = path_join( ABSPATH, $dir );
116
+ }
117
+ }
118
 
119
  if ( ! $url = get_option( 'upload_url_path' ) ) {
120
+ if ( empty( $upload_path )
121
+ || ( 'wp-content/uploads' == $upload_path )
122
+ || ( $upload_path == $dir ) )
123
  $url = WP_CONTENT_URL . '/uploads';
124
  else
125
  $url = trailingslashit( $siteurl ) . $upload_path;
126
  }
127
 
128
+ if ( defined( 'UPLOADS' ) && ! $main_override
129
+ && ( ! isset( $switched ) || $switched === false ) ) {
130
  $dir = ABSPATH . UPLOADS;
131
  $url = trailingslashit( $siteurl ) . UPLOADS;
132
  }
133
 
134
+ if ( is_multisite() && ! $main_override
135
+ && ( ! isset( $switched ) || $switched === false ) ) {
136
+
137
+ if ( defined( 'BLOGUPLOADDIR' ) )
138
+ $dir = untrailingslashit( BLOGUPLOADDIR );
139
+
140
+ $url = str_replace( UPLOADS, 'files', $url );
141
+ }
142
+
143
+ $uploads = apply_filters( 'wpcf7_upload_dir', array( 'dir' => $dir, 'url' => $url ) );
144
+
145
  if ( 'dir' == $type )
146
+ return $uploads['dir'];
147
  if ( 'url' == $type )
148
+ return $uploads['url'];
149
+
150
+ return $uploads;
151
  }
152
 
153
  function wpcf7_l10n() {
includes/shortcodes.php CHANGED
@@ -21,16 +21,33 @@ class WPCF7_ShortcodeManager {
21
  unset( $this->shortcode_tags[$tag] );
22
  }
23
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
24
  function do_shortcode( $content, $exec = true ) {
25
  $this->exec = (bool) $exec;
26
  $this->scanned_tags = array();
27
 
28
- if ( empty( $this->shortcode_tags ) || ! is_array( $this->shortcode_tags) )
29
  return $content;
30
 
31
  $pattern = $this->get_shortcode_regex();
32
  return preg_replace_callback( '/' . $pattern . '/s',
33
- array(&$this, 'do_shortcode_tag'), $content );
34
  }
35
 
36
  function scan_shortcode( $content ) {
21
  unset( $this->shortcode_tags[$tag] );
22
  }
23
 
24
+ function normalize_shortcode( $content ) {
25
+ if ( empty( $this->shortcode_tags ) || ! is_array( $this->shortcode_tags ) )
26
+ return $content;
27
+
28
+ $pattern = $this->get_shortcode_regex();
29
+ return preg_replace_callback( '/' . $pattern . '/s',
30
+ array( &$this, 'normalize_space_cb' ), $content );
31
+ }
32
+
33
+ function normalize_space_cb( $m ) {
34
+ // allow [[foo]] syntax for escaping a tag
35
+ if ( $m[1] == '[' && $m[6] == ']' )
36
+ return $m[0];
37
+
38
+ return preg_replace( '/\s+/', ' ', $m[0] );
39
+ }
40
+
41
  function do_shortcode( $content, $exec = true ) {
42
  $this->exec = (bool) $exec;
43
  $this->scanned_tags = array();
44
 
45
+ if ( empty( $this->shortcode_tags ) || ! is_array( $this->shortcode_tags ) )
46
  return $content;
47
 
48
  $pattern = $this->get_shortcode_regex();
49
  return preg_replace_callback( '/' . $pattern . '/s',
50
+ array( &$this, 'do_shortcode_tag' ), $content );
51
  }
52
 
53
  function scan_shortcode( $content ) {
jquery.form.js ADDED
@@ -0,0 +1,781 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ /*!
2
+ * jQuery Form Plugin
3
+ * version: 2.47 (04-SEP-2010)
4
+ * @requires jQuery v1.3.2 or later
5
+ *
6
+ * Examples and documentation at: http://malsup.com/jquery/form/
7
+ * Dual licensed under the MIT and GPL licenses:
8
+ * http://www.opensource.org/licenses/mit-license.php
9
+ * http://www.gnu.org/licenses/gpl.html
10
+ */
11
+ ;(function($) {
12
+
13
+ /*
14
+ Usage Note:
15
+ -----------
16
+ Do not use both ajaxSubmit and ajaxForm on the same form. These
17
+ functions are intended to be exclusive. Use ajaxSubmit if you want
18
+ to bind your own submit handler to the form. For example,
19
+
20
+ $(document).ready(function() {
21
+ $('#myForm').bind('submit', function() {
22
+ $(this).ajaxSubmit({
23
+ target: '#output'
24
+ });
25
+ return false; // <-- important!
26
+ });
27
+ });
28
+
29
+ Use ajaxForm when you want the plugin to manage all the event binding
30
+ for you. For example,
31
+
32
+ $(document).ready(function() {
33
+ $('#myForm').ajaxForm({
34
+ target: '#output'
35
+ });
36
+ });
37
+
38
+ When using ajaxForm, the ajaxSubmit function will be invoked for you
39
+ at the appropriate time.
40
+ */
41
+
42
+ /**
43
+ * ajaxSubmit() provides a mechanism for immediately submitting
44
+ * an HTML form using AJAX.
45
+ */
46
+ $.fn.ajaxSubmit = function(options) {
47
+ // fast fail if nothing selected (http://dev.jquery.com/ticket/2752)
48
+ if (!this.length) {
49
+ log('ajaxSubmit: skipping submit process - no element selected');
50
+ return this;
51
+ }
52
+
53
+ if (typeof options == 'function') {
54
+ options = { success: options };
55
+ }
56
+
57
+ var url = $.trim(this.attr('action'));
58
+ if (url) {
59
+ // clean url (don't include hash vaue)
60
+ url = (url.match(/^([^#]+)/)||[])[1];
61
+ }
62
+ url = url || window.location.href || '';
63
+
64
+ options = $.extend(true, {
65
+ url: url,
66
+ type: this.attr('method') || 'GET',
67
+ iframeSrc: /^https/i.test(window.location.href || '') ? 'javascript:false' : 'about:blank'
68
+ }, options);
69
+
70
+ // hook for manipulating the form data before it is extracted;
71
+ // convenient for use with rich editors like tinyMCE or FCKEditor
72
+ var veto = {};
73
+ this.trigger('form-pre-serialize', [this, options, veto]);
74
+ if (veto.veto) {
75
+ log('ajaxSubmit: submit vetoed via form-pre-serialize trigger');
76
+ return this;
77
+ }
78
+
79
+ // provide opportunity to alter form data before it is serialized
80
+ if (options.beforeSerialize && options.beforeSerialize(this, options) === false) {
81
+ log('ajaxSubmit: submit aborted via beforeSerialize callback');
82
+ return this;
83
+ }
84
+
85
+ var n,v,a = this.formToArray(options.semantic);
86
+ if (options.data) {
87
+ options.extraData = options.data;
88
+ for (n in options.data) {
89
+ if(options.data[n] instanceof Array) {
90
+ for (var k in options.data[n]) {
91
+ a.push( { name: n, value: options.data[n][k] } );
92
+ }
93
+ }
94
+ else {
95
+ v = options.data[n];
96
+ v = $.isFunction(v) ? v() : v; // if value is fn, invoke it
97
+ a.push( { name: n, value: v } );
98
+ }
99
+ }
100
+ }
101
+
102
+ // give pre-submit callback an opportunity to abort the submit
103
+ if (options.beforeSubmit && options.beforeSubmit(a, this, options) === false) {
104
+ log('ajaxSubmit: submit aborted via beforeSubmit callback');
105
+ return this;
106
+ }
107
+
108
+ // fire vetoable 'validate' event
109
+ this.trigger('form-submit-validate', [a, this, options, veto]);
110
+ if (veto.veto) {
111
+ log('ajaxSubmit: submit vetoed via form-submit-validate trigger');
112
+ return this;
113
+ }
114
+
115
+ var q = $.param(a);
116
+
117
+ if (options.type.toUpperCase() == 'GET') {
118
+ options.url += (options.url.indexOf('?') >= 0 ? '&' : '?') + q;
119
+ options.data = null; // data is null for 'get'
120
+ }
121
+ else {
122
+ options.data = q; // data is the query string for 'post'
123
+ }
124
+
125
+ var $form = this, callbacks = [];
126
+ if (options.resetForm) {
127
+ callbacks.push(function() { $form.resetForm(); });
128
+ }
129
+ if (options.clearForm) {
130
+ callbacks.push(function() { $form.clearForm(); });
131
+ }
132
+
133
+ // perform a load on the target only if dataType is not provided
134
+ if (!options.dataType && options.target) {
135
+ var oldSuccess = options.success || function(){};
136
+ callbacks.push(function(data) {
137
+ var fn = options.replaceTarget ? 'replaceWith' : 'html';
138
+ $(options.target)[fn](data).each(oldSuccess, arguments);
139
+ });
140
+ }
141
+ else if (options.success) {
142
+ callbacks.push(options.success);
143
+ }
144
+
145
+ options.success = function(data, status, xhr) { // jQuery 1.4+ passes xhr as 3rd arg
146
+ var context = options.context || options; // jQuery 1.4+ supports scope context
147
+ for (var i=0, max=callbacks.length; i < max; i++) {
148
+ callbacks[i].apply(context, [data, status, xhr || $form, $form]);
149
+ }
150
+ };
151
+
152
+ // are there files to upload?
153
+ var fileInputs = $('input:file', this).length > 0;
154
+ var mp = 'multipart/form-data';
155
+ var multipart = ($form.attr('enctype') == mp || $form.attr('encoding') == mp);
156
+
157
+ // options.iframe allows user to force iframe mode
158
+ // 06-NOV-09: now defaulting to iframe mode if file input is detected
159
+ if (options.iframe !== false && (fileInputs || options.iframe || multipart)) {
160
+ // hack to fix Safari hang (thanks to Tim Molendijk for this)
161
+ // see: http://groups.google.com/group/jquery-dev/browse_thread/thread/36395b7ab510dd5d
162
+ if (options.closeKeepAlive) {
163
+ $.get(options.closeKeepAlive, fileUpload);
164
+ }
165
+ else {
166
+ fileUpload();
167
+ }
168
+ }
169
+ else {
170
+ $.ajax(options);
171
+ }
172
+
173
+ // fire 'notify' event
174
+ this.trigger('form-submit-notify', [this, options]);
175
+ return this;
176
+
177
+
178
+ // private function for handling file uploads (hat tip to YAHOO!)
179
+ function fileUpload() {
180
+ var form = $form[0];
181
+
182
+ if ($(':input[name=submit],:input[id=submit]', form).length) {
183
+ // if there is an input with a name or id of 'submit' then we won't be
184
+ // able to invoke the submit fn on the form (at least not x-browser)
185
+ alert('Error: Form elements must not have name or id of "submit".');
186
+ return;
187
+ }
188
+
189
+ var s = $.extend(true, {}, $.ajaxSettings, options);
190
+ s.context = s.context || s;
191
+ var id = 'jqFormIO' + (new Date().getTime()), fn = '_'+id;
192
+ window[fn] = function() {
193
+ var f = $io.data('form-plugin-onload');
194
+ if (f) {
195
+ f();
196
+ window[fn] = undefined;
197
+ try { delete window[fn]; } catch(e){}
198
+ }
199
+ }
200
+ var $io = $('<iframe id="' + id + '" name="' + id + '" src="'+ s.iframeSrc +'" onload="window[\'_\'+this.id]()" />');
201
+ var io = $io[0];
202
+
203
+ $io.css({ position: 'absolute', top: '-1000px', left: '-1000px' });
204
+
205
+ var xhr = { // mock object
206
+ aborted: 0,
207
+ responseText: null,
208
+ responseXML: null,
209
+ status: 0,
210
+ statusText: 'n/a',
211
+ getAllResponseHeaders: function() {},
212
+ getResponseHeader: function() {},
213
+ setRequestHeader: function() {},
214
+ abort: function() {
215
+ this.aborted = 1;
216
+ $io.attr('src', s.iframeSrc); // abort op in progress
217
+ }
218
+ };
219
+
220
+ var g = s.global;
221
+ // trigger ajax global events so that activity/block indicators work like normal
222
+ if (g && ! $.active++) {
223
+ $.event.trigger("ajaxStart");
224
+ }
225
+ if (g) {
226
+ $.event.trigger("ajaxSend", [xhr, s]);
227
+ }
228
+
229
+ if (s.beforeSend && s.beforeSend.call(s.context, xhr, s) === false) {
230
+ if (s.global) {
231
+ $.active--;
232
+ }
233
+ return;
234
+ }
235
+ if (xhr.aborted) {
236
+ return;
237
+ }
238
+
239
+ var cbInvoked = false;
240
+ var timedOut = 0;
241
+
242
+ // add submitting element to data if we know it
243
+ var sub = form.clk;
244
+ if (sub) {
245
+ var n = sub.name;
246
+ if (n && !sub.disabled) {
247
+ s.extraData = s.extraData || {};
248
+ s.extraData[n] = sub.value;
249
+ if (sub.type == "image") {
250
+ s.extraData[n+'.x'] = form.clk_x;
251
+ s.extraData[n+'.y'] = form.clk_y;
252
+ }
253
+ }
254
+ }
255
+
256
+ // take a breath so that pending repaints get some cpu time before the upload starts
257
+ function doSubmit() {
258
+ // make sure form attrs are set
259
+ var t = $form.attr('target'), a = $form.attr('action');
260
+
261
+ // update form attrs in IE friendly way
262
+ form.setAttribute('target',id);
263
+ if (form.getAttribute('method') != 'POST') {
264
+ form.setAttribute('method', 'POST');
265
+ }
266
+ if (form.getAttribute('action') != s.url) {
267
+ form.setAttribute('action', s.url);
268
+ }
269
+
270
+ // ie borks in some cases when setting encoding
271
+ if (! s.skipEncodingOverride) {
272
+ $form.attr({
273
+ encoding: 'multipart/form-data',
274
+ enctype: 'multipart/form-data'
275
+ });
276
+ }
277
+
278
+ // support timout
279
+ if (s.timeout) {
280
+ setTimeout(function() { timedOut = true; cb(); }, s.timeout);
281
+ }
282
+
283
+ // add "extra" data to form if provided in options
284
+ var extraInputs = [];
285
+ try {
286
+ if (s.extraData) {
287
+ for (var n in s.extraData) {
288
+ extraInputs.push(
289
+ $('<input type="hidden" name="'+n+'" value="'+s.extraData[n]+'" />')
290
+ .appendTo(form)[0]);
291
+ }
292
+ }
293
+
294
+ // add iframe to doc and submit the form
295
+ $io.appendTo('body');
296
+ $io.data('form-plugin-onload', cb);
297
+ form.submit();
298
+ }
299
+ finally {
300
+ // reset attrs and remove "extra" input elements
301
+ form.setAttribute('action',a);
302
+ if(t) {
303
+ form.setAttribute('target', t);
304
+ } else {
305
+ $form.removeAttr('target');
306
+ }
307
+ $(extraInputs).remove();
308
+ }
309
+ }
310
+
311
+ if (s.forceSync) {
312
+ doSubmit();
313
+ }
314
+ else {
315
+ setTimeout(doSubmit, 10); // this lets dom updates render
316
+ }
317
+
318
+ var data, doc, domCheckCount = 50;
319
+
320
+ function cb() {
321
+ if (cbInvoked) {
322
+ return;
323
+ }
324
+
325
+ $io.removeData('form-plugin-onload');
326
+
327
+ var ok = true;
328
+ try {
329
+ if (timedOut) {
330
+ throw 'timeout';
331
+ }
332
+ // extract the server response from the iframe
333
+ doc = io.contentWindow ? io.contentWindow.document : io.contentDocument ? io.contentDocument : io.document;
334
+
335
+ var isXml = s.dataType == 'xml' || doc.XMLDocument || $.isXMLDoc(doc);
336
+ log('isXml='+isXml);
337
+ if (!isXml && window.opera && (doc.body == null || doc.body.innerHTML == '')) {
338
+ if (--domCheckCount) {
339
+ // in some browsers (Opera) the iframe DOM is not always traversable when
340
+ // the onload callback fires, so we loop a bit to accommodate
341
+ log('requeing onLoad callback, DOM not available');
342
+ setTimeout(cb, 250);
343
+ return;
344
+ }
345
+ // let this fall through because server response could be an empty document
346
+ //log('Could not access iframe DOM after mutiple tries.');
347
+ //throw 'DOMException: not available';
348
+ }
349
+
350
+ //log('response detected');
351
+ cbInvoked = true;
352
+ xhr.responseText = doc.documentElement ? doc.documentElement.innerHTML : null;
353
+ xhr.responseXML = doc.XMLDocument ? doc.XMLDocument : doc;
354
+ xhr.getResponseHeader = function(header){
355
+ var headers = {'content-type': s.dataType};
356
+ return headers[header];
357
+ };
358
+
359
+ var scr = /(json|script)/.test(s.dataType);
360
+ if (scr || s.textarea) {
361
+ // see if user embedded response in textarea
362
+ var ta = doc.getElementsByTagName('textarea')[0];
363
+ if (ta) {
364
+ xhr.responseText = ta.value;
365
+ }
366
+ else if (scr) {
367
+ // account for browsers injecting pre around json response
368
+ var pre = doc.getElementsByTagName('pre')[0];
369
+ if (pre) {
370
+ xhr.responseText = pre.innerHTML;
371
+ }
372
+ }
373
+ }
374
+ else if (s.dataType == 'xml' && !xhr.responseXML && xhr.responseText != null) {
375
+ xhr.responseXML = toXml(xhr.responseText);
376
+ }
377
+ data = $.httpData(xhr, s.dataType);
378
+ }
379
+ catch(e){
380
+ log('error caught:',e);
381
+ ok = false;
382
+ xhr.error = e;
383
+ $.handleError(s, xhr, 'error', e);
384
+ }
385
+
386
+ // ordering of these callbacks/triggers is odd, but that's how $.ajax does it
387
+ if (ok) {
388
+ s.success.call(s.context, data, 'success', xhr);
389
+ if (g) {
390
+ $.event.trigger("ajaxSuccess", [xhr, s]);
391
+ }
392
+ }
393
+ if (g) {
394
+ $.event.trigger("ajaxComplete", [xhr, s]);
395
+ }
396
+ if (g && ! --$.active) {
397
+ $.event.trigger("ajaxStop");
398
+ }
399
+ if (s.complete) {
400
+ s.complete.call(s.context, xhr, ok ? 'success' : 'error');
401
+ }
402
+
403
+ // clean up
404
+ setTimeout(function() {
405
+ $io.removeData('form-plugin-onload');
406
+ $io.remove();
407
+ xhr.responseXML = null;
408
+ }, 100);
409
+ }
410
+
411
+ function toXml(s, doc) {
412
+ if (window.ActiveXObject) {
413
+ doc = new ActiveXObject('Microsoft.XMLDOM');
414
+ doc.async = 'false';
415
+ doc.loadXML(s);
416
+ }
417
+ else {
418
+ doc = (new DOMParser()).parseFromString(s, 'text/xml');
419
+ }
420
+ return (doc && doc.documentElement && doc.documentElement.tagName != 'parsererror') ? doc : null;
421
+ }
422
+ }
423
+ };
424
+
425
+ /**
426
+ * ajaxForm() provides a mechanism for fully automating form submission.
427
+ *
428
+ * The advantages of using this method instead of ajaxSubmit() are:
429
+ *
430
+ * 1: This method will include coordinates for <input type="image" /> elements (if the element
431
+ * is used to submit the form).
432
+ * 2. This method will include the submit element's name/value data (for the element that was
433
+ * used to submit the form).
434
+ * 3. This method binds the submit() method to the form for you.
435
+ *
436
+ * The options argument for ajaxForm works exactly as it does for ajaxSubmit. ajaxForm merely
437
+ * passes the options argument along after properly binding events for submit elements and
438
+ * the form itself.
439
+ */
440
+ $.fn.ajaxForm = function(options) {
441
+ // in jQuery 1.3+ we can fix mistakes with the ready state
442
+ if (this.length === 0) {
443
+ var o = { s: this.selector, c: this.context };
444
+ if (!$.isReady && o.s) {
445
+ log('DOM not ready, queuing ajaxForm');
446
+ $(function() {
447
+ $(o.s,o.c).ajaxForm(options);
448
+ });
449
+ return this;
450
+ }
451
+ // is your DOM ready? http://docs.jquery.com/Tutorials:Introducing_$(document).ready()
452
+ log('terminating; zero elements found by selector' + ($.isReady ? '' : ' (DOM not ready)'));
453
+ return this;
454
+ }
455
+
456
+ return this.ajaxFormUnbind().bind('submit.form-plugin', function(e) {
457
+ if (!e.isDefaultPrevented()) { // if event has been canceled, don't proceed
458
+ e.preventDefault();
459
+ $(this).ajaxSubmit(options);
460
+ }
461
+ }).bind('click.form-plugin', function(e) {
462
+ var target = e.target;
463
+ var $el = $(target);
464
+ if (!($el.is(":submit,input:image"))) {
465
+ // is this a child element of the submit el? (ex: a span within a button)
466
+ var t = $el.closest(':submit');
467
+ if (t.length == 0) {
468
+ return;
469
+ }
470
+ target = t[0];
471
+ }
472
+ var form = this;
473
+ form.clk = target;
474
+ if (target.type == 'image') {
475
+ if (e.offsetX != undefined) {
476
+ form.clk_x = e.offsetX;
477
+ form.clk_y = e.offsetY;
478
+ } else if (typeof $.fn.offset == 'function') { // try to use dimensions plugin
479
+ var offset = $el.offset();
480
+ form.clk_x = e.pageX - offset.left;
481
+ form.clk_y = e.pageY - offset.top;
482
+ } else {
483
+ form.clk_x = e.pageX - target.offsetLeft;
484
+ form.clk_y = e.pageY - target.offsetTop;
485
+ }
486
+ }
487
+ // clear form vars
488
+ setTimeout(function() { form.clk = form.clk_x = form.clk_y = null; }, 100);
489
+ });
490
+ };
491
+
492
+ // ajaxFormUnbind unbinds the event handlers that were bound by ajaxForm
493
+ $.fn.ajaxFormUnbind = function() {
494
+ return this.unbind('submit.form-plugin click.form-plugin');
495
+ };
496
+
497
+ /**
498
+ * formToArray() gathers form element data into an array of objects that can
499
+ * be passed to any of the following ajax functions: $.get, $.post, or load.
500
+ * Each object in the array has both a 'name' and 'value' property. An example of
501
+ * an array for a simple login form might be:
502
+ *
503
+ * [ { name: 'username', value: 'jresig' }, { name: 'password', value: 'secret' } ]
504
+ *
505
+ * It is this array that is passed to pre-submit callback functions provided to the
506
+ * ajaxSubmit() and ajaxForm() methods.
507
+ */
508
+ $.fn.formToArray = function(semantic) {
509
+ var a = [];
510
+ if (this.length === 0) {
511
+ return a;
512
+ }
513
+
514
+ var form = this[0];
515
+ var els = semantic ? form.getElementsByTagName('*') : form.elements;
516
+ if (!els) {
517
+ return a;
518
+ }
519
+
520
+ var i,j,n,v,el;
521
+ for(i=0, max=els.length; i < max; i++) {
522
+ el = els[i];
523
+ n = el.name;
524
+ if (!n) {
525
+ continue;
526
+ }
527
+
528
+ if (semantic && form.clk && el.type == "image") {
529
+ // handle image inputs on the fly when semantic == true
530
+ if(!el.disabled && form.clk == el) {
531
+ a.push({name: n, value: $(el).val()});
532
+ a.push({name: n+'.x', value: form.clk_x}, {name: n+'.y', value: form.clk_y});
533
+ }
534
+ continue;
535
+ }
536
+
537
+ v = $.fieldValue(el, true);
538
+ if (v && v.constructor == Array) {
539
+ for(j=0, jmax=v.length; j < jmax; j++) {
540
+ a.push({name: n, value: v[j]});
541
+ }
542
+ }
543
+ else if (v !== null && typeof v != 'undefined') {
544
+ a.push({name: n, value: v});
545
+ }
546
+ }
547
+
548
+ if (!semantic && form.clk) {
549
+ // input type=='image' are not found in elements array! handle it here
550
+ var $input = $(form.clk), input = $input[0];
551
+ n = input.name;
552
+ if (n && !input.disabled && input.type == 'image') {
553
+ a.push({name: n, value: $input.val()});
554
+ a.push({name: n+'.x', value: form.clk_x}, {name: n+'.y', value: form.clk_y});
555
+ }
556
+ }
557
+ return a;
558
+ };
559
+
560
+ /**
561
+ * Serializes form data into a 'submittable' string. This method will return a string
562
+ * in the format: name1=value1&amp;name2=value2
563
+ */
564
+ $.fn.formSerialize = function(semantic) {
565
+ //hand off to jQuery.param for proper encoding
566
+ return $.param(this.formToArray(semantic));
567
+ };
568
+
569
+ /**
570
+ * Serializes all field elements in the jQuery object into a query string.
571
+ * This method will return a string in the format: name1=value1&amp;name2=value2
572
+ */
573
+ $.fn.fieldSerialize = function(successful) {
574
+ var a = [];
575
+ this.each(function() {
576
+ var n = this.name;
577
+ if (!n) {
578
+ return;
579
+ }
580
+ var v = $.fieldValue(this, successful);
581
+ if (v && v.constructor == Array) {
582
+ for (var i=0,max=v.length; i < max; i++) {
583
+ a.push({name: n, value: v[i]});
584
+ }
585
+ }
586
+ else if (v !== null && typeof v != 'undefined') {
587
+ a.push({name: this.name, value: v});
588
+ }
589
+ });
590
+ //hand off to jQuery.param for proper encoding
591
+ return $.param(a);
592
+ };
593
+
594
+ /**
595
+ * Returns the value(s) of the element in the matched set. For example, consider the following form:
596
+ *
597
+ * <form><fieldset>
598
+ * <input name="A" type="text" />
599
+ * <input name="A" type="text" />
600
+ * <input name="B" type="checkbox" value="B1" />
601
+ * <input name="B" type="checkbox" value="B2"/>
602
+ * <input name="C" type="radio" value="C1" />
603
+ * <input name="C" type="radio" value="C2" />
604
+ * </fieldset></form>
605
+ *
606
+ * var v = $(':text').fieldValue();
607
+ * // if no values are entered into the text inputs
608
+ * v == ['','']
609
+ * // if values entered into the text inputs are 'foo' and 'bar'
610
+ * v == ['foo','bar']
611
+ *
612
+ * var v = $(':checkbox').fieldValue();
613
+ * // if neither checkbox is checked
614
+ * v === undefined
615
+ * // if both checkboxes are checked
616
+ * v == ['B1', 'B2']
617
+ *
618
+ * var v = $(':radio').fieldValue();
619
+ * // if neither radio is checked
620
+ * v === undefined
621
+ * // if first radio is checked
622
+ * v == ['C1']
623
+ *
624
+ * The successful argument controls whether or not the field element must be 'successful'
625
+ * (per http://www.w3.org/TR/html4/interact/forms.html#successful-controls).
626
+ * The default value of the successful argument is true. If this value is false the value(s)
627
+ * for each element is returned.
628
+ *
629
+ * Note: This method *always* returns an array. If no valid value can be determined the
630
+ * array will be empty, otherwise it will contain one or more values.
631
+ */
632
+ $.fn.fieldValue = function(successful) {
633
+ for (var val=[], i=0, max=this.length; i < max; i++) {
634
+ var el = this[i];
635
+ var v = $.fieldValue(el, successful);
636
+ if (v === null || typeof v == 'undefined' || (v.constructor == Array && !v.length)) {
637
+ continue;
638
+ }
639
+ v.constructor == Array ? $.merge(val, v) : val.push(v);
640
+ }
641
+ return val;
642
+ };
643
+
644
+ /**
645
+ * Returns the value of the field element.
646
+ */
647
+ $.fieldValue = function(el, successful) {
648
+ var n = el.name, t = el.type, tag = el.tagName.toLowerCase();
649
+ if (successful === undefined) {
650
+ successful = true;
651
+ }
652
+
653
+ if (successful && (!n || el.disabled || t == 'reset' || t == 'button' ||
654
+ (t == 'checkbox' || t == 'radio') && !el.checked ||
655
+ (t == 'submit' || t == 'image') && el.form && el.form.clk != el ||
656
+ tag == 'select' && el.selectedIndex == -1)) {
657
+ return null;
658
+ }
659
+
660
+ if (tag == 'select') {
661
+ var index = el.selectedIndex;
662
+ if (index < 0) {
663
+ return null;
664
+ }
665
+ var a = [], ops = el.options;
666
+ var one = (t == 'select-one');
667
+ var max = (one ? index+1 : ops.length);
668
+ for(var i=(one ? index : 0); i < max; i++) {
669
+ var op = ops[i];
670
+ if (op.selected) {
671
+ var v = op.value;
672
+ if (!v) { // extra pain for IE...
673
+ v = (op.attributes && op.attributes['value'] && !(op.attributes['value'].specified)) ? op.text : op.value;
674
+ }
675
+ if (one) {
676
+ return v;
677
+ }
678
+ a.push(v);
679
+ }
680
+ }
681
+ return a;
682
+ }
683
+ return $(el).val();
684
+ };
685
+
686
+ /**
687
+ * Clears the form data. Takes the following actions on the form's input fields:
688
+ * - input text fields will have their 'value' property set to the empty string
689
+ * - select elements will have their 'selectedIndex' property set to -1
690
+ * - checkbox and radio inputs will have their 'checked' property set to false
691
+ * - inputs of type submit, button, reset, and hidden will *not* be effected
692
+ * - button elements will *not* be effected
693
+ */
694
+ $.fn.clearForm = function() {
695
+ return this.each(function() {
696
+ $('input,select,textarea', this).clearFields();
697
+ });
698
+ };
699
+
700
+ /**
701
+ * Clears the selected form elements.
702
+ */
703
+ $.fn.clearFields = $.fn.clearInputs = function() {
704
+ return this.each(function() {
705
+ var t = this.type, tag = this.tagName.toLowerCase();
706
+ if (t == 'text' || t == 'password' || tag == 'textarea') {
707
+ this.value = '';
708
+ }
709
+ else if (t == 'checkbox' || t == 'radio') {
710
+ this.checked = false;
711
+ }
712
+ else if (tag == 'select') {
713
+ this.selectedIndex = -1;
714
+ }
715
+ });
716
+ };
717
+
718
+ /**
719
+ * Resets the form data. Causes all form elements to be reset to their original value.
720
+ */
721
+ $.fn.resetForm = function() {
722
+ return this.each(function() {
723
+ // guard against an input with the name of 'reset'
724
+ // note that IE reports the reset function as an 'object'
725
+ if (typeof this.reset == 'function' || (typeof this.reset == 'object' && !this.reset.nodeType)) {
726
+ this.reset();
727
+ }
728
+ });
729
+ };
730
+
731
+ /**
732
+ * Enables or disables any matching elements.
733
+ */
734
+ $.fn.enable = function(b) {
735
+ if (b === undefined) {
736
+ b = true;
737
+ }
738
+ return this.each(function() {
739
+ this.disabled = !b;
740
+ });
741
+ };
742
+
743
+ /**
744
+ * Checks/unchecks any matching checkboxes or radio buttons and
745
+ * selects/deselects and matching option elements.
746
+ */
747
+ $.fn.selected = function(select) {
748
+ if (select === undefined) {
749
+ select = true;
750
+ }
751
+ return this.each(function() {
752
+ var t = this.type;
753
+ if (t == 'checkbox' || t == 'radio') {
754
+ this.checked = select;
755
+ }
756
+ else if (this.tagName.toLowerCase() == 'option') {
757
+ var $sel = $(this).parent('select');
758
+ if (select && $sel[0] && $sel[0].type == 'select-one') {
759
+ // deselect all other options
760
+ $sel.find('option').selected(false);
761
+ }
762
+ this.selected = select;
763
+ }
764
+ });
765
+ };
766
+
767
+ // helper fn for console logging
768
+ // set $.fn.ajaxSubmit.debug to true to enable debug logging
769
+ function log() {
770
+ if ($.fn.ajaxSubmit.debug) {
771
+ var msg = '[jquery.form] ' + Array.prototype.join.call(arguments,'');
772
+ if (window.console && window.console.log) {
773
+ window.console.log(msg);
774
+ }
775
+ else if (window.opera && window.opera.postError) {
776
+ window.opera.postError(msg);
777
+ }
778
+ }
779
+ };
780
+
781
+ })(jQuery);
languages/readme.txt ADDED
@@ -0,0 +1,9 @@
 
 
 
 
 
 
 
 
 
1
+ == For Translators ==
2
+
3
+ Note: this folder contains MO files and POT file only. If you are looking for PO file, you can download it from here:
4
+
5
+ http://plugins.svn.wordpress.org/contact-form-7/branches/languages/
6
+
7
+ If you have created your own translation, or have an update of an existing one, please send it to Takayuki Miyoshi <takayukister@gmail.com> so that I can bundle it into the next release of Contact Form 7.
8
+
9
+ Thank you.
languages/wpcf7-af.po DELETED
@@ -1,809 +0,0 @@
1
- msgid ""
2
- msgstr ""
3
- "Project-Id-Version: Contact Form 7\n"
4
- "Report-Msgid-Bugs-To: \n"
5
- "POT-Creation-Date: 2010-01-06 16:43+0900\n"
6
- "PO-Revision-Date: \n"
7
- "Last-Translator: Takayuki Miyoshi <takayukister@gmail.com>\n"
8
- "Language-Team: Schalk Burger\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: Afrikaans\n"
13
- "X-Poedit-Country: South Africa\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-panel.php:9
21
- #, php-format
22
- 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."
23
- msgstr "<strong>Die databasis tabel vir Contact Form 7 bestaan nie.</strong> Jy moet eers 'n <a href=\"%s\">tabel skep</a> vir dit om te werk."
24
-
25
- #: contact-form-7/admin/admin-panel.php:12
26
- msgid "<strong>The database table for Contact Form 7 does not exist.</strong>"
27
- msgstr "<strong>Die databasis tabel vir Contact Form 7 bestaan nie.</strong>"
28
-
29
- #: contact-form-7/admin/admin-panel.php:17
30
- #: contact-form-7/admin/admin-panel.php:30
31
- #: contact-form-7/admin/admin.php:117
32
- msgid "Contact Form 7"
33
- msgstr "Contact Form 7"
34
-
35
- #: contact-form-7/admin/admin-panel.php:45
36
- msgid "Add new"
37
- msgstr "Nuwe byvoeging"
38
-
39
- #: contact-form-7/admin/admin-panel.php:67
40
- msgid "Copy this code and paste it into your post, page or text widget content."
41
- msgstr "Kopie die code en sit dit in jou berig, bladsy of teks widget."
42
-
43
- #: contact-form-7/admin/admin-panel.php:75
44
- #: contact-form-7/admin/admin-panel.php:309
45
- msgid "Save"
46
- msgstr "Stoor"
47
-
48
- #: contact-form-7/admin/admin-panel.php:82
49
- msgid "Copy"
50
- msgstr "Kopie"
51
-
52
- #: contact-form-7/admin/admin-panel.php:87
53
- msgid "Delete"
54
- msgstr "Skrap"
55
-
56
- #: contact-form-7/admin/admin-panel.php:89
57
- msgid ""
58
- "You are about to delete this contact form.\n"
59
- " 'Cancel' to stop, 'OK' to delete."
60
- msgstr ""
61
- "Jy is besig om hierdie kontak vorm te verwyder.\n"
62
- " 'Kanseleer' om te stop, 'OK' om dit te skrap."
63
-
64
- #: contact-form-7/admin/admin-panel.php:104
65
- msgid "Form"
66
- msgstr "Vorm"
67
-
68
- #: contact-form-7/admin/admin-panel.php:128
69
- msgid "Mail"
70
- msgstr "Pos"
71
-
72
- #: contact-form-7/admin/admin-panel.php:135
73
- #: contact-form-7/admin/admin-panel.php:202
74
- msgid "To:"
75
- msgstr "Aan:"
76
-
77
- #: contact-form-7/admin/admin-panel.php:140
78
- #: contact-form-7/admin/admin-panel.php:207
79
- msgid "From:"
80
- msgstr "Van:"
81
-
82
- #: contact-form-7/admin/admin-panel.php:145
83
- #: contact-form-7/admin/admin-panel.php:212
84
- msgid "Subject:"
85
- msgstr "Onderwerp:"
86
-
87
- #: contact-form-7/admin/admin-panel.php:152
88
- #: contact-form-7/admin/admin-panel.php:219
89
- msgid "Additional headers:"
90
- msgstr "Aanvullende headers:"
91
-
92
- #: contact-form-7/admin/admin-panel.php:157
93
- #: contact-form-7/admin/admin-panel.php:224
94
- msgid "File attachments:"
95
- msgstr "LÍer skakels:"
96
-
97
- #: contact-form-7/admin/admin-panel.php:165
98
- #: contact-form-7/admin/admin-panel.php:232
99
- msgid "Use HTML content type"
100
- msgstr "Gebruik HTML inhoud tipe"
101
-
102
- #: contact-form-7/admin/admin-panel.php:172
103
- #: contact-form-7/admin/admin-panel.php:239
104
- #: contact-form-7/includes/functions.php:73
105
- msgid "Message body:"
106
- msgstr "Boodskap teks"
107
-
108
- #: contact-form-7/admin/admin-panel.php:188
109
- msgid "Mail (2)"
110
- msgstr "Mail (2)"
111
-
112
- #: contact-form-7/admin/admin-panel.php:194
113
- msgid "Use mail (2)"
114
- msgstr "Gebruik mail (2)"
115
-
116
- #: contact-form-7/admin/admin-panel.php:255
117
- msgid "Messages"
118
- msgstr "Boodskappe"
119
-
120
- #: contact-form-7/admin/admin-panel.php:285
121
- msgid "Additional Settings"
122
- msgstr "Aanvullende Stellings"
123
-
124
- #: contact-form-7/admin/admin-panel.php:333
125
- #, php-format
126
- msgid "Use the default language (%s)"
127
- msgstr "Gebruik die standaard taal (%s)"
128
-
129
- #: contact-form-7/admin/admin-panel.php:334
130
- #: contact-form-7/admin/admin-panel.php:347
131
- msgid "Add New"
132
- msgstr "Nuwe byvoeging"
133
-
134
- #: contact-form-7/admin/admin-panel.php:337
135
- msgid "Or"
136
- msgstr "Of"
137
-
138
- #: contact-form-7/admin/admin-panel.php:342
139
- msgid "(select language)"
140
- msgstr "(kies taal)"
141
-
142
- #: contact-form-7/admin/admin.php:117
143
- msgid "Contact"
144
- msgstr "Kontak"
145
-
146
- #: contact-form-7/admin/admin.php:120
147
- msgid "Edit Contact Forms"
148
- msgstr "Wysig kontak vorms"
149
-
150
- #: contact-form-7/admin/admin.php:120
151
- msgid "Edit"
152
- msgstr "Wysig"
153
-
154
- #: contact-form-7/admin/admin.php:159
155
- msgid "Generate Tag"
156
- msgstr "Genereer Merker"
157
-
158
- #: contact-form-7/admin/admin.php:160
159
- msgid "Show"
160
- msgstr "Wys"
161
-
162
- #: contact-form-7/admin/admin.php:161
163
- msgid "Hide"
164
- msgstr "Versteek"
165
-
166
- #: contact-form-7/admin/admin.php:305
167
- msgid "Contact form"
168
- msgstr "Kontak vorm"
169
-
170
- #: contact-form-7/admin/admin.php:324
171
- msgid "Settings"
172
- msgstr "Stellings"
173
-
174
- #: contact-form-7/admin/admin.php:335
175
- msgid "http://contactform7.com/"
176
- msgstr "http://contactform7.com/"
177
-
178
- #: contact-form-7/admin/admin.php:336
179
- msgid "Contactform7.com"
180
- msgstr "Contactform7.com"
181
-
182
- #: contact-form-7/admin/admin.php:337
183
- msgid "http://contactform7.com/docs/"
184
- msgstr "http://contactform7.com/docs/"
185
-
186
- #: contact-form-7/admin/admin.php:338
187
- msgid "Docs"
188
- msgstr "Docs"
189
-
190
- #: contact-form-7/admin/admin.php:339
191
- msgid "http://contactform7.com/faq/"
192
- msgstr "http://contactform7.com/faq/"
193
-
194
- #: contact-form-7/admin/admin.php:340
195
- msgid "FAQ"
196
- msgstr "FAQ"
197
-
198
- #: contact-form-7/admin/admin.php:341
199
- msgid "http://contactform7.com/support/"
200
- msgstr "http://contactform7.com/support/"
201
-
202
- #: contact-form-7/admin/admin.php:342
203
- msgid "Support"
204
- msgstr "Hulp"
205
-
206
- #: contact-form-7/admin/admin.php:353
207
- msgid "Contact form created."
208
- msgstr "Kontak vorm geskape"
209
-
210
- #: contact-form-7/admin/admin.php:356
211
- msgid "Contact form saved."
212
- msgstr "Kontak vorm gestoor"
213
-
214
- #: contact-form-7/admin/admin.php:359
215
- msgid "Contact form deleted."
216
- msgstr "Kontak vorm verwyder"
217
-
218
- #: contact-form-7/admin/admin.php:362
219
- msgid "Database table created."
220
- msgstr "Databasis tabel geskape"
221
-
222
- #: contact-form-7/admin/admin.php:365
223
- msgid "Failed to create database table."
224
- msgstr "Kon nie databasis tabel skape nie."
225
-
226
- #: contact-form-7/admin/admin.php:398
227
- msgid "Contact Form 7 needs your support. Please donate today."
228
- msgstr "Contact Form 7 benodig jou ondersteuning. Skenk 'n donasie asseblief."
229
-
230
- #: contact-form-7/admin/admin.php:399
231
- msgid "Is this plugin useful for you? If you like it, please help the developer."
232
- msgstr "Is hierdie plugin nuttig vir jou? As jy daarvan hou, ondersteun asseblief die ontwikkelaar"
233
-
234
- #: contact-form-7/admin/admin.php:400
235
- msgid "Your contribution is needed for making this plugin better."
236
- msgstr "Jou bydra word benodig om hierdie plugin beter te maak."
237
-
238
- #: contact-form-7/admin/admin.php:401
239
- msgid "Developing a plugin and providing user support is really hard work. Please help."
240
- msgstr "Om 'n plugin te ontwikkel en gebruikershulp aan te bied is baie harde werk. Help asseblief."
241
-
242
- #: contact-form-7/includes/classes.php:568
243
- msgid "Untitled"
244
- msgstr "Naamloos"
245
-
246
- #: contact-form-7/includes/functions.php:6
247
- msgid "Sender's message was sent successfully"
248
- msgstr "Boodskap was suksesvol gestuur"
249
-
250
- #: contact-form-7/includes/functions.php:7
251
- msgid "Your message was sent successfully. Thanks."
252
- msgstr "Jou boodskap was suksevol gestuur. Dankie."
253
-
254
- #: contact-form-7/includes/functions.php:11
255
- msgid "Sender's message was failed to send"
256
- msgstr "Boodskap het nie gestuur nie."
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 "Kon nie boodskap stuur nie. Probeer later weer of kontak die administrateur op 'n ander manier"
262
-
263
- #: contact-form-7/includes/functions.php:16
264
- msgid "Akismet judged the sending activity as spamming"
265
- msgstr "Akismet het die stuur van die boodskap as spam opgetel."
266
-
267
- #: contact-form-7/includes/functions.php:21
268
- msgid "Validation errors occurred"
269
- msgstr "Validasie probleme het voorgeval."
270
-
271
- #: contact-form-7/includes/functions.php:22
272
- msgid "Validation errors occurred. Please confirm the fields and submit it again."
273
- msgstr "Validasie probleme het voorgeval. Maak seker die vorm areas is ingevul en probeer weer stuur."
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 "Daar is 'n vorm area of term wat aanvaar moet word voor dit gestuur kan word"
278
-
279
- #: contact-form-7/includes/functions.php:27
280
- msgid "Please accept the terms to proceed."
281
- msgstr "Aanvaar die terme asseblief om voort te gaan."
282
-
283
- #: contact-form-7/includes/functions.php:31
284
- msgid "Email address that sender entered is invalid"
285
- msgstr "E-pos adres van die afsender is ongeldig"
286
-
287
- #: contact-form-7/includes/functions.php:32
288
- msgid "Email address seems invalid."
289
- msgstr "E-pos adres blyk ongeldig."
290
-
291
- #: contact-form-7/includes/functions.php:36
292
- msgid "There is a field that sender is needed to fill in"
293
- msgstr "Daar is 'n vorm area wat die afsender moet invul. "
294
-
295
- #: contact-form-7/includes/functions.php:37
296
- msgid "Please fill the required field."
297
- msgstr "Vul asseblief die vereiste vorm area in."
298
-
299
- #: contact-form-7/includes/functions.php:45
300
- msgid "Your Name"
301
- msgstr "Jou Naam"
302
-
303
- #: contact-form-7/includes/functions.php:45
304
- #: contact-form-7/includes/functions.php:47
305
- msgid "(required)"
306
- msgstr "(vereis)"
307
-
308
- #: contact-form-7/includes/functions.php:47
309
- msgid "Your Email"
310
- msgstr "Jou E-pos"
311
-
312
- #: contact-form-7/includes/functions.php:49
313
- msgid "Subject"
314
- msgstr "Onderwerp"
315
-
316
- #: contact-form-7/includes/functions.php:51
317
- msgid "Your Message"
318
- msgstr "Jou Boodskappe"
319
-
320
- #: contact-form-7/includes/functions.php:53
321
- msgid "Send"
322
- msgstr "Stuur"
323
-
324
- #: contact-form-7/includes/functions.php:60
325
- #, php-format
326
- msgid "From: %s"
327
- msgstr "Van: %s"
328
-
329
- #: contact-form-7/includes/functions.php:61
330
- #, php-format
331
- msgid "Subject: %s"
332
- msgstr "Onderwerp: %s"
333
-
334
- #: contact-form-7/includes/functions.php:62
335
- msgid "Message Body:"
336
- msgstr "Boodskap teks:"
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 "Die pos is gestuur deur die kontak vorm op %1$s %2$s"
343
-
344
- #: contact-form-7/includes/functions.php:163
345
- msgid "Albanian"
346
- msgstr "Albaans"
347
-
348
- #: contact-form-7/includes/functions.php:164
349
- msgid "Arabic"
350
- msgstr "Arabies"
351
-
352
- #: contact-form-7/includes/functions.php:165
353
- msgid "Bangla"
354
- msgstr "Bangla"
355
-
356
- #: contact-form-7/includes/functions.php:166
357
- msgid "Bosnian"
358
- msgstr "Bosnies"
359
-
360
- #: contact-form-7/includes/functions.php:167
361
- msgid "Brazilian Portuguese"
362
- msgstr "Brasiliaanse Portugees"
363
-
364
- #: contact-form-7/includes/functions.php:168
365
- msgid "Bulgarian"
366
- msgstr "Bulgaars"
367
-
368
- #: contact-form-7/includes/functions.php:169
369
- msgid "Catalan"
370
- msgstr "Katalaans"
371
-
372
- #: contact-form-7/includes/functions.php:170
373
- msgid "Chinese (Simplified)"
374
- msgstr "Sjinees (Vereenvoudig)"
375
-
376
- #: contact-form-7/includes/functions.php:171
377
- msgid "Chinese (Traditional)"
378
- msgstr "Sjinees (Traditioneel)"
379
-
380
- #: contact-form-7/includes/functions.php:172
381
- msgid "Croatian"
382
- msgstr "Kroaties"
383
-
384
- #: contact-form-7/includes/functions.php:173
385
- msgid "Czech"
386
- msgstr "Tsjeggies"
387
-
388
- #: contact-form-7/includes/functions.php:174
389
- msgid "Danish"
390
- msgstr "Deens"
391
-
392
- #: contact-form-7/includes/functions.php:175
393
- msgid "Dutch"
394
- msgstr "Nederlands"
395
-
396
- #: contact-form-7/includes/functions.php:176
397
- msgid "English"
398
- msgstr "Engels"
399
-
400
- #: contact-form-7/includes/functions.php:177
401
- msgid "Estonian"
402
- msgstr "Estnies"
403
-
404
- #: contact-form-7/includes/functions.php:178
405
- msgid "Finnish"
406
- msgstr "Fins"
407
-
408
- #: contact-form-7/includes/functions.php:179
409
- msgid "French"
410
- msgstr "Frans"
411
-
412
- #: contact-form-7/includes/functions.php:180
413
- msgid "Georgian"
414
- msgstr "Georgies"
415
-
416
- #: contact-form-7/includes/functions.php:181
417
- msgid "German"
418
- msgstr "Duits"
419
-
420
- #: contact-form-7/includes/functions.php:182
421
- msgid "Greek"
422
- msgstr "Grieks"
423
-
424
- #: contact-form-7/includes/functions.php:183
425
- msgid "Hebrew"
426
- msgstr "Hebreeus"
427
-
428
- #: contact-form-7/includes/functions.php:184
429
- msgid "Hindi"
430
- msgstr "Hindi"
431
-
432
- #: contact-form-7/includes/functions.php:185
433
- msgid "Hungarian"
434
- msgstr "Hongaars"
435
-
436
- #: contact-form-7/includes/functions.php:186
437
- msgid "Indonesian"
438
- msgstr "Indonesies"
439
-
440
- #: contact-form-7/includes/functions.php:187
441
- msgid "Italian"
442
- msgstr "Italiaans"
443
-
444
- #: contact-form-7/includes/functions.php:188
445
- msgid "Japanese"
446
- msgstr "Japanees"
447
-
448
- #: contact-form-7/includes/functions.php:189
449
- msgid "Korean"
450
- msgstr "Koreaans"
451
-
452
- #: contact-form-7/includes/functions.php:190
453
- msgid "Latvian"
454
- msgstr "Letties"
455
-
456
- #: contact-form-7/includes/functions.php:191
457
- msgid "Lithuanian"
458
- msgstr "Litaus"
459
-
460
- #: contact-form-7/includes/functions.php:192
461
- msgid "Norwegian"
462
- msgstr "Noors"
463
-
464
- #: contact-form-7/includes/functions.php:193
465
- msgid "Persian"
466
- msgstr "Persies"
467
-
468
- #: contact-form-7/includes/functions.php:194
469
- msgid "Polish"
470
- msgstr "Pools"
471
-
472
- #: contact-form-7/includes/functions.php:195
473
- msgid "Portuguese"
474
- msgstr "Portugees"
475
-
476
- #: contact-form-7/includes/functions.php:196
477
- msgid "Russian"
478
- msgstr "Russies"
479
-
480
- #: contact-form-7/includes/functions.php:197
481
- msgid "Romanian"
482
- msgstr "Roemeens"
483
-
484
- #: contact-form-7/includes/functions.php:198
485
- msgid "Serbian"
486
- msgstr "Serwies"
487
-
488
- #: contact-form-7/includes/functions.php:199
489
- msgid "Slovak"
490
- msgstr "Slowaaks"
491
-
492
- #: contact-form-7/includes/functions.php:200
493
- msgid "Slovene"
494
- msgstr "Sloveense"
495
-
496
- #: contact-form-7/includes/functions.php:201
497
- msgid "Spanish"
498
- msgstr "Spaans"
499
-
500
- #: contact-form-7/includes/functions.php:202
501
- msgid "Swedish"
502
- msgstr "Sweeds"
503
-
504
- #: contact-form-7/includes/functions.php:203
505
- msgid "Thai"
506
- msgstr "Thai"
507
-
508
- #: contact-form-7/includes/functions.php:204
509
- msgid "Turkish"
510
- msgstr "Turks"
511
-
512
- #: contact-form-7/includes/functions.php:205
513
- msgid "Ukrainian"
514
- msgstr "OekraÔens"
515
-
516
- #: contact-form-7/includes/functions.php:206
517
- msgid "Vietnamese"
518
- msgstr "ViÎtnamees"
519
-
520
- #: contact-form-7/modules/acceptance.php:94
521
- msgid "Acceptance"
522
- msgstr "Aanvaarding"
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 "Naam"
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
536
- #: contact-form-7/modules/captcha.php:224
537
- #: contact-form-7/modules/captcha.php:228
538
- #: contact-form-7/modules/captcha.php:239
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
547
- #: contact-form-7/modules/file.php:250
548
- msgid "optional"
549
- msgstr "opsioneel"
550
-
551
- #: contact-form-7/modules/acceptance.php:117
552
- msgid "Make this checkbox checked by default?"
553
- msgstr "Maak die boks geselekteer by verstek?"
554
-
555
- #: contact-form-7/modules/acceptance.php:118
556
- msgid "Make this checkbox work inversely?"
557
- msgstr "Maak die boks omgekeerd werk?"
558
-
559
- #: contact-form-7/modules/acceptance.php:119
560
- msgid "* That means visitor who accepts the term unchecks it."
561
- msgstr "Dit beteken dat die besoeker wie die terme aanvaar die boks deselekteer"
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 "Kopie die code en sit dit in die vorm links."
569
-
570
- #: contact-form-7/modules/captcha.php:65
571
- msgid "To use CAPTCHA, you need <a href=\"http://wordpress.org/extend/plugins/really-simple-captcha/\">Really Simple CAPTCHA</a> plugin installed."
572
- msgstr "Om CAPTCHA te gebruik kort jy <a href=\"http://wordpress.org/extend/plugins/really-simple-captcha/\">Really Simple CAPTCHA</a> plugin installeer."
573
-
574
- #: contact-form-7/modules/captcha.php:181
575
- msgid "The code that sender entered does not match the CAPTCHA"
576
- msgstr "Die kode wat die versender ingevul het pas nie die CAPTCHA nie."
577
-
578
- #: contact-form-7/modules/captcha.php:182
579
- msgid "Your entered code is incorrect."
580
- msgstr "Jou ingevulde kode is verkeerd."
581
-
582
- #: contact-form-7/modules/captcha.php:192
583
- msgid "CAPTCHA"
584
- msgstr "CAPTCHA"
585
-
586
- #: contact-form-7/modules/captcha.php:203
587
- msgid "Note: To use CAPTCHA, you need Really Simple CAPTCHA plugin installed."
588
- msgstr "Let op: Om CAPTCH te gebruik, moet eally Simple CAPTCHA plugin installeer wees."
589
-
590
- #: contact-form-7/modules/captcha.php:210
591
- msgid "Image settings"
592
- msgstr "Beeld stellings"
593
-
594
- #: contact-form-7/modules/captcha.php:221
595
- msgid "Foreground color"
596
- msgstr "Voorgrond kleur"
597
-
598
- #: contact-form-7/modules/captcha.php:224
599
- msgid "Background color"
600
- msgstr "Agtergrond kleur"
601
-
602
- #: contact-form-7/modules/captcha.php:228
603
- msgid "Image size"
604
- msgstr "Beeld grootte"
605
-
606
- #: contact-form-7/modules/captcha.php:229
607
- msgid "Small"
608
- msgstr "Klein"
609
-
610
- #: contact-form-7/modules/captcha.php:230
611
- msgid "Medium"
612
- msgstr "Medium"
613
-
614
- #: contact-form-7/modules/captcha.php:231
615
- msgid "Large"
616
- msgstr "Groot"
617
-
618
- #: contact-form-7/modules/captcha.php:236
619
- msgid "Input field settings"
620
- msgstr "Inset area stellings"
621
-
622
- #: contact-form-7/modules/captcha.php:256
623
- msgid "For image"
624
- msgstr "Vir beeld"
625
-
626
- #: contact-form-7/modules/captcha.php:258
627
- msgid "For input field"
628
- msgstr "Vir inset area"
629
-
630
- #: contact-form-7/modules/captcha.php:288
631
- #, php-format
632
- 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."
633
- msgstr "Hierdie kontak vorm bevat CAPTCH vorm areas, maar die tydelike plek vir lÍers (%s) bestaan nie of is nie skryfbaar nie. Jy kan die plek skep of dit self toelaatbaar maak."
634
-
635
- #: contact-form-7/modules/captcha.php:294
636
- msgid "This contact form contains CAPTCHA fields, but the necessary libraries (GD and FreeType) are not available on your server."
637
- msgstr "Hierdie kontak vorm bevat CAPTCH vorm areas, maar die nodige sagteware biblioteke (GD en FreeType) is nie beskikbaar op hierdie bediener."
638
-
639
- #: contact-form-7/modules/checkbox.php:169
640
- msgid "Checkboxes"
641
- msgstr "Bokse"
642
-
643
- #: contact-form-7/modules/checkbox.php:172
644
- msgid "Radio buttons"
645
- msgstr "Radio-knoppies"
646
-
647
- #: contact-form-7/modules/checkbox.php:193
648
- #: contact-form-7/modules/file.php:233
649
- msgid "Required field?"
650
- msgstr "Vereiste vorm area"
651
-
652
- #: contact-form-7/modules/checkbox.php:209
653
- msgid "Choices"
654
- msgstr "Keuses"
655
-
656
- #: contact-form-7/modules/checkbox.php:211
657
- msgid "* One choice per line."
658
- msgstr "Een keuse per lyn"
659
-
660
- #: contact-form-7/modules/checkbox.php:215
661
- msgid "Put a label first, a checkbox last?"
662
- msgstr "Sit 'n label eerste, boks laaste?"
663
-
664
- #: contact-form-7/modules/checkbox.php:216
665
- msgid "Wrap each item with <label> tag?"
666
- msgstr "Omhels elke item met 'n <label> tag?"
667
-
668
- #: contact-form-7/modules/checkbox.php:218
669
- msgid "Make checkboxes exclusive?"
670
- msgstr "Maak 'n boks eksklusief?"
671
-
672
- #: contact-form-7/modules/checkbox.php:226
673
- msgid "And, put this code into the Mail fields below."
674
- msgstr "En voeg hierdie kode in die Mail vorm areas onder in."
675
-
676
- #: contact-form-7/modules/file.php:197
677
- msgid "Uploading a file fails for any reason"
678
- msgstr "LÍer oplaai faal vir enige rede"
679
-
680
- #: contact-form-7/modules/file.php:198
681
- msgid "Failed to upload file."
682
- msgstr "Kon nie die lÍer oplaai nie."
683
-
684
- #: contact-form-7/modules/file.php:202
685
- msgid "Uploaded file is not allowed file type"
686
- msgstr "LÍer is nie die regte tipe lÍer vir oplaai nie"
687
-
688
- #: contact-form-7/modules/file.php:203
689
- msgid "This file type is not allowed."
690
- msgstr "Hierdie lÍer tipe is nie toegelaat nie."
691
-
692
- #: contact-form-7/modules/file.php:207
693
- msgid "Uploaded file is too large"
694
- msgstr "LÍer is te groot om op te laai."
695
-
696
- #: contact-form-7/modules/file.php:208
697
- msgid "This file is too large."
698
- msgstr "Die lÍer is te groot."
699
-
700
- #: contact-form-7/modules/file.php:212
701
- msgid "Uploading a file fails for PHP error"
702
- msgstr "LÍer oplaai faal aan gesien van PHP probleem"
703
-
704
- #: contact-form-7/modules/file.php:213
705
- msgid "Failed to upload file. Error occurred."
706
- msgstr "Kon nie die lÍer oplaai nie. Het fout begaan."
707
-
708
- #: contact-form-7/modules/file.php:224
709
- msgid "File upload"
710
- msgstr "LÍer oplaai"
711
-
712
- #: contact-form-7/modules/file.php:247
713
- msgid "File size limit"
714
- msgstr "LÍer grootte limiet"
715
-
716
- #: contact-form-7/modules/file.php:247
717
- msgid "bytes"
718
- msgstr "grepe"
719
-
720
- #: contact-form-7/modules/file.php:250
721
- msgid "Acceptable file types"
722
- msgstr "Aanvaarbare lÍer tipes"
723
-
724
- #: contact-form-7/modules/file.php:257
725
- msgid "And, put this code into the File Attachments field below."
726
- msgstr "En sit hierdie code in die LÍer Skakels veld area onder."
727
-
728
- #: contact-form-7/modules/file.php:282
729
- #, php-format
730
- 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."
731
- msgstr "Die kontak vorm bevat lÍer oplaai vorm areas, maar die tydelike plek vir lÍers (%s) bestaan nie of is nie skryfbaar nie. Jy kan die plek skep of dit self toelaatbaar maak."
732
-
733
- #: contact-form-7/modules/icl.php:74
734
- 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."
735
- msgstr "Die kontak vorm bevat [icl] tags, maar dit is verouderd en funksioneer nie meer in hierdie weergave van Contact Form 7 nie. <a href=\"http://contactform7.com/2009/12/25/contact-form-in-your-language/#Creating_contact_form_in_different_languages\" target=\"_blank\">Daar is 'n makliker manier om kontak vorms vir ander tale te maak</a> en jy is aanbeveel om dit te gebruik"
736
-
737
- #: contact-form-7/modules/quiz.php:164
738
- msgid "Sender doesn't enter the correct answer to the quiz"
739
- msgstr "Afsender het nie die korrekte antwoord vir die vasvra beantwoord nie"
740
-
741
- #: contact-form-7/modules/quiz.php:165
742
- msgid "Your answer is not correct."
743
- msgstr "Jou antwoord is nie korrek nie."
744
-
745
- #: contact-form-7/modules/quiz.php:175
746
- msgid "Quiz"
747
- msgstr "Vasvra"
748
-
749
- #: contact-form-7/modules/quiz.php:205
750
- msgid "Quizzes"
751
- msgstr "Vasvrae"
752
-
753
- #: contact-form-7/modules/quiz.php:207
754
- msgid "* quiz|answer (e.g. 1+1=?|2)"
755
- msgstr "vraag|antwoord (bv. 1+1=?|2)"
756
-
757
- #: contact-form-7/modules/select.php:146
758
- msgid "Drop-down menu"
759
- msgstr "Drop-down menu"
760
-
761
- #: contact-form-7/modules/select.php:175
762
- msgid "Allow multiple selections?"
763
- msgstr "Laat meervoudige seleksies toe?"
764
-
765
- #: contact-form-7/modules/select.php:176
766
- msgid "Insert a blank item as the first option?"
767
- msgstr "Voeg 'n leÎ opsie in as die eerste opsie?"
768
-
769
- #: contact-form-7/modules/submit.php:55
770
- msgid "Submit button"
771
- msgstr "Aanvaar knoppie"
772
-
773
- #: contact-form-7/modules/submit.php:73
774
- msgid "Label"
775
- msgstr "Label"
776
-
777
- #: contact-form-7/modules/text.php:129
778
- msgid "Text field"
779
- msgstr "Teks vorm area"
780
-
781
- #: contact-form-7/modules/text.php:132
782
- msgid "Email field"
783
- msgstr "E-pos vorm area"
784
-
785
- #: contact-form-7/modules/text.php:174
786
- msgid "Akismet"
787
- msgstr "Akismet"
788
-
789
- #: contact-form-7/modules/text.php:176
790
- msgid "This field requires author's name"
791
- msgstr "Hierdie vorm area benodig die skrywer se naam"
792
-
793
- #: contact-form-7/modules/text.php:177
794
- msgid "This field requires author's URL"
795
- msgstr "Hierdie vorm area benodig die skrywer se URL"
796
-
797
- #: contact-form-7/modules/text.php:179
798
- msgid "This field requires author's email address"
799
- msgstr "Hierdie vorm area benodig die skrywer se e-pos adres"
800
-
801
- #: contact-form-7/modules/text.php:183
802
- #: contact-form-7/modules/textarea.php:149
803
- msgid "Default value"
804
- msgstr "Bestek waarde"
805
-
806
- #: contact-form-7/modules/textarea.php:118
807
- msgid "Text area"
808
- msgstr "Teks area"
809
-
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
languages/wpcf7-ar.po DELETED
@@ -1,349 +0,0 @@
1
- msgid ""
2
- msgstr ""
3
- "Project-Id-Version: \n"
4
- "Report-Msgid-Bugs-To: \n"
5
- "POT-Creation-Date: 2008-11-08 23:29+0900\n"
6
- "PO-Revision-Date: \n"
7
- "Last-Translator: Takayuki Miyoshi <takayukister@gmail.com>\n"
8
- "Language-Team: www.adsl2u.com <webmaster@adsl2u.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: Arabic\n"
13
- "X-Poedit-Country: SAUDI ARABIA\n"
14
- "X-Poedit-SourceCharset: utf-8\n"
15
-
16
- #: contact-form-7/wp-contact-form-7.php:323
17
- msgid "Contact form"
18
- msgstr "نموذج للاتصال"
19
-
20
- #: contact-form-7/wp-contact-form-7.php:456
21
- #: contact-form-7/includes/admin-panel.php:5
22
- msgid "Contact Form 7"
23
- msgstr "نموذج للاتصال 7"
24
-
25
- #: contact-form-7/wp-contact-form-7.php:494
26
- msgid "optional"
27
- msgstr "اختياري"
28
-
29
- #: contact-form-7/wp-contact-form-7.php:495
30
- msgid "Generate Tag"
31
- msgstr "خيارات النموذج"
32
-
33
- #: contact-form-7/wp-contact-form-7.php:496
34
- msgid "Text field"
35
- msgstr "خانة نص"
36
-
37
- #: contact-form-7/wp-contact-form-7.php:497
38
- msgid "Email field"
39
- msgstr "خانة البريد الألكتروني"
40
-
41
- #: contact-form-7/wp-contact-form-7.php:498
42
- msgid "Text area"
43
- msgstr "منطقة الكتابه"
44
-
45
- #: contact-form-7/wp-contact-form-7.php:499
46
- msgid "Drop-down menu"
47
- msgstr "قائمة منسدلة"
48
-
49
- #: contact-form-7/wp-contact-form-7.php:500
50
- msgid "Checkboxes"
51
- msgstr "صناديق الاختيار"
52
-
53
- #: contact-form-7/wp-contact-form-7.php:501
54
- msgid "Radio buttons"
55
- msgstr "أزرار الاختيار(Radio)"
56
-
57
- #: contact-form-7/wp-contact-form-7.php:502
58
- msgid "Acceptance"
59
- msgstr "القبول"
60
-
61
- #: contact-form-7/wp-contact-form-7.php:503
62
- msgid "Make this checkbox checked by default?"
63
- msgstr "جعل صندوق الخيارات صناديق محددة تلقائياً؟"
64
-
65
- #: contact-form-7/wp-contact-form-7.php:504
66
- msgid "Make this checkbox work inversely?"
67
- msgstr "جعل صندوق الخيارات يعمل عكسياً؟"
68
-
69
- #: contact-form-7/wp-contact-form-7.php:505
70
- msgid "* That means visitor who accepts the term unchecks it."
71
- msgstr "* هذا يعني أن الزائر الذي قبل الاتفاقية لم يقم بتحديد الخيار."
72
-
73
- #: contact-form-7/wp-contact-form-7.php:506
74
- msgid "CAPTCHA"
75
- msgstr "CAPTCHA اختبار الكود"
76
-
77
- #: contact-form-7/wp-contact-form-7.php:507
78
- msgid "Submit button"
79
- msgstr "زر الارسال"
80
-
81
- #: contact-form-7/wp-contact-form-7.php:508
82
- msgid "Name"
83
- msgstr "الاسم"
84
-
85
- #: contact-form-7/wp-contact-form-7.php:509
86
- msgid "Required field?"
87
- msgstr "طلب الخانة؟"
88
-
89
- #: contact-form-7/wp-contact-form-7.php:510
90
- msgid "Allow multiple selections?"
91
- msgstr "السماح بالخيارات المتعددة؟"
92
-
93
- #: contact-form-7/wp-contact-form-7.php:511
94
- msgid "Insert a blank item as the first option?"
95
- msgstr "إدراج عنصر فارغ في بداية الخيار؟"
96
-
97
- #: contact-form-7/wp-contact-form-7.php:512
98
- msgid "Make checkboxes exclusive?"
99
- msgstr "جعل الخيارات حصرية؟"
100
-
101
- #: contact-form-7/wp-contact-form-7.php:513
102
- msgid "Choices"
103
- msgstr "الاختيارات"
104
-
105
- #: contact-form-7/wp-contact-form-7.php:514
106
- msgid "Label"
107
- msgstr "علامة"
108
-
109
- #: contact-form-7/wp-contact-form-7.php:515
110
- msgid "Default value"
111
- msgstr "قيمة افتراضية"
112
-
113
- #: contact-form-7/wp-contact-form-7.php:516
114
- msgid "Akismet"
115
- msgstr "Akismet لصد التعليقات المزعجة"
116
-
117
- #: contact-form-7/wp-contact-form-7.php:517
118
- msgid "This field requires author's name"
119
- msgstr "هذه الخانة تطلب اسم مقدم الطلب"
120
-
121
- #: contact-form-7/wp-contact-form-7.php:518
122
- msgid "This field requires author's URL"
123
- msgstr "هذه الخانة تطلب الموقع الخاص بمقدم الطلب"
124
-
125
- #: contact-form-7/wp-contact-form-7.php:519
126
- msgid "This field requires author's email address"
127
- msgstr "هذه الخانة تطلب البريد الألكتروني من مقدم الطلب"
128
-
129
- #: contact-form-7/wp-contact-form-7.php:520
130
- msgid "Copy and paste this code into the form"
131
- msgstr "انسخ الكود ثم ألصقه في النموذج"
132
-
133
- #: contact-form-7/wp-contact-form-7.php:521
134
- msgid "Foreground color"
135
- msgstr "لون المقدمة"
136
-
137
- #: contact-form-7/wp-contact-form-7.php:522
138
- msgid "Background color"
139
- msgstr "لون الخلفية"
140
-
141
- #: contact-form-7/wp-contact-form-7.php:523
142
- msgid "Image size"
143
- msgstr "حجم الصورة"
144
-
145
- #: contact-form-7/wp-contact-form-7.php:524
146
- msgid "Small"
147
- msgstr "صغير"
148
-
149
- #: contact-form-7/wp-contact-form-7.php:525
150
- msgid "Medium"
151
- msgstr "وسط"
152
-
153
- #: contact-form-7/wp-contact-form-7.php:526
154
- msgid "Large"
155
- msgstr "كبير"
156
-
157
- #: contact-form-7/wp-contact-form-7.php:527
158
- msgid "Image settings"
159
- msgstr "اعدادات الصورة"
160
-
161
- #: contact-form-7/wp-contact-form-7.php:528
162
- msgid "Input field settings"
163
- msgstr "خيارات الإدخال في الخانة"
164
-
165
- #: contact-form-7/wp-contact-form-7.php:529
166
- msgid "For image"
167
- msgstr "للصورة"
168
-
169
- #: contact-form-7/wp-contact-form-7.php:530
170
- msgid "For input field"
171
- msgstr "للإدخالات في الخانة"
172
-
173
- #: contact-form-7/wp-contact-form-7.php:531
174
- msgid "* One choice per line."
175
- msgstr "* خيار في كل سطر."
176
-
177
- #: contact-form-7/wp-contact-form-7.php:532
178
- msgid "Show"
179
- msgstr "اظهار"
180
-
181
- #: contact-form-7/wp-contact-form-7.php:533
182
- msgid "Hide"
183
- msgstr "اخفاء"
184
-
185
- #: contact-form-7/wp-contact-form-7.php:559
186
- msgid "Contact form created."
187
- msgstr "صنع نموذج اتصال."
188
-
189
- #: contact-form-7/wp-contact-form-7.php:562
190
- msgid "Contact form saved."
191
- msgstr "حفظ نموذج اتصال."
192
-
193
- #: contact-form-7/wp-contact-form-7.php:565
194
- msgid "Contact form deleted."
195
- msgstr "حذف نموذج اتصال."
196
-
197
- #: contact-form-7/wp-contact-form-7.php:576
198
- msgid "Untitled"
199
- msgstr "بدون عنوان"
200
-
201
- #: contact-form-7/wp-contact-form-7.php:603
202
- msgid "Your Name"
203
- msgstr "اسمك"
204
-
205
- #: contact-form-7/wp-contact-form-7.php:603
206
- #: contact-form-7/wp-contact-form-7.php:605
207
- msgid "(required)"
208
- msgstr "مطلوب"
209
-
210
- #: contact-form-7/wp-contact-form-7.php:605
211
- msgid "Your Email"
212
- msgstr "بريدك"
213
-
214
- #: contact-form-7/wp-contact-form-7.php:607
215
- msgid "Subject"
216
- msgstr "الموضوع"
217
-
218
- #: contact-form-7/wp-contact-form-7.php:609
219
- msgid "Your Message"
220
- msgstr "رسالتك"
221
-
222
- #: contact-form-7/wp-contact-form-7.php:611
223
- #: contact-form-7/wp-contact-form-7.php:1158
224
- msgid "Send"
225
- msgstr "إرسال"
226
-
227
- #: contact-form-7/wp-contact-form-7.php:659
228
- msgid "Your message was sent successfully. Thanks."
229
- msgstr "لقد تم إرسال رسالتك , شكراً لك."
230
-
231
- #: contact-form-7/wp-contact-form-7.php:661
232
- #: contact-form-7/wp-contact-form-7.php:663
233
- msgid "Failed to send your message. Please try later or contact administrator by other way."
234
- msgstr "فشل في إرسال رسالتك , رجاءً حاول لاحقاً أو قم بالاتصال بمسؤول الموقع بطريقة أخرى"
235
-
236
- #: contact-form-7/wp-contact-form-7.php:665
237
- msgid "Validation errors occurred. Please confirm the fields and submit it again."
238
- msgstr "حدث خطأ في التحقق من البيانات ، رجاءاً قم بإعادة ملء الخانات ومن ثم إعادة الإرسال."
239
-
240
- #: contact-form-7/wp-contact-form-7.php:667
241
- msgid "Please accept the terms to proceed."
242
- msgstr "رجاءً قم بالموافقه على الشروط حتى تستمر."
243
-
244
- #: contact-form-7/wp-contact-form-7.php:669
245
- msgid "Email address seems invalid."
246
- msgstr "يبدو أن البريد الألكتروني خاطئ."
247
-
248
- #: contact-form-7/wp-contact-form-7.php:671
249
- msgid "Please fill the required field."
250
- msgstr "رجاْءً قم بتعبئة جميع الخانات المطلوبة."
251
-
252
- #: contact-form-7/wp-contact-form-7.php:673
253
- msgid "Your entered code is incorrect."
254
- msgstr "الكود الذي أدخلته غير صحيح."
255
-
256
- #: contact-form-7/includes/admin-panel.php:16
257
- msgid "Add new"
258
- msgstr "أضف جديد"
259
-
260
- #: contact-form-7/includes/admin-panel.php:32
261
- msgid "Copy and paste this code into your post content."
262
- msgstr "انسخ الكود ثم ألصقه داخل المحتوى الذي تريده."
263
-
264
- #: contact-form-7/includes/admin-panel.php:38
265
- msgid "Form"
266
- msgstr "نموذج"
267
-
268
- #: contact-form-7/includes/admin-panel.php:42
269
- msgid "Mail"
270
- msgstr "بريد"
271
-
272
- #: contact-form-7/includes/admin-panel.php:44
273
- #: contact-form-7/includes/admin-panel.php:67
274
- msgid "To:"
275
- msgstr "إلى:"
276
-
277
- #: contact-form-7/includes/admin-panel.php:48
278
- #: contact-form-7/includes/admin-panel.php:71
279
- msgid "From:"
280
- msgstr "من:"
281
-
282
- #: contact-form-7/includes/admin-panel.php:52
283
- #: contact-form-7/includes/admin-panel.php:75
284
- msgid "Subject:"
285
- msgstr "الموضوع:"
286
-
287
- #: contact-form-7/includes/admin-panel.php:56
288
- #: contact-form-7/includes/admin-panel.php:79
289
- msgid "Message body:"
290
- msgstr "محتوى الرسالة:"
291
-
292
- #: contact-form-7/includes/admin-panel.php:61
293
- msgid "Mail (2)"
294
- msgstr "بريد (2)"
295
-
296
- #: contact-form-7/includes/admin-panel.php:63
297
- msgid "Use mail (2)"
298
- msgstr "استخدم بريد (2)"
299
-
300
- #: contact-form-7/includes/admin-panel.php:87
301
- msgid "Messages"
302
- msgstr "رسائل"
303
-
304
- #: contact-form-7/includes/admin-panel.php:93
305
- msgid "Sender's message was sent successfully"
306
- msgstr "تم إرسال الرسالة بنجاح"
307
-
308
- #: contact-form-7/includes/admin-panel.php:97
309
- msgid "Sender's message was failed to send"
310
- msgstr "لم يتم إرسال الرسالة"
311
-
312
- #: contact-form-7/includes/admin-panel.php:101
313
- msgid "Akismet judged the sending activity as spamming"
314
- msgstr "لقد تم تصنيف هذه الرسالة من الرسائل المزعجة عن طريق Akismet "
315
-
316
- #: contact-form-7/includes/admin-panel.php:105
317
- msgid "Validation errors occurred"
318
- msgstr "حدثت مشكلة أثناء التحقق من البيانات"
319
-
320
- #: contact-form-7/includes/admin-panel.php:109
321
- msgid "There is a field of term that sender is needed to accept"
322
- msgstr "هناك خانة في الشروط يحتاج المرسل إلى الموافقه عليها."
323
-
324
- #: contact-form-7/includes/admin-panel.php:113
325
- msgid "Email address that sender entered is invalid"
326
- msgstr "البريد الذي أدخله المرسل غير صحيح"
327
-
328
- #: contact-form-7/includes/admin-panel.php:117
329
- msgid "There is a field that sender is needed to fill in"
330
- msgstr "هناك خانة يحتاج المرسل إلى ملأها."
331
-
332
- #: contact-form-7/includes/admin-panel.php:121
333
- msgid "The code that sender entered does not match the CAPTCHA"
334
- msgstr "الكود الذي أدخله المرسل لم يتطابق مع خاصية CAPTCHA"
335
-
336
- #: contact-form-7/includes/admin-panel.php:130
337
- msgid "Save"
338
- msgstr "حفظ"
339
-
340
- #: contact-form-7/includes/admin-panel.php:137
341
- msgid "Delete this contact form"
342
- msgstr "احذف نموذج الاتصال هذا"
343
-
344
- #: contact-form-7/includes/admin-panel.php:138
345
- msgid ""
346
- "You are about to delete this contact form.\n"
347
- " 'Cancel' to stop, 'OK' to delete."
348
- msgstr "انت على وشك حذف نموذج الاتصال المحدد.أضغط \"إلغاء\" أو \"نعم\" للحذف."
349
-
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
languages/wpcf7-bg_BG.po DELETED
@@ -1,289 +0,0 @@
1
- msgid ""
2
- msgstr ""
3
- "Project-Id-Version: Contact Form 7 Bulgarian translation\n"
4
- "POT-Creation-Date: 2007-10-24 13:47+0900\n"
5
- "PO-Revision-Date: 2008-01-26 00:00+0200\n"
6
- "Last-Translator: Iliyan Darganov <iliyan@darganov.com>\n"
7
- "Language-Team: Iliyan Darganov <iliyan@darganov.com>\n"
8
- "MIME-Version: 1.0\n"
9
- "Content-Type: text/plain; charset=utf-8\n"
10
- "Content-Transfer-Encoding: 8bit\n"
11
- "X-Poedit-SourceCharset: utf-8\n"
12
- "X-Poedit-KeywordsList: __;_e;__ngettext:1,2;_c\n"
13
- "X-Poedit-Basepath: ../..\n"
14
- "Plural-Forms: nplurals=1; plural=0;\n"
15
- "X-Poedit-Language: Bulgarian\n"
16
- "X-Poedit-Country: BULGARIA\n"
17
- "X-Poedit-SearchPath-0: contact-form-7\n"
18
-
19
- #: contact-form-7/wp-contact-form-7.php:251
20
- msgid "Contact form"
21
- msgstr "Форма за контакт"
22
-
23
- #: contact-form-7/wp-contact-form-7.php:336
24
- #: contact-form-7/includes/admin-panel.php:5
25
- msgid "Contact Form 7"
26
- msgstr "Contact Form 7"
27
-
28
- #: contact-form-7/wp-contact-form-7.php:352
29
- msgid "optional"
30
- msgstr "незадължително"
31
-
32
- #: contact-form-7/wp-contact-form-7.php:353
33
- msgid "Generate Tag"
34
- msgstr "Генериране на етикет"
35
-
36
- #: contact-form-7/wp-contact-form-7.php:354
37
- msgid "Text field"
38
- msgstr "Текстово поле"
39
-
40
- #: contact-form-7/wp-contact-form-7.php:355
41
- msgid "Email field"
42
- msgstr "Поле за email"
43
-
44
- #: contact-form-7/wp-contact-form-7.php:356
45
- msgid "Text area"
46
- msgstr "Текстова област"
47
-
48
- #: contact-form-7/wp-contact-form-7.php:357
49
- msgid "Drop-down menu"
50
- msgstr "Падащо меню"
51
-
52
- #: contact-form-7/wp-contact-form-7.php:358
53
- msgid "Checkboxes"
54
- msgstr "Отметки"
55
-
56
- #: contact-form-7/wp-contact-form-7.php:359
57
- msgid "Radio buttons"
58
- msgstr "Радио бутони"
59
-
60
- #: contact-form-7/wp-contact-form-7.php:360
61
- msgid "CAPTCHA"
62
- msgstr "CAPTCHA"
63
-
64
- #: contact-form-7/wp-contact-form-7.php:361
65
- msgid "Submit button"
66
- msgstr "Бутон за изпращане"
67
-
68
- #: contact-form-7/wp-contact-form-7.php:362
69
- msgid "Name"
70
- msgstr "Име"
71
-
72
- #: contact-form-7/wp-contact-form-7.php:363
73
- msgid "Required field?"
74
- msgstr "Задължително поле?"
75
-
76
- #: contact-form-7/wp-contact-form-7.php:364
77
- msgid "Allow multiple selections?"
78
- msgstr "Възможност за избор на повече от едно?"
79
-
80
- #: contact-form-7/wp-contact-form-7.php:365
81
- msgid "Insert a blank item as the first option?"
82
- msgstr "Вмъкване на празно поле за първа стойност?"
83
-
84
- #: contact-form-7/wp-contact-form-7.php:366
85
- msgid "Make checkboxes exclusive?"
86
- msgstr "Да бъдат ли отметките специални?"
87
-
88
- #: contact-form-7/wp-contact-form-7.php:367
89
- msgid "Choices"
90
- msgstr "Стойности"
91
-
92
- #: contact-form-7/wp-contact-form-7.php:368
93
- msgid "Label"
94
- msgstr "Надпис"
95
-
96
- #: contact-form-7/wp-contact-form-7.php:369
97
- msgid "Default value"
98
- msgstr "Стойност по подразбиране"
99
-
100
- #: contact-form-7/wp-contact-form-7.php:370
101
- msgid "Akismet"
102
- msgstr "Akismet"
103
-
104
- #: contact-form-7/wp-contact-form-7.php:371
105
- msgid "This field requires author's name"
106
- msgstr "Това поле изисква името на автора"
107
-
108
- #: contact-form-7/wp-contact-form-7.php:372
109
- msgid "This field requires author's URL"
110
- msgstr "Това поле изисква URL адреса на автора"
111
-
112
- #: contact-form-7/wp-contact-form-7.php:373
113
- msgid "This field requires author's email address"
114
- msgstr "Това поле изисква email адреса на автора"
115
-
116
- #: contact-form-7/wp-contact-form-7.php:374
117
- msgid "Copy and paste this code into the form"
118
- msgstr "Копирайте и сложете този код във формата"
119
-
120
- #: contact-form-7/wp-contact-form-7.php:375
121
- msgid "Foreground color"
122
- msgstr "Цвят на текста"
123
-
124
- #: contact-form-7/wp-contact-form-7.php:376
125
- msgid "Background color"
126
- msgstr "Фонов цвят"
127
-
128
- #: contact-form-7/wp-contact-form-7.php:377
129
- msgid "Image size"
130
- msgstr "Размер на изображението"
131
-
132
- #: contact-form-7/wp-contact-form-7.php:378
133
- msgid "Small"
134
- msgstr "Малък"
135
-
136
- #: contact-form-7/wp-contact-form-7.php:379
137
- msgid "Medium"
138
- msgstr "Среден"
139
-
140
- #: contact-form-7/wp-contact-form-7.php:380
141
- msgid "Large"
142
- msgstr "Голям"
143
-
144
- #: contact-form-7/wp-contact-form-7.php:381
145
- msgid "Image settings"
146
- msgstr "Настройки на изображението"
147
-
148
- #: contact-form-7/wp-contact-form-7.php:382
149
- msgid "Input field settings"
150
- msgstr "Настройки на полето за въвеждане"
151
-
152
- #: contact-form-7/wp-contact-form-7.php:383
153
- msgid "For image"
154
- msgstr "За изображение"
155
-
156
- #: contact-form-7/wp-contact-form-7.php:384
157
- msgid "For input field"
158
- msgstr "За поле за въвеждане"
159
-
160
- #: contact-form-7/wp-contact-form-7.php:385
161
- msgid "* One choice per line."
162
- msgstr "* На ред по една стойност."
163
-
164
- #: contact-form-7/wp-contact-form-7.php:404
165
- msgid "Contact form created."
166
- msgstr "Формата за контакт е създадена."
167
-
168
- #: contact-form-7/wp-contact-form-7.php:407
169
- msgid "Contact form saved."
170
- msgstr "Формата за контакт е запазена."
171
-
172
- #: contact-form-7/wp-contact-form-7.php:410
173
- msgid "Contact form deleted."
174
- msgstr "Формата за контакт е изтрита."
175
-
176
- #: contact-form-7/wp-contact-form-7.php:417
177
- msgid "Untitled"
178
- msgstr "Без име"
179
-
180
- #: contact-form-7/wp-contact-form-7.php:441
181
- msgid "Your Name"
182
- msgstr "Вашето име"
183
-
184
- #: contact-form-7/wp-contact-form-7.php:441
185
- #: contact-form-7/wp-contact-form-7.php:443
186
- msgid "(required)"
187
- msgstr "(задължително)"
188
-
189
- #: contact-form-7/wp-contact-form-7.php:443
190
- msgid "Your Email"
191
- msgstr "Вашият Email"
192
-
193
- #: contact-form-7/wp-contact-form-7.php:445
194
- msgid "Subject"
195
- msgstr "Относно"
196
-
197
- #: contact-form-7/wp-contact-form-7.php:447
198
- msgid "Your Message"
199
- msgstr "Вашето съобщение"
200
-
201
- #: contact-form-7/wp-contact-form-7.php:449
202
- #: contact-form-7/wp-contact-form-7.php:893
203
- msgid "Send"
204
- msgstr "Изпращане"
205
-
206
- #: contact-form-7/wp-contact-form-7.php:478
207
- msgid "Your message was sent successfully. Thanks."
208
- msgstr "Вашето съобщение беше успешно изпратено."
209
-
210
- #: contact-form-7/wp-contact-form-7.php:480
211
- msgid "Failed to send your message. Please try later or contact administrator by other way."
212
- msgstr "Неуспешно изпращане на съобщението. Моля, опитайте по-късно или се свържете с администратора."
213
-
214
- #: contact-form-7/wp-contact-form-7.php:482
215
- msgid "Validation errors occurred. Please confirm the fields and submit it again."
216
- msgstr "Възникнаха грешки при проверката. Моля, проверете полетата и изпратете формата отново."
217
-
218
- #: contact-form-7/wp-contact-form-7.php:484
219
- msgid "Email address seems invalid."
220
- msgstr "Изглежда email адресът не е валиден."
221
-
222
- #: contact-form-7/wp-contact-form-7.php:486
223
- msgid "Please fill the required field."
224
- msgstr "Моля, попълнете задължителното поле."
225
-
226
- #: contact-form-7/wp-contact-form-7.php:488
227
- msgid "Your entered code is incorrect."
228
- msgstr "Въведеният код не е верен."
229
-
230
- #: contact-form-7/includes/admin-panel.php:15
231
- msgid "Add new"
232
- msgstr "Добавяне на нова форма за контакт"
233
-
234
- #: contact-form-7/includes/admin-panel.php:28
235
- msgid "Copy and paste this code into your post content."
236
- msgstr "Копирайте и сложете този код в съдържанието на Вашата публикация."
237
-
238
- #: contact-form-7/includes/admin-panel.php:33
239
- msgid "Form"
240
- msgstr "Форма"
241
-
242
- #: contact-form-7/includes/admin-panel.php:37
243
- msgid "Mail"
244
- msgstr "Поща"
245
-
246
- #: contact-form-7/includes/admin-panel.php:39
247
- #: contact-form-7/includes/admin-panel.php:60
248
- msgid "To:"
249
- msgstr "До:"
250
-
251
- #: contact-form-7/includes/admin-panel.php:43
252
- #: contact-form-7/includes/admin-panel.php:64
253
- msgid "From:"
254
- msgstr "От:"
255
-
256
- #: contact-form-7/includes/admin-panel.php:47
257
- #: contact-form-7/includes/admin-panel.php:68
258
- msgid "Subject:"
259
- msgstr "Относно:"
260
-
261
- #: contact-form-7/includes/admin-panel.php:51
262
- #: contact-form-7/includes/admin-panel.php:72
263
- msgid "Message body:"
264
- msgstr "Съобщение:"
265
-
266
- #: contact-form-7/includes/admin-panel.php:56
267
- msgid "Mail (2)"
268
- msgstr "Поща (2)"
269
-
270
- #: contact-form-7/includes/admin-panel.php:58
271
- msgid "Use mail (2)"
272
- msgstr "Използване на Поща (2)"
273
-
274
- #: contact-form-7/includes/admin-panel.php:80
275
- msgid "Save"
276
- msgstr "Запазване"
277
-
278
- #: contact-form-7/includes/admin-panel.php:86
279
- msgid "Delete this contact form"
280
- msgstr "Изтриване на формата за контакт"
281
-
282
- #: contact-form-7/includes/admin-panel.php:87
283
- msgid ""
284
- "You are about to delete this contact form.\n"
285
- " 'Cancel' to stop, 'OK' to delete."
286
- msgstr ""
287
- "Сигурни ли сте, че искате да изтриете тази форма за контакт.\n"
288
- " 'Cancel' за отказ, 'OK' за изтриване."
289
-
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
languages/wpcf7-bn_BD.po DELETED
@@ -1,437 +0,0 @@
1
- msgid ""
2
- msgstr ""
3
- "Project-Id-Version: WP Contact Form 7\n"
4
- "Report-Msgid-Bugs-To: \n"
5
- "POT-Creation-Date: 2009-02-01 05:19+0900\n"
6
- "PO-Revision-Date: 2009-07-22 22:03+0900\n"
7
- "Last-Translator: \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\n"
16
- "X-Poedit-Basepath: ../..\n"
17
- "X-Poedit-SearchPath-0: contact-form-7\n"
18
-
19
- #: contact-form-7/wp-contact-form-7.php:413
20
- msgid "Contact form"
21
- msgstr "যোগাযোগ ফরম"
22
-
23
- #: contact-form-7/wp-contact-form-7.php:582
24
- #: contact-form-7/includes/admin-panel.php:5
25
- msgid "Contact Form 7"
26
- msgstr "যোগাযোগ ফরম ৭"
27
-
28
- #: contact-form-7/wp-contact-form-7.php:605
29
- msgid "optional"
30
- msgstr "ঐচ্ছিক"
31
-
32
- #: contact-form-7/wp-contact-form-7.php:606
33
- msgid "Generate Tag"
34
- msgstr "ট্যাগ তৈরী"
35
-
36
- #: contact-form-7/wp-contact-form-7.php:607
37
- msgid "Text field"
38
- msgstr "লেখার ফিল্ড"
39
-
40
- #: contact-form-7/wp-contact-form-7.php:608
41
- msgid "Email field"
42
- msgstr "ইমেইলের ফিল্ড"
43
-
44
- #: contact-form-7/wp-contact-form-7.php:609
45
- msgid "Text area"
46
- msgstr "লেখার এলাকা"
47
-
48
- #: contact-form-7/wp-contact-form-7.php:610
49
- msgid "Drop-down menu"
50
- msgstr "ড্রপ-ডাউন মেনু"
51
-
52
- #: contact-form-7/wp-contact-form-7.php:611
53
- msgid "Checkboxes"
54
- msgstr "চেক বক্স"
55
-
56
- #: contact-form-7/wp-contact-form-7.php:612
57
- msgid "Radio buttons"
58
- msgstr "রেডিও বাটন"
59
-
60
- #: contact-form-7/wp-contact-form-7.php:613
61
- msgid "Acceptance"
62
- msgstr "গ্রহনযোগ্যতা"
63
-
64
- #: contact-form-7/wp-contact-form-7.php:614
65
- msgid "Make this checkbox checked by default?"
66
- msgstr "ডিফল্ডের জন্য চেকবক্স নির্বাচন করুন?"
67
-
68
- #: contact-form-7/wp-contact-form-7.php:615
69
- msgid "Make this checkbox work inversely?"
70
- msgstr "বিপরীতের জন্য চেকবক্স নির্বাচন করুন?"
71
-
72
- #: contact-form-7/wp-contact-form-7.php:616
73
- msgid "* That means visitor who accepts the term unchecks it."
74
- msgstr "এটার মানে, দর্শনার্থী শর্তাবলী গ্রহন করেছে, আনচেক করুন।"
75
-
76
- #: contact-form-7/wp-contact-form-7.php:617
77
- msgid "CAPTCHA"
78
- msgstr "ক্যাপচা"
79
-
80
- #: contact-form-7/wp-contact-form-7.php:618
81
- msgid "Quiz"
82
- msgstr "কুইজ"
83
-
84
- #: contact-form-7/wp-contact-form-7.php:619
85
- msgid "Quizzes"
86
- msgstr "কুইজ"
87
-
88
- #: contact-form-7/wp-contact-form-7.php:620
89
- msgid "* quiz|answer (e.g. 1+1=?|2)"
90
- msgstr "* কুইজ|উত্তর (উদাহারণ ১+২=?|২)"
91
-
92
- #: contact-form-7/wp-contact-form-7.php:621
93
- msgid "File upload"
94
- msgstr "ফাইল আপলোড"
95
-
96
- #: contact-form-7/wp-contact-form-7.php:622
97
- msgid "Submit button"
98
- msgstr "প্রেরিত বাটন"
99
-
100
- #: contact-form-7/wp-contact-form-7.php:623
101
- msgid "Name"
102
- msgstr "নাম"
103
-
104
- #: contact-form-7/wp-contact-form-7.php:624
105
- msgid "Required field?"
106
- msgstr "দরকারী ফিল্ড?"
107
-
108
- #: contact-form-7/wp-contact-form-7.php:625
109
- msgid "Allow multiple selections?"
110
- msgstr "একাধিক নির্বাচনের অনুমতি দিবেন?"
111
-
112
- #: contact-form-7/wp-contact-form-7.php:626
113
- msgid "Insert a blank item as the first option?"
114
- msgstr "প্রথমটির জন্য খালি অপশন রাখবেন?"
115
-
116
- #: contact-form-7/wp-contact-form-7.php:627
117
- msgid "Make checkboxes exclusive?"
118
- msgstr "চেকবক্স বর্জন করবেন?"
119
-
120
- #: contact-form-7/wp-contact-form-7.php:628
121
- msgid "Choices"
122
- msgstr "পছন্দ"
123
-
124
- #: contact-form-7/wp-contact-form-7.php:629
125
- msgid "Label"
126
- msgstr "মোড়ক"
127
-
128
- #: contact-form-7/wp-contact-form-7.php:630
129
- msgid "Default value"
130
- msgstr "ডিফল্ট মান"
131
-
132
- #: contact-form-7/wp-contact-form-7.php:631
133
- msgid "Akismet"
134
- msgstr "Akismet"
135
-
136
- #: contact-form-7/wp-contact-form-7.php:632
137
- msgid "This field requires author's name"
138
- msgstr "লেখকের নাম এই ফিল্ডে আবশ্যক"
139
-
140
- #: contact-form-7/wp-contact-form-7.php:633
141
- msgid "This field requires author's URL"
142
- msgstr "লেখকের URL এই ফিল্ডে আবশ্যক"
143
-
144
- #: contact-form-7/wp-contact-form-7.php:634
145
- msgid "This field requires author's email address"
146
- msgstr "লেখকের ইমেইল এই ফিল্ডে আবশ্যক"
147
-
148
- #: contact-form-7/wp-contact-form-7.php:635
149
- msgid "Copy this code and paste it into the form left."
150
- msgstr "কোড কপি করে বামের ফিল্ডে পেষ্ট করুন।"
151
-
152
- #: contact-form-7/wp-contact-form-7.php:636
153
- msgid "Foreground color"
154
- msgstr "পুরোভূমির রঙ"
155
-
156
- #: contact-form-7/wp-contact-form-7.php:637
157
- msgid "Background color"
158
- msgstr "পটভূমির রঙ"
159
-
160
- #: contact-form-7/wp-contact-form-7.php:638
161
- msgid "Image size"
162
- msgstr "ছবির সাইজ"
163
-
164
- #: contact-form-7/wp-contact-form-7.php:639
165
- msgid "Small"
166
- msgstr "ছোট"
167
-
168
- #: contact-form-7/wp-contact-form-7.php:640
169
- msgid "Medium"
170
- msgstr "মধ্যম"
171
-
172
- #: contact-form-7/wp-contact-form-7.php:641
173
- msgid "Large"
174
- msgstr "বড়"
175
-
176
- #: contact-form-7/wp-contact-form-7.php:642
177
- msgid "Image settings"
178
- msgstr "ছবি সেটিংস"
179
-
180
- #: contact-form-7/wp-contact-form-7.php:643
181
- msgid "Input field settings"
182
- msgstr "সরবরাহ ফিল্ড সেটিংস"
183
-
184
- #: contact-form-7/wp-contact-form-7.php:644
185
- msgid "For image"
186
- msgstr "ছবির জন্য"
187
-
188
- #: contact-form-7/wp-contact-form-7.php:645
189
- msgid "For input field"
190
- msgstr "সরবরাহ ফিল্ডের জন্য"
191
-
192
- #: contact-form-7/wp-contact-form-7.php:646
193
- msgid "* One choice per line."
194
- msgstr "* প্রতি ফিল্ডের জন্য একটি পছন্দ"
195
-
196
- #: contact-form-7/wp-contact-form-7.php:647
197
- msgid "Show"
198
- msgstr "দেখাও"
199
-
200
- #: contact-form-7/wp-contact-form-7.php:648
201
- msgid "Hide"
202
- msgstr "লুকাও"
203
-
204
- #: contact-form-7/wp-contact-form-7.php:649
205
- msgid "File size limit"
206
- msgstr "ফাইল সাইজ সীমা"
207
-
208
- #: contact-form-7/wp-contact-form-7.php:650
209
- msgid "Acceptable file types"
210
- msgstr "গ্রহনযোগ্য ফাইল টাইপ"
211
-
212
- #: contact-form-7/wp-contact-form-7.php:676
213
- msgid "Contact form created."
214
- msgstr "যোগাযোগ ফরম তৈরী হয়েছে।"
215
-
216
- #: contact-form-7/wp-contact-form-7.php:679
217
- msgid "Contact form saved."
218
- msgstr "যোগাযোগ ফরম সংরক্ষণ করা হয়েছে।"
219
-
220
- #: contact-form-7/wp-contact-form-7.php:682
221
- msgid "Contact form deleted."
222
- msgstr "যোগাযোগ ফরম মুছে দেওয়া হয়েছে।"
223
-
224
- #: contact-form-7/wp-contact-form-7.php:693
225
- msgid "Untitled"
226
- msgstr "শিরোনামহীন"
227
-
228
- #: contact-form-7/wp-contact-form-7.php:720
229
- msgid "Your Name"
230
- msgstr "আপনার নাম"
231
-
232
- #: contact-form-7/wp-contact-form-7.php:720
233
- #: contact-form-7/wp-contact-form-7.php:722
234
- msgid "(required)"
235
- msgstr "(আবশ্যক)"
236
-
237
- #: contact-form-7/wp-contact-form-7.php:722
238
- msgid "Your Email"
239
- msgstr "আপনার ইমেইল"
240
-
241
- #: contact-form-7/wp-contact-form-7.php:724
242
- msgid "Subject"
243
- msgstr "বিষয়"
244
-
245
- #: contact-form-7/wp-contact-form-7.php:726
246
- msgid "Your Message"
247
- msgstr "আপনার বার্তা"
248
-
249
- #: contact-form-7/wp-contact-form-7.php:728
250
- #: contact-form-7/wp-contact-form-7.php:1451
251
- msgid "Send"
252
- msgstr "পাঠান"
253
-
254
- #: contact-form-7/wp-contact-form-7.php:782
255
- msgid "Your message was sent successfully. Thanks."
256
- msgstr "আপনার বার্তাটি সফলভাবে পাঠানো হয়েছে। ধন্যবাদ।"
257
-
258
- #: contact-form-7/wp-contact-form-7.php:784
259
- #: contact-form-7/wp-contact-form-7.php:786
260
- msgid "Failed to send your message. Please try later or contact administrator by other way."
261
- msgstr "আপনার বার্তা পাঠানো যায় নি। দয়া করে আবার চেষ্টা করুন অথবা এ্যডমিনের সাথে যোগাযোগ করুন।"
262
-
263
- #: contact-form-7/wp-contact-form-7.php:788
264
- msgid "Validation errors occurred. Please confirm the fields and submit it again."
265
- msgstr "ভ্যলিডেশনে ত্রুটি ধরা পড়েছে। দয়া করে ফিল্ড নিশ্চিত করে আবার চেষ্টা করুন।"
266
-
267
- #: contact-form-7/wp-contact-form-7.php:790
268
- msgid "Please accept the terms to proceed."
269
- msgstr "দয়া করে এই শর্তগুলো গ্রহণ করুন"
270
-
271
- #: contact-form-7/wp-contact-form-7.php:792
272
- msgid "Email address seems invalid."
273
- msgstr "আপনার ইমেইল মনে হয় ভুল।"
274
-
275
- #: contact-form-7/wp-contact-form-7.php:794
276
- msgid "Please fill the required field."
277
- msgstr "দয়া করে আবশ্যক ফিল্ড পূরণ করুন।"
278
-
279
- #: contact-form-7/wp-contact-form-7.php:796
280
- msgid "Your entered code is incorrect."
281
- msgstr "আপনার লেখা কোডটি ভুল।"
282
-
283
- #: contact-form-7/wp-contact-form-7.php:798
284
- msgid "Your answer is not correct."
285
- msgstr "আপনার উত্তর সঠিক নয়।"
286
-
287
- #: contact-form-7/wp-contact-form-7.php:800
288
- msgid "Failed to upload file."
289
- msgstr "আপলোড করা সফল হয় নি।"
290
-
291
- #: contact-form-7/wp-contact-form-7.php:802
292
- msgid "This file type is not allowed."
293
- msgstr "এই ফাইলটি সমর্থনযোগ্য নয়"
294
-
295
- #: contact-form-7/wp-contact-form-7.php:804
296
- msgid "This file is too large."
297
- msgstr "ফাইলটি বড়।"
298
-
299
- #: contact-form-7/includes/admin-panel.php:20
300
- msgid "Add new"
301
- msgstr "নতুন যোগ করুন"
302
-
303
- #: contact-form-7/includes/admin-panel.php:42
304
- msgid "Copy this code and paste it into your post, page or text widget content."
305
- msgstr "এই কোড গুলো কপি করে আপনার পোস্টে, পেজে কা টেক্স উইডগেটে পোস্ট করুন"
306
-
307
- #: contact-form-7/includes/admin-panel.php:49
308
- #: contact-form-7/includes/admin-panel.php:257
309
- msgid "Save"
310
- msgstr "সংরক্ষণ"
311
-
312
- #: contact-form-7/includes/admin-panel.php:55
313
- msgid "Delete this contact form"
314
- msgstr "এই যোগাযোগ ফরম মুছে ফেলুন"
315
-
316
- #: contact-form-7/includes/admin-panel.php:56
317
- msgid ""
318
- "You are about to delete this contact form.\n"
319
- " 'Cancel' to stop, 'OK' to delete."
320
- msgstr ""
321
- "আপনি যোগাযোগ ফরম মুছে ফেলছেন।.\n"
322
- " বন্ধের জন্য ‘বন্ধ’করুন এবং মোছার জন্য ‘ওকে’ করুন।"
323
-
324
- #: contact-form-7/includes/admin-panel.php:70
325
- msgid "Form"
326
- msgstr "প্রেরক"
327
-
328
- #: contact-form-7/includes/admin-panel.php:90
329
- msgid "Mail"
330
- msgstr "মেইল"
331
-
332
- #: contact-form-7/includes/admin-panel.php:97
333
- #: contact-form-7/includes/admin-panel.php:149
334
- msgid "To:"
335
- msgstr "প্রতি:"
336
-
337
- #: contact-form-7/includes/admin-panel.php:101
338
- #: contact-form-7/includes/admin-panel.php:153
339
- msgid "From:"
340
- msgstr "প্রেরক:"
341
-
342
- #: contact-form-7/includes/admin-panel.php:105
343
- #: contact-form-7/includes/admin-panel.php:157
344
- msgid "Subject:"
345
- msgstr "বিষয়:"
346
-
347
- #: contact-form-7/includes/admin-panel.php:110
348
- #: contact-form-7/includes/admin-panel.php:162
349
- msgid "File attachments:"
350
- msgstr "ফাইল সংযুক্তি:"
351
-
352
- #: contact-form-7/includes/admin-panel.php:112
353
- #: contact-form-7/includes/admin-panel.php:164
354
- msgid "(You need WordPress 2.7 or greater to use this feature)"
355
- msgstr "(আপনার ওয়ার্ডপ্রেস ২.৭ বা তার পরের সংস্করণ দরকার)"
356
-
357
- #: contact-form-7/includes/admin-panel.php:120
358
- #: contact-form-7/includes/admin-panel.php:172
359
- msgid "Use HTML content type"
360
- msgstr "HTML বিষয় ব্যবহার"
361
-
362
- #: contact-form-7/includes/admin-panel.php:125
363
- #: contact-form-7/includes/admin-panel.php:177
364
- msgid "Message body:"
365
- msgstr "বার্তা লেখার যায়গা:"
366
-
367
- #: contact-form-7/includes/admin-panel.php:136
368
- msgid "Mail (2)"
369
- msgstr "ইমেইল (২)"
370
-
371
- #: contact-form-7/includes/admin-panel.php:143
372
- msgid "Use mail (2)"
373
- msgstr "ব্যবহার মেইল (২)"
374
-
375
- #: contact-form-7/includes/admin-panel.php:188
376
- msgid "Messages"
377
- msgstr "বার্তা"
378
-
379
- #: contact-form-7/includes/admin-panel.php:196
380
- msgid "Sender's message was sent successfully"
381
- msgstr "আপনার বার্তাটি সফলতার সাথে পাঠানো হয়েছে।"
382
-
383
- #: contact-form-7/includes/admin-panel.php:200
384
- msgid "Sender's message was failed to send"
385
- msgstr "আপনার বার্তাটি পাঠানো যায়নি।"
386
-
387
- #: contact-form-7/includes/admin-panel.php:204
388
- msgid "Akismet judged the sending activity as spamming"
389
- msgstr "Akismet এর হিসাবে এটি স্প্যাম হিসাবে গণ্য হবে।"
390
-
391
- #: contact-form-7/includes/admin-panel.php:208
392
- msgid "Validation errors occurred"
393
- msgstr "ভ্যলিডেশনে ত্রুটি ধরা পড়েছে"
394
-
395
- #: contact-form-7/includes/admin-panel.php:212
396
- msgid "There is a field that sender is needed to fill in"
397
- msgstr "প্রেরকের পূরণ করা দরকার এমন ফিল্ড খালি আছে"
398
-
399
- #: contact-form-7/includes/admin-panel.php:216
400
- msgid "Email address that sender entered is invalid"
401
- msgstr "প্রেরকের ইমেইল ঠিকানা সঠিক নয়"
402
-
403
- #: contact-form-7/includes/admin-panel.php:220
404
- msgid "There is a field of term that sender is needed to accept"
405
- msgstr "এমন কিছু ফিল্ড আছে যেগুলো প্রেরকের গ্রহণ করা দরকার"
406
-
407
- #: contact-form-7/includes/admin-panel.php:224
408
- msgid "Sender doesn't enter the correct answer to the quiz"
409
- msgstr "প্রেরকের কুইজের সঠিক উত্তর দেয় নি"
410
-
411
- #: contact-form-7/includes/admin-panel.php:228
412
- msgid "The code that sender entered does not match the CAPTCHA"
413
- msgstr "প্রেরকের লেখা ক্যাপচা কোড সঠিক নয়"
414
-
415
- #: contact-form-7/includes/admin-panel.php:232
416
- msgid "Uploading a file fails for any reason"
417
- msgstr "অন্য কোন কারণে আপলোড সফল হয় নি"
418
-
419
- #: contact-form-7/includes/admin-panel.php:236
420
- msgid "Uploaded file is not allowed file type"
421
- msgstr "আপলোড করা ফাইলটি সমর্থনযোগ্য নয়"
422
-
423
- #: contact-form-7/includes/admin-panel.php:240
424
- msgid "Uploaded file is too large"
425
- msgstr "আপলোড করা ফাইল বড় হয়েছে"
426
-
427
- #~ msgid "Form content"
428
- #~ msgstr "Contenido del formulario"
429
- #~ msgid "Mail template"
430
- #~ msgstr "Plantilla del email"
431
- #~ msgid "Sender field:"
432
- #~ msgstr "Campo de remitente:"
433
- #~ msgid "Recipient address:"
434
- #~ msgstr "Dirección del destinatario:"
435
- #~ msgid "Insert"
436
- #~ msgstr "Insertar"
437
-
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
languages/wpcf7-bs.po DELETED
@@ -1,427 +0,0 @@
1
- msgid ""
2
- msgstr ""
3
- "Project-Id-Version: \n"
4
- "Report-Msgid-Bugs-To: \n"
5
- "POT-Creation-Date: 2009-03-03 16:40+0900\n"
6
- "PO-Revision-Date: \n"
7
- "Last-Translator: Vedran <tvedrantz@gmail.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"
12
- "X-Poedit-Language: Bosnian\n"
13
- "X-Poedit-Country: UNITED STATES\n"
14
- "X-Poedit-SourceCharset: utf-8\n"
15
-
16
- #: contact-form-7/wp-contact-form-7.php:413
17
- msgid "Contact form"
18
- msgstr "Kontaktna forma"
19
-
20
- #: contact-form-7/wp-contact-form-7.php:582
21
- #: contact-form-7/includes/admin-panel.php:5
22
- msgid "Contact Form 7"
23
- msgstr "Kontaktna Forma 7"
24
-
25
- #: contact-form-7/wp-contact-form-7.php:605
26
- msgid "optional"
27
- msgstr "opcionalno"
28
-
29
- #: contact-form-7/wp-contact-form-7.php:606
30
- msgid "Generate Tag"
31
- msgstr "Generiraj Oznaku"
32
-
33
- #: contact-form-7/wp-contact-form-7.php:607
34
- msgid "Text field"
35
- msgstr "Tekst polje"
36
-
37
- #: contact-form-7/wp-contact-form-7.php:608
38
- msgid "Email field"
39
- msgstr "Email polje"
40
-
41
- #: contact-form-7/wp-contact-form-7.php:609
42
- msgid "Text area"
43
- msgstr "Tekst područje"
44
-
45
- #: contact-form-7/wp-contact-form-7.php:610
46
- msgid "Drop-down menu"
47
- msgstr "Padajući meni"
48
-
49
- #: contact-form-7/wp-contact-form-7.php:611
50
- msgid "Checkboxes"
51
- msgstr "Izbornici"
52
-
53
- #: contact-form-7/wp-contact-form-7.php:612
54
- msgid "Radio buttons"
55
- msgstr "Radio dugmad"
56
-
57
- #: contact-form-7/wp-contact-form-7.php:613
58
- msgid "Acceptance"
59
- msgstr "Prihvat"
60
-
61
- #: contact-form-7/wp-contact-form-7.php:614
62
- msgid "Make this checkbox checked by default?"
63
- msgstr "Postavi izbornik za standardni?"
64
-
65
- #: contact-form-7/wp-contact-form-7.php:615
66
- msgid "Make this checkbox work inversely?"
67
- msgstr "Ucini da izbornik radi obrnuto?"
68
-
69
- #: contact-form-7/wp-contact-form-7.php:616
70
- msgid "* That means visitor who accepts the term unchecks it."
71
- msgstr "* Znači da korisnik koji prihvati uvijet deselektira ga."
72
-
73
- #: contact-form-7/wp-contact-form-7.php:617
74
- msgid "CAPTCHA"
75
- msgstr "CAPTCHA"
76
-
77
- #: contact-form-7/wp-contact-form-7.php:618
78
- msgid "Quiz"
79
- msgstr "Kviz"
80
-
81
- #: contact-form-7/wp-contact-form-7.php:619
82
- msgid "Quizzes"
83
- msgstr "Kivizovi"
84
-
85
- #: contact-form-7/wp-contact-form-7.php:620
86
- msgid "* quiz|answer (e.g. 1+1=?|2)"
87
- msgstr "* Kviz/Odgovor (Npr. 1+1=?/2)"
88
-
89
- #: contact-form-7/wp-contact-form-7.php:621
90
- msgid "File upload"
91
- msgstr "Uploadiraj datoteku"
92
-
93
- #: contact-form-7/wp-contact-form-7.php:622
94
- msgid "bytes"
95
- msgstr "Bajtova"
96
-
97
- #: contact-form-7/wp-contact-form-7.php:623
98
- msgid "Submit button"
99
- msgstr "Posalji Dugme"
100
-
101
- #: contact-form-7/wp-contact-form-7.php:624
102
- msgid "Name"
103
- msgstr "Vaše Ime"
104
-
105
- #: contact-form-7/wp-contact-form-7.php:625
106
- msgid "Required field?"
107
- msgstr "Mandatorno polje?"
108
-
109
- #: contact-form-7/wp-contact-form-7.php:626
110
- msgid "Allow multiple selections?"
111
- msgstr "Omogući višestruki izbor?"
112
-
113
- #: contact-form-7/wp-contact-form-7.php:627
114
- msgid "Insert a blank item as the first option?"
115
- msgstr "Insertiraj praznu stavku kao početni izbor?"
116
-
117
- #: contact-form-7/wp-contact-form-7.php:628
118
- msgid "Make checkboxes exclusive?"
119
- msgstr "Učini izbornike ekskluzivnim ?"
120
-
121
- #: contact-form-7/wp-contact-form-7.php:629
122
- msgid "Choices"
123
- msgstr "Izbori"
124
-
125
- #: contact-form-7/wp-contact-form-7.php:630
126
- msgid "Label"
127
- msgstr "Labela"
128
-
129
- #: contact-form-7/wp-contact-form-7.php:631
130
- msgid "Default value"
131
- msgstr "Početna vrijednost"
132
-
133
- #: contact-form-7/wp-contact-form-7.php:632
134
- msgid "Akismet"
135
- msgstr "Askimet"
136
-
137
- #: contact-form-7/wp-contact-form-7.php:633
138
- msgid "This field requires author's name"
139
- msgstr "Polje zahtjeva vaše ime"
140
-
141
- #: contact-form-7/wp-contact-form-7.php:634
142
- msgid "This field requires author's URL"
143
- msgstr "Polje zahtjeva web adresu autora"
144
-
145
- #: contact-form-7/wp-contact-form-7.php:635
146
- msgid "This field requires author's email address"
147
- msgstr "Ovo polje zahtijeva E-mail adresu autorovu"
148
-
149
- #: contact-form-7/wp-contact-form-7.php:636
150
- msgid "Copy this code and paste it into the form left."
151
- msgstr "Kopiraj kod i pejstiraj u formu lijevo"
152
-
153
- #: contact-form-7/wp-contact-form-7.php:637
154
- msgid "Foreground color"
155
- msgstr "Boja forgraunda"
156
-
157
- #: contact-form-7/wp-contact-form-7.php:638
158
- msgid "Background color"
159
- msgstr "Boja bekgraunda"
160
-
161
- #: contact-form-7/wp-contact-form-7.php:639
162
- msgid "Image size"
163
- msgstr "Veličina ilustracije"
164
-
165
- #: contact-form-7/wp-contact-form-7.php:640
166
- msgid "Small"
167
- msgstr "Mala"
168
-
169
- #: contact-form-7/wp-contact-form-7.php:641
170
- msgid "Medium"
171
- msgstr "Srednja"
172
-
173
- #: contact-form-7/wp-contact-form-7.php:642
174
- msgid "Large"
175
- msgstr "Velika"
176
-
177
- #: contact-form-7/wp-contact-form-7.php:643
178
- msgid "Image settings"
179
- msgstr "Postavke ilustracije"
180
-
181
- #: contact-form-7/wp-contact-form-7.php:644
182
- msgid "Input field settings"
183
- msgstr "Postavke polja unosa"
184
-
185
- #: contact-form-7/wp-contact-form-7.php:645
186
- msgid "For image"
187
- msgstr "Za ilustraciju"
188
-
189
- #: contact-form-7/wp-contact-form-7.php:646
190
- msgid "For input field"
191
- msgstr "Za polje unosa"
192
-
193
- #: contact-form-7/wp-contact-form-7.php:647
194
- msgid "* One choice per line."
195
- msgstr "* Jedan izbor po liniji"
196
-
197
- #: contact-form-7/wp-contact-form-7.php:648
198
- msgid "Show"
199
- msgstr "Pokaži"
200
-
201
- #: contact-form-7/wp-contact-form-7.php:649
202
- msgid "Hide"
203
- msgstr "Prikrij"
204
-
205
- #: contact-form-7/wp-contact-form-7.php:650
206
- msgid "File size limit"
207
- msgstr "Limit veličine fajla"
208
-
209
- #: contact-form-7/wp-contact-form-7.php:651
210
- msgid "Acceptable file types"
211
- msgstr "Prihvatljive ekstenzije fajlova"
212
-
213
- #: contact-form-7/wp-contact-form-7.php:677
214
- msgid "Contact form created."
215
- msgstr "Kreirana kontaktna forma"
216
-
217
- #: contact-form-7/wp-contact-form-7.php:680
218
- msgid "Contact form saved."
219
- msgstr "Kontaktna forma snimljena"
220
-
221
- #: contact-form-7/wp-contact-form-7.php:683
222
- msgid "Contact form deleted."
223
- msgstr "Kontaktna forma izbrisana."
224
-
225
- #: contact-form-7/wp-contact-form-7.php:694
226
- msgid "Untitled"
227
- msgstr "Neimenovano"
228
-
229
- #: contact-form-7/wp-contact-form-7.php:721
230
- msgid "Your Name"
231
- msgstr "Vaše ime"
232
-
233
- #: contact-form-7/wp-contact-form-7.php:721
234
- #: contact-form-7/wp-contact-form-7.php:723
235
- msgid "(required)"
236
- msgstr "(mandatorno)"
237
-
238
- #: contact-form-7/wp-contact-form-7.php:723
239
- msgid "Your Email"
240
- msgstr "Vaš Email"
241
-
242
- #: contact-form-7/wp-contact-form-7.php:725
243
- msgid "Subject"
244
- msgstr "Predmet"
245
-
246
- #: contact-form-7/wp-contact-form-7.php:727
247
- msgid "Your Message"
248
- msgstr "Vaša Poruka"
249
-
250
- #: contact-form-7/wp-contact-form-7.php:729
251
- #: contact-form-7/wp-contact-form-7.php:1458
252
- msgid "Send"
253
- msgstr "Šalji"
254
-
255
- #: contact-form-7/wp-contact-form-7.php:783
256
- msgid "Your message was sent successfully. Thanks."
257
- msgstr "Vaša poruka je poslana uspjesno. Hvala Vam."
258
-
259
- #: contact-form-7/wp-contact-form-7.php:785
260
- #: contact-form-7/wp-contact-form-7.php:787
261
- msgid "Failed to send your message. Please try later or contact administrator by other way."
262
- msgstr "Slanje poruke neuspješno. Molimo vas pokušajte kasnije ili kontaktirajte administratora stranice na drugi način."
263
-
264
- #: contact-form-7/wp-contact-form-7.php:789
265
- msgid "Validation errors occurred. Please confirm the fields and submit it again."
266
- msgstr "Desila se greška pri validiranju. Molimo potvrdite polja i pošaljite ponovo ."
267
-
268
- #: contact-form-7/wp-contact-form-7.php:791
269
- msgid "Please accept the terms to proceed."
270
- msgstr "Molimo prihvatite uslove da biste nastavili."
271
-
272
- #: contact-form-7/wp-contact-form-7.php:793
273
- msgid "Email address seems invalid."
274
- msgstr "Email adresa nije valjana"
275
-
276
- #: contact-form-7/wp-contact-form-7.php:795
277
- msgid "Please fill the required field."
278
- msgstr "Molimo ispunite mandatorno polje."
279
-
280
- #: contact-form-7/wp-contact-form-7.php:797
281
- msgid "Your entered code is incorrect."
282
- msgstr "Kod koji ste unijeli nije tačan."
283
-
284
- #: contact-form-7/wp-contact-form-7.php:799
285
- msgid "Your answer is not correct."
286
- msgstr "Vaš odgovor nije tačan."
287
-
288
- #: contact-form-7/wp-contact-form-7.php:801
289
- msgid "Failed to upload file."
290
- msgstr "Uploadiranje datoteke neuspješno."
291
-
292
- #: contact-form-7/wp-contact-form-7.php:803
293
- msgid "This file type is not allowed."
294
- msgstr "Ekstenzija fajla nije doyvoljenai."
295
-
296
- #: contact-form-7/wp-contact-form-7.php:805
297
- msgid "This file is too large."
298
- msgstr "Ovaj fajl je prevelik."
299
-
300
- #: contact-form-7/includes/admin-panel.php:20
301
- msgid "Add new"
302
- msgstr "Dodaj novi"
303
-
304
- #: contact-form-7/includes/admin-panel.php:42
305
- msgid "Copy this code and paste it into your post, page or text widget content."
306
- msgstr "Kopiraj ovaj kod i pejstiraj ga u sadržaj koji želiš poslati, stranicu ili tekst widget."
307
-
308
- #: contact-form-7/includes/admin-panel.php:49
309
- #: contact-form-7/includes/admin-panel.php:257
310
- msgid "Save"
311
- msgstr "Snimi"
312
-
313
- #: contact-form-7/includes/admin-panel.php:55
314
- msgid "Delete this contact form"
315
- msgstr "Obriši ovu kontaktnu formu"
316
-
317
- #: contact-form-7/includes/admin-panel.php:56
318
- msgid ""
319
- "You are about to delete this contact form.\n"
320
- " 'Cancel' to stop, 'OK' to delete."
321
- msgstr ""
322
- "Ovime se briše kontaktni obrazac. \n"
323
- "'odustani' za prekid, 'OK' za brisanje."
324
-
325
- #: contact-form-7/includes/admin-panel.php:70
326
- msgid "Form"
327
- msgstr "Forma"
328
-
329
- #: contact-form-7/includes/admin-panel.php:90
330
- msgid "Mail"
331
- msgstr "Pošta"
332
-
333
- #: contact-form-7/includes/admin-panel.php:97
334
- #: contact-form-7/includes/admin-panel.php:149
335
- msgid "To:"
336
- msgstr "Za:"
337
-
338
- #: contact-form-7/includes/admin-panel.php:101
339
- #: contact-form-7/includes/admin-panel.php:153
340
- msgid "From:"
341
- msgstr "Od:"
342
-
343
- #: contact-form-7/includes/admin-panel.php:105
344
- #: contact-form-7/includes/admin-panel.php:157
345
- msgid "Subject:"
346
- msgstr "Predmet:"
347
-
348
- #: contact-form-7/includes/admin-panel.php:110
349
- #: contact-form-7/includes/admin-panel.php:162
350
- msgid "File attachments:"
351
- msgstr "Dodani fajl"
352
-
353
- #: contact-form-7/includes/admin-panel.php:112
354
- #: contact-form-7/includes/admin-panel.php:164
355
- msgid "(You need WordPress 2.7 or greater to use this feature)"
356
- msgstr "(Potreban WordPress 2.7 ili veći za korištenje ove mogućnosti)"
357
-
358
- #: contact-form-7/includes/admin-panel.php:120
359
- #: contact-form-7/includes/admin-panel.php:172
360
- msgid "Use HTML content type"
361
- msgstr "Koristi HTML"
362
-
363
- #: contact-form-7/includes/admin-panel.php:125
364
- #: contact-form-7/includes/admin-panel.php:177
365
- msgid "Message body:"
366
- msgstr "Tijelo Poruke"
367
-
368
- #: contact-form-7/includes/admin-panel.php:136
369
- msgid "Mail (2)"
370
- msgstr "Pošta (2)"
371
-
372
- #: contact-form-7/includes/admin-panel.php:143
373
- msgid "Use mail (2)"
374
- msgstr "Koristi poštu (2)"
375
-
376
- #: contact-form-7/includes/admin-panel.php:188
377
- msgid "Messages"
378
- msgstr "Poruke"
379
-
380
- #: contact-form-7/includes/admin-panel.php:196
381
- msgid "Sender's message was sent successfully"
382
- msgstr "Pošiljateljeva poruka je poslana uspješno"
383
-
384
- #: contact-form-7/includes/admin-panel.php:200
385
- msgid "Sender's message was failed to send"
386
- msgstr "Pošiljateljeva poruka nije poslana"
387
-
388
- #: contact-form-7/includes/admin-panel.php:204
389
- msgid "Akismet judged the sending activity as spamming"
390
- msgstr "Akismet je prosuđuje da je poruka spam"
391
-
392
- #: contact-form-7/includes/admin-panel.php:208
393
- msgid "Validation errors occurred"
394
- msgstr "Desile su se poruke u validaciji"
395
-
396
- #: contact-form-7/includes/admin-panel.php:212
397
- msgid "There is a field that sender is needed to fill in"
398
- msgstr "Postoji polje koje mora biti ispunjeno"
399
-
400
- #: contact-form-7/includes/admin-panel.php:216
401
- msgid "Email address that sender entered is invalid"
402
- msgstr "Unesena Email adresa nije validna"
403
-
404
- #: contact-form-7/includes/admin-panel.php:220
405
- msgid "There is a field of term that sender is needed to accept"
406
- msgstr "Postoji polje koje pošiljatelj mora prihvatiti"
407
-
408
- #: contact-form-7/includes/admin-panel.php:224
409
- msgid "Sender doesn't enter the correct answer to the quiz"
410
- msgstr "Pošiljatelj nije točno odgovorio na pitanje u kviyu"
411
-
412
- #: contact-form-7/includes/admin-panel.php:228
413
- msgid "The code that sender entered does not match the CAPTCHA"
414
- msgstr "Unešen kod se ne podudara s CAPTCHA-om"
415
-
416
- #: contact-form-7/includes/admin-panel.php:232
417
- msgid "Uploading a file fails for any reason"
418
- msgstr "Uploadiranje fajla neuspješno iz nekog razloga."
419
-
420
- #: contact-form-7/includes/admin-panel.php:236
421
- msgid "Uploaded file is not allowed file type"
422
- msgstr "Ekstenyija uploadiranog fajla nije doyvoljena"
423
-
424
- #: contact-form-7/includes/admin-panel.php:240
425
- msgid "Uploaded file is too large"
426
- msgstr "Uploadirani fajl je prevelik"
427
-
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
languages/wpcf7-ca.po DELETED
@@ -1,516 +0,0 @@
1
- msgid ""
2
- msgstr ""
3
- "Project-Id-Version: WP Contact Form 7\n"
4
- "Report-Msgid-Bugs-To: \n"
5
- "POT-Creation-Date: 2009-08-30 19:21+0900\n"
6
- "PO-Revision-Date: 2009-09-01 23:48+0100\n"
7
- "Last-Translator: Robert Buj Gelonch <robert.buj@gmail.com>\n"
8
- "Language-Team: Robert Buj <robert.buj@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: Catalan\n"
13
- "X-Poedit-Country: SPAIN\n"
14
- "X-Poedit-SourceCharset: utf-8\n"
15
- "X-Poedit-KeywordsList: __;_e\n"
16
- "X-Poedit-Basepath: ../..\n"
17
- "X-Poedit-SearchPath-0: contact-form-7\n"
18
-
19
- #: contact-form-7/admin/admin-panel.php:9
20
- #, php-format
21
- msgid "<strong>The database table for Contact Form 7 does not exist.</strong> You must <a href=\"%s\">create the table</a> for it to work."
22
- msgstr "<strong>La taula de la base de dades per Contact Form 7 no existeix.</strong> Heu de <a href=\"%s\">crear la taula</a> per que funcioni."
23
-
24
- #: contact-form-7/admin/admin-panel.php:12
25
- msgid "<strong>The database table for Contact Form 7 does not exist.</strong>"
26
- msgstr "<strong>La taula de la base de dades per Contact Form 7 no existeix.</strong>"
27
-
28
- #: contact-form-7/admin/admin-panel.php:17
29
- #: contact-form-7/admin/admin-panel.php:30
30
- #: contact-form-7/admin/admin.php:119
31
- msgid "Contact Form 7"
32
- msgstr "Contact Form 7"
33
-
34
- #: contact-form-7/admin/admin-panel.php:45
35
- msgid "Add new"
36
- msgstr "Afegir nou"
37
-
38
- #: contact-form-7/admin/admin-panel.php:67
39
- msgid "Copy this code and paste it into your post, page or text widget content."
40
- msgstr "Copieu aquest codi i enganxe-ho a la vostra entrada, pàgina o enginy."
41
-
42
- #: contact-form-7/admin/admin-panel.php:75
43
- #: contact-form-7/admin/admin-panel.php:332
44
- msgid "Save"
45
- msgstr "Desar"
46
-
47
- #: contact-form-7/admin/admin-panel.php:82
48
- msgid "Copy"
49
- msgstr "Copiar"
50
-
51
- #: contact-form-7/admin/admin-panel.php:87
52
- msgid "Delete"
53
- msgstr "Eliminar"
54
-
55
- #: contact-form-7/admin/admin-panel.php:89
56
- msgid ""
57
- "You are about to delete this contact form.\n"
58
- " 'Cancel' to stop, 'OK' to delete."
59
- msgstr ""
60
- "El formulari de contacte serà esborrat.\n"
61
- " 'Cancel·lar' per anular, 'OK' per confirmar."
62
-
63
- #: contact-form-7/admin/admin-panel.php:102
64
- msgid "Form"
65
- msgstr "Formulari"
66
-
67
- #: contact-form-7/admin/admin-panel.php:120
68
- msgid "Mail"
69
- msgstr "Correu"
70
-
71
- #: contact-form-7/admin/admin-panel.php:127
72
- #: contact-form-7/admin/admin-panel.php:188
73
- msgid "To:"
74
- msgstr "A:"
75
-
76
- #: contact-form-7/admin/admin-panel.php:132
77
- #: contact-form-7/admin/admin-panel.php:193
78
- msgid "From:"
79
- msgstr "De:"
80
-
81
- #: contact-form-7/admin/admin-panel.php:137
82
- #: contact-form-7/admin/admin-panel.php:198
83
- msgid "Subject:"
84
- msgstr "Assumpte:"
85
-
86
- #: contact-form-7/admin/admin-panel.php:144
87
- #: contact-form-7/admin/admin-panel.php:205
88
- msgid "Additional headers:"
89
- msgstr "Capçaleres addicionals:"
90
-
91
- #: contact-form-7/admin/admin-panel.php:149
92
- #: contact-form-7/admin/admin-panel.php:210
93
- msgid "File attachments:"
94
- msgstr "Fitxers adjunts:"
95
-
96
- #: contact-form-7/admin/admin-panel.php:157
97
- #: contact-form-7/admin/admin-panel.php:218
98
- msgid "Use HTML content type"
99
- msgstr "Utilitzar tipus de contingut HTML"
100
-
101
- #: contact-form-7/admin/admin-panel.php:164
102
- #: contact-form-7/admin/admin-panel.php:225
103
- msgid "Message body:"
104
- msgstr "Cos del missatge:"
105
-
106
- #: contact-form-7/admin/admin-panel.php:174
107
- msgid "Mail (2)"
108
- msgstr "Correu (2)"
109
-
110
- #: contact-form-7/admin/admin-panel.php:180
111
- msgid "Use mail (2)"
112
- msgstr "Utilitzar correu (2)"
113
-
114
- #: contact-form-7/admin/admin-panel.php:235
115
- msgid "Messages"
116
- msgstr "Missatges"
117
-
118
- #: contact-form-7/admin/admin-panel.php:243
119
- msgid "Sender's message was sent successfully"
120
- msgstr "El vostre missatge s'ha enviat correctament"
121
-
122
- #: contact-form-7/admin/admin-panel.php:248
123
- msgid "Sender's message was failed to send"
124
- msgstr "El missatge del remitent ha produït un error a l'enviar"
125
-
126
- #: contact-form-7/admin/admin-panel.php:253
127
- msgid "Akismet judged the sending activity as spamming"
128
- msgstr "Akismet jutja l'activitat d'enviament per spam"
129
-
130
- #: contact-form-7/admin/admin-panel.php:258
131
- msgid "Validation errors occurred"
132
- msgstr "S'han produït errors de validació"
133
-
134
- #: contact-form-7/admin/admin-panel.php:263
135
- msgid "There is a field that sender is needed to fill in"
136
- msgstr "Hi ha un camp que el remitent és necessari que ompli"
137
-
138
- #: contact-form-7/admin/admin-panel.php:268
139
- msgid "Email address that sender entered is invalid"
140
- msgstr "L'adreça e-mail introduïda sembla que no sigui vàlida"
141
-
142
- #: contact-form-7/admin/admin-panel.php:273
143
- msgid "There is a field of term that sender is needed to accept"
144
- msgstr "Hi ha un camp de terme que el remitent és necessari que accepti"
145
-
146
- #: contact-form-7/admin/admin-panel.php:278
147
- msgid "Sender doesn't enter the correct answer to the quiz"
148
- msgstr "El remitent no ha introduït una resposta vàlida a l'endevinalla"
149
-
150
- #: contact-form-7/admin/admin-panel.php:283
151
- msgid "The code that sender entered does not match the CAPTCHA"
152
- msgstr "El codi que el remitent ha introduït no coincideix amb CAPTCHA"
153
-
154
- #: contact-form-7/admin/admin-panel.php:288
155
- msgid "Uploading a file fails for any reason"
156
- msgstr "Pujar un fitxer ha fallat per qualsevol motiu"
157
-
158
- #: contact-form-7/admin/admin-panel.php:293
159
- msgid "Uploaded file is not allowed file type"
160
- msgstr "El fitxer pujat és un tipus de fitxer permès"
161
-
162
- #: contact-form-7/admin/admin-panel.php:298
163
- msgid "Uploaded file is too large"
164
- msgstr "El fitxer pujat és massa gran"
165
-
166
- #: contact-form-7/admin/admin-panel.php:303
167
- msgid "Uploading a file fails for PHP error"
168
- msgstr "Pujar un fitxer ha fallat per un error PHP"
169
-
170
- #: contact-form-7/admin/admin-panel.php:314
171
- msgid "Additional Settings"
172
- msgstr "Preferències addicionals"
173
-
174
- #: contact-form-7/admin/admin.php:119
175
- msgid "Contact"
176
- msgstr "Contactar"
177
-
178
- #: contact-form-7/admin/admin.php:123
179
- msgid "Edit Contact Forms"
180
- msgstr "Editar formularis de contacte"
181
-
182
- #: contact-form-7/admin/admin.php:123
183
- msgid "Edit"
184
- msgstr "Editar"
185
-
186
- #: contact-form-7/admin/admin.php:178
187
- msgid "optional"
188
- msgstr "opcional"
189
-
190
- #: contact-form-7/admin/admin.php:179
191
- msgid "Generate Tag"
192
- msgstr "Generar etiqueta"
193
-
194
- #: contact-form-7/admin/admin.php:180
195
- msgid "Text field"
196
- msgstr "Quadre de text"
197
-
198
- #: contact-form-7/admin/admin.php:181
199
- msgid "Email field"
200
- msgstr "Quadre de text e-mail"
201
-
202
- #: contact-form-7/admin/admin.php:182
203
- msgid "Text area"
204
- msgstr "Àrea de text"
205
-
206
- #: contact-form-7/admin/admin.php:183
207
- msgid "Drop-down menu"
208
- msgstr "Menú desplegable"
209
-
210
- #: contact-form-7/admin/admin.php:184
211
- msgid "Checkboxes"
212
- msgstr "Caselles de selecció"
213
-
214
- #: contact-form-7/admin/admin.php:185
215
- msgid "Radio buttons"
216
- msgstr "Botons circulars de selecció"
217
-
218
- #: contact-form-7/admin/admin.php:186
219
- msgid "Acceptance"
220
- msgstr "Tolerancia"
221
-
222
- #: contact-form-7/admin/admin.php:187
223
- msgid "Make this checkbox checked by default?"
224
- msgstr "Fer que aquesta casella de selecció estigui marcada per defecte?"
225
-
226
- #: contact-form-7/admin/admin.php:188
227
- msgid "Make this checkbox work inversely?"
228
- msgstr "Fer que aquesta casella de selecció operi de forma inversa?"
229
-
230
- #: contact-form-7/admin/admin.php:189
231
- msgid "* That means visitor who accepts the term unchecks it."
232
- msgstr "* Això significa que el visitant que accepta el terme ho desactiva."
233
-
234
- #: contact-form-7/admin/admin.php:190
235
- msgid "CAPTCHA"
236
- msgstr "CAPTCHA"
237
-
238
- #: contact-form-7/admin/admin.php:191
239
- msgid "Quiz"
240
- msgstr "Prova"
241
-
242
- #: contact-form-7/admin/admin.php:192
243
- msgid "Quizzes"
244
- msgstr "Proves"
245
-
246
- #: contact-form-7/admin/admin.php:193
247
- msgid "* quiz|answer (e.g. 1+1=?|2)"
248
- msgstr "* prova|resposta (pex. 1+1=?|2)"
249
-
250
- #: contact-form-7/admin/admin.php:194
251
- msgid "File upload"
252
- msgstr "Pujar fitxer"
253
-
254
- #: contact-form-7/admin/admin.php:195
255
- msgid "bytes"
256
- msgstr "octets"
257
-
258
- #: contact-form-7/admin/admin.php:196
259
- msgid "Submit button"
260
- msgstr "Botó enviar"
261
-
262
- #: contact-form-7/admin/admin.php:197
263
- msgid "Name"
264
- msgstr "Nom"
265
-
266
- #: contact-form-7/admin/admin.php:198
267
- msgid "Required field?"
268
- msgstr "Camp obligatori?"
269
-
270
- #: contact-form-7/admin/admin.php:199
271
- msgid "Allow multiple selections?"
272
- msgstr "Permetre seleccions múltiples?"
273
-
274
- #: contact-form-7/admin/admin.php:200
275
- msgid "Insert a blank item as the first option?"
276
- msgstr "Inserir un element en blanc com la primer opció?"
277
-
278
- #: contact-form-7/admin/admin.php:201
279
- msgid "Make checkboxes exclusive?"
280
- msgstr "Fer caselles de selecció exclusives?"
281
-
282
- #: contact-form-7/admin/admin.php:202
283
- msgid "Choices"
284
- msgstr "Seleccions"
285
-
286
- #: contact-form-7/admin/admin.php:203
287
- msgid "Label"
288
- msgstr "Etiqueta"
289
-
290
- #: contact-form-7/admin/admin.php:204
291
- msgid "Default value"
292
- msgstr "Valor predeterminat"
293
-
294
- #: contact-form-7/admin/admin.php:205
295
- msgid "Akismet"
296
- msgstr "Akismet"
297
-
298
- #: contact-form-7/admin/admin.php:206
299
- msgid "This field requires author's name"
300
- msgstr "Aquest quadre de text requereix el nom de l'autor"
301
-
302
- #: contact-form-7/admin/admin.php:207
303
- msgid "This field requires author's URL"
304
- msgstr "Aquest quadre de text requereix la URL de l'autor"
305
-
306
- #: contact-form-7/admin/admin.php:208
307
- msgid "This field requires author's email address"
308
- msgstr "Aquest quadre de text requereix l'adreça de correu de l'autor"
309
-
310
- #: contact-form-7/admin/admin.php:209
311
- msgid "Copy this code and paste it into the form left."
312
- msgstr "Copiar aquest codi i enganxar-lo al formulari de l'esquerra."
313
-
314
- #: contact-form-7/admin/admin.php:210
315
- msgid "Foreground color"
316
- msgstr "Color primer pla"
317
-
318
- #: contact-form-7/admin/admin.php:211
319
- msgid "Background color"
320
- msgstr "Color de fons"
321
-
322
- #: contact-form-7/admin/admin.php:212
323
- msgid "Image size"
324
- msgstr "Mida imatge"
325
-
326
- #: contact-form-7/admin/admin.php:213
327
- msgid "Small"
328
- msgstr "Petit"
329
-
330
- #: contact-form-7/admin/admin.php:214
331
- msgid "Medium"
332
- msgstr "Mitjà"
333
-
334
- #: contact-form-7/admin/admin.php:215
335
- msgid "Large"
336
- msgstr "Gran"
337
-
338
- #: contact-form-7/admin/admin.php:216
339
- msgid "Image settings"
340
- msgstr "Preferències imatge"
341
-
342
- #: contact-form-7/admin/admin.php:217
343
- msgid "Input field settings"
344
- msgstr "Preferències camp imatge"
345
-
346
- #: contact-form-7/admin/admin.php:218
347
- msgid "For image"
348
- msgstr "Per imatge"
349
-
350
- #: contact-form-7/admin/admin.php:219
351
- msgid "For input field"
352
- msgstr "Per camp d'entrada"
353
-
354
- #: contact-form-7/admin/admin.php:220
355
- msgid "* One choice per line."
356
- msgstr "* Una opció per línia"
357
-
358
- #: contact-form-7/admin/admin.php:221
359
- msgid "Show"
360
- msgstr "Mostrar"
361
-
362
- #: contact-form-7/admin/admin.php:222
363
- msgid "Hide"
364
- msgstr "Ocultar"
365
-
366
- #: contact-form-7/admin/admin.php:223
367
- msgid "File size limit"
368
- msgstr "Mida límit fitxer"
369
-
370
- #: contact-form-7/admin/admin.php:224
371
- msgid "Acceptable file types"
372
- msgstr "Tipus de fitxers acceptats"
373
-
374
- #: contact-form-7/admin/admin.php:225
375
- msgid "Note: To use CAPTCHA, you need Really Simple CAPTCHA plugin installed."
376
- msgstr "Nota: Per utilitzar CAPTCHA, necessiteu tenir instal·lada l'extensió Really Simple CAPTCHA."
377
-
378
- #: contact-form-7/admin/admin.php:236
379
- msgid "Contact form created."
380
- msgstr "Formulari de contacte creat."
381
-
382
- #: contact-form-7/admin/admin.php:239
383
- msgid "Contact form saved."
384
- msgstr "Formulari de contacte desat."
385
-
386
- #: contact-form-7/admin/admin.php:242
387
- msgid "Contact form deleted."
388
- msgstr "Formulari de contacte eliminat."
389
-
390
- #: contact-form-7/admin/admin.php:245
391
- msgid "Database table created."
392
- msgstr "Taula creada a la base de dades."
393
-
394
- #: contact-form-7/admin/admin.php:248
395
- msgid "Failed to create database table."
396
- msgstr "Error al crear la taula a la base de dades."
397
-
398
- #: contact-form-7/admin/admin.php:321
399
- msgid "Contact form"
400
- msgstr "Formulari de contacte"
401
-
402
- #: contact-form-7/admin/admin.php:355
403
- msgid "Settings"
404
- msgstr "Preferències"
405
-
406
- #: contact-form-7/admin/admin.php:376
407
- msgid "Contact Form 7 needs your support. Please donate today."
408
- msgstr "Contact Form 7 necessita el vostre suport. Si us plau feu una donació avui mateix."
409
-
410
- #: contact-form-7/admin/admin.php:377
411
- msgid "Is this plugin useful for you? If you like it, please help the developer."
412
- msgstr "Aquesta extensió us es útil? Si us agrada, si us plau ajudeu al desenvolupador."
413
-
414
- #: contact-form-7/admin/admin.php:378
415
- msgid "Your contribution is needed for making this plugin better."
416
- msgstr "Necessitem la vostra contribució per tal de millorar aquesta extensió."
417
-
418
- #: contact-form-7/admin/admin.php:379
419
- msgid "Developing a plugin and providing user support is really hard work. Please help."
420
- msgstr "Desenvolupar una extensió i donar suport realment és una tasca feixuga. Si us plau ajuda."
421
-
422
- #: contact-form-7/includes/classes.php:537
423
- msgid "Untitled"
424
- msgstr "Sense títol"
425
-
426
- #: contact-form-7/includes/functions.php:6
427
- msgid "Your message was sent successfully. Thanks."
428
- msgstr "El vostre missatge s'ha enviat correctament. Gràcies."
429
-
430
- #: contact-form-7/includes/functions.php:8
431
- #: contact-form-7/includes/functions.php:10
432
- msgid "Failed to send your message. Please try later or contact administrator by other way."
433
- msgstr "Error a l'enviar el vostre missatge. Proveu-ho més tard o contacteu amb l'administrador per a un altra manera."
434
-
435
- #: contact-form-7/includes/functions.php:12
436
- msgid "Validation errors occurred. Please confirm the fields and submit it again."
437
- msgstr "S'ha produït errors de validació. Confirmeu els camps i envieu-lo un altre cop."
438
-
439
- #: contact-form-7/includes/functions.php:14
440
- msgid "Please accept the terms to proceed."
441
- msgstr "Accepteu els termes per a continuar."
442
-
443
- #: contact-form-7/includes/functions.php:16
444
- msgid "Email address seems invalid."
445
- msgstr "L'adreça e-mail sembla que no sigui vàlida"
446
-
447
- #: contact-form-7/includes/functions.php:18
448
- msgid "Please fill the required field."
449
- msgstr "Si us plau ompliu els camps obligatoris"
450
-
451
- #: contact-form-7/includes/functions.php:20
452
- msgid "Your entered code is incorrect."
453
- msgstr "Heu introduït un codi incorrecte."
454
-
455
- #: contact-form-7/includes/functions.php:22
456
- msgid "Your answer is not correct."
457
- msgstr "La vostra resposta no és correcta."
458
-
459
- #: contact-form-7/includes/functions.php:24
460
- msgid "Failed to upload file."
461
- msgstr "Error al pujar el fitxer."
462
-
463
- #: contact-form-7/includes/functions.php:26
464
- msgid "This file type is not allowed."
465
- msgstr "Aquest tipus de fitxer no està permès."
466
-
467
- #: contact-form-7/includes/functions.php:28
468
- msgid "This file is too large."
469
- msgstr "Aquest fitxer és massa gran."
470
-
471
- #: contact-form-7/includes/functions.php:30
472
- msgid "Failed to upload file. Error occurred."
473
- msgstr "Error al pujar fitxer. S'ha produït un error."
474
-
475
- #: contact-form-7/includes/functions.php:35
476
- msgid "Your Name"
477
- msgstr "El vostre nom"
478
-
479
- #: contact-form-7/includes/functions.php:35
480
- #: contact-form-7/includes/functions.php:37
481
- msgid "(required)"
482
- msgstr "(obligatori)"
483
-
484
- #: contact-form-7/includes/functions.php:37
485
- msgid "Your Email"
486
- msgstr "El vostre email"
487
-
488
- #: contact-form-7/includes/functions.php:39
489
- msgid "Subject"
490
- msgstr "Assumpte"
491
-
492
- #: contact-form-7/includes/functions.php:41
493
- msgid "Your Message"
494
- msgstr "El vostre missatge"
495
-
496
- #: contact-form-7/includes/functions.php:43
497
- msgid "Send"
498
- msgstr "Enviar"
499
-
500
- #: contact-form-7/modules/captcha.php:62
501
- msgid "To use CAPTCHA, you need <a href=\"http://wordpress.org/extend/plugins/really-simple-captcha/\">Really Simple CAPTCHA</a> plugin installed."
502
- msgstr "Per utilitzar CAPTCHA, necessiteu tenir instal·lada l'extensió <a href=\"http://wordpress.org/extend/plugins/really-simple-captcha/\">Really Simple CAPTCHA</a>."
503
-
504
- #~ msgid "Form content"
505
- #~ msgstr "Contingut del formulari"
506
- #~ msgid "Mail template"
507
- #~ msgstr "Plantilla d'email"
508
- #~ msgid "Sender field:"
509
- #~ msgstr "Camp de remitent:"
510
- #~ msgid "Recipient address:"
511
- #~ msgstr "Adreça del destinatari:"
512
- #~ msgid "Delete this contact form"
513
- #~ msgstr "Esborar aquest formulari de contacte"
514
- #~ msgid "Insert"
515
- #~ msgstr "Inserir "
516
-
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
languages/wpcf7-cs_CZ.po DELETED
@@ -1,504 +0,0 @@
1
- msgid ""
2
- msgstr ""
3
- "Project-Id-Version: \n"
4
- "Report-Msgid-Bugs-To: \n"
5
- "POT-Creation-Date: 2009-09-26 04:03+0900\n"
6
- "PO-Revision-Date: 2009-10-12 15:10+0100\n"
7
- "Last-Translator: Radovan Fišer <rfiser@gmail.com>\n"
8
- "Language-Team: \n"
9
- "MIME-Version: 1.0\n"
10
- "Content-Type: text/plain; charset=UTF-8\n"
11
- "Content-Transfer-Encoding: 8bit\n"
12
-
13
- #: contact-form-7/admin/admin-panel.php:9
14
- #, php-format
15
- msgid "<strong>The database table for Contact Form 7 does not exist.</strong> You must <a href=\"%s\">create the table</a> for it to work."
16
- msgstr "<strong>Databázová tabulka pro Contact Form 7 neexistuje.</strong> Musíte ji <a href=\"%s\">vytvořit</a>, aby plugin fungoval."
17
-
18
- #: contact-form-7/admin/admin-panel.php:12
19
- msgid "<strong>The database table for Contact Form 7 does not exist.</strong>"
20
- msgstr "<strong>Databázová tabulka pluginu Contact Form 7 neexistuje</strong>."
21
-
22
- #: contact-form-7/admin/admin-panel.php:17
23
- #: contact-form-7/admin/admin-panel.php:30
24
- #: contact-form-7/admin/admin.php:121
25
- #: contact-form-7/includes/functions.php:52
26
- msgid "Contact Form 7"
27
- msgstr "Contact Form 7"
28
-
29
- #: contact-form-7/admin/admin-panel.php:45
30
- msgid "Add new"
31
- msgstr "Přidej nový"
32
-
33
- #: contact-form-7/admin/admin-panel.php:67
34
- msgid "Copy this code and paste it into your post, page or text widget content."
35
- msgstr "Zkopírujte tento kód a vložte jej do článku, stránky nebo widgetu."
36
-
37
- #: contact-form-7/admin/admin-panel.php:75
38
- #: contact-form-7/admin/admin-panel.php:332
39
- msgid "Save"
40
- msgstr "Uložit"
41
-
42
- #: contact-form-7/admin/admin-panel.php:82
43
- msgid "Copy"
44
- msgstr "Kopírovat"
45
-
46
- #: contact-form-7/admin/admin-panel.php:87
47
- msgid "Delete"
48
- msgstr "Smazat"
49
-
50
- #: contact-form-7/admin/admin-panel.php:89
51
- msgid ""
52
- "You are about to delete this contact form.\n"
53
- " 'Cancel' to stop, 'OK' to delete."
54
- msgstr "Chcete smazat tento formulář?"
55
-
56
- #: contact-form-7/admin/admin-panel.php:102
57
- msgid "Form"
58
- msgstr "Formulář"
59
-
60
- #: contact-form-7/admin/admin-panel.php:120
61
- msgid "Mail"
62
- msgstr "Mail"
63
-
64
- #: contact-form-7/admin/admin-panel.php:127
65
- #: contact-form-7/admin/admin-panel.php:188
66
- msgid "To:"
67
- msgstr "Komu:"
68
-
69
- #: contact-form-7/admin/admin-panel.php:132
70
- #: contact-form-7/admin/admin-panel.php:193
71
- msgid "From:"
72
- msgstr "Od:"
73
-
74
- #: contact-form-7/admin/admin-panel.php:137
75
- #: contact-form-7/admin/admin-panel.php:198
76
- msgid "Subject:"
77
- msgstr "Předmět:"
78
-
79
- #: contact-form-7/admin/admin-panel.php:144
80
- #: contact-form-7/admin/admin-panel.php:205
81
- msgid "Additional headers:"
82
- msgstr "Doplňky do hlavičky:"
83
-
84
- #: contact-form-7/admin/admin-panel.php:149
85
- #: contact-form-7/admin/admin-panel.php:210
86
- msgid "File attachments:"
87
- msgstr "Přílohy:"
88
-
89
- #: contact-form-7/admin/admin-panel.php:157
90
- #: contact-form-7/admin/admin-panel.php:218
91
- msgid "Use HTML content type"
92
- msgstr "Použij e-mail s HTML obsahem"
93
-
94
- #: contact-form-7/admin/admin-panel.php:164
95
- #: contact-form-7/admin/admin-panel.php:225
96
- #: contact-form-7/includes/functions.php:50
97
- msgid "Message body:"
98
- msgstr "Zpráva:"
99
-
100
- #: contact-form-7/admin/admin-panel.php:174
101
- msgid "Mail (2)"
102
- msgstr "Mail (2)"
103
-
104
- #: contact-form-7/admin/admin-panel.php:180
105
- msgid "Use mail (2)"
106
- msgstr "Použij mail (2)"
107
-
108
- #: contact-form-7/admin/admin-panel.php:235
109
- msgid "Messages"
110
- msgstr "Zprávy"
111
-
112
- #: contact-form-7/admin/admin-panel.php:243
113
- msgid "Sender's message was sent successfully"
114
- msgstr "Vaše zpráva byla úspěšně odeslána. Děkujeme."
115
-
116
- #: contact-form-7/admin/admin-panel.php:248
117
- msgid "Sender's message was failed to send"
118
- msgstr "Zprávu se nepodařilo odeslat"
119
-
120
- #: contact-form-7/admin/admin-panel.php:253
121
- msgid "Akismet judged the sending activity as spamming"
122
- msgstr "Akismet usoudil, že toto odesílání e-mailů je spamování."
123
-
124
- #: contact-form-7/admin/admin-panel.php:258
125
- msgid "Validation errors occurred"
126
- msgstr "Při ověřování správnosti nastala chyba"
127
-
128
- #: contact-form-7/admin/admin-panel.php:263
129
- msgid "There is a field that sender is needed to fill in"
130
- msgstr "Nevyplnili jste povinné políčko."
131
-
132
- #: contact-form-7/admin/admin-panel.php:268
133
- msgid "Email address that sender entered is invalid"
134
- msgstr "E-mailová adresa je zadána špatně."
135
-
136
- #: contact-form-7/admin/admin-panel.php:273
137
- msgid "There is a field of term that sender is needed to accept"
138
- msgstr "Pokud nezaškrtnete povinné políčko, e-mail nelze odeslat."
139
-
140
- #: contact-form-7/admin/admin-panel.php:278
141
- msgid "Sender doesn't enter the correct answer to the quiz"
142
- msgstr "Špatně jste odpověděli na kvíz, zkuste to prosím znovu."
143
-
144
- #: contact-form-7/admin/admin-panel.php:283
145
- msgid "The code that sender entered does not match the CAPTCHA"
146
- msgstr "Špatně jste opsali kontrolní kód CAPTCHA, zkuste to prosím znovu."
147
-
148
- #: contact-form-7/admin/admin-panel.php:288
149
- msgid "Uploading a file fails for any reason"
150
- msgstr "Nahrávání souboru se nepodařilo."
151
-
152
- #: contact-form-7/admin/admin-panel.php:293
153
- msgid "Uploaded file is not allowed file type"
154
- msgstr "Nahrávaný soubor je nepovoleného typu."
155
-
156
- #: contact-form-7/admin/admin-panel.php:298
157
- msgid "Uploaded file is too large"
158
- msgstr "Nahrávaný soubor je příliš velký."
159
-
160
- #: contact-form-7/admin/admin-panel.php:303
161
- msgid "Uploading a file fails for PHP error"
162
- msgstr "Nahrávání souboru se nepodařilo kvůli chybě v PHP."
163
-
164
- #: contact-form-7/admin/admin-panel.php:314
165
- msgid "Additional Settings"
166
- msgstr "Další nastavení"
167
-
168
- #: contact-form-7/admin/admin.php:121
169
- msgid "Contact"
170
- msgstr "Kontakt"
171
-
172
- #: contact-form-7/admin/admin.php:125
173
- msgid "Edit Contact Forms"
174
- msgstr "Správa kontaktních formulářů"
175
-
176
- #: contact-form-7/admin/admin.php:125
177
- msgid "Edit"
178
- msgstr "Upravit"
179
-
180
- #: contact-form-7/admin/admin.php:185
181
- msgid "optional"
182
- msgstr "volitelné"
183
-
184
- #: contact-form-7/admin/admin.php:186
185
- msgid "Generate Tag"
186
- msgstr "Generuj Tag"
187
-
188
- #: contact-form-7/admin/admin.php:187
189
- msgid "Text field"
190
- msgstr "Textové pole"
191
-
192
- #: contact-form-7/admin/admin.php:188
193
- msgid "Email field"
194
- msgstr "E-mailové pole"
195
-
196
- #: contact-form-7/admin/admin.php:189
197
- msgid "Text area"
198
- msgstr "Pole pro psaní delšího textu (textarea)"
199
-
200
- #: contact-form-7/admin/admin.php:190
201
- msgid "Drop-down menu"
202
- msgstr "Rozbalovací menu"
203
-
204
- #: contact-form-7/admin/admin.php:191
205
- msgid "Checkboxes"
206
- msgstr "Zaškrtávací políčka"
207
-
208
- #: contact-form-7/admin/admin.php:192
209
- msgid "Radio buttons"
210
- msgstr "Tlačítku typu Radio "
211
-
212
- #: contact-form-7/admin/admin.php:193
213
- msgid "Acceptance"
214
- msgstr "Přijímám"
215
-
216
- #: contact-form-7/admin/admin.php:194
217
- msgid "Make this checkbox checked by default?"
218
- msgstr "Má být zaškrtávací políčko zaškrtnuté samo od sebe?"
219
-
220
- #: contact-form-7/admin/admin.php:195
221
- msgid "Make this checkbox work inversely?"
222
- msgstr "Má zaškrtávací políčko pracovat naopak?"
223
-
224
- #: contact-form-7/admin/admin.php:196
225
- msgid "* That means visitor who accepts the term unchecks it."
226
- msgstr "To znamená, že pokud návštěvník podmínky přijímá, tak políčko musí odškrtnout."
227
-
228
- #: contact-form-7/admin/admin.php:197
229
- msgid "CAPTCHA"
230
- msgstr "CAPTCHA"
231
-
232
- #: contact-form-7/admin/admin.php:198
233
- msgid "Quiz"
234
- msgstr "Příklad"
235
-
236
- #: contact-form-7/admin/admin.php:199
237
- msgid "Quizzes"
238
- msgstr "Příklady"
239
-
240
- #: contact-form-7/admin/admin.php:200
241
- msgid "* quiz|answer (e.g. 1+1=?|2)"
242
- msgstr "* příklad|odpověď (např. 1+1=?|2)"
243
-
244
- #: contact-form-7/admin/admin.php:201
245
- msgid "File upload"
246
- msgstr "Nahrát soubor"
247
-
248
- #: contact-form-7/admin/admin.php:202
249
- msgid "bytes"
250
- msgstr "bajtů"
251
-
252
- #: contact-form-7/admin/admin.php:203
253
- msgid "Submit button"
254
- msgstr "Potvrzovací tlačítko"
255
-
256
- #: contact-form-7/admin/admin.php:204
257
- msgid "Name"
258
- msgstr "Jméno"
259
-
260
- #: contact-form-7/admin/admin.php:205
261
- msgid "Required field?"
262
- msgstr "Vyžadované pole?"
263
-
264
- #: contact-form-7/admin/admin.php:206
265
- msgid "Allow multiple selections?"
266
- msgstr "Povolit vícenásobný výběr?"
267
-
268
- #: contact-form-7/admin/admin.php:207
269
- msgid "Insert a blank item as the first option?"
270
- msgstr "Vložit jako první možnost prázdnou položku?"
271
-
272
- #: contact-form-7/admin/admin.php:208
273
- msgid "Make checkboxes exclusive?"
274
- msgstr "Mají být políčka exkluzivní?"
275
-
276
- #: contact-form-7/admin/admin.php:209
277
- msgid "Choices"
278
- msgstr "Možnosti"
279
-
280
- #: contact-form-7/admin/admin.php:210
281
- msgid "Label"
282
- msgstr "Popis"
283
-
284
- #: contact-form-7/admin/admin.php:211
285
- msgid "Default value"
286
- msgstr "Výchozí hodnota"
287
-
288
- #: contact-form-7/admin/admin.php:212
289
- msgid "Akismet"
290
- msgstr "Akismet"
291
-
292
- #: contact-form-7/admin/admin.php:213
293
- msgid "This field requires author's name"
294
- msgstr "Toto pole musí obsahovat jméno autora"
295
-
296
- #: contact-form-7/admin/admin.php:214
297
- msgid "This field requires author's URL"
298
- msgstr "Toto pole musí obsahovat URL autora"
299
-
300
- #: contact-form-7/admin/admin.php:215
301
- msgid "This field requires author's email address"
302
- msgstr "Toto pole musí obsahovat autorův e-mail"
303
-
304
- #: contact-form-7/admin/admin.php:216
305
- msgid "Copy this code and paste it into the form left."
306
- msgstr "Zkopírujte tento kód a vložte jej do formuláře vlevo."
307
-
308
- #: contact-form-7/admin/admin.php:217
309
- msgid "Foreground color"
310
- msgstr "Barva písma"
311
-
312
- #: contact-form-7/admin/admin.php:218
313
- msgid "Background color"
314
- msgstr "Barva pozadí"
315
-
316
- #: contact-form-7/admin/admin.php:219
317
- msgid "Image size"
318
- msgstr "Velikost obrázku"
319
-
320
- #: contact-form-7/admin/admin.php:220
321
- msgid "Small"
322
- msgstr "Malý"
323
-
324
- #: contact-form-7/admin/admin.php:221
325
- msgid "Medium"
326
- msgstr "Střední"
327
-
328
- #: contact-form-7/admin/admin.php:222
329
- msgid "Large"
330
- msgstr "Velký"
331
-
332
- #: contact-form-7/admin/admin.php:223
333
- msgid "Image settings"
334
- msgstr "Nastavení obrázku"
335
-
336
- #: contact-form-7/admin/admin.php:224
337
- msgid "Input field settings"
338
- msgstr "Parametry vstupního pole"
339
-
340
- #: contact-form-7/admin/admin.php:225
341
- msgid "For image"
342
- msgstr "For image"
343
-
344
- #: contact-form-7/admin/admin.php:226
345
- msgid "For input field"
346
- msgstr "Pro vstupní pole"
347
-
348
- #: contact-form-7/admin/admin.php:227
349
- msgid "* One choice per line."
350
- msgstr "* Jedna možnost na řádku"
351
-
352
- #: contact-form-7/admin/admin.php:228
353
- msgid "Show"
354
- msgstr "Ukázat"
355
-
356
- #: contact-form-7/admin/admin.php:229
357
- msgid "Hide"
358
- msgstr "Skrýt"
359
-
360
- #: contact-form-7/admin/admin.php:230
361
- msgid "File size limit"
362
- msgstr "Maximální velikost souboru"
363
-
364
- #: contact-form-7/admin/admin.php:231
365
- msgid "Acceptable file types"
366
- msgstr "Povolené typy souborů"
367
-
368
- #: contact-form-7/admin/admin.php:232
369
- msgid "Note: To use CAPTCHA, you need Really Simple CAPTCHA plugin installed."
370
- msgstr "Poznámka: CAPTCHA vyžaduje nainstalovaný plugin Really Simple CAPTCHA."
371
-
372
- #: contact-form-7/admin/admin.php:241
373
- msgid "Contact form created."
374
- msgstr "Formulář vytvořen"
375
-
376
- #: contact-form-7/admin/admin.php:244
377
- msgid "Contact form saved."
378
- msgstr "Formulář uložen"
379
-
380
- #: contact-form-7/admin/admin.php:247
381
- msgid "Contact form deleted."
382
- msgstr "Contact form deleted"
383
-
384
- #: contact-form-7/admin/admin.php:250
385
- msgid "Database table created."
386
- msgstr "Databázové tabulky byly vytvořeny."
387
-
388
- #: contact-form-7/admin/admin.php:253
389
- msgid "Failed to create database table."
390
- msgstr "Dtaabázové tabulky se nepodařilo vytvořit."
391
-
392
- #: contact-form-7/admin/admin.php:328
393
- msgid "Contact form"
394
- msgstr "Kontaktní formulář"
395
-
396
- #: contact-form-7/admin/admin.php:347
397
- msgid "Settings"
398
- msgstr "Nastavení"
399
-
400
- #: contact-form-7/admin/admin.php:366
401
- msgid "Contact Form 7 needs your support. Please donate today."
402
- msgstr "Contact Form 7 se bez vaší pomoci neobejde. Oceňte jej právě dnes."
403
-
404
- #: contact-form-7/admin/admin.php:367
405
- msgid "Is this plugin useful for you? If you like it, please help the developer."
406
- msgstr "Je pro vás tento plugin užitečný? Pokud se vám líbí, pomožte jeho tvůrci."
407
-
408
- #: contact-form-7/admin/admin.php:368
409
- msgid "Your contribution is needed for making this plugin better."
410
- msgstr "Váš finanční příspěvek je třeba, aby byl plugin ještě lepší."
411
-
412
- #: contact-form-7/admin/admin.php:369
413
- msgid "Developing a plugin and providing user support is really hard work. Please help."
414
- msgstr "Vývoj pluginu a poskytování pomoci uživatelům je opravdu náročná práce. Pomožte prosím."
415
-
416
- #: contact-form-7/includes/classes.php:552
417
- msgid "Untitled"
418
- msgstr "Untitled"
419
-
420
- #: contact-form-7/includes/functions.php:6
421
- msgid "Your message was sent successfully. Thanks."
422
- msgstr "Vaše zpráva byla úspěšně odeslána. Děkujeme."
423
-
424
- #: contact-form-7/includes/functions.php:8
425
- #: contact-form-7/includes/functions.php:10
426
- msgid "Failed to send your message. Please try later or contact administrator by other way."
427
- msgstr "Nepodařilo se odeslat zprávu. Opakujte později, nebo kontaktujte administátora."
428
-
429
- #: contact-form-7/includes/functions.php:12
430
- msgid "Validation errors occurred. Please confirm the fields and submit it again."
431
- msgstr "Chyba v ověření. Zkontrolujte prosím všechna povinná pole."
432
-
433
- #: contact-form-7/includes/functions.php:14
434
- msgid "Please accept the terms to proceed."
435
- msgstr "Přijměte prosím podmínky, abyste mohli pokračovat."
436
-
437
- #: contact-form-7/includes/functions.php:16
438
- msgid "Email address seems invalid."
439
- msgstr "Emailová adresa není v platném tvaru."
440
-
441
- #: contact-form-7/includes/functions.php:18
442
- msgid "Please fill the required field."
443
- msgstr "Vyplňte prosím povinná pole."
444
-
445
- #: contact-form-7/includes/functions.php:20
446
- msgid "Your entered code is incorrect."
447
- msgstr "Vložený ověřovací kód není správně."
448
-
449
- #: contact-form-7/includes/functions.php:22
450
- msgid "Your answer is not correct."
451
- msgstr "Vaše odpověď je chybná."
452
-
453
- #: contact-form-7/includes/functions.php:24
454
- msgid "Failed to upload file."
455
- msgstr "Nahrání souboru se nepodařilo."
456
-
457
- #: contact-form-7/includes/functions.php:26
458
- msgid "This file type is not allowed."
459
- msgstr "Tento typ souboru není povolený."
460
-
461
- #: contact-form-7/includes/functions.php:28
462
- msgid "This file is too large."
463
- msgstr "Soubor je příliš velký."
464
-
465
- #: contact-form-7/includes/functions.php:30
466
- msgid "Failed to upload file. Error occurred."
467
- msgstr "Nahrát soubor se nepodařilo."
468
-
469
- #: contact-form-7/includes/functions.php:35
470
- msgid "Your Name"
471
- msgstr "Vaše jméno"
472
-
473
- #: contact-form-7/includes/functions.php:35
474
- #: contact-form-7/includes/functions.php:37
475
- msgid "(required)"
476
- msgstr "(vyžadováno)"
477
-
478
- #: contact-form-7/includes/functions.php:37
479
- msgid "Your Email"
480
- msgstr "Váš Email"
481
-
482
- #: contact-form-7/includes/functions.php:39
483
- msgid "Subject"
484
- msgstr "Předmět zprávy"
485
-
486
- #: contact-form-7/includes/functions.php:41
487
- msgid "Your Message"
488
- msgstr "Vaše zpráva"
489
-
490
- #: contact-form-7/includes/functions.php:43
491
- msgid "Send"
492
- msgstr "Odeslat"
493
-
494
- #: contact-form-7/includes/functions.php:51
495
- msgid "This mail is created by Contact Form 7 plugin for WordPress."
496
- msgstr "Tento e-mail byl odeslán pomocí pluginu Contact Form 7 pro Wordpress. "
497
-
498
- #: contact-form-7/modules/captcha.php:62
499
- msgid "To use CAPTCHA, you need <a href=\"http://wordpress.org/extend/plugins/really-simple-captcha/\">Really Simple CAPTCHA</a> plugin installed."
500
- msgstr "Používání CAPTCHY je podmíněno instalací pluginu <a href=\"http://wordpress.org/extend/plugins/really-simple-captcha/\">Really Simple CAPTCHA</a>."
501
-
502
- #~ msgid "Delete this contact form"
503
- #~ msgstr "Smaž tento formulář."
504
-
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
languages/wpcf7-da_DK.mo CHANGED
Binary file
languages/wpcf7-da_DK.po DELETED
@@ -1,842 +0,0 @@
1
- msgid ""
2
- msgstr ""
3
- "Project-Id-Version: Contact Form 7 version 2.2.1\n"
4
- "Report-Msgid-Bugs-To: \n"
5
- "POT-Creation-Date: 2010-06-12 19:48+0100\n"
6
- "PO-Revision-Date: 2010-07-14 01:04+0100\n"
7
- "Last-Translator: Team Blogos <wordpress@blogos.dk>\n"
8
- "Language-Team: Team Blogos <wordpress@blogos.dk>\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;_c;__ngettext:1,2;__ngettext_noop:1,2;_n;_nc;_n_noop\n"
14
- "X-Poedit-Basepath: d:\\wordpress\\plugins\\contact-form-7\n"
15
- "X-Poedit-Language: Danish\n"
16
- "X-Poedit-Country: DENMARK\n"
17
- "Plural-Forms: nplurals=2;plural=n != 1;\n"
18
- "X-Poedit-SearchPath-0: d:\\wordpress\\plugins\\contact-form-7\n"
19
-
20
- #: d:\wordpress\plugins\contact-form-7/admin/admin.php:120
21
- #: d:\wordpress\plugins\contact-form-7/admin/edit.php:17
22
- #: d:\wordpress\plugins\contact-form-7/admin/edit.php:30
23
- msgid "Contact Form 7"
24
- msgstr "Kontaktformular 7"
25
-
26
- #: d:\wordpress\plugins\contact-form-7/admin/admin.php:120
27
- msgid "Contact"
28
- msgstr "Kontakt"
29
-
30
- #: d:\wordpress\plugins\contact-form-7/admin/admin.php:123
31
- msgid "Edit Contact Forms"
32
- msgstr "Redigér Kontaktformular 7"
33
-
34
- #: d:\wordpress\plugins\contact-form-7/admin/admin.php:123
35
- msgid "Edit"
36
- msgstr "Redigér"
37
-
38
- #: d:\wordpress\plugins\contact-form-7/admin/admin.php:162
39
- msgid "Generate Tag"
40
- msgstr "Generér tag"
41
-
42
- #: d:\wordpress\plugins\contact-form-7/admin/admin.php:163
43
- msgid "Show"
44
- msgstr "Vis"
45
-
46
- #: d:\wordpress\plugins\contact-form-7/admin/admin.php:164
47
- msgid "Hide"
48
- msgstr "Skjul"
49
-
50
- #: d:\wordpress\plugins\contact-form-7/admin/admin.php:261
51
- msgid "Contact form"
52
- msgstr "Kontaktformular"
53
-
54
- #: d:\wordpress\plugins\contact-form-7/admin/admin.php:280
55
- msgid "Settings"
56
- msgstr "Indstillinger"
57
-
58
- #: d:\wordpress\plugins\contact-form-7/admin/admin.php:291
59
- msgid "http://contactform7.com/"
60
- msgstr "http://contactform7.com/"
61
-
62
- #: d:\wordpress\plugins\contact-form-7/admin/admin.php:292
63
- msgid "Contactform7.com"
64
- msgstr "Contactform7.com"
65
-
66
- #: d:\wordpress\plugins\contact-form-7/admin/admin.php:293
67
- msgid "http://contactform7.com/docs/"
68
- msgstr "http://contactform7.com/docs/"
69
-
70
- #: d:\wordpress\plugins\contact-form-7/admin/admin.php:294
71
- msgid "Docs"
72
- msgstr "Dokumenter"
73
-
74
- #: d:\wordpress\plugins\contact-form-7/admin/admin.php:295
75
- msgid "http://contactform7.com/faq/"
76
- msgstr "http://contactform7.com/faq/"
77
-
78
- #: d:\wordpress\plugins\contact-form-7/admin/admin.php:296
79
- msgid "FAQ"
80
- msgstr "FAQ"
81
-
82
- #: d:\wordpress\plugins\contact-form-7/admin/admin.php:297
83
- msgid "http://contactform7.com/support/"
84
- msgstr "http://contactform7.com/support/"
85
-
86
- #: d:\wordpress\plugins\contact-form-7/admin/admin.php:298
87
- msgid "Support"
88
- msgstr "Support"
89
-
90
- #: d:\wordpress\plugins\contact-form-7/admin/admin.php:312
91
- msgid "Contact form created."
92
- msgstr "Kontaktformular oprettet."
93
-
94
- #: d:\wordpress\plugins\contact-form-7/admin/admin.php:315
95
- msgid "Contact form saved."
96
- msgstr "Kontaktformular gemt."
97
-
98
- #: d:\wordpress\plugins\contact-form-7/admin/admin.php:318
99
- msgid "Contact form deleted."
100
- msgstr "Kontaktformular slettet."
101
-
102
- #: d:\wordpress\plugins\contact-form-7/admin/admin.php:321
103
- msgid "Database table created."
104
- msgstr "Databasetabel oprettet."
105
-
106
- #: d:\wordpress\plugins\contact-form-7/admin/admin.php:324
107
- msgid "Failed to create database table."
108
- msgstr "Oprettelse af databasetabel mislykkedes."
109
-
110
- #: d:\wordpress\plugins\contact-form-7/admin/admin.php:358
111
- msgid "Contact Form 7 needs your support. Please donate today."
112
- msgstr "Kontaktformular 7 behøver din støtte. Send en gave i dag."
113
-
114
- #: d:\wordpress\plugins\contact-form-7/admin/admin.php:359
115
- msgid "Your contribution is needed for making this plugin better."
116
- msgstr "Dit bidrag behøves, hvis pluginnet skal blive bedre."
117
-
118
- #: d:\wordpress\plugins\contact-form-7/admin/admin.php:365
119
- msgid "http://contactform7.com/donate/"
120
- msgstr "http://contactform7.com/donate/"
121
-
122
- #: d:\wordpress\plugins\contact-form-7/admin/admin.php:365
123
- msgid "Donate"
124
- msgstr "Donér"
125
-
126
- #: d:\wordpress\plugins\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>Contact Form 7's databasetabel findes ikke.</strong> Du skal <a href=\"%s\">oprette tabellen</a>, hvis programmet skal fungere."
130
-
131
- #: d:\wordpress\plugins\contact-form-7/admin/edit.php:12
132
- msgid "<strong>The database table for Contact Form 7 does not exist.</strong>"
133
- msgstr "<strong>Contact Form 7's databasetabel findes ikke.</strong>"
134
-
135
- #: d:\wordpress\plugins\contact-form-7/admin/edit.php:45
136
- msgid "Add new"
137
- msgstr "Tilføj ny"
138
-
139
- #: d:\wordpress\plugins\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 "Kopier og indsæt denne kode i dit indlæg, side eller indholdet i en tekst-widget."
142
-
143
- #: d:\wordpress\plugins\contact-form-7/admin/edit.php:75
144
- #: d:\wordpress\plugins\contact-form-7/admin/edit.php:309
145
- msgid "Save"
146
- msgstr "Gem"
147
-
148
- #: d:\wordpress\plugins\contact-form-7/admin/edit.php:82
149
- msgid "Copy"
150
- msgstr "Kopiér"
151
-
152
- #: d:\wordpress\plugins\contact-form-7/admin/edit.php:87
153
- msgid "Delete"
154
- msgstr "Slet"
155
-
156
- #: d:\wordpress\plugins\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
- "Du er ved at slette din kontakt formular.\n"
162
- "Tryk 'Annullér' for at stoppe, 'OK' for at slette."
163
-
164
- #: d:\wordpress\plugins\contact-form-7/admin/edit.php:104
165
- msgid "Form"
166
- msgstr "Formular"
167
-
168
- #: d:\wordpress\plugins\contact-form-7/admin/edit.php:128
169
- msgid "Mail"
170
- msgstr "E-mail"
171
-
172
- #: d:\wordpress\plugins\contact-form-7/admin/edit.php:135
173
- #: d:\wordpress\plugins\contact-form-7/admin/edit.php:202
174
- msgid "To:"
175
- msgstr "Til:"
176
-
177
- #: d:\wordpress\plugins\contact-form-7/admin/edit.php:140
178
- #: d:\wordpress\plugins\contact-form-7/admin/edit.php:207
179
- msgid "From:"
180
- msgstr "Fra:"
181
-
182
- #: d:\wordpress\plugins\contact-form-7/admin/edit.php:145
183
- #: d:\wordpress\plugins\contact-form-7/admin/edit.php:212
184
- msgid "Subject:"
185
- msgstr "Emne:"
186
-
187
- #: d:\wordpress\plugins\contact-form-7/admin/edit.php:152
188
- #: d:\wordpress\plugins\contact-form-7/admin/edit.php:219
189
- msgid "Additional headers:"
190
- msgstr "Yderligere headers:"
191
-
192
- #: d:\wordpress\plugins\contact-form-7/admin/edit.php:157
193
- #: d:\wordpress\plugins\contact-form-7/admin/edit.php:224
194
- msgid "File attachments:"
195
- msgstr "Filvedhæftninger:"
196
-
197
- #: d:\wordpress\plugins\contact-form-7/admin/edit.php:165
198
- #: d:\wordpress\plugins\contact-form-7/admin/edit.php:232
199
- msgid "Use HTML content type"
200
- msgstr "Brug HTML til indholdet"
201
-
202
- #: d:\wordpress\plugins\contact-form-7/admin/edit.php:172
203
- #: d:\wordpress\plugins\contact-form-7/admin/edit.php:239
204
- #: d:\wordpress\plugins\contact-form-7/includes/functions.php:78
205
- msgid "Message body:"
206
- msgstr "Besked:"
207
-
208
- #: d:\wordpress\plugins\contact-form-7/admin/edit.php:188
209
- msgid "Mail (2)"
210
- msgstr "Email (2)"
211
-
212
- #: d:\wordpress\plugins\contact-form-7/admin/edit.php:194
213
- msgid "Use mail (2)"
214
- msgstr "Brug email (2)"
215
-
216
- #: d:\wordpress\plugins\contact-form-7/admin/edit.php:255
217
- msgid "Messages"
218
- msgstr "Beskeder"
219
-
220
- #: d:\wordpress\plugins\contact-form-7/admin/edit.php:285
221
- msgid "Additional Settings"
222
- msgstr "Yderligere indstillinger"
223
-
224
- #: d:\wordpress\plugins\contact-form-7/admin/edit.php:333
225
- #, php-format
226
- msgid "Use the default language (%s)"
227
- msgstr "Brug standardsproget (%s)"
228
-
229
- #: d:\wordpress\plugins\contact-form-7/admin/edit.php:334
230
- #: d:\wordpress\plugins\contact-form-7/admin/edit.php:347
231
- msgid "Add New"
232
- msgstr "Tilføj ny"
233
-
234
- #: d:\wordpress\plugins\contact-form-7/admin/edit.php:337
235
- msgid "Or"
236
- msgstr "Eller"
237
-
238
- #: d:\wordpress\plugins\contact-form-7/admin/edit.php:342
239
- msgid "(select language)"
240
- msgstr "(vælg sprog)"
241
-
242
- #: d:\wordpress\plugins\contact-form-7/includes/classes.php:577
243
- msgid "Untitled"
244
- msgstr "Uden titel"
245
-
246
- #: d:\wordpress\plugins\contact-form-7/includes/functions.php:6
247
- msgid "Sender's message was sent successfully"
248
- msgstr "Afsenders besked blev sendt"
249
-
250
- #: d:\wordpress\plugins\contact-form-7/includes/functions.php:7
251
- msgid "Your message was sent successfully. Thanks."
252
- msgstr "Din besked blev sendt. Tak."
253
-
254
- #: d:\wordpress\plugins\contact-form-7/includes/functions.php:11
255
- msgid "Sender's message was failed to send"
256
- msgstr "Det mislykkedes at sende afsenders besked"
257
-
258
- #: d:\wordpress\plugins\contact-form-7/includes/functions.php:12
259
- #: d:\wordpress\plugins\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 "Beskeden blev ikke sendt. Prøv venligst senere eller kontakt administratoren på anden måde. "
262
-
263
- #: d:\wordpress\plugins\contact-form-7/includes/functions.php:16
264
- msgid "Akismet judged the sending activity as spamming"
265
- msgstr "Akismet bedømte afsendelsen som forsøg på at spamme"
266
-
267
- #: d:\wordpress\plugins\contact-form-7/includes/functions.php:21
268
- msgid "Validation errors occurred"
269
- msgstr "Der forekom valideringsfejl"
270
-
271
- #: d:\wordpress\plugins\contact-form-7/includes/functions.php:22
272
- msgid "Validation errors occurred. Please confirm the fields and submit it again."
273
- msgstr "Kontrollen af indtastningerne viste fejl. Gennemgå venligst felterne og send det igen"
274
-
275
- #: d:\wordpress\plugins\contact-form-7/includes/functions.php:26
276
- msgid "There is a field of term that sender is needed to accept"
277
- msgstr "Der er et felt med betingelser, som afsender skal acceptere"
278
-
279
- #: d:\wordpress\plugins\contact-form-7/includes/functions.php:27
280
- msgid "Please accept the terms to proceed."
281
- msgstr "Acceptér venligst betingelserne for at fortsætte."
282
-
283
- #: d:\wordpress\plugins\contact-form-7/includes/functions.php:31
284
- msgid "Email address that sender entered is invalid"
285
- msgstr "E-mail-adressen, som afsender indtastede, er ugyldig"
286
-
287
- #: d:\wordpress\plugins\contact-form-7/includes/functions.php:32
288
- msgid "Email address seems invalid."
289
- msgstr "E-mail-adressen er ikke gyldig."
290
-
291
- #: d:\wordpress\plugins\contact-form-7/includes/functions.php:36
292
- msgid "There is a field that sender is needed to fill in"
293
- msgstr "Der er et felt, som afsender skal udfylde"
294
-
295
- #: d:\wordpress\plugins\contact-form-7/includes/functions.php:37
296
- msgid "Please fill the required field."
297
- msgstr "Udfyld venligst de påkrævede felter."
298
-
299
- #: d:\wordpress\plugins\contact-form-7/includes/functions.php:46
300
- msgid "Your Name"
301
- msgstr "Dit navn"
302
-
303
- #: d:\wordpress\plugins\contact-form-7/includes/functions.php:46
304
- #: d:\wordpress\plugins\contact-form-7/includes/functions.php:48
305
- msgid "(required)"
306
- msgstr "(påkrævet)"
307
-
308
- #: d:\wordpress\plugins\contact-form-7/includes/functions.php:48
309
- msgid "Your Email"
310
- msgstr "Din e-mail"
311
-
312
- #: d:\wordpress\plugins\contact-form-7/includes/functions.php:50
313
- msgid "Subject"
314
- msgstr "Emne"
315
-
316
- #: d:\wordpress\plugins\contact-form-7/includes/functions.php:52
317
- msgid "Your Message"
318
- msgstr "Din besked"
319
-
320
- #: d:\wordpress\plugins\contact-form-7/includes/functions.php:54
321
- msgid "Send"
322
- msgstr "Send"
323
-
324
- #: d:\wordpress\plugins\contact-form-7/includes/functions.php:62
325
- #, php-format
326
- msgid "From: %s"
327
- msgstr "Fra: %s"
328
-
329
- #: d:\wordpress\plugins\contact-form-7/includes/functions.php:63
330
- #, php-format
331
- msgid "Subject: %s"
332
- msgstr "Emne: %s"
333
-
334
- #: d:\wordpress\plugins\contact-form-7/includes/functions.php:64
335
- msgid "Message Body:"
336
- msgstr "Besked:"
337
-
338
- #: d:\wordpress\plugins\contact-form-7/includes/functions.php:65
339
- #: d:\wordpress\plugins\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 "Denne mail er sendt via en kontaktformular på %1$s %2$s"
343
-
344
- #: d:\wordpress\plugins\contact-form-7/includes/functions.php:168
345
- msgid "Afrikaans"
346
- msgstr "Afrikaans"
347
-
348
- #: d:\wordpress\plugins\contact-form-7/includes/functions.php:169
349
- msgid "Albanian"
350
- msgstr "Albansk"
351
-
352
- #: d:\wordpress\plugins\contact-form-7/includes/functions.php:170
353
- msgid "Arabic"
354
- msgstr "Arabisk"
355
-
356
- #: d:\wordpress\plugins\contact-form-7/includes/functions.php:171
357
- msgid "Bangla"
358
- msgstr "Bangladeshisk"
359
-
360
- #: d:\wordpress\plugins\contact-form-7/includes/functions.php:172
361
- msgid "Bosnian"
362
- msgstr "Bosnisk"
363
-
364
- #: d:\wordpress\plugins\contact-form-7/includes/functions.php:173
365
- msgid "Brazilian Portuguese"
366
- msgstr "Brasiliansk-portugisisk"
367
-
368
- #: d:\wordpress\plugins\contact-form-7/includes/functions.php:174
369
- msgid "Bulgarian"
370
- msgstr "Bulgarsk"
371
-
372
- #: d:\wordpress\plugins\contact-form-7/includes/functions.php:175
373
- msgid "Catalan"
374
- msgstr "Katalansk"
375
-
376
- #: d:\wordpress\plugins\contact-form-7/includes/functions.php:176
377
- msgid "Chinese (Simplified)"
378
- msgstr "Kinesisk (forsimplet)"
379
-
380
- #: d:\wordpress\plugins\contact-form-7/includes/functions.php:177
381
- msgid "Chinese (Traditional)"
382
- msgstr "Kinesisk (traditionel)"
383
-
384
- #: d:\wordpress\plugins\contact-form-7/includes/functions.php:178
385
- msgid "Croatian"
386
- msgstr "Kroatisk"
387
-
388
- #: d:\wordpress\plugins\contact-form-7/includes/functions.php:179
389
- msgid "Czech"
390
- msgstr "Tjekkisk"
391
-
392
- #: d:\wordpress\plugins\contact-form-7/includes/functions.php:180
393
- msgid "Danish"
394
- msgstr "Dansk"
395
-
396
- #: d:\wordpress\plugins\contact-form-7/includes/functions.php:181
397
- msgid "Dutch"
398
- msgstr "Nederlandsk"
399
-
400
- #: d:\wordpress\plugins\contact-form-7/includes/functions.php:182
401
- msgid "English"
402
- msgstr "Engelsk"
403
-
404
- #: d:\wordpress\plugins\contact-form-7/includes/functions.php:183
405
- msgid "Estonian"
406
- msgstr "Estisk"
407
-
408
- #: d:\wordpress\plugins\contact-form-7/includes/functions.php:184
409
- msgid "Finnish"
410
- msgstr "Finsk"
411
-
412
- #: d:\wordpress\plugins\contact-form-7/includes/functions.php:185
413
- msgid "French"
414
- msgstr "Fransk"
415
-
416
- #: d:\wordpress\plugins\contact-form-7/includes/functions.php:186
417
- msgid "Galician"
418
- msgstr "Galicisk"
419
-
420
- #: d:\wordpress\plugins\contact-form-7/includes/functions.php:187
421
- msgid "Georgian"
422
- msgstr "Georgisk"
423
-
424
- #: d:\wordpress\plugins\contact-form-7/includes/functions.php:188
425
- msgid "German"
426
- msgstr "Tysk"
427
-
428
- #: d:\wordpress\plugins\contact-form-7/includes/functions.php:189
429
- msgid "Greek"
430
- msgstr "Græsk"
431
-
432
- #: d:\wordpress\plugins\contact-form-7/includes/functions.php:190
433
- msgid "Hebrew"
434
- msgstr "Hebraisk"
435
-
436
- #: d:\wordpress\plugins\contact-form-7/includes/functions.php:191
437
- msgid "Hindi"
438
- msgstr "Hindu"
439
-
440
- #: d:\wordpress\plugins\contact-form-7/includes/functions.php:192
441
- msgid "Hungarian"
442
- msgstr "Ungarsk"
443
-
444
- #: d:\wordpress\plugins\contact-form-7/includes/functions.php:193
445
- msgid "Indonesian"
446
- msgstr "Indonesisk"
447
-
448
- #: d:\wordpress\plugins\contact-form-7/includes/functions.php:194
449
- msgid "Italian"
450
- msgstr "Italiensk"
451
-
452
- #: d:\wordpress\plugins\contact-form-7/includes/functions.php:195
453
- msgid "Japanese"
454
- msgstr "Japansk"
455
-
456
- #: d:\wordpress\plugins\contact-form-7/includes/functions.php:196
457
- msgid "Korean"
458
- msgstr "Koreansk"
459
-
460
- #: d:\wordpress\plugins\contact-form-7/includes/functions.php:197
461
- msgid "Latvian"
462
- msgstr "Lettisk"
463
-
464
- #: d:\wordpress\plugins\contact-form-7/includes/functions.php:198
465
- msgid "Lithuanian"
466
- msgstr "Litauisk"
467
-
468
- #: d:\wordpress\plugins\contact-form-7/includes/functions.php:199
469
- msgid "Malayalam"
470
- msgstr "Malayalam"
471
-
472
- #: d:\wordpress\plugins\contact-form-7/includes/functions.php:200
473
- msgid "Norwegian"
474
- msgstr "Norsk"
475
-
476
- #: d:\wordpress\plugins\contact-form-7/includes/functions.php:201
477
- msgid "Persian"
478
- msgstr "Persisk (farsi)"
479
-
480
- #: d:\wordpress\plugins\contact-form-7/includes/functions.php:202
481
- msgid "Polish"
482
- msgstr "Polsk"
483
-
484
- #: d:\wordpress\plugins\contact-form-7/includes/functions.php:203
485
- msgid "Portuguese"
486
- msgstr "Portugisisk"
487
-
488
- #: d:\wordpress\plugins\contact-form-7/includes/functions.php:204
489
- msgid "Russian"
490
- msgstr "Russisk"
491
-
492
- #: d:\wordpress\plugins\contact-form-7/includes/functions.php:205
493
- msgid "Romanian"
494
- msgstr "Rumænsk"
495
-
496
- #: d:\wordpress\plugins\contact-form-7/includes/functions.php:206
497
- msgid "Serbian"
498
- msgstr "Serbisk"
499
-
500
- #: d:\wordpress\plugins\contact-form-7/includes/functions.php:207
501
- msgid "Slovak"
502
- msgstr "Slovakisk"
503
-
504
- #: d:\wordpress\plugins\contact-form-7/includes/functions.php:208
505
- msgid "Slovene"
506
- msgstr "Slovensk"
507
-
508
- #: d:\wordpress\plugins\contact-form-7/includes/functions.php:209
509
- msgid "Spanish"
510
- msgstr "Spansk"
511
-
512
- #: d:\wordpress\plugins\contact-form-7/includes/functions.php:210
513
- msgid "Swedish"
514
- msgstr "Svensk"
515
-
516
- #: d:\wordpress\plugins\contact-form-7/includes/functions.php:211
517
- msgid "Thai"
518
- msgstr "Thailandsk"
519
-
520
- #: d:\wordpress\plugins\contact-form-7/includes/functions.php:212
521
- msgid "Turkish"
522
- msgstr "Tyrkisk"
523
-
524
- #: d:\wordpress\plugins\contact-form-7/includes/functions.php:213
525
- msgid "Ukrainian"
526
- msgstr "Ukrainsk"
527
-
528
- #: d:\wordpress\plugins\contact-form-7/includes/functions.php:214
529
- msgid "Vietnamese"
530
- msgstr "Vietnamesisk"
531
-
532
- #: d:\wordpress\plugins\contact-form-7/modules/acceptance.php:104
533
- msgid "Acceptance"
534
- msgstr "Accept"
535
-
536
- #: d:\wordpress\plugins\contact-form-7/modules/acceptance.php:113
537
- #: d:\wordpress\plugins\contact-form-7/modules/captcha.php:214
538
- #: d:\wordpress\plugins\contact-form-7/modules/checkbox.php:209
539
- #: d:\wordpress\plugins\contact-form-7/modules/file.php:241
540
- msgid "Name"
541
- msgstr "Navn"
542
-
543
- #: d:\wordpress\plugins\contact-form-7/modules/acceptance.php:118
544
- #: d:\wordpress\plugins\contact-form-7/modules/acceptance.php:121
545
- #: d:\wordpress\plugins\contact-form-7/modules/captcha.php:221
546
- #: d:\wordpress\plugins\contact-form-7/modules/captcha.php:224
547
- #: d:\wordpress\plugins\contact-form-7/modules/captcha.php:229
548
- #: d:\wordpress\plugins\contact-form-7/modules/captcha.php:232
549
- #: d:\wordpress\plugins\contact-form-7/modules/captcha.php:236
550
- #: d:\wordpress\plugins\contact-form-7/modules/captcha.php:247
551
- #: d:\wordpress\plugins\contact-form-7/modules/captcha.php:250
552
- #: d:\wordpress\plugins\contact-form-7/modules/captcha.php:255
553
- #: d:\wordpress\plugins\contact-form-7/modules/captcha.php:258
554
- #: d:\wordpress\plugins\contact-form-7/modules/checkbox.php:214
555
- #: d:\wordpress\plugins\contact-form-7/modules/checkbox.php:217
556
- #: d:\wordpress\plugins\contact-form-7/modules/file.php:246
557
- #: d:\wordpress\plugins\contact-form-7/modules/file.php:249
558
- #: d:\wordpress\plugins\contact-form-7/modules/file.php:254
559
- #: d:\wordpress\plugins\contact-form-7/modules/file.php:257
560
- msgid "optional"
561
- msgstr "valgfrit"
562
-
563
- #: d:\wordpress\plugins\contact-form-7/modules/acceptance.php:127
564
- msgid "Make this checkbox checked by default?"
565
- msgstr "Skal afkrydsningsfeltet være markeret som standard?"
566
-
567
- # tjekkes
568
- #: d:\wordpress\plugins\contact-form-7/modules/acceptance.php:128
569
- msgid "Make this checkbox work inversely?"
570
- msgstr "Skal afkrydsningsfeltet virke omvendt?"
571
-
572
- #: d:\wordpress\plugins\contact-form-7/modules/acceptance.php:129
573
- msgid "* That means visitor who accepts the term unchecks it."
574
- msgstr "* Det betyder, at en besøgende, som accepterer betingelserne, afmarkerer det."
575
-
576
- #: d:\wordpress\plugins\contact-form-7/modules/acceptance.php:134
577
- #: d:\wordpress\plugins\contact-form-7/modules/captcha.php:263
578
- #: d:\wordpress\plugins\contact-form-7/modules/checkbox.php:237
579
- #: d:\wordpress\plugins\contact-form-7/modules/file.php:262
580
- msgid "Copy this code and paste it into the form left."
581
- msgstr "Kopier og indsæt denne kode i formularen til venstre"
582
-
583
- #: d:\wordpress\plugins\contact-form-7/modules/captcha.php:70
584
- msgid "To use CAPTCHA, you need <a href=\"http://wordpress.org/extend/plugins/really-simple-captcha/\">Really Simple CAPTCHA</a> plugin installed."
585
- msgstr "For at bruge CAPTCHA skal du have<a href=\"http://wordpress.org/extend/plugins/really-simple-captcha/\">Really Simple CAPTCHA</a> pluginnet installeret."
586
-
587
- #: d:\wordpress\plugins\contact-form-7/modules/captcha.php:189
588
- msgid "The code that sender entered does not match the CAPTCHA"
589
- msgstr "Svaret, som afsender indtastede, matcher ikke CAPTCHA-kontrollen"
590
-
591
- #: d:\wordpress\plugins\contact-form-7/modules/captcha.php:190
592
- msgid "Your entered code is incorrect."
593
- msgstr "Dit indtastede svar er forkert."
594
-
595
- #: d:\wordpress\plugins\contact-form-7/modules/captcha.php:200
596
- msgid "CAPTCHA"
597
- msgstr "CAPTCHA-kontrol"
598
-
599
- #: d:\wordpress\plugins\contact-form-7/modules/captcha.php:211
600
- msgid "Note: To use CAPTCHA, you need Really Simple CAPTCHA plugin installed."
601
- msgstr "Bemærk, at du for at bruge CAPTCHA, skal have Really Simple CAPTCHA-pluginnet installeret."
602
-
603
- #: d:\wordpress\plugins\contact-form-7/modules/captcha.php:218
604
- msgid "Image settings"
605
- msgstr "Billedindstillinger"
606
-
607
- #: d:\wordpress\plugins\contact-form-7/modules/captcha.php:229
608
- msgid "Foreground color"
609
- msgstr "Forgrundsfarve"
610
-
611
- #: d:\wordpress\plugins\contact-form-7/modules/captcha.php:232
612
- msgid "Background color"
613
- msgstr "Baggrundsfarve"
614
-
615
- #: d:\wordpress\plugins\contact-form-7/modules/captcha.php:236
616
- msgid "Image size"
617
- msgstr "Billedstørrelse"
618
-
619
- #: d:\wordpress\plugins\contact-form-7/modules/captcha.php:237
620
- msgid "Small"
621
- msgstr "Lille"
622
-
623
- #: d:\wordpress\plugins\contact-form-7/modules/captcha.php:238
624
- msgid "Medium"
625
- msgstr "Medium"
626
-
627
- #: d:\wordpress\plugins\contact-form-7/modules/captcha.php:239
628
- msgid "Large"
629
- msgstr "Stor"
630
-
631
- #: d:\wordpress\plugins\contact-form-7/modules/captcha.php:244
632
- msgid "Input field settings"
633
- msgstr "Indstillinger for feltet"
634
-
635
- #: d:\wordpress\plugins\contact-form-7/modules/captcha.php:264
636
- msgid "For image"
637
- msgstr "For billedet"
638
-
639
- #: d:\wordpress\plugins\contact-form-7/modules/captcha.php:266
640
- msgid "For input field"
641
- msgstr "For indtastningsfeltet"
642
-
643
- #: d:\wordpress\plugins\contact-form-7/modules/captcha.php:296
644
- #, php-format
645
- 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."
646
- msgstr "Denne kontaktformular indeholder CAPTCHA-felter, men den midlertidige mappe til filerne (%s) eksisterer ikke eller er skrivbar. Du kan oprette mappen eller ændre adgangstilladelserne (permissions) selv."
647
-
648
- #: d:\wordpress\plugins\contact-form-7/modules/captcha.php:302
649
- msgid "This contact form contains CAPTCHA fields, but the necessary libraries (GD and FreeType) are not available on your server."
650
- msgstr "Denne kontaktformular indeholder CAPTCHA-felter, men de nødvendige biblioteker (GD og FreeType) er ikke tilgængelige på din server."
651
-
652
- #: d:\wordpress\plugins\contact-form-7/modules/checkbox.php:182
653
- msgid "Checkboxes"
654
- msgstr "Afkrydsningsfelt"
655
-
656
- #: d:\wordpress\plugins\contact-form-7/modules/checkbox.php:185
657
- msgid "Radio buttons"
658
- msgstr "Radioknapper"
659
-
660
- #: d:\wordpress\plugins\contact-form-7/modules/checkbox.php:206
661
- #: d:\wordpress\plugins\contact-form-7/modules/file.php:240
662
- msgid "Required field?"
663
- msgstr "Påkrævet felt?"
664
-
665
- #: d:\wordpress\plugins\contact-form-7/modules/checkbox.php:222
666
- msgid "Choices"
667
- msgstr "Valg"
668
-
669
- #: d:\wordpress\plugins\contact-form-7/modules/checkbox.php:224
670
- msgid "* One choice per line."
671
- msgstr "* Et valg per linje."
672
-
673
- #: d:\wordpress\plugins\contact-form-7/modules/checkbox.php:228
674
- msgid "Put a label first, a checkbox last?"
675
- msgstr "Vil du have etiketten forrest og afkrydsningsfeltet sidst?"
676
-
677
- #: d:\wordpress\plugins\contact-form-7/modules/checkbox.php:229
678
- msgid "Wrap each item with <label> tag?"
679
- msgstr "Sæt <label>-tag uden om hver?"
680
-
681
- #: d:\wordpress\plugins\contact-form-7/modules/checkbox.php:231
682
- msgid "Make checkboxes exclusive?"
683
- msgstr "Skal afkrydsningsfelter være eksklusive? (altså så der kun kan vælges én?)"
684
-
685
- #: d:\wordpress\plugins\contact-form-7/modules/checkbox.php:239
686
- msgid "And, put this code into the Mail fields below."
687
- msgstr "Og indsæt denne kode i Mail-felterne nedenfor."
688
-
689
- #: d:\wordpress\plugins\contact-form-7/modules/file.php:204
690
- msgid "Uploading a file fails for any reason"
691
- msgstr "Uploadning af en fil mislykkedes af en eller anden grund"
692
-
693
- #: d:\wordpress\plugins\contact-form-7/modules/file.php:205
694
- msgid "Failed to upload file."
695
- msgstr "Filupload mislykkedes"
696
-
697
- #: d:\wordpress\plugins\contact-form-7/modules/file.php:209
698
- msgid "Uploaded file is not allowed file type"
699
- msgstr "Uploadet fil har ikke en tilladt filtype"
700
-
701
- #: d:\wordpress\plugins\contact-form-7/modules/file.php:210
702
- msgid "This file type is not allowed."
703
- msgstr "Denne filtype er ikke tilladt."
704
-
705
- #: d:\wordpress\plugins\contact-form-7/modules/file.php:214
706
- msgid "Uploaded file is too large"
707
- msgstr "Uploadet fil er for stor"
708
-
709
- #: d:\wordpress\plugins\contact-form-7/modules/file.php:215
710
- msgid "This file is too large."
711
- msgstr "Filen er for stor."
712
-
713
- #: d:\wordpress\plugins\contact-form-7/modules/file.php:219
714
- msgid "Uploading a file fails for PHP error"
715
- msgstr "Uploadning af en fil mislykkedes på grund af en PHP-fejl"
716
-
717
- #: d:\wordpress\plugins\contact-form-7/modules/file.php:220
718
- msgid "Failed to upload file. Error occurred."
719
- msgstr "Filupload mislykkedes. En fejl opstod."
720
-
721
- #: d:\wordpress\plugins\contact-form-7/modules/file.php:231
722
- msgid "File upload"
723
- msgstr "Filupload"
724
-
725
- #: d:\wordpress\plugins\contact-form-7/modules/file.php:254
726
- msgid "File size limit"
727
- msgstr "Begrænsning på filstørrelse"
728
-
729
- #: d:\wordpress\plugins\contact-form-7/modules/file.php:254
730
- msgid "bytes"
731
- msgstr "bytes"
732
-
733
- #: d:\wordpress\plugins\contact-form-7/modules/file.php:257
734
- msgid "Acceptable file types"
735
- msgstr "Tilladte filtyper"
736
-
737
- #: d:\wordpress\plugins\contact-form-7/modules/file.php:264
738
- msgid "And, put this code into the File Attachments field below."
739
- msgstr "Og indsæt denne kode i feltet Filvedhæftninger nedenfor."
740
-
741
- #: d:\wordpress\plugins\contact-form-7/modules/file.php:289
742
- #, php-format
743
- 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."
744
- msgstr "Denne kontaktformular indeholder felter for filuploadning, men den midlertidige mappe til filerne (%s) eksisterer ikke eller er skrivbar. Du kan oprette mappen eller ændre adgangstilladelserne (permissions) selv."
745
-
746
- #: d:\wordpress\plugins\contact-form-7/modules/icl.php:74
747
- 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."
748
- msgstr "Denne kontaktformular indeholder [icl]-tags, men de bruges ikke mere og virker ikke længere med denne version af Contact Form 7. <a href=\"http://contactform7.com/2009/12/25/contact-form-in-your-language/#Creating_contact_form_in_different_languages\" target=\"_blank\">Der er en simplere måde at oprette kontaktformularer på andre sprog på</a>, og du anbefales at bruge den."
749
-
750
- #: d:\wordpress\plugins\contact-form-7/modules/quiz.php:170
751
- msgid "Sender doesn't enter the correct answer to the quiz"
752
- msgstr "Afsender indtastede ikke det rigtige svar på quizzen"
753
-
754
- #: d:\wordpress\plugins\contact-form-7/modules/quiz.php:171
755
- msgid "Your answer is not correct."
756
- msgstr "Dit indtastede svar er ikke korrekt."
757
-
758
- #: d:\wordpress\plugins\contact-form-7/modules/quiz.php:181
759
- msgid "Quiz"
760
- msgstr "Quiz"
761
-
762
- #: d:\wordpress\plugins\contact-form-7/modules/quiz.php:211
763
- msgid "Quizzes"
764
- msgstr "Quizzer"
765
-
766
- #: d:\wordpress\plugins\contact-form-7/modules/quiz.php:213
767
- msgid "* quiz|answer (e.g. 1+1=?|2)"
768
- msgstr "' quiz|svar (f.eks. 1+1=?|2)"
769
-
770
- #: d:\wordpress\plugins\contact-form-7/modules/select.php:154
771
- msgid "Drop-down menu"
772
- msgstr "Drop-down menu"
773
-
774
- #: d:\wordpress\plugins\contact-form-7/modules/select.php:183
775
- msgid "Allow multiple selections?"
776
- msgstr "Tillad flere valg?"
777
-
778
- #: d:\wordpress\plugins\contact-form-7/modules/select.php:184
779
- msgid "Insert a blank item as the first option?"
780
- msgstr "Indsæt et tomt punkt som første valgmulighed?"
781
-
782
- #: d:\wordpress\plugins\contact-form-7/modules/submit.php:62
783
- msgid "Submit button"
784
- msgstr "Send-knap"
785
-
786
- #: d:\wordpress\plugins\contact-form-7/modules/submit.php:80
787
- msgid "Label"
788
- msgstr "Tekst på knap"
789
-
790
- #: d:\wordpress\plugins\contact-form-7/modules/text.php:137
791
- msgid "Text field"
792
- msgstr "Tekstfelt"
793
-
794
- #: d:\wordpress\plugins\contact-form-7/modules/text.php:140
795
- msgid "Email field"
796
- msgstr "E-mail-felt"
797
-
798
- #: d:\wordpress\plugins\contact-form-7/modules/text.php:182
799
- msgid "Akismet"
800
- msgstr "Akismet"
801
-
802
- #: d:\wordpress\plugins\contact-form-7/modules/text.php:184
803
- msgid "This field requires author's name"
804
- msgstr "Dette felt kræver forfatters navn"
805
-
806
- #: d:\wordpress\plugins\contact-form-7/modules/text.php:185
807
- msgid "This field requires author's URL"
808
- msgstr "Dette felt kræver forfatters URL"
809
-
810
- #: d:\wordpress\plugins\contact-form-7/modules/text.php:187
811
- msgid "This field requires author's email address"
812
- msgstr "Dette felt kræver forfatters e-mail-adresse"
813
-
814
- #: d:\wordpress\plugins\contact-form-7/modules/text.php:191
815
- #: d:\wordpress\plugins\contact-form-7/modules/textarea.php:157
816
- msgid "Default value"
817
- msgstr "Standardværdi"
818
-
819
- #: d:\wordpress\plugins\contact-form-7/modules/textarea.php:126
820
- msgid "Text area"
821
- msgstr "Tekstboks"
822
-
823
- #~ msgid ""
824
- #~ "Is this plugin useful for you? If you like it, please help the developer."
825
- #~ msgstr ""
826
- #~ "Kan du bruge dette plugin? Hvis du kan lide det, så hjælp udvikleren."
827
-
828
- #~ msgid ""
829
- #~ "Developing a plugin and providing user support is really hard work. "
830
- #~ "Please help."
831
- #~ msgstr ""
832
- #~ "Udvikling af plugins og brugersupport er faktisk hårdt arbejde. Støt det!"
833
-
834
- #~ msgid "This mail is created by Contact Form 7 plugin for WordPress."
835
- #~ msgstr "Denne mail er genereret af pluginnet Contact Form 7 for WordPress."
836
-
837
- #~ msgid "(You need WordPress 2.7 or greater to use this feature)"
838
- #~ msgstr ""
839
- #~ "(Du skal bruge WordPress 2.7 eller nyere for at bruge denne funktion)"
840
-
841
- #~ msgid "Delete this contact form"
842
- #~ msgstr "Slet denne kontakt formular"
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
languages/wpcf7-de_DE.po DELETED
@@ -1,844 +0,0 @@
1
- msgid ""
2
- msgstr ""
3
- "Project-Id-Version: Contact Form | V2.2.1\n"
4
- "Report-Msgid-Bugs-To: \n"
5
- "POT-Creation-Date: 2010-03-23 06:47+0900\n"
6
- "PO-Revision-Date: 2010-05-26 21:16+0100\n"
7
- "Last-Translator: Ivan Graf <contact@bildergallery.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: German\n"
17
- "X-Poedit-Country: SWITZERLAND\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 "Formular"
29
-
30
- #: contact-form-7/admin/admin.php:123
31
- msgid "Edit Contact Forms"
32
- msgstr "Bearbeite Contact Forms"
33
-
34
- #: contact-form-7/admin/admin.php:123
35
- msgid "Edit"
36
- msgstr "Bearbeiten"
37
-
38
- #: contact-form-7/admin/admin.php:162
39
- msgid "Generate Tag"
40
- msgstr "Generiere Tag"
41
-
42
- #: contact-form-7/admin/admin.php:163
43
- msgid "Show"
44
- msgstr "Anzeigen"
45
-
46
- #: contact-form-7/admin/admin.php:164
47
- msgid "Hide"
48
- msgstr "Verstecken"
49
-
50
- #: contact-form-7/admin/admin.php:261
51
- msgid "Contact form"
52
- msgstr "Kontaktformular"
53
-
54
- #: contact-form-7/admin/admin.php:280
55
- msgid "Settings"
56
- msgstr "Einstellungen"
57
-
58
- #: contact-form-7/admin/admin.php:291
59
- msgid "http://contactform7.com/"
60
- msgstr "http://contactform7.com/"
61
-
62
- #: contact-form-7/admin/admin.php:292
63
- msgid "Contactform7.com"
64
- msgstr "Contactform7.com"
65
-
66
- #: contact-form-7/admin/admin.php:293
67
- msgid "http://contactform7.com/docs/"
68
- msgstr "http://contactform7.com/docs/"
69
-
70
- #: contact-form-7/admin/admin.php:294
71
- msgid "Docs"
72
- msgstr "Dokumente"
73
-
74
- #: contact-form-7/admin/admin.php:295
75
- msgid "http://contactform7.com/faq/"
76
- msgstr "http://contactform7.com/faq/"
77
-
78
- #: contact-form-7/admin/admin.php:296
79
- msgid "FAQ"
80
- msgstr "Faq"
81
-
82
- #: contact-form-7/admin/admin.php:297
83
- msgid "http://contactform7.com/support/"
84
- msgstr "http://contactform7.com/support/"
85
-
86
- #: contact-form-7/admin/admin.php:298
87
- msgid "Support"
88
- msgstr "Support"
89
-
90
- #: contact-form-7/admin/admin.php:312
91
- msgid "Contact form created."
92
- msgstr "Kontaktformular erstellt."
93
-
94
- #: contact-form-7/admin/admin.php:315
95
- msgid "Contact form saved."
96
- msgstr "Kontaktformular gespeichert."
97
-
98
- #: contact-form-7/admin/admin.php:318
99
- msgid "Contact form deleted."
100
- msgstr "Kontaktformular gelöscht."
101
-
102
- #: contact-form-7/admin/admin.php:321
103
- msgid "Database table created."
104
- msgstr "Datenbanktabelle erstellt."
105
-
106
- #: contact-form-7/admin/admin.php:324
107
- msgid "Failed to create database table."
108
- msgstr "Fehler beim Erstellen einer Datenbanktabelle."
109
-
110
- #: contact-form-7/admin/admin.php:357
111
- msgid "Contact Form 7 needs your support. Please donate today."
112
- msgstr "Contact Form 7 braucht Ihre Unterstützung. Bitte spenden Sie noch heute."
113
-
114
- #: contact-form-7/admin/admin.php:358
115
- msgid "Your contribution is needed for making this plugin better."
116
- msgstr "Ihr Beitrag ist für die Herstellung dieses Plugin sehr nützlich."
117
-
118
- #: contact-form-7/admin/admin.php:364
119
- msgid "http://contactform7.com/donate/"
120
- msgstr "http://contactform7.com/donate/"
121
-
122
- #: contact-form-7/admin/admin.php:364
123
- msgid "Donate"
124
- msgstr "Spende"
125
-
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>Die Datenbanktabelle für Contact Form 7 ist nicht vorhanden.</strong> Sie müssen zuerst eine <a href=\"%s\">Tabelle erstellen</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>Die Datenbanktabelle für Contact Form 7 ist nicht vorhanden.</strong>"
134
-
135
- #: contact-form-7/admin/edit.php:45
136
- msgid "Add new"
137
- msgstr "Neues Formular"
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 "Kopieren Sie diesen Code und fügen ihn in Ihrem Artikel, Seite oder Text-Widget ein."
142
-
143
- #: contact-form-7/admin/edit.php:75
144
- #: contact-form-7/admin/edit.php:309
145
- msgid "Save"
146
- msgstr "Speichern"
147
-
148
- #: contact-form-7/admin/edit.php:82
149
- msgid "Copy"
150
- msgstr "Kopieren"
151
-
152
- #: contact-form-7/admin/edit.php:87
153
- msgid "Delete"
154
- msgstr "Löschen"
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
- "Soll dieses Kontaktformular wirklich gelöscht werden?\n"
162
- "'Abbrechen' um zu stoppen oder 'OK' um zu löschen."
163
-
164
- #: contact-form-7/admin/edit.php:104
165
- msgid "Form"
166
- msgstr "Formular"
167
-
168
- #: contact-form-7/admin/edit.php:128
169
- msgid "Mail"
170
- msgstr "Mail"
171
-
172
- #: contact-form-7/admin/edit.php:135
173
- #: contact-form-7/admin/edit.php:202
174
- msgid "To:"
175
- msgstr "An:"
176
-
177
- #: contact-form-7/admin/edit.php:140
178
- #: contact-form-7/admin/edit.php:207
179
- msgid "From:"
180
- msgstr "Von:"
181
-
182
- #: contact-form-7/admin/edit.php:145
183
- #: contact-form-7/admin/edit.php:212
184
- msgid "Subject:"
185
- msgstr "Betreff:"
186
-
187
- #: contact-form-7/admin/edit.php:152
188
- #: contact-form-7/admin/edit.php:219
189
- msgid "Additional headers:"
190
- msgstr "Zusätzliche Kopfzeilen:"
191
-
192
- #: contact-form-7/admin/edit.php:157
193
- #: contact-form-7/admin/edit.php:224
194
- msgid "File attachments:"
195
- msgstr "Datei Anhänge:"
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 "HTML-Content-Typ verwenden"
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 "Nachrichtentext:"
207
-
208
- #: contact-form-7/admin/edit.php:188
209
- msgid "Mail (2)"
210
- msgstr "Mail (2)"
211
-
212
- #: contact-form-7/admin/edit.php:194
213
- msgid "Use mail (2)"
214
- msgstr "Verwende Mail (2)"
215
-
216
- #: contact-form-7/admin/edit.php:255
217
- msgid "Messages"
218
- msgstr "Meldungen"
219
-
220
- #: contact-form-7/admin/edit.php:285
221
- msgid "Additional Settings"
222
- msgstr "Zusätzliche Einstellungen"
223
-
224
- #: contact-form-7/admin/edit.php:333
225
- #, php-format
226
- msgid "Use the default language (%s)"
227
- msgstr "Verwenden Sie die Standardsprache (%s)"
228
-
229
- #: contact-form-7/admin/edit.php:334
230
- #: contact-form-7/admin/edit.php:347
231
- msgid "Add New"
232
- msgstr "Neues Formular"
233
-
234
- #: contact-form-7/admin/edit.php:337
235
- msgid "Or"
236
- msgstr "oder"
237
-
238
- #: contact-form-7/admin/edit.php:342
239
- msgid "(select language)"
240
- msgstr "(wähle Sprache)"
241
-
242
- #: contact-form-7/includes/classes.php:564
243
- msgid "Untitled"
244
- msgstr "Ohne Titel"
245
-
246
- #: contact-form-7/includes/functions.php:6
247
- msgid "Sender's message was sent successfully"
248
- msgstr "Die Nachricht vom Absender wurde erfolgreich gesendet."
249
-
250
- #: contact-form-7/includes/functions.php:7
251
- msgid "Your message was sent successfully. Thanks."
252
- msgstr "Ihre Nachricht wurde erfolgreich gesendet. Vielen Dank!"
253
-
254
- #: contact-form-7/includes/functions.php:11
255
- msgid "Sender's message was failed to send"
256
- msgstr "Die Nachricht vom Absender ist fehlerhaft."
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 "Das versenden der Nachricht war fehlerhaft. Bitte versuchen Sie es noch einmal zu einem späteren Zeitpunkt oder informieren Sie den Administrator."
262
-
263
- #: contact-form-7/includes/functions.php:16
264
- msgid "Akismet judged the sending activity as spamming"
265
- msgstr "Die Webseite Akismet beurteilt Ihre Nachricht als Spam."
266
-
267
- #: contact-form-7/includes/functions.php:21
268
- msgid "Validation errors occurred"
269
- msgstr "Fehler beim Ausfüllen des Formulars!"
270
-
271
- #: contact-form-7/includes/functions.php:22
272
- msgid "Validation errors occurred. Please confirm the fields and submit it again."
273
- msgstr "Fehler beim Ausfüllen des Formulars. Bitte überprüfen Sie Ihre Eingaben und drücken nochmals auf senden."
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 "Sie müssen dieses Bedingungsfeld akzeptieren!"
278
-
279
- #: contact-form-7/includes/functions.php:27
280
- msgid "Please accept the terms to proceed."
281
- msgstr "Bitte akzeptieren Sie die Bedingungen um fortzufahren."
282
-
283
- #: contact-form-7/includes/functions.php:31
284
- msgid "Email address that sender entered is invalid"
285
- msgstr "Die eingegebene Email Adresse ist ungültig!"
286
-
287
- #: contact-form-7/includes/functions.php:32
288
- msgid "Email address seems invalid."
289
- msgstr "Die Email Adresse scheint nicht gültig zu sein."
290
-
291
- #: contact-form-7/includes/functions.php:36
292
- msgid "There is a field that sender is needed to fill in"
293
- msgstr "Dieses Feld muss ausgefüllt werden!"
294
-
295
- #: contact-form-7/includes/functions.php:37
296
- msgid "Please fill the required field."
297
- msgstr "Bitte füllen Sie dieses Pflichtfeld aus!"
298
-
299
- #: contact-form-7/includes/functions.php:46
300
- msgid "Your Name"
301
- msgstr "Ihre Name"
302
-
303
- #: contact-form-7/includes/functions.php:46
304
- #: contact-form-7/includes/functions.php:48
305
- msgid "(required)"
306
- msgstr "(Pflichtfeld)"
307
-
308
- #: contact-form-7/includes/functions.php:48
309
- msgid "Your Email"
310
- msgstr "Ihre Email"
311
-
312
- #: contact-form-7/includes/functions.php:50
313
- msgid "Subject"
314
- msgstr "Betreff"
315
-
316
- #: contact-form-7/includes/functions.php:52
317
- msgid "Your Message"
318
- msgstr "Ihre Nachricht"
319
-
320
- #: contact-form-7/includes/functions.php:54
321
- msgid "Send"
322
- msgstr "Senden"
323
-
324
- #: contact-form-7/includes/functions.php:62
325
- #, php-format
326
- msgid "From: %s"
327
- msgstr "Von: %s"
328
-
329
- #: contact-form-7/includes/functions.php:63
330
- #, php-format
331
- msgid "Subject: %s"
332
- msgstr "Betreff: %s"
333
-
334
- #: contact-form-7/includes/functions.php:64
335
- msgid "Message Body:"
336
- msgstr "Nachrichtentext:"
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 "Dieses Mail wurde über das Kontaktformular von %1$s (%2$s) gesendet"
343
-
344
- #: contact-form-7/includes/functions.php:168
345
- msgid "Afrikaans"
346
- msgstr "Afrikanisch"
347
-
348
- #: contact-form-7/includes/functions.php:169
349
- msgid "Albanian"
350
- msgstr "Albanisch"
351
-
352
- #: contact-form-7/includes/functions.php:170
353
- msgid "Arabic"
354
- msgstr "Arabisch"
355
-
356
- #: contact-form-7/includes/functions.php:171
357
- msgid "Bangla"
358
- msgstr "Bengalisch"
359
-
360
- #: contact-form-7/includes/functions.php:172
361
- msgid "Bosnian"
362
- msgstr "Bosnisch"
363
-
364
- #: contact-form-7/includes/functions.php:173
365
- msgid "Brazilian Portuguese"
366
- msgstr "Brasilianisch Portugiesisch"
367
-
368
- #: contact-form-7/includes/functions.php:174
369
- msgid "Bulgarian"
370
- msgstr "Bulgarisch"
371
-
372
- #: contact-form-7/includes/functions.php:175
373
- msgid "Catalan"
374
- msgstr "Katalanisch"
375
-
376
- #: contact-form-7/includes/functions.php:176
377
- msgid "Chinese (Simplified)"
378
- msgstr "Chinesisch (Vereinfacht)"
379
-
380
- #: contact-form-7/includes/functions.php:177
381
- msgid "Chinese (Traditional)"
382
- msgstr "Chinesisch (Traditionell)"
383
-
384
- #: contact-form-7/includes/functions.php:178
385
- msgid "Croatian"
386
- msgstr "Kroatisch"
387
-
388
- #: contact-form-7/includes/functions.php:179
389
- msgid "Czech"
390
- msgstr "Tschechisch"
391
-
392
- #: contact-form-7/includes/functions.php:180
393
- msgid "Danish"
394
- msgstr "Dänisch"
395
-
396
- #: contact-form-7/includes/functions.php:181
397
- msgid "Dutch"
398
- msgstr "Holländisch"
399
-
400
- #: contact-form-7/includes/functions.php:182
401
- msgid "English"
402
- msgstr "Englisch"
403
-
404
- #: contact-form-7/includes/functions.php:183
405
- msgid "Estonian"
406
- msgstr "Estonian"
407
-
408
- #: contact-form-7/includes/functions.php:184
409
- msgid "Finnish"
410
- msgstr "Finnisch"
411
-
412
- #: contact-form-7/includes/functions.php:185
413
- msgid "French"
414
- msgstr "Französisch"
415
-
416
- #: contact-form-7/includes/functions.php:186
417
- msgid "Galician"
418
- msgstr "Galicisch"
419
-
420
- #: contact-form-7/includes/functions.php:187
421
- msgid "Georgian"
422
- msgstr "Georgisch"
423
-
424
- #: contact-form-7/includes/functions.php:188
425
- msgid "German"
426
- msgstr "Deutsch"
427
-
428
- #: contact-form-7/includes/functions.php:189
429
- msgid "Greek"
430
- msgstr "Griechisch"
431
-
432
- #: contact-form-7/includes/functions.php:190
433
- msgid "Hebrew"
434
- msgstr "Hebräisch"
435
-
436
- #: contact-form-7/includes/functions.php:191
437
- msgid "Hindi"
438
- msgstr "Hindisch"
439
-
440
- #: contact-form-7/includes/functions.php:192
441
- msgid "Hungarian"
442
- msgstr "Ungarisch"
443
-
444
- #: contact-form-7/includes/functions.php:193
445
- msgid "Indonesian"
446
- msgstr "Indonesisch"
447
-
448
- #: contact-form-7/includes/functions.php:194
449
- msgid "Italian"
450
- msgstr "Italienisch"
451
-
452
- #: contact-form-7/includes/functions.php:195
453
- msgid "Japanese"
454
- msgstr "Japanisch"
455
-
456
- #: contact-form-7/includes/functions.php:196
457
- msgid "Korean"
458
- msgstr "Koreanisch"
459
-
460
- #: contact-form-7/includes/functions.php:197
461
- msgid "Latvian"
462
- msgstr "Lettisch"
463
-
464
- #: contact-form-7/includes/functions.php:198
465
- msgid "Lithuanian"
466
- msgstr "Litauisch"
467
-
468
- #: contact-form-7/includes/functions.php:199
469
- msgid "Malayalam"
470
- msgstr "Malayalam"
471
-
472
- #: contact-form-7/includes/functions.php:200
473
- msgid "Norwegian"
474
- msgstr "Norwegisch"
475
-
476
- #: contact-form-7/includes/functions.php:201
477
- msgid "Persian"
478
- msgstr "Persisch"
479
-
480
- #: contact-form-7/includes/functions.php:202
481
- msgid "Polish"
482
- msgstr "Polnisch"
483
-
484
- #: contact-form-7/includes/functions.php:203
485
- msgid "Portuguese"
486
- msgstr "Portugiesisch"
487
-
488
- #: contact-form-7/includes/functions.php:204
489
- msgid "Russian"
490
- msgstr "Russisch"
491
-
492
- #: contact-form-7/includes/functions.php:205
493
- msgid "Romanian"
494
- msgstr "Rumänisch"
495
-
496
- #: contact-form-7/includes/functions.php:206
497
- msgid "Serbian"
498
- msgstr "Serbisch"
499
-
500
- #: contact-form-7/includes/functions.php:207
501
- msgid "Slovak"
502
- msgstr "Slowakisch"
503
-
504
- #: contact-form-7/includes/functions.php:208
505
- msgid "Slovene"
506
- msgstr "Slovenisch"
507
-
508
- #: contact-form-7/includes/functions.php:209
509
- msgid "Spanish"
510
- msgstr "Spanisch"
511
-
512
- #: contact-form-7/includes/functions.php:210
513
- msgid "Swedish"
514
- msgstr "Schwedisch"
515
-
516
- #: contact-form-7/includes/functions.php:211
517
- msgid "Thai"
518
- msgstr "Thailändisch"
519
-
520
- #: contact-form-7/includes/functions.php:212
521
- msgid "Turkish"
522
- msgstr "Türkisch"
523
-
524
- #: contact-form-7/includes/functions.php:213
525
- msgid "Ukrainian"
526
- msgstr "Ukrainisch"
527
-
528
- #: contact-form-7/includes/functions.php:214
529
- msgid "Vietnamese"
530
- msgstr "Vietnamesisch"
531
-
532
- #: contact-form-7/modules/acceptance.php:104
533
- msgid "Acceptance"
534
- msgstr "Zustimmung"
535
-
536
- #: contact-form-7/modules/acceptance.php:113
537
- #: contact-form-7/modules/captcha.php:214
538
- #: contact-form-7/modules/checkbox.php:209
539
- #: contact-form-7/modules/file.php:241
540
- msgid "Name"
541
- msgstr "Name"
542
-
543
- #: contact-form-7/modules/acceptance.php:118
544
- #: contact-form-7/modules/acceptance.php:121
545
- #: contact-form-7/modules/captcha.php:221
546
- #: contact-form-7/modules/captcha.php:224
547
- #: contact-form-7/modules/captcha.php:229
548
- #: contact-form-7/modules/captcha.php:232
549
- #: contact-form-7/modules/captcha.php:236
550
- #: contact-form-7/modules/captcha.php:247
551
- #: contact-form-7/modules/captcha.php:250
552
- #: contact-form-7/modules/captcha.php:255
553
- #: contact-form-7/modules/captcha.php:258
554
- #: contact-form-7/modules/checkbox.php:214
555
- #: contact-form-7/modules/checkbox.php:217
556
- #: contact-form-7/modules/file.php:246
557
- #: contact-form-7/modules/file.php:249
558
- #: contact-form-7/modules/file.php:254
559
- #: contact-form-7/modules/file.php:257
560
- msgid "optional"
561
- msgstr "optional"
562
-
563
- #: contact-form-7/modules/acceptance.php:127
564
- msgid "Make this checkbox checked by default?"
565
- msgstr "Auswahlbox standardmässig aktivieren?"
566
-
567
- #: contact-form-7/modules/acceptance.php:128
568
- msgid "Make this checkbox work inversely?"
569
- msgstr "Auswahlbox umkehren (Invert)?"
570
-
571
- #: contact-form-7/modules/acceptance.php:129
572
- msgid "* That means visitor who accepts the term unchecks it."
573
- msgstr "* Bedeutet, dass der Besucher die Bedingungen akzeptiert wenn er die Auswahlbox deaktiviert."
574
-
575
- #: contact-form-7/modules/acceptance.php:134
576
- #: contact-form-7/modules/captcha.php:263
577
- #: contact-form-7/modules/checkbox.php:237
578
- #: contact-form-7/modules/file.php:262
579
- msgid "Copy this code and paste it into the form left."
580
- msgstr "Kopieren Sie diesen Code und fügen ihn in das Formular links ein."
581
-
582
- #: contact-form-7/modules/captcha.php:70
583
- msgid "To use CAPTCHA, you need <a href=\"http://wordpress.org/extend/plugins/really-simple-captcha/\">Really Simple CAPTCHA</a> plugin installed."
584
- msgstr "Um den Captcha Code anzuzeigen, muss dieses <a href=\"http://wordpress.org/extend/plugins/really-simple-captcha/\">Plugin</a> installiert sein."
585
-
586
- #: contact-form-7/modules/captcha.php:189
587
- msgid "The code that sender entered does not match the CAPTCHA"
588
- msgstr "Der eingegebene Code stimmt nicht mit dem angezeigten Captcha Code überein!"
589
-
590
- #: contact-form-7/modules/captcha.php:190
591
- msgid "Your entered code is incorrect."
592
- msgstr "Ihr eingegebener Code ist falsch."
593
-
594
- #: contact-form-7/modules/captcha.php:200
595
- msgid "CAPTCHA"
596
- msgstr "Captcha"
597
-
598
- #: contact-form-7/modules/captcha.php:211
599
- msgid "Note: To use CAPTCHA, you need Really Simple CAPTCHA plugin installed."
600
- msgstr "Hinweis: Um Captcha zu verwenden, muss dieses Plugin installiert sein."
601
-
602
- #: contact-form-7/modules/captcha.php:218
603
- msgid "Image settings"
604
- msgstr "Bild Einstellungen"
605
-
606
- #: contact-form-7/modules/captcha.php:229
607
- msgid "Foreground color"
608
- msgstr "Vordergrundfarbe"
609
-
610
- #: contact-form-7/modules/captcha.php:232
611
- msgid "Background color"
612
- msgstr "Hintergrundfarbe"
613
-
614
- #: contact-form-7/modules/captcha.php:236
615
- msgid "Image size"
616
- msgstr "Bild Grösse"
617
-
618
- #: contact-form-7/modules/captcha.php:237
619
- msgid "Small"
620
- msgstr "Klein"
621
-
622
- #: contact-form-7/modules/captcha.php:238
623
- msgid "Medium"
624
- msgstr "Mittel"
625
-
626
- #: contact-form-7/modules/captcha.php:239
627
- msgid "Large"
628
- msgstr "Gross"
629
-
630
- #: contact-form-7/modules/captcha.php:244
631
- msgid "Input field settings"
632
- msgstr "Eingabefeld Einstellungen"
633
-
634
- #: contact-form-7/modules/captcha.php:264
635
- msgid "For image"
636
- msgstr "Für das Bild"
637
-
638
- #: contact-form-7/modules/captcha.php:266
639
- msgid "For input field"
640
- msgstr "Für das Eingabefeld"
641
-
642
- #: contact-form-7/modules/captcha.php:296
643
- #, php-format
644
- msgid "This contact form contains CAPTCHA fields, but the temporary folder for the files (%s) does not exist or is not writable. You can create the folder or change its permission manually."
645
- msgstr "Dieses Kontaktformular enthält CAPTCHA-Felder, aber der temporäre Ordner für die Dateien (%s) ist nicht vorhanden oder nicht beschreibbar. Sie können den Ordner anlegen oder die Berechtigung manuell ändern."
646
-
647
- #: contact-form-7/modules/captcha.php:302
648
- msgid "This contact form contains CAPTCHA fields, but the necessary libraries (GD and FreeType) are not available on your server."
649
- msgstr "Dieses Kontaktformular enthält CAPTCHA-Felder, aber die benötigten Bibliotheken (GD und FreeType) sind nicht auf Ihrem Server verfügbar."
650
-
651
- #: contact-form-7/modules/checkbox.php:182
652
- msgid "Checkboxes"
653
- msgstr "Auswahlbox"
654
-
655
- #: contact-form-7/modules/checkbox.php:185
656
- msgid "Radio buttons"
657
- msgstr "Radio Button"
658
-
659
- #: contact-form-7/modules/checkbox.php:206
660
- #: contact-form-7/modules/file.php:240
661
- msgid "Required field?"
662
- msgstr "Pflichtfeld?"
663
-
664
- #: contact-form-7/modules/checkbox.php:222
665
- msgid "Choices"
666
- msgstr "Auswahlmöglichkeiten"
667
-
668
- #: contact-form-7/modules/checkbox.php:224
669
- msgid "* One choice per line."
670
- msgstr "* Eine Auswahlmöglichkeit pro Zeile."
671
-
672
- #: contact-form-7/modules/checkbox.php:228
673
- msgid "Put a label first, a checkbox last?"
674
- msgstr "Erste Auswahlmöglichkeit setzen, danach eine Auswahlbox?"
675
-
676
- #: contact-form-7/modules/checkbox.php:229
677
- msgid "Wrap each item with <label> tag?"
678
- msgstr "Jede Position mit einem <label> Tag umbrechen?"
679
-
680
- #: contact-form-7/modules/checkbox.php:231
681
- msgid "Make checkboxes exclusive?"
682
- msgstr "Exklusive Auswahlboxen erstellen?"
683
-
684
- #: contact-form-7/modules/checkbox.php:239
685
- msgid "And, put this code into the Mail fields below."
686
- msgstr "Und setzen Sie diesen Code in das Nachrichtentext Feld unterhalb ein."
687
-
688
- #: contact-form-7/modules/file.php:204
689
- msgid "Uploading a file fails for any reason"
690
- msgstr "Fehler aus unbekannten Gründen beim hochladen der Datei."
691
-
692
- #: contact-form-7/modules/file.php:205
693
- msgid "Failed to upload file."
694
- msgstr "Das hochladen der Datei ist fehlgeschlagen."
695
-
696
- #: contact-form-7/modules/file.php:209
697
- msgid "Uploaded file is not allowed file type"
698
- msgstr "Die hochgeladene Datei ist ein nicht erlaubter Dateityp!"
699
-
700
- #: contact-form-7/modules/file.php:210
701
- msgid "This file type is not allowed."
702
- msgstr "Dieser Dateityp ist nicht erlaubt."
703
-
704
- #: contact-form-7/modules/file.php:214
705
- msgid "Uploaded file is too large"
706
- msgstr "Die hochgeladene Datei ist zu gross!"
707
-
708
- #: contact-form-7/modules/file.php:215
709
- msgid "This file is too large."
710
- msgstr "Diese Datei ist zu gross."
711
-
712
- #: contact-form-7/modules/file.php:219
713
- msgid "Uploading a file fails for PHP error"
714
- msgstr "Das hochladen der Datei verursachte einen PHP Error."
715
-
716
- #: contact-form-7/modules/file.php:220
717
- msgid "Failed to upload file. Error occurred."
718
- msgstr "Das hochladen der Datei ist fehlgeschlagen. Es sind Fehler aufgetreten."
719
-
720
- #: contact-form-7/modules/file.php:231
721
- msgid "File upload"
722
- msgstr "Datei Upload"
723
-
724
- #: contact-form-7/modules/file.php:254
725
- msgid "File size limit"
726
- msgstr "Dateigrössen Begrenzung"
727
-
728
- #: contact-form-7/modules/file.php:254
729
- msgid "bytes"
730
- msgstr "Bytes"
731
-
732
- #: contact-form-7/modules/file.php:257
733
- msgid "Acceptable file types"
734
- msgstr "Akzeptierte Dateitypen"
735
-
736
- #: contact-form-7/modules/file.php:264
737
- msgid "And, put this code into the File Attachments field below."
738
- msgstr "Und setzen Sie diesen Code in das Datei Anhang Feld unterhalb ein."
739
-
740
- #: contact-form-7/modules/file.php:289
741
- #, php-format
742
- msgid "This contact form contains file uploading fields, but the temporary folder for the files (%s) does not exist or is not writable. You can create the folder or change its permission manually."
743
- msgstr "Dieses Kontaktformular enthält Datei Upload Felder, aber der temporäre Ordner für die Dateien (%s) ist nicht vorhanden oder nicht beschreibbar. Sie können den Ordner anlegen oder die Berechtigung manuell ändern."
744
-
745
- #: contact-form-7/modules/icl.php:74
746
- msgid "This contact form contains [icl] tags, but they are obsolete and no longer functioning on this version of Contact Form 7. <a href=\"http://contactform7.com/2009/12/25/contact-form-in-your-language/#Creating_contact_form_in_different_languages\" target=\"_blank\">There is a simpler way for creating contact forms of other languages</a> and you are recommended to use it."
747
- msgstr "Dieses Kontaktformular enthält [icl] Tags, aber sie sind veraltet und nicht funktionieren nicht mehr in dieser Version von Contact Form 7. <a href=\"http://contactform7.com/2009/12/25/contact-form-in-your-language/#Creating_contact_form_in_different_languages\" target=\"_blank\">Es ist ein einfacher Weg, ein Kontaktformulars in anderen Sprachen zu erstellen</a> und es wird empfohlen, dies zu verwenden."
748
-
749
- #: contact-form-7/modules/quiz.php:170
750
- msgid "Sender doesn't enter the correct answer to the quiz"
751
- msgstr "Der Absender beantwortet im Quiz die Frage falsch."
752
-
753
- #: contact-form-7/modules/quiz.php:171
754
- msgid "Your answer is not correct."
755
- msgstr "Ihre eingegebene Antwort ist falsch!"
756
-
757
- #: contact-form-7/modules/quiz.php:181
758
- msgid "Quiz"
759
- msgstr "Quiz"
760
-
761
- #: contact-form-7/modules/quiz.php:211
762
- msgid "Quizzes"
763
- msgstr "Quiz"
764
-
765
- #: contact-form-7/modules/quiz.php:213
766
- msgid "* quiz|answer (e.g. 1+1=?|2)"
767
- msgstr "* Quiz|Antwort (z.B. 1+1=?|2)"
768
-
769
- #: contact-form-7/modules/select.php:154
770
- msgid "Drop-down menu"
771
- msgstr "Auswahlmenü"
772
-
773
- #: contact-form-7/modules/select.php:183
774
- msgid "Allow multiple selections?"
775
- msgstr "Mehrfachauswahl erlauben?"
776
-
777
- #: contact-form-7/modules/select.php:184
778
- msgid "Insert a blank item as the first option?"
779
- msgstr "Leere Position als die erste Option einfügen?"
780
-
781
- #: contact-form-7/modules/submit.php:62
782
- msgid "Submit button"
783
- msgstr "Senden Button"
784
-
785
- #: contact-form-7/modules/submit.php:80
786
- msgid "Label"
787
- msgstr "Beschriftung"
788
-
789
- #: contact-form-7/modules/text.php:137
790
- msgid "Text field"
791
- msgstr "Text Feld"
792
-
793
- #: contact-form-7/modules/text.php:140
794
- msgid "Email field"
795
- msgstr "Email Feld"
796
-
797
- #: contact-form-7/modules/text.php:182
798
- msgid "Akismet"
799
- msgstr "Askimet"
800
-
801
- #: contact-form-7/modules/text.php:184
802
- msgid "This field requires author's name"
803
- msgstr "Dieses Feld erfordert den Namen des Autors"
804
-
805
- #: contact-form-7/modules/text.php:185
806
- msgid "This field requires author's URL"
807
- msgstr "Dieses Feld erfordert die URL des Autors"
808
-
809
- #: contact-form-7/modules/text.php:187
810
- msgid "This field requires author's email address"
811
- msgstr "Dieses Feld erfordert die Email Adresse des Autors"
812
-
813
- #: contact-form-7/modules/text.php:191
814
- #: contact-form-7/modules/textarea.php:157
815
- msgid "Default value"
816
- msgstr "Standardwert"
817
-
818
- #: contact-form-7/modules/textarea.php:126
819
- msgid "Text area"
820
- msgstr "Text Bereich"
821
-
822
- #~ msgid ""
823
- #~ "Is this plugin useful for you? If you like it, please help the developer."
824
- #~ msgstr ""
825
- #~ "Ist dieses Plugin nützlich für Sie? Wenn es Ihnen gefällt, helfen Sie dem "
826
- #~ "Entwickler."
827
-
828
- #~ msgid ""
829
- #~ "Developing a plugin and providing user support is really hard work. "
830
- #~ "Please help."
831
- #~ msgstr ""
832
- #~ "Die Entwicklung eines Plugins sowie die vielen Support Anfragen "
833
- #~ "verbrauchen viel Zeit. Helfen Sie uns mit einer Spende."
834
-
835
- #~ msgid "This mail is created by Contact Form 7 plugin for WordPress."
836
- #~ msgstr "Dieses Mail ist vom Wordpress Plugin Contact Form 7 erstellt."
837
-
838
- #~ msgid "(You need WordPress 2.7 or greater to use this feature)"
839
- #~ msgstr ""
840
- #~ "(Um diese Funktion nutzen zu können, benötigen Sie WordPress Version 2.7 "
841
- #~ "oder höher)"
842
-
843
- #~ msgid "Delete this contact form"
844
- #~ msgstr "Dieses Kontaktformular löschen."
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
languages/wpcf7-el.po DELETED
@@ -1,468 +0,0 @@
1
- msgid ""
2
- msgstr ""
3
- "Project-Id-Version: wpcf7-el\n"
4
- "Report-Msgid-Bugs-To: \n"
5
- "POT-Creation-Date: 2009-05-31 23:05+0900\n"
6
- "PO-Revision-Date: \n"
7
- "Last-Translator: Πρόδρομος Τσαλικίδης <pr.tsalikidis@gmail.com>\n"
8
- "Language-Team: <http://friedlich.wordpress.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: Greek\n"
13
- "X-Poedit-Country: GREECE/ CYPRUS\n"
14
- "X-Poedit-SourceCharset: utf-8\n"
15
-
16
- #: contact-form-7/wp-contact-form-7.php:373
17
- msgid "Contact form"
18
- msgstr "Φόρμα επικοινωνίας"
19
-
20
- #: contact-form-7/admin/admin-panel.php:6
21
- #: contact-form-7/admin/admin.php:111
22
- msgid "Contact Form 7"
23
- msgstr "Contact Form 7"
24
-
25
- #: contact-form-7/admin/admin-panel.php:21
26
- msgid "Add new"
27
- msgstr "Προσθήκη νέας"
28
-
29
- #: contact-form-7/admin/admin-panel.php:43
30
- msgid "Copy this code and paste it into your post, page or text widget content."
31
- msgstr "Αντιγράψτε αυτόν τον κώδικα και επικολλήστε τον στο περιεχόμενο του άρθρου ή της σελίδας σας ή μιας μονάδας κειμένου."
32
-
33
- #: contact-form-7/admin/admin-panel.php:50
34
- #: contact-form-7/admin/admin-panel.php:290
35
- msgid "Save"
36
- msgstr "Αποθήκευση"
37
-
38
- #: contact-form-7/admin/admin-panel.php:57
39
- msgid "Copy"
40
- msgstr "Αντιγραφή"
41
-
42
- #: contact-form-7/admin/admin-panel.php:61
43
- msgid "Delete"
44
- msgstr "Διαγραφή"
45
-
46
- #: contact-form-7/admin/admin-panel.php:63
47
- msgid ""
48
- "You are about to delete this contact form.\n"
49
- " 'Cancel' to stop, 'OK' to delete."
50
- msgstr ""
51
- "Είστε έτοιμος να διαγράψετε αυτή τη φόρμα επικοινωνίας.\n"
52
- " 'ΟΚ' για διαγραφή."
53
-
54
- #: contact-form-7/admin/admin-panel.php:78
55
- msgid "Form"
56
- msgstr "Φόρμα"
57
-
58
- #: contact-form-7/admin/admin-panel.php:98
59
- msgid "Mail"
60
- msgstr "Mail"
61
-
62
- #: contact-form-7/admin/admin-panel.php:105
63
- #: contact-form-7/admin/admin-panel.php:161
64
- msgid "To:"
65
- msgstr "Προς:"
66
-
67
- #: contact-form-7/admin/admin-panel.php:109
68
- #: contact-form-7/admin/admin-panel.php:165
69
- msgid "From:"
70
- msgstr "Από:"
71
-
72
- #: contact-form-7/admin/admin-panel.php:113
73
- #: contact-form-7/admin/admin-panel.php:169
74
- msgid "Subject:"
75
- msgstr "Θέμα:"
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 "Επιπρόσθετα headers:"
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 "Συνημμένα αρχεία:"
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 "(Χρειάζεστε το WordPress 2.7 ή μεταγενέστερο για να χρησιμοποιήσετε αυτό το χαρακτηριστικό.)"
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 "Αποστολή σε μορφή 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 "Σώμα μηνύματος:"
101
-
102
- #: contact-form-7/admin/admin-panel.php:148
103
- msgid "Mail (2)"
104
- msgstr "Mail (2)"
105
-
106
- #: contact-form-7/admin/admin-panel.php:155
107
- msgid "Use mail (2)"
108
- msgstr "Χρήση mail (2)"
109
-
110
- #: contact-form-7/admin/admin-panel.php:204
111
- msgid "Messages"
112
- msgstr "Μηνύματα"
113
-
114
- #: contact-form-7/admin/admin-panel.php:212
115
- msgid "Sender's message was sent successfully"
116
- msgstr "Το μήνυμα του αποστολέα στάλθηκε επιτυχώς."
117
-
118
- #: contact-form-7/admin/admin-panel.php:216
119
- msgid "Sender's message was failed to send"
120
- msgstr "Το μήνυμα του αποστολέα απέτυχε να σταλεί."
121
-
122
- #: contact-form-7/admin/admin-panel.php:220
123
- msgid "Akismet judged the sending activity as spamming"
124
- msgstr "Το Akismet θεώρησε την ενέργεια αποστολής ανεπιθύμητη."
125
-
126
- #: contact-form-7/admin/admin-panel.php:224
127
- msgid "Validation errors occurred"
128
- msgstr "Συνέβησαν σφάλματα εγκυρότητας."
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 "Υπάρχει πεδίο που ο αποστολέας πρέπει να συμπληρώσει."
133
-
134
- #: contact-form-7/admin/admin-panel.php:232
135
- msgid "Email address that sender entered is invalid"
136
- msgstr "Η διεύθυνση email που εισήγαγε ο αποστολέας είναι άκυρη."
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 "Υπάρχει πεδίο όρων που ο αποστολέας πρέπει να αποδεχθεί."
141
-
142
- #: contact-form-7/admin/admin-panel.php:240
143
- msgid "Sender doesn't enter the correct answer to the quiz"
144
- msgstr "Ο αποστολέας δεν εισάγει την σωστή απάντηση στο κουΐζ."
145
-
146
- #: contact-form-7/admin/admin-panel.php:244
147
- msgid "The code that sender entered does not match the CAPTCHA"
148
- msgstr "Ο κώδικας που εισήγαγε ο αποστολέας δεν ταιριάζει με το CAPTCHA."
149
-
150
- #: contact-form-7/admin/admin-panel.php:248
151
- msgid "Uploading a file fails for any reason"
152
- msgstr "Αποτυχία μεταφοράς αρχείου για οποιονδήποτε λόγο."
153
-
154
- #: contact-form-7/admin/admin-panel.php:252
155
- msgid "Uploaded file is not allowed file type"
156
- msgstr "Ο τύπος αρχείου που μεταφέρθηκε δεν είναι επιτρεπτός."
157
-
158
- #: contact-form-7/admin/admin-panel.php:256
159
- msgid "Uploaded file is too large"
160
- msgstr "Το αρχείο που μεταφέρθηκε είναι πολύ μεγάλο."
161
-
162
- #: contact-form-7/admin/admin-panel.php:269
163
- msgid "Additional Settings"
164
- msgstr "Επιπρόσθετες ρυθμίσεις"
165
-
166
- #: contact-form-7/admin/admin.php:157
167
- msgid "optional"
168
- msgstr "προαιρετικό"
169
-
170
- #: contact-form-7/admin/admin.php:158
171
- msgid "Generate Tag"
172
- msgstr "Δημιουργία ετικέτας"
173
-
174
- #: contact-form-7/admin/admin.php:159
175
- msgid "Text field"
176
- msgstr "Πεδίο κειμένου"
177
-
178
- #: contact-form-7/admin/admin.php:160
179
- msgid "Email field"
180
- msgstr "Πεδίο email"
181
-
182
- #: contact-form-7/admin/admin.php:161
183
- msgid "Text area"
184
- msgstr "Περιοχή κειμένου"
185
-
186
- #: contact-form-7/admin/admin.php:162
187
- msgid "Drop-down menu"
188
- msgstr "Αναδιπλούμενο μενού"
189
-
190
- #: contact-form-7/admin/admin.php:163
191
- msgid "Checkboxes"
192
- msgstr "Checkboxes"
193
-
194
- #: contact-form-7/admin/admin.php:164
195
- msgid "Radio buttons"
196
- msgstr "Radio buttons"
197
-
198
- #: contact-form-7/admin/admin.php:165
199
- msgid "Acceptance"
200
- msgstr "Αποδοχή"
201
-
202
- #: contact-form-7/admin/admin.php:166
203
- msgid "Make this checkbox checked by default?"
204
- msgstr "Το checkbox να είναι σημειωμένο εκ προεπιλογής;"
205
-
206
- #: contact-form-7/admin/admin.php:167
207
- msgid "Make this checkbox work inversely?"
208
- msgstr "Αντίστροφη λειτουργία του checkbox;"
209
-
210
- #: contact-form-7/admin/admin.php:168
211
- msgid "* That means visitor who accepts the term unchecks it."
212
- msgstr "* Αυτό σημαίνει ότι ο επισκέπτης που αποδέχεται τους όρους το αποσημειώνει."
213
-
214
- #: contact-form-7/admin/admin.php:169
215
- msgid "CAPTCHA"
216
- msgstr "CAPTCHA"
217
-
218
- #: contact-form-7/admin/admin.php:170
219
- msgid "Quiz"
220
- msgstr "Κουΐζ"
221
-
222
- #: contact-form-7/admin/admin.php:171
223
- msgid "Quizzes"
224
- msgstr "Κουΐζ"
225
-
226
- #: contact-form-7/admin/admin.php:172
227
- msgid "* quiz|answer (e.g. 1+1=?|2)"
228
- msgstr "* κουΐζ|απάντηση (πχ. 1+1=?|2)"
229
-
230
- #: contact-form-7/admin/admin.php:173
231
- msgid "File upload"
232
- msgstr "Μεταφορά αρχείου"
233
-
234
- #: contact-form-7/admin/admin.php:174
235
- msgid "bytes"
236
- msgstr "bytes"
237
-
238
- #: contact-form-7/admin/admin.php:175
239
- msgid "Submit button"
240
- msgstr "Πλήκτρο υποβολής"
241
-
242
- #: contact-form-7/admin/admin.php:176
243
- msgid "Name"
244
- msgstr "Όνομα"
245
-
246
- #: contact-form-7/admin/admin.php:177
247
- msgid "Required field?"
248
- msgstr "Υποχρεωτικό πεδίο;"
249
-
250
- #: contact-form-7/admin/admin.php:178
251
- msgid "Allow multiple selections?"
252
- msgstr "Επιτρέπονται πολλαπλές επιλογές;"
253
-
254
- #: contact-form-7/admin/admin.php:179
255
- msgid "Insert a blank item as the first option?"
256
- msgstr "Εισαγωγή ενός κενού αντικειμένου ως πρώτη επιλογή;"
257
-
258
- #: contact-form-7/admin/admin.php:180
259
- msgid "Make checkboxes exclusive?"
260
- msgstr "Τα checkboxes να είναι μονής επιλογής;"
261
-
262
- #: contact-form-7/admin/admin.php:181
263
- msgid "Choices"
264
- msgstr "Επιλογές"
265
-
266
- #: contact-form-7/admin/admin.php:182
267
- msgid "Label"
268
- msgstr "Κείμενο πλήκτρου"
269
-
270
- #: contact-form-7/admin/admin.php:183
271
- msgid "Default value"
272
- msgstr "Προεπιλεγμένη τιμή"
273
-
274
- #: contact-form-7/admin/admin.php:184
275
- msgid "Akismet"
276
- msgstr "Akismet"
277
-
278
- #: contact-form-7/admin/admin.php:185
279
- msgid "This field requires author's name"
280
- msgstr "Αυτό το πεδίο απαιτεί το όνομα του συντάκτη."
281
-
282
- #: contact-form-7/admin/admin.php:186
283
- msgid "This field requires author's URL"
284
- msgstr "Αυτό το πεδίο απαιτεί το URL του συντάκτη."
285
-
286
- #: contact-form-7/admin/admin.php:187
287
- msgid "This field requires author's email address"
288
- msgstr "Αυτό το πεδίο απαιτεί τη διεύθυνση email του συντάκτη."
289
-
290
- #: contact-form-7/admin/admin.php:188
291
- msgid "Copy this code and paste it into the form left."
292
- msgstr "Αντιγράψτε τον κώδικα και επικολλήστε τον στη φόρμα αριστερά."
293
-
294
- #: contact-form-7/admin/admin.php:189
295
- msgid "Foreground color"
296
- msgstr "Χρώμα προσκηνίου"
297
-
298
- #: contact-form-7/admin/admin.php:190
299
- msgid "Background color"
300
- msgstr "Χρώμα φόντου"
301
-
302
- #: contact-form-7/admin/admin.php:191
303
- msgid "Image size"
304
- msgstr "Μέγεθος εικόνας"
305
-
306
- #: contact-form-7/admin/admin.php:192
307
- msgid "Small"
308
- msgstr "Μικρό"
309
-
310
- #: contact-form-7/admin/admin.php:193
311
- msgid "Medium"
312
- msgstr "Μεσαίο"
313
-
314
- #: contact-form-7/admin/admin.php:194
315
- msgid "Large"
316
- msgstr "Μεγάλο"
317
-
318
- #: contact-form-7/admin/admin.php:195
319
- msgid "Image settings"
320
- msgstr "Ρυθμίσεις εικόνας"
321
-
322
- #: contact-form-7/admin/admin.php:196
323
- msgid "Input field settings"
324
- msgstr "Ρυθμίσεις πεδίου εισαγωγής"
325
-
326
- #: contact-form-7/admin/admin.php:197
327
- msgid "For image"
328
- msgstr "Για την εικόνα"
329
-
330
- #: contact-form-7/admin/admin.php:198
331
- msgid "For input field"
332
- msgstr "Για το πεδίο εισαγωγής"
333
-
334
- #: contact-form-7/admin/admin.php:199
335
- msgid "* One choice per line."
336
- msgstr "* Μία επιλογή ανά γραμμή."
337
-
338
- #: contact-form-7/admin/admin.php:200
339
- msgid "Show"
340
- msgstr "Εμφάνιση"
341
-
342
- #: contact-form-7/admin/admin.php:201
343
- msgid "Hide"
344
- msgstr "Απόκρυψη"
345
-
346
- #: contact-form-7/admin/admin.php:202
347
- msgid "File size limit"
348
- msgstr "Όριο μεγέθους αρχείου"
349
-
350
- #: contact-form-7/admin/admin.php:203
351
- msgid "Acceptable file types"
352
- msgstr "Επιτρεπόμενοι τύποι αρχείων"
353
-
354
- #: contact-form-7/admin/admin.php:204
355
- msgid "Note: To use CAPTCHA, you need Really Simple CAPTCHA plugin installed."
356
- msgstr "Σημείωση: Για να χρησιμοποιήσετε το CAPTCHA, πρέπει να έχετε εγκατεστημένο το πρόσθετο Really Simple CAPTCHA."
357
-
358
- #: contact-form-7/admin/admin.php:223
359
- msgid "Contact form created."
360
- msgstr "Η φόρμα επικοινωνίας δημιουργήθηκε."
361
-
362
- #: contact-form-7/admin/admin.php:226
363
- msgid "Contact form saved."
364
- msgstr "Η φόρμα επικοινωνίας αποθηκεύτηκε."
365
-
366
- #: contact-form-7/admin/admin.php:229
367
- msgid "Contact form deleted."
368
- msgstr "Η φόρμα επικοινωνίας διαγράφηκε."
369
-
370
- #: contact-form-7/admin/admin.php:240
371
- msgid "Untitled"
372
- msgstr "Χωρίς τίτλο"
373
-
374
- #: contact-form-7/admin/admin.php:253
375
- msgid "Your Name"
376
- msgstr "Το όνομά σας"
377
-
378
- #: contact-form-7/admin/admin.php:253
379
- #: contact-form-7/admin/admin.php:255
380
- msgid "(required)"
381
- msgstr "(απαραίτητο)"
382
-
383
- #: contact-form-7/admin/admin.php:255
384
- msgid "Your Email"
385
- msgstr "Το email σας"
386
-
387
- #: contact-form-7/admin/admin.php:257
388
- msgid "Subject"
389
- msgstr "Θέμα"
390
-
391
- #: contact-form-7/admin/admin.php:259
392
- msgid "Your Message"
393
- msgstr "Το μήνυμά σας"
394
-
395
- #: contact-form-7/admin/admin.php:261
396
- #: contact-form-7/includes/classes.php:411
397
- msgid "Send"
398
- msgstr "Αποστολή"
399
-
400
- #: contact-form-7/admin/admin.php:334
401
- msgid "Settings"
402
- msgstr "Ρυθμίσεις"
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 needs your support. Please donate today."
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 "Is this plugin useful for you? If you like it, please help the developer."
411
-
412
- #: contact-form-7/admin/admin.php:357
413
- msgid "Your contribution is needed for making this plugin better."
414
- msgstr "Your contribution is needed for making this plugin better."
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 "Developing a plugin and providing user support is really hard work. Please help."
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 "Για να χρησιμοποιήσετε CAPTCHA, χρειάζεται να έχετε εγκατεστημένο το πρόσθετο <a href=\"http://wordpress.org/extend/plugins/really-simple-captcha/\">Really Simple CAPTCHA</a>."
423
-
424
- #: contact-form-7/includes/functions.php:6
425
- msgid "Your message was sent successfully. Thanks."
426
- msgstr "Το μήνυμά σας στάλθηκε επιτυχώς. Ευχαριστούμε."
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 "Αποτυχία κατά την αποστολή του μηνύματός σας. Παρακαλώ δοκιμάστε αργότερα ή επικοινωνήστε με το διαχειριστή με άλλον τρόπο."
432
-
433
- #: contact-form-7/includes/functions.php:12
434
- msgid "Validation errors occurred. Please confirm the fields and submit it again."
435
- msgstr "Συνέβησαν σφάλματα εγκυρότητας. Παρακαλώ ελέγξτε τα πεδία και υποβάλλετε το μήνυμα ξανά."
436
-
437
- #: contact-form-7/includes/functions.php:14
438
- msgid "Please accept the terms to proceed."
439
- msgstr "Παρακαλώ αποδεχθείτε τους όρους για να συνεχίσετε."
440
-
441
- #: contact-form-7/includes/functions.php:16
442
- msgid "Email address seems invalid."
443
- msgstr "Η διεύθυνση email δείχνει άκυρη."
444
-
445
- #: contact-form-7/includes/functions.php:18
446
- msgid "Please fill the required field."
447
- msgstr "Παρακαλώ συμπληρώστε τα απαραίτητα πεδία."
448
-
449
- #: contact-form-7/includes/functions.php:20
450
- msgid "Your entered code is incorrect."
451
- msgstr "Ο κωδικός που εισάγατε δεν είναι σωστός."
452
-
453
- #: contact-form-7/includes/functions.php:22
454
- msgid "Your answer is not correct."
455
- msgstr "Η απάντησή σας δεν είναι σωστή."
456
-
457
- #: contact-form-7/includes/functions.php:24
458
- msgid "Failed to upload file."
459
- msgstr "Αποτυχία κατά τη μεταφορά του αρχείου."
460
-
461
- #: contact-form-7/includes/functions.php:26
462
- msgid "This file type is not allowed."
463
- msgstr "Αυτός ο τύπος αρχείου δεν είναι επιτρεπτός."
464
-
465
- #: contact-form-7/includes/functions.php:28
466
- msgid "This file is too large."
467
- msgstr "Το αρχείο είναι πολύ μεγάλο."
468
-
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
languages/wpcf7-es_ES.po DELETED
@@ -1,437 +0,0 @@
1
- msgid ""
2
- msgstr ""
3
- "Project-Id-Version: WP Contact Form 7\n"
4
- "Report-Msgid-Bugs-To: \n"
5
- "POT-Creation-Date: 2009-02-01 05:19+0900\n"
6
- "PO-Revision-Date: 2009-02-06 07:11-0300\n"
7
- "Last-Translator: Matias Baldanza <matiasbaldanza@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\n"
16
- "X-Poedit-Basepath: ../..\n"
17
- "X-Poedit-SearchPath-0: contact-form-7\n"
18
-
19
- #: contact-form-7/wp-contact-form-7.php:413
20
- msgid "Contact form"
21
- msgstr "Formulario de contacto"
22
-
23
- #: contact-form-7/wp-contact-form-7.php:582
24
- #: contact-form-7/includes/admin-panel.php:5
25
- msgid "Contact Form 7"
26
- msgstr "Contact Form 7"
27
-
28
- #: contact-form-7/wp-contact-form-7.php:605
29
- msgid "optional"
30
- msgstr "opcional"
31
-
32
- #: contact-form-7/wp-contact-form-7.php:606
33
- msgid "Generate Tag"
34
- msgstr "Generar Etiqueta"
35
-
36
- #: contact-form-7/wp-contact-form-7.php:607
37
- msgid "Text field"
38
- msgstr "Campo de texto"
39
-
40
- #: contact-form-7/wp-contact-form-7.php:608
41
- msgid "Email field"
42
- msgstr "Campo de email"
43
-
44
- #: contact-form-7/wp-contact-form-7.php:609
45
- msgid "Text area"
46
- msgstr "Area de texto"
47
-
48
- #: contact-form-7/wp-contact-form-7.php:610
49
- msgid "Drop-down menu"
50
- msgstr "Menú desplegable"
51
-
52
- #: contact-form-7/wp-contact-form-7.php:611
53
- msgid "Checkboxes"
54
- msgstr "Casillas de verificación"
55
-
56
- #: contact-form-7/wp-contact-form-7.php:612
57
- msgid "Radio buttons"
58
- msgstr "Botones de opción"
59
-
60
- #: contact-form-7/wp-contact-form-7.php:613
61
- msgid "Acceptance"
62
- msgstr "Aceptación"
63
-
64
- #: contact-form-7/wp-contact-form-7.php:614
65
- msgid "Make this checkbox checked by default?"
66
- msgstr "¿Hacer que esta casilla esté marcada por defecto?"
67
-
68
- #: contact-form-7/wp-contact-form-7.php:615
69
- msgid "Make this checkbox work inversely?"
70
- msgstr "¿Hacer que esta casilla funcione a la inversa?"
71
-
72
- #: contact-form-7/wp-contact-form-7.php:616
73
- msgid "* That means visitor who accepts the term unchecks it."
74
- msgstr "* Significa que el visitante que acepta los términos tiene que quitar el tilde de la casilla."
75
-
76
- #: contact-form-7/wp-contact-form-7.php:617
77
- msgid "CAPTCHA"
78
- msgstr "CAPTCHA"
79
-
80
- #: contact-form-7/wp-contact-form-7.php:618
81
- msgid "Quiz"
82
- msgstr "Acertijo"
83
-
84
- #: contact-form-7/wp-contact-form-7.php:619
85
- msgid "Quizzes"
86
- msgstr "Acertijos"
87
-
88
- #: contact-form-7/wp-contact-form-7.php:620
89
- msgid "* quiz|answer (e.g. 1+1=?|2)"
90
- msgstr "* acertijo|respuesta (por ejemplo 1+1=?|2)"
91
-
92
- #: contact-form-7/wp-contact-form-7.php:621
93
- msgid "File upload"
94
- msgstr "Subida de archivos"
95
-
96
- #: contact-form-7/wp-contact-form-7.php:622
97
- msgid "Submit button"
98
- msgstr "Botón enviar"
99
-
100
- #: contact-form-7/wp-contact-form-7.php:623
101
- msgid "Name"
102
- msgstr "Nombre"
103
-
104
- #: contact-form-7/wp-contact-form-7.php:624
105
- msgid "Required field?"
106
- msgstr "¿Campo requerido?"
107
-
108
- #: contact-form-7/wp-contact-form-7.php:625
109
- msgid "Allow multiple selections?"
110
- msgstr "¿Permitir selecciones múltiples?"
111
-
112
- #: contact-form-7/wp-contact-form-7.php:626
113
- msgid "Insert a blank item as the first option?"
114
- msgstr "¿Insertar un elemento en blanco como primer opción?"
115
-
116
- #: contact-form-7/wp-contact-form-7.php:627
117
- msgid "Make checkboxes exclusive?"
118
- msgstr "¿Hacer que las casillas sean mutuamente exclusivas?"
119
-
120
- #: contact-form-7/wp-contact-form-7.php:628
121
- msgid "Choices"
122
- msgstr "Opciones"
123
-
124
- #: contact-form-7/wp-contact-form-7.php:629
125
- msgid "Label"
126
- msgstr "Etiqueta"
127
-
128
- #: contact-form-7/wp-contact-form-7.php:630
129
- msgid "Default value"
130
- msgstr "Valor por defecto"
131
-
132
- #: contact-form-7/wp-contact-form-7.php:631
133
- msgid "Akismet"
134
- msgstr "Akismet"
135
-
136
- #: contact-form-7/wp-contact-form-7.php:632
137
- msgid "This field requires author's name"
138
- msgstr "Este campo quiere el nombre del autor"
139
-
140
- #: contact-form-7/wp-contact-form-7.php:633
141
- msgid "This field requires author's URL"
142
- msgstr "Este campo requiere la URL del autor"
143
-
144
- #: contact-form-7/wp-contact-form-7.php:634
145
- msgid "This field requires author's email address"
146
- msgstr "Este campo requiere la dirección de email del autor"
147
-
148
- #: contact-form-7/wp-contact-form-7.php:635
149
- msgid "Copy this code and paste it into the form left."
150
- msgstr "Copia este código y pégalo en el formulario a la izquierda."
151
-
152
- #: contact-form-7/wp-contact-form-7.php:636
153
- msgid "Foreground color"
154
- msgstr "Color de frente"
155
-
156
- #: contact-form-7/wp-contact-form-7.php:637
157
- msgid "Background color"
158
- msgstr "Color de fondo"
159
-
160
- #: contact-form-7/wp-contact-form-7.php:638
161
- msgid "Image size"
162
- msgstr "Tamaño de imagen"
163
-
164
- #: contact-form-7/wp-contact-form-7.php:639
165
- msgid "Small"
166
- msgstr "Pequeño"
167
-
168
- #: contact-form-7/wp-contact-form-7.php:640
169
- msgid "Medium"
170
- msgstr "Mediano"
171
-
172
- #: contact-form-7/wp-contact-form-7.php:641
173
- msgid "Large"
174
- msgstr "Grande"
175
-
176
- #: contact-form-7/wp-contact-form-7.php:642
177
- msgid "Image settings"
178
- msgstr "Opciones de imagen"
179
-
180
- #: contact-form-7/wp-contact-form-7.php:643
181
- msgid "Input field settings"
182
- msgstr "Opciones de campo de entrada"
183
-
184
- #: contact-form-7/wp-contact-form-7.php:644
185
- msgid "For image"
186
- msgstr "Para imagen"
187
-
188
- #: contact-form-7/wp-contact-form-7.php:645
189
- msgid "For input field"
190
- msgstr "Para campo de entrada"
191
-
192
- #: contact-form-7/wp-contact-form-7.php:646
193
- msgid "* One choice per line."
194
- msgstr "* Una opción por línea"
195
-
196
- #: contact-form-7/wp-contact-form-7.php:647
197
- msgid "Show"
198
- msgstr "Mostrar"
199
-
200
- #: contact-form-7/wp-contact-form-7.php:648
201
- msgid "Hide"
202
- msgstr "Ocultar"
203
-
204
- #: contact-form-7/wp-contact-form-7.php:649
205
- msgid "File size limit"
206
- msgstr "Limite de tamaño de archivo"
207
-
208
- #: contact-form-7/wp-contact-form-7.php:650
209
- msgid "Acceptable file types"
210
- msgstr "Tipos de archivo aceptados"
211
-
212
- #: contact-form-7/wp-contact-form-7.php:676
213
- msgid "Contact form created."
214
- msgstr "Formulario de contacto \"%s\" creado. "
215
-
216
- #: contact-form-7/wp-contact-form-7.php:679
217
- msgid "Contact form saved."
218
- msgstr "Formulario de contacto \"%s\" guardado. "
219
-
220
- #: contact-form-7/wp-contact-form-7.php:682
221
- msgid "Contact form deleted."
222
- msgstr "Formulario de contacto \"%s\" eliminado. "
223
-
224
- #: contact-form-7/wp-contact-form-7.php:693
225
- msgid "Untitled"
226
- msgstr "Título"
227
-
228
- #: contact-form-7/wp-contact-form-7.php:720
229
- msgid "Your Name"
230
- msgstr "Tu nombre"
231
-
232
- #: contact-form-7/wp-contact-form-7.php:720
233
- #: contact-form-7/wp-contact-form-7.php:722
234
- msgid "(required)"
235
- msgstr "(obligatorio)"
236
-
237
- #: contact-form-7/wp-contact-form-7.php:722
238
- msgid "Your Email"
239
- msgstr "Tu email"
240
-
241
- #: contact-form-7/wp-contact-form-7.php:724
242
- msgid "Subject"
243
- msgstr "Asunto"
244
-
245
- #: contact-form-7/wp-contact-form-7.php:726
246
- msgid "Your Message"
247
- msgstr "Tu mensaje"
248
-
249
- #: contact-form-7/wp-contact-form-7.php:728
250
- #: contact-form-7/wp-contact-form-7.php:1451
251
- msgid "Send"
252
- msgstr "Enviar"
253
-
254
- #: contact-form-7/wp-contact-form-7.php:782
255
- msgid "Your message was sent successfully. Thanks."
256
- msgstr "Tu mensaje se ha enviado exitosamente. Muchas Gracias."
257
-
258
- #: contact-form-7/wp-contact-form-7.php:784
259
- #: contact-form-7/wp-contact-form-7.php:786
260
- msgid "Failed to send your message. Please try later or contact administrator by other way."
261
- msgstr "Error al enviar el mensaje. Por favor inténtalo más tarde o contacta con el administrador por otro medio."
262
-
263
- #: contact-form-7/wp-contact-form-7.php:788
264
- msgid "Validation errors occurred. Please confirm the fields and submit it again."
265
- msgstr "Error de validación. Por favor confirma los campos y envía el formulario de nuevo"
266
-
267
- #: contact-form-7/wp-contact-form-7.php:790
268
- msgid "Please accept the terms to proceed."
269
- msgstr "Por favor acepta los términos y condiciones para continuar."
270
-
271
- #: contact-form-7/wp-contact-form-7.php:792
272
- msgid "Email address seems invalid."
273
- msgstr "El email parece incorrecto."
274
-
275
- #: contact-form-7/wp-contact-form-7.php:794
276
- msgid "Please fill the required field."
277
- msgstr "Por favor completa este campo."
278
-
279
- #: contact-form-7/wp-contact-form-7.php:796
280
- msgid "Your entered code is incorrect."
281
- msgstr "El código ingresado es incorrecto."
282
-
283
- #: contact-form-7/wp-contact-form-7.php:798
284
- msgid "Your answer is not correct."
285
- msgstr "Tu respuesta no es correcta."
286
-
287
- #: contact-form-7/wp-contact-form-7.php:800
288
- msgid "Failed to upload file."
289
- msgstr "Falló la subida del archivo."
290
-
291
- #: contact-form-7/wp-contact-form-7.php:802
292
- msgid "This file type is not allowed."
293
- msgstr "El tipo de archivo no está permitido."
294
-
295
- #: contact-form-7/wp-contact-form-7.php:804
296
- msgid "This file is too large."
297
- msgstr "El archivo es demasiado grande."
298
-
299
- #: contact-form-7/includes/admin-panel.php:20
300
- msgid "Add new"
301
- msgstr "Añadir nuevo"
302
-
303
- #: contact-form-7/includes/admin-panel.php:42
304
- msgid "Copy this code and paste it into your post, page or text widget content."
305
- msgstr "Copia y pega este código dentro del contenido de tu post, página o contenido de widget de texto."
306
-
307
- #: contact-form-7/includes/admin-panel.php:49
308
- #: contact-form-7/includes/admin-panel.php:257
309
- msgid "Save"
310
- msgstr "Guardar"
311
-
312
- #: contact-form-7/includes/admin-panel.php:55
313
- msgid "Delete this contact form"
314
- msgstr "Borrar este formulario de contacto"
315
-
316
- #: contact-form-7/includes/admin-panel.php:56
317
- msgid ""
318
- "You are about to delete this contact form.\n"
319
- " 'Cancel' to stop, 'OK' to delete."
320
- msgstr ""
321
- "El formulario de contacto será eliminado.\n"
322
- " 'Cancelar' para anular, 'OK' para confirmar."
323
-
324
- #: contact-form-7/includes/admin-panel.php:70
325
- msgid "Form"
326
- msgstr "Formulario"
327
-
328
- #: contact-form-7/includes/admin-panel.php:90
329
- msgid "Mail"
330
- msgstr "Correo"
331
-
332
- #: contact-form-7/includes/admin-panel.php:97
333
- #: contact-form-7/includes/admin-panel.php:149
334
- msgid "To:"
335
- msgstr "Para:"
336
-
337
- #: contact-form-7/includes/admin-panel.php:101
338
- #: contact-form-7/includes/admin-panel.php:153
339
- msgid "From:"
340
- msgstr "De:"
341
-
342
- #: contact-form-7/includes/admin-panel.php:105
343
- #: contact-form-7/includes/admin-panel.php:157
344
- msgid "Subject:"
345
- msgstr "Asunto:"
346
-
347
- #: contact-form-7/includes/admin-panel.php:110
348
- #: contact-form-7/includes/admin-panel.php:162
349
- msgid "File attachments:"
350
- msgstr "Archivos adjuntos:"
351
-
352
- #: contact-form-7/includes/admin-panel.php:112
353
- #: contact-form-7/includes/admin-panel.php:164
354
- msgid "(You need WordPress 2.7 or greater to use this feature)"
355
- msgstr "(Se requiere WordPress 2.7 o superior para usar esta característica)"
356
-
357
- #: contact-form-7/includes/admin-panel.php:120
358
- #: contact-form-7/includes/admin-panel.php:172
359
- msgid "Use HTML content type"
360
- msgstr "Usa el tipo de contenido HTML (HTML content type)"
361
-
362
- #: contact-form-7/includes/admin-panel.php:125
363
- #: contact-form-7/includes/admin-panel.php:177
364
- msgid "Message body:"
365
- msgstr "Cuerpo del mensaje:"
366
-
367
- #: contact-form-7/includes/admin-panel.php:136
368
- msgid "Mail (2)"
369
- msgstr "Correo (2)"
370
-
371
- #: contact-form-7/includes/admin-panel.php:143
372
- msgid "Use mail (2)"
373
- msgstr "Usar correo (2)"
374
-
375
- #: contact-form-7/includes/admin-panel.php:188
376
- msgid "Messages"
377
- msgstr "Mensajes"
378
-
379
- #: contact-form-7/includes/admin-panel.php:196
380
- msgid "Sender's message was sent successfully"
381
- msgstr "Tu mensaje se ha enviado exitosamente. Muchas Gracias."
382
-
383
- #: contact-form-7/includes/admin-panel.php:200
384
- msgid "Sender's message was failed to send"
385
- msgstr "Falló el envío del mensaje"
386
-
387
- #: contact-form-7/includes/admin-panel.php:204
388
- msgid "Akismet judged the sending activity as spamming"
389
- msgstr "Akismet determinó que el envío es spam"
390
-
391
- #: contact-form-7/includes/admin-panel.php:208
392
- msgid "Validation errors occurred"
393
- msgstr "Ocurrieron errores de validación"
394
-
395
- #: contact-form-7/includes/admin-panel.php:212
396
- msgid "There is a field that sender is needed to fill in"
397
- msgstr "Hay un campo que el tienes que completar"
398
-
399
- #: contact-form-7/includes/admin-panel.php:216
400
- msgid "Email address that sender entered is invalid"
401
- msgstr "El email ingresado es incorrecto."
402
-
403
- #: contact-form-7/includes/admin-panel.php:220
404
- msgid "There is a field of term that sender is needed to accept"
405
- msgstr "Hay un campo de términos y condiciones que el debes aceptar"
406
-
407
- #: contact-form-7/includes/admin-panel.php:224
408
- msgid "Sender doesn't enter the correct answer to the quiz"
409
- msgstr "No has ingresado la respuesta correcta al acertijo"
410
-
411
- #: contact-form-7/includes/admin-panel.php:228
412
- msgid "The code that sender entered does not match the CAPTCHA"
413
- msgstr "El código que el has ingresado no coincide con el CAPTCHA"
414
-
415
- #: contact-form-7/includes/admin-panel.php:232
416
- msgid "Uploading a file fails for any reason"
417
- msgstr "La subida del archivo ha fallado"
418
-
419
- #: contact-form-7/includes/admin-panel.php:236
420
- msgid "Uploaded file is not allowed file type"
421
- msgstr "El archivo subido no es del tipo permitido"
422
-
423
- #: contact-form-7/includes/admin-panel.php:240
424
- msgid "Uploaded file is too large"
425
- msgstr "El archivo subido es demasiado grande"
426
-
427
- #~ msgid "Form content"
428
- #~ msgstr "Contenido del formulario"
429
- #~ msgid "Mail template"
430
- #~ msgstr "Plantilla del email"
431
- #~ msgid "Sender field:"
432
- #~ msgstr "Campo de remitente:"
433
- #~ msgid "Recipient address:"
434
- #~ msgstr "Dirección del destinatario:"
435
- #~ msgid "Insert"
436
- #~ msgstr "Insertar"
437
-
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
languages/wpcf7-et.po DELETED
@@ -1,819 +0,0 @@
1
- msgid ""
2
- msgstr ""
3
- "Project-Id-Version: WP Contact Form 7\n"
4
- "Report-Msgid-Bugs-To: \n"
5
- "POT-Creation-Date: 2009-12-25 16:29+0900\n"
6
- "PO-Revision-Date: 2009-12-29 18:24+0300\n"
7
- "Last-Translator: Egon Elbre <egon.elbre@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-Language: Eesti keel\n"
13
- "X-Poedit-Country: EESTI\n"
14
- "X-Poedit-SourceCharset: utf-8\n"
15
- "X-Poedit-KeywordsList: __;_e\n"
16
- "X-Poedit-Basepath: ../..\n"
17
- "X-Poedit-SearchPath-0: contact-form-7\n"
18
-
19
- #: contact-form-7/admin/admin-panel.php:9
20
- #, php-format
21
- msgid "<strong>The database table for Contact Form 7 does not exist.</strong> You must <a href=\"%s\">create the table</a> for it to work."
22
- msgstr "<strong>Contact Form 7 andmebaasi tabelit ei ole olemas.</strong> Pead <a href=\"%s\">looma tabeli</a>, et see töötaks."
23
-
24
- #: contact-form-7/admin/admin-panel.php:12
25
- msgid "<strong>The database table for Contact Form 7 does not exist.</strong>"
26
- msgstr "<strong>Contact Form 7 andmebaasi tabelit ei ole olemas.</strong>"
27
-
28
- #: contact-form-7/admin/admin-panel.php:17
29
- #: contact-form-7/admin/admin-panel.php:30
30
- #: contact-form-7/admin/admin.php:117
31
- msgid "Contact Form 7"
32
- msgstr "Contact Form 7"
33
-
34
- #: contact-form-7/admin/admin-panel.php:45
35
- msgid "Add new"
36
- msgstr "Lisa uus"
37
-
38
- #: contact-form-7/admin/admin-panel.php:67
39
- msgid "Copy this code and paste it into your post, page or text widget content."
40
- msgstr "Lõika ja kleebi see kood postituse sisse, sinna kus tahad kontaktivormi näha."
41
-
42
- #: contact-form-7/admin/admin-panel.php:75
43
- #: contact-form-7/admin/admin-panel.php:309
44
- msgid "Save"
45
- msgstr "Salvesta"
46
-
47
- #: contact-form-7/admin/admin-panel.php:82
48
- msgid "Copy"
49
- msgstr "Kopeeri"
50
-
51
- #: contact-form-7/admin/admin-panel.php:87
52
- msgid "Delete"
53
- msgstr "Kustuta"
54
-
55
- #: contact-form-7/admin/admin-panel.php:89
56
- msgid ""
57
- "You are about to delete this contact form.\n"
58
- " 'Cancel' to stop, 'OK' to delete."
59
- msgstr "Kas soovid kustutada kontaktivormi?"
60
-
61
- #: contact-form-7/admin/admin-panel.php:104
62
- msgid "Form"
63
- msgstr "Vorm"
64
-
65
- #: contact-form-7/admin/admin-panel.php:128
66
- msgid "Mail"
67
- msgstr "Email"
68
-
69
- #: contact-form-7/admin/admin-panel.php:135
70
- #: contact-form-7/admin/admin-panel.php:202
71
- msgid "To:"
72
- msgstr "Saaja:"
73
-
74
- #: contact-form-7/admin/admin-panel.php:140
75
- #: contact-form-7/admin/admin-panel.php:207
76
- msgid "From:"
77
- msgstr "Saatja:"
78
-
79
- #: contact-form-7/admin/admin-panel.php:145
80
- #: contact-form-7/admin/admin-panel.php:212
81
- msgid "Subject:"
82
- msgstr "Teema:"
83
-
84
- #: contact-form-7/admin/admin-panel.php:152
85
- #: contact-form-7/admin/admin-panel.php:219
86
- msgid "Additional headers:"
87
- msgstr "Lisa päised:"
88
-
89
- #: contact-form-7/admin/admin-panel.php:157
90
- #: contact-form-7/admin/admin-panel.php:224
91
- msgid "File attachments:"
92
- msgstr "Faili lisandid:"
93
-
94
- #: contact-form-7/admin/admin-panel.php:165
95
- #: contact-form-7/admin/admin-panel.php:232
96
- msgid "Use HTML content type"
97
- msgstr "Kasuta HTML-i sisu tüüpi"
98
-
99
- #: contact-form-7/admin/admin-panel.php:172
100
- #: contact-form-7/admin/admin-panel.php:239
101
- #: contact-form-7/includes/functions.php:73
102
- msgid "Message body:"
103
- msgstr "Sõnumi sisu:"
104
-
105
- #: contact-form-7/admin/admin-panel.php:188
106
- msgid "Mail (2)"
107
- msgstr "Email (2)"
108
-
109
- #: contact-form-7/admin/admin-panel.php:194
110
- msgid "Use mail (2)"
111
- msgstr "Kasuta emaili (2)"
112
-
113
- #: contact-form-7/admin/admin-panel.php:255
114
- msgid "Messages"
115
- msgstr "Teated"
116
-
117
- #: contact-form-7/admin/admin-panel.php:285
118
- msgid "Additional Settings"
119
- msgstr "Lisaseaded"
120
-
121
- #: contact-form-7/admin/admin-panel.php:333
122
- #, php-format
123
- msgid "Use the default language (%s)"
124
- msgstr "Kasuta vaikekeelt (%s)"
125
-
126
- #: contact-form-7/admin/admin-panel.php:334
127
- #: contact-form-7/admin/admin-panel.php:347
128
- msgid "Add New"
129
- msgstr "Lisa uus"
130
-
131
- #: contact-form-7/admin/admin-panel.php:337
132
- msgid "Or"
133
- msgstr "või"
134
-
135
- #: contact-form-7/admin/admin-panel.php:342
136
- msgid "(select language)"
137
- msgstr "(vali keel)"
138
-
139
- #: contact-form-7/admin/admin.php:117
140
- msgid "Contact"
141
- msgstr "Kontakt"
142
-
143
- #: contact-form-7/admin/admin.php:120
144
- msgid "Edit Contact Forms"
145
- msgstr "Muuda Kontaktivorme"
146
-
147
- #: contact-form-7/admin/admin.php:120
148
- msgid "Edit"
149
- msgstr "Muuda"
150
-
151
- #: contact-form-7/admin/admin.php:178
152
- msgid "Generate Tag"
153
- msgstr "Välja loomine"
154
-
155
- #: contact-form-7/admin/admin.php:179
156
- msgid "Text field"
157
- msgstr "Tekstiväli (1 rida)"
158
-
159
- #: contact-form-7/admin/admin.php:180
160
- msgid "Email field"
161
- msgstr "Email väli"
162
-
163
- #: contact-form-7/admin/admin.php:181
164
- msgid "Text area"
165
- msgstr "Teksti kast"
166
-
167
- #: contact-form-7/admin/admin.php:182
168
- msgid "Drop-down menu"
169
- msgstr "Rippmenüü"
170
-
171
- #: contact-form-7/admin/admin.php:183
172
- msgid "Checkboxes"
173
- msgstr "Valikkastid"
174
-
175
- #: contact-form-7/admin/admin.php:184
176
- msgid "Radio buttons"
177
- msgstr "Valiknupud"
178
-
179
- #: contact-form-7/admin/admin.php:185
180
- msgid "Acceptance"
181
- msgstr "Aktsepteerimine"
182
-
183
- #: contact-form-7/admin/admin.php:186
184
- msgid "CAPTCHA"
185
- msgstr "TURVAKOOD"
186
-
187
- #: contact-form-7/admin/admin.php:187
188
- msgid "Quiz"
189
- msgstr "Küsimustik"
190
-
191
- #: contact-form-7/admin/admin.php:188
192
- msgid "File upload"
193
- msgstr "Faili üleslaadimine"
194
-
195
- #: contact-form-7/admin/admin.php:189
196
- msgid "Submit button"
197
- msgstr "Saatmise nupp"
198
-
199
- #: contact-form-7/admin/admin.php:190
200
- msgid "Show"
201
- msgstr "Näita"
202
-
203
- #: contact-form-7/admin/admin.php:191
204
- msgid "Hide"
205
- msgstr "Peida"
206
-
207
- #: contact-form-7/admin/admin.php:265
208
- msgid "Contact form"
209
- msgstr "Kontaktivorm"
210
-
211
- #: contact-form-7/admin/admin.php:284
212
- msgid "Settings"
213
- msgstr "Seaded"
214
-
215
- #: contact-form-7/admin/admin.php:295
216
- msgid "http://contactform7.com/"
217
- msgstr "http://contactform7.com/"
218
-
219
- #: contact-form-7/admin/admin.php:296
220
- msgid "Contactform7.com"
221
- msgstr "Contactform7.com"
222
-
223
- #: contact-form-7/admin/admin.php:297
224
- msgid "http://contactform7.com/docs/"
225
- msgstr "http://contactform7.com/docs/"
226
-
227
- #: contact-form-7/admin/admin.php:298
228
- msgid "Docs"
229
- msgstr "Dokumentatsioon"
230
-
231
- #: contact-form-7/admin/admin.php:299
232
- msgid "http://contactform7.com/faq/"
233
- msgstr "http://contactform7.com/faq/"
234
-
235
- #: contact-form-7/admin/admin.php:300
236
- msgid "FAQ"
237
- msgstr "KKK"
238
-
239
- #: contact-form-7/admin/admin.php:301
240
- msgid "http://contactform7.com/support/"
241
- msgstr "http://contactform7.com/support/"
242
-
243
- #: contact-form-7/admin/admin.php:302
244
- msgid "Support"
245
- msgstr "Tugi"
246
-
247
- #: contact-form-7/admin/admin.php:313
248
- msgid "Contact form created."
249
- msgstr "Kontaktivorm on loodud."
250
-
251
- #: contact-form-7/admin/admin.php:316
252
- msgid "Contact form saved."
253
- msgstr "Kontaktivorm on salvestatud."
254
-
255
- #: contact-form-7/admin/admin.php:319
256
- msgid "Contact form deleted."
257
- msgstr "Kontaktivorm on kustutatud."
258
-
259
- #: contact-form-7/admin/admin.php:322
260
- msgid "Database table created."
261
- msgstr "Andmebaasi tabel loodud."
262
-
263
- #: contact-form-7/admin/admin.php:325
264
- msgid "Failed to create database table."
265
- msgstr "Andmebaasi tabeli loomine ebaõnnestus."
266
-
267
- #: contact-form-7/admin/admin.php:358
268
- msgid "Contact Form 7 needs your support. Please donate today."
269
- msgstr "Contact Form 7 vajab sinu tuge. Palun toeta täna."
270
-
271
- #: contact-form-7/admin/admin.php:359
272
- msgid "Is this plugin useful for you? If you like it, please help the developer."
273
- msgstr "Kas see plugin on sulle kasulik? Kui jah, siis aita arendajaid."
274
-
275
- #: contact-form-7/admin/admin.php:360
276
- msgid "Your contribution is needed for making this plugin better."
277
- msgstr "Sinu panust on vaja, et teha seda pluginat paremaks"
278
-
279
- #: contact-form-7/admin/admin.php:361
280
- msgid "Developing a plugin and providing user support is really hard work. Please help."
281
- msgstr "Plugina arendamine ja abi pakkumine on raske töö. Toetage arendajaid."
282
-
283
- #: contact-form-7/includes/classes.php:568
284
- msgid "Untitled"
285
- msgstr "Nimetu"
286
-
287
- #: contact-form-7/includes/functions.php:6
288
- msgid "Sender's message was sent successfully"
289
- msgstr "Teie sõnum on saadetud. Aitäh!"
290
-
291
- #: contact-form-7/includes/functions.php:7
292
- msgid "Your message was sent successfully. Thanks."
293
- msgstr "Teie sõnum on saadetud. Aitäh!"
294
-
295
- #: contact-form-7/includes/functions.php:11
296
- msgid "Sender's message was failed to send"
297
- msgstr "Saatja kirja saatmine ebaõnnestus"
298
-
299
- #: contact-form-7/includes/functions.php:12
300
- #: contact-form-7/includes/functions.php:17
301
- msgid "Failed to send your message. Please try later or contact administrator by other way."
302
- msgstr "Sõnumi saatmine ebaõnnestus. Palun proovige hiljem või võtke ühendust muul viisil."
303
-
304
- #: contact-form-7/includes/functions.php:16
305
- msgid "Akismet judged the sending activity as spamming"
306
- msgstr "Akismet otsustas, et saatmistegevus on spämm"
307
-
308
- #: contact-form-7/includes/functions.php:21
309
- msgid "Validation errors occurred"
310
- msgstr "Valideerimise vead"
311
-
312
- #: contact-form-7/includes/functions.php:22
313
- msgid "Validation errors occurred. Please confirm the fields and submit it again."
314
- msgstr "Vormi täitmisel esines vigu. Palun kontrollige ja saatke uuesti."
315
-
316
- #: contact-form-7/includes/functions.php:26
317
- msgid "There is a field of term that sender is needed to accept"
318
- msgstr "Saatja jättis aktsepteerimata tingimustega"
319
-
320
- #: contact-form-7/includes/functions.php:27
321
- msgid "Please accept the terms to proceed."
322
- msgstr "Tingimustega nõustumine on vajalik"
323
-
324
- #: contact-form-7/includes/functions.php:31
325
- msgid "Email address that sender entered is invalid"
326
- msgstr "Emaili aadress on vigane"
327
-
328
- #: contact-form-7/includes/functions.php:32
329
- msgid "Email address seems invalid."
330
- msgstr "Emaili aadress on vigane"
331
-
332
- #: contact-form-7/includes/functions.php:36
333
- msgid "There is a field that sender is needed to fill in"
334
- msgstr "Saatja jättis täitmata ühe nõutud välja"
335
-
336
- #: contact-form-7/includes/functions.php:37
337
- msgid "Please fill the required field."
338
- msgstr "Palun täitke nõutud väljad"
339
-
340
- #: contact-form-7/includes/functions.php:45
341
- msgid "Your Name"
342
- msgstr "Nimi"
343
-
344
- #: contact-form-7/includes/functions.php:45
345
- #: contact-form-7/includes/functions.php:47
346
- msgid "(required)"
347
- msgstr "(nõutav)"
348
-
349
- #: contact-form-7/includes/functions.php:47
350
- msgid "Your Email"
351
- msgstr "Email"
352
-
353
- #: contact-form-7/includes/functions.php:49
354
- msgid "Subject"
355
- msgstr "Teema"
356
-
357
- #: contact-form-7/includes/functions.php:51
358
- msgid "Your Message"
359
- msgstr "Teade"
360
-
361
- #: contact-form-7/includes/functions.php:53
362
- msgid "Send"
363
- msgstr "Saada"
364
-
365
- #: contact-form-7/includes/functions.php:60
366
- #, php-format
367
- msgid "From: %s"
368
- msgstr "Saatja: %s"
369
-
370
- #: contact-form-7/includes/functions.php:61
371
- #, php-format
372
- msgid "Subject: %s"
373
- msgstr "Teema: %s"
374
-
375
- #: contact-form-7/includes/functions.php:62
376
- msgid "Message Body:"
377
- msgstr "Sõnumi sisu:"
378
-
379
- #: contact-form-7/includes/functions.php:63
380
- #: contact-form-7/includes/functions.php:74
381
- #, php-format
382
- msgid "This mail is sent via contact form on %1$s %2$s"
383
- msgstr "Email saadetakse %1$s %2$s"
384
-
385
- #: contact-form-7/includes/functions.php:163
386
- msgid "Albanian"
387
- msgstr "Albaania"
388
-
389
- #: contact-form-7/includes/functions.php:164
390
- msgid "Arabic"
391
- msgstr "Araabia"
392
-
393
- #: contact-form-7/includes/functions.php:165
394
- msgid "Bangla"
395
- msgstr "Bangla"
396
-
397
- #: contact-form-7/includes/functions.php:166
398
- msgid "Bosnian"
399
- msgstr "Bosnia"
400
-
401
- #: contact-form-7/includes/functions.php:167
402
- msgid "Brazilian Portuguese"
403
- msgstr "Brasiilia Porugali"
404
-
405
- #: contact-form-7/includes/functions.php:168
406
- msgid "Bulgarian"
407
- msgstr "Bulgaaria"
408
-
409
- #: contact-form-7/includes/functions.php:169
410
- msgid "Catalan"
411
- msgstr "Katalaani"
412
-
413
- #: contact-form-7/includes/functions.php:170
414
- msgid "Chinese (Simplified)"
415
- msgstr "Hiina (Lihtsustatud)"
416
-
417
- #: contact-form-7/includes/functions.php:171
418
- msgid "Chinese (Traditional)"
419
- msgstr "Hiina (Traditsiooniline)"
420
-
421
- #: contact-form-7/includes/functions.php:172
422
- msgid "Croatian"
423
- msgstr "Horvaatia"
424
-
425
- #: contact-form-7/includes/functions.php:173
426
- msgid "Czech"
427
- msgstr "Tšehhi"
428
-
429
- #: contact-form-7/includes/functions.php:174
430
- msgid "Danish"
431
- msgstr "Taani"
432
-
433
- #: contact-form-7/includes/functions.php:175
434
- msgid "Dutch"
435
- msgstr "Hollandi"
436
-
437
- #: contact-form-7/includes/functions.php:176
438
- msgid "English"
439
- msgstr "Inglise"
440
-
441
- #: contact-form-7/includes/functions.php:177
442
- msgid "Estonian"
443
- msgstr "Eesti"
444
-
445
- #: contact-form-7/includes/functions.php:178
446
- msgid "Finnish"
447
- msgstr "Soome"
448
-
449
- #: contact-form-7/includes/functions.php:179
450
- msgid "French"
451
- msgstr "Prantsuse"
452
-
453
- #: contact-form-7/includes/functions.php:180
454
- msgid "Georgian"
455
- msgstr "Jordaania"
456
-
457
- #: contact-form-7/includes/functions.php:181
458
- msgid "German"
459
- msgstr "Saksa"
460
-
461
- #: contact-form-7/includes/functions.php:182
462
- msgid "Greek"
463
- msgstr "Kreeka"
464
-
465
- #: contact-form-7/includes/functions.php:183
466
- msgid "Hebrew"
467
- msgstr "Heebrea"
468
-
469
- #: contact-form-7/includes/functions.php:184
470
- msgid "Hindi"
471
- msgstr "Hindi"
472
-
473
- #: contact-form-7/includes/functions.php:185
474
- msgid "Hungarian"
475
- msgstr "Ungari"
476
-
477
- #: contact-form-7/includes/functions.php:186
478
- msgid "Indonesian"
479
- msgstr "Indoneesia"
480
-
481
- #: contact-form-7/includes/functions.php:187
482
- msgid "Italian"
483
- msgstr "Itaalia"
484
-
485
- #: contact-form-7/includes/functions.php:188
486
- msgid "Japanese"
487
- msgstr "Jaapani"
488
-
489
- #: contact-form-7/includes/functions.php:189
490
- msgid "Korean"
491
- msgstr "Korea"
492
-
493
- #: contact-form-7/includes/functions.php:190
494
- msgid "Latvian"
495
- msgstr "Läti"
496
-
497
- #: contact-form-7/includes/functions.php:191
498
- msgid "Lithuanian"
499
- msgstr "Leedu"
500
-
501
- #: contact-form-7/includes/functions.php:192
502
- msgid "Norwegian"
503
- msgstr "Norra"
504
-
505
- #: contact-form-7/includes/functions.php:193
506
- msgid "Persian"
507
- msgstr "Pärsia"
508
-
509
- #: contact-form-7/includes/functions.php:194
510
- msgid "Polish"
511
- msgstr "Poola"
512
-
513
- #: contact-form-7/includes/functions.php:195
514
- msgid "Portuguese"
515
- msgstr "Portugali"
516
-
517
- #: contact-form-7/includes/functions.php:196
518
- msgid "Russian"
519
- msgstr "Vene"
520
-
521
- #: contact-form-7/includes/functions.php:197
522
- msgid "Romanian"
523
- msgstr "Rumeenia"
524
-
525
- #: contact-form-7/includes/functions.php:198
526
- msgid "Serbian"
527
- msgstr "Serbia"
528
-
529
- #: contact-form-7/includes/functions.php:199
530
- msgid "Slovak"
531
- msgstr "Slovaki"
532
-
533
- #: contact-form-7/includes/functions.php:200
534
- msgid "Slovene"
535
- msgstr "Sloveenia"
536
-
537
- #: contact-form-7/includes/functions.php:201
538
- msgid "Spanish"
539
- msgstr "Hispaania"
540
-
541
- #: contact-form-7/includes/functions.php:202
542
- msgid "Swedish"
543
- msgstr "Rootsi"
544
-
545
- #: contact-form-7/includes/functions.php:203
546
- msgid "Thai"
547
- msgstr "Tai"
548
-
549
- #: contact-form-7/includes/functions.php:204
550
- msgid "Turkish"
551
- msgstr "Türgi"
552
-
553
- #: contact-form-7/includes/functions.php:205
554
- msgid "Ukrainian"
555
- msgstr "Ukrainia"
556
-
557
- #: contact-form-7/includes/functions.php:206
558
- msgid "Vietnamese"
559
- msgstr "Vietnami"
560
-
561
- #: contact-form-7/modules/acceptance.php:98
562
- #: contact-form-7/modules/captcha.php:201
563
- #: contact-form-7/modules/checkbox.php:185
564
- #: contact-form-7/modules/file.php:229
565
- msgid "Name"
566
- msgstr "Nimi"
567
-
568
- #: contact-form-7/modules/acceptance.php:103
569
- #: contact-form-7/modules/acceptance.php:106
570
- #: contact-form-7/modules/captcha.php:208
571
- #: contact-form-7/modules/captcha.php:211
572
- #: contact-form-7/modules/captcha.php:216
573
- #: contact-form-7/modules/captcha.php:219
574
- #: contact-form-7/modules/captcha.php:223
575
- #: contact-form-7/modules/captcha.php:234
576
- #: contact-form-7/modules/captcha.php:237
577
- #: contact-form-7/modules/captcha.php:242
578
- #: contact-form-7/modules/captcha.php:245
579
- #: contact-form-7/modules/checkbox.php:190
580
- #: contact-form-7/modules/checkbox.php:193
581
- #: contact-form-7/modules/file.php:234
582
- #: contact-form-7/modules/file.php:237
583
- #: contact-form-7/modules/file.php:242
584
- #: contact-form-7/modules/file.php:245
585
- msgid "optional"
586
- msgstr "võib tühjaks jätta"
587
-
588
- #: contact-form-7/modules/acceptance.php:112
589
- msgid "Make this checkbox checked by default?"
590
- msgstr "Vaikimisi täidetud"
591
-
592
- #: contact-form-7/modules/acceptance.php:113
593
- msgid "Make this checkbox work inversely?"
594
- msgstr "Pane valikkastid tagurpidi tööle"
595
-
596
- #: contact-form-7/modules/acceptance.php:114
597
- msgid "* That means visitor who accepts the term unchecks it."
598
- msgstr "* See tähendab et aktsepteeriv külastaja võtab linnukese ära"
599
-
600
- #: contact-form-7/modules/acceptance.php:119
601
- #: contact-form-7/modules/captcha.php:250
602
- #: contact-form-7/modules/checkbox.php:213
603
- #: contact-form-7/modules/file.php:250
604
- msgid "Copy this code and paste it into the form left."
605
- msgstr "Kopeeri see kood ja kleebi see vormi."
606
-
607
- #: contact-form-7/modules/captcha.php:65
608
- msgid "To use CAPTCHA, you need <a href=\"http://wordpress.org/extend/plugins/really-simple-captcha/\">Really Simple CAPTCHA</a> plugin installed."
609
- msgstr "Selleks, et kasutada TURVAKOOD-i, peab olema paigaldatud <a href=\"http://wordpress.org/extend/plugins/really-simple-captcha/\">Really Simple CAPTCHA</a> plugin."
610
-
611
- #: contact-form-7/modules/captcha.php:181
612
- msgid "The code that sender entered does not match the CAPTCHA"
613
- msgstr "Kood mida saataja sisestas ei kattu TURVAKOOD-iga."
614
-
615
- #: contact-form-7/modules/captcha.php:182
616
- msgid "Your entered code is incorrect."
617
- msgstr "Sisestatud kood on vale"
618
-
619
- #: contact-form-7/modules/captcha.php:198
620
- msgid "Note: To use CAPTCHA, you need Really Simple CAPTCHA plugin installed."
621
- msgstr "NB: Selleks, et kasutada TURVAKOOD-i, peab olema paigaldatud \"Really Simple Captcha\" plugin."
622
-
623
- #: contact-form-7/modules/captcha.php:205
624
- msgid "Image settings"
625
- msgstr "Pildi seaded"
626
-
627
- #: contact-form-7/modules/captcha.php:216
628
- msgid "Foreground color"
629
- msgstr "Teksti värv"
630
-
631
- #: contact-form-7/modules/captcha.php:219
632
- msgid "Background color"
633
- msgstr "Taustavärv"
634
-
635
- #: contact-form-7/modules/captcha.php:223
636
- msgid "Image size"
637
- msgstr "Pildi suurus"
638
-
639
- #: contact-form-7/modules/captcha.php:224
640
- msgid "Small"
641
- msgstr "Väike"
642
-
643
- #: contact-form-7/modules/captcha.php:225
644
- msgid "Medium"
645
- msgstr "Keskmine"
646
-
647
- #: contact-form-7/modules/captcha.php:226
648
- msgid "Large"
649
- msgstr "Suur"
650
-
651
- #: contact-form-7/modules/captcha.php:231
652
- msgid "Input field settings"
653
- msgstr "Sisestusvälja seaded"
654
-
655
- #: contact-form-7/modules/captcha.php:251
656
- msgid "For image"
657
- msgstr "Pildile"
658
-
659
- #: contact-form-7/modules/captcha.php:253
660
- msgid "For input field"
661
- msgstr "Sisestusväljale"
662
-
663
- #: contact-form-7/modules/captcha.php:283
664
- #, php-format
665
- 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."
666
- msgstr "See kontaktivorm sisaldab TURVAKOODI välju, aga failide ajutine kaust (%s) ei eksisteeri või ei ole kirjutatav. Võite teha kausta või muuta selle õigusi käsitsi."
667
-
668
- #: contact-form-7/modules/captcha.php:289
669
- msgid "This contact form contains CAPTCHA fields, but the necessary libraries (GD and FreeType) are not available on your server."
670
- msgstr "See kontaktivorm sisaldab TURVAKOODI välju, aga vajalikud teegid (GD ja FreeType) ei ole saadaval teie serveril."
671
-
672
- #: contact-form-7/modules/checkbox.php:182
673
- #: contact-form-7/modules/file.php:228
674
- msgid "Required field?"
675
- msgstr "Nõutud väli?"
676
-
677
- #: contact-form-7/modules/checkbox.php:198
678
- msgid "Choices"
679
- msgstr "Valikud"
680
-
681
- #: contact-form-7/modules/checkbox.php:200
682
- msgid "* One choice per line."
683
- msgstr "* Üks valik rea kohta"
684
-
685
- #: contact-form-7/modules/checkbox.php:204
686
- msgid "Put a label first, a checkbox last?"
687
- msgstr "Paiguta pealkiri ning siis valikkast?"
688
-
689
- #: contact-form-7/modules/checkbox.php:205
690
- msgid "Wrap each item with <label> tag?"
691
- msgstr "Kirjuta iga kirje <label> siltide vahele. (näiteks <label>kirje</label>)"
692
-
693
- #: contact-form-7/modules/checkbox.php:207
694
- msgid "Make checkboxes exclusive?"
695
- msgstr "Tee valikkastid üksteist välistavaks?"
696
-
697
- #: contact-form-7/modules/checkbox.php:215
698
- msgid "And, put this code into the Mail fields below."
699
- msgstr "Ja lisa see kood Emaili väljadesse alla."
700
-
701
- #: contact-form-7/modules/file.php:197
702
- msgid "Uploading a file fails for any reason"
703
- msgstr "Üleslaadimine ebaõnnestus mingil põhjusel:"
704
-
705
- #: contact-form-7/modules/file.php:198
706
- msgid "Failed to upload file."
707
- msgstr "Üleslaadimine ebaõnnestus."
708
-
709
- #: contact-form-7/modules/file.php:202
710
- msgid "Uploaded file is not allowed file type"
711
- msgstr "Üles laetud fail ei ole lubatud tüüpi."
712
-
713
- #: contact-form-7/modules/file.php:203
714
- msgid "This file type is not allowed."
715
- msgstr "Sellist tüüpi fail ei ole lubatud."
716
-
717
- #: contact-form-7/modules/file.php:207
718
- msgid "Uploaded file is too large"
719
- msgstr "Üles laetud fail on liiga suur"
720
-
721
- #: contact-form-7/modules/file.php:208
722
- msgid "This file is too large."
723
- msgstr "Fail on liiga suur."
724
-
725
- #: contact-form-7/modules/file.php:212
726
- msgid "Uploading a file fails for PHP error"
727
- msgstr "Faili üleslaadimine ebaõnnestus PHP vea tõttu"
728
-
729
- #: contact-form-7/modules/file.php:213
730
- msgid "Failed to upload file. Error occurred."
731
- msgstr "Üleslaadimine ebaõnnestus. Viga."
732
-
733
- #: contact-form-7/modules/file.php:242
734
- msgid "File size limit"
735
- msgstr "Failisuuruse limiit"
736
-
737
- #: contact-form-7/modules/file.php:242
738
- msgid "bytes"
739
- msgstr "baiti"
740
-
741
- #: contact-form-7/modules/file.php:245
742
- msgid "Acceptable file types"
743
- msgstr "Lubatud failitüübid"
744
-
745
- #: contact-form-7/modules/file.php:252
746
- msgid "And, put this code into the File Attachments field below."
747
- msgstr "Ja lisa see kood Manuste välja."
748
-
749
- #: contact-form-7/modules/file.php:277
750
- #, php-format
751
- 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."
752
- msgstr "See kontaktivorm sisaldab välju faili üleslaadimiseks aga ajutine kaust (%s) failide jaoks ei eksiteeri või ei ole kirjutatav. Võite tekitada kausta või muuta selle õigusi käsitsi."
753
-
754
- #: contact-form-7/modules/icl.php:74
755
- 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."
756
- msgstr "Kontaktivorm sisaldab [icl] msilte, aga need on vanad ja ei tööta enam selle versiooniga. <a href=\"http://contactform7.com/2009/12/25/contact-form-in-your-language/#Creating_contact_form_in_different_languages\" target=\"_blank\">On olemas lihtsam viis kirjutada mitmekeelseid vorme</a> ja soovitame teil seda meetodit kasutada."
757
-
758
- #: contact-form-7/modules/quiz.php:164
759
- msgid "Sender doesn't enter the correct answer to the quiz"
760
- msgstr "Saataja ei sisestanud õiget vastust küsimusele"
761
-
762
- #: contact-form-7/modules/quiz.php:165
763
- msgid "Your answer is not correct."
764
- msgstr "Sisestatud kood on vale."
765
-
766
- #: contact-form-7/modules/quiz.php:200
767
- msgid "Quizzes"
768
- msgstr "Küsimustikud"
769
-
770
- #: contact-form-7/modules/quiz.php:202
771
- msgid "* quiz|answer (e.g. 1+1=?|2)"
772
- msgstr "* küsimus|vastus (näiteks 1+1=?|2)"
773
-
774
- #: contact-form-7/modules/select.php:170
775
- msgid "Allow multiple selections?"
776
- msgstr "Luba mitut valikut?"
777
-
778
- #: contact-form-7/modules/select.php:171
779
- msgid "Insert a blank item as the first option?"
780
- msgstr "Lisa tühi rida esimeseks valikuks?"
781
-
782
- #: contact-form-7/modules/submit.php:68
783
- msgid "Label"
784
- msgstr "Nimi"
785
-
786
- #: contact-form-7/modules/text.php:163
787
- msgid "Akismet"
788
- msgstr "Akismet"
789
-
790
- #: contact-form-7/modules/text.php:165
791
- msgid "This field requires author's name"
792
- msgstr "Autori nimi on nõutud"
793
-
794
- #: contact-form-7/modules/text.php:166
795
- msgid "This field requires author's URL"
796
- msgstr "Autori URL-i on nõutud"
797
-
798
- #: contact-form-7/modules/text.php:168
799
- msgid "This field requires author's email address"
800
- msgstr "Autori email aadress on nõutud"
801
-
802
- #: contact-form-7/modules/text.php:172
803
- #: contact-form-7/modules/textarea.php:144
804
- msgid "Default value"
805
- msgstr "Vaikimisi väärtus"
806
-
807
- #~ msgid "Delete this contact form"
808
- #~ msgstr "Kustuta see kontaktivorm"
809
- #~ msgid "Form content"
810
- #~ msgstr "Lomakkeen sisältö"
811
- #~ msgid "Mail template"
812
- #~ msgstr "Sähköpostimalli"
813
- #~ msgid "Sender field:"
814
- #~ msgstr "Lähettäjä:"
815
- #~ msgid "Recipient address:"
816
- #~ msgstr "Vastaanottajan osoite:"
817
- #~ msgid "Insert"
818
- #~ msgstr "Syötä"
819
-
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
languages/wpcf7-fa_IR.po DELETED
@@ -1,511 +0,0 @@
1
- msgid ""
2
- msgstr ""
3
- "Project-Id-Version: Contact Form 7\n"
4
- "Report-Msgid-Bugs-To: \n"
5
- "POT-Creation-Date: 2009-10-14 12:03+0330\n"
6
- "PO-Revision-Date: \n"
7
- "Last-Translator: Mohammad Musavi <mohammad at musavis.com>\n"
8
- "Language-Team: musavis.com <mohammad at musavis.com>\n"
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: Persian\n"
13
- "X-Poedit-Country: Iran\n"
14
- "X-Poedit-KeywordsList: __;_e\n"
15
- "X-Poedit-Basepath: e:\\mohammad\\xampp2\\htdocs\\wordpress\\wp-content\\plugins\\contact-form-7\\\n"
16
- "X-Poedit-SearchPath-0: e:\\mohammad\\xampp2\\htdocs\\wordpress\\wp-content\\plugins\\contact-form-7\n"
17
-
18
- #: e:\mohammad\xampp2\htdocs\wordpress\wp-content\plugins\contact-form-7/admin/admin-panel.php:9
19
- #, php-format
20
- msgid "<strong>The database table for Contact Form 7 does not exist.</strong> You must <a href=\"%s\">create the table</a> for it to work."
21
- msgstr "جدول پایگاه داده برای افزونه فرم تماس 7 وجود ندارد. برای کارکرد آن باید <a href=\"%s\">آنرا ایجاد کنید</a>"
22
-
23
- #: e:\mohammad\xampp2\htdocs\wordpress\wp-content\plugins\contact-form-7/admin/admin-panel.php:12
24
- msgid "<strong>The database table for Contact Form 7 does not exist.</strong>"
25
- msgstr "جدول پایگاه داده برای افزونه فرم تماس 7 وجود ندارد."
26
-
27
- #: e:\mohammad\xampp2\htdocs\wordpress\wp-content\plugins\contact-form-7/admin/admin-panel.php:17
28
- #: e:\mohammad\xampp2\htdocs\wordpress\wp-content\plugins\contact-form-7/admin/admin-panel.php:30
29
- #: e:\mohammad\xampp2\htdocs\wordpress\wp-content\plugins\contact-form-7/admin/admin.php:121
30
- #: e:\mohammad\xampp2\htdocs\wordpress\wp-content\plugins\contact-form-7/includes/functions.php:52
31
- msgid "Contact Form 7"
32
- msgstr "فرم تماس نسخه 7"
33
-
34
- #: e:\mohammad\xampp2\htdocs\wordpress\wp-content\plugins\contact-form-7/admin/admin-panel.php:45
35
- msgid "Add new"
36
- msgstr "جدید"
37
-
38
- #: e:\mohammad\xampp2\htdocs\wordpress\wp-content\plugins\contact-form-7/admin/admin-panel.php:67
39
- msgid "Copy this code and paste it into your post, page or text widget content."
40
- msgstr "این کد را کپی نموده و در نوشته، برگه یا ابزارک خود بچسبانید."
41
-
42
- #: e:\mohammad\xampp2\htdocs\wordpress\wp-content\plugins\contact-form-7/admin/admin-panel.php:75
43
- #: e:\mohammad\xampp2\htdocs\wordpress\wp-content\plugins\contact-form-7/admin/admin-panel.php:332
44
- msgid "Save"
45
- msgstr "ذخیره"
46
-
47
- #: e:\mohammad\xampp2\htdocs\wordpress\wp-content\plugins\contact-form-7/admin/admin-panel.php:82
48
- msgid "Copy"
49
- msgstr "کپی"
50
-
51
- #: e:\mohammad\xampp2\htdocs\wordpress\wp-content\plugins\contact-form-7/admin/admin-panel.php:87
52
- msgid "Delete"
53
- msgstr "حذف"
54
-
55
- #: e:\mohammad\xampp2\htdocs\wordpress\wp-content\plugins\contact-form-7/admin/admin-panel.php:89
56
- msgid ""
57
- "You are about to delete this contact form.\n"
58
- " 'Cancel' to stop, 'OK' to delete."
59
- msgstr "شما در حال حذف این فرم تماس هستید. آیا از حذف این فرم اطمینان دارید؟"
60
-
61
- #: e:\mohammad\xampp2\htdocs\wordpress\wp-content\plugins\contact-form-7/admin/admin-panel.php:102
62
- msgid "Form"
63
- msgstr "فرم"
64
-
65
- #: e:\mohammad\xampp2\htdocs\wordpress\wp-content\plugins\contact-form-7/admin/admin-panel.php:120
66
- msgid "Mail"
67
- msgstr "پست الکترونیک"
68
-
69
- #: e:\mohammad\xampp2\htdocs\wordpress\wp-content\plugins\contact-form-7/admin/admin-panel.php:127
70
- #: e:\mohammad\xampp2\htdocs\wordpress\wp-content\plugins\contact-form-7/admin/admin-panel.php:188
71
- msgid "To:"
72
- msgstr "گیرنده:"
73
-
74
- #: e:\mohammad\xampp2\htdocs\wordpress\wp-content\plugins\contact-form-7/admin/admin-panel.php:132
75
- #: e:\mohammad\xampp2\htdocs\wordpress\wp-content\plugins\contact-form-7/admin/admin-panel.php:193
76
- msgid "From:"
77
- msgstr "فرستنده:"
78
-
79
- #: e:\mohammad\xampp2\htdocs\wordpress\wp-content\plugins\contact-form-7/admin/admin-panel.php:137
80
- #: e:\mohammad\xampp2\htdocs\wordpress\wp-content\plugins\contact-form-7/admin/admin-panel.php:198
81
- msgid "Subject:"
82
- msgstr "موضوع:"
83
-
84
- #: e:\mohammad\xampp2\htdocs\wordpress\wp-content\plugins\contact-form-7/admin/admin-panel.php:144
85
- #: e:\mohammad\xampp2\htdocs\wordpress\wp-content\plugins\contact-form-7/admin/admin-panel.php:205
86
- msgid "Additional headers:"
87
- msgstr "هدرهای اضافی:"
88
-
89
- #: e:\mohammad\xampp2\htdocs\wordpress\wp-content\plugins\contact-form-7/admin/admin-panel.php:149
90
- #: e:\mohammad\xampp2\htdocs\wordpress\wp-content\plugins\contact-form-7/admin/admin-panel.php:210
91
- msgid "File attachments:"
92
- msgstr "فایل های الصاق شده:"
93
-
94
- #: e:\mohammad\xampp2\htdocs\wordpress\wp-content\plugins\contact-form-7/admin/admin-panel.php:157
95
- #: e:\mohammad\xampp2\htdocs\wordpress\wp-content\plugins\contact-form-7/admin/admin-panel.php:218
96
- msgid "Use HTML content type"
97
- msgstr "استفاده از HTML در محتوا"
98
-
99
- #: e:\mohammad\xampp2\htdocs\wordpress\wp-content\plugins\contact-form-7/admin/admin-panel.php:164
100
- #: e:\mohammad\xampp2\htdocs\wordpress\wp-content\plugins\contact-form-7/admin/admin-panel.php:225
101
- #: e:\mohammad\xampp2\htdocs\wordpress\wp-content\plugins\contact-form-7/includes/functions.php:50
102
- msgid "Message body:"
103
- msgstr "متن نامه"
104
-
105
- #: e:\mohammad\xampp2\htdocs\wordpress\wp-content\plugins\contact-form-7/admin/admin-panel.php:174
106
- msgid "Mail (2)"
107
- msgstr "پست الکترونیک 2"
108
-
109
- #: e:\mohammad\xampp2\htdocs\wordpress\wp-content\plugins\contact-form-7/admin/admin-panel.php:180
110
- msgid "Use mail (2)"
111
- msgstr "استفاده از پست الکترونیک 2"
112
-
113
- #: e:\mohammad\xampp2\htdocs\wordpress\wp-content\plugins\contact-form-7/admin/admin-panel.php:235
114
- msgid "Messages"
115
- msgstr "پیغام ها"
116
-
117
- #: e:\mohammad\xampp2\htdocs\wordpress\wp-content\plugins\contact-form-7/admin/admin-panel.php:243
118
- msgid "Sender's message was sent successfully"
119
- msgstr "پیام با موفقیت ارسال شد."
120
-
121
- #: e:\mohammad\xampp2\htdocs\wordpress\wp-content\plugins\contact-form-7/admin/admin-panel.php:248
122
- msgid "Sender's message was failed to send"
123
- msgstr "ارسال ناموفق بود"
124
-
125
- #: e:\mohammad\xampp2\htdocs\wordpress\wp-content\plugins\contact-form-7/admin/admin-panel.php:253
126
- msgid "Akismet judged the sending activity as spamming"
127
- msgstr "آکیسمت متن ارسالی را هرزنامه تشخیص داد"
128
-
129
- #: e:\mohammad\xampp2\htdocs\wordpress\wp-content\plugins\contact-form-7/admin/admin-panel.php:258
130
- msgid "Validation errors occurred"
131
- msgstr "خطای تائید رخ داد"
132
-
133
- #: e:\mohammad\xampp2\htdocs\wordpress\wp-content\plugins\contact-form-7/admin/admin-panel.php:263
134
- msgid "There is a field that sender is needed to fill in"
135
- msgstr "ارسال کننده ملزم به تکمیل فیلدهای الزامیست."
136
-
137
- #: e:\mohammad\xampp2\htdocs\wordpress\wp-content\plugins\contact-form-7/admin/admin-panel.php:268
138
- msgid "Email address that sender entered is invalid"
139
- msgstr "آدرس پست الکترونیک وارد شده نامعتبر به نظر می رسد."
140
-
141
- #: e:\mohammad\xampp2\htdocs\wordpress\wp-content\plugins\contact-form-7/admin/admin-panel.php:273
142
- msgid "There is a field of term that sender is needed to accept"
143
- msgstr "ارسال کننده فرم ملزم به پذیرش فیلد الزامیست."
144
-
145
- #: e:\mohammad\xampp2\htdocs\wordpress\wp-content\plugins\contact-form-7/admin/admin-panel.php:278
146
- msgid "Sender doesn't enter the correct answer to the quiz"
147
- msgstr "پاسخ شما به پرسش امنیتی اشتباه است."
148
-
149
- #: e:\mohammad\xampp2\htdocs\wordpress\wp-content\plugins\contact-form-7/admin/admin-panel.php:283
150
- msgid "The code that sender entered does not match the CAPTCHA"
151
- msgstr "کد امنیتی وارد شده معتبر نیست."
152
-
153
- #: e:\mohammad\xampp2\htdocs\wordpress\wp-content\plugins\contact-form-7/admin/admin-panel.php:288
154
- msgid "Uploading a file fails for any reason"
155
- msgstr "آپلود فایل به هر علتی با مشکل مواجه می شود."
156
-
157
- #: e:\mohammad\xampp2\htdocs\wordpress\wp-content\plugins\contact-form-7/admin/admin-panel.php:293
158
- msgid "Uploaded file is not allowed file type"
159
- msgstr "پسوند فایل آپلود شده مجاز نمی باشد."
160
-
161
- #: e:\mohammad\xampp2\htdocs\wordpress\wp-content\plugins\contact-form-7/admin/admin-panel.php:298
162
- msgid "Uploaded file is too large"
163
- msgstr "حجم فایل آپلود شده بیش از حد مجاز است."
164
-
165
- #: e:\mohammad\xampp2\htdocs\wordpress\wp-content\plugins\contact-form-7/admin/admin-panel.php:303
166
- msgid "Uploading a file fails for PHP error"
167
- msgstr "آپلود فایل به علل خطای PHP با مشکل مواجه شد."
168
-
169
- #: e:\mohammad\xampp2\htdocs\wordpress\wp-content\plugins\contact-form-7/admin/admin-panel.php:314
170
- msgid "Additional Settings"
171
- msgstr "تنظیمات اضافی"
172
-
173
- #: e:\mohammad\xampp2\htdocs\wordpress\wp-content\plugins\contact-form-7/admin/admin.php:121
174
- msgid "Contact"
175
- msgstr "تماس"
176
-
177
- #: e:\mohammad\xampp2\htdocs\wordpress\wp-content\plugins\contact-form-7/admin/admin.php:125
178
- msgid "Edit Contact Forms"
179
- msgstr "ویرایش فرم های تماس"
180
-
181
- #: e:\mohammad\xampp2\htdocs\wordpress\wp-content\plugins\contact-form-7/admin/admin.php:125
182
- msgid "Edit"
183
- msgstr "ویرایش"
184
-
185
- #: e:\mohammad\xampp2\htdocs\wordpress\wp-content\plugins\contact-form-7/admin/admin.php:185
186
- msgid "optional"
187
- msgstr "انتخابی"
188
-
189
- #: e:\mohammad\xampp2\htdocs\wordpress\wp-content\plugins\contact-form-7/admin/admin.php:186
190
- msgid "Generate Tag"
191
- msgstr "برچسب عمومی"
192
-
193
- #: e:\mohammad\xampp2\htdocs\wordpress\wp-content\plugins\contact-form-7/admin/admin.php:187
194
- msgid "Text field"
195
- msgstr "فیلد متنی"
196
-
197
- #: e:\mohammad\xampp2\htdocs\wordpress\wp-content\plugins\contact-form-7/admin/admin.php:188
198
- msgid "Email field"
199
- msgstr "فیلد ایمیل"
200
-
201
- #: e:\mohammad\xampp2\htdocs\wordpress\wp-content\plugins\contact-form-7/admin/admin.php:189
202
- msgid "Text area"
203
- msgstr "فضای متنی"
204
-
205
- #: e:\mohammad\xampp2\htdocs\wordpress\wp-content\plugins\contact-form-7/admin/admin.php:190
206
- msgid "Drop-down menu"
207
- msgstr "منوی بازشو"
208
-
209
- #: e:\mohammad\xampp2\htdocs\wordpress\wp-content\plugins\contact-form-7/admin/admin.php:191
210
- msgid "Checkboxes"
211
- msgstr "جعبه علامتگذاری"
212
-
213
- #: e:\mohammad\xampp2\htdocs\wordpress\wp-content\plugins\contact-form-7/admin/admin.php:192
214
- msgid "Radio buttons"
215
- msgstr "دکمه انتخابی"
216
-
217
- #: e:\mohammad\xampp2\htdocs\wordpress\wp-content\plugins\contact-form-7/admin/admin.php:193
218
- msgid "Acceptance"
219
- msgstr "پذیرش"
220
-
221
- #: e:\mohammad\xampp2\htdocs\wordpress\wp-content\plugins\contact-form-7/admin/admin.php:194
222
- msgid "Make this checkbox checked by default?"
223
- msgstr "آیا این جعبه به صورت پیش فرض تیک خورده باشد؟"
224
-
225
- #: e:\mohammad\xampp2\htdocs\wordpress\wp-content\plugins\contact-form-7/admin/admin.php:195
226
- msgid "Make this checkbox work inversely?"
227
- msgstr "این جعبه بصورت برعکس عمل نماید؟"
228
-
229
- #: e:\mohammad\xampp2\htdocs\wordpress\wp-content\plugins\contact-form-7/admin/admin.php:196
230
- msgid "* That means visitor who accepts the term unchecks it."
231
- msgstr "* این بدین معناست که کسی که شرایط را می پذیرد آنرا به حالت تیک نخورده در می آورد."
232
-
233
- #: e:\mohammad\xampp2\htdocs\wordpress\wp-content\plugins\contact-form-7/admin/admin.php:197
234
- msgid "CAPTCHA"
235
- msgstr "کد امنیتی"
236
-
237
- #: e:\mohammad\xampp2\htdocs\wordpress\wp-content\plugins\contact-form-7/admin/admin.php:198
238
- msgid "Quiz"
239
- msgstr "پرسش"
240
-
241
- #: e:\mohammad\xampp2\htdocs\wordpress\wp-content\plugins\contact-form-7/admin/admin.php:199
242
- msgid "Quizzes"
243
- msgstr "پرسش ها"
244
-
245
- #: e:\mohammad\xampp2\htdocs\wordpress\wp-content\plugins\contact-form-7/admin/admin.php:200
246
- msgid "* quiz|answer (e.g. 1+1=?|2)"
247
- msgstr "* پرسش|پاسخ (مثال: 1+1؟|2)"
248
-
249
- #: e:\mohammad\xampp2\htdocs\wordpress\wp-content\plugins\contact-form-7/admin/admin.php:201
250
- msgid "File upload"
251
- msgstr "آپلود فایل"
252
-
253
- #: e:\mohammad\xampp2\htdocs\wordpress\wp-content\plugins\contact-form-7/admin/admin.php:202
254
- msgid "bytes"
255
- msgstr "بایت"
256
-
257
- #: e:\mohammad\xampp2\htdocs\wordpress\wp-content\plugins\contact-form-7/admin/admin.php:203
258
- msgid "Submit button"
259
- msgstr "ارسال"
260
-
261
- #: e:\mohammad\xampp2\htdocs\wordpress\wp-content\plugins\contact-form-7/admin/admin.php:204
262
- msgid "Name"
263
- msgstr "نام فیلد"
264
-
265
- #: e:\mohammad\xampp2\htdocs\wordpress\wp-content\plugins\contact-form-7/admin/admin.php:205
266
- msgid "Required field?"
267
- msgstr "گزینه اجباری"
268
-
269
- #: e:\mohammad\xampp2\htdocs\wordpress\wp-content\plugins\contact-form-7/admin/admin.php:206
270
- msgid "Allow multiple selections?"
271
- msgstr "مجاز به انتخاب چند گزینه به طور همزمان؟"
272
-
273
- #: e:\mohammad\xampp2\htdocs\wordpress\wp-content\plugins\contact-form-7/admin/admin.php:207
274
- msgid "Insert a blank item as the first option?"
275
- msgstr "آیتم خالی به عنوان اولین انتخاب قرار داده شود؟"
276
-
277
- #: e:\mohammad\xampp2\htdocs\wordpress\wp-content\plugins\contact-form-7/admin/admin.php:208
278
- msgid "Make checkboxes exclusive?"
279
- msgstr "جعبه های علامتگذاری به صورت انحصاری باشند؟"
280
-
281
- #: e:\mohammad\xampp2\htdocs\wordpress\wp-content\plugins\contact-form-7/admin/admin.php:209
282
- msgid "Choices"
283
- msgstr "انتخاب ها"
284
-
285
- #: e:\mohammad\xampp2\htdocs\wordpress\wp-content\plugins\contact-form-7/admin/admin.php:210
286
- msgid "Label"
287
- msgstr "برچسب"
288
-
289
- #: e:\mohammad\xampp2\htdocs\wordpress\wp-content\plugins\contact-form-7/admin/admin.php:211
290
- msgid "Default value"
291
- msgstr "مقدار پیش فرض"
292
-
293
- #: e:\mohammad\xampp2\htdocs\wordpress\wp-content\plugins\contact-form-7/admin/admin.php:212
294
- msgid "Akismet"
295
- msgstr "اکیسمت"
296
-
297
- #: e:\mohammad\xampp2\htdocs\wordpress\wp-content\plugins\contact-form-7/admin/admin.php:213
298
- msgid "This field requires author's name"
299
- msgstr "این گزینه نیازمند نام نویسنده است"
300
-
301
- #: e:\mohammad\xampp2\htdocs\wordpress\wp-content\plugins\contact-form-7/admin/admin.php:214
302
- msgid "This field requires author's URL"
303
- msgstr "این گزینه نیازمند آدرس اینترنتی نویسنده است"
304
-
305
- #: e:\mohammad\xampp2\htdocs\wordpress\wp-content\plugins\contact-form-7/admin/admin.php:215
306
- msgid "This field requires author's email address"
307
- msgstr "این گزینه نیازمند آدرس پست الکترونیک نویسنده است"
308
-
309
- #: e:\mohammad\xampp2\htdocs\wordpress\wp-content\plugins\contact-form-7/admin/admin.php:216
310
- msgid "Copy this code and paste it into the form left."
311
- msgstr "این کد را در فرم خود بچسبانید"
312
-
313
- #: e:\mohammad\xampp2\htdocs\wordpress\wp-content\plugins\contact-form-7/admin/admin.php:217
314
- msgid "Foreground color"
315
- msgstr "رنگ پیش زمینه"
316
-
317
- #: e:\mohammad\xampp2\htdocs\wordpress\wp-content\plugins\contact-form-7/admin/admin.php:218
318
- msgid "Background color"
319
- msgstr "رنگ پس زمینه"
320
-
321
- #: e:\mohammad\xampp2\htdocs\wordpress\wp-content\plugins\contact-form-7/admin/admin.php:219
322
- msgid "Image size"
323
- msgstr "اندازه تصویر"
324
-
325
- #: e:\mohammad\xampp2\htdocs\wordpress\wp-content\plugins\contact-form-7/admin/admin.php:220
326
- msgid "Small"
327
- msgstr "کوچک"
328
-
329
- #: e:\mohammad\xampp2\htdocs\wordpress\wp-content\plugins\contact-form-7/admin/admin.php:221
330
- msgid "Medium"
331
- msgstr "متوسط"
332
-
333
- #: e:\mohammad\xampp2\htdocs\wordpress\wp-content\plugins\contact-form-7/admin/admin.php:222
334
- msgid "Large"
335
- msgstr "بزرگ"
336
-
337
- #: e:\mohammad\xampp2\htdocs\wordpress\wp-content\plugins\contact-form-7/admin/admin.php:223
338
- msgid "Image settings"
339
- msgstr "تنظیمات تصویر"
340
-
341
- #: e:\mohammad\xampp2\htdocs\wordpress\wp-content\plugins\contact-form-7/admin/admin.php:224
342
- msgid "Input field settings"
343
- msgstr "قرار دادن تنظیمات گزینه"
344
-
345
- #: e:\mohammad\xampp2\htdocs\wordpress\wp-content\plugins\contact-form-7/admin/admin.php:225
346
- msgid "For image"
347
- msgstr "برای تصویر"
348
-
349
- #: e:\mohammad\xampp2\htdocs\wordpress\wp-content\plugins\contact-form-7/admin/admin.php:226
350
- msgid "For input field"
351
- msgstr "برای گزینه ورودی"
352
-
353
- #: e:\mohammad\xampp2\htdocs\wordpress\wp-content\plugins\contact-form-7/admin/admin.php:227
354
- msgid "* One choice per line."
355
- msgstr "* یک انتخاب در هر سطر"
356
-
357
- #: e:\mohammad\xampp2\htdocs\wordpress\wp-content\plugins\contact-form-7/admin/admin.php:228
358
- msgid "Show"
359
- msgstr "نمایش"
360
-
361
- #: e:\mohammad\xampp2\htdocs\wordpress\wp-content\plugins\contact-form-7/admin/admin.php:229
362
- msgid "Hide"
363
- msgstr "پنهان"
364
-
365
- #: e:\mohammad\xampp2\htdocs\wordpress\wp-content\plugins\contact-form-7/admin/admin.php:230
366
- msgid "File size limit"
367
- msgstr "حجم مجاز آپلود"
368
-
369
- #: e:\mohammad\xampp2\htdocs\wordpress\wp-content\plugins\contact-form-7/admin/admin.php:231
370
- msgid "Acceptable file types"
371
- msgstr "فایل های مجاز"
372
-
373
- #: e:\mohammad\xampp2\htdocs\wordpress\wp-content\plugins\contact-form-7/admin/admin.php:232
374
- msgid "Note: To use CAPTCHA, you need Really Simple CAPTCHA plugin installed."
375
- msgstr "تذکر: جهت استفاده از تصاویرامنیتی (کپچا) باید افزونه Really Simple CAPTCHA را نصب نمائید."
376
-
377
- #: e:\mohammad\xampp2\htdocs\wordpress\wp-content\plugins\contact-form-7/admin/admin.php:241
378
- msgid "Contact form created."
379
- msgstr "فرم تماس ایجاد شد"
380
-
381
- #: e:\mohammad\xampp2\htdocs\wordpress\wp-content\plugins\contact-form-7/admin/admin.php:244
382
- msgid "Contact form saved."
383
- msgstr "فرم تماس ذخیره شد"
384
-
385
- #: e:\mohammad\xampp2\htdocs\wordpress\wp-content\plugins\contact-form-7/admin/admin.php:247
386
- msgid "Contact form deleted."
387
- msgstr "فرم تماس حذف گردید"
388
-
389
- #: e:\mohammad\xampp2\htdocs\wordpress\wp-content\plugins\contact-form-7/admin/admin.php:250
390
- msgid "Database table created."
391
- msgstr "جدول پایگاه داده ایجاد شد."
392
-
393
- #: e:\mohammad\xampp2\htdocs\wordpress\wp-content\plugins\contact-form-7/admin/admin.php:253
394
- msgid "Failed to create database table."
395
- msgstr "ایجاد جدول پایگاه داده ناموفق بود."
396
-
397
- #: e:\mohammad\xampp2\htdocs\wordpress\wp-content\plugins\contact-form-7/admin/admin.php:328
398
- msgid "Contact form"
399
- msgstr "فرم تماس"
400
-
401
- #: e:\mohammad\xampp2\htdocs\wordpress\wp-content\plugins\contact-form-7/admin/admin.php:347
402
- msgid "Settings"
403
- msgstr "تنظیمات"
404
-
405
- #: e:\mohammad\xampp2\htdocs\wordpress\wp-content\plugins\contact-form-7/admin/admin.php:366
406
- msgid "Contact Form 7 needs your support. Please donate today."
407
- msgstr "فرم تماس نسخه 7 به یاری شما نیازمند است. لطفاً کمک های مالی خود را برای ما ارسال فرمائید."
408
-
409
- #: e:\mohammad\xampp2\htdocs\wordpress\wp-content\plugins\contact-form-7/admin/admin.php:367
410
- msgid "Is this plugin useful for you? If you like it, please help the developer."
411
- msgstr "آیا این افزونه برای شما مفید بوده اس؟ در صورتیکه از آن رضایتمندید، لطفاً به توسعه دهنده آن کمک نمائید."
412
-
413
- #: e:\mohammad\xampp2\htdocs\wordpress\wp-content\plugins\contact-form-7/admin/admin.php:368
414
- msgid "Your contribution is needed for making this plugin better."
415
- msgstr "برای بهبود این افزونه به مشارکت صمیمانه شما نیازمندیم."
416
-
417
- #: e:\mohammad\xampp2\htdocs\wordpress\wp-content\plugins\contact-form-7/admin/admin.php:369
418
- msgid "Developing a plugin and providing user support is really hard work. Please help."
419
- msgstr "توسعه افزونه و ارائه خدمات پشتیبانی کار بسیار طاقت فرسایی است. لطفاً ما را یاری نمائید."
420
-
421
- #: e:\mohammad\xampp2\htdocs\wordpress\wp-content\plugins\contact-form-7/includes/classes.php:562
422
- msgid "Untitled"
423
- msgstr "بی نام و نشان"
424
-
425
- #: e:\mohammad\xampp2\htdocs\wordpress\wp-content\plugins\contact-form-7/includes/functions.php:6
426
- msgid "Your message was sent successfully. Thanks."
427
- msgstr "پیغام شما با موفقیت ارسال شد. متشکریم."
428
-
429
- #: e:\mohammad\xampp2\htdocs\wordpress\wp-content\plugins\contact-form-7/includes/functions.php:8
430
- #: e:\mohammad\xampp2\htdocs\wordpress\wp-content\plugins\contact-form-7/includes/functions.php:10
431
- msgid "Failed to send your message. Please try later or contact administrator by other way."
432
- msgstr "متأسفانه ارسال پیغام شما با مشکل مواجه شد. لطفاً بعداً مجدداً سعی نموده یا از روشی دیگر با مدیر سایت تماس حاصل فرمائید."
433
-
434
- #: e:\mohammad\xampp2\htdocs\wordpress\wp-content\plugins\contact-form-7/includes/functions.php:12
435
- msgid "Validation errors occurred. Please confirm the fields and submit it again."
436
- msgstr "تائید ناموفق. لطفاً گزینه مورد نظر را تائید نموده و مجدداً سعی نمائید."
437
-
438
- #: e:\mohammad\xampp2\htdocs\wordpress\wp-content\plugins\contact-form-7/includes/functions.php:14
439
- msgid "Please accept the terms to proceed."
440
- msgstr "لطفاً برای ادامه، شرایط ارسال نامه را پذیرفته و تائید نمائید."
441
-
442
- #: e:\mohammad\xampp2\htdocs\wordpress\wp-content\plugins\contact-form-7/includes/functions.php:16
443
- msgid "Email address seems invalid."
444
- msgstr "آدرس پست الکترونیک وارد شده نامعتبر به نظر می رسد."
445
-
446
- #: e:\mohammad\xampp2\htdocs\wordpress\wp-content\plugins\contact-form-7/includes/functions.php:18
447
- msgid "Please fill the required field."
448
- msgstr "لطفاً گزینه های اجباری را تکمیل نمائید."
449
-
450
- #: e:\mohammad\xampp2\htdocs\wordpress\wp-content\plugins\contact-form-7/includes/functions.php:20
451
- msgid "Your entered code is incorrect."
452
- msgstr "کد وارده اشتباه است."
453
-
454
- #: e:\mohammad\xampp2\htdocs\wordpress\wp-content\plugins\contact-form-7/includes/functions.php:22
455
- msgid "Your answer is not correct."
456
- msgstr "پاسخ وارده اشتباه است."
457
-
458
- #: e:\mohammad\xampp2\htdocs\wordpress\wp-content\plugins\contact-form-7/includes/functions.php:24
459
- msgid "Failed to upload file."
460
- msgstr "الصاق فایل با مشکل مواجه شد."
461
-
462
- #: e:\mohammad\xampp2\htdocs\wordpress\wp-content\plugins\contact-form-7/includes/functions.php:26
463
- msgid "This file type is not allowed."
464
- msgstr "الصاق این نوع فایل مجاز نمی باشد."
465
-
466
- #: e:\mohammad\xampp2\htdocs\wordpress\wp-content\plugins\contact-form-7/includes/functions.php:28
467
- msgid "This file is too large."
468
- msgstr "اندازه این فایل بیش از حد بزرگ است."
469
-
470
- #: e:\mohammad\xampp2\htdocs\wordpress\wp-content\plugins\contact-form-7/includes/functions.php:30
471
- msgid "Failed to upload file. Error occurred."
472
- msgstr "الصاق فایل ناموفق بود. خطایی رخ داد."
473
-
474
- #: e:\mohammad\xampp2\htdocs\wordpress\wp-content\plugins\contact-form-7/includes/functions.php:35
475
- msgid "Your Name"
476
- msgstr "نام و نام خانوادگی"
477
-
478
- #: e:\mohammad\xampp2\htdocs\wordpress\wp-content\plugins\contact-form-7/includes/functions.php:35
479
- #: e:\mohammad\xampp2\htdocs\wordpress\wp-content\plugins\contact-form-7/includes/functions.php:37
480
- msgid "(required)"
481
- msgstr "(گزینه الزامی)"
482
-
483
- #: e:\mohammad\xampp2\htdocs\wordpress\wp-content\plugins\contact-form-7/includes/functions.php:37
484
- msgid "Your Email"
485
- msgstr "پست الکترونیک"
486
-
487
- #: e:\mohammad\xampp2\htdocs\wordpress\wp-content\plugins\contact-form-7/includes/functions.php:39
488
- msgid "Subject"
489
- msgstr "موضوع"
490
-
491
- #: e:\mohammad\xampp2\htdocs\wordpress\wp-content\plugins\contact-form-7/includes/functions.php:41
492
- msgid "Your Message"
493
- msgstr "پیغام"
494
-
495
- #: e:\mohammad\xampp2\htdocs\wordpress\wp-content\plugins\contact-form-7/includes/functions.php:43
496
- msgid "Send"
497
- msgstr "ارسال"
498
-
499
- #: e:\mohammad\xampp2\htdocs\wordpress\wp-content\plugins\contact-form-7/includes/functions.php:51
500
- msgid "This mail is created by Contact Form 7 plugin for WordPress."
501
- msgstr "این نامه با استفاده از افزونه فرم تماس 7 ایجاد شده است."
502
-
503
- #: e:\mohammad\xampp2\htdocs\wordpress\wp-content\plugins\contact-form-7/modules/captcha.php:62
504
- msgid "To use CAPTCHA, you need <a href=\"http://wordpress.org/extend/plugins/really-simple-captcha/\">Really Simple CAPTCHA</a> plugin installed."
505
- msgstr "برای استفاده از تصاویر امنیتی (کپچا)، باید <a href=\"http://wordpress.org/extend/plugins/really-simple-captcha/\">Really Simple CAPTCHA</a> را نصب نمائید."
506
-
507
- #~ msgid "(You need WordPress 2.7 or greater to use this feature)"
508
- #~ msgstr "(جهت استفاده از این قابلیت نیاز به وردپرس نسخه 2.7 به بالا دارید)"
509
- #~ msgid "Delete this contact form"
510
- #~ msgstr "حذف این فرم تماس"
511
-
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
languages/wpcf7-fi.po DELETED
@@ -1,838 +0,0 @@
1
- msgid ""
2
- msgstr ""
3
- "Project-Id-Version: WP Contact Form 7\n"
4
- "Report-Msgid-Bugs-To: \n"
5
- "POT-Creation-Date: 2010-05-24 14:34+0200\n"
6
- "PO-Revision-Date: 2010-05-27 17:45+0900\n"
7
- "Last-Translator: Takayuki Miyoshi <takayukister@gmail.com>\n"
8
- "Language-Team: Mediajalostamo <info@mediajalostamo.fi>\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: Finnish\n"
13
- "X-Poedit-Country: FINLAND\n"
14
- "X-Poedit-SourceCharset: utf-8\n"
15
- "X-Poedit-KeywordsList: __;_e\n"
16
- "X-Poedit-Basepath: ../..\n"
17
- "X-Poedit-SearchPath-0: contact-form-7\n"
18
-
19
- #: contact-form-7/admin/admin.php:120
20
- #: contact-form-7/admin/edit.php:17
21
- #: contact-form-7/admin/edit.php:30
22
- msgid "Contact Form 7"
23
- msgstr "Contact Form 7"
24
-
25
- #: contact-form-7/admin/admin.php:120
26
- msgid "Contact"
27
- msgstr "Yhteydenotto"
28
-
29
- #: contact-form-7/admin/admin.php:123
30
- msgid "Edit Contact Forms"
31
- msgstr "Muokkaa yhteydenottolomakkeita"
32
-
33
- #: contact-form-7/admin/admin.php:123
34
- msgid "Edit"
35
- msgstr "Muokkaa"
36
-
37
- #: contact-form-7/admin/admin.php:162
38
- msgid "Generate Tag"
39
- msgstr "Luo tagi"
40
-
41
- #: contact-form-7/admin/admin.php:163
42
- msgid "Show"
43
- msgstr "Näytä"
44
-
45
- #: contact-form-7/admin/admin.php:164
46
- msgid "Hide"
47
- msgstr "Piilota"
48
-
49
- #: contact-form-7/admin/admin.php:261
50
- msgid "Contact form"
51
- msgstr "Yhteydenottolomake"
52
-
53
- #: contact-form-7/admin/admin.php:280
54
- msgid "Settings"
55
- msgstr "Asetukset"
56
-
57
- #: contact-form-7/admin/admin.php:291
58
- msgid "http://contactform7.com/"
59
- msgstr "http://contactform7.com/"
60
-
61
- #: contact-form-7/admin/admin.php:292
62
- msgid "Contactform7.com"
63
- msgstr "Contactform7.com"
64
-
65
- #: contact-form-7/admin/admin.php:293
66
- msgid "http://contactform7.com/docs/"
67
- msgstr "http://contactform7.com/docs/"
68
-
69
- #: contact-form-7/admin/admin.php:294
70
- msgid "Docs"
71
- msgstr "Docs"
72
-
73
- #: contact-form-7/admin/admin.php:295
74
- msgid "http://contactform7.com/faq/"
75
- msgstr "http://contactform7.com/faq/"
76
-
77
- #: contact-form-7/admin/admin.php:296
78
- msgid "FAQ"
79
- msgstr "Usein kysytyt kysymykset"
80
-
81
- #: contact-form-7/admin/admin.php:297
82
- msgid "http://contactform7.com/support/"
83
- msgstr "http://contactform7.com/support/"
84
-
85
- #: contact-form-7/admin/admin.php:298
86
- msgid "Support"
87
- msgstr "Tuki"
88
-
89
- #: contact-form-7/admin/admin.php:312
90
- msgid "Contact form created."
91
- msgstr "Yhteydenottolomake \"%s\" luotiin."
92
-
93
- #: contact-form-7/admin/admin.php:315
94
- msgid "Contact form saved."
95
- msgstr "Yhteydenottolomake \"%s\" tallennettiin."
96
-
97
- #: contact-form-7/admin/admin.php:318
98
- msgid "Contact form deleted."
99
- msgstr "Yhteydenottolomake \"%s\" poistettiin."
100
-
101
- #: contact-form-7/admin/admin.php:321
102
- msgid "Database table created."
103
- msgstr "Tietokantataulukko luotu."
104
-
105
- #: contact-form-7/admin/admin.php:324
106
- msgid "Failed to create database table."
107
- msgstr "Tietokantataulukon luonti epäonnistui."
108
-
109
- #: contact-form-7/admin/admin.php:357
110
- msgid "Contact Form 7 needs your support. Please donate today."
111
- msgstr "Contact Form 7 tarvitsee tukeasi. Lahjoita."
112
-
113
- #: contact-form-7/admin/admin.php:358
114
- msgid "Your contribution is needed for making this plugin better."
115
- msgstr "Apuasi tarvitaan tekemään tästä pluginista parempi."
116
-
117
- #: contact-form-7/admin/admin.php:364
118
- msgid "http://contactform7.com/donate/"
119
- msgstr "http://contactform7.com/donate/"
120
-
121
- #: contact-form-7/admin/admin.php:364
122
- msgid "Donate"
123
- msgstr "Lahjoita"
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>Contact Form 7 tietokantataulukkoa ei ole.</strong>Sinun täytyy <a href=\"%s\">luoda taulukko</a> jotta se toimii."
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>Contact Form 7 tietokantataulukkoa ei ole.</strong>"
133
-
134
- #: contact-form-7/admin/edit.php:45
135
- msgid "Add new"
136
- msgstr "Lisää uusi"
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 "Kopioi ja liitä tämä koodi artikkeliin,sivulle tai vimpaimeen"
141
-
142
- #: contact-form-7/admin/edit.php:75
143
- #: contact-form-7/admin/edit.php:309
144
- msgid "Save"
145
- msgstr "Tallenna"
146
-
147
- #: contact-form-7/admin/edit.php:82
148
- msgid "Copy"
149
- msgstr "Kopioi"
150
-
151
- #: contact-form-7/admin/edit.php:87
152
- msgid "Delete"
153
- msgstr "Poista"
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 ""
160
- "Olet poistamassa yhteydenottolomaketta. \n"
161
- "Paina 'Peruuta' peruuttaaksesi tai 'OK' poistaaksesi."
162
-
163
- #: contact-form-7/admin/edit.php:104
164
- msgid "Form"
165
- msgstr "Lomake"
166
-
167
- #: contact-form-7/admin/edit.php:128
168
- msgid "Mail"
169
- msgstr "Sähköposti"
170
-
171
- #: contact-form-7/admin/edit.php:135
172
- #: contact-form-7/admin/edit.php:202
173
- msgid "To:"
174
- msgstr "Vastaanottaja:"
175
-
176
- #: contact-form-7/admin/edit.php:140
177
- #: contact-form-7/admin/edit.php:207
178
- msgid "From:"
179
- msgstr "Lähettäjä:"
180
-
181
- #: contact-form-7/admin/edit.php:145
182
- #: contact-form-7/admin/edit.php:212
183
- msgid "Subject:"
184
- msgstr "Aihe:"
185
-
186
- #: contact-form-7/admin/edit.php:152
187
- #: contact-form-7/admin/edit.php:219
188
- msgid "Additional headers:"
189
- msgstr "Muita otsikoita:"
190
-
191
- #: contact-form-7/admin/edit.php:157
192
- #: contact-form-7/admin/edit.php:224
193
- msgid "File attachments:"
194
- msgstr "Liitetiedostot"
195
-
196
- #: contact-form-7/admin/edit.php:165
197
- #: contact-form-7/admin/edit.php:232
198
- msgid "Use HTML content type"
199
- msgstr "Käytä HTML:ää"
200
-
201
- #: contact-form-7/admin/edit.php:172
202
- #: contact-form-7/admin/edit.php:239
203
- #: contact-form-7/includes/functions.php:78
204
- msgid "Message body:"
205
- msgstr "Viesti:"
206
-
207
- #: contact-form-7/admin/edit.php:188
208
- msgid "Mail (2)"
209
- msgstr "Sähköposti (2)"
210
-
211
- #: contact-form-7/admin/edit.php:194
212
- msgid "Use mail (2)"
213
- msgstr "Käytä Sähköpostia (2)"
214
-
215
- #: contact-form-7/admin/edit.php:255
216
- msgid "Messages"
217
- msgstr "Viestit"
218
-
219
- #: contact-form-7/admin/edit.php:285
220
- msgid "Additional Settings"
221
- msgstr "Lisäasetukset"
222
-
223
- #: contact-form-7/admin/edit.php:333
224
- #, php-format
225
- msgid "Use the default language (%s)"
226
- msgstr "Käytä oletuskieltä (%s)"
227
-
228
- #: contact-form-7/admin/edit.php:334
229
- #: contact-form-7/admin/edit.php:347
230
- msgid "Add New"
231
- msgstr "Lisää uusi "
232
-
233
- #: contact-form-7/admin/edit.php:337
234
- msgid "Or"
235
- msgstr "Tai"
236
-
237
- #: contact-form-7/admin/edit.php:342
238
- msgid "(select language)"
239
- msgstr "(valitse kieli)"
240
-
241
- #: contact-form-7/includes/classes.php:564
242
- msgid "Untitled"
243
- msgstr "Ei otsikkoa"
244
-
245
- #: contact-form-7/includes/functions.php:6
246
- msgid "Sender's message was sent successfully"
247
- msgstr "Viesti lähetettiin onnistuneesti."
248
-
249
- #: contact-form-7/includes/functions.php:7
250
- msgid "Your message was sent successfully. Thanks."
251
- msgstr "Viesti lähetettiin onnistuneesti. Kiitos yhteydenotostanne!"
252
-
253
- #: contact-form-7/includes/functions.php:11
254
- msgid "Sender's message was failed to send"
255
- msgstr "Viestin lähettäminen epäonnistui"
256
-
257
- #: contact-form-7/includes/functions.php:12
258
- #: contact-form-7/includes/functions.php:17
259
- msgid "Failed to send your message. Please try later or contact administrator by other way."
260
- msgstr "Viestin lähetys epäonnistui. Yritä myöhemmin uudestaan tai ota yhteyttä järjestelmänvalvojaan."
261
-
262
- #: contact-form-7/includes/functions.php:16
263
- msgid "Akismet judged the sending activity as spamming"
264
- msgstr "Akismet piti viestiä spämminä."
265
-
266
- #: contact-form-7/includes/functions.php:21
267
- msgid "Validation errors occurred"
268
- msgstr "Viestissä virheitä"
269
-
270
- #: contact-form-7/includes/functions.php:22
271
- msgid "Validation errors occurred. Please confirm the fields and submit it again."
272
- msgstr "Lomakkeesta löytyi virheitä. Tarkasta lomake ja yritä uudelleen."
273
-
274
- #: contact-form-7/includes/functions.php:26
275
- msgid "There is a field of term that sender is needed to accept"
276
- msgstr "Lähettäjän täytyy hyväksyä käyttöehdot"
277
-
278
- #: contact-form-7/includes/functions.php:27
279
- msgid "Please accept the terms to proceed."
280
- msgstr "Hyväksy käyttöehdot jatkaaksesi."
281
-
282
- #: contact-form-7/includes/functions.php:31
283
- msgid "Email address that sender entered is invalid"
284
- msgstr "Lähettäjän sähköpostiosoite vaikuttaa virheelliseltä."
285
-
286
- #: contact-form-7/includes/functions.php:32
287
- msgid "Email address seems invalid."
288
- msgstr "Sähköpostiosoite vaikuttaa virheelliseltä."
289
-
290
- #: contact-form-7/includes/functions.php:36
291
- msgid "There is a field that sender is needed to fill in"
292
- msgstr "Lähettäjän täytyy täyttää lomakkeen kenttä"
293
-
294
- #: contact-form-7/includes/functions.php:37
295
- msgid "Please fill the required field."
296
- msgstr "Täytä pakollinen kenttä."
297
-
298
- #: contact-form-7/includes/functions.php:46
299
- msgid "Your Name"
300
- msgstr "Nimi"
301
-
302
- #: contact-form-7/includes/functions.php:46
303
- #: contact-form-7/includes/functions.php:48
304
- msgid "(required)"
305
- msgstr "(pakollinen)"
306
-
307
- #: contact-form-7/includes/functions.php:48
308
- msgid "Your Email"
309
- msgstr "Sähköposti"
310
-
311
- #: contact-form-7/includes/functions.php:50
312
- msgid "Subject"
313
- msgstr "Aihe"
314
-
315
- #: contact-form-7/includes/functions.php:52
316
- msgid "Your Message"
317
- msgstr "Viesti"
318
-
319
- #: contact-form-7/includes/functions.php:54
320
- msgid "Send"
321
- msgstr "Lähetä"
322
-
323
- #: contact-form-7/includes/functions.php:62
324
- #, php-format
325
- msgid "From: %s"
326
- msgstr "Lähettäjä: %s"
327
-
328
- #: contact-form-7/includes/functions.php:63
329
- #, php-format
330
- msgid "Subject: %s"
331
- msgstr "Aihe: %s"
332
-
333
- #: contact-form-7/includes/functions.php:64
334
- msgid "Message Body:"
335
- msgstr "Viesti: "
336
-
337
- #: contact-form-7/includes/functions.php:65
338
- #: contact-form-7/includes/functions.php:79
339
- #, php-format
340
- msgid "This mail is sent via contact form on %1$s %2$s"
341
- msgstr "Tämä viesti on lähetetty palautelomakkeella %1$s %2$s"
342
-
343
- #: contact-form-7/includes/functions.php:168
344
- msgid "Afrikaans"
345
- msgstr "Afrikaans"
346
-
347
- #: contact-form-7/includes/functions.php:169
348
- msgid "Albanian"
349
- msgstr "Albanian"
350
-
351
- #: contact-form-7/includes/functions.php:170
352
- msgid "Arabic"
353
- msgstr "Arabic"
354
-
355
- #: contact-form-7/includes/functions.php:171
356
- msgid "Bangla"
357
- msgstr "Bangla"
358
-
359
- #: contact-form-7/includes/functions.php:172
360
- msgid "Bosnian"
361
- msgstr "Bosnian"
362
-
363
- #: contact-form-7/includes/functions.php:173
364
- msgid "Brazilian Portuguese"
365
- msgstr "Brazilian Portuguese"
366
-
367
- #: contact-form-7/includes/functions.php:174
368
- msgid "Bulgarian"
369
- msgstr "Bulgarian"
370
-
371
- #: contact-form-7/includes/functions.php:175
372
- msgid "Catalan"
373
- msgstr "Catalan"
374
-
375
- #: contact-form-7/includes/functions.php:176
376
- msgid "Chinese (Simplified)"
377
- msgstr "Chinese (Simplified)"
378
-
379
- #: contact-form-7/includes/functions.php:177
380
- msgid "Chinese (Traditional)"
381
- msgstr "Chinese (Traditional)"
382
-
383
- #: contact-form-7/includes/functions.php:178
384
- msgid "Croatian"
385
- msgstr "Croatian"
386
-
387
- #: contact-form-7/includes/functions.php:179
388
- msgid "Czech"
389
- msgstr "Czech"
390
-
391
- #: contact-form-7/includes/functions.php:180
392
- msgid "Danish"
393
- msgstr "Danish"
394
-
395
- #: contact-form-7/includes/functions.php:181
396
- msgid "Dutch"
397
- msgstr "Dutch"
398
-
399
- #: contact-form-7/includes/functions.php:182
400
- msgid "English"
401
- msgstr "English"
402
-
403
- #: contact-form-7/includes/functions.php:183
404
- msgid "Estonian"
405
- msgstr "Estonian"
406
-
407
- #: contact-form-7/includes/functions.php:184
408
- msgid "Finnish"
409
- msgstr "Suomi"
410
-
411
- #: contact-form-7/includes/functions.php:185
412
- msgid "French"
413
- msgstr "French"
414
-
415
- #: contact-form-7/includes/functions.php:186
416
- msgid "Galician"
417
- msgstr "Galician"
418
-
419
- #: contact-form-7/includes/functions.php:187
420
- msgid "Georgian"
421
- msgstr "Georgian"
422
-
423
- #: contact-form-7/includes/functions.php:188
424
- msgid "German"
425
- msgstr "German"
426
-
427
- #: contact-form-7/includes/functions.php:189
428
- msgid "Greek"
429
- msgstr "Greek"
430
-
431
- #: contact-form-7/includes/functions.php:190
432
- msgid "Hebrew"
433
- msgstr "Hebrew"
434
-
435
- #: contact-form-7/includes/functions.php:191
436
- msgid "Hindi"
437
- msgstr "Hindi"
438
-
439
- #: contact-form-7/includes/functions.php:192
440
- msgid "Hungarian"
441
- msgstr "Hungarian"
442
-
443
- #: contact-form-7/includes/functions.php:193
444
- msgid "Indonesian"
445
- msgstr "Indonesian"
446
-
447
- #: contact-form-7/includes/functions.php:194
448
- msgid "Italian"
449
- msgstr "Italian"
450
-
451
- #: contact-form-7/includes/functions.php:195
452
- msgid "Japanese"
453
- msgstr "Japanese"
454
-
455
- #: contact-form-7/includes/functions.php:196
456
- msgid "Korean"
457
- msgstr "Korean"
458
-
459
- #: contact-form-7/includes/functions.php:197
460
- msgid "Latvian"
461
- msgstr "Latvian"
462
-
463
- #: contact-form-7/includes/functions.php:198
464
- msgid "Lithuanian"
465
- msgstr "Lithuanian"
466
-
467
- #: contact-form-7/includes/functions.php:199
468
- msgid "Malayalam"
469
- msgstr "Malayalam"
470
-
471
- #: contact-form-7/includes/functions.php:200
472
- msgid "Norwegian"
473
- msgstr "Norwegian"
474
-
475
- #: contact-form-7/includes/functions.php:201
476
- msgid "Persian"
477
- msgstr "Persian"
478
-
479
- #: contact-form-7/includes/functions.php:202
480
- msgid "Polish"
481
- msgstr "Polish"
482
-
483
- #: contact-form-7/includes/functions.php:203
484
- msgid "Portuguese"
485
- msgstr "Portuguese"
486
-
487
- #: contact-form-7/includes/functions.php:204
488
- msgid "Russian"
489
- msgstr "Russian"
490
-
491
- #: contact-form-7/includes/functions.php:205
492
- msgid "Romanian"
493
- msgstr "Romanian"
494
-
495
- #: contact-form-7/includes/functions.php:206
496
- msgid "Serbian"
497
- msgstr "Serbian"
498
-
499
- #: contact-form-7/includes/functions.php:207
500
- msgid "Slovak"
501
- msgstr "Slovak"
502
-
503
- #: contact-form-7/includes/functions.php:208
504
- msgid "Slovene"
505
- msgstr "Slovene"
506
-
507
- #: contact-form-7/includes/functions.php:209
508
- msgid "Spanish"
509
- msgstr "Spanish"
510
-
511
- #: contact-form-7/includes/functions.php:210
512
- msgid "Swedish"
513
- msgstr "Swedish"
514
-
515
- #: contact-form-7/includes/functions.php:211
516
- msgid "Thai"
517
- msgstr "Thai"
518
-
519
- #: contact-form-7/includes/functions.php:212
520
- msgid "Turkish"
521
- msgstr "Turkish"
522
-
523
- #: contact-form-7/includes/functions.php:213
524
- msgid "Ukrainian"
525
- msgstr "Ukrainian"
526
-
527
- #: contact-form-7/includes/functions.php:214
528
- msgid "Vietnamese"
529
- msgstr "Vietnamese"
530
-
531
- #: contact-form-7/modules/acceptance.php:104
532
- msgid "Acceptance"
533
- msgstr "Hyväksyntä"
534
-
535
- #: contact-form-7/modules/acceptance.php:113
536
- #: contact-form-7/modules/captcha.php:214
537
- #: contact-form-7/modules/checkbox.php:209
538
- #: contact-form-7/modules/file.php:241
539
- msgid "Name"
540
- msgstr "Nimi"
541
-
542
- #: contact-form-7/modules/acceptance.php:118
543
- #: contact-form-7/modules/acceptance.php:121
544
- #: contact-form-7/modules/captcha.php:221
545
- #: contact-form-7/modules/captcha.php:224
546
- #: contact-form-7/modules/captcha.php:229
547
- #: contact-form-7/modules/captcha.php:232
548
- #: contact-form-7/modules/captcha.php:236
549
- #: contact-form-7/modules/captcha.php:247
550
- #: contact-form-7/modules/captcha.php:250
551
- #: contact-form-7/modules/captcha.php:255
552
- #: contact-form-7/modules/captcha.php:258
553
- #: contact-form-7/modules/checkbox.php:214
554
- #: contact-form-7/modules/checkbox.php:217
555
- #: contact-form-7/modules/file.php:246
556
- #: contact-form-7/modules/file.php:249
557
- #: contact-form-7/modules/file.php:254
558
- #: contact-form-7/modules/file.php:257
559
- msgid "optional"
560
- msgstr "Valinnainen"
561
-
562
- #: contact-form-7/modules/acceptance.php:127
563
- msgid "Make this checkbox checked by default?"
564
- msgstr "Merkitse tämä valintaruutu aktiiviseksi oletuksena?"
565
-
566
- #: contact-form-7/modules/acceptance.php:128
567
- msgid "Make this checkbox work inversely?"
568
- msgstr "Laita tämä valintaruutu toimimaan käänteisesti"
569
-
570
- #: contact-form-7/modules/acceptance.php:129
571
- msgid "* That means visitor who accepts the term unchecks it."
572
- msgstr "* Tämä tarkoittaa sitä että käyttäjän täytyy ottaa valinta pois hyväksyäkseen ehdon"
573
-
574
- #: contact-form-7/modules/acceptance.php:134
575
- #: contact-form-7/modules/captcha.php:263
576
- #: contact-form-7/modules/checkbox.php:237
577
- #: contact-form-7/modules/file.php:262
578
- msgid "Copy this code and paste it into the form left."
579
- msgstr "Kopioi ja liitä tämä koodi lomakkeeseen"
580
-
581
- #: contact-form-7/modules/captcha.php:70
582
- msgid "To use CAPTCHA, you need <a href=\"http://wordpress.org/extend/plugins/really-simple-captcha/\">Really Simple CAPTCHA</a> plugin installed."
583
- msgstr "Käyttääksesi CAPTCHAa, sinun täytyy asentaa <a href=\"http://wordpress.org/extend/plugins/really-simple-captcha/\">Really Simple CAPTCHA</a>."
584
-
585
- #: contact-form-7/modules/captcha.php:189
586
- msgid "The code that sender entered does not match the CAPTCHA"
587
- msgstr "Koodi jonka lähettäjä kirjoitta ei matsaa CAPTCHAa"
588
-
589
- #: contact-form-7/modules/captcha.php:190
590
- msgid "Your entered code is incorrect."
591
- msgstr "Syöttämäsi koodi on virheellinen."
592
-
593
- #: contact-form-7/modules/captcha.php:200
594
- msgid "CAPTCHA"
595
- msgstr "CAPTCHA"
596
-
597
- #: contact-form-7/modules/captcha.php:211
598
- msgid "Note: To use CAPTCHA, you need Really Simple CAPTCHA plugin installed."
599
- msgstr "Huom: Käyttääksesi CAPTCHAa, asenna Really Simple CAPTCHA"
600
-
601
- #: contact-form-7/modules/captcha.php:218
602
- msgid "Image settings"
603
- msgstr "Kuvan asetukset"
604
-
605
- #: contact-form-7/modules/captcha.php:229
606
- msgid "Foreground color"
607
- msgstr "Etuosan väri"
608
-
609
- #: contact-form-7/modules/captcha.php:232
610
- msgid "Background color"
611
- msgstr "Taustan väri"
612
-
613
- #: contact-form-7/modules/captcha.php:236
614
- msgid "Image size"
615
- msgstr "Kuvan koko"
616
-
617
- #: contact-form-7/modules/captcha.php:237
618
- msgid "Small"
619
- msgstr "Pieni"
620
-
621
- #: contact-form-7/modules/captcha.php:238
622
- msgid "Medium"
623
- msgstr "Keski"
624
-
625
- #: contact-form-7/modules/captcha.php:239
626
- msgid "Large"
627
- msgstr "Suuri"
628
-
629
- #: contact-form-7/modules/captcha.php:244
630
- msgid "Input field settings"
631
- msgstr "Syötekentän asetukset"
632
-
633
- #: contact-form-7/modules/captcha.php:264
634
- msgid "For image"
635
- msgstr "Kuvalle"
636
-
637
- #: contact-form-7/modules/captcha.php:266
638
- msgid "For input field"
639
- msgstr "Syötekentälle"
640
-
641
- #: contact-form-7/modules/captcha.php:296
642
- #, php-format
643
- msgid "This contact form contains CAPTCHA fields, but the temporary folder for the files (%s) does not exist or is not writable. You can create the folder or change its permission manually."
644
- msgstr "Tämä palautelomake sisältää CAPTCHA-kentän, mutta väliaikaiskansiota tiedostoille (%s) ei ole tai sinne ei voi kirjoittaa. Voit luoda kansion tai vaihtaa oikeudet manuaalisesti."
645
-
646
- #: contact-form-7/modules/captcha.php:302
647
- msgid "This contact form contains CAPTCHA fields, but the necessary libraries (GD and FreeType) are not available on your server."
648
- msgstr "Tämä palautelomake sisältää CAPTCHA-kentän, mutta tarvittavia kirjastoja (GD ja FreeType) ei ole serverillä."
649
-
650
- #: contact-form-7/modules/checkbox.php:182
651
- msgid "Checkboxes"
652
- msgstr "Valintaruudut"
653
-
654
- #: contact-form-7/modules/checkbox.php:185
655
- msgid "Radio buttons"
656
- msgstr "Valintanapit"
657
-
658
- #: contact-form-7/modules/checkbox.php:206
659
- #: contact-form-7/modules/file.php:240
660
- msgid "Required field?"
661
- msgstr "Pakollinen tieto?"
662
-
663
- #: contact-form-7/modules/checkbox.php:222
664
- msgid "Choices"
665
- msgstr "Valinnat"
666
-
667
- #: contact-form-7/modules/checkbox.php:224
668
- msgid "* One choice per line."
669
- msgstr "* Yksi valinta per rivi"
670
-
671
- #: contact-form-7/modules/checkbox.php:228
672
- msgid "Put a label first, a checkbox last?"
673
- msgstr "Nimi ensin, valintaruutu viimeseksi?"
674
-
675
- #: contact-form-7/modules/checkbox.php:229
676
- #, fuzzy
677
- msgid "Wrap each item with <label> tag?"
678
- msgstr "Wrap each item with <label> tag?"
679
-
680
- #: contact-form-7/modules/checkbox.php:231
681
- msgid "Make checkboxes exclusive?"
682
- msgstr "Tee valintaruuduista poissulkeva?"
683
-
684
- #: contact-form-7/modules/checkbox.php:239
685
- msgid "And, put this code into the Mail fields below."
686
- msgstr "Kopioi ja liitä tämä koodi viestikenttiin alla."
687
-
688
- #: contact-form-7/modules/file.php:204
689
- msgid "Uploading a file fails for any reason"
690
- msgstr "Tiedoston lataaminen epäonnistuu jostain syystä"
691
-
692
- #: contact-form-7/modules/file.php:205
693
- msgid "Failed to upload file."
694
- msgstr "Tiedoston lataaminen epäonnistui."
695
-
696
- #: contact-form-7/modules/file.php:209
697
- msgid "Uploaded file is not allowed file type"
698
- msgstr "Ladattu tiedosto ei ole sallittua tiedostotyyppiä"
699
-
700
- #: contact-form-7/modules/file.php:210
701
- msgid "This file type is not allowed."
702
- msgstr "Tiedostotyyppi ei ole sallittu."
703
-
704
- #: contact-form-7/modules/file.php:214
705
- msgid "Uploaded file is too large"
706
- msgstr "Ladattu tiedosto on liian suuri"
707
-
708
- #: contact-form-7/modules/file.php:215
709
- msgid "This file is too large."
710
- msgstr "Tiedosto on liian suuri"
711
-
712
- #: contact-form-7/modules/file.php:219
713
- msgid "Uploading a file fails for PHP error"
714
- msgstr "Tiedoston lataaminen epäonnistui PHP-virheen vuoksi"
715
-
716
- #: contact-form-7/modules/file.php:220
717
- msgid "Failed to upload file. Error occurred."
718
- msgstr "Tiedoston lataaminen epäonnistui. Virhe."
719
-
720
- #: contact-form-7/modules/file.php:231
721
- msgid "File upload"
722
- msgstr "Tiedoston lataaminen"
723
-
724
- #: contact-form-7/modules/file.php:254
725
- msgid "File size limit"
726
- msgstr "Tiedoston maksimikoko"
727
-
728
- #: contact-form-7/modules/file.php:254
729
- msgid "bytes"
730
- msgstr "bittiä"
731
-
732
- #: contact-form-7/modules/file.php:257
733
- msgid "Acceptable file types"
734
- msgstr "Hyväksytyt tiedostotyypit"
735
-
736
- #: contact-form-7/modules/file.php:264
737
- msgid "And, put this code into the File Attachments field below."
738
- msgstr "Ja laita tämä koodi Liitetiedosto-kenttään."
739
-
740
- #: contact-form-7/modules/file.php:289
741
- #, php-format
742
- msgid "This contact form contains file uploading fields, but the temporary folder for the files (%s) does not exist or is not writable. You can create the folder or change its permission manually."
743
- msgstr "Tämä palautelomake sisältää ladattuja tiedostoja, mutta väliaikaista kansiota tiedostoille (%s) ei ole tai ei voi kirjoittaa. Voit luoda kansion tai vaihtaa oikeudet manuaalisesti."
744
-
745
- #: contact-form-7/modules/icl.php:74
746
- msgid "This contact form contains [icl] tags, but they are obsolete and no longer functioning on this version of Contact Form 7. <a href=\"http://contactform7.com/2009/12/25/contact-form-in-your-language/#Creating_contact_form_in_different_languages\" target=\"_blank\">There is a simpler way for creating contact forms of other languages</a> and you are recommended to use it."
747
- msgstr "Tämä palautelomake sisältää [icl] tageja, mutta ne ovat vanhentuneita eivätkä toimi Contact Form 7:ssä. <a href=\"http://contactform7.com/2009/12/25/contact-form-in-your-language/#Creating_contact_form_in_different_languages\" target=\"_blank\">On helpompi tapa luoda lomakkeita eri kielille</a> ja suosittelemme käyttämään sitä."
748
-
749
- #: contact-form-7/modules/quiz.php:170
750
- msgid "Sender doesn't enter the correct answer to the quiz"
751
- msgstr "Lähettäjä ei antanut oikeaa vastausta kysymykseen"
752
-
753
- #: contact-form-7/modules/quiz.php:171
754
- msgid "Your answer is not correct."
755
- msgstr "Vastauksesi on väärä"
756
-
757
- #: contact-form-7/modules/quiz.php:181
758
- msgid "Quiz"
759
- msgstr "Kysymys"
760
-
761
- #: contact-form-7/modules/quiz.php:211
762
- msgid "Quizzes"
763
- msgstr "Kysymykset"
764
-
765
- #: contact-form-7/modules/quiz.php:213
766
- msgid "* quiz|answer (e.g. 1+1=?|2)"
767
- msgstr "*kysymys|vastaus (esim 1+1=?|2)"
768
-
769
- #: contact-form-7/modules/select.php:154
770
- msgid "Drop-down menu"
771
- msgstr "Alasvetovalikko"
772
-
773
- #: contact-form-7/modules/select.php:183
774
- msgid "Allow multiple selections?"
775
- msgstr "Salli monivalinta?"
776
-
777
- #: contact-form-7/modules/select.php:184
778
- msgid "Insert a blank item as the first option?"
779
- msgstr "Laita tyhjä valinta ensimmäiseksi vaihtoehdoksi?"
780
-
781
- #: contact-form-7/modules/submit.php:62
782
- msgid "Submit button"
783
- msgstr "Lähetä -nappi"
784
-
785
- #: contact-form-7/modules/submit.php:80
786
- msgid "Label"
787
- msgstr "Nimi"
788
-
789
- #: contact-form-7/modules/text.php:137
790
- msgid "Text field"
791
- msgstr "Tekstialue"
792
-
793
- #: contact-form-7/modules/text.php:140
794
- msgid "Email field"
795
- msgstr "Sähköpostikenttä"
796
-
797
- #: contact-form-7/modules/text.php:182
798
- msgid "Akismet"
799
- msgstr "Akismet"
800
-
801
- #: contact-form-7/modules/text.php:184
802
- msgid "This field requires author's name"
803
- msgstr "Tämä kenttä vaatii kirjoittajan nimen"
804
-
805
- #: contact-form-7/modules/text.php:185
806
- msgid "This field requires author's URL"
807
- msgstr "Tämä kenttä vaatii kirjoittajan URL:n"
808
-
809
- #: contact-form-7/modules/text.php:187
810
- msgid "This field requires author's email address"
811
- msgstr "Tämä kenttä vaatii kirjoittajan sähköpostiosoitteen"
812
-
813
- #: contact-form-7/modules/text.php:191
814
- #: contact-form-7/modules/textarea.php:157
815
- msgid "Default value"
816
- msgstr "Vakioarvo"
817
-
818
- #: contact-form-7/modules/textarea.php:126
819
- msgid "Text area"
820
- msgstr "Tekstikenttä"
821
-
822
- #~ msgid "Delete this contact form"
823
- #~ msgstr "Poista tämä yhteydenottolomake"
824
-
825
- #~ msgid "Form content"
826
- #~ msgstr "Lomakkeen sisältö"
827
-
828
- #~ msgid "Mail template"
829
- #~ msgstr "Sähköpostimalli"
830
-
831
- #~ msgid "Sender field:"
832
- #~ msgstr "Lähettäjä:"
833
-
834
- #~ msgid "Recipient address:"
835
- #~ msgstr "Vastaanottajan osoite:"
836
-
837
- #~ msgid "Insert"
838
- #~ msgstr "Syötä"
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
languages/wpcf7-fr_FR.po DELETED
@@ -1,977 +0,0 @@
1
- msgid ""
2
- msgstr ""
3
- "Project-Id-Version: WP Contact Form 7\n"
4
- "Report-Msgid-Bugs-To: \n"
5
- "POT-Creation-Date: 2010-03-24 15:49+0100\n"
6
- "PO-Revision-Date: 2010-03-24 16:43+0100\n"
7
- "Last-Translator: Oncle Tom <thomas+i18n@oncle-tom.net>\n"
8
- "Language-Team: jillij <admin@jillij.com>\n"
9
- "MIME-Version: 1.0\n"
10
- "Content-Type: text/plain; charset=UTF-8\n"
11
- "Content-Transfer-Encoding: 8bit\n"
12
- "Plural-Forms: nplurals=2; plural=n != 1;\n"
13
- "X-Poedit-Language: French\n"
14
- "X-Poedit-Country: FRANCE\n"
15
- "X-Poedit-SourceCharset: utf-8\n"
16
- "X-Poedit-KeywordsList: __;_e;__ngettext:1,2;_n:1,2;__ngettext_noop:1,2;_n_noop:1,2;_c,_nc:4c,1,2;_x:1,2c;_nx:4c,1,2;_nx_noop:4c,1,2\n"
17
- "X-Poedit-Basepath: ../..\n"
18
- "X-Textdomain-Support: yes\n"
19
- "X-Poedit-SearchPath-0: contact-form-7\n"
20
-
21
- #: contact-form-7/admin/edit.php:9
22
- #, php-format
23
- msgid "<strong>The database table for Contact Form 7 does not exist.</strong> You must <a href=\"%s\">create the table</a> for it to work."
24
- msgstr "<strong>La table de base de données pour Contact Forms 7 n'existe pas.</strong> Vous devez <a href=\"%s\">créer la table</a> afin que l'extension fonctionne."
25
-
26
- #: contact-form-7/admin/edit.php:12
27
- msgid "<strong>The database table for Contact Form 7 does not exist.</strong>"
28
- msgstr "<strong>La table de base de données pour Contact Forms 7 n'existe pas.</strong>"
29
-
30
- # @ wpcf7
31
- #: contact-form-7/admin/edit.php:17
32
- #: contact-form-7/admin/edit.php:30
33
- #: contact-form-7/admin/admin.php:120
34
- msgid "Contact Form 7"
35
- msgstr "Contact Form 7"
36
-
37
- # @ wpcf7
38
- #: contact-form-7/admin/edit.php:45
39
- msgid "Add new"
40
- msgstr "Ajouter un nouveau"
41
-
42
- # @ wpcf7
43
- #: contact-form-7/admin/edit.php:67
44
- msgid "Copy this code and paste it into your post, page or text widget content."
45
- msgstr "Copiez ce code et collez-le dans vos article, page ou widget texte."
46
-
47
- # @ wpcf7
48
- #: contact-form-7/admin/edit.php:75
49
- #: contact-form-7/admin/edit.php:309
50
- msgid "Save"
51
- msgstr "Sauvegarder"
52
-
53
- # @ wpcf7
54
- #: contact-form-7/admin/edit.php:82
55
- msgid "Copy"
56
- msgstr "Copier"
57
-
58
- # @ wpcf7
59
- #: contact-form-7/admin/edit.php:87
60
- msgid "Delete"
61
- msgstr "Supprimer"
62
-
63
- # @ wpcf7
64
- #: contact-form-7/admin/edit.php:89
65
- msgid ""
66
- "You are about to delete this contact form.\n"
67
- " 'Cancel' to stop, 'OK' to delete."
68
- msgstr ""
69
- "Vous êtes sur le point de supprimer ce formulaire de contact.\n"
70
- " 'Annuler' pour arrêter, 'OK' pour supprimer."
71
-
72
- # @ wpcf7
73
- #: contact-form-7/admin/edit.php:104
74
- msgid "Form"
75
- msgstr "Formulaire"
76
-
77
- # @ wpcf7
78
- #: contact-form-7/admin/edit.php:128
79
- msgid "Mail"
80
- msgstr "Email"
81
-
82
- # @ wpcf7
83
- #: contact-form-7/admin/edit.php:135
84
- #: contact-form-7/admin/edit.php:202
85
- msgid "To:"
86
- msgstr "À :"
87
-
88
- # @ wpcf7
89
- #: contact-form-7/admin/edit.php:140
90
- #: contact-form-7/admin/edit.php:207
91
- msgid "From:"
92
- msgstr "De :"
93
-
94
- # @ wpcf7
95
- #: contact-form-7/admin/edit.php:145
96
- #: contact-form-7/admin/edit.php:212
97
- msgid "Subject:"
98
- msgstr "Sujet :"
99
-
100
- # @ wpcf7
101
- #: contact-form-7/admin/edit.php:152
102
- #: contact-form-7/admin/edit.php:219
103
- msgid "Additional headers:"
104
- msgstr "Entêtes supplémentaires :"
105
-
106
- # @ wpcf7
107
- #: contact-form-7/admin/edit.php:157
108
- #: contact-form-7/admin/edit.php:224
109
- msgid "File attachments:"
110
- msgstr "Pièces jointes :"
111
-
112
- # @ wpcf7
113
- #: contact-form-7/admin/edit.php:165
114
- #: contact-form-7/admin/edit.php:232
115
- msgid "Use HTML content type"
116
- msgstr "Utiliser un type de contenu HTML"
117
-
118
- # @ wpcf7
119
- #: contact-form-7/admin/edit.php:172
120
- #: contact-form-7/admin/edit.php:239
121
- msgid "Message body:"
122
- msgstr "Corps du message :"
123
-
124
- # @ wpcf7
125
- #: contact-form-7/admin/edit.php:188
126
- msgid "Mail (2)"
127
- msgstr "Email (2)"
128
-
129
- # @ wpcf7
130
- #: contact-form-7/admin/edit.php:194
131
- msgid "Use mail (2)"
132
- msgstr "Utiliser l'email (2)"
133
-
134
- # @ wpcf7
135
- #: contact-form-7/admin/edit.php:255
136
- msgid "Messages"
137
- msgstr "Messages"
138
-
139
- # @ wpcf7
140
- #: contact-form-7/admin/edit.php:285
141
- msgid "Additional Settings"
142
- msgstr "Réglages complémentaires"
143
-
144
- #: contact-form-7/admin/edit.php:333
145
- #, php-format
146
- msgid "Use the default language (%s)"
147
- msgstr "Utiliser la langue par défaut (%s)"
148
-
149
- # @ wpcf7
150
- #: contact-form-7/admin/edit.php:334
151
- #: contact-form-7/admin/edit.php:347
152
- #, fuzzy
153
- msgid "Add New"
154
- msgstr "Ajouter un nouveau"
155
-
156
- #: contact-form-7/admin/edit.php:337
157
- msgid "Or"
158
- msgstr "ou"
159
-
160
- #: contact-form-7/admin/edit.php:342
161
- msgid "(select language)"
162
- msgstr "(sélectionner une langue)"
163
-
164
- # @ wpcf7
165
- #: contact-form-7/admin/admin.php:120
166
- msgid "Contact"
167
- msgstr "Contact"
168
-
169
- # @ wpcf7
170
- #: contact-form-7/admin/admin.php:123
171
- msgid "Edit Contact Forms"
172
- msgstr "Modifier les formulaires de contact"
173
-
174
- # @ wpcf7
175
- #: contact-form-7/admin/admin.php:123
176
- msgid "Edit"
177
- msgstr "Modifier"
178
-
179
- # @ wpcf7
180
- #: contact-form-7/admin/admin.php:162
181
- msgid "Generate Tag"
182
- msgstr "Générer un marqueur"
183
-
184
- # @ wpcf7
185
- #: contact-form-7/admin/admin.php:163
186
- msgid "Show"
187
- msgstr "Montrer"
188
-
189
- # @ wpcf7
190
- #: contact-form-7/admin/admin.php:164
191
- msgid "Hide"
192
- msgstr "Masquer"
193
-
194
- # @ wpcf7
195
- #: contact-form-7/admin/admin.php:261
196
- msgid "Contact form"
197
- msgstr "Formulaire de contact"
198
-
199
- #: contact-form-7/admin/admin.php:280
200
- msgid "Settings"
201
- msgstr "Réglages"
202
-
203
- #: contact-form-7/admin/admin.php:291
204
- msgid "http://contactform7.com/"
205
- msgstr ""
206
-
207
- # @ wpcf7
208
- #: contact-form-7/admin/admin.php:292
209
- msgid "Contactform7.com"
210
- msgstr ""
211
-
212
- #: contact-form-7/admin/admin.php:293
213
- msgid "http://contactform7.com/docs/"
214
- msgstr ""
215
-
216
- #: contact-form-7/admin/admin.php:294
217
- msgid "Docs"
218
- msgstr "Documentation"
219
-
220
- #: contact-form-7/admin/admin.php:295
221
- msgid "http://contactform7.com/faq/"
222
- msgstr ""
223
-
224
- #: contact-form-7/admin/admin.php:296
225
- msgid "FAQ"
226
- msgstr "FAQ"
227
-
228
- #: contact-form-7/admin/admin.php:297
229
- msgid "http://contactform7.com/support/"
230
- msgstr ""
231
-
232
- #: contact-form-7/admin/admin.php:298
233
- msgid "Support"
234
- msgstr "Support"
235
-
236
- # @ wpcf7
237
- #: contact-form-7/admin/admin.php:312
238
- msgid "Contact form created."
239
- msgstr "Formulaire de contact créé."
240
-
241
- # @ wpcf7
242
- #: contact-form-7/admin/admin.php:315
243
- msgid "Contact form saved."
244
- msgstr "Formulaire de contact sauvegardé."
245
-
246
- # @ wpcf7
247
- #: contact-form-7/admin/admin.php:318
248
- msgid "Contact form deleted."
249
- msgstr "Formulaire de contact supprimé."
250
-
251
- #: contact-form-7/admin/admin.php:321
252
- msgid "Database table created."
253
- msgstr "Table de base de données créée."
254
-
255
- #: contact-form-7/admin/admin.php:324
256
- msgid "Failed to create database table."
257
- msgstr "Erreur lors de la création de la table de base de données."
258
-
259
- # @ wpcf7
260
- #: contact-form-7/admin/admin.php:357
261
- msgid "Contact Form 7 needs your support. Please donate today."
262
- msgstr "Contact Form 7 a besoin de votre soutien. Merci de faire un don dès aujourd'hui !"
263
-
264
- # @ wpcf7
265
- #: contact-form-7/admin/admin.php:358
266
- msgid "Your contribution is needed for making this plugin better."
267
- msgstr "Votre contribution est nécessaire pour améliorer cette extension."
268
-
269
- #: contact-form-7/admin/admin.php:364
270
- msgid "http://contactform7.com/donate/"
271
- msgstr ""
272
-
273
- #: contact-form-7/admin/admin.php:364
274
- msgid "Donate"
275
- msgstr "Effectuer un don"
276
-
277
- # @ wpcf7
278
- #: contact-form-7/modules/textarea.php:126
279
- msgid "Text area"
280
- msgstr "Zone de texte"
281
-
282
- # @ wpcf7
283
- #: contact-form-7/modules/textarea.php:135
284
- #: contact-form-7/modules/text.php:160
285
- #: contact-form-7/modules/select.php:163
286
- #: contact-form-7/modules/checkbox.php:206
287
- #: contact-form-7/modules/file.php:240
288
- msgid "Required field?"
289
- msgstr "Champ obligatoire ?"
290
-
291
- # @ wpcf7
292
- #: contact-form-7/modules/textarea.php:136
293
- #: contact-form-7/modules/text.php:161
294
- #: contact-form-7/modules/quiz.php:190
295
- #: contact-form-7/modules/select.php:164
296
- #: contact-form-7/modules/acceptance.php:113
297
- #: contact-form-7/modules/checkbox.php:209
298
- #: contact-form-7/modules/file.php:241
299
- #: contact-form-7/modules/captcha.php:214
300
- msgid "Name"
301
- msgstr "Nom"
302
-
303
- # @ wpcf7
304
- #: contact-form-7/modules/textarea.php:141
305
- #: contact-form-7/modules/textarea.php:144
306
- #: contact-form-7/modules/textarea.php:149
307
- #: contact-form-7/modules/textarea.php:152
308
- #: contact-form-7/modules/textarea.php:157
309
- #: contact-form-7/modules/text.php:166
310
- #: contact-form-7/modules/text.php:169
311
- #: contact-form-7/modules/text.php:174
312
- #: contact-form-7/modules/text.php:177
313
- #: contact-form-7/modules/text.php:182
314
- #: contact-form-7/modules/text.php:191
315
- #: contact-form-7/modules/quiz.php:195
316
- #: contact-form-7/modules/quiz.php:198
317
- #: contact-form-7/modules/quiz.php:203
318
- #: contact-form-7/modules/quiz.php:206
319
- #: contact-form-7/modules/select.php:169
320
- #: contact-form-7/modules/select.php:172
321
- #: contact-form-7/modules/acceptance.php:118
322
- #: contact-form-7/modules/acceptance.php:121
323
- #: contact-form-7/modules/checkbox.php:214
324
- #: contact-form-7/modules/checkbox.php:217
325
- #: contact-form-7/modules/file.php:246
326
- #: contact-form-7/modules/file.php:249
327
- #: contact-form-7/modules/file.php:254
328
- #: contact-form-7/modules/file.php:257
329
- #: contact-form-7/modules/submit.php:72
330
- #: contact-form-7/modules/submit.php:75
331
- #: contact-form-7/modules/submit.php:80
332
- #: contact-form-7/modules/captcha.php:221
333
- #: contact-form-7/modules/captcha.php:224
334
- #: contact-form-7/modules/captcha.php:229
335
- #: contact-form-7/modules/captcha.php:232
336
- #: contact-form-7/modules/captcha.php:236
337
- #: contact-form-7/modules/captcha.php:247
338
- #: contact-form-7/modules/captcha.php:250
339
- #: contact-form-7/modules/captcha.php:255
340
- #: contact-form-7/modules/captcha.php:258
341
- msgid "optional"
342
- msgstr "facultatif"
343
-
344
- # @ wpcf7
345
- #: contact-form-7/modules/textarea.php:157
346
- #: contact-form-7/modules/text.php:191
347
- msgid "Default value"
348
- msgstr "Valeur par défaut"
349
-
350
- # @ wpcf7
351
- #: contact-form-7/modules/textarea.php:161
352
- #: contact-form-7/modules/text.php:195
353
- #: contact-form-7/modules/quiz.php:218
354
- #: contact-form-7/modules/select.php:189
355
- #: contact-form-7/modules/acceptance.php:134
356
- #: contact-form-7/modules/checkbox.php:237
357
- #: contact-form-7/modules/file.php:262
358
- #: contact-form-7/modules/submit.php:87
359
- #: contact-form-7/modules/captcha.php:263
360
- msgid "Copy this code and paste it into the form left."
361
- msgstr "Copiez ce code et collez-le dans le formulaire de gauche."
362
-
363
- #: contact-form-7/modules/textarea.php:163
364
- #: contact-form-7/modules/text.php:197
365
- #: contact-form-7/modules/select.php:191
366
- #: contact-form-7/modules/checkbox.php:239
367
- msgid "And, put this code into the Mail fields below."
368
- msgstr "Et placez ce code dans les champs Email ci-dessous."
369
-
370
- # @ wpcf7
371
- #: contact-form-7/modules/text.php:137
372
- msgid "Text field"
373
- msgstr "Champ texte"
374
-
375
- # @ wpcf7
376
- #: contact-form-7/modules/text.php:140
377
- msgid "Email field"
378
- msgstr "Champ email"
379
-
380
- # @ wpcf7
381
- #: contact-form-7/modules/text.php:182
382
- msgid "Akismet"
383
- msgstr "Akismet"
384
-
385
- # @ wpcf7
386
- #: contact-form-7/modules/text.php:184
387
- msgid "This field requires author's name"
388
- msgstr "Ce champ néessite le nom de l'auteur"
389
-
390
- # @ wpcf7
391
- #: contact-form-7/modules/text.php:185
392
- msgid "This field requires author's URL"
393
- msgstr "Ce champ nécessite l'URL de l'auteur"
394
-
395
- # @ wpcf7
396
- #: contact-form-7/modules/text.php:187
397
- msgid "This field requires author's email address"
398
- msgstr "Ce champ nécessite l'adresse e-mail de l'auteur"
399
-
400
- #: contact-form-7/modules/icl.php:74
401
- msgid "This contact form contains [icl] tags, but they are obsolete and no longer functioning on this version of Contact Form 7. <a href=\"http://contactform7.com/2009/12/25/contact-form-in-your-language/#Creating_contact_form_in_different_languages\" target=\"_blank\">There is a simpler way for creating contact forms of other languages</a> and you are recommended to use it."
402
- msgstr "Ce formulaire de contact contient des marqueurs [icl], mais qui sont obsolètes et ne fonctionnent plus avec cette version de Contact Form 7. <a href=\"http://contactform7.com/2009/12/25/contact-form-in-your-language/#Creating_contact_form_in_different_languages\" target=\"_blank\">Il existe un moyen plus simple de créer des formulaires de contact dans d'autres langues</a> et vous êtes encouragé(e) à le 'employer."
403
-
404
- # @ wpcf7
405
- #: contact-form-7/modules/quiz.php:170
406
- msgid "Sender doesn't enter the correct answer to the quiz"
407
- msgstr "Vous n'avez pas entré la bonne réponse au quiz"
408
-
409
- # @ wpcf7
410
- #: contact-form-7/modules/quiz.php:171
411
- msgid "Your answer is not correct."
412
- msgstr "Votre réponse est incorrecte."
413
-
414
- # @ wpcf7
415
- #: contact-form-7/modules/quiz.php:181
416
- msgid "Quiz"
417
- msgstr "Quiz"
418
-
419
- # @ wpcf7
420
- #: contact-form-7/modules/quiz.php:211
421
- msgid "Quizzes"
422
- msgstr "Quizs"
423
-
424
- # @ wpcf7
425
- #: contact-form-7/modules/quiz.php:213
426
- msgid "* quiz|answer (e.g. 1+1=?|2)"
427
- msgstr "* quiz|réponse (par exemple : 1+1 =?|2)"
428
-
429
- # @ wpcf7
430
- #: contact-form-7/modules/select.php:154
431
- msgid "Drop-down menu"
432
- msgstr "Menu déroulant"
433
-
434
- # @ wpcf7
435
- #: contact-form-7/modules/select.php:177
436
- #: contact-form-7/modules/checkbox.php:222
437
- msgid "Choices"
438
- msgstr "Choix"
439
-
440
- # @ wpcf7
441
- #: contact-form-7/modules/select.php:179
442
- #: contact-form-7/modules/checkbox.php:224
443
- msgid "* One choice per line."
444
- msgstr "* Un choix par ligne."
445
-
446
- # @ wpcf7
447
- #: contact-form-7/modules/select.php:183
448
- msgid "Allow multiple selections?"
449
- msgstr "Autoriser les sélections multiples ?"
450
-
451
- # @ wpcf7
452
- #: contact-form-7/modules/select.php:184
453
- msgid "Insert a blank item as the first option?"
454
- msgstr "Insérer un choix vide comme première option ?"
455
-
456
- # @ wpcf7
457
- #: contact-form-7/modules/acceptance.php:104
458
- msgid "Acceptance"
459
- msgstr "Acceptation"
460
-
461
- # @ wpcf7
462
- #: contact-form-7/modules/acceptance.php:127
463
- msgid "Make this checkbox checked by default?"
464
- msgstr "Cocher cette case par défaut ?"
465
-
466
- # @ wpcf7
467
- #: contact-form-7/modules/acceptance.php:128
468
- msgid "Make this checkbox work inversely?"
469
- msgstr "Inverser le fonctionnement de cette case ?"
470
-
471
- # @ wpcf7
472
- #: contact-form-7/modules/acceptance.php:129
473
- msgid "* That means visitor who accepts the term unchecks it."
474
- msgstr "* Ceci signifie que le visiteur qui accepte les termes à valider doit décocher la case."
475
-
476
- # @ wpcf7
477
- #: contact-form-7/modules/checkbox.php:182
478
- msgid "Checkboxes"
479
- msgstr "Cases à cocher"
480
-
481
- # @ wpcf7
482
- #: contact-form-7/modules/checkbox.php:185
483
- msgid "Radio buttons"
484
- msgstr "Boutons radio"
485
-
486
- #: contact-form-7/modules/checkbox.php:228
487
- msgid "Put a label first, a checkbox last?"
488
- msgstr "Placer d'abord le label, ensuite la case à cocher ?"
489
-
490
- #: contact-form-7/modules/checkbox.php:229
491
- msgid "Wrap each item with <label> tag?"
492
- msgstr "Encadrer chaque élément d'une balise <label> ?"
493
-
494
- # @ wpcf7
495
- #: contact-form-7/modules/checkbox.php:231
496
- msgid "Make checkboxes exclusive?"
497
- msgstr "Rendre les cases à cocher exclusives?"
498
-
499
- # @ wpcf7
500
- #: contact-form-7/modules/file.php:204
501
- msgid "Uploading a file fails for any reason"
502
- msgstr "Le téléchargement de fichier a échoué pour une raison inconnue"
503
-
504
- # @ wpcf7
505
- #: contact-form-7/modules/file.php:205
506
- msgid "Failed to upload file."
507
- msgstr "Impossible de télécharger le fichier."
508
-
509
- # @ wpcf7
510
- #: contact-form-7/modules/file.php:209
511
- msgid "Uploaded file is not allowed file type"
512
- msgstr "Le téléchargement n'autorise pas ce format de fichier"
513
-
514
- # @ wpcf7
515
- #: contact-form-7/modules/file.php:210
516
- msgid "This file type is not allowed."
517
- msgstr "Ce type de fichier n'est pas autorisé."
518
-
519
- # @ wpcf7
520
- #: contact-form-7/modules/file.php:214
521
- msgid "Uploaded file is too large"
522
- msgstr "Le fichier téléchargé est trop volumineux"
523
-
524
- # @ wpcf7
525
- #: contact-form-7/modules/file.php:215
526
- msgid "This file is too large."
527
- msgstr "Ce fichier est trop volumineux."
528
-
529
- # @ wpcf7
530
- #: contact-form-7/modules/file.php:219
531
- #, fuzzy
532
- msgid "Uploading a file fails for PHP error"
533
- msgstr "Le téléchargement de fichier a échoué pour une raison inconnue"
534
-
535
- # @ wpcf7
536
- #: contact-form-7/modules/file.php:220
537
- #, fuzzy
538
- msgid "Failed to upload file. Error occurred."
539
- msgstr "Impossible de télécharger le fichier."
540
-
541
- # @ wpcf7
542
- #: contact-form-7/modules/file.php:231
543
- msgid "File upload"
544
- msgstr "Upload de fichier"
545
-
546
- # @ wpcf7
547
- #: contact-form-7/modules/file.php:254
548
- msgid "File size limit"
549
- msgstr "Taille maximale du fichier"
550
-
551
- # @ wpcf7
552
- #: contact-form-7/modules/file.php:254
553
- msgid "bytes"
554
- msgstr "octets"
555
-
556
- # @ wpcf7
557
- #: contact-form-7/modules/file.php:257
558
- msgid "Acceptable file types"
559
- msgstr "Formats de fichiers acceptés"
560
-
561
- #: contact-form-7/modules/file.php:264
562
- msgid "And, put this code into the File Attachments field below."
563
- msgstr "Et placez ce code dans le champ Pièce-jointe ci-dessous."
564
-
565
- #: contact-form-7/modules/file.php:289
566
- #, php-format
567
- msgid "This contact form contains file uploading fields, but the temporary folder for the files (%s) does not exist or is not writable. You can create the folder or change its permission manually."
568
- msgstr "Ce formulaire de contact contient des champs de téléchargement, mais le dossier temporaire de fichiers (%s) n'existe pas ou n'est pas accessible en écriture. Vous pouvez créer le dossier ou modifier ses permissions manuellement."
569
-
570
- # @ wpcf7
571
- #: contact-form-7/modules/submit.php:46
572
- msgid "Send"
573
- msgstr "Envoyer"
574
-
575
- # @ wpcf7
576
- #: contact-form-7/modules/submit.php:62
577
- msgid "Submit button"
578
- msgstr "Bouton de soumission"
579
-
580
- # @ wpcf7
581
- #: contact-form-7/modules/submit.php:80
582
- msgid "Label"
583
- msgstr "Étiquette"
584
-
585
- # @ wpcf7
586
- #: contact-form-7/modules/captcha.php:70
587
- msgid "To use CAPTCHA, you need <a href=\"http://wordpress.org/extend/plugins/really-simple-captcha/\">Really Simple CAPTCHA</a> plugin installed."
588
- msgstr "Pour utiliser la CAPTCHA, vous devez avoir installé l'extension <a href=\"http://wordpress.org/extend/plugins/really-simple-captcha/\">Really Simple CAPTCHA</a> ."
589
-
590
- # @ wpcf7
591
- #: contact-form-7/modules/captcha.php:189
592
- msgid "The code that sender entered does not match the CAPTCHA"
593
- msgstr "Le code entré ne correspond pas à la CAPTCHA"
594
-
595
- # @ wpcf7
596
- #: contact-form-7/modules/captcha.php:190
597
- msgid "Your entered code is incorrect."
598
- msgstr "Le code entre est incorrect."
599
-
600
- # @ wpcf7
601
- #: contact-form-7/modules/captcha.php:200
602
- msgid "CAPTCHA"
603
- msgstr "CAPTCHA"
604
-
605
- # @ wpcf7
606
- #: contact-form-7/modules/captcha.php:211
607
- msgid "Note: To use CAPTCHA, you need Really Simple CAPTCHA plugin installed."
608
- msgstr "Note: Pour utiliser la CAPTCHA, vous devez avoir installé l'extension Really Simple CAPTCHA."
609
-
610
- # @ wpcf7
611
- #: contact-form-7/modules/captcha.php:218
612
- msgid "Image settings"
613
- msgstr "Paramètres des images"
614
-
615
- # @ wpcf7
616
- #: contact-form-7/modules/captcha.php:229
617
- msgid "Foreground color"
618
- msgstr "Couleur d'avant-plan"
619
-
620
- # @ wpcf7
621
- #: contact-form-7/modules/captcha.php:232
622
- msgid "Background color"
623
- msgstr "Couleur d'arrière-plan"
624
-
625
- # @ wpcf7
626
- #: contact-form-7/modules/captcha.php:236
627
- msgid "Image size"
628
- msgstr "Taille de l'image"
629
-
630
- # @ wpcf7
631
- #: contact-form-7/modules/captcha.php:237
632
- msgid "Small"
633
- msgstr "Petit"
634
-
635
- # @ wpcf7
636
- #: contact-form-7/modules/captcha.php:238
637
- msgid "Medium"
638
- msgstr "Moyen"
639
-
640
- # @ wpcf7
641
- #: contact-form-7/modules/captcha.php:239
642
- msgid "Large"
643
- msgstr "Grand"
644
-
645
- # @ wpcf7
646
- #: contact-form-7/modules/captcha.php:244
647
- msgid "Input field settings"
648
- msgstr "Paramètres des champs de saisie"
649
-
650
- # @ wpcf7
651
- #: contact-form-7/modules/captcha.php:264
652
- msgid "For image"
653
- msgstr "Pour l'image"
654
-
655
- # @ wpcf7
656
- #: contact-form-7/modules/captcha.php:266
657
- msgid "For input field"
658
- msgstr "Pour le champ de saisie"
659
-
660
- #: contact-form-7/modules/captcha.php:296
661
- #, php-format
662
- msgid "This contact form contains CAPTCHA fields, but the temporary folder for the files (%s) does not exist or is not writable. You can create the folder or change its permission manually."
663
- msgstr "Ce formulaire de contact contient des champs CAPTCHA, mais le dossier temporaire de fichiers (%s) n'existe pas ou n'est pas accessible en écriture. Vous pouvez créer le dossier ou modifier ses permissions manuellement."
664
-
665
- #: contact-form-7/modules/captcha.php:302
666
- msgid "This contact form contains CAPTCHA fields, but the necessary libraries (GD and FreeType) are not available on your server."
667
- msgstr "Ce formulaire de contact contient des champs CAPTCHA, mais les librairies requises (GD et FreeType) ne sont pas disponibles sur votre serveur."
668
-
669
- # @ wpcf7
670
- #: contact-form-7/includes/classes.php:564
671
- msgid "Untitled"
672
- msgstr "Sans titre"
673
-
674
- # @ wpcf7
675
- #: contact-form-7/includes/functions.php:6
676
- msgid "Sender's message was sent successfully"
677
- msgstr "Votre message a été envoyé avec succès"
678
-
679
- # @ wpcf7
680
- #: contact-form-7/includes/functions.php:7
681
- msgid "Your message was sent successfully. Thanks."
682
- msgstr "Votre message a bien été envoyé. Merci."
683
-
684
- # @ wpcf7
685
- #: contact-form-7/includes/functions.php:11
686
- msgid "Sender's message was failed to send"
687
- msgstr "Votre message n'a pas pu être envoyé"
688
-
689
- # @ wpcf7
690
- #: contact-form-7/includes/functions.php:12
691
- #: contact-form-7/includes/functions.php:17
692
- msgid "Failed to send your message. Please try later or contact administrator by other way."
693
- msgstr "Erreur lors de l'envoi du message. Veuillez réessayer plus tard, ou contacter l'administrateur d'une autre manière."
694
-
695
- # @ wpcf7
696
- #: contact-form-7/includes/functions.php:16
697
- msgid "Akismet judged the sending activity as spamming"
698
- msgstr "Akismet a jugé que cet envoi est un spam"
699
-
700
- # @ wpcf7
701
- #: contact-form-7/includes/functions.php:21
702
- msgid "Validation errors occurred"
703
- msgstr "Des erreurs de validation sont survenues"
704
-
705
- # @ wpcf7
706
- #: contact-form-7/includes/functions.php:22
707
- msgid "Validation errors occurred. Please confirm the fields and submit it again."
708
- msgstr "Erreur de validation. Veuillez vérifier les champs et soumettre à nouveau."
709
-
710
- # @ wpcf7
711
- #: contact-form-7/includes/functions.php:26
712
- msgid "There is a field of term that sender is needed to accept"
713
- msgstr "Il y a un champ dont il est nécessaire d'accepter les termes"
714
-
715
- # @ wpcf7
716
- #: contact-form-7/includes/functions.php:27
717
- msgid "Please accept the terms to proceed."
718
- msgstr "Merci de bien vouloir accepter les conditions pour continuer."
719
-
720
- # @ wpcf7
721
- #: contact-form-7/includes/functions.php:31
722
- msgid "Email address that sender entered is invalid"
723
- msgstr "L'adresse email utilisée n'est pas valide"
724
-
725
- # @ wpcf7
726
- #: contact-form-7/includes/functions.php:32
727
- msgid "Email address seems invalid."
728
- msgstr "L'adresse email semble invalide."
729
-
730
- # @ wpcf7
731
- #: contact-form-7/includes/functions.php:36
732
- msgid "There is a field that sender is needed to fill in"
733
- msgstr "Il y a un champ obligatoire qui n'a pas été rempli"
734
-
735
- # @ wpcf7
736
- #: contact-form-7/includes/functions.php:37
737
- msgid "Please fill the required field."
738
- msgstr "Veuillez remplir le champ obligatoire."
739
-
740
- # @ wpcf7
741
- #: contact-form-7/includes/functions.php:46
742
- msgid "Your Name"
743
- msgstr "Votre nom"
744
-
745
- # @ wpcf7
746
- #: contact-form-7/includes/functions.php:46
747
- #: contact-form-7/includes/functions.php:48
748
- msgid "(required)"
749
- msgstr "(obligatoire)"
750
-
751
- # @ wpcf7
752
- #: contact-form-7/includes/functions.php:48
753
- msgid "Your Email"
754
- msgstr "Votre email"
755
-
756
- # @ wpcf7
757
- #: contact-form-7/includes/functions.php:50
758
- msgid "Subject"
759
- msgstr "Sujet"
760
-
761
- # @ wpcf7
762
- #: contact-form-7/includes/functions.php:52
763
- msgid "Your Message"
764
- msgstr "Votre message"
765
-
766
- # @ wpcf7
767
- #: contact-form-7/includes/functions.php:62
768
- #, php-format
769
- msgid "From: %s"
770
- msgstr "De : %s"
771
-
772
- # @ wpcf7
773
- #: contact-form-7/includes/functions.php:63
774
- #, php-format
775
- msgid "Subject: %s"
776
- msgstr "Sujet : %s"
777
-
778
- # @ wpcf7
779
- #: contact-form-7/includes/functions.php:64
780
- msgid "Message Body:"
781
- msgstr "Corps du message :"
782
-
783
- #: contact-form-7/includes/functions.php:65
784
- #: contact-form-7/includes/functions.php:79
785
- #, php-format
786
- msgid "This mail is sent via contact form on %1$s %2$s"
787
- msgstr "Ce email a été envoyé via formulaire de contact le %1$s %2$s"
788
-
789
- #: contact-form-7/includes/functions.php:168
790
- msgid "Afrikaans"
791
- msgstr "Afrikaans"
792
-
793
- #: contact-form-7/includes/functions.php:169
794
- msgid "Albanian"
795
- msgstr "Albanais"
796
-
797
- #: contact-form-7/includes/functions.php:170
798
- msgid "Arabic"
799
- msgstr "Arabe"
800
-
801
- #: contact-form-7/includes/functions.php:171
802
- msgid "Bangla"
803
- msgstr "Bengali"
804
-
805
- #: contact-form-7/includes/functions.php:172
806
- msgid "Bosnian"
807
- msgstr "Bosnien"
808
-
809
- #: contact-form-7/includes/functions.php:173
810
- msgid "Brazilian Portuguese"
811
- msgstr "Portugais brézilien"
812
-
813
- #: contact-form-7/includes/functions.php:174
814
- msgid "Bulgarian"
815
- msgstr "Bulgare"
816
-
817
- #: contact-form-7/includes/functions.php:175
818
- msgid "Catalan"
819
- msgstr "Catalan"
820
-
821
- #: contact-form-7/includes/functions.php:176
822
- msgid "Chinese (Simplified)"
823
- msgstr "Chinois (simplifié)"
824
-
825
- #: contact-form-7/includes/functions.php:177
826
- msgid "Chinese (Traditional)"
827
- msgstr "Chinois (traditionnel)"
828
-
829
- #: contact-form-7/includes/functions.php:178
830
- msgid "Croatian"
831
- msgstr "Croate"
832
-
833
- #: contact-form-7/includes/functions.php:179
834
- msgid "Czech"
835
- msgstr "Tchèque"
836
-
837
- #: contact-form-7/includes/functions.php:180
838
- msgid "Danish"
839
- msgstr "Danois"
840
-
841
- #: contact-form-7/includes/functions.php:181
842
- msgid "Dutch"
843
- msgstr "Hollandais"
844
-
845
- #: contact-form-7/includes/functions.php:182
846
- msgid "English"
847
- msgstr "Anglais"
848
-
849
- #: contact-form-7/includes/functions.php:183
850
- msgid "Estonian"
851
- msgstr "Estonien"
852
-
853
- #: contact-form-7/includes/functions.php:184
854
- msgid "Finnish"
855
- msgstr "Finlandais"
856
-
857
- #: contact-form-7/includes/functions.php:185
858
- msgid "French"
859
- msgstr "Français"
860
-
861
- #: contact-form-7/includes/functions.php:186
862
- msgid "Galician"
863
- msgstr "Galicien"
864
-
865
- #: contact-form-7/includes/functions.php:187
866
- msgid "Georgian"
867
- msgstr "Géorgien"
868
-
869
- #: contact-form-7/includes/functions.php:188
870
- msgid "German"
871
- msgstr "Allemand"
872
-
873
- #: contact-form-7/includes/functions.php:189
874
- msgid "Greek"
875
- msgstr "Grec"
876
-
877
- #: contact-form-7/includes/functions.php:190
878
- msgid "Hebrew"
879
- msgstr "Hébreu"
880
-
881
- # @ wpcf7
882
- #: contact-form-7/includes/functions.php:191
883
- msgid "Hindi"
884
- msgstr "Hindi"
885
-
886
- #: contact-form-7/includes/functions.php:192
887
- msgid "Hungarian"
888
- msgstr "Hongrois"
889
-
890
- #: contact-form-7/includes/functions.php:193
891
- msgid "Indonesian"
892
- msgstr "Indonésien"
893
-
894
- #: contact-form-7/includes/functions.php:194
895
- msgid "Italian"
896
- msgstr "Italien"
897
-
898
- #: contact-form-7/includes/functions.php:195
899
- msgid "Japanese"
900
- msgstr "Japonais"
901
-
902
- #: contact-form-7/includes/functions.php:196
903
- msgid "Korean"
904
- msgstr "Coréen"
905
-
906
- #: contact-form-7/includes/functions.php:197
907
- msgid "Latvian"
908
- msgstr "Letton"
909
-
910
- #: contact-form-7/includes/functions.php:198
911
- msgid "Lithuanian"
912
- msgstr "Lituanien"
913
-
914
- #: contact-form-7/includes/functions.php:199
915
- msgid "Malayalam"
916
- msgstr "Malayâlam"
917
-
918
- #: contact-form-7/includes/functions.php:200
919
- msgid "Norwegian"
920
- msgstr "Norvégien"
921
-
922
- #: contact-form-7/includes/functions.php:201
923
- msgid "Persian"
924
- msgstr "Persan"
925
-
926
- #: contact-form-7/includes/functions.php:202
927
- msgid "Polish"
928
- msgstr "Polonais"
929
-
930
- #: contact-form-7/includes/functions.php:203
931
- msgid "Portuguese"
932
- msgstr "Portugais"
933
-
934
- #: contact-form-7/includes/functions.php:204
935
- msgid "Russian"
936
- msgstr "Russe"
937
-
938
- #: contact-form-7/includes/functions.php:205
939
- msgid "Romanian"
940
- msgstr "Roumain"
941
-
942
- #: contact-form-7/includes/functions.php:206
943
- msgid "Serbian"
944
- msgstr "Serbe"
945
-
946
- #: contact-form-7/includes/functions.php:207
947
- msgid "Slovak"
948
- msgstr "Slovaque"
949
-
950
- #: contact-form-7/includes/functions.php:208
951
- msgid "Slovene"
952
- msgstr "Slovène"
953
-
954
- #: contact-form-7/includes/functions.php:209
955
- msgid "Spanish"
956
- msgstr "Espagnol"
957
-
958
- #: contact-form-7/includes/functions.php:210
959
- msgid "Swedish"
960
- msgstr "Suédois"
961
-
962
- #: contact-form-7/includes/functions.php:211
963
- msgid "Thai"
964
- msgstr "Thaïlandais"
965
-
966
- #: contact-form-7/includes/functions.php:212
967
- msgid "Turkish"
968
- msgstr "Turque"
969
-
970
- #: contact-form-7/includes/functions.php:213
971
- msgid "Ukrainian"
972
- msgstr "Ukrainien"
973
-
974
- #: contact-form-7/includes/functions.php:214
975
- msgid "Vietnamese"
976
- msgstr "Vietnamien"
977
-
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
languages/wpcf7-gl_ES.po DELETED
@@ -1,836 +0,0 @@
1
- msgid ""
2
- msgstr ""
3
- "Project-Id-Version: Contact Form 7 (2.1.1)\n"
4
- "Report-Msgid-Bugs-To: \n"
5
- "POT-Creation-Date: 2010-02-24 08:35+0900\n"
6
- "PO-Revision-Date: 2010-03-02 18:45+0100\n"
7
- "Last-Translator: Arume Desenvolvementos Informáticos <arume@arumeinformatica.es>\n"
8
- "Language-Team: Arume <arume@arumeinformatica.es>\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: Galician\n"
17
- "X-Poedit-Country: SPAIN\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 "Contacto"
29
-
30
- #: contact-form-7/admin/admin.php:123
31
- msgid "Edit Contact Forms"
32
- msgstr "Editar formularios de contacto"
33
-
34
- #: contact-form-7/admin/admin.php:123
35
- msgid "Edit"
36
- msgstr "Editar"
37
-
38
- #: contact-form-7/admin/admin.php:162
39
- msgid "Generate Tag"
40
- msgstr "Xenerar etiqueta"
41
-
42
- #: contact-form-7/admin/admin.php:163
43
- msgid "Show"
44
- msgstr "Mostrar"
45
-
46
- #: contact-form-7/admin/admin.php:164
47
- msgid "Hide"
48
- msgstr "Ocultar"
49
-
50
- #: contact-form-7/admin/admin.php:265
51
- msgid "Contact form"
52
- msgstr "Formulario de contacto"
53
-
54
- #: contact-form-7/admin/admin.php:284
55
- msgid "Settings"
56
- msgstr "Opcións"
57
-
58
- #: contact-form-7/admin/admin.php:295
59
- msgid "http://contactform7.com/"
60
- msgstr "http://contactform7.com/"
61
-
62
- #: contact-form-7/admin/admin.php:296
63
- msgid "Contactform7.com"
64
- msgstr "contactform7.com"
65
-
66
- #: contact-form-7/admin/admin.php:297
67
- msgid "http://contactform7.com/docs/"
68
- msgstr "http://contactform7.com/docs/"
69
-
70
- #: contact-form-7/admin/admin.php:298
71
- msgid "Docs"
72
- msgstr "Documentación"
73
-
74
- #: contact-form-7/admin/admin.php:299
75
- msgid "http://contactform7.com/faq/"
76
- msgstr "http://contactform7.com/faq/"
77
-
78
- #: contact-form-7/admin/admin.php:300
79
- msgid "FAQ"
80
- msgstr "FAQ"
81
-
82
- #: contact-form-7/admin/admin.php:301
83
- msgid "http://contactform7.com/support/"
84
- msgstr "http://contactform7.com/support/"
85
-
86
- #: contact-form-7/admin/admin.php:302
87
- msgid "Support"
88
- msgstr "Axuda"
89
-
90
- #: contact-form-7/admin/admin.php:316
91
- msgid "Contact form created."
92
- msgstr "Formulario de contacto \"%s\" creado. "
93
-
94
- #: contact-form-7/admin/admin.php:319
95
- msgid "Contact form saved."
96
- msgstr "Formulario de contacto \"%s\" gardado. "
97
-
98
- #: contact-form-7/admin/admin.php:322
99
- msgid "Contact form deleted."
100
- msgstr "Formulario de contacto \"%s\" eliminado. "
101
-
102
- #: contact-form-7/admin/admin.php:325
103
- msgid "Database table created."
104
- msgstr "Táboa de base de datos creada."
105
-
106
- #: contact-form-7/admin/admin.php:328
107
- msgid "Failed to create database table."
108
- msgstr "Erro ó crear a base de datos."
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 necesita a túa axuda. Por favor, dona hoxe."
113
-
114
- #: contact-form-7/admin/admin.php:362
115
- msgid "Your contribution is needed for making this plugin better."
116
- msgstr "A túa contribución é necesaria para facer este plugin mellor."
117
-
118
- #: contact-form-7/admin/admin.php:368
119
- msgid "http://contactform7.com/donate/"
120
- msgstr "http://contactform7.com/donate/"
121
-
122
- #: contact-form-7/admin/admin.php:368
123
- msgid "Donate"
124
- msgstr "Donar"
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>A táboa de base de datos para Contact Form 7 non existe.</strong> Debes <a href=\"%s\">crear a táboa</a> para que funcione."
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>A táboa de base de datos para Contact Form 7 non existe.</strong>"
134
-
135
- #: contact-form-7/admin/edit.php:45
136
- msgid "Add new"
137
- msgstr "Engadir novo"
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 "Copia e pega este código dentro do contido do teu post, páxina ou contido de widget de texto."
142
-
143
- #: contact-form-7/admin/edit.php:75
144
- #: contact-form-7/admin/edit.php:309
145
- msgid "Save"
146
- msgstr "Gardar"
147
-
148
- #: contact-form-7/admin/edit.php:82
149
- msgid "Copy"
150
- msgstr "Copiar"
151
-
152
- #: contact-form-7/admin/edit.php:87
153
- msgid "Delete"
154
- msgstr "Eliminar"
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
- "O formulario de contacto será eliminado.\n"
162
- " 'Cancelar' para anular, 'OK' para confirmar."
163
-
164
- #: contact-form-7/admin/edit.php:104
165
- msgid "Form"
166
- msgstr "Formulario"
167
-
168
- #: contact-form-7/admin/edit.php:128
169
- msgid "Mail"
170
- msgstr "Correo"
171
-
172
- #: contact-form-7/admin/edit.php:135
173
- #: contact-form-7/admin/edit.php:202
174
- msgid "To:"
175
- msgstr "Para:"
176
-
177
- #: contact-form-7/admin/edit.php:140
178
- #: contact-form-7/admin/edit.php:207
179
- msgid "From:"
180
- msgstr "De:"
181
-
182
- #: contact-form-7/admin/edit.php:145
183
- #: contact-form-7/admin/edit.php:212
184
- msgid "Subject:"
185
- msgstr "Asunto:"
186
-
187
- #: contact-form-7/admin/edit.php:152
188
- #: contact-form-7/admin/edit.php:219
189
- msgid "Additional headers:"
190
- msgstr "Cabeceiras adicionais"
191
-
192
- #: contact-form-7/admin/edit.php:157
193
- #: contact-form-7/admin/edit.php:224
194
- msgid "File attachments:"
195
- msgstr "Arquivos adxuntos:"
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 "Usar 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:78
205
- msgid "Message body:"
206
- msgstr "Corpo da mensaxe:"
207
-
208
- #: contact-form-7/admin/edit.php:188
209
- msgid "Mail (2)"
210
- msgstr "Correo (2)"
211
-
212
- #: contact-form-7/admin/edit.php:194
213
- msgid "Use mail (2)"
214
- msgstr "Usar correo (2)"
215
-
216
- #: contact-form-7/admin/edit.php:255
217
- msgid "Messages"
218
- msgstr "Mensaxes"
219
-
220
- #: contact-form-7/admin/edit.php:285
221
- msgid "Additional Settings"
222
- msgstr "Opcións adicionais"
223
-
224
- #: contact-form-7/admin/edit.php:333
225
- #, php-format
226
- msgid "Use the default language (%s)"
227
- msgstr "Usar o idioma por defecto (%s)"
228
-
229
- #: contact-form-7/admin/edit.php:334
230
- #: contact-form-7/admin/edit.php:347
231
- msgid "Add New"
232
- msgstr "Engadir novo"
233
-
234
- #: contact-form-7/admin/edit.php:337
235
- msgid "Or"
236
- msgstr "Ou"
237
-
238
- #: contact-form-7/admin/edit.php:342
239
- msgid "(select language)"
240
- msgstr "(seleccionar idioma)"
241
-
242
- #: contact-form-7/includes/classes.php:569
243
- msgid "Untitled"
244
- msgstr "Título"
245
-
246
- #: contact-form-7/includes/functions.php:6
247
- msgid "Sender's message was sent successfully"
248
- msgstr "A túa mensaxe enviouse correctamente. Moitas gracias."
249
-
250
- #: contact-form-7/includes/functions.php:7
251
- msgid "Your message was sent successfully. Thanks."
252
- msgstr "A túa mensaxe enviouse correctamente. Moitas gracias."
253
-
254
- #: contact-form-7/includes/functions.php:11
255
- msgid "Sender's message was failed to send"
256
- msgstr "Fallou o envío da mensaxe"
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 "Erro ó enviar a mensaxe. Por favor inténtao máis tarde ou contacta co administrador por outro medio."
262
-
263
- #: contact-form-7/includes/functions.php:16
264
- msgid "Akismet judged the sending activity as spamming"
265
- msgstr "Akismet determinou que o envío é spam"
266
-
267
- #: contact-form-7/includes/functions.php:21
268
- msgid "Validation errors occurred"
269
- msgstr "Ocorreron erros de validación"
270
-
271
- #: contact-form-7/includes/functions.php:22
272
- msgid "Validation errors occurred. Please confirm the fields and submit it again."
273
- msgstr "Erros de validación. Por favor confirma os campos e envía o formulario de novo"
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 "Hai un campo de termos e condicións que debes aceptar"
278
-
279
- #: contact-form-7/includes/functions.php:27
280
- msgid "Please accept the terms to proceed."
281
- msgstr "Por favor acepta os termos e condicións para continuar."
282
-
283
- #: contact-form-7/includes/functions.php:31
284
- msgid "Email address that sender entered is invalid"
285
- msgstr "O email introducido é incorrecto."
286
-
287
- #: contact-form-7/includes/functions.php:32
288
- msgid "Email address seems invalid."
289
- msgstr "O email parece incorrecto."
290
-
291
- #: contact-form-7/includes/functions.php:36
292
- msgid "There is a field that sender is needed to fill in"
293
- msgstr "Hai un campo que tes que completar"
294
-
295
- #: contact-form-7/includes/functions.php:37
296
- msgid "Please fill the required field."
297
- msgstr "Por favor completa o campo obrigatorio."
298
-
299
- #: contact-form-7/includes/functions.php:46
300
- msgid "Your Name"
301
- msgstr "O teu nome"
302
-
303
- #: contact-form-7/includes/functions.php:46
304
- #: contact-form-7/includes/functions.php:48
305
- msgid "(required)"
306
- msgstr "(obrigatorio)"
307
-
308
- #: contact-form-7/includes/functions.php:48
309
- msgid "Your Email"
310
- msgstr "O teu email"
311
-
312
- #: contact-form-7/includes/functions.php:50
313
- msgid "Subject"
314
- msgstr "Asunto"
315
-
316
- #: contact-form-7/includes/functions.php:52
317
- msgid "Your Message"
318
- msgstr "A túa mensaxe"
319
-
320
- #: contact-form-7/includes/functions.php:54
321
- msgid "Send"
322
- msgstr "Enviar"
323
-
324
- #: contact-form-7/includes/functions.php:62
325
- msgid "From: %s"
326
- msgstr "De: %s"
327
-
328
- #: contact-form-7/includes/functions.php:63
329
- msgid "Subject: %s"
330
- msgstr "Asunto: %s"
331
-
332
- #: contact-form-7/includes/functions.php:64
333
- msgid "Message Body:"
334
- msgstr "Corpo da mensaxe:"
335
-
336
- #: contact-form-7/includes/functions.php:65
337
- #: contact-form-7/includes/functions.php:79
338
- #, php-format
339
- msgid "This mail is sent via contact form on %1$s %2$s"
340
- msgstr "Este email foi enviado via formulario de contacto en %1$s %2$s"
341
-
342
- #: contact-form-7/includes/functions.php:168
343
- msgid "Afrikaans"
344
- msgstr "Afrikáans"
345
-
346
- #: contact-form-7/includes/functions.php:169
347
- msgid "Albanian"
348
- msgstr "Albano"
349
-
350
- #: contact-form-7/includes/functions.php:170
351
- msgid "Arabic"
352
- msgstr "Árabe"
353
-
354
- #: contact-form-7/includes/functions.php:171
355
- msgid "Bangla"
356
- msgstr "Bengalí"
357
-
358
- #: contact-form-7/includes/functions.php:172
359
- msgid "Bosnian"
360
- msgstr "Bosnio"
361
-
362
- #: contact-form-7/includes/functions.php:173
363
- msgid "Brazilian Portuguese"
364
- msgstr "Portugués (Brasileño)"
365
-
366
- #: contact-form-7/includes/functions.php:174
367
- msgid "Bulgarian"
368
- msgstr "Búlgaro"
369
-
370
- #: contact-form-7/includes/functions.php:175
371
- msgid "Catalan"
372
- msgstr "Catalán"
373
-
374
- #: contact-form-7/includes/functions.php:176
375
- msgid "Chinese (Simplified)"
376
- msgstr "Chino (Simplificado)"
377
-
378
- #: contact-form-7/includes/functions.php:177
379
- msgid "Chinese (Traditional)"
380
- msgstr "Chino (Tradicional)"
381
-
382
- #: contact-form-7/includes/functions.php:178
383
- msgid "Croatian"
384
- msgstr "Croata"
385
-
386
- #: contact-form-7/includes/functions.php:179
387
- msgid "Czech"
388
- msgstr "Checo"
389
-
390
- #: contact-form-7/includes/functions.php:180
391
- msgid "Danish"
392
- msgstr "Danés"
393
-
394
- #: contact-form-7/includes/functions.php:181
395
- msgid "Dutch"
396
- msgstr "Holandés"
397
-
398
- #: contact-form-7/includes/functions.php:182
399
- msgid "English"
400
- msgstr "Inglés"
401
-
402
- #: contact-form-7/includes/functions.php:183
403
- msgid "Estonian"
404
- msgstr "Estonio"
405
-
406
- #: contact-form-7/includes/functions.php:184
407
- msgid "Finnish"
408
- msgstr "Finlandés"
409
-
410
- #: contact-form-7/includes/functions.php:185
411
- msgid "French"
412
- msgstr "Francés"
413
-
414
- #: contact-form-7/includes/functions.php:186
415
- msgid "Georgian"
416
- msgstr "Xeorxiano"
417
-
418
- #: contact-form-7/includes/functions.php:187
419
- msgid "German"
420
- msgstr "Alemán"
421
-
422
- #: contact-form-7/includes/functions.php:188
423
- msgid "Greek"
424
- msgstr "Grego"
425
-
426
- #: contact-form-7/includes/functions.php:189
427
- msgid "Hebrew"
428
- msgstr "Hebreo"
429
-
430
- #: contact-form-7/includes/functions.php:190
431
- msgid "Hindi"
432
- msgstr "Hindi"
433
-
434
- #: contact-form-7/includes/functions.php:191
435
- msgid "Hungarian"
436
- msgstr "Húngaro"
437
-
438
- #: contact-form-7/includes/functions.php:192
439
- msgid "Indonesian"
440
- msgstr "Indonesio"
441
-
442
- #: contact-form-7/includes/functions.php:193
443
- msgid "Italian"
444
- msgstr "Italiano"
445
-
446
- #: contact-form-7/includes/functions.php:194
447
- msgid "Japanese"
448
- msgstr "Xaponés"
449
-
450
- #: contact-form-7/includes/functions.php:195
451
- msgid "Korean"
452
- msgstr "Coreano"
453
-
454
- #: contact-form-7/includes/functions.php:196
455
- msgid "Latvian"
456
- msgstr "Letón"
457
-
458
- #: contact-form-7/includes/functions.php:197
459
- msgid "Lithuanian"
460
- msgstr "Lituano"
461
-
462
- #: contact-form-7/includes/functions.php:198
463
- msgid "Malayalam"
464
- msgstr "Malabar"
465
-
466
- #: contact-form-7/includes/functions.php:199
467
- msgid "Norwegian"
468
- msgstr "Noruego"
469
-
470
- #: contact-form-7/includes/functions.php:200
471
- msgid "Persian"
472
- msgstr "Persa"
473
-
474
- #: contact-form-7/includes/functions.php:201
475
- msgid "Polish"
476
- msgstr "Polaco"
477
-
478
- #: contact-form-7/includes/functions.php:202
479
- msgid "Portuguese"
480
- msgstr "Portugués"
481
-
482
- #: contact-form-7/includes/functions.php:203
483
- msgid "Russian"
484
- msgstr "Ruso"
485
-
486
- #: contact-form-7/includes/functions.php:204
487
- msgid "Romanian"
488
- msgstr "Rumano"
489
-
490
- #: contact-form-7/includes/functions.php:205
491
- msgid "Serbian"
492
- msgstr "Serbio"
493
-
494
- #: contact-form-7/includes/functions.php:206
495
- msgid "Slovak"
496
- msgstr "Eslovaco"
497
-
498
- #: contact-form-7/includes/functions.php:207
499
- msgid "Slovene"
500
- msgstr "Esloveno"
501
-
502
- #: contact-form-7/includes/functions.php:208
503
- msgid "Spanish"
504
- msgstr "Español"
505
-
506
- #: contact-form-7/includes/functions.php:209
507
- msgid "Swedish"
508
- msgstr "Sueco"
509
-
510
- #: contact-form-7/includes/functions.php:210
511
- msgid "Thai"
512
- msgstr "Tailandés"
513
-
514
- #: contact-form-7/includes/functions.php:211
515
- msgid "Turkish"
516
- msgstr "Turco"
517
-
518
- #: contact-form-7/includes/functions.php:212
519
- msgid "Ukrainian"
520
- msgstr "Ucraniano"
521
-
522
- #: contact-form-7/includes/functions.php:213
523
- msgid "Vietnamese"
524
- msgstr "Vietnamita"
525
-
526
- #: contact-form-7/modules/acceptance.php:96
527
- msgid "Acceptance"
528
- msgstr "Aceptación"
529
-
530
- #: contact-form-7/modules/acceptance.php:105
531
- #: contact-form-7/modules/captcha.php:206
532
- #: contact-form-7/modules/checkbox.php:198
533
- #: contact-form-7/modules/file.php:234
534
- msgid "Name"
535
- msgstr "Nome"
536
-
537
- #: contact-form-7/modules/acceptance.php:110
538
- #: contact-form-7/modules/acceptance.php:113
539
- #: contact-form-7/modules/captcha.php:213
540
- #: contact-form-7/modules/captcha.php:216
541
- #: contact-form-7/modules/captcha.php:221
542
- #: contact-form-7/modules/captcha.php:224
543
- #: contact-form-7/modules/captcha.php:228
544
- #: contact-form-7/modules/captcha.php:239
545
- #: contact-form-7/modules/captcha.php:242
546
- #: contact-form-7/modules/captcha.php:247
547
- #: contact-form-7/modules/captcha.php:250
548
- #: contact-form-7/modules/checkbox.php:203
549
- #: contact-form-7/modules/checkbox.php:206
550
- #: contact-form-7/modules/file.php:239
551
- #: contact-form-7/modules/file.php:242
552
- #: contact-form-7/modules/file.php:247
553
- #: contact-form-7/modules/file.php:250
554
- msgid "optional"
555
- msgstr "opcional"
556
-
557
- #: contact-form-7/modules/acceptance.php:119
558
- msgid "Make this checkbox checked by default?"
559
- msgstr "Facer que esta casiña esté marcada por defecto?"
560
-
561
- #: contact-form-7/modules/acceptance.php:120
562
- msgid "Make this checkbox work inversely?"
563
- msgstr "Facer que esta casiña funcione á inversa?"
564
-
565
- #: contact-form-7/modules/acceptance.php:121
566
- msgid "* That means visitor who accepts the term unchecks it."
567
- msgstr "* Significa que o visitante que acepta os termos ten que quitar a marca da casiña."
568
-
569
- #: contact-form-7/modules/acceptance.php:126
570
- #: contact-form-7/modules/captcha.php:255
571
- #: contact-form-7/modules/checkbox.php:226
572
- #: contact-form-7/modules/file.php:255
573
- msgid "Copy this code and paste it into the form left."
574
- msgstr "Copia este código e pégao no formulario á esquerda."
575
-
576
- #: contact-form-7/modules/captcha.php:65
577
- msgid "To use CAPTCHA, you need <a href=\"http://wordpress.org/extend/plugins/really-simple-captcha/\">Really Simple CAPTCHA</a> plugin installed."
578
- msgstr "Para usar CAPTCHA, necesitar ter instalado o plugin <a href=\"http://wordpress.org/extend/plugins/really-simple-captcha/\">Really Simple CAPTCHA</a>."
579
-
580
- #: contact-form-7/modules/captcha.php:181
581
- msgid "The code that sender entered does not match the CAPTCHA"
582
- msgstr "O código introducido non coincide co CAPTCHA"
583
-
584
- #: contact-form-7/modules/captcha.php:182
585
- msgid "Your entered code is incorrect."
586
- msgstr "O código introducido é incorrecto."
587
-
588
- #: contact-form-7/modules/captcha.php:192
589
- msgid "CAPTCHA"
590
- msgstr "CAPTCHA"
591
-
592
- #: contact-form-7/modules/captcha.php:203
593
- msgid "Note: To use CAPTCHA, you need Really Simple CAPTCHA plugin installed."
594
- msgstr "Nota: para usar CAPTCHA, necesitar ter instalado o plugin Really Simple CAPTCHA."
595
-
596
- #: contact-form-7/modules/captcha.php:210
597
- msgid "Image settings"
598
- msgstr "Opcións de imaxe"
599
-
600
- #: contact-form-7/modules/captcha.php:221
601
- msgid "Foreground color"
602
- msgstr "Color de fronte"
603
-
604
- #: contact-form-7/modules/captcha.php:224
605
- msgid "Background color"
606
- msgstr "Color de fondo"
607
-
608
- #: contact-form-7/modules/captcha.php:228
609
- msgid "Image size"
610
- msgstr "Tamaño de imaxe"
611
-
612
- #: contact-form-7/modules/captcha.php:229
613
- msgid "Small"
614
- msgstr "Pequeno"
615
-
616
- #: contact-form-7/modules/captcha.php:230
617
- msgid "Medium"
618
- msgstr "Mediano"
619
-
620
- #: contact-form-7/modules/captcha.php:231
621
- msgid "Large"
622
- msgstr "Grande"
623
-
624
- #: contact-form-7/modules/captcha.php:236
625
- msgid "Input field settings"
626
- msgstr "Opcións de campo de entrada"
627
-
628
- #: contact-form-7/modules/captcha.php:256
629
- msgid "For image"
630
- msgstr "Para imaxe"
631
-
632
- #: contact-form-7/modules/captcha.php:258
633
- msgid "For input field"
634
- msgstr "Para campo de entrada"
635
-
636
- #: contact-form-7/modules/captcha.php:288
637
- #, php-format
638
- 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."
639
- msgstr "Este formulario de contacto contén campos CAPTCHA, pero o directorio temporal de arquivos (%s) non existe ou non se pode escribir. Dedes crear o directorio ou cambiar os permisos manualmente."
640
-
641
- #: contact-form-7/modules/captcha.php:294
642
- msgid "This contact form contains CAPTCHA fields, but the necessary libraries (GD and FreeType) are not available on your server."
643
- msgstr "Este formulario de contacto contén campos CAPTCHA, pero as librerías necesarias (GD e FreeType) non están dispoñibles no teu servidor."
644
-
645
- #: contact-form-7/modules/checkbox.php:171
646
- msgid "Checkboxes"
647
- msgstr "Checkboxes"
648
-
649
- #: contact-form-7/modules/checkbox.php:174
650
- msgid "Radio buttons"
651
- msgstr "Botóns de opción"
652
-
653
- #: contact-form-7/modules/checkbox.php:195
654
- #: contact-form-7/modules/file.php:233
655
- msgid "Required field?"
656
- msgstr "Campo obrigatorio?"
657
-
658
- #: contact-form-7/modules/checkbox.php:211
659
- msgid "Choices"
660
- msgstr "Opcións"
661
-
662
- #: contact-form-7/modules/checkbox.php:213
663
- msgid "* One choice per line."
664
- msgstr "* Unha opción por línea"
665
-
666
- #: contact-form-7/modules/checkbox.php:217
667
- msgid "Put a label first, a checkbox last?"
668
- msgstr "Poñer a etiqueta primeiro, o checkbox despois?"
669
-
670
- #: contact-form-7/modules/checkbox.php:218
671
- msgid "Wrap each item with <label> tag?"
672
- msgstr "Rodear cada elemento cunha etiqueta <label>?"
673
-
674
- #: contact-form-7/modules/checkbox.php:220
675
- msgid "Make checkboxes exclusive?"
676
- msgstr "Facer que as casiñas sexan mutuamente exclusivas?"
677
-
678
- #: contact-form-7/modules/checkbox.php:228
679
- msgid "And, put this code into the Mail fields below."
680
- msgstr "E, poñer este código nos campos Correo abaixo."
681
-
682
- #: contact-form-7/modules/file.php:197
683
- msgid "Uploading a file fails for any reason"
684
- msgstr "A subida dun arquivo fallou"
685
-
686
- #: contact-form-7/modules/file.php:198
687
- msgid "Failed to upload file."
688
- msgstr "Non se puido subir o arquivo."
689
-
690
- #: contact-form-7/modules/file.php:202
691
- msgid "Uploaded file is not allowed file type"
692
- msgstr "O arquivo subido non é dun tipo permitido"
693
-
694
- #: contact-form-7/modules/file.php:203
695
- msgid "This file type is not allowed."
696
- msgstr "O tipo de arquivo non está permitido."
697
-
698
- #: contact-form-7/modules/file.php:207
699
- msgid "Uploaded file is too large"
700
- msgstr "O arquivo subido é demasiado grande"
701
-
702
- #: contact-form-7/modules/file.php:208
703
- msgid "This file is too large."
704
- msgstr "O arquivo é demasiado grande."
705
-
706
- #: contact-form-7/modules/file.php:212
707
- msgid "Uploading a file fails for PHP error"
708
- msgstr "Fallou a subida do arquivo"
709
-
710
- #: contact-form-7/modules/file.php:213
711
- msgid "Failed to upload file. Error occurred."
712
- msgstr "Fallou a subida do arquivo"
713
-
714
- #: contact-form-7/modules/file.php:224
715
- msgid "File upload"
716
- msgstr "Subida de arquivos"
717
-
718
- #: contact-form-7/modules/file.php:247
719
- msgid "File size limit"
720
- msgstr "Limite de tamaño de arquivo"
721
-
722
- #: contact-form-7/modules/file.php:247
723
- msgid "bytes"
724
- msgstr "bytes"
725
-
726
- #: contact-form-7/modules/file.php:250
727
- msgid "Acceptable file types"
728
- msgstr "Tipos de arquivo aceptados"
729
-
730
- #: contact-form-7/modules/file.php:257
731
- msgid "And, put this code into the File Attachments field below."
732
- msgstr "E, poñer este código nos campos Ficheiros adxuntos abaixo."
733
-
734
- #: contact-form-7/modules/file.php:282
735
- #, php-format
736
- 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."
737
- msgstr "Este formulario de contacto contén campos Subir ficheiros, pero o directorio temporal de arquivos (%s) non existe ou non se pode escribir. Dedes crear o directorio ou cambiar os permisos manualmente."
738
-
739
- #: contact-form-7/modules/icl.php:74
740
- 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."
741
- msgstr "Este formulario de contacto contén etiquetas [icl], pero estas son obsoletas e xa non funcionan nesta versión de Contact Form 7. <a href=\"http://contactform7.com/2009/12/25/contact-form-in-your-language/#Creating_contact_form_in_different_languages\" target=\"_blank\">Hai unha forma máis fácil de crear formularios de contaco en outro idiomas</a> e recomendámosche que a uses."
742
-
743
- #: contact-form-7/modules/quiz.php:164
744
- msgid "Sender doesn't enter the correct answer to the quiz"
745
- msgstr "Non introduciches a resposta correcta á adiviña"
746
-
747
- #: contact-form-7/modules/quiz.php:165
748
- msgid "Your answer is not correct."
749
- msgstr "A túa resposta non é correcta."
750
-
751
- #: contact-form-7/modules/quiz.php:175
752
- msgid "Quiz"
753
- msgstr "Adiviña"
754
-
755
- #: contact-form-7/modules/quiz.php:205
756
- msgid "Quizzes"
757
- msgstr "Adiviñas"
758
-
759
- #: contact-form-7/modules/quiz.php:207
760
- msgid "* quiz|answer (e.g. 1+1=?|2)"
761
- msgstr "* adiviña|resposta (por exemplo 1+1=?|2)"
762
-
763
- #: contact-form-7/modules/select.php:146
764
- msgid "Drop-down menu"
765
- msgstr "Menú despregable"
766
-
767
- #: contact-form-7/modules/select.php:175
768
- msgid "Allow multiple selections?"
769
- msgstr "Permitir seleccións múltiples?"
770
-
771
- #: contact-form-7/modules/select.php:176
772
- msgid "Insert a blank item as the first option?"
773
- msgstr "Insertar un elemento en branco como primeira opción?"
774
-
775
- #: contact-form-7/modules/submit.php:55
776
- msgid "Submit button"
777
- msgstr "Botón enviar"
778
-
779
- #: contact-form-7/modules/submit.php:73
780
- msgid "Label"
781
- msgstr "Etiqueta"
782
-
783
- #: contact-form-7/modules/text.php:129
784
- msgid "Text field"
785
- msgstr "Campo de texto"
786
-
787
- #: contact-form-7/modules/text.php:132
788
- msgid "Email field"
789
- msgstr "Campo de email"
790
-
791
- #: contact-form-7/modules/text.php:174
792
- msgid "Akismet"
793
- msgstr "Akismet"
794
-
795
- #: contact-form-7/modules/text.php:176
796
- msgid "This field requires author's name"
797
- msgstr "Este campo require o nome do autor"
798
-
799
- #: contact-form-7/modules/text.php:177
800
- msgid "This field requires author's URL"
801
- msgstr "Este campo require a URL do autor"
802
-
803
- #: contact-form-7/modules/text.php:179
804
- msgid "This field requires author's email address"
805
- msgstr "Este campo require o email do autor"
806
-
807
- #: contact-form-7/modules/text.php:183
808
- #: contact-form-7/modules/textarea.php:149
809
- msgid "Default value"
810
- msgstr "Valor por defecto"
811
-
812
- #: contact-form-7/modules/textarea.php:118
813
- msgid "Text area"
814
- msgstr "Área de texto"
815
-
816
- #~ msgid "Delete this contact form"
817
- #~ msgstr "Borrar este formulario de contacto"
818
-
819
- #~ msgid "(You need WordPress 2.7 or greater to use this feature)"
820
- #~ msgstr ""
821
- #~ "(Se requiere WordPress 2.7 o superior para usar esta característica)"
822
-
823
- #~ msgid "Form content"
824
- #~ msgstr "Contenido del formulario"
825
-
826
- #~ msgid "Mail template"
827
- #~ msgstr "Plantilla del email"
828
-
829
- #~ msgid "Sender field:"
830
- #~ msgstr "Campo de remitente:"
831
-
832
- #~ msgid "Recipient address:"
833
- #~ msgstr "Dirección del destinatario:"
834
-
835
- #~ msgid "Insert"
836
- #~ msgstr "Insertar"
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
languages/wpcf7-he_IL.po DELETED
@@ -1,509 +0,0 @@
1
- msgid ""
2
- msgstr ""
3
- "Project-Id-Version: contactform7\n"
4
- "Report-Msgid-Bugs-To: \n"
5
- "POT-Creation-Date: 2009-09-26 04:03+0900\n"
6
- "PO-Revision-Date: \n"
7
- "Last-Translator: Yaron Ofer <info@gadgetguru.co.il>\n"
8
- "Language-Team: GadgetGuru DevTeam <info@gadgetguru.co.il>\n"
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: Hebrew\n"
13
- "X-Poedit-Country: ISRAEL\n"
14
- "X-Poedit-SourceCharset: utf-8\n"
15
-
16
- #: contact-form-7/admin/admin-panel.php:9
17
- #, php-format
18
- msgid "<strong>The database table for Contact Form 7 does not exist.</strong> You must <a href=\"%s\">create the table</a> for it to work."
19
- msgstr "<strong>אין טבלת מסד הנתונים עבור Contact Form 7.</ strong> חובה <a href=\"%s\">ליצור את הטבלה</a> בשביל שזה יעבוד"
20
-
21
- #: contact-form-7/admin/admin-panel.php:12
22
- msgid "<strong>The database table for Contact Form 7 does not exist.</strong>"
23
- msgstr "<strong>טבלת מסד הנתונים עבור Contact Form 7 אינה קיימת.</ strong>"
24
-
25
- #: contact-form-7/admin/admin-panel.php:17
26
- #: contact-form-7/admin/admin-panel.php:30
27
- #: contact-form-7/admin/admin.php:121
28
- #: contact-form-7/includes/functions.php:52
29
- msgid "Contact Form 7"
30
- msgstr "Contact Form 7"
31
-
32
- #: contact-form-7/admin/admin-panel.php:45
33
- msgid "Add new"
34
- msgstr "הוסף טופס חדש"
35
-
36
- #: contact-form-7/admin/admin-panel.php:67
37
- msgid "Copy this code and paste it into your post, page or text widget content."
38
- msgstr "העתק קוד זה והדבק אותו לכתבה, דף ביישומון טקסט text widget."
39
-
40
- #: contact-form-7/admin/admin-panel.php:75
41
- #: contact-form-7/admin/admin-panel.php:332
42
- msgid "Save"
43
- msgstr "שמור"
44
-
45
- #: contact-form-7/admin/admin-panel.php:82
46
- msgid "Copy"
47
- msgstr "להעתיק"
48
-
49
- #: contact-form-7/admin/admin-panel.php:87
50
- msgid "Delete"
51
- msgstr "למחוק"
52
-
53
- #: contact-form-7/admin/admin-panel.php:89
54
- msgid ""
55
- "You are about to delete this contact form.\n"
56
- " 'Cancel' to stop, 'OK' to delete."
57
- msgstr ""
58
- "אתה עומד למחוק את הטופס .\n"
59
- "לחץ 'ביטול' כדי לעצור, 'אישור' כדי למחוק."
60
-
61
- #: contact-form-7/admin/admin-panel.php:102
62
- msgid "Form"
63
- msgstr "טופס"
64
-
65
- #: contact-form-7/admin/admin-panel.php:120
66
- msgid "Mail"
67
- msgstr "דואר"
68
-
69
- #: contact-form-7/admin/admin-panel.php:127
70
- #: contact-form-7/admin/admin-panel.php:188
71
- msgid "To:"
72
- msgstr "אל:"
73
-
74
- #: contact-form-7/admin/admin-panel.php:132
75
- #: contact-form-7/admin/admin-panel.php:193
76
- msgid "From:"
77
- msgstr "מאת:"
78
-
79
- #: contact-form-7/admin/admin-panel.php:137
80
- #: contact-form-7/admin/admin-panel.php:198
81
- msgid "Subject:"
82
- msgstr "נושא:"
83
-
84
- #: contact-form-7/admin/admin-panel.php:144
85
- #: contact-form-7/admin/admin-panel.php:205
86
- msgid "Additional headers:"
87
- msgstr "כותרות נוספות:"
88
-
89
- #: contact-form-7/admin/admin-panel.php:149
90
- #: contact-form-7/admin/admin-panel.php:210
91
- msgid "File attachments:"
92
- msgstr "קבצים מצורפים:"
93
-
94
- #: contact-form-7/admin/admin-panel.php:157
95
- #: contact-form-7/admin/admin-panel.php:218
96
- msgid "Use HTML content type"
97
- msgstr "השתמש בתוכן מסוג HTML"
98
-
99
- #: contact-form-7/admin/admin-panel.php:164
100
- #: contact-form-7/admin/admin-panel.php:225
101
- #: contact-form-7/includes/functions.php:50
102
- msgid "Message body:"
103
- msgstr "תוכן ההודעה:"
104
-
105
- #: contact-form-7/admin/admin-panel.php:174
106
- msgid "Mail (2)"
107
- msgstr "דואר 2"
108
-
109
- #: contact-form-7/admin/admin-panel.php:180
110
- msgid "Use mail (2)"
111
- msgstr "שימוש בדואר (2)"
112
-
113
- #: contact-form-7/admin/admin-panel.php:235
114
- msgid "Messages"
115
- msgstr "הודעות"
116
-
117
- #: contact-form-7/admin/admin-panel.php:243
118
- msgid "Sender's message was sent successfully"
119
- msgstr "ההודעה של השולח נשלחה בהצלחה."
120
-
121
- #: contact-form-7/admin/admin-panel.php:248
122
- msgid "Sender's message was failed to send"
123
- msgstr "נכשל ניסיון שליחת ההודעה של השולח "
124
-
125
- #: contact-form-7/admin/admin-panel.php:253
126
- msgid "Akismet judged the sending activity as spamming"
127
- msgstr "Akismet החליט שהשליחה מזוהה כמו שליחת דואר זבל"
128
-
129
- #: contact-form-7/admin/admin-panel.php:258
130
- msgid "Validation errors occurred"
131
- msgstr "עלו שגיאות אימות"
132
-
133
- #: contact-form-7/admin/admin-panel.php:263
134
- msgid "There is a field that sender is needed to fill in"
135
- msgstr "יש שדה שהשולח צריך למלא"
136
-
137
- #: contact-form-7/admin/admin-panel.php:268
138
- msgid "Email address that sender entered is invalid"
139
- msgstr "כתובת דוא\"ל השולח שהזנת אינה חוקית"
140
-
141
- #: contact-form-7/admin/admin-panel.php:273
142
- msgid "There is a field of term that sender is needed to accept"
143
- msgstr "יש שדה של תנאים שהשולח צריך לאשר"
144
-
145
- #: contact-form-7/admin/admin-panel.php:278
146
- msgid "Sender doesn't enter the correct answer to the quiz"
147
- msgstr "השולח לא להזין את התשובה הנכונה לשאלה"
148
-
149
- #: contact-form-7/admin/admin-panel.php:283
150
- msgid "The code that sender entered does not match the CAPTCHA"
151
- msgstr "הקוד שהשולח הזין אינו תואם את ה CAPTCHA"
152
-
153
- #: contact-form-7/admin/admin-panel.php:288
154
- msgid "Uploading a file fails for any reason"
155
- msgstr "טעינת הקובץ נכשלה מסיבה כלשהי"
156
-
157
- #: contact-form-7/admin/admin-panel.php:293
158
- msgid "Uploaded file is not allowed file type"
159
- msgstr "הקובץ שהועלה אינו סוג קובץ שניתן להעלות"
160
-
161
- #: contact-form-7/admin/admin-panel.php:298
162
- msgid "Uploaded file is too large"
163
- msgstr "הקובץ שהועלה גדול מדי"
164
-
165
- #: contact-form-7/admin/admin-panel.php:303
166
- msgid "Uploading a file fails for PHP error"
167
- msgstr "טעינת קובץ נכשל בגלל שגיאת PHP"
168
-
169
- #: contact-form-7/admin/admin-panel.php:314
170
- msgid "Additional Settings"
171
- msgstr "הגדרות נוספות"
172
-
173
- #: contact-form-7/admin/admin.php:121
174
- msgid "Contact"
175
- msgstr "צור קשר"
176
-
177
- #: contact-form-7/admin/admin.php:125
178
- msgid "Edit Contact Forms"
179
- msgstr "עריכת טפסי צור קשר"
180
-
181
- #: contact-form-7/admin/admin.php:125
182
- msgid "Edit"
183
- msgstr "עריכה"
184
-
185
- #: contact-form-7/admin/admin.php:185
186
- msgid "optional"
187
- msgstr "אופציונלי"
188
-
189
- #: contact-form-7/admin/admin.php:186
190
- msgid "Generate Tag"
191
- msgstr "צור תג"
192
-
193
- #: contact-form-7/admin/admin.php:187
194
- msgid "Text field"
195
- msgstr "שדה טקסט"
196
-
197
- #: contact-form-7/admin/admin.php:188
198
- msgid "Email field"
199
- msgstr "שדה דואר אלקטרוני"
200
-
201
- #: contact-form-7/admin/admin.php:189
202
- msgid "Text area"
203
- msgstr "אזור טקסט"
204
-
205
- #: contact-form-7/admin/admin.php:190
206
- msgid "Drop-down menu"
207
- msgstr "תפריט נפתח"
208
-
209
- #: contact-form-7/admin/admin.php:191
210
- msgid "Checkboxes"
211
- msgstr "תיבת בחירה"
212
-
213
- #: contact-form-7/admin/admin.php:192
214
- msgid "Radio buttons"
215
- msgstr "כפתורי רדיו"
216
-
217
- #: contact-form-7/admin/admin.php:193
218
- msgid "Acceptance"
219
- msgstr "כפתור אישרור"
220
-
221
- #: contact-form-7/admin/admin.php:194
222
- msgid "Make this checkbox checked by default?"
223
- msgstr "הפוך את תיבת הבחירה מסומנת כברירת מחדל?"
224
-
225
- #: contact-form-7/admin/admin.php:195
226
- msgid "Make this checkbox work inversely?"
227
- msgstr "לשנות שתיבת הבחירה תעבוד הפוך?"
228
-
229
- #: contact-form-7/admin/admin.php:196
230
- msgid "* That means visitor who accepts the term unchecks it."
231
- msgstr "* כלומר, גולש שמקבל את התנאי צריך להסיר את הסימון."
232
-
233
- #: contact-form-7/admin/admin.php:197
234
- msgid "CAPTCHA"
235
- msgstr "CAPTCHA אנטי ספאם"
236
-
237
- #: contact-form-7/admin/admin.php:198
238
- msgid "Quiz"
239
- msgstr "שאלה"
240
-
241
- #: contact-form-7/admin/admin.php:199
242
- msgid "Quizzes"
243
- msgstr "שאלות"
244
-
245
- #: contact-form-7/admin/admin.php:200
246
- msgid "* quiz|answer (e.g. 1+1=?|2)"
247
- msgstr "* שאלה | תשובה (כגון . 1+1=?|2)"
248
-
249
- #: contact-form-7/admin/admin.php:201
250
- msgid "File upload"
251
- msgstr "העלאת קבצים"
252
-
253
- #: contact-form-7/admin/admin.php:202
254
- msgid "bytes"
255
- msgstr "bytes"
256
-
257
- #: contact-form-7/admin/admin.php:203
258
- msgid "Submit button"
259
- msgstr "לחצן שלח"
260
-
261
- #: contact-form-7/admin/admin.php:204
262
- msgid "Name"
263
- msgstr "שם"
264
-
265
- #: contact-form-7/admin/admin.php:205
266
- msgid "Required field?"
267
- msgstr "שדה חובה?"
268
-
269
- #: contact-form-7/admin/admin.php:206
270
- msgid "Allow multiple selections?"
271
- msgstr "אפשר בחירות מרובות?"
272
-
273
- #: contact-form-7/admin/admin.php:207
274
- msgid "Insert a blank item as the first option?"
275
- msgstr "הוספת שדה ריק באפשרות הראשונה?"
276
-
277
- #: contact-form-7/admin/admin.php:208
278
- msgid "Make checkboxes exclusive?"
279
- msgstr "הפוך תיבת בחירה לבלעדית?"
280
-
281
- #: contact-form-7/admin/admin.php:209
282
- msgid "Choices"
283
- msgstr "בחירות"
284
-
285
- #: contact-form-7/admin/admin.php:210
286
- msgid "Label"
287
- msgstr "תווית"
288
-
289
- #: contact-form-7/admin/admin.php:211
290
- msgid "Default value"
291
- msgstr "ערך ברירת מחדל"
292
-
293
- #: contact-form-7/admin/admin.php:212
294
- msgid "Akismet"
295
- msgstr "Akismet - בודק תגובות זבל"
296
-
297
- #: contact-form-7/admin/admin.php:213
298
- msgid "This field requires author's name"
299
- msgstr "שדה זה דורש את השם הכותב"
300
-
301
- #: contact-form-7/admin/admin.php:214
302
- msgid "This field requires author's URL"
303
- msgstr "שדה זה דורש את הכתובת של הכותב"
304
-
305
- #: contact-form-7/admin/admin.php:215
306
- msgid "This field requires author's email address"
307
- msgstr "שדה זה דורש הדואר האלקטרוני של הכותב"
308
-
309
- #: contact-form-7/admin/admin.php:216
310
- msgid "Copy this code and paste it into the form left."
311
- msgstr "עתק קוד זה והדבק אותו בצידו השמאלי של הטופס."
312
-
313
- #: contact-form-7/admin/admin.php:217
314
- msgid "Foreground color"
315
- msgstr "צבע רקע קדמי"
316
-
317
- #: contact-form-7/admin/admin.php:218
318
- msgid "Background color"
319
- msgstr "צבע רקע"
320
-
321
- #: contact-form-7/admin/admin.php:219
322
- msgid "Image size"
323
- msgstr "גודל תמונה"
324
-
325
- #: contact-form-7/admin/admin.php:220
326
- msgid "Small"
327
- msgstr "קטנה"
328
-
329
- #: contact-form-7/admin/admin.php:221
330
- msgid "Medium"
331
- msgstr "בינונית"
332
-
333
- #: contact-form-7/admin/admin.php:222
334
- msgid "Large"
335
- msgstr "גדולה"
336
-
337
- #: contact-form-7/admin/admin.php:223
338
- msgid "Image settings"
339
- msgstr "הגדרות תמונה"
340
-
341
- #: contact-form-7/admin/admin.php:224
342
- msgid "Input field settings"
343
- msgstr "הגדרות שדה קלט"
344
-
345
- #: contact-form-7/admin/admin.php:225
346
- msgid "For image"
347
- msgstr "עבור תמונה"
348
-
349
- #: contact-form-7/admin/admin.php:226
350
- msgid "For input field"
351
- msgstr "עבור שדה קלט"
352
-
353
- #: contact-form-7/admin/admin.php:227
354
- msgid "* One choice per line."
355
- msgstr "* בכל שורה בחירה אחד."
356
-
357
- #: contact-form-7/admin/admin.php:228
358
- msgid "Show"
359
- msgstr "להציג"
360
-
361
- #: contact-form-7/admin/admin.php:229
362
- msgid "Hide"
363
- msgstr "להסתיר"
364
-
365
- #: contact-form-7/admin/admin.php:230
366
- msgid "File size limit"
367
- msgstr "גודל קובץ מקסימלי"
368
-
369
- #: contact-form-7/admin/admin.php:231
370
- msgid "Acceptable file types"
371
- msgstr "סוגי קבצים מקובלים"
372
-
373
- #: contact-form-7/admin/admin.php:232
374
- msgid "Note: To use CAPTCHA, you need Really Simple CAPTCHA plugin installed."
375
- msgstr "הערה: כדי להשתמש CAPTCHA, אתה צריך את התוסף Really Simple CAPTCHA מותקן."
376
-
377
- #: contact-form-7/admin/admin.php:241
378
- msgid "Contact form created."
379
- msgstr "נוצר טופס יצירת קשר ."
380
-
381
- #: contact-form-7/admin/admin.php:244
382
- msgid "Contact form saved."
383
- msgstr "נשמר טופס יצירת קשר."
384
-
385
- #: contact-form-7/admin/admin.php:247
386
- msgid "Contact form deleted."
387
- msgstr "הטופס נמחק."
388
-
389
- #: contact-form-7/admin/admin.php:250
390
- msgid "Database table created."
391
- msgstr "נוצרה טבלת מסד נתונים."
392
-
393
- #: contact-form-7/admin/admin.php:253
394
- msgid "Failed to create database table."
395
- msgstr "נכשל ניסיון ליצור טבלת מסד נתונים."
396
-
397
- #: contact-form-7/admin/admin.php:328
398
- msgid "Contact form"
399
- msgstr "טופס צור קשר"
400
-
401
- #: contact-form-7/admin/admin.php:347
402
- msgid "Settings"
403
- msgstr "הגדרות"
404
-
405
- #: contact-form-7/admin/admin.php:366
406
- msgid "Contact Form 7 needs your support. Please donate today."
407
- msgstr "Contact Form 7 זקוק לתמיכה שלך. בבקשה תרום היום."
408
-
409
- #: contact-form-7/admin/admin.php:367
410
- msgid "Is this plugin useful for you? If you like it, please help the developer."
411
- msgstr "האם תוסף זה שימושי בשבילך? אם אתה אוהב אותו, בבקשה לסייע למפתח."
412
-
413
- #: contact-form-7/admin/admin.php:368
414
- msgid "Your contribution is needed for making this plugin better."
415
- msgstr "יש צורך בתומתך על מנת שהתוסף יהיה טוב יותר."
416
-
417
- #: contact-form-7/admin/admin.php:369
418
- msgid "Developing a plugin and providing user support is really hard work. Please help."
419
- msgstr "פיתוח תוסף ומתן תמיכה למשתמשים זו עבודה ממש קשה. אנא עזור."
420
-
421
- #: contact-form-7/includes/classes.php:552
422
- msgid "Untitled"
423
- msgstr "ללא כותרת"
424
-
425
- #: contact-form-7/includes/functions.php:6
426
- msgid "Your message was sent successfully. Thanks."
427
- msgstr "ההודעה נשלחה בהצלחה. תודה."
428
-
429
- #: contact-form-7/includes/functions.php:8
430
- #: contact-form-7/includes/functions.php:10
431
- msgid "Failed to send your message. Please try later or contact administrator by other way."
432
- msgstr "אירעה תקלה בשליחה. אנא נסה במועד מאוחר יותר או פנה למנהל המערכת בדרך אחרת."
433
-
434
- #: contact-form-7/includes/functions.php:12
435
- msgid "Validation errors occurred. Please confirm the fields and submit it again."
436
- msgstr "אירעה תקלה. נא לבדוק את השדות ולנסות לשלוח שוב."
437
-
438
- #: contact-form-7/includes/functions.php:14
439
- msgid "Please accept the terms to proceed."
440
- msgstr "לא אישרת את התנאים, נא לאשר על מנת להמשיך."
441
-
442
- #: contact-form-7/includes/functions.php:16
443
- msgid "Email address seems invalid."
444
- msgstr "כתובת האי-מייל כנראה לא תקין."
445
-
446
- #: contact-form-7/includes/functions.php:18
447
- msgid "Please fill the required field."
448
- msgstr "נא למלא את כל שדות החובה."
449
-
450
- #: contact-form-7/includes/functions.php:20
451
- msgid "Your entered code is incorrect."
452
- msgstr "הקוד שהזנת שגוי."
453
-
454
- #: contact-form-7/includes/functions.php:22
455
- msgid "Your answer is not correct."
456
- msgstr "התשובה שלך לא נכונה."
457
-
458
- #: contact-form-7/includes/functions.php:24
459
- msgid "Failed to upload file."
460
- msgstr "טעינת הקובץ נכשלה."
461
-
462
- #: contact-form-7/includes/functions.php:26
463
- msgid "This file type is not allowed."
464
- msgstr "סוג קובץ אסור."
465
-
466
- #: contact-form-7/includes/functions.php:28
467
- msgid "This file is too large."
468
- msgstr "הקובץ גדול מדי, הגבול הוא %s"
469
-
470
- #: contact-form-7/includes/functions.php:30
471
- msgid "Failed to upload file. Error occurred."
472
- msgstr "נכשלה טעינת הקובץ. אירעה שגיאה."
473
-
474
- #: contact-form-7/includes/functions.php:35
475
- msgid "Your Name"
476
- msgstr "השם שלך"
477
-
478
- #: contact-form-7/includes/functions.php:35
479
- #: contact-form-7/includes/functions.php:37
480
- msgid "(required)"
481
- msgstr "(חובה)"
482
-
483
- #: contact-form-7/includes/functions.php:37
484
- msgid "Your Email"
485
- msgstr "הדואר האלקרוני שלך"
486
-
487
- #: contact-form-7/includes/functions.php:39
488
- msgid "Subject"
489
- msgstr "נושא"
490
-
491
- #: contact-form-7/includes/functions.php:41
492
- msgid "Your Message"
493
- msgstr "ההודעה שלך"
494
-
495
- #: contact-form-7/includes/functions.php:43
496
- msgid "Send"
497
- msgstr "שלח"
498
-
499
- #: contact-form-7/includes/functions.php:51
500
- msgid "This mail is created by Contact Form 7 plugin for WordPress."
501
- msgstr "דואר זה נוצר על ידי טופס Contact Form 7 עבור WordPress."
502
-
503
- #: contact-form-7/modules/captcha.php:62
504
- msgid "To use CAPTCHA, you need <a href=\"http://wordpress.org/extend/plugins/really-simple-captcha/\">Really Simple CAPTCHA</a> plugin installed."
505
- msgstr "כדי להשתמש ב CAPTCHA, עליך להתקין את התוסף <a href=\"http://wordpress.org/extend/plugins/really-simple-captcha/\">."
506
-
507
- #~ msgid "Delete this contact form"
508
- #~ msgstr "מחק טופס זה"
509
-
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
languages/wpcf7-hi_IN.po DELETED
@@ -1,804 +0,0 @@
1
- msgid ""
2
- msgstr ""
3
- "Project-Id-Version: Contact Form 7\n"
4
- "Report-Msgid-Bugs-To: \n"
5
- "POT-Creation-Date: 2009-12-21 21:21+0900\n"
6
- "PO-Revision-Date: 2009-12-21 19:19+0530\n"
7
- "Last-Translator: Ashish <ashish@outshinesolutions.com>\n"
8
- "Language-Team: Outshine Solutions <pratyush.krishna@outshinesolutions.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: Hindi\n"
17
- "X-Poedit-Country: INDIA\n"
18
- "X-Poedit-SearchPath-0: contact-form-7\n"
19
-
20
- #: contact-form-7/admin/admin-panel.php:9
21
- #, php-format
22
- 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."
23
- msgstr "<strong>कोन्टक्ट फॉर्म7 के लिए डाटाबेस टेबल मौजूद नहीं है.</strong>आपको <a href=\"%s\">इस काम के लिए </a> टेबल बनाना चाहिए "
24
-
25
- #: contact-form-7/admin/admin-panel.php:12
26
- msgid "<strong>The database table for Contact Form 7 does not exist.</strong>"
27
- msgstr "<strong>कोन्टक्ट फॉर्म7 के लिए डाटाबेस टेबल मौजूद नहीं है </strong>"
28
-
29
- #: contact-form-7/admin/admin-panel.php:17
30
- #: contact-form-7/admin/admin-panel.php:30
31
- #: contact-form-7/admin/admin.php:117
32
- msgid "Contact Form 7"
33
- msgstr "संपर्क प्रपत्र ७"
34
-
35
- #: contact-form-7/admin/admin-panel.php:45
36
- msgid "Add new"
37
- msgstr "नया जोड़ें"
38
-
39
- #: contact-form-7/admin/admin-panel.php:67
40
- msgid "Copy this code and paste it into your post, page or text widget content."
41
- msgstr "इस कोड की नकल करके, प्रविष्टि के अंश में चिपकायें."
42
-
43
- #: contact-form-7/admin/admin-panel.php:75
44
- #: contact-form-7/admin/admin-panel.php:309
45
- msgid "Save"
46
- msgstr "सुरक्षित करें"
47
-
48
- #: contact-form-7/admin/admin-panel.php:82
49
- msgid "Copy"
50
- msgstr "प्रतिलिपि"
51
-
52
- #: contact-form-7/admin/admin-panel.php:87
53
- msgid "Delete"
54
- msgstr "मिटाना"
55
-
56
- #: contact-form-7/admin/admin-panel.php:89
57
- msgid ""
58
- "You are about to delete this contact form.\n"
59
- " 'Cancel' to stop, 'OK' to delete."
60
- msgstr ""
61
- "आप इस संपर्क प्रपत्र को डिलीट करने ही वाले हैं. \n"
62
- " डिलीट नही करने के लिये रद्द करें, डिलीट करने के लिये ओके दबायें"
63
-
64
- #: contact-form-7/admin/admin-panel.php:104
65
- msgid "Form"
66
- msgstr "प्रपत्र (फार्म)"
67
-
68
- #: contact-form-7/admin/admin-panel.php:128
69
- msgid "Mail"
70
- msgstr "चिट्ठी-पत्री "
71
-
72
- #: contact-form-7/admin/admin-panel.php:135
73
- #: contact-form-7/admin/admin-panel.php:202
74
- msgid "To:"
75
- msgstr "किसको:"
76
-
77
- #: contact-form-7/admin/admin-panel.php:140
78
- #: contact-form-7/admin/admin-panel.php:207
79
- msgid "From:"
80
- msgstr "किसकी ओर से:"
81
-
82
- #: contact-form-7/admin/admin-panel.php:145
83
- #: contact-form-7/admin/admin-panel.php:212
84
- msgid "Subject:"
85
- msgstr "विषय:"
86
-
87
- #: contact-form-7/admin/admin-panel.php:152
88
- #: contact-form-7/admin/admin-panel.php:219
89
- msgid "Additional headers:"
90
- msgstr "अतिरिक्त हेडर:"
91
-
92
- #: contact-form-7/admin/admin-panel.php:157
93
- #: contact-form-7/admin/admin-panel.php:224
94
- msgid "File attachments:"
95
- msgstr "फ़ाइल अनुलग्नक:"
96
-
97
- #: contact-form-7/admin/admin-panel.php:165
98
- #: contact-form-7/admin/admin-panel.php:232
99
- msgid "Use HTML content type"
100
- msgstr "इस्तेमाल की HTML सामग्री की प्रकार का इस्तेमाल करे "
101
-
102
- #: contact-form-7/admin/admin-panel.php:172
103
- #: contact-form-7/admin/admin-panel.php:239
104
- #: contact-form-7/includes/functions.php:73
105
- msgid "Message body:"
106
- msgstr "संदेश लिखने की जगह:"
107
-
108
- #: contact-form-7/admin/admin-panel.php:188
109
- msgid "Mail (2)"
110
- msgstr "चिट्ठी-पत्री (२)"
111
-
112
- #: contact-form-7/admin/admin-panel.php:194
113
- msgid "Use mail (2)"
114
- msgstr "चिट्ठी-पत्री (२) उपयोग में लायें"
115
-
116
- #: contact-form-7/admin/admin-panel.php:255
117
- msgid "Messages"
118
- msgstr "संदेश"
119
-
120
- #: contact-form-7/admin/admin-panel.php:285
121
- msgid "Additional Settings"
122
- msgstr "अतिरिक्त सेटिंग्स"
123
-
124
- #: contact-form-7/admin/admin-panel.php:333
125
- #, php-format
126
- msgid "Use the default language (%s)"
127
- msgstr "डिफ़ॉल्ट भाषा का प्रयोग करें (%s)"
128
-
129
- #: contact-form-7/admin/admin-panel.php:334
130
- #: contact-form-7/admin/admin-panel.php:347
131
- msgid "Add New"
132
- msgstr "नया जोड़ें"
133
-
134
- #: contact-form-7/admin/admin-panel.php:337
135
- msgid "Or"
136
- msgstr "या"
137
-
138
- #: contact-form-7/admin/admin-panel.php:342
139
- msgid "(select language)"
140
- msgstr "(भाषा का चयन करें)"
141
-
142
- #: contact-form-7/admin/admin.php:117
143
- msgid "Contact"
144
- msgstr "संपर्क"
145
-
146
- #: contact-form-7/admin/admin.php:120
147
- msgid "Edit Contact Forms"
148
- msgstr "कोन्टक्ट फोर्मस संपादित करें"
149
-
150
- #: contact-form-7/admin/admin.php:120
151
- msgid "Edit"
152
- msgstr "संपादित करें"
153
-
154
- #: contact-form-7/admin/admin.php:178
155
- msgid "Generate Tag"
156
- msgstr "टैग उत्पन्न करें"
157
-
158
- #: contact-form-7/admin/admin.php:179
159
- msgid "Text field"
160
- msgstr "पाठ्य क्षेत्र "
161
-
162
- #: contact-form-7/admin/admin.php:180
163
- msgid "Email field"
164
- msgstr "ईपत्र क्षेत्र"
165
-
166
- #: contact-form-7/admin/admin.php:181
167
- msgid "Text area"
168
- msgstr "पाठ्य क्षेत्र "
169
-
170
- #: contact-form-7/admin/admin.php:182
171
- msgid "Drop-down menu"
172
- msgstr "नीचे गिरके दिखने वाली विकल्प सूची"
173
-
174
- #: contact-form-7/admin/admin.php:183
175
- msgid "Checkboxes"
176
- msgstr "निशान पेटी"
177
-
178
- #: contact-form-7/admin/admin.php:184
179
- msgid "Radio buttons"
180
- msgstr "रेडियो बटन"
181
-
182
- #: contact-form-7/admin/admin.php:185
183
- msgid "Acceptance"
184
- msgstr "सहमति (स्वीकृति)"
185
-
186
- #: contact-form-7/admin/admin.php:186
187
- msgid "CAPTCHA"
188
- msgstr "कैप्चा (CAPTCHA)"
189
-
190
- #: contact-form-7/admin/admin.php:187
191
- msgid "Quiz"
192
- msgstr "प्रश्नोत्तरी"
193
-
194
- #: contact-form-7/admin/admin.php:188
195
- msgid "File upload"
196
- msgstr "फ़ाइल अपलोड करें"
197
-
198
- #: contact-form-7/admin/admin.php:189
199
- msgid "Submit button"
200
- msgstr "भेजने (सबमिट) के लिये बटन"
201
-
202
- #: contact-form-7/admin/admin.php:190
203
- msgid "Show"
204
- msgstr "दिखाए "
205
-
206
- #: contact-form-7/admin/admin.php:191
207
- msgid "Hide"
208
- msgstr "दिखाए "
209
-
210
- #: contact-form-7/admin/admin.php:264
211
- msgid "Contact form"
212
- msgstr "संपर्क प्रपत्र "
213
-
214
- #: contact-form-7/admin/admin.php:283
215
- msgid "Settings"
216
- msgstr "सेट्टींग्स"
217
-
218
- #: contact-form-7/admin/admin.php:294
219
- msgid "http://contactform7.com/"
220
- msgstr "http://contactform7.com/"
221
-
222
- #: contact-form-7/admin/admin.php:295
223
- msgid "Contactform7.com"
224
- msgstr "Contactform7.com"
225
-
226
- #: contact-form-7/admin/admin.php:296
227
- msgid "http://contactform7.com/docs/"
228
- msgstr "http://contactform7.com/docs/"
229
-
230
- #: contact-form-7/admin/admin.php:297
231
- msgid "Docs"
232
- msgstr "डॉक्स"
233
-
234
- #: contact-form-7/admin/admin.php:298
235
- msgid "http://contactform7.com/faq/"
236
- msgstr "http://contactform7.com/faq/"
237
-
238
- #: contact-form-7/admin/admin.php:299
239
- msgid "FAQ"
240
- msgstr "अकसर किये गए सवाल"
241
-
242
- #: contact-form-7/admin/admin.php:300
243
- msgid "http://contactform7.com/support/"
244
- msgstr "http://contactform7.com/support/"
245
-
246
- #: contact-form-7/admin/admin.php:301
247
- msgid "Support"
248
- msgstr "सहायता"
249
-
250
- #: contact-form-7/admin/admin.php:312
251
- msgid "Contact form created."
252
- msgstr "संपर्क प्रपत्र बना दिया गया है."
253
-
254
- #: contact-form-7/admin/admin.php:315
255
- msgid "Contact form saved."
256
- msgstr "संपर्क प्रपत्र सुरक्षित रख दिया गया है."
257
-
258
- #: contact-form-7/admin/admin.php:318
259
- msgid "Contact form deleted."
260
- msgstr "संपर्क प्रपत्र मिटा दिया गया है."
261
-
262
- #: contact-form-7/admin/admin.php:321
263
- msgid "Database table created."
264
- msgstr "डेटाबेस तालिका बन गयी है ."
265
-
266
- #: contact-form-7/admin/admin.php:324
267
- msgid "Failed to create database table."
268
- msgstr "डेटाबेस तालिका नहीं बनी है."
269
-
270
- #: contact-form-7/admin/admin.php:357
271
- msgid "Contact Form 7 needs your support. Please donate today."
272
- msgstr "कोन्टक्ट फॉर्म 7 को आपके समर्थन की जरूरत है."
273
-
274
- #: contact-form-7/admin/admin.php:358
275
- msgid "Is this plugin useful for you? If you like it, please help the developer."
276
- msgstr "डेटाबेस तालिका नहीं बनी है."
277
-
278
- #: contact-form-7/admin/admin.php:359
279
- msgid "Your contribution is needed for making this plugin better."
280
- msgstr " इस प्लगइन का बेहतर बनाने के लिए आपके योगदान की जरूरत है."
281
-
282
- #: contact-form-7/admin/admin.php:360
283
- msgid "Developing a plugin and providing user support is really hard work. Please help."
284
- msgstr "एक प्लगइन का विकास और उपयोगकर्ता सहायता प्रदान करना सच में कठिन काम है .कृपया मदद करे ."
285
-
286
- #: contact-form-7/includes/classes.php:568
287
- msgid "Untitled"
288
- msgstr "शीर्षक रहित "
289
-
290
- #: contact-form-7/includes/functions.php:6
291
- msgid "Sender's message was sent successfully"
292
- msgstr "प्रेषक का संदेश सफलतापूर्वक भेज दिया गया"
293
-
294
- #: contact-form-7/includes/functions.php:7
295
- msgid "Your message was sent successfully. Thanks."
296
- msgstr "आपका संदेश सफलतापूर्वक भेज दिया गया, धन्यवाद"
297
-
298
- #: contact-form-7/includes/functions.php:11
299
- msgid "Sender's message was failed to send"
300
- msgstr "प्रेषक के संदेश को भेजने में विफल रहा था"
301
-
302
- #: contact-form-7/includes/functions.php:12
303
- #: contact-form-7/includes/functions.php:17
304
- msgid "Failed to send your message. Please try later or contact administrator by other way."
305
- msgstr "आपका संदेश नही भेज पाये. कृप्या दोबारा कोशिश करें या फिर किसी दूसरे तरीके से प्रबंधक से संपर्क करें."
306
-
307
- #: contact-form-7/includes/functions.php:16
308
- msgid "Akismet judged the sending activity as spamming"
309
- msgstr "Akismet का न्याय स्पैमिंग के रूप में भेजने गतिविधि "
310
-
311
- #: contact-form-7/includes/functions.php:21
312
- msgid "Validation errors occurred"
313
- msgstr " सत्यापन में त्रुटियाँ हुई"
314
-
315
- #: contact-form-7/includes/functions.php:22
316
- msgid "Validation errors occurred. Please confirm the fields and submit it again."
317
- msgstr "प्रमाणीकरण करने में गलतियाँ आयीं, कृप्या दोबारा जाँच के फिर से बटन पर चटका (सबमिट) लगायें."
318
-
319
- #: contact-form-7/includes/functions.php:26
320
- msgid "There is a field of term that sender is needed to accept"
321
- msgstr "यह टीम का एक क्षेत्र है जिसे प्रेषक को स्वीकार करने की जरूरत है"
322
-
323
- #: contact-form-7/includes/functions.php:27
324
- msgid "Please accept the terms to proceed."
325
- msgstr "आगे जाने के लिये कृप्या शर्तें स्वीकारें."
326
-
327
- #: contact-form-7/includes/functions.php:31
328
- msgid "Email address that sender entered is invalid"
329
- msgstr "ईमेल पता है कि प्रवेश प्रेषक अवैध है"
330
-
331
- #: contact-form-7/includes/functions.php:32
332
- msgid "Email address seems invalid."
333
- msgstr "ईपत्र का पता अमान्य (गलत) प्रतीत होता है."
334
-
335
- #: contact-form-7/includes/functions.php:36
336
- msgid "There is a field that sender is needed to fill in"
337
- msgstr "इस क्षेत्र को प्रेषक द्वारा भरने की जरूरत है"
338
-
339
- #: contact-form-7/includes/functions.php:37
340
- msgid "Please fill the required field."
341
- msgstr "कृप्या अपेक्षित क्षेत्र भरें."
342
-
343
- #: contact-form-7/includes/functions.php:45
344
- msgid "Your Name"
345
- msgstr "आपका नाम"
346
-
347
- #: contact-form-7/includes/functions.php:45
348
- #: contact-form-7/includes/functions.php:47
349
- msgid "(required)"
350
- msgstr "(जरूरी [अपेक्षित])"
351
-
352
- #: contact-form-7/includes/functions.php:47
353
- msgid "Your Email"
354
- msgstr "आपका ईपत्र पता"
355
-
356
- #: contact-form-7/includes/functions.php:49
357
- msgid "Subject"
358
- msgstr "विषय"
359
-
360
- #: contact-form-7/includes/functions.php:51
361
- msgid "Your Message"
362
- msgstr "आपका संदेश"
363
-
364
- #: contact-form-7/includes/functions.php:53
365
- msgid "Send"
366
- msgstr "भेजना"
367
-
368
- #: contact-form-7/includes/functions.php:60
369
- #, php-format
370
- msgid "From: %s"
371
- msgstr "किसकी ओर से %s:"
372
-
373
- #: contact-form-7/includes/functions.php:61
374
- #, php-format
375
- msgid "Subject: %s"
376
- msgstr "विषय:%s"
377
-
378
- #: contact-form-7/includes/functions.php:62
379
- msgid "Message Body:"
380
- msgstr "संदेश लिखने की जगह:"
381
-
382
- #: contact-form-7/includes/functions.php:63
383
- #: contact-form-7/includes/functions.php:74
384
- #, php-format
385
- msgid "This mail is sent via contact form on %1$s %2$s"
386
- msgstr "इस मेल को भेजा गया है संपर्क फ़ॉर्म पर %1$s %2$s"
387
-
388
- #: contact-form-7/includes/functions.php:163
389
- msgid "Albanian"
390
- msgstr "Albanian"
391
-
392
- #: contact-form-7/includes/functions.php:164
393
- msgid "Arabic"
394
- msgstr "Arabic"
395
-
396
- #: contact-form-7/includes/functions.php:165
397
- msgid "Bangla"
398
- msgstr "Bangla"
399
-
400
- #: contact-form-7/includes/functions.php:166
401
- msgid "Bosnian"
402
- msgstr "Bosnian"
403
-
404
- #: contact-form-7/includes/functions.php:167
405
- msgid "Brazilian Portuguese"
406
- msgstr "Brazilian Portuguese"
407
-
408
- #: contact-form-7/includes/functions.php:168
409
- msgid "Bulgarian"
410
- msgstr "Bulgarian"
411
-
412
- #: contact-form-7/includes/functions.php:169
413
- msgid "Catalan"
414
- msgstr "Catalan"
415
-
416
- #: contact-form-7/includes/functions.php:170
417
- msgid "Chinese (Simplified)"
418
- msgstr "Chinese (Simplified)"
419
-
420
- #: contact-form-7/includes/functions.php:171
421
- msgid "Chinese (Traditional)"
422
- msgstr "Chinese (Traditional)"
423
-
424
- #: contact-form-7/includes/functions.php:172
425
- msgid "Croatian"
426
- msgstr "Croatian"
427
-
428
- #: contact-form-7/includes/functions.php:173
429
- msgid "Czech"
430
- msgstr "Czech"
431
-
432
- #: contact-form-7/includes/functions.php:174
433
- msgid "Danish"
434
- msgstr "Danish"
435
-
436
- #: contact-form-7/includes/functions.php:175
437
- msgid "Dutch"
438
- msgstr "Dutch"
439
-
440
- #: contact-form-7/includes/functions.php:176
441
- msgid "English"
442
- msgstr "English"
443
-
444
- #: contact-form-7/includes/functions.php:177
445
- msgid "Estonian"
446
- msgstr "Estonian"
447
-
448
- #: contact-form-7/includes/functions.php:178
449
- msgid "Finnish"
450
- msgstr "Finnish"
451
-
452
- #: contact-form-7/includes/functions.php:179
453
- msgid "French"
454
- msgstr "French"
455
-
456
- #: contact-form-7/includes/functions.php:180
457
- msgid "Georgian"
458
- msgstr "Georgian"
459
-
460
- #: contact-form-7/includes/functions.php:181
461
- msgid "German"
462
- msgstr "German"
463
-
464
- #: contact-form-7/includes/functions.php:182
465
- msgid "Greek"
466
- msgstr "Greek"
467
-
468
- #: contact-form-7/includes/functions.php:183
469
- msgid "Hebrew"
470
- msgstr "Hebrew"
471
-
472
- #: contact-form-7/includes/functions.php:184
473
- msgid "Hindi"
474
- msgstr "हिन्दी"
475
-
476
- #: contact-form-7/includes/functions.php:185
477
- msgid "Hungarian"
478
- msgstr "Hungarian"
479
-
480
- #: contact-form-7/includes/functions.php:186
481
- msgid "Indonesian"
482
- msgstr "Indonesian"
483
-
484
- #: contact-form-7/includes/functions.php:187
485
- msgid "Italian"
486
- msgstr "Italian"
487
-
488
- #: contact-form-7/includes/functions.php:188
489
- msgid "Japanese"
490
- msgstr "Japanese"
491
-
492
- #: contact-form-7/includes/functions.php:189
493
- msgid "Korean"
494
- msgstr "Korean"
495
-
496
- #: contact-form-7/includes/functions.php:190
497
- msgid "Latvian"
498
- msgstr "Latvian"
499
-
500
- #: contact-form-7/includes/functions.php:191
501
- msgid "Lithuanian"
502
- msgstr "Lithuanian"
503
-
504
- #: contact-form-7/includes/functions.php:192
505
- msgid "Norwegian"
506
- msgstr "Norwegian"
507
-
508
- #: contact-form-7/includes/functions.php:193
509
- msgid "Persian"
510
- msgstr "Persian"
511
-
512
- #: contact-form-7/includes/functions.php:194
513
- msgid "Polish"
514
- msgstr "Polish"
515
-
516
- #: contact-form-7/includes/functions.php:195
517
- msgid "Portuguese"
518
- msgstr "Portuguese"
519
-
520
- #: contact-form-7/includes/functions.php:196
521
- msgid "Russian"
522
- msgstr "Russian"
523
-
524
- #: contact-form-7/includes/functions.php:197
525
- msgid "Romanian"
526
- msgstr "Romanian"
527
-
528
- #: contact-form-7/includes/functions.php:198
529
- msgid "Serbian"
530
- msgstr "Serbian"
531
-
532
- #: contact-form-7/includes/functions.php:199
533
- msgid "Slovak"
534
- msgstr "Slovak"
535
-
536
- #: contact-form-7/includes/functions.php:200
537
- msgid "Slovene"
538
- msgstr "Slovene"
539
-
540
- #: contact-form-7/includes/functions.php:201
541
- msgid "Spanish"
542
- msgstr "Spanish"
543
-
544
- #: contact-form-7/includes/functions.php:202
545
- msgid "Swedish"
546
- msgstr "Swedish"
547
-
548
- #: contact-form-7/includes/functions.php:203
549
- msgid "Thai"
550
- msgstr "Thai"
551
-
552
- #: contact-form-7/includes/functions.php:204
553
- msgid "Turkish"
554
- msgstr "Turkish"
555
-
556
- #: contact-form-7/includes/functions.php:205
557
- msgid "Ukrainian"
558
- msgstr "Ukrainian"
559
-
560
- #: contact-form-7/includes/functions.php:206
561
- msgid "Vietnamese"
562
- msgstr "Vietnamese"
563
-
564
- #: contact-form-7/modules/acceptance.php:98
565
- #: contact-form-7/modules/captcha.php:201
566
- #: contact-form-7/modules/checkbox.php:185
567
- #: contact-form-7/modules/file.php:229
568
- msgid "Name"
569
- msgstr "नाम"
570
-
571
- #: contact-form-7/modules/acceptance.php:103
572
- #: contact-form-7/modules/acceptance.php:106
573
- #: contact-form-7/modules/captcha.php:208
574
- #: contact-form-7/modules/captcha.php:211
575
- #: contact-form-7/modules/captcha.php:216
576
- #: contact-form-7/modules/captcha.php:219
577
- #: contact-form-7/modules/captcha.php:223
578
- #: contact-form-7/modules/captcha.php:234
579
- #: contact-form-7/modules/captcha.php:237
580
- #: contact-form-7/modules/captcha.php:242
581
- #: contact-form-7/modules/captcha.php:245
582
- #: contact-form-7/modules/checkbox.php:190
583
- #: contact-form-7/modules/checkbox.php:193
584
- #: contact-form-7/modules/file.php:234
585
- #: contact-form-7/modules/file.php:237
586
- #: contact-form-7/modules/file.php:242
587
- #: contact-form-7/modules/file.php:245
588
- msgid "optional"
589
- msgstr "वैकल्पिक"
590
-
591
- #: contact-form-7/modules/acceptance.php:112
592
- msgid "Make this checkbox checked by default?"
593
- msgstr "इस निशान पेटी में पहले से ही निशान लगा के रखें?"
594
-
595
- #: contact-form-7/modules/acceptance.php:113
596
- msgid "Make this checkbox work inversely?"
597
- msgstr "इस निशान पेटी से उल्टे से (प्रतिलोम) काम करवायें?"
598
-
599
- #: contact-form-7/modules/acceptance.php:114
600
- msgid "* That means visitor who accepts the term unchecks it."
601
- msgstr "* इसका मतलब है कि आगंतुक जिन्होंने शर्तें स्वीकारी थी उन्होंने इस पर लगा चटका हटाया है."
602
-
603
- #: contact-form-7/modules/acceptance.php:119
604
- #: contact-form-7/modules/captcha.php:250
605
- #: contact-form-7/modules/checkbox.php:211
606
- #: contact-form-7/modules/file.php:250
607
- msgid "Copy this code and paste it into the form left."
608
- msgstr "इस कोड की नकल करके प्रपत्र में चिपकायें"
609
-
610
- #: contact-form-7/modules/captcha.php:65
611
- msgid "To use CAPTCHA, you need <a href=\"http://wordpress.org/extend/plugins/really-simple-captcha/\">Really Simple CAPTCHA</a> plugin installed."
612
- msgstr "कॅप्चा का उपयोग करने के लिए <a href=\"http://wordpress.org/extend/plugins/really-simple-captcha/\">वास्तव में सरल कॅप्चा</a>प्लगइन स्थापित."
613
-
614
- #: contact-form-7/modules/captcha.php:181
615
- msgid "The code that sender entered does not match the CAPTCHA"
616
- msgstr "कोड जो कि प्रेषक प्रविष्ट करता कॅप्चा से मेल नहीं खाते"
617
-
618
- #: contact-form-7/modules/captcha.php:182
619
- msgid "Your entered code is incorrect."
620
- msgstr "आपके द्वारा लिखा गया कूट (कोड) गलत है."
621
-
622
- #: contact-form-7/modules/captcha.php:198
623
- msgid "Note: To use CAPTCHA, you need Really Simple CAPTCHA plugin installed."
624
- msgstr "नोट: कॅप्चा का उपयोग करने के लिए, तुम सच में सरल कॅप्चा प्लगइन की जरूरत है."
625
-
626
- #: contact-form-7/modules/captcha.php:205
627
- msgid "Image settings"
628
- msgstr "तस्वीर (प्रतिबिंब) अनुकूलन "
629
-
630
- #: contact-form-7/modules/captcha.php:216
631
- msgid "Foreground color"
632
- msgstr "अग्रभाग के लिये रंग "
633
-
634
- #: contact-form-7/modules/captcha.php:219
635
- msgid "Background color"
636
- msgstr "पृष्टभूमि (परिप्रेक्ष्य) के लिये रंग "
637
-
638
- #: contact-form-7/modules/captcha.php:223
639
- msgid "Image size"
640
- msgstr "तस्वीर (प्रतिबिंब) का आकार "
641
-
642
- #: contact-form-7/modules/captcha.php:224
643
- msgid "Small"
644
- msgstr "छोटा"
645
-
646
- #: contact-form-7/modules/captcha.php:225
647
- msgid "Medium"
648
- msgstr "मध्यम (मझोला)"
649
-
650
- #: contact-form-7/modules/captcha.php:226
651
- msgid "Large"
652
- msgstr "बड़ा"
653
-
654
- #: contact-form-7/modules/captcha.php:231
655
- msgid "Input field settings"
656
- msgstr "निवेश स्थान (क्षेत्र) अनुकूलन "
657
-
658
- #: contact-form-7/modules/captcha.php:251
659
- msgid "For image"
660
- msgstr "तस्वीर (प्रतिबिंब) के लिये"
661
-
662
- #: contact-form-7/modules/captcha.php:253
663
- msgid "For input field"
664
- msgstr "निवेश स्थान (क्षेत्र) के लिये"
665
-
666
- #: contact-form-7/modules/captcha.php:280
667
- #, php-format
668
- 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."
669
- msgstr "इस संपर्क फ़ॉर्म कॅप्चा क्षेत्र शामिल हैं, पर (%s) फ़ाइलें के लिए अस्थायी फ़ोल्डर अस्तित्व में नहीं है या writable नहीं. आप फ़ोल्डर बनाने या उसके अनुमति मैन्युअल रूप से बदल सकते हैं."
670
-
671
- #: contact-form-7/modules/captcha.php:286
672
- msgid "This contact form contains CAPTCHA fields, but the necessary libraries (GD and FreeType) are not available on your server."
673
- msgstr "इस संपर्क फ़ॉर्म कॅप्चा क्षेत्र शामिल है, लेकिन आवश्यक पुस्तकालयों (जी.डी.और फ्रीटाइप) आपके सर्वर पर उपलब्ध नहीं हैं."
674
-
675
- #: contact-form-7/modules/checkbox.php:182
676
- #: contact-form-7/modules/file.php:228
677
- msgid "Required field?"
678
- msgstr "अपेक्षित क्षेत्र"
679
-
680
- #: contact-form-7/modules/checkbox.php:198
681
- msgid "Choices"
682
- msgstr "अन्य विकल्प"
683
-
684
- #: contact-form-7/modules/checkbox.php:200
685
- msgid "* One choice per line."
686
- msgstr "* एक पंक्ति पर एक ही पसंद."
687
-
688
- #: contact-form-7/modules/checkbox.php:205
689
- msgid "Make checkboxes exclusive?"
690
- msgstr "क्या निशान पेटी अलग से बनायें?"
691
-
692
- #: contact-form-7/modules/checkbox.php:213
693
- msgid "And, put this code into the Mail fields below."
694
- msgstr "और, नीचे मेल क्षेत्रों में इस कोड डाल दिया."
695
-
696
- #: contact-form-7/modules/file.php:197
697
- msgid "Uploading a file fails for any reason"
698
- msgstr "अपलोड फ़ाइल किसी भी कारण से विफल हो गया है"
699
-
700
- #: contact-form-7/modules/file.php:198
701
- msgid "Failed to upload file."
702
- msgstr "फ़ाइल अपलोड करने में विफल."
703
-
704
- #: contact-form-7/modules/file.php:202
705
- msgid "Uploaded file is not allowed file type"
706
- msgstr "अपलोड की गई फ़ाइल की फ़ाइल प्रकार के लिए अनुमति नहीं है"
707
-
708
- #: contact-form-7/modules/file.php:203
709
- msgid "This file type is not allowed."
710
- msgstr "इस फ़ाइल प्रकार की अनुमति नहीं है."
711
-
712
- #: contact-form-7/modules/file.php:207
713
- msgid "Uploaded file is too large"
714
- msgstr "अपलोड की गई फ़ाइल बहुत बड़ी है"
715
-
716
- #: contact-form-7/modules/file.php:208
717
- msgid "This file is too large."
718
- msgstr "यह फ़ाइल बहुत बड़ी है."
719
-
720
- #: contact-form-7/modules/file.php:212
721
- msgid "Uploading a file fails for PHP error"
722
- msgstr "अपलोड फ़ाइल PHP त्रुटि के लिए विफल रहता है"
723
-
724
- #: contact-form-7/modules/file.php:213
725
- msgid "Failed to upload file. Error occurred."
726
- msgstr "फ़ाइल अपलोड करने में विफल.त्रुटि हो गई."
727
-
728
- #: contact-form-7/modules/file.php:242
729
- msgid "File size limit"
730
- msgstr "फ़ाइल आकार सीमा"
731
-
732
- #: contact-form-7/modules/file.php:242
733
- msgid "bytes"
734
- msgstr "बाइट्स"
735
-
736
- #: contact-form-7/modules/file.php:245
737
- msgid "Acceptable file types"
738
- msgstr "स्वीकार्य फ़ाइल प्रकार"
739
-
740
- #: contact-form-7/modules/file.php:252
741
- msgid "And, put this code into the File Attachments field below."
742
- msgstr "और, नीचे फ़ाइल अनुलग्नक क्षेत्र में इस कोड डाल दिया."
743
-
744
- #: contact-form-7/modules/file.php:274
745
- #, php-format
746
- 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."
747
- msgstr "इस संपर्क फ़ॉर्म अप्लोअडिंग क्षेत्र शामिल हैं, पर (%s) फ़ाइलें के लिए अस्थायी फ़ोल्डर अस्तित्व में नहीं है या writable नहीं. आप फ़ोल्डर बनाने या उसके अनुमति मैन्युअल रूप से बदल सकते हैं."
748
-
749
- #: contact-form-7/modules/icl.php:70
750
- msgid "This contact form contains [icl] tags, but they are obsolete and no longer functioning on this version of Contact Form 7. There is a simpler way for creating contact forms of other languages and you are recommended to use it."
751
- msgstr "इस संपर्क फ़ॉर्म हैं [icl] टैग हैं, लेकिन वे पुराने पड़ चुके हैं और अब संपर्क फ़ॉर्म 7 के इस संस्करण पर काम नहीं करते. अन्य भाषाओं के संपर्क फार्म बनाने के लिए एक सरल तरीका और है और आप इसका इस्तेमाल की सिफारिश की है."
752
-
753
- #: contact-form-7/modules/quiz.php:164
754
- msgid "Sender doesn't enter the correct answer to the quiz"
755
- msgstr "प्रेषक प्रश्नोत्तरी का सही जवाब प्रविष्ट नहीं करता है"
756
-
757
- #: contact-form-7/modules/quiz.php:165
758
- msgid "Your answer is not correct."
759
- msgstr "आपका जवाब सही नहीं है."
760
-
761
- #: contact-form-7/modules/quiz.php:200
762
- msgid "Quizzes"
763
- msgstr "Quizzes"
764
-
765
- #: contact-form-7/modules/quiz.php:202
766
- msgid "* quiz|answer (e.g. 1+1=?|2)"
767
- msgstr "*प्रश्नोत्तरी | जवाब (e.g. 1+1=?|2)"
768
-
769
- #: contact-form-7/modules/select.php:170
770
- msgid "Allow multiple selections?"
771
- msgstr "बहुविकल्प चुनने दें?"
772
-
773
- #: contact-form-7/modules/select.php:171
774
- msgid "Insert a blank item as the first option?"
775
- msgstr "एक खाली विषय (चीज) पहले विकल्प के रूप में डालें?"
776
-
777
- #: contact-form-7/modules/submit.php:68
778
- msgid "Label"
779
- msgstr "चिप्पी (सूचक पत्र)"
780
-
781
- #: contact-form-7/modules/text.php:163
782
- msgid "Akismet"
783
- msgstr "एक्सिमेट (Akismet)"
784
-
785
- #: contact-form-7/modules/text.php:165
786
- msgid "This field requires author's name"
787
- msgstr "यहाँ लेखक का नाम जरूरी (अपेक्षित) है"
788
-
789
- #: contact-form-7/modules/text.php:166
790
- msgid "This field requires author's URL"
791
- msgstr "यहाँ लेखक का यू आर एल (वेब पता) जरूरी (अपेक्षित) है"
792
-
793
- #: contact-form-7/modules/text.php:168
794
- msgid "This field requires author's email address"
795
- msgstr "यहाँ लेखक का ईपत्र पता जरूरी (अपेक्षित) है"
796
-
797
- #: contact-form-7/modules/text.php:172
798
- #: contact-form-7/modules/textarea.php:144
799
- msgid "Default value"
800
- msgstr "डिफ़ॉल्ट निधि"
801
-
802
- #~ msgid "Delete this contact form"
803
- #~ msgstr "इस संपर्क प्रपत्र को मिटायें"
804
-
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
languages/wpcf7-hr.po DELETED
@@ -1,427 +0,0 @@
1
- msgid ""
2
- msgstr ""
3
- "Project-Id-Version: Contact Form | V1.2\n"
4
- "Report-Msgid-Bugs-To: \n"
5
- "POT-Creation-Date: 2009-03-03 16:40+0900\n"
6
- "PO-Revision-Date: \n"
7
- "Last-Translator: tolingo <info@tolingo.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"
12
- "X-Poedit-Language: Croatian\n"
13
- "X-Poedit-Country: GERMANY\n"
14
- "X-Poedit-SourceCharset: utf-8\n"
15
-
16
- #: contact-form-7/wp-contact-form-7.php:413
17
- msgid "Contact form"
18
- msgstr "Kontaktni obrazac"
19
-
20
- #: contact-form-7/wp-contact-form-7.php:582
21
- #: contact-form-7/includes/admin-panel.php:5
22
- msgid "Contact Form 7"
23
- msgstr "Contact Form 7"
24
-
25
- #: contact-form-7/wp-contact-form-7.php:605
26
- msgid "optional"
27
- msgstr "opcionalni"
28
-
29
- #: contact-form-7/wp-contact-form-7.php:606
30
- msgid "Generate Tag"
31
- msgstr "Proizvodna oznaka"
32
-
33
- #: contact-form-7/wp-contact-form-7.php:607
34
- msgid "Text field"
35
- msgstr "Tekstovno polje"
36
-
37
- #: contact-form-7/wp-contact-form-7.php:608
38
- msgid "Email field"
39
- msgstr "Email polje"
40
-
41
- #: contact-form-7/wp-contact-form-7.php:609
42
- msgid "Text area"
43
- msgstr "Tekstovno područje"
44
-
45
- #: contact-form-7/wp-contact-form-7.php:610
46
- msgid "Drop-down menu"
47
- msgstr "Padajući izbornik"
48
-
49
- #: contact-form-7/wp-contact-form-7.php:611
50
- msgid "Checkboxes"
51
- msgstr "Okviri za izbor"
52
-
53
- #: contact-form-7/wp-contact-form-7.php:612
54
- msgid "Radio buttons"
55
- msgstr "Radio gumb"
56
-
57
- #: contact-form-7/wp-contact-form-7.php:613
58
- msgid "Acceptance"
59
- msgstr "Prihvaćanje"
60
-
61
- #: contact-form-7/wp-contact-form-7.php:614
62
- msgid "Make this checkbox checked by default?"
63
- msgstr "Standardna provjera okvira za izbor?"
64
-
65
- #: contact-form-7/wp-contact-form-7.php:615
66
- msgid "Make this checkbox work inversely?"
67
- msgstr "Omogući da učitavanje datoteke iz nekog razloga radi obrnuto?"
68
-
69
- #: contact-form-7/wp-contact-form-7.php:616
70
- msgid "* That means visitor who accepts the term unchecks it."
71
- msgstr "* To znači da posjetitelj koji prihvati uvjet, briše označeni okvir."
72
-
73
- #: contact-form-7/wp-contact-form-7.php:617
74
- msgid "CAPTCHA"
75
- msgstr "Captcha"
76
-
77
- #: contact-form-7/wp-contact-form-7.php:618
78
- msgid "Quiz"
79
- msgstr "Test znanja"
80
-
81
- #: contact-form-7/wp-contact-form-7.php:619
82
- msgid "Quizzes"
83
- msgstr "Testovi znanja"
84
-
85
- #: contact-form-7/wp-contact-form-7.php:620
86
- msgid "* quiz|answer (e.g. 1+1=?|2)"
87
- msgstr "* Kviz/Odgovor (Npr. 1+1=?/2)"
88
-
89
- #: contact-form-7/wp-contact-form-7.php:621
90
- msgid "File upload"
91
- msgstr "Učitajte datoteku"
92
-
93
- #: contact-form-7/wp-contact-form-7.php:622
94
- msgid "bytes"
95
- msgstr "Bajtovi"
96
-
97
- #: contact-form-7/wp-contact-form-7.php:623
98
- msgid "Submit button"
99
- msgstr "Gumb „Podnesi“"
100
-
101
- #: contact-form-7/wp-contact-form-7.php:624
102
- msgid "Name"
103
- msgstr "Ime"
104
-
105
- #: contact-form-7/wp-contact-form-7.php:625
106
- msgid "Required field?"
107
- msgstr "Obavezno polje?"
108
-
109
- #: contact-form-7/wp-contact-form-7.php:626
110
- msgid "Allow multiple selections?"
111
- msgstr "Dopusti višestruki odabir?"
112
-
113
- #: contact-form-7/wp-contact-form-7.php:627
114
- msgid "Insert a blank item as the first option?"
115
- msgstr "Unesi praznu stavku kao prvi izbor?"
116
-
117
- #: contact-form-7/wp-contact-form-7.php:628
118
- msgid "Make checkboxes exclusive?"
119
- msgstr "Isključi okvire za izbor ?"
120
-
121
- #: contact-form-7/wp-contact-form-7.php:629
122
- msgid "Choices"
123
- msgstr "Opcije"
124
-
125
- #: contact-form-7/wp-contact-form-7.php:630
126
- msgid "Label"
127
- msgstr "Oznaka"
128
-
129
- #: contact-form-7/wp-contact-form-7.php:631
130
- msgid "Default value"
131
- msgstr "Standardna vrijednost"
132
-
133
- #: contact-form-7/wp-contact-form-7.php:632
134
- msgid "Akismet"
135
- msgstr "Askimet"
136
-
137
- #: contact-form-7/wp-contact-form-7.php:633
138
- msgid "This field requires author's name"
139
- msgstr "Ovo polje zahtijeva ime autora"
140
-
141
- #: contact-form-7/wp-contact-form-7.php:634
142
- msgid "This field requires author's URL"
143
- msgstr "Ovo polje zahtijeva autorov URL"
144
-
145
- #: contact-form-7/wp-contact-form-7.php:635
146
- msgid "This field requires author's email address"
147
- msgstr "Ovo polje zahtijeva autorovu E-mail adresu"
148
-
149
- #: contact-form-7/wp-contact-form-7.php:636
150
- msgid "Copy this code and paste it into the form left."
151
- msgstr "Kopiraj ovaj kod i zalijepi ga u obrazac lijevo."
152
-
153
- #: contact-form-7/wp-contact-form-7.php:637
154
- msgid "Foreground color"
155
- msgstr "Boja prednjeg plana"
156
-
157
- #: contact-form-7/wp-contact-form-7.php:638
158
- msgid "Background color"
159
- msgstr "Boja pozadine"
160
-
161
- #: contact-form-7/wp-contact-form-7.php:639
162
- msgid "Image size"
163
- msgstr "Veličina slike"
164
-
165
- #: contact-form-7/wp-contact-form-7.php:640
166
- msgid "Small"
167
- msgstr "Mala"
168
-
169
- #: contact-form-7/wp-contact-form-7.php:641
170
- msgid "Medium"
171
- msgstr "Srednja"
172
-
173
- #: contact-form-7/wp-contact-form-7.php:642
174
- msgid "Large"
175
- msgstr "Velika"
176
-
177
- #: contact-form-7/wp-contact-form-7.php:643
178
- msgid "Image settings"
179
- msgstr "Slikovne postavke"
180
-
181
- #: contact-form-7/wp-contact-form-7.php:644
182
- msgid "Input field settings"
183
- msgstr "Postavke ulaznog polja"
184
-
185
- #: contact-form-7/wp-contact-form-7.php:645
186
- msgid "For image"
187
- msgstr "Za sliku"
188
-
189
- #: contact-form-7/wp-contact-form-7.php:646
190
- msgid "For input field"
191
- msgstr "Za ulazno polje"
192
-
193
- #: contact-form-7/wp-contact-form-7.php:647
194
- msgid "* One choice per line."
195
- msgstr "* Jedan izbor po redu."
196
-
197
- #: contact-form-7/wp-contact-form-7.php:648
198
- msgid "Show"
199
- msgstr "Prikaži"
200
-
201
- #: contact-form-7/wp-contact-form-7.php:649
202
- msgid "Hide"
203
- msgstr "Sakrij"
204
-
205
- #: contact-form-7/wp-contact-form-7.php:650
206
- msgid "File size limit"
207
- msgstr "Ograničenje veličine datoteke"
208
-
209
- #: contact-form-7/wp-contact-form-7.php:651
210
- msgid "Acceptable file types"
211
- msgstr "Prihvatljivi tipovi datoteka"
212
-
213
- #: contact-form-7/wp-contact-form-7.php:677
214
- msgid "Contact form created."
215
- msgstr "Kreirani kontaktni obrazac."
216
-
217
- #: contact-form-7/wp-contact-form-7.php:680
218
- msgid "Contact form saved."
219
- msgstr "Spremljen kontakni obrazac."
220
-
221
- #: contact-form-7/wp-contact-form-7.php:683
222
- msgid "Contact form deleted."
223
- msgstr "Izbrisan kontankni obrazac."
224
-
225
- #: contact-form-7/wp-contact-form-7.php:694
226
- msgid "Untitled"
227
- msgstr "Bez naslova"
228
-
229
- #: contact-form-7/wp-contact-form-7.php:721
230
- msgid "Your Name"
231
- msgstr "Vaše ime"
232
-
233
- #: contact-form-7/wp-contact-form-7.php:721
234
- #: contact-form-7/wp-contact-form-7.php:723
235
- msgid "(required)"
236
- msgstr "(obavezno)"
237
-
238
- #: contact-form-7/wp-contact-form-7.php:723
239
- msgid "Your Email"
240
- msgstr "Vaš Email"
241
-
242
- #: contact-form-7/wp-contact-form-7.php:725
243
- msgid "Subject"
244
- msgstr "Predmet"
245
-
246
- #: contact-form-7/wp-contact-form-7.php:727
247
- msgid "Your Message"
248
- msgstr "Vaša Poruka"
249
-
250
- #: contact-form-7/wp-contact-form-7.php:729
251
- #: contact-form-7/wp-contact-form-7.php:1458
252
- msgid "Send"
253
- msgstr "Pošalji"
254
-
255
- #: contact-form-7/wp-contact-form-7.php:783
256
- msgid "Your message was sent successfully. Thanks."
257
- msgstr "Vaša poruka je uspješno poslana. Hvala."
258
-
259
- #: contact-form-7/wp-contact-form-7.php:785
260
- #: contact-form-7/wp-contact-form-7.php:787
261
- msgid "Failed to send your message. Please try later or contact administrator by other way."
262
- msgstr "Vaša poruka nije poslana. Molimo pokušajte kasnije ili kontaktirajte administratora na drugi način."
263
-
264
- #: contact-form-7/wp-contact-form-7.php:789
265
- msgid "Validation errors occurred. Please confirm the fields and submit it again."
266
- msgstr "Greška u valjanosti. Molimo ispitajte polja i ponovno dostavite."
267
-
268
- #: contact-form-7/wp-contact-form-7.php:791
269
- msgid "Please accept the terms to proceed."
270
- msgstr "Molimo prihvatite uvjete za nastavak."
271
-
272
- #: contact-form-7/wp-contact-form-7.php:793
273
- msgid "Email address seems invalid."
274
- msgstr "Email adresa nije valjana."
275
-
276
- #: contact-form-7/wp-contact-form-7.php:795
277
- msgid "Please fill the required field."
278
- msgstr "Molimo popunite obvezno polje."
279
-
280
- #: contact-form-7/wp-contact-form-7.php:797
281
- msgid "Your entered code is incorrect."
282
- msgstr "Uneseni kod nije točan."
283
-
284
- #: contact-form-7/wp-contact-form-7.php:799
285
- msgid "Your answer is not correct."
286
- msgstr "Vaš odgovor nije točan."
287
-
288
- #: contact-form-7/wp-contact-form-7.php:801
289
- msgid "Failed to upload file."
290
- msgstr "Datoteka nije učitana."
291
-
292
- #: contact-form-7/wp-contact-form-7.php:803
293
- msgid "This file type is not allowed."
294
- msgstr "Tip datoteke nije odgovarajući."
295
-
296
- #: contact-form-7/wp-contact-form-7.php:805
297
- msgid "This file is too large."
298
- msgstr "Ova datoteka je prevelika."
299
-
300
- #: contact-form-7/includes/admin-panel.php:20
301
- msgid "Add new"
302
- msgstr "Dodaj novu"
303
-
304
- #: contact-form-7/includes/admin-panel.php:42
305
- msgid "Copy this code and paste it into your post, page or text widget content."
306
- msgstr "Kopiraj ovaj kod i zalijepi ga na sadržaj koji želiš poslati, stranicu ili tekst widget."
307
-
308
- #: contact-form-7/includes/admin-panel.php:49
309
- #: contact-form-7/includes/admin-panel.php:257
310
- msgid "Save"
311
- msgstr "Spremi"
312
-
313
- #: contact-form-7/includes/admin-panel.php:55
314
- msgid "Delete this contact form"
315
- msgstr "Izbriši ovaj kontakt obrazac"
316
-
317
- #: contact-form-7/includes/admin-panel.php:56
318
- msgid ""
319
- "You are about to delete this contact form.\n"
320
- " 'Cancel' to stop, 'OK' to delete."
321
- msgstr ""
322
- "Ovime se briše kontaktni obrazac. \n"
323
- "'odustani' za prekid, 'OK' za brisanje."
324
-
325
- #: contact-form-7/includes/admin-panel.php:70
326
- msgid "Form"
327
- msgstr "Oblik"
328
-
329
- #: contact-form-7/includes/admin-panel.php:90
330
- msgid "Mail"
331
- msgstr "Mail"
332
-
333
- #: contact-form-7/includes/admin-panel.php:97
334
- #: contact-form-7/includes/admin-panel.php:149
335
- msgid "To:"
336
- msgstr "Za:"
337
-
338
- #: contact-form-7/includes/admin-panel.php:101
339
- #: contact-form-7/includes/admin-panel.php:153
340
- msgid "From:"
341
- msgstr "Od:"
342
-
343
- #: contact-form-7/includes/admin-panel.php:105
344
- #: contact-form-7/includes/admin-panel.php:157
345
- msgid "Subject:"
346
- msgstr "Predmet:"
347
-
348
- #: contact-form-7/includes/admin-panel.php:110
349
- #: contact-form-7/includes/admin-panel.php:162
350
- msgid "File attachments:"
351
- msgstr "Dodatak:"
352
-
353
- #: contact-form-7/includes/admin-panel.php:112
354
- #: contact-form-7/includes/admin-panel.php:164
355
- msgid "(You need WordPress 2.7 or greater to use this feature)"
356
- msgstr "(Potreban WordPress 2.7 ili veći za korištenje ove mogućnosti)"
357
-
358
- #: contact-form-7/includes/admin-panel.php:120
359
- #: contact-form-7/includes/admin-panel.php:172
360
- msgid "Use HTML content type"
361
- msgstr "Koristite sadržaj HTML tipa"
362
-
363
- #: contact-form-7/includes/admin-panel.php:125
364
- #: contact-form-7/includes/admin-panel.php:177
365
- msgid "Message body:"
366
- msgstr "Osnovni tekst poruke:"
367
-
368
- #: contact-form-7/includes/admin-panel.php:136
369
- msgid "Mail (2)"
370
- msgstr "Mail (2)"
371
-
372
- #: contact-form-7/includes/admin-panel.php:143
373
- msgid "Use mail (2)"
374
- msgstr "Koristi poštu (2)"
375
-
376
- #: contact-form-7/includes/admin-panel.php:188
377
- msgid "Messages"
378
- msgstr "Poruke"
379
-
380
- #: contact-form-7/includes/admin-panel.php:196
381
- msgid "Sender's message was sent successfully"
382
- msgstr "Pošiljateljeva poruka je uspješno poslana"
383
-
384
- #: contact-form-7/includes/admin-panel.php:200
385
- msgid "Sender's message was failed to send"
386
- msgstr "Pošiljateljeva poruka nije poslana"
387
-
388
- #: contact-form-7/includes/admin-panel.php:204
389
- msgid "Akismet judged the sending activity as spamming"
390
- msgstr "Akismet je procijenio slanje kao spamming"
391
-
392
- #: contact-form-7/includes/admin-panel.php:208
393
- msgid "Validation errors occurred"
394
- msgstr "Greške valjanosti"
395
-
396
- #: contact-form-7/includes/admin-panel.php:212
397
- msgid "There is a field that sender is needed to fill in"
398
- msgstr "Ovo polje mora biti ispunjen"
399
-
400
- #: contact-form-7/includes/admin-panel.php:216
401
- msgid "Email address that sender entered is invalid"
402
- msgstr "Unesena Email adresa nije valjana"
403
-
404
- #: contact-form-7/includes/admin-panel.php:220
405
- msgid "There is a field of term that sender is needed to accept"
406
- msgstr "Postoji polje koje pošiljatelj mora ispuniti"
407
-
408
- #: contact-form-7/includes/admin-panel.php:224
409
- msgid "Sender doesn't enter the correct answer to the quiz"
410
- msgstr "Pošiljatelj nije točno odgovorio na pitanje"
411
-
412
- #: contact-form-7/includes/admin-panel.php:228
413
- msgid "The code that sender entered does not match the CAPTCHA"
414
- msgstr "Unešen kod se ne poklapa s CAPTCHA-om"
415
-
416
- #: contact-form-7/includes/admin-panel.php:232
417
- msgid "Uploading a file fails for any reason"
418
- msgstr "Učitavanje datoteke iz nekog razloga nije izvršeno"
419
-
420
- #: contact-form-7/includes/admin-panel.php:236
421
- msgid "Uploaded file is not allowed file type"
422
- msgstr "Učitana datoteka nije dozvoljena"
423
-
424
- #: contact-form-7/includes/admin-panel.php:240
425
- msgid "Uploaded file is too large"
426
- msgstr "Učitana datoteka je prevelika"
427
-
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
languages/wpcf7-hu_HU.po DELETED
@@ -1,823 +0,0 @@
1
- msgid ""
2
- msgstr ""
3
- "Project-Id-Version: Contact Form 7 HU\n"
4
- "Report-Msgid-Bugs-To: \n"
5
- "POT-Creation-Date: 2010-03-23 06:47+0900\n"
6
- "PO-Revision-Date: 2010-03-23 14:08+0100\n"
7
- "Last-Translator: FYGureout <webmester@sakraft.hu>\n"
8
- "Language-Team: FYGureout <webmester@sakraft.hu>\n"
9
- "MIME-Version: 1.0\n"
10
- "Content-Type: text/plain; charset=UTF-8\n"
11
- "Content-Transfer-Encoding: 8bit\n"
12
- "X-Poedit-Language: Hungarian\n"
13
- "X-Poedit-Country: HUNGARY\n"
14
- "X-Poedit-SourceCharset: utf-8\n"
15
-
16
- #: contact-form-7/admin/admin.php:120
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:120
23
- msgid "Contact"
24
- msgstr "Kapcsolat"
25
-
26
- #: contact-form-7/admin/admin.php:123
27
- msgid "Edit Contact Forms"
28
- msgstr "Contact Form szerkesztése"
29
-
30
- #: contact-form-7/admin/admin.php:123
31
- msgid "Edit"
32
- msgstr "Szerkeszt"
33
-
34
- #: contact-form-7/admin/admin.php:162
35
- msgid "Generate Tag"
36
- msgstr "Címke létrehozása"
37
-
38
- #: contact-form-7/admin/admin.php:163
39
- msgid "Show"
40
- msgstr "Mutat"
41
-
42
- #: contact-form-7/admin/admin.php:164
43
- msgid "Hide"
44
- msgstr "Elrejt"
45
-
46
- #: contact-form-7/admin/admin.php:261
47
- msgid "Contact form"
48
- msgstr "Kapcsolat űrlap"
49
-
50
- #: contact-form-7/admin/admin.php:280
51
- msgid "Settings"
52
- msgstr "Bállítások"
53
-
54
- #: contact-form-7/admin/admin.php:291
55
- msgid "http://contactform7.com/"
56
- msgstr "http://contactform7.com/"
57
-
58
- #: contact-form-7/admin/admin.php:292
59
- msgid "Contactform7.com"
60
- msgstr "Contactform7.com"
61
-
62
- #: contact-form-7/admin/admin.php:293
63
- msgid "http://contactform7.com/docs/"
64
- msgstr "http://contactform7.com/docs/"
65
-
66
- #: contact-form-7/admin/admin.php:294
67
- msgid "Docs"
68
- msgstr "Dokumentumok"
69
-
70
- #: contact-form-7/admin/admin.php:295
71
- msgid "http://contactform7.com/faq/"
72
- msgstr "http://contactform7.com/faq/"
73
-
74
- #: contact-form-7/admin/admin.php:296
75
- msgid "FAQ"
76
- msgstr "GYIK"
77
-
78
- #: contact-form-7/admin/admin.php:297
79
- msgid "http://contactform7.com/support/"
80
- msgstr "http://contactform7.com/support/"
81
-
82
- #: contact-form-7/admin/admin.php:298
83
- msgid "Support"
84
- msgstr "Támogatás"
85
-
86
- #: contact-form-7/admin/admin.php:312
87
- msgid "Contact form created."
88
- msgstr "Kapcsolat űrlap létrehozva."
89
-
90
- #: contact-form-7/admin/admin.php:315
91
- msgid "Contact form saved."
92
- msgstr "Kapcsolat űrlap elmentve."
93
-
94
- #: contact-form-7/admin/admin.php:318
95
- msgid "Contact form deleted."
96
- msgstr "Kapcsolat űrlap törölve."
97
-
98
- #: contact-form-7/admin/admin.php:321
99
- msgid "Database table created."
100
- msgstr "Adatbázis tábla létrehozva"
101
-
102
- #: contact-form-7/admin/admin.php:324
103
- msgid "Failed to create database table."
104
- msgstr "Hiba az adatbázis tábla létrehozásakor"
105
-
106
- #: contact-form-7/admin/admin.php:357
107
- msgid "Contact Form 7 needs your support. Please donate today."
108
- msgstr "A Contact Form 7 igényli az Ön támogatását. Kérjük, adományozzon még ma!"
109
-
110
- #: contact-form-7/admin/admin.php:358
111
- msgid "Your contribution is needed for making this plugin better."
112
- msgstr "Az Ön együttműködése szükséges ahhoz, hogy a bővítményt még jobbá tegyük"
113
-
114
- #: contact-form-7/admin/admin.php:364
115
- msgid "http://contactform7.com/donate/"
116
- msgstr "http://contactform7.com/donate/"
117
-
118
- #: contact-form-7/admin/admin.php:364
119
- msgid "Donate"
120
- msgstr "Adomány"
121
-
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>A Contact Form 7 adatbázis-tábla nem létezik.</strong> A továbblépshez a <a href=\"%s\">táblát létre kell hozni</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>A Contact Form 7 adatbázis-tábla nem létezik.</strong>"
130
-
131
- #: contact-form-7/admin/edit.php:45
132
- msgid "Add new"
133
- msgstr "Új hozzáadása"
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 "Másolja be és illessze be ezt a kódot a bejegyzésébe, oldalára, vagy szöveg-widget tartalmába."
138
-
139
- #: contact-form-7/admin/edit.php:75
140
- #: contact-form-7/admin/edit.php:309
141
- msgid "Save"
142
- msgstr "Mentés"
143
-
144
- #: contact-form-7/admin/edit.php:82
145
- msgid "Copy"
146
- msgstr "Másolás"
147
-
148
- #: contact-form-7/admin/edit.php:87
149
- msgid "Delete"
150
- msgstr "Törlés"
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
- "Ennek a kapcsolat űrlapnak a törlésére készül.\n"
158
- " 'Mégse', ha nem akarja, 'OK' a törléshez."
159
-
160
- #: contact-form-7/admin/edit.php:104
161
- msgid "Form"
162
- msgstr "Űrlap"
163
-
164
- #: contact-form-7/admin/edit.php:128
165
- msgid "Mail"
166
- msgstr "Levél"
167
-
168
- #: contact-form-7/admin/edit.php:135
169
- #: contact-form-7/admin/edit.php:202
170
- msgid "To:"
171
- msgstr "Címzett:"
172
-
173
- #: contact-form-7/admin/edit.php:140
174
- #: contact-form-7/admin/edit.php:207
175
- msgid "From:"
176
- msgstr "Feladó:"
177
-
178
- #: contact-form-7/admin/edit.php:145
179
- #: contact-form-7/admin/edit.php:212
180
- msgid "Subject:"
181
- msgstr "Tárgy:"
182
-
183
- #: contact-form-7/admin/edit.php:152
184
- #: contact-form-7/admin/edit.php:219
185
- msgid "Additional headers:"
186
- msgstr "További fejlécek:"
187
-
188
- #: contact-form-7/admin/edit.php:157
189
- #: contact-form-7/admin/edit.php:224
190
- msgid "File attachments:"
191
- msgstr "Csatolt fájlok:"
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 "Használjon HTML tartalmi típust"
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 "Üzenet törzse:"
203
-
204
- #: contact-form-7/admin/edit.php:188
205
- msgid "Mail (2)"
206
- msgstr "Levél (2)"
207
-
208
- #: contact-form-7/admin/edit.php:194
209
- msgid "Use mail (2)"
210
- msgstr "Levél (2) használata"
211
-
212
- #: contact-form-7/admin/edit.php:255
213
- msgid "Messages"
214
- msgstr "Üzenetek"
215
-
216
- #: contact-form-7/admin/edit.php:285
217
- msgid "Additional Settings"
218
- msgstr "További beállítások:"
219
-
220
- #: contact-form-7/admin/edit.php:333
221
- #, php-format
222
- msgid "Use the default language (%s)"
223
- msgstr "Alapértelmezett nyelv használata (%s)"
224
-
225
- #: contact-form-7/admin/edit.php:334
226
- #: contact-form-7/admin/edit.php:347
227
- msgid "Add New"
228
- msgstr "Új hozzáadása"
229
-
230
- #: contact-form-7/admin/edit.php:337
231
- msgid "Or"
232
- msgstr "vagy"
233
-
234
- #: contact-form-7/admin/edit.php:342
235
- msgid "(select language)"
236
- msgstr "(nyelv választása)"
237
-
238
- #: contact-form-7/includes/classes.php:564
239
- msgid "Untitled"
240
- msgstr "Cím nélkül"
241
-
242
- #: contact-form-7/includes/functions.php:6
243
- msgid "Sender's message was sent successfully"
244
- msgstr "Az üzenet sikeresen elküldésre került"
245
-
246
- #: contact-form-7/includes/functions.php:7
247
- msgid "Your message was sent successfully. Thanks."
248
- msgstr "Az üzenet sikeresen elküldve. Köszönjük!"
249
-
250
- #: contact-form-7/includes/functions.php:11
251
- msgid "Sender's message was failed to send"
252
- msgstr "Sikertelen üzenetküldés"
253
-
254
- #: contact-form-7/includes/functions.php:12
255
- #: contact-form-7/includes/functions.php:17
256
- msgid "Failed to send your message. Please try later or contact administrator by other way."
257
- msgstr "Üzenet küldése sikertelen. Kérjük próbálja meg később, vagy más módon vegye fel a kapcsolatot az adminisztrátorral!"
258
-
259
- #: contact-form-7/includes/functions.php:16
260
- msgid "Akismet judged the sending activity as spamming"
261
- msgstr "Akismet spamnek tekintette a küldések intenzítása miatt az üzenetet"
262
-
263
- #: contact-form-7/includes/functions.php:21
264
- msgid "Validation errors occurred"
265
- msgstr "Érvényesítési hiba történt"
266
-
267
- #: contact-form-7/includes/functions.php:22
268
- msgid "Validation errors occurred. Please confirm the fields and submit it again."
269
- msgstr "Érvényesítési hiba. Kérem a mezők megerősítését és újra elfogadását!"
270
-
271
- #: contact-form-7/includes/functions.php:26
272
- msgid "There is a field of term that sender is needed to accept"
273
- msgstr "A kötelező mezőt a küldőnek el kell fogadnia"
274
-
275
- #: contact-form-7/includes/functions.php:27
276
- msgid "Please accept the terms to proceed."
277
- msgstr "Kérem a feltételek elfogadását a folytatáshoz!"
278
-
279
- #: contact-form-7/includes/functions.php:31
280
- msgid "Email address that sender entered is invalid"
281
- msgstr "A beírt e-mail cím helytelen"
282
-
283
- #: contact-form-7/includes/functions.php:32
284
- msgid "Email address seems invalid."
285
- msgstr "Az e-mail cím nem tűnik helyesnek."
286
-
287
- #: contact-form-7/includes/functions.php:36
288
- msgid "There is a field that sender is needed to fill in"
289
- msgstr "A kötelező mezőt, a küldőnek ki kell töltenie"
290
-
291
- #: contact-form-7/includes/functions.php:37
292
- msgid "Please fill the required field."
293
- msgstr "Kérem a szükséges mezők kitöltését!"
294
-
295
- #: contact-form-7/includes/functions.php:46
296
- msgid "Your Name"
297
- msgstr "Név"
298
-
299
- #: contact-form-7/includes/functions.php:46
300
- #: contact-form-7/includes/functions.php:48
301
- msgid "(required)"
302
- msgstr "(kötelező)"
303
-
304
- #: contact-form-7/includes/functions.php:48
305
- msgid "Your Email"
306
- msgstr "E-mail cím"
307
-
308
- #: contact-form-7/includes/functions.php:50
309
- msgid "Subject"
310
- msgstr "Tárgy"
311
-
312
- #: contact-form-7/includes/functions.php:52
313
- msgid "Your Message"
314
- msgstr "Üzenet"
315
-
316
- #: contact-form-7/includes/functions.php:54
317
- msgid "Send"
318
- msgstr "Küldés"
319
-
320
- #: contact-form-7/includes/functions.php:62
321
- #, php-format
322
- msgid "From: %s"
323
- msgstr "Feladó: %s"
324
-
325
- #: contact-form-7/includes/functions.php:63
326
- #, php-format
327
- msgid "Subject: %s"
328
- msgstr "Tárgy: %s"
329
-
330
- #: contact-form-7/includes/functions.php:64
331
- msgid "Message Body:"
332
- msgstr "Üzenet:"
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 "Ez az email a %1$s kapcsolati űrlap használatával került kiküldésre:%2$s"
339
-
340
- #: contact-form-7/includes/functions.php:168
341
- msgid "Afrikaans"
342
- msgstr "afrikai"
343
-
344
- #: contact-form-7/includes/functions.php:169
345
- msgid "Albanian"
346
- msgstr "albán"
347
-
348
- #: contact-form-7/includes/functions.php:170
349
- msgid "Arabic"
350
- msgstr "arab"
351
-
352
- #: contact-form-7/includes/functions.php:171
353
- msgid "Bangla"
354
- msgstr "bangladesi"
355
-
356
- #: contact-form-7/includes/functions.php:172
357
- msgid "Bosnian"
358
- msgstr "bosnyák"
359
-
360
- #: contact-form-7/includes/functions.php:173
361
- msgid "Brazilian Portuguese"
362
- msgstr "portugál brazil"
363
-
364
- #: contact-form-7/includes/functions.php:174
365
- msgid "Bulgarian"
366
- msgstr "bulgár"
367
-
368
- #: contact-form-7/includes/functions.php:175
369
- msgid "Catalan"
370
- msgstr "katalán"
371
-
372
- #: contact-form-7/includes/functions.php:176
373
- msgid "Chinese (Simplified)"
374
- msgstr "kínai (egyszerűsített)"
375
-
376
- #: contact-form-7/includes/functions.php:177
377
- msgid "Chinese (Traditional)"
378
- msgstr "kínai (hagyományos)"
379
-
380
- #: contact-form-7/includes/functions.php:178
381
- msgid "Croatian"
382
- msgstr "horvát"
383
-
384
- #: contact-form-7/includes/functions.php:179
385
- msgid "Czech"
386
- msgstr "cseh"
387
-
388
- #: contact-form-7/includes/functions.php:180
389
- msgid "Danish"
390
- msgstr "dán"
391
-
392
- #: contact-form-7/includes/functions.php:181
393
- msgid "Dutch"
394
- msgstr "holland"
395
-
396
- #: contact-form-7/includes/functions.php:182
397
- msgid "English"
398
- msgstr "angol"
399
-
400
- #: contact-form-7/includes/functions.php:183
401
- msgid "Estonian"
402
- msgstr "észt"
403
-
404
- #: contact-form-7/includes/functions.php:184
405
- msgid "Finnish"
406
- msgstr "finn"
407
-
408
- #: contact-form-7/includes/functions.php:185
409
- msgid "French"
410
- msgstr "francia"
411
-
412
- #: contact-form-7/includes/functions.php:186
413
- msgid "Galician"
414
- msgstr "lodomér (gács)"
415
-
416
- #: contact-form-7/includes/functions.php:187
417
- msgid "Georgian"
418
- msgstr "grúz"
419
-
420
- #: contact-form-7/includes/functions.php:188
421
- msgid "German"
422
- msgstr "német"
423
-
424
- #: contact-form-7/includes/functions.php:189
425
- msgid "Greek"
426
- msgstr "görög"
427
-
428
- #: contact-form-7/includes/functions.php:190
429
- msgid "Hebrew"
430
- msgstr "zsidó"
431
-
432
- #: contact-form-7/includes/functions.php:191
433
- msgid "Hindi"
434
- msgstr "hindi"
435
-
436
- #: contact-form-7/includes/functions.php:192
437
- msgid "Hungarian"
438
- msgstr "magyar"
439
-
440
- #: contact-form-7/includes/functions.php:193
441
- msgid "Indonesian"
442
- msgstr "indonéz"
443
-
444
- #: contact-form-7/includes/functions.php:194
445
- msgid "Italian"
446
- msgstr "olasz"
447
-
448
- #: contact-form-7/includes/functions.php:195
449
- msgid "Japanese"
450
- msgstr "japán"
451
-
452
- #: contact-form-7/includes/functions.php:196
453
- msgid "Korean"
454
- msgstr "kóreai"
455
-
456
- #: contact-form-7/includes/functions.php:197
457
- msgid "Latvian"
458
- msgstr "lett"
459
-
460
- #: contact-form-7/includes/functions.php:198
461
- msgid "Lithuanian"
462
- msgstr "litván"
463
-
464
- #: contact-form-7/includes/functions.php:199
465
- msgid "Malayalam"
466
- msgstr "maláj"
467
-
468
- #: contact-form-7/includes/functions.php:200
469
- msgid "Norwegian"
470
- msgstr "norvég"
471
-
472
- #: contact-form-7/includes/functions.php:201
473
- msgid "Persian"
474
- msgstr "perzsa"
475
-
476
- #: contact-form-7/includes/functions.php:202
477
- msgid "Polish"
478
- msgstr "lengyel"
479
-
480
- #: contact-form-7/includes/functions.php:203
481
- msgid "Portuguese"
482
- msgstr "portugál"
483
-
484
- #: contact-form-7/includes/functions.php:204
485
- msgid "Russian"
486
- msgstr "orosz"
487
-
488
- #: contact-form-7/includes/functions.php:205
489
- msgid "Romanian"
490
- msgstr "román"
491
-
492
- #: contact-form-7/includes/functions.php:206
493
- msgid "Serbian"
494
- msgstr "szerb"
495
-
496
- #: contact-form-7/includes/functions.php:207
497
- msgid "Slovak"
498
- msgstr "szlovák"
499
-
500
- #: contact-form-7/includes/functions.php:208
501
- msgid "Slovene"
502
- msgstr "szlovén"
503
-
504
- #: contact-form-7/includes/functions.php:209
505
- msgid "Spanish"
506
- msgstr "spanyol"
507
-
508
- #: contact-form-7/includes/functions.php:210
509
- msgid "Swedish"
510
- msgstr "svéd"
511
-
512
- #: contact-form-7/includes/functions.php:211
513
- msgid "Thai"
514
- msgstr "thai"
515
-
516
- #: contact-form-7/includes/functions.php:212
517
- msgid "Turkish"
518
- msgstr "török"
519
-
520
- #: contact-form-7/includes/functions.php:213
521
- msgid "Ukrainian"
522
- msgstr "ukrán"
523
-
524
- #: contact-form-7/includes/functions.php:214
525
- msgid "Vietnamese"
526
- msgstr "vietnami"
527
-
528
- #: contact-form-7/modules/acceptance.php:104
529
- msgid "Acceptance"
530
- msgstr "Elfogadás"
531
-
532
- #: contact-form-7/modules/acceptance.php:113
533
- #: contact-form-7/modules/captcha.php:214
534
- #: contact-form-7/modules/checkbox.php:209
535
- #: contact-form-7/modules/file.php:241
536
- msgid "Name"
537
- msgstr "Név"
538
-
539
- #: contact-form-7/modules/acceptance.php:118
540
- #: contact-form-7/modules/acceptance.php:121
541
- #: contact-form-7/modules/captcha.php:221
542
- #: contact-form-7/modules/captcha.php:224
543
- #: contact-form-7/modules/captcha.php:229
544
- #: contact-form-7/modules/captcha.php:232
545
- #: contact-form-7/modules/captcha.php:236
546
- #: contact-form-7/modules/captcha.php:247
547
- #: contact-form-7/modules/captcha.php:250
548
- #: contact-form-7/modules/captcha.php:255
549
- #: contact-form-7/modules/captcha.php:258
550
- #: contact-form-7/modules/checkbox.php:214
551
- #: contact-form-7/modules/checkbox.php:217
552
- #: contact-form-7/modules/file.php:246
553
- #: contact-form-7/modules/file.php:249
554
- #: contact-form-7/modules/file.php:254
555
- #: contact-form-7/modules/file.php:257
556
- msgid "optional"
557
- msgstr "választható"
558
-
559
- #: contact-form-7/modules/acceptance.php:127
560
- msgid "Make this checkbox checked by default?"
561
- msgstr "Ez a jelölőnyégyzet alapértelmezettként legyen bekapcsolva?"
562
-
563
- #: contact-form-7/modules/acceptance.php:128
564
- msgid "Make this checkbox work inversely?"
565
- msgstr "Ez a jelölőnégyzet működjön fordítva?"
566
-
567
- #: contact-form-7/modules/acceptance.php:129
568
- msgid "* That means visitor who accepts the term unchecks it."
569
- msgstr "* Azt jelenti, hogy az a látogató kikapcsolja, aki elfogadja a feltételeket."
570
-
571
- #: contact-form-7/modules/acceptance.php:134
572
- #: contact-form-7/modules/captcha.php:263
573
- #: contact-form-7/modules/checkbox.php:237
574
- #: contact-form-7/modules/file.php:262
575
- msgid "Copy this code and paste it into the form left."
576
- msgstr "Másolja- és illessze be ezt a kódot a bal oldali űrlapba."
577
-
578
- #: contact-form-7/modules/captcha.php:70
579
- msgid "To use CAPTCHA, you need <a href=\"http://wordpress.org/extend/plugins/really-simple-captcha/\">Really Simple CAPTCHA</a> plugin installed."
580
- msgstr "A CAPTCHA használatához a <a href=\"http://wordpress.org/extend/plugins/really-simple-captcha/\">Really Simple CAPTCHA</a> bővítményt telepíteni kell."
581
-
582
- #: contact-form-7/modules/captcha.php:189
583
- msgid "The code that sender entered does not match the CAPTCHA"
584
- msgstr "A küldő által beírt kód nem egyezik a CAPTCHA-val"
585
-
586
- #: contact-form-7/modules/captcha.php:190
587
- msgid "Your entered code is incorrect."
588
- msgstr "A beírt kód hibás."
589
-
590
- #: contact-form-7/modules/captcha.php:200
591
- msgid "CAPTCHA"
592
- msgstr "CAPTCHA"
593
-
594
- #: contact-form-7/modules/captcha.php:211
595
- msgid "Note: To use CAPTCHA, you need Really Simple CAPTCHA plugin installed."
596
- msgstr "Figyelem! A CAPTCHA használatához telepíteni kell a Really Simple CAPTCHA bővítményt!"
597
-
598
- #: contact-form-7/modules/captcha.php:218
599
- msgid "Image settings"
600
- msgstr "Képbeállítások"
601
-
602
- #: contact-form-7/modules/captcha.php:229
603
- msgid "Foreground color"
604
- msgstr "Előtér szín"
605
-
606
- #: contact-form-7/modules/captcha.php:232
607
- msgid "Background color"
608
- msgstr "Háttér szín"
609
-
610
- #: contact-form-7/modules/captcha.php:236
611
- msgid "Image size"
612
- msgstr "Kép mérete"
613
-
614
- #: contact-form-7/modules/captcha.php:237
615
- msgid "Small"
616
- msgstr "Kicsi"
617
-
618
- #: contact-form-7/modules/captcha.php:238
619
- msgid "Medium"
620
- msgstr "Közepes"
621
-
622
- #: contact-form-7/modules/captcha.php:239
623
- msgid "Large"
624
- msgstr "Nagy"
625
-
626
- #: contact-form-7/modules/captcha.php:244
627
- msgid "Input field settings"
628
- msgstr "Beviteli mező beállításai"
629
-
630
- #: contact-form-7/modules/captcha.php:264
631
- msgid "For image"
632
- msgstr "Képnek"
633
-
634
- #: contact-form-7/modules/captcha.php:266
635
- msgid "For input field"
636
- msgstr "Beviteli mezőnek"
637
-
638
- #: contact-form-7/modules/captcha.php:296
639
- #, php-format
640
- msgid "This contact form contains CAPTCHA fields, but the temporary folder for the files (%s) does not exist or is not writable. You can create the folder or change its permission manually."
641
- msgstr "Ez a kapcsolati űrlap tartalmazza a CAPTCHA-mezőt, de a %s fájlok átmeneti könyvtára nem létezik, vagy nem írható. Ezt a könyvtárat kézzel kell létrehozni, vagy cserélni a könyvtár-jogokat."
642
-
643
- #: contact-form-7/modules/captcha.php:302
644
- msgid "This contact form contains CAPTCHA fields, but the necessary libraries (GD and FreeType) are not available on your server."
645
- msgstr "Ez a kapcsolati űrlap tartalmazza a CAPTCHA-mezőt, de a hozzá szükséges könyvtárak (GD és FreeType) a szerveren nem érhetőek el."
646
-
647
- #: contact-form-7/modules/checkbox.php:182
648
- msgid "Checkboxes"
649
- msgstr "Jelölőnégyzetek"
650
-
651
- #: contact-form-7/modules/checkbox.php:185
652
- msgid "Radio buttons"
653
- msgstr "Választógombok"
654
-
655
- #: contact-form-7/modules/checkbox.php:206
656
- #: contact-form-7/modules/file.php:240
657
- msgid "Required field?"
658
- msgstr "Kötelező mező?"
659
-
660
- #: contact-form-7/modules/checkbox.php:222
661
- msgid "Choices"
662
- msgstr "Lehetőségek"
663
-
664
- #: contact-form-7/modules/checkbox.php:224
665
- msgid "* One choice per line."
666
- msgstr "* Egy választás soronként."
667
-
668
- #: contact-form-7/modules/checkbox.php:228
669
- msgid "Put a label first, a checkbox last?"
670
- msgstr "Először megjelöl, aztán ellenőriz?"
671
-
672
- #: contact-form-7/modules/checkbox.php:229
673
- msgid "Wrap each item with <label> tag?"
674
- msgstr "Mindegyik tételt <label> tag-gel megjelöljük?"
675
-
676
- #: contact-form-7/modules/checkbox.php:231
677
- msgid "Make checkboxes exclusive?"
678
- msgstr "A jelölőnégyzetek kizáróak legyenek?"
679
-
680
- #: contact-form-7/modules/checkbox.php:239
681
- msgid "And, put this code into the Mail fields below."
682
- msgstr "és helyezze be ezt a kódott az alul található email-mezőbe."
683
-
684
- #: contact-form-7/modules/file.php:204
685
- msgid "Uploading a file fails for any reason"
686
- msgstr "Fájl feltöltés sikertelen"
687
-
688
- #: contact-form-7/modules/file.php:205
689
- msgid "Failed to upload file."
690
- msgstr "Sikertelen feltöltés."
691
-
692
- #: contact-form-7/modules/file.php:209
693
- msgid "Uploaded file is not allowed file type"
694
- msgstr "Feltöltött fájl típusa nem megengedett"
695
-
696
- #: contact-form-7/modules/file.php:210
697
- msgid "This file type is not allowed."
698
- msgstr "Ez a fájl típus nem megengedett."
699
-
700
- #: contact-form-7/modules/file.php:214
701
- msgid "Uploaded file is too large"
702
- msgstr "Feltöltött fájl túl nagy"
703
-
704
- #: contact-form-7/modules/file.php:215
705
- msgid "This file is too large."
706
- msgstr "Ez a fájl túl nagy."
707
-
708
- #: contact-form-7/modules/file.php:219
709
- msgid "Uploading a file fails for PHP error"
710
- msgstr "Fájl feltöltés PHP hibát okozott"
711
-
712
- #: contact-form-7/modules/file.php:220
713
- msgid "Failed to upload file. Error occurred."
714
- msgstr "Hiba történt a fájlfeltöltés közben. "
715
-
716
- #: contact-form-7/modules/file.php:231
717
- msgid "File upload"
718
- msgstr "Fájl feltöltése"
719
-
720
- #: contact-form-7/modules/file.php:254
721
- msgid "File size limit"
722
- msgstr "Fájl méret korlát"
723
-
724
- #: contact-form-7/modules/file.php:254
725
- msgid "bytes"
726
- msgstr "byte"
727
-
728
- #: contact-form-7/modules/file.php:257
729
- msgid "Acceptable file types"
730
- msgstr "Használható fájl típusok"
731
-
732
- #: contact-form-7/modules/file.php:264
733
- msgid "And, put this code into the File Attachments field below."
734
- msgstr "és tegyük ezt a kódot az alul lévő csatolt fájl mezőbe."
735
-
736
- #: contact-form-7/modules/file.php:289
737
- #, php-format
738
- msgid "This contact form contains file uploading fields, but the temporary folder for the files (%s) does not exist or is not writable. You can create the folder or change its permission manually."
739
- msgstr "Ez a kapcsolati űrlap tartalmazza a fájlfeltöltés mezőt, de a %s fájlok átmeneti könyvtára nem létezik, vagy nem írható. A könyvtárat kézzel kell létrehozni, vagy módosítani a jogokat."
740
-
741
- #: contact-form-7/modules/icl.php:74
742
- msgid "This contact form contains [icl] tags, but they are obsolete and no longer functioning on this version of Contact Form 7. <a href=\"http://contactform7.com/2009/12/25/contact-form-in-your-language/#Creating_contact_form_in_different_languages\" target=\"_blank\">There is a simpler way for creating contact forms of other languages</a> and you are recommended to use it."
743
- msgstr "Ez a kapcsolati űrlap tartalmazza az [icl] tag-et, de már elavult, és nem támogatja a Contact Form 7 ezen verziója.<a href=\"http://contactform7.com/2009/12/25/contact-form-in-your-language/#Creating_contact_form_in_different_languages\" target=\"_blank\">Itt egy egyszerűbb megoldás a kapcsolati űrlap létrehozásához más nyelven</a> és ajánlott ennek a használata."
744
-
745
- #: contact-form-7/modules/quiz.php:170
746
- msgid "Sender doesn't enter the correct answer to the quiz"
747
- msgstr "A felhasználó nem adott korrekt választ a quiz-kérdésre."
748
-
749
- #: contact-form-7/modules/quiz.php:171
750
- msgid "Your answer is not correct."
751
- msgstr "Hibás a válasz!"
752
-
753
- #: contact-form-7/modules/quiz.php:181
754
- msgid "Quiz"
755
- msgstr "Quiz"
756
-
757
- #: contact-form-7/modules/quiz.php:211
758
- msgid "Quizzes"
759
- msgstr "Quizek"
760
-
761
- #: contact-form-7/modules/quiz.php:213
762
- msgid "* quiz|answer (e.g. 1+1=?|2)"
763
- msgstr "* quiz|válasz (pl.: 1+1=?|2)"
764
-
765
- #: contact-form-7/modules/select.php:154
766
- msgid "Drop-down menu"
767
- msgstr "Lenyíló menü"
768
-
769
- #: contact-form-7/modules/select.php:183
770
- msgid "Allow multiple selections?"
771
- msgstr "Engedélyezett a többszörös választás?"
772
-
773
- #: contact-form-7/modules/select.php:184
774
- msgid "Insert a blank item as the first option?"
775
- msgstr "Első lehetőségnek egy üres tétel beszúrása?"
776
-
777
- #: contact-form-7/modules/submit.php:62
778
- msgid "Submit button"
779
- msgstr "Elfogadás gomb"
780
-
781
- #: contact-form-7/modules/submit.php:80
782
- msgid "Label"
783
- msgstr "Címke"
784
-
785
- #: contact-form-7/modules/text.php:137
786
- msgid "Text field"
787
- msgstr "Szövegmező"
788
-
789
- #: contact-form-7/modules/text.php:140
790
- msgid "Email field"
791
- msgstr "E-mail mező"
792
-
793
- #: contact-form-7/modules/text.php:182
794
- msgid "Akismet"
795
- msgstr "Akismet"
796
-
797
- #: contact-form-7/modules/text.php:184
798
- msgid "This field requires author's name"
799
- msgstr "Ebbe a mezőbe a szerző neve szükséges"
800
-
801
- #: contact-form-7/modules/text.php:185
802
- msgid "This field requires author's URL"
803
- msgstr "Ebbe a mezőbe a szerző URL-je szükséges"
804
-
805
- #: contact-form-7/modules/text.php:187
806
- msgid "This field requires author's email address"
807
- msgstr "Ebbe a mezőbe a szerző e-mail címe szükséges"
808
-
809
- #: contact-form-7/modules/text.php:191
810
- #: contact-form-7/modules/textarea.php:157
811
- msgid "Default value"
812
- msgstr "Alapértelmezett érték"
813
-
814
- #: contact-form-7/modules/textarea.php:126
815
- msgid "Text area"
816
- msgstr "Többsoros szöveg"
817
-
818
- #~ msgid "Delete this contact form"
819
- #~ msgstr "Ennek a kapcsolat űrlapnak a törlése."
820
- #~ msgid "(You need WordPress 2.7 or greater to use this feature)"
821
- #~ msgstr ""
822
- #~ "(Wordpress 2.7, vagy későbbi változat szükséges ehhez a funkcióhoz.)"
823
-
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
languages/wpcf7-id_ID.po DELETED
@@ -1,308 +0,0 @@
1
- msgid ""
2
- msgstr ""
3
- "Project-Id-Version: Contact Form 7\n"
4
- "Report-Msgid-Bugs-To: \n"
5
- "POT-Creation-Date: 2008-08-10 18:56+0900\n"
6
- "PO-Revision-Date: 2008-09-24 18:41+0700\n"
7
- "Last-Translator: Hendry Lee <hendry.lee@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-SearchPath-0: contact-form-7\n"
17
-
18
- #: contact-form-7/wp-contact-form-7.php:309
19
- msgid "Contact form"
20
- msgstr "Formulir Kontak"
21
-
22
- #: contact-form-7/wp-contact-form-7.php:403
23
- #: contact-form-7/includes/admin-panel.php:5
24
- msgid "Contact Form 7"
25
- msgstr "Contact Form 7"
26
-
27
- #: contact-form-7/wp-contact-form-7.php:419
28
- msgid "optional"
29
- msgstr "opsional"
30
-
31
- #: contact-form-7/wp-contact-form-7.php:420
32
- msgid "Generate Tag"
33
- msgstr "Buat Tag"
34
-
35
- #: contact-form-7/wp-contact-form-7.php:421
36
- msgid "Text field"
37
- msgstr "Ruas teks"
38
-
39
- #: contact-form-7/wp-contact-form-7.php:422
40
- msgid "Email field"
41
- msgstr "Ruas email"
42
-
43
- #: contact-form-7/wp-contact-form-7.php:423
44
- msgid "Text area"
45
- msgstr "Area teks"
46
-
47
- #: contact-form-7/wp-contact-form-7.php:424
48
- msgid "Drop-down menu"
49
- msgstr "Menu 'drop-down'"
50
-
51
- #: contact-form-7/wp-contact-form-7.php:425
52
- msgid "Checkboxes"
53
- msgstr "Checkbox"
54
-
55
- #: contact-form-7/wp-contact-form-7.php:426
56
- msgid "Radio buttons"
57
- msgstr "Tombol radio"
58
-
59
- #: contact-form-7/wp-contact-form-7.php:427
60
- msgid "Acceptance"
61
- msgstr "Penerimaan"
62
-
63
- #: contact-form-7/wp-contact-form-7.php:428
64
- msgid "Make this checkbox checked by default?"
65
- msgstr "Buat checkbox ini tercentang secara bawaan"
66
-
67
- #: contact-form-7/wp-contact-form-7.php:429
68
- msgid "Make this checkbox work inversely?"
69
- msgstr "Buat checkbox ini bekerja secara terbalik?"
70
-
71
- #: contact-form-7/wp-contact-form-7.php:430
72
- msgid "* That means visitor who accepts the term unchecks it."
73
- msgstr "* Ini berarti pengunjung yang menerima pernyataan menghilangkan centang."
74
-
75
- #: contact-form-7/wp-contact-form-7.php:431
76
- msgid "CAPTCHA"
77
- msgstr "CAPTCHA"
78
-
79
- #: contact-form-7/wp-contact-form-7.php:432
80
- msgid "Submit button"
81
- msgstr "Tombol kirim"
82
-
83
- #: contact-form-7/wp-contact-form-7.php:433
84
- msgid "Name"
85
- msgstr "Nama"
86
-
87
- #: contact-form-7/wp-contact-form-7.php:434
88
- msgid "Required field?"
89
- msgstr "Ruas yang diperlukan"
90
-
91
- #: contact-form-7/wp-contact-form-7.php:435
92
- msgid "Allow multiple selections?"
93
- msgstr "Izinkan beberapa pilihan"
94
-
95
- #: contact-form-7/wp-contact-form-7.php:436
96
- msgid "Insert a blank item as the first option?"
97
- msgstr "Masukkan sebuah item kosong sebagai opsi pertama?"
98
-
99
- #: contact-form-7/wp-contact-form-7.php:437
100
- msgid "Make checkboxes exclusive?"
101
- msgstr "But checkbox eksklusif?"
102
-
103
- #: contact-form-7/wp-contact-form-7.php:438
104
- msgid "Choices"
105
- msgstr "Pilihan"
106
-
107
- #: contact-form-7/wp-contact-form-7.php:439
108
- msgid "Label"
109
- msgstr "Label"
110
-
111
- #: contact-form-7/wp-contact-form-7.php:440
112
- msgid "Default value"
113
- msgstr "Nilai bawaan"
114
-
115
- #: contact-form-7/wp-contact-form-7.php:441
116
- msgid "Akismet"
117
- msgstr "Akismet"
118
-
119
- #: contact-form-7/wp-contact-form-7.php:442
120
- msgid "This field requires author's name"
121
- msgstr "Ruas ini memerlukan nama penulis"
122
-
123
- #: contact-form-7/wp-contact-form-7.php:443
124
- msgid "This field requires author's URL"
125
- msgstr "Ruas ini memerlukan URL penulis"
126
-
127
- #: contact-form-7/wp-contact-form-7.php:444
128
- msgid "This field requires author's email address"
129
- msgstr "Ruas ini memerlukan alamat email penulis"
130
-
131
- #: contact-form-7/wp-contact-form-7.php:445
132
- msgid "Copy and paste this code into the form"
133
- msgstr "Salin dan tempel kode ini ke formulir"
134
-
135
- #: contact-form-7/wp-contact-form-7.php:446
136
- msgid "Foreground color"
137
- msgstr "Warna tampilan depan"
138
-
139
- #: contact-form-7/wp-contact-form-7.php:447
140
- msgid "Background color"
141
- msgstr "Warna tampilan belakang"
142
-
143
- #: contact-form-7/wp-contact-form-7.php:448
144
- msgid "Image size"
145
- msgstr "Ukuran gambar"
146
-
147
- #: contact-form-7/wp-contact-form-7.php:449
148
- msgid "Small"
149
- msgstr "Kecil"
150
-
151
- #: contact-form-7/wp-contact-form-7.php:450
152
- msgid "Medium"
153
- msgstr "Sedang"
154
-
155
- #: contact-form-7/wp-contact-form-7.php:451
156
- msgid "Large"
157
- msgstr "Besar"
158
-
159
- #: contact-form-7/wp-contact-form-7.php:452
160
- msgid "Image settings"
161
- msgstr "Pengaturan gambar"
162
-
163
- #: contact-form-7/wp-contact-form-7.php:453
164
- msgid "Input field settings"
165
- msgstr "Pengaturan ruas masukan"
166
-
167
- #: contact-form-7/wp-contact-form-7.php:454
168
- msgid "For image"
169
- msgstr "Untuk gambar"
170
-
171
- #: contact-form-7/wp-contact-form-7.php:455
172
- msgid "For input field"
173
- msgstr "Untuk ruas masukan"
174
-
175
- #: contact-form-7/wp-contact-form-7.php:456
176
- msgid "* One choice per line."
177
- msgstr "* Satu pilihan per baris."
178
-
179
- #: contact-form-7/wp-contact-form-7.php:483
180
- msgid "Contact form created."
181
- msgstr "Formulir kontak telah diciptakan."
182
-
183
- #: contact-form-7/wp-contact-form-7.php:486
184
- msgid "Contact form saved."
185
- msgstr "Formulir kontak telah disimpan."
186
-
187
- #: contact-form-7/wp-contact-form-7.php:489
188
- msgid "Contact form deleted."
189
- msgstr "Formulir kontak telah dihapus."
190
-
191
- #: contact-form-7/wp-contact-form-7.php:496
192
- msgid "Untitled"
193
- msgstr "Tanpa judul"
194
-
195
- #: contact-form-7/wp-contact-form-7.php:522
196
- msgid "Your Name"
197
- msgstr "Nama Anda"
198
-
199
- #: contact-form-7/wp-contact-form-7.php:522
200
- #: contact-form-7/wp-contact-form-7.php:524
201
- msgid "(required)"
202
- msgstr "(dibutuhkan)"
203
-
204
- #: contact-form-7/wp-contact-form-7.php:524
205
- msgid "Your Email"
206
- msgstr "Email Anda"
207
-
208
- #: contact-form-7/wp-contact-form-7.php:526
209
- msgid "Subject"
210
- msgstr "Subjek"
211
-
212
- #: contact-form-7/wp-contact-form-7.php:528
213
- msgid "Your Message"
214
- msgstr "Pesan Anda"
215
-
216
- #: contact-form-7/wp-contact-form-7.php:530
217
- #: contact-form-7/wp-contact-form-7.php:1046
218
- msgid "Send"
219
- msgstr "Kirim"
220
-
221
- #: contact-form-7/wp-contact-form-7.php:559
222
- msgid "Your message was sent successfully. Thanks."
223
- msgstr "Pesan Anda telah terkirim. Terima kasih."
224
-
225
- #: contact-form-7/wp-contact-form-7.php:561
226
- msgid "Failed to send your message. Please try later or contact administrator by other way."
227
- msgstr "Gagal mengirimkan pesan. Silakan coba beberapa saat lagi atau hubungi administrator dengan cara lain."
228
-
229
- #: contact-form-7/wp-contact-form-7.php:563
230
- msgid "Validation errors occurred. Please confirm the fields and submit it again."
231
- msgstr "Terjadi kesalahan pada validasi. Silakan konfirmasi ruas-ruasnya dan kirim lagi."
232
-
233
- #: contact-form-7/wp-contact-form-7.php:565
234
- msgid "Please accept the terms to proceed."
235
- msgstr "Mohon terima pernyataan untuk melanjutkan."
236
-
237
- #: contact-form-7/wp-contact-form-7.php:567
238
- msgid "Email address seems invalid."
239
- msgstr "Alamat email sepertinya tidak valid."
240
-
241
- #: contact-form-7/wp-contact-form-7.php:569
242
- msgid "Please fill the required field."
243
- msgstr "Mohon isi ruas yang diperlukan."
244
-
245
- #: contact-form-7/wp-contact-form-7.php:571
246
- msgid "Your entered code is incorrect."
247
- msgstr "Kode yang Anda masukkan salah."
248
-
249
- #: contact-form-7/includes/admin-panel.php:16
250
- msgid "Add new"
251
- msgstr "Tambah yang baru"
252
-
253
- #: contact-form-7/includes/admin-panel.php:32
254
- msgid "Copy and paste this code into your post content."
255
- msgstr "Salin dan tempel kode ini ke konten tulisan."
256
-
257
- #: contact-form-7/includes/admin-panel.php:38
258
- msgid "Form"
259
- msgstr "Formulir"
260
-
261
- #: contact-form-7/includes/admin-panel.php:42
262
- msgid "Mail"
263
- msgstr "Surat"
264
-
265
- #: contact-form-7/includes/admin-panel.php:44
266
- #: contact-form-7/includes/admin-panel.php:65
267
- msgid "To:"
268
- msgstr "Kepada:"
269
-
270
- #: contact-form-7/includes/admin-panel.php:48
271
- #: contact-form-7/includes/admin-panel.php:69
272
- msgid "From:"
273
- msgstr "Dari:"
274
-
275
- #: contact-form-7/includes/admin-panel.php:52
276
- #: contact-form-7/includes/admin-panel.php:73
277
- msgid "Subject:"
278
- msgstr "Subjek:"
279
-
280
- #: contact-form-7/includes/admin-panel.php:56
281
- #: contact-form-7/includes/admin-panel.php:77
282
- msgid "Message body:"
283
- msgstr "Tubuh pesan:"
284
-
285
- #: contact-form-7/includes/admin-panel.php:61
286
- msgid "Mail (2)"
287
- msgstr "Surat (2)"
288
-
289
- #: contact-form-7/includes/admin-panel.php:63
290
- msgid "Use mail (2)"
291
- msgstr "Pakai surat (2)"
292
-
293
- #: contact-form-7/includes/admin-panel.php:85
294
- msgid "Save"
295
- msgstr "Simpan"
296
-
297
- #: contact-form-7/includes/admin-panel.php:92
298
- msgid "Delete this contact form"
299
- msgstr "Hapus formulir kontak ini"
300
-
301
- #: contact-form-7/includes/admin-panel.php:93
302
- msgid ""
303
- "You are about to delete this contact form.\n"
304
- " 'Cancel' to stop, 'OK' to delete."
305
- msgstr ""
306
- "Anda akan menghapus formulir kontak ini.\n"
307
- " 'Batal' untuk berhenti, 'OK' untuk hapus."
308
-
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
languages/wpcf7-it_IT.po DELETED
@@ -1,856 +0,0 @@
1
- msgid ""
2
- msgstr ""
3
- "Project-Id-Version: WP Contact Form 7 in italiano\n"
4
- "Report-Msgid-Bugs-To: \n"
5
- "POT-Creation-Date: 2010-03-23 06:47+0900\n"
6
- "PO-Revision-Date: 2010-03-23 18:04+0100\n"
7
- "Last-Translator: Gianni Diurno (aka gidibao) <gidibao[at]gmail[dot]com>\n"
8
- "Language-Team: Gianni Diurno | gidibao.net <gidibao[at]gmail[dot]com>\n"
9
- "MIME-Version: 1.0\n"
10
- "Content-Type: text/plain; charset=UTF-8\n"
11
- "Content-Transfer-Encoding: 8bit\n"
12
- "X-Poedit-Language: Italian\n"
13
- "X-Poedit-Country: ITALY\n"
14
- "X-Poedit-SourceCharset: utf-8\n"
15
- "X-Poedit-KeywordsList: __;_e\n"
16
- "X-Poedit-Basepath: ../..\n"
17
- "X-Poedit-SearchPath-0: contact-form-7\n"
18
-
19
- #: contact-form-7/admin/admin.php:120
20
- #: contact-form-7/admin/edit.php:17
21
- #: contact-form-7/admin/edit.php:30
22
- msgid "Contact Form 7"
23
- msgstr "Contact Form 7"
24
-
25
- #: contact-form-7/admin/admin.php:120
26
- msgid "Contact"
27
- msgstr "C F 7"
28
-
29
- #: contact-form-7/admin/admin.php:123
30
- msgid "Edit Contact Forms"
31
- msgstr "Modifica Contact Forms"
32
-
33
- #: contact-form-7/admin/admin.php:123
34
- msgid "Edit"
35
- msgstr "Modifica"
36
-
37
- #: contact-form-7/admin/admin.php:162
38
- msgid "Generate Tag"
39
- msgstr "Genera tag"
40
-
41
- #: contact-form-7/admin/admin.php:163
42
- msgid "Show"
43
- msgstr "Mostra"
44
-
45
- #: contact-form-7/admin/admin.php:164
46
- msgid "Hide"
47
- msgstr "Nascondi"
48
-
49
- #: contact-form-7/admin/admin.php:261
50
- msgid "Contact form"
51
- msgstr "Modulo di contatto"
52
-
53
- #: contact-form-7/admin/admin.php:280
54
- msgid "Settings"
55
- msgstr "Impostazioni"
56
-
57
- #: contact-form-7/admin/admin.php:291
58
- msgid "http://contactform7.com/"
59
- msgstr "http://contactform7.com/"
60
-
61
- #: contact-form-7/admin/admin.php:292
62
- msgid "Contactform7.com"
63
- msgstr "Contactform7.com"
64
-
65
- #: contact-form-7/admin/admin.php:293
66
- msgid "http://contactform7.com/docs/"
67
- msgstr "http://contactform7.com/docs/"
68
-
69
- #: contact-form-7/admin/admin.php:294
70
- msgid "Docs"
71
- msgstr "Documentazione"
72
-
73
- #: contact-form-7/admin/admin.php:295
74
- msgid "http://contactform7.com/faq/"
75
- msgstr "http://contactform7.com/faq/"
76
-
77
- #: contact-form-7/admin/admin.php:296
78
- msgid "FAQ"
79
- msgstr "FAQ"
80
-
81
- #: contact-form-7/admin/admin.php:297
82
- msgid "http://contactform7.com/support/"
83
- msgstr "http://contactform7.com/support/"
84
-
85
- #: contact-form-7/admin/admin.php:298
86
- msgid "Support"
87
- msgstr "Supporto"
88
-
89
- #: contact-form-7/admin/admin.php:312
90
- msgid "Contact form created."
91
- msgstr "Il modulo di contatto é stato creato."
92
-
93
- #: contact-form-7/admin/admin.php:315
94
- msgid "Contact form saved."
95
- msgstr "Il modulo di contatto é stato salvato. "
96
-
97
- #: contact-form-7/admin/admin.php:318
98
- msgid "Contact form deleted."
99
- msgstr "Il modulo di contatto é stato cancellato. "
100
-
101
- #: contact-form-7/admin/admin.php:321
102
- msgid "Database table created."
103
- msgstr "E' stata creata la tabella nel database."
104
-
105
- #: contact-form-7/admin/admin.php:324
106
- msgid "Failed to create database table."
107
- msgstr "Non é stato possibile creare la tabella nel database"
108
-
109
- #: contact-form-7/admin/admin.php:357
110
- msgid "Contact Form 7 needs your support. Please donate today."
111
- msgstr "Contact Form 7 ha bisogno del tuo sostegno. Effettua una donazione oggi stesso."
112
-
113
- #: contact-form-7/admin/admin.php:358
114
- msgid "Your contribution is needed for making this plugin better."
115
- msgstr "Il tuo contributo sarà necessario per potere rendere migliore questo plugin."
116
-
117
- #: contact-form-7/admin/admin.php:364
118
- msgid "http://contactform7.com/donate/"
119
- msgstr "http://contactform7.com/donate/"
120
-
121
- #: contact-form-7/admin/admin.php:364
122
- msgid "Donate"
123
- msgstr "Donazioni"
124
-
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>Non esiste nel database la tabella di Contact Form 7.</strong> Dovrai <a href=\"%s\">creare la tabella</a> affinché possa funzionare."
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>Non esiste nel database la tabella di Contact Form 7.</strong>"
133
-
134
- #: contact-form-7/admin/edit.php:45
135
- msgid "Add new"
136
- msgstr "Aggiungi nuovo"
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 "Copia ed incolla questo codice nel tuo articolo, pagina o contenuto del widget di testo."
141
-
142
- #: contact-form-7/admin/edit.php:75
143
- #: contact-form-7/admin/edit.php:309
144
- msgid "Save"
145
- msgstr "Salva"
146
-
147
- #: contact-form-7/admin/edit.php:82
148
- msgid "Copy"
149
- msgstr "Copia"
150
-
151
- #: contact-form-7/admin/edit.php:87
152
- msgid "Delete"
153
- msgstr "Cancella"
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 ""
160
- "Stai per cancellare questo modulo di contatto.\n"
161
- " 'Cancel' per annullare, 'OK' per proseguire."
162
-
163
- #: contact-form-7/admin/edit.php:104
164
- msgid "Form"
165
- msgstr "Modulo"
166
-
167
- #: contact-form-7/admin/edit.php:128
168
- msgid "Mail"
169
- msgstr "Mail"
170
-
171
- #: contact-form-7/admin/edit.php:135
172
- #: contact-form-7/admin/edit.php:202
173
- msgid "To:"
174
- msgstr "A:"
175
-
176
- #: contact-form-7/admin/edit.php:140
177
- #: contact-form-7/admin/edit.php:207
178
- msgid "From:"
179
- msgstr "Da:"
180
-
181
- #: contact-form-7/admin/edit.php:145
182
- #: contact-form-7/admin/edit.php:212
183
- msgid "Subject:"
184
- msgstr "Oggetto:"
185
-
186
- #: contact-form-7/admin/edit.php:152
187
- #: contact-form-7/admin/edit.php:219
188
- msgid "Additional headers:"
189
- msgstr "Intestazioni aggiuntive:"
190
-
191
- #: contact-form-7/admin/edit.php:157
192
- #: contact-form-7/admin/edit.php:224
193
- msgid "File attachments:"
194
- msgstr "File allegati:"
195
-
196
- #: contact-form-7/admin/edit.php:165
197
- #: contact-form-7/admin/edit.php:232
198
- msgid "Use HTML content type"
199
- msgstr "Utilizza contenuti in HTML"
200
-
201
- #: contact-form-7/admin/edit.php:172
202
- #: contact-form-7/admin/edit.php:239
203
- #: contact-form-7/includes/functions.php:78
204
- msgid "Message body:"
205
- msgstr "Corpo del messaggio:"
206
-
207
- #: contact-form-7/admin/edit.php:188
208
- msgid "Mail (2)"
209
- msgstr "Mail (2)"
210
-
211
- #: contact-form-7/admin/edit.php:194
212
- msgid "Use mail (2)"
213
- msgstr "Utilizza mail (2)"
214
-
215
- #: contact-form-7/admin/edit.php:255
216
- msgid "Messages"
217
- msgstr "Messaggi"
218
-
219
- #: contact-form-7/admin/edit.php:285
220
- msgid "Additional Settings"
221
- msgstr "Impostazioni aggiuntive"
222
-
223
- #: contact-form-7/admin/edit.php:333
224
- #, php-format
225
- msgid "Use the default language (%s)"
226
- msgstr "Usa la lingua predefinita (%s)"
227
-
228
- #: contact-form-7/admin/edit.php:334
229
- #: contact-form-7/admin/edit.php:347
230
- msgid "Add New"
231
- msgstr "Aggiungi nuova"
232
-
233
- #: contact-form-7/admin/edit.php:337
234
- msgid "Or"
235
- msgstr "oppure"
236
-
237
- #: contact-form-7/admin/edit.php:342
238
- msgid "(select language)"
239
- msgstr "(seleziona la lingua)"
240
-
241
- #: contact-form-7/includes/classes.php:564
242
- msgid "Untitled"
243
- msgstr "Senza titolo"
244
-
245
- #: contact-form-7/includes/functions.php:6
246
- msgid "Sender's message was sent successfully"
247
- msgstr "Il messaggio del mittente é stato inviato con successo"
248
-
249
- #: contact-form-7/includes/functions.php:7
250
- msgid "Your message was sent successfully. Thanks."
251
- msgstr "Il tuo messaggio é stato inviato con successo. Grazie."
252
-
253
- #: contact-form-7/includes/functions.php:11
254
- msgid "Sender's message was failed to send"
255
- msgstr "Il messaggio del mittente non é stato inviato"
256
-
257
- #: contact-form-7/includes/functions.php:12
258
- #: contact-form-7/includes/functions.php:17
259
- msgid "Failed to send your message. Please try later or contact administrator by other way."
260
- msgstr "Si é verificato un errore durante l'invio del tuo messaggio. Riprova in un secondo momento oppure contatta in un altro modo l'amministratore del sito."
261
-
262
- #: contact-form-7/includes/functions.php:16
263
- msgid "Akismet judged the sending activity as spamming"
264
- msgstr "Akismet ha ritenuto come spam questo invio del messaggio"
265
-
266
- #: contact-form-7/includes/functions.php:21
267
- msgid "Validation errors occurred"
268
- msgstr "Si é verificato un errore di convalida"
269
-
270
- #: contact-form-7/includes/functions.php:22
271
- msgid "Validation errors occurred. Please confirm the fields and submit it again."
272
- msgstr "Si é verificato un errore di convalida. Controlla i campi obbligatori ed invia nuovamente il messaggio."
273
-
274
- #: contact-form-7/includes/functions.php:26
275
- msgid "There is a field of term that sender is needed to accept"
276
- msgstr "E' ancora presente un campo dati che deve essere accettato dal mittente"
277
-
278
- #: contact-form-7/includes/functions.php:27
279
- msgid "Please accept the terms to proceed."
280
- msgstr "Accetta i termini prima di procedere."
281
-
282
- #: contact-form-7/includes/functions.php:31
283
- msgid "Email address that sender entered is invalid"
284
- msgstr "L'indirizzo email inserito dal mittente non é valido"
285
-
286
- #: contact-form-7/includes/functions.php:32
287
- msgid "Email address seems invalid."
288
- msgstr "Pare che l'indirizzo email non sia valido."
289
-
290
- #: contact-form-7/includes/functions.php:36
291
- msgid "There is a field that sender is needed to fill in"
292
- msgstr "E' ancora presente un campo dati che deve essere compilato dal mittente"
293
-
294
- #: contact-form-7/includes/functions.php:37
295
- msgid "Please fill the required field."
296
- msgstr "Compila tutti i campi richiesti. Grazie"
297
-
298
- #: contact-form-7/includes/functions.php:46
299
- msgid "Your Name"
300
- msgstr "Il tuo nome"
301
-
302
- #: contact-form-7/includes/functions.php:46
303
- #: contact-form-7/includes/functions.php:48
304
- msgid "(required)"
305
- msgstr "(richiesto)"
306
-
307
- #: contact-form-7/includes/functions.php:48
308
- msgid "Your Email"
309
- msgstr "La tua email"
310
-
311
- #: contact-form-7/includes/functions.php:50
312
- msgid "Subject"
313
- msgstr "Oggetto"
314
-
315
- #: contact-form-7/includes/functions.php:52
316
- msgid "Your Message"
317
- msgstr "Il tuo messaggio"
318
-
319
- #: contact-form-7/includes/functions.php:54
320
- msgid "Send"
321
- msgstr "Invia"
322
-
323
- #: contact-form-7/includes/functions.php:62
324
- #, php-format
325
- msgid "From: %s"
326
- msgstr "Da: %s"
327
-
328
- #: contact-form-7/includes/functions.php:63
329
- #, php-format
330
- msgid "Subject: %s"
331
- msgstr "Oggetto: %s"
332
-
333
- #: contact-form-7/includes/functions.php:64
334
- msgid "Message Body:"
335
- msgstr "Corpo del messaggio:"
336
-
337
- #: contact-form-7/includes/functions.php:65
338
- #: contact-form-7/includes/functions.php:79
339
- #, php-format
340
- msgid "This mail is sent via contact form on %1$s %2$s"
341
- msgstr "Questa email é inviata via modulo di contatto il %1$s %2$s"
342
-
343
- #: contact-form-7/includes/functions.php:168
344
- msgid "Afrikaans"
345
- msgstr "Afrikaans"
346
-
347
- #: contact-form-7/includes/functions.php:169
348
- msgid "Albanian"
349
- msgstr "Albanese"
350
-
351
- #: contact-form-7/includes/functions.php:170
352
- msgid "Arabic"
353
- msgstr "Arabo"
354
-
355
- #: contact-form-7/includes/functions.php:171
356
- msgid "Bangla"
357
- msgstr "Bengalese"
358
-
359
- #: contact-form-7/includes/functions.php:172
360
- msgid "Bosnian"
361
- msgstr "Bosniaco"
362
-
363
- #: contact-form-7/includes/functions.php:173
364
- msgid "Brazilian Portuguese"
365
- msgstr "Portoghese (Brasile)"
366
-
367
- #: contact-form-7/includes/functions.php:174
368
- msgid "Bulgarian"
369
- msgstr "Bulgaro"
370
-
371
- #: contact-form-7/includes/functions.php:175
372
- msgid "Catalan"
373
- msgstr "Catalano"
374
-
375
- #: contact-form-7/includes/functions.php:176
376
- msgid "Chinese (Simplified)"
377
- msgstr "Cinese (semplificato)"
378
-
379
- #: contact-form-7/includes/functions.php:177
380
- msgid "Chinese (Traditional)"
381
- msgstr "Cinese (tradizionale)"
382
-
383
- #: contact-form-7/includes/functions.php:178
384
- msgid "Croatian"
385
- msgstr "Croato"
386
-
387
- #: contact-form-7/includes/functions.php:179
388
- msgid "Czech"
389
- msgstr "Ceco"
390
-
391
- #: contact-form-7/includes/functions.php:180
392
- msgid "Danish"
393
- msgstr "Danese"
394
-
395
- #: contact-form-7/includes/functions.php:181
396
- msgid "Dutch"
397
- msgstr "Olandese"
398
-
399
- #: contact-form-7/includes/functions.php:182
400
- msgid "English"
401
- msgstr "Inglese"
402
-
403
- #: contact-form-7/includes/functions.php:183
404
- msgid "Estonian"
405
- msgstr "Estone"
406
-
407
- #: contact-form-7/includes/functions.php:184
408
- msgid "Finnish"
409
- msgstr "Finnico"
410
-
411
- #: contact-form-7/includes/functions.php:185
412
- msgid "French"
413
- msgstr "Francese"
414
-
415
- #: contact-form-7/includes/functions.php:186
416
- msgid "Galician"
417
- msgstr "Galiziano"
418
-
419
- #: contact-form-7/includes/functions.php:187
420
- msgid "Georgian"
421
- msgstr "Georgiano"
422
-
423
- #: contact-form-7/includes/functions.php:188
424
- msgid "German"
425
- msgstr "Tedesco"
426
-
427
- #: contact-form-7/includes/functions.php:189
428
- msgid "Greek"
429
- msgstr "Greco"
430
-
431
- #: contact-form-7/includes/functions.php:190
432
- msgid "Hebrew"
433
- msgstr "Ebreo"
434
-
435
- #: contact-form-7/includes/functions.php:191
436
- msgid "Hindi"
437
- msgstr "Hindi"
438
-
439
- #: contact-form-7/includes/functions.php:192
440
- msgid "Hungarian"
441
- msgstr "Ungherese"
442
-
443
- #: contact-form-7/includes/functions.php:193
444
- msgid "Indonesian"
445
- msgstr "Indonesiano"
446
-
447
- #: contact-form-7/includes/functions.php:194
448
- msgid "Italian"
449
- msgstr "Italiano"
450
-
451
- #: contact-form-7/includes/functions.php:195
452
- msgid "Japanese"
453
- msgstr "Giapponese"
454
-
455
- #: contact-form-7/includes/functions.php:196
456
- msgid "Korean"
457
- msgstr "Coreano"
458
-
459
- #: contact-form-7/includes/functions.php:197
460
- msgid "Latvian"
461
- msgstr "Lettone"
462
-
463
- #: contact-form-7/includes/functions.php:198
464
- msgid "Lithuanian"
465
- msgstr "Lituano"
466
-
467
- #: contact-form-7/includes/functions.php:199
468
- msgid "Malayalam"
469
- msgstr "Malayalam"
470
-
471
- #: contact-form-7/includes/functions.php:200
472
- msgid "Norwegian"
473
- msgstr "Norvegese"
474
-
475
- #: contact-form-7/includes/functions.php:201
476
- msgid "Persian"
477
- msgstr "Persiano"
478
-
479
- #: contact-form-7/includes/functions.php:202
480
- msgid "Polish"
481
- msgstr "Polacco"
482
-
483
- #: contact-form-7/includes/functions.php:203
484
- msgid "Portuguese"
485
- msgstr "Portoghese"
486
-
487
- #: contact-form-7/includes/functions.php:204
488
- msgid "Russian"
489
- msgstr "Russo"
490
-
491
- #: contact-form-7/includes/functions.php:205
492
- msgid "Romanian"
493
- msgstr "Rumeno"
494
-
495
- #: contact-form-7/includes/functions.php:206
496
- msgid "Serbian"
497
- msgstr "Serbo"
498
-
499
- #: contact-form-7/includes/functions.php:207
500
- msgid "Slovak"
501
- msgstr "Slovacco"
502
-
503
- #: contact-form-7/includes/functions.php:208
504
- msgid "Slovene"
505
- msgstr "Sloveno"
506
-
507
- #: contact-form-7/includes/functions.php:209
508
- msgid "Spanish"
509
- msgstr "Spagnolo"
510
-
511
- #: contact-form-7/includes/functions.php:210
512
- msgid "Swedish"
513
- msgstr "Svedese"
514
-
515
- #: contact-form-7/includes/functions.php:211
516
- msgid "Thai"
517
- msgstr "Thai"
518
-
519
- #: contact-form-7/includes/functions.php:212
520
- msgid "Turkish"
521
- msgstr "Turco"
522
-
523
- #: contact-form-7/includes/functions.php:213
524
- msgid "Ukrainian"
525
- msgstr "Ucraino"
526
-
527
- #: contact-form-7/includes/functions.php:214
528
- msgid "Vietnamese"
529
- msgstr "Vietnamita"
530
-
531
- #: contact-form-7/modules/acceptance.php:104
532
- msgid "Acceptance"
533
- msgstr "Consenso"
534
-
535
- #: contact-form-7/modules/acceptance.php:113
536
- #: contact-form-7/modules/captcha.php:214
537
- #: contact-form-7/modules/checkbox.php:209
538
- #: contact-form-7/modules/file.php:241
539
- msgid "Name"
540
- msgstr "Nome"
541
-
542
- #: contact-form-7/modules/acceptance.php:118
543
- #: contact-form-7/modules/acceptance.php:121
544
- #: contact-form-7/modules/captcha.php:221
545
- #: contact-form-7/modules/captcha.php:224
546
- #: contact-form-7/modules/captcha.php:229
547
- #: contact-form-7/modules/captcha.php:232
548
- #: contact-form-7/modules/captcha.php:236
549
- #: contact-form-7/modules/captcha.php:247
550
- #: contact-form-7/modules/captcha.php:250
551
- #: contact-form-7/modules/captcha.php:255
552
- #: contact-form-7/modules/captcha.php:258
553
- #: contact-form-7/modules/checkbox.php:214
554
- #: contact-form-7/modules/checkbox.php:217
555
- #: contact-form-7/modules/file.php:246
556
- #: contact-form-7/modules/file.php:249
557
- #: contact-form-7/modules/file.php:254
558
- #: contact-form-7/modules/file.php:257
559
- msgid "optional"
560
- msgstr "facoltativo"
561
-
562
- #: contact-form-7/modules/acceptance.php:127
563
- msgid "Make this checkbox checked by default?"
564
- msgstr "Desideri che questa casella di verifica sia selezionata (predefinito)?"
565
-
566
- #: contact-form-7/modules/acceptance.php:128
567
- msgid "Make this checkbox work inversely?"
568
- msgstr "Desideri che questa casella di verifica funzioni in modalità inversa?"
569
-
570
- #: contact-form-7/modules/acceptance.php:129
571
- msgid "* That means visitor who accepts the term unchecks it."
572
- msgstr "* Ciò indica che il visitatore dovrà de-selezionare la casella per esprimere il proprio consenso."
573
-
574
- #: contact-form-7/modules/acceptance.php:134
575
- #: contact-form-7/modules/captcha.php:263
576
- #: contact-form-7/modules/checkbox.php:237
577
- #: contact-form-7/modules/file.php:262
578
- msgid "Copy this code and paste it into the form left."
579
- msgstr "Copia questo codice ed incollalo nel modulo a sinistra."
580
-
581
- #: contact-form-7/modules/captcha.php:70
582
- msgid "To use CAPTCHA, you need <a href=\"http://wordpress.org/extend/plugins/really-simple-captcha/\">Really Simple CAPTCHA</a> plugin installed."
583
- msgstr "Per l'utilizzo del CAPTCHA é necessaria l'installazione del plugin <a href=\"http://wordpress.org/extend/plugins/really-simple-captcha/\">Really Simple CAPTCHA</a>."
584
-
585
- #: contact-form-7/modules/captcha.php:189
586
- msgid "The code that sender entered does not match the CAPTCHA"
587
- msgstr "Il codice inserito dal mittente non corrisponde con il CAPTCHA"
588
-
589
- #: contact-form-7/modules/captcha.php:190
590
- msgid "Your entered code is incorrect."
591
- msgstr "Il codice che hai inserito non è valido."
592
-
593
- #: contact-form-7/modules/captcha.php:200
594
- msgid "CAPTCHA"
595
- msgstr "CAPTCHA"
596
-
597
- #: contact-form-7/modules/captcha.php:211
598
- msgid "Note: To use CAPTCHA, you need Really Simple CAPTCHA plugin installed."
599
- msgstr "Nota: per l'utilizzo del CAPTCHA é necessaria l'installazione del plugin Really Simple CAPTCHA."
600
-
601
- #: contact-form-7/modules/captcha.php:218
602
- msgid "Image settings"
603
- msgstr "Impostazioni immagine"
604
-
605
- #: contact-form-7/modules/captcha.php:229
606
- msgid "Foreground color"
607
- msgstr "Colore di primo piano"
608
-
609
- #: contact-form-7/modules/captcha.php:232
610
- msgid "Background color"
611
- msgstr "Colore di sfondo"
612
-
613
- #: contact-form-7/modules/captcha.php:236
614
- msgid "Image size"
615
- msgstr "Dimensione immagine"
616
-
617
- #: contact-form-7/modules/captcha.php:237
618
- msgid "Small"
619
- msgstr "Piccola"
620
-
621
- #: contact-form-7/modules/captcha.php:238
622
- msgid "Medium"
623
- msgstr "Media"
624
-
625
- #: contact-form-7/modules/captcha.php:239
626
- msgid "Large"
627
- msgstr "Grande"
628
-
629
- #: contact-form-7/modules/captcha.php:244
630
- msgid "Input field settings"
631
- msgstr "Impostazione campo dati"
632
-
633
- #: contact-form-7/modules/captcha.php:264
634
- msgid "For image"
635
- msgstr "Per immagine"
636
-
637
- #: contact-form-7/modules/captcha.php:266
638
- msgid "For input field"
639
- msgstr "Per campo dati"
640
-
641
- #: contact-form-7/modules/captcha.php:296
642
- #, php-format
643
- msgid "This contact form contains CAPTCHA fields, but the temporary folder for the files (%s) does not exist or is not writable. You can create the folder or change its permission manually."
644
- msgstr "Questo modulo di contatto contiene dei campi CAPTCHA, ma la cartella temporanea per i file (%s) non esiste oppure non é scrivibile. Puoi creare la cartella o modificare oppure modificare manualmente i suoi permessi."
645
-
646
- #: contact-form-7/modules/captcha.php:302
647
- msgid "This contact form contains CAPTCHA fields, but the necessary libraries (GD and FreeType) are not available on your server."
648
- msgstr "Questo modulo di contatto contiene dei campi CAPTCHA, ma le librerie necessarie (GD e FreeType) non sono disponibili nel tuo server."
649
-
650
- #: contact-form-7/modules/checkbox.php:182
651
- msgid "Checkboxes"
652
- msgstr "Caselle di verifica"
653
-
654
- #: contact-form-7/modules/checkbox.php:185
655
- msgid "Radio buttons"
656
- msgstr "Radio button"
657
-
658
- #: contact-form-7/modules/checkbox.php:206
659
- #: contact-form-7/modules/file.php:240
660
- msgid "Required field?"
661
- msgstr "Campi obbligatori?"
662
-
663
- #: contact-form-7/modules/checkbox.php:222
664
- msgid "Choices"
665
- msgstr "Opzioni"
666
-
667
- #: contact-form-7/modules/checkbox.php:224
668
- msgid "* One choice per line."
669
- msgstr "* Una opzione per linea."
670
-
671
- #: contact-form-7/modules/checkbox.php:228
672
- msgid "Put a label first, a checkbox last?"
673
- msgstr "Inserisci l'etichetta davanti alla casella di verifica?"
674
-
675
- #: contact-form-7/modules/checkbox.php:229
676
- msgid "Wrap each item with <label> tag?"
677
- msgstr "Wrap per ogni item con il tag <label>?"
678
-
679
- #: contact-form-7/modules/checkbox.php:231
680
- msgid "Make checkboxes exclusive?"
681
- msgstr "Desideri escludere le caselle di verifica?"
682
-
683
- #: contact-form-7/modules/checkbox.php:239
684
- msgid "And, put this code into the Mail fields below."
685
- msgstr "Ed inserisci questo codice nei campi mail qui sotto."
686
-
687
- #: contact-form-7/modules/file.php:204
688
- msgid "Uploading a file fails for any reason"
689
- msgstr "Non é stato possibile caricare il file (ragione generica)"
690
-
691
- #: contact-form-7/modules/file.php:205
692
- msgid "Failed to upload file."
693
- msgstr "Si é verificato un errore durante il caricamento del file."
694
-
695
- #: contact-form-7/modules/file.php:209
696
- msgid "Uploaded file is not allowed file type"
697
- msgstr "Non é stato possibile caricare il file (estensione non consentita)"
698
-
699
- #: contact-form-7/modules/file.php:210
700
- msgid "This file type is not allowed."
701
- msgstr "Questo tipo di file non é permesso."
702
-
703
- #: contact-form-7/modules/file.php:214
704
- msgid "Uploaded file is too large"
705
- msgstr "Non é stato possibile caricare il file (dimensione eccessiva)"
706
-
707
- #: contact-form-7/modules/file.php:215
708
- msgid "This file is too large."
709
- msgstr "Questo file é troppo grande."
710
-
711
- #: contact-form-7/modules/file.php:219
712
- msgid "Uploading a file fails for PHP error"
713
- msgstr "Non é stato possibile caricare il file (errore PHP)"
714
-
715
- #: contact-form-7/modules/file.php:220
716
- msgid "Failed to upload file. Error occurred."
717
- msgstr "Si é verificato un errore durante il caricamento del file."
718
-
719
- #: contact-form-7/modules/file.php:231
720
- msgid "File upload"
721
- msgstr "Upload file"
722
-
723
- #: contact-form-7/modules/file.php:254
724
- msgid "File size limit"
725
- msgstr "Limite dimensione file"
726
-
727
- #: contact-form-7/modules/file.php:254
728
- msgid "bytes"
729
- msgstr "bytes"
730
-
731
- #: contact-form-7/modules/file.php:257
732
- msgid "Acceptable file types"
733
- msgstr "Tipologia di file consentiti"
734
-
735
- #: contact-form-7/modules/file.php:264
736
- msgid "And, put this code into the File Attachments field below."
737
- msgstr "Ed inserisci questo codice nei campi per gli allegati qui sotto."
738
-
739
- #: contact-form-7/modules/file.php:289
740
- #, php-format
741
- msgid "This contact form contains file uploading fields, but the temporary folder for the files (%s) does not exist or is not writable. You can create the folder or change its permission manually."
742
- msgstr "Questo modulo di contatto contiene dei campi per l'upload dei file, ma la cartella temporanea per i file (%s) non esiste oppure non é scrivibile. Puoi creare la cartella o modificare oppure modificare manualmente i suoi permessi."
743
-
744
- #: contact-form-7/modules/icl.php:74
745
- msgid "This contact form contains [icl] tags, but they are obsolete and no longer functioning on this version of Contact Form 7. <a href=\"http://contactform7.com/2009/12/25/contact-form-in-your-language/#Creating_contact_form_in_different_languages\" target=\"_blank\">There is a simpler way for creating contact forms of other languages</a> and you are recommended to use it."
746
- msgstr "Questo modulo di contatto contiene i tag [icl], sappi che essi sono particolarmente datati e non funzioneranno con questa versione di Contact Form 7. <a href=\"http://contactform7.com/2009/12/25/contact-form-in-your-language/#Creating_contact_form_in_different_languages\" target=\"_blank\">Ecco un modo semplice per potere creare dei moduli di contatto in altre lingue</a>: ti invito a provarlo."
747
-
748
- #: contact-form-7/modules/quiz.php:170
749
- msgid "Sender doesn't enter the correct answer to the quiz"
750
- msgstr "Il mittente non ha inserito la risposta corretta"
751
-
752
- #: contact-form-7/modules/quiz.php:171
753
- msgid "Your answer is not correct."
754
- msgstr "La risposta che hai inserito non é corretta."
755
-
756
- #: contact-form-7/modules/quiz.php:181
757
- msgid "Quiz"
758
- msgstr "Quesito"
759
-
760
- #: contact-form-7/modules/quiz.php:211
761
- msgid "Quizzes"
762
- msgstr "Quesiti"
763
-
764
- #: contact-form-7/modules/quiz.php:213
765
- msgid "* quiz|answer (e.g. 1+1=?|2)"
766
- msgstr "* quesito|risposta (ad esempio: 1+1=?|2)"
767
-
768
- #: contact-form-7/modules/select.php:154
769
- msgid "Drop-down menu"
770
- msgstr "Menu a cascata"
771
-
772
- #: contact-form-7/modules/select.php:183
773
- msgid "Allow multiple selections?"
774
- msgstr "Desideri permettere le selezioni multiple?"
775
-
776
- #: contact-form-7/modules/select.php:184
777
- msgid "Insert a blank item as the first option?"
778
- msgstr "Desideri lasciare in bianco la prima opzione?"
779
-
780
- #: contact-form-7/modules/submit.php:62
781
- msgid "Submit button"
782
- msgstr "Pulsante di invio"
783
-
784
- #: contact-form-7/modules/submit.php:80
785
- msgid "Label"
786
- msgstr "Etichetta"
787
-
788
- #: contact-form-7/modules/text.php:137
789
- msgid "Text field"
790
- msgstr "Campo testo"
791
-
792
- #: contact-form-7/modules/text.php:140
793
- msgid "Email field"
794
- msgstr "Campo email"
795
-
796
- #: contact-form-7/modules/text.php:182
797
- msgid "Akismet"
798
- msgstr "Akismet"
799
-
800
- #: contact-form-7/modules/text.php:184
801
- msgid "This field requires author's name"
802
- msgstr "Questo campo necessita del nome autore"
803
-
804
- #: contact-form-7/modules/text.php:185
805
- msgid "This field requires author's URL"
806
- msgstr "Questo campo necessita dell'URL autore"
807
-
808
- #: contact-form-7/modules/text.php:187
809
- msgid "This field requires author's email address"
810
- msgstr "Questo campo necessita dell'indirizzo email autore"
811
-
812
- #: contact-form-7/modules/text.php:191
813
- #: contact-form-7/modules/textarea.php:157
814
- msgid "Default value"
815
- msgstr "Valore predefinito"
816
-
817
- #: contact-form-7/modules/textarea.php:126
818
- msgid "Text area"
819
- msgstr "Area di testo"
820
-
821
- #~ msgid ""
822
- #~ "Is this plugin useful for you? If you like it, please help the developer."
823
- #~ msgstr "Questo plugin é utile per te? Allora, aiuta lo sviluppatore."
824
- #~ msgid ""
825
- #~ "Developing a plugin and providing user support is really hard work. "
826
- #~ "Please help."
827
- #~ msgstr ""
828
- #~ "Lo sviluppo di un plugin ed il servizio di assistenza agli utenti "
829
- #~ "comporta un notevole lavoro. Aiutami!"
830
- #~ msgid "This mail is created by Contact Form 7 plugin for WordPress."
831
- #~ msgstr "Questa email é stata creata con il plugin Contact Form 7"
832
- #~ msgid "(You need WordPress 2.7 or greater to use this feature)"
833
- #~ msgstr ""
834
- #~ "(é necessaria una versione di WordPress 2.7 o superiore per potere "
835
- #~ "utilizzare questa funzione)"
836
- #~ msgid "Form content"
837
- #~ msgstr "Contenuti del modulo"
838
- #~ msgid "Mail template"
839
- #~ msgstr "Template email"
840
- #~ msgid "Sender field:"
841
- #~ msgstr "Campo mittente:"
842
- #~ msgid "Recipient address:"
843
- #~ msgstr "Indirizzo del destinatario:"
844
- #~ msgid "Delete this contact form"
845
- #~ msgstr "Elimina questa form di contatto"
846
- #~ msgid "Check this field as sender&#39;s name"
847
- #~ msgstr "Controlla questo campo come indirizzo del mittente"
848
- #~ msgid "Check this field as sender&#39;s email"
849
- #~ msgstr "Controlla questo campo come email del mittente"
850
- #~ msgid "Check this field as sender&#39;s URL"
851
- #~ msgstr "Controlla questo campo come URL del mittente"
852
- #~ msgid "Don&#39;t check this field with Akismet"
853
- #~ msgstr "Non controllare questo campo con Akismet"
854
- #~ msgid "Insert"
855
- #~ msgstr "Inserisci"
856
-
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
languages/wpcf7-ja.mo CHANGED
Binary file
languages/wpcf7-ja.po DELETED
@@ -1,843 +0,0 @@
1
- msgid ""
2
- msgstr ""
3
- "Project-Id-Version: Contact Form 7\n"
4
- "Report-Msgid-Bugs-To: \n"
5
- "POT-Creation-Date: 2010-05-18 23:31+0900\n"
6
- "PO-Revision-Date: 2010-05-18 23:33+0900\n"
7
- "Last-Translator: Takayuki Miyoshi <takayukister@gmail.com>\n"
8
- "Language-Team: \n"
9
- "MIME-Version: 1.0\n"
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:261
51
- msgid "Contact form"
52
- msgstr "コンタクトフォーム"
53
-
54
- #: contact-form-7/admin/admin.php:280
55
- msgid "Settings"
56
- msgstr "設定"
57
-
58
- #: contact-form-7/admin/admin.php:291
59
- msgid "http://contactform7.com/"
60
- msgstr "http://contactform7.com/ja/"
61
-
62
- #: contact-form-7/admin/admin.php:292
63
- msgid "Contactform7.com"
64
- msgstr "Contactform7.com (日本語)"
65
-
66
- #: contact-form-7/admin/admin.php:293
67
- msgid "http://contactform7.com/docs/"
68
- msgstr "http://contactform7.com/ja/docs-2/"
69
-
70
- #: contact-form-7/admin/admin.php:294
71
- msgid "Docs"
72
- msgstr "使い方"
73
-
74
- #: contact-form-7/admin/admin.php:295
75
- msgid "http://contactform7.com/faq/"
76
- msgstr "http://contactform7.com/ja/faq-2/"
77
-
78
- #: contact-form-7/admin/admin.php:296
79
- msgid "FAQ"
80
- msgstr "FAQ"
81
-
82
- #: contact-form-7/admin/admin.php:297
83
- msgid "http://contactform7.com/support/"
84
- msgstr "http://contactform7.com/ja/support-2/"
85
-
86
- #: contact-form-7/admin/admin.php:298
87
- msgid "Support"
88
- msgstr "サポート"
89
-
90
- #: contact-form-7/admin/admin.php:312
91
- msgid "Contact form created."
92
- msgstr "コンタクトフォームが作成されました。"
93
-
94
- #: contact-form-7/admin/admin.php:315
95
- msgid "Contact form saved."
96
- msgstr "コンタクトフォームが保存されました。"
97
-
98
- #: contact-form-7/admin/admin.php:318
99
- msgid "Contact form deleted."
100
- msgstr "コンタクトフォームが削除されました。"
101
-
102
- #: contact-form-7/admin/admin.php:321
103
- msgid "Database table created."
104
- msgstr "データベーステーブルを作成しました。"
105
-
106
- #: contact-form-7/admin/admin.php:324
107
- msgid "Failed to create database table."
108
- msgstr "データベーステーブルを作成できませんでした。"
109
-
110
- #: contact-form-7/admin/admin.php:358
111
- msgid "Contact Form 7 needs your support. Please donate today."
112
- msgstr "Contact Form 7 はあなたの支援を必要としています。寄付をお願いします。"
113
-
114
- #: contact-form-7/admin/admin.php:359
115
- msgid "Your contribution is needed for making this plugin better."
116
- msgstr "あなたの貢献があればこのプラグインをもっと良くすることができます。"
117
-
118
- #: contact-form-7/admin/admin.php:365
119
- msgid "http://contactform7.com/donate/"
120
- msgstr "http://contactform7.com/ja/donate-2/"
121
-
122
- #: contact-form-7/admin/admin.php:365
123
- msgid "Donate"
124
- msgstr "寄付する"
125
-
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>Contact Form 7 のデータベーステーブルがありません。</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>Contact Form 7 のデータベーステーブルがありません。</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
- " 'キャンセル' で中止、 'OK' で削除します。"
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 "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:78
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:577
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: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 "Galician"
418
- msgstr "ガリシア語"
419
-
420
- #: contact-form-7/includes/functions.php:187
421
- msgid "Georgian"
422
- msgstr "グルジア語"
423
-
424
- #: contact-form-7/includes/functions.php:188
425
- msgid "German"
426
- msgstr "ドイツ語"
427
-
428
- #: contact-form-7/includes/functions.php:189
429
- msgid "Greek"
430
- msgstr "ギリシャ語"
431
-
432
- #: contact-form-7/includes/functions.php:190
433
- msgid "Hebrew"
434
- msgstr "ヘブライ語"
435
-
436
- #: contact-form-7/includes/functions.php:191
437
- msgid "Hindi"
438
- msgstr "ヒンディー語"
439
-
440
- #: contact-form-7/includes/functions.php:192
441
- msgid "Hungarian"
442
- msgstr "ハンガリー語"
443
-
444
- #: contact-form-7/includes/functions.php:193
445
- msgid "Indonesian"
446
- msgstr "インドネシア語"
447
-
448
- #: contact-form-7/includes/functions.php:194
449
- msgid "Italian"
450
- msgstr "イタリア語"
451
-
452
- #: contact-form-7/includes/functions.php:195
453
- msgid "Japanese"
454
- msgstr "日本語"
455
-
456
- #: contact-form-7/includes/functions.php:196
457
- msgid "Korean"
458
- msgstr "韓国語"
459
-
460
- #: contact-form-7/includes/functions.php:197
461
- msgid "Latvian"
462
- msgstr "ラトビア語"
463
-
464
- #: contact-form-7/includes/functions.php:198
465
- msgid "Lithuanian"
466
- msgstr "リトアニア語"
467
-
468
- #: contact-form-7/includes/functions.php:199
469
- msgid "Malayalam"
470
- msgstr "マラヤーラム語"
471
-
472
- #: contact-form-7/includes/functions.php:200
473
- msgid "Norwegian"
474
- msgstr "ノルウェー語"
475
-
476
- #: contact-form-7/includes/functions.php:201
477
- msgid "Persian"
478
- msgstr "ペルシア語"
479
-
480
- #: contact-form-7/includes/functions.php:202
481
- msgid "Polish"
482
- msgstr "ポーランド語"
483
-
484
- #: contact-form-7/includes/functions.php:203
485
- msgid "Portuguese"
486
- msgstr "ポルトガル語"
487
-
488
- #: contact-form-7/includes/functions.php:204
489
- msgid "Russian"
490
- msgstr "ロシア語"
491
-
492
- #: contact-form-7/includes/functions.php:205
493
- msgid "Romanian"
494
- msgstr "ルーマニア語"
495
-
496
- #: contact-form-7/includes/functions.php:206
497
- msgid "Serbian"
498
- msgstr "セルビア語"
499
-
500
- #: contact-form-7/includes/functions.php:207
501
- msgid "Slovak"
502
- msgstr "スロバキア語"
503
-
504
- #: contact-form-7/includes/functions.php:208
505
- msgid "Slovene"
506
- msgstr "スロベニア語"
507
-
508
- #: contact-form-7/includes/functions.php:209
509
- msgid "Spanish"
510
- msgstr "スペイン語"
511
-
512
- #: contact-form-7/includes/functions.php:210
513
- msgid "Swedish"
514
- msgstr "スウェーデン語"
515
-
516
- #: contact-form-7/includes/functions.php:211
517
- msgid "Thai"
518
- msgstr "タイ語"
519
-
520
- #: contact-form-7/includes/functions.php:212
521
- msgid "Turkish"
522
- msgstr "トルコ語"
523
-
524
- #: contact-form-7/includes/functions.php:213
525
- msgid "Ukrainian"
526
- msgstr "ウクライナ語"
527
-
528
- #: contact-form-7/includes/functions.php:214
529
- msgid "Vietnamese"
530
- msgstr "ベトナム語"
531
-
532
- #: contact-form-7/modules/acceptance.php:104
533
- msgid "Acceptance"
534
- msgstr "承諾の確認"
535
-
536
- #: contact-form-7/modules/acceptance.php:113
537
- #: contact-form-7/modules/captcha.php:214
538
- #: contact-form-7/modules/checkbox.php:209
539
- #: contact-form-7/modules/file.php:241
540
- msgid "Name"
541
- msgstr "名前"
542
-
543
- #: contact-form-7/modules/acceptance.php:118
544
- #: contact-form-7/modules/acceptance.php:121
545
- #: contact-form-7/modules/captcha.php:221
546
- #: contact-form-7/modules/captcha.php:224
547
- #: contact-form-7/modules/captcha.php:229
548
- #: contact-form-7/modules/captcha.php:232
549
- #: contact-form-7/modules/captcha.php:236
550
- #: contact-form-7/modules/captcha.php:247
551
- #: contact-form-7/modules/captcha.php:250
552
- #: contact-form-7/modules/captcha.php:255
553
- #: contact-form-7/modules/captcha.php:258
554
- #: contact-form-7/modules/checkbox.php:214
555
- #: contact-form-7/modules/checkbox.php:217
556
- #: contact-form-7/modules/file.php:246
557
- #: contact-form-7/modules/file.php:249
558
- #: contact-form-7/modules/file.php:254
559
- #: contact-form-7/modules/file.php:257
560
- msgid "optional"
561
- msgstr "オプション"
562
-
563
- #: contact-form-7/modules/acceptance.php:127
564
- msgid "Make this checkbox checked by default?"
565
- msgstr "初期状態でチェックボックスにチェックを入れますか?"
566
-
567
- #: contact-form-7/modules/acceptance.php:128
568
- msgid "Make this checkbox work inversely?"
569
- msgstr "チェックボックスを反転させますか?"
570
-
571
- #: contact-form-7/modules/acceptance.php:129
572
- msgid "* That means visitor who accepts the term unchecks it."
573
- msgstr "* つまり、利用者には条項に承諾する場合にチェックボックスのチェックをはずしてもらいます。"
574
-
575
- #: contact-form-7/modules/acceptance.php:134
576
- #: contact-form-7/modules/captcha.php:263
577
- #: contact-form-7/modules/checkbox.php:237
578
- #: contact-form-7/modules/file.php:262
579
- msgid "Copy this code and paste it into the form left."
580
- msgstr "このコードをコピーして、左のフォーム内にペーストしてください。"
581
-
582
- #: contact-form-7/modules/captcha.php:70
583
- msgid "To use CAPTCHA, you need <a href=\"http://wordpress.org/extend/plugins/really-simple-captcha/\">Really Simple CAPTCHA</a> plugin installed."
584
- msgstr "CAPTCHA を使うには <a href=\"http://wordpress.org/extend/plugins/really-simple-captcha/\">Really Simple CAPTCHA</a> プラグインのインストールが必要です。"
585
-
586
- #: contact-form-7/modules/captcha.php:189
587
- msgid "The code that sender entered does not match the CAPTCHA"
588
- msgstr "入力されたコードが CAPTCHA に適合していない"
589
-
590
- #: contact-form-7/modules/captcha.php:190
591
- msgid "Your entered code is incorrect."
592
- msgstr "入力されたコードが正しくありません。"
593
-
594
- #: contact-form-7/modules/captcha.php:200
595
- msgid "CAPTCHA"
596
- msgstr "CAPTCHA"
597
-
598
- #: contact-form-7/modules/captcha.php:211
599
- msgid "Note: To use CAPTCHA, you need Really Simple CAPTCHA plugin installed."
600
- msgstr "お知らせ: CAPTCHA を使うには Really Simple CAPTCHA プラグインのインストールが必要です。"
601
-
602
- #: contact-form-7/modules/captcha.php:218
603
- msgid "Image settings"
604
- msgstr "画像の設定"
605
-
606
- #: contact-form-7/modules/captcha.php:229
607
- msgid "Foreground color"
608
- msgstr "文字色"
609
-
610
- #: contact-form-7/modules/captcha.php:232
611
- msgid "Background color"
612
- msgstr "背景色"
613
-
614
- #: contact-form-7/modules/captcha.php:236
615
- msgid "Image size"
616
- msgstr "画像サイズ"
617
-
618
- #: contact-form-7/modules/captcha.php:237
619
- msgid "Small"
620
- msgstr "小"
621
-
622
- #: contact-form-7/modules/captcha.php:238
623
- msgid "Medium"
624
- msgstr "中"
625
-
626
- #: contact-form-7/modules/captcha.php:239
627
- msgid "Large"
628
- msgstr "大"
629
-
630
- #: contact-form-7/modules/captcha.php:244
631
- msgid "Input field settings"
632
- msgstr "入力項目の設定"
633
-
634
- #: contact-form-7/modules/captcha.php:264
635
- msgid "For image"
636
- msgstr "画像"
637
-
638
- #: contact-form-7/modules/captcha.php:266
639
- msgid "For input field"
640
- msgstr "入力項目"
641
-
642
- #: contact-form-7/modules/captcha.php:296
643
- #, php-format
644
- msgid "This contact form contains CAPTCHA fields, but the temporary folder for the files (%s) does not exist or is not writable. You can create the folder or change its permission manually."
645
- msgstr "このコンタクトフォームは CAPTCHA の項目を含んでいますが、そのファイルのための一時フォルダ (%s) が存在しないか、あるいは書き込み可能ではありません。このフォルダを手動で作成するか、パーミッションの変更を行うと解決できるでしょう。"
646
-
647
- #: contact-form-7/modules/captcha.php:302
648
- msgid "This contact form contains CAPTCHA fields, but the necessary libraries (GD and FreeType) are not available on your server."
649
- msgstr "このコンタクトフォームは CAPTCHA の項目を含んでいますが、お使いのサーバーでは必要なライブラリ (GD および FreeType) が利用可能でありません。"
650
-
651
- #: contact-form-7/modules/checkbox.php:182
652
- msgid "Checkboxes"
653
- msgstr "チェックボックス"
654
-
655
- #: contact-form-7/modules/checkbox.php:185
656
- msgid "Radio buttons"
657
- msgstr "ラジオボタン"
658
-
659
- #: contact-form-7/modules/checkbox.php:206
660
- #: contact-form-7/modules/file.php:240
661
- msgid "Required field?"
662
- msgstr "必須入力の項目ですか?"
663
-
664
- #: contact-form-7/modules/checkbox.php:222
665
- msgid "Choices"
666
- msgstr "選択項目"
667
-
668
- #: contact-form-7/modules/checkbox.php:224
669
- msgid "* One choice per line."
670
- msgstr "* 1行ごとに分けて入力してください。"
671
-
672
- #: contact-form-7/modules/checkbox.php:228
673
- msgid "Put a label first, a checkbox last?"
674
- msgstr "ラベルを先に、チェックボックスを後に置きますか?"
675
-
676
- #: contact-form-7/modules/checkbox.php:229
677
- msgid "Wrap each item with <label> tag?"
678
- msgstr "個々の項目を <label> タグで囲みますか?"
679
-
680
- #: contact-form-7/modules/checkbox.php:231
681
- msgid "Make checkboxes exclusive?"
682
- msgstr "チェックボックスを排他化しますか?"
683
-
684
- #: contact-form-7/modules/checkbox.php:239
685
- msgid "And, put this code into the Mail fields below."
686
- msgstr "それから、このコードを下のメールの項目中に置いてください。"
687
-
688
- #: contact-form-7/modules/file.php:204
689
- msgid "Uploading a file fails for any reason"
690
- msgstr "ファイルのアップロードが何らかの理由により失敗している"
691
-
692
- #: contact-form-7/modules/file.php:205
693
- msgid "Failed to upload file."
694
- msgstr "ファイルのアップロードに失敗しました。"
695
-
696
- #: contact-form-7/modules/file.php:209
697
- msgid "Uploaded file is not allowed file type"
698
- msgstr "アップロードされたファイルが許可されたファイル形式に適合しない"
699
-
700
- #: contact-form-7/modules/file.php:210
701
- msgid "This file type is not allowed."
702
- msgstr "許可されていないファイル形式です。"
703
-
704
- #: contact-form-7/modules/file.php:214
705
- msgid "Uploaded file is too large"
706
- msgstr "アップロードされたファイルが大きすぎる"
707
-
708
- #: contact-form-7/modules/file.php:215
709
- msgid "This file is too large."
710
- msgstr "ファイルが大きすぎます。"
711
-
712
- #: contact-form-7/modules/file.php:219
713
- msgid "Uploading a file fails for PHP error"
714
- msgstr "ファイルのアップロードが PHP のエラーにより失敗している"
715
-
716
- #: contact-form-7/modules/file.php:220
717
- msgid "Failed to upload file. Error occurred."
718
- msgstr "ファイルのアップロードに失敗しました。エラーが発生しています。"
719
-
720
- #: contact-form-7/modules/file.php:231
721
- msgid "File upload"
722
- msgstr "ファイルのアップロード"
723
-
724
- #: contact-form-7/modules/file.php:254
725
- msgid "File size limit"
726
- msgstr "ファイルサイズの上限"
727
-
728
- #: contact-form-7/modules/file.php:254
729
- msgid "bytes"
730
- msgstr "バイト"
731
-
732
- #: contact-form-7/modules/file.php:257
733
- msgid "Acceptable file types"
734
- msgstr "受け入れ可能なファイル形式"
735
-
736
- #: contact-form-7/modules/file.php:264
737
- msgid "And, put this code into the File Attachments field below."
738
- msgstr "それから、このコードを下のファイル添付の項目中に置いてください。"
739
-
740
- #: contact-form-7/modules/file.php:289
741
- #, php-format
742
- msgid "This contact form contains file uploading fields, but the temporary folder for the files (%s) does not exist or is not writable. You can create the folder or change its permission manually."
743
- msgstr "このコンタクトフォームはファイルアップロード項目を含んでいますが、そのファイルのための一時フォルダ (%s) が存在しないか、あるいは書き込み可能ではありません。このフォルダを手動で作成するか、パーミッションの変更を行うと解決できるでしょう。"
744
-
745
- #: contact-form-7/modules/icl.php:74
746
- msgid "This contact form contains [icl] tags, but they are obsolete and no longer functioning on this version of Contact Form 7. <a href=\"http://contactform7.com/2009/12/25/contact-form-in-your-language/#Creating_contact_form_in_different_languages\" target=\"_blank\">There is a simpler way for creating contact forms of other languages</a> and you are recommended to use it."
747
- msgstr "このコンタクトフォームは [icl] タグを含んでいますが、それらはこのバージョンの Contact Form 7 では廃止されており、機能していません。<a href=\"http://contactform7.com/ja/2009/12/25/contact-form-in-your-language-2/#Creating_contact_form_in_different_languages\" target=\"_blank\">他の言語のコンタクトフォームを作成するためのより簡単な方法</a>が導入されており、そちらの利用が推奨されます。"
748
-
749
- #: contact-form-7/modules/quiz.php:170
750
- msgid "Sender doesn't enter the correct answer to the quiz"
751
- msgstr "クイズに対する正しい答えが入力されなかった"
752
-
753
- #: contact-form-7/modules/quiz.php:171
754
- msgid "Your answer is not correct."
755
- msgstr "答えが正しくありません。"
756
-
757
- #: contact-form-7/modules/quiz.php:181
758
- msgid "Quiz"
759
- msgstr "クイズ"
760
-
761
- #: contact-form-7/modules/quiz.php:211
762
- msgid "Quizzes"
763
- msgstr "質問と答え"
764
-
765
- #: contact-form-7/modules/quiz.php:213
766
- msgid "* quiz|answer (e.g. 1+1=?|2)"
767
- msgstr "* 質問|答え (例: 1+1=?|2)"
768
-
769
- #: contact-form-7/modules/select.php:154
770
- msgid "Drop-down menu"
771
- msgstr "ドロップダウン・メニュー"
772
-
773
- #: contact-form-7/modules/select.php:183
774
- msgid "Allow multiple selections?"
775
- msgstr "複数選択を可能にしますか?"
776
-
777
- #: contact-form-7/modules/select.php:184
778
- msgid "Insert a blank item as the first option?"
779
- msgstr "先頭に空の項目を挿入しますか?"
780
-
781
- #: contact-form-7/modules/submit.php:62
782
- msgid "Submit button"
783
- msgstr "送信ボタン"
784
-
785
- #: contact-form-7/modules/submit.php:80
786
- msgid "Label"
787
- msgstr "ラベル"
788
-
789
- #: contact-form-7/modules/text.php:137
790
- msgid "Text field"
791
- msgstr "テキスト項目"
792
-
793
- #: contact-form-7/modules/text.php:140
794
- msgid "Email field"
795
- msgstr "メールアドレス項目"
796
-
797
- #: contact-form-7/modules/text.php:182
798
- msgid "Akismet"
799
- msgstr "Akismet"
800
-
801
- #: contact-form-7/modules/text.php:184
802
- msgid "This field requires author's name"
803
- msgstr "送信者の名前の入力を要求する項目"
804
-
805
- #: contact-form-7/modules/text.php:185
806
- msgid "This field requires author's URL"
807
- msgstr "送信者の URL の入力を要求する項目"
808
-
809
- #: contact-form-7/modules/text.php:187
810
- msgid "This field requires author's email address"
811
- msgstr "送信者のメールアドレスの入力を要求する項目"
812
-
813
- #: contact-form-7/modules/text.php:191
814
- #: contact-form-7/modules/textarea.php:157
815
- msgid "Default value"
816
- msgstr "デフォルト値"
817
-
818
- #: contact-form-7/modules/textarea.php:126
819
- msgid "Text area"
820
- msgstr "テキストエリア"
821
-
822
- #~ msgid ""
823
- #~ "Is this plugin useful for you? If you like it, please help the developer."
824
- #~ msgstr ""
825
- #~ "このプラグインは役に立っていますか? プラグインの開発を続けるためにあなたの"
826
- #~ "支援が必要です。"
827
-
828
- #~ msgid ""
829
- #~ "Developing a plugin and providing user support is really hard work. "
830
- #~ "Please help."
831
- #~ msgstr ""
832
- #~ "プラグインを開発してユーザーサポートを提供するというのはとても大変な仕事で"
833
- #~ "す。ちょっとでいいから助けてください。"
834
-
835
- #~ msgid "This mail is created by Contact Form 7 plugin for WordPress."
836
- #~ msgstr ""
837
- #~ "このメールは WordPress の Contact Form 7 プラグインにより作成されました。"
838
-
839
- #~ msgid "(You need WordPress 2.7 or greater to use this feature)"
840
- #~ msgstr "(この機能を使うためには WordPress 2.7 以上が必要です)"
841
-
842
- #~ msgid "Delete this contact form"
843
- #~ msgstr "このコンタクトフォームを削除"
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
languages/wpcf7-ka_GE.po DELETED
@@ -1,213 +0,0 @@
1
- # translation of wpcf7-pl_PL.po to Polish
2
- # Zbigniew Czernik <czernik@tlen.pl>, 2007.
3
- msgid ""
4
- msgstr ""
5
- "Project-Id-Version: wpcf7-ru_RU\n"
6
- "POT-Creation-Date: \n"
7
- "PO-Revision-Date: 2009-01-01 20:48+0400\n"
8
- "Last-Translator: Nodar Davituri <nodar@davituri.com>\n"
9
- "Language-Team: Russian <volotovich@gmail.com>\n"
10
- "MIME-Version: 1.0\n"
11
- "Content-Type: text/plain; charset=UTF-8\n"
12
- "Content-Transfer-Encoding: 8bit\n"
13
- "X-Poedit-Language: Russian\n"
14
- "X-Poedit-Country: Russia\n"
15
- "X-Poedit-SourceCharset: utf-8\n"
16
- "X-Poedit-KeywordsList: __;_e\n"
17
- "X-Poedit-Basepath: ../..\n"
18
- "X-Generator: KBabel 1.11.4\n"
19
- "X-Poedit-SearchPath-0: contact-form-7\n"
20
-
21
- #: contact-form-7/wp-contact-form-7.php:224
22
- #: contact-form-7/wp-contact-form-7.php:297
23
- msgid "Contact form"
24
- msgstr "კონტაქტის ფორმა"
25
-
26
- #: contact-form-7/wp-contact-form-7.php:253
27
- #: contact-form-7/includes/admin-panel.php:5
28
- msgid "Contact Form 7"
29
- msgstr "Contact Form 7"
30
-
31
- #: contact-form-7/wp-contact-form-7.php:273
32
- #, php-format
33
- msgid "Contact form \"%s\" deleted. "
34
- msgstr "ფორმა \"%s\" წაშლილია."
35
-
36
- #: contact-form-7/wp-contact-form-7.php:289
37
- #, php-format
38
- msgid "Contact form \"%s\" saved. "
39
- msgstr "ფორმა \"%s\" შენახულია."
40
-
41
- #: contact-form-7/wp-contact-form-7.php:318
42
- msgid "Your Name"
43
- msgstr "თქვენი სახელი"
44
-
45
- #: contact-form-7/wp-contact-form-7.php:318
46
- #: contact-form-7/wp-contact-form-7.php:320
47
- msgid "(required)"
48
- msgstr "(სავალდებულოა)"
49
-
50
- #: contact-form-7/wp-contact-form-7.php:320
51
- msgid "Your Email"
52
- msgstr "თქვენი ელფოსტა"
53
-
54
- #: contact-form-7/wp-contact-form-7.php:322
55
- msgid "Subject"
56
- msgstr "სათაური"
57
-
58
- #: contact-form-7/wp-contact-form-7.php:324
59
- msgid "Your Message"
60
- msgstr "შეტყობინება"
61
-
62
- #: contact-form-7/wp-contact-form-7.php:326
63
- #: contact-form-7/wp-contact-form-7.php:738
64
- msgid "Send"
65
- msgstr "გაგზავნა"
66
-
67
- #: contact-form-7/wp-contact-form-7.php:345
68
- msgid "Your message was sent successfully. Thanks."
69
- msgstr "გმადლობ, თქვენი შეტყობინება წარმატებით გაიგზავნა."
70
-
71
- #: contact-form-7/wp-contact-form-7.php:347
72
- msgid "Failed to send your message. Please try later or contact administrator by other way."
73
- msgstr "შეტყობინების გაგზავნისას მოხდა შეცდომა. გთხოვთ სცადეთ მოგვიანებით ან საიტის ადმინისტრატორს სხვა ფორმით დაუკავშირდით."
74
-
75
- #: contact-form-7/wp-contact-form-7.php:349
76
- msgid "Validation errors occurred. Please confirm the fields and submit it again."
77
- msgstr "შეცდომა. გთხოვთ გადაამოწმოთ შევსებული ველები და სცადოთ გაგზავნა თავიდან."
78
-
79
- #: contact-form-7/wp-contact-form-7.php:351
80
- msgid "Email address seems invalid."
81
- msgstr "ელფოსტის მისამართი არასწორია."
82
-
83
- #: contact-form-7/wp-contact-form-7.php:353
84
- msgid "Please fill the required field."
85
- msgstr "გთხოვთ შეავსოთ ყველა სავალდებულო ველი."
86
-
87
- #: contact-form-7/wp-contact-form-7.php:355
88
- msgid "Your entered code is incorrect."
89
- msgstr "შეყვანილი კოდი არასწორია."
90
-
91
- #: contact-form-7/includes/admin-panel.php:19
92
- #: contact-form-7/includes/admin-panel.php:22
93
- msgid "Add new"
94
- msgstr "ახლის დამატება"
95
-
96
- #: contact-form-7/includes/admin-panel.php:34
97
- msgid "Title"
98
- msgstr "სათაური"
99
-
100
- #: contact-form-7/includes/admin-panel.php:39
101
- msgid "Copy and paste this code into your post content."
102
- msgstr "დააკოპირეთ და ჩასვით ეს კოდი თქვენს პოსტში."
103
-
104
- #: contact-form-7/includes/admin-panel.php:45
105
- msgid "Form content"
106
- msgstr "ფორმის შიგთავსი"
107
-
108
- #: contact-form-7/includes/admin-panel.php:60
109
- msgid "Mail template"
110
- msgstr "ელფოსტის შაბლონი"
111
-
112
- #: contact-form-7/includes/admin-panel.php:61
113
- msgid "Subject field:"
114
- msgstr "სათაურის ველი:"
115
-
116
- #: contact-form-7/includes/admin-panel.php:63
117
- msgid "Sender field:"
118
- msgstr "გამგზავნის ველი:"
119
-
120
- #: contact-form-7/includes/admin-panel.php:65
121
- msgid "Message body:"
122
- msgstr "შეტყობინების ტექსტი:"
123
-
124
- #: contact-form-7/includes/admin-panel.php:69
125
- msgid "Options"
126
- msgstr "პარამეტრები"
127
-
128
- #: contact-form-7/includes/admin-panel.php:70
129
- msgid "Recipient address:"
130
- msgstr "მიმღების მისამართი:"
131
-
132
- #: contact-form-7/includes/admin-panel.php:75
133
- msgid "Save"
134
- msgstr "შენახვა"
135
-
136
- #: contact-form-7/includes/admin-panel.php:82
137
- msgid "Delete this contact form"
138
- msgstr "ამ ფორმის წაშლა"
139
-
140
- #: contact-form-7/includes/admin-panel.php:83
141
- msgid ""
142
- "You are about to delete this contact form.\n"
143
- " 'Cancel' to stop, 'OK' to delete."
144
- msgstr ""
145
- "ნამდვილად გსურთ ამ ფორმის წაშლა?.\n"
146
- " 'Cancel' - არ წაშალო, 'OK' - წაშალე."
147
-
148
- #: contact-form-7/includes/admin-panel.php:137
149
- msgid "Akismet"
150
- msgstr "Akismet"
151
-
152
- #: contact-form-7/includes/admin-panel.php:138
153
- msgid "Check this field as sender&#39;s name"
154
- msgstr "ამ ველის, როგორც გამგზავნის სახელის შემოწმება"
155
-
156
- #: contact-form-7/includes/admin-panel.php:139
157
- msgid "Check this field as sender&#39;s email"
158
- msgstr "ამ ველის, როგორც ელფოსტის შემოწმება"
159
-
160
- #: contact-form-7/includes/admin-panel.php:140
161
- msgid "Check this field as sender&#39;s URL"
162
- msgstr "ამ ველის, როგორც URL-ის შემოწმება"
163
-
164
- #: contact-form-7/includes/admin-panel.php:141
165
- msgid "Don&#39;t check this field with Akismet"
166
- msgstr "ამ ველის შემოწმება Akismet-ით"
167
-
168
- #: contact-form-7/includes/admin-panel.php:148
169
- #: contact-form-7/includes/admin-panel.php:161
170
- #: contact-form-7/includes/admin-panel.php:194
171
- msgid "Default value"
172
- msgstr "ნაგულისხმევი მნიშვნელობა"
173
-
174
- #: contact-form-7/includes/admin-panel.php:169
175
- msgid "Choices"
176
- msgstr "ვარიანტები"
177
-
178
- #: contact-form-7/includes/admin-panel.php:170
179
- msgid "* One choice per line."
180
- msgstr "* ერთი თითო ხაზზე."
181
-
182
- #: contact-form-7/includes/admin-panel.php:178
183
- msgid "Foreground color"
184
- msgstr "მთავარი ფერი"
185
-
186
- #: contact-form-7/includes/admin-panel.php:179
187
- msgid "Background color"
188
- msgstr "ფონის ფერი"
189
-
190
- #: contact-form-7/includes/admin-panel.php:180
191
- msgid "Image size"
192
- msgstr "სურათის ზომა"
193
-
194
- #: contact-form-7/includes/admin-panel.php:182
195
- msgid "Small"
196
- msgstr "პატარა"
197
-
198
- #: contact-form-7/includes/admin-panel.php:183
199
- msgid "Medium"
200
- msgstr "საშუალო"
201
-
202
- #: contact-form-7/includes/admin-panel.php:184
203
- msgid "Large"
204
- msgstr "დიდი"
205
-
206
- #: contact-form-7/includes/admin-panel.php:199
207
- msgid "Label"
208
- msgstr "იარლიყი"
209
-
210
- #: contact-form-7/includes/admin-panel.php:206
211
- msgid "Insert"
212
- msgstr "ჩასმა"
213
-
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
languages/wpcf7-ko_KR.po DELETED
@@ -1,446 +0,0 @@
1
- msgid ""
2
- msgstr ""
3
- "Project-Id-Version: Korean by Soul\n"
4
- "Report-Msgid-Bugs-To: \n"
5
- "POT-Creation-Date: 2009-03-15 03:27+0900\n"
6
- "PO-Revision-Date: 2009-03-24 20:25-0500\n"
7
- "Last-Translator: Jong-In Kim <soulofpure@hotmail.com>\n"
8
- "Language-Team: Jong-In Kim <soulofpure@hotmail.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: Korean\n"
13
- "X-Poedit-Country: KOREA, REPUBLIC OF\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/wp-contact-form-7.php:405
21
- msgid "Contact form"
22
- msgstr "Contact form"
23
-
24
- #: contact-form-7/wp-contact-form-7.php:593
25
- #: contact-form-7/includes/admin-panel.php:5
26
- msgid "Contact Form 7"
27
- msgstr "Contact Form 7"
28
-
29
- #: contact-form-7/wp-contact-form-7.php:616
30
- msgid "optional"
31
- msgstr "옵션"
32
-
33
- #: contact-form-7/wp-contact-form-7.php:617
34
- msgid "Generate Tag"
35
- msgstr "태그 생성"
36
-
37
- #: contact-form-7/wp-contact-form-7.php:618
38
- msgid "Text field"
39
- msgstr "텍스트 입력란"
40
-
41
- #: contact-form-7/wp-contact-form-7.php:619
42
- msgid "Email field"
43
- msgstr "이메일 입력란"
44
-
45
- #: contact-form-7/wp-contact-form-7.php:620
46
- msgid "Text area"
47
- msgstr "텍스트 영역"
48
-
49
- #: contact-form-7/wp-contact-form-7.php:621
50
- msgid "Drop-down menu"
51
- msgstr "드랍다운 메뉴"
52
-
53
- #: contact-form-7/wp-contact-form-7.php:622
54
- msgid "Checkboxes"
55
- msgstr "체크박스들"
56
-
57
- #: contact-form-7/wp-contact-form-7.php:623
58
- msgid "Radio buttons"
59
- msgstr "라디오 버튼"
60
-
61
- #: contact-form-7/wp-contact-form-7.php:624
62
- msgid "Acceptance"
63
- msgstr "수락"
64
-
65
- #: contact-form-7/wp-contact-form-7.php:625
66
- msgid "Make this checkbox checked by default?"
67
- msgstr "이 체크박스를 기본으로 체크할까요?"
68
-
69
- #: contact-form-7/wp-contact-form-7.php:626
70
- msgid "Make this checkbox work inversely?"
71
- msgstr "이 체크박스를 반대로 작동하게 할까요?"
72
-
73
- #: contact-form-7/wp-contact-form-7.php:627
74
- msgid "* That means visitor who accepts the term unchecks it."
75
- msgstr "* 방문자 중 약정을 수락한 사람은 체크하지 않는 것을 의미합니다."
76
-
77
- #: contact-form-7/wp-contact-form-7.php:628
78
- msgid "CAPTCHA"
79
- msgstr "CAPTCHA"
80
-
81
- #: contact-form-7/wp-contact-form-7.php:629
82
- msgid "Quiz"
83
- msgstr "퀴즈"
84
-
85
- #: contact-form-7/wp-contact-form-7.php:630
86
- msgid "Quizzes"
87
- msgstr "퀴즈들"
88
-
89
- #: contact-form-7/wp-contact-form-7.php:631
90
- msgid "* quiz|answer (e.g. 1+1=?|2)"
91
- msgstr "* 퀴즈|답 (예: 1+1=?|2)"
92
-
93
- #: contact-form-7/wp-contact-form-7.php:632
94
- msgid "File upload"
95
- msgstr "파일 업로드"
96
-
97
- #: contact-form-7/wp-contact-form-7.php:633
98
- msgid "bytes"
99
- msgstr "바이트"
100
-
101
- #: contact-form-7/wp-contact-form-7.php:634
102
- msgid "Submit button"
103
- msgstr "등록 버튼"
104
-
105
- #: contact-form-7/wp-contact-form-7.php:635
106
- msgid "Name"
107
- msgstr "이름"
108
-
109
- #: contact-form-7/wp-contact-form-7.php:636
110
- msgid "Required field?"
111
- msgstr "필수 입력란?"
112
-
113
- #: contact-form-7/wp-contact-form-7.php:637
114
- msgid "Allow multiple selections?"
115
- msgstr "다중 선택 허용할까요?"
116
-
117
- #: contact-form-7/wp-contact-form-7.php:638
118
- msgid "Insert a blank item as the first option?"
119
- msgstr "첫 옵션으로 빈 아이템을 삽입할까요 ?"
120
-
121
- #: contact-form-7/wp-contact-form-7.php:639
122
- msgid "Make checkboxes exclusive?"
123
- msgstr "체크박스들을 제외할까요?"
124
-
125
- #: contact-form-7/wp-contact-form-7.php:640
126
- msgid "Choices"
127
- msgstr "선택사항"
128
-
129
- #: contact-form-7/wp-contact-form-7.php:641
130
- msgid "Label"
131
- msgstr "라벨"
132
-
133
- #: contact-form-7/wp-contact-form-7.php:642
134
- msgid "Default value"
135
- msgstr "기본값"
136
-
137
- #: contact-form-7/wp-contact-form-7.php:643
138
- msgid "Akismet"
139
- msgstr "Akismet"
140
-
141
- #: contact-form-7/wp-contact-form-7.php:644
142
- msgid "This field requires author's name"
143
- msgstr "이 입력란은 글쓴이의 이름이 필요합니다."
144
-
145
- #: contact-form-7/wp-contact-form-7.php:645
146
- msgid "This field requires author's URL"
147
- msgstr "이 입력란은 글쓴이의 URL이 필요합니다."
148
-
149
- #: contact-form-7/wp-contact-form-7.php:646
150
- msgid "This field requires author's email address"
151
- msgstr "이 입력란은 글쓴이의 이메일 주소가 필요합니다."
152
-
153
- #: contact-form-7/wp-contact-form-7.php:647
154
- msgid "Copy this code and paste it into the form left."
155
- msgstr "이 코드를 복사해서 폼 안에 붙여넣으세요."
156
-
157
- #: contact-form-7/wp-contact-form-7.php:648
158
- msgid "Foreground color"
159
- msgstr "전경 색상"
160
-
161
- #: contact-form-7/wp-contact-form-7.php:649
162
- msgid "Background color"
163
- msgstr "배경 색상"
164
-
165
- #: contact-form-7/wp-contact-form-7.php:650
166
- msgid "Image size"
167
- msgstr "이미지 사이즈"
168
-
169
- #: contact-form-7/wp-contact-form-7.php:651
170
- msgid "Small"
171
- msgstr "소"
172
-
173
- #: contact-form-7/wp-contact-form-7.php:652
174
- msgid "Medium"
175
- msgstr "중"
176
-
177
- #: contact-form-7/wp-contact-form-7.php:653
178
- msgid "Large"
179
- msgstr "대"
180
-
181
- #: contact-form-7/wp-contact-form-7.php:654
182
- msgid "Image settings"
183
- msgstr "이미지 설정"
184
-
185
- #: contact-form-7/wp-contact-form-7.php:655
186
- msgid "Input field settings"
187
- msgstr "입력 필드 설정"
188
-
189
- #: contact-form-7/wp-contact-form-7.php:656
190
- msgid "For image"
191
- msgstr "For 이미지"
192
-
193
- #: contact-form-7/wp-contact-form-7.php:657
194
- msgid "For input field"
195
- msgstr "For 입력 필드"
196
-
197
- #: contact-form-7/wp-contact-form-7.php:658
198
- msgid "* One choice per line."
199
- msgstr "* 라인별 1가지 선택."
200
-
201
- #: contact-form-7/wp-contact-form-7.php:659
202
- msgid "Show"
203
- msgstr "보기"
204
-
205
- #: contact-form-7/wp-contact-form-7.php:660
206
- msgid "Hide"
207
- msgstr "숨기기"
208
-
209
- #: contact-form-7/wp-contact-form-7.php:661
210
- msgid "File size limit"
211
- msgstr "파일 사이즈 제한"
212
-
213
- #: contact-form-7/wp-contact-form-7.php:662
214
- msgid "Acceptable file types"
215
- msgstr "허용하는 파일 타입"
216
-
217
- #: contact-form-7/wp-contact-form-7.php:663
218
- msgid "Note: To use CAPTCHA, you need Really Simple CAPTCHA plugin installed."
219
- msgstr "알림: CAPTCHA를 사용하려면 Really Simple CAPTCHA 플러그인을 설치해야됩니다."
220
-
221
- #: contact-form-7/wp-contact-form-7.php:690
222
- msgid "Contact form created."
223
- msgstr "Contact form 이 만들어졌음."
224
-
225
- #: contact-form-7/wp-contact-form-7.php:693
226
- msgid "Contact form saved."
227
- msgstr "Contact form 이 저장됨."
228
-
229
- #: contact-form-7/wp-contact-form-7.php:696
230
- msgid "Contact form deleted."
231
- msgstr "Contact form 이 삭제됨."
232
-
233
- #: contact-form-7/wp-contact-form-7.php:707
234
- msgid "Untitled"
235
- msgstr "무제"
236
-
237
- #: contact-form-7/wp-contact-form-7.php:734
238
- msgid "Your Name"
239
- msgstr "이름"
240
-
241
- #: contact-form-7/wp-contact-form-7.php:734
242
- #: contact-form-7/wp-contact-form-7.php:736
243
- msgid "(required)"
244
- msgstr "(필수)"
245
-
246
- #: contact-form-7/wp-contact-form-7.php:736
247
- msgid "Your Email"
248
- msgstr "이메일"
249
-
250
- #: contact-form-7/wp-contact-form-7.php:738
251
- msgid "Subject"
252
- msgstr "제목"
253
-
254
- #: contact-form-7/wp-contact-form-7.php:740
255
- msgid "Your Message"
256
- msgstr "메세지"
257
-
258
- #: contact-form-7/wp-contact-form-7.php:742
259
- #: contact-form-7/wp-contact-form-7.php:1476
260
- msgid "Send"
261
- msgstr "전송"
262
-
263
- #: contact-form-7/wp-contact-form-7.php:796
264
- msgid "Your message was sent successfully. Thanks."
265
- msgstr "당신의 메세지가 성공적으로 보내졌습니다. 감사합니다."
266
-
267
- #: contact-form-7/wp-contact-form-7.php:798
268
- #: contact-form-7/wp-contact-form-7.php:800
269
- msgid "Failed to send your message. Please try later or contact administrator by other way."
270
- msgstr "메세지 전송을 실패했습니다. 다시 시도해 보시거나 웹관리자에게 문의하십시요."
271
-
272
- #: contact-form-7/wp-contact-form-7.php:802
273
- msgid "Validation errors occurred. Please confirm the fields and submit it again."
274
- msgstr "필수항목을 기록하시지 않으셨습니다. 필수 기입 항목을 다시 한번 살펴보시고 재전송 해보십시요."
275
-
276
- #: contact-form-7/wp-contact-form-7.php:804
277
- msgid "Please accept the terms to proceed."
278
- msgstr "진행을 위해 약정을 수락해주세요."
279
-
280
- #: contact-form-7/wp-contact-form-7.php:806
281
- msgid "Email address seems invalid."
282
- msgstr "이메일 주소가 올바르지 않습니다."
283
-
284
- #: contact-form-7/wp-contact-form-7.php:808
285
- msgid "Please fill the required field."
286
- msgstr "필수항목을 채워주세요."
287
-
288
- #: contact-form-7/wp-contact-form-7.php:810
289
- msgid "Your entered code is incorrect."
290
- msgstr "입력한 코드는 맞지않습니다."
291
-
292
- #: contact-form-7/wp-contact-form-7.php:812
293
- msgid "Your answer is not correct."
294
- msgstr "답이 틀렸습니다."
295
-
296
- #: contact-form-7/wp-contact-form-7.php:814
297
- msgid "Failed to upload file."
298
- msgstr "파일 업로드가 실패했습니다."
299
-
300
- #: contact-form-7/wp-contact-form-7.php:816
301
- msgid "This file type is not allowed."
302
- msgstr "이 파일 타입은 허용되지 않습니다."
303
-
304
- #: contact-form-7/wp-contact-form-7.php:818
305
- msgid "This file is too large."
306
- msgstr "이 파일은 너무 큽니다."
307
-
308
- #: contact-form-7/wp-contact-form-7.php:1417
309
- msgid "To use CAPTCHA, you need <a href=\"http://wordpress.org/extend/plugins/really-simple-captcha/\">Really Simple CAPTCHA</a> plugin installed."
310
- msgstr "CAPTCHA를 사용하려면 <a href=\"http://wordpress.org/extend/plugins/really-simple-captcha/\">Really Simple CAPTCHA</a> 플러그인을 설치해야됩니다."
311
-
312
- #: contact-form-7/includes/admin-panel.php:20
313
- msgid "Add new"
314
- msgstr "추가"
315
-
316
- #: contact-form-7/includes/admin-panel.php:42
317
- msgid "Copy this code and paste it into your post, page or text widget content."
318
- msgstr "이 코드를 복사해서 글, 페이지 또는 텍스트 위젯 내용에 붙여넣으세요."
319
-
320
- #: contact-form-7/includes/admin-panel.php:49
321
- #: contact-form-7/includes/admin-panel.php:262
322
- msgid "Save"
323
- msgstr "저장"
324
-
325
- #: contact-form-7/includes/admin-panel.php:56
326
- msgid "Copy"
327
- msgstr "복사"
328
-
329
- #: contact-form-7/includes/admin-panel.php:60
330
- msgid "Delete"
331
- msgstr "삭제"
332
-
333
- #: contact-form-7/includes/admin-panel.php:61
334
- msgid ""
335
- "You are about to delete this contact form.\n"
336
- " 'Cancel' to stop, 'OK' to delete."
337
- msgstr ""
338
- "이 Contact form을 정말로 삭제하실 것입니까? \n"
339
- "취소하시려면 'Cancel'을, 삭제하시려면 'OK'를 클릭하세요."
340
-
341
- #: contact-form-7/includes/admin-panel.php:75
342
- msgid "Form"
343
- msgstr "폼"
344
-
345
- #: contact-form-7/includes/admin-panel.php:95
346
- msgid "Mail"
347
- msgstr "메일"
348
-
349
- #: contact-form-7/includes/admin-panel.php:102
350
- #: contact-form-7/includes/admin-panel.php:154
351
- msgid "To:"
352
- msgstr "To:"
353
-
354
- #: contact-form-7/includes/admin-panel.php:106
355
- #: contact-form-7/includes/admin-panel.php:158
356
- msgid "From:"
357
- msgstr "From:"
358
-
359
- #: contact-form-7/includes/admin-panel.php:110
360
- #: contact-form-7/includes/admin-panel.php:162
361
- msgid "Subject:"
362
- msgstr "제목:"
363
-
364
- #: contact-form-7/includes/admin-panel.php:115
365
- #: contact-form-7/includes/admin-panel.php:167
366
- msgid "File attachments:"
367
- msgstr "첨부 파일:"
368
-
369
- #: contact-form-7/includes/admin-panel.php:117
370
- #: contact-form-7/includes/admin-panel.php:169
371
- msgid "(You need WordPress 2.7 or greater to use this feature)"
372
- msgstr "(이 기능을 사용하기 위해선 워드프레스 2.7이나 그 이상을 필요로 합니다)"
373
-
374
- #: contact-form-7/includes/admin-panel.php:125
375
- #: contact-form-7/includes/admin-panel.php:177
376
- msgid "Use HTML content type"
377
- msgstr "HTML 사용"
378
-
379
- #: contact-form-7/includes/admin-panel.php:130
380
- #: contact-form-7/includes/admin-panel.php:182
381
- msgid "Message body:"
382
- msgstr "메세지 내용:"
383
-
384
- #: contact-form-7/includes/admin-panel.php:141
385
- msgid "Mail (2)"
386
- msgstr "메일 (2)"
387
-
388
- #: contact-form-7/includes/admin-panel.php:148
389
- msgid "Use mail (2)"
390
- msgstr "메일 사용 (2)"
391
-
392
- #: contact-form-7/includes/admin-panel.php:193
393
- msgid "Messages"
394
- msgstr "메세지"
395
-
396
- #: contact-form-7/includes/admin-panel.php:201
397
- msgid "Sender's message was sent successfully"
398
- msgstr "메세지 전송이 성공했습니다"
399
-
400
- #: contact-form-7/includes/admin-panel.php:205
401
- msgid "Sender's message was failed to send"
402
- msgstr "메세지 전송이 실패했습니다"
403
-
404
- #: contact-form-7/includes/admin-panel.php:209
405
- msgid "Akismet judged the sending activity as spamming"
406
- msgstr "Akismet 이 스팸으로 판단했습니다"
407
-
408
- #: contact-form-7/includes/admin-panel.php:213
409
- msgid "Validation errors occurred"
410
- msgstr "유효성 검사 에러가 발생했습니다."
411
-
412
- #: contact-form-7/includes/admin-panel.php:217
413
- msgid "There is a field that sender is needed to fill in"
414
- msgstr "입력해야 될 필드가 있습니다"
415
-
416
- #: contact-form-7/includes/admin-panel.php:221
417
- msgid "Email address that sender entered is invalid"
418
- msgstr "입력한 이메일 주소가 올바르지 않습니다"
419
-
420
- #: contact-form-7/includes/admin-panel.php:225
421
- msgid "There is a field of term that sender is needed to accept"
422
- msgstr "약정을 수락해야 됩니다"
423
-
424
- #: contact-form-7/includes/admin-panel.php:229
425
- msgid "Sender doesn't enter the correct answer to the quiz"
426
- msgstr "퀴즈의 정답을 입력하지 않았습니다"
427
-
428
- #: contact-form-7/includes/admin-panel.php:233
429
- msgid "The code that sender entered does not match the CAPTCHA"
430
- msgstr "입력한 코드는 CAPTCHA 와 매치가 되지않습니다"
431
-
432
- #: contact-form-7/includes/admin-panel.php:237
433
- msgid "Uploading a file fails for any reason"
434
- msgstr "파일 업로드중에 실패했습니다"
435
-
436
- #: contact-form-7/includes/admin-panel.php:241
437
- msgid "Uploaded file is not allowed file type"
438
- msgstr "업로드된 파일은 허용하는 파일타입이 아닙니다"
439
-
440
- #: contact-form-7/includes/admin-panel.php:245
441
- msgid "Uploaded file is too large"
442
- msgstr "업로드된 파일이 너무 큽니다"
443
-
444
- #~ msgid "Delete this contact form"
445
- #~ msgstr "contact from 삭제"
446
-
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
languages/wpcf7-lt_LT.po DELETED
@@ -1,488 +0,0 @@
1
- msgid ""
2
- msgstr ""
3
- "Project-Id-Version: Contact Form 7\n"
4
- "Report-Msgid-Bugs-To: \n"
5
- "POT-Creation-Date: 2009-08-23 14:23+0200\n"
6
- "PO-Revision-Date: 2009-08-23 15:16+0300\n"
7
- "Last-Translator: Ernestas Kardzys <projects@ernestas.info>\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-SearchPath-0: contact-form-7\n"
17
-
18
- #: contact-form-7/admin/admin-panel.php:9
19
- #, php-format
20
- msgid "<strong>The database table for Contact Form 7 does not exist.</strong> You must <a href=\"%s\">create the table</a> for it to work."
21
- msgstr "<strong>Contact Form 7 duomenų lentelė neegzistuoja.</strong> Jūs privalote <a href=\"%s\">sukurti lentelę</a> kad ji veiktų."
22
-
23
- #: contact-form-7/admin/admin-panel.php:12
24
- msgid "<strong>The database table for Contact Form 7 does not exist.</strong>"
25
- msgstr "<strong>Contact Form 7 duomenų lentelė neegzistuoja.</strong>"
26
-
27
- #: contact-form-7/admin/admin-panel.php:17
28
- #: contact-form-7/admin/admin-panel.php:30
29
- #: contact-form-7/admin/admin.php:118
30
- msgid "Contact Form 7"
31
- msgstr "Contact Form 7"
32
-
33
- #: contact-form-7/admin/admin-panel.php:45
34
- msgid "Add new"
35
- msgstr "Pridėti naują"
36
-
37
- #: contact-form-7/admin/admin-panel.php:67
38
- msgid "Copy this code and paste it into your post, page or text widget content."
39
- msgstr "Nukopijuokite šį kodą ir įterpkite į Jūsų žinutę, puslapį ar tekstinį įskiepį."
40
-
41
- #: contact-form-7/admin/admin-panel.php:75
42
- #: contact-form-7/admin/admin-panel.php:327
43
- msgid "Save"
44
- msgstr "Išsaugoti"
45
-
46
- #: contact-form-7/admin/admin-panel.php:82
47
- msgid "Copy"
48
- msgstr "Nukopijuoti"
49
-
50
- #: contact-form-7/admin/admin-panel.php:87
51
- msgid "Delete"
52
- msgstr "Ištrinti"
53
-
54
- #: contact-form-7/admin/admin-panel.php:89
55
- #: contact-form-7/admin/admin-panel.php:102
56
- msgid "Form"
57
- msgstr "Forma"
58
-
59
- #: contact-form-7/admin/admin-panel.php:120
60
- msgid "Mail"
61
- msgstr "Paštas"
62
-
63
- #: contact-form-7/admin/admin-panel.php:127
64
- #: contact-form-7/admin/admin-panel.php:188
65
- msgid "To:"
66
- msgstr "Kam:"
67
-
68
- #: contact-form-7/admin/admin-panel.php:132
69
- #: contact-form-7/admin/admin-panel.php:193
70
- msgid "From:"
71
- msgstr "Nuo:"
72
-
73
- #: contact-form-7/admin/admin-panel.php:137
74
- #: contact-form-7/admin/admin-panel.php:198
75
- msgid "Subject:"
76
- msgstr "Antraštė:"
77
-
78
- #: contact-form-7/admin/admin-panel.php:144
79
- #: contact-form-7/admin/admin-panel.php:205
80
- msgid "Additional headers:"
81
- msgstr "Papildomos antraštės:"
82
-
83
- #: contact-form-7/admin/admin-panel.php:149
84
- #: contact-form-7/admin/admin-panel.php:210
85
- msgid "File attachments:"
86
- msgstr "Failo priedai:"
87
-
88
- #: contact-form-7/admin/admin-panel.php:157
89
- #: contact-form-7/admin/admin-panel.php:218
90
- msgid "Use HTML content type"
91
- msgstr "Naudoti HTML turinį"
92
-
93
- #: contact-form-7/admin/admin-panel.php:164
94
- #: contact-form-7/admin/admin-panel.php:225
95
- msgid "Message body:"
96
- msgstr "Žinutės tekstas"
97
-
98
- #: contact-form-7/admin/admin-panel.php:174
99
- msgid "Mail (2)"
100
- msgstr "Mail(2)"
101
-
102
- #: contact-form-7/admin/admin-panel.php:180
103
- msgid "Use mail (2)"
104
- msgstr "Naudoti mail(2)"
105
-
106
- #: contact-form-7/admin/admin-panel.php:235
107
- msgid "Messages"
108
- msgstr "Žinutės"
109
-
110
- #: contact-form-7/admin/admin-panel.php:243
111
- msgid "Sender's message was sent successfully"
112
- msgstr "Siuntėjo žinutė sėkmingai išsiųsta"
113
-
114
- #: contact-form-7/admin/admin-panel.php:248
115
- msgid "Sender's message was failed to send"
116
- msgstr "Nepavyko išsiųsti siuntėjo žinutės"
117
-
118
- #: contact-form-7/admin/admin-panel.php:253
119
- msgid "Akismet judged the sending activity as spamming"
120
- msgstr "Akismet nusprendė, kad siuntimo veiksmai yra 'spam'as'"
121
-
122
- #: contact-form-7/admin/admin-panel.php:258
123
- msgid "Validation errors occurred"
124
- msgstr "Įvyko įvertinimo klaidos"
125
-
126
- #: contact-form-7/admin/admin-panel.php:263
127
- msgid "There is a field that sender is needed to fill in"
128
- msgstr "Būtina užpildyti vieną lauką"
129
-
130
- #: contact-form-7/admin/admin-panel.php:268
131
- msgid "Email address that sender entered is invalid"
132
- msgstr "Siuntėjo įvestas el. pašto adresas yra neteisingas"
133
-
134
- #: contact-form-7/admin/admin-panel.php:273
135
- msgid "There is a field of term that sender is needed to accept"
136
- msgstr "Siuntėjas privalo sutikti su viena iš sąlygų"
137
-
138
- #: contact-form-7/admin/admin-panel.php:278
139
- msgid "Sender doesn't enter the correct answer to the quiz"
140
- msgstr "Siuntėjas neįvedė teisingo apklausos atsakymo"
141
-
142
- #: contact-form-7/admin/admin-panel.php:283
143
- msgid "The code that sender entered does not match the CAPTCHA"
144
- msgstr "Siuntėjo įvestas kodas nesutampa"
145
-
146
- #: contact-form-7/admin/admin-panel.php:288
147
- msgid "Uploading a file fails for any reason"
148
- msgstr "Failų nusiuntimas nepavyksta dėl bet kokios priežasties"
149
-
150
- #: contact-form-7/admin/admin-panel.php:293
151
- msgid "Uploaded file is not allowed file type"
152
- msgstr "Nusiųstas failas yra neleidžiamo tipo"
153
-
154
- #: contact-form-7/admin/admin-panel.php:298
155
- msgid "Uploaded file is too large"
156
- msgstr "Nusiųstas failas yra per didelis"
157
-
158
- #: contact-form-7/admin/admin-panel.php:309
159
- msgid "Additional Settings"
160
- msgstr "Papildomi nustatymai"
161
-
162
- #: contact-form-7/admin/admin.php:118
163
- msgid "Contact"
164
- msgstr "Kontaktas"
165
-
166
- #: contact-form-7/admin/admin.php:121
167
- msgid "Edit Contact Forms"
168
- msgstr "Redaguoti kontaktų formas"
169
-
170
- #: contact-form-7/admin/admin.php:121
171
- msgid "Edit"
172
- msgstr "Redaguoti"
173
-
174
- #: contact-form-7/admin/admin.php:168
175
- msgid "optional"
176
- msgstr "papildomi"
177
-
178
- #: contact-form-7/admin/admin.php:169
179
- msgid "Generate Tag"
180
- msgstr "Generuoti žymą"
181
-
182
- #: contact-form-7/admin/admin.php:170
183
- msgid "Text field"
184
- msgstr "Tekstinis laukas"
185
-
186
- #: contact-form-7/admin/admin.php:171
187
- msgid "Email field"
188
- msgstr "El. pašto laukas"
189
-
190
- #: contact-form-7/admin/admin.php:172
191
- msgid "Text area"
192
- msgstr "Teksto laukelis"
193
-
194
- #: contact-form-7/admin/admin.php:173
195
- msgid "Drop-down menu"
196
- msgstr "Išsiskleidžiantis meniu"
197
-
198
- #: contact-form-7/admin/admin.php:174
199
- msgid "Checkboxes"
200
- msgstr "Varnele žymimas laukelis"
201
-
202
- #: contact-form-7/admin/admin.php:175
203
- msgid "Radio buttons"
204
- msgstr "Pasirinkimo laukelis"
205
-
206
- #: contact-form-7/admin/admin.php:176
207
- msgid "Acceptance"
208
- msgstr "Sutikmas"
209
-
210
- #: contact-form-7/admin/admin.php:177
211
- msgid "Make this checkbox checked by default?"
212
- msgstr "Pažymėti šį laukelį varnele standartiškai?"
213
-
214
- #: contact-form-7/admin/admin.php:178
215
- msgid "Make this checkbox work inversely?"
216
- msgstr "Ar reikia, kad laukelis veiktų priešingai?"
217
-
218
- #: contact-form-7/admin/admin.php:179
219
- msgid "* That means visitor who accepts the term unchecks it."
220
- msgstr "* Tai reiškia, kad sutinkantis su sąlygomis lankytojas nužymi."
221
-
222
- #: contact-form-7/admin/admin.php:180
223
- msgid "CAPTCHA"
224
- msgstr "CAPTCH"
225
-
226
- #: contact-form-7/admin/admin.php:181
227
- msgid "Quiz"
228
- msgstr "Apklausa"
229
-
230
- #: contact-form-7/admin/admin.php:182
231
- msgid "Quizzes"
232
- msgstr "Apklausos"
233
-
234
- #: contact-form-7/admin/admin.php:183
235
- msgid "* quiz|answer (e.g. 1+1=?|2)"
236
- msgstr "* apklausa|atsakymas (pvz. 1+1=?|2)"
237
-
238
- #: contact-form-7/admin/admin.php:184
239
- msgid "File upload"
240
- msgstr "Failų nustiuntimas"
241
-
242
- #: contact-form-7/admin/admin.php:185
243
- msgid "bytes"
244
- msgstr "baitų"
245
-
246
- #: contact-form-7/admin/admin.php:186
247
- msgid "Submit button"
248
- msgstr "Nusiuntimo mygtukas"
249
-
250
- #: contact-form-7/admin/admin.php:187
251
- msgid "Name"
252
- msgstr "Vardas"
253
-
254
- #: contact-form-7/admin/admin.php:188
255
- msgid "Required field?"
256
- msgstr "Būtinas laukas?"
257
-
258
- #: contact-form-7/admin/admin.php:189
259
- msgid "Allow multiple selections?"
260
- msgstr "Leisti pažymėti kelis?"
261
-
262
- #: contact-form-7/admin/admin.php:190
263
- msgid "Insert a blank item as the first option?"
264
- msgstr "Įterpti tuščią laukelį kaip pirmą pasirinkimą?"
265
-
266
- #: contact-form-7/admin/admin.php:191
267
- msgid "Make checkboxes exclusive?"
268
- msgstr "Pavesti varnele žymimus laukelius išskirtiniais?"
269
-
270
- #: contact-form-7/admin/admin.php:192
271
- msgid "Choices"
272
- msgstr "Pasirinkimai"
273
-
274
- #: contact-form-7/admin/admin.php:193
275
- msgid "Label"
276
- msgstr "Žymė"
277
-
278
- #: contact-form-7/admin/admin.php:194
279
- msgid "Default value"
280
- msgstr "Standartinė reikšmė"
281
-
282
- #: contact-form-7/admin/admin.php:195
283
- msgid "Akismet"
284
- msgstr "Akismet"
285
-
286
- #: contact-form-7/admin/admin.php:196
287
- msgid "This field requires author's name"
288
- msgstr "Šis laukas reikalauja autoriaus vardo"
289
-
290
- #: contact-form-7/admin/admin.php:197
291
- msgid "This field requires author's URL"
292
- msgstr "Šis laukas reikalauja autoriaus interneto svetainės adreso"
293
-
294
- #: contact-form-7/admin/admin.php:198
295
- msgid "This field requires author's email address"
296
- msgstr "Šis laukas reikalauja autoriaus el. pašto"
297
-
298
- #: contact-form-7/admin/admin.php:199
299
- msgid "Copy this code and paste it into the form left."
300
- msgstr "Nukopijuokite šį kodą ir įterpkite formoje kairėje"
301
-
302
- #: contact-form-7/admin/admin.php:200
303
- msgid "Foreground color"
304
- msgstr "Pagrindinė spalva"
305
-
306
- #: contact-form-7/admin/admin.php:201
307
- msgid "Background color"
308
- msgstr "Fono spalva"
309
-
310
- #: contact-form-7/admin/admin.php:202
311
- msgid "Image size"
312
- msgstr "Paveiksliuko dydis"
313
-
314
- #: contact-form-7/admin/admin.php:203
315
- msgid "Small"
316
- msgstr "Mažas"
317
-
318
- #: contact-form-7/admin/admin.php:204
319
- msgid "Medium"
320
- msgstr "Vidutinis"
321
-
322
- #: contact-form-7/admin/admin.php:205
323
- msgid "Large"
324
- msgstr "Didelis"
325
-
326
- #: contact-form-7/admin/admin.php:206
327
- msgid "Image settings"
328
- msgstr "Paveiksliuko nustatymai"
329
-
330
- #: contact-form-7/admin/admin.php:207
331
- msgid "Input field settings"
332
- msgstr "Įvesties lauko nustatymai"
333
-
334
- #: contact-form-7/admin/admin.php:208
335
- msgid "For image"
336
- msgstr "Paveiksliukui"
337
-
338
- #: contact-form-7/admin/admin.php:209
339
- msgid "For input field"
340
- msgstr "Įvesties laukui"
341
-
342
- #: contact-form-7/admin/admin.php:210
343
- msgid "* One choice per line."
344
- msgstr "* Vienas pasirinkimas eilutėje."
345
-
346
- #: contact-form-7/admin/admin.php:211
347
- msgid "Show"
348
- msgstr "Rodyti"
349
-
350
- #: contact-form-7/admin/admin.php:212
351
- msgid "Hide"
352
- msgstr "Paslėpti"
353
-
354
- #: contact-form-7/admin/admin.php:213
355
- msgid "File size limit"
356
- msgstr "Failo dydžio riba"
357
-
358
- #: contact-form-7/admin/admin.php:214
359
- msgid "Acceptable file types"
360
- msgstr "Priimtini failų tipai"
361
-
362
- #: contact-form-7/admin/admin.php:215
363
- msgid "Note: To use CAPTCHA, you need Really Simple CAPTCHA plugin installed."
364
- msgstr "Pastaba: norėdami naudoti CAPTCH, privalote įdiegti Really Simple CAPTCHA įskiepį."
365
-
366
- #: contact-form-7/admin/admin.php:226
367
- msgid "Contact form created."
368
- msgstr "Kontaktų forma sukurta"
369
-
370
- #: contact-form-7/admin/admin.php:229
371
- msgid "Contact form saved."
372
- msgstr "Kontaktų forma išsaugota"
373
-
374
- #: contact-form-7/admin/admin.php:232
375
- msgid "Contact form deleted."
376
- msgstr "Kontaktų forma ištrinta"
377
-
378
- #: contact-form-7/admin/admin.php:235
379
- msgid "Database table created."
380
- msgstr "Duomenų bazės lentelė sukurta."
381
-
382
- #: contact-form-7/admin/admin.php:238
383
- msgid "Failed to create database table."
384
- msgstr "Nepavyko sukurti duomenų bazės lentelės."
385
-
386
- #: contact-form-7/admin/admin.php:311
387
- msgid "Contact form"
388
- msgstr "Kontaktų forma"
389
-
390
- #: contact-form-7/admin/admin.php:345
391
- msgid "Settings"
392
- msgstr "Nustatymai"
393
-
394
- #: contact-form-7/admin/admin.php:366
395
- msgid "Contact Form 7 needs your support. Please donate today."
396
- msgstr "Contact Form 7 reikia Jūsų palaikymo. Prašau paremti šiandien"
397
-
398
- #: contact-form-7/admin/admin.php:367
399
- msgid "Is this plugin useful for you? If you like it, please help the developer."
400
- msgstr "Ar šis įskiepis yra Jums naudingas? Jeigu jis jums patiko, prašau padėti kūrėjui."
401
-
402
- #: contact-form-7/admin/admin.php:368
403
- msgid "Your contribution is needed for making this plugin better."
404
- msgstr "Jūsų parama reikalinga šio įskiepio tobulinimui"
405
-
406
- #: contact-form-7/admin/admin.php:369
407
- msgid "Developing a plugin and providing user support is really hard work. Please help."
408
- msgstr "Įskiepio tobulinimas ir pagalba vartotojams yra sunkus darbas. Prašau padėti"
409
-
410
- #: contact-form-7/includes/classes.php:536
411
- msgid "Untitled"
412
- msgstr "Bevardė"
413
-
414
- #: contact-form-7/includes/functions.php:6
415
- msgid "Your message was sent successfully. Thanks."
416
- msgstr "Jūsų žinutė išsiųsta sėkmingai. Ačiū."
417
-
418
- #: contact-form-7/includes/functions.php:8
419
- #: contact-form-7/includes/functions.php:10
420
- msgid "Failed to send your message. Please try later or contact administrator by other way."
421
- msgstr "Nepavyko išsiųsti Jūsų žinutės. Prašau pabandyti vėliau arba susiekite su administratoriumi kitu būdu."
422
-
423
- #: contact-form-7/includes/functions.php:12
424
- msgid "Validation errors occurred. Please confirm the fields and submit it again."
425
- msgstr "Įvyko patikrinimo klaidų. Prašau patikrinti laukelius ir nusiųskite formą dar kartą."
426
-
427
- #: contact-form-7/includes/functions.php:14
428
- msgid "Please accept the terms to proceed."
429
- msgstr "Norėdami tęsti, prašau prašau sutikti su sąlygomis."
430
-
431
- #: contact-form-7/includes/functions.php:16
432
- msgid "Email address seems invalid."
433
- msgstr "Neteisingas el. pašto adresas"
434
-
435
- #: contact-form-7/includes/functions.php:18
436
- msgid "Please fill the required field."
437
- msgstr "Prašau užpildyti reikalaujamą lauką."
438
-
439
- #: contact-form-7/includes/functions.php:20
440
- msgid "Your entered code is incorrect."
441
- msgstr "Įvestas neteisingas kodas."
442
-
443
- #: contact-form-7/includes/functions.php:22
444
- msgid "Your answer is not correct."
445
- msgstr "Jūsų atsakymas yra neteisingas."
446
-
447
- #: contact-form-7/includes/functions.php:24
448
- msgid "Failed to upload file."
449
- msgstr "Nepavyko nusiųsti failo."
450
-
451
- #: contact-form-7/includes/functions.php:26
452
- msgid "This file type is not allowed."
453
- msgstr "Šis failo tipas yra neleidžiamas."
454
-
455
- #: contact-form-7/includes/functions.php:28
456
- msgid "This file is too large."
457
- msgstr "Failas yra per didelis"
458
-
459
- #: contact-form-7/includes/functions.php:33
460
- msgid "Your Name"
461
- msgstr "Jūsų vardas"
462
-
463
- #: contact-form-7/includes/functions.php:33
464
- #: contact-form-7/includes/functions.php:35
465
- msgid "(required)"
466
- msgstr "(būtinas)"
467
-
468
- #: contact-form-7/includes/functions.php:35
469
- msgid "Your Email"
470
- msgstr "Jūsų el. paštas"
471
-
472
- #: contact-form-7/includes/functions.php:37
473
- msgid "Subject"
474
- msgstr "Antraštė"
475
-
476
- #: contact-form-7/includes/functions.php:39
477
- msgid "Your Message"
478
- msgstr "Jūsų žinutė"
479
-
480
- #: contact-form-7/includes/functions.php:41
481
- #: contact-form-7/modules/submit.php:37
482
- msgid "Send"
483
- msgstr "Siųsti"
484
-
485
- #: contact-form-7/modules/captcha.php:62
486
- msgid "To use CAPTCHA, you need <a href=\"http://wordpress.org/extend/plugins/really-simple-captcha/\">Really Simple CAPTCHA</a> plugin installed."
487
- msgstr "Norėdami naudoti CAPTCHA, jums reikia įdiegti <a href=\"http://wordpress.org/extend/plugins/really-simple-captcha/\">Really Simple CAPTCHA</a> įskiepį."
488
-
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
languages/wpcf7-lv.po DELETED
@@ -1,432 +0,0 @@
1
- msgid ""
2
- msgstr ""
3
- "Project-Id-Version: wpcf7-lv\n"
4
- "Report-Msgid-Bugs-To: \n"
5
- "POT-Creation-Date: 2009-02-21 11:20+0900\n"
6
- "PO-Revision-Date: 2009-03-02 14:33+0200\n"
7
- "Last-Translator: \n"
8
- "Language-Team: Kleofass.lv <spam@kleofass.lv>\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-Language: Latvian\n"
15
- "X-Poedit-Country: LATVIA\n"
16
-
17
- #: contact-form-7/wp-contact-form-7.php:413
18
- msgid "Contact form"
19
- msgstr "Kontaktu forma"
20
-
21
- #: contact-form-7/wp-contact-form-7.php:598
22
- #: contact-form-7/includes/admin-panel.php:5
23
- msgid "Contact Form 7"
24
- msgstr "Kontaktu Forma 7"
25
-
26
- #: contact-form-7/wp-contact-form-7.php:621
27
- msgid "optional"
28
- msgstr "neobligāts"
29
-
30
- #: contact-form-7/wp-contact-form-7.php:622
31
- msgid "Generate Tag"
32
- msgstr "Ģenerēt Birku"
33
-
34
- #: contact-form-7/wp-contact-form-7.php:623
35
- msgid "Text field"
36
- msgstr "Teksta lauks"
37
-
38
- #: contact-form-7/wp-contact-form-7.php:624
39
- msgid "Email field"
40
- msgstr "E-pasta lauks"
41
-
42
- #: contact-form-7/wp-contact-form-7.php:625
43
- msgid "Text area"
44
- msgstr "Teksta apgabals"
45
-
46
- #: contact-form-7/wp-contact-form-7.php:626
47
- msgid "Drop-down menu"
48
- msgstr "Nolaižamā izvēlne"
49
-
50
- #: contact-form-7/wp-contact-form-7.php:627
51
- msgid "Checkboxes"
52
- msgstr "Izvēles rūtiņas"
53
-
54
- #: contact-form-7/wp-contact-form-7.php:628
55
- msgid "Radio buttons"
56
- msgstr "Radio pogas"
57
-
58
- #: contact-form-7/wp-contact-form-7.php:629
59
- msgid "Acceptance"
60
- msgstr "Pieņemšana"
61
-
62
- #: contact-form-7/wp-contact-form-7.php:630
63
- msgid "Make this checkbox checked by default?"
64
- msgstr "Izveidot pēc noklusējuma kā atzīmētu šo izvēles rūtiņu?"
65
-
66
- #: contact-form-7/wp-contact-form-7.php:631
67
- msgid "Make this checkbox work inversely?"
68
- msgstr "Izveidot šo rūtiņu kā pretēji proporcionālu?"
69
-
70
- #: contact-form-7/wp-contact-form-7.php:632
71
- msgid "* That means visitor who accepts the term unchecks it."
72
- msgstr "* Tas nozīmē, ka apmeklētājam ir jāizķeksē to, lai apstiprinātu noteikumus."
73
-
74
- #: contact-form-7/wp-contact-form-7.php:633
75
- msgid "CAPTCHA"
76
- msgstr "CAPTCHA"
77
-
78
- #: contact-form-7/wp-contact-form-7.php:634
79
- msgid "Quiz"
80
- msgstr "Viktorīna"
81
-
82
- #: contact-form-7/wp-contact-form-7.php:635
83
- msgid "Quizzes"
84
- msgstr "Viktorīnas"
85
-
86
- #: contact-form-7/wp-contact-form-7.php:636
87
- msgid "* quiz|answer (e.g. 1+1=?|2)"
88
- msgstr "* viktorīna|atbildēt (piemēram, 1+1=?|2)"
89
-
90
- #: contact-form-7/wp-contact-form-7.php:637
91
- msgid "File upload"
92
- msgstr "Faila augšupielāde"
93
-
94
- #: contact-form-7/wp-contact-form-7.php:638
95
- msgid "bytes"
96
- msgstr "baiti"
97
-
98
- #: contact-form-7/wp-contact-form-7.php:639
99
- msgid "Submit button"
100
- msgstr "Apstiprināšanas poga"
101
-
102
- #: contact-form-7/wp-contact-form-7.php:640
103
- msgid "Name"
104
- msgstr "Vārds"
105
-
106
- #: contact-form-7/wp-contact-form-7.php:641
107
- msgid "Required field?"
108
- msgstr "Nepieciešamais lauks?"
109
-
110
- #: contact-form-7/wp-contact-form-7.php:642
111
- msgid "Allow multiple selections?"
112
- msgstr "Atļaut daudzkārtīgas izvēles?"
113
-
114
- #: contact-form-7/wp-contact-form-7.php:643
115
- msgid "Insert a blank item as the first option?"
116
- msgstr "Ievietot tukšu ziņu, kā pirmo izvēli?"
117
-
118
- #: contact-form-7/wp-contact-form-7.php:644
119
- msgid "Make checkboxes exclusive?"
120
- msgstr "Izveidot izvēles rūtiņas kā izņēmumus?"
121
-
122
- #: contact-form-7/wp-contact-form-7.php:645
123
- msgid "Choices"
124
- msgstr "Izvēles"
125
-
126
- #: contact-form-7/wp-contact-form-7.php:646
127
- msgid "Label"
128
- msgstr "Etiķete"
129
-
130
- #: contact-form-7/wp-contact-form-7.php:647
131
- msgid "Default value"
132
- msgstr "Noklusējuma vērtība"
133
-
134
- #: contact-form-7/wp-contact-form-7.php:648
135
- msgid "Akismet"
136
- msgstr "Akismet"
137
-
138
- #: contact-form-7/wp-contact-form-7.php:649
139
- msgid "This field requires author's name"
140
- msgstr "Šajā laukā nepieciešams autora vārds"
141
-
142
- #: contact-form-7/wp-contact-form-7.php:650
143
- msgid "This field requires author's URL"
144
- msgstr "Šajā laukā nepieciešams autora URL"
145
-
146
- #: contact-form-7/wp-contact-form-7.php:651
147
- msgid "This field requires author's email address"
148
- msgstr "Šajā laukā nepieciešama autora e-pasta adrese"
149
-
150
- #: contact-form-7/wp-contact-form-7.php:652
151
- msgid "Copy this code and paste it into the form left."
152
- msgstr "Nokopēt un ievietot šo kodu formā."
153
-
154
- #: contact-form-7/wp-contact-form-7.php:653
155
- msgid "Foreground color"
156
- msgstr "Priekšplāna krāsa"
157
-
158
- #: contact-form-7/wp-contact-form-7.php:654
159
- msgid "Background color"
160
- msgstr "Fona krāsa"
161
-
162
- #: contact-form-7/wp-contact-form-7.php:655
163
- msgid "Image size"
164
- msgstr "Attēla lielums"
165
-
166
- #: contact-form-7/wp-contact-form-7.php:656
167
- msgid "Small"
168
- msgstr "Mazs"
169
-
170
- #: contact-form-7/wp-contact-form-7.php:657
171
- msgid "Medium"
172
- msgstr "Vidējs"
173
-
174
- #: contact-form-7/wp-contact-form-7.php:658
175
- msgid "Large"
176
- msgstr "Liels"
177
-
178
- #: contact-form-7/wp-contact-form-7.php:659
179
- msgid "Image settings"
180
- msgstr "Attēla iestatījumi"
181
-
182
- #: contact-form-7/wp-contact-form-7.php:660
183
- msgid "Input field settings"
184
- msgstr "Ievadlauka iestatījumi"
185
-
186
- #: contact-form-7/wp-contact-form-7.php:661
187
- msgid "For image"
188
- msgstr "Priekš attēla"
189
-
190
- #: contact-form-7/wp-contact-form-7.php:662
191
- msgid "For input field"
192
- msgstr "Priekš ievadlauka"
193
-
194
- #: contact-form-7/wp-contact-form-7.php:663
195
- msgid "* One choice per line."
196
- msgstr "* Viena izvēle uz līniju."
197
-
198
- #: contact-form-7/wp-contact-form-7.php:664
199
- msgid "Show"
200
- msgstr "Rādīt"
201
-
202
- #: contact-form-7/wp-contact-form-7.php:665
203
- msgid "Hide"
204
- msgstr "Slēpt"
205
-
206
- #: contact-form-7/wp-contact-form-7.php:666
207
- msgid "File size limit"
208
- msgstr "Faila izmēra limits"
209
-
210
- #: contact-form-7/wp-contact-form-7.php:667
211
- msgid "Acceptable file types"
212
- msgstr "Pieņemamie failu veidi"
213
-
214
- #: contact-form-7/wp-contact-form-7.php:693
215
- msgid "Contact form created."
216
- msgstr "Kontaktu forma izveidota."
217
-
218
- #: contact-form-7/wp-contact-form-7.php:696
219
- msgid "Contact form saved."
220
- msgstr "Kontaktu forma saglabāta."
221
-
222
- #: contact-form-7/wp-contact-form-7.php:699
223
- msgid "Contact form deleted."
224
- msgstr "Kontaktu forma dzēsta."
225
-
226
- #: contact-form-7/wp-contact-form-7.php:710
227
- msgid "Untitled"
228
- msgstr "Bez nosaukuma"
229
-
230
- #: contact-form-7/wp-contact-form-7.php:737
231
- msgid "Your Name"
232
- msgstr "Jūsu Vārds"
233
-
234
- #: contact-form-7/wp-contact-form-7.php:737
235
- #: contact-form-7/wp-contact-form-7.php:739
236
- msgid "(required)"
237
- msgstr "(nepieciešams)"
238
-
239
- #: contact-form-7/wp-contact-form-7.php:739
240
- msgid "Your Email"
241
- msgstr "Jūsu E-pasts"
242
-
243
- #: contact-form-7/wp-contact-form-7.php:741
244
- msgid "Subject"
245
- msgstr "Temats"
246
-
247
- #: contact-form-7/wp-contact-form-7.php:743
248
- msgid "Your Message"
249
- msgstr "Jūsu Ziņa"
250
-
251
- #: contact-form-7/wp-contact-form-7.php:745
252
- #: contact-form-7/wp-contact-form-7.php:1474
253
- msgid "Send"
254
- msgstr "Nosūtīt"
255
-
256
- #: contact-form-7/wp-contact-form-7.php:799
257
- msgid "Your message was sent successfully. Thanks."
258
- msgstr "Jūsu ziņa ir veiksmīgi nosūtīta. Paldies."
259
-
260
- #: contact-form-7/wp-contact-form-7.php:801
261
- #: contact-form-7/wp-contact-form-7.php:803
262
- msgid "Failed to send your message. Please try later or contact administrator by other way."
263
- msgstr "Kļūda nosūtot jūsu ziņu. Lūdzu mēģiniet vēlāk vai sazinieties ar administratoru citā veidā."
264
-
265
- #: contact-form-7/wp-contact-form-7.php:805
266
- msgid "Validation errors occurred. Please confirm the fields and submit it again."
267
- msgstr "Atgadījās apstiprināšanas kļūda. Lūdzu apstipriniet laukus un nosūtiet to atkal."
268
-
269
- #: contact-form-7/wp-contact-form-7.php:807
270
- msgid "Please accept the terms to proceed."
271
- msgstr "Lūdzu apstipriniet noteikumus, lai turpinātu."
272
-
273
- #: contact-form-7/wp-contact-form-7.php:809
274
- msgid "Email address seems invalid."
275
- msgstr "E-pasta adrese ir nederīga."
276
-
277
- #: contact-form-7/wp-contact-form-7.php:811
278
- msgid "Please fill the required field."
279
- msgstr "Lūdzu aizpildiet nepieciešamos laukus."
280
-
281
- #: contact-form-7/wp-contact-form-7.php:813
282
- msgid "Your entered code is incorrect."
283
- msgstr "Jūsu ierakstītais kods ir nepareizs."
284
-
285
- #: contact-form-7/wp-contact-form-7.php:815
286
- msgid "Your answer is not correct."
287
- msgstr "Jūsu atbilde nav pareiza."
288
-
289
- #: contact-form-7/wp-contact-form-7.php:817
290
- msgid "Failed to upload file."
291
- msgstr "Neizdevās augšupielādēt failu."
292
-
293
- #: contact-form-7/wp-contact-form-7.php:819
294
- msgid "This file type is not allowed."
295
- msgstr "Šī faila veids, nav atļauts."
296
-
297
- #: contact-form-7/wp-contact-form-7.php:821
298
- msgid "This file is too large."
299
- msgstr "Šis fails ir pārāk liels."
300
-
301
- #: contact-form-7/includes/admin-panel.php:20
302
- msgid "Add new"
303
- msgstr "Pievienot jaunu"
304
-
305
- #: contact-form-7/includes/admin-panel.php:42
306
- msgid "Copy this code and paste it into your post, page or text widget content."
307
- msgstr "Nokopēt un ievietot šo kodu jūsu ziņas saturā."
308
-
309
- #: contact-form-7/includes/admin-panel.php:49
310
- #: contact-form-7/includes/admin-panel.php:262
311
- msgid "Save"
312
- msgstr "Saglabāt"
313
-
314
- #: contact-form-7/includes/admin-panel.php:56
315
- msgid "Copy"
316
- msgstr "Kopēt"
317
-
318
- #: contact-form-7/includes/admin-panel.php:60
319
- msgid "Delete"
320
- msgstr "Dzēst"
321
-
322
- #: contact-form-7/includes/admin-panel.php:61
323
- msgid ""
324
- "You are about to delete this contact form.\n"
325
- " 'Cancel' to stop, 'OK' to delete."
326
- msgstr ""
327
- "Tiks izdzēsta šī kontaktu forma.\n"
328
- " 'Cancel' - lai apturētu, 'OK' - lai dzēstu."
329
-
330
- #: contact-form-7/includes/admin-panel.php:75
331
- msgid "Form"
332
- msgstr "Forma"
333
-
334
- #: contact-form-7/includes/admin-panel.php:95
335
- msgid "Mail"
336
- msgstr "E-pasts"
337
-
338
- #: contact-form-7/includes/admin-panel.php:102
339
- #: contact-form-7/includes/admin-panel.php:154
340
- msgid "To:"
341
- msgstr "Kam:"
342
-
343
- #: contact-form-7/includes/admin-panel.php:106
344
- #: contact-form-7/includes/admin-panel.php:158
345
- msgid "From:"
346
- msgstr "No:"
347
-
348
- #: contact-form-7/includes/admin-panel.php:110
349
- #: contact-form-7/includes/admin-panel.php:162
350
- msgid "Subject:"
351
- msgstr "Temats:"
352
-
353
- #: contact-form-7/includes/admin-panel.php:115
354
- #: contact-form-7/includes/admin-panel.php:167
355
- msgid "File attachments:"
356
- msgstr "Failu pielikumi:"
357
-
358
- #: contact-form-7/includes/admin-panel.php:117
359
- #: contact-form-7/includes/admin-panel.php:169
360
- msgid "(You need WordPress 2.7 or greater to use this feature)"
361
- msgstr "(Jums ir nepieciešams WordPress 2.7 vai jaunāks, lai izmantotu šo funkciju)"
362
-
363
- #: contact-form-7/includes/admin-panel.php:125
364
- #: contact-form-7/includes/admin-panel.php:177
365
- msgid "Use HTML content type"
366
- msgstr "Izmantojiet HTML satura veidu"
367
-
368
- #: contact-form-7/includes/admin-panel.php:130
369
- #: contact-form-7/includes/admin-panel.php:182
370
- msgid "Message body:"
371
- msgstr "Ziņa:"
372
-
373
- #: contact-form-7/includes/admin-panel.php:141
374
- msgid "Mail (2)"
375
- msgstr "E-pasts (2)"
376
-
377
- #: contact-form-7/includes/admin-panel.php:148
378
- msgid "Use mail (2)"
379
- msgstr "Lietot e-pastu (2)"
380
-
381
- #: contact-form-7/includes/admin-panel.php:193
382
- msgid "Messages"
383
- msgstr "Ziņas"
384
-
385
- #: contact-form-7/includes/admin-panel.php:201
386
- msgid "Sender's message was sent successfully"
387
- msgstr "Sūtītāja ziņa tika nosūtīta veiksmīgi"
388
-
389
- #: contact-form-7/includes/admin-panel.php:205
390
- msgid "Sender's message was failed to send"
391
- msgstr "Sūtītāja ziņu neizdevās nosūtīt"
392
-
393
- #: contact-form-7/includes/admin-panel.php:209
394
- msgid "Akismet judged the sending activity as spamming"
395
- msgstr "Akismet sūtīšanas darbību novērtēja kā mēstuļošanu"
396
-
397
- #: contact-form-7/includes/admin-panel.php:213
398
- msgid "Validation errors occurred"
399
- msgstr "Atgadījās apstiprināšanas kļūda"
400
-
401
- #: contact-form-7/includes/admin-panel.php:217
402
- msgid "There is a field that sender is needed to fill in"
403
- msgstr "Ir lauki, kuri sūtītājam ir jāaizpilda"
404
-
405
- #: contact-form-7/includes/admin-panel.php:221
406
- msgid "Email address that sender entered is invalid"
407
- msgstr "E-pasta adrese, kuru sūtītājs ievadīja, ir nederīga"
408
-
409
- #: contact-form-7/includes/admin-panel.php:225
410
- msgid "There is a field of term that sender is needed to accept"
411
- msgstr "Ir lauki, kuri sūtītājam ir jāapstiprina"
412
-
413
- #: contact-form-7/includes/admin-panel.php:229
414
- msgid "Sender doesn't enter the correct answer to the quiz"
415
- msgstr "Sūtītājs ir nepareizi atbildējis uz viktorīnas jautājumu"
416
-
417
- #: contact-form-7/includes/admin-panel.php:233
418
- msgid "The code that sender entered does not match the CAPTCHA"
419
- msgstr "Kods, kuru sūtītājs ievadīja, neatbilst CAPTCHA"
420
-
421
- #: contact-form-7/includes/admin-panel.php:237
422
- msgid "Uploading a file fails for any reason"
423
- msgstr "Faila augšupielāde neizdevās"
424
-
425
- #: contact-form-7/includes/admin-panel.php:241
426
- msgid "Uploaded file is not allowed file type"
427
- msgstr "Augšupielādētais fails ir neatļautais faila veids"
428
-
429
- #: contact-form-7/includes/admin-panel.php:245
430
- msgid "Uploaded file is too large"
431
- msgstr "Augšupielādētais fails ir pārāk liels"
432
-
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
languages/wpcf7-ml_IN.po DELETED
@@ -1,813 +0,0 @@
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-nb_NO.po DELETED
@@ -1,266 +0,0 @@
1
- msgid ""
2
- msgstr ""
3
- "Project-Id-Version: Contact Form 7\n"
4
- "POT-Creation-Date: \n"
5
- "PO-Revision-Date: 2007-10-25 10:57+0900\n"
6
- "Last-Translator: Takayuki Miyoshi <takayukister@gmail.com>\n"
7
- "Language-Team: Kjetil M. Bergem\n"
8
- "MIME-Version: 1.0\n"
9
- "Content-Type: text/plain; charset=utf-8\n"
10
- "Content-Transfer-Encoding: 8bit\n"
11
- "X-Poedit-SourceCharset: utf-8\n"
12
- "X-Poedit-KeywordsList: __;_e\n"
13
- "X-Poedit-Basepath: ../..\n"
14
- "X-Poedit-Language: Norwegian Bokmal\n"
15
- "X-Poedit-Country: NORWAY\n"
16
- "X-Poedit-SearchPath-0: contact-form-7\n"
17
-
18
- #: contact-form-7/wp-contact-form-7.php:238
19
- msgid "Contact form"
20
- msgstr "Kontaktskjema"
21
-
22
- #: contact-form-7/wp-contact-form-7.php:323
23
- #: contact-form-7/includes/admin-panel.php:5
24
- msgid "Contact Form 7"
25
- msgstr "Kontaktskjema 7"
26
-
27
- #: contact-form-7/wp-contact-form-7.php:339
28
- msgid "optional"
29
- msgstr "valgfri"
30
-
31
- #: contact-form-7/wp-contact-form-7.php:340
32
- msgid "Generate Tag"
33
- msgstr "Lag stikkord"
34
-
35
- #: contact-form-7/wp-contact-form-7.php:341
36
- msgid "Text field"
37
- msgstr "Tekstfelt"
38
-
39
- #: contact-form-7/wp-contact-form-7.php:342
40
- msgid "Email field"
41
- msgstr "Epostfelt"
42
-
43
- #: contact-form-7/wp-contact-form-7.php:343
44
- msgid "Text area"
45
- msgstr "Tekstboks"
46
-
47
- #: contact-form-7/wp-contact-form-7.php:344
48
- msgid "Drop-down menu"
49
- msgstr "Gardinvalg meny"
50
-
51
- #: contact-form-7/wp-contact-form-7.php:345
52
- msgid "CAPTCHA"
53
- msgstr "CAPTCHA"
54
-
55
- #: contact-form-7/wp-contact-form-7.php:346
56
- msgid "Submit button"
57
- msgstr "Send knapp"
58
-
59
- #: contact-form-7/wp-contact-form-7.php:347
60
- msgid "Name"
61
- msgstr "Navn"
62
-
63
- #: contact-form-7/wp-contact-form-7.php:348
64
- msgid "Required field?"
65
- msgstr "N¿dvendige felt?"
66
-
67
- #: contact-form-7/wp-contact-form-7.php:349
68
- msgid "Choices"
69
- msgstr "Valg"
70
-
71
- #: contact-form-7/wp-contact-form-7.php:350
72
- msgid "Label"
73
- msgstr "Merknad"
74
-
75
- #: contact-form-7/wp-contact-form-7.php:351
76
- msgid "Default value"
77
- msgstr "Standardvalg"
78
-
79
- #: contact-form-7/wp-contact-form-7.php:352
80
- msgid "Akismet"
81
- msgstr "Akismet"
82
-
83
- #: contact-form-7/wp-contact-form-7.php:353
84
- msgid "This field requires author's name"
85
- msgstr "Personen mΠskrive inn sitt navn"
86
-
87
- #: contact-form-7/wp-contact-form-7.php:354
88
- msgid "This field requires author's URL"
89
- msgstr "Personen mΠskrive inn sin nettsideadresse"
90
-
91
- #: contact-form-7/wp-contact-form-7.php:355
92
- msgid "This field requires author's email address"
93
- msgstr "Personen mΠskrive inn sin epostadresse"
94
-
95
- #: contact-form-7/wp-contact-form-7.php:356
96
- msgid "Copy and paste this code into the form"
97
- msgstr "Kopier og lim inn denne koden i skjemaet"
98
-
99
- #: contact-form-7/wp-contact-form-7.php:357
100
- msgid "Foreground color"
101
- msgstr "Forgrunnsfarge"
102
-
103
- #: contact-form-7/wp-contact-form-7.php:358
104
- msgid "Background color"
105
- msgstr "Bakgrunnsfarge"
106
-
107
- #: contact-form-7/wp-contact-form-7.php:359
108
- msgid "Image size"
109
- msgstr "Bildest¿rrelse"
110
-
111
- #: contact-form-7/wp-contact-form-7.php:360
112
- msgid "Small"
113
- msgstr "Liten"
114
-
115
- #: contact-form-7/wp-contact-form-7.php:361
116
- msgid "Medium"
117
- msgstr "Medium"
118
-
119
- #: contact-form-7/wp-contact-form-7.php:362
120
- msgid "Large"
121
- msgstr "Stor"
122
-
123
- #: contact-form-7/wp-contact-form-7.php:363
124
- msgid "Image settings"
125
- msgstr "Bildeinnstillinger"
126
-
127
- #: contact-form-7/wp-contact-form-7.php:364
128
- msgid "Input field settings"
129
- msgstr "Innstillinger til skjemafeltet"
130
-
131
- #: contact-form-7/wp-contact-form-7.php:365
132
- msgid "For image"
133
- msgstr "For bildet"
134
-
135
- #: contact-form-7/wp-contact-form-7.php:366
136
- msgid "For input field"
137
- msgstr "For skjemafeltet"
138
-
139
- #: contact-form-7/wp-contact-form-7.php:367
140
- msgid "* One choice per line."
141
- msgstr "* Ett valg per linje."
142
-
143
- #: contact-form-7/wp-contact-form-7.php:386
144
- msgid "Contact form created."
145
- msgstr "Kontaktskjemaet ble laget."
146
-
147
- #: contact-form-7/wp-contact-form-7.php:389
148
- msgid "Contact form saved."
149
- msgstr "Kontaktskjemaet ble lagret."
150
-
151
- #: contact-form-7/wp-contact-form-7.php:392
152
- msgid "Contact form deleted."
153
- msgstr "Kontaktskjemaet ble slettet."
154
-
155
- #: contact-form-7/wp-contact-form-7.php:399
156
- msgid "Untitled"
157
- msgstr "Uten tittel"
158
-
159
- #: contact-form-7/wp-contact-form-7.php:423
160
- msgid "Your Name"
161
- msgstr "Ditt navn"
162
-
163
- #: contact-form-7/wp-contact-form-7.php:423
164
- #: contact-form-7/wp-contact-form-7.php:425
165
- msgid "(required)"
166
- msgstr "(n¿dvendig)"
167
-
168
- #: contact-form-7/wp-contact-form-7.php:425
169
- msgid "Your Email"
170
- msgstr "Din epost"
171
-
172
- #: contact-form-7/wp-contact-form-7.php:427
173
- msgid "Subject"
174
- msgstr "Emne"
175
-
176
- #: contact-form-7/wp-contact-form-7.php:429
177
- msgid "Your Message"
178
- msgstr "Din beskjed"
179
-
180
- #: contact-form-7/wp-contact-form-7.php:431
181
- #: contact-form-7/wp-contact-form-7.php:813
182
- msgid "Send"
183
- msgstr "Send"
184
-
185
- #: contact-form-7/wp-contact-form-7.php:460
186
- msgid "Your message was sent successfully. Thanks."
187
- msgstr "Din beskjed ble sent. Takk skal du ha."
188
-
189
- #: contact-form-7/wp-contact-form-7.php:462
190
- msgid "Failed to send your message. Please try later or contact administrator by other way."
191
- msgstr "Beskjeden ble ikke sent. Pr¿v igjen senere eller kontakt administratorer pŒ en annen mŒte. "
192
-
193
- #: contact-form-7/wp-contact-form-7.php:464
194
- msgid "Validation errors occurred. Please confirm the fields and submit it again."
195
- msgstr "Flere skjemafeil ble oppdaget. Vennligst fyll inn feltene og pr¿v Œ sende igjen."
196
-
197
- #: contact-form-7/wp-contact-form-7.php:466
198
- msgid "Email address seems invalid."
199
- msgstr "Epostadressen virket ugyldig."
200
-
201
- #: contact-form-7/wp-contact-form-7.php:468
202
- msgid "Please fill the required field."
203
- msgstr "Vennligst fyll inn de n¿dvendige feltene."
204
-
205
- #: contact-form-7/wp-contact-form-7.php:470
206
- msgid "Your entered code is incorrect."
207
- msgstr "Koden du skrev inn var ikke riktig."
208
-
209
- #: contact-form-7/includes/admin-panel.php:15
210
- msgid "Add new"
211
- msgstr "Legg til ny"
212
-
213
- #: contact-form-7/includes/admin-panel.php:28
214
- msgid "Copy and paste this code into your post content."
215
- msgstr "Kopier og lim inn denne koden i innholdsfeltet i posten din."
216
-
217
- #: contact-form-7/includes/admin-panel.php:33
218
- msgid "Form"
219
- msgstr "Skjema"
220
-
221
- #: contact-form-7/includes/admin-panel.php:37
222
- msgid "Mail"
223
- msgstr "Epost"
224
-
225
- #: contact-form-7/includes/admin-panel.php:39
226
- #: contact-form-7/includes/admin-panel.php:60
227
- msgid "To:"
228
- msgstr "Til:"
229
-
230
- #: contact-form-7/includes/admin-panel.php:43
231
- #: contact-form-7/includes/admin-panel.php:64
232
- msgid "From:"
233
- msgstr "Fra:"
234
-
235
- #: contact-form-7/includes/admin-panel.php:47
236
- #: contact-form-7/includes/admin-panel.php:68
237
- msgid "Subject:"
238
- msgstr "Emne:"
239
-
240
- #: contact-form-7/includes/admin-panel.php:51
241
- #: contact-form-7/includes/admin-panel.php:72
242
- msgid "Message body:"
243
- msgstr "Beskjed:"
244
-
245
- #: contact-form-7/includes/admin-panel.php:56
246
- msgid "Mail (2)"
247
- msgstr "Epost (2)"
248
-
249
- #: contact-form-7/includes/admin-panel.php:58
250
- msgid "Use mail (2)"
251
- msgstr "Bruk epost (2)"
252
-
253
- #: contact-form-7/includes/admin-panel.php:80
254
- msgid "Save"
255
- msgstr "Lagre"
256
-
257
- #: contact-form-7/includes/admin-panel.php:86
258
- msgid "Delete this contact form"
259
- msgstr "Slett dette kontaktskjemaet"
260
-
261
- #: contact-form-7/includes/admin-panel.php:87
262
- msgid ""
263
- "You are about to delete this contact form.\n"
264
- " 'Cancel' to stop, 'OK' to delete."
265
- msgstr "Du holder pΠΠslette dette kontaktskjemaet. Trykk 'Avbryt' for Πstoppe, 'OK' for Πslette."
266
-
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
languages/wpcf7-nl_NL.po DELETED
@@ -1,469 +0,0 @@
1
- msgid ""
2
- msgstr ""
3
- "Project-Id-Version: Contact Form 7 Nederlandse vertaling\n"
4
- "Report-Msgid-Bugs-To: \n"
5
- "POT-Creation-Date: 2009-05-31 23:05+0900\n"
6
- "PO-Revision-Date: \n"
7
- "Last-Translator: Martin Hein <martin@split-a-pixel.nl>\n"
8
- "Language-Team: Martin Hein <martin@split-a-pixel.nl>\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: Dutch\n"
13
- "X-Poedit-Country: Netherlands\n"
14
- "X-Poedit-SourceCharset: utf-8\n"
15
- "X-Poedit-KeywordsList: __\n"
16
-
17
- #: contact-form-7/wp-contact-form-7.php:373
18
- msgid "Contact form"
19
- msgstr "Contactformulier"
20
-
21
- #: contact-form-7/admin/admin-panel.php:6
22
- #: contact-form-7/admin/admin.php:111
23
- msgid "Contact Form 7"
24
- msgstr "Contact Form 7"
25
-
26
- #: contact-form-7/admin/admin-panel.php:21
27
- msgid "Add new"
28
- msgstr "Nieuwe toevoegen"
29
-
30
- #: contact-form-7/admin/admin-panel.php:43
31
- msgid "Copy this code and paste it into your post, page or text widget content."
32
- msgstr "Kopieer deze code en plak hem in de inhoud van je bericht, pagina of widget."
33
-
34
- #: contact-form-7/admin/admin-panel.php:50
35
- #: contact-form-7/admin/admin-panel.php:290
36
- msgid "Save"
37
- msgstr "Opslaan"
38
-
39
- #: contact-form-7/admin/admin-panel.php:57
40
- msgid "Copy"
41
- msgstr "Kopieren"
42
-
43
- #: contact-form-7/admin/admin-panel.php:61
44
- msgid "Delete"
45
- msgstr "Verwijderen"
46
-
47
- #: contact-form-7/admin/admin-panel.php:63
48
- msgid ""
49
- "You are about to delete this contact form.\n"
50
- " 'Cancel' to stop, 'OK' to delete."
51
- msgstr ""
52
- "Je staat op het punt dit contactformulier te verwijderen.\n"
53
- " 'Cancel' om te stoppen, 'OK' om te verwijderen."
54
-
55
- #: contact-form-7/admin/admin-panel.php:78
56
- msgid "Form"
57
- msgstr "Formulier"
58
-
59
- #: contact-form-7/admin/admin-panel.php:98
60
- msgid "Mail"
61
- msgstr "Mail"
62
-
63
- #: contact-form-7/admin/admin-panel.php:105
64
- #: contact-form-7/admin/admin-panel.php:161
65
- msgid "To:"
66
- msgstr "Aan:"
67
-
68
- #: contact-form-7/admin/admin-panel.php:109
69
- #: contact-form-7/admin/admin-panel.php:165
70
- msgid "From:"
71
- msgstr "Van:"
72
-
73
- #: contact-form-7/admin/admin-panel.php:113
74
- #: contact-form-7/admin/admin-panel.php:169
75
- msgid "Subject:"
76
- msgstr "Onderwerp:"
77
-
78
- #: contact-form-7/admin/admin-panel.php:118
79
- #: contact-form-7/admin/admin-panel.php:174
80
- msgid "Additional headers:"
81
- msgstr "Aanvullende headers:"
82
-
83
- #: contact-form-7/admin/admin-panel.php:122
84
- #: contact-form-7/admin/admin-panel.php:178
85
- msgid "File attachments:"
86
- msgstr "Bestandsbijlages:"
87
-
88
- #: contact-form-7/admin/admin-panel.php:124
89
- #: contact-form-7/admin/admin-panel.php:180
90
- msgid "(You need WordPress 2.7 or greater to use this feature)"
91
- msgstr "(Je hebt Wordpress 2.7 of nieuwer nodig om dit gereedschap te gebruiken)"
92
-
93
- #: contact-form-7/admin/admin-panel.php:132
94
- #: contact-form-7/admin/admin-panel.php:188
95
- msgid "Use HTML content type"
96
- msgstr "HTML indeling gebruiken"
97
-
98
- #: contact-form-7/admin/admin-panel.php:137
99
- #: contact-form-7/admin/admin-panel.php:193
100
- msgid "Message body:"
101
- msgstr "Berichttekst:"
102
-
103
- #: contact-form-7/admin/admin-panel.php:148
104
- msgid "Mail (2)"
105
- msgstr "Mail (2)"
106
-
107
- #: contact-form-7/admin/admin-panel.php:155
108
- msgid "Use mail (2)"
109
- msgstr "Mail gebruiken (2)"
110
-
111
- #: contact-form-7/admin/admin-panel.php:204
112
- msgid "Messages"
113
- msgstr "Berichten"
114
-
115
- #: contact-form-7/admin/admin-panel.php:212
116
- msgid "Sender's message was sent successfully"
117
- msgstr "Het te zenden bericht werd succesvol verstuurd"
118
-
119
- #: contact-form-7/admin/admin-panel.php:216
120
- msgid "Sender's message was failed to send"
121
- msgstr "Het bericht kon niet worden verstuurd"
122
-
123
- #: contact-form-7/admin/admin-panel.php:220
124
- msgid "Akismet judged the sending activity as spamming"
125
- msgstr "Aksimet heeft de verzendactiviteit als spam beoordeeld"
126
-
127
- #: contact-form-7/admin/admin-panel.php:224
128
- msgid "Validation errors occurred"
129
- msgstr "Validatiefout opgetreden"
130
-
131
- #: contact-form-7/admin/admin-panel.php:228
132
- msgid "There is a field that sender is needed to fill in"
133
- msgstr "Er is een veld dat door de verzender moet worden ingevuld"
134
-
135
- #: contact-form-7/admin/admin-panel.php:232
136
- msgid "Email address that sender entered is invalid"
137
- msgstr "Het ingevulde email adres is ongeldig"
138
-
139
- #: contact-form-7/admin/admin-panel.php:236
140
- msgid "There is a field of term that sender is needed to accept"
141
- msgstr "Er is een voorwaardenveld dat moet worden geaccepteerd"
142
-
143
- #: contact-form-7/admin/admin-panel.php:240
144
- msgid "Sender doesn't enter the correct answer to the quiz"
145
- msgstr "Er is geen juist antwoord voor de quiz ingevuld"
146
-
147
- #: contact-form-7/admin/admin-panel.php:244
148
- msgid "The code that sender entered does not match the CAPTCHA"
149
- msgstr "De ingevulde verificatiecode komt niet overeen met de CAPTCHA"
150
-
151
- #: contact-form-7/admin/admin-panel.php:248
152
- msgid "Uploading a file fails for any reason"
153
- msgstr "Het uploaden van het bestand is mislukt"
154
-
155
- #: contact-form-7/admin/admin-panel.php:252
156
- msgid "Uploaded file is not allowed file type"
157
- msgstr "Het up te loaden bestand heeft een ongeldige extensie"
158
-
159
- #: contact-form-7/admin/admin-panel.php:256
160
- msgid "Uploaded file is too large"
161
- msgstr "Het up te loaden bestand is te groot"
162
-
163
- #: contact-form-7/admin/admin-panel.php:269
164
- msgid "Additional Settings"
165
- msgstr "Aanvullende instellingen"
166
-
167
- #: contact-form-7/admin/admin.php:157
168
- msgid "optional"
169
- msgstr "optioneel"
170
-
171
- #: contact-form-7/admin/admin.php:158
172
- msgid "Generate Tag"
173
- msgstr "Tag aanmaken"
174
-
175
- #: contact-form-7/admin/admin.php:159
176
- msgid "Text field"
177
- msgstr "Tekstveld"
178
-
179
- #: contact-form-7/admin/admin.php:160
180
- msgid "Email field"
181
- msgstr "Email veld"
182
-
183
- #: contact-form-7/admin/admin.php:161
184
- msgid "Text area"
185
- msgstr "Tekstgebied"
186
-
187
- #: contact-form-7/admin/admin.php:162
188
- msgid "Drop-down menu"
189
- msgstr "Keuzemenu"
190
-
191
- #: contact-form-7/admin/admin.php:163
192
- msgid "Checkboxes"
193
- msgstr "Keuzevakjes"
194
-
195
- #: contact-form-7/admin/admin.php:164
196
- msgid "Radio buttons"
197
- msgstr "Keuzerondjes"
198
-
199
- #: contact-form-7/admin/admin.php:165
200
- msgid "Acceptance"
201
- msgstr "Acceptatie"
202
-
203
- #: contact-form-7/admin/admin.php:166
204
- msgid "Make this checkbox checked by default?"
205
- msgstr "Aanvinkvakje standaard aanvinken?"
206
-
207
- #: contact-form-7/admin/admin.php:167
208
- msgid "Make this checkbox work inversely?"
209
- msgstr "Aanvinkvakje omgekeerd laten werken?"
210
-
211
- #: contact-form-7/admin/admin.php:168
212
- msgid "* That means visitor who accepts the term unchecks it."
213
- msgstr "* Dit betekent dat de bezoeker het vakje moet uitvinken om de voorwaarden te accepteren."
214
-
215
- #: contact-form-7/admin/admin.php:169
216
- msgid "CAPTCHA"
217
- msgstr "CAPTCHA"
218
-
219
- #: contact-form-7/admin/admin.php:170
220
- msgid "Quiz"
221
- msgstr "Kwis"
222
-
223
- #: contact-form-7/admin/admin.php:171
224
- msgid "Quizzes"
225
- msgstr "Kwissen"
226
-
227
- #: contact-form-7/admin/admin.php:172
228
- msgid "* quiz|answer (e.g. 1+1=?|2)"
229
- msgstr "* quiz|antwoord (bijv. 1+1=?|2)"
230
-
231
- #: contact-form-7/admin/admin.php:173
232
- msgid "File upload"
233
- msgstr "Upload bestand"
234
-
235
- #: contact-form-7/admin/admin.php:174
236
- msgid "bytes"
237
- msgstr "bytes"
238
-
239
- #: contact-form-7/admin/admin.php:175
240
- msgid "Submit button"
241
- msgstr "Verzendknop"
242
-
243
- #: contact-form-7/admin/admin.php:176
244
- msgid "Name"
245
- msgstr "Naam"
246
-
247
- #: contact-form-7/admin/admin.php:177
248
- msgid "Required field?"
249
- msgstr "Verplicht veld?"
250
-
251
- #: contact-form-7/admin/admin.php:178
252
- msgid "Allow multiple selections?"
253
- msgstr "Meerdere selecties toestaan?"
254
-
255
- #: contact-form-7/admin/admin.php:179
256
- msgid "Insert a blank item as the first option?"
257
- msgstr "Een leeg item als eerste optie invoegen?"
258
-
259
- #: contact-form-7/admin/admin.php:180
260
- msgid "Make checkboxes exclusive?"
261
- msgstr "Keuzevakjes exclusief maken?"
262
-
263
- #: contact-form-7/admin/admin.php:181
264
- msgid "Choices"
265
- msgstr "Keuzes"
266
-
267
- #: contact-form-7/admin/admin.php:182
268
- msgid "Label"
269
- msgstr "Label"
270
-
271
- #: contact-form-7/admin/admin.php:183
272
- msgid "Default value"
273
- msgstr "Standaard waarde"
274
-
275
- #: contact-form-7/admin/admin.php:184
276
- msgid "Akismet"
277
- msgstr "Akismet"
278
-
279
- #: contact-form-7/admin/admin.php:185
280
- msgid "This field requires author's name"
281
- msgstr "Dti veld vereist de naam van de auteur"
282
-
283
- #: contact-form-7/admin/admin.php:186
284
- msgid "This field requires author's URL"
285
- msgstr "Dit veld vereist de URL van de auteur"
286
-
287
- #: contact-form-7/admin/admin.php:187
288
- msgid "This field requires author's email address"
289
- msgstr "Voor dit veld is het email adres vereist"
290
-
291
- #: contact-form-7/admin/admin.php:188
292
- msgid "Copy this code and paste it into the form left."
293
- msgstr "Kopieer deze code en plak hem in het formulier aan de linkerzijde."
294
-
295
- #: contact-form-7/admin/admin.php:189
296
- msgid "Foreground color"
297
- msgstr "Voorgrond kleur"
298
-
299
- #: contact-form-7/admin/admin.php:190
300
- msgid "Background color"
301
- msgstr "Achtergrondkleur"
302
-
303
- #: contact-form-7/admin/admin.php:191
304
- msgid "Image size"
305
- msgstr "Grootte afbeelding"
306
-
307
- #: contact-form-7/admin/admin.php:192
308
- msgid "Small"
309
- msgstr "Klein"
310
-
311
- #: contact-form-7/admin/admin.php:193
312
- msgid "Medium"
313
- msgstr "Gemiddeld"
314
-
315
- #: contact-form-7/admin/admin.php:194
316
- msgid "Large"
317
- msgstr "Groot"
318
-
319
- #: contact-form-7/admin/admin.php:195
320
- msgid "Image settings"
321
- msgstr "Instellingen afbeelding"
322
-
323
- #: contact-form-7/admin/admin.php:196
324
- msgid "Input field settings"
325
- msgstr "Instellingen invulveld"
326
-
327
- #: contact-form-7/admin/admin.php:197
328
- msgid "For image"
329
- msgstr "Voor afbeelding"
330
-
331
- #: contact-form-7/admin/admin.php:198
332
- msgid "For input field"
333
- msgstr "Voor invulveld"
334
-
335
- #: contact-form-7/admin/admin.php:199
336
- msgid "* One choice per line."
337
- msgstr "* Eén keuze per regel"
338
-
339
- #: contact-form-7/admin/admin.php:200
340
- msgid "Show"
341
- msgstr "Laten zien"
342
-
343
- #: contact-form-7/admin/admin.php:201
344
- msgid "Hide"
345
- msgstr "Verbergen"
346
-
347
- #: contact-form-7/admin/admin.php:202
348
- msgid "File size limit"
349
- msgstr "Maximale bestandsgrootte"
350
-
351
- #: contact-form-7/admin/admin.php:203
352
- msgid "Acceptable file types"
353
- msgstr "Toegelaten bestandstypes"
354
-
355
- #: contact-form-7/admin/admin.php:204
356
- msgid "Note: To use CAPTCHA, you need Really Simple CAPTCHA plugin installed."
357
- msgstr "Let op: Om CAPTCHA te gebruiken moet de Really Simple CAPTCHA plugin geinstalleerd zijn."
358
-
359
- #: contact-form-7/admin/admin.php:223
360
- msgid "Contact form created."
361
- msgstr "Contactformulier aangemaakt."
362
-
363
- #: contact-form-7/admin/admin.php:226
364
- msgid "Contact form saved."
365
- msgstr "Contactformulier opgeslagen."
366
-
367
- #: contact-form-7/admin/admin.php:229
368
- msgid "Contact form deleted."
369
- msgstr "Contactformulier verwijderd."
370
-
371
- #: contact-form-7/admin/admin.php:240
372
- msgid "Untitled"
373
- msgstr "Zonder titel."
374
-
375
- #: contact-form-7/admin/admin.php:253
376
- msgid "Your Name"
377
- msgstr "Uw naam"
378
-
379
- #: contact-form-7/admin/admin.php:253
380
- #: contact-form-7/admin/admin.php:255
381
- msgid "(required)"
382
- msgstr "(verplicht)"
383
-
384
- #: contact-form-7/admin/admin.php:255
385
- msgid "Your Email"
386
- msgstr "Uw email"
387
-
388
- #: contact-form-7/admin/admin.php:257
389
- msgid "Subject"
390
- msgstr "Onderwerp"
391
-
392
- #: contact-form-7/admin/admin.php:259
393
- msgid "Your Message"
394
- msgstr "Uw bericht"
395
-
396
- #: contact-form-7/admin/admin.php:261
397
- #: contact-form-7/includes/classes.php:411
398
- msgid "Send"
399
- msgstr "Verzenden"
400
-
401
- #: contact-form-7/admin/admin.php:334
402
- msgid "Settings"
403
- msgstr "Instellingen"
404
-
405
- #: contact-form-7/admin/admin.php:355
406
- msgid "Contact Form 7 needs your support. Please donate today."
407
- msgstr "Contact Form 7 heeft jouw steun nodig. Doneer vandaag nog."
408
-
409
- #: contact-form-7/admin/admin.php:356
410
- msgid "Is this plugin useful for you? If you like it, please help the developer."
411
- msgstr "Komt deze plugin jou van pas? Help de ontwikkelaar."
412
-
413
- #: contact-form-7/admin/admin.php:357
414
- msgid "Your contribution is needed for making this plugin better."
415
- msgstr "Jouw bijdrage is nodig voor het verbeteren van deze plugin."
416
-
417
- #: contact-form-7/admin/admin.php:358
418
- msgid "Developing a plugin and providing user support is really hard work. Please help."
419
- msgstr "Het ontwikkelen van een plugin en leveren van ondersteuning is veel werk. Help mee."
420
-
421
- #: contact-form-7/includes/classes.php:352
422
- msgid "To use CAPTCHA, you need <a href=\"http://wordpress.org/extend/plugins/really-simple-captcha/\">Really Simple CAPTCHA</a> plugin installed."
423
- msgstr "Om CAPTCHA te gebruiken moet je de <a href=\"http://wordpress.org/extend/plugins/really-simple-captcha/\">Really Simple CAPTCHA</a> plugin geinstalleerd hebben."
424
-
425
- #: contact-form-7/includes/functions.php:6
426
- msgid "Your message was sent successfully. Thanks."
427
- msgstr "Uw bericht werd succesvol verzonden."
428
-
429
- #: contact-form-7/includes/functions.php:8
430
- #: contact-form-7/includes/functions.php:10
431
- msgid "Failed to send your message. Please try later or contact administrator by other way."
432
- msgstr "Het is niet gelukt uw bericht te verzenden. Probeer het later nog een keer of neem op een andere manier contact op."
433
-
434
- #: contact-form-7/includes/functions.php:12
435
- msgid "Validation errors occurred. Please confirm the fields and submit it again."
436
- msgstr "Validatiefouten opgetreden. Controleer de velden en druk nogmaals op verzend."
437
-
438
- #: contact-form-7/includes/functions.php:14
439
- msgid "Please accept the terms to proceed."
440
- msgstr "Aanvaard de voorwaarden om door te gaan."
441
-
442
- #: contact-form-7/includes/functions.php:16
443
- msgid "Email address seems invalid."
444
- msgstr "Het email adres lijkt ongeldig te zijn."
445
-
446
- #: contact-form-7/includes/functions.php:18
447
- msgid "Please fill the required field."
448
- msgstr "Vul aub het verplichte veld in."
449
-
450
- #: contact-form-7/includes/functions.php:20
451
- msgid "Your entered code is incorrect."
452
- msgstr "De ingevulde code is onjuist."
453
-
454
- #: contact-form-7/includes/functions.php:22
455
- msgid "Your answer is not correct."
456
- msgstr "Uw antwoord is niet juist."
457
-
458
- #: contact-form-7/includes/functions.php:24
459
- msgid "Failed to upload file."
460
- msgstr "Uploaden van het bestand mislukt"
461
-
462
- #: contact-form-7/includes/functions.php:26
463
- msgid "This file type is not allowed."
464
- msgstr "Dit bestandstype is niet toegestaan"
465
-
466
- #: contact-form-7/includes/functions.php:28
467
- msgid "This file is too large."
468
- msgstr "Dit bestand is te groot"
469
-
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
languages/wpcf7-pl_PL.po DELETED
@@ -1,500 +0,0 @@
1
- # translation of wpcf7.po to Polish
2
- # Zbigniew Czernik <czernik@tlen.pl>, 2007.
3
- msgid ""
4
- msgstr ""
5
- "Project-Id-Version: wpcf7\n"
6
- "Report-Msgid-Bugs-To: \n"
7
- "POT-Creation-Date: 2009-08-01 06:43+0900\n"
8
- "PO-Revision-Date: 2009-08-24 13:40+0100\n"
9
- "Last-Translator: Daniel Frużyński <daniel [A-T] poradnik-webmastera.com>\n"
10
- "Language-Team: Polish <pl@li.org>\n"
11
- "MIME-Version: 1.0\n"
12
- "Content-Type: text/plain; charset=UTF-8\n"
13
- "Content-Transfer-Encoding: 8bit\n"
14
- "X-Poedit-SourceCharset: utf-8\n"
15
- "X-Poedit-KeywordsList: __;_e\n"
16
- "X-Poedit-Basepath: ../..\n"
17
- "X-Generator: KBabel 1.11.4\n"
18
- "X-Poedit-SearchPath-0: contact-form-7\n"
19
-
20
- #: contact-form-7/admin/admin-panel.php:9
21
- #, php-format
22
- 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."
23
- msgstr "<strong>Tabela w bazie danych dla pluginu Contact Form 7 nie istnieje.</strong> Musisz <a href=\"%s\">utworzyć tabelę</a> aby mógł on pracować."
24
-
25
- #: contact-form-7/admin/admin-panel.php:12
26
- msgid "<strong>The database table for Contact Form 7 does not exist.</strong>"
27
- msgstr "<strong>Tabela w bazie danych dla pluginu Contact Form 7 nie istnieje.</strong>"
28
-
29
- #: contact-form-7/admin/admin-panel.php:17
30
- #: contact-form-7/admin/admin-panel.php:30
31
- #: contact-form-7/admin/admin.php:118
32
- msgid "Contact Form 7"
33
- msgstr "Contact Form 7"
34
-
35
- #: contact-form-7/admin/admin-panel.php:45
36
- msgid "Add new"
37
- msgstr "Dodaj nowy"
38
-
39
- #: contact-form-7/admin/admin-panel.php:67
40
- msgid "Copy this code and paste it into your post, page or text widget content."
41
- msgstr "Skopiuj i wklej ten kod w treści posta, strony lub widgetu Tekst."
42
-
43
- #: contact-form-7/admin/admin-panel.php:75
44
- #: contact-form-7/admin/admin-panel.php:327
45
- msgid "Save"
46
- msgstr "Zapisz"
47
-
48
- #: contact-form-7/admin/admin-panel.php:82
49
- msgid "Copy"
50
- msgstr "Kopiuj"
51
-
52
- #: contact-form-7/admin/admin-panel.php:87
53
- msgid "Delete"
54
- msgstr "Usuń"
55
-
56
- #: contact-form-7/admin/admin-panel.php:89
57
- msgid ""
58
- "You are about to delete this contact form.\n"
59
- " 'Cancel' to stop, 'OK' to delete."
60
- msgstr ""
61
- "Wybrałeś usunięcie tego formularza.\n"
62
- " 'Cancel' aby anulować, 'OK' aby usunąć."
63
-
64
- #: contact-form-7/admin/admin-panel.php:102
65
- msgid "Form"
66
- msgstr "Formularz"
67
-
68
- #: contact-form-7/admin/admin-panel.php:120
69
- msgid "Mail"
70
- msgstr "E-mail"
71
-
72
- #: contact-form-7/admin/admin-panel.php:127
73
- #: contact-form-7/admin/admin-panel.php:188
74
- msgid "To:"
75
- msgstr "Do:"
76
-
77
- #: contact-form-7/admin/admin-panel.php:132
78
- #: contact-form-7/admin/admin-panel.php:193
79
- msgid "From:"
80
- msgstr "Od:"
81
-
82
- #: contact-form-7/admin/admin-panel.php:137
83
- #: contact-form-7/admin/admin-panel.php:198
84
- msgid "Subject:"
85
- msgstr "Temat:"
86
-
87
- #: contact-form-7/admin/admin-panel.php:144
88
- #: contact-form-7/admin/admin-panel.php:205
89
- msgid "Additional headers:"
90
- msgstr "Dodatkowe nagłówki:"
91
-
92
- #: contact-form-7/admin/admin-panel.php:149
93
- #: contact-form-7/admin/admin-panel.php:210
94
- msgid "File attachments:"
95
- msgstr "Załączone pliki:"
96
-
97
- #: contact-form-7/admin/admin-panel.php:157
98
- #: contact-form-7/admin/admin-panel.php:218
99
- msgid "Use HTML content type"
100
- msgstr "Użyj HTML jako typu zawartości"
101
-
102
- #: contact-form-7/admin/admin-panel.php:164
103
- #: contact-form-7/admin/admin-panel.php:225
104
- msgid "Message body:"
105
- msgstr "Treść wiadomości:"
106
-
107
- #: contact-form-7/admin/admin-panel.php:174
108
- msgid "Mail (2)"
109
- msgstr "E-mail (2)"
110
-
111
- #: contact-form-7/admin/admin-panel.php:180
112
- msgid "Use mail (2)"
113
- msgstr "Użyj adresu (2)"
114
-
115
- #: contact-form-7/admin/admin-panel.php:235
116
- msgid "Messages"
117
- msgstr "Wiadomości"
118
-
119
- #: contact-form-7/admin/admin-panel.php:243
120
- msgid "Sender's message was sent successfully"
121
- msgstr "Twoja wiadomość został wysłana pomyślnie"
122
-
123
- #: contact-form-7/admin/admin-panel.php:248
124
- msgid "Sender's message was failed to send"
125
- msgstr "Nie udało się wysłać wiadomości nadawcy"
126
-
127
- #: contact-form-7/admin/admin-panel.php:253
128
- msgid "Akismet judged the sending activity as spamming"
129
- msgstr "Akismet stwierdził że wysyłana wiadomość to SPAM"
130
-
131
- #: contact-form-7/admin/admin-panel.php:258
132
- msgid "Validation errors occurred"
133
- msgstr "Wystąpił błąd podczas sprawdzania poprawności"
134
-
135
- #: contact-form-7/admin/admin-panel.php:263
136
- msgid "There is a field that sender is needed to fill in"
137
- msgstr "Pozostały pola do wypełnienia przez nadawcę"
138
-
139
- #: contact-form-7/admin/admin-panel.php:268
140
- msgid "Email address that sender entered is invalid"
141
- msgstr "Wprowadzony adres e-mail jest niepoprawny."
142
-
143
- #: contact-form-7/admin/admin-panel.php:273
144
- msgid "There is a field of term that sender is needed to accept"
145
- msgstr "Pozostały pola lub warunki które nadawca musi zaakceptować"
146
-
147
- #: contact-form-7/admin/admin-panel.php:278
148
- msgid "Sender doesn't enter the correct answer to the quiz"
149
- msgstr "Nadawca nie wprowadził poprawnej odpowiedzi na pytanie testowe"
150
-
151
- #: contact-form-7/admin/admin-panel.php:283
152
- msgid "The code that sender entered does not match the CAPTCHA"
153
- msgstr "Kod który nadawca wprowadził nie zgadza się z CAPTCHA"
154
-
155
- #: contact-form-7/admin/admin-panel.php:288
156
- msgid "Uploading a file fails for any reason"
157
- msgstr "Wysyłanie pliku nie powiodło się"
158
-
159
- #: contact-form-7/admin/admin-panel.php:293
160
- msgid "Uploaded file is not allowed file type"
161
- msgstr "Typ wysyłanego pliku jest niedozwolony"
162
-
163
- #: contact-form-7/admin/admin-panel.php:298
164
- msgid "Uploaded file is too large"
165
- msgstr "Wysyłany plik jest zbyt duży"
166
-
167
- #: contact-form-7/admin/admin-panel.php:309
168
- msgid "Additional Settings"
169
- msgstr "Dodatkowe ustawienia"
170
-
171
- #: contact-form-7/admin/admin.php:118
172
- msgid "Contact"
173
- msgstr "Kontakt"
174
-
175
- #: contact-form-7/admin/admin.php:121
176
- msgid "Edit Contact Forms"
177
- msgstr "Edytuj formularze kontaktowe"
178
-
179
- #: contact-form-7/admin/admin.php:121
180
- msgid "Edit"
181
- msgstr "Edytuj"
182
-
183
- #: contact-form-7/admin/admin.php:168
184
- msgid "optional"
185
- msgstr "opcjonalnie"
186
-
187
- #: contact-form-7/admin/admin.php:169
188
- msgid "Generate Tag"
189
- msgstr "Generuj Tag"
190
-
191
- #: contact-form-7/admin/admin.php:170
192
- msgid "Text field"
193
- msgstr "Pole tekstowe"
194
-
195
- #: contact-form-7/admin/admin.php:171
196
- msgid "Email field"
197
- msgstr "Email field"
198
-
199
- #: contact-form-7/admin/admin.php:172
200
- msgid "Text area"
201
- msgstr "Wieloliniowe pole tekstowe"
202
-
203
- #: contact-form-7/admin/admin.php:173
204
- msgid "Drop-down menu"
205
- msgstr "Menu rozwijalne"
206
-
207
- #: contact-form-7/admin/admin.php:174
208
- msgid "Checkboxes"
209
- msgstr "Pola wyboru"
210
-
211
- #: contact-form-7/admin/admin.php:175
212
- msgid "Radio buttons"
213
- msgstr "Pola jednokrotnego wyboru"
214
-
215
- #: contact-form-7/admin/admin.php:176
216
- msgid "Acceptance"
217
- msgstr "Potwierdzenie"
218
-
219
- #: contact-form-7/admin/admin.php:177
220
- msgid "Make this checkbox checked by default?"
221
- msgstr "Zaznacz domyślnie to pole wyboru?"
222
-
223
- #: contact-form-7/admin/admin.php:178
224
- msgid "Make this checkbox work inversely?"
225
- msgstr "Pole powinno działać odwrotnie?"
226
-
227
- #: contact-form-7/admin/admin.php:179
228
- msgid "* That means visitor who accepts the term unchecks it."
229
- msgstr "* To oznacza że osoba akceptująca warunki musi je odznaczyć."
230
-
231
- #: contact-form-7/admin/admin.php:180
232
- msgid "CAPTCHA"
233
- msgstr "CAPTCHA"
234
-
235
- #: contact-form-7/admin/admin.php:181
236
- msgid "Quiz"
237
- msgstr "Pytanie testowe"
238
-
239
- #: contact-form-7/admin/admin.php:182
240
- msgid "Quizzes"
241
- msgstr "Pytania testowe"
242
-
243
- #: contact-form-7/admin/admin.php:183
244
- msgid "* quiz|answer (e.g. 1+1=?|2)"
245
- msgstr "* pytanie|odpowiedź (np. 1+1=?|2)"
246
-
247
- #: contact-form-7/admin/admin.php:184
248
- msgid "File upload"
249
- msgstr "Wysyłanie pliku"
250
-
251
- #: contact-form-7/admin/admin.php:185
252
- msgid "bytes"
253
- msgstr "bajty/ów"
254
-
255
- #: contact-form-7/admin/admin.php:186
256
- msgid "Submit button"
257
- msgstr "Przycisk wysyłania"
258
-
259
- #: contact-form-7/admin/admin.php:187
260
- msgid "Name"
261
- msgstr "Imię"
262
-
263
- #: contact-form-7/admin/admin.php:188
264
- msgid "Required field?"
265
- msgstr "Pole wymagane?"
266
-
267
- #: contact-form-7/admin/admin.php:189
268
- msgid "Allow multiple selections?"
269
- msgstr "Zezwalaj na wiele sekcji?"
270
-
271
- #: contact-form-7/admin/admin.php:190
272
- msgid "Insert a blank item as the first option?"
273
- msgstr "Wstaw pusty element jako pierwszą opcję?"
274
-
275
- #: contact-form-7/admin/admin.php:191
276
- msgid "Make checkboxes exclusive?"
277
- msgstr "Pola wyboru powinny być niezależne?"
278
-
279
- #: contact-form-7/admin/admin.php:192
280
- msgid "Choices"
281
- msgstr "Wybór"
282
-
283
- #: contact-form-7/admin/admin.php:193
284
- msgid "Label"
285
- msgstr "Etykieta"
286
-
287
- #: contact-form-7/admin/admin.php:194
288
- msgid "Default value"
289
- msgstr "Domyślna wartość"
290
-
291
- #: contact-form-7/admin/admin.php:195
292
- msgid "Akismet"
293
- msgstr "Akismet"
294
-
295
- #: contact-form-7/admin/admin.php:196
296
- msgid "This field requires author's name"
297
- msgstr "To pole wymaga wpisania imienia"
298
-
299
- #: contact-form-7/admin/admin.php:197
300
- msgid "This field requires author's URL"
301
- msgstr "To pole wymaga wpisania adresu URL"
302
-
303
- #: contact-form-7/admin/admin.php:198
304
- msgid "This field requires author's email address"
305
- msgstr "To pole wymaga wpisania adresu e-mail"
306
-
307
- #: contact-form-7/admin/admin.php:199
308
- msgid "Copy this code and paste it into the form left."
309
- msgstr "Skopiuj ten kod i wklej go w formularzu z lewej strony."
310
-
311
- #: contact-form-7/admin/admin.php:200
312
- msgid "Foreground color"
313
- msgstr "Kolor pierwszoplanowy"
314
-
315
- #: contact-form-7/admin/admin.php:201
316
- msgid "Background color"
317
- msgstr "Kolor tła"
318
-
319
- #: contact-form-7/admin/admin.php:202
320
- msgid "Image size"
321
- msgstr "Rozmiar obrazu"
322
-
323
- #: contact-form-7/admin/admin.php:203
324
- msgid "Small"
325
- msgstr "Mały"
326
-
327
- #: contact-form-7/admin/admin.php:204
328
- msgid "Medium"
329
- msgstr "Średni"
330
-
331
- #: contact-form-7/admin/admin.php:205
332
- msgid "Large"
333
- msgstr "Duży"
334
-
335
- #: contact-form-7/admin/admin.php:206
336
- msgid "Image settings"
337
- msgstr "Ustawienia obrazu"
338
-
339
- #: contact-form-7/admin/admin.php:207
340
- msgid "Input field settings"
341
- msgstr "Ustawienia pola input"
342
-
343
- #: contact-form-7/admin/admin.php:208
344
- msgid "For image"
345
- msgstr "Dla obrazu"
346
-
347
- #: contact-form-7/admin/admin.php:209
348
- msgid "For input field"
349
- msgstr "Dla pola input"
350
-
351
- #: contact-form-7/admin/admin.php:210
352
- msgid "* One choice per line."
353
- msgstr "* Jedna możliwość na linię"
354
-
355
- #: contact-form-7/admin/admin.php:211
356
- msgid "Show"
357
- msgstr "Pokaż"
358
-
359
- #: contact-form-7/admin/admin.php:212
360
- msgid "Hide"
361
- msgstr "Ukryj"
362
-
363
- #: contact-form-7/admin/admin.php:213
364
- msgid "File size limit"
365
- msgstr "Limit wielkości pliku"
366
-
367
- #: contact-form-7/admin/admin.php:214
368
- msgid "Acceptable file types"
369
- msgstr "Akceptowalne typy plików"
370
-
371
- #: contact-form-7/admin/admin.php:215
372
- msgid "Note: To use CAPTCHA, you need Really Simple CAPTCHA plugin installed."
373
- msgstr "Uwaga: Aby użyć CAPTCHA, musisz zainstalować plugin Really Simple CAPTCHA."
374
-
375
- #: contact-form-7/admin/admin.php:226
376
- msgid "Contact form created."
377
- msgstr "Formularz kontaktowy został utworzony."
378
-
379
- #: contact-form-7/admin/admin.php:229
380
- msgid "Contact form saved."
381
- msgstr "Formularz kontaktowy został zapisany."
382
-
383
- #: contact-form-7/admin/admin.php:232
384
- msgid "Contact form deleted."
385
- msgstr "Formularz kontaktowy został usunięty."
386
-
387
- #: contact-form-7/admin/admin.php:235
388
- msgid "Database table created."
389
- msgstr "Tabela w bazie danych została utworzona."
390
-
391
- #: contact-form-7/admin/admin.php:238
392
- msgid "Failed to create database table."
393
- msgstr "Tworzenie tabeli w bazie danych nie powiodło się."
394
-
395
- #: contact-form-7/admin/admin.php:311
396
- msgid "Contact form"
397
- msgstr "Formularz kontaktowy"
398
-
399
- #: contact-form-7/admin/admin.php:345
400
- msgid "Settings"
401
- msgstr "Ustawienia"
402
-
403
- #: contact-form-7/admin/admin.php:366
404
- msgid "Contact Form 7 needs your support. Please donate today."
405
- msgstr "Contact Form 7 potrzebuje Twojego wsparcia. Wesprzyj nas jeszcze dzisiaj."
406
-
407
- #: contact-form-7/admin/admin.php:367
408
- msgid "Is this plugin useful for you? If you like it, please help the developer."
409
- msgstr "Czy ten plugin dobrze Ci służy? Jeżeli tak, to pomóż jego autorowi."
410
-
411
- #: contact-form-7/admin/admin.php:368
412
- msgid "Your contribution is needed for making this plugin better."
413
- msgstr "Twoje wsparcie jest niezbędne aby dalej ulepszać ten plugin."
414
-
415
- #: contact-form-7/admin/admin.php:369
416
- msgid "Developing a plugin and providing user support is really hard work. Please help."
417
- msgstr "Rozwijanie pluginu i dostarczanie wsparcia jego użytkownikom jest naprawdę ciężką pracą. Proszę pomóż."
418
-
419
- #: contact-form-7/includes/classes.php:536
420
- msgid "Untitled"
421
- msgstr "Bez tytułu"
422
-
423
- #: contact-form-7/includes/functions.php:6
424
- msgid "Your message was sent successfully. Thanks."
425
- msgstr "Twoja wiadomość został wysłana. Dzięki!"
426
-
427
- #: contact-form-7/includes/functions.php:8
428
- #: contact-form-7/includes/functions.php:10
429
- msgid "Failed to send your message. Please try later or contact administrator by other way."
430
- msgstr "Nie udało się wysłać wiadomości. Spróbuj później lub skontaktuj się inną drogą."
431
-
432
- #: contact-form-7/includes/functions.php:12
433
- msgid "Validation errors occurred. Please confirm the fields and submit it again."
434
- msgstr "Wystąpił błąd. Sprawdź poprawność pól i wyślij ponownie."
435
-
436
- #: contact-form-7/includes/functions.php:14
437
- msgid "Please accept the terms to proceed."
438
- msgstr "Proszę zaakceptować warunki aby kontynuować."
439
-
440
- #: contact-form-7/includes/functions.php:16
441
- msgid "Email address seems invalid."
442
- msgstr "Adres e-mail wygląda na niepoprawny."
443
-
444
- #: contact-form-7/includes/functions.php:18
445
- msgid "Please fill the required field."
446
- msgstr "Proszę wypełnić wszystkie pola."
447
-
448
- #: contact-form-7/includes/functions.php:20
449
- msgid "Your entered code is incorrect."
450
- msgstr "Kod, który wprowadziłeś jest niepoprawny."
451
-
452
- #: contact-form-7/includes/functions.php:22
453
- msgid "Your answer is not correct."
454
- msgstr "Twoja odpowiedź nie jest poprawna."
455
-
456
- #: contact-form-7/includes/functions.php:24
457
- msgid "Failed to upload file."
458
- msgstr "Wysyłanie pliku nie powiodło się."
459
-
460
- #: contact-form-7/includes/functions.php:26
461
- msgid "This file type is not allowed."
462
- msgstr "Ten typ pliku nie jest dozwolony."
463
-
464
- #: contact-form-7/includes/functions.php:28
465
- msgid "This file is too large."
466
- msgstr "Plik jest zbyt duży."
467
-
468
- #: contact-form-7/includes/functions.php:33
469
- msgid "Your Name"
470
- msgstr "Twoje imię"
471
-
472
- #: contact-form-7/includes/functions.php:33
473
- #: contact-form-7/includes/functions.php:35
474
- msgid "(required)"
475
- msgstr "(wymagane)"
476
-
477
- #: contact-form-7/includes/functions.php:35
478
- msgid "Your Email"
479
- msgstr "Twój e-mail"
480
-
481
- #: contact-form-7/includes/functions.php:37
482
- msgid "Subject"
483
- msgstr "Temat"
484
-
485
- #: contact-form-7/includes/functions.php:39
486
- msgid "Your Message"
487
- msgstr "Twoja wiadomość"
488
-
489
- #: contact-form-7/includes/functions.php:41
490
- #: contact-form-7/modules/submit.php:37
491
- msgid "Send"
492
- msgstr "Wyślij"
493
-
494
- #: contact-form-7/modules/captcha.php:62
495
- msgid "To use CAPTCHA, you need <a href=\"http://wordpress.org/extend/plugins/really-simple-captcha/\">Really Simple CAPTCHA</a> plugin installed."
496
- msgstr "Aby użyć CAPTCHA, musisz zainstalować plugin <a href=\"http://wordpress.org/extend/plugins/really-simple-captcha/\">Really Simple CAPTCHA</a>."
497
-
498
- #~ msgid "Delete this contact form"
499
- #~ msgstr "Usuń ten formularz kontaktowy"
500
-
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
languages/wpcf7-pt_BR.po DELETED
@@ -1,837 +0,0 @@
1
- msgid ""
2
- msgstr ""
3
- "Project-Id-Version: Contact Form 7\n"
4
- "Report-Msgid-Bugs-To: \n"
5
- "POT-Creation-Date: 2010-05-18 23:31+0900\n"
6
- "PO-Revision-Date: 2010-07-16 09:35-0300\n"
7
- "Last-Translator: Gervásio Antônio <gdsa32-translation@yahoo.com.br>\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-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 "Contact Form 7"
23
-
24
- #: contact-form-7/admin/admin.php:120
25
- msgid "Contact"
26
- msgstr "Contato"
27
-
28
- #: contact-form-7/admin/admin.php:123
29
- msgid "Edit Contact Forms"
30
- msgstr "Editar Formulários de Contato"
31
-
32
- #: contact-form-7/admin/admin.php:123
33
- msgid "Edit"
34
- msgstr "Editar"
35
-
36
- #: contact-form-7/admin/admin.php:162
37
- msgid "Generate Tag"
38
- msgstr "Gerar tag"
39
-
40
- #: contact-form-7/admin/admin.php:163
41
- msgid "Show"
42
- msgstr "Exibir"
43
-
44
- #: contact-form-7/admin/admin.php:164
45
- msgid "Hide"
46
- msgstr "Ocultar"
47
-
48
- #: contact-form-7/admin/admin.php:261
49
- msgid "Contact form"
50
- msgstr "Formulário de contato"
51
-
52
- #: contact-form-7/admin/admin.php:280
53
- msgid "Settings"
54
- msgstr "Configurações"
55
-
56
- #: contact-form-7/admin/admin.php:291
57
- msgid "http://contactform7.com/"
58
- msgstr "http://contactform7.com/"
59
-
60
- #: contact-form-7/admin/admin.php:292
61
- msgid "Contactform7.com"
62
- msgstr "Contactform7.com"
63
-
64
- #: contact-form-7/admin/admin.php:293
65
- msgid "http://contactform7.com/docs/"
66
- msgstr "http://contactform7.com/docs/"
67
-
68
- #: contact-form-7/admin/admin.php:294
69
- msgid "Docs"
70
- msgstr "Docs"
71
-
72
- #: contact-form-7/admin/admin.php:295
73
- msgid "http://contactform7.com/faq/"
74
- msgstr "http://contactform7.com/faq/"
75
-
76
- #: contact-form-7/admin/admin.php:296
77
- msgid "FAQ"
78
- msgstr "FAQ"
79
-
80
- #: contact-form-7/admin/admin.php:297
81
- msgid "http://contactform7.com/support/"
82
- msgstr "http://contactform7.com/support/"
83
-
84
- #: contact-form-7/admin/admin.php:298
85
- msgid "Support"
86
- msgstr "Suporte"
87
-
88
- #: contact-form-7/admin/admin.php:312
89
- msgid "Contact form created."
90
- msgstr "Formulário de contato criado."
91
-
92
- #: contact-form-7/admin/admin.php:315
93
- msgid "Contact form saved."
94
- msgstr "Formulário de contato salvo."
95
-
96
- #: contact-form-7/admin/admin.php:318
97
- msgid "Contact form deleted."
98
- msgstr "Formulário de contato excluído."
99
-
100
- #: contact-form-7/admin/admin.php:321
101
- msgid "Database table created."
102
- msgstr "Tabela criada na base de dados."
103
-
104
- #: contact-form-7/admin/admin.php:324
105
- msgid "Failed to create database table."
106
- msgstr "Falha ao criar tabela na base de dados."
107
-
108
- #: contact-form-7/admin/admin.php:358
109
- msgid "Contact Form 7 needs your support. Please donate today."
110
- msgstr "Contact Form 7 precisa da sua ajuda. Por favor, faça uma doação."
111
-
112
- #: contact-form-7/admin/admin.php:359
113
- msgid "Your contribution is needed for making this plugin better."
114
- msgstr "Sua contribuição é necessária para tornar este plugin melhor."
115
-
116
- #: contact-form-7/admin/admin.php:365
117
- msgid "http://contactform7.com/donate/"
118
- msgstr "http://contactform7.com/donate/"
119
-
120
- #: contact-form-7/admin/admin.php:365
121
- msgid "Donate"
122
- msgstr "Doe"
123
-
124
- #: contact-form-7/admin/edit.php:9
125
- #, php-format
126
- 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."
127
- msgstr "<strong>A tabela para o Contact Form 7 não existe na base de dados.</strong> Você precisa <a href=\"%s\">criar a tabela</a> para que o plugin funcione."
128
-
129
- #: contact-form-7/admin/edit.php:12
130
- msgid "<strong>The database table for Contact Form 7 does not exist.</strong>"
131
- msgstr "<strong>A tabela para o Contact Form 7 não existe na base de dados.</strong>"
132
-
133
- #: contact-form-7/admin/edit.php:45
134
- msgid "Add new"
135
- msgstr "Adicionar novo"
136
-
137
- #: contact-form-7/admin/edit.php:67
138
- msgid "Copy this code and paste it into your post, page or text widget content."
139
- msgstr "Copie este código e cole-o no conteúdo do seu post, página ou widget de texto."
140
-
141
- #: contact-form-7/admin/edit.php:75
142
- #: contact-form-7/admin/edit.php:309
143
- msgid "Save"
144
- msgstr "Salvar"
145
-
146
- #: contact-form-7/admin/edit.php:82
147
- msgid "Copy"
148
- msgstr "Copiar"
149
-
150
- #: contact-form-7/admin/edit.php:87
151
- msgid "Delete"
152
- msgstr "Excluir"
153
-
154
- #: contact-form-7/admin/edit.php:89
155
- msgid ""
156
- "You are about to delete this contact form.\n"
157
- " 'Cancel' to stop, 'OK' to delete."
158
- msgstr ""
159
- "Você está prestes a excluir este formulário.\n"
160
- "Clique em 'Cancelar' para interromper ou 'OK' para excluir."
161
-
162
- #: contact-form-7/admin/edit.php:104
163
- msgid "Form"
164
- msgstr "Formulário"
165
-
166
- #: contact-form-7/admin/edit.php:128
167
- msgid "Mail"
168
- msgstr "E-mail"
169
-
170
- #: contact-form-7/admin/edit.php:135
171
- #: contact-form-7/admin/edit.php:202
172
- msgid "To:"
173
- msgstr "Para:"
174
-
175
- #: contact-form-7/admin/edit.php:140
176
- #: contact-form-7/admin/edit.php:207
177
- msgid "From:"
178
- msgstr "De:"
179
-
180
- #: contact-form-7/admin/edit.php:145
181
- #: contact-form-7/admin/edit.php:212
182
- msgid "Subject:"
183
- msgstr "Assunto:"
184
-
185
- #: contact-form-7/admin/edit.php:152
186
- #: contact-form-7/admin/edit.php:219
187
- msgid "Additional headers:"
188
- msgstr "Cabeçalhos adicionais:"
189
-
190
- #: contact-form-7/admin/edit.php:157
191
- #: contact-form-7/admin/edit.php:224
192
- msgid "File attachments:"
193
- msgstr "Arquivos anexos:"
194
-
195
- #: contact-form-7/admin/edit.php:165
196
- #: contact-form-7/admin/edit.php:232
197
- msgid "Use HTML content type"
198
- msgstr "Usar conteúdo HTML"
199
-
200
- #: contact-form-7/admin/edit.php:172
201
- #: contact-form-7/admin/edit.php:239
202
- #: contact-form-7/includes/functions.php:78
203
- msgid "Message body:"
204
- msgstr "Corpo da mensagem:"
205
-
206
- #: contact-form-7/admin/edit.php:188
207
- msgid "Mail (2)"
208
- msgstr "E-mail (2)"
209
-
210
- #: contact-form-7/admin/edit.php:194
211
- msgid "Use mail (2)"
212
- msgstr "Usar e-mail (2)"
213
-
214
- #: contact-form-7/admin/edit.php:255
215
- msgid "Messages"
216
- msgstr "Mensagens"
217
-
218
- #: contact-form-7/admin/edit.php:285
219
- msgid "Additional Settings"
220
- msgstr "Configurações Adicionais"
221
-
222
- #: contact-form-7/admin/edit.php:333
223
- #, php-format
224
- msgid "Use the default language (%s)"
225
- msgstr "Use o idioma padrão (%s)"
226
-
227
- #: contact-form-7/admin/edit.php:334
228
- #: contact-form-7/admin/edit.php:347
229
- msgid "Add New"
230
- msgstr "Adicionar novo"
231
-
232
- #: contact-form-7/admin/edit.php:337
233
- msgid "Or"
234
- msgstr "Ou"
235
-
236
- #: contact-form-7/admin/edit.php:342
237
- msgid "(select language)"
238
- msgstr "(Selecione o idioma)"
239
-
240
- #: contact-form-7/includes/classes.php:577
241
- msgid "Untitled"
242
- msgstr "Sem nome"
243
-
244
- #: contact-form-7/includes/functions.php:6
245
- msgid "Sender's message was sent successfully"
246
- msgstr "A mensagem foi enviada com sucesso"
247
-
248
- #: contact-form-7/includes/functions.php:7
249
- msgid "Your message was sent successfully. Thanks."
250
- msgstr "Sua mensagem foi enviada com sucesso. Obrigado."
251
-
252
- #: contact-form-7/includes/functions.php:11
253
- msgid "Sender's message was failed to send"
254
- msgstr "O envio da mensagem falhou"
255
-
256
- #: contact-form-7/includes/functions.php:12
257
- #: contact-form-7/includes/functions.php:17
258
- msgid "Failed to send your message. Please try later or contact administrator by other way."
259
- msgstr "Falha ao enviar sua mensagem. Por favor, tente mais tarde ou contacte o administrador de outra forma."
260
-
261
- #: contact-form-7/includes/functions.php:16
262
- msgid "Akismet judged the sending activity as spamming"
263
- msgstr "O Akismet julgou a atividade de envio como spam"
264
-
265
- #: contact-form-7/includes/functions.php:21
266
- msgid "Validation errors occurred"
267
- msgstr "Ocorreram erros de validação"
268
-
269
- #: contact-form-7/includes/functions.php:22
270
- msgid "Validation errors occurred. Please confirm the fields and submit it again."
271
- msgstr "Ocorreram erros de validação. Por favor confira os dados e envie novamente."
272
-
273
- #: contact-form-7/includes/functions.php:26
274
- msgid "There is a field of term that sender is needed to accept"
275
- msgstr "Há um campo de termos de uso que o remetente deve aceitar"
276
-
277
- #: contact-form-7/includes/functions.php:27
278
- msgid "Please accept the terms to proceed."
279
- msgstr "Por favor, aceite os termos de uso para prosseguir."
280
-
281
- #: contact-form-7/includes/functions.php:31
282
- msgid "Email address that sender entered is invalid"
283
- msgstr "O endereço de e-mail digitado é inválido"
284
-
285
- #: contact-form-7/includes/functions.php:32
286
- msgid "Email address seems invalid."
287
- msgstr "O endereço de e-mail parece inválido."
288
-
289
- #: contact-form-7/includes/functions.php:36
290
- msgid "There is a field that sender is needed to fill in"
291
- msgstr "Há um campo que o remetente deve preencher"
292
-
293
- #: contact-form-7/includes/functions.php:37
294
- msgid "Please fill the required field."
295
- msgstr "Por favor preencha este campo obrigatório."
296
-
297
- #: contact-form-7/includes/functions.php:46
298
- msgid "Your Name"
299
- msgstr "Seu nome"
300
-
301
- #: contact-form-7/includes/functions.php:46
302
- #: contact-form-7/includes/functions.php:48
303
- msgid "(required)"
304
- msgstr "(obrigatório)"
305
-
306
- #: contact-form-7/includes/functions.php:48
307
- msgid "Your Email"
308
- msgstr "Seu e-mail"
309
-
310
- #: contact-form-7/includes/functions.php:50
311
- msgid "Subject"
312
- msgstr "Assunto"
313
-
314
- #: contact-form-7/includes/functions.php:52
315
- msgid "Your Message"
316
- msgstr "Sua mensagem"
317
-
318
- #: contact-form-7/includes/functions.php:54
319
- msgid "Send"
320
- msgstr "Enviar"
321
-
322
- #: contact-form-7/includes/functions.php:62
323
- #, php-format
324
- msgid "From: %s"
325
- msgstr "De: %s"
326
-
327
- #: contact-form-7/includes/functions.php:63
328
- #, php-format
329
- msgid "Subject: %s"
330
- msgstr "Assunto: %s"
331
-
332
- #: contact-form-7/includes/functions.php:64
333
- msgid "Message Body:"
334
- msgstr "Corpo da mensagem:"
335
-
336
- #: contact-form-7/includes/functions.php:65
337
- #: contact-form-7/includes/functions.php:79
338
- #, php-format
339
- msgid "This mail is sent via contact form on %1$s %2$s"
340
- msgstr "Esta mensagem foi enviada através do formulário de contato do site %1$s %2$s"
341
-
342
- #: contact-form-7/includes/functions.php:168
343
- msgid "Afrikaans"
344
- msgstr "Africâner"
345
-
346
- #: contact-form-7/includes/functions.php:169
347
- msgid "Albanian"
348
- msgstr "Albanês"
349
-
350
- #: contact-form-7/includes/functions.php:170
351
- msgid "Arabic"
352
- msgstr "Árabe"
353
-
354
- #: contact-form-7/includes/functions.php:171
355
- msgid "Bangla"
356
- msgstr "Bengalês"
357
-
358
- #: contact-form-7/includes/functions.php:172
359
- msgid "Bosnian"
360
- msgstr "Bósnio"
361
-
362
- #: contact-form-7/includes/functions.php:173
363
- msgid "Brazilian Portuguese"
364
- msgstr "Português do Brasil"
365
-
366
- #: contact-form-7/includes/functions.php:174
367
- msgid "Bulgarian"
368
- msgstr "Búlgaro"
369
-
370
- #: contact-form-7/includes/functions.php:175
371
- msgid "Catalan"
372
- msgstr "Catalão"
373
-
374
- #: contact-form-7/includes/functions.php:176
375
- msgid "Chinese (Simplified)"
376
- msgstr "Chinês (Simplificado)"
377
-
378
- #: contact-form-7/includes/functions.php:177
379
- msgid "Chinese (Traditional)"
380
- msgstr "Chinês (Tradicional)"
381
-
382
- #: contact-form-7/includes/functions.php:178
383
- msgid "Croatian"
384
- msgstr "Croata"
385
-
386
- #: contact-form-7/includes/functions.php:179
387
- msgid "Czech"
388
- msgstr "Tcheco"
389
-
390
- #: contact-form-7/includes/functions.php:180
391
- msgid "Danish"
392
- msgstr "Dinamarquês"
393
-
394
- #: contact-form-7/includes/functions.php:181
395
- msgid "Dutch"
396
- msgstr "Holandês"
397
-
398
- #: contact-form-7/includes/functions.php:182
399
- msgid "English"
400
- msgstr "Inglês"
401
-
402
- #: contact-form-7/includes/functions.php:183
403
- msgid "Estonian"
404
- msgstr "Estoniano"
405
-
406
- #: contact-form-7/includes/functions.php:184
407
- msgid "Finnish"
408
- msgstr "Finlandês"
409
-
410
- #: contact-form-7/includes/functions.php:185
411
- msgid "French"
412
- msgstr "Francês"
413
-
414
- #: contact-form-7/includes/functions.php:186
415
- msgid "Galician"
416
- msgstr "Galego"
417
-
418
- #: contact-form-7/includes/functions.php:187
419
- msgid "Georgian"
420
- msgstr "Georgiano"
421
-
422
- #: contact-form-7/includes/functions.php:188
423
- msgid "German"
424
- msgstr "Alemão"
425
-
426
- #: contact-form-7/includes/functions.php:189
427
- msgid "Greek"
428
- msgstr "Grego"
429
-
430
- #: contact-form-7/includes/functions.php:190
431
- msgid "Hebrew"
432
- msgstr "Hebraico"
433
-
434
- #: contact-form-7/includes/functions.php:191
435
- msgid "Hindi"
436
- msgstr "Hindi"
437
-
438
- #: contact-form-7/includes/functions.php:192
439
- msgid "Hungarian"
440
- msgstr "Húngaro"
441
-
442
- #: contact-form-7/includes/functions.php:193
443
- msgid "Indonesian"
444
- msgstr "Indonésio"
445
-
446
- #: contact-form-7/includes/functions.php:194
447
- msgid "Italian"
448
- msgstr "Italiano"
449
-
450
- #: contact-form-7/includes/functions.php:195
451
- msgid "Japanese"
452
- msgstr "Japonês"
453
-
454
- #: contact-form-7/includes/functions.php:196
455
- msgid "Korean"
456
- msgstr "Coreano"
457
-
458
- #: contact-form-7/includes/functions.php:197
459
- msgid "Latvian"
460
- msgstr "Letão"
461
-
462
- #: contact-form-7/includes/functions.php:198
463
- msgid "Lithuanian"
464
- msgstr "Lituano"
465
-
466
- #: contact-form-7/includes/functions.php:199
467
- msgid "Malayalam"
468
- msgstr "Malaio"
469
-
470
- #: contact-form-7/includes/functions.php:200
471
- msgid "Norwegian"
472
- msgstr "Norueguês"
473
-
474
- #: contact-form-7/includes/functions.php:201
475
- msgid "Persian"
476
- msgstr "Persa"
477
-
478
- #: contact-form-7/includes/functions.php:202
479
- msgid "Polish"
480
- msgstr "Polonês"
481
-
482
- #: contact-form-7/includes/functions.php:203
483
- msgid "Portuguese"
484
- msgstr "Português"
485
-
486
- #: contact-form-7/includes/functions.php:204
487
- msgid "Russian"
488
- msgstr "Russo"
489
-
490
- #: contact-form-7/includes/functions.php:205
491
- msgid "Romanian"
492
- msgstr "Romeno"
493
-
494
- #: contact-form-7/includes/functions.php:206
495
- msgid "Serbian"
496
- msgstr "Sérvio"
497
-
498
- #: contact-form-7/includes/functions.php:207
499
- msgid "Slovak"
500
- msgstr "Eslovaco"
501
-
502
- #: contact-form-7/includes/functions.php:208
503
- msgid "Slovene"
504
- msgstr "Esloveno"
505
-
506
- #: contact-form-7/includes/functions.php:209
507
- msgid "Spanish"
508
- msgstr "Espanhol"
509
-
510
- #: contact-form-7/includes/functions.php:210
511
- msgid "Swedish"
512
- msgstr "Sueco"
513
-
514
- #: contact-form-7/includes/functions.php:211
515
- msgid "Thai"
516
- msgstr "Tailandês"
517
-
518
- #: contact-form-7/includes/functions.php:212
519
- msgid "Turkish"
520
- msgstr "Turco"
521
-
522
- #: contact-form-7/includes/functions.php:213
523
- msgid "Ukrainian"
524
- msgstr "Ucraniano"
525
-
526
- #: contact-form-7/includes/functions.php:214
527
- msgid "Vietnamese"
528
- msgstr "Vietnamita"
529
-
530
- #: contact-form-7/modules/acceptance.php:104
531
- msgid "Acceptance"
532
- msgstr "Aceitação"
533
-
534
- #: contact-form-7/modules/acceptance.php:113
535
- #: contact-form-7/modules/captcha.php:214
536
- #: contact-form-7/modules/checkbox.php:209
537
- #: contact-form-7/modules/file.php:241
538
- msgid "Name"
539
- msgstr "Nome"
540
-
541
- #: contact-form-7/modules/acceptance.php:118
542
- #: contact-form-7/modules/acceptance.php:121
543
- #: contact-form-7/modules/captcha.php:221
544
- #: contact-form-7/modules/captcha.php:224
545
- #: contact-form-7/modules/captcha.php:229
546
- #: contact-form-7/modules/captcha.php:232
547
- #: contact-form-7/modules/captcha.php:236
548
- #: contact-form-7/modules/captcha.php:247
549
- #: contact-form-7/modules/captcha.php:250
550
- #: contact-form-7/modules/captcha.php:255
551
- #: contact-form-7/modules/captcha.php:258
552
- #: contact-form-7/modules/checkbox.php:214
553
- #: contact-form-7/modules/checkbox.php:217
554
- #: contact-form-7/modules/file.php:246
555
- #: contact-form-7/modules/file.php:249
556
- #: contact-form-7/modules/file.php:254
557
- #: contact-form-7/modules/file.php:257
558
- msgid "optional"
559
- msgstr "opcional"
560
-
561
- #: contact-form-7/modules/acceptance.php:127
562
- msgid "Make this checkbox checked by default?"
563
- msgstr "Deixar esta opção marcada por padrão?"
564
-
565
- #: contact-form-7/modules/acceptance.php:128
566
- msgid "Make this checkbox work inversely?"
567
- msgstr "Fazer esta opção funcionar inversamente?"
568
-
569
- #: contact-form-7/modules/acceptance.php:129
570
- msgid "* That means visitor who accepts the term unchecks it."
571
- msgstr "* Isso significa que o visitante que aceitar os termos deverá desmarcá-la."
572
-
573
- #: contact-form-7/modules/acceptance.php:134
574
- #: contact-form-7/modules/captcha.php:263
575
- #: contact-form-7/modules/checkbox.php:237
576
- #: contact-form-7/modules/file.php:262
577
- msgid "Copy this code and paste it into the form left."
578
- msgstr "Copie este código e cole-o no formulário à esquerda."
579
-
580
- #: contact-form-7/modules/captcha.php:70
581
- msgid "To use CAPTCHA, you need <a href=\"http://wordpress.org/extend/plugins/really-simple-captcha/\">Really Simple CAPTCHA</a> plugin installed."
582
- msgstr "Para utilizar CAPTCHA, você previsa ter o plugin <a href=\"http://wordpress.org/extend/plugins/really-simple-captcha/\">Really Simple CAPTCHA</a> instalado."
583
-
584
- #: contact-form-7/modules/captcha.php:189
585
- msgid "The code that sender entered does not match the CAPTCHA"
586
- msgstr "O código digitado pelo remetente não confere com o CAPTCHA"
587
-
588
- #: contact-form-7/modules/captcha.php:190
589
- msgid "Your entered code is incorrect."
590
- msgstr "O código digitado está incorreto."
591
-
592
- #: contact-form-7/modules/captcha.php:200
593
- msgid "CAPTCHA"
594
- msgstr "CAPTCHA"
595
-
596
- #: contact-form-7/modules/captcha.php:211
597
- msgid "Note: To use CAPTCHA, you need Really Simple CAPTCHA plugin installed."
598
- msgstr "Nota: Para utilizar CAPTCHA, você previsa do plugin Really Simple CAPTCHA instalado."
599
-
600
- #: contact-form-7/modules/captcha.php:218
601
- msgid "Image settings"
602
- msgstr "Configurações da imagem"
603
-
604
- #: contact-form-7/modules/captcha.php:229
605
- msgid "Foreground color"
606
- msgstr "Cor do texto"
607
-
608
- #: contact-form-7/modules/captcha.php:232
609
- msgid "Background color"
610
- msgstr "Cor de fundo"
611
-
612
- #: contact-form-7/modules/captcha.php:236
613
- msgid "Image size"
614
- msgstr "Tamanho da imagem"
615
-
616
- #: contact-form-7/modules/captcha.php:237
617
- msgid "Small"
618
- msgstr "Pequena"
619
-
620
- #: contact-form-7/modules/captcha.php:238
621
- msgid "Medium"
622
- msgstr "Média"
623
-
624
- #: contact-form-7/modules/captcha.php:239
625
- msgid "Large"
626
- msgstr "Grande"
627
-
628
- #: contact-form-7/modules/captcha.php:244
629
- msgid "Input field settings"
630
- msgstr "Configurações do campo de digitação"
631
-
632
- #: contact-form-7/modules/captcha.php:264
633
- msgid "For image"
634
- msgstr "Para a imagem"
635
-
636
- #: contact-form-7/modules/captcha.php:266
637
- msgid "For input field"
638
- msgstr "Para o campo de digitação"
639
-
640
- #: contact-form-7/modules/captcha.php:296
641
- #, php-format
642
- 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."
643
- msgstr "Este formulário de contato contém campos de CAPTCHA, mas a pasta temporária para os arquivos (%s) não existe ou não é gravável. Você pode criar a pasta ou alterar a sua permissão manualmente."
644
-
645
- #: contact-form-7/modules/captcha.php:302
646
- msgid "This contact form contains CAPTCHA fields, but the necessary libraries (GD and FreeType) are not available on your server."
647
- msgstr "Este formulário de contato contém campos de CAPTCHA, mas as bibliotecas necessárias (GD e FreeType) não estão disponíveis no seu servidor."
648
-
649
- #: contact-form-7/modules/checkbox.php:182
650
- msgid "Checkboxes"
651
- msgstr "Caixas de seleção"
652
-
653
- #: contact-form-7/modules/checkbox.php:185
654
- msgid "Radio buttons"
655
- msgstr "Botões de rádio"
656
-
657
- #: contact-form-7/modules/checkbox.php:206
658
- #: contact-form-7/modules/file.php:240
659
- msgid "Required field?"
660
- msgstr "Campo obrigatório?"
661
-
662
- #: contact-form-7/modules/checkbox.php:222
663
- msgid "Choices"
664
- msgstr "Opções"
665
-
666
- #: contact-form-7/modules/checkbox.php:224
667
- msgid "* One choice per line."
668
- msgstr "* Uma opção por linha."
669
-
670
- #: contact-form-7/modules/checkbox.php:228
671
- msgid "Put a label first, a checkbox last?"
672
- msgstr "Colocar o rótulo antes e a caixa de seleção depois?"
673
-
674
- #: contact-form-7/modules/checkbox.php:229
675
- msgid "Wrap each item with <label> tag?"
676
- msgstr "Envolver cada item com a tag <label>?"
677
-
678
- #: contact-form-7/modules/checkbox.php:231
679
- msgid "Make checkboxes exclusive?"
680
- msgstr "Tornar as caixas de seleção exclusivas?"
681
-
682
- #: contact-form-7/modules/checkbox.php:239
683
- msgid "And, put this code into the Mail fields below."
684
- msgstr "E coloque este código nos campos de E-mail abaixo."
685
-
686
- #: contact-form-7/modules/file.php:204
687
- msgid "Uploading a file fails for any reason"
688
- msgstr "O upload de um arquivo falhou por alguma razão"
689
-
690
- #: contact-form-7/modules/file.php:205
691
- msgid "Failed to upload file."
692
- msgstr "Falha no upload do arquivo."
693
-
694
- #: contact-form-7/modules/file.php:209
695
- msgid "Uploaded file is not allowed file type"
696
- msgstr "O tipo do arquivo enviado não é permitido"
697
-
698
- #: contact-form-7/modules/file.php:210
699
- msgid "This file type is not allowed."
700
- msgstr "Este tipo de arquivo não é permitido."
701
-
702
- #: contact-form-7/modules/file.php:214
703
- msgid "Uploaded file is too large"
704
- msgstr "O arquivo enviado é muito grande"
705
-
706
- #: contact-form-7/modules/file.php:215
707
- msgid "This file is too large."
708
- msgstr "Este arquivo é grande demais."
709
-
710
- #: contact-form-7/modules/file.php:219
711
- msgid "Uploading a file fails for PHP error"
712
- msgstr "O upload de um arquivo falhou por causa de um erro no PHP"
713
-
714
- #: contact-form-7/modules/file.php:220
715
- msgid "Failed to upload file. Error occurred."
716
- msgstr "Falha no upload do arquivo."
717
-
718
- #: contact-form-7/modules/file.php:231
719
- msgid "File upload"
720
- msgstr "Upload de arquivo"
721
-
722
- #: contact-form-7/modules/file.php:254
723
- msgid "File size limit"
724
- msgstr "Limite do tamanho de arquivo"
725
-
726
- #: contact-form-7/modules/file.php:254
727
- msgid "bytes"
728
- msgstr "bytes"
729
-
730
- #: contact-form-7/modules/file.php:257
731
- msgid "Acceptable file types"
732
- msgstr "Tipos de arquivo aceitos"
733
-
734
- #: contact-form-7/modules/file.php:264
735
- msgid "And, put this code into the File Attachments field below."
736
- msgstr "E coloque este código no campo Arquivos Anexos abaixo."
737
-
738
- #: contact-form-7/modules/file.php:289
739
- #, php-format
740
- 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."
741
- msgstr "Este formulário de contato contém campos de upload de arquivos, mas a pasta temporária para os arquivos (%s) não existe ou não é gravável. Você pode criar a pasta ou alterar a sua permissão manualmente."
742
-
743
- #: contact-form-7/modules/icl.php:74
744
- 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."
745
- msgstr "Este formulário de contato contém tags [icl], mas elas são obsoletas e não funcionam nesta versão do Contact Form 7. <a href=\"http://contactform7.com/2009/12/25/contact-form-in-your-language/#Creating_contact_form_in_different_languages\" target=\"_blank\">Existe um modo mais simples para a criação de formulários de contato de outros idiomas</a> e é recomendável usá-lo."
746
-
747
- #: contact-form-7/modules/quiz.php:170
748
- msgid "Sender doesn't enter the correct answer to the quiz"
749
- msgstr "Você não inseriu a resposta correta para a pergunta"
750
-
751
- #: contact-form-7/modules/quiz.php:171
752
- msgid "Your answer is not correct."
753
- msgstr "Sua resposta está incorreta."
754
-
755
- #: contact-form-7/modules/quiz.php:181
756
- msgid "Quiz"
757
- msgstr "Pergunta"
758
-
759
- #: contact-form-7/modules/quiz.php:211
760
- msgid "Quizzes"
761
- msgstr "Perguntas"
762
-
763
- #: contact-form-7/modules/quiz.php:213
764
- msgid "* quiz|answer (e.g. 1+1=?|2)"
765
- msgstr "* pergunta|resposta (e.g. 1+1=?|2)"
766
-
767
- #: contact-form-7/modules/select.php:154
768
- msgid "Drop-down menu"
769
- msgstr "Menu drop-down"
770
-
771
- #: contact-form-7/modules/select.php:183
772
- msgid "Allow multiple selections?"
773
- msgstr "Permitir múltiplas seleções?"
774
-
775
- #: contact-form-7/modules/select.php:184
776
- msgid "Insert a blank item as the first option?"
777
- msgstr "Inserir um item em branco como primeira opção?"
778
-
779
- #: contact-form-7/modules/submit.php:62
780
- msgid "Submit button"
781
- msgstr "Botão de envio"
782
-
783
- #: contact-form-7/modules/submit.php:80
784
- msgid "Label"
785
- msgstr "Rótulo"
786
-
787
- #: contact-form-7/modules/text.php:137
788
- msgid "Text field"
789
- msgstr "Campo de texto"
790
-
791
- #: contact-form-7/modules/text.php:140
792
- msgid "Email field"
793
- msgstr "Campo de e-mail"
794
-
795
- #: contact-form-7/modules/text.php:182
796
- msgid "Akismet"
797
- msgstr "Akismet"
798
-
799
- #: contact-form-7/modules/text.php:184
800
- msgid "This field requires author's name"
801
- msgstr "Este campo requer o nome do autor"
802
-
803
- #: contact-form-7/modules/text.php:185
804
- msgid "This field requires author's URL"
805
- msgstr "Este campo requer a URL do autor"
806
-
807
- #: contact-form-7/modules/text.php:187
808
- msgid "This field requires author's email address"
809
- msgstr "Este campo requer o endereço de e-mail do autor"
810
-
811
- #: contact-form-7/modules/text.php:191
812
- #: contact-form-7/modules/textarea.php:157
813
- msgid "Default value"
814
- msgstr "Valor padrão"
815
-
816
- #: contact-form-7/modules/textarea.php:126
817
- msgid "Text area"
818
- msgstr "Área de texto"
819
-
820
- #~ msgid ""
821
- #~ "Is this plugin useful for you? If you like it, please help the developer."
822
- #~ msgstr ""
823
- #~ "Este plugin é útil para você? Se você gostou, por favor ajude o "
824
- #~ "desenvolvedor."
825
-
826
- #~ msgid ""
827
- #~ "Developing a plugin and providing user support is really hard work. "
828
- #~ "Please help."
829
- #~ msgstr ""
830
- #~ "Desenvolver um plugin e prover suporte aos usuários é um trabalho duro. "
831
- #~ "Por favor ajude."
832
-
833
- #~ msgid "Delete this contact form"
834
- #~ msgstr "Excluir este formulário de contato"
835
-
836
- #~ msgid "(You need WordPress 2.7 or greater to use this feature)"
837
- #~ msgstr "(Você precisa do WordPress 2.7 ou superior para usar este recurso)"
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
languages/wpcf7-pt_PT.po DELETED
@@ -1,305 +0,0 @@
1
- msgid ""
2
- msgstr ""
3
- "Project-Id-Version: \n"
4
- "Report-Msgid-Bugs-To: \n"
5
- "POT-Creation-Date: 2008-03-02 16:52+0900\n"
6
- "PO-Revision-Date: \n"
7
- "Last-Translator: Hugo Baeta <info@hugobaeta.com>\n"
8
- "Language-Team: Hugo Baeta <info@hugobaeta.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: Portuguese\n"
13
- "X-Poedit-Country: PORTUGAL\n"
14
-
15
- #: contact-form-7/wp-contact-form-7.php:271
16
- msgid "Contact form"
17
- msgstr "Formulário de contacto"
18
-
19
- #: contact-form-7/wp-contact-form-7.php:356
20
- #: contact-form-7/includes/admin-panel.php:5
21
- msgid "Contact Form 7"
22
- msgstr "Contact Form 7"
23
-
24
- #: contact-form-7/wp-contact-form-7.php:372
25
- msgid "optional"
26
- msgstr "opcional"
27
-
28
- #: contact-form-7/wp-contact-form-7.php:373
29
- msgid "Generate Tag"
30
- msgstr "Gerar tag"
31
-
32
- #: contact-form-7/wp-contact-form-7.php:374
33
- msgid "Text field"
34
- msgstr "Campo de texto"
35
-
36
- #: contact-form-7/wp-contact-form-7.php:375
37
- msgid "Email field"
38
- msgstr "Campo de e-mail"
39
-
40
- #: contact-form-7/wp-contact-form-7.php:376
41
- msgid "Text area"
42
- msgstr "Área de texto"
43
-
44
- #: contact-form-7/wp-contact-form-7.php:377
45
- msgid "Drop-down menu"
46
- msgstr "Menu drop-down"
47
-
48
- #: contact-form-7/wp-contact-form-7.php:378
49
- msgid "Checkboxes"
50
- msgstr "Caixa de Selecção"
51
-
52
- #: contact-form-7/wp-contact-form-7.php:379
53
- msgid "Radio buttons"
54
- msgstr "Botões de Selecção"
55
-
56
- #: contact-form-7/wp-contact-form-7.php:380
57
- msgid "Acceptance"
58
- msgstr "Aceitação"
59
-
60
- #: contact-form-7/wp-contact-form-7.php:381
61
- msgid "Make this checkbox checked by default?"
62
- msgstr "Deixar esta opção marcada por defeito?"
63
-
64
- #: contact-form-7/wp-contact-form-7.php:382
65
- msgid "Make this checkbox work inversely?"
66
- msgstr "Fazer esta Caixa de Selecção funcionar inversamente?"
67
-
68
- #: contact-form-7/wp-contact-form-7.php:383
69
- msgid "* That means visitor who accepts the term unchecks it."
70
- msgstr "* Isso significa que o visitante que aceitar os termos deverá desmarcá-la."
71
-
72
- #: contact-form-7/wp-contact-form-7.php:384
73
- msgid "CAPTCHA"
74
- msgstr "CAPTCHA"
75
-
76
- #: contact-form-7/wp-contact-form-7.php:385
77
- msgid "Submit button"
78
- msgstr "Botão de envio"
79
-
80
- #: contact-form-7/wp-contact-form-7.php:386
81
- msgid "Name"
82
- msgstr "Nome"
83
-
84
- #: contact-form-7/wp-contact-form-7.php:387
85
- msgid "Required field?"
86
- msgstr "Campo obrigatório?"
87
-
88
- #: contact-form-7/wp-contact-form-7.php:388
89
- msgid "Allow multiple selections?"
90
- msgstr "Permitir selecções múltiplas?"
91
-
92
- #: contact-form-7/wp-contact-form-7.php:389
93
- msgid "Insert a blank item as the first option?"
94
- msgstr "Inserir ítem em branco como primeira opção?"
95
-
96
- #: contact-form-7/wp-contact-form-7.php:390
97
- msgid "Make checkboxes exclusive?"
98
- msgstr "Tornar as caixas de selecção exclusivas?"
99
-
100
- #: contact-form-7/wp-contact-form-7.php:391
101
- msgid "Choices"
102
- msgstr "Opções"
103
-
104
- #: contact-form-7/wp-contact-form-7.php:392
105
- msgid "Label"
106
- msgstr "Etiqueta"
107
-
108
- #: contact-form-7/wp-contact-form-7.php:393
109
- msgid "Default value"
110
- msgstr "Valor padrão"
111
-
112
- #: contact-form-7/wp-contact-form-7.php:394
113
- msgid "Akismet"
114
- msgstr "Akismet"
115
-
116
- #: contact-form-7/wp-contact-form-7.php:395
117
- msgid "This field requires author's name"
118
- msgstr "Este campo é o nome do autor"
119
-
120
- #: contact-form-7/wp-contact-form-7.php:396
121
- msgid "This field requires author's URL"
122
- msgstr "Este campo é o URL do autor"
123
-
124
- #: contact-form-7/wp-contact-form-7.php:397
125
- msgid "This field requires author's email address"
126
- msgstr "Este campo é o endereço de e-mail do autor"
127
-
128
- #: contact-form-7/wp-contact-form-7.php:398
129
- msgid "Copy and paste this code into the form"
130
- msgstr "Copie e cole o seguinte código no formulário"
131
-
132
- #: contact-form-7/wp-contact-form-7.php:399
133
- msgid "Foreground color"
134
- msgstr "Cor do texto"
135
-
136
- #: contact-form-7/wp-contact-form-7.php:400
137
- msgid "Background color"
138
- msgstr "Cor de fundo"
139
-
140
- #: contact-form-7/wp-contact-form-7.php:401
141
- msgid "Image size"
142
- msgstr "Tamanho da imagem"
143
-
144
- #: contact-form-7/wp-contact-form-7.php:402
145
- msgid "Small"
146
- msgstr "Pequena"
147
-
148
- #: contact-form-7/wp-contact-form-7.php:403
149
- msgid "Medium"
150
- msgstr "Média"
151
-
152
- #: contact-form-7/wp-contact-form-7.php:404
153
- msgid "Large"
154
- msgstr "Grande"
155
-
156
- #: contact-form-7/wp-contact-form-7.php:405
157
- msgid "Image settings"
158
- msgstr "Configurações da imagem"
159
-
160
- #: contact-form-7/wp-contact-form-7.php:406
161
- msgid "Input field settings"
162
- msgstr "Configurações do campo de introdução"
163
-
164
- #: contact-form-7/wp-contact-form-7.php:407
165
- msgid "For image"
166
- msgstr "Para a imagem"
167
-
168
- #: contact-form-7/wp-contact-form-7.php:408
169
- msgid "For input field"
170
- msgstr "Para o campo de introdução"
171
-
172
- #: contact-form-7/wp-contact-form-7.php:409
173
- msgid "* One choice per line."
174
- msgstr "* Uma opção por linha."
175
-
176
- #: contact-form-7/wp-contact-form-7.php:428
177
- msgid "Contact form created."
178
- msgstr "Formulário de contacto criado."
179
-
180
- #: contact-form-7/wp-contact-form-7.php:431
181
- msgid "Contact form saved."
182
- msgstr "Formulário de contacto salvo."
183
-
184
- #: contact-form-7/wp-contact-form-7.php:434
185
- msgid "Contact form deleted."
186
- msgstr "Formulário de contacto eliminado."
187
-
188
- #: contact-form-7/wp-contact-form-7.php:441
189
- msgid "Untitled"
190
- msgstr "Sem nome"
191
-
192
- #: contact-form-7/wp-contact-form-7.php:465
193
- msgid "Your Name"
194
- msgstr "O seu nome"
195
-
196
- #: contact-form-7/wp-contact-form-7.php:465
197
- #: contact-form-7/wp-contact-form-7.php:467
198
- msgid "(required)"
199
- msgstr "(obrigatório)"
200
-
201
- #: contact-form-7/wp-contact-form-7.php:467
202
- msgid "Your Email"
203
- msgstr "O seu e-mail"
204
-
205
- #: contact-form-7/wp-contact-form-7.php:469
206
- msgid "Subject"
207
- msgstr "Assunto"
208
-
209
- #: contact-form-7/wp-contact-form-7.php:471
210
- msgid "Your Message"
211
- msgstr "A sua mensagem"
212
-
213
- #: contact-form-7/wp-contact-form-7.php:473
214
- #: contact-form-7/wp-contact-form-7.php:956
215
- msgid "Send"
216
- msgstr "Enviar"
217
-
218
- #: contact-form-7/wp-contact-form-7.php:502
219
- msgid "Your message was sent successfully. Thanks."
220
- msgstr "A sua mensagem foi enviada com sucesso. Obrigado."
221
-
222
- #: contact-form-7/wp-contact-form-7.php:504
223
- msgid "Failed to send your message. Please try later or contact administrator by other way."
224
- msgstr "Ocorreu um erro ao enviar a sua mensagem. Por favor tente mais tarde ou tente contactar o administrador de outra forma."
225
-
226
- #: contact-form-7/wp-contact-form-7.php:506
227
- msgid "Validation errors occurred. Please confirm the fields and submit it again."
228
- msgstr "Ocorreram erros de validação. Por favor verifique os dados e envie novamente."
229
-
230
- #: contact-form-7/wp-contact-form-7.php:508
231
- msgid "Please accept the terms to proceed."
232
- msgstr "Por favor aceite os termos para prosseguir."
233
-
234
- #: contact-form-7/wp-contact-form-7.php:510
235
- msgid "Email address seems invalid."
236
- msgstr "O endereço de e-mail parece inválido."
237
-
238
- #: contact-form-7/wp-contact-form-7.php:512
239
- msgid "Please fill the required field."
240
- msgstr "Por favor preencha este campo obrigatório."
241
-
242
- #: contact-form-7/wp-contact-form-7.php:514
243
- msgid "Your entered code is incorrect."
244
- msgstr "O código introduzido está incorrecto."
245
-
246
- #: contact-form-7/includes/admin-panel.php:15
247
- msgid "Add new"
248
- msgstr "Adicionar novo"
249
-
250
- #: contact-form-7/includes/admin-panel.php:28
251
- msgid "Copy and paste this code into your post content."
252
- msgstr "Copie e cole este código no conteúdo do seu artigo ou página."
253
-
254
- #: contact-form-7/includes/admin-panel.php:33
255
- msgid "Form"
256
- msgstr "Formulário"
257
-
258
- #: contact-form-7/includes/admin-panel.php:37
259
- msgid "Mail"
260
- msgstr "Mail"
261
-
262
- #: contact-form-7/includes/admin-panel.php:39
263
- #: contact-form-7/includes/admin-panel.php:60
264
- msgid "To:"
265
- msgstr "Para:"
266
-
267
- #: contact-form-7/includes/admin-panel.php:43
268
- #: contact-form-7/includes/admin-panel.php:64
269
- msgid "From:"
270
- msgstr "De:"
271
-
272
- #: contact-form-7/includes/admin-panel.php:47
273
- #: contact-form-7/includes/admin-panel.php:68
274
- msgid "Subject:"
275
- msgstr "Assunto:"
276
-
277
- #: contact-form-7/includes/admin-panel.php:51
278
- #: contact-form-7/includes/admin-panel.php:72
279
- msgid "Message body:"
280
- msgstr "Corpo da mensagem:"
281
-
282
- #: contact-form-7/includes/admin-panel.php:56
283
- msgid "Mail (2)"
284
- msgstr "Mail (2)"
285
-
286
- #: contact-form-7/includes/admin-panel.php:58
287
- msgid "Use mail (2)"
288
- msgstr "Usar mail (2)"
289
-
290
- #: contact-form-7/includes/admin-panel.php:80
291
- msgid "Save"
292
- msgstr "Salvar"
293
-
294
- #: contact-form-7/includes/admin-panel.php:86
295
- msgid "Delete this contact form"
296
- msgstr "Eliminar este formulário de contato"
297
-
298
- #: contact-form-7/includes/admin-panel.php:87
299
- msgid ""
300
- "You are about to delete this contact form.\n"
301
- " 'Cancel' to stop, 'OK' to delete."
302
- msgstr ""
303
- "Está prestes a eliminar este formulário.\n"
304
- " 'Cancelar' para interromper, 'OK' para eleminar."
305
-
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
languages/wpcf7-ro_RO.po DELETED
@@ -1,407 +0,0 @@
1
- msgid ""
2
- msgstr ""
3
- "Project-Id-Version: Contact Form 7\n"
4
- "Report-Msgid-Bugs-To: \n"
5
- "POT-Creation-Date: 2008-12-07 00:21+0900\n"
6
- "PO-Revision-Date: 2008-12-21 17:59+0200\n"
7
- "Last-Translator: Stas Sushkov <noi@softwareliber.ro>\n"
8
- "Language-Team: WordPress Romania <noi@softwareliber.ro>\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: Romanian\n"
17
- "X-Poedit-Country: ROMANIA\n"
18
- "X-Poedit-SearchPath-0: contact-form-7\n"
19
-
20
- #: contact-form-7/wp-contact-form-7.php:391
21
- msgid "Contact form"
22
- msgstr "Formular pentru contact"
23
-
24
- #: contact-form-7/wp-contact-form-7.php:548
25
- #: contact-form-7/includes/admin-panel.php:5
26
- msgid "Contact Form 7"
27
- msgstr "Contact Form 7"
28
-
29
- #: contact-form-7/wp-contact-form-7.php:566
30
- msgid "optional"
31
- msgstr "opțional"
32
-
33
- #: contact-form-7/wp-contact-form-7.php:567
34
- msgid "Generate Tag"
35
- msgstr "Generare Tag"
36
-
37
- #: contact-form-7/wp-contact-form-7.php:568
38
- msgid "Text field"
39
- msgstr "Câmp text"
40
-
41
- #: contact-form-7/wp-contact-form-7.php:569
42
- msgid "Email field"
43
- msgstr "Câmp pentru email"
44
-
45
- #: contact-form-7/wp-contact-form-7.php:570
46
- msgid "Text area"
47
- msgstr "Câmp text (textarea)"
48
-
49
- #: contact-form-7/wp-contact-form-7.php:571
50
- msgid "Drop-down menu"
51
- msgstr "Meniu selecții"
52
-
53
- #: contact-form-7/wp-contact-form-7.php:572
54
- msgid "Checkboxes"
55
- msgstr "Căsuțe cu bifă"
56
-
57
- #: contact-form-7/wp-contact-form-7.php:573
58
- msgid "Radio buttons"
59
- msgstr "Butoane radio"
60
-
61
- #: contact-form-7/wp-contact-form-7.php:574
62
- msgid "Acceptance"
63
- msgstr "Confirmare"
64
-
65
- #: contact-form-7/wp-contact-form-7.php:575
66
- msgid "Make this checkbox checked by default?"
67
- msgstr "Să fie bifată implicit această căsuță?"
68
-
69
- #: contact-form-7/wp-contact-form-7.php:576
70
- msgid "Make this checkbox work inversely?"
71
- msgstr "Să fie inversat modul de funcționare a acestei căsuțe?"
72
-
73
- #: contact-form-7/wp-contact-form-7.php:577
74
- msgid "* That means visitor who accepts the term unchecks it."
75
- msgstr "* Presupune că vizitatorul care acceptă termenii va fi nevoit să o debifeze."
76
-
77
- #: contact-form-7/wp-contact-form-7.php:578
78
- msgid "CAPTCHA"
79
- msgstr "CAPTCHA"
80
-
81
- #: contact-form-7/wp-contact-form-7.php:579
82
- msgid "File upload"
83
- msgstr "Atașare fișiere"
84
-
85
- #: contact-form-7/wp-contact-form-7.php:580
86
- msgid "Submit button"
87
- msgstr "Buton de trimitere"
88
-
89
- #: contact-form-7/wp-contact-form-7.php:581
90
- msgid "Name"
91
- msgstr "Nume"
92
-
93
- #: contact-form-7/wp-contact-form-7.php:582
94
- msgid "Required field?"
95
- msgstr "Câmp obligatoriu?"
96
-
97
- #: contact-form-7/wp-contact-form-7.php:583
98
- msgid "Allow multiple selections?"
99
- msgstr "Permite multiple selecții?"
100
-
101
- #: contact-form-7/wp-contact-form-7.php:584
102
- msgid "Insert a blank item as the first option?"
103
- msgstr "Inserează un item gol ca primă opțiune?"
104
-
105
- #: contact-form-7/wp-contact-form-7.php:585
106
- msgid "Make checkboxes exclusive?"
107
- msgstr "Să fie căsuțele exclusive?"
108
-
109
- #: contact-form-7/wp-contact-form-7.php:586
110
- msgid "Choices"
111
- msgstr "Posibilități"
112
-
113
- #: contact-form-7/wp-contact-form-7.php:587
114
- msgid "Label"
115
- msgstr "Etichetă (label)"
116
-
117
- #: contact-form-7/wp-contact-form-7.php:588
118
- msgid "Default value"
119
- msgstr "Valoarea Implicită"
120
-
121
- #: contact-form-7/wp-contact-form-7.php:589
122
- msgid "Akismet"
123
- msgstr "Akismet"
124
-
125
- #: contact-form-7/wp-contact-form-7.php:590
126
- msgid "This field requires author's name"
127
- msgstr "Acest câmp necesită numele autorului"
128
-
129
- #: contact-form-7/wp-contact-form-7.php:591
130
- msgid "This field requires author's URL"
131
- msgstr "Acest câmp necesită adresa web a autorului"
132
-
133
- #: contact-form-7/wp-contact-form-7.php:592
134
- msgid "This field requires author's email address"
135
- msgstr "Acest câmp necesită adresa email a autorului"
136
-
137
- #: contact-form-7/wp-contact-form-7.php:593
138
- msgid "Copy this code and paste it into the form left."
139
- msgstr "Copiați acest cod și lipiți-l în formularul din stânga."
140
-
141
- #: contact-form-7/wp-contact-form-7.php:594
142
- msgid "Foreground color"
143
- msgstr "Culoarea textului"
144
-
145
- #: contact-form-7/wp-contact-form-7.php:595
146
- msgid "Background color"
147
- msgstr "Culoarea de fundal"
148
-
149
- #: contact-form-7/wp-contact-form-7.php:596
150
- msgid "Image size"
151
- msgstr "Dimensiunea imaginii"
152
-
153
- #: contact-form-7/wp-contact-form-7.php:597
154
- msgid "Small"
155
- msgstr "Mică"
156
-
157
- #: contact-form-7/wp-contact-form-7.php:598
158
- msgid "Medium"
159
- msgstr "Medie"
160
-
161
- #: contact-form-7/wp-contact-form-7.php:599
162
- msgid "Large"
163
- msgstr "Mare"
164
-
165
- #: contact-form-7/wp-contact-form-7.php:600
166
- msgid "Image settings"
167
- msgstr "Setări imagine"
168
-
169
- #: contact-form-7/wp-contact-form-7.php:601
170
- msgid "Input field settings"
171
- msgstr "Setări câmpuri"
172
-
173
- #: contact-form-7/wp-contact-form-7.php:602
174
- msgid "For image"
175
- msgstr "Pentru imagine"
176
-
177
- #: contact-form-7/wp-contact-form-7.php:603
178
- msgid "For input field"
179
- msgstr "Pentru câmpuri"
180
-
181
- #: contact-form-7/wp-contact-form-7.php:604
182
- msgid "* One choice per line."
183
- msgstr "* O opțiune per linie."
184
-
185
- #: contact-form-7/wp-contact-form-7.php:605
186
- msgid "Show"
187
- msgstr "Afișează"
188
-
189
- #: contact-form-7/wp-contact-form-7.php:606
190
- msgid "Hide"
191
- msgstr "Ascunde"
192
-
193
- #: contact-form-7/wp-contact-form-7.php:607
194
- msgid "File size limit"
195
- msgstr "Limita dimensiunii fișierului"
196
-
197
- #: contact-form-7/wp-contact-form-7.php:608
198
- msgid "Acceptable file types"
199
- msgstr "Tipuri de fișiere acceptate"
200
-
201
- #: contact-form-7/wp-contact-form-7.php:634
202
- msgid "Contact form created."
203
- msgstr "Formularul de contact a fost creat."
204
-
205
- #: contact-form-7/wp-contact-form-7.php:637
206
- msgid "Contact form saved."
207
- msgstr "Formularul de contact a fost salvat."
208
-
209
- #: contact-form-7/wp-contact-form-7.php:640
210
- msgid "Contact form deleted."
211
- msgstr "Formularul de contact a fost șters."
212
-
213
- #: contact-form-7/wp-contact-form-7.php:651
214
- msgid "Untitled"
215
- msgstr "Fără nume"
216
-
217
- #: contact-form-7/wp-contact-form-7.php:678
218
- msgid "Your Name"
219
- msgstr "Numele"
220
-
221
- #: contact-form-7/wp-contact-form-7.php:678
222
- #: contact-form-7/wp-contact-form-7.php:680
223
- msgid "(required)"
224
- msgstr "(obligatoriu)"
225
-
226
- #: contact-form-7/wp-contact-form-7.php:680
227
- msgid "Your Email"
228
- msgstr "Adresa email"
229
-
230
- #: contact-form-7/wp-contact-form-7.php:682
231
- msgid "Subject"
232
- msgstr "Subiect"
233
-
234
- #: contact-form-7/wp-contact-form-7.php:684
235
- msgid "Your Message"
236
- msgstr "Mesaj"
237
-
238
- #: contact-form-7/wp-contact-form-7.php:686
239
- #: contact-form-7/wp-contact-form-7.php:1325
240
- msgid "Send"
241
- msgstr "Trimite"
242
-
243
- #: contact-form-7/wp-contact-form-7.php:739
244
- msgid "Your message was sent successfully. Thanks."
245
- msgstr "Mesajul a fost trimis. Vă mulțumim."
246
-
247
- #: contact-form-7/wp-contact-form-7.php:741
248
- #: contact-form-7/wp-contact-form-7.php:743
249
- msgid "Failed to send your message. Please try later or contact administrator by other way."
250
- msgstr "Mesajul nu a fost trimis. Vă rugăm să încercați mai târziu, sau încercați o altă metodă pentru contact."
251
-
252
- #: contact-form-7/wp-contact-form-7.php:745
253
- msgid "Validation errors occurred. Please confirm the fields and submit it again."
254
- msgstr "Au apărut erori de validare. Vă rugăm să verificați câmpurile și să reîncercați trimiterea."
255
-
256
- #: contact-form-7/wp-contact-form-7.php:747
257
- msgid "Please accept the terms to proceed."
258
- msgstr "Vă rugăm să citiți termenii înainte de a trimite."
259
-
260
- #: contact-form-7/wp-contact-form-7.php:749
261
- msgid "Email address seems invalid."
262
- msgstr "Adresa de email nu pare validă."
263
-
264
- #: contact-form-7/wp-contact-form-7.php:751
265
- msgid "Please fill the required field."
266
- msgstr "Vă rugăm să verificați câmpurile obligatorii."
267
-
268
- #: contact-form-7/wp-contact-form-7.php:753
269
- msgid "Your entered code is incorrect."
270
- msgstr "Codul introdus este greșit."
271
-
272
- #: contact-form-7/wp-contact-form-7.php:755
273
- msgid "Failed to upload file."
274
- msgstr "Nu s-a reușit atașarea fișierului."
275
-
276
- #: contact-form-7/wp-contact-form-7.php:757
277
- msgid "This file type is not allowed."
278
- msgstr "Acest tip de fișiere este interzis."
279
-
280
- #: contact-form-7/wp-contact-form-7.php:759
281
- msgid "This file is too large."
282
- msgstr "Fișierul este prea mare."
283
-
284
- #: contact-form-7/includes/admin-panel.php:20
285
- msgid "Add new"
286
- msgstr "Adaugă"
287
-
288
- #: contact-form-7/includes/admin-panel.php:42
289
- msgid "Copy this code and paste it into your post, page or text widget content."
290
- msgstr "Copiați acest code și lipiți-l în corpul unei pagină, unui articol sau widget."
291
-
292
- #: contact-form-7/includes/admin-panel.php:49
293
- #: contact-form-7/includes/admin-panel.php:253
294
- msgid "Save"
295
- msgstr "Salvează"
296
-
297
- #: contact-form-7/includes/admin-panel.php:55
298
- msgid "Delete this contact form"
299
- msgstr "Șterge acest formular"
300
-
301
- #: contact-form-7/includes/admin-panel.php:56
302
- msgid ""
303
- "You are about to delete this contact form.\n"
304
- " 'Cancel' to stop, 'OK' to delete."
305
- msgstr ""
306
- "Doriți să ștergeți acest formular de contact.\n"
307
- " 'Cancel' pentru a anula, 'OK' pentru a continua."
308
-
309
- #: contact-form-7/includes/admin-panel.php:70
310
- msgid "Form"
311
- msgstr "Formular"
312
-
313
- #: contact-form-7/includes/admin-panel.php:90
314
- msgid "Mail"
315
- msgstr "Mail"
316
-
317
- #: contact-form-7/includes/admin-panel.php:97
318
- #: contact-form-7/includes/admin-panel.php:149
319
- msgid "To:"
320
- msgstr "Pentru:"
321
-
322
- #: contact-form-7/includes/admin-panel.php:101
323
- #: contact-form-7/includes/admin-panel.php:153
324
- msgid "From:"
325
- msgstr "De la:"
326
-
327
- #: contact-form-7/includes/admin-panel.php:105
328
- #: contact-form-7/includes/admin-panel.php:157
329
- msgid "Subject:"
330
- msgstr "Subiectul:"
331
-
332
- #: contact-form-7/includes/admin-panel.php:110
333
- #: contact-form-7/includes/admin-panel.php:162
334
- msgid "File attachments:"
335
- msgstr "Fișiere atașate:"
336
-
337
- #: contact-form-7/includes/admin-panel.php:112
338
- #: contact-form-7/includes/admin-panel.php:164
339
- msgid "(You need WordPress 2.7 or greater to use this feature)"
340
- msgstr "(Aveți nevoie de WordPress 2.7 sau mai nou pentru a putea folosi această funcționalitate)"
341
-
342
- #: contact-form-7/includes/admin-panel.php:120
343
- #: contact-form-7/includes/admin-panel.php:172
344
- msgid "Use HTML content type"
345
- msgstr "Folosește tipul conținutului HTML"
346
-
347
- #: contact-form-7/includes/admin-panel.php:125
348
- #: contact-form-7/includes/admin-panel.php:177
349
- msgid "Message body:"
350
- msgstr "Mesajul:"
351
-
352
- #: contact-form-7/includes/admin-panel.php:136
353
- msgid "Mail (2)"
354
- msgstr "Mail (2)"
355
-
356
- #: contact-form-7/includes/admin-panel.php:143
357
- msgid "Use mail (2)"
358
- msgstr "Folosește și mail (2)"
359
-
360
- #: contact-form-7/includes/admin-panel.php:188
361
- msgid "Messages"
362
- msgstr "Mesaje"
363
-
364
- #: contact-form-7/includes/admin-panel.php:196
365
- msgid "Sender's message was sent successfully"
366
- msgstr "Mesajul a fost trimis. Vă mulțumim."
367
-
368
- #: contact-form-7/includes/admin-panel.php:200
369
- msgid "Sender's message was failed to send"
370
- msgstr "Nu s-a reușit trimiterea mesajului expeditorului"
371
-
372
- #: contact-form-7/includes/admin-panel.php:204
373
- msgid "Akismet judged the sending activity as spamming"
374
- msgstr "Akismet evaluează activitatea de expediere drept spam"
375
-
376
- #: contact-form-7/includes/admin-panel.php:208
377
- msgid "Validation errors occurred"
378
- msgstr "Au apărut erori de validare"
379
-
380
- #: contact-form-7/includes/admin-panel.php:212
381
- msgid "There is a field that sender is needed to fill in"
382
- msgstr "Mai este un câmp care trebuie completat de emițător"
383
-
384
- #: contact-form-7/includes/admin-panel.php:216
385
- msgid "Email address that sender entered is invalid"
386
- msgstr "Adresa email specificată de emițător este invalidă"
387
-
388
- #: contact-form-7/includes/admin-panel.php:220
389
- msgid "There is a field of term that sender is needed to accept"
390
- msgstr "Există un câmp cu termenii ce trebuie acceptați de expeditor"
391
-
392
- #: contact-form-7/includes/admin-panel.php:224
393
- msgid "The code that sender entered does not match the CAPTCHA"
394
- msgstr "Codul trimis de expeditor nu verifică CAPTCHA"
395
-
396
- #: contact-form-7/includes/admin-panel.php:228
397
- msgid "Uploading a file fails for any reason"
398
- msgstr "Atașarea fișierului nu merge nicicum"
399
-
400
- #: contact-form-7/includes/admin-panel.php:232
401
- msgid "Uploaded file is not allowed file type"
402
- msgstr "Tipul fișierul atașat nu este permis"
403
-
404
- #: contact-form-7/includes/admin-panel.php:236
405
- msgid "Uploaded file is too large"
406
- msgstr "Fișierul atașat este prea mare"
407
-
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
languages/wpcf7-ru_RU.po DELETED
@@ -1,213 +0,0 @@
1
- # translation of wpcf7-pl_PL.po to Polish
2
- # Zbigniew Czernik <czernik@tlen.pl>, 2007.
3
- msgid ""
4
- msgstr ""
5
- "Project-Id-Version: wpcf7-ru_RU\n"
6
- "POT-Creation-Date: \n"
7
- "PO-Revision-Date: 2007-09-29 20:46+0200\n"
8
- "Last-Translator: Dmitry <6630125@mail.ru>\n"
9
- "Language-Team: Russian <volotovich@gmail.com>\n"
10
- "MIME-Version: 1.0\n"
11
- "Content-Type: text/plain; charset=UTF-8\n"
12
- "Content-Transfer-Encoding: 8bit\n"
13
- "X-Poedit-Language: Russian\n"
14
- "X-Poedit-Country: Russia\n"
15
- "X-Poedit-SourceCharset: utf-8\n"
16
- "X-Poedit-KeywordsList: __;_e\n"
17
- "X-Poedit-Basepath: ../..\n"
18
- "X-Generator: KBabel 1.11.4\n"
19
- "X-Poedit-SearchPath-0: contact-form-7\n"
20
-
21
- #: contact-form-7/wp-contact-form-7.php:224
22
- #: contact-form-7/wp-contact-form-7.php:297
23
- msgid "Contact form"
24
- msgstr "Форма для контакта"
25
-
26
- #: contact-form-7/wp-contact-form-7.php:253
27
- #: contact-form-7/includes/admin-panel.php:5
28
- msgid "Contact Form 7"
29
- msgstr "Contact Form 7"
30
-
31
- #: contact-form-7/wp-contact-form-7.php:273
32
- #, php-format
33
- msgid "Contact form \"%s\" deleted. "
34
- msgstr "Форма \"%s\" удалена."
35
-
36
- #: contact-form-7/wp-contact-form-7.php:289
37
- #, php-format
38
- msgid "Contact form \"%s\" saved. "
39
- msgstr "Форма \"%s\" сохранена."
40
-
41
- #: contact-form-7/wp-contact-form-7.php:318
42
- msgid "Your Name"
43
- msgstr "Ваше имя"
44
-
45
- #: contact-form-7/wp-contact-form-7.php:318
46
- #: contact-form-7/wp-contact-form-7.php:320
47
- msgid "(required)"
48
- msgstr "(обязательно)"
49
-
50
- #: contact-form-7/wp-contact-form-7.php:320
51
- msgid "Your Email"
52
- msgstr "Ваш E-Mail"
53
-
54
- #: contact-form-7/wp-contact-form-7.php:322
55
- msgid "Subject"
56
- msgstr "Тема"
57
-
58
- #: contact-form-7/wp-contact-form-7.php:324
59
- msgid "Your Message"
60
- msgstr "Сообщение"
61
-
62
- #: contact-form-7/wp-contact-form-7.php:326
63
- #: contact-form-7/wp-contact-form-7.php:738
64
- msgid "Send"
65
- msgstr "Отправить"
66
-
67
- #: contact-form-7/wp-contact-form-7.php:345
68
- msgid "Your message was sent successfully. Thanks."
69
- msgstr "Ваше сообщение было отправлено успешно. Спасибо."
70
-
71
- #: contact-form-7/wp-contact-form-7.php:347
72
- msgid "Failed to send your message. Please try later or contact administrator by other way."
73
- msgstr "Ошибка отправки сообщения. Попытайтесь позже или обратитесь к администратору сайта."
74
-
75
- #: contact-form-7/wp-contact-form-7.php:349
76
- msgid "Validation errors occurred. Please confirm the fields and submit it again."
77
- msgstr "Ошибка заполнения. Заполните все поля и отправьте снова."
78
-
79
- #: contact-form-7/wp-contact-form-7.php:351
80
- msgid "Email address seems invalid."
81
- msgstr "Е-mail адрес неправильный."
82
-
83
- #: contact-form-7/wp-contact-form-7.php:353
84
- msgid "Please fill the required field."
85
- msgstr "Пожалуйста, заполните обязательные поля."
86
-
87
- #: contact-form-7/wp-contact-form-7.php:355
88
- msgid "Your entered code is incorrect."
89
- msgstr "Код введен Вами неправильно"
90
-
91
- #: contact-form-7/includes/admin-panel.php:19
92
- #: contact-form-7/includes/admin-panel.php:22
93
- msgid "Add new"
94
- msgstr "Добавить новую"
95
-
96
- #: contact-form-7/includes/admin-panel.php:34
97
- msgid "Title"
98
- msgstr "Заголовок"
99
-
100
- #: contact-form-7/includes/admin-panel.php:39
101
- msgid "Copy and paste this code into your post content."
102
- msgstr "Скопируйте и вставьте код в Вашу страницу."
103
-
104
- #: contact-form-7/includes/admin-panel.php:45
105
- msgid "Form content"
106
- msgstr "Содержание формы"
107
-
108
- #: contact-form-7/includes/admin-panel.php:60
109
- msgid "Mail template"
110
- msgstr "Шаблон письма"
111
-
112
- #: contact-form-7/includes/admin-panel.php:61
113
- msgid "Subject field:"
114
- msgstr "Поле темы:"
115
-
116
- #: contact-form-7/includes/admin-panel.php:63
117
- msgid "Sender field:"
118
- msgstr "Адрес отправителя:"
119
-
120
- #: contact-form-7/includes/admin-panel.php:65
121
- msgid "Message body:"
122
- msgstr "Тело сообщения:"
123
-
124
- #: contact-form-7/includes/admin-panel.php:69
125
- msgid "Options"
126
- msgstr "Настройки"
127
-
128
- #: contact-form-7/includes/admin-panel.php:70
129
- msgid "Recipient address:"
130
- msgstr "Адрес получателя:"
131
-
132
- #: contact-form-7/includes/admin-panel.php:75
133
- msgid "Save"
134
- msgstr "Сохранить"
135
-
136
- #: contact-form-7/includes/admin-panel.php:82
137
- msgid "Delete this contact form"
138
- msgstr "Удалить эту форму"
139
-
140
- #: contact-form-7/includes/admin-panel.php:83
141
- msgid ""
142
- "You are about to delete this contact form.\n"
143
- " 'Cancel' to stop, 'OK' to delete."
144
- msgstr ""
145
- "Удалить эту форму?.\n"
146
- " 'Cancel' не удалять, 'OK' удалить."
147
-
148
- #: contact-form-7/includes/admin-panel.php:137
149
- msgid "Akismet"
150
- msgstr "Akismet"
151
-
152
- #: contact-form-7/includes/admin-panel.php:138
153
- msgid "Check this field as sender&#39;s name"
154
- msgstr "Проверять это поле как имя отправителя"
155
-
156
- #: contact-form-7/includes/admin-panel.php:139
157
- msgid "Check this field as sender&#39;s email"
158
- msgstr "Проверять это поле как e-mail"
159
-
160
- #: contact-form-7/includes/admin-panel.php:140
161
- msgid "Check this field as sender&#39;s URL"
162
- msgstr "Проверять это поле как URL"
163
-
164
- #: contact-form-7/includes/admin-panel.php:141
165
- msgid "Don&#39;t check this field with Akismet"
166
- msgstr "Проверять это поле c Akismet плагин"
167
-
168
- #: contact-form-7/includes/admin-panel.php:148
169
- #: contact-form-7/includes/admin-panel.php:161
170
- #: contact-form-7/includes/admin-panel.php:194
171
- msgid "Default value"
172
- msgstr "Значение по умолчанию"
173
-
174
- #: contact-form-7/includes/admin-panel.php:169
175
- msgid "Choices"
176
- msgstr "Выбор"
177
-
178
- #: contact-form-7/includes/admin-panel.php:170
179
- msgid "* One choice per line."
180
- msgstr "* по одной в строке."
181
-
182
- #: contact-form-7/includes/admin-panel.php:178
183
- msgid "Foreground color"
184
- msgstr "Цвет переднего плана"
185
-
186
- #: contact-form-7/includes/admin-panel.php:179
187
- msgid "Background color"
188
- msgstr "Цвет фона"
189
-
190
- #: contact-form-7/includes/admin-panel.php:180
191
- msgid "Image size"
192
- msgstr "Размер картинки"
193
-
194
- #: contact-form-7/includes/admin-panel.php:182
195
- msgid "Small"
196
- msgstr "Маленький"
197
-
198
- #: contact-form-7/includes/admin-panel.php:183
199
- msgid "Medium"
200
- msgstr "Средний"
201
-
202
- #: contact-form-7/includes/admin-panel.php:184
203
- msgid "Large"
204
- msgstr "Большой"
205
-
206
- #: contact-form-7/includes/admin-panel.php:199
207
- msgid "Label"
208
- msgstr "Ярлык"
209
-
210
- #: contact-form-7/includes/admin-panel.php:206
211
- msgid "Insert"
212
- msgstr "Вставить"
213
-
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
languages/wpcf7-sk.po DELETED
@@ -1,816 +0,0 @@
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-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"
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-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-sl_SI.po DELETED
@@ -1,213 +0,0 @@
1
- # Mihael Simonič, 2008.
2
- msgid ""
3
- msgstr ""
4
- "Project-Id-Version: wpcf7-de_DE\n"
5
- "POT-Creation-Date: \n"
6
- "PO-Revision-Date: 2008-10-25 13:59+0200\n"
7
- "Last-Translator: Mihael Simonič\n"
8
- "Language-Team: Slovenian\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: Slovene\n"
13
- "X-Poedit-Country: SLOVENIA\n"
14
- "X-Poedit-SourceCharset: utf-8\n"
15
- "X-Poedit-KeywordsList: __;_e\n"
16
- "X-Poedit-Basepath: ../..\n"
17
- "X-Poedit-SearchPath-0: contact-form-7\n"
18
- "X-Generator: Lokalize 0.2\n"
19
- "Plural-Forms: nplurals=4; plural=(n%100==1 ? 1 : n%100==2 ? 2 : n%100==3 || n%100==4 ? 3 : 0);\n"
20
-
21
- #: contact-form-7/wp-contact-form-7.php:224
22
- #: contact-form-7/wp-contact-form-7.php:297
23
- msgid "Contact form"
24
- msgstr "Kontaktni obrazec"
25
-
26
- #: contact-form-7/wp-contact-form-7.php:253
27
- #: contact-form-7/includes/admin-panel.php:5
28
- msgid "Contact Form 7"
29
- msgstr "Contact Form 7"
30
-
31
- #: contact-form-7/wp-contact-form-7.php:273
32
- #, php-format
33
- msgid "Contact form \"%s\" deleted. "
34
- msgstr "Kontaktni obrazec \"%s\" je bil izbrisan."
35
-
36
- #: contact-form-7/wp-contact-form-7.php:289
37
- #, php-format
38
- msgid "Contact form \"%s\" saved. "
39
- msgstr "Kontaktni obrazec \"%s\"je bil shranjen."
40
-
41
- #: contact-form-7/wp-contact-form-7.php:318
42
- msgid "Your Name"
43
- msgstr "Vaše pravo ime"
44
-
45
- #: contact-form-7/wp-contact-form-7.php:318
46
- #: contact-form-7/wp-contact-form-7.php:320
47
- msgid "(required)"
48
- msgstr "(obvezno)"
49
-
50
- #: contact-form-7/wp-contact-form-7.php:320
51
- msgid "Your Email"
52
- msgstr "Vaš E-naslov"
53
-
54
- #: contact-form-7/wp-contact-form-7.php:322
55
- msgid "Subject"
56
- msgstr "Predmet"
57
-
58
- #: contact-form-7/wp-contact-form-7.php:324
59
- msgid "Your Message"
60
- msgstr "Vaše sporočilo"
61
-
62
- #: contact-form-7/wp-contact-form-7.php:326
63
- #: contact-form-7/wp-contact-form-7.php:738
64
- msgid "Send"
65
- msgstr "Pošlji"
66
-
67
- #: contact-form-7/wp-contact-form-7.php:345
68
- msgid "Your message was sent successfully. Thanks."
69
- msgstr "Vaše sproročilo je bilo uspešno poslano. Hvala."
70
-
71
- #: contact-form-7/wp-contact-form-7.php:347
72
- msgid "Failed to send your message. Please try later or contact administrator by other way."
73
- msgstr "Med pošiljanjem sporočila je prišlo do napake. Prosimo poskustite kasnjeje ali pa kontaktirate administratorja strani drugače."
74
-
75
- #: contact-form-7/wp-contact-form-7.php:349
76
- msgid "Validation errors occurred. Please confirm the fields and submit it again."
77
- msgstr "Obrazec je neveljaven. Prosimo preverite vsebino polij."
78
-
79
- #: contact-form-7/wp-contact-form-7.php:351
80
- msgid "Email address seems invalid."
81
- msgstr "Vaš E-naslov vsebuje nedovoljene znake."
82
-
83
- #: contact-form-7/wp-contact-form-7.php:353
84
- msgid "Please fill the required field."
85
- msgstr "Prosimo, da izpolnite vsa obvezna pojla."
86
-
87
- #: contact-form-7/wp-contact-form-7.php:355
88
- msgid "Your entered code is incorrect."
89
- msgstr "Vnešana koda je napačna."
90
-
91
- #: contact-form-7/includes/admin-panel.php:19
92
- #: contact-form-7/includes/admin-panel.php:22
93
- msgid "Add new"
94
- msgstr "Dodaj nov obrazec"
95
-
96
- #: contact-form-7/includes/admin-panel.php:34
97
- msgid "Title"
98
- msgstr "Naslov"
99
-
100
- #: contact-form-7/includes/admin-panel.php:39
101
- msgid "Copy and paste this code into your post content."
102
- msgstr "Kopirajte in prilepite to besedilo v sporočilo."
103
-
104
- #: contact-form-7/includes/admin-panel.php:45
105
- msgid "Form content"
106
- msgstr "Vsebina obrazca"
107
-
108
- #: contact-form-7/includes/admin-panel.php:60
109
- msgid "Mail template"
110
- msgstr "Predlagano besedilo e-pošte"
111
-
112
- #: contact-form-7/includes/admin-panel.php:61
113
- msgid "Subject field:"
114
- msgstr "Naslov teme:"
115
-
116
- #: contact-form-7/includes/admin-panel.php:63
117
- msgid "Sender field:"
118
- msgstr "Pošiljatelj:"
119
-
120
- #: contact-form-7/includes/admin-panel.php:65
121
- msgid "Message body:"
122
- msgstr "Telo sporočila:"
123
-
124
- #: contact-form-7/includes/admin-panel.php:69
125
- msgid "Options"
126
- msgstr "Možnosti"
127
-
128
- #: contact-form-7/includes/admin-panel.php:70
129
- msgid "Recipient address:"
130
- msgstr "Naslov prejemnika:"
131
-
132
- #: contact-form-7/includes/admin-panel.php:75
133
- msgid "Save"
134
- msgstr "Shrani"
135
-
136
- #: contact-form-7/includes/admin-panel.php:82
137
- msgid "Delete this contact form"
138
- msgstr "Izbriši ta kontaktni obrazec"
139
-
140
- #: contact-form-7/includes/admin-panel.php:83
141
- msgid ""
142
- "You are about to delete this contact form.\n"
143
- " 'Cancel' to stop, 'OK' to delete."
144
- msgstr ""
145
- "Izbrisali boste ta kontaktni formular.\n"
146
- " 'Prekliči' za prekinitev in 'OK' za nadaljevanje."
147
-
148
- #: contact-form-7/includes/admin-panel.php:137
149
- msgid "Akismet"
150
- msgstr "Akismet"
151
-
152
- #: contact-form-7/includes/admin-panel.php:138
153
- msgid "Check this field as sender&#39;s name"
154
- msgstr "To polje vsebuje pošiljateljevo ime. Preveri za spam."
155
-
156
- #: contact-form-7/includes/admin-panel.php:139
157
- msgid "Check this field as sender&#39;s email"
158
- msgstr "To polje vsebuje pošiljateljev e-naslov. Preveri za spam."
159
-
160
- #: contact-form-7/includes/admin-panel.php:140
161
- msgid "Check this field as sender&#39;s URL"
162
- msgstr "To polje vsebuje naslov pošiljateljeve spletne strani. Preveri za spam."
163
-
164
- #: contact-form-7/includes/admin-panel.php:141
165
- msgid "Don&#39;t check this field with Akismet"
166
- msgstr "Ne preveri tega polja z orodjem Askimet - preverjalnik za spam."
167
-
168
- #: contact-form-7/includes/admin-panel.php:148
169
- #: contact-form-7/includes/admin-panel.php:161
170
- #: contact-form-7/includes/admin-panel.php:194
171
- msgid "Default value"
172
- msgstr "Privzeta vrednost"
173
-
174
- #: contact-form-7/includes/admin-panel.php:169
175
- msgid "Choices"
176
- msgstr "Izbira"
177
-
178
- #: contact-form-7/includes/admin-panel.php:170
179
- msgid "* One choice per line."
180
- msgstr "* Ena možnost izbire na vrstico"
181
-
182
- #: contact-form-7/includes/admin-panel.php:178
183
- msgid "Foreground color"
184
- msgstr "Barva ospredja"
185
-
186
- #: contact-form-7/includes/admin-panel.php:179
187
- msgid "Background color"
188
- msgstr "Brava ozadja"
189
-
190
- #: contact-form-7/includes/admin-panel.php:180
191
- msgid "Image size"
192
- msgstr "Velikost slike"
193
-
194
- #: contact-form-7/includes/admin-panel.php:182
195
- msgid "Small"
196
- msgstr "majhna"
197
-
198
- #: contact-form-7/includes/admin-panel.php:183
199
- msgid "Medium"
200
- msgstr "srednja "
201
-
202
- #: contact-form-7/includes/admin-panel.php:184
203
- msgid "Large"
204
- msgstr "velika"
205
-
206
- #: contact-form-7/includes/admin-panel.php:199
207
- msgid "Label"
208
- msgstr "Oznaka"
209
-
210
- #: contact-form-7/includes/admin-panel.php:206
211
- msgid "Insert"
212
- msgstr "Vstavi"
213
-
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
languages/wpcf7-sq.po DELETED
@@ -1,305 +0,0 @@
1
- msgid ""
2
- msgstr ""
3
- "Project-Id-Version: wpcf7-lv_LV\n"
4
- "POT-Creation-Date: \n"
5
- "PO-Revision-Date: 2008-11-02 21:09+0900\n"
6
- "Last-Translator: Takayuki Miyoshi <takayukister@gmail.com>\n"
7
- "Language-Team: Kleofass.lv <spam@kleofass.lv>\n"
8
- "MIME-Version: 1.0\n"
9
- "Content-Type: text/plain; charset=utf-8\n"
10
- "Content-Transfer-Encoding: 8bit\n"
11
- "X-Poedit-Language: Latvian\n"
12
- "X-Poedit-Country: LATVIA\n"
13
- "X-Poedit-SourceCharset: utf-8\n"
14
-
15
- #: contact-form-7/wp-contact-form-7.php:271
16
- msgid "Contact form"
17
- msgstr "Form Kontakti"
18
-
19
- #: contact-form-7/wp-contact-form-7.php:356
20
- #: contact-form-7/includes/admin-panel.php:5
21
- msgid "Contact Form 7"
22
- msgstr "Form Kontakti 7"
23
-
24
- #: contact-form-7/wp-contact-form-7.php:372
25
- msgid "optional"
26
- msgstr "opsionale"
27
-
28
- #: contact-form-7/wp-contact-form-7.php:373
29
- msgid "Generate Tag"
30
- msgstr "Gjenero Etiketë"
31
-
32
- #: contact-form-7/wp-contact-form-7.php:374
33
- msgid "Text field"
34
- msgstr "Fusha e tekstit"
35
-
36
- #: contact-form-7/wp-contact-form-7.php:375
37
- msgid "Email field"
38
- msgstr "Fusha e tekstit"
39
-
40
- #: contact-form-7/wp-contact-form-7.php:376
41
- msgid "Text area"
42
- msgstr "Hapësira e tekstit"
43
-
44
- #: contact-form-7/wp-contact-form-7.php:377
45
- msgid "Drop-down menu"
46
- msgstr "Menu Drop-Down"
47
-
48
- #: contact-form-7/wp-contact-form-7.php:378
49
- msgid "Checkboxes"
50
- msgstr "Kuti Zgjedhje"
51
-
52
- #: contact-form-7/wp-contact-form-7.php:379
53
- msgid "Radio buttons"
54
- msgstr "Butona Radio"
55
-
56
- #: contact-form-7/wp-contact-form-7.php:380
57
- msgid "Acceptance"
58
- msgstr "Pranim"
59
-
60
- #: contact-form-7/wp-contact-form-7.php:381
61
- msgid "Make this checkbox checked by default?"
62
- msgstr "Bëje këtë kuti te zgjedhur që në fillim?"
63
-
64
- #: contact-form-7/wp-contact-form-7.php:382
65
- msgid "Make this checkbox work inversely?"
66
- msgstr "Bëje këte kuti te punojë në të kundërt?"
67
-
68
- #: contact-form-7/wp-contact-form-7.php:383
69
- msgid "* That means visitor who accepts the term unchecks it."
70
- msgstr "* Kjo do të thotë që vizitori që pranon ktë term nuk e zgjedh atë"
71
-
72
- #: contact-form-7/wp-contact-form-7.php:384
73
- msgid "CAPTCHA"
74
- msgstr "CAPTCHA"
75
-
76
- #: contact-form-7/wp-contact-form-7.php:385
77
- msgid "Submit button"
78
- msgstr "Butoni i Pranimit"
79
-
80
- #: contact-form-7/wp-contact-form-7.php:386
81
- msgid "Name"
82
- msgstr "Emri"
83
-
84
- #: contact-form-7/wp-contact-form-7.php:387
85
- msgid "Required field?"
86
- msgstr "Fusha të domosdoshme"
87
-
88
- #: contact-form-7/wp-contact-form-7.php:388
89
- msgid "Allow multiple selections?"
90
- msgstr "Lejo zgjedhje të shumta"
91
-
92
- #: contact-form-7/wp-contact-form-7.php:389
93
- msgid "Insert a blank item as the first option?"
94
- msgstr "Vendos një gjë bosh si opsionin e parë?"
95
-
96
- #: contact-form-7/wp-contact-form-7.php:390
97
- msgid "Make checkboxes exclusive?"
98
- msgstr "Beji kutitë e zgjedhjeve eksluzive?"
99
-
100
- #: contact-form-7/wp-contact-form-7.php:391
101
- msgid "Choices"
102
- msgstr "Zgjedhje"
103
-
104
- #: contact-form-7/wp-contact-form-7.php:392
105
- msgid "Label"
106
- msgstr "Etiketë"
107
-
108
- #: contact-form-7/wp-contact-form-7.php:393
109
- msgid "Default value"
110
- msgstr "Vlera fillestare"
111
-
112
- #: contact-form-7/wp-contact-form-7.php:394
113
- msgid "Akismet"
114
- msgstr "Akismet"
115
-
116
- #: contact-form-7/wp-contact-form-7.php:395
117
- msgid "This field requires author's name"
118
- msgstr "Kjo fushë kërkon emrin e autorit"
119
-
120
- #: contact-form-7/wp-contact-form-7.php:396
121
- msgid "This field requires author's URL"
122
- msgstr "Kjo fushë kërkon URL-në e autorit"
123
-
124
- #: contact-form-7/wp-contact-form-7.php:397
125
- msgid "This field requires author's email address"
126
- msgstr "Kjo fushë kërkon adresen e autorit"
127
-
128
- #: contact-form-7/wp-contact-form-7.php:398
129
- msgid "Copy and paste this code into the form"
130
- msgstr "Kopjo dhe ngjit këte kod tek forma"
131
-
132
- #: contact-form-7/wp-contact-form-7.php:399
133
- msgid "Foreground color"
134
- msgstr "Ngjyra e Forgroundit"
135
-
136
- #: contact-form-7/wp-contact-form-7.php:400
137
- msgid "Background color"
138
- msgstr "Ngjyra e Backgroundit"
139
-
140
- #: contact-form-7/wp-contact-form-7.php:401
141
- msgid "Image size"
142
- msgstr "Madhësia e imazhit"
143
-
144
- #: contact-form-7/wp-contact-form-7.php:402
145
- msgid "Small"
146
- msgstr "E vogël"
147
-
148
- #: contact-form-7/wp-contact-form-7.php:403
149
- msgid "Medium"
150
- msgstr "Mesatare"
151
-
152
- #: contact-form-7/wp-contact-form-7.php:404
153
- msgid "Large"
154
- msgstr "E madhe"
155
-
156
- #: contact-form-7/wp-contact-form-7.php:405
157
- msgid "Image settings"
158
- msgstr "Konfigurimi i Imazhit"
159
-
160
- #: contact-form-7/wp-contact-form-7.php:406
161
- msgid "Input field settings"
162
- msgstr "Konfigurimi i Fushave Te Vendosjes"
163
-
164
- #: contact-form-7/wp-contact-form-7.php:407
165
- msgid "For image"
166
- msgstr "Për Imazh"
167
-
168
- #: contact-form-7/wp-contact-form-7.php:408
169
- msgid "For input field"
170
- msgstr "Per fushen qe do vendosi"
171
-
172
- #: contact-form-7/wp-contact-form-7.php:409
173
- msgid "* One choice per line."
174
- msgstr "* Një zgjedhje për cdo rresht"
175
-
176
- #: contact-form-7/wp-contact-form-7.php:428
177
- msgid "Contact form created."
178
- msgstr "Forma e Kontaktit u krijua"
179
-
180
- #: contact-form-7/wp-contact-form-7.php:431
181
- msgid "Contact form saved."
182
- msgstr "Forma e kontaktit u ruajt"
183
-
184
- #: contact-form-7/wp-contact-form-7.php:434
185
- msgid "Contact form deleted."
186
- msgstr "Forma e kontaktit u fshi"
187
-
188
- #: contact-form-7/wp-contact-form-7.php:441
189
- msgid "Untitled"
190
- msgstr "Pa Titull"
191
-
192
- #: contact-form-7/wp-contact-form-7.php:465
193
- msgid "Your Name"
194
- msgstr "Emri Jot"
195
-
196
- #: contact-form-7/wp-contact-form-7.php:465
197
- #: contact-form-7/wp-contact-form-7.php:467
198
- msgid "(required)"
199
- msgstr "(e domosdoshme)"
200
-
201
- #: contact-form-7/wp-contact-form-7.php:467
202
- msgid "Your Email"
203
- msgstr "Adresa Jote"
204
-
205
- #: contact-form-7/wp-contact-form-7.php:469
206
- msgid "Subject"
207
- msgstr "Subjekti"
208
-
209
- #: contact-form-7/wp-contact-form-7.php:471
210
- msgid "Your Message"
211
- msgstr "Mesazhi Juaj"
212
-
213
- #: contact-form-7/wp-contact-form-7.php:473
214
- #: contact-form-7/wp-contact-form-7.php:956
215
- msgid "Send"
216
- msgstr "Dergo"
217
-
218
- #: contact-form-7/wp-contact-form-7.php:502
219
- msgid "Your message was sent successfully. Thanks."
220
- msgstr "Mesazhi juaj u dërgua me sukses. Faleminderit"
221
-
222
- #: contact-form-7/wp-contact-form-7.php:504
223
- msgid "Failed to send your message. Please try later or contact administrator by other way."
224
- msgstr "Gabim në dërgimin e mesazhit tuaj. Ju lutem provojeni përsëri ose kontaktoni administratorin"
225
-
226
- #: contact-form-7/wp-contact-form-7.php:506
227
- msgid "Validation errors occurred. Please confirm the fields and submit it again."
228
- msgstr "Disa gabime ndodhën. Ju lutem konfirmoni të gjitha fushat dhe provojeni përsëri"
229
-
230
- #: contact-form-7/wp-contact-form-7.php:508
231
- msgid "Please accept the terms to proceed."
232
- msgstr "Ju lutem pranoni rregullat për të vazhduar"
233
-
234
- #: contact-form-7/wp-contact-form-7.php:510
235
- msgid "Email address seems invalid."
236
- msgstr "Adresa e emailit nuk është e sakt"
237
-
238
- #: contact-form-7/wp-contact-form-7.php:512
239
- msgid "Please fill the required field."
240
- msgstr "Ju lutem plotësoni fushat e domosdoshme"
241
-
242
- #: contact-form-7/wp-contact-form-7.php:514
243
- msgid "Your entered code is incorrect."
244
- msgstr "Kodi që futët është gabim"
245
-
246
- #: contact-form-7/includes/admin-panel.php:15
247
- msgid "Add new"
248
- msgstr "Shto të Re"
249
-
250
- #: contact-form-7/includes/admin-panel.php:28
251
- msgid "Copy and paste this code into your post content."
252
- msgstr "Kopjo dhe ngjit këtë kod në përmbajtjen e postimit tënd"
253
-
254
- #: contact-form-7/includes/admin-panel.php:33
255
- msgid "Form"
256
- msgstr "Formë"
257
-
258
- #: contact-form-7/includes/admin-panel.php:37
259
- msgid "Mail"
260
- msgstr "Email"
261
-
262
- #: contact-form-7/includes/admin-panel.php:39
263
- #: contact-form-7/includes/admin-panel.php:60
264
- msgid "To:"
265
- msgstr "Për"
266
-
267
- #: contact-form-7/includes/admin-panel.php:43
268
- #: contact-form-7/includes/admin-panel.php:64
269
- msgid "From:"
270
- msgstr "Nga:"
271
-
272
- #: contact-form-7/includes/admin-panel.php:47
273
- #: contact-form-7/includes/admin-panel.php:68
274
- msgid "Subject:"
275
- msgstr "Subjekti"
276
-
277
- #: contact-form-7/includes/admin-panel.php:51
278
- #: contact-form-7/includes/admin-panel.php:72
279
- msgid "Message body:"
280
- msgstr "Mesazhi"
281
-
282
- #: contact-form-7/includes/admin-panel.php:56
283
- msgid "Mail (2)"
284
- msgstr "Email (2)"
285
-
286
- #: contact-form-7/includes/admin-panel.php:58
287
- msgid "Use mail (2)"
288
- msgstr "Përdor email (2)"
289
-
290
- #: contact-form-7/includes/admin-panel.php:80
291
- msgid "Save"
292
- msgstr "Ruaj"
293
-
294
- #: contact-form-7/includes/admin-panel.php:86
295
- msgid "Delete this contact form"
296
- msgstr "Fshijë këte form kontakti"
297
-
298
- #: contact-form-7/includes/admin-panel.php:87
299
- msgid ""
300
- "You are about to delete this contact form.\n"
301
- " 'Cancel' to stop, 'OK' to delete."
302
- msgstr ""
303
- "Jeni duke fshirë këtë form kontakti.\n"
304
- " 'Anullo' ose 'OK' per ta fshirë"
305
-
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
languages/wpcf7-sr_RS.po DELETED
@@ -1,858 +0,0 @@
1
- msgid ""
2
- msgstr ""
3
- "Project-Id-Version: \n"
4
- "Report-Msgid-Bugs-To: \n"
5
- "POT-Creation-Date: 2010-07-30 19:02+0200\n"
6
- "PO-Revision-Date: \n"
7
- "Last-Translator: Takayuki Miyoshi <takayukister@gmail.com>\n"
8
- "Language-Team: Serbian <gnom@prevod.org>\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: Serbian\n"
13
-
14
- #: ../includes/functions.php:46
15
- #: ../includes/functions.php:48
16
- msgid "(required)"
17
- msgstr "(обавезно)"
18
-
19
- #: ../admin/edit.php:342
20
- msgid "(select language)"
21
- msgstr "(изаберите језик)"
22
-
23
- #: ../modules/select.php:181
24
- #: ../modules/checkbox.php:224
25
- msgid "* One choice per line."
26
- msgstr "* Један избор у реду."
27
-
28
- #: ../modules/acceptance.php:129
29
- msgid "* That means visitor who accepts the term unchecks it."
30
- msgstr "* Ово значи да посетилац који прхвата услове треба да га онемогући."
31
-
32
- #: ../modules/quiz.php:215
33
- msgid "* quiz|answer (e.g. 1+1=?|2)"
34
- msgstr "* квиз/питање (нпр. 1+1=?/2)"
35
-
36
- #: ../admin/edit.php:12
37
- msgid "<strong>The database table for Contact Form 7 does not exist.</strong>"
38
- msgstr "<strong>У бази не постоји таблица за Contact Form 7.</strong>"
39
-
40
- #: ../admin/edit.php:9
41
- #, php-format
42
- 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."
43
- msgstr "<strong>У бази не постоји таблица за Contact Form 7.</strong> Морате <a href=\"%s\">направити таблицу</a> да би проширење могло да функционише."
44
-
45
- #: ../modules/file.php:259
46
- msgid "Acceptable file types"
47
- msgstr "Дозвољене врсте датотека"
48
-
49
- #: ../modules/acceptance.php:104
50
- msgid "Acceptance"
51
- msgstr "Прихватање"
52
-
53
- #: ../admin/edit.php:334
54
- #: ../admin/edit.php:347
55
- msgid "Add New"
56
- msgstr "Додај нови"
57
-
58
- #: ../admin/edit.php:45
59
- msgid "Add new"
60
- msgstr "Додај нови"
61
-
62
- #: ../admin/edit.php:285
63
- msgid "Additional Settings"
64
- msgstr "Допунске поставке"
65
-
66
- #: ../admin/edit.php:152
67
- #: ../admin/edit.php:219
68
- msgid "Additional headers:"
69
- msgstr "Допунска заглавља:"
70
-
71
- #: ../includes/functions.php:129
72
- msgid "Afrikaans"
73
- msgstr "афрички"
74
-
75
- #: ../modules/text.php:184
76
- msgid "Akismet"
77
- msgstr "Акисмет"
78
-
79
- #: ../includes/functions.php:16
80
- msgid "Akismet judged the sending activity as spamming"
81
- msgstr "Акисмет је акцију слања поруке оценио као слање нежељене поште"
82
-
83
- #: ../includes/functions.php:130
84
- msgid "Albanian"
85
- msgstr "албански"
86
-
87
- #: ../modules/select.php:185
88
- msgid "Allow multiple selections?"
89
- msgstr "Омогући вишеструке изборе?"
90
-
91
- #: ../modules/file.php:266
92
- msgid "And, put this code into the File Attachments field below."
93
- msgstr "И уметните следећи кôд у поље „Датотека прилога“ испод."
94
-
95
- #: ../modules/select.php:193
96
- #: ../modules/text.php:199
97
- #: ../modules/textarea.php:163
98
- #: ../modules/checkbox.php:239
99
- msgid "And, put this code into the Mail fields below."
100
- msgstr "И уметните кôд у поље „Пошта“ испод."
101
-
102
- #: ../includes/functions.php:131
103
- msgid "Arabic"
104
- msgstr "арапски"
105
-
106
- #: ../modules/captcha.php:232
107
- msgid "Background color"
108
- msgstr "Боја позадине"
109
-
110
- #: ../includes/functions.php:132
111
- msgid "Bangla"
112
- msgstr "бенгалски"
113
-
114
- #: ../includes/functions.php:133
115
- msgid "Bosnian"
116
- msgstr "бошњачки"
117
-
118
- #: ../includes/functions.php:134
119
- msgid "Brazilian Portuguese"
120
- msgstr "бразилски португалски"
121
-
122
- #: ../includes/functions.php:135
123
- msgid "Bulgarian"
124
- msgstr "бугарски"
125
-
126
- #: ../modules/captcha.php:200
127
- msgid "CAPTCHA"
128
- msgstr "CAPTCHA"
129
-
130
- #: ../includes/functions.php:136
131
- msgid "Catalan"
132
- msgstr "каталонски"
133
-
134
- #: ../modules/checkbox.php:182
135
- msgid "Checkboxes"
136
- msgstr "Кућице за потврду"
137
-
138
- #: ../includes/functions.php:137
139
- msgid "Chinese (Simplified)"
140
- msgstr "кинески (поједностављени)"
141
-
142
- #: ../includes/functions.php:138
143
- msgid "Chinese (Traditional)"
144
- msgstr "кинески (традиционални)"
145
-
146
- #: ../modules/select.php:179
147
- #: ../modules/checkbox.php:222
148
- msgid "Choices"
149
- msgstr "Избори"
150
-
151
- #: ../admin/admin.php:120
152
- msgid "Contact"
153
- msgstr "Контакт"
154
-
155
- #: ../admin/edit.php:17
156
- #: ../admin/edit.php:30
157
- #: ../admin/admin.php:120
158
- msgid "Contact Form 7"
159
- msgstr "Contact Form 7"
160
-
161
- #: ../admin/admin.php:358
162
- msgid "Contact Form 7 needs your support. Please donate today."
163
- msgstr "Потребна је Ваша подршка за Contact Form 7. Молим Вас да приложите донацију."
164
-
165
- #: ../admin/admin.php:261
166
- msgid "Contact form"
167
- msgstr "Формулар за контакт"
168
-
169
- #: ../admin/admin.php:312
170
- msgid "Contact form created."
171
- msgstr "Формулар за контакт је направљен."
172
-
173
- #: ../admin/admin.php:318
174
- msgid "Contact form deleted."
175
- msgstr "Формулар за контакт је уклоњен."
176
-
177
- #: ../admin/admin.php:315
178
- msgid "Contact form saved."
179
- msgstr "Формулар за контакт је сачуван."
180
-
181
- #: ../admin/admin.php:292
182
- msgid "Contactform7.com"
183
- msgstr "Contactform7.com"
184
-
185
- #: ../admin/edit.php:82
186
- msgid "Copy"
187
- msgstr "Копирај"
188
-
189
- #: ../modules/select.php:191
190
- #: ../modules/text.php:197
191
- #: ../modules/file.php:264
192
- #: ../modules/quiz.php:220
193
- #: ../modules/textarea.php:161
194
- #: ../modules/submit.php:89
195
- #: ../modules/acceptance.php:134
196
- #: ../modules/checkbox.php:237
197
- #: ../modules/captcha.php:263
198
- msgid "Copy this code and paste it into the form left."
199
- msgstr "Копирајте овај кôд и уметните га у леви формулар."
200
-
201
- #: ../admin/edit.php:67
202
- msgid "Copy this code and paste it into your post, page or text widget content."
203
- msgstr "Копирајте овај кôд и уметните га у Ваш чланак, страницу или садржај текстуалног виџета."
204
-
205
- #: ../includes/functions.php:139
206
- msgid "Croatian"
207
- msgstr "хрватски"
208
-
209
- #: ../includes/functions.php:140
210
- msgid "Czech"
211
- msgstr "чешки"
212
-
213
- #: ../includes/functions.php:141
214
- msgid "Danish"
215
- msgstr "дански"
216
-
217
- #: ../admin/admin.php:321
218
- msgid "Database table created."
219
- msgstr "У бази је направљена таблица."
220
-
221
- #: ../modules/text.php:193
222
- #: ../modules/textarea.php:157
223
- msgid "Default value"
224
- msgstr "Подразумевана вредност"
225
-
226
- #: ../admin/edit.php:87
227
- msgid "Delete"
228
- msgstr "Уклони"
229
-
230
- #: ../admin/admin.php:294
231
- msgid "Docs"
232
- msgstr "Документација"
233
-
234
- #: ../admin/admin.php:365
235
- msgid "Donate"
236
- msgstr "Донација"
237
-
238
- #: ../modules/select.php:156
239
- msgid "Drop-down menu"
240
- msgstr "Падајући мени"
241
-
242
- #: ../includes/functions.php:142
243
- msgid "Dutch"
244
- msgstr "холаднски"
245
-
246
- #: ../admin/admin.php:123
247
- msgid "Edit"
248
- msgstr "Уреди"
249
-
250
- #: ../admin/admin.php:123
251
- msgid "Edit Contact Forms"
252
- msgstr "Уреди формуларе за контакт"
253
-
254
- #: ../includes/functions.php:32
255
- msgid "Email address seems invalid."
256
- msgstr "Изгледа да је адреса е-поште неисправна."
257
-
258
- #: ../includes/functions.php:31
259
- msgid "Email address that sender entered is invalid"
260
- msgstr "Адреса е-поште коју је пошиљалац унео није исправна"
261
-
262
- #: ../modules/text.php:142
263
- msgid "Email field"
264
- msgstr "Поље е-поште"
265
-
266
- #: ../includes/functions.php:143
267
- msgid "English"
268
- msgstr "енглески"
269
-
270
- #: ../includes/functions.php:144
271
- msgid "Estonian"
272
- msgstr "естонски"
273
-
274
- #: ../admin/admin.php:296
275
- msgid "FAQ"
276
- msgstr "ЧПП"
277
-
278
- #: ../admin/admin.php:324
279
- msgid "Failed to create database table."
280
- msgstr "Неуспешно прављење таблице у бази."
281
-
282
- #: ../includes/functions.php:12
283
- #: ../includes/functions.php:17
284
- msgid "Failed to send your message. Please try later or contact administrator by other way."
285
- msgstr "Слање Ваше поруке није успело. Молим Вас да покушате касније или да контактирате администратора на неки други начин."
286
-
287
- #: ../modules/file.php:207
288
- msgid "Failed to upload file."
289
- msgstr "Слање датотеке није успело."
290
-
291
- #: ../modules/file.php:222
292
- msgid "Failed to upload file. Error occurred."
293
- msgstr "Неуспешно слање датотеке. Дошло је до грешке."
294
-
295
- #: ../admin/edit.php:157
296
- #: ../admin/edit.php:224
297
- msgid "File attachments:"
298
- msgstr "Приложене датотеке:"
299
-
300
- #: ../modules/file.php:256
301
- msgid "File size limit"
302
- msgstr "Максимална величина датотеке"
303
-
304
- #: ../modules/file.php:233
305
- msgid "File upload"
306
- msgstr "Слање датотеке"
307
-
308
- #: ../includes/functions.php:145
309
- msgid "Finnish"
310
- msgstr "фински"
311
-
312
- #: ../modules/captcha.php:264
313
- msgid "For image"
314
- msgstr "За слику"
315
-
316
- #: ../modules/captcha.php:266
317
- msgid "For input field"
318
- msgstr "За поље за унос"
319
-
320
- #: ../modules/captcha.php:229
321
- msgid "Foreground color"
322
- msgstr "Боја исписа"
323
-
324
- #: ../admin/edit.php:104
325
- msgid "Form"
326
- msgstr "Формулар"
327
-
328
- #: ../includes/functions.php:146
329
- msgid "French"
330
- msgstr "француски"
331
-
332
- #: ../admin/edit.php:140
333
- #: ../admin/edit.php:207
334
- msgid "From:"
335
- msgstr "Од:"
336
-
337
- #: ../includes/functions.php:62
338
- #, php-format
339
- msgid "From: %s"
340
- msgstr "Од: %s"
341
-
342
- #: ../includes/functions.php:147
343
- msgid "Galician"
344
- msgstr "галичански"
345
-
346
- #: ../admin/admin.php:162
347
- msgid "Generate Tag"
348
- msgstr "Генериши таг"
349
-
350
- #: ../includes/functions.php:148
351
- msgid "Georgian"
352
- msgstr "џорџијски"
353
-
354
- #: ../includes/functions.php:149
355
- msgid "German"
356
- msgstr "немачки"
357
-
358
- #: ../includes/functions.php:150
359
- msgid "Greek"
360
- msgstr "грчки"
361
-
362
- #: ../includes/functions.php:151
363
- msgid "Hebrew"
364
- msgstr "хебрејски"
365
-
366
- #: ../admin/admin.php:164
367
- msgid "Hide"
368
- msgstr "Сакриј"
369
-
370
- #: ../includes/functions.php:152
371
- msgid "Hindi"
372
- msgstr "хинди"
373
-
374
- #: ../includes/functions.php:153
375
- msgid "Hungarian"
376
- msgstr "мађарски"
377
-
378
- #: ../modules/captcha.php:218
379
- msgid "Image settings"
380
- msgstr "Поставке слике"
381
-
382
- #: ../modules/captcha.php:236
383
- msgid "Image size"
384
- msgstr "Величина слике"
385
-
386
- #: ../includes/functions.php:154
387
- msgid "Indonesian"
388
- msgstr "индонежански"
389
-
390
- #: ../modules/captcha.php:244
391
- msgid "Input field settings"
392
- msgstr "Поставке поља за унос"
393
-
394
- #: ../modules/select.php:186
395
- msgid "Insert a blank item as the first option?"
396
- msgstr "Уметни празну ставку као прву опцију?"
397
-
398
- #: ../includes/functions.php:155
399
- msgid "Italian"
400
- msgstr "италијански"
401
-
402
- #: ../includes/functions.php:156
403
- msgid "Japanese"
404
- msgstr "јапански"
405
-
406
- #: ../includes/functions.php:157
407
- msgid "Korean"
408
- msgstr "корејски"
409
-
410
- #: ../modules/submit.php:82
411
- msgid "Label"
412
- msgstr "Ознака"
413
-
414
- #: ../modules/captcha.php:239
415
- msgid "Large"
416
- msgstr "Велико"
417
-
418
- #: ../includes/functions.php:158
419
- msgid "Latvian"
420
- msgstr "летонски"
421
-
422
- #: ../includes/functions.php:159
423
- msgid "Lithuanian"
424
- msgstr "литвански"
425
-
426
- #: ../admin/edit.php:128
427
- msgid "Mail"
428
- msgstr "Пошта"
429
-
430
- #: ../admin/edit.php:188
431
- msgid "Mail (2)"
432
- msgstr "Пошта (2)"
433
-
434
- #: ../modules/checkbox.php:231
435
- msgid "Make checkboxes exclusive?"
436
- msgstr "Учини кућице за потврду искључивим?"
437
-
438
- #: ../modules/acceptance.php:127
439
- msgid "Make this checkbox checked by default?"
440
- msgstr "Учини ову кућицу за потврду подразумеваним?"
441
-
442
- #: ../modules/acceptance.php:128
443
- msgid "Make this checkbox work inversely?"
444
- msgstr "Учини да ова кућица за избор инверзно функционише?"
445
-
446
- #: ../includes/functions.php:160
447
- msgid "Malayalam"
448
- msgstr "малезијски"
449
-
450
- #: ../modules/captcha.php:238
451
- msgid "Medium"
452
- msgstr "Средње"
453
-
454
- #: ../includes/functions.php:64
455
- msgid "Message Body:"
456
- msgstr "Садржај поруке:"
457
-
458
- #: ../admin/edit.php:172
459
- #: ../admin/edit.php:239
460
- #: ../includes/functions.php:78
461
- msgid "Message body:"
462
- msgstr "Садржај поруке:"
463
-
464
- #: ../admin/edit.php:255
465
- msgid "Messages"
466
- msgstr "Поруке"
467
-
468
- #: ../modules/select.php:166
469
- #: ../modules/text.php:163
470
- #: ../modules/file.php:243
471
- #: ../modules/quiz.php:192
472
- #: ../modules/textarea.php:136
473
- #: ../modules/acceptance.php:113
474
- #: ../modules/checkbox.php:209
475
- #: ../modules/captcha.php:214
476
- msgid "Name"
477
- msgstr "Име"
478
-
479
- #: ../includes/functions.php:161
480
- msgid "Norwegian"
481
- msgstr "норвешки"
482
-
483
- #: ../modules/captcha.php:211
484
- msgid "Note: To use CAPTCHA, you need Really Simple CAPTCHA plugin installed."
485
- msgstr "Напомена: морате имати инсталирао проширење Really Simple CAPTCHA да би користили CAPCHA."
486
-
487
- #: ../admin/edit.php:337
488
- msgid "Or"
489
- msgstr "Или"
490
-
491
- #: ../includes/functions.php:162
492
- msgid "Persian"
493
- msgstr "персијски"
494
-
495
- #: ../includes/functions.php:27
496
- msgid "Please accept the terms to proceed."
497
- msgstr "Молим Вас да прихватите услове како би наставили даље."
498
-
499
- #: ../includes/functions.php:37
500
- msgid "Please fill the required field."
501
- msgstr "Молим Вас да попуните обавезна поља."
502
-
503
- #: ../includes/functions.php:163
504
- msgid "Polish"
505
- msgstr "пољски"
506
-
507
- #: ../includes/functions.php:164
508
- msgid "Portuguese"
509
- msgstr "португалски"
510
-
511
- #: ../modules/checkbox.php:228
512
- msgid "Put a label first, a checkbox last?"
513
- msgstr "Стави ознаку испред кућице за потврду?"
514
-
515
- #: ../modules/quiz.php:183
516
- msgid "Quiz"
517
- msgstr "Квиз"
518
-
519
- #: ../modules/quiz.php:213
520
- msgid "Quizzes"
521
- msgstr "Квизови"
522
-
523
- #: ../modules/checkbox.php:185
524
- msgid "Radio buttons"
525
- msgstr "Радио дугмад"
526
-
527
- #: ../modules/select.php:165
528
- #: ../modules/text.php:162
529
- #: ../modules/file.php:242
530
- #: ../modules/textarea.php:135
531
- #: ../modules/checkbox.php:206
532
- msgid "Required field?"
533
- msgstr "Обавезно поље?"
534
-
535
- #: ../includes/functions.php:166
536
- msgid "Romanian"
537
- msgstr "румунски"
538
-
539
- #: ../includes/functions.php:165
540
- msgid "Russian"
541
- msgstr "руски"
542
-
543
- #: ../admin/edit.php:75
544
- #: ../admin/edit.php:309
545
- msgid "Save"
546
- msgstr "Сачувај"
547
-
548
- #: ../includes/functions.php:54
549
- #: ../modules/submit.php:48
550
- msgid "Send"
551
- msgstr "Пошаљи"
552
-
553
- #: ../modules/quiz.php:172
554
- msgid "Sender doesn't enter the correct answer to the quiz"
555
- msgstr "Пошиљалац није унео тачан одговор на квиз питање"
556
-
557
- #: ../includes/functions.php:11
558
- msgid "Sender's message was failed to send"
559
- msgstr "Није успело слање поруке пошиљаоца"
560
-
561
- #: ../includes/functions.php:6
562
- msgid "Sender's message was sent successfully"
563
- msgstr "Порука пошиљаоца је успешно послата"
564
-
565
- #: ../includes/functions.php:167
566
- msgid "Serbian"
567
- msgstr "српски"
568
-
569
- #: ../admin/admin.php:280
570
- msgid "Settings"
571
- msgstr "Поставке"
572
-
573
- #: ../admin/admin.php:163
574
- msgid "Show"
575
- msgstr "Прикажи"
576
-
577
- #: ../includes/functions.php:168
578
- msgid "Slovak"
579
- msgstr "словачки"
580
-
581
- #: ../includes/functions.php:169
582
- msgid "Slovene"
583
- msgstr "словеначки"
584
-
585
- #: ../modules/captcha.php:237
586
- msgid "Small"
587
- msgstr "Мало"
588
-
589
- #: ../includes/functions.php:170
590
- msgid "Spanish"
591
- msgstr "шпански"
592
-
593
- #: ../includes/functions.php:50
594
- msgid "Subject"
595
- msgstr "Предмет"
596
-
597
- #: ../admin/edit.php:145
598
- #: ../admin/edit.php:212
599
- msgid "Subject:"
600
- msgstr "Предмет:"
601
-
602
- #: ../includes/functions.php:63
603
- #, php-format
604
- msgid "Subject: %s"
605
- msgstr "Предмет: %s"
606
-
607
- #: ../modules/submit.php:64
608
- msgid "Submit button"
609
- msgstr "Дугме за слање"
610
-
611
- #: ../admin/admin.php:298
612
- msgid "Support"
613
- msgstr "Подршка"
614
-
615
- #: ../includes/functions.php:171
616
- msgid "Swedish"
617
- msgstr "шведски"
618
-
619
- #: ../modules/textarea.php:126
620
- msgid "Text area"
621
- msgstr "Област за текст"
622
-
623
- #: ../modules/text.php:139
624
- msgid "Text field"
625
- msgstr "Текстуално поље"
626
-
627
- #: ../includes/functions.php:172
628
- msgid "Thai"
629
- msgstr "тајландски"
630
-
631
- #: ../modules/captcha.php:189
632
- msgid "The code that sender entered does not match the CAPTCHA"
633
- msgstr "Кôд који је унео пошиљалац не одговара CAPTCHA кôду"
634
-
635
- #: ../includes/functions.php:26
636
- msgid "There is a field of term that sender is needed to accept"
637
- msgstr "Постоји поље услова које пошиљалац мора да прихвати"
638
-
639
- #: ../includes/functions.php:36
640
- msgid "There is a field that sender is needed to fill in"
641
- msgstr "Постоји поље које пошиљалац мора да попуни"
642
-
643
- #: ../modules/captcha.php:302
644
- msgid "This contact form contains CAPTCHA fields, but the necessary libraries (GD and FreeType) are not available on your server."
645
- msgstr "Овај формулар за контакт садржи поља CAPCHA, али на серверу немате инсталиране потребне библиотеке (GD или FreeType)"
646
-
647
- #: ../modules/captcha.php:296
648
- #, php-format
649
- 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."
650
- msgstr "Овај формулар за контакт садржи CAPTCHA поља, али привремени директоријум за датотеке (%s) не постоји или није уписив. Можете направити директоријум или ручно променити права приступа."
651
-
652
- #: ../modules/icl.php:74
653
- 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."
654
- msgstr "Овај формулар за контакт садржи [icl] ознаке, али су оне превазиђене и више не функционишу у овом издању Contact Form 7. <a href=\"http://contactform7.com/2009/12/25/contact-form-in-your-language/#Creating_contact_form_in_different_languages\" target=\"_blank\">Погледајте једноставнији начин за прављење формулара за контакт на другим језицима</a>, што вам топло препоручујем."
655
-
656
- #: ../modules/file.php:291
657
- #, php-format
658
- 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."
659
- msgstr "Овај формулар за контакт садржи поље за слање датотеке, али привремени директоријум за датотеке (%s) не постоји или није уписив. Можете направити овај директоријум или му ручно променити права приступа."
660
-
661
- #: ../modules/text.php:187
662
- msgid "This field requires author's URL"
663
- msgstr "Ово поље захтева УРЛ аутора"
664
-
665
- #: ../modules/text.php:189
666
- msgid "This field requires author's email address"
667
- msgstr "Ово поље захтева адресу е-поште аутора"
668
-
669
- #: ../modules/text.php:186
670
- msgid "This field requires author's name"
671
- msgstr "Ово поље захтева име аутора"
672
-
673
- #: ../modules/file.php:217
674
- msgid "This file is too large."
675
- msgstr "Ова датотека је превелика."
676
-
677
- #: ../modules/file.php:212
678
- msgid "This file type is not allowed."
679
- msgstr "Ова врста датотеке није дозвољена."
680
-
681
- #: ../includes/functions.php:65
682
- #: ../includes/functions.php:79
683
- #, php-format
684
- msgid "This mail is sent via contact form on %1$s %2$s"
685
- msgstr "Ова порука је послата помоћу формулара за контакт на %1$s %2$s"
686
-
687
- #: ../modules/captcha.php:70
688
- msgid "To use CAPTCHA, you need <a href=\"http://wordpress.org/extend/plugins/really-simple-captcha/\">Really Simple CAPTCHA</a> plugin installed."
689
- msgstr "Да би користила CAPTCHA, морате имати инсталирано проширење <a href=\"http://wordpress.org/extend/plugins/really-simple-captcha/\">Really Simple CAPTCHA</a>."
690
-
691
- #: ../admin/edit.php:135
692
- #: ../admin/edit.php:202
693
- msgid "To:"
694
- msgstr "За:"
695
-
696
- #: ../includes/functions.php:173
697
- msgid "Turkish"
698
- msgstr "турски"
699
-
700
- #: ../includes/functions.php:174
701
- msgid "Ukrainian"
702
- msgstr "украјински"
703
-
704
- #: ../includes/classes.php:580
705
- msgid "Untitled"
706
- msgstr "Без наслова"
707
-
708
- #: ../modules/file.php:211
709
- msgid "Uploaded file is not allowed file type"
710
- msgstr "Послата датотека је недозвољене врсте"
711
-
712
- #: ../modules/file.php:216
713
- msgid "Uploaded file is too large"
714
- msgstr "Послада датотека је превелика"
715
-
716
- #: ../modules/file.php:221
717
- msgid "Uploading a file fails for PHP error"
718
- msgstr "Слање датотеке није успело због PHP грешке"
719
-
720
- #: ../modules/file.php:206
721
- msgid "Uploading a file fails for any reason"
722
- msgstr "Слање датотеке није успело из непознатог разлога"
723
-
724
- #: ../admin/edit.php:165
725
- #: ../admin/edit.php:232
726
- msgid "Use HTML content type"
727
- msgstr "Користи HTML врсту садржаја"
728
-
729
- #: ../admin/edit.php:194
730
- msgid "Use mail (2)"
731
- msgstr "Користи пошту (2)"
732
-
733
- #: ../admin/edit.php:333
734
- #, php-format
735
- msgid "Use the default language (%s)"
736
- msgstr "Користи подразумевани језик (%s)"
737
-
738
- #: ../includes/functions.php:21
739
- msgid "Validation errors occurred"
740
- msgstr "Дошло је до грешке при провери"
741
-
742
- #: ../includes/functions.php:22
743
- msgid "Validation errors occurred. Please confirm the fields and submit it again."
744
- msgstr "Дошло је до грешке при провери. Молим Вас да проверите поља и поново пошаљете поруку."
745
-
746
- #: ../includes/functions.php:175
747
- msgid "Vietnamese"
748
- msgstr "вијетнамски"
749
-
750
- #: ../modules/checkbox.php:229
751
- msgid "Wrap each item with <label> tag?"
752
- msgstr "Уоквири сваку ставку тагом <label>?"
753
-
754
- #: ../admin/edit.php:89
755
- msgid ""
756
- "You are about to delete this contact form.\n"
757
- " 'Cancel' to stop, 'OK' to delete."
758
- msgstr ""
759
- "Желите да уклоните овај формулар за контакт.\n"
760
- "Кликните на „Одустани“ за прекид, одн. „У реду“ за уклањање."
761
-
762
- #: ../includes/functions.php:48
763
- msgid "Your Email"
764
- msgstr "Ваша е-пошта"
765
-
766
- #: ../includes/functions.php:52
767
- msgid "Your Message"
768
- msgstr "Ваша порука"
769
-
770
- #: ../includes/functions.php:46
771
- msgid "Your Name"
772
- msgstr "Ваше име"
773
-
774
- #: ../modules/quiz.php:173
775
- msgid "Your answer is not correct."
776
- msgstr "Одговор није тачан."
777
-
778
- #: ../admin/admin.php:359
779
- msgid "Your contribution is needed for making this plugin better."
780
- msgstr "Да би ово проширење било још боље неопходна је Ваша помоћ."
781
-
782
- #: ../modules/captcha.php:190
783
- msgid "Your entered code is incorrect."
784
- msgstr "Унели сте погрешан кôд."
785
-
786
- #: ../includes/functions.php:7
787
- msgid "Your message was sent successfully. Thanks."
788
- msgstr "Ваша порука је успешно послата. Хвала."
789
-
790
- #: ../modules/file.php:256
791
- msgid "bytes"
792
- msgstr "бајтова"
793
-
794
- #: ../admin/admin.php:291
795
- msgid "http://contactform7.com/"
796
- msgstr "http://contactform7.com/"
797
-
798
- #: ../admin/admin.php:293
799
- msgid "http://contactform7.com/docs/"
800
- msgstr "http://contactform7.com/docs/"
801
-
802
- #: ../admin/admin.php:365
803
- msgid "http://contactform7.com/donate/"
804
- msgstr "http://contactform7.com/donate/"
805
-
806
- #: ../admin/admin.php:295
807
- msgid "http://contactform7.com/faq/"
808
- msgstr "http://contactform7.com/faq/"
809
-
810
- #: ../admin/admin.php:297
811
- msgid "http://contactform7.com/support/"
812
- msgstr "http://contactform7.com/support/"
813
-
814
- #: ../modules/select.php:171
815
- #: ../modules/select.php:174
816
- #: ../modules/text.php:168
817
- #: ../modules/text.php:171
818
- #: ../modules/text.php:176
819
- #: ../modules/text.php:179
820
- #: ../modules/text.php:184
821
- #: ../modules/text.php:193
822
- #: ../modules/file.php:248
823
- #: ../modules/file.php:251
824
- #: ../modules/file.php:256
825
- #: ../modules/file.php:259
826
- #: ../modules/quiz.php:197
827
- #: ../modules/quiz.php:200
828
- #: ../modules/quiz.php:205
829
- #: ../modules/quiz.php:208
830
- #: ../modules/textarea.php:141
831
- #: ../modules/textarea.php:144
832
- #: ../modules/textarea.php:149
833
- #: ../modules/textarea.php:152
834
- #: ../modules/textarea.php:157
835
- #: ../modules/submit.php:74
836
- #: ../modules/submit.php:77
837
- #: ../modules/submit.php:82
838
- #: ../modules/acceptance.php:118
839
- #: ../modules/acceptance.php:121
840
- #: ../modules/checkbox.php:214
841
- #: ../modules/checkbox.php:217
842
- #: ../modules/captcha.php:221
843
- #: ../modules/captcha.php:224
844
- #: ../modules/captcha.php:229
845
- #: ../modules/captcha.php:232
846
- #: ../modules/captcha.php:236
847
- #: ../modules/captcha.php:247
848
- #: ../modules/captcha.php:250
849
- #: ../modules/captcha.php:255
850
- #: ../modules/captcha.php:258
851
- msgid "optional"
852
- msgstr "опционо"
853
-
854
- #~ msgid "Delete this contact form"
855
- #~ msgstr "Iybriši ovu kontaktnu formu"
856
-
857
- #~ msgid "(You need WordPress 2.7 or greater to use this feature)"
858
- #~ msgstr "(Potreban WordPress 2.7 ili noviji za korištenje ove mogućnosti)"
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
languages/wpcf7-sv_SE.po DELETED
@@ -1,443 +0,0 @@
1
- msgid ""
2
- msgstr ""
3
- "Project-Id-Version: Contact Form 7\n"
4
- "Report-Msgid-Bugs-To: \n"
5
- "POT-Creation-Date: 2009-03-15 03:27+0900\n"
6
- "PO-Revision-Date: \n"
7
- "Last-Translator: Mattias Tengblad <mst@eyesx.com>\n"
8
- "Language-Team: WP-Support Sverige / Mattias Tengblad <info@wp-support.se / mst@eyesx.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: Swedish\n"
13
- "X-Poedit-Country: SWEDEN\n"
14
- "X-Poedit-SourceCharset: utf-8\n"
15
- "Plural-Forms: nplurals=2; plural=n != 1\n"
16
-
17
- #: contact-form-7/wp-contact-form-7.php:405
18
- msgid "Contact form"
19
- msgstr "Kontaktformulär"
20
-
21
- #: contact-form-7/wp-contact-form-7.php:593
22
- #: contact-form-7/includes/admin-panel.php:5
23
- msgid "Contact Form 7"
24
- msgstr "Contact Form 7"
25
-
26
- #: contact-form-7/wp-contact-form-7.php:616
27
- msgid "optional"
28
- msgstr "valfri"
29
-
30
- #: contact-form-7/wp-contact-form-7.php:617
31
- msgid "Generate Tag"
32
- msgstr "Generera formatering"
33
-
34
- #: contact-form-7/wp-contact-form-7.php:618
35
- msgid "Text field"
36
- msgstr "Textfält"
37
-
38
- #: contact-form-7/wp-contact-form-7.php:619
39
- msgid "Email field"
40
- msgstr "E-postfält"
41
-
42
- #: contact-form-7/wp-contact-form-7.php:620
43
- msgid "Text area"
44
- msgstr "Meddelandefält"
45
-
46
- #: contact-form-7/wp-contact-form-7.php:621
47
- msgid "Drop-down menu"
48
- msgstr "Rullgardinsmeny"
49
-
50
- #: contact-form-7/wp-contact-form-7.php:622
51
- msgid "Checkboxes"
52
- msgstr "Checkboxar"
53
-
54
- #: contact-form-7/wp-contact-form-7.php:623
55
- msgid "Radio buttons"
56
- msgstr "Radioknappar"
57
-
58
- #: contact-form-7/wp-contact-form-7.php:624
59
- msgid "Acceptance"
60
- msgstr "Godkännande"
61
-
62
- #: contact-form-7/wp-contact-form-7.php:625
63
- msgid "Make this checkbox checked by default?"
64
- msgstr "Skall denna checkbox vara ifylld som standard?"
65
-
66
- #: contact-form-7/wp-contact-form-7.php:626
67
- msgid "Make this checkbox work inversely?"
68
- msgstr "Gör så att denna checkbox måste avmarkeras?"
69
-
70
- #: contact-form-7/wp-contact-form-7.php:627
71
- msgid "* That means visitor who accepts the term unchecks it."
72
- msgstr "* Det betyder att besökare som accepterar villkoren måste avmarkera det."
73
-
74
- #: contact-form-7/wp-contact-form-7.php:628
75
- msgid "CAPTCHA"
76
- msgstr "CAPTCHA (Bildverifikation)"
77
-
78
- #: contact-form-7/wp-contact-form-7.php:629
79
- msgid "Quiz"
80
- msgstr "Antispam-fråga"
81
-
82
- #: contact-form-7/wp-contact-form-7.php:630
83
- msgid "Quizzes"
84
- msgstr "Antispam-frågor"
85
-
86
- #: contact-form-7/wp-contact-form-7.php:631
87
- msgid "* quiz|answer (e.g. 1+1=?|2)"
88
- msgstr "* fråga|svar (ex. 1+1=?|2)"
89
-
90
- #: contact-form-7/wp-contact-form-7.php:632
91
- msgid "File upload"
92
- msgstr "Filuppladdning"
93
-
94
- #: contact-form-7/wp-contact-form-7.php:633
95
- msgid "bytes"
96
- msgstr "bytes"
97
-
98
- #: contact-form-7/wp-contact-form-7.php:634
99
- msgid "Submit button"
100
- msgstr "Skicka-knapp"
101
-
102
- #: contact-form-7/wp-contact-form-7.php:635
103
- msgid "Name"
104
- msgstr "Namn"
105
-
106
- #: contact-form-7/wp-contact-form-7.php:636
107
- msgid "Required field?"
108
- msgstr "Obligatoriskt fält?"
109
-
110
- #: contact-form-7/wp-contact-form-7.php:637
111
- msgid "Allow multiple selections?"
112
- msgstr "Tillåt flera val?"
113
-
114
- #: contact-form-7/wp-contact-form-7.php:638
115
- msgid "Insert a blank item as the first option?"
116
- msgstr "Lägg till ett tomt objekt som första val?"
117
-
118
- #: contact-form-7/wp-contact-form-7.php:639
119
- msgid "Make checkboxes exclusive?"
120
- msgstr "Göra checkboxarna exklusiva?"
121
-
122
- #: contact-form-7/wp-contact-form-7.php:640
123
- msgid "Choices"
124
- msgstr "Val"
125
-
126
- #: contact-form-7/wp-contact-form-7.php:641
127
- msgid "Label"
128
- msgstr "Märkning"
129
-
130
- #: contact-form-7/wp-contact-form-7.php:642
131
- msgid "Default value"
132
- msgstr "Standardvärde"
133
-
134
- #: contact-form-7/wp-contact-form-7.php:643
135
- msgid "Akismet"
136
- msgstr "Akismet"
137
-
138
- #: contact-form-7/wp-contact-form-7.php:644
139
- msgid "This field requires author's name"
140
- msgstr "Det här fältet kräver författarens namn"
141
-
142
- #: contact-form-7/wp-contact-form-7.php:645
143
- msgid "This field requires author's URL"
144
- msgstr "Det här fältet kräver författarens webbadress"
145
-
146
- #: contact-form-7/wp-contact-form-7.php:646
147
- msgid "This field requires author's email address"
148
- msgstr "Det här fältet kräver författarens e-postadress"
149
-
150
- #: contact-form-7/wp-contact-form-7.php:647
151
- msgid "Copy this code and paste it into the form left."
152
- msgstr "Kopiera och klistra denna kod i formuläret."
153
-
154
- #: contact-form-7/wp-contact-form-7.php:648
155
- msgid "Foreground color"
156
- msgstr "Förgrundsfärg"
157
-
158
- #: contact-form-7/wp-contact-form-7.php:649
159
- msgid "Background color"
160
- msgstr "Bakgrundsfärg"
161
-
162
- #: contact-form-7/wp-contact-form-7.php:650
163
- msgid "Image size"
164
- msgstr "Bildstorlek"
165
-
166
- #: contact-form-7/wp-contact-form-7.php:651
167
- msgid "Small"
168
- msgstr "Liten"
169
-
170
- #: contact-form-7/wp-contact-form-7.php:652
171
- msgid "Medium"
172
- msgstr "Mellan"
173
-
174
- #: contact-form-7/wp-contact-form-7.php:653
175
- msgid "Large"
176
- msgstr "Stor"
177
-
178
- #: contact-form-7/wp-contact-form-7.php:654
179
- msgid "Image settings"
180
- msgstr "Bildinställningar"
181
-
182
- #: contact-form-7/wp-contact-form-7.php:655
183
- msgid "Input field settings"
184
- msgstr "Inställningar för inmatningsfält"
185
-
186
- #: contact-form-7/wp-contact-form-7.php:656
187
- msgid "For image"
188
- msgstr "För bild"
189
-
190
- #: contact-form-7/wp-contact-form-7.php:657
191
- msgid "For input field"
192
- msgstr "För inmatningsfält"
193
-
194
- #: contact-form-7/wp-contact-form-7.php:658
195
- msgid "* One choice per line."
196
- msgstr "* Ett val per rad."
197
-
198
- #: contact-form-7/wp-contact-form-7.php:659
199
- msgid "Show"
200
- msgstr "Visa"
201
-
202
- #: contact-form-7/wp-contact-form-7.php:660
203
- msgid "Hide"
204
- msgstr "Göm"
205
-
206
- #: contact-form-7/wp-contact-form-7.php:661
207
- msgid "File size limit"
208
- msgstr "Gräns för filstorlek"
209
-
210
- #: contact-form-7/wp-contact-form-7.php:662
211
- msgid "Acceptable file types"
212
- msgstr "Tillåtna filtyper"
213
-
214
- #: contact-form-7/wp-contact-form-7.php:663
215
- msgid "Note: To use CAPTCHA, you need Really Simple CAPTCHA plugin installed."
216
- msgstr "Notera: För att använda CAPTCHA så behöver du ha Really Simple CAPTCHA-tillägget installerat."
217
-
218
- #: contact-form-7/wp-contact-form-7.php:690
219
- msgid "Contact form created."
220
- msgstr "Kontaktformulär skapat."
221
-
222
- #: contact-form-7/wp-contact-form-7.php:693
223
- msgid "Contact form saved."
224
- msgstr "Kontaktformulär sparat."
225
-
226
- #: contact-form-7/wp-contact-form-7.php:696
227
- msgid "Contact form deleted."
228
- msgstr "Kontaktformulär raderat."
229
-
230
- #: contact-form-7/wp-contact-form-7.php:707
231
- msgid "Untitled"
232
- msgstr "Namnlös"
233
-
234
- #: contact-form-7/wp-contact-form-7.php:734
235
- msgid "Your Name"
236
- msgstr "Ditt namn"
237
-
238
- #: contact-form-7/wp-contact-form-7.php:734
239
- #: contact-form-7/wp-contact-form-7.php:736
240
- msgid "(required)"
241
- msgstr "(obligatoriskt)"
242
-
243
- #: contact-form-7/wp-contact-form-7.php:736
244
- msgid "Your Email"
245
- msgstr "Din e-post"
246
-
247
- #: contact-form-7/wp-contact-form-7.php:738
248
- msgid "Subject"
249
- msgstr "Ämne"
250
-
251
- #: contact-form-7/wp-contact-form-7.php:740
252
- msgid "Your Message"
253
- msgstr "Ditt meddelande"
254
-
255
- #: contact-form-7/wp-contact-form-7.php:742
256
- #: contact-form-7/wp-contact-form-7.php:1476
257
- msgid "Send"
258
- msgstr "Skicka"
259
-
260
- #: contact-form-7/wp-contact-form-7.php:796
261
- msgid "Your message was sent successfully. Thanks."
262
- msgstr "Tack för ditt meddelande!"
263
-
264
- #: contact-form-7/wp-contact-form-7.php:798
265
- #: contact-form-7/wp-contact-form-7.php:800
266
- msgid "Failed to send your message. Please try later or contact administrator by other way."
267
- msgstr "Ett fel uppstog när ditt meddelande skulle skickas. Var vänlig försök senare."
268
-
269
- #: contact-form-7/wp-contact-form-7.php:802
270
- msgid "Validation errors occurred. Please confirm the fields and submit it again."
271
- msgstr "Valideringsfel. Var vänlig undersök fälten du fyllt i och försök igen."
272
-
273
- #: contact-form-7/wp-contact-form-7.php:804
274
- msgid "Please accept the terms to proceed."
275
- msgstr "Acceptera villkoren för att fortsätta."
276
-
277
- #: contact-form-7/wp-contact-form-7.php:806
278
- msgid "Email address seems invalid."
279
- msgstr "Du har angivit en felaktig e-postadress."
280
-
281
- #: contact-form-7/wp-contact-form-7.php:808
282
- msgid "Please fill the required field."
283
- msgstr "Vänligen fyll i alla obligatoriska fält."
284
-
285
- #: contact-form-7/wp-contact-form-7.php:810
286
- msgid "Your entered code is incorrect."
287
- msgstr "Verifieringskoden du angav är felaktig."
288
-
289
- #: contact-form-7/wp-contact-form-7.php:812
290
- msgid "Your answer is not correct."
291
- msgstr "Verifieringskoden du angav är felaktig."
292
-
293
- #: contact-form-7/wp-contact-form-7.php:814
294
- msgid "Failed to upload file."
295
- msgstr "Filen kunde inte laddas upp."
296
-
297
- #: contact-form-7/wp-contact-form-7.php:816
298
- msgid "This file type is not allowed."
299
- msgstr "Filtypen är inte tillåten."
300
-
301
- #: contact-form-7/wp-contact-form-7.php:818
302
- msgid "This file is too large."
303
- msgstr "Filen är för stor."
304
-
305
- #: contact-form-7/wp-contact-form-7.php:1417
306
- msgid "To use CAPTCHA, you need <a href=\"http://wordpress.org/extend/plugins/really-simple-captcha/\">Really Simple CAPTCHA</a> plugin installed."
307
- msgstr "För att använda CAPTCHA så behöver du ha <a href=\"http://wordpress.org/extend/plugins/really-simple-captcha/\">Really Simple CAPTCHA</a>-tillägget installerat."
308
-
309
- #: contact-form-7/includes/admin-panel.php:20
310
- msgid "Add new"
311
- msgstr "Lägg till ny"
312
-
313
- #: contact-form-7/includes/admin-panel.php:42
314
- msgid "Copy this code and paste it into your post, page or text widget content."
315
- msgstr "Kopiera in denna kod i ditt inlägg, på din sida eller textwidget."
316
-
317
- #: contact-form-7/includes/admin-panel.php:49
318
- #: contact-form-7/includes/admin-panel.php:262
319
- msgid "Save"
320
- msgstr "Spara"
321
-
322
- #: contact-form-7/includes/admin-panel.php:56
323
- msgid "Copy"
324
- msgstr "Kopiera"
325
-
326
- #: contact-form-7/includes/admin-panel.php:60
327
- msgid "Delete"
328
- msgstr "Radera"
329
-
330
- #: contact-form-7/includes/admin-panel.php:61
331
- msgid ""
332
- "You are about to delete this contact form.\n"
333
- " 'Cancel' to stop, 'OK' to delete."
334
- msgstr ""
335
- "Är du säker på att du vill radera detta kontaktformulär? \n"
336
- " Klicka 'Avbryt' för att avbryta, 'OK' för att radera."
337
-
338
- #: contact-form-7/includes/admin-panel.php:75
339
- msgid "Form"
340
- msgstr "Formulär"
341
-
342
- #: contact-form-7/includes/admin-panel.php:95
343
- msgid "Mail"
344
- msgstr "Mottagarmail"
345
-
346
- #: contact-form-7/includes/admin-panel.php:102
347
- #: contact-form-7/includes/admin-panel.php:154
348
- msgid "To:"
349
- msgstr "Till:"
350
-
351
- #: contact-form-7/includes/admin-panel.php:106
352
- #: contact-form-7/includes/admin-panel.php:158
353
- msgid "From:"
354
- msgstr "Från:"
355
-
356
- #: contact-form-7/includes/admin-panel.php:110
357
- #: contact-form-7/includes/admin-panel.php:162
358
- msgid "Subject:"
359
- msgstr "Ämne:"
360
-
361
- #: contact-form-7/includes/admin-panel.php:115
362
- #: contact-form-7/includes/admin-panel.php:167
363
- msgid "File attachments:"
364
- msgstr "Bilagor:"
365
-
366
- #: contact-form-7/includes/admin-panel.php:117
367
- #: contact-form-7/includes/admin-panel.php:169
368
- msgid "(You need WordPress 2.7 or greater to use this feature)"
369
- msgstr "(Du måste köra WordPress 2.7 eller senare för att kunna använda denna funktion)"
370
-
371
- #: contact-form-7/includes/admin-panel.php:125
372
- #: contact-form-7/includes/admin-panel.php:177
373
- msgid "Use HTML content type"
374
- msgstr "Använd HTML som innehållstyp"
375
-
376
- #: contact-form-7/includes/admin-panel.php:130
377
- #: contact-form-7/includes/admin-panel.php:182
378
- msgid "Message body:"
379
- msgstr "Meddelandefält:"
380
-
381
- #: contact-form-7/includes/admin-panel.php:141
382
- msgid "Mail (2)"
383
- msgstr "Sekundärt mail"
384
-
385
- #: contact-form-7/includes/admin-panel.php:148
386
- msgid "Use mail (2)"
387
- msgstr "Använd ett sekundärt mottagarmail"
388
-
389
- #: contact-form-7/includes/admin-panel.php:193
390
- msgid "Messages"
391
- msgstr "Meddelanden"
392
-
393
- #: contact-form-7/includes/admin-panel.php:201
394
- msgid "Sender's message was sent successfully"
395
- msgstr "Om besökarens meddelade skickades"
396
-
397
- #: contact-form-7/includes/admin-panel.php:205
398
- msgid "Sender's message was failed to send"
399
- msgstr "Om besökarens meddelande inte kunde skickas"
400
-
401
- #: contact-form-7/includes/admin-panel.php:209
402
- msgid "Akismet judged the sending activity as spamming"
403
- msgstr "Om Akismet bedömer sändningen som spamaktivitet"
404
-
405
- #: contact-form-7/includes/admin-panel.php:213
406
- msgid "Validation errors occurred"
407
- msgstr "Om valideringsfel uppstår"
408
-
409
- #: contact-form-7/includes/admin-panel.php:217
410
- msgid "There is a field that sender is needed to fill in"
411
- msgstr "Om det finns obligatoriska fält att fylla i"
412
-
413
- #: contact-form-7/includes/admin-panel.php:221
414
- msgid "Email address that sender entered is invalid"
415
- msgstr "Om e-postadressen angiven av besöakren är felaktig"
416
-
417
- #: contact-form-7/includes/admin-panel.php:225
418
- msgid "There is a field of term that sender is needed to accept"
419
- msgstr "Om det finns ett fält för villkor som besökaren måste godkänna"
420
-
421
- #: contact-form-7/includes/admin-panel.php:229
422
- msgid "Sender doesn't enter the correct answer to the quiz"
423
- msgstr "Om användaren anger ett felaktigt svar för antispam-frågan"
424
-
425
- #: contact-form-7/includes/admin-panel.php:233
426
- msgid "The code that sender entered does not match the CAPTCHA"
427
- msgstr "Om verifieringskoden besökaren anger inte matchar CAPTCHA-koden"
428
-
429
- #: contact-form-7/includes/admin-panel.php:237
430
- msgid "Uploading a file fails for any reason"
431
- msgstr "Om filuppladdningen misslyckas av någon anledning"
432
-
433
- #: contact-form-7/includes/admin-panel.php:241
434
- msgid "Uploaded file is not allowed file type"
435
- msgstr "Om den uppladdade filen är av en ej tillåten filtyp"
436
-
437
- #: contact-form-7/includes/admin-panel.php:245
438
- msgid "Uploaded file is too large"
439
- msgstr "Om den uppladdade filen är för stor"
440
-
441
- #~ msgid "Delete this contact form"
442
- #~ msgstr "Radera detta kontaktformulär"
443
-
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
languages/wpcf7-th.po DELETED
@@ -1,819 +0,0 @@
1
- msgid ""
2
- msgstr ""
3
- "Project-Id-Version: Contact Form 7\n"
4
- "Report-Msgid-Bugs-To: \n"
5
- "POT-Creation-Date: 2010-05-18 23:31+0900\n"
6
- "PO-Revision-Date: 2010-06-15 15:12+0700\n"
7
- "Last-Translator: kazama <anotherkaz@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-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 "Contact Form 7"
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:261
49
- msgid "Contact form"
50
- msgstr "ฟอร์มติดต่อ"
51
-
52
- #: contact-form-7/admin/admin.php:280
53
- msgid "Settings"
54
- msgstr "การตั้งค่า"
55
-
56
- #: contact-form-7/admin/admin.php:291
57
- msgid "http://contactform7.com/"
58
- msgstr "http://contactform7.com/"
59
-
60
- #: contact-form-7/admin/admin.php:292
61
- msgid "Contactform7.com"
62
- msgstr "Contactform7.com"
63
-
64
- #: contact-form-7/admin/admin.php:293
65
- msgid "http://contactform7.com/docs/"
66
- msgstr "http://contactform7.com/docs/"
67
-
68
- #: contact-form-7/admin/admin.php:294
69
- msgid "Docs"
70
- msgstr "เอกสารคู่มือ"
71
-
72
- #: contact-form-7/admin/admin.php:295
73
- msgid "http://contactform7.com/faq/"
74
- msgstr "http://contactform7.com/faq/"
75
-
76
- #: contact-form-7/admin/admin.php:296
77
- msgid "FAQ"
78
- msgstr "คำถามที่พบบ่อย"
79
-
80
- #: contact-form-7/admin/admin.php:297
81
- msgid "http://contactform7.com/support/"
82
- msgstr "http://contactform7.com/support/"
83
-
84
- #: contact-form-7/admin/admin.php:298
85
- msgid "Support"
86
- msgstr "ทีมงานช่วยเหลือ"
87
-
88
- #: contact-form-7/admin/admin.php:312
89
- msgid "Contact form created."
90
- msgstr "สร้างแบบฟอร์มติดต่อแล้ว"
91
-
92
- #: contact-form-7/admin/admin.php:315
93
- msgid "Contact form saved."
94
- msgstr "บันทึกแบบฟอร์มติดต่อแล้ว"
95
-
96
- #: contact-form-7/admin/admin.php:318
97
- msgid "Contact form deleted."
98
- msgstr "ลบแบบฟอร์มติดต่อแล้ว"
99
-
100
- #: contact-form-7/admin/admin.php:321
101
- msgid "Database table created."
102
- msgstr "สร้างตารางฐานข้อมูลแล้ว"
103
-
104
- #: contact-form-7/admin/admin.php:324
105
- msgid "Failed to create database table."
106
- msgstr "ล้มเหลวในการสร้างตารางฐานข้อมูล"
107
-
108
- #: contact-form-7/admin/admin.php:358
109
- msgid "Contact Form 7 needs your support. Please donate today."
110
- msgstr "Contact Form 7 ต้องการการสนับสนุนจากคุณ โปรดช่วยบริจาคให้เรา"
111
-
112
- #: contact-form-7/admin/admin.php:359
113
- msgid "Your contribution is needed for making this plugin better."
114
- msgstr "การบริจาคของคุณจะช่วยให้ปลั๊กอินนี้พัฒนาได้ดีขึ้น"
115
-
116
- #: contact-form-7/admin/admin.php:365
117
- msgid "http://contactform7.com/donate/"
118
- msgstr "http://contactform7.com/donate/"
119
-
120
- #: contact-form-7/admin/admin.php:365
121
- msgid "Donate"
122
- msgstr "บริจาค"
123
-
124
- #: contact-form-7/admin/edit.php:9
125
- #, php-format
126
- 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."
127
- msgstr "<strong>ตารางฐานข้อมูลสำหรับ Contact Form 7 ยังไม่ได้ถูกสร้าง</strong> คุณต้อง <a href=\"%s\">สร้างตารางข้อมูล</a> เพื่อให้มันทำงานได้"
128
-
129
- #: contact-form-7/admin/edit.php:12
130
- msgid "<strong>The database table for Contact Form 7 does not exist.</strong>"
131
- msgstr "<strong>ตารางฐานข้อมูลสำหรับ Contact Form 7 ยังไม่ได้ถูกสร้าง</strong> "
132
-
133
- #: contact-form-7/admin/edit.php:45
134
- msgid "Add new"
135
- msgstr "เพิ่มใหม่"
136
-
137
- #: contact-form-7/admin/edit.php:67
138
- msgid "Copy this code and paste it into your post, page or text widget content."
139
- msgstr "คัดลอกโค๊ดนี้แล้ววางมันลงในเรื่อง หน้า หรือ ข้อความ text widget ของคุณ"
140
-
141
- #: contact-form-7/admin/edit.php:75
142
- #: contact-form-7/admin/edit.php:309
143
- msgid "Save"
144
- msgstr "บันทึก"
145
-
146
- #: contact-form-7/admin/edit.php:82
147
- msgid "Copy"
148
- msgstr "คัดลอก"
149
-
150
- #: contact-form-7/admin/edit.php:87
151
- msgid "Delete"
152
- msgstr "ลบ"
153
-
154
- #: contact-form-7/admin/edit.php:89
155
- msgid ""
156
- "You are about to delete this contact form.\n"
157
- " 'Cancel' to stop, 'OK' to delete."
158
- msgstr ""
159
- "คุณกำลังลบแบบฟอร์มติดต่อนี้\n"
160
- " 'Cancel' เพื่อหยุด 'OK' เพื่อลบ"
161
-
162
- #: contact-form-7/admin/edit.php:104
163
- msgid "Form"
164
- msgstr "ฟอร์ม"
165
-
166
- #: contact-form-7/admin/edit.php:128
167
- msgid "Mail"
168
- msgstr "เมล์"
169
-
170
- #: contact-form-7/admin/edit.php:135
171
- #: contact-form-7/admin/edit.php:202
172
- msgid "To:"
173
- msgstr "ถึง:"
174
-
175
- #: contact-form-7/admin/edit.php:140
176
- #: contact-form-7/admin/edit.php:207
177
- msgid "From:"
178
- msgstr "จาก:"
179
-
180
- #: contact-form-7/admin/edit.php:145
181
- #: contact-form-7/admin/edit.php:212
182
- msgid "Subject:"
183
- msgstr "หัวข้อ:"
184
-
185
- #: contact-form-7/admin/edit.php:152
186
- #: contact-form-7/admin/edit.php:219
187
- msgid "Additional headers:"
188
- msgstr "ส่วนหัวเพิ่มเติม:"
189
-
190
- #: contact-form-7/admin/edit.php:157
191
- #: contact-form-7/admin/edit.php:224
192
- msgid "File attachments:"
193
- msgstr "ไฟล์แนบ:"
194
-
195
- #: contact-form-7/admin/edit.php:165
196
- #: contact-form-7/admin/edit.php:232
197
- msgid "Use HTML content type"
198
- msgstr "ใช้ชนิดเนื้อหาแบบ HTML"
199
-
200
- #: contact-form-7/admin/edit.php:172
201
- #: contact-form-7/admin/edit.php:239
202
- #: contact-form-7/includes/functions.php:78
203
- msgid "Message body:"
204
- msgstr "เนื้อหาข้อความ:"
205
-
206
- #: contact-form-7/admin/edit.php:188
207
- msgid "Mail (2)"
208
- msgstr "เมล์ (2)"
209
-
210
- #: contact-form-7/admin/edit.php:194
211
- msgid "Use mail (2)"
212
- msgstr "ใช้เมล์l (2)"
213
-
214
- #: contact-form-7/admin/edit.php:255
215
- msgid "Messages"
216
- msgstr "ข้อความ"
217
-
218
- #: contact-form-7/admin/edit.php:285
219
- msgid "Additional Settings"
220
- msgstr "การตั้งค่าเพิ่มเติม"
221
-
222
- #: contact-form-7/admin/edit.php:333
223
- #, php-format
224
- msgid "Use the default language (%s)"
225
- msgstr "ใช้ภาษามาตรฐาน (%s)"
226
-
227
- #: contact-form-7/admin/edit.php:334
228
- #: contact-form-7/admin/edit.php:347
229
- msgid "Add New"
230
- msgstr "เพิ่มใหม่"
231
-
232
- #: contact-form-7/admin/edit.php:337
233
- msgid "Or"
234
- msgstr "หรือ"
235
-
236
- #: contact-form-7/admin/edit.php:342
237
- msgid "(select language)"
238
- msgstr "(เลือกภาษา)"
239
-
240
- #: contact-form-7/includes/classes.php:577
241
- msgid "Untitled"
242
- msgstr "ไม่มีหัวข้อ"
243
-
244
- #: contact-form-7/includes/functions.php:6
245
- msgid "Sender's message was sent successfully"
246
- msgstr "ข้อความผู้ส่งถูกส่งเรียบร้อยแล้ว"
247
-
248
- #: contact-form-7/includes/functions.php:7
249
- msgid "Your message was sent successfully. Thanks."
250
- msgstr "ข้อความของคุณได้ถูกส่งเรียบร้อยแล้ว ขอบคุณ"
251
-
252
- #: contact-form-7/includes/functions.php:11
253
- msgid "Sender's message was failed to send"
254
- msgstr "ข้อความผู้ส่งล้มเหลวในการส่ง"
255
-
256
- #: contact-form-7/includes/functions.php:12
257
- #: contact-form-7/includes/functions.php:17
258
- msgid "Failed to send your message. Please try later or contact administrator by other way."
259
- msgstr "การส่งข้อความของคุณล้มเหลว โปรดลองใหม่อีกครั้งหรือติดต่อผู้ควบคุมโดยทางอื่น"
260
-
261
- #: contact-form-7/includes/functions.php:16
262
- msgid "Akismet judged the sending activity as spamming"
263
- msgstr "Akismet พิจารณาว่าการส่งเป็นการ spam"
264
-
265
- #: contact-form-7/includes/functions.php:21
266
- msgid "Validation errors occurred"
267
- msgstr "การตรวจสอบผิดพลาด"
268
-
269
- #: contact-form-7/includes/functions.php:22
270
- msgid "Validation errors occurred. Please confirm the fields and submit it again."
271
- msgstr "การตรวจสอบผิดพลาด โปรดยืนยันข้อมูลและการส่งอีกครั้ง"
272
-
273
- #: contact-form-7/includes/functions.php:26
274
- msgid "There is a field of term that sender is needed to accept"
275
- msgstr "มีช่องเงื่อนไขที่ผู้ต้องต้องยอมรับ"
276
-
277
- #: contact-form-7/includes/functions.php:27
278
- msgid "Please accept the terms to proceed."
279
- msgstr "โปรดยอมรับเงื่อนไขเพื่อทำงานต่อ"
280
-
281
- #: contact-form-7/includes/functions.php:31
282
- msgid "Email address that sender entered is invalid"
283
- msgstr "อีเมล์ที่ผู้ส่งให้มานั้นใช้งานไม่ได้"
284
-
285
- #: contact-form-7/includes/functions.php:32
286
- msgid "Email address seems invalid."
287
- msgstr "ดูเหมือนว่าอีเมล์ใช้ไม่ได้"
288
-
289
- #: contact-form-7/includes/functions.php:36
290
- msgid "There is a field that sender is needed to fill in"
291
- msgstr "นี่คือช่องที่ผู้ส่งต้องการสำหรับใส่ข้อมูล"
292
-
293
- #: contact-form-7/includes/functions.php:37
294
- msgid "Please fill the required field."
295
- msgstr "โปรดกรอข้อมูลลงในช่องที่ต้องการ"
296
-
297
- #: contact-form-7/includes/functions.php:46
298
- msgid "Your Name"
299
- msgstr "ชื่อของคุณ"
300
-
301
- #: contact-form-7/includes/functions.php:46
302
- #: contact-form-7/includes/functions.php:48
303
- msgid "(required)"
304
- msgstr "(ต้องการ)"
305
-
306
- #: contact-form-7/includes/functions.php:48
307
- msgid "Your Email"
308
- msgstr "อีเมล์ของคุณ"
309
-
310
- #: contact-form-7/includes/functions.php:50
311
- msgid "Subject"
312
- msgstr "หัวข้อ"
313
-
314
- #: contact-form-7/includes/functions.php:52
315
- msgid "Your Message"
316
- msgstr "ข้อความของคุณ"
317
-
318
- #: contact-form-7/includes/functions.php:54
319
- msgid "Send"
320
- msgstr "ส่ง"
321
-
322
- #: contact-form-7/includes/functions.php:62
323
- #, php-format
324
- msgid "From: %s"
325
- msgstr "จาก: %s"
326
-
327
- #: contact-form-7/includes/functions.php:63
328
- #, php-format
329
- msgid "Subject: %s"
330
- msgstr "หัวข้อ: %s"
331
-
332
- #: contact-form-7/includes/functions.php:64
333
- msgid "Message Body:"
334
- msgstr "เนื้อหาข้อความ:"
335
-
336
- #: contact-form-7/includes/functions.php:65
337
- #: contact-form-7/includes/functions.php:79
338
- #, php-format
339
- msgid "This mail is sent via contact form on %1$s %2$s"
340
- msgstr "อีเมล์นี้ถูกส่งผ่านทางแบบฟอร์มติดต่อบน %1$s %2$s"
341
-
342
- #: contact-form-7/includes/functions.php:168
343
- msgid "Afrikaans"
344
- msgstr "ภาษาแอฟริกัน"
345
-
346
- #: contact-form-7/includes/functions.php:169
347
- msgid "Albanian"
348
- msgstr "ภาษาอัลเบเนียน"
349
-
350
- #: contact-form-7/includes/functions.php:170
351
- msgid "Arabic"
352
- msgstr "ภาษาอารบิก"
353
-
354
- #: contact-form-7/includes/functions.php:171
355
- msgid "Bangla"
356
- msgstr "ภาษาบังกลา"
357
-
358
- #: contact-form-7/includes/functions.php:172
359
- msgid "Bosnian"
360
- msgstr "ภาษาบอสเนียน"
361
-
362
- #: contact-form-7/includes/functions.php:173
363
- msgid "Brazilian Portuguese"
364
- msgstr "ภาษาบราซิล (โปรตุกีส)"
365
-
366
- #: contact-form-7/includes/functions.php:174
367
- msgid "Bulgarian"
368
- msgstr "ภาษาบัลแกเรียน"
369
-
370
- #: contact-form-7/includes/functions.php:175
371
- msgid "Catalan"
372
- msgstr "ภาษาคาตาลัน"
373
-
374
- #: contact-form-7/includes/functions.php:176
375
- msgid "Chinese (Simplified)"
376
- msgstr "ภาษาจีน (Simplified)"
377
-
378
- #: contact-form-7/includes/functions.php:177
379
- msgid "Chinese (Traditional)"
380
- msgstr "ภาษาจีน (Traditional)"
381
-
382
- #: contact-form-7/includes/functions.php:178
383
- msgid "Croatian"
384
- msgstr "ภาษาโครเอเชียน"
385
-
386
- #: contact-form-7/includes/functions.php:179
387
- msgid "Czech"
388
- msgstr "ภาษาเช็ค"
389
-
390
- #: contact-form-7/includes/functions.php:180
391
- msgid "Danish"
392
- msgstr "ภาษาเดนนิช"
393
-
394
- #: contact-form-7/includes/functions.php:181
395
- msgid "Dutch"
396
- msgstr "ภาษาดัตช์"
397
-
398
- #: contact-form-7/includes/functions.php:182
399
- msgid "English"
400
- msgstr "ภาษาอังกฤษ"
401
-
402
- #: contact-form-7/includes/functions.php:183
403
- msgid "Estonian"
404
- msgstr "ภาษาเอสโตเนียน"
405
-
406
- #: contact-form-7/includes/functions.php:184
407
- msgid "Finnish"
408
- msgstr "ภาษาฟินนิช"
409
-
410
- #: contact-form-7/includes/functions.php:185
411
- msgid "French"
412
- msgstr "ภาษาฝรั่งเศส"
413
-
414
- #: contact-form-7/includes/functions.php:186
415
- msgid "Galician"
416
- msgstr "ภาษากาลิเซียน"
417
-
418
- #: contact-form-7/includes/functions.php:187
419
- msgid "Georgian"
420
- msgstr "ภาษาจอร์เจียน"
421
-
422
- #: contact-form-7/includes/functions.php:188
423
- msgid "German"
424
- msgstr "ภาษาเยอรมัน"
425
-
426
- #: contact-form-7/includes/functions.php:189
427
- msgid "Greek"
428
- msgstr "ภาษากรีก"
429
-
430
- #: contact-form-7/includes/functions.php:190
431
- msgid "Hebrew"
432
- msgstr "ภาษาฮีบรู"
433
-
434
- #: contact-form-7/includes/functions.php:191
435
- msgid "Hindi"
436
- msgstr "ภาษาฮินดู"
437
-
438
- #: contact-form-7/includes/functions.php:192
439
- msgid "Hungarian"
440
- msgstr "ภาษาฮังกาเรียน"
441
-
442
- #: contact-form-7/includes/functions.php:193
443
- msgid "Indonesian"
444
- msgstr "ภาษาอินโดนีเซีย"
445
-
446
- #: contact-form-7/includes/functions.php:194
447
- msgid "Italian"
448
- msgstr "ภาษาอิตาเลียน"
449
-
450
- #: contact-form-7/includes/functions.php:195
451
- msgid "Japanese"
452
- msgstr "ภาษาญี่ปุ่น"
453
-
454
- #: contact-form-7/includes/functions.php:196
455
- msgid "Korean"
456
- msgstr "ภาษาเกาหลี"
457
-
458
- #: contact-form-7/includes/functions.php:197
459
- msgid "Latvian"
460
- msgstr "ภาษาลัตเวียน"
461
-
462
- #: contact-form-7/includes/functions.php:198
463
- msgid "Lithuanian"
464
- msgstr "ภาษาลิทัวเนียน"
465
-
466
- #: contact-form-7/includes/functions.php:199
467
- msgid "Malayalam"
468
- msgstr "ภาษามาลายาลาม"
469
-
470
- #: contact-form-7/includes/functions.php:200
471
- msgid "Norwegian"
472
- msgstr "ภาษานอร์เวย์"
473
-
474
- #: contact-form-7/includes/functions.php:201
475
- msgid "Persian"
476
- msgstr "ภาษาเปอร์เซียน"
477
-
478
- #: contact-form-7/includes/functions.php:202
479
- msgid "Polish"
480
- msgstr "ภาษาโปแลนด์"
481
-
482
- #: contact-form-7/includes/functions.php:203
483
- msgid "Portuguese"
484
- msgstr "ภาษาโปรตุเกส"
485
-
486
- #: contact-form-7/includes/functions.php:204
487
- msgid "Russian"
488
- msgstr "ภาษารัสเซีย"
489
-
490
- #: contact-form-7/includes/functions.php:205
491
- msgid "Romanian"
492
- msgstr "ภาษาโรมาเนียน"
493
-
494
- #: contact-form-7/includes/functions.php:206
495
- msgid "Serbian"
496
- msgstr "ภาษาเซอร์เบียน"
497
-
498
- #: contact-form-7/includes/functions.php:207
499
- msgid "Slovak"
500
- msgstr "ภาษาสโลวัค"
501
-
502
- #: contact-form-7/includes/functions.php:208
503
- msgid "Slovene"
504
- msgstr "ภาษาสโลวีเนีย"
505
-
506
- #: contact-form-7/includes/functions.php:209
507
- msgid "Spanish"
508
- msgstr "ภาษาสเปน"
509
-
510
- #: contact-form-7/includes/functions.php:210
511
- msgid "Swedish"
512
- msgstr "ภาษาสวีเดน"
513
-
514
- #: contact-form-7/includes/functions.php:211
515
- msgid "Thai"
516
- msgstr "ภาษาไทย"
517
-
518
- #: contact-form-7/includes/functions.php:212
519
- msgid "Turkish"
520
- msgstr "ภาษาตุรกี"
521
-
522
- #: contact-form-7/includes/functions.php:213
523
- msgid "Ukrainian"
524
- msgstr "ภาษายูเครน"
525
-
526
- #: contact-form-7/includes/functions.php:214
527
- msgid "Vietnamese"
528
- msgstr "ภาษาเวียตนาม"
529
-
530
- #: contact-form-7/modules/acceptance.php:104
531
- msgid "Acceptance"
532
- msgstr "ยอมรับ"
533
-
534
- #: contact-form-7/modules/acceptance.php:113
535
- #: contact-form-7/modules/captcha.php:214
536
- #: contact-form-7/modules/checkbox.php:209
537
- #: contact-form-7/modules/file.php:241
538
- msgid "Name"
539
- msgstr "ชื่อ"
540
-
541
- #: contact-form-7/modules/acceptance.php:118
542
- #: contact-form-7/modules/acceptance.php:121
543
- #: contact-form-7/modules/captcha.php:221
544
- #: contact-form-7/modules/captcha.php:224
545
- #: contact-form-7/modules/captcha.php:229
546
- #: contact-form-7/modules/captcha.php:232
547
- #: contact-form-7/modules/captcha.php:236
548
- #: contact-form-7/modules/captcha.php:247
549
- #: contact-form-7/modules/captcha.php:250
550
- #: contact-form-7/modules/captcha.php:255
551
- #: contact-form-7/modules/captcha.php:258
552
- #: contact-form-7/modules/checkbox.php:214
553
- #: contact-form-7/modules/checkbox.php:217
554
- #: contact-form-7/modules/file.php:246
555
- #: contact-form-7/modules/file.php:249
556
- #: contact-form-7/modules/file.php:254
557
- #: contact-form-7/modules/file.php:257
558
- msgid "optional"
559
- msgstr "ตัวเลือก"
560
-
561
- #: contact-form-7/modules/acceptance.php:127
562
- msgid "Make this checkbox checked by default?"
563
- msgstr "ทำให้ checkbox นี้ถูกเลือกอยู่แล้ว?"
564
-
565
- #: contact-form-7/modules/acceptance.php:128
566
- msgid "Make this checkbox work inversely?"
567
- msgstr "ทำให้ checkbox นี้ทำงานกลับด้าน?"
568
-
569
- #: contact-form-7/modules/acceptance.php:129
570
- msgid "* That means visitor who accepts the term unchecks it."
571
- msgstr "* หมายความว่าผู้เยี่ยมชมยอมรับเงื่อนไขที่ไม่เลือกตัวเลือกนี้"
572
-
573
- #: contact-form-7/modules/acceptance.php:134
574
- #: contact-form-7/modules/captcha.php:263
575
- #: contact-form-7/modules/checkbox.php:237
576
- #: contact-form-7/modules/file.php:262
577
- msgid "Copy this code and paste it into the form left."
578
- msgstr "คัดลอกโค๊ดนี้และวางมันลงในฟอร์มด้านซ้าย"
579
-
580
- #: contact-form-7/modules/captcha.php:70
581
- msgid "To use CAPTCHA, you need <a href=\"http://wordpress.org/extend/plugins/really-simple-captcha/\">Really Simple CAPTCHA</a> plugin installed."
582
- msgstr "เพื่อใช้ CAPTCHA คุณต้องติดตั้งปลั๊กอิน <a href=\"http://wordpress.org/extend/plugins/really-simple-captcha/\">Really Simple CAPTCHA</a>"
583
-
584
- #: contact-form-7/modules/captcha.php:189
585
- msgid "The code that sender entered does not match the CAPTCHA"
586
- msgstr "โค๊ดที่ผู้ส่งใส่ไม่ตรงกับ CAPTCHA"
587
-
588
- #: contact-form-7/modules/captcha.php:190
589
- msgid "Your entered code is incorrect."
590
- msgstr "โค๊ดที่คุณใส่ไม่ถูกต้อง"
591
-
592
- #: contact-form-7/modules/captcha.php:200
593
- msgid "CAPTCHA"
594
- msgstr "CAPTCHA"
595
-
596
- #: contact-form-7/modules/captcha.php:211
597
- msgid "Note: To use CAPTCHA, you need Really Simple CAPTCHA plugin installed."
598
- msgstr "หมายเหตุ: เพื่อใช้ CAPTCHA คุณต้องลงปลั๊กอิน Really Simple CAPTCHA "
599
-
600
- #: contact-form-7/modules/captcha.php:218
601
- msgid "Image settings"
602
- msgstr "การตั้งค่ารูปภาพ"
603
-
604
- #: contact-form-7/modules/captcha.php:229
605
- msgid "Foreground color"
606
- msgstr "สีด้านหน้า"
607
-
608
- #: contact-form-7/modules/captcha.php:232
609
- msgid "Background color"
610
- msgstr "สีด้านหลัง"
611
-
612
- #: contact-form-7/modules/captcha.php:236
613
- msgid "Image size"
614
- msgstr "ขนาดรูปภาพ"
615
-
616
- #: contact-form-7/modules/captcha.php:237
617
- msgid "Small"
618
- msgstr "เล็ก"
619
-
620
- #: contact-form-7/modules/captcha.php:238
621
- msgid "Medium"
622
- msgstr "ปานกลาง"
623
-
624
- #: contact-form-7/modules/captcha.php:239
625
- msgid "Large"
626
- msgstr "ใหญ่"
627
-
628
- #: contact-form-7/modules/captcha.php:244
629
- msgid "Input field settings"
630
- msgstr "การตั้งค่าช่องใส่ข้อมูล"
631
-
632
- #: contact-form-7/modules/captcha.php:264
633
- msgid "For image"
634
- msgstr "สำหรับรูปภาพ"
635
-
636
- #: contact-form-7/modules/captcha.php:266
637
- msgid "For input field"
638
- msgstr "สำหรับช่องใส่ข้อมูล"
639
-
640
- #: contact-form-7/modules/captcha.php:296
641
- #, php-format
642
- 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."
643
- msgstr "แบบฟอร์มติดต่อนี้ประกอบด้วยช่อง CAPTCHA หลายช่อง แต่โฟลเดอร์ชั่วคราวสำหรับไฟล์ (%s) ไม่มีอยู่จริง หรือไม่สามารถเขียนทับได้ คุณสามารถสร้างโฟลเดอร์ หรือเปลี่ยนการอนุญาตด้วยตัวเอง"
644
-
645
- #: contact-form-7/modules/captcha.php:302
646
- msgid "This contact form contains CAPTCHA fields, but the necessary libraries (GD and FreeType) are not available on your server."
647
- msgstr "แบบฟอร์มติดต่อนี้ประกอบด้วยช่อง CAPTCHA หลายช่อง แต่ libraries ที่จำเป็น (GD and FreeType) นั้นใช้งานไม่ได้บนเซิร์ฟเวอร์ของคุณ"
648
-
649
- #: contact-form-7/modules/checkbox.php:182
650
- msgid "Checkboxes"
651
- msgstr "เช็คบ็อกซ์"
652
-
653
- #: contact-form-7/modules/checkbox.php:185
654
- msgid "Radio buttons"
655
- msgstr "Radio buttons"
656
-
657
- #: contact-form-7/modules/checkbox.php:206
658
- #: contact-form-7/modules/file.php:240
659
- msgid "Required field?"
660
- msgstr "ช่องที่ต้องการ?"
661
-
662
- #: contact-form-7/modules/checkbox.php:222
663
- msgid "Choices"
664
- msgstr "ตัวเลือก"
665
-
666
- #: contact-form-7/modules/checkbox.php:224
667
- msgid "* One choice per line."
668
- msgstr "* หนึ่งตัวเลือกต่อบรรทัด"
669
-
670
- #: contact-form-7/modules/checkbox.php:228
671
- msgid "Put a label first, a checkbox last?"
672
- msgstr "ใส่ป้ายชื่อก่อน แล้วเช็คบ็อกซ์ทีหลัง?"
673
-
674
- #: contact-form-7/modules/checkbox.php:229
675
- msgid "Wrap each item with <label> tag?"
676
- msgstr "ปิดแต่ละรายการด้วยป้ายกำกับ <label> ?"
677
-
678
- #: contact-form-7/modules/checkbox.php:231
679
- msgid "Make checkboxes exclusive?"
680
- msgstr "ให้เลือก checkboxes เดียว?"
681
-
682
- #: contact-form-7/modules/checkbox.php:239
683
- msgid "And, put this code into the Mail fields below."
684
- msgstr "และใส่โค๊ดนี้ลงในช่องเมล์ด้านล่าง"
685
-
686
- #: contact-form-7/modules/file.php:204
687
- msgid "Uploading a file fails for any reason"
688
- msgstr "การอัปโหลดไฟล์ล้มเหลวด้วยเหตุผลบางอย่าง"
689
-
690
- #: contact-form-7/modules/file.php:205
691
- msgid "Failed to upload file."
692
- msgstr "การอัปโหลดไฟล์ล้มเหลว"
693
-
694
- #: contact-form-7/modules/file.php:209
695
- msgid "Uploaded file is not allowed file type"
696
- msgstr "ชนิดไฟล์นี้ไม่อนุญาตให้อัปโหลด"
697
-
698
- #: contact-form-7/modules/file.php:210
699
- msgid "This file type is not allowed."
700
- msgstr "ชนิดไฟล์นี้ไม่อนุญาตให้ใช้"
701
-
702
- #: contact-form-7/modules/file.php:214
703
- msgid "Uploaded file is too large"
704
- msgstr "ไฟล์ที่อัปโหลดใหญ่เกินไป"
705
-
706
- #: contact-form-7/modules/file.php:215
707
- msgid "This file is too large."
708
- msgstr "ไฟล์นี้ใหญ่เกินไป"
709
-
710
- #: contact-form-7/modules/file.php:219
711
- msgid "Uploading a file fails for PHP error"
712
- msgstr "การอัปโหลดไฟล์ล้มเหลวเพราะ PHP ผิดพลาด"
713
-
714
- #: contact-form-7/modules/file.php:220
715
- msgid "Failed to upload file. Error occurred."
716
- msgstr "ล้มเหลวในการอัปโหลดไฟล์ มีความผิดพลาดเกิดขึ้น"
717
-
718
- #: contact-form-7/modules/file.php:231
719
- msgid "File upload"
720
- msgstr "ไฟล์อัปโหลด"
721
-
722
- #: contact-form-7/modules/file.php:254
723
- msgid "File size limit"
724
- msgstr "ขนาดไฟล์จำกัด"
725
-
726
- #: contact-form-7/modules/file.php:254
727
- msgid "bytes"
728
- msgstr "bytes"
729
-
730
- #: contact-form-7/modules/file.php:257
731
- msgid "Acceptable file types"
732
- msgstr "ชนิดไฟล์ที่ยอมรับได้"
733
-
734
- #: contact-form-7/modules/file.php:264
735
- msgid "And, put this code into the File Attachments field below."
736
- msgstr "และใส่โค๊ดนี้ลงในช่องแนบไฟล์ด้านล่าง"
737
-
738
- #: contact-form-7/modules/file.php:289
739
- #, php-format
740
- 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."
741
- msgstr "แบบฟอร์มติดต่อนี้ประกอบด้วยช่องอัพโหลดไฟล์หลายช่อง แต่โฟลเดอร์ชั่วคราวสำหรับไฟล์ (%s) ไม่มีอยู่จริง หรือไม่สามารถเขียนทับได้ คุณสามารถสร้างโฟลเดอร์ หรือเปลี่ยนการอนุญาตด้วยตัวเอง"
742
-
743
- #: contact-form-7/modules/icl.php:74
744
- 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."
745
- msgstr "แบบฟอร์มติดต่อนี้ประกอบด้วยป้ายกำกับ [icl] หลายป้ายกำกับ แต่พวกมันล้าสมัยและใช้ไม่ได้กับคำสั่งของ Contact Form 7 รุ่นนี้ <a href=\"http://contactform7.com/2009/12/25/contact-form-in-your-language/#Creating_contact_form_in_different_languages\" target=\"_blank\">นี่คือวิธีที่ง่ายที่สุดในการสร้างแบบฟอร์มติดต่อของภาษาอื่น</a> และเราแนะนำให้คุณใช้มัน"
746
-
747
- #: contact-form-7/modules/quiz.php:170
748
- msgid "Sender doesn't enter the correct answer to the quiz"
749
- msgstr "ผู้ส่งไม่ได้ใส่คำตอบที่ถูกต้องกับคำถาม"
750
-
751
- #: contact-form-7/modules/quiz.php:171
752
- msgid "Your answer is not correct."
753
- msgstr "คำตอบของคุณไม่ถูกต้อง"
754
-
755
- #: contact-form-7/modules/quiz.php:181
756
- msgid "Quiz"
757
- msgstr "คำถาม"
758
-
759
- #: contact-form-7/modules/quiz.php:211
760
- msgid "Quizzes"
761
- msgstr "คำถาม"
762
-
763
- #: contact-form-7/modules/quiz.php:213
764
- msgid "* quiz|answer (e.g. 1+1=?|2)"
765
- msgstr "* คำถาม|คำตอบ (ตัวอย่าง 1+1=?|2)"
766
-
767
- #: contact-form-7/modules/select.php:154
768
- msgid "Drop-down menu"
769
- msgstr "เมนู Drop down"
770
-
771
- #: contact-form-7/modules/select.php:183
772
- msgid "Allow multiple selections?"
773
- msgstr "อนุญาตการเลือกหลายข้อ?"
774
-
775
- #: contact-form-7/modules/select.php:184
776
- msgid "Insert a blank item as the first option?"
777
- msgstr "ใส่ช่องว่างเป็นตัวเลือกแรก"
778
-
779
- #: contact-form-7/modules/submit.php:62
780
- msgid "Submit button"
781
- msgstr "ปุ่มส่ง"
782
-
783
- #: contact-form-7/modules/submit.php:80
784
- msgid "Label"
785
- msgstr "ป้ายชื่อ"
786
-
787
- #: contact-form-7/modules/text.php:137
788
- msgid "Text field"
789
- msgstr "ช่องตัวอักษร"
790
-
791
- #: contact-form-7/modules/text.php:140
792
- msgid "Email field"
793
- msgstr "ช่องใส่อีเมล์"
794
-
795
- #: contact-form-7/modules/text.php:182
796
- msgid "Akismet"
797
- msgstr "Akismet"
798
-
799
- #: contact-form-7/modules/text.php:184
800
- msgid "This field requires author's name"
801
- msgstr "ช่องนี้ต้องการชื่อผู้เขียน"
802
-
803
- #: contact-form-7/modules/text.php:185
804
- msgid "This field requires author's URL"
805
- msgstr "ช่องนี้ต้องการ URL ผู้เขียน"
806
-
807
- #: contact-form-7/modules/text.php:187
808
- msgid "This field requires author's email address"
809
- msgstr "ช่องนี้ต้องการอีเมล์ผู้เขียน"
810
-
811
- #: contact-form-7/modules/text.php:191
812
- #: contact-form-7/modules/textarea.php:157
813
- msgid "Default value"
814
- msgstr "ค่ามาตรฐาน"
815
-
816
- #: contact-form-7/modules/textarea.php:126
817
- msgid "Text area"
818
- msgstr "กล่องข้อความ"
819
-
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
languages/wpcf7-tr_TR.po DELETED
@@ -1,502 +0,0 @@
1
- msgid ""
2
- msgstr ""
3
- "Project-Id-Version: Contact Form 7\n"
4
- "Report-Msgid-Bugs-To: \n"
5
- "POT-Creation-Date: 2009-08-30 19:21+0900\n"
6
- "PO-Revision-Date: 2009-09-09 02:56+0900\n"
7
- "Last-Translator: Takayuki Miyoshi <takayukister@gmail.com>\n"
8
- "Language-Team: Hedef Türkçe <iletisim@hedeftürkce.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: Turkish\n"
13
- "X-Poedit-Country: TURKEY\n"
14
-
15
- #: contact-form-7/admin/admin-panel.php:9
16
- #, php-format
17
- 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."
18
- msgstr "<strong>Contact Form 7 için gerekli veritabanı tablosu bulunmuyor.</strong> Çalışması için <a href=\"%s\">tabloyu oluşturmalısınız.</a>"
19
-
20
- #: contact-form-7/admin/admin-panel.php:12
21
- msgid "<strong>The database table for Contact Form 7 does not exist.</strong>"
22
- msgstr "<strong>The database table for Contact Form 7 does not exist.</strong>"
23
-
24
- #: contact-form-7/admin/admin-panel.php:17
25
- #: contact-form-7/admin/admin-panel.php:30
26
- #: contact-form-7/admin/admin.php:119
27
- msgid "Contact Form 7"
28
- msgstr "İletişim Formu 7"
29
-
30
- #: contact-form-7/admin/admin-panel.php:45
31
- msgid "Add new"
32
- msgstr "Yeni ekle"
33
-
34
- #: contact-form-7/admin/admin-panel.php:67
35
- msgid "Copy this code and paste it into your post, page or text widget content."
36
- msgstr "Aşağıdaki kodu kopyalayıp yazı içeriğinize yapıştırın."
37
-
38
- #: contact-form-7/admin/admin-panel.php:75
39
- #: contact-form-7/admin/admin-panel.php:332
40
- msgid "Save"
41
- msgstr "Kaydet"
42
-
43
- #: contact-form-7/admin/admin-panel.php:82
44
- msgid "Copy"
45
- msgstr "Kopyala"
46
-
47
- #: contact-form-7/admin/admin-panel.php:87
48
- msgid "Delete"
49
- msgstr "Sil"
50
-
51
- #: contact-form-7/admin/admin-panel.php:89
52
- msgid ""
53
- "You are about to delete this contact form.\n"
54
- " 'Cancel' to stop, 'OK' to delete."
55
- msgstr ""
56
- "Bu iletişim formunu silmek üzeresiniz.\n"
57
- " Durdurmak için 'İptal', silmek için 'Tamam'."
58
-
59
- #: contact-form-7/admin/admin-panel.php:102
60
- msgid "Form"
61
- msgstr "Form"
62
-
63
- #: contact-form-7/admin/admin-panel.php:120
64
- msgid "Mail"
65
- msgstr "Posta"
66
-
67
- #: contact-form-7/admin/admin-panel.php:127
68
- #: contact-form-7/admin/admin-panel.php:188
69
- msgid "To:"
70
- msgstr "Kime:"
71
-
72
- #: contact-form-7/admin/admin-panel.php:132
73
- #: contact-form-7/admin/admin-panel.php:193
74
- msgid "From:"
75
- msgstr "Gönderen:"
76
-
77
- #: contact-form-7/admin/admin-panel.php:137
78
- #: contact-form-7/admin/admin-panel.php:198
79
- msgid "Subject:"
80
- msgstr "Konu:"
81
-
82
- #: contact-form-7/admin/admin-panel.php:144
83
- #: contact-form-7/admin/admin-panel.php:205
84
- msgid "Additional headers:"
85
- msgstr "Ek başlıklar:"
86
-
87
- #: contact-form-7/admin/admin-panel.php:149
88
- #: contact-form-7/admin/admin-panel.php:210
89
- msgid "File attachments:"
90
- msgstr "Eklenti Dosyalar:"
91
-
92
- #: contact-form-7/admin/admin-panel.php:157
93
- #: contact-form-7/admin/admin-panel.php:218
94
- msgid "Use HTML content type"
95
- msgstr "HTML içerik türünü kullan"
96
-
97
- #: contact-form-7/admin/admin-panel.php:164
98
- #: contact-form-7/admin/admin-panel.php:225
99
- msgid "Message body:"
100
- msgstr "İleti gövdesi:"
101
-
102
- #: contact-form-7/admin/admin-panel.php:174
103
- msgid "Mail (2)"
104
- msgstr "Posta (2)"
105
-
106
- #: contact-form-7/admin/admin-panel.php:180
107
- msgid "Use mail (2)"
108
- msgstr "Posta (2) kullan"
109
-
110
- #: contact-form-7/admin/admin-panel.php:235
111
- msgid "Messages"
112
- msgstr "İleti"
113
-
114
- #: contact-form-7/admin/admin-panel.php:243
115
- msgid "Sender's message was sent successfully"
116
- msgstr "İletiniz başarıyla gönderildi. Teşekkürler."
117
-
118
- #: contact-form-7/admin/admin-panel.php:248
119
- msgid "Sender's message was failed to send"
120
- msgstr "Gönderen'in mesajı gönderilemedi"
121
-
122
- #: contact-form-7/admin/admin-panel.php:253
123
- msgid "Akismet judged the sending activity as spamming"
124
- msgstr "Akismet gönderenin işlemini spam olarak değerlendirdi"
125
-
126
- #: contact-form-7/admin/admin-panel.php:258
127
- msgid "Validation errors occurred"
128
- msgstr "Onaylama hatası oluştu"
129
-
130
- #: contact-form-7/admin/admin-panel.php:263
131
- msgid "There is a field that sender is needed to fill in"
132
- msgstr "Gönderenin doldurması gereken alan bulunuyor"
133
-
134
- #: contact-form-7/admin/admin-panel.php:268
135
- msgid "Email address that sender entered is invalid"
136
- msgstr "E-posta adresi geçersiz görünüyor."
137
-
138
- #: contact-form-7/admin/admin-panel.php:273
139
- msgid "There is a field of term that sender is needed to accept"
140
- msgstr "Gönderenin kabul etmesi gereken bir alan bulunuyor"
141
-
142
- #: contact-form-7/admin/admin-panel.php:278
143
- msgid "Sender doesn't enter the correct answer to the quiz"
144
- msgstr "Gönderen quiz cevabını doğru girmedi"
145
-
146
- #: contact-form-7/admin/admin-panel.php:283
147
- msgid "The code that sender entered does not match the CAPTCHA"
148
- msgstr "Gönderenin girdiği kod CAPTCHA ile uyuşmuyor"
149
-
150
- #: contact-form-7/admin/admin-panel.php:288
151
- msgid "Uploading a file fails for any reason"
152
- msgstr "Dosya yükleme işleme başarısız"
153
-
154
- #: contact-form-7/admin/admin-panel.php:293
155
- msgid "Uploaded file is not allowed file type"
156
- msgstr "Yüklenen dosya geçerli formatı taşımıyor"
157
-
158
- #: contact-form-7/admin/admin-panel.php:298
159
- msgid "Uploaded file is too large"
160
- msgstr "Yüklenen dosya çok büyük"
161
-
162
- #: contact-form-7/admin/admin-panel.php:303
163
- msgid "Uploading a file fails for PHP error"
164
- msgstr "Dosya PHP hatasından dolayı yüklenemedi"
165
-
166
- #: contact-form-7/admin/admin-panel.php:314
167
- msgid "Additional Settings"
168
- msgstr "Ek ayarlar"
169
-
170
- #: contact-form-7/admin/admin.php:119
171
- msgid "Contact"
172
- msgstr "İletişim formu"
173
-
174
- #: contact-form-7/admin/admin.php:123
175
- msgid "Edit Contact Forms"
176
- msgstr "İletişim Formu 7"
177
-
178
- #: contact-form-7/admin/admin.php:123
179
- msgid "Edit"
180
- msgstr "Düzenle"
181
-
182
- #: contact-form-7/admin/admin.php:178
183
- msgid "optional"
184
- msgstr "seçimli"
185
-
186
- #: contact-form-7/admin/admin.php:179
187
- msgid "Generate Tag"
188
- msgstr "Etiket Oluştur"
189
-
190
- #: contact-form-7/admin/admin.php:180
191
- msgid "Text field"
192
- msgstr "Metin alanı"
193
-
194
- #: contact-form-7/admin/admin.php:181
195
- msgid "Email field"
196
- msgstr "E-posta alanı"
197
-
198
- #: contact-form-7/admin/admin.php:182
199
- msgid "Text area"
200
- msgstr "Metin alanı"
201
-
202
- #: contact-form-7/admin/admin.php:183
203
- msgid "Drop-down menu"
204
- msgstr "Açılır menü"
205
-
206
- #: contact-form-7/admin/admin.php:184
207
- msgid "Checkboxes"
208
- msgstr "Onay kutuları"
209
-
210
- #: contact-form-7/admin/admin.php:185
211
- msgid "Radio buttons"
212
- msgstr "Seçenek butonları"
213
-
214
- #: contact-form-7/admin/admin.php:186
215
- msgid "Acceptance"
216
- msgstr "Kabul"
217
-
218
- #: contact-form-7/admin/admin.php:187
219
- msgid "Make this checkbox checked by default?"
220
- msgstr "Bu kutu varsayılan olarak seçili olsun mu?"
221
-
222
- #: contact-form-7/admin/admin.php:188
223
- msgid "Make this checkbox work inversely?"
224
- msgstr "Onay kutusu ters çalışsın mı?"
225
-
226
- #: contact-form-7/admin/admin.php:189
227
- msgid "* That means visitor who accepts the term unchecks it."
228
- msgstr "* Koşulu kabul eden ziyaretçi onayı kaldırıyor anlamındadır."
229
-
230
- #: contact-form-7/admin/admin.php:190
231
- msgid "CAPTCHA"
232
- msgstr "CAPTCHA"
233
-
234
- #: contact-form-7/admin/admin.php:191
235
- msgid "Quiz"
236
- msgstr "Quiz"
237
-
238
- #: contact-form-7/admin/admin.php:192
239
- msgid "Quizzes"
240
- msgstr "Quizler"
241
-
242
- #: contact-form-7/admin/admin.php:193
243
- msgid "* quiz|answer (e.g. 1+1=?|2)"
244
- msgstr "* quiz|cevap (örnek 1+1=?|2)"
245
-
246
- #: contact-form-7/admin/admin.php:194
247
- msgid "File upload"
248
- msgstr "Dosya yükleme"
249
-
250
- #: contact-form-7/admin/admin.php:195
251
- msgid "bytes"
252
- msgstr "byte"
253
-
254
- #: contact-form-7/admin/admin.php:196
255
- msgid "Submit button"
256
- msgstr "Gönderim butonu"
257
-
258
- #: contact-form-7/admin/admin.php:197
259
- msgid "Name"
260
- msgstr "İsim"
261
-
262
- #: contact-form-7/admin/admin.php:198
263
- msgid "Required field?"
264
- msgstr "Gerekli alan?"
265
-
266
- #: contact-form-7/admin/admin.php:199
267
- msgid "Allow multiple selections?"
268
- msgstr "Çoklu seçime izin verilsin mi?"
269
-
270
- #: contact-form-7/admin/admin.php:200
271
- msgid "Insert a blank item as the first option?"
272
- msgstr "İlk seçenek olarak boş bir öğe eklensin mi?"
273
-
274
- #: contact-form-7/admin/admin.php:201
275
- msgid "Make checkboxes exclusive?"
276
- msgstr "Onay kutuları tek satırlı olsun mu?"
277
-
278
- #: contact-form-7/admin/admin.php:202
279
- msgid "Choices"
280
- msgstr "Seçimler"
281
-
282
- #: contact-form-7/admin/admin.php:203
283
- msgid "Label"
284
- msgstr "Etiket"
285
-
286
- #: contact-form-7/admin/admin.php:204
287
- msgid "Default value"
288
- msgstr "Varsayılan değer"
289
-
290
- #: contact-form-7/admin/admin.php:205
291
- msgid "Akismet"
292
- msgstr "Akismet"
293
-
294
- #: contact-form-7/admin/admin.php:206
295
- msgid "This field requires author's name"
296
- msgstr "Bu alanda yazarın adı olmalı"
297
-
298
- #: contact-form-7/admin/admin.php:207
299
- msgid "This field requires author's URL"
300
- msgstr "Bu alanda yazarın sitesi olmalı"
301
-
302
- #: contact-form-7/admin/admin.php:208
303
- msgid "This field requires author's email address"
304
- msgstr "Bu alanda yazarın e-posta adresi olmalı"
305
-
306
- #: contact-form-7/admin/admin.php:209
307
- msgid "Copy this code and paste it into the form left."
308
- msgstr "Bu kodu kopyalayıp formun içine yapıştırın"
309
-
310
- #: contact-form-7/admin/admin.php:210
311
- msgid "Foreground color"
312
- msgstr "Önalan rengi"
313
-
314
- #: contact-form-7/admin/admin.php:211
315
- msgid "Background color"
316
- msgstr "Artalan rengi"
317
-
318
- #: contact-form-7/admin/admin.php:212
319
- msgid "Image size"
320
- msgstr "Görüntü boyutu"
321
-
322
- #: contact-form-7/admin/admin.php:213
323
- msgid "Small"
324
- msgstr "Küçük"
325
-
326
- #: contact-form-7/admin/admin.php:214
327
- msgid "Medium"
328
- msgstr "Orta"
329
-
330
- #: contact-form-7/admin/admin.php:215
331
- msgid "Large"
332
- msgstr "Büyük"
333
-
334
- #: contact-form-7/admin/admin.php:216
335
- msgid "Image settings"
336
- msgstr "Görüntü ayarları"
337
-
338
- #: contact-form-7/admin/admin.php:217
339
- msgid "Input field settings"
340
- msgstr "Girdi alanı ayarları"
341
-
342
- #: contact-form-7/admin/admin.php:218
343
- msgid "For image"
344
- msgstr "Görüntü için"
345
-
346
- #: contact-form-7/admin/admin.php:219
347
- msgid "For input field"
348
- msgstr "Girdi alanı için"
349
-
350
- #: contact-form-7/admin/admin.php:220
351
- msgid "* One choice per line."
352
- msgstr "* Her satıra bir seçim."
353
-
354
- #: contact-form-7/admin/admin.php:221
355
- msgid "Show"
356
- msgstr "Göster"
357
-
358
- #: contact-form-7/admin/admin.php:222
359
- msgid "Hide"
360
- msgstr "Gizle"
361
-
362
- #: contact-form-7/admin/admin.php:223
363
- msgid "File size limit"
364
- msgstr "Dosya boyut limiti"
365
-
366
- #: contact-form-7/admin/admin.php:224
367
- msgid "Acceptable file types"
368
- msgstr "Yüklenebilir dosya türleri"
369
-
370
- #: contact-form-7/admin/admin.php:225
371
- msgid "Note: To use CAPTCHA, you need Really Simple CAPTCHA plugin installed."
372
- msgstr "Not: CAPTCHA kullanmak için, Really Simple CAPTCHA eklentisi yüklü olmalı."
373
-
374
- #: contact-form-7/admin/admin.php:236
375
- msgid "Contact form created."
376
- msgstr "İletişim formu oluşturuldu."
377
-
378
- #: contact-form-7/admin/admin.php:239
379
- msgid "Contact form saved."
380
- msgstr "İletişim formu kaydedildi."
381
-
382
- #: contact-form-7/admin/admin.php:242
383
- msgid "Contact form deleted."
384
- msgstr "İletişim formu silindi."
385
-
386
- #: contact-form-7/admin/admin.php:245
387
- msgid "Database table created."
388
- msgstr "Veritabanı tablosu yaratıldı."
389
-
390
- #: contact-form-7/admin/admin.php:248
391
- msgid "Failed to create database table."
392
- msgstr "Veritabanı tablosu yaratılamadı."
393
-
394
- #: contact-form-7/admin/admin.php:321
395
- msgid "Contact form"
396
- msgstr "İletişim formu"
397
-
398
- #: contact-form-7/admin/admin.php:355
399
- msgid "Settings"
400
- msgstr "Görüntü ayarları"
401
-
402
- #: contact-form-7/admin/admin.php:376
403
- msgid "Contact Form 7 needs your support. Please donate today."
404
- msgstr "Contact Form 7 desteğinizi beklyor. Lütfen bugün bağış yapın."
405
-
406
- #: contact-form-7/admin/admin.php:377
407
- msgid "Is this plugin useful for you? If you like it, please help the developer."
408
- msgstr "Bu eklenti işinize yaradı mı? Eğer yaradıysa, geliştiriciye yardım ediniz."
409
-
410
- #: contact-form-7/admin/admin.php:378
411
- msgid "Your contribution is needed for making this plugin better."
412
- msgstr "Bu eklentiyi daha iyi yapmak için görüşlerinize ihtiyaç duyuyoruz."
413
-
414
- #: contact-form-7/admin/admin.php:379
415
- msgid "Developing a plugin and providing user support is really hard work. Please help."
416
- msgstr "Bir eklentiyi geliştirmek ve kullanıcı desteği sunmak gerçekten çok zor. Lütfen yardımcı olun."
417
-
418
- #: contact-form-7/includes/classes.php:537
419
- msgid "Untitled"
420
- msgstr "Başlıksız"
421
-
422
- #: contact-form-7/includes/functions.php:6
423
- msgid "Your message was sent successfully. Thanks."
424
- msgstr "İletiniz başarıyla gönderildi. Teşekkürler."
425
-
426
- #: contact-form-7/includes/functions.php:8
427
- #: contact-form-7/includes/functions.php:10
428
- msgid "Failed to send your message. Please try later or contact administrator by other way."
429
- msgstr "İletiniz gönderilemedi. Lütfen daha sonra tekrar deneyin ya da yönetici ile farklı bir şekilde iletişime geçin."
430
-
431
- #: contact-form-7/includes/functions.php:12
432
- msgid "Validation errors occurred. Please confirm the fields and submit it again."
433
- msgstr "Geçerlilik hataları meydana geldi. Lütfen alanları doğrulayın ve gönderimi onaylayın."
434
-
435
- #: contact-form-7/includes/functions.php:14
436
- msgid "Please accept the terms to proceed."
437
- msgstr "İlerlemek için lütfen koşulları kabul edin."
438
-
439
- #: contact-form-7/includes/functions.php:16
440
- msgid "Email address seems invalid."
441
- msgstr "E-posta adresi geçersiz görünüyor."
442
-
443
- #: contact-form-7/includes/functions.php:18
444
- msgid "Please fill the required field."
445
- msgstr "Lütfen gerekli alanları doldurun."
446
-
447
- #: contact-form-7/includes/functions.php:20
448
- msgid "Your entered code is incorrect."
449
- msgstr "Girdiğiniz kod doğru değil."
450
-
451
- #: contact-form-7/includes/functions.php:22
452
- msgid "Your answer is not correct."
453
- msgstr "Girdiğiniz kod doğru değil."
454
-
455
- #: contact-form-7/includes/functions.php:24
456
- msgid "Failed to upload file."
457
- msgstr "Dosya yükleme başarısız."
458
-
459
- #: contact-form-7/includes/functions.php:26
460
- msgid "This file type is not allowed."
461
- msgstr "Bu dosya türü kabul edilmiyor."
462
-
463
- #: contact-form-7/includes/functions.php:28
464
- msgid "This file is too large."
465
- msgstr "Bu alanda yazarın adı olmalı"
466
-
467
- #: contact-form-7/includes/functions.php:30
468
- msgid "Failed to upload file. Error occurred."
469
- msgstr "Dosya yükleme başarısız. Hata oluştu."
470
-
471
- #: contact-form-7/includes/functions.php:35
472
- msgid "Your Name"
473
- msgstr "İsim"
474
-
475
- #: contact-form-7/includes/functions.php:35
476
- #: contact-form-7/includes/functions.php:37
477
- msgid "(required)"
478
- msgstr "(gerekli)"
479
-
480
- #: contact-form-7/includes/functions.php:37
481
- msgid "Your Email"
482
- msgstr "E-posta"
483
-
484
- #: contact-form-7/includes/functions.php:39
485
- msgid "Subject"
486
- msgstr "Konu"
487
-
488
- #: contact-form-7/includes/functions.php:41
489
- msgid "Your Message"
490
- msgstr "İleti"
491
-
492
- #: contact-form-7/includes/functions.php:43
493
- msgid "Send"
494
- msgstr "Gönder"
495
-
496
- #: contact-form-7/modules/captcha.php:62
497
- msgid "To use CAPTCHA, you need <a href=\"http://wordpress.org/extend/plugins/really-simple-captcha/\">Really Simple CAPTCHA</a> plugin installed."
498
- msgstr "CAPTCHA kullanmak için, <a href=\"http://wordpress.org/extend/plugins/really-simple-captcha/\">Really Simple CAPTCHA</a> eklentisi yüklü olmalı."
499
-
500
- #~ msgid "Delete this contact form"
501
- #~ msgstr "Bu iletişim formunu sil"
502
-
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
languages/wpcf7-uk.po DELETED
@@ -1,850 +0,0 @@
1
- msgid ""
2
- msgstr ""
3
- "Project-Id-Version: Contact Form 7 Uk\n"
4
- "Report-Msgid-Bugs-To: \n"
5
- "POT-Creation-Date: 2010-03-23 06:47+0900\n"
6
- "PO-Revision-Date: 2010-03-27 00:08+0300\n"
7
- "Last-Translator: Jurko Chervony <info@skinik.name>\n"
8
- "Language-Team: skinik <wordpress@skinik.name>\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: Ukrainian\n"
13
- "X-Poedit-Country: UKRAINE\n"
14
- "X-Poedit-SourceCharset: utf-8\n"
15
- "X-Poedit-KeywordsList: __;_e\n"
16
- "X-Poedit-Basepath: .\n"
17
- "X-Poedit-SearchPath-0: .\n"
18
-
19
- #: contact-form-7/admin/admin.php:120
20
- #: contact-form-7/admin/edit.php:17
21
- #: contact-form-7/admin/edit.php:30
22
- msgid "Contact Form 7"
23
- msgstr "Contact Form 7"
24
-
25
- #: contact-form-7/admin/admin.php:120
26
- msgid "Contact"
27
- msgstr "Форма зв'язку"
28
-
29
- #: contact-form-7/admin/admin.php:123
30
- msgid "Edit Contact Forms"
31
- msgstr "Редагувати контактні форми"
32
-
33
- #: contact-form-7/admin/admin.php:123
34
- msgid "Edit"
35
- msgstr "Редагувати"
36
-
37
- #: contact-form-7/admin/admin.php:162
38
- msgid "Generate Tag"
39
- msgstr "Створити теґ"
40
-
41
- #: contact-form-7/admin/admin.php:163
42
- msgid "Show"
43
- msgstr "Показати"
44
-
45
- #: contact-form-7/admin/admin.php:164
46
- msgid "Hide"
47
- msgstr "Сховати"
48
-
49
- #: contact-form-7/admin/admin.php:261
50
- msgid "Contact form"
51
- msgstr "Форма для зв'язку"
52
-
53
- #: contact-form-7/admin/admin.php:280
54
- msgid "Settings"
55
- msgstr "Налаштування"
56
-
57
- #: contact-form-7/admin/admin.php:291
58
- msgid "http://contactform7.com/"
59
- msgstr "http://contactform7.com/"
60
-
61
- #: contact-form-7/admin/admin.php:292
62
- msgid "Contactform7.com"
63
- msgstr "Contactform7.com"
64
-
65
- #: contact-form-7/admin/admin.php:293
66
- msgid "http://contactform7.com/docs/"
67
- msgstr "http://contactform7.com/docs/"
68
-
69
- #: contact-form-7/admin/admin.php:294
70
- msgid "Docs"
71
- msgstr "Статті"
72
-
73
- #: contact-form-7/admin/admin.php:295
74
- msgid "http://contactform7.com/faq/"
75
- msgstr "http://contactform7.com/faq/"
76
-
77
- #: contact-form-7/admin/admin.php:296
78
- msgid "FAQ"
79
- msgstr "ЧаПи"
80
-
81
- #: contact-form-7/admin/admin.php:297
82
- msgid "http://contactform7.com/support/"
83
- msgstr "http://contactform7.com/support/"
84
-
85
- #: contact-form-7/admin/admin.php:298
86
- msgid "Support"
87
- msgstr "Підтримка"
88
-
89
- #: contact-form-7/admin/admin.php:312
90
- msgid "Contact form created."
91
- msgstr "Контактну форму створено."
92
-
93
- #: contact-form-7/admin/admin.php:315
94
- msgid "Contact form saved."
95
- msgstr "Контактну форму збережено."
96
-
97
- #: contact-form-7/admin/admin.php:318
98
- msgid "Contact form deleted."
99
- msgstr "Контактну форму видалено."
100
-
101
- #: contact-form-7/admin/admin.php:321
102
- msgid "Database table created."
103
- msgstr "Таблицю у БД створено."
104
-
105
- #: contact-form-7/admin/admin.php:324
106
- msgid "Failed to create database table."
107
- msgstr "Невдала спроба створити таблицю у БД."
108
-
109
- #: contact-form-7/admin/admin.php:357
110
- msgid "Contact Form 7 needs your support. Please donate today."
111
- msgstr "Contact Form 7 потребує Вашої підтримки. Зробіть пожертвування на розвиток плаґіну сьогодні."
112
-
113
- #: contact-form-7/admin/admin.php:358
114
- msgid "Your contribution is needed for making this plugin better."
115
- msgstr "Завдяки Вашому внеску плаґін стане кращим."
116
-
117
- #: contact-form-7/admin/admin.php:364
118
- msgid "http://contactform7.com/donate/"
119
- msgstr "http://contactform7.com/donate/"
120
-
121
- #: contact-form-7/admin/admin.php:364
122
- msgid "Donate"
123
- msgstr "Пожертвування"
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>Таблиця у БД для Contact Form 7 не існує.</strong> Вам необхідно <a href=\"%s\">створити її</a> для того, щоб плаґін запрацював."
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>Таблиця у БД для Contact Form 7 не існує.</strong>"
133
-
134
- #: contact-form-7/admin/edit.php:45
135
- msgid "Add new"
136
- msgstr "Додати нову"
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 "Скопіюйте і вставте цей код в Вашу сторінку або публікацію чи текстовий віджет."
141
-
142
- #: contact-form-7/admin/edit.php:75
143
- #: contact-form-7/admin/edit.php:309
144
- msgid "Save"
145
- msgstr "Зберегти"
146
-
147
- #: contact-form-7/admin/edit.php:82
148
- msgid "Copy"
149
- msgstr "Копіювати"
150
-
151
- #: contact-form-7/admin/edit.php:87
152
- msgid "Delete"
153
- msgstr "Видалити"
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 ""
160
- "Видалити цю форму?.\n"
161
- " 'Cancel' - залишити, 'OK' - видалити."
162
-
163
- #: contact-form-7/admin/edit.php:104
164
- msgid "Form"
165
- msgstr "Форма"
166
-
167
- #: contact-form-7/admin/edit.php:128
168
- msgid "Mail"
169
- msgstr "Пошта"
170
-
171
- #: contact-form-7/admin/edit.php:135
172
- #: contact-form-7/admin/edit.php:202
173
- msgid "To:"
174
- msgstr "Кому:"
175
-
176
- #: contact-form-7/admin/edit.php:140
177
- #: contact-form-7/admin/edit.php:207
178
- msgid "From:"
179
- msgstr "Від:"
180
-
181
- #: contact-form-7/admin/edit.php:145
182
- #: contact-form-7/admin/edit.php:212
183
- msgid "Subject:"
184
- msgstr "Тема:"
185
-
186
- #: contact-form-7/admin/edit.php:152
187
- #: contact-form-7/admin/edit.php:219
188
- msgid "Additional headers:"
189
- msgstr "Додаткові заголовки"
190
-
191
- #: contact-form-7/admin/edit.php:157
192
- #: contact-form-7/admin/edit.php:224
193
- msgid "File attachments:"
194
- msgstr "Приєднані файли: "
195
-
196
- #: contact-form-7/admin/edit.php:165
197
- #: contact-form-7/admin/edit.php:232
198
- msgid "Use HTML content type"
199
- msgstr "Використовувати HTML у повідомленні"
200
-
201
- #: contact-form-7/admin/edit.php:172
202
- #: contact-form-7/admin/edit.php:239
203
- #: contact-form-7/includes/functions.php:78
204
- msgid "Message body:"
205
- msgstr "Текст повідомлення:"
206
-
207
- #: contact-form-7/admin/edit.php:188
208
- msgid "Mail (2)"
209
- msgstr "Пошта (2)"
210
-
211
- #: contact-form-7/admin/edit.php:194
212
- msgid "Use mail (2)"
213
- msgstr "Відправляти на пошту (2)"
214
-
215
- #: contact-form-7/admin/edit.php:255
216
- msgid "Messages"
217
- msgstr "Повідомлення"
218
-
219
- #: contact-form-7/admin/edit.php:285
220
- msgid "Additional Settings"
221
- msgstr "Додаткові налаштування"
222
-
223
- #: contact-form-7/admin/edit.php:333
224
- #, php-format
225
- msgid "Use the default language (%s)"
226
- msgstr "Використати мову за замовчуванням (%s)"
227
-
228
- #: contact-form-7/admin/edit.php:334
229
- #: contact-form-7/admin/edit.php:347
230
- msgid "Add New"
231
- msgstr "Додати нову"
232
-
233
- #: contact-form-7/admin/edit.php:337
234
- msgid "Or"
235
- msgstr "Або"
236
-
237
- #: contact-form-7/admin/edit.php:342
238
- msgid "(select language)"
239
- msgstr "(оберіть мову)"
240
-
241
- #: contact-form-7/includes/classes.php:564
242
- msgid "Untitled"
243
- msgstr "Без назви"
244
-
245
- #: contact-form-7/includes/functions.php:6
246
- msgid "Sender's message was sent successfully"
247
- msgstr "Дякуємо! Ваше повідомлення відправлено."
248
-
249
- #: contact-form-7/includes/functions.php:7
250
- msgid "Your message was sent successfully. Thanks."
251
- msgstr "Дякуємо! Ваше повідомлення відправлено."
252
-
253
- #: contact-form-7/includes/functions.php:11
254
- msgid "Sender's message was failed to send"
255
- msgstr "Не вдалося надіслати"
256
-
257
- #: contact-form-7/includes/functions.php:12
258
- #: contact-form-7/includes/functions.php:17
259
- msgid "Failed to send your message. Please try later or contact administrator by other way."
260
- msgstr "Помилка! Будь ласка спробуйте ще раз. Якщо помилка залишається, будь ласка, зв'яжіться з нами іншим шляхом. "
261
-
262
- #: contact-form-7/includes/functions.php:16
263
- msgid "Akismet judged the sending activity as spamming"
264
- msgstr "Akismet вважає Ваше повідомлення спамом. Спробуйте зв’язатися іншим шляхом."
265
-
266
- #: contact-form-7/includes/functions.php:21
267
- msgid "Validation errors occurred"
268
- msgstr "Помилки при заповненні"
269
-
270
- #: contact-form-7/includes/functions.php:22
271
- msgid "Validation errors occurred. Please confirm the fields and submit it again."
272
- msgstr "Помилка при заповненні. Зверніть увагу на необхідні поля і відправте ще раз."
273
-
274
- #: contact-form-7/includes/functions.php:26
275
- msgid "There is a field of term that sender is needed to accept"
276
- msgstr "Необхідно відмітити"
277
-
278
- #: contact-form-7/includes/functions.php:27
279
- msgid "Please accept the terms to proceed."
280
- msgstr "Відмітьте, якщо необхідно."
281
-
282
- #: contact-form-7/includes/functions.php:31
283
- msgid "Email address that sender entered is invalid"
284
- msgstr "Е-mail адресу вказано невірно."
285
-
286
- #: contact-form-7/includes/functions.php:32
287
- msgid "Email address seems invalid."
288
- msgstr "Еmail адресу вказано невірно."
289
-
290
- #: contact-form-7/includes/functions.php:36
291
- msgid "There is a field that sender is needed to fill in"
292
- msgstr "Необхідні поля для заповнення"
293
-
294
- #: contact-form-7/includes/functions.php:37
295
- msgid "Please fill the required field."
296
- msgstr "Будь ласка, заповніть всі необхідні поля."
297
-
298
- #: contact-form-7/includes/functions.php:46
299
- msgid "Your Name"
300
- msgstr "Ваше ім'я"
301
-
302
- #: contact-form-7/includes/functions.php:46
303
- #: contact-form-7/includes/functions.php:48
304
- msgid "(required)"
305
- msgstr "(обов'язково)"
306
-
307
- #: contact-form-7/includes/functions.php:48
308
- msgid "Your Email"
309
- msgstr "Ваш email"
310
-
311
- #: contact-form-7/includes/functions.php:50
312
- msgid "Subject"
313
- msgstr "Тема"
314
-
315
- #: contact-form-7/includes/functions.php:52
316
- msgid "Your Message"
317
- msgstr "Повідомлення"
318
-
319
- #: contact-form-7/includes/functions.php:54
320
- msgid "Send"
321
- msgstr "Відправити"
322
-
323
- #: contact-form-7/includes/functions.php:62
324
- #, php-format
325
- msgid "From: %s"
326
- msgstr "Від: %s"
327
-
328
- #: contact-form-7/includes/functions.php:63
329
- #, php-format
330
- msgid "Subject: %s"
331
- msgstr "Тема: %s"
332
-
333
- #: contact-form-7/includes/functions.php:64
334
- msgid "Message Body:"
335
- msgstr "Текст повідомлення:"
336
-
337
- #: contact-form-7/includes/functions.php:65
338
- #: contact-form-7/includes/functions.php:79
339
- #, php-format
340
- msgid "This mail is sent via contact form on %1$s %2$s"
341
- msgstr "Цього листа надіслано за допомогою контактної форми %1$s %2$s"
342
-
343
- #: contact-form-7/includes/functions.php:168
344
- msgid "Afrikaans"
345
- msgstr ""
346
-
347
- #: contact-form-7/includes/functions.php:169
348
- msgid "Albanian"
349
- msgstr ""
350
-
351
- #: contact-form-7/includes/functions.php:170
352
- msgid "Arabic"
353
- msgstr ""
354
-
355
- #: contact-form-7/includes/functions.php:171
356
- msgid "Bangla"
357
- msgstr ""
358
-
359
- #: contact-form-7/includes/functions.php:172
360
- msgid "Bosnian"
361
- msgstr ""
362
-
363
- #: contact-form-7/includes/functions.php:173
364
- msgid "Brazilian Portuguese"
365
- msgstr ""
366
-
367
- #: contact-form-7/includes/functions.php:174
368
- msgid "Bulgarian"
369
- msgstr ""
370
-
371
- #: contact-form-7/includes/functions.php:175
372
- msgid "Catalan"
373
- msgstr ""
374
-
375
- #: contact-form-7/includes/functions.php:176
376
- msgid "Chinese (Simplified)"
377
- msgstr ""
378
-
379
- #: contact-form-7/includes/functions.php:177
380
- msgid "Chinese (Traditional)"
381
- msgstr ""
382
-
383
- #: contact-form-7/includes/functions.php:178
384
- msgid "Croatian"
385
- msgstr ""
386
-
387
- #: contact-form-7/includes/functions.php:179
388
- msgid "Czech"
389
- msgstr ""
390
-
391
- #: contact-form-7/includes/functions.php:180
392
- msgid "Danish"
393
- msgstr ""
394
-
395
- #: contact-form-7/includes/functions.php:181
396
- msgid "Dutch"
397
- msgstr ""
398
-
399
- #: contact-form-7/includes/functions.php:182
400
- msgid "English"
401
- msgstr ""
402
-
403
- #: contact-form-7/includes/functions.php:183
404
- msgid "Estonian"
405
- msgstr ""
406
-
407
- #: contact-form-7/includes/functions.php:184
408
- msgid "Finnish"
409
- msgstr ""
410
-
411
- #: contact-form-7/includes/functions.php:185
412
- msgid "French"
413
- msgstr ""
414
-
415
- #: contact-form-7/includes/functions.php:186
416
- msgid "Galician"
417
- msgstr ""
418
-
419
- #: contact-form-7/includes/functions.php:187
420
- msgid "Georgian"
421
- msgstr ""
422
-
423
- #: contact-form-7/includes/functions.php:188
424
- msgid "German"
425
- msgstr ""
426
-
427
- #: contact-form-7/includes/functions.php:189
428
- msgid "Greek"
429
- msgstr ""
430
-
431
- #: contact-form-7/includes/functions.php:190
432
- msgid "Hebrew"
433
- msgstr ""
434
-
435
- #: contact-form-7/includes/functions.php:191
436
- msgid "Hindi"
437
- msgstr ""
438
-
439
- #: contact-form-7/includes/functions.php:192
440
- msgid "Hungarian"
441
- msgstr ""
442
-
443
- #: contact-form-7/includes/functions.php:193
444
- msgid "Indonesian"
445
- msgstr ""
446
-
447
- #: contact-form-7/includes/functions.php:194
448
- msgid "Italian"
449
- msgstr ""
450
-
451
- #: contact-form-7/includes/functions.php:195
452
- msgid "Japanese"
453
- msgstr ""
454
-
455
- #: contact-form-7/includes/functions.php:196
456
- msgid "Korean"
457
- msgstr ""
458
-
459
- #: contact-form-7/includes/functions.php:197
460
- msgid "Latvian"
461
- msgstr ""
462
-
463
- #: contact-form-7/includes/functions.php:198
464
- msgid "Lithuanian"
465
- msgstr ""
466
-
467
- #: contact-form-7/includes/functions.php:199
468
- msgid "Malayalam"
469
- msgstr ""
470
-
471
- #: contact-form-7/includes/functions.php:200
472
- msgid "Norwegian"
473
- msgstr ""
474
-
475
- #: contact-form-7/includes/functions.php:201
476
- msgid "Persian"
477
- msgstr ""
478
-
479
- #: contact-form-7/includes/functions.php:202
480
- msgid "Polish"
481
- msgstr ""
482
-
483
- #: contact-form-7/includes/functions.php:203
484
- msgid "Portuguese"
485
- msgstr ""
486
-
487
- #: contact-form-7/includes/functions.php:204
488
- msgid "Russian"
489
- msgstr ""
490
-
491
- #: contact-form-7/includes/functions.php:205
492
- msgid "Romanian"
493
- msgstr ""
494
-
495
- #: contact-form-7/includes/functions.php:206
496
- msgid "Serbian"
497
- msgstr ""
498
-
499
- #: contact-form-7/includes/functions.php:207
500
- msgid "Slovak"
501
- msgstr ""
502
-
503
- #: contact-form-7/includes/functions.php:208
504
- msgid "Slovene"
505
- msgstr ""
506
-
507
- #: contact-form-7/includes/functions.php:209
508
- msgid "Spanish"
509
- msgstr ""
510
-
511
- #: contact-form-7/includes/functions.php:210
512
- msgid "Swedish"
513
- msgstr ""
514
-
515
- #: contact-form-7/includes/functions.php:211
516
- msgid "Thai"
517
- msgstr ""
518
-
519
- #: contact-form-7/includes/functions.php:212
520
- msgid "Turkish"
521
- msgstr ""
522
-
523
- #: contact-form-7/includes/functions.php:213
524
- msgid "Ukrainian"
525
- msgstr "Ukrainian — Українська"
526
-
527
- #: contact-form-7/includes/functions.php:214
528
- msgid "Vietnamese"
529
- msgstr ""
530
-
531
- #: contact-form-7/modules/acceptance.php:104
532
- msgid "Acceptance"
533
- msgstr "Погодження"
534
-
535
- #: contact-form-7/modules/acceptance.php:113
536
- #: contact-form-7/modules/captcha.php:214
537
- #: contact-form-7/modules/checkbox.php:209
538
- #: contact-form-7/modules/file.php:241
539
- msgid "Name"
540
- msgstr "Ім'я"
541
-
542
- #: contact-form-7/modules/acceptance.php:118
543
- #: contact-form-7/modules/acceptance.php:121
544
- #: contact-form-7/modules/captcha.php:221
545
- #: contact-form-7/modules/captcha.php:224
546
- #: contact-form-7/modules/captcha.php:229
547
- #: contact-form-7/modules/captcha.php:232
548
- #: contact-form-7/modules/captcha.php:236
549
- #: contact-form-7/modules/captcha.php:247
550
- #: contact-form-7/modules/captcha.php:250
551
- #: contact-form-7/modules/captcha.php:255
552
- #: contact-form-7/modules/captcha.php:258
553
- #: contact-form-7/modules/checkbox.php:214
554
- #: contact-form-7/modules/checkbox.php:217
555
- #: contact-form-7/modules/file.php:246
556
- #: contact-form-7/modules/file.php:249
557
- #: contact-form-7/modules/file.php:254
558
- #: contact-form-7/modules/file.php:257
559
- msgid "optional"
560
- msgstr "додатково"
561
-
562
- #: contact-form-7/modules/acceptance.php:127
563
- msgid "Make this checkbox checked by default?"
564
- msgstr "Зробити цей чекбокс обраним за замовчуванням?"
565
-
566
- #: contact-form-7/modules/acceptance.php:128
567
- msgid "Make this checkbox work inversely?"
568
- msgstr "Зробити цей чекбокс працюючим навпаки?"
569
-
570
- #: contact-form-7/modules/acceptance.php:129
571
- msgid "* That means visitor who accepts the term unchecks it."
572
- msgstr "* Це означає, що відвідувач який відмітив пункт, відмінив вибір."
573
-
574
- #: contact-form-7/modules/acceptance.php:134
575
- #: contact-form-7/modules/captcha.php:263
576
- #: contact-form-7/modules/checkbox.php:237
577
- #: contact-form-7/modules/file.php:262
578
- msgid "Copy this code and paste it into the form left."
579
- msgstr "Скопіюйте і вставте цей код в Вашу сторінку"
580
-
581
- #: contact-form-7/modules/captcha.php:70
582
- msgid "To use CAPTCHA, you need <a href=\"http://wordpress.org/extend/plugins/really-simple-captcha/\">Really Simple CAPTCHA</a> plugin installed."
583
- msgstr "Для використання каптчі, Вам необхідно встановити плаґін <a href=\"http://wordpress.org/extend/plugins/really-simple-captcha/\">Really Simple CAPTCHA</a>."
584
-
585
- #: contact-form-7/modules/captcha.php:189
586
- msgid "The code that sender entered does not match the CAPTCHA"
587
- msgstr "Невірний код каптчі."
588
-
589
- #: contact-form-7/modules/captcha.php:190
590
- msgid "Your entered code is incorrect."
591
- msgstr "Введено невірний контрольний код."
592
-
593
- #: contact-form-7/modules/captcha.php:200
594
- msgid "CAPTCHA"
595
- msgstr "Капча"
596
-
597
- #: contact-form-7/modules/captcha.php:211
598
- msgid "Note: To use CAPTCHA, you need Really Simple CAPTCHA plugin installed."
599
- msgstr "Примітка: Для використання каптчі, Вам необхідно встановити плаґін Really Simple CAPTCHA."
600
-
601
- #: contact-form-7/modules/captcha.php:218
602
- msgid "Image settings"
603
- msgstr "Налаштування зображення"
604
-
605
- #: contact-form-7/modules/captcha.php:229
606
- msgid "Foreground color"
607
- msgstr "Колір переднього плану"
608
-
609
- #: contact-form-7/modules/captcha.php:232
610
- msgid "Background color"
611
- msgstr "Колір фону"
612
-
613
- #: contact-form-7/modules/captcha.php:236
614
- msgid "Image size"
615
- msgstr "Розмір зображення"
616
-
617
- #: contact-form-7/modules/captcha.php:237
618
- msgid "Small"
619
- msgstr "Маленький"
620
-
621
- #: contact-form-7/modules/captcha.php:238
622
- msgid "Medium"
623
- msgstr "Середній"
624
-
625
- #: contact-form-7/modules/captcha.php:239
626
- msgid "Large"
627
- msgstr "Великий"
628
-
629
- #: contact-form-7/modules/captcha.php:244
630
- msgid "Input field settings"
631
- msgstr "Налаштування полів вводу"
632
-
633
- #: contact-form-7/modules/captcha.php:264
634
- msgid "For image"
635
- msgstr "Для зображення"
636
-
637
- #: contact-form-7/modules/captcha.php:266
638
- msgid "For input field"
639
- msgstr "Для поля введення"
640
-
641
- #: contact-form-7/modules/captcha.php:296
642
- #, php-format
643
- msgid "This contact form contains CAPTCHA fields, but the temporary folder for the files (%s) does not exist or is not writable. You can create the folder or change its permission manually."
644
- msgstr "Ця форма містить поля каптчі, але в тимчасова тека для файлів (%s) не існує або не доступна для запису. Ви можете створити її або встановити дозвіл на запис вручну."
645
-
646
- #: contact-form-7/modules/captcha.php:302
647
- msgid "This contact form contains CAPTCHA fields, but the necessary libraries (GD and FreeType) are not available on your server."
648
- msgstr "Ця форма використовує каптчу і потрібна бібліотека GD, але вона не доступна на Вашому сервері."
649
-
650
- #: contact-form-7/modules/checkbox.php:182
651
- msgid "Checkboxes"
652
- msgstr "Чекбокси"
653
-
654
- #: contact-form-7/modules/checkbox.php:185
655
- msgid "Radio buttons"
656
- msgstr "Радіо-кнопки"
657
-
658
- #: contact-form-7/modules/checkbox.php:206
659
- #: contact-form-7/modules/file.php:240
660
- msgid "Required field?"
661
- msgstr "Обов'язкове поле?"
662
-
663
- #: contact-form-7/modules/checkbox.php:222
664
- msgid "Choices"
665
- msgstr "Вибір"
666
-
667
- #: contact-form-7/modules/checkbox.php:224
668
- msgid "* One choice per line."
669
- msgstr "* По одній в рядку."
670
-
671
- #: contact-form-7/modules/checkbox.php:228
672
- msgid "Put a label first, a checkbox last?"
673
- msgstr "Вставити спершу label, а checkbox після?"
674
-
675
- #: contact-form-7/modules/checkbox.php:229
676
- msgid "Wrap each item with <label> tag?"
677
- msgstr "Загорніть кожен елемент в теґ <label>"
678
-
679
- #: contact-form-7/modules/checkbox.php:231
680
- msgid "Make checkboxes exclusive?"
681
- msgstr "Зробити ці чекбокси ексклюзивними?"
682
-
683
- #: contact-form-7/modules/checkbox.php:239
684
- msgid "And, put this code into the Mail fields below."
685
- msgstr "Та вставте цей код у поле листа нижче"
686
-
687
- #: contact-form-7/modules/file.php:204
688
- msgid "Uploading a file fails for any reason"
689
- msgstr "Помилка завантаження файлу"
690
-
691
- #: contact-form-7/modules/file.php:205
692
- msgid "Failed to upload file."
693
- msgstr "Помилка при завантаженні файлу."
694
-
695
- #: contact-form-7/modules/file.php:209
696
- msgid "Uploaded file is not allowed file type"
697
- msgstr "Не дозволений тип файлів для завантаження"
698
-
699
- #: contact-form-7/modules/file.php:210
700
- msgid "This file type is not allowed."
701
- msgstr "Цей тип файлу не дозволений."
702
-
703
- #: contact-form-7/modules/file.php:214
704
- msgid "Uploaded file is too large"
705
- msgstr "Завантажений файл занадто великий"
706
-
707
- #: contact-form-7/modules/file.php:215
708
- msgid "This file is too large."
709
- msgstr "Цей файл завеликий."
710
-
711
- #: contact-form-7/modules/file.php:219
712
- msgid "Uploading a file fails for PHP error"
713
- msgstr "Збій при завантаженні"
714
-
715
- #: contact-form-7/modules/file.php:220
716
- msgid "Failed to upload file. Error occurred."
717
- msgstr "Збій при завантаженні файлу. Виникла помилка."
718
-
719
- #: contact-form-7/modules/file.php:231
720
- msgid "File upload"
721
- msgstr "Завантаження файлу"
722
-
723
- #: contact-form-7/modules/file.php:254
724
- msgid "File size limit"
725
- msgstr "Максимальний розмір файлу"
726
-
727
- #: contact-form-7/modules/file.php:254
728
- msgid "bytes"
729
- msgstr "байт"
730
-
731
- #: contact-form-7/modules/file.php:257
732
- msgid "Acceptable file types"
733
- msgstr "Допустимі типі файлів"
734
-
735
- #: contact-form-7/modules/file.php:264
736
- msgid "And, put this code into the File Attachments field below."
737
- msgstr "Та вставте цей код у поле прикріплення файлу до листа знизу."
738
-
739
- #: contact-form-7/modules/file.php:289
740
- #, php-format
741
- msgid "This contact form contains file uploading fields, but the temporary folder for the files (%s) does not exist or is not writable. You can create the folder or change its permission manually."
742
- msgstr "Ця форма містить поля для завантаження файлів, але тимчасова тека для файлів (%s) не існує або не має права на запис. Ви можете створити її вручну або встановити дозвіл на запис."
743
-
744
- #: contact-form-7/modules/icl.php:74
745
- msgid "This contact form contains [icl] tags, but they are obsolete and no longer functioning on this version of Contact Form 7. <a href=\"http://contactform7.com/2009/12/25/contact-form-in-your-language/#Creating_contact_form_in_different_languages\" target=\"_blank\">There is a simpler way for creating contact forms of other languages</a> and you are recommended to use it."
746
- msgstr ""
747
-
748
- #: contact-form-7/modules/quiz.php:170
749
- msgid "Sender doesn't enter the correct answer to the quiz"
750
- msgstr "Відправник не відповів на запитання"
751
-
752
- #: contact-form-7/modules/quiz.php:171
753
- msgid "Your answer is not correct."
754
- msgstr "Ваша відповідь невірна."
755
-
756
- #: contact-form-7/modules/quiz.php:181
757
- msgid "Quiz"
758
- msgstr "Запитання"
759
-
760
- #: contact-form-7/modules/quiz.php:211
761
- msgid "Quizzes"
762
- msgstr "Запитання"
763
-
764
- #: contact-form-7/modules/quiz.php:213
765
- msgid "* quiz|answer (e.g. 1+1=?|2)"
766
- msgstr "* запитання|відповідь (приклад: 1+1=?|2)"
767
-
768
- #: contact-form-7/modules/select.php:154
769
- msgid "Drop-down menu"
770
- msgstr "Випадаюче меню"
771
-
772
- #: contact-form-7/modules/select.php:183
773
- msgid "Allow multiple selections?"
774
- msgstr "Дозволяти множинний вибір?"
775
-
776
- #: contact-form-7/modules/select.php:184
777
- msgid "Insert a blank item as the first option?"
778
- msgstr "Вставляти пустий пункт як першу опцію?"
779
-
780
- #: contact-form-7/modules/submit.php:62
781
- msgid "Submit button"
782
- msgstr "Кнопка відправки"
783
-
784
- #: contact-form-7/modules/submit.php:80
785
- msgid "Label"
786
- msgstr "Ярлик"
787
-
788
- #: contact-form-7/modules/text.php:137
789
- msgid "Text field"
790
- msgstr "Текстове поле"
791
-
792
- #: contact-form-7/modules/text.php:140
793
- msgid "Email field"
794
- msgstr "Поле e-mail"
795
-
796
- #: contact-form-7/modules/text.php:182
797
- msgid "Akismet"
798
- msgstr "Akismet"
799
-
800
- #: contact-form-7/modules/text.php:184
801
- msgid "This field requires author's name"
802
- msgstr "Це поле потребує ім'я автора"
803
-
804
- #: contact-form-7/modules/text.php:185
805
- msgid "This field requires author's URL"
806
- msgstr "Це поле потребує URL автора"
807
-
808
- #: contact-form-7/modules/text.php:187
809
- msgid "This field requires author's email address"
810
- msgstr "Це поле потребує email автора"
811
-
812
- #: contact-form-7/modules/text.php:191
813
- #: contact-form-7/modules/textarea.php:157
814
- msgid "Default value"
815
- msgstr "Значення за замовчуванням"
816
-
817
- #: contact-form-7/modules/textarea.php:126
818
- msgid "Text area"
819
- msgstr "Багаторядкове текстове поле"
820
-
821
- #~ msgid ""
822
- #~ "Is this plugin useful for you? If you like it, please help the developer."
823
- #~ msgstr "Цей плаґін корисний для Вас? Допоможіть мені у його розробці."
824
- #~ msgid ""
825
- #~ "Developing a plugin and providing user support is really hard work. "
826
- #~ "Please help."
827
- #~ msgstr "Розробляти плаґіни складно, будь ласка, допоможіть мені у цьому."
828
- #~ msgid "This mail is created by Contact Form 7 plugin for WordPress."
829
- #~ msgstr " "
830
- #~ msgid "Delete this contact form"
831
- #~ msgstr "Видалити цю форму"
832
- #~ msgid "Form content"
833
- #~ msgstr "Зміст форми"
834
- #~ msgid "Mail template"
835
- #~ msgstr "Шаблон листа"
836
- #~ msgid "Sender field:"
837
- #~ msgstr "Адреса відправника:"
838
- #~ msgid "Recipient address:"
839
- #~ msgstr "Адреса отримувача:"
840
- #~ msgid "Check this field as sender&#39;s name"
841
- #~ msgstr "Перевіряти це поле як им'я відправника"
842
- #~ msgid "Check this field as sender&#39;s email"
843
- #~ msgstr "Перевіряти це поле як e-mail"
844
- #~ msgid "Check this field as sender&#39;s URL"
845
- #~ msgstr "Перевіряти це поле як URL"
846
- #~ msgid "Don&#39;t check this field with Akismet"
847
- #~ msgstr "Перевіряти це поле за допомогою Akismet"
848
- #~ msgid "Insert"
849
- #~ msgstr "Вставити"
850
-
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
languages/wpcf7-vi.po DELETED
@@ -1,405 +0,0 @@
1
- msgid ""
2
- msgstr ""
3
- "Project-Id-Version: Contact Form 7\n"
4
- "Report-Msgid-Bugs-To: \n"
5
- "POT-Creation-Date: 2008-12-07 00:21+0900\n"
6
- "PO-Revision-Date: 2009-01-08 18:00+0700\n"
7
- "Last-Translator: Thanh Hai, Ha <thanhhai.ha@gmail.com>\n"
8
- "Language-Team: Thanh Hai, ha <thanhhai.ha@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: Vietnamese\n"
17
- "X-Poedit-Country: VIET NAM\n"
18
- "X-Poedit-SearchPath-0: contact-form-7\n"
19
-
20
- #: contact-form-7/wp-contact-form-7.php:391
21
- msgid "Contact form"
22
- msgstr "Biểu mẫu liên hệ"
23
-
24
- #: contact-form-7/wp-contact-form-7.php:548
25
- #: contact-form-7/includes/admin-panel.php:5
26
- msgid "Contact Form 7"
27
- msgstr "Contact Form 7"
28
-
29
- #: contact-form-7/wp-contact-form-7.php:566
30
- msgid "optional"
31
- msgstr "tùy chọn"
32
-
33
- #: contact-form-7/wp-contact-form-7.php:567
34
- msgid "Generate Tag"
35
- msgstr "Tạo Thẻ"
36
-
37
- #: contact-form-7/wp-contact-form-7.php:568
38
- msgid "Text field"
39
- msgstr "Trường văn bản"
40
-
41
- #: contact-form-7/wp-contact-form-7.php:569
42
- msgid "Email field"
43
- msgstr "Trường thư điện tử"
44
-
45
- #: contact-form-7/wp-contact-form-7.php:570
46
- msgid "Text area"
47
- msgstr "Khung nhập liệu"
48
-
49
- #: contact-form-7/wp-contact-form-7.php:571
50
- msgid "Drop-down menu"
51
- msgstr "Danh sách chọn"
52
-
53
- #: contact-form-7/wp-contact-form-7.php:572
54
- msgid "Checkboxes"
55
- msgstr "Ô kiểm"
56
-
57
- #: contact-form-7/wp-contact-form-7.php:573
58
- msgid "Radio buttons"
59
- msgstr "Nút chọn"
60
-
61
- #: contact-form-7/wp-contact-form-7.php:574
62
- msgid "Acceptance"
63
- msgstr "Chấp nhận"
64
-
65
- #: contact-form-7/wp-contact-form-7.php:575
66
- msgid "Make this checkbox checked by default?"
67
- msgstr "Mặc định chọn sẵn"
68
-
69
- #: contact-form-7/wp-contact-form-7.php:576
70
- msgid "Make this checkbox work inversely?"
71
- msgstr "Có tác dụng ngược lại"
72
-
73
- #: contact-form-7/wp-contact-form-7.php:577
74
- msgid "* That means visitor who accepts the term unchecks it."
75
- msgstr "* Có nghĩa là khách ghé không đánh dấu chọn nếu chấp nhận."
76
-
77
- #: contact-form-7/wp-contact-form-7.php:578
78
- msgid "CAPTCHA"
79
- msgstr "CAPTCHA"
80
-
81
- #: contact-form-7/wp-contact-form-7.php:579
82
- msgid "File upload"
83
- msgstr "Đính kèm tập tin"
84
-
85
- #: contact-form-7/wp-contact-form-7.php:580
86
- msgid "Submit button"
87
- msgstr "Nút gửi"
88
-
89
- #: contact-form-7/wp-contact-form-7.php:581
90
- msgid "Name"
91
- msgstr "Tên"
92
-
93
- #: contact-form-7/wp-contact-form-7.php:582
94
- msgid "Required field?"
95
- msgstr "Trường bắt buộc"
96
-
97
- #: contact-form-7/wp-contact-form-7.php:583
98
- msgid "Allow multiple selections?"
99
- msgstr "Cho phép chọn nhiều mục"
100
-
101
- #: contact-form-7/wp-contact-form-7.php:584
102
- msgid "Insert a blank item as the first option?"
103
- msgstr "Để trống lựa chọn đầu tiên"
104
-
105
- #: contact-form-7/wp-contact-form-7.php:585
106
- msgid "Make checkboxes exclusive?"
107
- msgstr "Tạo các ô kiểm riêng biệt"
108
-
109
- #: contact-form-7/wp-contact-form-7.php:586
110
- msgid "Choices"
111
- msgstr "Các lựa chọn"
112
-
113
- #: contact-form-7/wp-contact-form-7.php:587
114
- msgid "Label"
115
- msgstr "Nhãn"
116
-
117
- #: contact-form-7/wp-contact-form-7.php:588
118
- msgid "Default value"
119
- msgstr "Giá trị mặc định"
120
-
121
- #: contact-form-7/wp-contact-form-7.php:589
122
- msgid "Akismet"
123
- msgstr "Akismet"
124
-
125
- #: contact-form-7/wp-contact-form-7.php:590
126
- msgid "This field requires author's name"
127
- msgstr "Yêu cầu người gửi phải nhập tên"
128
-
129
- #: contact-form-7/wp-contact-form-7.php:591
130
- msgid "This field requires author's URL"
131
- msgstr "Yêu cầu người gửi phải nhập URL"
132
-
133
- #: contact-form-7/wp-contact-form-7.php:592
134
- msgid "This field requires author's email address"
135
- msgstr "Yêu cầu người gửi phải nhập địa chỉ thư điện tử"
136
-
137
- #: contact-form-7/wp-contact-form-7.php:593
138
- msgid "Copy this code and paste it into the form left."
139
- msgstr "Sao chép đoạn mã này và dán vào bên trái."
140
-
141
- #: contact-form-7/wp-contact-form-7.php:594
142
- msgid "Foreground color"
143
- msgstr "Màu chữ"
144
-
145
- #: contact-form-7/wp-contact-form-7.php:595
146
- msgid "Background color"
147
- msgstr "Màu nền"
148
-
149
- #: contact-form-7/wp-contact-form-7.php:596
150
- msgid "Image size"
151
- msgstr "Kích cỡ hình ảnh"
152
-
153
- #: contact-form-7/wp-contact-form-7.php:597
154
- msgid "Small"
155
- msgstr "Nhỏ"
156
-
157
- #: contact-form-7/wp-contact-form-7.php:598
158
- msgid "Medium"
159
- msgstr "Vừa"
160
-
161
- #: contact-form-7/wp-contact-form-7.php:599
162
- msgid "Large"
163
- msgstr "To"
164
-
165
- #: contact-form-7/wp-contact-form-7.php:600
166
- msgid "Image settings"
167
- msgstr "Thiết lập hình ảnh"
168
-
169
- #: contact-form-7/wp-contact-form-7.php:601
170
- msgid "Input field settings"
171
- msgstr "Thiết lập ô nhập liệu"
172
-
173
- #: contact-form-7/wp-contact-form-7.php:602
174
- msgid "For image"
175
- msgstr "Dùng cho hình ảnh"
176
-
177
- #: contact-form-7/wp-contact-form-7.php:603
178
- msgid "For input field"
179
- msgstr "Dùng cho ô nhập liệu"
180
-
181
- #: contact-form-7/wp-contact-form-7.php:604
182
- msgid "* One choice per line."
183
- msgstr "* Mỗi một lựa chọn trên một dòng."
184
-
185
- #: contact-form-7/wp-contact-form-7.php:605
186
- msgid "Show"
187
- msgstr "Hiển thị"
188
-
189
- #: contact-form-7/wp-contact-form-7.php:606
190
- msgid "Hide"
191
- msgstr "Ẩn"
192
-
193
- #: contact-form-7/wp-contact-form-7.php:607
194
- msgid "File size limit"
195
- msgstr "Giới hạn kích cỡ tập tin"
196
-
197
- #: contact-form-7/wp-contact-form-7.php:608
198
- msgid "Acceptable file types"
199
- msgstr "Chấp nhận các loại tập tin"
200
-
201
- #: contact-form-7/wp-contact-form-7.php:634
202
- msgid "Contact form created."
203
- msgstr "Biểu mẫu liên hệ đã được tạo."
204
-
205
- #: contact-form-7/wp-contact-form-7.php:637
206
- msgid "Contact form saved."
207
- msgstr "Biểu mẫu liên hệ đã được lưu."
208
-
209
- #: contact-form-7/wp-contact-form-7.php:640
210
- msgid "Contact form deleted."
211
- msgstr "Biểu mẫu liên hệ đã được xóa."
212
-
213
- #: contact-form-7/wp-contact-form-7.php:651
214
- msgid "Untitled"
215
- msgstr "Không có tiêu đề"
216
-
217
- #: contact-form-7/wp-contact-form-7.php:678
218
- msgid "Your Name"
219
- msgstr "Tên của bạn"
220
-
221
- #: contact-form-7/wp-contact-form-7.php:678
222
- #: contact-form-7/wp-contact-form-7.php:680
223
- msgid "(required)"
224
- msgstr "(bắt buộc)"
225
-
226
- #: contact-form-7/wp-contact-form-7.php:680
227
- msgid "Your Email"
228
- msgstr "Địa chỉ thư điện tử của bạn"
229
-
230
- #: contact-form-7/wp-contact-form-7.php:682
231
- msgid "Subject"
232
- msgstr "Tiêu đề"
233
-
234
- #: contact-form-7/wp-contact-form-7.php:684
235
- msgid "Your Message"
236
- msgstr "Thông điệp của bạn"
237
-
238
- #: contact-form-7/wp-contact-form-7.php:686
239
- #: contact-form-7/wp-contact-form-7.php:1325
240
- msgid "Send"
241
- msgstr "Gửi"
242
-
243
- #: contact-form-7/wp-contact-form-7.php:739
244
- msgid "Your message was sent successfully. Thanks."
245
- msgstr "Thông điệp của bạn đã được gửi đi. Cảm ơn."
246
-
247
- #: contact-form-7/wp-contact-form-7.php:741
248
- #: contact-form-7/wp-contact-form-7.php:743
249
- msgid "Failed to send your message. Please try later or contact administrator by other way."
250
- msgstr "Hệ thống không thể gửi thông điệp của bạn. Vui lòng thử lại vào lúc khác hoặc liên hệ bằng cách khác."
251
-
252
- #: contact-form-7/wp-contact-form-7.php:745
253
- msgid "Validation errors occurred. Please confirm the fields and submit it again."
254
- msgstr "Có lỗi xảy ra trong quá trình kiểm tra. Hãy kiểm tra các ô nhập liệu và gửi lại lần nữa."
255
-
256
- #: contact-form-7/wp-contact-form-7.php:747
257
- msgid "Please accept the terms to proceed."
258
- msgstr "Bạn phải chấp nhận các điều khoản để tiếp tục."
259
-
260
- #: contact-form-7/wp-contact-form-7.php:749
261
- msgid "Email address seems invalid."
262
- msgstr "Địa chỉ thư điện tử không hợp lệ."
263
-
264
- #: contact-form-7/wp-contact-form-7.php:751
265
- msgid "Please fill the required field."
266
- msgstr "Vui lòng nhập các thông tin bắt buộc."
267
-
268
- #: contact-form-7/wp-contact-form-7.php:753
269
- msgid "Your entered code is incorrect."
270
- msgstr "Đoạn mã bạn nhập vào không đúng."
271
-
272
- #: contact-form-7/wp-contact-form-7.php:755
273
- msgid "Failed to upload file."
274
- msgstr "Quá trình tải tập tin lên thất bại."
275
-
276
- #: contact-form-7/wp-contact-form-7.php:757
277
- msgid "This file type is not allowed."
278
- msgstr "Loại tập tin này không được phép sử dụng."
279
-
280
- #: contact-form-7/wp-contact-form-7.php:759
281
- msgid "This file is too large."
282
- msgstr "Tập tin này quá to."
283
-
284
- #: contact-form-7/includes/admin-panel.php:20
285
- msgid "Add new"
286
- msgstr "Thêm biểu mẫu mới"
287
-
288
- #: contact-form-7/includes/admin-panel.php:42
289
- msgid "Copy this code and paste it into your post, page or text widget content."
290
- msgstr "Sao chép đoạn mã này và dán vào nội dung của bài viết, trang tin hoặc widget."
291
-
292
- #: contact-form-7/includes/admin-panel.php:49
293
- #: contact-form-7/includes/admin-panel.php:253
294
- msgid "Save"
295
- msgstr "Lưu"
296
-
297
- #: contact-form-7/includes/admin-panel.php:55
298
- msgid "Delete this contact form"
299
- msgstr "Xóa biểu mẫu liên hệ này"
300
-
301
- #: contact-form-7/includes/admin-panel.php:56
302
- msgid ""
303
- "You are about to delete this contact form.\n"
304
- " 'Cancel' to stop, 'OK' to delete."
305
- msgstr "Bạn có muốn xóa biểu mẫu liên hệ này?"
306
-
307
- #: contact-form-7/includes/admin-panel.php:70
308
- msgid "Form"
309
- msgstr "Biểu mẫu"
310
-
311
- #: contact-form-7/includes/admin-panel.php:90
312
- msgid "Mail"
313
- msgstr "Thư điện tử"
314
-
315
- #: contact-form-7/includes/admin-panel.php:97
316
- #: contact-form-7/includes/admin-panel.php:149
317
- msgid "To:"
318
- msgstr "Gửi đến:"
319
-
320
- #: contact-form-7/includes/admin-panel.php:101
321
- #: contact-form-7/includes/admin-panel.php:153
322
- msgid "From:"
323
- msgstr "Gửi từ:"
324
-
325
- #: contact-form-7/includes/admin-panel.php:105
326
- #: contact-form-7/includes/admin-panel.php:157
327
- msgid "Subject:"
328
- msgstr "Tiêu đề:"
329
-
330
- #: contact-form-7/includes/admin-panel.php:110
331
- #: contact-form-7/includes/admin-panel.php:162
332
- msgid "File attachments:"
333
- msgstr "Đính kèm tập tin:"
334
-
335
- #: contact-form-7/includes/admin-panel.php:112
336
- #: contact-form-7/includes/admin-panel.php:164
337
- msgid "(You need WordPress 2.7 or greater to use this feature)"
338
- msgstr "(Bạn cần phải cài đặt WordPress 2.7 hoặc mới hơn để sử dụng chức năng này)"
339
-
340
- #: contact-form-7/includes/admin-panel.php:120
341
- #: contact-form-7/includes/admin-panel.php:172
342
- msgid "Use HTML content type"
343
- msgstr "Sử dụng kiểu nội dung HTML"
344
-
345
- #: contact-form-7/includes/admin-panel.php:125
346
- #: contact-form-7/includes/admin-panel.php:177
347
- msgid "Message body:"
348
- msgstr "Nội dung thông điệp:"
349
-
350
- #: contact-form-7/includes/admin-panel.php:136
351
- msgid "Mail (2)"
352
- msgstr "Thư điện tử (2)"
353
-
354
- #: contact-form-7/includes/admin-panel.php:143
355
- msgid "Use mail (2)"
356
- msgstr "Sử dụng thư điện tử (2)"
357
-
358
- #: contact-form-7/includes/admin-panel.php:188
359
- msgid "Messages"
360
- msgstr "Các thông điệp"
361
-
362
- #: contact-form-7/includes/admin-panel.php:196
363
- msgid "Sender's message was sent successfully"
364
- msgstr "Thông điệp đã được gửi đi thành công"
365
-
366
- #: contact-form-7/includes/admin-panel.php:200
367
- msgid "Sender's message was failed to send"
368
- msgstr "Hệ thống không thể gửi thông điệp đi"
369
-
370
- #: contact-form-7/includes/admin-panel.php:204
371
- msgid "Akismet judged the sending activity as spamming"
372
- msgstr "Akismet đánh giá các hoạt động gửi thư quấy nhiễu"
373
-
374
- #: contact-form-7/includes/admin-panel.php:208
375
- msgid "Validation errors occurred"
376
- msgstr "Có lỗi xảy ra trong quá trình kiểm tra"
377
-
378
- #: contact-form-7/includes/admin-panel.php:212
379
- msgid "There is a field that sender is needed to fill in"
380
- msgstr "Người dùng chưa nhập thông tin yêu cầu"
381
-
382
- #: contact-form-7/includes/admin-panel.php:216
383
- msgid "Email address that sender entered is invalid"
384
- msgstr "Địa chỉ thư điện tử người gửi không hợp lệ"
385
-
386
- #: contact-form-7/includes/admin-panel.php:220
387
- msgid "There is a field of term that sender is needed to accept"
388
- msgstr "Người dùng chưa chấp nhận điều khoản"
389
-
390
- #: contact-form-7/includes/admin-panel.php:224
391
- msgid "The code that sender entered does not match the CAPTCHA"
392
- msgstr "Đoạn mã người gửi nhập vào không khớp với CAPTCHA"
393
-
394
- #: contact-form-7/includes/admin-panel.php:228
395
- msgid "Uploading a file fails for any reason"
396
- msgstr "Quá trình tải tập tin lên thất bại không rõ nguyên nhân"
397
-
398
- #: contact-form-7/includes/admin-panel.php:232
399
- msgid "Uploaded file is not allowed file type"
400
- msgstr "Tập tin tải lên không phải là loại tập tin cho phép"
401
-
402
- #: contact-form-7/includes/admin-panel.php:236
403
- msgid "Uploaded file is too large"
404
- msgstr "Tập tin tải lên quá to"
405
-
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
languages/wpcf7-zh_CN.po DELETED
@@ -1,306 +0,0 @@
1
- msgid ""
2
- msgstr ""
3
- "Project-Id-Version: CF7\n"
4
- "Report-Msgid-Bugs-To: \n"
5
- "POT-Creation-Date: 2008-08-10 18:56+0900\n"
6
- "PO-Revision-Date: \n"
7
- "Last-Translator: Takayuki Miyoshi <takayukister@gmail.com>\n"
8
- "Language-Team: Soz <njupt.soz@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: Chinese\n"
13
- "X-Poedit-Country: CHINA\n"
14
- "X-Poedit-SourceCharset: utf-8\n"
15
-
16
- #: contact-form-7/wp-contact-form-7.php:309
17
- msgid "Contact form"
18
- msgstr "联系表单"
19
-
20
- #: contact-form-7/wp-contact-form-7.php:403
21
- #: contact-form-7/includes/admin-panel.php:5
22
- msgid "Contact Form 7"
23
- msgstr ""
24
-
25
- #: contact-form-7/wp-contact-form-7.php:419
26
- msgid "optional"
27
- msgstr "选项"
28
-
29
- #: contact-form-7/wp-contact-form-7.php:420
30
- msgid "Generate Tag"
31
- msgstr "生成标签"
32
-
33
- #: contact-form-7/wp-contact-form-7.php:421
34
- msgid "Text field"
35
- msgstr "单行文字"
36
-
37
- #: contact-form-7/wp-contact-form-7.php:422
38
- msgid "Email field"
39
- msgstr "邮件"
40
-
41
- #: contact-form-7/wp-contact-form-7.php:423
42
- msgid "Text area"
43
- msgstr "多行文字"
44
-
45
- #: contact-form-7/wp-contact-form-7.php:424
46
- msgid "Drop-down menu"
47
- msgstr "下拉菜单"
48
-
49
- #: contact-form-7/wp-contact-form-7.php:425
50
- msgid "Checkboxes"
51
- msgstr "多选"
52
-
53
- #: contact-form-7/wp-contact-form-7.php:426
54
- msgid "Radio buttons"
55
- msgstr "单选"
56
-
57
- #: contact-form-7/wp-contact-form-7.php:427
58
- msgid "Acceptance"
59
- msgstr "接受协议"
60
-
61
- #: contact-form-7/wp-contact-form-7.php:428
62
- msgid "Make this checkbox checked by default?"
63
- msgstr "默认勾选"
64
-
65
- #: contact-form-7/wp-contact-form-7.php:429
66
- msgid "Make this checkbox work inversely?"
67
- msgstr "让多选框方向工作"
68
-
69
- #: contact-form-7/wp-contact-form-7.php:430
70
- msgid "* That means visitor who accepts the term unchecks it."
71
- msgstr "意味着访问者不勾选才可以提交,勾选了就不能提交"
72
-
73
- #: contact-form-7/wp-contact-form-7.php:431
74
- msgid "CAPTCHA"
75
- msgstr "验证码"
76
-
77
- #: contact-form-7/wp-contact-form-7.php:432
78
- msgid "Submit button"
79
- msgstr "提交按钮"
80
-
81
- #: contact-form-7/wp-contact-form-7.php:433
82
- msgid "Name"
83
- msgstr "名字"
84
-
85
- #: contact-form-7/wp-contact-form-7.php:434
86
- msgid "Required field?"
87
- msgstr "必填?"
88
-
89
- #: contact-form-7/wp-contact-form-7.php:435
90
- msgid "Allow multiple selections?"
91
- msgstr "允许多选?"
92
-
93
- #: contact-form-7/wp-contact-form-7.php:436
94
- msgid "Insert a blank item as the first option?"
95
- msgstr "第一选项为空?"
96
-
97
- #: contact-form-7/wp-contact-form-7.php:437
98
- msgid "Make checkboxes exclusive?"
99
- msgstr "只能选择一项?"
100
-
101
- #: contact-form-7/wp-contact-form-7.php:438
102
- msgid "Choices"
103
- msgstr "选项"
104
-
105
- #: contact-form-7/wp-contact-form-7.php:439
106
- msgid "Label"
107
- msgstr "标签"
108
-
109
- #: contact-form-7/wp-contact-form-7.php:440
110
- msgid "Default value"
111
- msgstr "默认值"
112
-
113
- #: contact-form-7/wp-contact-form-7.php:441
114
- msgid "Akismet"
115
- msgstr ""
116
-
117
- #: contact-form-7/wp-contact-form-7.php:442
118
- msgid "This field requires author's name"
119
- msgstr "这个区域要求填写名字"
120
-
121
- #: contact-form-7/wp-contact-form-7.php:443
122
- msgid "This field requires author's URL"
123
- msgstr "这个区域要求填写URL"
124
-
125
- #: contact-form-7/wp-contact-form-7.php:444
126
- msgid "This field requires author's email address"
127
- msgstr "这个区域要求填写Email地址"
128
-
129
- #: contact-form-7/wp-contact-form-7.php:445
130
- msgid "Copy and paste this code into the form"
131
- msgstr "复制并粘贴到表单中"
132
-
133
- #: contact-form-7/wp-contact-form-7.php:446
134
- msgid "Foreground color"
135
- msgstr "前景颜色"
136
-
137
- #: contact-form-7/wp-contact-form-7.php:447
138
- msgid "Background color"
139
- msgstr "背景色"
140
-
141
- #: contact-form-7/wp-contact-form-7.php:448
142
- msgid "Image size"
143
- msgstr "图像大小"
144
-
145
- #: contact-form-7/wp-contact-form-7.php:449
146
- msgid "Small"
147
- msgstr "小"
148
-
149
- #: contact-form-7/wp-contact-form-7.php:450
150
- msgid "Medium"
151
- msgstr "中"
152
-
153
- #: contact-form-7/wp-contact-form-7.php:451
154
- msgid "Large"
155
- msgstr "大"
156
-
157
- #: contact-form-7/wp-contact-form-7.php:452
158
- msgid "Image settings"
159
- msgstr "图像设置"
160
-
161
- #: contact-form-7/wp-contact-form-7.php:453
162
- msgid "Input field settings"
163
- msgstr "输入区域设置"
164
-
165
- #: contact-form-7/wp-contact-form-7.php:454
166
- msgid "For image"
167
- msgstr "图像"
168
-
169
- #: contact-form-7/wp-contact-form-7.php:455
170
- msgid "For input field"
171
- msgstr "输入区域"
172
-
173
- #: contact-form-7/wp-contact-form-7.php:456
174
- msgid "* One choice per line."
175
- msgstr "一行一项"
176
-
177
- #: contact-form-7/wp-contact-form-7.php:483
178
- msgid "Contact form created."
179
- msgstr "联系表单创建成功"
180
-
181
- #: contact-form-7/wp-contact-form-7.php:486
182
- msgid "Contact form saved."
183
- msgstr "联系保单保存成功"
184
-
185
- #: contact-form-7/wp-contact-form-7.php:489
186
- msgid "Contact form deleted."
187
- msgstr "联系表单删除成功"
188
-
189
- #: contact-form-7/wp-contact-form-7.php:496
190
- msgid "Untitled"
191
- msgstr "没有标题"
192
-
193
- #: contact-form-7/wp-contact-form-7.php:522
194
- msgid "Your Name"
195
- msgstr "你的名字"
196
-
197
- #: contact-form-7/wp-contact-form-7.php:522
198
- #: contact-form-7/wp-contact-form-7.php:524
199
- msgid "(required)"
200
- msgstr "必填"
201
-
202
- #: contact-form-7/wp-contact-form-7.php:524
203
- msgid "Your Email"
204
- msgstr "你的邮箱"
205
-
206
- #: contact-form-7/wp-contact-form-7.php:526
207
- msgid "Subject"
208
- msgstr "主题"
209
-
210
- #: contact-form-7/wp-contact-form-7.php:528
211
- msgid "Your Message"
212
- msgstr "详细信息"
213
-
214
- #: contact-form-7/wp-contact-form-7.php:530
215
- #: contact-form-7/wp-contact-form-7.php:1046
216
- msgid "Send"
217
- msgstr "提交"
218
-
219
- #: contact-form-7/wp-contact-form-7.php:559
220
- msgid "Your message was sent successfully. Thanks."
221
- msgstr "你的信息已经提交成功了!谢谢!"
222
-
223
- #: contact-form-7/wp-contact-form-7.php:561
224
- msgid "Failed to send your message. Please try later or contact administrator by other way."
225
- msgstr "提交失败,请尝试使用另一种方法去联系管理员."
226
-
227
- #: contact-form-7/wp-contact-form-7.php:563
228
- msgid "Validation errors occurred. Please confirm the fields and submit it again."
229
- msgstr "验证失败,请确认填写的表单没有错误"
230
-
231
- #: contact-form-7/wp-contact-form-7.php:565
232
- msgid "Please accept the terms to proceed."
233
- msgstr "请同意条款,才能提交"
234
-
235
- #: contact-form-7/wp-contact-form-7.php:567
236
- msgid "Email address seems invalid."
237
- msgstr "好像邮件地址不对"
238
-
239
- #: contact-form-7/wp-contact-form-7.php:569
240
- msgid "Please fill the required field."
241
- msgstr "请填满必填的表单"
242
-
243
- #: contact-form-7/wp-contact-form-7.php:571
244
- msgid "Your entered code is incorrect."
245
- msgstr "您的验证码是错误的"
246
-
247
- #: contact-form-7/includes/admin-panel.php:16
248
- msgid "Add new"
249
- msgstr "新增"
250
-
251
- #: contact-form-7/includes/admin-panel.php:32
252
- msgid "Copy and paste this code into your post content."
253
- msgstr "复制并粘贴到你的日志中"
254
-
255
- #: contact-form-7/includes/admin-panel.php:38
256
- msgid "Form"
257
- msgstr "表单"
258
-
259
- #: contact-form-7/includes/admin-panel.php:42
260
- msgid "Mail"
261
- msgstr "邮寄"
262
-
263
- #: contact-form-7/includes/admin-panel.php:44
264
- #: contact-form-7/includes/admin-panel.php:65
265
- msgid "To:"
266
- msgstr "到:"
267
-
268
- #: contact-form-7/includes/admin-panel.php:48
269
- #: contact-form-7/includes/admin-panel.php:69
270
- msgid "From:"
271
- msgstr "从:"
272
-
273
- #: contact-form-7/includes/admin-panel.php:52
274
- #: contact-form-7/includes/admin-panel.php:73
275
- msgid "Subject:"
276
- msgstr "主题:"
277
-
278
- #: contact-form-7/includes/admin-panel.php:56
279
- #: contact-form-7/includes/admin-panel.php:77
280
- msgid "Message body:"
281
- msgstr "邮件内容:"
282
-
283
- #: contact-form-7/includes/admin-panel.php:61
284
- msgid "Mail (2)"
285
- msgstr "确认邮件"
286
-
287
- #: contact-form-7/includes/admin-panel.php:63
288
- msgid "Use mail (2)"
289
- msgstr "使用邮件确认"
290
-
291
- #: contact-form-7/includes/admin-panel.php:85
292
- msgid "Save"
293
- msgstr "保存"
294
-
295
- #: contact-form-7/includes/admin-panel.php:92
296
- msgid "Delete this contact form"
297
- msgstr "删除本表单"
298
-
299
- #: contact-form-7/includes/admin-panel.php:93
300
- msgid ""
301
- "You are about to delete this contact form.\n"
302
- " 'Cancel' to stop, 'OK' to delete."
303
- msgstr ""
304
- "确认要删除此表单?\n"
305
- "'Cancel' 取消,'OK' 删除"
306
-
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
languages/wpcf7-zh_TW.po DELETED
@@ -1,833 +0,0 @@
1
- msgid ""
2
- msgstr ""
3
- "Project-Id-Version: Contact Form 2.2 正體中文語系檔\n"
4
- "Report-Msgid-Bugs-To: \n"
5
- "POT-Creation-Date: 2010-03-23 06:47+0900\n"
6
- "PO-Revision-Date: \n"
7
- "Last-Translator: James Wu <blog@jameswublg.com>\n"
8
- "Language-Team: http://jameswublog.com <phptech@gmail.com>\n"
9
- "MIME-Version: 1.0\n"
10
- "Content-Type: text/plain; charset=UTF-8\n"
11
- "Content-Transfer-Encoding: 8bit\n"
12
- "Plural-Forms: nplurals=2; plural=n==1?0:1;\n"
13
- "X-Poedit-Language: Chinese\n"
14
- "X-Poedit-Country: TAIWAN\n"
15
- "X-Poedit-SourceCharset: utf-8\n"
16
-
17
- #: contact-form-7/admin/admin.php:120
18
- #: contact-form-7/admin/edit.php:17
19
- #: contact-form-7/admin/edit.php:30
20
- msgid "Contact Form 7"
21
- msgstr "Contact Form 7"
22
-
23
- #: contact-form-7/admin/admin.php:120
24
- msgid "Contact"
25
- msgstr "聯絡表單"
26
-
27
- #: contact-form-7/admin/admin.php:123
28
- msgid "Edit Contact Forms"
29
- msgstr "編輯聯絡表單"
30
-
31
- #: contact-form-7/admin/admin.php:123
32
- msgid "Edit"
33
- msgstr "編輯"
34
-
35
- #: contact-form-7/admin/admin.php:162
36
- msgid "Generate Tag"
37
- msgstr "標籤產生器"
38
-
39
- #: contact-form-7/admin/admin.php:163
40
- msgid "Show"
41
- msgstr "顯示"
42
-
43
- #: contact-form-7/admin/admin.php:164
44
- msgid "Hide"
45
- msgstr "隱藏"
46
-
47
- #: contact-form-7/admin/admin.php:261
48
- msgid "Contact form"
49
- msgstr "聯絡表單"
50
-
51
- #: contact-form-7/admin/admin.php:280
52
- msgid "Settings"
53
- msgstr "設定"
54
-
55
- #: contact-form-7/admin/admin.php:291
56
- msgid "http://contactform7.com/"
57
- msgstr "http://contactform7.com/"
58
-
59
- #: contact-form-7/admin/admin.php:292
60
- msgid "Contactform7.com"
61
- msgstr "Contactform7.com"
62
-
63
- #: contact-form-7/admin/admin.php:293
64
- msgid "http://contactform7.com/docs/"
65
- msgstr "http://contactform7.com/docs/"
66
-
67
- #: contact-form-7/admin/admin.php:294
68
- msgid "Docs"
69
- msgstr "教學文件"
70
-
71
- #: contact-form-7/admin/admin.php:295
72
- msgid "http://contactform7.com/faq/"
73
- msgstr "http://contactform7.com/faq/"
74
-
75
- #: contact-form-7/admin/admin.php:296
76
- msgid "FAQ"
77
- msgstr "常見問題"
78
-
79
- #: contact-form-7/admin/admin.php:297
80
- msgid "http://contactform7.com/support/"
81
- msgstr "http://contactform7.com/support/"
82
-
83
- #: contact-form-7/admin/admin.php:298
84
- msgid "Support"
85
- msgstr "支援"
86
-
87
- #: contact-form-7/admin/admin.php:312
88
- msgid "Contact form created."
89
- msgstr "已新增聯絡表單。"
90
-
91
- #: contact-form-7/admin/admin.php:315
92
- msgid "Contact form saved."
93
- msgstr "已儲存聯絡表單。"
94
-
95
- #: contact-form-7/admin/admin.php:318
96
- msgid "Contact form deleted."
97
- msgstr "已刪除聯絡表單。"
98
-
99
- #: contact-form-7/admin/admin.php:321
100
- msgid "Database table created."
101
- msgstr "資料庫資料表已建立。"
102
-
103
- #: contact-form-7/admin/admin.php:324
104
- msgid "Failed to create database table."
105
- msgstr "資料庫中的資料表建立失敗。"
106
-
107
- #: contact-form-7/admin/admin.php:357
108
- msgid "Contact Form 7 needs your support. Please donate today."
109
- msgstr "Contact Form 7 需要您的支持,請今天就慷慨解囊。"
110
-
111
- #: contact-form-7/admin/admin.php:358
112
- msgid "Your contribution is needed for making this plugin better."
113
- msgstr "為了讓這個外掛更優質,我們需要您的捐款。"
114
-
115
- #: contact-form-7/admin/admin.php:364
116
- msgid "http://contactform7.com/donate/"
117
- msgstr "http://contactform7.com/donate/"
118
-
119
- #: contact-form-7/admin/admin.php:364
120
- msgid "Donate"
121
- msgstr "捐款"
122
-
123
- #: contact-form-7/admin/edit.php:9
124
- #, php-format
125
- msgid "<strong>The database table for Contact Form 7 does not exist.</strong> You must <a href=\"%s\">create the table</a> for it to work."
126
- msgstr "<strong>所使用的資料庫資料表並不存在。</strong> 您必需要 <a href=\"%s\">建立一個資料表後</a> ,表單才能運作。"
127
-
128
- #: contact-form-7/admin/edit.php:12
129
- msgid "<strong>The database table for Contact Form 7 does not exist.</strong>"
130
- msgstr "<strong>Contact Form 7 所使用的資料庫資料表並不存在。</strong>"
131
-
132
- #: contact-form-7/admin/edit.php:45
133
- msgid "Add new"
134
- msgstr "建立新聯絡表單"
135
-
136
- #: contact-form-7/admin/edit.php:67
137
- msgid "Copy this code and paste it into your post, page or text widget content."
138
- msgstr "您可以把這段代碼複製到您的網誌文章、分頁或文字小工具(Text Widget)的內容中。"
139
-
140
- #: contact-form-7/admin/edit.php:75
141
- #: contact-form-7/admin/edit.php:309
142
- msgid "Save"
143
- msgstr "儲存"
144
-
145
- #: contact-form-7/admin/edit.php:82
146
- msgid "Copy"
147
- msgstr "複製"
148
-
149
- #: contact-form-7/admin/edit.php:87
150
- msgid "Delete"
151
- msgstr "刪除"
152
-
153
- #: contact-form-7/admin/edit.php:89
154
- msgid ""
155
- "You are about to delete this contact form.\n"
156
- " 'Cancel' to stop, 'OK' to delete."
157
- msgstr ""
158
- "您即將刪除這個聯絡表單。\n"
159
- "按「確定」刪除表單,或按「取消」取消刪除表單的動作。"
160
-
161
- #: contact-form-7/admin/edit.php:104
162
- msgid "Form"
163
- msgstr "表單"
164
-
165
- #: contact-form-7/admin/edit.php:128
166
- msgid "Mail"
167
- msgstr "郵件"
168
-
169
- #: contact-form-7/admin/edit.php:135
170
- #: contact-form-7/admin/edit.php:202
171
- msgid "To:"
172
- msgstr "收件人:"
173
-
174
- #: contact-form-7/admin/edit.php:140
175
- #: contact-form-7/admin/edit.php:207
176
- msgid "From:"
177
- msgstr "寄件人:"
178
-
179
- #: contact-form-7/admin/edit.php:145
180
- #: contact-form-7/admin/edit.php:212
181
- msgid "Subject:"
182
- msgstr "主旨:"
183
-
184
- #: contact-form-7/admin/edit.php:152
185
- #: contact-form-7/admin/edit.php:219
186
- msgid "Additional headers:"
187
- msgstr "額外的信件標頭 (header) 資訊:"
188
-
189
- #: contact-form-7/admin/edit.php:157
190
- #: contact-form-7/admin/edit.php:224
191
- msgid "File attachments:"
192
- msgstr "附加檔案:"
193
-
194
- #: contact-form-7/admin/edit.php:165
195
- #: contact-form-7/admin/edit.php:232
196
- msgid "Use HTML content type"
197
- msgstr "使用HTML內文格式"
198
-
199
- #: contact-form-7/admin/edit.php:172
200
- #: contact-form-7/admin/edit.php:239
201
- #: contact-form-7/includes/functions.php:78
202
- msgid "Message body:"
203
- msgstr "郵件內容:"
204
-
205
- #: contact-form-7/admin/edit.php:188
206
- msgid "Mail (2)"
207
- msgstr "郵件(2)"
208
-
209
- #: contact-form-7/admin/edit.php:194
210
- msgid "Use mail (2)"
211
- msgstr "使用郵件(2)"
212
-
213
- #: contact-form-7/admin/edit.php:255
214
- msgid "Messages"
215
- msgstr "郵件內容"
216
-
217
- #: contact-form-7/admin/edit.php:285
218
- msgid "Additional Settings"
219
- msgstr "額外的設定"
220
-
221
- #: contact-form-7/admin/edit.php:333
222
- #, php-format
223
- msgid "Use the default language (%s)"
224
- msgstr "使用預設語言(%s)"
225
-
226
- #: contact-form-7/admin/edit.php:334
227
- #: contact-form-7/admin/edit.php:347
228
- msgid "Add New"
229
- msgstr "建立新的聯絡表單"
230
-
231
- #: contact-form-7/admin/edit.php:337
232
- msgid "Or"
233
- msgstr "或"
234
-
235
- #: contact-form-7/admin/edit.php:342
236
- msgid "(select language)"
237
- msgstr "(選擇語言)"
238
-
239
- #: contact-form-7/includes/classes.php:564
240
- msgid "Untitled"
241
- msgstr "無標題"
242
-
243
- #: contact-form-7/includes/functions.php:6
244
- msgid "Sender's message was sent successfully"
245
- msgstr "寄件者的信件已經成功寄出"
246
-
247
- #: contact-form-7/includes/functions.php:7
248
- msgid "Your message was sent successfully. Thanks."
249
- msgstr "您的信件已成功寄出,感謝。"
250
-
251
- #: contact-form-7/includes/functions.php:11
252
- msgid "Sender's message was failed to send"
253
- msgstr "寄件者的信件傳送失敗"
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 "信件傳送失敗。請稍後再試或以其他方式與站管人員聯絡。"
259
-
260
- #: contact-form-7/includes/functions.php:16
261
- msgid "Akismet judged the sending activity as spamming"
262
- msgstr "經 Akismet 機制判斷,這個寄信的動作為濫發廣告信"
263
-
264
- #: contact-form-7/includes/functions.php:21
265
- msgid "Validation errors occurred"
266
- msgstr "發生認證錯誤"
267
-
268
- #: contact-form-7/includes/functions.php:22
269
- msgid "Validation errors occurred. Please confirm the fields and submit it again."
270
- msgstr "認證發生錯誤。請確認各項欄位資料是否正確後,再行提交。"
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 "寄信者必需接受使用者條款"
275
-
276
- #: contact-form-7/includes/functions.php:27
277
- msgid "Please accept the terms to proceed."
278
- msgstr "請接受本服務條款再繼續進行。"
279
-
280
- #: contact-form-7/includes/functions.php:31
281
- msgid "Email address that sender entered is invalid"
282
- msgstr " 電子郵件格式不符,請寄信者再確認。"
283
-
284
- #: contact-form-7/includes/functions.php:32
285
- msgid "Email address seems invalid."
286
- msgstr "電子郵件格式不符。"
287
-
288
- #: contact-form-7/includes/functions.php:36
289
- msgid "There is a field that sender is needed to fill in"
290
- msgstr " 有一個必需填寫的欄位不允許空白,請寄信者再確認。"
291
-
292
- #: contact-form-7/includes/functions.php:37
293
- msgid "Please fill the required field."
294
- msgstr "請填寫必要欄位。"
295
-
296
- #: contact-form-7/includes/functions.php:46
297
- msgid "Your Name"
298
- msgstr "您的姓名"
299
-
300
- #: contact-form-7/includes/functions.php:46
301
- #: contact-form-7/includes/functions.php:48
302
- msgid "(required)"
303
- msgstr "〈需填寫〉"
304
-
305
- #: contact-form-7/includes/functions.php:48
306
- msgid "Your Email"
307
- msgstr "您的電子郵件信箱"
308
-
309
- #: contact-form-7/includes/functions.php:50
310
- msgid "Subject"
311
- msgstr "主旨"
312
-
313
- #: contact-form-7/includes/functions.php:52
314
- msgid "Your Message"
315
- msgstr "您的信件內容"
316
-
317
- #: contact-form-7/includes/functions.php:54
318
- msgid "Send"
319
- msgstr "傳送"
320
-
321
- #: contact-form-7/includes/functions.php:62
322
- #, php-format
323
- msgid "From: %s"
324
- msgstr "寄件人:%s"
325
-
326
- #: contact-form-7/includes/functions.php:63
327
- #, php-format
328
- msgid "Subject: %s"
329
- msgstr "主旨:%s"
330
-
331
- #: contact-form-7/includes/functions.php:64
332
- msgid "Message Body:"
333
- msgstr "郵件內文:"
334
-
335
- #: contact-form-7/includes/functions.php:65
336
- #: contact-form-7/includes/functions.php:79
337
- #, php-format
338
- msgid "This mail is sent via contact form on %1$s %2$s"
339
- msgstr "這從由 %1$s %2$s 使用聯絡表單所發送的郵件"
340
-
341
- #: contact-form-7/includes/functions.php:168
342
- msgid "Afrikaans"
343
- msgstr "南非荷蘭文"
344
-
345
- #: contact-form-7/includes/functions.php:169
346
- msgid "Albanian"
347
- msgstr "阿爾巴尼亞文"
348
-
349
- #: contact-form-7/includes/functions.php:170
350
- msgid "Arabic"
351
- msgstr "阿拉伯文"
352
-
353
- #: contact-form-7/includes/functions.php:171
354
- msgid "Bangla"
355
- msgstr "孟加拉文"
356
-
357
- #: contact-form-7/includes/functions.php:172
358
- msgid "Bosnian"
359
- msgstr "波斯尼亞文"
360
-
361
- #: contact-form-7/includes/functions.php:173
362
- msgid "Brazilian Portuguese"
363
- msgstr "巴西葡萄牙語"
364
-
365
- #: contact-form-7/includes/functions.php:174
366
- msgid "Bulgarian"
367
- msgstr "保加利亞文"
368
-
369
- #: contact-form-7/includes/functions.php:175
370
- msgid "Catalan"
371
- msgstr "加泰羅尼亞文"
372
-
373
- #: contact-form-7/includes/functions.php:176
374
- msgid "Chinese (Simplified)"
375
- msgstr "中文(簡體)"
376
-
377
- #: contact-form-7/includes/functions.php:177
378
- msgid "Chinese (Traditional)"
379
- msgstr "中文(正體)"
380
-
381
- #: contact-form-7/includes/functions.php:178
382
- msgid "Croatian"
383
- msgstr "克羅地亞文"
384
-
385
- #: contact-form-7/includes/functions.php:179
386
- msgid "Czech"
387
- msgstr "捷克文"
388
-
389
- #: contact-form-7/includes/functions.php:180
390
- msgid "Danish"
391
- msgstr "丹麥文"
392
-
393
- #: contact-form-7/includes/functions.php:181
394
- msgid "Dutch"
395
- msgstr "荷蘭文"
396
-
397
- #: contact-form-7/includes/functions.php:182
398
- msgid "English"
399
- msgstr "英文"
400
-
401
- #: contact-form-7/includes/functions.php:183
402
- msgid "Estonian"
403
- msgstr "愛沙尼亞文"
404
-
405
- #: contact-form-7/includes/functions.php:184
406
- msgid "Finnish"
407
- msgstr "芬蘭文"
408
-
409
- #: contact-form-7/includes/functions.php:185
410
- msgid "French"
411
- msgstr "法文"
412
-
413
- #: contact-form-7/includes/functions.php:186
414
- msgid "Galician"
415
- msgstr "加里西亞文"
416
-
417
- #: contact-form-7/includes/functions.php:187
418
- msgid "Georgian"
419
- msgstr "格魯吉亞文"
420
-
421
- #: contact-form-7/includes/functions.php:188
422
- msgid "German"
423
- msgstr "德文"
424
-
425
- #: contact-form-7/includes/functions.php:189
426
- msgid "Greek"
427
- msgstr "希臘文"
428
-
429
- #: contact-form-7/includes/functions.php:190
430
- msgid "Hebrew"
431
- msgstr "希伯來文"
432
-
433
- #: contact-form-7/includes/functions.php:191
434
- msgid "Hindi"
435
- msgstr "印度文"
436
-
437
- #: contact-form-7/includes/functions.php:192
438
- msgid "Hungarian"
439
- msgstr "匈牙利文"
440
-
441
- #: contact-form-7/includes/functions.php:193
442
- msgid "Indonesian"
443
- msgstr "印度尼西亞文"
444
-
445
- #: contact-form-7/includes/functions.php:194
446
- msgid "Italian"
447
- msgstr "意大利文"
448
-
449
- #: contact-form-7/includes/functions.php:195
450
- msgid "Japanese"
451
- msgstr "日文"
452
-
453
- #: contact-form-7/includes/functions.php:196
454
- msgid "Korean"
455
- msgstr "韓文"
456
-
457
- #: contact-form-7/includes/functions.php:197
458
- msgid "Latvian"
459
- msgstr "拉脫維亞文"
460
-
461
- #: contact-form-7/includes/functions.php:198
462
- msgid "Lithuanian"
463
- msgstr "立陶宛文"
464
-
465
- #: contact-form-7/includes/functions.php:199
466
- msgid "Malayalam"
467
- msgstr "馬來亞拉姆文"
468
-
469
- #: contact-form-7/includes/functions.php:200
470
- msgid "Norwegian"
471
- msgstr "挪威文"
472
-
473
- #: contact-form-7/includes/functions.php:201
474
- msgid "Persian"
475
- msgstr "波斯文"
476
-
477
- #: contact-form-7/includes/functions.php:202
478
- msgid "Polish"
479
- msgstr "波蘭文"
480
-
481
- #: contact-form-7/includes/functions.php:203
482
- msgid "Portuguese"
483
- msgstr "葡萄牙文"
484
-
485
- #: contact-form-7/includes/functions.php:204
486
- msgid "Russian"
487
- msgstr "俄文"
488
-
489
- #: contact-form-7/includes/functions.php:205
490
- msgid "Romanian"
491
- msgstr "羅馬尼亞文"
492
-
493
- #: contact-form-7/includes/functions.php:206
494
- msgid "Serbian"
495
- msgstr "塞爾維亞文"
496
-
497
- #: contact-form-7/includes/functions.php:207
498
- msgid "Slovak"
499
- msgstr "斯洛伐克文"
500
-
501
- #: contact-form-7/includes/functions.php:208
502
- msgid "Slovene"
503
- msgstr "斯洛文尼亞文"
504
-
505
- #: contact-form-7/includes/functions.php:209
506
- msgid "Spanish"
507
- msgstr "西班牙文"
508
-
509
- #: contact-form-7/includes/functions.php:210
510
- msgid "Swedish"
511
- msgstr "瑞典文"
512
-
513
- #: contact-form-7/includes/functions.php:211
514
- msgid "Thai"
515
- msgstr "泰文"
516
-
517
- #: contact-form-7/includes/functions.php:212
518
- msgid "Turkish"
519
- msgstr "土耳其文"
520
-
521
- #: contact-form-7/includes/functions.php:213
522
- msgid "Ukrainian"
523
- msgstr "烏克蘭文"
524
-
525
- #: contact-form-7/includes/functions.php:214
526
- msgid "Vietnamese"
527
- msgstr "越南文"
528
-
529
- #: contact-form-7/modules/acceptance.php:104
530
- msgid "Acceptance"
531
- msgstr "接受使用條款"
532
-
533
- #: contact-form-7/modules/acceptance.php:113
534
- #: contact-form-7/modules/captcha.php:214
535
- #: contact-form-7/modules/checkbox.php:209
536
- #: contact-form-7/modules/file.php:241
537
- msgid "Name"
538
- msgstr "物件名稱"
539
-
540
- #: contact-form-7/modules/acceptance.php:118
541
- #: contact-form-7/modules/acceptance.php:121
542
- #: contact-form-7/modules/captcha.php:221
543
- #: contact-form-7/modules/captcha.php:224
544
- #: contact-form-7/modules/captcha.php:229
545
- #: contact-form-7/modules/captcha.php:232
546
- #: contact-form-7/modules/captcha.php:236
547
- #: contact-form-7/modules/captcha.php:247
548
- #: contact-form-7/modules/captcha.php:250
549
- #: contact-form-7/modules/captcha.php:255
550
- #: contact-form-7/modules/captcha.php:258
551
- #: contact-form-7/modules/checkbox.php:214
552
- #: contact-form-7/modules/checkbox.php:217
553
- #: contact-form-7/modules/file.php:246
554
- #: contact-form-7/modules/file.php:249
555
- #: contact-form-7/modules/file.php:254
556
- #: contact-form-7/modules/file.php:257
557
- msgid "optional"
558
- msgstr "可不填"
559
-
560
- #: contact-form-7/modules/acceptance.php:127
561
- msgid "Make this checkbox checked by default?"
562
- msgstr "預設核選方塊為核取(已勾選)?"
563
-
564
- #: contact-form-7/modules/acceptance.php:128
565
- msgid "Make this checkbox work inversely?"
566
- msgstr "設定核取方塊被選取的狀態相反?"
567
-
568
- #: contact-form-7/modules/acceptance.php:129
569
- msgid "* That means visitor who accepts the term unchecks it."
570
- msgstr "*意思是如果使用者如果接受服務條款,則不需勾選核取方塊。"
571
-
572
- #: contact-form-7/modules/acceptance.php:134
573
- #: contact-form-7/modules/captcha.php:263
574
- #: contact-form-7/modules/checkbox.php:237
575
- #: contact-form-7/modules/file.php:262
576
- msgid "Copy this code and paste it into the form left."
577
- msgstr "把這段代碼複製後,貼到左方的表格"
578
-
579
- #: contact-form-7/modules/captcha.php:70
580
- msgid "To use CAPTCHA, you need <a href=\"http://wordpress.org/extend/plugins/really-simple-captcha/\">Really Simple CAPTCHA</a> plugin installed."
581
- msgstr "使用圖片驗證(CAPTCHA)的功能前,您必需先安裝 <a href=\"http://wordpress.org/extend/plugins/really-simple-captcha/\">Really Simple CAPTCHA</a>這個外掛。"
582
-
583
- #: contact-form-7/modules/captcha.php:189
584
- msgid "The code that sender entered does not match the CAPTCHA"
585
- msgstr "寄信者所輸入的圖片認證碼錯誤"
586
-
587
- #: contact-form-7/modules/captcha.php:190
588
- msgid "Your entered code is incorrect."
589
- msgstr "您輸入的認證代碼錯誤。 "
590
-
591
- #: contact-form-7/modules/captcha.php:200
592
- msgid "CAPTCHA"
593
- msgstr "CAPTCHA 驗證"
594
-
595
- #: contact-form-7/modules/captcha.php:211
596
- msgid "Note: To use CAPTCHA, you need Really Simple CAPTCHA plugin installed."
597
- msgstr "作者註:使用圖片驗證(CAPTCHA)的功能前,您必需先安裝\"Really Simple CAPTCHA\"這個外掛。"
598
-
599
- #: contact-form-7/modules/captcha.php:218
600
- msgid "Image settings"
601
- msgstr "圖片設定"
602
-
603
- #: contact-form-7/modules/captcha.php:229
604
- msgid "Foreground color"
605
- msgstr "前景顏色"
606
-
607
- #: contact-form-7/modules/captcha.php:232
608
- msgid "Background color"
609
- msgstr "背景顏色"
610
-
611
- #: contact-form-7/modules/captcha.php:236
612
- msgid "Image size"
613
- msgstr "圖片尺寸"
614
-
615
- #: contact-form-7/modules/captcha.php:237
616
- msgid "Small"
617
- msgstr "小"
618
-
619
- #: contact-form-7/modules/captcha.php:238
620
- msgid "Medium"
621
- msgstr "中"
622
-
623
- #: contact-form-7/modules/captcha.php:239
624
- msgid "Large"
625
- msgstr "大"
626
-
627
- #: contact-form-7/modules/captcha.php:244
628
- msgid "Input field settings"
629
- msgstr "設定輸入欄位"
630
-
631
- #: contact-form-7/modules/captcha.php:264
632
- msgid "For image"
633
- msgstr "圖片使用"
634
-
635
- #: contact-form-7/modules/captcha.php:266
636
- msgid "For input field"
637
- msgstr "輸入欄位使用"
638
-
639
- #: contact-form-7/modules/captcha.php:296
640
- #, php-format
641
- msgid "This contact form contains CAPTCHA fields, but the temporary folder for the files (%s) does not exist or is not writable. You can create the folder or change its permission manually."
642
- msgstr "這個聯絡表單中包含 CAPTCHA 的欄位,但是(%s) 這個檔案的臨時文件夾並 不存在或不可寫。您可以使用手動的方式新建一個檔案夾,或修改檔案夾的權限設定。"
643
-
644
- #: contact-form-7/modules/captcha.php:302
645
- msgid "This contact form contains CAPTCHA fields, but the necessary libraries (GD and FreeType) are not available on your server."
646
- msgstr "這個聯絡表單中包含 CAPTCHA 的欄位,但您的主機中並沒有可用的 GD 和 FreeType 這兩個必需的函式庫。"
647
-
648
- #: contact-form-7/modules/checkbox.php:182
649
- msgid "Checkboxes"
650
- msgstr "核選方塊"
651
-
652
- #: contact-form-7/modules/checkbox.php:185
653
- msgid "Radio buttons"
654
- msgstr "選項按鈕"
655
-
656
- #: contact-form-7/modules/checkbox.php:206
657
- #: contact-form-7/modules/file.php:240
658
- msgid "Required field?"
659
- msgstr "設定為必要欄位?"
660
-
661
- #: contact-form-7/modules/checkbox.php:222
662
- msgid "Choices"
663
- msgstr "選項"
664
-
665
- #: contact-form-7/modules/checkbox.php:224
666
- msgid "* One choice per line."
667
- msgstr "*每行只能有一個選項。"
668
-
669
- #: contact-form-7/modules/checkbox.php:228
670
- msgid "Put a label first, a checkbox last?"
671
- msgstr "標籤在前,選項在後?"
672
-
673
- #: contact-form-7/modules/checkbox.php:229
674
- msgid "Wrap each item with <label> tag?"
675
- msgstr "使用<label> 標籤,建立表單內文字與表單標籤的關聯關係?"
676
-
677
- #: contact-form-7/modules/checkbox.php:231
678
- msgid "Make checkboxes exclusive?"
679
- msgstr "設定核取方塊,為不允許修改(唯讀)?"
680
-
681
- #: contact-form-7/modules/checkbox.php:239
682
- msgid "And, put this code into the Mail fields below."
683
- msgstr "並且,把這段代碼複製到信件內文的欄位中。"
684
-
685
- #: contact-form-7/modules/file.php:204
686
- msgid "Uploading a file fails for any reason"
687
- msgstr "檔案上傳的過程中,因不明原因導致上傳失敗。"
688
-
689
- #: contact-form-7/modules/file.php:205
690
- msgid "Failed to upload file."
691
- msgstr "上傳檔案失敗。"
692
-
693
- #: contact-form-7/modules/file.php:209
694
- msgid "Uploaded file is not allowed file type"
695
- msgstr "所上傳的檔案是不被允許的檔案種類"
696
-
697
- #: contact-form-7/modules/file.php:210
698
- msgid "This file type is not allowed."
699
- msgstr "上傳的檔案不是允許的檔案種類。"
700
-
701
- #: contact-form-7/modules/file.php:214
702
- msgid "Uploaded file is too large"
703
- msgstr "上傳擋案過大"
704
-
705
- #: contact-form-7/modules/file.php:215
706
- msgid "This file is too large."
707
- msgstr "這個檔案過大。"
708
-
709
- #: contact-form-7/modules/file.php:219
710
- msgid "Uploading a file fails for PHP error"
711
- msgstr "檔案上傳的過程中,因PHP錯誤導致上傳失敗。"
712
-
713
- #: contact-form-7/modules/file.php:220
714
- msgid "Failed to upload file. Error occurred."
715
- msgstr "錯誤發生,檔案上傳失敗。"
716
-
717
- #: contact-form-7/modules/file.php:231
718
- msgid "File upload"
719
- msgstr "檔案上傳"
720
-
721
- #: contact-form-7/modules/file.php:254
722
- msgid "File size limit"
723
- msgstr "檔案大小限制"
724
-
725
- #: contact-form-7/modules/file.php:254
726
- msgid "bytes"
727
- msgstr "位元組"
728
-
729
- #: contact-form-7/modules/file.php:257
730
- msgid "Acceptable file types"
731
- msgstr "可接受上傳檔案的種類"
732
-
733
- #: contact-form-7/modules/file.php:264
734
- msgid "And, put this code into the File Attachments field below."
735
- msgstr "並且,把這段代碼複製到附加檔案:的欄位中。"
736
-
737
- #: contact-form-7/modules/file.php:289
738
- #, php-format
739
- msgid "This contact form contains file uploading fields, but the temporary folder for the files (%s) does not exist or is not writable. You can create the folder or change its permission manually."
740
- msgstr "這個聯絡表單中包含'檔案上傳欄位,但是(%s) 這個上傳檔案的臨時文件夾並 不存在或不可寫。您可以使用手動的方式新建一個檔案夾,或修改檔案夾的權限設定。"
741
-
742
- #: contact-form-7/modules/icl.php:74
743
- msgid "This contact form contains [icl] tags, but they are obsolete and no longer functioning on this version of Contact Form 7. <a href=\"http://contactform7.com/2009/12/25/contact-form-in-your-language/#Creating_contact_form_in_different_languages\" target=\"_blank\">There is a simpler way for creating contact forms of other languages</a> and you are recommended to use it."
744
- msgstr "這個聯絡表單中包含 [icl] 的標籤,但是他們在此版本的Contact Form & 中,已不再被使用並不會再有任何的功能。 <a href=\"http://contactform7.com/2009/12/25/contact-form-in-your-language/#Creating_contact_form_in_different_languages\" target=\"_blank\">我們推薦您使用,更為簡便的方式來為其他語言建立聯絡表單。</a>"
745
-
746
- #: contact-form-7/modules/quiz.php:170
747
- msgid "Sender doesn't enter the correct answer to the quiz"
748
- msgstr "寄信者沒有輸入測驗題目的正確答案"
749
-
750
- #: contact-form-7/modules/quiz.php:171
751
- msgid "Your answer is not correct."
752
- msgstr "您的答案不正確。"
753
-
754
- #: contact-form-7/modules/quiz.php:181
755
- msgid "Quiz"
756
- msgstr "測驗題目驗證"
757
-
758
- #: contact-form-7/modules/quiz.php:211
759
- msgid "Quizzes"
760
- msgstr "測驗題庫"
761
-
762
- #: contact-form-7/modules/quiz.php:213
763
- msgid "* quiz|answer (e.g. 1+1=?|2)"
764
- msgstr "* 測驗題目|答案 (例如 1+1=?|2)"
765
-
766
- #: contact-form-7/modules/select.php:154
767
- msgid "Drop-down menu"
768
- msgstr "下拉式選單"
769
-
770
- #: contact-form-7/modules/select.php:183
771
- msgid "Allow multiple selections?"
772
- msgstr "允許在下拉式選單中,可以選擇一個以上的選項?"
773
-
774
- #: contact-form-7/modules/select.php:184
775
- msgid "Insert a blank item as the first option?"
776
- msgstr "要插入一個空白資料欄位,作為第一個選項?"
777
-
778
- #: contact-form-7/modules/submit.php:62
779
- msgid "Submit button"
780
- msgstr "提交按鈕"
781
-
782
- #: contact-form-7/modules/submit.php:80
783
- msgid "Label"
784
- msgstr "標籤"
785
-
786
- #: contact-form-7/modules/text.php:137
787
- msgid "Text field"
788
- msgstr "文字欄位"
789
-
790
- #: contact-form-7/modules/text.php:140
791
- msgid "Email field"
792
- msgstr "電子郵件欄位"
793
-
794
- #: contact-form-7/modules/text.php:182
795
- msgid "Akismet"
796
- msgstr "Akismet(防止垃圾郵件的插件)"
797
-
798
- #: contact-form-7/modules/text.php:184
799
- msgid "This field requires author's name"
800
- msgstr "這個欄位需要填寫作者的姓名"
801
-
802
- #: contact-form-7/modules/text.php:185
803
- msgid "This field requires author's URL"
804
- msgstr "這個欄位需要填寫作者的網址"
805
-
806
- #: contact-form-7/modules/text.php:187
807
- msgid "This field requires author's email address"
808
- msgstr "這個欄位需要填寫作者的電子郵件信箱"
809
-
810
- #: contact-form-7/modules/text.php:191
811
- #: contact-form-7/modules/textarea.php:157
812
- msgid "Default value"
813
- msgstr "預設值"
814
-
815
- #: contact-form-7/modules/textarea.php:126
816
- msgid "Text area"
817
- msgstr "文字區塊"
818
-
819
- #~ msgid ""
820
- #~ "Is this plugin useful for you? If you like it, please help the developer."
821
- #~ msgstr "您覺得本外掛實用嗎? 如果您喜歡這個外掛,請捐款支持本外掛的作者。"
822
- #~ msgid ""
823
- #~ "Developing a plugin and providing user support is really hard work. "
824
- #~ "Please help."
825
- #~ msgstr ""
826
- #~ "外掛程式的製作和幫助使用者解決技術上的問題,是很辛苦的工作。請捐款支持。"
827
- #~ msgid "This mail is created by Contact Form 7 plugin for WordPress."
828
- #~ msgstr "這封信是由 WordPress 外掛 Contact Form 7 所產生。"
829
- #~ msgid "(You need WordPress 2.7 or greater to use this feature)"
830
- #~ msgstr "您必需使用WordPress 2.7或以上版本,才能使用這個功能。"
831
- #~ msgid "Delete this contact form"
832
- #~ msgstr "刪除這個聯絡表單"
833
-
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
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-05-18 23:31+0900\n"
6
- "PO-Revision-Date: 2010-05-18 23:32+0900\n"
7
  "Last-Translator: Takayuki Miyoshi <takayukister@gmail.com>\n"
8
  "Language-Team: \n"
9
  "MIME-Version: 1.0\n"
@@ -235,7 +235,7 @@ msgstr ""
235
  msgid "(select language)"
236
  msgstr ""
237
 
238
- #: contact-form-7/includes/classes.php:577
239
  msgid "Untitled"
240
  msgstr ""
241
 
@@ -337,403 +337,403 @@ msgstr ""
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 "Galician"
414
  msgstr ""
415
 
416
- #: contact-form-7/includes/functions.php:187
417
  msgid "Georgian"
418
  msgstr ""
419
 
420
- #: contact-form-7/includes/functions.php:188
421
  msgid "German"
422
  msgstr ""
423
 
424
- #: contact-form-7/includes/functions.php:189
425
  msgid "Greek"
426
  msgstr ""
427
 
428
- #: contact-form-7/includes/functions.php:190
429
  msgid "Hebrew"
430
  msgstr ""
431
 
432
- #: contact-form-7/includes/functions.php:191
433
  msgid "Hindi"
434
  msgstr ""
435
 
436
- #: contact-form-7/includes/functions.php:192
437
  msgid "Hungarian"
438
  msgstr ""
439
 
440
- #: contact-form-7/includes/functions.php:193
441
  msgid "Indonesian"
442
  msgstr ""
443
 
444
- #: contact-form-7/includes/functions.php:194
445
  msgid "Italian"
446
  msgstr ""
447
 
448
- #: contact-form-7/includes/functions.php:195
449
  msgid "Japanese"
450
  msgstr ""
451
 
452
- #: contact-form-7/includes/functions.php:196
453
  msgid "Korean"
454
  msgstr ""
455
 
456
- #: contact-form-7/includes/functions.php:197
457
  msgid "Latvian"
458
  msgstr ""
459
 
460
- #: contact-form-7/includes/functions.php:198
461
  msgid "Lithuanian"
462
  msgstr ""
463
 
464
- #: contact-form-7/includes/functions.php:199
465
  msgid "Malayalam"
466
  msgstr ""
467
 
468
- #: contact-form-7/includes/functions.php:200
469
  msgid "Norwegian"
470
  msgstr ""
471
 
472
- #: contact-form-7/includes/functions.php:201
473
  msgid "Persian"
474
  msgstr ""
475
 
476
- #: contact-form-7/includes/functions.php:202
477
  msgid "Polish"
478
  msgstr ""
479
 
480
- #: contact-form-7/includes/functions.php:203
481
  msgid "Portuguese"
482
  msgstr ""
483
 
484
- #: contact-form-7/includes/functions.php:204
485
  msgid "Russian"
486
  msgstr ""
487
 
488
- #: contact-form-7/includes/functions.php:205
489
  msgid "Romanian"
490
  msgstr ""
491
 
492
- #: contact-form-7/includes/functions.php:206
493
  msgid "Serbian"
494
  msgstr ""
495
 
496
- #: contact-form-7/includes/functions.php:207
497
  msgid "Slovak"
498
  msgstr ""
499
 
500
- #: contact-form-7/includes/functions.php:208
501
  msgid "Slovene"
502
  msgstr ""
503
 
504
- #: contact-form-7/includes/functions.php:209
505
  msgid "Spanish"
506
  msgstr ""
507
 
508
- #: contact-form-7/includes/functions.php:210
509
  msgid "Swedish"
510
  msgstr ""
511
 
512
- #: contact-form-7/includes/functions.php:211
513
  msgid "Thai"
514
  msgstr ""
515
 
516
- #: contact-form-7/includes/functions.php:212
517
  msgid "Turkish"
518
  msgstr ""
519
 
520
- #: contact-form-7/includes/functions.php:213
521
  msgid "Ukrainian"
522
  msgstr ""
523
 
524
- #: contact-form-7/includes/functions.php:214
525
  msgid "Vietnamese"
526
  msgstr ""
527
 
528
- #: contact-form-7/modules/acceptance.php:104
529
  msgid "Acceptance"
530
  msgstr ""
531
 
532
- #: contact-form-7/modules/acceptance.php:113
533
- #: contact-form-7/modules/captcha.php:214
534
- #: contact-form-7/modules/checkbox.php:209
535
- #: contact-form-7/modules/file.php:241
536
  msgid "Name"
537
  msgstr ""
538
 
539
- #: contact-form-7/modules/acceptance.php:118
540
- #: contact-form-7/modules/acceptance.php:121
541
- #: contact-form-7/modules/captcha.php:221
 
 
 
542
  #: contact-form-7/modules/captcha.php:224
543
- #: contact-form-7/modules/captcha.php:229
544
- #: contact-form-7/modules/captcha.php:232
545
- #: contact-form-7/modules/captcha.php:236
546
- #: contact-form-7/modules/captcha.php:247
547
- #: contact-form-7/modules/captcha.php:250
548
- #: contact-form-7/modules/captcha.php:255
549
- #: contact-form-7/modules/captcha.php:258
550
- #: contact-form-7/modules/checkbox.php:214
551
- #: contact-form-7/modules/checkbox.php:217
552
- #: contact-form-7/modules/file.php:246
553
  #: contact-form-7/modules/file.php:249
554
- #: contact-form-7/modules/file.php:254
555
  #: contact-form-7/modules/file.php:257
 
556
  msgid "optional"
557
  msgstr ""
558
 
559
- #: contact-form-7/modules/acceptance.php:127
560
  msgid "Make this checkbox checked by default?"
561
  msgstr ""
562
 
563
- #: contact-form-7/modules/acceptance.php:128
564
  msgid "Make this checkbox work inversely?"
565
  msgstr ""
566
 
567
- #: contact-form-7/modules/acceptance.php:129
568
  msgid "* That means visitor who accepts the term unchecks it."
569
  msgstr ""
570
 
571
- #: contact-form-7/modules/acceptance.php:134
572
- #: contact-form-7/modules/captcha.php:263
573
- #: contact-form-7/modules/checkbox.php:237
574
- #: contact-form-7/modules/file.php:262
575
  msgid "Copy this code and paste it into the form left."
576
  msgstr ""
577
 
578
- #: contact-form-7/modules/captcha.php:70
579
  msgid "To use CAPTCHA, you need <a href=\"http://wordpress.org/extend/plugins/really-simple-captcha/\">Really Simple CAPTCHA</a> plugin installed."
580
  msgstr ""
581
 
582
- #: contact-form-7/modules/captcha.php:189
583
  msgid "The code that sender entered does not match the CAPTCHA"
584
  msgstr ""
585
 
586
- #: contact-form-7/modules/captcha.php:190
587
  msgid "Your entered code is incorrect."
588
  msgstr ""
589
 
590
- #: contact-form-7/modules/captcha.php:200
591
  msgid "CAPTCHA"
592
  msgstr ""
593
 
594
- #: contact-form-7/modules/captcha.php:211
595
  msgid "Note: To use CAPTCHA, you need Really Simple CAPTCHA plugin installed."
596
  msgstr ""
597
 
598
- #: contact-form-7/modules/captcha.php:218
599
  msgid "Image settings"
600
  msgstr ""
601
 
602
- #: contact-form-7/modules/captcha.php:229
603
  msgid "Foreground color"
604
  msgstr ""
605
 
606
- #: contact-form-7/modules/captcha.php:232
607
  msgid "Background color"
608
  msgstr ""
609
 
610
- #: contact-form-7/modules/captcha.php:236
611
  msgid "Image size"
612
  msgstr ""
613
 
614
- #: contact-form-7/modules/captcha.php:237
615
  msgid "Small"
616
  msgstr ""
617
 
618
- #: contact-form-7/modules/captcha.php:238
619
  msgid "Medium"
620
  msgstr ""
621
 
622
- #: contact-form-7/modules/captcha.php:239
623
  msgid "Large"
624
  msgstr ""
625
 
626
- #: contact-form-7/modules/captcha.php:244
627
  msgid "Input field settings"
628
  msgstr ""
629
 
630
- #: contact-form-7/modules/captcha.php:264
631
  msgid "For image"
632
  msgstr ""
633
 
634
- #: contact-form-7/modules/captcha.php:266
635
  msgid "For input field"
636
  msgstr ""
637
 
638
- #: contact-form-7/modules/captcha.php:296
639
  #, php-format
640
  msgid "This contact form contains CAPTCHA fields, but the temporary folder for the files (%s) does not exist or is not writable. You can create the folder or change its permission manually."
641
  msgstr ""
642
 
643
- #: contact-form-7/modules/captcha.php:302
644
  msgid "This contact form contains CAPTCHA fields, but the necessary libraries (GD and FreeType) are not available on your server."
645
  msgstr ""
646
 
647
- #: contact-form-7/modules/checkbox.php:182
648
  msgid "Checkboxes"
649
  msgstr ""
650
 
651
- #: contact-form-7/modules/checkbox.php:185
652
  msgid "Radio buttons"
653
  msgstr ""
654
 
655
- #: contact-form-7/modules/checkbox.php:206
656
- #: contact-form-7/modules/file.php:240
657
  msgid "Required field?"
658
  msgstr ""
659
 
660
- #: contact-form-7/modules/checkbox.php:222
661
  msgid "Choices"
662
  msgstr ""
663
 
664
- #: contact-form-7/modules/checkbox.php:224
665
  msgid "* One choice per line."
666
  msgstr ""
667
 
668
- #: contact-form-7/modules/checkbox.php:228
669
  msgid "Put a label first, a checkbox last?"
670
  msgstr ""
671
 
672
- #: contact-form-7/modules/checkbox.php:229
673
  msgid "Wrap each item with <label> tag?"
674
  msgstr ""
675
 
676
- #: contact-form-7/modules/checkbox.php:231
677
  msgid "Make checkboxes exclusive?"
678
  msgstr ""
679
 
680
- #: contact-form-7/modules/checkbox.php:239
681
  msgid "And, put this code into the Mail fields below."
682
  msgstr ""
683
 
684
- #: contact-form-7/modules/file.php:204
685
  msgid "Uploading a file fails for any reason"
686
  msgstr ""
687
 
688
- #: contact-form-7/modules/file.php:205
689
  msgid "Failed to upload file."
690
  msgstr ""
691
 
692
- #: contact-form-7/modules/file.php:209
693
  msgid "Uploaded file is not allowed file type"
694
  msgstr ""
695
 
696
- #: contact-form-7/modules/file.php:210
697
  msgid "This file type is not allowed."
698
  msgstr ""
699
 
700
- #: contact-form-7/modules/file.php:214
701
  msgid "Uploaded file is too large"
702
  msgstr ""
703
 
704
- #: contact-form-7/modules/file.php:215
705
  msgid "This file is too large."
706
  msgstr ""
707
 
708
- #: contact-form-7/modules/file.php:219
709
  msgid "Uploading a file fails for PHP error"
710
  msgstr ""
711
 
712
- #: contact-form-7/modules/file.php:220
713
  msgid "Failed to upload file. Error occurred."
714
  msgstr ""
715
 
716
- #: contact-form-7/modules/file.php:231
717
  msgid "File upload"
718
  msgstr ""
719
 
720
- #: contact-form-7/modules/file.php:254
721
  msgid "File size limit"
722
  msgstr ""
723
 
724
- #: contact-form-7/modules/file.php:254
725
  msgid "bytes"
726
  msgstr ""
727
 
728
- #: contact-form-7/modules/file.php:257
729
  msgid "Acceptable file types"
730
  msgstr ""
731
 
732
- #: contact-form-7/modules/file.php:264
733
  msgid "And, put this code into the File Attachments field below."
734
  msgstr ""
735
 
736
- #: contact-form-7/modules/file.php:289
737
  #, php-format
738
  msgid "This contact form contains file uploading fields, but the temporary folder for the files (%s) does not exist or is not writable. You can create the folder or change its permission manually."
739
  msgstr ""
@@ -742,76 +742,85 @@ msgstr ""
742
  msgid "This contact form contains [icl] tags, but they are obsolete and no longer functioning on this version of Contact Form 7. <a href=\"http://contactform7.com/2009/12/25/contact-form-in-your-language/#Creating_contact_form_in_different_languages\" target=\"_blank\">There is a simpler way for creating contact forms of other languages</a> and you are recommended to use it."
743
  msgstr ""
744
 
745
- #: contact-form-7/modules/quiz.php:170
746
  msgid "Sender doesn't enter the correct answer to the quiz"
747
  msgstr ""
748
 
749
- #: contact-form-7/modules/quiz.php:171
750
  msgid "Your answer is not correct."
751
  msgstr ""
752
 
753
- #: contact-form-7/modules/quiz.php:181
754
  msgid "Quiz"
755
  msgstr ""
756
 
757
- #: contact-form-7/modules/quiz.php:211
758
  msgid "Quizzes"
759
  msgstr ""
760
 
761
- #: contact-form-7/modules/quiz.php:213
762
  msgid "* quiz|answer (e.g. 1+1=?|2)"
763
  msgstr ""
764
 
765
- #: contact-form-7/modules/select.php:154
766
  msgid "Drop-down menu"
767
  msgstr ""
768
 
769
- #: contact-form-7/modules/select.php:183
770
  msgid "Allow multiple selections?"
771
  msgstr ""
772
 
773
- #: contact-form-7/modules/select.php:184
774
  msgid "Insert a blank item as the first option?"
775
  msgstr ""
776
 
777
- #: contact-form-7/modules/submit.php:62
 
 
 
 
778
  msgid "Submit button"
779
  msgstr ""
780
 
781
- #: contact-form-7/modules/submit.php:80
782
  msgid "Label"
783
  msgstr ""
784
 
785
- #: contact-form-7/modules/text.php:137
786
  msgid "Text field"
787
  msgstr ""
788
 
789
- #: contact-form-7/modules/text.php:140
790
  msgid "Email field"
791
  msgstr ""
792
 
793
- #: contact-form-7/modules/text.php:182
794
  msgid "Akismet"
795
  msgstr ""
796
 
797
- #: contact-form-7/modules/text.php:184
798
  msgid "This field requires author's name"
799
  msgstr ""
800
 
801
- #: contact-form-7/modules/text.php:185
802
  msgid "This field requires author's URL"
803
  msgstr ""
804
 
805
- #: contact-form-7/modules/text.php:187
806
  msgid "This field requires author's email address"
807
  msgstr ""
808
 
809
- #: contact-form-7/modules/text.php:191
810
- #: contact-form-7/modules/textarea.php:157
811
  msgid "Default value"
812
  msgstr ""
813
 
814
- #: contact-form-7/modules/textarea.php:126
 
 
 
 
 
815
  msgid "Text area"
816
  msgstr ""
817
 
2
  msgstr ""
3
  "Project-Id-Version: Contact Form 7\n"
4
  "Report-Msgid-Bugs-To: \n"
5
+ "POT-Creation-Date: 2010-09-22 16:34+0900\n"
6
+ "PO-Revision-Date: 2010-09-22 16:35+0900\n"
7
  "Last-Translator: Takayuki Miyoshi <takayukister@gmail.com>\n"
8
  "Language-Team: \n"
9
  "MIME-Version: 1.0\n"
235
  msgid "(select language)"
236
  msgstr ""
237
 
238
+ #: contact-form-7/includes/classes.php:590
239
  msgid "Untitled"
240
  msgstr ""
241
 
337
  msgid "This mail is sent via contact form on %1$s %2$s"
338
  msgstr ""
339
 
340
+ #: contact-form-7/includes/functions.php:155
341
  msgid "Afrikaans"
342
  msgstr ""
343
 
344
+ #: contact-form-7/includes/functions.php:156
345
  msgid "Albanian"
346
  msgstr ""
347
 
348
+ #: contact-form-7/includes/functions.php:157
349
  msgid "Arabic"
350
  msgstr ""
351
 
352
+ #: contact-form-7/includes/functions.php:158
353
  msgid "Bangla"
354
  msgstr ""
355
 
356
+ #: contact-form-7/includes/functions.php:159
357
  msgid "Bosnian"
358
  msgstr ""
359
 
360
+ #: contact-form-7/includes/functions.php:160
361
  msgid "Brazilian Portuguese"
362
  msgstr ""
363
 
364
+ #: contact-form-7/includes/functions.php:161
365
  msgid "Bulgarian"
366
  msgstr ""
367
 
368
+ #: contact-form-7/includes/functions.php:162
369
  msgid "Catalan"
370
  msgstr ""
371
 
372
+ #: contact-form-7/includes/functions.php:163
373
  msgid "Chinese (Simplified)"
374
  msgstr ""
375
 
376
+ #: contact-form-7/includes/functions.php:164
377
  msgid "Chinese (Traditional)"
378
  msgstr ""
379
 
380
+ #: contact-form-7/includes/functions.php:165
381
  msgid "Croatian"
382
  msgstr ""
383
 
384
+ #: contact-form-7/includes/functions.php:166
385
  msgid "Czech"
386
  msgstr ""
387
 
388
+ #: contact-form-7/includes/functions.php:167
389
  msgid "Danish"
390
  msgstr ""
391
 
392
+ #: contact-form-7/includes/functions.php:168
393
  msgid "Dutch"
394
  msgstr ""
395
 
396
+ #: contact-form-7/includes/functions.php:169
397
  msgid "English"
398
  msgstr ""
399
 
400
+ #: contact-form-7/includes/functions.php:170
401
  msgid "Estonian"
402
  msgstr ""
403
 
404
+ #: contact-form-7/includes/functions.php:171
405
  msgid "Finnish"
406
  msgstr ""
407
 
408
+ #: contact-form-7/includes/functions.php:172
409
  msgid "French"
410
  msgstr ""
411
 
412
+ #: contact-form-7/includes/functions.php:173
413
  msgid "Galician"
414
  msgstr ""
415
 
416
+ #: contact-form-7/includes/functions.php:174
417
  msgid "Georgian"
418
  msgstr ""
419
 
420
+ #: contact-form-7/includes/functions.php:175
421
  msgid "German"
422
  msgstr ""
423
 
424
+ #: contact-form-7/includes/functions.php:176
425
  msgid "Greek"
426
  msgstr ""
427
 
428
+ #: contact-form-7/includes/functions.php:177
429
  msgid "Hebrew"
430
  msgstr ""
431
 
432
+ #: contact-form-7/includes/functions.php:178
433
  msgid "Hindi"
434
  msgstr ""
435
 
436
+ #: contact-form-7/includes/functions.php:179
437
  msgid "Hungarian"
438
  msgstr ""
439
 
440
+ #: contact-form-7/includes/functions.php:180
441
  msgid "Indonesian"
442
  msgstr ""
443
 
444
+ #: contact-form-7/includes/functions.php:181
445
  msgid "Italian"
446
  msgstr ""
447
 
448
+ #: contact-form-7/includes/functions.php:182
449
  msgid "Japanese"
450
  msgstr ""
451
 
452
+ #: contact-form-7/includes/functions.php:183
453
  msgid "Korean"
454
  msgstr ""
455
 
456
+ #: contact-form-7/includes/functions.php:184
457
  msgid "Latvian"
458
  msgstr ""
459
 
460
+ #: contact-form-7/includes/functions.php:185
461
  msgid "Lithuanian"
462
  msgstr ""
463
 
464
+ #: contact-form-7/includes/functions.php:186
465
  msgid "Malayalam"
466
  msgstr ""
467
 
468
+ #: contact-form-7/includes/functions.php:187
469
  msgid "Norwegian"
470
  msgstr ""
471
 
472
+ #: contact-form-7/includes/functions.php:188
473
  msgid "Persian"
474
  msgstr ""
475
 
476
+ #: contact-form-7/includes/functions.php:189
477
  msgid "Polish"
478
  msgstr ""
479
 
480
+ #: contact-form-7/includes/functions.php:190
481
  msgid "Portuguese"
482
  msgstr ""
483
 
484
+ #: contact-form-7/includes/functions.php:191
485
  msgid "Russian"
486
  msgstr ""
487
 
488
+ #: contact-form-7/includes/functions.php:192
489
  msgid "Romanian"
490
  msgstr ""
491
 
492
+ #: contact-form-7/includes/functions.php:193
493
  msgid "Serbian"
494
  msgstr ""
495
 
496
+ #: contact-form-7/includes/functions.php:194
497
  msgid "Slovak"
498
  msgstr ""
499
 
500
+ #: contact-form-7/includes/functions.php:195
501
  msgid "Slovene"
502
  msgstr ""
503
 
504
+ #: contact-form-7/includes/functions.php:196
505
  msgid "Spanish"
506
  msgstr ""
507
 
508
+ #: contact-form-7/includes/functions.php:197
509
  msgid "Swedish"
510
  msgstr ""
511
 
512
+ #: contact-form-7/includes/functions.php:198
513
  msgid "Thai"
514
  msgstr ""
515
 
516
+ #: contact-form-7/includes/functions.php:199
517
  msgid "Turkish"
518
  msgstr ""
519
 
520
+ #: contact-form-7/includes/functions.php:200
521
  msgid "Ukrainian"
522
  msgstr ""
523
 
524
+ #: contact-form-7/includes/functions.php:201
525
  msgid "Vietnamese"
526
  msgstr ""
527
 
528
+ #: contact-form-7/modules/acceptance.php:150
529
  msgid "Acceptance"
530
  msgstr ""
531
 
532
+ #: contact-form-7/modules/acceptance.php:159
533
+ #: contact-form-7/modules/captcha.php:202
534
+ #: contact-form-7/modules/checkbox.php:208
535
+ #: contact-form-7/modules/file.php:244
536
  msgid "Name"
537
  msgstr ""
538
 
539
+ #: contact-form-7/modules/acceptance.php:164
540
+ #: contact-form-7/modules/acceptance.php:167
541
+ #: contact-form-7/modules/captcha.php:209
542
+ #: contact-form-7/modules/captcha.php:212
543
+ #: contact-form-7/modules/captcha.php:217
544
+ #: contact-form-7/modules/captcha.php:220
545
  #: contact-form-7/modules/captcha.php:224
546
+ #: contact-form-7/modules/captcha.php:235
547
+ #: contact-form-7/modules/captcha.php:238
548
+ #: contact-form-7/modules/captcha.php:243
549
+ #: contact-form-7/modules/captcha.php:246
550
+ #: contact-form-7/modules/checkbox.php:213
551
+ #: contact-form-7/modules/checkbox.php:216
 
 
 
 
552
  #: contact-form-7/modules/file.php:249
553
+ #: contact-form-7/modules/file.php:252
554
  #: contact-form-7/modules/file.php:257
555
+ #: contact-form-7/modules/file.php:260
556
  msgid "optional"
557
  msgstr ""
558
 
559
+ #: contact-form-7/modules/acceptance.php:173
560
  msgid "Make this checkbox checked by default?"
561
  msgstr ""
562
 
563
+ #: contact-form-7/modules/acceptance.php:174
564
  msgid "Make this checkbox work inversely?"
565
  msgstr ""
566
 
567
+ #: contact-form-7/modules/acceptance.php:175
568
  msgid "* That means visitor who accepts the term unchecks it."
569
  msgstr ""
570
 
571
+ #: contact-form-7/modules/acceptance.php:180
572
+ #: contact-form-7/modules/captcha.php:251
573
+ #: contact-form-7/modules/checkbox.php:236
574
+ #: contact-form-7/modules/file.php:265
575
  msgid "Copy this code and paste it into the form left."
576
  msgstr ""
577
 
578
+ #: contact-form-7/modules/captcha.php:66
579
  msgid "To use CAPTCHA, you need <a href=\"http://wordpress.org/extend/plugins/really-simple-captcha/\">Really Simple CAPTCHA</a> plugin installed."
580
  msgstr ""
581
 
582
+ #: contact-form-7/modules/captcha.php:177
583
  msgid "The code that sender entered does not match the CAPTCHA"
584
  msgstr ""
585
 
586
+ #: contact-form-7/modules/captcha.php:178
587
  msgid "Your entered code is incorrect."
588
  msgstr ""
589
 
590
+ #: contact-form-7/modules/captcha.php:188
591
  msgid "CAPTCHA"
592
  msgstr ""
593
 
594
+ #: contact-form-7/modules/captcha.php:199
595
  msgid "Note: To use CAPTCHA, you need Really Simple CAPTCHA plugin installed."
596
  msgstr ""
597
 
598
+ #: contact-form-7/modules/captcha.php:206
599
  msgid "Image settings"
600
  msgstr ""
601
 
602
+ #: contact-form-7/modules/captcha.php:217
603
  msgid "Foreground color"
604
  msgstr ""
605
 
606
+ #: contact-form-7/modules/captcha.php:220
607
  msgid "Background color"
608
  msgstr ""
609
 
610
+ #: contact-form-7/modules/captcha.php:224
611
  msgid "Image size"
612
  msgstr ""
613
 
614
+ #: contact-form-7/modules/captcha.php:225
615
  msgid "Small"
616
  msgstr ""
617
 
618
+ #: contact-form-7/modules/captcha.php:226
619
  msgid "Medium"
620
  msgstr ""
621
 
622
+ #: contact-form-7/modules/captcha.php:227
623
  msgid "Large"
624
  msgstr ""
625
 
626
+ #: contact-form-7/modules/captcha.php:232
627
  msgid "Input field settings"
628
  msgstr ""
629
 
630
+ #: contact-form-7/modules/captcha.php:252
631
  msgid "For image"
632
  msgstr ""
633
 
634
+ #: contact-form-7/modules/captcha.php:254
635
  msgid "For input field"
636
  msgstr ""
637
 
638
+ #: contact-form-7/modules/captcha.php:284
639
  #, php-format
640
  msgid "This contact form contains CAPTCHA fields, but the temporary folder for the files (%s) does not exist or is not writable. You can create the folder or change its permission manually."
641
  msgstr ""
642
 
643
+ #: contact-form-7/modules/captcha.php:290
644
  msgid "This contact form contains CAPTCHA fields, but the necessary libraries (GD and FreeType) are not available on your server."
645
  msgstr ""
646
 
647
+ #: contact-form-7/modules/checkbox.php:181
648
  msgid "Checkboxes"
649
  msgstr ""
650
 
651
+ #: contact-form-7/modules/checkbox.php:184
652
  msgid "Radio buttons"
653
  msgstr ""
654
 
655
+ #: contact-form-7/modules/checkbox.php:205
656
+ #: contact-form-7/modules/file.php:243
657
  msgid "Required field?"
658
  msgstr ""
659
 
660
+ #: contact-form-7/modules/checkbox.php:221
661
  msgid "Choices"
662
  msgstr ""
663
 
664
+ #: contact-form-7/modules/checkbox.php:223
665
  msgid "* One choice per line."
666
  msgstr ""
667
 
668
+ #: contact-form-7/modules/checkbox.php:227
669
  msgid "Put a label first, a checkbox last?"
670
  msgstr ""
671
 
672
+ #: contact-form-7/modules/checkbox.php:228
673
  msgid "Wrap each item with <label> tag?"
674
  msgstr ""
675
 
676
+ #: contact-form-7/modules/checkbox.php:230
677
  msgid "Make checkboxes exclusive?"
678
  msgstr ""
679
 
680
+ #: contact-form-7/modules/checkbox.php:238
681
  msgid "And, put this code into the Mail fields below."
682
  msgstr ""
683
 
684
+ #: contact-form-7/modules/file.php:207
685
  msgid "Uploading a file fails for any reason"
686
  msgstr ""
687
 
688
+ #: contact-form-7/modules/file.php:208
689
  msgid "Failed to upload file."
690
  msgstr ""
691
 
692
+ #: contact-form-7/modules/file.php:212
693
  msgid "Uploaded file is not allowed file type"
694
  msgstr ""
695
 
696
+ #: contact-form-7/modules/file.php:213
697
  msgid "This file type is not allowed."
698
  msgstr ""
699
 
700
+ #: contact-form-7/modules/file.php:217
701
  msgid "Uploaded file is too large"
702
  msgstr ""
703
 
704
+ #: contact-form-7/modules/file.php:218
705
  msgid "This file is too large."
706
  msgstr ""
707
 
708
+ #: contact-form-7/modules/file.php:222
709
  msgid "Uploading a file fails for PHP error"
710
  msgstr ""
711
 
712
+ #: contact-form-7/modules/file.php:223
713
  msgid "Failed to upload file. Error occurred."
714
  msgstr ""
715
 
716
+ #: contact-form-7/modules/file.php:234
717
  msgid "File upload"
718
  msgstr ""
719
 
720
+ #: contact-form-7/modules/file.php:257
721
  msgid "File size limit"
722
  msgstr ""
723
 
724
+ #: contact-form-7/modules/file.php:257
725
  msgid "bytes"
726
  msgstr ""
727
 
728
+ #: contact-form-7/modules/file.php:260
729
  msgid "Acceptable file types"
730
  msgstr ""
731
 
732
+ #: contact-form-7/modules/file.php:267
733
  msgid "And, put this code into the File Attachments field below."
734
  msgstr ""
735
 
736
+ #: contact-form-7/modules/file.php:292
737
  #, php-format
738
  msgid "This contact form contains file uploading fields, but the temporary folder for the files (%s) does not exist or is not writable. You can create the folder or change its permission manually."
739
  msgstr ""
742
  msgid "This contact form contains [icl] tags, but they are obsolete and no longer functioning on this version of Contact Form 7. <a href=\"http://contactform7.com/2009/12/25/contact-form-in-your-language/#Creating_contact_form_in_different_languages\" target=\"_blank\">There is a simpler way for creating contact forms of other languages</a> and you are recommended to use it."
743
  msgstr ""
744
 
745
+ #: contact-form-7/modules/quiz.php:160
746
  msgid "Sender doesn't enter the correct answer to the quiz"
747
  msgstr ""
748
 
749
+ #: contact-form-7/modules/quiz.php:161
750
  msgid "Your answer is not correct."
751
  msgstr ""
752
 
753
+ #: contact-form-7/modules/quiz.php:171
754
  msgid "Quiz"
755
  msgstr ""
756
 
757
+ #: contact-form-7/modules/quiz.php:201
758
  msgid "Quizzes"
759
  msgstr ""
760
 
761
+ #: contact-form-7/modules/quiz.php:203
762
  msgid "* quiz|answer (e.g. 1+1=?|2)"
763
  msgstr ""
764
 
765
+ #: contact-form-7/modules/select.php:150
766
  msgid "Drop-down menu"
767
  msgstr ""
768
 
769
+ #: contact-form-7/modules/select.php:179
770
  msgid "Allow multiple selections?"
771
  msgstr ""
772
 
773
+ #: contact-form-7/modules/select.php:180
774
  msgid "Insert a blank item as the first option?"
775
  msgstr ""
776
 
777
+ #: contact-form-7/modules/submit.php:54
778
+ msgid "Sending ..."
779
+ msgstr ""
780
+
781
+ #: contact-form-7/modules/submit.php:66
782
  msgid "Submit button"
783
  msgstr ""
784
 
785
+ #: contact-form-7/modules/submit.php:84
786
  msgid "Label"
787
  msgstr ""
788
 
789
+ #: contact-form-7/modules/text.php:138
790
  msgid "Text field"
791
  msgstr ""
792
 
793
+ #: contact-form-7/modules/text.php:141
794
  msgid "Email field"
795
  msgstr ""
796
 
797
+ #: contact-form-7/modules/text.php:183
798
  msgid "Akismet"
799
  msgstr ""
800
 
801
+ #: contact-form-7/modules/text.php:185
802
  msgid "This field requires author's name"
803
  msgstr ""
804
 
805
+ #: contact-form-7/modules/text.php:186
806
  msgid "This field requires author's URL"
807
  msgstr ""
808
 
809
+ #: contact-form-7/modules/text.php:188
810
  msgid "This field requires author's email address"
811
  msgstr ""
812
 
813
+ #: contact-form-7/modules/text.php:194
814
+ #: contact-form-7/modules/textarea.php:156
815
  msgid "Default value"
816
  msgstr ""
817
 
818
+ #: contact-form-7/modules/text.php:197
819
+ #: contact-form-7/modules/textarea.php:159
820
+ msgid "Use this text as watermark?"
821
+ msgstr ""
822
+
823
+ #: contact-form-7/modules/textarea.php:125
824
  msgid "Text area"
825
  msgstr ""
826
 
modules/acceptance.php CHANGED
@@ -8,8 +8,6 @@
8
  wpcf7_add_shortcode( 'acceptance', 'wpcf7_acceptance_shortcode_handler', true );
9
 
10
  function wpcf7_acceptance_shortcode_handler( $tag ) {
11
- global $wpcf7_contact_form;
12
-
13
  if ( ! is_array( $tag ) )
14
  return '';
15
 
@@ -55,27 +53,52 @@ function wpcf7_acceptance_shortcode_handler( $tag ) {
55
 
56
  $default_on = (bool) preg_grep( '/^default:on$/i', $options );
57
 
58
- if ( wpcf7_script_is() )
59
- $onclick = ' onclick="wpcf7ToggleSubmit(this.form);"';
60
- else
61
- $onclick = '';
62
-
63
  $checked = $default_on ? ' checked="checked"' : '';
64
 
65
- $html = '<input type="checkbox" name="' . $name . '" value="1"' . $atts . $onclick . $checked . ' />';
 
 
 
 
66
 
67
  return $html;
68
  }
69
 
70
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
71
  /* Acceptance filter */
72
 
73
  add_filter( 'wpcf7_acceptance', 'wpcf7_acceptance_filter' );
74
 
75
  function wpcf7_acceptance_filter( $accepted ) {
76
- global $wpcf7_contact_form;
77
-
78
- $fes = $wpcf7_contact_form->form_scan_shortcode( array( 'type' => 'acceptance' ) );
79
 
80
  foreach ( $fes as $fe ) {
81
  $name = $fe['name'];
@@ -95,6 +118,29 @@ function wpcf7_acceptance_filter( $accepted ) {
95
  return $accepted;
96
  }
97
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
98
 
99
  /* Tag generator */
100
 
8
  wpcf7_add_shortcode( 'acceptance', 'wpcf7_acceptance_shortcode_handler', true );
9
 
10
  function wpcf7_acceptance_shortcode_handler( $tag ) {
 
 
11
  if ( ! is_array( $tag ) )
12
  return '';
13
 
53
 
54
  $default_on = (bool) preg_grep( '/^default:on$/i', $options );
55
 
 
 
 
 
 
56
  $checked = $default_on ? ' checked="checked"' : '';
57
 
58
+ $html = '<input type="checkbox" name="' . $name . '" value="1"' . $atts . $checked . ' />';
59
+
60
+ $validation_error = wpcf7_get_validation_error( $name );
61
+
62
+ $html = '<span class="wpcf7-form-control-wrap ' . $name . '">' . $html . $validation_error . '</span>';
63
 
64
  return $html;
65
  }
66
 
67
 
68
+ /* Validation filter */
69
+
70
+ add_filter( 'wpcf7_validate_acceptance', 'wpcf7_acceptance_validation_filter', 10, 2 );
71
+
72
+ function wpcf7_acceptance_validation_filter( $result, $tag ) {
73
+ if ( ! wpcf7_acceptance_as_validation() )
74
+ return $result;
75
+
76
+ $name = $tag['name'];
77
+
78
+ if ( empty( $name ) )
79
+ return $result;
80
+
81
+ $options = (array) $tag['options'];
82
+
83
+ $value = $_POST[$name] ? 1 : 0;
84
+
85
+ $invert = (bool) preg_grep( '%^invert$%', $options );
86
+
87
+ if ( $invert && $value || ! $invert && ! $value ) {
88
+ $result['valid'] = false;
89
+ $result['reason'][$name] = wpcf7_get_message( 'accept_terms' );
90
+ }
91
+
92
+ return $result;
93
+ }
94
+
95
+
96
  /* Acceptance filter */
97
 
98
  add_filter( 'wpcf7_acceptance', 'wpcf7_acceptance_filter' );
99
 
100
  function wpcf7_acceptance_filter( $accepted ) {
101
+ $fes = wpcf7_scan_shortcode( array( 'type' => 'acceptance' ) );
 
 
102
 
103
  foreach ( $fes as $fe ) {
104
  $name = $fe['name'];
118
  return $accepted;
119
  }
120
 
121
+ add_filter( 'wpcf7_form_class_attr', 'wpcf7_acceptance_form_class_attr' );
122
+
123
+ function wpcf7_acceptance_form_class_attr( $class ) {
124
+ if ( wpcf7_acceptance_as_validation() )
125
+ return $class . ' wpcf7-acceptance-as-validation';
126
+
127
+ return $class;
128
+ }
129
+
130
+ function wpcf7_acceptance_as_validation() {
131
+ if ( ! $contact_form = wpcf7_get_current_contact_form() )
132
+ return false;
133
+
134
+ $settings = $contact_form->additional_setting( 'acceptance_as_validation', false );
135
+
136
+ foreach ( $settings as $setting ) {
137
+ if ( in_array( $setting, array( 'on', 'true', '1' ) ) )
138
+ return true;
139
+ }
140
+
141
+ return false;
142
+ }
143
+
144
 
145
  /* Tag generator */
146
 
modules/captcha.php CHANGED
@@ -9,8 +9,6 @@ wpcf7_add_shortcode( 'captchac', 'wpcf7_captcha_shortcode_handler', true );
9
  wpcf7_add_shortcode( 'captchar', 'wpcf7_captcha_shortcode_handler', true );
10
 
11
  function wpcf7_captcha_shortcode_handler( $tag ) {
12
- global $wpcf7_contact_form;
13
-
14
  if ( ! is_array( $tag ) )
15
  return '';
16
 
@@ -22,9 +20,7 @@ function wpcf7_captcha_shortcode_handler( $tag ) {
22
  if ( empty( $name ) )
23
  return '';
24
 
25
- $validation_error = '';
26
- if ( is_a( $wpcf7_contact_form, 'WPCF7_ContactForm' ) )
27
- $validation_error = $wpcf7_contact_form->validation_error( $name );
28
 
29
  $atts = '';
30
  $id_att = '';
@@ -60,7 +56,7 @@ function wpcf7_captcha_shortcode_handler( $tag ) {
60
  $atts .= ' class="' . trim( $class_att ) . '"';
61
 
62
  // Value.
63
- if ( is_a( $wpcf7_contact_form, 'WPCF7_ContactForm' ) && $wpcf7_contact_form->is_posted() )
64
  $value = '';
65
  else
66
  $value = $values[0];
@@ -117,8 +113,6 @@ function wpcf7_captcha_shortcode_handler( $tag ) {
117
  add_filter( 'wpcf7_validate_captchar', 'wpcf7_captcha_validation_filter', 10, 2 );
118
 
119
  function wpcf7_captcha_validation_filter( $result, $tag ) {
120
- global $wpcf7_contact_form;
121
-
122
  $type = $tag['type'];
123
  $name = $tag['name'];
124
 
@@ -128,7 +122,7 @@ function wpcf7_captcha_validation_filter( $result, $tag ) {
128
 
129
  if ( ! wpcf7_check_captcha( $_POST[$captchac], $_POST[$name] ) ) {
130
  $result['valid'] = false;
131
- $result['reason'][$name] = $wpcf7_contact_form->message( 'captcha_not_match' );
132
  }
133
 
134
  wpcf7_remove_captcha( $_POST[$captchac] );
@@ -143,16 +137,10 @@ add_filter( 'wpcf7_ajax_onload', 'wpcf7_captcha_ajax_refill' );
143
  add_filter( 'wpcf7_ajax_json_echo', 'wpcf7_captcha_ajax_refill' );
144
 
145
  function wpcf7_captcha_ajax_refill( $items ) {
146
- global $wpcf7_contact_form;
147
-
148
- if ( ! is_a( $wpcf7_contact_form, 'WPCF7_ContactForm' ) )
149
- return $items;
150
-
151
  if ( ! is_array( $items ) )
152
  return $items;
153
 
154
- $fes = $wpcf7_contact_form->form_scan_shortcode(
155
- array( 'type' => 'captchac' ) );
156
 
157
  if ( empty( $fes ) )
158
  return $items;
@@ -394,6 +382,9 @@ function wpcf7_remove_captcha( $prefix ) {
394
  return false;
395
  $captcha =& $wpcf7_captcha;
396
 
 
 
 
397
  $captcha->remove( $prefix );
398
  }
399
 
9
  wpcf7_add_shortcode( 'captchar', 'wpcf7_captcha_shortcode_handler', true );
10
 
11
  function wpcf7_captcha_shortcode_handler( $tag ) {
 
 
12
  if ( ! is_array( $tag ) )
13
  return '';
14
 
20
  if ( empty( $name ) )
21
  return '';
22
 
23
+ $validation_error = wpcf7_get_validation_error( $name );
 
 
24
 
25
  $atts = '';
26
  $id_att = '';
56
  $atts .= ' class="' . trim( $class_att ) . '"';
57
 
58
  // Value.
59
+ if ( wpcf7_is_posted() )
60
  $value = '';
61
  else
62
  $value = $values[0];
113
  add_filter( 'wpcf7_validate_captchar', 'wpcf7_captcha_validation_filter', 10, 2 );
114
 
115
  function wpcf7_captcha_validation_filter( $result, $tag ) {
 
 
116
  $type = $tag['type'];
117
  $name = $tag['name'];
118
 
122
 
123
  if ( ! wpcf7_check_captcha( $_POST[$captchac], $_POST[$name] ) ) {
124
  $result['valid'] = false;
125
+ $result['reason'][$name] = wpcf7_get_message( 'captcha_not_match' );
126
  }
127
 
128
  wpcf7_remove_captcha( $_POST[$captchac] );
137
  add_filter( 'wpcf7_ajax_json_echo', 'wpcf7_captcha_ajax_refill' );
138
 
139
  function wpcf7_captcha_ajax_refill( $items ) {
 
 
 
 
 
140
  if ( ! is_array( $items ) )
141
  return $items;
142
 
143
+ $fes = wpcf7_scan_shortcode( array( 'type' => 'captchac' ) );
 
144
 
145
  if ( empty( $fes ) )
146
  return $items;
382
  return false;
383
  $captcha =& $wpcf7_captcha;
384
 
385
+ if ( preg_match( '/[^0-9]/', $prefix ) ) // Contact Form 7 generates $prefix with mt_rand()
386
+ return false;
387
+
388
  $captcha->remove( $prefix );
389
  }
390
 
modules/checkbox.php CHANGED
@@ -10,8 +10,6 @@ wpcf7_add_shortcode( 'checkbox*', 'wpcf7_checkbox_shortcode_handler', true );
10
  wpcf7_add_shortcode( 'radio', 'wpcf7_checkbox_shortcode_handler', true );
11
 
12
  function wpcf7_checkbox_shortcode_handler( $tag ) {
13
- global $wpcf7_contact_form;
14
-
15
  if ( ! is_array( $tag ) )
16
  return '';
17
 
@@ -65,36 +63,41 @@ function wpcf7_checkbox_shortcode_handler( $tag ) {
65
  }
66
  }
67
 
 
 
 
 
 
 
 
 
 
 
 
 
68
  if ( $id_att )
69
  $atts .= ' id="' . trim( $id_att ) . '"';
70
 
71
  if ( $class_att )
72
  $atts .= ' class="' . trim( $class_att ) . '"';
73
 
74
- $multiple = preg_match( '/^checkbox[*]?$/', $type ) && ! preg_grep( '%^exclusive$%', $options );
75
-
76
  $html = '';
77
 
78
- if ( preg_match( '/^checkbox[*]?$/', $type ) && ! $multiple && wpcf7_script_is() )
79
- $onclick = ' onclick="wpcf7ExclusiveCheckbox(this);"';
80
- else
81
- $onclick = '';
82
-
83
  $input_type = rtrim( $type, '*' );
84
 
85
- $posted = is_a( $wpcf7_contact_form, 'WPCF7_ContactForm' ) && $wpcf7_contact_form->is_posted();
86
 
87
  foreach ( $values as $key => $value ) {
88
  $checked = false;
89
 
90
- if ( in_array( $key + 1, (array) $defaults ) )
91
- $checked = true;
92
-
93
- if ( $posted) {
94
  if ( $multiple && in_array( esc_sql( $value ), (array) $_POST[$name] ) )
95
  $checked = true;
96
  if ( ! $multiple && $_POST[$name] == esc_sql( $value ) )
97
  $checked = true;
 
 
 
98
  }
99
 
100
  $checked = $checked ? ' checked="checked"' : '';
@@ -113,9 +116,9 @@ function wpcf7_checkbox_shortcode_handler( $tag ) {
113
 
114
  if ( $label_first ) { // put label first, input last
115
  $item = '<span class="wpcf7-list-item-label">' . esc_html( $label ) . '</span>&nbsp;';
116
- $item .= '<input type="' . $input_type . '" name="' . $name . ( $multiple ? '[]' : '' ) . '" value="' . esc_attr( $value ) . '"' . $checked . $tabindex . $onclick . ' />';
117
  } else {
118
- $item = '<input type="' . $input_type . '" name="' . $name . ( $multiple ? '[]' : '' ) . '" value="' . esc_attr( $value ) . '"' . $checked . $tabindex . $onclick . ' />';
119
  $item .= '&nbsp;<span class="wpcf7-list-item-label">' . esc_html( $label ) . '</span>';
120
  }
121
 
@@ -128,9 +131,7 @@ function wpcf7_checkbox_shortcode_handler( $tag ) {
128
 
129
  $html = '<span' . $atts . '>' . $html . '</span>';
130
 
131
- $validation_error = '';
132
- if ( is_a( $wpcf7_contact_form, 'WPCF7_ContactForm' ) )
133
- $validation_error = $wpcf7_contact_form->validation_error( $name );
134
 
135
  $html = '<span class="wpcf7-form-control-wrap ' . $name . '">' . $html . $validation_error . '</span>';
136
 
@@ -145,8 +146,6 @@ add_filter( 'wpcf7_validate_checkbox*', 'wpcf7_checkbox_validation_filter', 10,
145
  add_filter( 'wpcf7_validate_radio', 'wpcf7_checkbox_validation_filter', 10, 2 );
146
 
147
  function wpcf7_checkbox_validation_filter( $result, $tag ) {
148
- global $wpcf7_contact_form;
149
-
150
  $type = $tag['type'];
151
  $name = $tag['name'];
152
  $values = $tag['values'];
@@ -166,7 +165,7 @@ function wpcf7_checkbox_validation_filter( $result, $tag ) {
166
  if ( 'checkbox*' == $type ) {
167
  if ( empty( $_POST[$name] ) ) {
168
  $result['valid'] = false;
169
- $result['reason'][$name] = $wpcf7_contact_form->message( 'invalid_required' );
170
  }
171
  }
172
 
10
  wpcf7_add_shortcode( 'radio', 'wpcf7_checkbox_shortcode_handler', true );
11
 
12
  function wpcf7_checkbox_shortcode_handler( $tag ) {
 
 
13
  if ( ! is_array( $tag ) )
14
  return '';
15
 
63
  }
64
  }
65
 
66
+ $multiple = false;
67
+ $exclusive = (bool) preg_grep( '%^exclusive$%', $options );
68
+
69
+ if ( 'checkbox' == $type || 'checkbox*' == $type ) {
70
+ $multiple = ! $exclusive;
71
+ } else { // radio
72
+ $exclusive = false;
73
+ }
74
+
75
+ if ( $exclusive )
76
+ $class_att .= ' wpcf7-exclusive-checkbox';
77
+
78
  if ( $id_att )
79
  $atts .= ' id="' . trim( $id_att ) . '"';
80
 
81
  if ( $class_att )
82
  $atts .= ' class="' . trim( $class_att ) . '"';
83
 
 
 
84
  $html = '';
85
 
 
 
 
 
 
86
  $input_type = rtrim( $type, '*' );
87
 
88
+ $posted = wpcf7_is_posted();
89
 
90
  foreach ( $values as $key => $value ) {
91
  $checked = false;
92
 
93
+ if ( $posted ) {
 
 
 
94
  if ( $multiple && in_array( esc_sql( $value ), (array) $_POST[$name] ) )
95
  $checked = true;
96
  if ( ! $multiple && $_POST[$name] == esc_sql( $value ) )
97
  $checked = true;
98
+ } else {
99
+ if ( in_array( $key + 1, (array) $defaults ) )
100
+ $checked = true;
101
  }
102
 
103
  $checked = $checked ? ' checked="checked"' : '';
116
 
117
  if ( $label_first ) { // put label first, input last
118
  $item = '<span class="wpcf7-list-item-label">' . esc_html( $label ) . '</span>&nbsp;';
119
+ $item .= '<input type="' . $input_type . '" name="' . $name . ( $multiple ? '[]' : '' ) . '" value="' . esc_attr( $value ) . '"' . $checked . $tabindex . ' />';
120
  } else {
121
+ $item = '<input type="' . $input_type . '" name="' . $name . ( $multiple ? '[]' : '' ) . '" value="' . esc_attr( $value ) . '"' . $checked . $tabindex . ' />';
122
  $item .= '&nbsp;<span class="wpcf7-list-item-label">' . esc_html( $label ) . '</span>';
123
  }
124
 
131
 
132
  $html = '<span' . $atts . '>' . $html . '</span>';
133
 
134
+ $validation_error = wpcf7_get_validation_error( $name );
 
 
135
 
136
  $html = '<span class="wpcf7-form-control-wrap ' . $name . '">' . $html . $validation_error . '</span>';
137
 
146
  add_filter( 'wpcf7_validate_radio', 'wpcf7_checkbox_validation_filter', 10, 2 );
147
 
148
  function wpcf7_checkbox_validation_filter( $result, $tag ) {
 
 
149
  $type = $tag['type'];
150
  $name = $tag['name'];
151
  $values = $tag['values'];
165
  if ( 'checkbox*' == $type ) {
166
  if ( empty( $_POST[$name] ) ) {
167
  $result['valid'] = false;
168
+ $result['reason'][$name] = wpcf7_get_message( 'invalid_required' );
169
  }
170
  }
171
 
modules/file.php CHANGED
@@ -9,8 +9,6 @@ wpcf7_add_shortcode( 'file', 'wpcf7_file_shortcode_handler', true );
9
  wpcf7_add_shortcode( 'file*', 'wpcf7_file_shortcode_handler', true );
10
 
11
  function wpcf7_file_shortcode_handler( $tag ) {
12
- global $wpcf7_contact_form;
13
-
14
  if ( ! is_array( $tag ) )
15
  return '';
16
 
@@ -25,6 +23,7 @@ function wpcf7_file_shortcode_handler( $tag ) {
25
  $atts = '';
26
  $id_att = '';
27
  $class_att = '';
 
28
  $tabindex_att = '';
29
 
30
  $class_att .= ' wpcf7-file';
@@ -39,6 +38,9 @@ function wpcf7_file_shortcode_handler( $tag ) {
39
  } elseif ( preg_match( '%^class:([-0-9a-zA-Z_]+)$%', $option, $matches ) ) {
40
  $class_att .= ' ' . $matches[1];
41
 
 
 
 
42
  } elseif ( preg_match( '%^tabindex:(\d+)$%', $option, $matches ) ) {
43
  $tabindex_att = (int) $matches[1];
44
 
@@ -51,14 +53,17 @@ function wpcf7_file_shortcode_handler( $tag ) {
51
  if ( $class_att )
52
  $atts .= ' class="' . trim( $class_att ) . '"';
53
 
 
 
 
 
 
54
  if ( '' !== $tabindex_att )
55
  $atts .= sprintf( ' tabindex="%d"', $tabindex_att );
56
 
57
  $html = '<input type="file" name="' . $name . '"' . $atts . ' value="1" />';
58
 
59
- $validation_error = '';
60
- if ( is_a( $wpcf7_contact_form, 'WPCF7_ContactForm' ) )
61
- $validation_error = $wpcf7_contact_form->validation_error( $name );
62
 
63
  $html = '<span class="wpcf7-form-control-wrap ' . $name . '">' . $html . $validation_error . '</span>';
64
 
@@ -71,10 +76,7 @@ function wpcf7_file_shortcode_handler( $tag ) {
71
  add_filter( 'wpcf7_form_enctype', 'wpcf7_file_form_enctype_filter' );
72
 
73
  function wpcf7_file_form_enctype_filter( $enctype ) {
74
- global $wpcf7_contact_form;
75
-
76
- $multipart = (bool) $wpcf7_contact_form->form_scan_shortcode(
77
- array( 'type' => array( 'file', 'file*' ) ) );
78
 
79
  if ( $multipart )
80
  $enctype = ' enctype="multipart/form-data"';
@@ -89,8 +91,6 @@ add_filter( 'wpcf7_validate_file', 'wpcf7_file_validation_filter', 10, 2 );
89
  add_filter( 'wpcf7_validate_file*', 'wpcf7_file_validation_filter', 10, 2 );
90
 
91
  function wpcf7_file_validation_filter( $result, $tag ) {
92
- global $wpcf7_contact_form;
93
-
94
  $type = $tag['type'];
95
  $name = $tag['name'];
96
  $options = (array) $tag['options'];
@@ -99,13 +99,13 @@ function wpcf7_file_validation_filter( $result, $tag ) {
99
 
100
  if ( $file['error'] && UPLOAD_ERR_NO_FILE != $file['error'] ) {
101
  $result['valid'] = false;
102
- $result['reason'][$name] = $wpcf7_contact_form->message( 'upload_failed_php_error' );
103
  return $result;
104
  }
105
 
106
  if ( empty( $file['tmp_name'] ) && 'file*' == $type ) {
107
  $result['valid'] = false;
108
- $result['reason'][$name] = $wpcf7_contact_form->message( 'invalid_required' );
109
  return $result;
110
  }
111
 
@@ -150,7 +150,7 @@ function wpcf7_file_validation_filter( $result, $tag ) {
150
 
151
  if ( ! preg_match( $file_type_pattern, $file['name'] ) ) {
152
  $result['valid'] = false;
153
- $result['reason'][$name] = $wpcf7_contact_form->message( 'upload_file_type_invalid' );
154
  return $result;
155
  }
156
 
@@ -158,7 +158,7 @@ function wpcf7_file_validation_filter( $result, $tag ) {
158
 
159
  if ( $file['size'] > $allowed_size ) {
160
  $result['valid'] = false;
161
- $result['reason'][$name] = $wpcf7_contact_form->message( 'upload_file_too_large' );
162
  return $result;
163
  }
164
 
@@ -180,14 +180,15 @@ function wpcf7_file_validation_filter( $result, $tag ) {
180
 
181
  if ( false === @move_uploaded_file( $file['tmp_name'], $new_file ) ) {
182
  $result['valid'] = false;
183
- $result['reason'][$name] = $wpcf7_contact_form->message( 'upload_failed' );
184
  return $result;
185
  }
186
 
187
  // Make sure the uploaded file is only readable for the owner process
188
  @chmod( $new_file, 0400 );
189
 
190
- $wpcf7_contact_form->uploaded_files[$name] = $new_file;
 
191
 
192
  if ( ! isset( $_POST[$name] ) )
193
  $_POST[$name] = $filename;
9
  wpcf7_add_shortcode( 'file*', 'wpcf7_file_shortcode_handler', true );
10
 
11
  function wpcf7_file_shortcode_handler( $tag ) {
 
 
12
  if ( ! is_array( $tag ) )
13
  return '';
14
 
23
  $atts = '';
24
  $id_att = '';
25
  $class_att = '';
26
+ $size_att = '';
27
  $tabindex_att = '';
28
 
29
  $class_att .= ' wpcf7-file';
38
  } elseif ( preg_match( '%^class:([-0-9a-zA-Z_]+)$%', $option, $matches ) ) {
39
  $class_att .= ' ' . $matches[1];
40
 
41
+ } elseif ( preg_match( '%^([0-9]*)[/x]([0-9]*)$%', $option, $matches ) ) {
42
+ $size_att = (int) $matches[1];
43
+
44
  } elseif ( preg_match( '%^tabindex:(\d+)$%', $option, $matches ) ) {
45
  $tabindex_att = (int) $matches[1];
46
 
53
  if ( $class_att )
54
  $atts .= ' class="' . trim( $class_att ) . '"';
55
 
56
+ if ( $size_att )
57
+ $atts .= ' size="' . $size_att . '"';
58
+ else
59
+ $atts .= ' size="40"'; // default size
60
+
61
  if ( '' !== $tabindex_att )
62
  $atts .= sprintf( ' tabindex="%d"', $tabindex_att );
63
 
64
  $html = '<input type="file" name="' . $name . '"' . $atts . ' value="1" />';
65
 
66
+ $validation_error = wpcf7_get_validation_error( $name );
 
 
67
 
68
  $html = '<span class="wpcf7-form-control-wrap ' . $name . '">' . $html . $validation_error . '</span>';
69
 
76
  add_filter( 'wpcf7_form_enctype', 'wpcf7_file_form_enctype_filter' );
77
 
78
  function wpcf7_file_form_enctype_filter( $enctype ) {
79
+ $multipart = (bool) wpcf7_scan_shortcode( array( 'type' => array( 'file', 'file*' ) ) );
 
 
 
80
 
81
  if ( $multipart )
82
  $enctype = ' enctype="multipart/form-data"';
91
  add_filter( 'wpcf7_validate_file*', 'wpcf7_file_validation_filter', 10, 2 );
92
 
93
  function wpcf7_file_validation_filter( $result, $tag ) {
 
 
94
  $type = $tag['type'];
95
  $name = $tag['name'];
96
  $options = (array) $tag['options'];
99
 
100
  if ( $file['error'] && UPLOAD_ERR_NO_FILE != $file['error'] ) {
101
  $result['valid'] = false;
102
+ $result['reason'][$name] = wpcf7_get_message( 'upload_failed_php_error' );
103
  return $result;
104
  }
105
 
106
  if ( empty( $file['tmp_name'] ) && 'file*' == $type ) {
107
  $result['valid'] = false;
108
+ $result['reason'][$name] = wpcf7_get_message( 'invalid_required' );
109
  return $result;
110
  }
111
 
150
 
151
  if ( ! preg_match( $file_type_pattern, $file['name'] ) ) {
152
  $result['valid'] = false;
153
+ $result['reason'][$name] = wpcf7_get_message( 'upload_file_type_invalid' );
154
  return $result;
155
  }
156
 
158
 
159
  if ( $file['size'] > $allowed_size ) {
160
  $result['valid'] = false;
161
+ $result['reason'][$name] = wpcf7_get_message( 'upload_file_too_large' );
162
  return $result;
163
  }
164
 
180
 
181
  if ( false === @move_uploaded_file( $file['tmp_name'], $new_file ) ) {
182
  $result['valid'] = false;
183
+ $result['reason'][$name] = wpcf7_get_message( 'upload_failed' );
184
  return $result;
185
  }
186
 
187
  // Make sure the uploaded file is only readable for the owner process
188
  @chmod( $new_file, 0400 );
189
 
190
+ if ( $contact_form = wpcf7_get_current_contact_form() )
191
+ $contact_form->uploaded_files[$name] = $new_file;
192
 
193
  if ( ! isset( $_POST[$name] ) )
194
  $_POST[$name] = $filename;
modules/quiz.php CHANGED
@@ -8,8 +8,6 @@
8
  wpcf7_add_shortcode( 'quiz', 'wpcf7_quiz_shortcode_handler', true );
9
 
10
  function wpcf7_quiz_shortcode_handler( $tag ) {
11
- global $wpcf7_contact_form;
12
-
13
  if ( ! is_array( $tag ) )
14
  return '';
15
 
@@ -80,9 +78,7 @@ function wpcf7_quiz_shortcode_handler( $tag ) {
80
  $html .= '<input type="text" name="' . $name . '"' . $atts . ' />';
81
  $html .= '<input type="hidden" name="_wpcf7_quiz_answer_' . $name . '" value="' . wp_hash( $answer, 'wpcf7_quiz' ) . '" />';
82
 
83
- $validation_error = '';
84
- if ( is_a( $wpcf7_contact_form, 'WPCF7_ContactForm' ) )
85
- $validation_error = $wpcf7_contact_form->validation_error( $name );
86
 
87
  $html = '<span class="wpcf7-form-control-wrap ' . $name . '">' . $html . $validation_error . '</span>';
88
 
@@ -95,8 +91,6 @@ function wpcf7_quiz_shortcode_handler( $tag ) {
95
  add_filter( 'wpcf7_validate_quiz', 'wpcf7_quiz_validation_filter', 10, 2 );
96
 
97
  function wpcf7_quiz_validation_filter( $result, $tag ) {
98
- global $wpcf7_contact_form;
99
-
100
  $type = $tag['type'];
101
  $name = $tag['name'];
102
 
@@ -105,7 +99,7 @@ function wpcf7_quiz_validation_filter( $result, $tag ) {
105
  $expected_hash = $_POST['_wpcf7_quiz_answer_' . $name];
106
  if ( $answer_hash != $expected_hash ) {
107
  $result['valid'] = false;
108
- $result['reason'][$name] = $wpcf7_contact_form->message( 'quiz_answer_not_correct' );
109
  }
110
 
111
  return $result;
@@ -118,16 +112,10 @@ add_filter( 'wpcf7_ajax_onload', 'wpcf7_quiz_ajax_refill' );
118
  add_filter( 'wpcf7_ajax_json_echo', 'wpcf7_quiz_ajax_refill' );
119
 
120
  function wpcf7_quiz_ajax_refill( $items ) {
121
- global $wpcf7_contact_form;
122
-
123
- if ( ! is_a( $wpcf7_contact_form, 'WPCF7_ContactForm' ) )
124
- return $items;
125
-
126
  if ( ! is_array( $items ) )
127
  return $items;
128
 
129
- $fes = $wpcf7_contact_form->form_scan_shortcode(
130
- array( 'type' => 'quiz' ) );
131
 
132
  if ( empty( $fes ) )
133
  return $items;
8
  wpcf7_add_shortcode( 'quiz', 'wpcf7_quiz_shortcode_handler', true );
9
 
10
  function wpcf7_quiz_shortcode_handler( $tag ) {
 
 
11
  if ( ! is_array( $tag ) )
12
  return '';
13
 
78
  $html .= '<input type="text" name="' . $name . '"' . $atts . ' />';
79
  $html .= '<input type="hidden" name="_wpcf7_quiz_answer_' . $name . '" value="' . wp_hash( $answer, 'wpcf7_quiz' ) . '" />';
80
 
81
+ $validation_error = wpcf7_get_validation_error( $name );
 
 
82
 
83
  $html = '<span class="wpcf7-form-control-wrap ' . $name . '">' . $html . $validation_error . '</span>';
84
 
91
  add_filter( 'wpcf7_validate_quiz', 'wpcf7_quiz_validation_filter', 10, 2 );
92
 
93
  function wpcf7_quiz_validation_filter( $result, $tag ) {
 
 
94
  $type = $tag['type'];
95
  $name = $tag['name'];
96
 
99
  $expected_hash = $_POST['_wpcf7_quiz_answer_' . $name];
100
  if ( $answer_hash != $expected_hash ) {
101
  $result['valid'] = false;
102
+ $result['reason'][$name] = wpcf7_get_message( 'quiz_answer_not_correct' );
103
  }
104
 
105
  return $result;
112
  add_filter( 'wpcf7_ajax_json_echo', 'wpcf7_quiz_ajax_refill' );
113
 
114
  function wpcf7_quiz_ajax_refill( $items ) {
 
 
 
 
 
115
  if ( ! is_array( $items ) )
116
  return $items;
117
 
118
+ $fes = wpcf7_scan_shortcode( array( 'type' => 'quiz' ) );
 
119
 
120
  if ( empty( $fes ) )
121
  return $items;
modules/response.php CHANGED
@@ -8,10 +8,10 @@
8
  wpcf7_add_shortcode( 'response', 'wpcf7_response_shortcode_handler' );
9
 
10
  function wpcf7_response_shortcode_handler( $tag ) {
11
- global $wpcf7_contact_form;
12
-
13
- $wpcf7_contact_form->responses_count += 1;
14
- return $wpcf7_contact_form->form_response_output();
15
  }
16
 
17
  ?>
8
  wpcf7_add_shortcode( 'response', 'wpcf7_response_shortcode_handler' );
9
 
10
  function wpcf7_response_shortcode_handler( $tag ) {
11
+ if ( $contact_form = wpcf7_get_current_contact_form() ) {
12
+ $contact_form->responses_count += 1;
13
+ return $contact_form->form_response_output();
14
+ }
15
  }
16
 
17
  ?>
modules/select.php CHANGED
@@ -9,8 +9,6 @@ wpcf7_add_shortcode( 'select', 'wpcf7_select_shortcode_handler', true );
9
  wpcf7_add_shortcode( 'select*', 'wpcf7_select_shortcode_handler', true );
10
 
11
  function wpcf7_select_shortcode_handler( $tag ) {
12
- global $wpcf7_contact_form;
13
-
14
  if ( ! is_array( $tag ) )
15
  return '';
16
 
@@ -71,19 +69,19 @@ function wpcf7_select_shortcode_handler( $tag ) {
71
 
72
  $html = '';
73
 
74
- $posted = is_a( $wpcf7_contact_form, 'WPCF7_ContactForm' ) && $wpcf7_contact_form->is_posted();
75
 
76
  foreach ( $values as $key => $value ) {
77
  $selected = false;
78
 
79
- if ( ! $empty_select && in_array( $key + 1, (array) $defaults ) )
80
- $selected = true;
81
-
82
  if ( $posted ) {
83
  if ( $multiple && in_array( esc_sql( $value ), (array) $_POST[$name] ) )
84
  $selected = true;
85
  if ( ! $multiple && $_POST[$name] == esc_sql( $value ) )
86
  $selected = true;
 
 
 
87
  }
88
 
89
  $selected = $selected ? ' selected="selected"' : '';
@@ -101,9 +99,7 @@ function wpcf7_select_shortcode_handler( $tag ) {
101
 
102
  $html = '<select name="' . $name . ( $multiple ? '[]' : '' ) . '"' . $atts . '>' . $html . '</select>';
103
 
104
- $validation_error = '';
105
- if ( is_a( $wpcf7_contact_form, 'WPCF7_ContactForm' ) )
106
- $validation_error = $wpcf7_contact_form->validation_error( $name );
107
 
108
  $html = '<span class="wpcf7-form-control-wrap ' . $name . '">' . $html . $validation_error . '</span>';
109
 
@@ -117,8 +113,6 @@ add_filter( 'wpcf7_validate_select', 'wpcf7_select_validation_filter', 10, 2 );
117
  add_filter( 'wpcf7_validate_select*', 'wpcf7_select_validation_filter', 10, 2 );
118
 
119
  function wpcf7_select_validation_filter( $result, $tag ) {
120
- global $wpcf7_contact_form;
121
-
122
  $type = $tag['type'];
123
  $name = $tag['name'];
124
  $values = $tag['values'];
@@ -140,7 +134,7 @@ function wpcf7_select_validation_filter( $result, $tag ) {
140
  ! is_array( $_POST[$name] ) && '---' == $_POST[$name] ||
141
  is_array( $_POST[$name] ) && 1 == count( $_POST[$name] ) && '---' == $_POST[$name][0] ) {
142
  $result['valid'] = false;
143
- $result['reason'][$name] = $wpcf7_contact_form->message( 'invalid_required' );
144
  }
145
  }
146
 
9
  wpcf7_add_shortcode( 'select*', 'wpcf7_select_shortcode_handler', true );
10
 
11
  function wpcf7_select_shortcode_handler( $tag ) {
 
 
12
  if ( ! is_array( $tag ) )
13
  return '';
14
 
69
 
70
  $html = '';
71
 
72
+ $posted = wpcf7_is_posted();
73
 
74
  foreach ( $values as $key => $value ) {
75
  $selected = false;
76
 
 
 
 
77
  if ( $posted ) {
78
  if ( $multiple && in_array( esc_sql( $value ), (array) $_POST[$name] ) )
79
  $selected = true;
80
  if ( ! $multiple && $_POST[$name] == esc_sql( $value ) )
81
  $selected = true;
82
+ } else {
83
+ if ( ! $empty_select && in_array( $key + 1, (array) $defaults ) )
84
+ $selected = true;
85
  }
86
 
87
  $selected = $selected ? ' selected="selected"' : '';
99
 
100
  $html = '<select name="' . $name . ( $multiple ? '[]' : '' ) . '"' . $atts . '>' . $html . '</select>';
101
 
102
+ $validation_error = wpcf7_get_validation_error( $name );
 
 
103
 
104
  $html = '<span class="wpcf7-form-control-wrap ' . $name . '">' . $html . $validation_error . '</span>';
105
 
113
  add_filter( 'wpcf7_validate_select*', 'wpcf7_select_validation_filter', 10, 2 );
114
 
115
  function wpcf7_select_validation_filter( $result, $tag ) {
 
 
116
  $type = $tag['type'];
117
  $name = $tag['name'];
118
  $values = $tag['values'];
134
  ! is_array( $_POST[$name] ) && '---' == $_POST[$name] ||
135
  is_array( $_POST[$name] ) && 1 == count( $_POST[$name] ) && '---' == $_POST[$name][0] ) {
136
  $result['valid'] = false;
137
+ $result['reason'][$name] = wpcf7_get_message( 'invalid_required' );
138
  }
139
  }
140
 
modules/text.php CHANGED
@@ -11,8 +11,6 @@ wpcf7_add_shortcode( 'email', 'wpcf7_text_shortcode_handler', true );
11
  wpcf7_add_shortcode( 'email*', 'wpcf7_text_shortcode_handler', true );
12
 
13
  function wpcf7_text_shortcode_handler( $tag ) {
14
- global $wpcf7_contact_form;
15
-
16
  if ( ! is_array( $tag ) )
17
  return '';
18
 
@@ -30,6 +28,7 @@ function wpcf7_text_shortcode_handler( $tag ) {
30
  $size_att = '';
31
  $maxlength_att = '';
32
  $tabindex_att = '';
 
33
 
34
  $class_att .= ' wpcf7-text';
35
 
@@ -56,6 +55,17 @@ function wpcf7_text_shortcode_handler( $tag ) {
56
  }
57
  }
58
 
 
 
 
 
 
 
 
 
 
 
 
59
  if ( $id_att )
60
  $atts .= ' id="' . trim( $id_att ) . '"';
61
 
@@ -73,21 +83,12 @@ function wpcf7_text_shortcode_handler( $tag ) {
73
  if ( '' !== $tabindex_att )
74
  $atts .= sprintf( ' tabindex="%d"', $tabindex_att );
75
 
76
- // Value
77
- if ( is_a( $wpcf7_contact_form, 'WPCF7_ContactForm' ) && $wpcf7_contact_form->is_posted() ) {
78
- if ( isset( $_POST['_wpcf7_mail_sent'] ) && $_POST['_wpcf7_mail_sent']['ok'] )
79
- $value = '';
80
- else
81
- $value = stripslashes_deep( $_POST[$name] );
82
- } else {
83
- $value = isset( $values[0] ) ? $values[0] : '';
84
- }
85
 
86
  $html = '<input type="text" name="' . $name . '" value="' . esc_attr( $value ) . '"' . $atts . ' />';
87
 
88
- $validation_error = '';
89
- if ( is_a( $wpcf7_contact_form, 'WPCF7_ContactForm' ) )
90
- $validation_error = $wpcf7_contact_form->validation_error( $name );
91
 
92
  $html = '<span class="wpcf7-form-control-wrap ' . $name . '">' . $html . $validation_error . '</span>';
93
 
@@ -103,8 +104,6 @@ add_filter( 'wpcf7_validate_email', 'wpcf7_text_validation_filter', 10, 2 );
103
  add_filter( 'wpcf7_validate_email*', 'wpcf7_text_validation_filter', 10, 2 );
104
 
105
  function wpcf7_text_validation_filter( $result, $tag ) {
106
- global $wpcf7_contact_form;
107
-
108
  $type = $tag['type'];
109
  $name = $tag['name'];
110
 
@@ -113,17 +112,17 @@ function wpcf7_text_validation_filter( $result, $tag ) {
113
  if ( 'text*' == $type ) {
114
  if ( '' == $_POST[$name] ) {
115
  $result['valid'] = false;
116
- $result['reason'][$name] = $wpcf7_contact_form->message( 'invalid_required' );
117
  }
118
  }
119
 
120
  if ( 'email' == $type || 'email*' == $type ) {
121
  if ( 'email*' == $type && '' == $_POST[$name] ) {
122
  $result['valid'] = false;
123
- $result['reason'][$name] = $wpcf7_contact_form->message( 'invalid_required' );
124
  } elseif ( '' != $_POST[$name] && ! is_email( $_POST[$name] ) ) {
125
  $result['valid'] = false;
126
- $result['reason'][$name] = $wpcf7_contact_form->message( 'invalid_email' );
127
  }
128
  }
129
 
@@ -181,7 +180,7 @@ function wpcf7_tg_pane_text_and_email( $type = 'text' ) {
181
  </tr>
182
 
183
  <tr>
184
- <td><?php echo esc_html( __( 'Akismet', 'wpcf7' ) ); ?> (<?php echo esc_html( __( 'optional', 'wpcf7' ) ); ?>)<br />
185
  <?php if ( 'text' == $type ) : ?>
186
  <input type="checkbox" name="akismet:author" class="exclusive option" />&nbsp;<?php echo esc_html( __( "This field requires author's name", 'wpcf7' ) ); ?><br />
187
  <input type="checkbox" name="akismet:author_url" class="exclusive option" />&nbsp;<?php echo esc_html( __( "This field requires author's URL", 'wpcf7' ) ); ?>
@@ -189,8 +188,14 @@ function wpcf7_tg_pane_text_and_email( $type = 'text' ) {
189
  <input type="checkbox" name="akismet:author_email" class="option" />&nbsp;<?php echo esc_html( __( "This field requires author's email address", 'wpcf7' ) ); ?>
190
  <?php endif; ?>
191
  </td>
 
192
 
 
193
  <td><?php echo esc_html( __( 'Default value', 'wpcf7' ) ); ?> (<?php echo esc_html( __( 'optional', 'wpcf7' ) ); ?>)<br /><input type="text" name="values" class="oneline" /></td>
 
 
 
 
194
  </tr>
195
  </table>
196
 
11
  wpcf7_add_shortcode( 'email*', 'wpcf7_text_shortcode_handler', true );
12
 
13
  function wpcf7_text_shortcode_handler( $tag ) {
 
 
14
  if ( ! is_array( $tag ) )
15
  return '';
16
 
28
  $size_att = '';
29
  $maxlength_att = '';
30
  $tabindex_att = '';
31
+ $title_att = '';
32
 
33
  $class_att .= ' wpcf7-text';
34
 
55
  }
56
  }
57
 
58
+ $value = (string) reset( $values );
59
+
60
+ if ( wpcf7_script_is() && $value && preg_grep( '%^watermark$%', $options ) ) {
61
+ $class_att .= ' wpcf7-use-title-as-watermark';
62
+ $title_att .= sprintf( ' %s', $value );
63
+ $value = '';
64
+ }
65
+
66
+ if ( wpcf7_is_posted() )
67
+ $value = stripslashes_deep( $_POST[$name] );
68
+
69
  if ( $id_att )
70
  $atts .= ' id="' . trim( $id_att ) . '"';
71
 
83
  if ( '' !== $tabindex_att )
84
  $atts .= sprintf( ' tabindex="%d"', $tabindex_att );
85
 
86
+ if ( $title_att )
87
+ $atts .= sprintf( ' title="%s"', trim( esc_attr( $title_att ) ) );
 
 
 
 
 
 
 
88
 
89
  $html = '<input type="text" name="' . $name . '" value="' . esc_attr( $value ) . '"' . $atts . ' />';
90
 
91
+ $validation_error = wpcf7_get_validation_error( $name );
 
 
92
 
93
  $html = '<span class="wpcf7-form-control-wrap ' . $name . '">' . $html . $validation_error . '</span>';
94
 
104
  add_filter( 'wpcf7_validate_email*', 'wpcf7_text_validation_filter', 10, 2 );
105
 
106
  function wpcf7_text_validation_filter( $result, $tag ) {
 
 
107
  $type = $tag['type'];
108
  $name = $tag['name'];
109
 
112
  if ( 'text*' == $type ) {
113
  if ( '' == $_POST[$name] ) {
114
  $result['valid'] = false;
115
+ $result['reason'][$name] = wpcf7_get_message( 'invalid_required' );
116
  }
117
  }
118
 
119
  if ( 'email' == $type || 'email*' == $type ) {
120
  if ( 'email*' == $type && '' == $_POST[$name] ) {
121
  $result['valid'] = false;
122
+ $result['reason'][$name] = wpcf7_get_message( 'invalid_required' );
123
  } elseif ( '' != $_POST[$name] && ! is_email( $_POST[$name] ) ) {
124
  $result['valid'] = false;
125
+ $result['reason'][$name] = wpcf7_get_message( 'invalid_email' );
126
  }
127
  }
128
 
180
  </tr>
181
 
182
  <tr>
183
+ <td colspan="2"><?php echo esc_html( __( 'Akismet', 'wpcf7' ) ); ?> (<?php echo esc_html( __( 'optional', 'wpcf7' ) ); ?>)<br />
184
  <?php if ( 'text' == $type ) : ?>
185
  <input type="checkbox" name="akismet:author" class="exclusive option" />&nbsp;<?php echo esc_html( __( "This field requires author's name", 'wpcf7' ) ); ?><br />
186
  <input type="checkbox" name="akismet:author_url" class="exclusive option" />&nbsp;<?php echo esc_html( __( "This field requires author's URL", 'wpcf7' ) ); ?>
188
  <input type="checkbox" name="akismet:author_email" class="option" />&nbsp;<?php echo esc_html( __( "This field requires author's email address", 'wpcf7' ) ); ?>
189
  <?php endif; ?>
190
  </td>
191
+ </tr>
192
 
193
+ <tr>
194
  <td><?php echo esc_html( __( 'Default value', 'wpcf7' ) ); ?> (<?php echo esc_html( __( 'optional', 'wpcf7' ) ); ?>)<br /><input type="text" name="values" class="oneline" /></td>
195
+
196
+ <td>
197
+ <br /><input type="checkbox" name="watermark" class="option" />&nbsp;<?php echo esc_html( __( 'Use this text as watermark?', 'wpcf7' ) ); ?>
198
+ </td>
199
  </tr>
200
  </table>
201
 
modules/textarea.php CHANGED
@@ -9,8 +9,6 @@ wpcf7_add_shortcode( 'textarea', 'wpcf7_textarea_shortcode_handler', true );
9
  wpcf7_add_shortcode( 'textarea*', 'wpcf7_textarea_shortcode_handler', true );
10
 
11
  function wpcf7_textarea_shortcode_handler( $tag ) {
12
- global $wpcf7_contact_form;
13
-
14
  if ( ! is_array( $tag ) )
15
  return '';
16
 
@@ -29,6 +27,7 @@ function wpcf7_textarea_shortcode_handler( $tag ) {
29
  $cols_att = '';
30
  $rows_att = '';
31
  $tabindex_att = '';
 
32
 
33
  if ( 'textarea*' == $type )
34
  $class_att .= ' wpcf7-validates-as-required';
@@ -50,6 +49,20 @@ function wpcf7_textarea_shortcode_handler( $tag ) {
50
  }
51
  }
52
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
53
  if ( $id_att )
54
  $atts .= ' id="' . trim( $id_att ) . '"';
55
 
@@ -69,24 +82,12 @@ function wpcf7_textarea_shortcode_handler( $tag ) {
69
  if ( '' !== $tabindex_att )
70
  $atts .= sprintf( ' tabindex="%d"', $tabindex_att );
71
 
72
- // Value
73
- if ( is_a( $wpcf7_contact_form, 'WPCF7_ContactForm' ) && $wpcf7_contact_form->is_posted() ) {
74
- if ( isset( $_POST['_wpcf7_mail_sent'] ) && $_POST['_wpcf7_mail_sent']['ok'] )
75
- $value = '';
76
- else
77
- $value = stripslashes_deep( $_POST[$name] );
78
- } else {
79
- $value = isset( $values[0] ) ? $values[0] : '';
80
-
81
- if ( ! empty( $content ) )
82
- $value = $content;
83
- }
84
 
85
  $html = '<textarea name="' . $name . '"' . $atts . '>' . esc_html( $value ) . '</textarea>';
86
 
87
- $validation_error = '';
88
- if ( is_a( $wpcf7_contact_form, 'WPCF7_ContactForm' ) )
89
- $validation_error = $wpcf7_contact_form->validation_error( $name );
90
 
91
  $html = '<span class="wpcf7-form-control-wrap ' . $name . '">' . $html . $validation_error . '</span>';
92
 
@@ -100,8 +101,6 @@ add_filter( 'wpcf7_validate_textarea', 'wpcf7_textarea_validation_filter', 10, 2
100
  add_filter( 'wpcf7_validate_textarea*', 'wpcf7_textarea_validation_filter', 10, 2 );
101
 
102
  function wpcf7_textarea_validation_filter( $result, $tag ) {
103
- global $wpcf7_contact_form;
104
-
105
  $type = $tag['type'];
106
  $name = $tag['name'];
107
 
@@ -110,7 +109,7 @@ function wpcf7_textarea_validation_filter( $result, $tag ) {
110
  if ( 'textarea*' == $type ) {
111
  if ( '' == $_POST[$name] ) {
112
  $result['valid'] = false;
113
- $result['reason'][$name] = $wpcf7_contact_form->message( 'invalid_required' );
114
  }
115
  }
116
 
@@ -155,6 +154,10 @@ function wpcf7_tg_pane_textarea( &$contact_form ) {
155
 
156
  <tr>
157
  <td><?php echo esc_html( __( 'Default value', 'wpcf7' ) ); ?> (<?php echo esc_html( __( 'optional', 'wpcf7' ) ); ?>)<br /><input type="text" name="values" class="oneline" /></td>
 
 
 
 
158
  </tr>
159
  </table>
160
 
9
  wpcf7_add_shortcode( 'textarea*', 'wpcf7_textarea_shortcode_handler', true );
10
 
11
  function wpcf7_textarea_shortcode_handler( $tag ) {
 
 
12
  if ( ! is_array( $tag ) )
13
  return '';
14
 
27
  $cols_att = '';
28
  $rows_att = '';
29
  $tabindex_att = '';
30
+ $title_att = '';
31
 
32
  if ( 'textarea*' == $type )
33
  $class_att .= ' wpcf7-validates-as-required';
49
  }
50
  }
51
 
52
+ $value = (string) reset( $values );
53
+
54
+ if ( ! empty( $content ) )
55
+ $value = $content;
56
+
57
+ if ( wpcf7_script_is() && $value && preg_grep( '%^watermark$%', $options ) ) {
58
+ $class_att .= ' wpcf7-use-title-as-watermark';
59
+ $title_att .= sprintf( ' %s', $value );
60
+ $value = '';
61
+ }
62
+
63
+ if ( wpcf7_is_posted() )
64
+ $value = stripslashes_deep( $_POST[$name] );
65
+
66
  if ( $id_att )
67
  $atts .= ' id="' . trim( $id_att ) . '"';
68
 
82
  if ( '' !== $tabindex_att )
83
  $atts .= sprintf( ' tabindex="%d"', $tabindex_att );
84
 
85
+ if ( $title_att )
86
+ $atts .= sprintf( ' title="%s"', trim( esc_attr( $title_att ) ) );
 
 
 
 
 
 
 
 
 
 
87
 
88
  $html = '<textarea name="' . $name . '"' . $atts . '>' . esc_html( $value ) . '</textarea>';
89
 
90
+ $validation_error = wpcf7_get_validation_error( $name );
 
 
91
 
92
  $html = '<span class="wpcf7-form-control-wrap ' . $name . '">' . $html . $validation_error . '</span>';
93
 
101
  add_filter( 'wpcf7_validate_textarea*', 'wpcf7_textarea_validation_filter', 10, 2 );
102
 
103
  function wpcf7_textarea_validation_filter( $result, $tag ) {
 
 
104
  $type = $tag['type'];
105
  $name = $tag['name'];
106
 
109
  if ( 'textarea*' == $type ) {
110
  if ( '' == $_POST[$name] ) {
111
  $result['valid'] = false;
112
+ $result['reason'][$name] = wpcf7_get_message( 'invalid_required' );
113
  }
114
  }
115
 
154
 
155
  <tr>
156
  <td><?php echo esc_html( __( 'Default value', 'wpcf7' ) ); ?> (<?php echo esc_html( __( 'optional', 'wpcf7' ) ); ?>)<br /><input type="text" name="values" class="oneline" /></td>
157
+
158
+ <td>
159
+ <br /><input type="checkbox" name="watermark" class="option" />&nbsp;<?php echo esc_html( __( 'Use this text as watermark?', 'wpcf7' ) ); ?>
160
+ </td>
161
  </tr>
162
  </table>
163
 
readme.txt CHANGED
@@ -4,19 +4,19 @@ Donate link: http://contactform7.com/donate/
4
  Tags: contact, form, contact form, feedback, email, ajax, captcha, akismet, multilingual
5
  Requires at least: 2.9
6
  Tested up to: 3.0.1
7
- Stable tag: 2.3.1
8
 
9
  Just another contact form plugin. Simple but flexible.
10
 
11
  == Description ==
12
 
13
- Just another contact form plugin. Simple but flexible.
14
-
15
  Contact Form 7 can manage multiple contact forms, plus you can customize the form and the mail contents flexibly with simple markup. The form supports Ajax-powered submitting, CAPTCHA, Akismet spam filtering and so on.
16
 
17
- * [Docs](http://contactform7.com/docs/)
18
- * [FAQ](http://contactform7.com/faq/)
19
- * [Support](http://contactform7.com/support/)
 
 
20
 
21
  = Contact Form 7 Needs Your Support =
22
 
@@ -99,21 +99,13 @@ Do you have questions or issues with Contact Form 7? Use these support channels
99
 
100
  == Changelog ==
101
 
102
- = 2.3.1 =
103
-
104
- * Fixed: wrongly applying 'autop' filter to message body of HTML-formatted mail.
105
- * Fixed: possible cause of some Ajax-related troubles.
106
- * Fixed: wrong HTML format of the result of [response] tag.
107
- * Fixed: rewrote a few codes for avoiding warnings.
108
- * Fixed: wrongly applying 'autop' filter to &lt;textarea&gt; contents.
109
- * You can customize ajax loader image with new wpcf7_ajax_loader filter.
110
- * Translations for Ukrainian (Ukrainian WordPress localization team), Brazilian Portuguese (Gervásio Antônio) and Serbian (Aleksandar Urošević) have been updated.
111
-
112
- = 2.3 =
113
 
114
- * The required WordPress version has been changed and now requires WordPress 2.9 or higher. If you use WordPress 2.8, you will need to upgrade WordPress.
115
- * When you insert multi-line text input into the message body of HTML-formatted mail, Contact Form 7 automatically applies an 'autop' (auto paragraph) filter to the text. This makes it so that the original user input styles remain -- and does not break paragraph styles in the HTML view.
116
- * Translations for German (Ivan Graf), Finnish (Mediajalostamo), Thai (kazama) and Danish (Georg S. Adamsen) have been updated.
 
 
117
 
118
  [Releases](http://contactform7.com/category/releases/)
119
 
4
  Tags: contact, form, contact form, feedback, email, ajax, captcha, akismet, multilingual
5
  Requires at least: 2.9
6
  Tested up to: 3.0.1
7
+ Stable tag: 2.4
8
 
9
  Just another contact form plugin. Simple but flexible.
10
 
11
  == Description ==
12
 
 
 
13
  Contact Form 7 can manage multiple contact forms, plus you can customize the form and the mail contents flexibly with simple markup. The form supports Ajax-powered submitting, CAPTCHA, Akismet spam filtering and so on.
14
 
15
+ = Plugin's Official Site =
16
+
17
+ Contact Form 7 [(http://contactform7.com)](http://contactform7.com/)
18
+
19
+ * [Docs](http://contactform7.com/docs/) - [FAQ](http://contactform7.com/faq/) - [Support](http://contactform7.com/support/)
20
 
21
  = Contact Form 7 Needs Your Support =
22
 
99
 
100
  == Changelog ==
101
 
102
+ = 2.4 =
 
 
 
 
 
 
 
 
 
 
103
 
104
+ * Moved PO files to the external branch. They were space-consuming and enlarging the plugin package.
105
+ * Added an option for size attribute of &lt;input type="file"&gt;.
106
+ * Added 'acceptance_as_validation' additional setting. This setting allows you to use acceptance checkbox as object of validation.
107
+ * Added watermark support to text, email and textarea tags.
108
+ * Use the latest jQuery Form plugin instead of the old one which WordPress bundles.
109
 
110
  [Releases](http://contactform7.com/category/releases/)
111
 
scripts.js CHANGED
@@ -1,153 +1,198 @@
1
- jQuery(document).ready(function() {
2
- try {
3
- jQuery('div.wpcf7 > form').ajaxForm({
4
- beforeSubmit: wpcf7BeforeSubmit,
5
- dataType: 'json',
6
- success: wpcf7ProcessJson
7
- });
8
- } catch (e) {
9
- }
10
-
11
- try {
12
- jQuery('div.wpcf7 > form').each(function(i, n) {
13
- wpcf7ToggleSubmit(jQuery(n));
14
- });
15
- } catch (e) {
16
- }
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
17
 
18
- try {
19
- if (_wpcf7.cached) {
20
- jQuery('div.wpcf7 > form').each(function(i, n) {
21
- wpcf7OnloadRefill(n);
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
22
  });
 
 
23
  }
24
- } catch (e) {
25
- }
26
- });
27
-
28
- // Exclusive checkbox
29
- function wpcf7ExclusiveCheckbox(elem) {
30
- jQuery(elem.form).find('input:checkbox[name="' + elem.name + '"]').not(elem).removeAttr('checked');
31
- }
32
-
33
- // Toggle submit button
34
- function wpcf7ToggleSubmit(form) {
35
- var submit = jQuery(form).find('input:submit');
36
- if (! submit.length) return;
37
-
38
- var acceptances = jQuery(form).find('input:checkbox.wpcf7-acceptance');
39
- if (! acceptances.length) return;
40
-
41
- submit.removeAttr('disabled');
42
- acceptances.each(function(i, n) {
43
- n = jQuery(n);
44
- if (n.hasClass('wpcf7-invert') && n.is(':checked') || ! n.hasClass('wpcf7-invert') && ! n.is(':checked'))
45
- submit.attr('disabled', 'disabled');
46
  });
47
- }
48
 
49
- function wpcf7BeforeSubmit(formData, jqForm, options) {
50
- wpcf7ClearResponseOutput();
51
- jQuery('img.ajax-loader', jqForm[0]).css({ visibility: 'visible' });
 
 
52
 
53
- formData.push({name: '_wpcf7_is_ajax_call', value: 1});
54
- jQuery(jqForm[0]).append('<input type="hidden" name="_wpcf7_is_ajax_call" value="1" />');
55
 
56
- return true;
57
- }
58
 
59
- function wpcf7NotValidTip(into, message) {
60
- jQuery(into).append('<span class="wpcf7-not-valid-tip">' + message + '</span>');
61
- jQuery('span.wpcf7-not-valid-tip').mouseover(function() {
62
- jQuery(this).fadeOut('fast');
63
- });
64
- jQuery(into).find(':input').mouseover(function() {
65
- jQuery(into).find('.wpcf7-not-valid-tip').not(':hidden').fadeOut('fast');
66
- });
67
- jQuery(into).find(':input').focus(function() {
68
- jQuery(into).find('.wpcf7-not-valid-tip').not(':hidden').fadeOut('fast');
69
- });
70
- }
71
-
72
- function wpcf7OnloadRefill(form) {
73
- var url = jQuery(form).attr('action');
74
- if (0 < url.indexOf('#'))
75
- url = url.substr(0, url.indexOf('#'));
76
-
77
- var id = jQuery(form).find('input[name="_wpcf7"]').val();
78
- var unitTag = jQuery(form).find('input[name="_wpcf7_unit_tag"]').val();
79
-
80
- jQuery.getJSON(url,
81
- { _wpcf7_is_ajax_call: 1, _wpcf7: id },
82
- function(data) {
83
- if (data && data.captcha) {
84
- wpcf7RefillCaptcha('#' + unitTag, data.captcha);
85
- }
86
- if (data && data.quiz) {
87
- wpcf7RefillQuiz('#' + unitTag, data.quiz);
88
- }
89
- }
90
- );
91
- }
92
 
93
- function wpcf7ProcessJson(data) {
94
- var wpcf7ResponseOutput = jQuery(data.into).find('div.wpcf7-response-output');
95
- wpcf7ClearResponseOutput();
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
96
 
97
- if (data.invalids) {
98
- jQuery.each(data.invalids, function(i, n) {
99
- wpcf7NotValidTip(jQuery(data.into).find(n.into), n.message);
 
 
 
 
 
 
 
100
  });
101
- wpcf7ResponseOutput.addClass('wpcf7-validation-errors');
102
- }
103
-
104
- if (data.captcha) {
105
- wpcf7RefillCaptcha(data.into, data.captcha);
106
- }
107
-
108
- if (data.quiz) {
109
- wpcf7RefillQuiz(data.into, data.quiz);
110
- }
111
-
112
- if (1 == data.spam) {
113
- wpcf7ResponseOutput.addClass('wpcf7-spam-blocked');
114
- }
115
-
116
- if (1 == data.mailSent) {
117
- jQuery(data.into).find('form').resetForm().clearForm();
118
- wpcf7ResponseOutput.addClass('wpcf7-mail-sent-ok');
119
-
120
- if (data.onSentOk)
121
- jQuery.each(data.onSentOk, function(i, n) { eval(n) });
122
- } else {
123
- wpcf7ResponseOutput.addClass('wpcf7-mail-sent-ng');
124
- }
125
-
126
- if (data.onSubmit)
127
- jQuery.each(data.onSubmit, function(i, n) { eval(n) });
128
-
129
- wpcf7ResponseOutput.append(data.message).slideDown('fast');
130
- }
131
-
132
- function wpcf7RefillCaptcha(form, captcha) {
133
- jQuery.each(captcha, function(i, n) {
134
- jQuery(form).find(':input[name="' + i + '"]').clearFields();
135
- jQuery(form).find('img.wpcf7-captcha-' + i).attr('src', n);
136
- var match = /([0-9]+)\.(png|gif|jpeg)$/.exec(n);
137
- jQuery(form).find('input:hidden[name="_wpcf7_captcha_challenge_' + i + '"]').attr('value', match[1]);
138
- });
139
- }
140
 
141
- function wpcf7RefillQuiz(form, quiz) {
142
- jQuery.each(quiz, function(i, n) {
143
- jQuery(form).find(':input[name="' + i + '"]').clearFields();
144
- jQuery(form).find(':input[name="' + i + '"]').siblings('span.wpcf7-quiz-label').text(n[0]);
145
- jQuery(form).find('input:hidden[name="_wpcf7_quiz_answer_' + i + '"]').attr('value', n[1]);
146
- });
147
- }
 
 
 
 
 
 
 
 
 
 
 
 
148
 
149
- function wpcf7ClearResponseOutput() {
150
- jQuery('div.wpcf7-response-output').hide().empty().removeClass('wpcf7-mail-sent-ok wpcf7-mail-sent-ng wpcf7-validation-errors wpcf7-spam-blocked');
151
- jQuery('span.wpcf7-not-valid-tip').remove();
152
- jQuery('img.ajax-loader').css({ visibility: 'hidden' });
153
- }
1
+ (function($) {
2
+
3
+ $(function() {
4
+ try {
5
+ if (typeof _wpcf7 == 'undefined' || _wpcf7 === null)
6
+ _wpcf7 = {};
7
+
8
+ _wpcf7 = $.extend({ cached: 0 }, _wpcf7);
9
+
10
+ $('div.wpcf7 > form').ajaxForm({
11
+ beforeSubmit: function(formData, jqForm, options) {
12
+ jqForm.wpcf7ClearResponseOutput();
13
+ jqForm.find('img.ajax-loader').css({ visibility: 'visible' });
14
+ return true;
15
+ },
16
+ beforeSerialize: function(jqForm, options) {
17
+ jqForm.find('.wpcf7-use-title-as-watermark.watermark').each(function(i, n) {
18
+ $(n).val('');
19
+ });
20
+ return true;
21
+ },
22
+ data: { '_wpcf7_is_ajax_call': 1 },
23
+ dataType: 'json',
24
+ success: function(data) {
25
+ var ro = $(data.into).find('div.wpcf7-response-output');
26
+ $(data.into).wpcf7ClearResponseOutput();
27
+
28
+ if (data.invalids) {
29
+ $.each(data.invalids, function(i, n) {
30
+ $(data.into).find(n.into).wpcf7NotValidTip(n.message);
31
+ });
32
+ ro.addClass('wpcf7-validation-errors');
33
+ }
34
+
35
+ if (data.captcha)
36
+ $(data.into).wpcf7RefillCaptcha(data.captcha);
37
+
38
+ if (data.quiz)
39
+ $(data.into).wpcf7RefillQuiz(data.quiz);
40
+
41
+ if (1 == data.spam)
42
+ ro.addClass('wpcf7-spam-blocked');
43
+
44
+ if (1 == data.mailSent) {
45
+ $(data.into).find('form').resetForm().clearForm();
46
+ ro.addClass('wpcf7-mail-sent-ok');
47
+
48
+ if (data.onSentOk)
49
+ $.each(data.onSentOk, function(i, n) { eval(n) });
50
+ } else {
51
+ ro.addClass('wpcf7-mail-sent-ng');
52
+ }
53
+
54
+ if (data.onSubmit)
55
+ $.each(data.onSubmit, function(i, n) { eval(n) });
56
+
57
+ $(data.into).find('.wpcf7-use-title-as-watermark.watermark').each(function(i, n) {
58
+ $(n).val($(n).attr('title'));
59
+ });
60
+
61
+ ro.append(data.message).slideDown('fast');
62
+ }
63
+ });
64
 
65
+ $('div.wpcf7 > form').each(function(i, n) {
66
+ if (_wpcf7.cached)
67
+ $(n).wpcf7OnloadRefill();
68
+
69
+ $(n).wpcf7ToggleSubmit();
70
+
71
+ $(n).find('.wpcf7-acceptance').click(function() {
72
+ $(n).wpcf7ToggleSubmit();
73
+ });
74
+
75
+ $(n).find('.wpcf7-exclusive-checkbox').each(function(i, n) {
76
+ $(n).find('input:checkbox').click(function() {
77
+ $(n).find('input:checkbox').not(this).removeAttr('checked');
78
+ });
79
+ });
80
+
81
+ $(n).find('.wpcf7-use-title-as-watermark').each(function(i, n) {
82
+ var input = $(n);
83
+ input.val(input.attr('title'));
84
+ input.addClass('watermark');
85
+
86
+ input.focus(function() {
87
+ if ($(this).hasClass('watermark'))
88
+ $(this).val('').removeClass('watermark');
89
+ });
90
+
91
+ input.blur(function() {
92
+ if ('' == $(this).val())
93
+ $(this).val($(this).attr('title')).addClass('watermark');
94
+ });
95
+ });
96
  });
97
+
98
+ } catch (e) {
99
  }
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
100
  });
 
101
 
102
+ $.fn.wpcf7ToggleSubmit = function() {
103
+ return this.each(function() {
104
+ var form = $(this);
105
+ if (this.tagName.toLowerCase() != 'form')
106
+ form = $(this).find('form').first();
107
 
108
+ if (form.hasClass('wpcf7-acceptance-as-validation'))
109
+ return;
110
 
111
+ var submit = form.find('input:submit');
112
+ if (! submit.length) return;
113
 
114
+ var acceptances = form.find('input:checkbox.wpcf7-acceptance');
115
+ if (! acceptances.length) return;
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
116
 
117
+ submit.removeAttr('disabled');
118
+ acceptances.each(function(i, n) {
119
+ n = $(n);
120
+ if (n.hasClass('wpcf7-invert') && n.is(':checked')
121
+ || ! n.hasClass('wpcf7-invert') && ! n.is(':checked'))
122
+ submit.attr('disabled', 'disabled');
123
+ });
124
+ });
125
+ };
126
+
127
+ $.fn.wpcf7NotValidTip = function(message) {
128
+ return this.each(function() {
129
+ var into = $(this);
130
+ into.append('<span class="wpcf7-not-valid-tip">' + message + '</span>');
131
+ $('span.wpcf7-not-valid-tip').mouseover(function() {
132
+ $(this).fadeOut('fast');
133
+ });
134
+ into.find(':input').mouseover(function() {
135
+ into.find('.wpcf7-not-valid-tip').not(':hidden').fadeOut('fast');
136
+ });
137
+ into.find(':input').focus(function() {
138
+ into.find('.wpcf7-not-valid-tip').not(':hidden').fadeOut('fast');
139
+ });
140
+ });
141
+ };
142
+
143
+ $.fn.wpcf7OnloadRefill = function() {
144
+ return this.each(function() {
145
+ var url = $(this).attr('action');
146
+ if (0 < url.indexOf('#'))
147
+ url = url.substr(0, url.indexOf('#'));
148
+
149
+ var id = $(this).find('input[name="_wpcf7"]').val();
150
+ var unitTag = $(this).find('input[name="_wpcf7_unit_tag"]').val();
151
+
152
+ $.getJSON(url,
153
+ { _wpcf7_is_ajax_call: 1, _wpcf7: id },
154
+ function(data) {
155
+ if (data && data.captcha)
156
+ $('#' + unitTag).wpcf7RefillCaptcha(data.captcha);
157
+
158
+ if (data && data.quiz)
159
+ $('#' + unitTag).wpcf7RefillQuiz(data.quiz);
160
+ }
161
+ );
162
+ });
163
+ };
164
 
165
+ $.fn.wpcf7RefillCaptcha = function(captcha) {
166
+ return this.each(function() {
167
+ var form = $(this);
168
+
169
+ $.each(captcha, function(i, n) {
170
+ form.find(':input[name="' + i + '"]').clearFields();
171
+ form.find('img.wpcf7-captcha-' + i).attr('src', n);
172
+ var match = /([0-9]+)\.(png|gif|jpeg)$/.exec(n);
173
+ form.find('input:hidden[name="_wpcf7_captcha_challenge_' + i + '"]').attr('value', match[1]);
174
+ });
175
  });
176
+ };
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
177
 
178
+ $.fn.wpcf7RefillQuiz = function(quiz) {
179
+ return this.each(function() {
180
+ var form = $(this);
181
+
182
+ $.each(quiz, function(i, n) {
183
+ form.find(':input[name="' + i + '"]').clearFields();
184
+ form.find(':input[name="' + i + '"]').siblings('span.wpcf7-quiz-label').text(n[0]);
185
+ form.find('input:hidden[name="_wpcf7_quiz_answer_' + i + '"]').attr('value', n[1]);
186
+ });
187
+ });
188
+ };
189
+
190
+ $.fn.wpcf7ClearResponseOutput = function() {
191
+ return this.each(function() {
192
+ $(this).find('div.wpcf7-response-output').hide().empty().removeClass('wpcf7-mail-sent-ok wpcf7-mail-sent-ng wpcf7-validation-errors wpcf7-spam-blocked');
193
+ $(this).find('span.wpcf7-not-valid-tip').remove();
194
+ $(this).find('img.ajax-loader').css({ visibility: 'hidden' });
195
+ });
196
+ };
197
 
198
+ })(jQuery);
 
 
 
 
styles.css CHANGED
@@ -58,4 +58,8 @@ div.wpcf7 img.ajax-loader {
58
  border: none;
59
  vertical-align: middle;
60
  margin-left: 4px;
 
 
 
 
61
  }
58
  border: none;
59
  vertical-align: middle;
60
  margin-left: 4px;
61
+ }
62
+
63
+ div.wpcf7 .watermark {
64
+ color: #888;
65
  }
wp-contact-form-7.php CHANGED
@@ -5,7 +5,7 @@ Plugin URI: http://contactform7.com/
5
  Description: Just another contact form plugin. Simple but flexible.
6
  Author: Takayuki Miyoshi
7
  Author URI: http://ideasilo.wordpress.com/
8
- Version: 2.3.1
9
  */
10
 
11
  /* Copyright 2007-2010 Takayuki Miyoshi (email: takayukister at gmail.com)
@@ -25,7 +25,7 @@ Version: 2.3.1
25
  Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
26
  */
27
 
28
- define( 'WPCF7_VERSION', '2.3.1' );
29
 
30
  if ( ! defined( 'WPCF7_PLUGIN_BASENAME' ) )
31
  define( 'WPCF7_PLUGIN_BASENAME', plugin_basename( __FILE__ ) );
5
  Description: Just another contact form plugin. Simple but flexible.
6
  Author: Takayuki Miyoshi
7
  Author URI: http://ideasilo.wordpress.com/
8
+ Version: 2.4
9
  */
10
 
11
  /* Copyright 2007-2010 Takayuki Miyoshi (email: takayukister at gmail.com)
25
  Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
26
  */
27
 
28
+ define( 'WPCF7_VERSION', '2.4' );
29
 
30
  if ( ! defined( 'WPCF7_PLUGIN_BASENAME' ) )
31
  define( 'WPCF7_PLUGIN_BASENAME', plugin_basename( __FILE__ ) );