Contact Form by BestWebSoft - Version 3.15

Version Description

  • 22.03.2012 =
  • New : The feature to setup the displaying of the additional information fields in the email was implemented (Sent from (ip address), Date/Time, Coming from (referer), Using (user agent)).
  • Bugfix : The bug of attribute action on element form was fixed.
Download this release

Release Info

Developer bestwebsoft
Plugin Icon 128x128 Contact Form by BestWebSoft
Version 3.15
Comparing to
See all releases

Code changes from version 3.14 to 3.15

contact_form.php CHANGED
@@ -4,7 +4,7 @@ Plugin Name: Contact Form Plugin
4
  Plugin URI: http://bestwebsoft.com/plugin/
5
  Description: Plugin for Contact Form.
6
  Author: BestWebSoft
7
- Version: 3.14
8
  Author URI: http://bestwebsoft.com/
9
  License: GPLv2 or later
10
  */
@@ -125,6 +125,11 @@ if( ! function_exists( 'cntctfrm_settings' ) ) {
125
  'cntctfrm_attachment' => 0,
126
  'cntctfrm_send_copy' => 0,
127
  'cntctfrm_from_field' => get_bloginfo( 'name' ),
 
 
 
 
 
128
  'cntctfrm_change_label' => 0,
129
  'cntctfrm_name_label' => __( "Name:", 'contact_form' ),
130
  'cntctfrm_email_label' => __( "E-Mail Address:", 'contact_form' ),
@@ -159,6 +164,11 @@ if( ! function_exists( 'cntctfrm_settings_page' ) ) {
159
  $cntctfrm_options_submit['cntctfrm_attachment'] = 0;
160
  $cntctfrm_options_submit['cntctfrm_send_copy'] = 0;
161
  $cntctfrm_options_submit['cntctfrm_from_field'] = get_bloginfo( 'name' );
 
 
 
 
 
162
  $cntctfrm_options_submit['cntctfrm_change_label'] = 0;
163
  $cntctfrm_options_submit['cntctfrm_name_label'] = __( "Name:", 'contact_form' );
164
  $cntctfrm_options_submit['cntctfrm_email_label'] = __( "E-Mail Address:", 'contact_form' );
@@ -169,7 +179,20 @@ if( ! function_exists( 'cntctfrm_settings_page' ) ) {
169
  $cntctfrm_options_submit['cntctfrm_attachment'] = isset( $_REQUEST['cntctfrm_attachment']) ? $_REQUEST['cntctfrm_attachment'] : 0;
170
  $cntctfrm_options_submit['cntctfrm_send_copy'] = isset( $_REQUEST['cntctfrm_send_copy']) ? $_REQUEST['cntctfrm_send_copy'] : 0;
171
  $cntctfrm_options_submit['cntctfrm_from_field'] = $_REQUEST['cntctfrm_from_field'];
172
- $cntctfrm_options_submit['cntctfrm_change_label'] = isset( $_REQUEST['cntctfrm_change_label']) ? $_REQUEST['cntctfrm_change_label'] : 0;
 
 
 
 
 
 
 
 
 
 
 
 
 
173
  if( $cntctfrm_options_submit['cntctfrm_change_label'] == 1 ) {
174
  $cntctfrm_options_submit['cntctfrm_name_label'] = isset( $_REQUEST['cntctfrm_name_label']) ? $_REQUEST['cntctfrm_name_label'] : $cntctfrm_options_submit['cntctfrm_name_label'];
175
  $cntctfrm_options_submit['cntctfrm_email_label'] = isset( $_REQUEST['cntctfrm_email_label']) ? $_REQUEST['cntctfrm_email_label'] : $cntctfrm_options_submit['cntctfrm_email_label'];
@@ -268,6 +291,18 @@ if( ! function_exists( 'cntctfrm_settings_page' ) ) {
268
  <input type="text" style="width:200px;" name="cntctfrm_from_field" value="<?php echo $cntctfrm_options['cntctfrm_from_field']; ?>" /><br />
269
  </td>
270
  </tr>
 
 
 
 
 
 
 
 
 
 
 
 
271
  <tr valign="top" class="cntctfrm_additions_block <?php if($cntctfrm_options['cntctfrm_additions_options'] == '0') echo "cntctfrm_hidden"; ?>">
272
  <th scope="row" style="width:195px;"><?php _e( "Change label for fields of the contact form", 'contact_form' ); ?></th>
273
  <td>
@@ -301,6 +336,8 @@ if( ! function_exists( 'cntctfrm_display_form' ) ) {
301
  $content = "";
302
 
303
  $result = "";
 
 
304
  // If contact form submited
305
  $name = isset( $_REQUEST['cntctfrm_contact_name'] ) ? $_REQUEST['cntctfrm_contact_name'] : "";
306
  $email = isset( $_REQUEST['cntctfrm_contact_email'] ) ? $_REQUEST['cntctfrm_contact_email'] : "";
@@ -325,7 +362,7 @@ if( ! function_exists( 'cntctfrm_display_form' ) ) {
325
  else {
326
  $_SESSION['cntctfrm_send_mail'] = false;
327
  // Output form
328
- $content .= '<form method="post" id="cntctfrm_contact_form" action="" enctype="multipart/form-data">';
329
  if( isset( $error_message['error_form'] ) ) {
330
  $content .= '<div style="text-align: left; color: red;">'.$error_message['error_form'].'</div>';
331
  }
@@ -532,11 +569,37 @@ if( ! function_exists( 'cntctfrm_send_mail' ) ) {
532
  $form_action_url = 'http://'.$_SERVER['HTTP_HOST'].$_SERVER['REQUEST_URI'];
533
  }
534
 
535
- $userdomain = gethostbyaddr($_SERVER['REMOTE_ADDR']);
536
- $user_info_string .= __('Sent from (ip address)', 'contact_form').': '.$_SERVER['REMOTE_ADDR']." ( ". $userdomain ." )";
537
- $user_info_string .= __('Date/Time', 'contact_form').': '.date_i18n( get_option( 'date_format' ).' '.get_option( 'time_format' ), time() );
538
- $user_info_string .= __('Coming from (referer)', 'contact_form').': '.$form_action_url;
539
- $user_info_string .= __('Using (user agent)', 'contact_form').': '.cntctfrm_clean_input($_SERVER['HTTP_USER_AGENT']);
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
540
  // message
541
  $message = '
542
  <html>
@@ -563,21 +626,7 @@ if( ! function_exists( 'cntctfrm_send_mail' ) ) {
563
  <tr>
564
  <td><br /></td><td><br /></td>
565
  </tr>
566
- <tr>
567
- <td><br /></td><td><br /></td>
568
- </tr>
569
- <tr>
570
- <td>'.__('Sent from (ip address)', 'contact_form').': </td><td>'.$_SERVER['REMOTE_ADDR']." ( ". $userdomain ." )".'</td>
571
- </tr>
572
- <tr>
573
- <td>'.__('Date/Time', 'contact_form').': </td><td>'.date_i18n( get_option( 'date_format' ).' '.get_option( 'time_format' ), time() ).'</td>
574
- </tr>
575
- <tr>
576
- <td>'.__('Coming from (referer)', 'contact_form').': </td><td>'.$form_action_url.'</td>
577
- </tr>
578
- <tr>
579
- <td>'.__('Using (user agent)', 'contact_form').': </td><td>'.cntctfrm_clean_input( $_SERVER['HTTP_USER_AGENT'] ).'</td>
580
- </tr>
581
  </table>
582
  </body>
583
  </html>
4
  Plugin URI: http://bestwebsoft.com/plugin/
5
  Description: Plugin for Contact Form.
6
  Author: BestWebSoft
7
+ Version: 3.15
8
  Author URI: http://bestwebsoft.com/
9
  License: GPLv2 or later
10
  */
125
  'cntctfrm_attachment' => 0,
126
  'cntctfrm_send_copy' => 0,
127
  'cntctfrm_from_field' => get_bloginfo( 'name' ),
128
+ 'cntctfrm_display_add_info' => 1,
129
+ 'cntctfrm_display_sent_from' => 1,
130
+ 'cntctfrm_display_date_time' => 1,
131
+ 'cntctfrm_display_coming_from' => 1,
132
+ 'cntctfrm_display_user_agent' => 1,
133
  'cntctfrm_change_label' => 0,
134
  'cntctfrm_name_label' => __( "Name:", 'contact_form' ),
135
  'cntctfrm_email_label' => __( "E-Mail Address:", 'contact_form' ),
164
  $cntctfrm_options_submit['cntctfrm_attachment'] = 0;
165
  $cntctfrm_options_submit['cntctfrm_send_copy'] = 0;
166
  $cntctfrm_options_submit['cntctfrm_from_field'] = get_bloginfo( 'name' );
167
+ $cntctfrm_options_submit['cntctfrm_display_add_info'] = 1;
168
+ $cntctfrm_options_submit['cntctfrm_display_sent_from'] = 1;
169
+ $cntctfrm_options_submit['cntctfrm_display_date_time'] = 1;
170
+ $cntctfrm_options_submit['cntctfrm_display_coming_from'] = 1;
171
+ $cntctfrm_options_submit['cntctfrm_display_user_agent'] = 1;
172
  $cntctfrm_options_submit['cntctfrm_change_label'] = 0;
173
  $cntctfrm_options_submit['cntctfrm_name_label'] = __( "Name:", 'contact_form' );
174
  $cntctfrm_options_submit['cntctfrm_email_label'] = __( "E-Mail Address:", 'contact_form' );
179
  $cntctfrm_options_submit['cntctfrm_attachment'] = isset( $_REQUEST['cntctfrm_attachment']) ? $_REQUEST['cntctfrm_attachment'] : 0;
180
  $cntctfrm_options_submit['cntctfrm_send_copy'] = isset( $_REQUEST['cntctfrm_send_copy']) ? $_REQUEST['cntctfrm_send_copy'] : 0;
181
  $cntctfrm_options_submit['cntctfrm_from_field'] = $_REQUEST['cntctfrm_from_field'];
182
+ $cntctfrm_options_submit['cntctfrm_display_add_info'] = isset( $_REQUEST['cntctfrm_display_add_info']) ? 1 : 0;
183
+ $cntctfrm_options_submit['cntctfrm_change_label'] = isset( $_REQUEST['cntctfrm_change_label']) ? 1 : 0;
184
+ if( $cntctfrm_options_submit['cntctfrm_display_add_info'] == 1 ) {
185
+ $cntctfrm_options_submit['cntctfrm_display_sent_from'] = isset( $_REQUEST['cntctfrm_display_sent_from']) ? 1 : 0;
186
+ $cntctfrm_options_submit['cntctfrm_display_date_time'] = isset( $_REQUEST['cntctfrm_display_date_time']) ? 1 : 0;
187
+ $cntctfrm_options_submit['cntctfrm_display_coming_from'] = isset( $_REQUEST['cntctfrm_display_coming_from']) ? 1 : 0;
188
+ $cntctfrm_options_submit['cntctfrm_display_user_agent'] = isset( $_REQUEST['cntctfrm_display_user_agent']) ? 1 : 0;
189
+ }
190
+ else {
191
+ $cntctfrm_options_submit['cntctfrm_display_sent_from'] = 1;
192
+ $cntctfrm_options_submit['cntctfrm_display_date_time'] = 1;
193
+ $cntctfrm_options_submit['cntctfrm_display_coming_from'] = 1;
194
+ $cntctfrm_options_submit['cntctfrm_display_user_agent'] = 1;
195
+ }
196
  if( $cntctfrm_options_submit['cntctfrm_change_label'] == 1 ) {
197
  $cntctfrm_options_submit['cntctfrm_name_label'] = isset( $_REQUEST['cntctfrm_name_label']) ? $_REQUEST['cntctfrm_name_label'] : $cntctfrm_options_submit['cntctfrm_name_label'];
198
  $cntctfrm_options_submit['cntctfrm_email_label'] = isset( $_REQUEST['cntctfrm_email_label']) ? $_REQUEST['cntctfrm_email_label'] : $cntctfrm_options_submit['cntctfrm_email_label'];
291
  <input type="text" style="width:200px;" name="cntctfrm_from_field" value="<?php echo $cntctfrm_options['cntctfrm_from_field']; ?>" /><br />
292
  </td>
293
  </tr>
294
+ <tr valign="top" class="cntctfrm_additions_block <?php if($cntctfrm_options['cntctfrm_additions_options'] == '0') echo "cntctfrm_hidden"; ?>">
295
+ <th scope="row" style="width:195px;"><?php _e( "Display additional info in email", 'contact_form' ); ?></th>
296
+ <td>
297
+ <input type="checkbox" id="cntctfrm_display_add_info" name="cntctfrm_display_add_info" value="1" <?php if($cntctfrm_options['cntctfrm_display_add_info'] == '1') echo "checked=\"checked\" "; ?>/>
298
+ </td>
299
+ <td class="cntctfrm_display_add_info_block <?php if($cntctfrm_options['cntctfrm_display_add_info'] == '0') echo "cntctfrm_hidden"; ?>">
300
+ <input type="checkbox" id="cntctfrm_display_sent_from" name="cntctfrm_display_sent_from" value="1" <?php if($cntctfrm_options['cntctfrm_display_sent_from'] == '1') echo "checked=\"checked\" "; ?>/> <span class="cntctfrm_info"><?php _e( "Sent from (ip address)", 'contact_form' ); ?></span><br />
301
+ <input type="checkbox" id="cntctfrm_display_date_time" name="cntctfrm_display_date_time" value="1" <?php if($cntctfrm_options['cntctfrm_display_date_time'] == '1') echo "checked=\"checked\" "; ?>/> <span class="cntctfrm_info"><?php _e( "Date/Time", 'contact_form' ); ?></span><br />
302
+ <input type="checkbox" id="cntctfrm_display_coming_from" name="cntctfrm_display_coming_from" value="1" <?php if($cntctfrm_options['cntctfrm_display_coming_from'] == '1') echo "checked=\"checked\" "; ?>/> <span class="cntctfrm_info"><?php _e( "Coming from (referer)", 'contact_form' ); ?></span><br />
303
+ <input type="checkbox" id="cntctfrm_display_user_agent" name="cntctfrm_display_user_agent" value="1" <?php if($cntctfrm_options['cntctfrm_display_user_agent'] == '1') echo "checked=\"checked\" "; ?>/> <span class="cntctfrm_info"><?php _e( "Using (user agent)", 'contact_form' ); ?></span><br />
304
+ </td>
305
+ </tr>
306
  <tr valign="top" class="cntctfrm_additions_block <?php if($cntctfrm_options['cntctfrm_additions_options'] == '0') echo "cntctfrm_hidden"; ?>">
307
  <th scope="row" style="width:195px;"><?php _e( "Change label for fields of the contact form", 'contact_form' ); ?></th>
308
  <td>
336
  $content = "";
337
 
338
  $result = "";
339
+
340
+ $page_url = ( isset( $_SERVER["HTTPS"] ) && $_SERVER["HTTPS"] == "on" ? "https://" : "http://" ).$_SERVER["SERVER_NAME"].$_SERVER["REQUEST_URI"];
341
  // If contact form submited
342
  $name = isset( $_REQUEST['cntctfrm_contact_name'] ) ? $_REQUEST['cntctfrm_contact_name'] : "";
343
  $email = isset( $_REQUEST['cntctfrm_contact_email'] ) ? $_REQUEST['cntctfrm_contact_email'] : "";
362
  else {
363
  $_SESSION['cntctfrm_send_mail'] = false;
364
  // Output form
365
+ $content .= '<form method="post" id="cntctfrm_contact_form" action="'.$page_url.'" enctype="multipart/form-data">';
366
  if( isset( $error_message['error_form'] ) ) {
367
  $content .= '<div style="text-align: left; color: red;">'.$error_message['error_form'].'</div>';
368
  }
569
  $form_action_url = 'http://'.$_SERVER['HTTP_HOST'].$_SERVER['REQUEST_URI'];
570
  }
571
 
572
+ if( $cntctfrm_options['cntctfrm_display_add_info'] == 1) {
573
+ $userdomain = gethostbyaddr($_SERVER['REMOTE_ADDR']);
574
+ if( $cntctfrm_options['cntctfrm_display_add_info'] == 1 ||
575
+ $cntctfrm_options['cntctfrm_display_sent_from'] == 1 ||
576
+ $cntctfrm_options['cntctfrm_display_coming_from'] == 1 ||
577
+ $cntctfrm_options['cntctfrm_display_user_agent'] == 1 ) {
578
+ $user_info_string .= '<tr>
579
+ <td><br /></td><td><br /></td>
580
+ </tr>';
581
+ }
582
+ if( $cntctfrm_options['cntctfrm_display_sent_from'] == 1) {
583
+ $user_info_string .= '<tr>
584
+ <td>'.__('Sent from (ip address)', 'contact_form').':</td><td>'.$_SERVER['REMOTE_ADDR']." ( ". $userdomain ." )".'</td>
585
+ </tr>';
586
+ }
587
+ if( $cntctfrm_options['cntctfrm_display_date_time'] == 1) {
588
+ $user_info_string .= '<tr>
589
+ <td>'.__('Date/Time', 'contact_form').':</td><td>'.date_i18n( get_option( 'date_format' ).' '.get_option( 'time_format' ), time() ).'</td>
590
+ </tr>';
591
+ }
592
+ if( $cntctfrm_options['cntctfrm_display_coming_from'] == 1) {
593
+ $user_info_string .= '<tr>
594
+ <td>'.__('Coming from (referer)', 'contact_form').':</td><td>'.$form_action_url.'</td>
595
+ </tr>';
596
+ }
597
+ if( $cntctfrm_options['cntctfrm_display_user_agent'] == 1) {
598
+ $user_info_string .= '<tr>
599
+ <td>'.__('Using (user agent)', 'contact_form').':</td><td>'.cntctfrm_clean_input($_SERVER['HTTP_USER_AGENT']).'</td>
600
+ </tr>';
601
+ }
602
+ }
603
  // message
604
  $message = '
605
  <html>
626
  <tr>
627
  <td><br /></td><td><br /></td>
628
  </tr>
629
+ '.$user_info_string.'
 
 
 
 
 
 
 
 
 
 
 
 
 
 
630
  </table>
631
  </body>
632
  </html>
css/style.css CHANGED
@@ -67,4 +67,8 @@
67
  .textwidget #cntctfrm_contact_email,
68
  .textwidget #cntctfrm_contact_subject{
69
  width: 200px !important;
 
 
 
 
70
  }
67
  .textwidget #cntctfrm_contact_email,
68
  .textwidget #cntctfrm_contact_subject{
69
  width: 200px !important;
70
+ }
71
+
72
+ .form-table td.cntctfrm_display_add_info_block {
73
+ padding:4px 10px 8px;
74
  }
js/script.js CHANGED
@@ -11,4 +11,10 @@ jQuery(document).ready(function(){
11
  else
12
  jQuery('.cntctfrm_change_label_block').addClass('cntctfrm_hidden');
13
  });
 
 
 
 
 
 
14
  });
11
  else
12
  jQuery('.cntctfrm_change_label_block').addClass('cntctfrm_hidden');
13
  });
14
+ jQuery('#cntctfrm_display_add_info').change( function() {
15
+ if(jQuery(this).is(':checked') )
16
+ jQuery('.cntctfrm_display_add_info_block').removeClass('cntctfrm_hidden');
17
+ else
18
+ jQuery('.cntctfrm_display_add_info_block').addClass('cntctfrm_hidden');
19
+ });
20
  });
languages/contact_form-bg_BG.mo CHANGED
Binary file
languages/contact_form-bg_BG.po CHANGED
@@ -2,8 +2,8 @@ msgid ""
2
  msgstr ""
3
  "Project-Id-Version: contact_form\n"
4
  "Report-Msgid-Bugs-To: \n"
5
- "POT-Creation-Date: 2012-03-20 20:00+0200\n"
6
- "PO-Revision-Date: 2012-03-20 20:00+0200\n"
7
  "Last-Translator: BWS <zos@bestwebsoft.com>\n"
8
  "Language-Team: bestwebsoft.com <plugin@bestwebsoft.com>\n"
9
  "MIME-Version: 1.0\n"
@@ -27,8 +27,8 @@ msgid "Read more"
27
  msgstr "Прочетете повече"
28
 
29
  #: contact_form.php:78
30
- #: contact_form.php:611
31
- #: contact_form.php:620
32
  msgid "Settings"
33
  msgstr "Настройки"
34
 
@@ -58,7 +58,7 @@ msgid "If you have any questions, please contact us via plugin@bestwebsoft.com o
58
  msgstr "Ако имате някакви въпроси, моля свържете с нас чрез plugin@bestwebsoft.com или попълнете нашата форма за контакти на нашия сайт"
59
 
60
  #: contact_form.php:108
61
- #: contact_form.php:213
62
  msgid "Contact Form Options"
63
  msgstr "Настройки на Формата за контакт"
64
 
@@ -66,207 +66,211 @@ msgstr "Настройки на Формата за контакт"
66
  msgid "Contact Form"
67
  msgstr "Форма за контакт"
68
 
69
- #: contact_form.php:129
70
- #: contact_form.php:163
71
- #: contact_form.php:181
72
- #: contact_form.php:277
73
  msgid "Name:"
74
  msgstr "Име:"
75
 
76
- #: contact_form.php:130
77
- #: contact_form.php:164
78
- #: contact_form.php:182
79
- #: contact_form.php:278
80
  msgid "E-Mail Address:"
81
  msgstr "E-mail адрес:"
82
 
83
- #: contact_form.php:131
84
- #: contact_form.php:165
85
- #: contact_form.php:183
86
- #: contact_form.php:279
87
  msgid "Subject:"
88
  msgstr "Тема:"
89
 
90
- #: contact_form.php:132
91
- #: contact_form.php:166
92
- #: contact_form.php:184
93
- #: contact_form.php:280
94
  msgid "Message:"
95
  msgstr "Съобщение:"
96
 
97
- #: contact_form.php:133
98
- #: contact_form.php:167
99
- #: contact_form.php:185
100
- #: contact_form.php:281
101
  msgid "Attachment:"
102
  msgstr "Прикачване на файл:"
103
 
104
- #: contact_form.php:193
105
- #: contact_form.php:202
106
  msgid "Options saved."
107
  msgstr "Опциите са запазени"
108
 
109
- #: contact_form.php:196
110
  msgid "Such user is not exist. Settings are not saved."
111
  msgstr "Не са намерени данни за потребителя. Настройките не са запазени"
112
 
113
- #: contact_form.php:205
114
  msgid "Please input correct email. Settings are not saved."
115
  msgstr "Моля, въведете коректен Email. Настройките не са запазени."
116
 
117
- #: contact_form.php:218
118
  msgid "If you would like to add a Contact Form to your website, just copy and put this shortcode onto your post or page or widget:"
119
  msgstr "Ако искате да добавите формата за контакт на своят сайт копирайте и поставете този код в страницата или публикацията или джаджа:"
120
 
121
- #: contact_form.php:219
122
  msgid "If information in the below fields are empty then the message will be send to an address which was specified during registration."
123
  msgstr "Ако посочените по-долу полета не са попълнени, съобщението ще бъде изпратено на Email адрес, който е определен по време на регистрацията"
124
 
125
- #: contact_form.php:223
126
  msgid "Use email of wordpress user:"
127
  msgstr "Използвайте Email на Wordpress потребител:"
128
 
129
- #: contact_form.php:229
130
  msgid "Select user name"
131
  msgstr "Избиране на потребител"
132
 
133
- #: contact_form.php:234
134
  msgid "Set a name of user who will get messages from a contact form."
135
  msgstr "Задайте името на потребителя, който ще получава съобщенията от формата за контакт."
136
 
137
- #: contact_form.php:238
138
  msgid "Use this email:"
139
  msgstr "Използвайте този Email:"
140
 
141
- #: contact_form.php:244
142
  msgid "Set an email address which will be used for messages receiving."
143
  msgstr "Задаване на Email адрес, който ще се използва за получаване на съобщения."
144
 
145
- #: contact_form.php:248
146
  msgid "Additional options"
147
  msgstr "Допълнителни настройки"
148
 
149
- #: contact_form.php:251
150
  msgid "Display Attachment block"
151
  msgstr "Покажи опция за прикачване на файл"
152
 
153
- #: contact_form.php:256
154
  msgid "Users can attach files of the following types"
155
  msgstr "Потребителите могат да прикачват файлове от следните видове"
156
 
157
- #: contact_form.php:260
158
  msgid "Display Send me a copy block"
159
  msgstr "Показване на опция за изпращане на копие"
160
 
161
- #: contact_form.php:266
162
  msgid "Change FROM fields of the contact form"
163
  msgstr "Промяна от полета на формата за контакт"
164
 
165
- #: contact_form.php:272
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
166
  msgid "Change label for fields of the contact form"
167
  msgstr "Промяна на етикетите за полета във формата за контакт"
168
 
169
- #: contact_form.php:287
170
  msgid "Save Changes"
171
  msgstr "Запис на промените"
172
 
173
- #: contact_form.php:318
174
  msgid "Thank you for contacting us."
175
  msgstr "Благодарим Ви, че се свързахте с нас."
176
 
177
- #: contact_form.php:323
178
  msgid "Sorry, your e-mail could not be delivered."
179
  msgstr "Съжаляваме, Вашето съобщение не може да бъде изпратено."
180
 
181
- #: contact_form.php:380
182
  msgid "You can attach files of the following types"
183
  msgstr "Можете да прикачвате файлове от следните типове"
184
 
185
- #: contact_form.php:386
186
  msgid "Send me a copy"
187
  msgstr "Изпрати ми копие"
188
 
189
- #: contact_form.php:396
190
  msgid "Submit"
191
  msgstr "Изпрати"
192
 
193
- #: contact_form.php:412
194
  msgid "Your name is required."
195
  msgstr "Вашето име е задължително."
196
 
197
- #: contact_form.php:413
198
  msgid "A proper e-mail address is required."
199
  msgstr "Правилният Email адрес е задължителен."
200
 
201
- #: contact_form.php:414
202
  msgid "Subject text is required."
203
  msgstr "Заглавието е задължитено."
204
 
205
- #: contact_form.php:415
206
  msgid "Message text is required."
207
  msgstr "Текстовото съобщение е задължително."
208
 
209
- #: contact_form.php:416
210
  msgid "Please make corrections below and try again."
211
  msgstr "Моля направете необходимите корекции по-долу и опитайте отново."
212
 
213
- #: contact_form.php:447
214
  msgid "Attachment is broken."
215
  msgstr "Прикаченият файл не се поддържа"
216
 
217
- #: contact_form.php:460
218
  msgid "Please complete the CAPTCHA."
219
  msgstr "Моля попълнете CAPTCHA."
220
 
221
- #: contact_form.php:536
222
- #: contact_form.php:570
223
- msgid "Sent from (ip address)"
224
- msgstr "Изпратено от (ip адрес)"
225
-
226
- #: contact_form.php:537
227
- #: contact_form.php:573
228
- msgid "Date/Time"
229
- msgstr "Дата/Час"
230
-
231
- #: contact_form.php:538
232
- #: contact_form.php:576
233
- msgid "Coming from (referer)"
234
- msgstr "Идва от (referer)"
235
-
236
- #: contact_form.php:539
237
- #: contact_form.php:579
238
- msgid "Using (user agent)"
239
- msgstr "Използвайки (user agent)"
240
-
241
- #: contact_form.php:544
242
  msgid "Contact from"
243
  msgstr "Форма за контакт"
244
 
245
- #: contact_form.php:549
246
  msgid "Name"
247
  msgstr "Име"
248
 
249
- #: contact_form.php:552
250
  msgid "Email"
251
  msgstr "Email"
252
 
253
- #: contact_form.php:555
254
  msgid "Subject"
255
  msgstr "Относно"
256
 
257
- #: contact_form.php:558
258
  msgid "Message"
259
  msgstr "Съобщение"
260
 
261
- #: contact_form.php:561
262
  msgid "Site"
263
  msgstr "Сайт"
264
 
265
- #: contact_form.php:621
266
  msgid "FAQ"
267
  msgstr "FAQ"
268
 
269
- #: contact_form.php:622
270
  msgid "Support"
271
  msgstr "Поддръжка"
272
 
2
  msgstr ""
3
  "Project-Id-Version: contact_form\n"
4
  "Report-Msgid-Bugs-To: \n"
5
+ "POT-Creation-Date: 2012-03-22 12:55+0200\n"
6
+ "PO-Revision-Date: 2012-03-22 12:55+0200\n"
7
  "Last-Translator: BWS <zos@bestwebsoft.com>\n"
8
  "Language-Team: bestwebsoft.com <plugin@bestwebsoft.com>\n"
9
  "MIME-Version: 1.0\n"
27
  msgstr "Прочетете повече"
28
 
29
  #: contact_form.php:78
30
+ #: contact_form.php:660
31
+ #: contact_form.php:669
32
  msgid "Settings"
33
  msgstr "Настройки"
34
 
58
  msgstr "Ако имате някакви въпроси, моля свържете с нас чрез plugin@bestwebsoft.com или попълнете нашата форма за контакти на нашия сайт"
59
 
60
  #: contact_form.php:108
61
+ #: contact_form.php:236
62
  msgid "Contact Form Options"
63
  msgstr "Настройки на Формата за контакт"
64
 
66
  msgid "Contact Form"
67
  msgstr "Форма за контакт"
68
 
69
+ #: contact_form.php:134
70
+ #: contact_form.php:173
71
+ #: contact_form.php:204
72
+ #: contact_form.php:312
73
  msgid "Name:"
74
  msgstr "Име:"
75
 
76
+ #: contact_form.php:135
77
+ #: contact_form.php:174
78
+ #: contact_form.php:205
79
+ #: contact_form.php:313
80
  msgid "E-Mail Address:"
81
  msgstr "E-mail адрес:"
82
 
83
+ #: contact_form.php:136
84
+ #: contact_form.php:175
85
+ #: contact_form.php:206
86
+ #: contact_form.php:314
87
  msgid "Subject:"
88
  msgstr "Тема:"
89
 
90
+ #: contact_form.php:137
91
+ #: contact_form.php:176
92
+ #: contact_form.php:207
93
+ #: contact_form.php:315
94
  msgid "Message:"
95
  msgstr "Съобщение:"
96
 
97
+ #: contact_form.php:138
98
+ #: contact_form.php:177
99
+ #: contact_form.php:208
100
+ #: contact_form.php:316
101
  msgid "Attachment:"
102
  msgstr "Прикачване на файл:"
103
 
104
+ #: contact_form.php:216
105
+ #: contact_form.php:225
106
  msgid "Options saved."
107
  msgstr "Опциите са запазени"
108
 
109
+ #: contact_form.php:219
110
  msgid "Such user is not exist. Settings are not saved."
111
  msgstr "Не са намерени данни за потребителя. Настройките не са запазени"
112
 
113
+ #: contact_form.php:228
114
  msgid "Please input correct email. Settings are not saved."
115
  msgstr "Моля, въведете коректен Email. Настройките не са запазени."
116
 
117
+ #: contact_form.php:241
118
  msgid "If you would like to add a Contact Form to your website, just copy and put this shortcode onto your post or page or widget:"
119
  msgstr "Ако искате да добавите формата за контакт на своят сайт копирайте и поставете този код в страницата или публикацията или джаджа:"
120
 
121
+ #: contact_form.php:242
122
  msgid "If information in the below fields are empty then the message will be send to an address which was specified during registration."
123
  msgstr "Ако посочените по-долу полета не са попълнени, съобщението ще бъде изпратено на Email адрес, който е определен по време на регистрацията"
124
 
125
+ #: contact_form.php:246
126
  msgid "Use email of wordpress user:"
127
  msgstr "Използвайте Email на Wordpress потребител:"
128
 
129
+ #: contact_form.php:252
130
  msgid "Select user name"
131
  msgstr "Избиране на потребител"
132
 
133
+ #: contact_form.php:257
134
  msgid "Set a name of user who will get messages from a contact form."
135
  msgstr "Задайте името на потребителя, който ще получава съобщенията от формата за контакт."
136
 
137
+ #: contact_form.php:261
138
  msgid "Use this email:"
139
  msgstr "Използвайте този Email:"
140
 
141
+ #: contact_form.php:267
142
  msgid "Set an email address which will be used for messages receiving."
143
  msgstr "Задаване на Email адрес, който ще се използва за получаване на съобщения."
144
 
145
+ #: contact_form.php:271
146
  msgid "Additional options"
147
  msgstr "Допълнителни настройки"
148
 
149
+ #: contact_form.php:274
150
  msgid "Display Attachment block"
151
  msgstr "Покажи опция за прикачване на файл"
152
 
153
+ #: contact_form.php:279
154
  msgid "Users can attach files of the following types"
155
  msgstr "Потребителите могат да прикачват файлове от следните видове"
156
 
157
+ #: contact_form.php:283
158
  msgid "Display Send me a copy block"
159
  msgstr "Показване на опция за изпращане на копие"
160
 
161
+ #: contact_form.php:289
162
  msgid "Change FROM fields of the contact form"
163
  msgstr "Промяна от полета на формата за контакт"
164
 
165
+ #: contact_form.php:295
166
+ msgid "Display additional info in email"
167
+ msgstr ""
168
+
169
+ #: contact_form.php:300
170
+ #: contact_form.php:584
171
+ msgid "Sent from (ip address)"
172
+ msgstr "Изпратено от (ip адрес)"
173
+
174
+ #: contact_form.php:301
175
+ #: contact_form.php:589
176
+ msgid "Date/Time"
177
+ msgstr "Дата/Час"
178
+
179
+ #: contact_form.php:302
180
+ #: contact_form.php:594
181
+ msgid "Coming from (referer)"
182
+ msgstr "Идва от (referer)"
183
+
184
+ #: contact_form.php:303
185
+ #: contact_form.php:599
186
+ msgid "Using (user agent)"
187
+ msgstr "Използвайки (user agent)"
188
+
189
+ #: contact_form.php:307
190
  msgid "Change label for fields of the contact form"
191
  msgstr "Промяна на етикетите за полета във формата за контакт"
192
 
193
+ #: contact_form.php:322
194
  msgid "Save Changes"
195
  msgstr "Запис на промените"
196
 
197
+ #: contact_form.php:355
198
  msgid "Thank you for contacting us."
199
  msgstr "Благодарим Ви, че се свързахте с нас."
200
 
201
+ #: contact_form.php:360
202
  msgid "Sorry, your e-mail could not be delivered."
203
  msgstr "Съжаляваме, Вашето съобщение не може да бъде изпратено."
204
 
205
+ #: contact_form.php:417
206
  msgid "You can attach files of the following types"
207
  msgstr "Можете да прикачвате файлове от следните типове"
208
 
209
+ #: contact_form.php:423
210
  msgid "Send me a copy"
211
  msgstr "Изпрати ми копие"
212
 
213
+ #: contact_form.php:433
214
  msgid "Submit"
215
  msgstr "Изпрати"
216
 
217
+ #: contact_form.php:449
218
  msgid "Your name is required."
219
  msgstr "Вашето име е задължително."
220
 
221
+ #: contact_form.php:450
222
  msgid "A proper e-mail address is required."
223
  msgstr "Правилният Email адрес е задължителен."
224
 
225
+ #: contact_form.php:451
226
  msgid "Subject text is required."
227
  msgstr "Заглавието е задължитено."
228
 
229
+ #: contact_form.php:452
230
  msgid "Message text is required."
231
  msgstr "Текстовото съобщение е задължително."
232
 
233
+ #: contact_form.php:453
234
  msgid "Please make corrections below and try again."
235
  msgstr "Моля направете необходимите корекции по-долу и опитайте отново."
236
 
237
+ #: contact_form.php:484
238
  msgid "Attachment is broken."
239
  msgstr "Прикаченият файл не се поддържа"
240
 
241
+ #: contact_form.php:497
242
  msgid "Please complete the CAPTCHA."
243
  msgstr "Моля попълнете CAPTCHA."
244
 
245
+ #: contact_form.php:607
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
246
  msgid "Contact from"
247
  msgstr "Форма за контакт"
248
 
249
+ #: contact_form.php:612
250
  msgid "Name"
251
  msgstr "Име"
252
 
253
+ #: contact_form.php:615
254
  msgid "Email"
255
  msgstr "Email"
256
 
257
+ #: contact_form.php:618
258
  msgid "Subject"
259
  msgstr "Относно"
260
 
261
+ #: contact_form.php:621
262
  msgid "Message"
263
  msgstr "Съобщение"
264
 
265
+ #: contact_form.php:624
266
  msgid "Site"
267
  msgstr "Сайт"
268
 
269
+ #: contact_form.php:670
270
  msgid "FAQ"
271
  msgstr "FAQ"
272
 
273
+ #: contact_form.php:671
274
  msgid "Support"
275
  msgstr "Поддръжка"
276
 
languages/contact_form-de_DE.mo CHANGED
Binary file
languages/contact_form-de_DE.po CHANGED
@@ -2,8 +2,8 @@ msgid ""
2
  msgstr ""
3
  "Project-Id-Version: contact_form\n"
4
  "Report-Msgid-Bugs-To: \n"
5
- "POT-Creation-Date: 2012-03-20 19:58+0200\n"
6
- "PO-Revision-Date: 2012-03-20 19:59+0200\n"
7
  "Last-Translator: BWS <zos@bestwebsoft.com>\n"
8
  "Language-Team: Thomas Hartung <thartung@adipositas-mm.de>\n"
9
  "MIME-Version: 1.0\n"
@@ -27,8 +27,8 @@ msgid "Read more"
27
  msgstr "Lesen Sie mehr"
28
 
29
  #: contact_form.php:78
30
- #: contact_form.php:611
31
- #: contact_form.php:620
32
  msgid "Settings"
33
  msgstr "Einstellungen"
34
 
@@ -58,7 +58,7 @@ msgid "If you have any questions, please contact us via plugin@bestwebsoft.com o
58
  msgstr "Bei Fragen wenden Sie sich an plugin@bestwebsoft.com oder füllen Sie das Kontakformular auf unserer Webseite aus"
59
 
60
  #: contact_form.php:108
61
- #: contact_form.php:213
62
  msgid "Contact Form Options"
63
  msgstr "Contact Form Einstellungen"
64
 
@@ -66,207 +66,211 @@ msgstr "Contact Form Einstellungen"
66
  msgid "Contact Form"
67
  msgstr "Contact Form"
68
 
69
- #: contact_form.php:129
70
- #: contact_form.php:163
71
- #: contact_form.php:181
72
- #: contact_form.php:277
73
  msgid "Name:"
74
  msgstr "Name:"
75
 
76
- #: contact_form.php:130
77
- #: contact_form.php:164
78
- #: contact_form.php:182
79
- #: contact_form.php:278
80
  msgid "E-Mail Address:"
81
  msgstr "E-Mail-Adresse:"
82
 
83
- #: contact_form.php:131
84
- #: contact_form.php:165
85
- #: contact_form.php:183
86
- #: contact_form.php:279
87
  msgid "Subject:"
88
  msgstr "Betreff:"
89
 
90
- #: contact_form.php:132
91
- #: contact_form.php:166
92
- #: contact_form.php:184
93
- #: contact_form.php:280
94
  msgid "Message:"
95
  msgstr "Nachricht:"
96
 
97
- #: contact_form.php:133
98
- #: contact_form.php:167
99
- #: contact_form.php:185
100
- #: contact_form.php:281
101
  msgid "Attachment:"
102
  msgstr "Anhang:"
103
 
104
- #: contact_form.php:193
105
- #: contact_form.php:202
106
  msgid "Options saved."
107
  msgstr "Einstellungen gespeichert."
108
 
109
- #: contact_form.php:196
110
  msgid "Such user is not exist. Settings are not saved."
111
  msgstr "Dieser Benutzer existiert nicht. Einstellungen nicht gespeichert."
112
 
113
- #: contact_form.php:205
114
  msgid "Please input correct email. Settings are not saved."
115
  msgstr "Bitte geben Sie eine korrekte E-Mail-Adresse ein. Einstellungen nicht gespeichert."
116
 
117
- #: contact_form.php:218
118
  msgid "If you would like to add a Contact Form to your website, just copy and put this shortcode onto your post or page or widget:"
119
  msgstr "Wenn Sie Contact Form in Ihrer Webpräsenz verwenden wollen, kopieren Sie einfach folgenden shortcode auf Ihre Seite oder Ihren Artikel oder widget:"
120
 
121
- #: contact_form.php:219
122
  msgid "If information in the below fields are empty then the message will be send to an address which was specified during registration."
123
  msgstr "Wenn das folgende Feld leer bleibt wird die Nachricht an die Adresse gesandt, die bei der Registrierung angegeben wurde."
124
 
125
- #: contact_form.php:223
126
  msgid "Use email of wordpress user:"
127
  msgstr "Benutze die E-Mail-Adresse von WordPress-Benutzer:"
128
 
129
- #: contact_form.php:229
130
  msgid "Select user name"
131
  msgstr "Wähle Benutzer"
132
 
133
- #: contact_form.php:234
134
  msgid "Set a name of user who will get messages from a contact form."
135
  msgstr "Definieren Sie die Benutzer, die Nachrichten von Contact Form bekommen sollen."
136
 
137
- #: contact_form.php:238
138
  msgid "Use this email:"
139
  msgstr "Verwende diese E-Mail-Adresse:"
140
 
141
- #: contact_form.php:244
142
  msgid "Set an email address which will be used for messages receiving."
143
  msgstr "Definieren Sie die E-Mail-Adresse, die Contact Form verwenden soll."
144
 
145
- #: contact_form.php:248
146
  msgid "Additional options"
147
  msgstr "Erweiterte Optionen"
148
 
149
- #: contact_form.php:251
150
  msgid "Display Attachment block"
151
  msgstr "Anhänge erlauben"
152
 
153
- #: contact_form.php:256
154
  msgid "Users can attach files of the following types"
155
  msgstr "Benutzer können folgende Dateitypen anhängen"
156
 
157
- #: contact_form.php:260
158
  msgid "Display Send me a copy block"
159
  msgstr "Kopie-an-mich anzeigen"
160
 
161
- #: contact_form.php:266
162
  msgid "Change FROM fields of the contact form"
163
  msgstr "Veränderung gegenüber Felder des Kontaktformulars"
164
 
165
- #: contact_form.php:272
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
166
  msgid "Change label for fields of the contact form"
167
  msgstr "Ändern Sie die Bezeichnung der Felder des Kontaktformulars"
168
 
169
- #: contact_form.php:287
170
  msgid "Save Changes"
171
  msgstr "Änderungen speichern"
172
 
173
- #: contact_form.php:318
174
  msgid "Thank you for contacting us."
175
  msgstr "Danke für Ihre Nachricht."
176
 
177
- #: contact_form.php:323
178
  msgid "Sorry, your e-mail could not be delivered."
179
  msgstr "Entschuldigung, Ihre E-Mail konnte leider nicht zugestellt werden."
180
 
181
- #: contact_form.php:380
182
  msgid "You can attach files of the following types"
183
  msgstr "Sie können folgende Dateitypen anhängen"
184
 
185
- #: contact_form.php:386
186
  msgid "Send me a copy"
187
  msgstr "Kopie an mich senden"
188
 
189
- #: contact_form.php:396
190
  msgid "Submit"
191
  msgstr "senden"
192
 
193
- #: contact_form.php:412
194
  msgid "Your name is required."
195
  msgstr "Ihr Name wird benötigt"
196
 
197
- #: contact_form.php:413
198
  msgid "A proper e-mail address is required."
199
  msgstr "Eine korrekte E-Mail-Adresse ist zwingend."
200
 
201
- #: contact_form.php:414
202
  msgid "Subject text is required."
203
  msgstr "Bitte geben Sie einen Betreff ein."
204
 
205
- #: contact_form.php:415
206
  msgid "Message text is required."
207
  msgstr "Bitte geben Sie eine Nachricht ein."
208
 
209
- #: contact_form.php:416
210
  msgid "Please make corrections below and try again."
211
  msgstr "Bitte führen Sie die Korrekturen unten durch und versuchen Sie es erneut."
212
 
213
- #: contact_form.php:447
214
  msgid "Attachment is broken."
215
  msgstr "Anhang scheint defekt zu sein."
216
 
217
- #: contact_form.php:460
218
  msgid "Please complete the CAPTCHA."
219
  msgstr "Bitte ergänzen Sie das CAPTCHA."
220
 
221
- #: contact_form.php:536
222
- #: contact_form.php:570
223
- msgid "Sent from (ip address)"
224
- msgstr "Gesendet von (IP-Adresse)"
225
-
226
- #: contact_form.php:537
227
- #: contact_form.php:573
228
- msgid "Date/Time"
229
- msgstr "Datum / Uhrzeit"
230
-
231
- #: contact_form.php:538
232
- #: contact_form.php:576
233
- msgid "Coming from (referer)"
234
- msgstr "gesendet von (referer)"
235
-
236
- #: contact_form.php:539
237
- #: contact_form.php:579
238
- msgid "Using (user agent)"
239
- msgstr "mit (user agent)"
240
-
241
- #: contact_form.php:544
242
  msgid "Contact from"
243
  msgstr "Kontakt von"
244
 
245
- #: contact_form.php:549
246
  msgid "Name"
247
  msgstr "Nome"
248
 
249
- #: contact_form.php:552
250
  msgid "Email"
251
  msgstr "E-Mail"
252
 
253
- #: contact_form.php:555
254
  msgid "Subject"
255
  msgstr "Betreff"
256
 
257
- #: contact_form.php:558
258
  msgid "Message"
259
  msgstr "Nachricht"
260
 
261
- #: contact_form.php:561
262
  msgid "Site"
263
  msgstr "Site"
264
 
265
- #: contact_form.php:621
266
  msgid "FAQ"
267
  msgstr "Häufig gestellte Fragen (FAQ)"
268
 
269
- #: contact_form.php:622
270
  msgid "Support"
271
  msgstr "Unterstützung"
272
 
2
  msgstr ""
3
  "Project-Id-Version: contact_form\n"
4
  "Report-Msgid-Bugs-To: \n"
5
+ "POT-Creation-Date: 2012-03-22 12:55+0200\n"
6
+ "PO-Revision-Date: 2012-03-22 12:55+0200\n"
7
  "Last-Translator: BWS <zos@bestwebsoft.com>\n"
8
  "Language-Team: Thomas Hartung <thartung@adipositas-mm.de>\n"
9
  "MIME-Version: 1.0\n"
27
  msgstr "Lesen Sie mehr"
28
 
29
  #: contact_form.php:78
30
+ #: contact_form.php:660
31
+ #: contact_form.php:669
32
  msgid "Settings"
33
  msgstr "Einstellungen"
34
 
58
  msgstr "Bei Fragen wenden Sie sich an plugin@bestwebsoft.com oder füllen Sie das Kontakformular auf unserer Webseite aus"
59
 
60
  #: contact_form.php:108
61
+ #: contact_form.php:236
62
  msgid "Contact Form Options"
63
  msgstr "Contact Form Einstellungen"
64
 
66
  msgid "Contact Form"
67
  msgstr "Contact Form"
68
 
69
+ #: contact_form.php:134
70
+ #: contact_form.php:173
71
+ #: contact_form.php:204
72
+ #: contact_form.php:312
73
  msgid "Name:"
74
  msgstr "Name:"
75
 
76
+ #: contact_form.php:135
77
+ #: contact_form.php:174
78
+ #: contact_form.php:205
79
+ #: contact_form.php:313
80
  msgid "E-Mail Address:"
81
  msgstr "E-Mail-Adresse:"
82
 
83
+ #: contact_form.php:136
84
+ #: contact_form.php:175
85
+ #: contact_form.php:206
86
+ #: contact_form.php:314
87
  msgid "Subject:"
88
  msgstr "Betreff:"
89
 
90
+ #: contact_form.php:137
91
+ #: contact_form.php:176
92
+ #: contact_form.php:207
93
+ #: contact_form.php:315
94
  msgid "Message:"
95
  msgstr "Nachricht:"
96
 
97
+ #: contact_form.php:138
98
+ #: contact_form.php:177
99
+ #: contact_form.php:208
100
+ #: contact_form.php:316
101
  msgid "Attachment:"
102
  msgstr "Anhang:"
103
 
104
+ #: contact_form.php:216
105
+ #: contact_form.php:225
106
  msgid "Options saved."
107
  msgstr "Einstellungen gespeichert."
108
 
109
+ #: contact_form.php:219
110
  msgid "Such user is not exist. Settings are not saved."
111
  msgstr "Dieser Benutzer existiert nicht. Einstellungen nicht gespeichert."
112
 
113
+ #: contact_form.php:228
114
  msgid "Please input correct email. Settings are not saved."
115
  msgstr "Bitte geben Sie eine korrekte E-Mail-Adresse ein. Einstellungen nicht gespeichert."
116
 
117
+ #: contact_form.php:241
118
  msgid "If you would like to add a Contact Form to your website, just copy and put this shortcode onto your post or page or widget:"
119
  msgstr "Wenn Sie Contact Form in Ihrer Webpräsenz verwenden wollen, kopieren Sie einfach folgenden shortcode auf Ihre Seite oder Ihren Artikel oder widget:"
120
 
121
+ #: contact_form.php:242
122
  msgid "If information in the below fields are empty then the message will be send to an address which was specified during registration."
123
  msgstr "Wenn das folgende Feld leer bleibt wird die Nachricht an die Adresse gesandt, die bei der Registrierung angegeben wurde."
124
 
125
+ #: contact_form.php:246
126
  msgid "Use email of wordpress user:"
127
  msgstr "Benutze die E-Mail-Adresse von WordPress-Benutzer:"
128
 
129
+ #: contact_form.php:252
130
  msgid "Select user name"
131
  msgstr "Wähle Benutzer"
132
 
133
+ #: contact_form.php:257
134
  msgid "Set a name of user who will get messages from a contact form."
135
  msgstr "Definieren Sie die Benutzer, die Nachrichten von Contact Form bekommen sollen."
136
 
137
+ #: contact_form.php:261
138
  msgid "Use this email:"
139
  msgstr "Verwende diese E-Mail-Adresse:"
140
 
141
+ #: contact_form.php:267
142
  msgid "Set an email address which will be used for messages receiving."
143
  msgstr "Definieren Sie die E-Mail-Adresse, die Contact Form verwenden soll."
144
 
145
+ #: contact_form.php:271
146
  msgid "Additional options"
147
  msgstr "Erweiterte Optionen"
148
 
149
+ #: contact_form.php:274
150
  msgid "Display Attachment block"
151
  msgstr "Anhänge erlauben"
152
 
153
+ #: contact_form.php:279
154
  msgid "Users can attach files of the following types"
155
  msgstr "Benutzer können folgende Dateitypen anhängen"
156
 
157
+ #: contact_form.php:283
158
  msgid "Display Send me a copy block"
159
  msgstr "Kopie-an-mich anzeigen"
160
 
161
+ #: contact_form.php:289
162
  msgid "Change FROM fields of the contact form"
163
  msgstr "Veränderung gegenüber Felder des Kontaktformulars"
164
 
165
+ #: contact_form.php:295
166
+ msgid "Display additional info in email"
167
+ msgstr ""
168
+
169
+ #: contact_form.php:300
170
+ #: contact_form.php:584
171
+ msgid "Sent from (ip address)"
172
+ msgstr "Gesendet von (IP-Adresse)"
173
+
174
+ #: contact_form.php:301
175
+ #: contact_form.php:589
176
+ msgid "Date/Time"
177
+ msgstr "Datum / Uhrzeit"
178
+
179
+ #: contact_form.php:302
180
+ #: contact_form.php:594
181
+ msgid "Coming from (referer)"
182
+ msgstr "gesendet von (referer)"
183
+
184
+ #: contact_form.php:303
185
+ #: contact_form.php:599
186
+ msgid "Using (user agent)"
187
+ msgstr "mit (user agent)"
188
+
189
+ #: contact_form.php:307
190
  msgid "Change label for fields of the contact form"
191
  msgstr "Ändern Sie die Bezeichnung der Felder des Kontaktformulars"
192
 
193
+ #: contact_form.php:322
194
  msgid "Save Changes"
195
  msgstr "Änderungen speichern"
196
 
197
+ #: contact_form.php:355
198
  msgid "Thank you for contacting us."
199
  msgstr "Danke für Ihre Nachricht."
200
 
201
+ #: contact_form.php:360
202
  msgid "Sorry, your e-mail could not be delivered."
203
  msgstr "Entschuldigung, Ihre E-Mail konnte leider nicht zugestellt werden."
204
 
205
+ #: contact_form.php:417
206
  msgid "You can attach files of the following types"
207
  msgstr "Sie können folgende Dateitypen anhängen"
208
 
209
+ #: contact_form.php:423
210
  msgid "Send me a copy"
211
  msgstr "Kopie an mich senden"
212
 
213
+ #: contact_form.php:433
214
  msgid "Submit"
215
  msgstr "senden"
216
 
217
+ #: contact_form.php:449
218
  msgid "Your name is required."
219
  msgstr "Ihr Name wird benötigt"
220
 
221
+ #: contact_form.php:450
222
  msgid "A proper e-mail address is required."
223
  msgstr "Eine korrekte E-Mail-Adresse ist zwingend."
224
 
225
+ #: contact_form.php:451
226
  msgid "Subject text is required."
227
  msgstr "Bitte geben Sie einen Betreff ein."
228
 
229
+ #: contact_form.php:452
230
  msgid "Message text is required."
231
  msgstr "Bitte geben Sie eine Nachricht ein."
232
 
233
+ #: contact_form.php:453
234
  msgid "Please make corrections below and try again."
235
  msgstr "Bitte führen Sie die Korrekturen unten durch und versuchen Sie es erneut."
236
 
237
+ #: contact_form.php:484
238
  msgid "Attachment is broken."
239
  msgstr "Anhang scheint defekt zu sein."
240
 
241
+ #: contact_form.php:497
242
  msgid "Please complete the CAPTCHA."
243
  msgstr "Bitte ergänzen Sie das CAPTCHA."
244
 
245
+ #: contact_form.php:607
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
246
  msgid "Contact from"
247
  msgstr "Kontakt von"
248
 
249
+ #: contact_form.php:612
250
  msgid "Name"
251
  msgstr "Nome"
252
 
253
+ #: contact_form.php:615
254
  msgid "Email"
255
  msgstr "E-Mail"
256
 
257
+ #: contact_form.php:618
258
  msgid "Subject"
259
  msgstr "Betreff"
260
 
261
+ #: contact_form.php:621
262
  msgid "Message"
263
  msgstr "Nachricht"
264
 
265
+ #: contact_form.php:624
266
  msgid "Site"
267
  msgstr "Site"
268
 
269
+ #: contact_form.php:670
270
  msgid "FAQ"
271
  msgstr "Häufig gestellte Fragen (FAQ)"
272
 
273
+ #: contact_form.php:671
274
  msgid "Support"
275
  msgstr "Unterstützung"
276
 
languages/contact_form-es_ES.mo CHANGED
Binary file
languages/contact_form-es_ES.po CHANGED
@@ -2,8 +2,8 @@ msgid ""
2
  msgstr ""
3
  "Project-Id-Version: contact_form\n"
4
  "Report-Msgid-Bugs-To: \n"
5
- "POT-Creation-Date: 2012-03-20 19:57+0200\n"
6
- "PO-Revision-Date: 2012-03-20 19:58+0200\n"
7
  "Last-Translator: BWS <zos@bestwebsoft.com>\n"
8
  "Language-Team: bestwebsoft.com <plugin@bestwebsoft.com>\n"
9
  "MIME-Version: 1.0\n"
@@ -27,8 +27,8 @@ msgid "Read more"
27
  msgstr "Lea mas"
28
 
29
  #: contact_form.php:78
30
- #: contact_form.php:611
31
- #: contact_form.php:620
32
  msgid "Settings"
33
  msgstr "Configuración"
34
 
@@ -58,7 +58,7 @@ msgid "If you have any questions, please contact us via plugin@bestwebsoft.com o
58
  msgstr "Si tiene alguna pregunta, por favor contactenos via plugin@bestwebsoft.com o use el formulario de contacto de nuestra web"
59
 
60
  #: contact_form.php:108
61
- #: contact_form.php:213
62
  msgid "Contact Form Options"
63
  msgstr "Opciones Contact Form"
64
 
@@ -66,207 +66,211 @@ msgstr "Opciones Contact Form"
66
  msgid "Contact Form"
67
  msgstr "Contact Form"
68
 
69
- #: contact_form.php:129
70
- #: contact_form.php:163
71
- #: contact_form.php:181
72
- #: contact_form.php:277
73
  msgid "Name:"
74
  msgstr "Nombre:"
75
 
76
- #: contact_form.php:130
77
- #: contact_form.php:164
78
- #: contact_form.php:182
79
- #: contact_form.php:278
80
  msgid "E-Mail Address:"
81
  msgstr "Dirección e-mail:"
82
 
83
- #: contact_form.php:131
84
- #: contact_form.php:165
85
- #: contact_form.php:183
86
- #: contact_form.php:279
87
  msgid "Subject:"
88
  msgstr "Asunto:"
89
 
90
- #: contact_form.php:132
91
- #: contact_form.php:166
92
- #: contact_form.php:184
93
- #: contact_form.php:280
94
  msgid "Message:"
95
  msgstr "Mensaje:"
96
 
97
- #: contact_form.php:133
98
- #: contact_form.php:167
99
- #: contact_form.php:185
100
- #: contact_form.php:281
101
  msgid "Attachment:"
102
  msgstr "Adjunto:"
103
 
104
- #: contact_form.php:193
105
- #: contact_form.php:202
106
  msgid "Options saved."
107
  msgstr "Configuración guardada."
108
 
109
- #: contact_form.php:196
110
  msgid "Such user is not exist. Settings are not saved."
111
  msgstr "Usuario inexistente. Los cambios no se han guardado."
112
 
113
- #: contact_form.php:205
114
  msgid "Please input correct email. Settings are not saved."
115
  msgstr "Por favor introduzca un e-mail correcto. Los cambios no se han guardado."
116
 
117
- #: contact_form.php:218
118
  msgid "If you would like to add a Contact Form to your website, just copy and put this shortcode onto your post or page or widget:"
119
  msgstr "Si quiere añadir Contact Form en su web, copie y pegue este código en su mensaje o página o widget:"
120
 
121
- #: contact_form.php:219
122
  msgid "If information in the below fields are empty then the message will be send to an address which was specified during registration."
123
  msgstr "Si la información en este campo está vacia, se usará la dirección especificada en el registro."
124
 
125
- #: contact_form.php:223
126
  msgid "Use email of wordpress user:"
127
  msgstr "Use el email del usuario de Wordpress:"
128
 
129
- #: contact_form.php:229
130
  msgid "Select user name"
131
  msgstr "Seleccione nombre de usuario"
132
 
133
- #: contact_form.php:234
134
  msgid "Set a name of user who will get messages from a contact form."
135
  msgstr "Introduzca el nombre del usuario que va a recibir mensajes desde contact form"
136
 
137
- #: contact_form.php:238
138
  msgid "Use this email:"
139
  msgstr "Use este emaill:"
140
 
141
- #: contact_form.php:244
142
  msgid "Set an email address which will be used for messages receiving."
143
  msgstr "Establecer una dirección de correo electrónico que se utiliza para los mensajes que reciben."
144
 
145
- #: contact_form.php:248
146
  msgid "Additional options"
147
  msgstr "Opciones adicionales"
148
 
149
- #: contact_form.php:251
150
  msgid "Display Attachment block"
151
  msgstr "Visualiza el adjunto"
152
 
153
- #: contact_form.php:256
154
  msgid "Users can attach files of the following types"
155
  msgstr "Usuarios pueden adjuntar archivos de este tipo"
156
 
157
- #: contact_form.php:260
158
  msgid "Display Send me a copy block"
159
  msgstr "Ver envíame una copia"
160
 
161
- #: contact_form.php:266
162
  msgid "Change FROM fields of the contact form"
163
  msgstr "Modifica DE los campos en contact form"
164
 
165
- #: contact_form.php:272
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
166
  msgid "Change label for fields of the contact form"
167
  msgstr "Modifica las etiquetas de los campos en contact form"
168
 
169
- #: contact_form.php:287
170
  msgid "Save Changes"
171
  msgstr "Guardar los cambios"
172
 
173
- #: contact_form.php:318
174
  msgid "Thank you for contacting us."
175
  msgstr "Gracias por contactar con nosotros"
176
 
177
- #: contact_form.php:323
178
  msgid "Sorry, your e-mail could not be delivered."
179
  msgstr "Disculpe, su email no se puede entregar."
180
 
181
- #: contact_form.php:380
182
  msgid "You can attach files of the following types"
183
  msgstr "Puede adjuntar archivos de estos tipos"
184
 
185
- #: contact_form.php:386
186
  msgid "Send me a copy"
187
  msgstr "Envíame una copia"
188
 
189
- #: contact_form.php:396
190
  msgid "Submit"
191
  msgstr "Enviar"
192
 
193
- #: contact_form.php:412
194
  msgid "Your name is required."
195
  msgstr "Su nombre es obligatorio."
196
 
197
- #: contact_form.php:413
198
  msgid "A proper e-mail address is required."
199
  msgstr "Una dirección válida es obligatoria."
200
 
201
- #: contact_form.php:414
202
  msgid "Subject text is required."
203
  msgstr "El asunto es obligatorio."
204
 
205
- #: contact_form.php:415
206
  msgid "Message text is required."
207
  msgstr "El mensaje es obligatorio."
208
 
209
- #: contact_form.php:416
210
  msgid "Please make corrections below and try again."
211
  msgstr "Por favor, corrija los datos y pruebe de nuevo."
212
 
213
- #: contact_form.php:447
214
  msgid "Attachment is broken."
215
  msgstr "El adjunto es incorrecto."
216
 
217
- #: contact_form.php:460
218
  msgid "Please complete the CAPTCHA."
219
  msgstr "Por favor completa el CAPTCHA"
220
 
221
- #: contact_form.php:536
222
- #: contact_form.php:570
223
- msgid "Sent from (ip address)"
224
- msgstr "Enviado desde (dirección IP)"
225
-
226
- #: contact_form.php:537
227
- #: contact_form.php:573
228
- msgid "Date/Time"
229
- msgstr "Fecha/hora"
230
-
231
- #: contact_form.php:538
232
- #: contact_form.php:576
233
- msgid "Coming from (referer)"
234
- msgstr "De (referente)"
235
-
236
- #: contact_form.php:539
237
- #: contact_form.php:579
238
- msgid "Using (user agent)"
239
- msgstr "Usando (user agent)"
240
-
241
- #: contact_form.php:544
242
  msgid "Contact from"
243
  msgstr "Contact from"
244
 
245
- #: contact_form.php:549
246
  msgid "Name"
247
  msgstr "Nombre"
248
 
249
- #: contact_form.php:552
250
  msgid "Email"
251
  msgstr "E-mail"
252
 
253
- #: contact_form.php:555
254
  msgid "Subject"
255
  msgstr "Asunto"
256
 
257
- #: contact_form.php:558
258
  msgid "Message"
259
  msgstr "Mensaje"
260
 
261
- #: contact_form.php:561
262
  msgid "Site"
263
  msgstr "Sitio"
264
 
265
- #: contact_form.php:621
266
  msgid "FAQ"
267
  msgstr "FAQ"
268
 
269
- #: contact_form.php:622
270
  msgid "Support"
271
  msgstr "Soporte"
272
 
2
  msgstr ""
3
  "Project-Id-Version: contact_form\n"
4
  "Report-Msgid-Bugs-To: \n"
5
+ "POT-Creation-Date: 2012-03-22 12:55+0200\n"
6
+ "PO-Revision-Date: 2012-03-22 12:55+0200\n"
7
  "Last-Translator: BWS <zos@bestwebsoft.com>\n"
8
  "Language-Team: bestwebsoft.com <plugin@bestwebsoft.com>\n"
9
  "MIME-Version: 1.0\n"
27
  msgstr "Lea mas"
28
 
29
  #: contact_form.php:78
30
+ #: contact_form.php:660
31
+ #: contact_form.php:669
32
  msgid "Settings"
33
  msgstr "Configuración"
34
 
58
  msgstr "Si tiene alguna pregunta, por favor contactenos via plugin@bestwebsoft.com o use el formulario de contacto de nuestra web"
59
 
60
  #: contact_form.php:108
61
+ #: contact_form.php:236
62
  msgid "Contact Form Options"
63
  msgstr "Opciones Contact Form"
64
 
66
  msgid "Contact Form"
67
  msgstr "Contact Form"
68
 
69
+ #: contact_form.php:134
70
+ #: contact_form.php:173
71
+ #: contact_form.php:204
72
+ #: contact_form.php:312
73
  msgid "Name:"
74
  msgstr "Nombre:"
75
 
76
+ #: contact_form.php:135
77
+ #: contact_form.php:174
78
+ #: contact_form.php:205
79
+ #: contact_form.php:313
80
  msgid "E-Mail Address:"
81
  msgstr "Dirección e-mail:"
82
 
83
+ #: contact_form.php:136
84
+ #: contact_form.php:175
85
+ #: contact_form.php:206
86
+ #: contact_form.php:314
87
  msgid "Subject:"
88
  msgstr "Asunto:"
89
 
90
+ #: contact_form.php:137
91
+ #: contact_form.php:176
92
+ #: contact_form.php:207
93
+ #: contact_form.php:315
94
  msgid "Message:"
95
  msgstr "Mensaje:"
96
 
97
+ #: contact_form.php:138
98
+ #: contact_form.php:177
99
+ #: contact_form.php:208
100
+ #: contact_form.php:316
101
  msgid "Attachment:"
102
  msgstr "Adjunto:"
103
 
104
+ #: contact_form.php:216
105
+ #: contact_form.php:225
106
  msgid "Options saved."
107
  msgstr "Configuración guardada."
108
 
109
+ #: contact_form.php:219
110
  msgid "Such user is not exist. Settings are not saved."
111
  msgstr "Usuario inexistente. Los cambios no se han guardado."
112
 
113
+ #: contact_form.php:228
114
  msgid "Please input correct email. Settings are not saved."
115
  msgstr "Por favor introduzca un e-mail correcto. Los cambios no se han guardado."
116
 
117
+ #: contact_form.php:241
118
  msgid "If you would like to add a Contact Form to your website, just copy and put this shortcode onto your post or page or widget:"
119
  msgstr "Si quiere añadir Contact Form en su web, copie y pegue este código en su mensaje o página o widget:"
120
 
121
+ #: contact_form.php:242
122
  msgid "If information in the below fields are empty then the message will be send to an address which was specified during registration."
123
  msgstr "Si la información en este campo está vacia, se usará la dirección especificada en el registro."
124
 
125
+ #: contact_form.php:246
126
  msgid "Use email of wordpress user:"
127
  msgstr "Use el email del usuario de Wordpress:"
128
 
129
+ #: contact_form.php:252
130
  msgid "Select user name"
131
  msgstr "Seleccione nombre de usuario"
132
 
133
+ #: contact_form.php:257
134
  msgid "Set a name of user who will get messages from a contact form."
135
  msgstr "Introduzca el nombre del usuario que va a recibir mensajes desde contact form"
136
 
137
+ #: contact_form.php:261
138
  msgid "Use this email:"
139
  msgstr "Use este emaill:"
140
 
141
+ #: contact_form.php:267
142
  msgid "Set an email address which will be used for messages receiving."
143
  msgstr "Establecer una dirección de correo electrónico que se utiliza para los mensajes que reciben."
144
 
145
+ #: contact_form.php:271
146
  msgid "Additional options"
147
  msgstr "Opciones adicionales"
148
 
149
+ #: contact_form.php:274
150
  msgid "Display Attachment block"
151
  msgstr "Visualiza el adjunto"
152
 
153
+ #: contact_form.php:279
154
  msgid "Users can attach files of the following types"
155
  msgstr "Usuarios pueden adjuntar archivos de este tipo"
156
 
157
+ #: contact_form.php:283
158
  msgid "Display Send me a copy block"
159
  msgstr "Ver envíame una copia"
160
 
161
+ #: contact_form.php:289
162
  msgid "Change FROM fields of the contact form"
163
  msgstr "Modifica DE los campos en contact form"
164
 
165
+ #: contact_form.php:295
166
+ msgid "Display additional info in email"
167
+ msgstr ""
168
+
169
+ #: contact_form.php:300
170
+ #: contact_form.php:584
171
+ msgid "Sent from (ip address)"
172
+ msgstr "Enviado desde (dirección IP)"
173
+
174
+ #: contact_form.php:301
175
+ #: contact_form.php:589
176
+ msgid "Date/Time"
177
+ msgstr "Fecha/hora"
178
+
179
+ #: contact_form.php:302
180
+ #: contact_form.php:594
181
+ msgid "Coming from (referer)"
182
+ msgstr "De (referente)"
183
+
184
+ #: contact_form.php:303
185
+ #: contact_form.php:599
186
+ msgid "Using (user agent)"
187
+ msgstr "Usando (user agent)"
188
+
189
+ #: contact_form.php:307
190
  msgid "Change label for fields of the contact form"
191
  msgstr "Modifica las etiquetas de los campos en contact form"
192
 
193
+ #: contact_form.php:322
194
  msgid "Save Changes"
195
  msgstr "Guardar los cambios"
196
 
197
+ #: contact_form.php:355
198
  msgid "Thank you for contacting us."
199
  msgstr "Gracias por contactar con nosotros"
200
 
201
+ #: contact_form.php:360
202
  msgid "Sorry, your e-mail could not be delivered."
203
  msgstr "Disculpe, su email no se puede entregar."
204
 
205
+ #: contact_form.php:417
206
  msgid "You can attach files of the following types"
207
  msgstr "Puede adjuntar archivos de estos tipos"
208
 
209
+ #: contact_form.php:423
210
  msgid "Send me a copy"
211
  msgstr "Envíame una copia"
212
 
213
+ #: contact_form.php:433
214
  msgid "Submit"
215
  msgstr "Enviar"
216
 
217
+ #: contact_form.php:449
218
  msgid "Your name is required."
219
  msgstr "Su nombre es obligatorio."
220
 
221
+ #: contact_form.php:450
222
  msgid "A proper e-mail address is required."
223
  msgstr "Una dirección válida es obligatoria."
224
 
225
+ #: contact_form.php:451
226
  msgid "Subject text is required."
227
  msgstr "El asunto es obligatorio."
228
 
229
+ #: contact_form.php:452
230
  msgid "Message text is required."
231
  msgstr "El mensaje es obligatorio."
232
 
233
+ #: contact_form.php:453
234
  msgid "Please make corrections below and try again."
235
  msgstr "Por favor, corrija los datos y pruebe de nuevo."
236
 
237
+ #: contact_form.php:484
238
  msgid "Attachment is broken."
239
  msgstr "El adjunto es incorrecto."
240
 
241
+ #: contact_form.php:497
242
  msgid "Please complete the CAPTCHA."
243
  msgstr "Por favor completa el CAPTCHA"
244
 
245
+ #: contact_form.php:607
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
246
  msgid "Contact from"
247
  msgstr "Contact from"
248
 
249
+ #: contact_form.php:612
250
  msgid "Name"
251
  msgstr "Nombre"
252
 
253
+ #: contact_form.php:615
254
  msgid "Email"
255
  msgstr "E-mail"
256
 
257
+ #: contact_form.php:618
258
  msgid "Subject"
259
  msgstr "Asunto"
260
 
261
+ #: contact_form.php:621
262
  msgid "Message"
263
  msgstr "Mensaje"
264
 
265
+ #: contact_form.php:624
266
  msgid "Site"
267
  msgstr "Sitio"
268
 
269
+ #: contact_form.php:670
270
  msgid "FAQ"
271
  msgstr "FAQ"
272
 
273
+ #: contact_form.php:671
274
  msgid "Support"
275
  msgstr "Soporte"
276
 
languages/contact_form-fr_FR.mo CHANGED
Binary file
languages/contact_form-fr_FR.po CHANGED
@@ -2,8 +2,8 @@ msgid ""
2
  msgstr ""
3
  "Project-Id-Version: contact_form\n"
4
  "Report-Msgid-Bugs-To: \n"
5
- "POT-Creation-Date: 2012-03-20 19:56+0200\n"
6
- "PO-Revision-Date: 2012-03-20 19:57+0200\n"
7
  "Last-Translator: BWS <zos@bestwebsoft.com>\n"
8
  "Language-Team: bestwebsoft.com <plugin@bestwebsoft.com>\n"
9
  "MIME-Version: 1.0\n"
@@ -27,8 +27,8 @@ msgid "Read more"
27
  msgstr "Lire la suite"
28
 
29
  #: contact_form.php:78
30
- #: contact_form.php:611
31
- #: contact_form.php:620
32
  msgid "Settings"
33
  msgstr "Réglages"
34
 
@@ -58,7 +58,7 @@ msgid "If you have any questions, please contact us via plugin@bestwebsoft.com o
58
  msgstr "Si vous avez des questions, merci de contacter plugin@bestwebsoft.com ou d'utilisez le formulaire de contact \"contact form\" sur notre site"
59
 
60
  #: contact_form.php:108
61
- #: contact_form.php:213
62
  msgid "Contact Form Options"
63
  msgstr "Options du Formulaire de Contact"
64
 
@@ -66,207 +66,211 @@ msgstr "Options du Formulaire de Contact"
66
  msgid "Contact Form"
67
  msgstr "Formulaire de Contact"
68
 
69
- #: contact_form.php:129
70
- #: contact_form.php:163
71
- #: contact_form.php:181
72
- #: contact_form.php:277
73
  msgid "Name:"
74
  msgstr "Nom:"
75
 
76
- #: contact_form.php:130
77
- #: contact_form.php:164
78
- #: contact_form.php:182
79
- #: contact_form.php:278
80
  msgid "E-Mail Address:"
81
  msgstr "Adresse e-mail:"
82
 
83
- #: contact_form.php:131
84
- #: contact_form.php:165
85
- #: contact_form.php:183
86
- #: contact_form.php:279
87
  msgid "Subject:"
88
  msgstr "Sujet:"
89
 
90
- #: contact_form.php:132
91
- #: contact_form.php:166
92
- #: contact_form.php:184
93
- #: contact_form.php:280
94
  msgid "Message:"
95
  msgstr "Message:"
96
 
97
- #: contact_form.php:133
98
- #: contact_form.php:167
99
- #: contact_form.php:185
100
- #: contact_form.php:281
101
  msgid "Attachment:"
102
  msgstr "Pièce-jointe:"
103
 
104
- #: contact_form.php:193
105
- #: contact_form.php:202
106
  msgid "Options saved."
107
  msgstr "Options sauvegardées."
108
 
109
- #: contact_form.php:196
110
  msgid "Such user is not exist. Settings are not saved."
111
  msgstr "Cet utilisateur est inconnu. Les modifications ne sont pas sauvegardées."
112
 
113
- #: contact_form.php:205
114
  msgid "Please input correct email. Settings are not saved."
115
  msgstr "Merci de saisir une adresse e-mail valide. Les modifications ne sont pas sauvegardées."
116
 
117
- #: contact_form.php:218
118
  msgid "If you would like to add a Contact Form to your website, just copy and put this shortcode onto your post or page or widget:"
119
  msgstr "Si vous souhaiter ajouter un formulaire de contact à votre site web, copiez juste ce code dans un article ou sur une page ou un widget:"
120
 
121
- #: contact_form.php:219
122
  msgid "If information in the below fields are empty then the message will be send to an address which was specified during registration."
123
  msgstr "Si les champs ci-dessous ne sont pas renseignés le message sera envoyé à l'adresse spécifiée lors de l'enregistrement."
124
 
125
- #: contact_form.php:223
126
  msgid "Use email of wordpress user:"
127
  msgstr "Utiliser l'e-mail du compte wordpress:"
128
 
129
- #: contact_form.php:229
130
  msgid "Select user name"
131
  msgstr "Choisir un nom d'utilisateur"
132
 
133
- #: contact_form.php:234
134
  msgid "Set a name of user who will get messages from a contact form."
135
  msgstr "Choisir le nom d'utilisateur qui recevra les messages envoyés depuis le formulaire de contact."
136
 
137
- #: contact_form.php:238
138
  msgid "Use this email:"
139
  msgstr "Utiliser cette adresse e-mail:"
140
 
141
- #: contact_form.php:244
142
  msgid "Set an email address which will be used for messages receiving."
143
  msgstr "Choisir l'adresse e-mail qui sera utilisée pour recevoir les messages."
144
 
145
- #: contact_form.php:248
146
  msgid "Additional options"
147
  msgstr "Options supplémentaires"
148
 
149
- #: contact_form.php:251
150
  msgid "Display Attachment block"
151
  msgstr "Afficher le bloc Pièce-Jointe"
152
 
153
- #: contact_form.php:256
154
  msgid "Users can attach files of the following types"
155
  msgstr "Les utilisateurs peuvent joindre des documents des types suivants"
156
 
157
- #: contact_form.php:260
158
  msgid "Display Send me a copy block"
159
  msgstr "Afficher \"M'envoyer une copie\" "
160
 
161
- #: contact_form.php:266
162
  msgid "Change FROM fields of the contact form"
163
  msgstr "Modifier DE champs du formulaire de contact"
164
 
165
- #: contact_form.php:272
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
166
  msgid "Change label for fields of the contact form"
167
  msgstr "Modifier le nom des champs du formulaire de contact"
168
 
169
- #: contact_form.php:287
170
  msgid "Save Changes"
171
  msgstr "Sauvegarder les modifications"
172
 
173
- #: contact_form.php:318
174
  msgid "Thank you for contacting us."
175
  msgstr "Merci de nous avoir contacté."
176
 
177
- #: contact_form.php:323
178
  msgid "Sorry, your e-mail could not be delivered."
179
  msgstr "Désolé, votre e-mail n'a pas pu être envoyé."
180
 
181
- #: contact_form.php:380
182
  msgid "You can attach files of the following types"
183
  msgstr "Vous pouvez joindre des fichiers aux formats suivants"
184
 
185
- #: contact_form.php:386
186
  msgid "Send me a copy"
187
  msgstr "M'envoyer une copie"
188
 
189
- #: contact_form.php:396
190
  msgid "Submit"
191
  msgstr "Envoyer"
192
 
193
- #: contact_form.php:412
194
  msgid "Your name is required."
195
  msgstr "Un nom est obligatoire."
196
 
197
- #: contact_form.php:413
198
  msgid "A proper e-mail address is required."
199
  msgstr "Une adresse e-mail valide est obligatoire."
200
 
201
- #: contact_form.php:414
202
  msgid "Subject text is required."
203
  msgstr "Sujet obligatoire."
204
 
205
- #: contact_form.php:415
206
  msgid "Message text is required."
207
  msgstr "Un message est obligatoire."
208
 
209
- #: contact_form.php:416
210
  msgid "Please make corrections below and try again."
211
  msgstr "Merci de faire les corrections suivantes et de réessayer."
212
 
213
- #: contact_form.php:447
214
  msgid "Attachment is broken."
215
  msgstr "La pièce-jointe n'est pas valide."
216
 
217
- #: contact_form.php:460
218
  msgid "Please complete the CAPTCHA."
219
  msgstr "Merci de compléter le CAPTCHA."
220
 
221
- #: contact_form.php:536
222
- #: contact_form.php:570
223
- msgid "Sent from (ip address)"
224
- msgstr "Envoyé de (adresse IP)"
225
-
226
- #: contact_form.php:537
227
- #: contact_form.php:573
228
- msgid "Date/Time"
229
- msgstr "Date/Heure"
230
-
231
- #: contact_form.php:538
232
- #: contact_form.php:576
233
- msgid "Coming from (referer)"
234
- msgstr "Envoyer de (référence)"
235
-
236
- #: contact_form.php:539
237
- #: contact_form.php:579
238
- msgid "Using (user agent)"
239
- msgstr "Depuis (navigateur)"
240
-
241
- #: contact_form.php:544
242
  msgid "Contact from"
243
  msgstr "Contact de"
244
 
245
- #: contact_form.php:549
246
  msgid "Name"
247
  msgstr "Nom"
248
 
249
- #: contact_form.php:552
250
  msgid "Email"
251
  msgstr "e-mail"
252
 
253
- #: contact_form.php:555
254
  msgid "Subject"
255
  msgstr "Sujet"
256
 
257
- #: contact_form.php:558
258
  msgid "Message"
259
  msgstr "Message"
260
 
261
- #: contact_form.php:561
262
  msgid "Site"
263
  msgstr "Site"
264
 
265
- #: contact_form.php:621
266
  msgid "FAQ"
267
  msgstr "FAQ"
268
 
269
- #: contact_form.php:622
270
  msgid "Support"
271
  msgstr "Support"
272
 
2
  msgstr ""
3
  "Project-Id-Version: contact_form\n"
4
  "Report-Msgid-Bugs-To: \n"
5
+ "POT-Creation-Date: 2012-03-22 12:55+0200\n"
6
+ "PO-Revision-Date: 2012-03-22 12:55+0200\n"
7
  "Last-Translator: BWS <zos@bestwebsoft.com>\n"
8
  "Language-Team: bestwebsoft.com <plugin@bestwebsoft.com>\n"
9
  "MIME-Version: 1.0\n"
27
  msgstr "Lire la suite"
28
 
29
  #: contact_form.php:78
30
+ #: contact_form.php:660
31
+ #: contact_form.php:669
32
  msgid "Settings"
33
  msgstr "Réglages"
34
 
58
  msgstr "Si vous avez des questions, merci de contacter plugin@bestwebsoft.com ou d'utilisez le formulaire de contact \"contact form\" sur notre site"
59
 
60
  #: contact_form.php:108
61
+ #: contact_form.php:236
62
  msgid "Contact Form Options"
63
  msgstr "Options du Formulaire de Contact"
64
 
66
  msgid "Contact Form"
67
  msgstr "Formulaire de Contact"
68
 
69
+ #: contact_form.php:134
70
+ #: contact_form.php:173
71
+ #: contact_form.php:204
72
+ #: contact_form.php:312
73
  msgid "Name:"
74
  msgstr "Nom:"
75
 
76
+ #: contact_form.php:135
77
+ #: contact_form.php:174
78
+ #: contact_form.php:205
79
+ #: contact_form.php:313
80
  msgid "E-Mail Address:"
81
  msgstr "Adresse e-mail:"
82
 
83
+ #: contact_form.php:136
84
+ #: contact_form.php:175
85
+ #: contact_form.php:206
86
+ #: contact_form.php:314
87
  msgid "Subject:"
88
  msgstr "Sujet:"
89
 
90
+ #: contact_form.php:137
91
+ #: contact_form.php:176
92
+ #: contact_form.php:207
93
+ #: contact_form.php:315
94
  msgid "Message:"
95
  msgstr "Message:"
96
 
97
+ #: contact_form.php:138
98
+ #: contact_form.php:177
99
+ #: contact_form.php:208
100
+ #: contact_form.php:316
101
  msgid "Attachment:"
102
  msgstr "Pièce-jointe:"
103
 
104
+ #: contact_form.php:216
105
+ #: contact_form.php:225
106
  msgid "Options saved."
107
  msgstr "Options sauvegardées."
108
 
109
+ #: contact_form.php:219
110
  msgid "Such user is not exist. Settings are not saved."
111
  msgstr "Cet utilisateur est inconnu. Les modifications ne sont pas sauvegardées."
112
 
113
+ #: contact_form.php:228
114
  msgid "Please input correct email. Settings are not saved."
115
  msgstr "Merci de saisir une adresse e-mail valide. Les modifications ne sont pas sauvegardées."
116
 
117
+ #: contact_form.php:241
118
  msgid "If you would like to add a Contact Form to your website, just copy and put this shortcode onto your post or page or widget:"
119
  msgstr "Si vous souhaiter ajouter un formulaire de contact à votre site web, copiez juste ce code dans un article ou sur une page ou un widget:"
120
 
121
+ #: contact_form.php:242
122
  msgid "If information in the below fields are empty then the message will be send to an address which was specified during registration."
123
  msgstr "Si les champs ci-dessous ne sont pas renseignés le message sera envoyé à l'adresse spécifiée lors de l'enregistrement."
124
 
125
+ #: contact_form.php:246
126
  msgid "Use email of wordpress user:"
127
  msgstr "Utiliser l'e-mail du compte wordpress:"
128
 
129
+ #: contact_form.php:252
130
  msgid "Select user name"
131
  msgstr "Choisir un nom d'utilisateur"
132
 
133
+ #: contact_form.php:257
134
  msgid "Set a name of user who will get messages from a contact form."
135
  msgstr "Choisir le nom d'utilisateur qui recevra les messages envoyés depuis le formulaire de contact."
136
 
137
+ #: contact_form.php:261
138
  msgid "Use this email:"
139
  msgstr "Utiliser cette adresse e-mail:"
140
 
141
+ #: contact_form.php:267
142
  msgid "Set an email address which will be used for messages receiving."
143
  msgstr "Choisir l'adresse e-mail qui sera utilisée pour recevoir les messages."
144
 
145
+ #: contact_form.php:271
146
  msgid "Additional options"
147
  msgstr "Options supplémentaires"
148
 
149
+ #: contact_form.php:274
150
  msgid "Display Attachment block"
151
  msgstr "Afficher le bloc Pièce-Jointe"
152
 
153
+ #: contact_form.php:279
154
  msgid "Users can attach files of the following types"
155
  msgstr "Les utilisateurs peuvent joindre des documents des types suivants"
156
 
157
+ #: contact_form.php:283
158
  msgid "Display Send me a copy block"
159
  msgstr "Afficher \"M'envoyer une copie\" "
160
 
161
+ #: contact_form.php:289
162
  msgid "Change FROM fields of the contact form"
163
  msgstr "Modifier DE champs du formulaire de contact"
164
 
165
+ #: contact_form.php:295
166
+ msgid "Display additional info in email"
167
+ msgstr ""
168
+
169
+ #: contact_form.php:300
170
+ #: contact_form.php:584
171
+ msgid "Sent from (ip address)"
172
+ msgstr "Envoyé de (adresse IP)"
173
+
174
+ #: contact_form.php:301
175
+ #: contact_form.php:589
176
+ msgid "Date/Time"
177
+ msgstr "Date/Heure"
178
+
179
+ #: contact_form.php:302
180
+ #: contact_form.php:594
181
+ msgid "Coming from (referer)"
182
+ msgstr "Envoyer de (référence)"
183
+
184
+ #: contact_form.php:303
185
+ #: contact_form.php:599
186
+ msgid "Using (user agent)"
187
+ msgstr "Depuis (navigateur)"
188
+
189
+ #: contact_form.php:307
190
  msgid "Change label for fields of the contact form"
191
  msgstr "Modifier le nom des champs du formulaire de contact"
192
 
193
+ #: contact_form.php:322
194
  msgid "Save Changes"
195
  msgstr "Sauvegarder les modifications"
196
 
197
+ #: contact_form.php:355
198
  msgid "Thank you for contacting us."
199
  msgstr "Merci de nous avoir contacté."
200
 
201
+ #: contact_form.php:360
202
  msgid "Sorry, your e-mail could not be delivered."
203
  msgstr "Désolé, votre e-mail n'a pas pu être envoyé."
204
 
205
+ #: contact_form.php:417
206
  msgid "You can attach files of the following types"
207
  msgstr "Vous pouvez joindre des fichiers aux formats suivants"
208
 
209
+ #: contact_form.php:423
210
  msgid "Send me a copy"
211
  msgstr "M'envoyer une copie"
212
 
213
+ #: contact_form.php:433
214
  msgid "Submit"
215
  msgstr "Envoyer"
216
 
217
+ #: contact_form.php:449
218
  msgid "Your name is required."
219
  msgstr "Un nom est obligatoire."
220
 
221
+ #: contact_form.php:450
222
  msgid "A proper e-mail address is required."
223
  msgstr "Une adresse e-mail valide est obligatoire."
224
 
225
+ #: contact_form.php:451
226
  msgid "Subject text is required."
227
  msgstr "Sujet obligatoire."
228
 
229
+ #: contact_form.php:452
230
  msgid "Message text is required."
231
  msgstr "Un message est obligatoire."
232
 
233
+ #: contact_form.php:453
234
  msgid "Please make corrections below and try again."
235
  msgstr "Merci de faire les corrections suivantes et de réessayer."
236
 
237
+ #: contact_form.php:484
238
  msgid "Attachment is broken."
239
  msgstr "La pièce-jointe n'est pas valide."
240
 
241
+ #: contact_form.php:497
242
  msgid "Please complete the CAPTCHA."
243
  msgstr "Merci de compléter le CAPTCHA."
244
 
245
+ #: contact_form.php:607
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
246
  msgid "Contact from"
247
  msgstr "Contact de"
248
 
249
+ #: contact_form.php:612
250
  msgid "Name"
251
  msgstr "Nom"
252
 
253
+ #: contact_form.php:615
254
  msgid "Email"
255
  msgstr "e-mail"
256
 
257
+ #: contact_form.php:618
258
  msgid "Subject"
259
  msgstr "Sujet"
260
 
261
+ #: contact_form.php:621
262
  msgid "Message"
263
  msgstr "Message"
264
 
265
+ #: contact_form.php:624
266
  msgid "Site"
267
  msgstr "Site"
268
 
269
+ #: contact_form.php:670
270
  msgid "FAQ"
271
  msgstr "FAQ"
272
 
273
+ #: contact_form.php:671
274
  msgid "Support"
275
  msgstr "Support"
276
 
languages/contact_form-it_IT.mo CHANGED
Binary file
languages/contact_form-it_IT.po CHANGED
@@ -2,8 +2,8 @@ msgid ""
2
  msgstr ""
3
  "Project-Id-Version: contact_form\n"
4
  "Report-Msgid-Bugs-To: \n"
5
- "POT-Creation-Date: 2012-03-20 19:56+0200\n"
6
- "PO-Revision-Date: 2012-03-20 19:56+0200\n"
7
  "Last-Translator: BWS <zos@bestwebsoft.com>\n"
8
  "Language-Team: bestwebsoft.com <plugin@bestwebsoft.com>\n"
9
  "MIME-Version: 1.0\n"
@@ -27,8 +27,8 @@ msgid "Read more"
27
  msgstr "Leggi"
28
 
29
  #: contact_form.php:78
30
- #: contact_form.php:611
31
- #: contact_form.php:620
32
  msgid "Settings"
33
  msgstr "Settaggi"
34
 
@@ -58,7 +58,7 @@ msgid "If you have any questions, please contact us via plugin@bestwebsoft.com o
58
  msgstr "Se hai domande, per favore contattaci a plugin@bestwebsoft.com o compila il modulo \"contact form\" sul nostro sito"
59
 
60
  #: contact_form.php:108
61
- #: contact_form.php:213
62
  msgid "Contact Form Options"
63
  msgstr "Opzioni Contact Form"
64
 
@@ -66,207 +66,211 @@ msgstr "Opzioni Contact Form"
66
  msgid "Contact Form"
67
  msgstr "Contact Form"
68
 
69
- #: contact_form.php:129
70
- #: contact_form.php:163
71
- #: contact_form.php:181
72
- #: contact_form.php:277
73
  msgid "Name:"
74
  msgstr "Nome:"
75
 
76
- #: contact_form.php:130
77
- #: contact_form.php:164
78
- #: contact_form.php:182
79
- #: contact_form.php:278
80
  msgid "E-Mail Address:"
81
  msgstr "Indirizzo e-mail:"
82
 
83
- #: contact_form.php:131
84
- #: contact_form.php:165
85
- #: contact_form.php:183
86
- #: contact_form.php:279
87
  msgid "Subject:"
88
  msgstr "Oggetto:"
89
 
90
- #: contact_form.php:132
91
- #: contact_form.php:166
92
- #: contact_form.php:184
93
- #: contact_form.php:280
94
  msgid "Message:"
95
  msgstr "Messaggio:"
96
 
97
- #: contact_form.php:133
98
- #: contact_form.php:167
99
- #: contact_form.php:185
100
- #: contact_form.php:281
101
  msgid "Attachment:"
102
  msgstr "Attachment:"
103
 
104
- #: contact_form.php:193
105
- #: contact_form.php:202
106
  msgid "Options saved."
107
  msgstr "Opzioni salvate."
108
 
109
- #: contact_form.php:196
110
  msgid "Such user is not exist. Settings are not saved."
111
  msgstr "L'utente indicato non esiste. Le opzioni non sono state salvate."
112
 
113
- #: contact_form.php:205
114
  msgid "Please input correct email. Settings are not saved."
115
  msgstr "Perfavore inserisci una e-mail corretta. Opzioni non salvate."
116
 
117
- #: contact_form.php:218
118
  msgid "If you would like to add a Contact Form to your website, just copy and put this shortcode onto your post or page or widget:"
119
  msgstr "Se vuoi aggiungere un Contact Form al tuo sito, copia e incolla questo shortcode nei tuoi post o nelle tue pagine o widget:"
120
 
121
- #: contact_form.php:219
122
  msgid "If information in the below fields are empty then the message will be send to an address which was specified during registration."
123
  msgstr "Se le informazioni nei campi sottostanti sono vuote allora il messaggio sarà inviato ad un indirizzo che è stato specificato durante la fase di registrazione. "
124
 
125
- #: contact_form.php:223
126
  msgid "Use email of wordpress user:"
127
  msgstr "Utilizza l'e-mail dell'utente wordpress:"
128
 
129
- #: contact_form.php:229
130
  msgid "Select user name"
131
  msgstr "Seleziona nome utente"
132
 
133
- #: contact_form.php:234
134
  msgid "Set a name of user who will get messages from a contact form."
135
  msgstr "Imposta il nome dell'utente che riceverà i messaggi da un contact form."
136
 
137
- #: contact_form.php:238
138
  msgid "Use this email:"
139
  msgstr "Utilizza questa e-mail:"
140
 
141
- #: contact_form.php:244
142
  msgid "Set an email address which will be used for messages receiving."
143
  msgstr "Imposta una e-mail che verrà utilizzata per ricevere i messaggi."
144
 
145
- #: contact_form.php:248
146
  msgid "Additional options"
147
  msgstr "Impostazioni aggiuntive"
148
 
149
- #: contact_form.php:251
150
  msgid "Display Attachment block"
151
  msgstr "Visualizza l'attachment"
152
 
153
- #: contact_form.php:256
154
  msgid "Users can attach files of the following types"
155
  msgstr "Gli utenti possono allegare i files nei seguenti tipi"
156
 
157
- #: contact_form.php:260
158
  msgid "Display Send me a copy block"
159
  msgstr "Visualizza il blocco \"Inviami una copia\" "
160
 
161
- #: contact_form.php:266
162
  msgid "Change FROM fields of the contact form"
163
  msgstr "Modifica da campi del contact form"
164
 
165
- #: contact_form.php:272
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
166
  msgid "Change label for fields of the contact form"
167
  msgstr "Modifica le etichette dei campi del contact form"
168
 
169
- #: contact_form.php:287
170
  msgid "Save Changes"
171
  msgstr "Salva le modifiche"
172
 
173
- #: contact_form.php:318
174
  msgid "Thank you for contacting us."
175
  msgstr "Grazie per averci contattato."
176
 
177
- #: contact_form.php:323
178
  msgid "Sorry, your e-mail could not be delivered."
179
  msgstr "Spiacenti, la tua e-mail non può essere consegnata al momento."
180
 
181
- #: contact_form.php:380
182
  msgid "You can attach files of the following types"
183
  msgstr "Gli utenti possono allegare i files nei seguenti tipi"
184
 
185
- #: contact_form.php:386
186
  msgid "Send me a copy"
187
  msgstr "Inviami una copia"
188
 
189
- #: contact_form.php:396
190
  msgid "Submit"
191
  msgstr "Invia"
192
 
193
- #: contact_form.php:412
194
  msgid "Your name is required."
195
  msgstr "Il nome è obbligatorio"
196
 
197
- #: contact_form.php:413
198
  msgid "A proper e-mail address is required."
199
  msgstr "È richiesto un indirizzo e-mail corretto"
200
 
201
- #: contact_form.php:414
202
  msgid "Subject text is required."
203
  msgstr "L'oggetto è obbligatorio"
204
 
205
- #: contact_form.php:415
206
  msgid "Message text is required."
207
  msgstr "Il campo messaggio è obbligatorio"
208
 
209
- #: contact_form.php:416
210
  msgid "Please make corrections below and try again."
211
  msgstr "Controlla i dati del modulo e riprova!"
212
 
213
- #: contact_form.php:447
214
  msgid "Attachment is broken."
215
  msgstr "L'attachment non è corretto"
216
 
217
- #: contact_form.php:460
218
  msgid "Please complete the CAPTCHA."
219
  msgstr "Completa il CAPTCHA"
220
 
221
- #: contact_form.php:536
222
- #: contact_form.php:570
223
- msgid "Sent from (ip address)"
224
- msgstr "Inviato da (indirizzi IP)"
225
-
226
- #: contact_form.php:537
227
- #: contact_form.php:573
228
- msgid "Date/Time"
229
- msgstr "Data/Ora"
230
-
231
- #: contact_form.php:538
232
- #: contact_form.php:576
233
- msgid "Coming from (referer)"
234
- msgstr "Da (referente)"
235
-
236
- #: contact_form.php:539
237
- #: contact_form.php:579
238
- msgid "Using (user agent)"
239
- msgstr "Utilizza (user agent)"
240
-
241
- #: contact_form.php:544
242
  msgid "Contact from"
243
  msgstr "Contact from"
244
 
245
- #: contact_form.php:549
246
  msgid "Name"
247
  msgstr "Nome"
248
 
249
- #: contact_form.php:552
250
  msgid "Email"
251
  msgstr "e-mail"
252
 
253
- #: contact_form.php:555
254
  msgid "Subject"
255
  msgstr "Oggetto"
256
 
257
- #: contact_form.php:558
258
  msgid "Message"
259
  msgstr "Messaggio"
260
 
261
- #: contact_form.php:561
262
  msgid "Site"
263
  msgstr "Sito"
264
 
265
- #: contact_form.php:621
266
  msgid "FAQ"
267
  msgstr "FAQ"
268
 
269
- #: contact_form.php:622
270
  msgid "Support"
271
  msgstr "Supporto"
272
 
2
  msgstr ""
3
  "Project-Id-Version: contact_form\n"
4
  "Report-Msgid-Bugs-To: \n"
5
+ "POT-Creation-Date: 2012-03-22 12:55+0200\n"
6
+ "PO-Revision-Date: 2012-03-22 12:55+0200\n"
7
  "Last-Translator: BWS <zos@bestwebsoft.com>\n"
8
  "Language-Team: bestwebsoft.com <plugin@bestwebsoft.com>\n"
9
  "MIME-Version: 1.0\n"
27
  msgstr "Leggi"
28
 
29
  #: contact_form.php:78
30
+ #: contact_form.php:660
31
+ #: contact_form.php:669
32
  msgid "Settings"
33
  msgstr "Settaggi"
34
 
58
  msgstr "Se hai domande, per favore contattaci a plugin@bestwebsoft.com o compila il modulo \"contact form\" sul nostro sito"
59
 
60
  #: contact_form.php:108
61
+ #: contact_form.php:236
62
  msgid "Contact Form Options"
63
  msgstr "Opzioni Contact Form"
64
 
66
  msgid "Contact Form"
67
  msgstr "Contact Form"
68
 
69
+ #: contact_form.php:134
70
+ #: contact_form.php:173
71
+ #: contact_form.php:204
72
+ #: contact_form.php:312
73
  msgid "Name:"
74
  msgstr "Nome:"
75
 
76
+ #: contact_form.php:135
77
+ #: contact_form.php:174
78
+ #: contact_form.php:205
79
+ #: contact_form.php:313
80
  msgid "E-Mail Address:"
81
  msgstr "Indirizzo e-mail:"
82
 
83
+ #: contact_form.php:136
84
+ #: contact_form.php:175
85
+ #: contact_form.php:206
86
+ #: contact_form.php:314
87
  msgid "Subject:"
88
  msgstr "Oggetto:"
89
 
90
+ #: contact_form.php:137
91
+ #: contact_form.php:176
92
+ #: contact_form.php:207
93
+ #: contact_form.php:315
94
  msgid "Message:"
95
  msgstr "Messaggio:"
96
 
97
+ #: contact_form.php:138
98
+ #: contact_form.php:177
99
+ #: contact_form.php:208
100
+ #: contact_form.php:316
101
  msgid "Attachment:"
102
  msgstr "Attachment:"
103
 
104
+ #: contact_form.php:216
105
+ #: contact_form.php:225
106
  msgid "Options saved."
107
  msgstr "Opzioni salvate."
108
 
109
+ #: contact_form.php:219
110
  msgid "Such user is not exist. Settings are not saved."
111
  msgstr "L'utente indicato non esiste. Le opzioni non sono state salvate."
112
 
113
+ #: contact_form.php:228
114
  msgid "Please input correct email. Settings are not saved."
115
  msgstr "Perfavore inserisci una e-mail corretta. Opzioni non salvate."
116
 
117
+ #: contact_form.php:241
118
  msgid "If you would like to add a Contact Form to your website, just copy and put this shortcode onto your post or page or widget:"
119
  msgstr "Se vuoi aggiungere un Contact Form al tuo sito, copia e incolla questo shortcode nei tuoi post o nelle tue pagine o widget:"
120
 
121
+ #: contact_form.php:242
122
  msgid "If information in the below fields are empty then the message will be send to an address which was specified during registration."
123
  msgstr "Se le informazioni nei campi sottostanti sono vuote allora il messaggio sarà inviato ad un indirizzo che è stato specificato durante la fase di registrazione. "
124
 
125
+ #: contact_form.php:246
126
  msgid "Use email of wordpress user:"
127
  msgstr "Utilizza l'e-mail dell'utente wordpress:"
128
 
129
+ #: contact_form.php:252
130
  msgid "Select user name"
131
  msgstr "Seleziona nome utente"
132
 
133
+ #: contact_form.php:257
134
  msgid "Set a name of user who will get messages from a contact form."
135
  msgstr "Imposta il nome dell'utente che riceverà i messaggi da un contact form."
136
 
137
+ #: contact_form.php:261
138
  msgid "Use this email:"
139
  msgstr "Utilizza questa e-mail:"
140
 
141
+ #: contact_form.php:267
142
  msgid "Set an email address which will be used for messages receiving."
143
  msgstr "Imposta una e-mail che verrà utilizzata per ricevere i messaggi."
144
 
145
+ #: contact_form.php:271
146
  msgid "Additional options"
147
  msgstr "Impostazioni aggiuntive"
148
 
149
+ #: contact_form.php:274
150
  msgid "Display Attachment block"
151
  msgstr "Visualizza l'attachment"
152
 
153
+ #: contact_form.php:279
154
  msgid "Users can attach files of the following types"
155
  msgstr "Gli utenti possono allegare i files nei seguenti tipi"
156
 
157
+ #: contact_form.php:283
158
  msgid "Display Send me a copy block"
159
  msgstr "Visualizza il blocco \"Inviami una copia\" "
160
 
161
+ #: contact_form.php:289
162
  msgid "Change FROM fields of the contact form"
163
  msgstr "Modifica da campi del contact form"
164
 
165
+ #: contact_form.php:295
166
+ msgid "Display additional info in email"
167
+ msgstr ""
168
+
169
+ #: contact_form.php:300
170
+ #: contact_form.php:584
171
+ msgid "Sent from (ip address)"
172
+ msgstr "Inviato da (indirizzi IP)"
173
+
174
+ #: contact_form.php:301
175
+ #: contact_form.php:589
176
+ msgid "Date/Time"
177
+ msgstr "Data/Ora"
178
+
179
+ #: contact_form.php:302
180
+ #: contact_form.php:594
181
+ msgid "Coming from (referer)"
182
+ msgstr "Da (referente)"
183
+
184
+ #: contact_form.php:303
185
+ #: contact_form.php:599
186
+ msgid "Using (user agent)"
187
+ msgstr "Utilizza (user agent)"
188
+
189
+ #: contact_form.php:307
190
  msgid "Change label for fields of the contact form"
191
  msgstr "Modifica le etichette dei campi del contact form"
192
 
193
+ #: contact_form.php:322
194
  msgid "Save Changes"
195
  msgstr "Salva le modifiche"
196
 
197
+ #: contact_form.php:355
198
  msgid "Thank you for contacting us."
199
  msgstr "Grazie per averci contattato."
200
 
201
+ #: contact_form.php:360
202
  msgid "Sorry, your e-mail could not be delivered."
203
  msgstr "Spiacenti, la tua e-mail non può essere consegnata al momento."
204
 
205
+ #: contact_form.php:417
206
  msgid "You can attach files of the following types"
207
  msgstr "Gli utenti possono allegare i files nei seguenti tipi"
208
 
209
+ #: contact_form.php:423
210
  msgid "Send me a copy"
211
  msgstr "Inviami una copia"
212
 
213
+ #: contact_form.php:433
214
  msgid "Submit"
215
  msgstr "Invia"
216
 
217
+ #: contact_form.php:449
218
  msgid "Your name is required."
219
  msgstr "Il nome è obbligatorio"
220
 
221
+ #: contact_form.php:450
222
  msgid "A proper e-mail address is required."
223
  msgstr "È richiesto un indirizzo e-mail corretto"
224
 
225
+ #: contact_form.php:451
226
  msgid "Subject text is required."
227
  msgstr "L'oggetto è obbligatorio"
228
 
229
+ #: contact_form.php:452
230
  msgid "Message text is required."
231
  msgstr "Il campo messaggio è obbligatorio"
232
 
233
+ #: contact_form.php:453
234
  msgid "Please make corrections below and try again."
235
  msgstr "Controlla i dati del modulo e riprova!"
236
 
237
+ #: contact_form.php:484
238
  msgid "Attachment is broken."
239
  msgstr "L'attachment non è corretto"
240
 
241
+ #: contact_form.php:497
242
  msgid "Please complete the CAPTCHA."
243
  msgstr "Completa il CAPTCHA"
244
 
245
+ #: contact_form.php:607
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
246
  msgid "Contact from"
247
  msgstr "Contact from"
248
 
249
+ #: contact_form.php:612
250
  msgid "Name"
251
  msgstr "Nome"
252
 
253
+ #: contact_form.php:615
254
  msgid "Email"
255
  msgstr "e-mail"
256
 
257
+ #: contact_form.php:618
258
  msgid "Subject"
259
  msgstr "Oggetto"
260
 
261
+ #: contact_form.php:621
262
  msgid "Message"
263
  msgstr "Messaggio"
264
 
265
+ #: contact_form.php:624
266
  msgid "Site"
267
  msgstr "Sito"
268
 
269
+ #: contact_form.php:670
270
  msgid "FAQ"
271
  msgstr "FAQ"
272
 
273
+ #: contact_form.php:671
274
  msgid "Support"
275
  msgstr "Supporto"
276
 
languages/contact_form-lt_LT.mo CHANGED
Binary file
languages/contact_form-lt_LT.po CHANGED
@@ -3,8 +3,8 @@ msgid ""
3
  msgstr ""
4
  "Project-Id-Version: contact_form\n"
5
  "Report-Msgid-Bugs-To: \n"
6
- "POT-Creation-Date: 2012-03-20 19:54+0200\n"
7
- "PO-Revision-Date: 2012-03-20 19:55+0200\n"
8
  "Last-Translator: BWS <zos@bestwebsoft.com>\n"
9
  "Language-Team: Lithuanian <kde-i18n-lt@kde.org>\n"
10
  "MIME-Version: 1.0\n"
@@ -31,8 +31,8 @@ msgid "Read more"
31
  msgstr "Skaityti daugiau"
32
 
33
  #: contact_form.php:78
34
- #: contact_form.php:611
35
- #: contact_form.php:620
36
  msgid "Settings"
37
  msgstr "Nustatymai"
38
 
@@ -62,7 +62,7 @@ msgid "If you have any questions, please contact us via plugin@bestwebsoft.com o
62
  msgstr "Jei turite klausimų, prašome susisiekti su mumis per plugin@bestwebsoft.com arba užpildykite mūsų kontaktų formą mūsų svetainėje"
63
 
64
  #: contact_form.php:108
65
- #: contact_form.php:213
66
  msgid "Contact Form Options"
67
  msgstr "Kontaktų formos parinktys"
68
 
@@ -70,207 +70,211 @@ msgstr "Kontaktų formos parinktys"
70
  msgid "Contact Form"
71
  msgstr "Kontaktų forma"
72
 
73
- #: contact_form.php:129
74
- #: contact_form.php:163
75
- #: contact_form.php:181
76
- #: contact_form.php:277
77
  msgid "Name:"
78
  msgstr "Vardas:"
79
 
80
- #: contact_form.php:130
81
- #: contact_form.php:164
82
- #: contact_form.php:182
83
- #: contact_form.php:278
84
  msgid "E-Mail Address:"
85
  msgstr "El. pašto adresas:"
86
 
87
- #: contact_form.php:131
88
- #: contact_form.php:165
89
- #: contact_form.php:183
90
- #: contact_form.php:279
91
  msgid "Subject:"
92
  msgstr "Tema:"
93
 
94
- #: contact_form.php:132
95
- #: contact_form.php:166
96
- #: contact_form.php:184
97
- #: contact_form.php:280
98
  msgid "Message:"
99
  msgstr "Pranešimas:"
100
 
101
- #: contact_form.php:133
102
- #: contact_form.php:167
103
- #: contact_form.php:185
104
- #: contact_form.php:281
105
  msgid "Attachment:"
106
  msgstr "Priedas:"
107
 
108
- #: contact_form.php:193
109
- #: contact_form.php:202
110
  msgid "Options saved."
111
  msgstr "Parinktys išsaugotos."
112
 
113
- #: contact_form.php:196
114
  msgid "Such user is not exist. Settings are not saved."
115
  msgstr "Toks vartotojas neegzistuoja. Nustatymai neišsaugoti."
116
 
117
- #: contact_form.php:205
118
  msgid "Please input correct email. Settings are not saved."
119
  msgstr "Prašome įrašyti teisingą el. pašto adresą. Nustatymai neįrašyti."
120
 
121
- #: contact_form.php:218
122
  msgid "If you would like to add a Contact Form to your website, just copy and put this shortcode onto your post or page or widget:"
123
  msgstr "Jei norite pridėti kontaktų formą prie savo svetainės, tiesiog nukopijuokite šį trumpą kodą į savo puslapį ar elementą:"
124
 
125
- #: contact_form.php:219
126
  msgid "If information in the below fields are empty then the message will be send to an address which was specified during registration."
127
  msgstr "Jei informacijos žemiau esančiuose laukuose nėra, pranešimas bus išsiųstas adresu, kuris buvo nurodytas prisiregistravimo metu."
128
 
129
- #: contact_form.php:223
130
  msgid "Use email of wordpress user:"
131
  msgstr "Naudoti wordpress vartotojo el. pašto adresą:"
132
 
133
- #: contact_form.php:229
134
  msgid "Select user name"
135
  msgstr "Pasirinkite vartotojo vardą"
136
 
137
- #: contact_form.php:234
138
  msgid "Set a name of user who will get messages from a contact form."
139
  msgstr "Nurodykite vardą vartotojo, kuris gaus pranešimus iš Kontaktų formos."
140
 
141
- #: contact_form.php:238
142
  msgid "Use this email:"
143
  msgstr "Naudoti šį el. pašto adresą:"
144
 
145
- #: contact_form.php:244
146
  msgid "Set an email address which will be used for messages receiving."
147
  msgstr "Nustatykite el. pašto adresą, kuris bus naudojamas pranešimams gauti."
148
 
149
- #: contact_form.php:248
150
  msgid "Additional options"
151
  msgstr "Papildomos parinktys"
152
 
153
- #: contact_form.php:251
154
  msgid "Display Attachment block"
155
  msgstr "Rodyti priedų įrašą"
156
 
157
- #: contact_form.php:256
158
  msgid "Users can attach files of the following types"
159
  msgstr "Vartotojai gali prikabinti šių tipų failus"
160
 
161
- #: contact_form.php:260
162
  msgid "Display Send me a copy block"
163
  msgstr "Rodyti „Siųsti kopiją man“ įrašą"
164
 
165
- #: contact_form.php:266
166
  msgid "Change FROM fields of the contact form"
167
  msgstr "Pakeiskite IŠ srityse kontaktų formos"
168
 
169
- #: contact_form.php:272
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
170
  msgid "Change label for fields of the contact form"
171
  msgstr "Pakeiskite antraštes kontaktų formos etiketėms"
172
 
173
- #: contact_form.php:287
174
  msgid "Save Changes"
175
  msgstr "Įrašyti pakeitimus"
176
 
177
- #: contact_form.php:318
178
  msgid "Thank you for contacting us."
179
  msgstr "Dėkojame, kad su mumis susisiekėte."
180
 
181
- #: contact_form.php:323
182
  msgid "Sorry, your e-mail could not be delivered."
183
  msgstr "Deja, jūsų el. laiško nepavyko pristatyti."
184
 
185
- #: contact_form.php:380
186
  msgid "You can attach files of the following types"
187
  msgstr "Galite prikabinti šių tipų failus"
188
 
189
- #: contact_form.php:386
190
  msgid "Send me a copy"
191
  msgstr "Siųsti kopiją man"
192
 
193
- #: contact_form.php:396
194
  msgid "Submit"
195
  msgstr "Siųsti"
196
 
197
- #: contact_form.php:412
198
  msgid "Your name is required."
199
  msgstr "Būtina įrašyti vardą."
200
 
201
- #: contact_form.php:413
202
  msgid "A proper e-mail address is required."
203
  msgstr "Būtina įrašyti teisingą el. pašto adresą."
204
 
205
- #: contact_form.php:414
206
  msgid "Subject text is required."
207
  msgstr "Būtina įrašyti temą."
208
 
209
- #: contact_form.php:415
210
  msgid "Message text is required."
211
  msgstr "Būtina įrašyti laiško turinį."
212
 
213
- #: contact_form.php:416
214
  msgid "Please make corrections below and try again."
215
  msgstr "Prašome pataisyti laišką ir bandyti iš naujo."
216
 
217
- #: contact_form.php:447
218
  msgid "Attachment is broken."
219
  msgstr "Pridedamas failas sugadintas."
220
 
221
- #: contact_form.php:460
222
  msgid "Please complete the CAPTCHA."
223
  msgstr "Prašome užpildyti CAPTCHA."
224
 
225
- #: contact_form.php:536
226
- #: contact_form.php:570
227
- msgid "Sent from (ip address)"
228
- msgstr "Siųsta iš (ip adresas)"
229
-
230
- #: contact_form.php:537
231
- #: contact_form.php:573
232
- msgid "Date/Time"
233
- msgstr "Data/laikas"
234
-
235
- #: contact_form.php:538
236
- #: contact_form.php:576
237
- msgid "Coming from (referer)"
238
- msgstr "Ateita iš (nukreipiklis)"
239
-
240
- #: contact_form.php:539
241
- #: contact_form.php:579
242
- msgid "Using (user agent)"
243
- msgstr "Naudoja (naršyklės įrašas)"
244
-
245
- #: contact_form.php:544
246
  msgid "Contact from"
247
  msgstr "Kontaktų forma"
248
 
249
- #: contact_form.php:549
250
  msgid "Name"
251
  msgstr "Vardas"
252
 
253
- #: contact_form.php:552
254
  msgid "Email"
255
  msgstr "El. paštas"
256
 
257
- #: contact_form.php:555
258
  msgid "Subject"
259
  msgstr "Tema"
260
 
261
- #: contact_form.php:558
262
  msgid "Message"
263
  msgstr "Tekstas"
264
 
265
- #: contact_form.php:561
266
  msgid "Site"
267
  msgstr "Svetainė"
268
 
269
- #: contact_form.php:621
270
  msgid "FAQ"
271
  msgstr "DUK"
272
 
273
- #: contact_form.php:622
274
  msgid "Support"
275
  msgstr "Palaikymas"
276
 
3
  msgstr ""
4
  "Project-Id-Version: contact_form\n"
5
  "Report-Msgid-Bugs-To: \n"
6
+ "POT-Creation-Date: 2012-03-22 12:55+0200\n"
7
+ "PO-Revision-Date: 2012-03-22 12:55+0200\n"
8
  "Last-Translator: BWS <zos@bestwebsoft.com>\n"
9
  "Language-Team: Lithuanian <kde-i18n-lt@kde.org>\n"
10
  "MIME-Version: 1.0\n"
31
  msgstr "Skaityti daugiau"
32
 
33
  #: contact_form.php:78
34
+ #: contact_form.php:660
35
+ #: contact_form.php:669
36
  msgid "Settings"
37
  msgstr "Nustatymai"
38
 
62
  msgstr "Jei turite klausimų, prašome susisiekti su mumis per plugin@bestwebsoft.com arba užpildykite mūsų kontaktų formą mūsų svetainėje"
63
 
64
  #: contact_form.php:108
65
+ #: contact_form.php:236
66
  msgid "Contact Form Options"
67
  msgstr "Kontaktų formos parinktys"
68
 
70
  msgid "Contact Form"
71
  msgstr "Kontaktų forma"
72
 
73
+ #: contact_form.php:134
74
+ #: contact_form.php:173
75
+ #: contact_form.php:204
76
+ #: contact_form.php:312
77
  msgid "Name:"
78
  msgstr "Vardas:"
79
 
80
+ #: contact_form.php:135
81
+ #: contact_form.php:174
82
+ #: contact_form.php:205
83
+ #: contact_form.php:313
84
  msgid "E-Mail Address:"
85
  msgstr "El. pašto adresas:"
86
 
87
+ #: contact_form.php:136
88
+ #: contact_form.php:175
89
+ #: contact_form.php:206
90
+ #: contact_form.php:314
91
  msgid "Subject:"
92
  msgstr "Tema:"
93
 
94
+ #: contact_form.php:137
95
+ #: contact_form.php:176
96
+ #: contact_form.php:207
97
+ #: contact_form.php:315
98
  msgid "Message:"
99
  msgstr "Pranešimas:"
100
 
101
+ #: contact_form.php:138
102
+ #: contact_form.php:177
103
+ #: contact_form.php:208
104
+ #: contact_form.php:316
105
  msgid "Attachment:"
106
  msgstr "Priedas:"
107
 
108
+ #: contact_form.php:216
109
+ #: contact_form.php:225
110
  msgid "Options saved."
111
  msgstr "Parinktys išsaugotos."
112
 
113
+ #: contact_form.php:219
114
  msgid "Such user is not exist. Settings are not saved."
115
  msgstr "Toks vartotojas neegzistuoja. Nustatymai neišsaugoti."
116
 
117
+ #: contact_form.php:228
118
  msgid "Please input correct email. Settings are not saved."
119
  msgstr "Prašome įrašyti teisingą el. pašto adresą. Nustatymai neįrašyti."
120
 
121
+ #: contact_form.php:241
122
  msgid "If you would like to add a Contact Form to your website, just copy and put this shortcode onto your post or page or widget:"
123
  msgstr "Jei norite pridėti kontaktų formą prie savo svetainės, tiesiog nukopijuokite šį trumpą kodą į savo puslapį ar elementą:"
124
 
125
+ #: contact_form.php:242
126
  msgid "If information in the below fields are empty then the message will be send to an address which was specified during registration."
127
  msgstr "Jei informacijos žemiau esančiuose laukuose nėra, pranešimas bus išsiųstas adresu, kuris buvo nurodytas prisiregistravimo metu."
128
 
129
+ #: contact_form.php:246
130
  msgid "Use email of wordpress user:"
131
  msgstr "Naudoti wordpress vartotojo el. pašto adresą:"
132
 
133
+ #: contact_form.php:252
134
  msgid "Select user name"
135
  msgstr "Pasirinkite vartotojo vardą"
136
 
137
+ #: contact_form.php:257
138
  msgid "Set a name of user who will get messages from a contact form."
139
  msgstr "Nurodykite vardą vartotojo, kuris gaus pranešimus iš Kontaktų formos."
140
 
141
+ #: contact_form.php:261
142
  msgid "Use this email:"
143
  msgstr "Naudoti šį el. pašto adresą:"
144
 
145
+ #: contact_form.php:267
146
  msgid "Set an email address which will be used for messages receiving."
147
  msgstr "Nustatykite el. pašto adresą, kuris bus naudojamas pranešimams gauti."
148
 
149
+ #: contact_form.php:271
150
  msgid "Additional options"
151
  msgstr "Papildomos parinktys"
152
 
153
+ #: contact_form.php:274
154
  msgid "Display Attachment block"
155
  msgstr "Rodyti priedų įrašą"
156
 
157
+ #: contact_form.php:279
158
  msgid "Users can attach files of the following types"
159
  msgstr "Vartotojai gali prikabinti šių tipų failus"
160
 
161
+ #: contact_form.php:283
162
  msgid "Display Send me a copy block"
163
  msgstr "Rodyti „Siųsti kopiją man“ įrašą"
164
 
165
+ #: contact_form.php:289
166
  msgid "Change FROM fields of the contact form"
167
  msgstr "Pakeiskite IŠ srityse kontaktų formos"
168
 
169
+ #: contact_form.php:295
170
+ msgid "Display additional info in email"
171
+ msgstr ""
172
+
173
+ #: contact_form.php:300
174
+ #: contact_form.php:584
175
+ msgid "Sent from (ip address)"
176
+ msgstr "Siųsta iš (ip adresas)"
177
+
178
+ #: contact_form.php:301
179
+ #: contact_form.php:589
180
+ msgid "Date/Time"
181
+ msgstr "Data/laikas"
182
+
183
+ #: contact_form.php:302
184
+ #: contact_form.php:594
185
+ msgid "Coming from (referer)"
186
+ msgstr "Ateita iš (nukreipiklis)"
187
+
188
+ #: contact_form.php:303
189
+ #: contact_form.php:599
190
+ msgid "Using (user agent)"
191
+ msgstr "Naudoja (naršyklės įrašas)"
192
+
193
+ #: contact_form.php:307
194
  msgid "Change label for fields of the contact form"
195
  msgstr "Pakeiskite antraštes kontaktų formos etiketėms"
196
 
197
+ #: contact_form.php:322
198
  msgid "Save Changes"
199
  msgstr "Įrašyti pakeitimus"
200
 
201
+ #: contact_form.php:355
202
  msgid "Thank you for contacting us."
203
  msgstr "Dėkojame, kad su mumis susisiekėte."
204
 
205
+ #: contact_form.php:360
206
  msgid "Sorry, your e-mail could not be delivered."
207
  msgstr "Deja, jūsų el. laiško nepavyko pristatyti."
208
 
209
+ #: contact_form.php:417
210
  msgid "You can attach files of the following types"
211
  msgstr "Galite prikabinti šių tipų failus"
212
 
213
+ #: contact_form.php:423
214
  msgid "Send me a copy"
215
  msgstr "Siųsti kopiją man"
216
 
217
+ #: contact_form.php:433
218
  msgid "Submit"
219
  msgstr "Siųsti"
220
 
221
+ #: contact_form.php:449
222
  msgid "Your name is required."
223
  msgstr "Būtina įrašyti vardą."
224
 
225
+ #: contact_form.php:450
226
  msgid "A proper e-mail address is required."
227
  msgstr "Būtina įrašyti teisingą el. pašto adresą."
228
 
229
+ #: contact_form.php:451
230
  msgid "Subject text is required."
231
  msgstr "Būtina įrašyti temą."
232
 
233
+ #: contact_form.php:452
234
  msgid "Message text is required."
235
  msgstr "Būtina įrašyti laiško turinį."
236
 
237
+ #: contact_form.php:453
238
  msgid "Please make corrections below and try again."
239
  msgstr "Prašome pataisyti laišką ir bandyti iš naujo."
240
 
241
+ #: contact_form.php:484
242
  msgid "Attachment is broken."
243
  msgstr "Pridedamas failas sugadintas."
244
 
245
+ #: contact_form.php:497
246
  msgid "Please complete the CAPTCHA."
247
  msgstr "Prašome užpildyti CAPTCHA."
248
 
249
+ #: contact_form.php:607
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
250
  msgid "Contact from"
251
  msgstr "Kontaktų forma"
252
 
253
+ #: contact_form.php:612
254
  msgid "Name"
255
  msgstr "Vardas"
256
 
257
+ #: contact_form.php:615
258
  msgid "Email"
259
  msgstr "El. paštas"
260
 
261
+ #: contact_form.php:618
262
  msgid "Subject"
263
  msgstr "Tema"
264
 
265
+ #: contact_form.php:621
266
  msgid "Message"
267
  msgstr "Tekstas"
268
 
269
+ #: contact_form.php:624
270
  msgid "Site"
271
  msgstr "Svetainė"
272
 
273
+ #: contact_form.php:670
274
  msgid "FAQ"
275
  msgstr "DUK"
276
 
277
+ #: contact_form.php:671
278
  msgid "Support"
279
  msgstr "Palaikymas"
280
 
languages/contact_form-nb_NO.mo CHANGED
Binary file
languages/contact_form-nb_NO.po CHANGED
@@ -2,8 +2,8 @@ msgid ""
2
  msgstr ""
3
  "Project-Id-Version: contact_form\n"
4
  "Report-Msgid-Bugs-To: \n"
5
- "POT-Creation-Date: 2012-03-20 19:51+0200\n"
6
- "PO-Revision-Date: 2012-03-20 19:52+0200\n"
7
  "Last-Translator: BWS <zos@bestwebsoft.com>\n"
8
  "Language-Team: Thomas Hartung <thartung@adipositas-mm.de>\n"
9
  "MIME-Version: 1.0\n"
@@ -27,8 +27,8 @@ msgid "Read more"
27
  msgstr "Les mer"
28
 
29
  #: contact_form.php:78
30
- #: contact_form.php:611
31
- #: contact_form.php:620
32
  msgid "Settings"
33
  msgstr "Innstilllinger"
34
 
@@ -58,7 +58,7 @@ msgid "If you have any questions, please contact us via plugin@bestwebsoft.com o
58
  msgstr "Hvis du har spørsmål kan du kontakte oss på plugin@bestwebsoft.com eller bruke kontaktskjemaet på hjemmesiden vår"
59
 
60
  #: contact_form.php:108
61
- #: contact_form.php:213
62
  msgid "Contact Form Options"
63
  msgstr "Innstillinger for kontaktskjema"
64
 
@@ -66,207 +66,211 @@ msgstr "Innstillinger for kontaktskjema"
66
  msgid "Contact Form"
67
  msgstr "Kontaktskjema"
68
 
69
- #: contact_form.php:129
70
- #: contact_form.php:163
71
- #: contact_form.php:181
72
- #: contact_form.php:277
73
  msgid "Name:"
74
  msgstr "Navn:"
75
 
76
- #: contact_form.php:130
77
- #: contact_form.php:164
78
- #: contact_form.php:182
79
- #: contact_form.php:278
80
  msgid "E-Mail Address:"
81
  msgstr "Epostadresse:"
82
 
83
- #: contact_form.php:131
84
- #: contact_form.php:165
85
- #: contact_form.php:183
86
- #: contact_form.php:279
87
  msgid "Subject:"
88
  msgstr "Tema:"
89
 
90
- #: contact_form.php:132
91
- #: contact_form.php:166
92
- #: contact_form.php:184
93
- #: contact_form.php:280
94
  msgid "Message:"
95
  msgstr "Melding:"
96
 
97
- #: contact_form.php:133
98
- #: contact_form.php:167
99
- #: contact_form.php:185
100
- #: contact_form.php:281
101
  msgid "Attachment:"
102
  msgstr "Vedlegg:"
103
 
104
- #: contact_form.php:193
105
- #: contact_form.php:202
106
  msgid "Options saved."
107
  msgstr "Innstillinger lagret."
108
 
109
- #: contact_form.php:196
110
  msgid "Such user is not exist. Settings are not saved."
111
  msgstr "Denne brukeren finnes ikke. Innstillingene er ikke lagret."
112
 
113
- #: contact_form.php:205
114
  msgid "Please input correct email. Settings are not saved."
115
  msgstr "Vennligst benytt en korrekt epostadresse. Innstillingene er ikke lagret."
116
 
117
- #: contact_form.php:218
118
  msgid "If you would like to add a Contact Form to your website, just copy and put this shortcode onto your post or page or widget:"
119
  msgstr "Dersom du ønsket å legge til et kontaktskjema på wedsiden din, kopier og put denne koden i kommentaren din eller på siden din: "
120
 
121
- #: contact_form.php:219
122
  msgid "If information in the below fields are empty then the message will be send to an address which was specified during registration."
123
  msgstr "Dersom feltene under er tomme, vil meldingen bli sendt til en adresse som var spesifisert ved registrering."
124
 
125
- #: contact_form.php:223
126
  msgid "Use email of wordpress user:"
127
  msgstr "Benytt eposten til wordpressbruker:"
128
 
129
- #: contact_form.php:229
130
  msgid "Select user name"
131
  msgstr "Velg brukernavn"
132
 
133
- #: contact_form.php:234
134
  msgid "Set a name of user who will get messages from a contact form."
135
  msgstr "Sett et brukernavn for mottaker av meldinger fra kontaktskjemaet"
136
 
137
- #: contact_form.php:238
138
  msgid "Use this email:"
139
  msgstr "Benytt denne epostadressen:"
140
 
141
- #: contact_form.php:244
142
  msgid "Set an email address which will be used for messages receiving."
143
  msgstr "Sett en epostadresse som skal benyttes for å motta meldinger."
144
 
145
- #: contact_form.php:248
146
  msgid "Additional options"
147
  msgstr "Flere valg"
148
 
149
- #: contact_form.php:251
150
  msgid "Display Attachment block"
151
  msgstr "Vis vedlegg"
152
 
153
- #: contact_form.php:256
154
  msgid "Users can attach files of the following types"
155
  msgstr "Brukere kan legge ved filer av følgende typer"
156
 
157
- #: contact_form.php:260
158
  msgid "Display Send me a copy block"
159
  msgstr "Vis send meg en kopi"
160
 
161
- #: contact_form.php:266
162
  msgid "Change FROM fields of the contact form"
163
  msgstr "Endring fra feltene i kontaktskjemaet"
164
 
165
- #: contact_form.php:272
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
166
  msgid "Change label for fields of the contact form"
167
  msgstr "Forandre etikett for felter i kontaktskjemaet"
168
 
169
- #: contact_form.php:287
170
  msgid "Save Changes"
171
  msgstr "Lagre endringer"
172
 
173
- #: contact_form.php:318
174
  msgid "Thank you for contacting us."
175
  msgstr "Takk for at du tok kontakt med oss"
176
 
177
- #: contact_form.php:323
178
  msgid "Sorry, your e-mail could not be delivered."
179
  msgstr "Beklager, eposten din kunne ikke leveres."
180
 
181
- #: contact_form.php:380
182
  msgid "You can attach files of the following types"
183
  msgstr "Du kan legge til filer av følgende typer"
184
 
185
- #: contact_form.php:386
186
  msgid "Send me a copy"
187
  msgstr "Send meg en kopi"
188
 
189
- #: contact_form.php:396
190
  msgid "Submit"
191
  msgstr "Send"
192
 
193
- #: contact_form.php:412
194
  msgid "Your name is required."
195
  msgstr "Navnet ditt er påkrevet."
196
 
197
- #: contact_form.php:413
198
  msgid "A proper e-mail address is required."
199
  msgstr "En korrekt epostadresse er påkrevet."
200
 
201
- #: contact_form.php:414
202
  msgid "Subject text is required."
203
  msgstr "Tekst i temafeltet er påkrevet."
204
 
205
- #: contact_form.php:415
206
  msgid "Message text is required."
207
  msgstr "Tekst i meldingsfeltet er påkrevet"
208
 
209
- #: contact_form.php:416
210
  msgid "Please make corrections below and try again."
211
  msgstr "Vennligst gjør endringer nedenfor og forsøk igjen."
212
 
213
- #: contact_form.php:447
214
  msgid "Attachment is broken."
215
  msgstr "Vedlegget fungerer ikke."
216
 
217
- #: contact_form.php:460
218
  msgid "Please complete the CAPTCHA."
219
  msgstr "Vennligst fyll ut CAPTCHA"
220
 
221
- #: contact_form.php:536
222
- #: contact_form.php:570
223
- msgid "Sent from (ip address)"
224
- msgstr "Sendt fra (IP-adresse)"
225
-
226
- #: contact_form.php:537
227
- #: contact_form.php:573
228
- msgid "Date/Time"
229
- msgstr "Dato/tid"
230
-
231
- #: contact_form.php:538
232
- #: contact_form.php:576
233
- msgid "Coming from (referer)"
234
- msgstr "Sendt fra (referent)"
235
-
236
- #: contact_form.php:539
237
- #: contact_form.php:579
238
- msgid "Using (user agent)"
239
- msgstr "med (user agent)"
240
-
241
- #: contact_form.php:544
242
  msgid "Contact from"
243
  msgstr "Kontakt fra"
244
 
245
- #: contact_form.php:549
246
  msgid "Name"
247
  msgstr "Navn"
248
 
249
- #: contact_form.php:552
250
  msgid "Email"
251
  msgstr "Epost"
252
 
253
- #: contact_form.php:555
254
  msgid "Subject"
255
  msgstr "Tema"
256
 
257
- #: contact_form.php:558
258
  msgid "Message"
259
  msgstr "Melding"
260
 
261
- #: contact_form.php:561
262
  msgid "Site"
263
  msgstr "Site"
264
 
265
- #: contact_form.php:621
266
  msgid "FAQ"
267
  msgstr "Vanlige spørsmål"
268
 
269
- #: contact_form.php:622
270
  msgid "Support"
271
  msgstr "Support"
272
 
2
  msgstr ""
3
  "Project-Id-Version: contact_form\n"
4
  "Report-Msgid-Bugs-To: \n"
5
+ "POT-Creation-Date: 2012-03-22 12:55+0200\n"
6
+ "PO-Revision-Date: 2012-03-22 12:55+0200\n"
7
  "Last-Translator: BWS <zos@bestwebsoft.com>\n"
8
  "Language-Team: Thomas Hartung <thartung@adipositas-mm.de>\n"
9
  "MIME-Version: 1.0\n"
27
  msgstr "Les mer"
28
 
29
  #: contact_form.php:78
30
+ #: contact_form.php:660
31
+ #: contact_form.php:669
32
  msgid "Settings"
33
  msgstr "Innstilllinger"
34
 
58
  msgstr "Hvis du har spørsmål kan du kontakte oss på plugin@bestwebsoft.com eller bruke kontaktskjemaet på hjemmesiden vår"
59
 
60
  #: contact_form.php:108
61
+ #: contact_form.php:236
62
  msgid "Contact Form Options"
63
  msgstr "Innstillinger for kontaktskjema"
64
 
66
  msgid "Contact Form"
67
  msgstr "Kontaktskjema"
68
 
69
+ #: contact_form.php:134
70
+ #: contact_form.php:173
71
+ #: contact_form.php:204
72
+ #: contact_form.php:312
73
  msgid "Name:"
74
  msgstr "Navn:"
75
 
76
+ #: contact_form.php:135
77
+ #: contact_form.php:174
78
+ #: contact_form.php:205
79
+ #: contact_form.php:313
80
  msgid "E-Mail Address:"
81
  msgstr "Epostadresse:"
82
 
83
+ #: contact_form.php:136
84
+ #: contact_form.php:175
85
+ #: contact_form.php:206
86
+ #: contact_form.php:314
87
  msgid "Subject:"
88
  msgstr "Tema:"
89
 
90
+ #: contact_form.php:137
91
+ #: contact_form.php:176
92
+ #: contact_form.php:207
93
+ #: contact_form.php:315
94
  msgid "Message:"
95
  msgstr "Melding:"
96
 
97
+ #: contact_form.php:138
98
+ #: contact_form.php:177
99
+ #: contact_form.php:208
100
+ #: contact_form.php:316
101
  msgid "Attachment:"
102
  msgstr "Vedlegg:"
103
 
104
+ #: contact_form.php:216
105
+ #: contact_form.php:225
106
  msgid "Options saved."
107
  msgstr "Innstillinger lagret."
108
 
109
+ #: contact_form.php:219
110
  msgid "Such user is not exist. Settings are not saved."
111
  msgstr "Denne brukeren finnes ikke. Innstillingene er ikke lagret."
112
 
113
+ #: contact_form.php:228
114
  msgid "Please input correct email. Settings are not saved."
115
  msgstr "Vennligst benytt en korrekt epostadresse. Innstillingene er ikke lagret."
116
 
117
+ #: contact_form.php:241
118
  msgid "If you would like to add a Contact Form to your website, just copy and put this shortcode onto your post or page or widget:"
119
  msgstr "Dersom du ønsket å legge til et kontaktskjema på wedsiden din, kopier og put denne koden i kommentaren din eller på siden din: "
120
 
121
+ #: contact_form.php:242
122
  msgid "If information in the below fields are empty then the message will be send to an address which was specified during registration."
123
  msgstr "Dersom feltene under er tomme, vil meldingen bli sendt til en adresse som var spesifisert ved registrering."
124
 
125
+ #: contact_form.php:246
126
  msgid "Use email of wordpress user:"
127
  msgstr "Benytt eposten til wordpressbruker:"
128
 
129
+ #: contact_form.php:252
130
  msgid "Select user name"
131
  msgstr "Velg brukernavn"
132
 
133
+ #: contact_form.php:257
134
  msgid "Set a name of user who will get messages from a contact form."
135
  msgstr "Sett et brukernavn for mottaker av meldinger fra kontaktskjemaet"
136
 
137
+ #: contact_form.php:261
138
  msgid "Use this email:"
139
  msgstr "Benytt denne epostadressen:"
140
 
141
+ #: contact_form.php:267
142
  msgid "Set an email address which will be used for messages receiving."
143
  msgstr "Sett en epostadresse som skal benyttes for å motta meldinger."
144
 
145
+ #: contact_form.php:271
146
  msgid "Additional options"
147
  msgstr "Flere valg"
148
 
149
+ #: contact_form.php:274
150
  msgid "Display Attachment block"
151
  msgstr "Vis vedlegg"
152
 
153
+ #: contact_form.php:279
154
  msgid "Users can attach files of the following types"
155
  msgstr "Brukere kan legge ved filer av følgende typer"
156
 
157
+ #: contact_form.php:283
158
  msgid "Display Send me a copy block"
159
  msgstr "Vis send meg en kopi"
160
 
161
+ #: contact_form.php:289
162
  msgid "Change FROM fields of the contact form"
163
  msgstr "Endring fra feltene i kontaktskjemaet"
164
 
165
+ #: contact_form.php:295
166
+ msgid "Display additional info in email"
167
+ msgstr ""
168
+
169
+ #: contact_form.php:300
170
+ #: contact_form.php:584
171
+ msgid "Sent from (ip address)"
172
+ msgstr "Sendt fra (IP-adresse)"
173
+
174
+ #: contact_form.php:301
175
+ #: contact_form.php:589
176
+ msgid "Date/Time"
177
+ msgstr "Dato/tid"
178
+
179
+ #: contact_form.php:302
180
+ #: contact_form.php:594
181
+ msgid "Coming from (referer)"
182
+ msgstr "Sendt fra (referent)"
183
+
184
+ #: contact_form.php:303
185
+ #: contact_form.php:599
186
+ msgid "Using (user agent)"
187
+ msgstr "med (user agent)"
188
+
189
+ #: contact_form.php:307
190
  msgid "Change label for fields of the contact form"
191
  msgstr "Forandre etikett for felter i kontaktskjemaet"
192
 
193
+ #: contact_form.php:322
194
  msgid "Save Changes"
195
  msgstr "Lagre endringer"
196
 
197
+ #: contact_form.php:355
198
  msgid "Thank you for contacting us."
199
  msgstr "Takk for at du tok kontakt med oss"
200
 
201
+ #: contact_form.php:360
202
  msgid "Sorry, your e-mail could not be delivered."
203
  msgstr "Beklager, eposten din kunne ikke leveres."
204
 
205
+ #: contact_form.php:417
206
  msgid "You can attach files of the following types"
207
  msgstr "Du kan legge til filer av følgende typer"
208
 
209
+ #: contact_form.php:423
210
  msgid "Send me a copy"
211
  msgstr "Send meg en kopi"
212
 
213
+ #: contact_form.php:433
214
  msgid "Submit"
215
  msgstr "Send"
216
 
217
+ #: contact_form.php:449
218
  msgid "Your name is required."
219
  msgstr "Navnet ditt er påkrevet."
220
 
221
+ #: contact_form.php:450
222
  msgid "A proper e-mail address is required."
223
  msgstr "En korrekt epostadresse er påkrevet."
224
 
225
+ #: contact_form.php:451
226
  msgid "Subject text is required."
227
  msgstr "Tekst i temafeltet er påkrevet."
228
 
229
+ #: contact_form.php:452
230
  msgid "Message text is required."
231
  msgstr "Tekst i meldingsfeltet er påkrevet"
232
 
233
+ #: contact_form.php:453
234
  msgid "Please make corrections below and try again."
235
  msgstr "Vennligst gjør endringer nedenfor og forsøk igjen."
236
 
237
+ #: contact_form.php:484
238
  msgid "Attachment is broken."
239
  msgstr "Vedlegget fungerer ikke."
240
 
241
+ #: contact_form.php:497
242
  msgid "Please complete the CAPTCHA."
243
  msgstr "Vennligst fyll ut CAPTCHA"
244
 
245
+ #: contact_form.php:607
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
246
  msgid "Contact from"
247
  msgstr "Kontakt fra"
248
 
249
+ #: contact_form.php:612
250
  msgid "Name"
251
  msgstr "Navn"
252
 
253
+ #: contact_form.php:615
254
  msgid "Email"
255
  msgstr "Epost"
256
 
257
+ #: contact_form.php:618
258
  msgid "Subject"
259
  msgstr "Tema"
260
 
261
+ #: contact_form.php:621
262
  msgid "Message"
263
  msgstr "Melding"
264
 
265
+ #: contact_form.php:624
266
  msgid "Site"
267
  msgstr "Site"
268
 
269
+ #: contact_form.php:670
270
  msgid "FAQ"
271
  msgstr "Vanlige spørsmål"
272
 
273
+ #: contact_form.php:671
274
  msgid "Support"
275
  msgstr "Support"
276
 
languages/contact_form-nl_NL.mo CHANGED
Binary file
languages/contact_form-nl_NL.po CHANGED
@@ -2,8 +2,8 @@ msgid ""
2
  msgstr ""
3
  "Project-Id-Version: contact_form\n"
4
  "Report-Msgid-Bugs-To: \n"
5
- "POT-Creation-Date: 2012-03-20 19:50+0200\n"
6
- "PO-Revision-Date: 2012-03-20 19:51+0200\n"
7
  "Last-Translator: BWS <zos@bestwebsoft.com>\n"
8
  "Language-Team: Thomas Hartung <thartung@adipositas-mm.de>\n"
9
  "MIME-Version: 1.0\n"
@@ -27,8 +27,8 @@ msgid "Read more"
27
  msgstr "Lees verder"
28
 
29
  #: contact_form.php:78
30
- #: contact_form.php:611
31
- #: contact_form.php:620
32
  msgid "Settings"
33
  msgstr "Instellingen"
34
 
@@ -58,7 +58,7 @@ msgid "If you have any questions, please contact us via plugin@bestwebsoft.com o
58
  msgstr "Mocht je nog vragen hebben stuur dan een email naar plugin@bestwebsoft.com of vul het contactformulier op onze website in."
59
 
60
  #: contact_form.php:108
61
- #: contact_form.php:213
62
  msgid "Contact Form Options"
63
  msgstr "Contact Form Opties"
64
 
@@ -66,207 +66,211 @@ msgstr "Contact Form Opties"
66
  msgid "Contact Form"
67
  msgstr "Contact Form"
68
 
69
- #: contact_form.php:129
70
- #: contact_form.php:163
71
- #: contact_form.php:181
72
- #: contact_form.php:277
73
  msgid "Name:"
74
  msgstr "Naam:"
75
 
76
- #: contact_form.php:130
77
- #: contact_form.php:164
78
- #: contact_form.php:182
79
- #: contact_form.php:278
80
  msgid "E-Mail Address:"
81
  msgstr "Email adres:"
82
 
83
- #: contact_form.php:131
84
- #: contact_form.php:165
85
- #: contact_form.php:183
86
- #: contact_form.php:279
87
  msgid "Subject:"
88
  msgstr "Onderwerp:"
89
 
90
- #: contact_form.php:132
91
- #: contact_form.php:166
92
- #: contact_form.php:184
93
- #: contact_form.php:280
94
  msgid "Message:"
95
  msgstr "Bericht:"
96
 
97
- #: contact_form.php:133
98
- #: contact_form.php:167
99
- #: contact_form.php:185
100
- #: contact_form.php:281
101
  msgid "Attachment:"
102
  msgstr "Bijlage:"
103
 
104
- #: contact_form.php:193
105
- #: contact_form.php:202
106
  msgid "Options saved."
107
  msgstr "Instellingen opgeslagen."
108
 
109
- #: contact_form.php:196
110
  msgid "Such user is not exist. Settings are not saved."
111
  msgstr "Deze gebruiker bestaat niet. Instellingen zijn niet opgeslagen."
112
 
113
- #: contact_form.php:205
114
  msgid "Please input correct email. Settings are not saved."
115
  msgstr "Geef een geldig email adres op. Instellingen zijn niet opgeslagen."
116
 
117
- #: contact_form.php:218
118
  msgid "If you would like to add a Contact Form to your website, just copy and put this shortcode onto your post or page or widget:"
119
  msgstr "Als je een Contact Form aan je website wil toevoegen, kopieer dan deze code in je bericht op op je pagina of widget:"
120
 
121
- #: contact_form.php:219
122
  msgid "If information in the below fields are empty then the message will be send to an address which was specified during registration."
123
  msgstr "Als het onderstaande veld leeg blijft, dan zal het bericht gestuurd worden aan het adres dat is gespecificeerd tijdens de registratie."
124
 
125
- #: contact_form.php:223
126
  msgid "Use email of wordpress user:"
127
  msgstr "Gebruik het email adres van de Wordpress gebruiker:"
128
 
129
- #: contact_form.php:229
130
  msgid "Select user name"
131
  msgstr "Kies gebruikersnaam"
132
 
133
- #: contact_form.php:234
134
  msgid "Set a name of user who will get messages from a contact form."
135
  msgstr "Voer de naam in van de gebruiker die berichten van dit contact formulier moet ontvangen."
136
 
137
- #: contact_form.php:238
138
  msgid "Use this email:"
139
  msgstr "Gebruik dit email adres:"
140
 
141
- #: contact_form.php:244
142
  msgid "Set an email address which will be used for messages receiving."
143
  msgstr "Geef een email adres op waar de berichten naar verstuurd worden."
144
 
145
- #: contact_form.php:248
146
  msgid "Additional options"
147
  msgstr "Extra opties"
148
 
149
- #: contact_form.php:251
150
  msgid "Display Attachment block"
151
  msgstr "Bijlages toestaan"
152
 
153
- #: contact_form.php:256
154
  msgid "Users can attach files of the following types"
155
  msgstr "Gebruikers kunnen de volgende bestandtypen toevoegen"
156
 
157
- #: contact_form.php:260
158
  msgid "Display Send me a copy block"
159
  msgstr "Geef \"Kopie aan mij sturen\" weer"
160
 
161
- #: contact_form.php:266
162
  msgid "Change FROM fields of the contact form"
163
  msgstr "Veranderen van velden van het contactformulier"
164
 
165
- #: contact_form.php:272
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
166
  msgid "Change label for fields of the contact form"
167
  msgstr "Verander de namen van de labels"
168
 
169
- #: contact_form.php:287
170
  msgid "Save Changes"
171
  msgstr "Bewaar veranderingen"
172
 
173
- #: contact_form.php:318
174
  msgid "Thank you for contacting us."
175
  msgstr "Bedankt voor uw bericht."
176
 
177
- #: contact_form.php:323
178
  msgid "Sorry, your e-mail could not be delivered."
179
  msgstr "Sorry, uw bericht kon niet worden verstuurd."
180
 
181
- #: contact_form.php:380
182
  msgid "You can attach files of the following types"
183
  msgstr "Bestanden van het volgende formaten kunnen worden bijgesloten"
184
 
185
- #: contact_form.php:386
186
  msgid "Send me a copy"
187
  msgstr "Kopie aan mij sturen"
188
 
189
- #: contact_form.php:396
190
  msgid "Submit"
191
  msgstr "Versturen"
192
 
193
- #: contact_form.php:412
194
  msgid "Your name is required."
195
  msgstr "U bent vergeten uw naam op te geven"
196
 
197
- #: contact_form.php:413
198
  msgid "A proper e-mail address is required."
199
  msgstr "U bent vergeten uw emailadres op te geven"
200
 
201
- #: contact_form.php:414
202
  msgid "Subject text is required."
203
  msgstr "U bent vergeten een onderwerp op te geven"
204
 
205
- #: contact_form.php:415
206
  msgid "Message text is required."
207
  msgstr "U bent vergeten een bericht op te geven"
208
 
209
- #: contact_form.php:416
210
  msgid "Please make corrections below and try again."
211
  msgstr "Vul alle vereiste informatie in en probeer het opnieuw."
212
 
213
- #: contact_form.php:447
214
  msgid "Attachment is broken."
215
  msgstr "Bijlage is beschadigd."
216
 
217
- #: contact_form.php:460
218
  msgid "Please complete the CAPTCHA."
219
  msgstr "Vul de CAPTCHA in."
220
 
221
- #: contact_form.php:536
222
- #: contact_form.php:570
223
- msgid "Sent from (ip address)"
224
- msgstr "Verstuurd van (IP-adres)"
225
-
226
- #: contact_form.php:537
227
- #: contact_form.php:573
228
- msgid "Date/Time"
229
- msgstr "Datum/Tijd"
230
-
231
- #: contact_form.php:538
232
- #: contact_form.php:576
233
- msgid "Coming from (referer)"
234
- msgstr "Verstuurd vanaf (referer)"
235
-
236
- #: contact_form.php:539
237
- #: contact_form.php:579
238
- msgid "Using (user agent)"
239
- msgstr "Met (user agent)"
240
-
241
- #: contact_form.php:544
242
  msgid "Contact from"
243
  msgstr "Contact van"
244
 
245
- #: contact_form.php:549
246
  msgid "Name"
247
  msgstr "Naam"
248
 
249
- #: contact_form.php:552
250
  msgid "Email"
251
  msgstr "Email"
252
 
253
- #: contact_form.php:555
254
  msgid "Subject"
255
  msgstr "Onderwerp"
256
 
257
- #: contact_form.php:558
258
  msgid "Message"
259
  msgstr "Bericht"
260
 
261
- #: contact_form.php:561
262
  msgid "Site"
263
  msgstr "Website"
264
 
265
- #: contact_form.php:621
266
  msgid "FAQ"
267
  msgstr "Veel gestelde vragen (FAQ)"
268
 
269
- #: contact_form.php:622
270
  msgid "Support"
271
  msgstr "Support"
272
 
2
  msgstr ""
3
  "Project-Id-Version: contact_form\n"
4
  "Report-Msgid-Bugs-To: \n"
5
+ "POT-Creation-Date: 2012-03-22 12:55+0200\n"
6
+ "PO-Revision-Date: 2012-03-22 12:55+0200\n"
7
  "Last-Translator: BWS <zos@bestwebsoft.com>\n"
8
  "Language-Team: Thomas Hartung <thartung@adipositas-mm.de>\n"
9
  "MIME-Version: 1.0\n"
27
  msgstr "Lees verder"
28
 
29
  #: contact_form.php:78
30
+ #: contact_form.php:660
31
+ #: contact_form.php:669
32
  msgid "Settings"
33
  msgstr "Instellingen"
34
 
58
  msgstr "Mocht je nog vragen hebben stuur dan een email naar plugin@bestwebsoft.com of vul het contactformulier op onze website in."
59
 
60
  #: contact_form.php:108
61
+ #: contact_form.php:236
62
  msgid "Contact Form Options"
63
  msgstr "Contact Form Opties"
64
 
66
  msgid "Contact Form"
67
  msgstr "Contact Form"
68
 
69
+ #: contact_form.php:134
70
+ #: contact_form.php:173
71
+ #: contact_form.php:204
72
+ #: contact_form.php:312
73
  msgid "Name:"
74
  msgstr "Naam:"
75
 
76
+ #: contact_form.php:135
77
+ #: contact_form.php:174
78
+ #: contact_form.php:205
79
+ #: contact_form.php:313
80
  msgid "E-Mail Address:"
81
  msgstr "Email adres:"
82
 
83
+ #: contact_form.php:136
84
+ #: contact_form.php:175
85
+ #: contact_form.php:206
86
+ #: contact_form.php:314
87
  msgid "Subject:"
88
  msgstr "Onderwerp:"
89
 
90
+ #: contact_form.php:137
91
+ #: contact_form.php:176
92
+ #: contact_form.php:207
93
+ #: contact_form.php:315
94
  msgid "Message:"
95
  msgstr "Bericht:"
96
 
97
+ #: contact_form.php:138
98
+ #: contact_form.php:177
99
+ #: contact_form.php:208
100
+ #: contact_form.php:316
101
  msgid "Attachment:"
102
  msgstr "Bijlage:"
103
 
104
+ #: contact_form.php:216
105
+ #: contact_form.php:225
106
  msgid "Options saved."
107
  msgstr "Instellingen opgeslagen."
108
 
109
+ #: contact_form.php:219
110
  msgid "Such user is not exist. Settings are not saved."
111
  msgstr "Deze gebruiker bestaat niet. Instellingen zijn niet opgeslagen."
112
 
113
+ #: contact_form.php:228
114
  msgid "Please input correct email. Settings are not saved."
115
  msgstr "Geef een geldig email adres op. Instellingen zijn niet opgeslagen."
116
 
117
+ #: contact_form.php:241
118
  msgid "If you would like to add a Contact Form to your website, just copy and put this shortcode onto your post or page or widget:"
119
  msgstr "Als je een Contact Form aan je website wil toevoegen, kopieer dan deze code in je bericht op op je pagina of widget:"
120
 
121
+ #: contact_form.php:242
122
  msgid "If information in the below fields are empty then the message will be send to an address which was specified during registration."
123
  msgstr "Als het onderstaande veld leeg blijft, dan zal het bericht gestuurd worden aan het adres dat is gespecificeerd tijdens de registratie."
124
 
125
+ #: contact_form.php:246
126
  msgid "Use email of wordpress user:"
127
  msgstr "Gebruik het email adres van de Wordpress gebruiker:"
128
 
129
+ #: contact_form.php:252
130
  msgid "Select user name"
131
  msgstr "Kies gebruikersnaam"
132
 
133
+ #: contact_form.php:257
134
  msgid "Set a name of user who will get messages from a contact form."
135
  msgstr "Voer de naam in van de gebruiker die berichten van dit contact formulier moet ontvangen."
136
 
137
+ #: contact_form.php:261
138
  msgid "Use this email:"
139
  msgstr "Gebruik dit email adres:"
140
 
141
+ #: contact_form.php:267
142
  msgid "Set an email address which will be used for messages receiving."
143
  msgstr "Geef een email adres op waar de berichten naar verstuurd worden."
144
 
145
+ #: contact_form.php:271
146
  msgid "Additional options"
147
  msgstr "Extra opties"
148
 
149
+ #: contact_form.php:274
150
  msgid "Display Attachment block"
151
  msgstr "Bijlages toestaan"
152
 
153
+ #: contact_form.php:279
154
  msgid "Users can attach files of the following types"
155
  msgstr "Gebruikers kunnen de volgende bestandtypen toevoegen"
156
 
157
+ #: contact_form.php:283
158
  msgid "Display Send me a copy block"
159
  msgstr "Geef \"Kopie aan mij sturen\" weer"
160
 
161
+ #: contact_form.php:289
162
  msgid "Change FROM fields of the contact form"
163
  msgstr "Veranderen van velden van het contactformulier"
164
 
165
+ #: contact_form.php:295
166
+ msgid "Display additional info in email"
167
+ msgstr ""
168
+
169
+ #: contact_form.php:300
170
+ #: contact_form.php:584
171
+ msgid "Sent from (ip address)"
172
+ msgstr "Verstuurd van (IP-adres)"
173
+
174
+ #: contact_form.php:301
175
+ #: contact_form.php:589
176
+ msgid "Date/Time"
177
+ msgstr "Datum/Tijd"
178
+
179
+ #: contact_form.php:302
180
+ #: contact_form.php:594
181
+ msgid "Coming from (referer)"
182
+ msgstr "Verstuurd vanaf (referer)"
183
+
184
+ #: contact_form.php:303
185
+ #: contact_form.php:599
186
+ msgid "Using (user agent)"
187
+ msgstr "Met (user agent)"
188
+
189
+ #: contact_form.php:307
190
  msgid "Change label for fields of the contact form"
191
  msgstr "Verander de namen van de labels"
192
 
193
+ #: contact_form.php:322
194
  msgid "Save Changes"
195
  msgstr "Bewaar veranderingen"
196
 
197
+ #: contact_form.php:355
198
  msgid "Thank you for contacting us."
199
  msgstr "Bedankt voor uw bericht."
200
 
201
+ #: contact_form.php:360
202
  msgid "Sorry, your e-mail could not be delivered."
203
  msgstr "Sorry, uw bericht kon niet worden verstuurd."
204
 
205
+ #: contact_form.php:417
206
  msgid "You can attach files of the following types"
207
  msgstr "Bestanden van het volgende formaten kunnen worden bijgesloten"
208
 
209
+ #: contact_form.php:423
210
  msgid "Send me a copy"
211
  msgstr "Kopie aan mij sturen"
212
 
213
+ #: contact_form.php:433
214
  msgid "Submit"
215
  msgstr "Versturen"
216
 
217
+ #: contact_form.php:449
218
  msgid "Your name is required."
219
  msgstr "U bent vergeten uw naam op te geven"
220
 
221
+ #: contact_form.php:450
222
  msgid "A proper e-mail address is required."
223
  msgstr "U bent vergeten uw emailadres op te geven"
224
 
225
+ #: contact_form.php:451
226
  msgid "Subject text is required."
227
  msgstr "U bent vergeten een onderwerp op te geven"
228
 
229
+ #: contact_form.php:452
230
  msgid "Message text is required."
231
  msgstr "U bent vergeten een bericht op te geven"
232
 
233
+ #: contact_form.php:453
234
  msgid "Please make corrections below and try again."
235
  msgstr "Vul alle vereiste informatie in en probeer het opnieuw."
236
 
237
+ #: contact_form.php:484
238
  msgid "Attachment is broken."
239
  msgstr "Bijlage is beschadigd."
240
 
241
+ #: contact_form.php:497
242
  msgid "Please complete the CAPTCHA."
243
  msgstr "Vul de CAPTCHA in."
244
 
245
+ #: contact_form.php:607
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
246
  msgid "Contact from"
247
  msgstr "Contact van"
248
 
249
+ #: contact_form.php:612
250
  msgid "Name"
251
  msgstr "Naam"
252
 
253
+ #: contact_form.php:615
254
  msgid "Email"
255
  msgstr "Email"
256
 
257
+ #: contact_form.php:618
258
  msgid "Subject"
259
  msgstr "Onderwerp"
260
 
261
+ #: contact_form.php:621
262
  msgid "Message"
263
  msgstr "Bericht"
264
 
265
+ #: contact_form.php:624
266
  msgid "Site"
267
  msgstr "Website"
268
 
269
+ #: contact_form.php:670
270
  msgid "FAQ"
271
  msgstr "Veel gestelde vragen (FAQ)"
272
 
273
+ #: contact_form.php:671
274
  msgid "Support"
275
  msgstr "Support"
276
 
languages/contact_form-pl_PL.mo CHANGED
Binary file
languages/contact_form-pl_PL.po CHANGED
@@ -2,8 +2,8 @@ msgid ""
2
  msgstr ""
3
  "Project-Id-Version: Contact Form Plugin v3.05\n"
4
  "Report-Msgid-Bugs-To: \n"
5
- "POT-Creation-Date: 2012-03-20 19:50+0200\n"
6
- "PO-Revision-Date: 2012-03-20 19:50+0200\n"
7
  "Last-Translator: BWS <zos@bestwebsoft.com>\n"
8
  "Language-Team: \n"
9
  "MIME-Version: 1.0\n"
@@ -32,8 +32,8 @@ msgstr "Czytaj więcej"
32
 
33
  # @ contact_form
34
  #: contact_form.php:78
35
- #: contact_form.php:611
36
- #: contact_form.php:620
37
  msgid "Settings"
38
  msgstr "Ustawienia"
39
 
@@ -70,7 +70,7 @@ msgstr "Jeśli masz pytania, napisz na adres plugin@bestwebsoft.com lub skorzyst
70
 
71
  # @ contact_form
72
  #: contact_form.php:108
73
- #: contact_form.php:213
74
  msgid "Contact Form Options"
75
  msgstr "Opcje Contact Form"
76
 
@@ -80,252 +80,256 @@ msgid "Contact Form"
80
  msgstr "Contact Form"
81
 
82
  # @ contact_form
83
- #: contact_form.php:129
84
- #: contact_form.php:163
85
- #: contact_form.php:181
86
- #: contact_form.php:277
87
  msgid "Name:"
88
  msgstr "Imię:"
89
 
90
  # @ contact_form
91
- #: contact_form.php:130
92
- #: contact_form.php:164
93
- #: contact_form.php:182
94
- #: contact_form.php:278
95
  msgid "E-Mail Address:"
96
  msgstr "Adres e-mail"
97
 
98
  # @ contact_form
99
- #: contact_form.php:131
100
- #: contact_form.php:165
101
- #: contact_form.php:183
102
- #: contact_form.php:279
103
  msgid "Subject:"
104
  msgstr "Temat:"
105
 
106
  # @ contact_form
107
- #: contact_form.php:132
108
- #: contact_form.php:166
109
- #: contact_form.php:184
110
- #: contact_form.php:280
111
  msgid "Message:"
112
  msgstr "Treść wiadomości:"
113
 
114
  # @ contact_form
115
- #: contact_form.php:133
116
- #: contact_form.php:167
117
- #: contact_form.php:185
118
- #: contact_form.php:281
119
  msgid "Attachment:"
120
  msgstr "Załączniki:"
121
 
122
  # @ contact_form
123
- #: contact_form.php:193
124
- #: contact_form.php:202
125
  msgid "Options saved."
126
  msgstr "Opcje zapisano"
127
 
128
  # @ contact_form
129
- #: contact_form.php:196
130
  msgid "Such user is not exist. Settings are not saved."
131
  msgstr "Nie ma takiego użytkownika. Ustawienia nie zostały zapisane."
132
 
133
  # @ contact_form
134
- #: contact_form.php:205
135
  msgid "Please input correct email. Settings are not saved."
136
  msgstr "Proszę wpisać prawidłowy e-mail. Ustawienia nie zostały zapisane."
137
 
138
  # @ contact_form
139
- #: contact_form.php:218
140
  msgid "If you would like to add a Contact Form to your website, just copy and put this shortcode onto your post or page or widget:"
141
  msgstr "Jeśli chcesz dodać formularz do swojej strony, po prostu skopiuj ten kod i wklej go do wpisu lub treści strony lub Widget:"
142
 
143
  # @ contact_form
144
- #: contact_form.php:219
145
  msgid "If information in the below fields are empty then the message will be send to an address which was specified during registration."
146
  msgstr "Jeśli poniższe pola zostaną puste, wiadomość zostanie wysłana na adres podany podczas rejestracji."
147
 
148
  # @ contact_form
149
- #: contact_form.php:223
150
  msgid "Use email of wordpress user:"
151
  msgstr "Użyj adresu e-mail użytkownika:"
152
 
153
  # @ contact_form
154
- #: contact_form.php:229
155
  msgid "Select user name"
156
  msgstr "Wybierz użytkownika"
157
 
158
  # @ contact_form
159
- #: contact_form.php:234
160
  msgid "Set a name of user who will get messages from a contact form."
161
  msgstr "Wybierz użytkownika, który będzie dostawał wiadomości z formularza."
162
 
163
  # @ contact_form
164
- #: contact_form.php:238
165
  msgid "Use this email:"
166
  msgstr "Wybierz ten e-mail:"
167
 
168
  # @ contact_form
169
- #: contact_form.php:244
170
  msgid "Set an email address which will be used for messages receiving."
171
  msgstr "Ustaw adres e-mail, który będzie używany do odbierania wiadomości."
172
 
173
  # @ contact_form
174
- #: contact_form.php:248
175
  msgid "Additional options"
176
  msgstr "Dodatkowe opcje"
177
 
178
  # @ contact_form
179
- #: contact_form.php:251
180
  msgid "Display Attachment block"
181
  msgstr "Wyświetlaj blok załączników"
182
 
183
  # @ contact_form
184
- #: contact_form.php:256
185
  msgid "Users can attach files of the following types"
186
  msgstr "Można załączać pliki następujących typów"
187
 
188
  # @ contact_form
189
- #: contact_form.php:260
190
  msgid "Display Send me a copy block"
191
  msgstr "Wyświetlaj blok wysyłania kopii do nadawcy"
192
 
193
  # @ contact_form
194
- #: contact_form.php:266
195
  msgid "Change FROM fields of the contact form"
196
  msgstr "Zmień od pola formularza"
197
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
198
  # @ contact_form
199
- #: contact_form.php:272
200
  msgid "Change label for fields of the contact form"
201
  msgstr "Zmień etykiety pól formularza"
202
 
203
  # @ default
204
- #: contact_form.php:287
205
  msgid "Save Changes"
206
  msgstr "Zapisz zmiany"
207
 
208
  # @ contact_form
209
- #: contact_form.php:318
210
  msgid "Thank you for contacting us."
211
  msgstr "Dziękujemy za wiadomość."
212
 
213
  # @ contact_form
214
- #: contact_form.php:323
215
  msgid "Sorry, your e-mail could not be delivered."
216
  msgstr "Niestety, ten e-mail nie mógł zostać dostarczony."
217
 
218
  # @ contact_form
219
- #: contact_form.php:380
220
  msgid "You can attach files of the following types"
221
  msgstr "Możesz załączać pliki następujących typów"
222
 
223
  # @ contact_form
224
- #: contact_form.php:386
225
  msgid "Send me a copy"
226
  msgstr "Wyślij mi kopię"
227
 
228
  # @ contact_form
229
- #: contact_form.php:396
230
  msgid "Submit"
231
  msgstr "Wyślij"
232
 
233
  # @ contact_form
234
- #: contact_form.php:412
235
  msgid "Your name is required."
236
  msgstr "Podanie imienia jest wymagane."
237
 
238
  # @ contact_form
239
- #: contact_form.php:413
240
  msgid "A proper e-mail address is required."
241
  msgstr "Podanie prawidłowego adresu e-mail jest wymagane."
242
 
243
  # @ contact_form
244
- #: contact_form.php:414
245
  msgid "Subject text is required."
246
  msgstr "Podanie tematu jest wymagane."
247
 
248
  # @ contact_form
249
- #: contact_form.php:415
250
  msgid "Message text is required."
251
  msgstr "Wiadomość musi mieć jakąś treść."
252
 
253
  # @ contact_form
254
- #: contact_form.php:416
255
  msgid "Please make corrections below and try again."
256
  msgstr "Proszę nanieść poprawki i spróbować jeszcze raz."
257
 
258
  # @ contact_form
259
- #: contact_form.php:447
260
  msgid "Attachment is broken."
261
  msgstr "Załącznik jest uszkodzony."
262
 
263
  # @ contact_form
264
- #: contact_form.php:460
265
  msgid "Please complete the CAPTCHA."
266
  msgstr "Proszę dokładnie przepisać kod."
267
 
268
  # @ contact_form
269
- #: contact_form.php:536
270
- #: contact_form.php:570
271
- msgid "Sent from (ip address)"
272
- msgstr "Przysłane z (adres IP)"
273
-
274
- # @ contact_form
275
- #: contact_form.php:537
276
- #: contact_form.php:573
277
- msgid "Date/Time"
278
- msgstr "Data/czas"
279
-
280
- # @ contact_form
281
- #: contact_form.php:538
282
- #: contact_form.php:576
283
- msgid "Coming from (referer)"
284
- msgstr "Przekierowane z (referrer)"
285
-
286
- # @ contact_form
287
- #: contact_form.php:539
288
- #: contact_form.php:579
289
- msgid "Using (user agent)"
290
- msgstr "Klient (program użytkownika)"
291
-
292
- # @ contact_form
293
- #: contact_form.php:544
294
  msgid "Contact from"
295
  msgstr "Kontakt z"
296
 
297
  # @ contact_form
298
- #: contact_form.php:549
299
  msgid "Name"
300
  msgstr "Imię"
301
 
302
  # @ contact_form
303
- #: contact_form.php:552
304
  msgid "Email"
305
  msgstr "E-mail"
306
 
307
  # @ contact_form
308
- #: contact_form.php:555
309
  msgid "Subject"
310
  msgstr "Temat"
311
 
312
  # @ contact_form
313
- #: contact_form.php:558
314
  msgid "Message"
315
  msgstr "Wiadomość"
316
 
317
  # @ contact_form
318
- #: contact_form.php:561
319
  msgid "Site"
320
  msgstr "Strona www"
321
 
322
  # @ contact_form
323
- #: contact_form.php:621
324
  msgid "FAQ"
325
  msgstr "FAQ"
326
 
327
  # @ contact_form
328
- #: contact_form.php:622
329
  msgid "Support"
330
  msgstr "Wsparcie"
331
 
2
  msgstr ""
3
  "Project-Id-Version: Contact Form Plugin v3.05\n"
4
  "Report-Msgid-Bugs-To: \n"
5
+ "POT-Creation-Date: 2012-03-22 12:55+0200\n"
6
+ "PO-Revision-Date: 2012-03-22 12:55+0200\n"
7
  "Last-Translator: BWS <zos@bestwebsoft.com>\n"
8
  "Language-Team: \n"
9
  "MIME-Version: 1.0\n"
32
 
33
  # @ contact_form
34
  #: contact_form.php:78
35
+ #: contact_form.php:660
36
+ #: contact_form.php:669
37
  msgid "Settings"
38
  msgstr "Ustawienia"
39
 
70
 
71
  # @ contact_form
72
  #: contact_form.php:108
73
+ #: contact_form.php:236
74
  msgid "Contact Form Options"
75
  msgstr "Opcje Contact Form"
76
 
80
  msgstr "Contact Form"
81
 
82
  # @ contact_form
83
+ #: contact_form.php:134
84
+ #: contact_form.php:173
85
+ #: contact_form.php:204
86
+ #: contact_form.php:312
87
  msgid "Name:"
88
  msgstr "Imię:"
89
 
90
  # @ contact_form
91
+ #: contact_form.php:135
92
+ #: contact_form.php:174
93
+ #: contact_form.php:205
94
+ #: contact_form.php:313
95
  msgid "E-Mail Address:"
96
  msgstr "Adres e-mail"
97
 
98
  # @ contact_form
99
+ #: contact_form.php:136
100
+ #: contact_form.php:175
101
+ #: contact_form.php:206
102
+ #: contact_form.php:314
103
  msgid "Subject:"
104
  msgstr "Temat:"
105
 
106
  # @ contact_form
107
+ #: contact_form.php:137
108
+ #: contact_form.php:176
109
+ #: contact_form.php:207
110
+ #: contact_form.php:315
111
  msgid "Message:"
112
  msgstr "Treść wiadomości:"
113
 
114
  # @ contact_form
115
+ #: contact_form.php:138
116
+ #: contact_form.php:177
117
+ #: contact_form.php:208
118
+ #: contact_form.php:316
119
  msgid "Attachment:"
120
  msgstr "Załączniki:"
121
 
122
  # @ contact_form
123
+ #: contact_form.php:216
124
+ #: contact_form.php:225
125
  msgid "Options saved."
126
  msgstr "Opcje zapisano"
127
 
128
  # @ contact_form
129
+ #: contact_form.php:219
130
  msgid "Such user is not exist. Settings are not saved."
131
  msgstr "Nie ma takiego użytkownika. Ustawienia nie zostały zapisane."
132
 
133
  # @ contact_form
134
+ #: contact_form.php:228
135
  msgid "Please input correct email. Settings are not saved."
136
  msgstr "Proszę wpisać prawidłowy e-mail. Ustawienia nie zostały zapisane."
137
 
138
  # @ contact_form
139
+ #: contact_form.php:241
140
  msgid "If you would like to add a Contact Form to your website, just copy and put this shortcode onto your post or page or widget:"
141
  msgstr "Jeśli chcesz dodać formularz do swojej strony, po prostu skopiuj ten kod i wklej go do wpisu lub treści strony lub Widget:"
142
 
143
  # @ contact_form
144
+ #: contact_form.php:242
145
  msgid "If information in the below fields are empty then the message will be send to an address which was specified during registration."
146
  msgstr "Jeśli poniższe pola zostaną puste, wiadomość zostanie wysłana na adres podany podczas rejestracji."
147
 
148
  # @ contact_form
149
+ #: contact_form.php:246
150
  msgid "Use email of wordpress user:"
151
  msgstr "Użyj adresu e-mail użytkownika:"
152
 
153
  # @ contact_form
154
+ #: contact_form.php:252
155
  msgid "Select user name"
156
  msgstr "Wybierz użytkownika"
157
 
158
  # @ contact_form
159
+ #: contact_form.php:257
160
  msgid "Set a name of user who will get messages from a contact form."
161
  msgstr "Wybierz użytkownika, który będzie dostawał wiadomości z formularza."
162
 
163
  # @ contact_form
164
+ #: contact_form.php:261
165
  msgid "Use this email:"
166
  msgstr "Wybierz ten e-mail:"
167
 
168
  # @ contact_form
169
+ #: contact_form.php:267
170
  msgid "Set an email address which will be used for messages receiving."
171
  msgstr "Ustaw adres e-mail, który będzie używany do odbierania wiadomości."
172
 
173
  # @ contact_form
174
+ #: contact_form.php:271
175
  msgid "Additional options"
176
  msgstr "Dodatkowe opcje"
177
 
178
  # @ contact_form
179
+ #: contact_form.php:274
180
  msgid "Display Attachment block"
181
  msgstr "Wyświetlaj blok załączników"
182
 
183
  # @ contact_form
184
+ #: contact_form.php:279
185
  msgid "Users can attach files of the following types"
186
  msgstr "Można załączać pliki następujących typów"
187
 
188
  # @ contact_form
189
+ #: contact_form.php:283
190
  msgid "Display Send me a copy block"
191
  msgstr "Wyświetlaj blok wysyłania kopii do nadawcy"
192
 
193
  # @ contact_form
194
+ #: contact_form.php:289
195
  msgid "Change FROM fields of the contact form"
196
  msgstr "Zmień od pola formularza"
197
 
198
+ #: contact_form.php:295
199
+ msgid "Display additional info in email"
200
+ msgstr ""
201
+
202
+ # @ contact_form
203
+ #: contact_form.php:300
204
+ #: contact_form.php:584
205
+ msgid "Sent from (ip address)"
206
+ msgstr "Przysłane z (adres IP)"
207
+
208
+ # @ contact_form
209
+ #: contact_form.php:301
210
+ #: contact_form.php:589
211
+ msgid "Date/Time"
212
+ msgstr "Data/czas"
213
+
214
+ # @ contact_form
215
+ #: contact_form.php:302
216
+ #: contact_form.php:594
217
+ msgid "Coming from (referer)"
218
+ msgstr "Przekierowane z (referrer)"
219
+
220
+ # @ contact_form
221
+ #: contact_form.php:303
222
+ #: contact_form.php:599
223
+ msgid "Using (user agent)"
224
+ msgstr "Klient (program użytkownika)"
225
+
226
  # @ contact_form
227
+ #: contact_form.php:307
228
  msgid "Change label for fields of the contact form"
229
  msgstr "Zmień etykiety pól formularza"
230
 
231
  # @ default
232
+ #: contact_form.php:322
233
  msgid "Save Changes"
234
  msgstr "Zapisz zmiany"
235
 
236
  # @ contact_form
237
+ #: contact_form.php:355
238
  msgid "Thank you for contacting us."
239
  msgstr "Dziękujemy za wiadomość."
240
 
241
  # @ contact_form
242
+ #: contact_form.php:360
243
  msgid "Sorry, your e-mail could not be delivered."
244
  msgstr "Niestety, ten e-mail nie mógł zostać dostarczony."
245
 
246
  # @ contact_form
247
+ #: contact_form.php:417
248
  msgid "You can attach files of the following types"
249
  msgstr "Możesz załączać pliki następujących typów"
250
 
251
  # @ contact_form
252
+ #: contact_form.php:423
253
  msgid "Send me a copy"
254
  msgstr "Wyślij mi kopię"
255
 
256
  # @ contact_form
257
+ #: contact_form.php:433
258
  msgid "Submit"
259
  msgstr "Wyślij"
260
 
261
  # @ contact_form
262
+ #: contact_form.php:449
263
  msgid "Your name is required."
264
  msgstr "Podanie imienia jest wymagane."
265
 
266
  # @ contact_form
267
+ #: contact_form.php:450
268
  msgid "A proper e-mail address is required."
269
  msgstr "Podanie prawidłowego adresu e-mail jest wymagane."
270
 
271
  # @ contact_form
272
+ #: contact_form.php:451
273
  msgid "Subject text is required."
274
  msgstr "Podanie tematu jest wymagane."
275
 
276
  # @ contact_form
277
+ #: contact_form.php:452
278
  msgid "Message text is required."
279
  msgstr "Wiadomość musi mieć jakąś treść."
280
 
281
  # @ contact_form
282
+ #: contact_form.php:453
283
  msgid "Please make corrections below and try again."
284
  msgstr "Proszę nanieść poprawki i spróbować jeszcze raz."
285
 
286
  # @ contact_form
287
+ #: contact_form.php:484
288
  msgid "Attachment is broken."
289
  msgstr "Załącznik jest uszkodzony."
290
 
291
  # @ contact_form
292
+ #: contact_form.php:497
293
  msgid "Please complete the CAPTCHA."
294
  msgstr "Proszę dokładnie przepisać kod."
295
 
296
  # @ contact_form
297
+ #: contact_form.php:607
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
298
  msgid "Contact from"
299
  msgstr "Kontakt z"
300
 
301
  # @ contact_form
302
+ #: contact_form.php:612
303
  msgid "Name"
304
  msgstr "Imię"
305
 
306
  # @ contact_form
307
+ #: contact_form.php:615
308
  msgid "Email"
309
  msgstr "E-mail"
310
 
311
  # @ contact_form
312
+ #: contact_form.php:618
313
  msgid "Subject"
314
  msgstr "Temat"
315
 
316
  # @ contact_form
317
+ #: contact_form.php:621
318
  msgid "Message"
319
  msgstr "Wiadomość"
320
 
321
  # @ contact_form
322
+ #: contact_form.php:624
323
  msgid "Site"
324
  msgstr "Strona www"
325
 
326
  # @ contact_form
327
+ #: contact_form.php:670
328
  msgid "FAQ"
329
  msgstr "FAQ"
330
 
331
  # @ contact_form
332
+ #: contact_form.php:671
333
  msgid "Support"
334
  msgstr "Wsparcie"
335
 
languages/contact_form-pt_BR.mo CHANGED
Binary file
languages/contact_form-pt_BR.po CHANGED
@@ -2,8 +2,8 @@ msgid ""
2
  msgstr ""
3
  "Project-Id-Version: contact_form\n"
4
  "Report-Msgid-Bugs-To: \n"
5
- "POT-Creation-Date: 2012-03-20 19:49+0200\n"
6
- "PO-Revision-Date: 2012-03-20 19:50+0200\n"
7
  "Last-Translator: BWS <zos@bestwebsoft.com>\n"
8
  "Language-Team: Thomas Hartung <thartung@adipositas-mm.de>\n"
9
  "MIME-Version: 1.0\n"
@@ -27,8 +27,8 @@ msgid "Read more"
27
  msgstr "Leia Mais"
28
 
29
  #: contact_form.php:78
30
- #: contact_form.php:611
31
- #: contact_form.php:620
32
  msgid "Settings"
33
  msgstr "Configurações"
34
 
@@ -58,7 +58,7 @@ msgid "If you have any questions, please contact us via plugin@bestwebsoft.com o
58
  msgstr "Se você tem quaisquer perguntas, por favor entre em contato através do email plugin@bestwebsoft.com ou preencha nosso formulário de contato pelo site. "
59
 
60
  #: contact_form.php:108
61
- #: contact_form.php:213
62
  msgid "Contact Form Options"
63
  msgstr "Opções do formulário de contato"
64
 
@@ -66,207 +66,211 @@ msgstr "Opções do formulário de contato"
66
  msgid "Contact Form"
67
  msgstr "Formulário de contato"
68
 
69
- #: contact_form.php:129
70
- #: contact_form.php:163
71
- #: contact_form.php:181
72
- #: contact_form.php:277
73
  msgid "Name:"
74
  msgstr "Nome:"
75
 
76
- #: contact_form.php:130
77
- #: contact_form.php:164
78
- #: contact_form.php:182
79
- #: contact_form.php:278
80
  msgid "E-Mail Address:"
81
  msgstr "Endereço de E-mail:"
82
 
83
- #: contact_form.php:131
84
- #: contact_form.php:165
85
- #: contact_form.php:183
86
- #: contact_form.php:279
87
  msgid "Subject:"
88
  msgstr "Assunto:"
89
 
90
- #: contact_form.php:132
91
- #: contact_form.php:166
92
- #: contact_form.php:184
93
- #: contact_form.php:280
94
  msgid "Message:"
95
  msgstr "Mensagem:"
96
 
97
- #: contact_form.php:133
98
- #: contact_form.php:167
99
- #: contact_form.php:185
100
- #: contact_form.php:281
101
  msgid "Attachment:"
102
  msgstr "Anexo:"
103
 
104
- #: contact_form.php:193
105
- #: contact_form.php:202
106
  msgid "Options saved."
107
  msgstr "Opções salvas."
108
 
109
- #: contact_form.php:196
110
  msgid "Such user is not exist. Settings are not saved."
111
  msgstr "Tal usuári não existe. Configurações não foram salvas."
112
 
113
- #: contact_form.php:205
114
  msgid "Please input correct email. Settings are not saved."
115
  msgstr "Por favor digite o email corretamente. Configurações não foram salvas."
116
 
117
- #: contact_form.php:218
118
  msgid "If you would like to add a Contact Form to your website, just copy and put this shortcode onto your post or page or widget:"
119
  msgstr "Se você gostaria de adicionar o Formulário de Contato no seu site, apenas copie e cole este código na sua postagem ou página ou widget:"
120
 
121
- #: contact_form.php:219
122
  msgid "If information in the below fields are empty then the message will be send to an address which was specified during registration."
123
  msgstr "Se informações nos campos abaixo estão vazias, então as mensagens serão enviadas para um endereço que foi especificado durante o registro."
124
 
125
- #: contact_form.php:223
126
  msgid "Use email of wordpress user:"
127
  msgstr "Use o email de um usuário do wordpress:"
128
 
129
- #: contact_form.php:229
130
  msgid "Select user name"
131
  msgstr "Selecione o nome do usuário"
132
 
133
- #: contact_form.php:234
134
  msgid "Set a name of user who will get messages from a contact form."
135
  msgstr "Determine um nome de usuário que receberá as mensagens enviadas pelo Formulário de Contato."
136
 
137
- #: contact_form.php:238
138
  msgid "Use this email:"
139
  msgstr "Use este email:"
140
 
141
- #: contact_form.php:244
142
  msgid "Set an email address which will be used for messages receiving."
143
  msgstr "Configure um endereço de email que será usado para o recebimento de mensagens."
144
 
145
- #: contact_form.php:248
146
  msgid "Additional options"
147
  msgstr "Opções adicionais"
148
 
149
- #: contact_form.php:251
150
  msgid "Display Attachment block"
151
  msgstr "Mostrar opção para anexar arquivos"
152
 
153
- #: contact_form.php:256
154
  msgid "Users can attach files of the following types"
155
  msgstr "Usuários pode anexar arquivos do seguinte tipo:"
156
 
157
- #: contact_form.php:260
158
  msgid "Display Send me a copy block"
159
  msgstr "Mostrar a opção Envie-me um cópia"
160
 
161
- #: contact_form.php:266
162
  msgid "Change FROM fields of the contact form"
163
  msgstr "Mudar de campos do formulário de contato"
164
 
165
- #: contact_form.php:272
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
166
  msgid "Change label for fields of the contact form"
167
  msgstr "Mudar rótulo para os campos no formulário de contato"
168
 
169
- #: contact_form.php:287
170
  msgid "Save Changes"
171
  msgstr "Salvar mudanças"
172
 
173
- #: contact_form.php:318
174
  msgid "Thank you for contacting us."
175
  msgstr "Obrigado por nos contactar"
176
 
177
- #: contact_form.php:323
178
  msgid "Sorry, your e-mail could not be delivered."
179
  msgstr "Desculpe, seu e-mail não pode ser entregue."
180
 
181
- #: contact_form.php:380
182
  msgid "You can attach files of the following types"
183
  msgstr "Você pode anexar arquivos do seguinte tipo"
184
 
185
- #: contact_form.php:386
186
  msgid "Send me a copy"
187
  msgstr "Envie-me uma cópia"
188
 
189
- #: contact_form.php:396
190
  msgid "Submit"
191
  msgstr "Enviar"
192
 
193
- #: contact_form.php:412
194
  msgid "Your name is required."
195
  msgstr "Seu nome é obrigatório"
196
 
197
- #: contact_form.php:413
198
  msgid "A proper e-mail address is required."
199
  msgstr "Um e-mail correto é obrigatório."
200
 
201
- #: contact_form.php:414
202
  msgid "Subject text is required."
203
  msgstr "O Assunto da mensagem é obrigatório."
204
 
205
- #: contact_form.php:415
206
  msgid "Message text is required."
207
  msgstr "O texto da Mensagem é obrigatório."
208
 
209
- #: contact_form.php:416
210
  msgid "Please make corrections below and try again."
211
  msgstr "Por favor, faça as correções abaixo e tente enviar a mensagem novamente."
212
 
213
- #: contact_form.php:447
214
  msgid "Attachment is broken."
215
  msgstr "Impossível anexar arquivo. "
216
 
217
- #: contact_form.php:460
218
  msgid "Please complete the CAPTCHA."
219
  msgstr "Por favor, complete a resposta da charada ."
220
 
221
- #: contact_form.php:536
222
- #: contact_form.php:570
223
- msgid "Sent from (ip address)"
224
- msgstr "Enviado de (Endereço IP)"
225
-
226
- #: contact_form.php:537
227
- #: contact_form.php:573
228
- msgid "Date/Time"
229
- msgstr "DAta / Hora"
230
-
231
- #: contact_form.php:538
232
- #: contact_form.php:576
233
- msgid "Coming from (referer)"
234
- msgstr "Vindo de (origem)"
235
-
236
- #: contact_form.php:539
237
- #: contact_form.php:579
238
- msgid "Using (user agent)"
239
- msgstr "Usando (cliente de email)"
240
-
241
- #: contact_form.php:544
242
  msgid "Contact from"
243
  msgstr "Formulário de Contato"
244
 
245
- #: contact_form.php:549
246
  msgid "Name"
247
  msgstr "Nome"
248
 
249
- #: contact_form.php:552
250
  msgid "Email"
251
  msgstr "E-Mail"
252
 
253
- #: contact_form.php:555
254
  msgid "Subject"
255
  msgstr "Assunto"
256
 
257
- #: contact_form.php:558
258
  msgid "Message"
259
  msgstr "Mensagem"
260
 
261
- #: contact_form.php:561
262
  msgid "Site"
263
  msgstr "Site"
264
 
265
- #: contact_form.php:621
266
  msgid "FAQ"
267
  msgstr "Perguntas Frequentes"
268
 
269
- #: contact_form.php:622
270
  msgid "Support"
271
  msgstr "Suporte"
272
 
2
  msgstr ""
3
  "Project-Id-Version: contact_form\n"
4
  "Report-Msgid-Bugs-To: \n"
5
+ "POT-Creation-Date: 2012-03-22 12:55+0200\n"
6
+ "PO-Revision-Date: 2012-03-22 12:55+0200\n"
7
  "Last-Translator: BWS <zos@bestwebsoft.com>\n"
8
  "Language-Team: Thomas Hartung <thartung@adipositas-mm.de>\n"
9
  "MIME-Version: 1.0\n"
27
  msgstr "Leia Mais"
28
 
29
  #: contact_form.php:78
30
+ #: contact_form.php:660
31
+ #: contact_form.php:669
32
  msgid "Settings"
33
  msgstr "Configurações"
34
 
58
  msgstr "Se você tem quaisquer perguntas, por favor entre em contato através do email plugin@bestwebsoft.com ou preencha nosso formulário de contato pelo site. "
59
 
60
  #: contact_form.php:108
61
+ #: contact_form.php:236
62
  msgid "Contact Form Options"
63
  msgstr "Opções do formulário de contato"
64
 
66
  msgid "Contact Form"
67
  msgstr "Formulário de contato"
68
 
69
+ #: contact_form.php:134
70
+ #: contact_form.php:173
71
+ #: contact_form.php:204
72
+ #: contact_form.php:312
73
  msgid "Name:"
74
  msgstr "Nome:"
75
 
76
+ #: contact_form.php:135
77
+ #: contact_form.php:174
78
+ #: contact_form.php:205
79
+ #: contact_form.php:313
80
  msgid "E-Mail Address:"
81
  msgstr "Endereço de E-mail:"
82
 
83
+ #: contact_form.php:136
84
+ #: contact_form.php:175
85
+ #: contact_form.php:206
86
+ #: contact_form.php:314
87
  msgid "Subject:"
88
  msgstr "Assunto:"
89
 
90
+ #: contact_form.php:137
91
+ #: contact_form.php:176
92
+ #: contact_form.php:207
93
+ #: contact_form.php:315
94
  msgid "Message:"
95
  msgstr "Mensagem:"
96
 
97
+ #: contact_form.php:138
98
+ #: contact_form.php:177
99
+ #: contact_form.php:208
100
+ #: contact_form.php:316
101
  msgid "Attachment:"
102
  msgstr "Anexo:"
103
 
104
+ #: contact_form.php:216
105
+ #: contact_form.php:225
106
  msgid "Options saved."
107
  msgstr "Opções salvas."
108
 
109
+ #: contact_form.php:219
110
  msgid "Such user is not exist. Settings are not saved."
111
  msgstr "Tal usuári não existe. Configurações não foram salvas."
112
 
113
+ #: contact_form.php:228
114
  msgid "Please input correct email. Settings are not saved."
115
  msgstr "Por favor digite o email corretamente. Configurações não foram salvas."
116
 
117
+ #: contact_form.php:241
118
  msgid "If you would like to add a Contact Form to your website, just copy and put this shortcode onto your post or page or widget:"
119
  msgstr "Se você gostaria de adicionar o Formulário de Contato no seu site, apenas copie e cole este código na sua postagem ou página ou widget:"
120
 
121
+ #: contact_form.php:242
122
  msgid "If information in the below fields are empty then the message will be send to an address which was specified during registration."
123
  msgstr "Se informações nos campos abaixo estão vazias, então as mensagens serão enviadas para um endereço que foi especificado durante o registro."
124
 
125
+ #: contact_form.php:246
126
  msgid "Use email of wordpress user:"
127
  msgstr "Use o email de um usuário do wordpress:"
128
 
129
+ #: contact_form.php:252
130
  msgid "Select user name"
131
  msgstr "Selecione o nome do usuário"
132
 
133
+ #: contact_form.php:257
134
  msgid "Set a name of user who will get messages from a contact form."
135
  msgstr "Determine um nome de usuário que receberá as mensagens enviadas pelo Formulário de Contato."
136
 
137
+ #: contact_form.php:261
138
  msgid "Use this email:"
139
  msgstr "Use este email:"
140
 
141
+ #: contact_form.php:267
142
  msgid "Set an email address which will be used for messages receiving."
143
  msgstr "Configure um endereço de email que será usado para o recebimento de mensagens."
144
 
145
+ #: contact_form.php:271
146
  msgid "Additional options"
147
  msgstr "Opções adicionais"
148
 
149
+ #: contact_form.php:274
150
  msgid "Display Attachment block"
151
  msgstr "Mostrar opção para anexar arquivos"
152
 
153
+ #: contact_form.php:279
154
  msgid "Users can attach files of the following types"
155
  msgstr "Usuários pode anexar arquivos do seguinte tipo:"
156
 
157
+ #: contact_form.php:283
158
  msgid "Display Send me a copy block"
159
  msgstr "Mostrar a opção Envie-me um cópia"
160
 
161
+ #: contact_form.php:289
162
  msgid "Change FROM fields of the contact form"
163
  msgstr "Mudar de campos do formulário de contato"
164
 
165
+ #: contact_form.php:295
166
+ msgid "Display additional info in email"
167
+ msgstr ""
168
+
169
+ #: contact_form.php:300
170
+ #: contact_form.php:584
171
+ msgid "Sent from (ip address)"
172
+ msgstr "Enviado de (Endereço IP)"
173
+
174
+ #: contact_form.php:301
175
+ #: contact_form.php:589
176
+ msgid "Date/Time"
177
+ msgstr "DAta / Hora"
178
+
179
+ #: contact_form.php:302
180
+ #: contact_form.php:594
181
+ msgid "Coming from (referer)"
182
+ msgstr "Vindo de (origem)"
183
+
184
+ #: contact_form.php:303
185
+ #: contact_form.php:599
186
+ msgid "Using (user agent)"
187
+ msgstr "Usando (cliente de email)"
188
+
189
+ #: contact_form.php:307
190
  msgid "Change label for fields of the contact form"
191
  msgstr "Mudar rótulo para os campos no formulário de contato"
192
 
193
+ #: contact_form.php:322
194
  msgid "Save Changes"
195
  msgstr "Salvar mudanças"
196
 
197
+ #: contact_form.php:355
198
  msgid "Thank you for contacting us."
199
  msgstr "Obrigado por nos contactar"
200
 
201
+ #: contact_form.php:360
202
  msgid "Sorry, your e-mail could not be delivered."
203
  msgstr "Desculpe, seu e-mail não pode ser entregue."
204
 
205
+ #: contact_form.php:417
206
  msgid "You can attach files of the following types"
207
  msgstr "Você pode anexar arquivos do seguinte tipo"
208
 
209
+ #: contact_form.php:423
210
  msgid "Send me a copy"
211
  msgstr "Envie-me uma cópia"
212
 
213
+ #: contact_form.php:433
214
  msgid "Submit"
215
  msgstr "Enviar"
216
 
217
+ #: contact_form.php:449
218
  msgid "Your name is required."
219
  msgstr "Seu nome é obrigatório"
220
 
221
+ #: contact_form.php:450
222
  msgid "A proper e-mail address is required."
223
  msgstr "Um e-mail correto é obrigatório."
224
 
225
+ #: contact_form.php:451
226
  msgid "Subject text is required."
227
  msgstr "O Assunto da mensagem é obrigatório."
228
 
229
+ #: contact_form.php:452
230
  msgid "Message text is required."
231
  msgstr "O texto da Mensagem é obrigatório."
232
 
233
+ #: contact_form.php:453
234
  msgid "Please make corrections below and try again."
235
  msgstr "Por favor, faça as correções abaixo e tente enviar a mensagem novamente."
236
 
237
+ #: contact_form.php:484
238
  msgid "Attachment is broken."
239
  msgstr "Impossível anexar arquivo. "
240
 
241
+ #: contact_form.php:497
242
  msgid "Please complete the CAPTCHA."
243
  msgstr "Por favor, complete a resposta da charada ."
244
 
245
+ #: contact_form.php:607
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
246
  msgid "Contact from"
247
  msgstr "Formulário de Contato"
248
 
249
+ #: contact_form.php:612
250
  msgid "Name"
251
  msgstr "Nome"
252
 
253
+ #: contact_form.php:615
254
  msgid "Email"
255
  msgstr "E-Mail"
256
 
257
+ #: contact_form.php:618
258
  msgid "Subject"
259
  msgstr "Assunto"
260
 
261
+ #: contact_form.php:621
262
  msgid "Message"
263
  msgstr "Mensagem"
264
 
265
+ #: contact_form.php:624
266
  msgid "Site"
267
  msgstr "Site"
268
 
269
+ #: contact_form.php:670
270
  msgid "FAQ"
271
  msgstr "Perguntas Frequentes"
272
 
273
+ #: contact_form.php:671
274
  msgid "Support"
275
  msgstr "Suporte"
276
 
languages/contact_form-pt_PT.mo ADDED
Binary file
languages/contact_form-pt_PT.po ADDED
@@ -0,0 +1,289 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ msgid ""
2
+ msgstr ""
3
+ "Project-Id-Version: contact_form\n"
4
+ "Report-Msgid-Bugs-To: \n"
5
+ "POT-Creation-Date: 2012-03-22 13:00+0200\n"
6
+ "PO-Revision-Date: 2012-03-22 13:00+0200\n"
7
+ "Last-Translator: BWS <zos@bestwebsoft.com>\n"
8
+ "Language-Team: Thomas Hartung <thartung@adipositas-mm.de>\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-KeywordsList: __;_e\n"
13
+ "X-Poedit-Basepath: ..\n"
14
+ "X-Poedit-Language: Rhaeto-Romance\n"
15
+ "X-Poedit-Country: SAINT HELENA\n"
16
+ "X-Poedit-SourceCharset: utf-8\n"
17
+ "X-Poedit-SearchPath-0: .\n"
18
+
19
+ #: contact_form.php:76
20
+ msgid "Activated plugins"
21
+ msgstr "Plugins ativados"
22
+
23
+ #: contact_form.php:78
24
+ #: contact_form.php:86
25
+ #: contact_form.php:94
26
+ msgid "Read more"
27
+ msgstr "Leia Mais"
28
+
29
+ #: contact_form.php:78
30
+ #: contact_form.php:660
31
+ #: contact_form.php:669
32
+ msgid "Settings"
33
+ msgstr "Configurações"
34
+
35
+ #: contact_form.php:84
36
+ msgid "Installed plugins"
37
+ msgstr "Plugins instalados"
38
+
39
+ #: contact_form.php:92
40
+ msgid "Recommended plugins"
41
+ msgstr "Plugins recomendados"
42
+
43
+ #: contact_form.php:94
44
+ msgid "Download"
45
+ msgstr "Baixar"
46
+
47
+ #: contact_form.php:94
48
+ #, php-format
49
+ msgid "Install %s"
50
+ msgstr "Instalar %s"
51
+
52
+ #: contact_form.php:94
53
+ msgid "Install now from wordpress.org"
54
+ msgstr "Instale agora do site wordpress.org"
55
+
56
+ #: contact_form.php:96
57
+ msgid "If you have any questions, please contact us via plugin@bestwebsoft.com or fill in our contact form on our site"
58
+ msgstr "Se você tem quaisquer perguntas, por favor entre em contato através do email plugin@bestwebsoft.com ou preencha nosso formulário de contato pelo site. "
59
+
60
+ #: contact_form.php:108
61
+ #: contact_form.php:236
62
+ msgid "Contact Form Options"
63
+ msgstr "Opções do formulário de contato"
64
+
65
+ #: contact_form.php:108
66
+ msgid "Contact Form"
67
+ msgstr "Formulário de contato"
68
+
69
+ #: contact_form.php:134
70
+ #: contact_form.php:173
71
+ #: contact_form.php:204
72
+ #: contact_form.php:312
73
+ msgid "Name:"
74
+ msgstr "Nome:"
75
+
76
+ #: contact_form.php:135
77
+ #: contact_form.php:174
78
+ #: contact_form.php:205
79
+ #: contact_form.php:313
80
+ msgid "E-Mail Address:"
81
+ msgstr "Endereço de E-mail:"
82
+
83
+ #: contact_form.php:136
84
+ #: contact_form.php:175
85
+ #: contact_form.php:206
86
+ #: contact_form.php:314
87
+ msgid "Subject:"
88
+ msgstr "Assunto:"
89
+
90
+ #: contact_form.php:137
91
+ #: contact_form.php:176
92
+ #: contact_form.php:207
93
+ #: contact_form.php:315
94
+ msgid "Message:"
95
+ msgstr "Mensagem:"
96
+
97
+ #: contact_form.php:138
98
+ #: contact_form.php:177
99
+ #: contact_form.php:208
100
+ #: contact_form.php:316
101
+ msgid "Attachment:"
102
+ msgstr "Anexo:"
103
+
104
+ #: contact_form.php:216
105
+ #: contact_form.php:225
106
+ msgid "Options saved."
107
+ msgstr "Opções salvas."
108
+
109
+ #: contact_form.php:219
110
+ msgid "Such user is not exist. Settings are not saved."
111
+ msgstr "Tal usuári não existe. Configurações não foram salvas."
112
+
113
+ #: contact_form.php:228
114
+ msgid "Please input correct email. Settings are not saved."
115
+ msgstr "Por favor digite o email corretamente. Configurações não foram salvas."
116
+
117
+ #: contact_form.php:241
118
+ msgid "If you would like to add a Contact Form to your website, just copy and put this shortcode onto your post or page or widget:"
119
+ msgstr "Se você gostaria de adicionar o Formulário de Contato no seu site, apenas copie e cole este código na sua postagem ou página ou widget:"
120
+
121
+ #: contact_form.php:242
122
+ msgid "If information in the below fields are empty then the message will be send to an address which was specified during registration."
123
+ msgstr "Se informações nos campos abaixo estão vazias, então as mensagens serão enviadas para um endereço que foi especificado durante o registro."
124
+
125
+ #: contact_form.php:246
126
+ msgid "Use email of wordpress user:"
127
+ msgstr "Use o email de um usuário do wordpress:"
128
+
129
+ #: contact_form.php:252
130
+ msgid "Select user name"
131
+ msgstr "Selecione o nome do usuário"
132
+
133
+ #: contact_form.php:257
134
+ msgid "Set a name of user who will get messages from a contact form."
135
+ msgstr "Determine um nome de usuário que receberá as mensagens enviadas pelo Formulário de Contato."
136
+
137
+ #: contact_form.php:261
138
+ msgid "Use this email:"
139
+ msgstr "Use este email:"
140
+
141
+ #: contact_form.php:267
142
+ msgid "Set an email address which will be used for messages receiving."
143
+ msgstr "Configure um endereço de email que será usado para o recebimento de mensagens."
144
+
145
+ #: contact_form.php:271
146
+ msgid "Additional options"
147
+ msgstr "Opções adicionais"
148
+
149
+ #: contact_form.php:274
150
+ msgid "Display Attachment block"
151
+ msgstr "Mostrar opção para anexar arquivos"
152
+
153
+ #: contact_form.php:279
154
+ msgid "Users can attach files of the following types"
155
+ msgstr "Usuários pode anexar arquivos do seguinte tipo:"
156
+
157
+ #: contact_form.php:283
158
+ msgid "Display Send me a copy block"
159
+ msgstr "Mostrar a opção Envie-me um cópia"
160
+
161
+ #: contact_form.php:289
162
+ msgid "Change FROM fields of the contact form"
163
+ msgstr ""
164
+
165
+ #: contact_form.php:295
166
+ msgid "Display additional info in email"
167
+ msgstr ""
168
+
169
+ #: contact_form.php:300
170
+ #: contact_form.php:584
171
+ msgid "Sent from (ip address)"
172
+ msgstr "Enviado de (Endereço IP)"
173
+
174
+ #: contact_form.php:301
175
+ #: contact_form.php:589
176
+ msgid "Date/Time"
177
+ msgstr "DAta / Hora"
178
+
179
+ #: contact_form.php:302
180
+ #: contact_form.php:594
181
+ msgid "Coming from (referer)"
182
+ msgstr "Vindo de (origem)"
183
+
184
+ #: contact_form.php:303
185
+ #: contact_form.php:599
186
+ msgid "Using (user agent)"
187
+ msgstr "Usando (cliente de email)"
188
+
189
+ #: contact_form.php:307
190
+ msgid "Change label for fields of the contact form"
191
+ msgstr "Mudar rótulo para os campos no formulário de contato"
192
+
193
+ #: contact_form.php:322
194
+ msgid "Save Changes"
195
+ msgstr "Salvar mudanças"
196
+
197
+ #: contact_form.php:355
198
+ msgid "Thank you for contacting us."
199
+ msgstr "Obrigado por nos contactar"
200
+
201
+ #: contact_form.php:360
202
+ msgid "Sorry, your e-mail could not be delivered."
203
+ msgstr "Desculpe, seu e-mail não pode ser entregue."
204
+
205
+ #: contact_form.php:417
206
+ msgid "You can attach files of the following types"
207
+ msgstr "Você pode anexar arquivos do seguinte tipo"
208
+
209
+ #: contact_form.php:423
210
+ msgid "Send me a copy"
211
+ msgstr "Envie-me uma cópia"
212
+
213
+ #: contact_form.php:433
214
+ msgid "Submit"
215
+ msgstr "Enviar"
216
+
217
+ #: contact_form.php:449
218
+ msgid "Your name is required."
219
+ msgstr "Seu nome é obrigatório"
220
+
221
+ #: contact_form.php:450
222
+ msgid "A proper e-mail address is required."
223
+ msgstr "Um e-mail correto é obrigatório."
224
+
225
+ #: contact_form.php:451
226
+ msgid "Subject text is required."
227
+ msgstr "O Assunto da mensagem é obrigatório."
228
+
229
+ #: contact_form.php:452
230
+ msgid "Message text is required."
231
+ msgstr "O texto da Mensagem é obrigatório."
232
+
233
+ #: contact_form.php:453
234
+ msgid "Please make corrections below and try again."
235
+ msgstr "Por favor, faça as correções abaixo e tente enviar a mensagem novamente."
236
+
237
+ #: contact_form.php:484
238
+ msgid "Attachment is broken."
239
+ msgstr "Impossível anexar arquivo. "
240
+
241
+ #: contact_form.php:497
242
+ msgid "Please complete the CAPTCHA."
243
+ msgstr "Por favor, complete a resposta da charada ."
244
+
245
+ #: contact_form.php:607
246
+ msgid "Contact from"
247
+ msgstr "Formulário de Contato"
248
+
249
+ #: contact_form.php:612
250
+ msgid "Name"
251
+ msgstr "Nome"
252
+
253
+ #: contact_form.php:615
254
+ msgid "Email"
255
+ msgstr "E-Mail"
256
+
257
+ #: contact_form.php:618
258
+ msgid "Subject"
259
+ msgstr "Assunto"
260
+
261
+ #: contact_form.php:621
262
+ msgid "Message"
263
+ msgstr "Mensagem"
264
+
265
+ #: contact_form.php:624
266
+ msgid "Site"
267
+ msgstr "Site"
268
+
269
+ #: contact_form.php:670
270
+ msgid "FAQ"
271
+ msgstr "Perguntas Frequentes"
272
+
273
+ #: contact_form.php:671
274
+ msgid "Support"
275
+ msgstr "Suporte"
276
+
277
+ #~ msgid "If you can see this MIME than your client doesn't accept MIME types!"
278
+ #~ msgstr ""
279
+ #~ "Se você consegue ver esta MENSAGEM então seu cliente não aceita tipos "
280
+ #~ "MIME! Favor usar um cliente mais atualizado."
281
+
282
+ #~ msgid "E-Mail Addresse:"
283
+ #~ msgstr "Indirizzo e-mail:"
284
+
285
+ #~ msgid "Install Now"
286
+ #~ msgstr "Installa Ora"
287
+
288
+ #~ msgid "BWS Plugins"
289
+ #~ msgstr "BWS Plugins"
languages/contact_form-ru_RU.mo CHANGED
Binary file
languages/contact_form-ru_RU.po CHANGED
@@ -2,8 +2,8 @@ msgid ""
2
  msgstr ""
3
  "Project-Id-Version: contact_form\n"
4
  "Report-Msgid-Bugs-To: \n"
5
- "POT-Creation-Date: 2012-03-20 19:49+0200\n"
6
- "PO-Revision-Date: 2012-03-20 19:49+0200\n"
7
  "Last-Translator: BWS <zos@bestwebsoft.com>\n"
8
  "Language-Team: bestwebsoft.com <plugin@bestwebsoft.com>\n"
9
  "MIME-Version: 1.0\n"
@@ -27,8 +27,8 @@ msgid "Read more"
27
  msgstr "Читать далее"
28
 
29
  #: contact_form.php:78
30
- #: contact_form.php:611
31
- #: contact_form.php:620
32
  msgid "Settings"
33
  msgstr "Настройки"
34
 
@@ -58,7 +58,7 @@ msgid "If you have any questions, please contact us via plugin@bestwebsoft.com o
58
  msgstr "Если у вас есть какие-то впросы, обращайтесь на plugin@bestwebsoft.com или заполните контактную форму на нашем сайте"
59
 
60
  #: contact_form.php:108
61
- #: contact_form.php:213
62
  msgid "Contact Form Options"
63
  msgstr "Настройки Контактной Формы"
64
 
@@ -66,207 +66,211 @@ msgstr "Настройки Контактной Формы"
66
  msgid "Contact Form"
67
  msgstr "Контактная Форма"
68
 
69
- #: contact_form.php:129
70
- #: contact_form.php:163
71
- #: contact_form.php:181
72
- #: contact_form.php:277
73
  msgid "Name:"
74
  msgstr "Имя:"
75
 
76
- #: contact_form.php:130
77
- #: contact_form.php:164
78
- #: contact_form.php:182
79
- #: contact_form.php:278
80
  msgid "E-Mail Address:"
81
  msgstr "E-mail адрес:"
82
 
83
- #: contact_form.php:131
84
- #: contact_form.php:165
85
- #: contact_form.php:183
86
- #: contact_form.php:279
87
  msgid "Subject:"
88
  msgstr "Тема:"
89
 
90
- #: contact_form.php:132
91
- #: contact_form.php:166
92
- #: contact_form.php:184
93
- #: contact_form.php:280
94
  msgid "Message:"
95
  msgstr "Сообщение:"
96
 
97
- #: contact_form.php:133
98
- #: contact_form.php:167
99
- #: contact_form.php:185
100
- #: contact_form.php:281
101
  msgid "Attachment:"
102
  msgstr "Прикрепить файл:"
103
 
104
- #: contact_form.php:193
105
- #: contact_form.php:202
106
  msgid "Options saved."
107
  msgstr "Опции сохранены"
108
 
109
- #: contact_form.php:196
110
  msgid "Such user is not exist. Settings are not saved."
111
  msgstr "Данный пользователь не найден. Настройки не сохранены"
112
 
113
- #: contact_form.php:205
114
  msgid "Please input correct email. Settings are not saved."
115
  msgstr "Пожалуйста, введите корректный email. Настройки не сохранены."
116
 
117
- #: contact_form.php:218
118
  msgid "If you would like to add a Contact Form to your website, just copy and put this shortcode onto your post or page or widget:"
119
  msgstr "Если вы хотите добавить Контактную Форму на свой сайт, вам надо только скопировать и вставить шорткод в контент страницы или поста или виджета:"
120
 
121
- #: contact_form.php:219
122
  msgid "If information in the below fields are empty then the message will be send to an address which was specified during registration."
123
  msgstr "Если информация в полях ниже отсутствует, соощения будут оправлены на email адрес, который был указан при регистрации сайта."
124
 
125
- #: contact_form.php:223
126
  msgid "Use email of wordpress user:"
127
  msgstr "Email пользователя сайта:"
128
 
129
- #: contact_form.php:229
130
  msgid "Select user name"
131
  msgstr "Выберите имя пользователя"
132
 
133
- #: contact_form.php:234
134
  msgid "Set a name of user who will get messages from a contact form."
135
  msgstr "Укажите логин пользователя, который будет получать сообщения контактной формы."
136
 
137
- #: contact_form.php:238
138
  msgid "Use this email:"
139
  msgstr "Использовать этот email:"
140
 
141
- #: contact_form.php:244
142
  msgid "Set an email address which will be used for messages receiving."
143
  msgstr "Укажите email адрес, на который будут отправляться сообщения."
144
 
145
- #: contact_form.php:248
146
  msgid "Additional options"
147
  msgstr "Дополнительные настройки"
148
 
149
- #: contact_form.php:251
150
  msgid "Display Attachment block"
151
  msgstr "Отобразить блок Прикрепить файл"
152
 
153
- #: contact_form.php:256
154
  msgid "Users can attach files of the following types"
155
  msgstr "Пользователи могут прикрепить файлы таких типов"
156
 
157
- #: contact_form.php:260
158
  msgid "Display Send me a copy block"
159
  msgstr "Отобразить блок Отправить мне копию"
160
 
161
- #: contact_form.php:266
162
  msgid "Change FROM fields of the contact form"
163
  msgstr "Изменить поле ОТ в контактной форме"
164
 
165
- #: contact_form.php:272
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
166
  msgid "Change label for fields of the contact form"
167
  msgstr "Изменить названия полей контактной формы"
168
 
169
- #: contact_form.php:287
170
  msgid "Save Changes"
171
  msgstr "Save Changes"
172
 
173
- #: contact_form.php:318
174
  msgid "Thank you for contacting us."
175
  msgstr "Спасибо за контакт с нами."
176
 
177
- #: contact_form.php:323
178
  msgid "Sorry, your e-mail could not be delivered."
179
  msgstr "Извините, ваш email не может быть отправлен."
180
 
181
- #: contact_form.php:380
182
  msgid "You can attach files of the following types"
183
  msgstr "Пользователи могут прикрепить файлы таких типов"
184
 
185
- #: contact_form.php:386
186
  msgid "Send me a copy"
187
  msgstr "Отправить мне копию"
188
 
189
- #: contact_form.php:396
190
  msgid "Submit"
191
  msgstr "Отправить"
192
 
193
- #: contact_form.php:412
194
  msgid "Your name is required."
195
  msgstr "Ваше имя - это обязательное поле."
196
 
197
- #: contact_form.php:413
198
  msgid "A proper e-mail address is required."
199
  msgstr "Поле e-mail адреса - обязательное для заполнения."
200
 
201
- #: contact_form.php:414
202
  msgid "Subject text is required."
203
  msgstr "Поле Тема - обязательное поле."
204
 
205
- #: contact_form.php:415
206
  msgid "Message text is required."
207
  msgstr "Поле Сообщение - обязательное поле."
208
 
209
- #: contact_form.php:416
210
  msgid "Please make corrections below and try again."
211
  msgstr "Пожалуйста, сделайте исправления в отмеченных полях ниже и повторите попытку."
212
 
213
- #: contact_form.php:447
214
  msgid "Attachment is broken."
215
  msgstr "Прикрепленный тип файла не поддерживается"
216
 
217
- #: contact_form.php:460
218
  msgid "Please complete the CAPTCHA."
219
  msgstr "Пожалуйста, заполните КАПЧУ."
220
 
221
- #: contact_form.php:536
222
- #: contact_form.php:570
223
- msgid "Sent from (ip address)"
224
- msgstr "Отправлено от (ip адрес)"
225
-
226
- #: contact_form.php:537
227
- #: contact_form.php:573
228
- msgid "Date/Time"
229
- msgstr "Дата/Время"
230
-
231
- #: contact_form.php:538
232
- #: contact_form.php:576
233
- msgid "Coming from (referer)"
234
- msgstr "Пришло из (реферер)"
235
-
236
- #: contact_form.php:539
237
- #: contact_form.php:579
238
- msgid "Using (user agent)"
239
- msgstr "Используя (user agent)"
240
-
241
- #: contact_form.php:544
242
  msgid "Contact from"
243
  msgstr "Контактная Форма"
244
 
245
- #: contact_form.php:549
246
  msgid "Name"
247
  msgstr "Имя"
248
 
249
- #: contact_form.php:552
250
  msgid "Email"
251
  msgstr "Email"
252
 
253
- #: contact_form.php:555
254
  msgid "Subject"
255
  msgstr "Тема"
256
 
257
- #: contact_form.php:558
258
  msgid "Message"
259
  msgstr "Сообщение"
260
 
261
- #: contact_form.php:561
262
  msgid "Site"
263
  msgstr "Сайт"
264
 
265
- #: contact_form.php:621
266
  msgid "FAQ"
267
  msgstr "FAQ"
268
 
269
- #: contact_form.php:622
270
  msgid "Support"
271
  msgstr "Поддержка"
272
 
2
  msgstr ""
3
  "Project-Id-Version: contact_form\n"
4
  "Report-Msgid-Bugs-To: \n"
5
+ "POT-Creation-Date: 2012-03-22 12:54+0200\n"
6
+ "PO-Revision-Date: 2012-03-22 12:54+0200\n"
7
  "Last-Translator: BWS <zos@bestwebsoft.com>\n"
8
  "Language-Team: bestwebsoft.com <plugin@bestwebsoft.com>\n"
9
  "MIME-Version: 1.0\n"
27
  msgstr "Читать далее"
28
 
29
  #: contact_form.php:78
30
+ #: contact_form.php:660
31
+ #: contact_form.php:669
32
  msgid "Settings"
33
  msgstr "Настройки"
34
 
58
  msgstr "Если у вас есть какие-то впросы, обращайтесь на plugin@bestwebsoft.com или заполните контактную форму на нашем сайте"
59
 
60
  #: contact_form.php:108
61
+ #: contact_form.php:236
62
  msgid "Contact Form Options"
63
  msgstr "Настройки Контактной Формы"
64
 
66
  msgid "Contact Form"
67
  msgstr "Контактная Форма"
68
 
69
+ #: contact_form.php:134
70
+ #: contact_form.php:173
71
+ #: contact_form.php:204
72
+ #: contact_form.php:312
73
  msgid "Name:"
74
  msgstr "Имя:"
75
 
76
+ #: contact_form.php:135
77
+ #: contact_form.php:174
78
+ #: contact_form.php:205
79
+ #: contact_form.php:313
80
  msgid "E-Mail Address:"
81
  msgstr "E-mail адрес:"
82
 
83
+ #: contact_form.php:136
84
+ #: contact_form.php:175
85
+ #: contact_form.php:206
86
+ #: contact_form.php:314
87
  msgid "Subject:"
88
  msgstr "Тема:"
89
 
90
+ #: contact_form.php:137
91
+ #: contact_form.php:176
92
+ #: contact_form.php:207
93
+ #: contact_form.php:315
94
  msgid "Message:"
95
  msgstr "Сообщение:"
96
 
97
+ #: contact_form.php:138
98
+ #: contact_form.php:177
99
+ #: contact_form.php:208
100
+ #: contact_form.php:316
101
  msgid "Attachment:"
102
  msgstr "Прикрепить файл:"
103
 
104
+ #: contact_form.php:216
105
+ #: contact_form.php:225
106
  msgid "Options saved."
107
  msgstr "Опции сохранены"
108
 
109
+ #: contact_form.php:219
110
  msgid "Such user is not exist. Settings are not saved."
111
  msgstr "Данный пользователь не найден. Настройки не сохранены"
112
 
113
+ #: contact_form.php:228
114
  msgid "Please input correct email. Settings are not saved."
115
  msgstr "Пожалуйста, введите корректный email. Настройки не сохранены."
116
 
117
+ #: contact_form.php:241
118
  msgid "If you would like to add a Contact Form to your website, just copy and put this shortcode onto your post or page or widget:"
119
  msgstr "Если вы хотите добавить Контактную Форму на свой сайт, вам надо только скопировать и вставить шорткод в контент страницы или поста или виджета:"
120
 
121
+ #: contact_form.php:242
122
  msgid "If information in the below fields are empty then the message will be send to an address which was specified during registration."
123
  msgstr "Если информация в полях ниже отсутствует, соощения будут оправлены на email адрес, который был указан при регистрации сайта."
124
 
125
+ #: contact_form.php:246
126
  msgid "Use email of wordpress user:"
127
  msgstr "Email пользователя сайта:"
128
 
129
+ #: contact_form.php:252
130
  msgid "Select user name"
131
  msgstr "Выберите имя пользователя"
132
 
133
+ #: contact_form.php:257
134
  msgid "Set a name of user who will get messages from a contact form."
135
  msgstr "Укажите логин пользователя, который будет получать сообщения контактной формы."
136
 
137
+ #: contact_form.php:261
138
  msgid "Use this email:"
139
  msgstr "Использовать этот email:"
140
 
141
+ #: contact_form.php:267
142
  msgid "Set an email address which will be used for messages receiving."
143
  msgstr "Укажите email адрес, на который будут отправляться сообщения."
144
 
145
+ #: contact_form.php:271
146
  msgid "Additional options"
147
  msgstr "Дополнительные настройки"
148
 
149
+ #: contact_form.php:274
150
  msgid "Display Attachment block"
151
  msgstr "Отобразить блок Прикрепить файл"
152
 
153
+ #: contact_form.php:279
154
  msgid "Users can attach files of the following types"
155
  msgstr "Пользователи могут прикрепить файлы таких типов"
156
 
157
+ #: contact_form.php:283
158
  msgid "Display Send me a copy block"
159
  msgstr "Отобразить блок Отправить мне копию"
160
 
161
+ #: contact_form.php:289
162
  msgid "Change FROM fields of the contact form"
163
  msgstr "Изменить поле ОТ в контактной форме"
164
 
165
+ #: contact_form.php:295
166
+ msgid "Display additional info in email"
167
+ msgstr ""
168
+
169
+ #: contact_form.php:300
170
+ #: contact_form.php:584
171
+ msgid "Sent from (ip address)"
172
+ msgstr "Отправлено от (ip адрес)"
173
+
174
+ #: contact_form.php:301
175
+ #: contact_form.php:589
176
+ msgid "Date/Time"
177
+ msgstr "Дата/Время"
178
+
179
+ #: contact_form.php:302
180
+ #: contact_form.php:594
181
+ msgid "Coming from (referer)"
182
+ msgstr "Пришло из (реферер)"
183
+
184
+ #: contact_form.php:303
185
+ #: contact_form.php:599
186
+ msgid "Using (user agent)"
187
+ msgstr "Используя (user agent)"
188
+
189
+ #: contact_form.php:307
190
  msgid "Change label for fields of the contact form"
191
  msgstr "Изменить названия полей контактной формы"
192
 
193
+ #: contact_form.php:322
194
  msgid "Save Changes"
195
  msgstr "Save Changes"
196
 
197
+ #: contact_form.php:355
198
  msgid "Thank you for contacting us."
199
  msgstr "Спасибо за контакт с нами."
200
 
201
+ #: contact_form.php:360
202
  msgid "Sorry, your e-mail could not be delivered."
203
  msgstr "Извините, ваш email не может быть отправлен."
204
 
205
+ #: contact_form.php:417
206
  msgid "You can attach files of the following types"
207
  msgstr "Пользователи могут прикрепить файлы таких типов"
208
 
209
+ #: contact_form.php:423
210
  msgid "Send me a copy"
211
  msgstr "Отправить мне копию"
212
 
213
+ #: contact_form.php:433
214
  msgid "Submit"
215
  msgstr "Отправить"
216
 
217
+ #: contact_form.php:449
218
  msgid "Your name is required."
219
  msgstr "Ваше имя - это обязательное поле."
220
 
221
+ #: contact_form.php:450
222
  msgid "A proper e-mail address is required."
223
  msgstr "Поле e-mail адреса - обязательное для заполнения."
224
 
225
+ #: contact_form.php:451
226
  msgid "Subject text is required."
227
  msgstr "Поле Тема - обязательное поле."
228
 
229
+ #: contact_form.php:452
230
  msgid "Message text is required."
231
  msgstr "Поле Сообщение - обязательное поле."
232
 
233
+ #: contact_form.php:453
234
  msgid "Please make corrections below and try again."
235
  msgstr "Пожалуйста, сделайте исправления в отмеченных полях ниже и повторите попытку."
236
 
237
+ #: contact_form.php:484
238
  msgid "Attachment is broken."
239
  msgstr "Прикрепленный тип файла не поддерживается"
240
 
241
+ #: contact_form.php:497
242
  msgid "Please complete the CAPTCHA."
243
  msgstr "Пожалуйста, заполните КАПЧУ."
244
 
245
+ #: contact_form.php:607
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
246
  msgid "Contact from"
247
  msgstr "Контактная Форма"
248
 
249
+ #: contact_form.php:612
250
  msgid "Name"
251
  msgstr "Имя"
252
 
253
+ #: contact_form.php:615
254
  msgid "Email"
255
  msgstr "Email"
256
 
257
+ #: contact_form.php:618
258
  msgid "Subject"
259
  msgstr "Тема"
260
 
261
+ #: contact_form.php:621
262
  msgid "Message"
263
  msgstr "Сообщение"
264
 
265
+ #: contact_form.php:624
266
  msgid "Site"
267
  msgstr "Сайт"
268
 
269
+ #: contact_form.php:670
270
  msgid "FAQ"
271
  msgstr "FAQ"
272
 
273
+ #: contact_form.php:671
274
  msgid "Support"
275
  msgstr "Поддержка"
276
 
languages/contact_form-sv_SE.mo CHANGED
Binary file
languages/contact_form-sv_SE.po CHANGED
@@ -2,8 +2,8 @@ msgid ""
2
  msgstr ""
3
  "Project-Id-Version: contact_form\n"
4
  "Report-Msgid-Bugs-To: \n"
5
- "POT-Creation-Date: 2012-03-20 19:48+0200\n"
6
- "PO-Revision-Date: 2012-03-20 19:49+0200\n"
7
  "Last-Translator: BWS <zos@bestwebsoft.com>\n"
8
  "Language-Team: bestwebsoft.com <plugin@bestwebsoft.com>\n"
9
  "MIME-Version: 1.0\n"
@@ -27,8 +27,8 @@ msgid "Read more"
27
  msgstr "Läs mer"
28
 
29
  #: contact_form.php:78
30
- #: contact_form.php:611
31
- #: contact_form.php:620
32
  msgid "Settings"
33
  msgstr "Inställningar"
34
 
@@ -58,7 +58,7 @@ msgid "If you have any questions, please contact us via plugin@bestwebsoft.com o
58
  msgstr "Om du har några frågor, var snäll och kontakta oss på plugin@bestwebsoft.com eller använd fårt kontaktformulär på vår hemsida"
59
 
60
  #: contact_form.php:108
61
- #: contact_form.php:213
62
  msgid "Contact Form Options"
63
  msgstr "Inställningar för Kontaktformulär"
64
 
@@ -66,207 +66,211 @@ msgstr "Inställningar för Kontaktformulär"
66
  msgid "Contact Form"
67
  msgstr "Kontak formulär"
68
 
69
- #: contact_form.php:129
70
- #: contact_form.php:163
71
- #: contact_form.php:181
72
- #: contact_form.php:277
73
  msgid "Name:"
74
  msgstr "Namn:"
75
 
76
- #: contact_form.php:130
77
- #: contact_form.php:164
78
- #: contact_form.php:182
79
- #: contact_form.php:278
80
  msgid "E-Mail Address:"
81
  msgstr "Epostadress:"
82
 
83
- #: contact_form.php:131
84
- #: contact_form.php:165
85
- #: contact_form.php:183
86
- #: contact_form.php:279
87
  msgid "Subject:"
88
  msgstr "Rubrik:"
89
 
90
- #: contact_form.php:132
91
- #: contact_form.php:166
92
- #: contact_form.php:184
93
- #: contact_form.php:280
94
  msgid "Message:"
95
  msgstr "Meddelande:"
96
 
97
- #: contact_form.php:133
98
- #: contact_form.php:167
99
- #: contact_form.php:185
100
- #: contact_form.php:281
101
  msgid "Attachment:"
102
  msgstr "Bilaga:"
103
 
104
- #: contact_form.php:193
105
- #: contact_form.php:202
106
  msgid "Options saved."
107
  msgstr "Inställningar sparade"
108
 
109
- #: contact_form.php:196
110
  msgid "Such user is not exist. Settings are not saved."
111
  msgstr "Sådan användare finns inte. Inställningar har inte sparats."
112
 
113
- #: contact_form.php:205
114
  msgid "Please input correct email. Settings are not saved."
115
  msgstr "Var vänlig och ange en korrekt epostadress. Inställningar är inte sparade."
116
 
117
- #: contact_form.php:218
118
  msgid "If you would like to add a Contact Form to your website, just copy and put this shortcode onto your post or page or widget:"
119
  msgstr "Om du vill lägga till ett kontaktformulär på din hemsida, kopiera och kilstra in denna snabbkod i ditt inlägg eller sida eller widget:"
120
 
121
- #: contact_form.php:219
122
  msgid "If information in the below fields are empty then the message will be send to an address which was specified during registration."
123
  msgstr "Om information i fälten nedan är tomma så kommer meddelandet att skickas till en adress som specifierades vid registrering."
124
 
125
- #: contact_form.php:223
126
  msgid "Use email of wordpress user:"
127
  msgstr "Använd epostadress för wordpress användare:"
128
 
129
- #: contact_form.php:229
130
  msgid "Select user name"
131
  msgstr "Välj användarnamn"
132
 
133
- #: contact_form.php:234
134
  msgid "Set a name of user who will get messages from a contact form."
135
  msgstr "Ange ett namn på en användare som kommer få meddelandena från kontaktformulären"
136
 
137
- #: contact_form.php:238
138
  msgid "Use this email:"
139
  msgstr "Använd denna epost:"
140
 
141
- #: contact_form.php:244
142
  msgid "Set an email address which will be used for messages receiving."
143
  msgstr "Ange en epostadress som ska användas för att ta emot meddelandena."
144
 
145
- #: contact_form.php:248
146
  msgid "Additional options"
147
  msgstr "Fler val"
148
 
149
- #: contact_form.php:251
150
  msgid "Display Attachment block"
151
  msgstr "Visa bifogade"
152
 
153
- #: contact_form.php:256
154
  msgid "Users can attach files of the following types"
155
  msgstr "Användare kan lägga till filer av följande typer"
156
 
157
- #: contact_form.php:260
158
  msgid "Display Send me a copy block"
159
  msgstr "Visa \"Skicka mig en kopia\""
160
 
161
- #: contact_form.php:266
162
  msgid "Change FROM fields of the contact form"
163
  msgstr "Förändring från fält i kontaktformuläret"
164
 
165
- #: contact_form.php:272
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
166
  msgid "Change label for fields of the contact form"
167
  msgstr "Ändra etiketter för fält på kontaktformuläret"
168
 
169
- #: contact_form.php:287
170
  msgid "Save Changes"
171
  msgstr "Spara ändringar"
172
 
173
- #: contact_form.php:318
174
  msgid "Thank you for contacting us."
175
  msgstr "Tack för att du kontaktat oss."
176
 
177
- #: contact_form.php:323
178
  msgid "Sorry, your e-mail could not be delivered."
179
  msgstr "Beklagar, men ditt meddelande kunde inte levereras."
180
 
181
- #: contact_form.php:380
182
  msgid "You can attach files of the following types"
183
  msgstr "Du kan lägga till filer av följande typ."
184
 
185
- #: contact_form.php:386
186
  msgid "Send me a copy"
187
  msgstr "Skicka mig en kopia"
188
 
189
- #: contact_form.php:396
190
  msgid "Submit"
191
  msgstr "Skicka"
192
 
193
- #: contact_form.php:412
194
  msgid "Your name is required."
195
  msgstr "Ditt namn krävs"
196
 
197
- #: contact_form.php:413
198
  msgid "A proper e-mail address is required."
199
  msgstr "En korrekt epostadress krävs."
200
 
201
- #: contact_form.php:414
202
  msgid "Subject text is required."
203
  msgstr "Rubrik krävs."
204
 
205
- #: contact_form.php:415
206
  msgid "Message text is required."
207
  msgstr "Meddelandetext krävs."
208
 
209
- #: contact_form.php:416
210
  msgid "Please make corrections below and try again."
211
  msgstr "Var vänlig och gör ändringarna nedan och försök igen."
212
 
213
- #: contact_form.php:447
214
  msgid "Attachment is broken."
215
  msgstr "Fel vid bilaga"
216
 
217
- #: contact_form.php:460
218
  msgid "Please complete the CAPTCHA."
219
  msgstr "Var vänlig och fyll i CAPTCHA."
220
 
221
- #: contact_form.php:536
222
- #: contact_form.php:570
223
- msgid "Sent from (ip address)"
224
- msgstr "Skickat från (IP-adress)"
225
-
226
- #: contact_form.php:537
227
- #: contact_form.php:573
228
- msgid "Date/Time"
229
- msgstr "Dag/tid"
230
-
231
- #: contact_form.php:538
232
- #: contact_form.php:576
233
- msgid "Coming from (referer)"
234
- msgstr "Skickat från (referent)"
235
-
236
- #: contact_form.php:539
237
- #: contact_form.php:579
238
- msgid "Using (user agent)"
239
- msgstr "med (user agent)"
240
-
241
- #: contact_form.php:544
242
  msgid "Contact from"
243
  msgstr "Kontakformulär"
244
 
245
- #: contact_form.php:549
246
  msgid "Name"
247
  msgstr "Namn"
248
 
249
- #: contact_form.php:552
250
  msgid "Email"
251
  msgstr "Epost"
252
 
253
- #: contact_form.php:555
254
  msgid "Subject"
255
  msgstr "Rubrik"
256
 
257
- #: contact_form.php:558
258
  msgid "Message"
259
  msgstr "Meddelande"
260
 
261
- #: contact_form.php:561
262
  msgid "Site"
263
  msgstr "www"
264
 
265
- #: contact_form.php:621
266
  msgid "FAQ"
267
  msgstr "Vanliga frågor"
268
 
269
- #: contact_form.php:622
270
  msgid "Support"
271
  msgstr "Support"
272
 
2
  msgstr ""
3
  "Project-Id-Version: contact_form\n"
4
  "Report-Msgid-Bugs-To: \n"
5
+ "POT-Creation-Date: 2012-03-22 12:54+0200\n"
6
+ "PO-Revision-Date: 2012-03-22 12:54+0200\n"
7
  "Last-Translator: BWS <zos@bestwebsoft.com>\n"
8
  "Language-Team: bestwebsoft.com <plugin@bestwebsoft.com>\n"
9
  "MIME-Version: 1.0\n"
27
  msgstr "Läs mer"
28
 
29
  #: contact_form.php:78
30
+ #: contact_form.php:660
31
+ #: contact_form.php:669
32
  msgid "Settings"
33
  msgstr "Inställningar"
34
 
58
  msgstr "Om du har några frågor, var snäll och kontakta oss på plugin@bestwebsoft.com eller använd fårt kontaktformulär på vår hemsida"
59
 
60
  #: contact_form.php:108
61
+ #: contact_form.php:236
62
  msgid "Contact Form Options"
63
  msgstr "Inställningar för Kontaktformulär"
64
 
66
  msgid "Contact Form"
67
  msgstr "Kontak formulär"
68
 
69
+ #: contact_form.php:134
70
+ #: contact_form.php:173
71
+ #: contact_form.php:204
72
+ #: contact_form.php:312
73
  msgid "Name:"
74
  msgstr "Namn:"
75
 
76
+ #: contact_form.php:135
77
+ #: contact_form.php:174
78
+ #: contact_form.php:205
79
+ #: contact_form.php:313
80
  msgid "E-Mail Address:"
81
  msgstr "Epostadress:"
82
 
83
+ #: contact_form.php:136
84
+ #: contact_form.php:175
85
+ #: contact_form.php:206
86
+ #: contact_form.php:314
87
  msgid "Subject:"
88
  msgstr "Rubrik:"
89
 
90
+ #: contact_form.php:137
91
+ #: contact_form.php:176
92
+ #: contact_form.php:207
93
+ #: contact_form.php:315
94
  msgid "Message:"
95
  msgstr "Meddelande:"
96
 
97
+ #: contact_form.php:138
98
+ #: contact_form.php:177
99
+ #: contact_form.php:208
100
+ #: contact_form.php:316
101
  msgid "Attachment:"
102
  msgstr "Bilaga:"
103
 
104
+ #: contact_form.php:216
105
+ #: contact_form.php:225
106
  msgid "Options saved."
107
  msgstr "Inställningar sparade"
108
 
109
+ #: contact_form.php:219
110
  msgid "Such user is not exist. Settings are not saved."
111
  msgstr "Sådan användare finns inte. Inställningar har inte sparats."
112
 
113
+ #: contact_form.php:228
114
  msgid "Please input correct email. Settings are not saved."
115
  msgstr "Var vänlig och ange en korrekt epostadress. Inställningar är inte sparade."
116
 
117
+ #: contact_form.php:241
118
  msgid "If you would like to add a Contact Form to your website, just copy and put this shortcode onto your post or page or widget:"
119
  msgstr "Om du vill lägga till ett kontaktformulär på din hemsida, kopiera och kilstra in denna snabbkod i ditt inlägg eller sida eller widget:"
120
 
121
+ #: contact_form.php:242
122
  msgid "If information in the below fields are empty then the message will be send to an address which was specified during registration."
123
  msgstr "Om information i fälten nedan är tomma så kommer meddelandet att skickas till en adress som specifierades vid registrering."
124
 
125
+ #: contact_form.php:246
126
  msgid "Use email of wordpress user:"
127
  msgstr "Använd epostadress för wordpress användare:"
128
 
129
+ #: contact_form.php:252
130
  msgid "Select user name"
131
  msgstr "Välj användarnamn"
132
 
133
+ #: contact_form.php:257
134
  msgid "Set a name of user who will get messages from a contact form."
135
  msgstr "Ange ett namn på en användare som kommer få meddelandena från kontaktformulären"
136
 
137
+ #: contact_form.php:261
138
  msgid "Use this email:"
139
  msgstr "Använd denna epost:"
140
 
141
+ #: contact_form.php:267
142
  msgid "Set an email address which will be used for messages receiving."
143
  msgstr "Ange en epostadress som ska användas för att ta emot meddelandena."
144
 
145
+ #: contact_form.php:271
146
  msgid "Additional options"
147
  msgstr "Fler val"
148
 
149
+ #: contact_form.php:274
150
  msgid "Display Attachment block"
151
  msgstr "Visa bifogade"
152
 
153
+ #: contact_form.php:279
154
  msgid "Users can attach files of the following types"
155
  msgstr "Användare kan lägga till filer av följande typer"
156
 
157
+ #: contact_form.php:283
158
  msgid "Display Send me a copy block"
159
  msgstr "Visa \"Skicka mig en kopia\""
160
 
161
+ #: contact_form.php:289
162
  msgid "Change FROM fields of the contact form"
163
  msgstr "Förändring från fält i kontaktformuläret"
164
 
165
+ #: contact_form.php:295
166
+ msgid "Display additional info in email"
167
+ msgstr ""
168
+
169
+ #: contact_form.php:300
170
+ #: contact_form.php:584
171
+ msgid "Sent from (ip address)"
172
+ msgstr "Skickat från (IP-adress)"
173
+
174
+ #: contact_form.php:301
175
+ #: contact_form.php:589
176
+ msgid "Date/Time"
177
+ msgstr "Dag/tid"
178
+
179
+ #: contact_form.php:302
180
+ #: contact_form.php:594
181
+ msgid "Coming from (referer)"
182
+ msgstr "Skickat från (referent)"
183
+
184
+ #: contact_form.php:303
185
+ #: contact_form.php:599
186
+ msgid "Using (user agent)"
187
+ msgstr "med (user agent)"
188
+
189
+ #: contact_form.php:307
190
  msgid "Change label for fields of the contact form"
191
  msgstr "Ändra etiketter för fält på kontaktformuläret"
192
 
193
+ #: contact_form.php:322
194
  msgid "Save Changes"
195
  msgstr "Spara ändringar"
196
 
197
+ #: contact_form.php:355
198
  msgid "Thank you for contacting us."
199
  msgstr "Tack för att du kontaktat oss."
200
 
201
+ #: contact_form.php:360
202
  msgid "Sorry, your e-mail could not be delivered."
203
  msgstr "Beklagar, men ditt meddelande kunde inte levereras."
204
 
205
+ #: contact_form.php:417
206
  msgid "You can attach files of the following types"
207
  msgstr "Du kan lägga till filer av följande typ."
208
 
209
+ #: contact_form.php:423
210
  msgid "Send me a copy"
211
  msgstr "Skicka mig en kopia"
212
 
213
+ #: contact_form.php:433
214
  msgid "Submit"
215
  msgstr "Skicka"
216
 
217
+ #: contact_form.php:449
218
  msgid "Your name is required."
219
  msgstr "Ditt namn krävs"
220
 
221
+ #: contact_form.php:450
222
  msgid "A proper e-mail address is required."
223
  msgstr "En korrekt epostadress krävs."
224
 
225
+ #: contact_form.php:451
226
  msgid "Subject text is required."
227
  msgstr "Rubrik krävs."
228
 
229
+ #: contact_form.php:452
230
  msgid "Message text is required."
231
  msgstr "Meddelandetext krävs."
232
 
233
+ #: contact_form.php:453
234
  msgid "Please make corrections below and try again."
235
  msgstr "Var vänlig och gör ändringarna nedan och försök igen."
236
 
237
+ #: contact_form.php:484
238
  msgid "Attachment is broken."
239
  msgstr "Fel vid bilaga"
240
 
241
+ #: contact_form.php:497
242
  msgid "Please complete the CAPTCHA."
243
  msgstr "Var vänlig och fyll i CAPTCHA."
244
 
245
+ #: contact_form.php:607
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
246
  msgid "Contact from"
247
  msgstr "Kontakformulär"
248
 
249
+ #: contact_form.php:612
250
  msgid "Name"
251
  msgstr "Namn"
252
 
253
+ #: contact_form.php:615
254
  msgid "Email"
255
  msgstr "Epost"
256
 
257
+ #: contact_form.php:618
258
  msgid "Subject"
259
  msgstr "Rubrik"
260
 
261
+ #: contact_form.php:621
262
  msgid "Message"
263
  msgstr "Meddelande"
264
 
265
+ #: contact_form.php:624
266
  msgid "Site"
267
  msgstr "www"
268
 
269
+ #: contact_form.php:670
270
  msgid "FAQ"
271
  msgstr "Vanliga frågor"
272
 
273
+ #: contact_form.php:671
274
  msgid "Support"
275
  msgstr "Support"
276
 
languages/contact_form-tr_TR.mo CHANGED
Binary file
languages/contact_form-tr_TR.po CHANGED
@@ -2,8 +2,8 @@ msgid ""
2
  msgstr ""
3
  "Project-Id-Version: contact_form\n"
4
  "Report-Msgid-Bugs-To: \n"
5
- "POT-Creation-Date: 2012-03-20 19:46+0200\n"
6
- "PO-Revision-Date: 2012-03-20 19:48+0200\n"
7
  "Last-Translator: BWS <zos@bestwebsoft.com>\n"
8
  "Language-Team: bestwebsoft.com <plugin@bestwebsoft.com>\n"
9
  "MIME-Version: 1.0\n"
@@ -27,8 +27,8 @@ msgid "Read more"
27
  msgstr "Devamı"
28
 
29
  #: contact_form.php:78
30
- #: contact_form.php:611
31
- #: contact_form.php:620
32
  msgid "Settings"
33
  msgstr "Ayarlar"
34
 
@@ -58,7 +58,7 @@ msgid "If you have any questions, please contact us via plugin@bestwebsoft.com o
58
  msgstr "Herhangi bir sorunuz varsa, lütfen plugin@bestwebsoft.com aracılığıyla bize ulaşın veya sitemizdeki iletişim formunu kullanın"
59
 
60
  #: contact_form.php:108
61
- #: contact_form.php:213
62
  msgid "Contact Form Options"
63
  msgstr "İletişim Formu Seçenekleri"
64
 
@@ -66,207 +66,211 @@ msgstr "İletişim Formu Seçenekleri"
66
  msgid "Contact Form"
67
  msgstr "İletişim Formu"
68
 
69
- #: contact_form.php:129
70
- #: contact_form.php:163
71
- #: contact_form.php:181
72
- #: contact_form.php:277
73
  msgid "Name:"
74
  msgstr "Adınız Soyadınız :"
75
 
76
- #: contact_form.php:130
77
- #: contact_form.php:164
78
- #: contact_form.php:182
79
- #: contact_form.php:278
80
  msgid "E-Mail Address:"
81
  msgstr "E-mail Adresiniz :"
82
 
83
- #: contact_form.php:131
84
- #: contact_form.php:165
85
- #: contact_form.php:183
86
- #: contact_form.php:279
87
  msgid "Subject:"
88
  msgstr "Konu:"
89
 
90
- #: contact_form.php:132
91
- #: contact_form.php:166
92
- #: contact_form.php:184
93
- #: contact_form.php:280
94
  msgid "Message:"
95
  msgstr "Mesajınız:"
96
 
97
- #: contact_form.php:133
98
- #: contact_form.php:167
99
- #: contact_form.php:185
100
- #: contact_form.php:281
101
  msgid "Attachment:"
102
  msgstr "Dosya Eki:"
103
 
104
- #: contact_form.php:193
105
- #: contact_form.php:202
106
  msgid "Options saved."
107
  msgstr "Ayarlar Kayıt Edildi."
108
 
109
- #: contact_form.php:196
110
  msgid "Such user is not exist. Settings are not saved."
111
  msgstr "Böyle bir kullanıcı yok. Ayarlar kayıt edilemedi."
112
 
113
- #: contact_form.php:205
114
  msgid "Please input correct email. Settings are not saved."
115
  msgstr "Böyle bir mail bulunumadı. Lütfen doğru bir mail giriniz."
116
 
117
- #: contact_form.php:218
118
  msgid "If you would like to add a Contact Form to your website, just copy and put this shortcode onto your post or page or widget:"
119
  msgstr "İletişim formunu sitenize yerleştirmek istiyorsanız lütfen kısa kodu yeni sayfa içerisine html modunda iken ekleyiniz:"
120
 
121
- #: contact_form.php:219
122
  msgid "If information in the below fields are empty then the message will be send to an address which was specified during registration."
123
  msgstr "Lütfen aşağıdaki alanları doğru ve eksiksiz olarak doldurun."
124
 
125
- #: contact_form.php:223
126
  msgid "Use email of wordpress user:"
127
  msgstr "Kullanıcı adı veya mail girin"
128
 
129
- #: contact_form.php:229
130
  msgid "Select user name"
131
  msgstr "Kullanıcı adı seçin"
132
 
133
- #: contact_form.php:234
134
  msgid "Set a name of user who will get messages from a contact form."
135
  msgstr "Kullanıcı bir iletişim formunu mesajları alacak bir isim ayarlayın."
136
 
137
- #: contact_form.php:238
138
  msgid "Use this email:"
139
  msgstr "Bu e-posta adresini kullan:"
140
 
141
- #: contact_form.php:244
142
  msgid "Set an email address which will be used for messages receiving."
143
  msgstr "Mesaj almak için kullanılan bir e-posta adresi ayarlayın."
144
 
145
- #: contact_form.php:248
146
  msgid "Additional options"
147
  msgstr "Ek Seçenekler"
148
 
149
- #: contact_form.php:251
150
  msgid "Display Attachment block"
151
  msgstr "Eklenti Bloğunu Göster"
152
 
153
- #: contact_form.php:256
154
  msgid "Users can attach files of the following types"
155
  msgstr "Kullanıcılar aşağıdaki türdeki dosyaları yükleyebilir"
156
 
157
- #: contact_form.php:260
158
  msgid "Display Send me a copy block"
159
  msgstr "Bana bir kopya gönder bloğunu göster"
160
 
161
- #: contact_form.php:266
162
  msgid "Change FROM fields of the contact form"
163
  msgstr "Iletişim formu alanları DAN değiştirin"
164
 
165
- #: contact_form.php:272
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
166
  msgid "Change label for fields of the contact form"
167
  msgstr "Iletişim formu alanlar için değişim etiket"
168
 
169
- #: contact_form.php:287
170
  msgid "Save Changes"
171
  msgstr "Değişiklikler Kayıt Edildi"
172
 
173
- #: contact_form.php:318
174
  msgid "Thank you for contacting us."
175
  msgstr "Bizimle bağlantı kurduğunuz için teşekkür ederiz."
176
 
177
- #: contact_form.php:323
178
  msgid "Sorry, your e-mail could not be delivered."
179
  msgstr "Üzgünüz, e-posta gönderilemedi."
180
 
181
- #: contact_form.php:380
182
  msgid "You can attach files of the following types"
183
  msgstr "Aşağıdaki türlerde dosya ekleyebilirsiniz"
184
 
185
- #: contact_form.php:386
186
  msgid "Send me a copy"
187
  msgstr "Bir kopyasını banada gönder"
188
 
189
- #: contact_form.php:396
190
  msgid "Submit"
191
  msgstr "Gönder"
192
 
193
- #: contact_form.php:412
194
  msgid "Your name is required."
195
  msgstr "Adınız ve soyadınız gereklidir."
196
 
197
- #: contact_form.php:413
198
  msgid "A proper e-mail address is required."
199
  msgstr "Düzgün bir e-posta adresi gereklidir."
200
 
201
- #: contact_form.php:414
202
  msgid "Subject text is required."
203
  msgstr "Konu metni gereklidir."
204
 
205
- #: contact_form.php:415
206
  msgid "Message text is required."
207
  msgstr "Mesaj metni gereklidir."
208
 
209
- #: contact_form.php:416
210
  msgid "Please make corrections below and try again."
211
  msgstr "Lütfen aşağıdaki düzeltmeleri yapın ve tekrar deneyin."
212
 
213
- #: contact_form.php:447
214
  msgid "Attachment is broken."
215
  msgstr "Eklenti Hatalı"
216
 
217
- #: contact_form.php:460
218
  msgid "Please complete the CAPTCHA."
219
  msgstr "CAPTCHA Doldurunuz"
220
 
221
- #: contact_form.php:536
222
- #: contact_form.php:570
223
- msgid "Sent from (ip address)"
224
- msgstr "Geldiği (ip adresi)"
225
-
226
- #: contact_form.php:537
227
- #: contact_form.php:573
228
- msgid "Date/Time"
229
- msgstr "Tarih/Zaman"
230
-
231
- #: contact_form.php:538
232
- #: contact_form.php:576
233
- msgid "Coming from (referer)"
234
- msgstr "Gelen"
235
-
236
- #: contact_form.php:539
237
- #: contact_form.php:579
238
- msgid "Using (user agent)"
239
- msgstr "Using (user agent)"
240
-
241
- #: contact_form.php:544
242
  msgid "Contact from"
243
  msgstr "Adlı Kişiden Mail Var"
244
 
245
- #: contact_form.php:549
246
  msgid "Name"
247
  msgstr "Adınız Soyadınız"
248
 
249
- #: contact_form.php:552
250
  msgid "Email"
251
  msgstr "e-mail"
252
 
253
- #: contact_form.php:555
254
  msgid "Subject"
255
  msgstr "Konu"
256
 
257
- #: contact_form.php:558
258
  msgid "Message"
259
  msgstr "Mesaj"
260
 
261
- #: contact_form.php:561
262
  msgid "Site"
263
  msgstr "Site"
264
 
265
- #: contact_form.php:621
266
  msgid "FAQ"
267
  msgstr "Sık Sorulanlar"
268
 
269
- #: contact_form.php:622
270
  msgid "Support"
271
  msgstr "Destek"
272
 
2
  msgstr ""
3
  "Project-Id-Version: contact_form\n"
4
  "Report-Msgid-Bugs-To: \n"
5
+ "POT-Creation-Date: 2012-03-22 12:54+0200\n"
6
+ "PO-Revision-Date: 2012-03-22 12:54+0200\n"
7
  "Last-Translator: BWS <zos@bestwebsoft.com>\n"
8
  "Language-Team: bestwebsoft.com <plugin@bestwebsoft.com>\n"
9
  "MIME-Version: 1.0\n"
27
  msgstr "Devamı"
28
 
29
  #: contact_form.php:78
30
+ #: contact_form.php:660
31
+ #: contact_form.php:669
32
  msgid "Settings"
33
  msgstr "Ayarlar"
34
 
58
  msgstr "Herhangi bir sorunuz varsa, lütfen plugin@bestwebsoft.com aracılığıyla bize ulaşın veya sitemizdeki iletişim formunu kullanın"
59
 
60
  #: contact_form.php:108
61
+ #: contact_form.php:236
62
  msgid "Contact Form Options"
63
  msgstr "İletişim Formu Seçenekleri"
64
 
66
  msgid "Contact Form"
67
  msgstr "İletişim Formu"
68
 
69
+ #: contact_form.php:134
70
+ #: contact_form.php:173
71
+ #: contact_form.php:204
72
+ #: contact_form.php:312
73
  msgid "Name:"
74
  msgstr "Adınız Soyadınız :"
75
 
76
+ #: contact_form.php:135
77
+ #: contact_form.php:174
78
+ #: contact_form.php:205
79
+ #: contact_form.php:313
80
  msgid "E-Mail Address:"
81
  msgstr "E-mail Adresiniz :"
82
 
83
+ #: contact_form.php:136
84
+ #: contact_form.php:175
85
+ #: contact_form.php:206
86
+ #: contact_form.php:314
87
  msgid "Subject:"
88
  msgstr "Konu:"
89
 
90
+ #: contact_form.php:137
91
+ #: contact_form.php:176
92
+ #: contact_form.php:207
93
+ #: contact_form.php:315
94
  msgid "Message:"
95
  msgstr "Mesajınız:"
96
 
97
+ #: contact_form.php:138
98
+ #: contact_form.php:177
99
+ #: contact_form.php:208
100
+ #: contact_form.php:316
101
  msgid "Attachment:"
102
  msgstr "Dosya Eki:"
103
 
104
+ #: contact_form.php:216
105
+ #: contact_form.php:225
106
  msgid "Options saved."
107
  msgstr "Ayarlar Kayıt Edildi."
108
 
109
+ #: contact_form.php:219
110
  msgid "Such user is not exist. Settings are not saved."
111
  msgstr "Böyle bir kullanıcı yok. Ayarlar kayıt edilemedi."
112
 
113
+ #: contact_form.php:228
114
  msgid "Please input correct email. Settings are not saved."
115
  msgstr "Böyle bir mail bulunumadı. Lütfen doğru bir mail giriniz."
116
 
117
+ #: contact_form.php:241
118
  msgid "If you would like to add a Contact Form to your website, just copy and put this shortcode onto your post or page or widget:"
119
  msgstr "İletişim formunu sitenize yerleştirmek istiyorsanız lütfen kısa kodu yeni sayfa içerisine html modunda iken ekleyiniz:"
120
 
121
+ #: contact_form.php:242
122
  msgid "If information in the below fields are empty then the message will be send to an address which was specified during registration."
123
  msgstr "Lütfen aşağıdaki alanları doğru ve eksiksiz olarak doldurun."
124
 
125
+ #: contact_form.php:246
126
  msgid "Use email of wordpress user:"
127
  msgstr "Kullanıcı adı veya mail girin"
128
 
129
+ #: contact_form.php:252
130
  msgid "Select user name"
131
  msgstr "Kullanıcı adı seçin"
132
 
133
+ #: contact_form.php:257
134
  msgid "Set a name of user who will get messages from a contact form."
135
  msgstr "Kullanıcı bir iletişim formunu mesajları alacak bir isim ayarlayın."
136
 
137
+ #: contact_form.php:261
138
  msgid "Use this email:"
139
  msgstr "Bu e-posta adresini kullan:"
140
 
141
+ #: contact_form.php:267
142
  msgid "Set an email address which will be used for messages receiving."
143
  msgstr "Mesaj almak için kullanılan bir e-posta adresi ayarlayın."
144
 
145
+ #: contact_form.php:271
146
  msgid "Additional options"
147
  msgstr "Ek Seçenekler"
148
 
149
+ #: contact_form.php:274
150
  msgid "Display Attachment block"
151
  msgstr "Eklenti Bloğunu Göster"
152
 
153
+ #: contact_form.php:279
154
  msgid "Users can attach files of the following types"
155
  msgstr "Kullanıcılar aşağıdaki türdeki dosyaları yükleyebilir"
156
 
157
+ #: contact_form.php:283
158
  msgid "Display Send me a copy block"
159
  msgstr "Bana bir kopya gönder bloğunu göster"
160
 
161
+ #: contact_form.php:289
162
  msgid "Change FROM fields of the contact form"
163
  msgstr "Iletişim formu alanları DAN değiştirin"
164
 
165
+ #: contact_form.php:295
166
+ msgid "Display additional info in email"
167
+ msgstr ""
168
+
169
+ #: contact_form.php:300
170
+ #: contact_form.php:584
171
+ msgid "Sent from (ip address)"
172
+ msgstr "Geldiği (ip adresi)"
173
+
174
+ #: contact_form.php:301
175
+ #: contact_form.php:589
176
+ msgid "Date/Time"
177
+ msgstr "Tarih/Zaman"
178
+
179
+ #: contact_form.php:302
180
+ #: contact_form.php:594
181
+ msgid "Coming from (referer)"
182
+ msgstr "Gelen"
183
+
184
+ #: contact_form.php:303
185
+ #: contact_form.php:599
186
+ msgid "Using (user agent)"
187
+ msgstr "Using (user agent)"
188
+
189
+ #: contact_form.php:307
190
  msgid "Change label for fields of the contact form"
191
  msgstr "Iletişim formu alanlar için değişim etiket"
192
 
193
+ #: contact_form.php:322
194
  msgid "Save Changes"
195
  msgstr "Değişiklikler Kayıt Edildi"
196
 
197
+ #: contact_form.php:355
198
  msgid "Thank you for contacting us."
199
  msgstr "Bizimle bağlantı kurduğunuz için teşekkür ederiz."
200
 
201
+ #: contact_form.php:360
202
  msgid "Sorry, your e-mail could not be delivered."
203
  msgstr "Üzgünüz, e-posta gönderilemedi."
204
 
205
+ #: contact_form.php:417
206
  msgid "You can attach files of the following types"
207
  msgstr "Aşağıdaki türlerde dosya ekleyebilirsiniz"
208
 
209
+ #: contact_form.php:423
210
  msgid "Send me a copy"
211
  msgstr "Bir kopyasını banada gönder"
212
 
213
+ #: contact_form.php:433
214
  msgid "Submit"
215
  msgstr "Gönder"
216
 
217
+ #: contact_form.php:449
218
  msgid "Your name is required."
219
  msgstr "Adınız ve soyadınız gereklidir."
220
 
221
+ #: contact_form.php:450
222
  msgid "A proper e-mail address is required."
223
  msgstr "Düzgün bir e-posta adresi gereklidir."
224
 
225
+ #: contact_form.php:451
226
  msgid "Subject text is required."
227
  msgstr "Konu metni gereklidir."
228
 
229
+ #: contact_form.php:452
230
  msgid "Message text is required."
231
  msgstr "Mesaj metni gereklidir."
232
 
233
+ #: contact_form.php:453
234
  msgid "Please make corrections below and try again."
235
  msgstr "Lütfen aşağıdaki düzeltmeleri yapın ve tekrar deneyin."
236
 
237
+ #: contact_form.php:484
238
  msgid "Attachment is broken."
239
  msgstr "Eklenti Hatalı"
240
 
241
+ #: contact_form.php:497
242
  msgid "Please complete the CAPTCHA."
243
  msgstr "CAPTCHA Doldurunuz"
244
 
245
+ #: contact_form.php:607
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
246
  msgid "Contact from"
247
  msgstr "Adlı Kişiden Mail Var"
248
 
249
+ #: contact_form.php:612
250
  msgid "Name"
251
  msgstr "Adınız Soyadınız"
252
 
253
+ #: contact_form.php:615
254
  msgid "Email"
255
  msgstr "e-mail"
256
 
257
+ #: contact_form.php:618
258
  msgid "Subject"
259
  msgstr "Konu"
260
 
261
+ #: contact_form.php:621
262
  msgid "Message"
263
  msgstr "Mesaj"
264
 
265
+ #: contact_form.php:624
266
  msgid "Site"
267
  msgstr "Site"
268
 
269
+ #: contact_form.php:670
270
  msgid "FAQ"
271
  msgstr "Sık Sorulanlar"
272
 
273
+ #: contact_form.php:671
274
  msgid "Support"
275
  msgstr "Destek"
276
 
readme.txt CHANGED
@@ -4,7 +4,7 @@ Donate link: https://www.2checkout.com/checkout/purchase?sid=1430388&quantity=10
4
  Tags: Contact Form, text, contact, form, contacts, contakt form, request, contact me, feedback form, feedback, contact button, contact form plugin, contacts form plugin, attachment, send, copy, atachment, send copy
5
  Requires at least: 2.9
6
  Tested up to: 3.3.1
7
- Stable tag: 3.14
8
 
9
  Add Contact Form to your WordPress website.
10
 
@@ -88,6 +88,10 @@ Here is an example for German language files.
88
 
89
  == Changelog ==
90
 
 
 
 
 
91
  = V3.14 - 20.03.2012 =
92
  * New : Added ability to change FROM fields.
93
 
@@ -108,7 +112,6 @@ Here is an example for German language files.
108
  = V3.09 - 24.02.2012 =
109
  * NEW : Spanish language file is added to the plugin.
110
  * Change : Code which includes styles and scripts is added to the plugin for correct SSL verification.
111
-
112
  * Bugfix : The bug of email address validation in admin section was fixed.
113
 
114
  = V3.08 - 17.02.2012 =
@@ -180,6 +183,9 @@ Here is an example for German language files.
180
 
181
  == Upgrade Notice ==
182
 
 
 
 
183
  = V3.14 =
184
  Added ability to change FROM fields.
185
 
4
  Tags: Contact Form, text, contact, form, contacts, contakt form, request, contact me, feedback form, feedback, contact button, contact form plugin, contacts form plugin, attachment, send, copy, atachment, send copy
5
  Requires at least: 2.9
6
  Tested up to: 3.3.1
7
+ Stable tag: 3.15
8
 
9
  Add Contact Form to your WordPress website.
10
 
88
 
89
  == Changelog ==
90
 
91
+ = V3.15 - 22.03.2012 =
92
+ * New : The feature to setup the displaying of the additional information fields in the email was implemented (Sent from (ip address), Date/Time, Coming from (referer), Using (user agent)).
93
+ * Bugfix : The bug of attribute action on element form was fixed.
94
+
95
  = V3.14 - 20.03.2012 =
96
  * New : Added ability to change FROM fields.
97
 
112
  = V3.09 - 24.02.2012 =
113
  * NEW : Spanish language file is added to the plugin.
114
  * Change : Code which includes styles and scripts is added to the plugin for correct SSL verification.
 
115
  * Bugfix : The bug of email address validation in admin section was fixed.
116
 
117
  = V3.08 - 17.02.2012 =
183
 
184
  == Upgrade Notice ==
185
 
186
+ = V3.15 =
187
+ The feature to setup the displaying of the additional information fields in the email was implemented (Sent from (ip address), Date/Time, Coming from (referer), Using (user agent)). The bug of attribute action on element form was fixed.
188
+
189
  = V3.14 =
190
  Added ability to change FROM fields.
191
 
screenshot-4.jpg CHANGED
Binary file