Contact Form by BestWebSoft - Version 3.09

Version Description

  • 24.02.2012 =
  • NEW : Added Spanish language file for plugin.
  • Change : Code to include styles and scripts in a plug for the correct SSL verification.
  • Bugfix : The bug validate email address in admin section was fixed.
Download this release

Release Info

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

Code changes from version 3.08 to 3.09

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.08
8
  Author URI: http://bestwebsoft.com/
9
  License: GPLv2 or later
10
  */
@@ -28,10 +28,10 @@ if( ! function_exists( 'bws_add_menu_render' ) ) {
28
  function bws_add_menu_render() {
29
  global $title;
30
  $active_plugins = get_option('active_plugins');
31
- $all_plugins = get_plugins();
32
 
33
  $array_activate = array();
34
- $array_install = array();
35
  $array_recomend = array();
36
  $count_activate = $count_install = $count_recomend = 0;
37
  $array_plugins = array(
@@ -41,27 +41,24 @@ if( ! function_exists( 'bws_add_menu_render' ) ) {
41
  array( 'twitter-plugin\/twitter.php', 'Twitter Plugin', 'http://wordpress.org/extend/plugins/twitter-plugin/', 'http://bestwebsoft.com/plugin/twitter-plugin/', '/wp-admin/plugin-install.php?tab=search&type=term&s=Twitter+Plugin+bestwebsoft&plugin-search-input=Search+Plugins', 'admin.php?page=twitter.php' ),
42
  array( 'portfolio\/portfolio.php', 'Portfolio', 'http://wordpress.org/extend/plugins/portfolio/', 'http://bestwebsoft.com/plugin/portfolio-plugin/', '/wp-admin/plugin-install.php?tab=search&type=term&s=Portfolio+bestwebsoft&plugin-search-input=Search+Plugins', '' ),
43
  array( 'gallery-plugin\/gallery-plugin.php', 'Gallery', 'http://wordpress.org/extend/plugins/gallery-plugin/', 'http://bestwebsoft.com/plugin/gallery-plugin/', '/wp-admin/plugin-install.php?tab=search&type=term&s=Gallery+Plugin+bestwebsoft&plugin-search-input=Search+Plugins', '' ),
44
- array( 'adsense-plugin\/adsense-plugin.php', 'Google AdSense Plugin', 'http://wordpress.org/extend/plugins/adsense-plugin/', 'http://bestwebsoft.com/plugin/google-adsense-plugin/', '/wp-admin/plugin-install.php?tab=search&type=term&s=Adsense+Plugin+bestwebsoft&plugin-search-input=Search+Plugins', 'admin.php?page=adsense-plugin.php' )
 
45
  );
46
- foreach($array_plugins as $plugins)
47
- {
48
- if( 0 < count( preg_grep( "/".$plugins[0]."/", $active_plugins ) ) )
49
- {
50
  $array_activate[$count_activate]['title'] = $plugins[1];
51
  $array_activate[$count_activate]['link'] = $plugins[2];
52
  $array_activate[$count_activate]['href'] = $plugins[3];
53
  $array_activate[$count_activate]['url'] = $plugins[5];
54
  $count_activate++;
55
  }
56
- else if( array_key_exists(str_replace("\\", "", $plugins[0]), $all_plugins) )
57
- {
58
  $array_install[$count_install]['title'] = $plugins[1];
59
  $array_install[$count_install]['link'] = $plugins[2];
60
  $array_install[$count_install]['href'] = $plugins[3];
61
  $count_install++;
62
  }
63
- else
64
- {
65
  $array_recomend[$count_recomend]['title'] = $plugins[1];
66
  $array_recomend[$count_recomend]['link'] = $plugins[2];
67
  $array_recomend[$count_recomend]['href'] = $plugins[3];
@@ -93,7 +90,7 @@ if( ! function_exists( 'bws_add_menu_render' ) ) {
93
  <div>
94
  <h3><?php _e( 'Recommended plugins', 'contact_form' ); ?></h3>
95
  <?php foreach( $array_recomend as $recomend_plugin ) { ?>
96
- <div style="float:left; width:200px;"><?php echo $recomend_plugin['title']; ?></div> <p><a href="<?php echo $recomend_plugin['link']; ?>" target="_blank"><?php echo __( "Read more", 'contact_form'); ?></a> <a href="<?php echo $recomend_plugin['href']; ?>" target="_blank"><?php echo __( "Download", 'contact_form'); ?></a> <a class="install-now" href="<?php echo get_bloginfo( "url" ) . $recomend_plugin['slug']; ?>" title="<?php esc_attr( sprintf( __( 'Install %s' ), $recomend_plugin['title'] ) ) ?>"><?php echo __( 'Install now from wordpress.org', 'contact_form' ) ?></a></p>
97
  <?php } ?>
98
  <span style="color: rgb(136, 136, 136); font-size: 10px;"><?php _e( 'If you have any questions, please contact us via plugin@bestwebsoft.com or fill in our contact form on our site', 'contact_form' ); ?> <a href="http://bestwebsoft.com/contact/">http://bestwebsoft.com/contact/</a></span>
99
  </div>
@@ -197,7 +194,7 @@ if( ! function_exists( 'cntctfrm_settings_page' ) ) {
197
  }
198
  }
199
  else {
200
- if( $cntctfrm_options_submit['cntctfrm_custom_email'] != "" && preg_match( "/^(?:[a-z0-9]+(?:[-_\.]?[a-z0-9]+)?@[a-z0-9]+(?:[-\.]?[a-z0-9]+)?\.[a-z]{2,5})$/i", trim( $cntctfrm_options_submit['cntctfrm_custom_email'] ) ) ) {
201
  update_option( 'cntctfrm_options', $cntctfrm_options, '', 'yes' );
202
  $message = __( "Options saved.", 'contact_form' );
203
  }
4
  Plugin URI: http://bestwebsoft.com/plugin/
5
  Description: Plugin for Contact Form.
6
  Author: BestWebSoft
7
+ Version: 3.09
8
  Author URI: http://bestwebsoft.com/
9
  License: GPLv2 or later
10
  */
28
  function bws_add_menu_render() {
29
  global $title;
30
  $active_plugins = get_option('active_plugins');
31
+ $all_plugins = get_plugins();
32
 
33
  $array_activate = array();
34
+ $array_install = array();
35
  $array_recomend = array();
36
  $count_activate = $count_install = $count_recomend = 0;
37
  $array_plugins = array(
41
  array( 'twitter-plugin\/twitter.php', 'Twitter Plugin', 'http://wordpress.org/extend/plugins/twitter-plugin/', 'http://bestwebsoft.com/plugin/twitter-plugin/', '/wp-admin/plugin-install.php?tab=search&type=term&s=Twitter+Plugin+bestwebsoft&plugin-search-input=Search+Plugins', 'admin.php?page=twitter.php' ),
42
  array( 'portfolio\/portfolio.php', 'Portfolio', 'http://wordpress.org/extend/plugins/portfolio/', 'http://bestwebsoft.com/plugin/portfolio-plugin/', '/wp-admin/plugin-install.php?tab=search&type=term&s=Portfolio+bestwebsoft&plugin-search-input=Search+Plugins', '' ),
43
  array( 'gallery-plugin\/gallery-plugin.php', 'Gallery', 'http://wordpress.org/extend/plugins/gallery-plugin/', 'http://bestwebsoft.com/plugin/gallery-plugin/', '/wp-admin/plugin-install.php?tab=search&type=term&s=Gallery+Plugin+bestwebsoft&plugin-search-input=Search+Plugins', '' ),
44
+ array( 'adsense-plugin\/adsense-plugin.php', 'Google AdSense Plugin', 'http://wordpress.org/extend/plugins/adsense-plugin/', 'http://bestwebsoft.com/plugin/google-adsense-plugin/', '/wp-admin/plugin-install.php?tab=search&type=term&s=Adsense+Plugin+bestwebsoft&plugin-search-input=Search+Plugins', 'admin.php?page=adsense-plugin.php' ),
45
+ array( 'custom-search-plugin\/custom-search-plugin.php', 'Custom Search Plugin', 'http://wordpress.org/extend/plugins/custom-search-plugin/', 'http://bestwebsoft.com/plugin/custom-search-plugin/', '/wp-admin/plugin-install.php?tab=search&type=term&s=Custom+Search+plugin+bestwebsoft&plugin-search-input=Search+Plugins', 'admin.php?page=custom_search.php' )
46
  );
47
+ foreach($array_plugins as $plugins) {
48
+ if( 0 < count( preg_grep( "/".$plugins[0]."/", $active_plugins ) ) ) {
 
 
49
  $array_activate[$count_activate]['title'] = $plugins[1];
50
  $array_activate[$count_activate]['link'] = $plugins[2];
51
  $array_activate[$count_activate]['href'] = $plugins[3];
52
  $array_activate[$count_activate]['url'] = $plugins[5];
53
  $count_activate++;
54
  }
55
+ else if( array_key_exists(str_replace("\\", "", $plugins[0]), $all_plugins) ) {
 
56
  $array_install[$count_install]['title'] = $plugins[1];
57
  $array_install[$count_install]['link'] = $plugins[2];
58
  $array_install[$count_install]['href'] = $plugins[3];
59
  $count_install++;
60
  }
61
+ else {
 
62
  $array_recomend[$count_recomend]['title'] = $plugins[1];
63
  $array_recomend[$count_recomend]['link'] = $plugins[2];
64
  $array_recomend[$count_recomend]['href'] = $plugins[3];
90
  <div>
91
  <h3><?php _e( 'Recommended plugins', 'contact_form' ); ?></h3>
92
  <?php foreach( $array_recomend as $recomend_plugin ) { ?>
93
+ <div style="float:left; width:200px;"><?php echo $recomend_plugin['title']; ?></div> <p><a href="<?php echo $recomend_plugin['link']; ?>" target="_blank"><?php echo __( "Read more", 'contact_form'); ?></a> <a href="<?php echo $recomend_plugin['href']; ?>" target="_blank"><?php echo __( "Download", 'contact_form'); ?></a> <a class="install-now" href="<?php echo get_bloginfo( "url" ) . $recomend_plugin['slug']; ?>" title="<?php esc_attr( sprintf( __( 'Install %s' ), $recomend_plugin['title'] ) ) ?>" target="_blank"><?php echo __( 'Install now from wordpress.org', 'contact_form' ) ?></a></p>
94
  <?php } ?>
95
  <span style="color: rgb(136, 136, 136); font-size: 10px;"><?php _e( 'If you have any questions, please contact us via plugin@bestwebsoft.com or fill in our contact form on our site', 'contact_form' ); ?> <a href="http://bestwebsoft.com/contact/">http://bestwebsoft.com/contact/</a></span>
96
  </div>
194
  }
195
  }
196
  else {
197
+ if( $cntctfrm_options_submit['cntctfrm_custom_email'] != "" && preg_match( "/^(?:[a-z0-9]+(?:[a-z0-9\-_\.]+)?@[a-z0-9]+(?:[a-z0-9\-\.]+)?\.[a-z]{2,5})$/i", trim( $cntctfrm_options_submit['cntctfrm_custom_email'] ) ) ) {
198
  update_option( 'cntctfrm_options', $cntctfrm_options, '', 'yes' );
199
  $message = __( "Options saved.", 'contact_form' );
200
  }
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-02-07 19:19+0200\n"
6
- "PO-Revision-Date: 2012-02-07 19:19+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"
@@ -16,257 +16,257 @@ msgstr ""
16
  "X-Poedit-SourceCharset: utf-8\n"
17
  "X-Poedit-SearchPath-0: .\n"
18
 
19
- #: contact_form.php:78
20
  msgid "Activated plugins"
21
  msgstr "Aktivierte PlugIns"
22
 
23
- #: contact_form.php:80
24
- #: contact_form.php:88
25
- #: contact_form.php:96
26
  msgid "Read more"
27
  msgstr "Lesen Sie mehr"
28
 
29
- #: contact_form.php:80
30
- #: contact_form.php:620
31
- #: contact_form.php:629
32
  msgid "Settings"
33
  msgstr "Einstellungen"
34
 
35
- #: contact_form.php:86
36
  msgid "Installed plugins"
37
  msgstr "Installierte PlugIns"
38
 
39
- #: contact_form.php:94
40
  msgid "Recommended plugins"
41
  msgstr "Empfohlene PlugIns"
42
 
43
- #: contact_form.php:96
44
  msgid "Download"
45
  msgstr "Download"
46
 
47
- #: contact_form.php:96
48
  #, php-format
49
  msgid "Install %s"
50
  msgstr "Installiere %s"
51
 
52
- #: contact_form.php:96
53
  msgid "Install now from wordpress.org"
54
  msgstr "installiere jetzt von wordpress.org"
55
 
56
- #: contact_form.php:98
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 "Bei Fragen wenden Sie sich an plugin@bestwebsoft.com oder füllen Sie das Kontakformular auf unserer Webseite aus"
59
 
60
- #: contact_form.php:110
61
- #: contact_form.php:213
62
  msgid "Contact Form Options"
63
  msgstr "Contact Form Einstellungen"
64
 
65
- #: contact_form.php:110
66
  msgid "Contact Form"
67
  msgstr "Contact Form"
68
 
69
- #: contact_form.php:130
70
- #: contact_form.php:164
71
- #: contact_form.php:181
72
- #: contact_form.php:271
73
  msgid "Name:"
74
  msgstr "Name:"
75
 
76
- #: contact_form.php:131
77
- #: contact_form.php:165
78
- #: contact_form.php:182
79
- #: contact_form.php:272
80
  msgid "E-Mail Address:"
81
  msgstr "E-Mail-Adresse:"
82
 
83
- #: contact_form.php:132
84
- #: contact_form.php:166
85
- #: contact_form.php:183
86
- #: contact_form.php:273
87
  msgid "Subject:"
88
  msgstr "Betreff:"
89
 
90
- #: contact_form.php:133
91
- #: contact_form.php:167
92
- #: contact_form.php:184
93
- #: contact_form.php:274
94
  msgid "Message:"
95
  msgstr "Nachricht:"
96
 
97
- #: contact_form.php:134
98
- #: contact_form.php:168
99
- #: contact_form.php:185
100
- #: contact_form.php:275
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:"
119
  msgstr "Wenn Sie Contact Form in Ihrer Webpräsenz verwenden wollen, kopieren Sie einfach folgenden shortcode auf Ihre Seite oder Ihren Artikel"
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 label for fields of the contact form"
163
  msgstr "Ändern Sie die Bezeichnung der Felder des Kontaktformulars"
164
 
165
- #: contact_form.php:281
166
  msgid "Save Changes"
167
  msgstr "Änderungen speichern"
168
 
169
- #: contact_form.php:312
170
  msgid "Thank you for contacting us."
171
  msgstr "Danke für Ihre Nachricht."
172
 
173
- #: contact_form.php:317
174
  msgid "Sorry, your e-mail could not be delivered."
175
  msgstr "Entschuldigung, Ihre E-Mail konnte leider nicht zugestellt werden."
176
 
177
- #: contact_form.php:374
178
  msgid "You can attach files of the following types"
179
  msgstr "Sie können folgende Dateitypen anhängen"
180
 
181
- #: contact_form.php:380
182
  msgid "Send me a copy"
183
  msgstr "Kopie an mich senden"
184
 
185
- #: contact_form.php:390
186
  msgid "Submit"
187
  msgstr "senden"
188
 
189
- #: contact_form.php:406
190
  msgid "Your name is required."
191
  msgstr "Ihr Name wird benötigt"
192
 
193
- #: contact_form.php:407
194
  msgid "A proper e-mail address is required."
195
  msgstr "Eine korrekte E-Mail-Adresse ist zwingend."
196
 
197
- #: contact_form.php:408
198
  msgid "Subject text is required."
199
  msgstr "Bitte geben Sie einen Betreff ein."
200
 
201
- #: contact_form.php:409
202
  msgid "Message text is required."
203
  msgstr "Bitte geben Sie eine Nachricht ein."
204
 
205
- #: contact_form.php:410
206
  msgid "Please make corrections below and try again."
207
  msgstr "Bitte führen Sie die Korrekturen unten durch und versuchen Sie es erneut."
208
 
209
- #: contact_form.php:439
210
  msgid "Attachment is broken."
211
  msgstr "Anhang scheint defekt zu sein."
212
 
213
- #: contact_form.php:452
214
  msgid "Please complete the CAPTCHA."
215
  msgstr "Bitte ergänzen Sie das CAPTCHA."
216
 
217
- #: contact_form.php:509
218
- #: contact_form.php:543
219
  msgid "Sent from (ip address)"
220
  msgstr "Gesendet von (IP-Adresse)"
221
 
222
- #: contact_form.php:510
223
- #: contact_form.php:546
224
  msgid "Date/Time"
225
  msgstr "Datum / Uhrzeit"
226
 
227
- #: contact_form.php:511
228
- #: contact_form.php:549
229
  msgid "Coming from (referer)"
230
  msgstr "gesendet von (referer)"
231
 
232
- #: contact_form.php:512
233
- #: contact_form.php:552
234
  msgid "Using (user agent)"
235
  msgstr "mit (user agent)"
236
 
237
- #: contact_form.php:517
238
  msgid "Contact from"
239
  msgstr "Kontakt von"
240
 
241
- #: contact_form.php:522
242
  msgid "Name"
243
  msgstr "Nome"
244
 
245
- #: contact_form.php:525
246
  msgid "Email"
247
  msgstr "E-Mail"
248
 
249
- #: contact_form.php:528
250
  msgid "Subject"
251
  msgstr "Betreff"
252
 
253
- #: contact_form.php:531
254
  msgid "Message"
255
  msgstr "Nachricht"
256
 
257
- #: contact_form.php:534
258
  msgid "Site"
259
  msgstr "Site"
260
 
261
- #: contact_form.php:575
262
  msgid "If you can see this MIME than your client doesn't accept MIME types!"
263
  msgstr "Wenn Sie dieses MIME sehen, unterstützt Ihr Client keine MIME-Typen!"
264
 
265
- #: contact_form.php:630
266
  msgid "FAQ"
267
  msgstr "Häufig gestellte Fragen (FAQ)"
268
 
269
- #: contact_form.php:631
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-02-24 15:53+0200\n"
6
+ "PO-Revision-Date: 2012-02-24 15:53+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"
16
  "X-Poedit-SourceCharset: utf-8\n"
17
  "X-Poedit-SearchPath-0: .\n"
18
 
19
+ #: contact_form.php:75
20
  msgid "Activated plugins"
21
  msgstr "Aktivierte PlugIns"
22
 
23
+ #: contact_form.php:77
24
+ #: contact_form.php:85
25
+ #: contact_form.php:93
26
  msgid "Read more"
27
  msgstr "Lesen Sie mehr"
28
 
29
+ #: contact_form.php:77
30
+ #: contact_form.php:617
31
+ #: contact_form.php:626
32
  msgid "Settings"
33
  msgstr "Einstellungen"
34
 
35
+ #: contact_form.php:83
36
  msgid "Installed plugins"
37
  msgstr "Installierte PlugIns"
38
 
39
+ #: contact_form.php:91
40
  msgid "Recommended plugins"
41
  msgstr "Empfohlene PlugIns"
42
 
43
+ #: contact_form.php:93
44
  msgid "Download"
45
  msgstr "Download"
46
 
47
+ #: contact_form.php:93
48
  #, php-format
49
  msgid "Install %s"
50
  msgstr "Installiere %s"
51
 
52
+ #: contact_form.php:93
53
  msgid "Install now from wordpress.org"
54
  msgstr "installiere jetzt von wordpress.org"
55
 
56
+ #: contact_form.php:95
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 "Bei Fragen wenden Sie sich an plugin@bestwebsoft.com oder füllen Sie das Kontakformular auf unserer Webseite aus"
59
 
60
+ #: contact_form.php:107
61
+ #: contact_form.php:210
62
  msgid "Contact Form Options"
63
  msgstr "Contact Form Einstellungen"
64
 
65
+ #: contact_form.php:107
66
  msgid "Contact Form"
67
  msgstr "Contact Form"
68
 
69
+ #: contact_form.php:127
70
+ #: contact_form.php:161
71
+ #: contact_form.php:178
72
+ #: contact_form.php:268
73
  msgid "Name:"
74
  msgstr "Name:"
75
 
76
+ #: contact_form.php:128
77
+ #: contact_form.php:162
78
+ #: contact_form.php:179
79
+ #: contact_form.php:269
80
  msgid "E-Mail Address:"
81
  msgstr "E-Mail-Adresse:"
82
 
83
+ #: contact_form.php:129
84
+ #: contact_form.php:163
85
+ #: contact_form.php:180
86
+ #: contact_form.php:270
87
  msgid "Subject:"
88
  msgstr "Betreff:"
89
 
90
+ #: contact_form.php:130
91
+ #: contact_form.php:164
92
+ #: contact_form.php:181
93
+ #: contact_form.php:271
94
  msgid "Message:"
95
  msgstr "Nachricht:"
96
 
97
+ #: contact_form.php:131
98
+ #: contact_form.php:165
99
+ #: contact_form.php:182
100
+ #: contact_form.php:272
101
  msgid "Attachment:"
102
  msgstr "Anhang:"
103
 
104
+ #: contact_form.php:190
105
+ #: contact_form.php:199
106
  msgid "Options saved."
107
  msgstr "Einstellungen gespeichert."
108
 
109
+ #: contact_form.php:193
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:202
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:215
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:"
119
  msgstr "Wenn Sie Contact Form in Ihrer Webpräsenz verwenden wollen, kopieren Sie einfach folgenden shortcode auf Ihre Seite oder Ihren Artikel"
120
 
121
+ #: contact_form.php:216
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:220
126
  msgid "Use email of wordpress user:"
127
  msgstr "Benutze die E-Mail-Adresse von WordPress-Benutzer:"
128
 
129
+ #: contact_form.php:226
130
  msgid "Select user name"
131
  msgstr "Wähle Benutzer"
132
 
133
+ #: contact_form.php:231
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:235
138
  msgid "Use this email:"
139
  msgstr "Verwende diese E-Mail-Adresse:"
140
 
141
+ #: contact_form.php:241
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:245
146
  msgid "Additional options"
147
  msgstr "Erweiterte Optionen"
148
 
149
+ #: contact_form.php:248
150
  msgid "Display Attachment block"
151
  msgstr "Anhänge erlauben"
152
 
153
+ #: contact_form.php:253
154
  msgid "Users can attach files of the following types"
155
  msgstr "Benutzer können folgende Dateitypen anhängen"
156
 
157
+ #: contact_form.php:257
158
  msgid "Display Send me a copy block"
159
  msgstr "Kopie-an-mich anzeigen"
160
 
161
+ #: contact_form.php:263
162
  msgid "Change label for fields of the contact form"
163
  msgstr "Ändern Sie die Bezeichnung der Felder des Kontaktformulars"
164
 
165
+ #: contact_form.php:278
166
  msgid "Save Changes"
167
  msgstr "Änderungen speichern"
168
 
169
+ #: contact_form.php:309
170
  msgid "Thank you for contacting us."
171
  msgstr "Danke für Ihre Nachricht."
172
 
173
+ #: contact_form.php:314
174
  msgid "Sorry, your e-mail could not be delivered."
175
  msgstr "Entschuldigung, Ihre E-Mail konnte leider nicht zugestellt werden."
176
 
177
+ #: contact_form.php:371
178
  msgid "You can attach files of the following types"
179
  msgstr "Sie können folgende Dateitypen anhängen"
180
 
181
+ #: contact_form.php:377
182
  msgid "Send me a copy"
183
  msgstr "Kopie an mich senden"
184
 
185
+ #: contact_form.php:387
186
  msgid "Submit"
187
  msgstr "senden"
188
 
189
+ #: contact_form.php:403
190
  msgid "Your name is required."
191
  msgstr "Ihr Name wird benötigt"
192
 
193
+ #: contact_form.php:404
194
  msgid "A proper e-mail address is required."
195
  msgstr "Eine korrekte E-Mail-Adresse ist zwingend."
196
 
197
+ #: contact_form.php:405
198
  msgid "Subject text is required."
199
  msgstr "Bitte geben Sie einen Betreff ein."
200
 
201
+ #: contact_form.php:406
202
  msgid "Message text is required."
203
  msgstr "Bitte geben Sie eine Nachricht ein."
204
 
205
+ #: contact_form.php:407
206
  msgid "Please make corrections below and try again."
207
  msgstr "Bitte führen Sie die Korrekturen unten durch und versuchen Sie es erneut."
208
 
209
+ #: contact_form.php:436
210
  msgid "Attachment is broken."
211
  msgstr "Anhang scheint defekt zu sein."
212
 
213
+ #: contact_form.php:449
214
  msgid "Please complete the CAPTCHA."
215
  msgstr "Bitte ergänzen Sie das CAPTCHA."
216
 
217
+ #: contact_form.php:506
218
+ #: contact_form.php:540
219
  msgid "Sent from (ip address)"
220
  msgstr "Gesendet von (IP-Adresse)"
221
 
222
+ #: contact_form.php:507
223
+ #: contact_form.php:543
224
  msgid "Date/Time"
225
  msgstr "Datum / Uhrzeit"
226
 
227
+ #: contact_form.php:508
228
+ #: contact_form.php:546
229
  msgid "Coming from (referer)"
230
  msgstr "gesendet von (referer)"
231
 
232
+ #: contact_form.php:509
233
+ #: contact_form.php:549
234
  msgid "Using (user agent)"
235
  msgstr "mit (user agent)"
236
 
237
+ #: contact_form.php:514
238
  msgid "Contact from"
239
  msgstr "Kontakt von"
240
 
241
+ #: contact_form.php:519
242
  msgid "Name"
243
  msgstr "Nome"
244
 
245
+ #: contact_form.php:522
246
  msgid "Email"
247
  msgstr "E-Mail"
248
 
249
+ #: contact_form.php:525
250
  msgid "Subject"
251
  msgstr "Betreff"
252
 
253
+ #: contact_form.php:528
254
  msgid "Message"
255
  msgstr "Nachricht"
256
 
257
+ #: contact_form.php:531
258
  msgid "Site"
259
  msgstr "Site"
260
 
261
+ #: contact_form.php:572
262
  msgid "If you can see this MIME than your client doesn't accept MIME types!"
263
  msgstr "Wenn Sie dieses MIME sehen, unterstützt Ihr Client keine MIME-Typen!"
264
 
265
+ #: contact_form.php:627
266
  msgid "FAQ"
267
  msgstr "Häufig gestellte Fragen (FAQ)"
268
 
269
+ #: contact_form.php:628
270
  msgid "Support"
271
  msgstr "Unterstützung"
272
 
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-02-17 10:54+0200\n"
6
- "PO-Revision-Date: 2012-02-17 11:01+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"
@@ -16,257 +16,257 @@ msgstr ""
16
  "X-Poedit-SourceCharset: utf-8\n"
17
  "X-Poedit-SearchPath-0: .\n"
18
 
19
- #: contact_form.php:78
20
  msgid "Activated plugins"
21
  msgstr "Plugin ativado"
22
 
23
- #: contact_form.php:80
24
- #: contact_form.php:88
25
- #: contact_form.php:96
26
  msgid "Read more"
27
  msgstr "Lea mas"
28
 
29
- #: contact_form.php:80
30
- #: contact_form.php:620
31
- #: contact_form.php:629
32
  msgid "Settings"
33
  msgstr "Configuración"
34
 
35
- #: contact_form.php:86
36
  msgid "Installed plugins"
37
  msgstr "Plugin instalados"
38
 
39
- #: contact_form.php:94
40
  msgid "Recommended plugins"
41
  msgstr "Plugins recomendados"
42
 
43
- #: contact_form.php:96
44
  msgid "Download"
45
  msgstr "Descargar"
46
 
47
- #: contact_form.php:96
48
  #, php-format
49
  msgid "Install %s"
50
  msgstr "Instala %s"
51
 
52
- #: contact_form.php:96
53
  msgid "Install now from wordpress.org"
54
  msgstr "Instala ahora de wordpress.org"
55
 
56
- #: contact_form.php:98
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 "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:110
61
- #: contact_form.php:213
62
  msgid "Contact Form Options"
63
  msgstr "Opciones Contact Form"
64
 
65
- #: contact_form.php:110
66
  msgid "Contact Form"
67
  msgstr "Contact Form"
68
 
69
- #: contact_form.php:130
70
- #: contact_form.php:164
71
- #: contact_form.php:181
72
- #: contact_form.php:271
73
  msgid "Name:"
74
  msgstr "Nombre:"
75
 
76
- #: contact_form.php:131
77
- #: contact_form.php:165
78
- #: contact_form.php:182
79
- #: contact_form.php:272
80
  msgid "E-Mail Address:"
81
  msgstr "Dirección e-mail:"
82
 
83
- #: contact_form.php:132
84
- #: contact_form.php:166
85
- #: contact_form.php:183
86
- #: contact_form.php:273
87
  msgid "Subject:"
88
  msgstr "Asunto:"
89
 
90
- #: contact_form.php:133
91
- #: contact_form.php:167
92
- #: contact_form.php:184
93
- #: contact_form.php:274
94
  msgid "Message:"
95
  msgstr "Mensaje:"
96
 
97
- #: contact_form.php:134
98
- #: contact_form.php:168
99
- #: contact_form.php:185
100
- #: contact_form.php:275
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:"
119
  msgstr "Si quiere añadir Contact Form en su web, copie y pegue este código en su mensaje o página:"
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 label for fields of the contact form"
163
  msgstr "Modifica las etiquetas de los campos en contact form"
164
 
165
- #: contact_form.php:281
166
  msgid "Save Changes"
167
  msgstr "Guardar los cambios"
168
 
169
- #: contact_form.php:312
170
  msgid "Thank you for contacting us."
171
  msgstr "Gracias por contactar con nosotros"
172
 
173
- #: contact_form.php:317
174
  msgid "Sorry, your e-mail could not be delivered."
175
  msgstr "Disculpe, su email no se puede entregar."
176
 
177
- #: contact_form.php:374
178
  msgid "You can attach files of the following types"
179
  msgstr "Puede adjuntar archivos de estos tipos"
180
 
181
- #: contact_form.php:380
182
  msgid "Send me a copy"
183
  msgstr "Envíame una copia"
184
 
185
- #: contact_form.php:390
186
  msgid "Submit"
187
  msgstr "Enviar"
188
 
189
- #: contact_form.php:406
190
  msgid "Your name is required."
191
  msgstr "Su nombre es obligatorio."
192
 
193
- #: contact_form.php:407
194
  msgid "A proper e-mail address is required."
195
  msgstr "Una dirección válida es obligatoria."
196
 
197
- #: contact_form.php:408
198
  msgid "Subject text is required."
199
  msgstr "El asunto es obligatorio."
200
 
201
- #: contact_form.php:409
202
  msgid "Message text is required."
203
  msgstr "El mensaje es obligatorio."
204
 
205
- #: contact_form.php:410
206
  msgid "Please make corrections below and try again."
207
  msgstr "Por favor, corrija los datos y pruebe de nuevo."
208
 
209
- #: contact_form.php:439
210
  msgid "Attachment is broken."
211
  msgstr "El adjunto es incorrecto."
212
 
213
- #: contact_form.php:452
214
  msgid "Please complete the CAPTCHA."
215
  msgstr "Por favor completa el CAPTCHA"
216
 
217
- #: contact_form.php:509
218
- #: contact_form.php:543
219
  msgid "Sent from (ip address)"
220
  msgstr "Enviado desde (dirección IP)"
221
 
222
- #: contact_form.php:510
223
- #: contact_form.php:546
224
  msgid "Date/Time"
225
  msgstr "Fecha/hora"
226
 
227
- #: contact_form.php:511
228
- #: contact_form.php:549
229
  msgid "Coming from (referer)"
230
  msgstr "De (referente)"
231
 
232
- #: contact_form.php:512
233
- #: contact_form.php:552
234
  msgid "Using (user agent)"
235
  msgstr "Usando (user agent)"
236
 
237
- #: contact_form.php:517
238
  msgid "Contact from"
239
  msgstr "Contact from"
240
 
241
- #: contact_form.php:522
242
  msgid "Name"
243
  msgstr "Nombre"
244
 
245
- #: contact_form.php:525
246
  msgid "Email"
247
  msgstr "E-mail"
248
 
249
- #: contact_form.php:528
250
  msgid "Subject"
251
  msgstr "Asunto"
252
 
253
- #: contact_form.php:531
254
  msgid "Message"
255
  msgstr "Mensaje"
256
 
257
- #: contact_form.php:534
258
  msgid "Site"
259
  msgstr "Sitio"
260
 
261
- #: contact_form.php:575
262
  msgid "If you can see this MIME than your client doesn't accept MIME types!"
263
  msgstr "Si usted puede ver esta MIME es que su cliente no acepta los tipos MIME!"
264
 
265
- #: contact_form.php:630
266
  msgid "FAQ"
267
  msgstr "FAQ"
268
 
269
- #: contact_form.php:631
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-02-24 15:53+0200\n"
6
+ "PO-Revision-Date: 2012-02-24 15:53+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"
16
  "X-Poedit-SourceCharset: utf-8\n"
17
  "X-Poedit-SearchPath-0: .\n"
18
 
19
+ #: contact_form.php:75
20
  msgid "Activated plugins"
21
  msgstr "Plugin ativado"
22
 
23
+ #: contact_form.php:77
24
+ #: contact_form.php:85
25
+ #: contact_form.php:93
26
  msgid "Read more"
27
  msgstr "Lea mas"
28
 
29
+ #: contact_form.php:77
30
+ #: contact_form.php:617
31
+ #: contact_form.php:626
32
  msgid "Settings"
33
  msgstr "Configuración"
34
 
35
+ #: contact_form.php:83
36
  msgid "Installed plugins"
37
  msgstr "Plugin instalados"
38
 
39
+ #: contact_form.php:91
40
  msgid "Recommended plugins"
41
  msgstr "Plugins recomendados"
42
 
43
+ #: contact_form.php:93
44
  msgid "Download"
45
  msgstr "Descargar"
46
 
47
+ #: contact_form.php:93
48
  #, php-format
49
  msgid "Install %s"
50
  msgstr "Instala %s"
51
 
52
+ #: contact_form.php:93
53
  msgid "Install now from wordpress.org"
54
  msgstr "Instala ahora de wordpress.org"
55
 
56
+ #: contact_form.php:95
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 "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:107
61
+ #: contact_form.php:210
62
  msgid "Contact Form Options"
63
  msgstr "Opciones Contact Form"
64
 
65
+ #: contact_form.php:107
66
  msgid "Contact Form"
67
  msgstr "Contact Form"
68
 
69
+ #: contact_form.php:127
70
+ #: contact_form.php:161
71
+ #: contact_form.php:178
72
+ #: contact_form.php:268
73
  msgid "Name:"
74
  msgstr "Nombre:"
75
 
76
+ #: contact_form.php:128
77
+ #: contact_form.php:162
78
+ #: contact_form.php:179
79
+ #: contact_form.php:269
80
  msgid "E-Mail Address:"
81
  msgstr "Dirección e-mail:"
82
 
83
+ #: contact_form.php:129
84
+ #: contact_form.php:163
85
+ #: contact_form.php:180
86
+ #: contact_form.php:270
87
  msgid "Subject:"
88
  msgstr "Asunto:"
89
 
90
+ #: contact_form.php:130
91
+ #: contact_form.php:164
92
+ #: contact_form.php:181
93
+ #: contact_form.php:271
94
  msgid "Message:"
95
  msgstr "Mensaje:"
96
 
97
+ #: contact_form.php:131
98
+ #: contact_form.php:165
99
+ #: contact_form.php:182
100
+ #: contact_form.php:272
101
  msgid "Attachment:"
102
  msgstr "Adjunto:"
103
 
104
+ #: contact_form.php:190
105
+ #: contact_form.php:199
106
  msgid "Options saved."
107
  msgstr "Configuración guardada."
108
 
109
+ #: contact_form.php:193
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:202
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:215
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:"
119
  msgstr "Si quiere añadir Contact Form en su web, copie y pegue este código en su mensaje o página:"
120
 
121
+ #: contact_form.php:216
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:220
126
  msgid "Use email of wordpress user:"
127
  msgstr "Use el email del usuario de Wordpress:"
128
 
129
+ #: contact_form.php:226
130
  msgid "Select user name"
131
  msgstr "Seleccione nombre de usuario"
132
 
133
+ #: contact_form.php:231
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:235
138
  msgid "Use this email:"
139
  msgstr "Use este emaill:"
140
 
141
+ #: contact_form.php:241
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:245
146
  msgid "Additional options"
147
  msgstr "Opciones adicionales"
148
 
149
+ #: contact_form.php:248
150
  msgid "Display Attachment block"
151
  msgstr "Visualiza el adjunto"
152
 
153
+ #: contact_form.php:253
154
  msgid "Users can attach files of the following types"
155
  msgstr "Usuarios pueden adjuntar archivos de este tipo"
156
 
157
+ #: contact_form.php:257
158
  msgid "Display Send me a copy block"
159
  msgstr "Ver envíame una copia"
160
 
161
+ #: contact_form.php:263
162
  msgid "Change label for fields of the contact form"
163
  msgstr "Modifica las etiquetas de los campos en contact form"
164
 
165
+ #: contact_form.php:278
166
  msgid "Save Changes"
167
  msgstr "Guardar los cambios"
168
 
169
+ #: contact_form.php:309
170
  msgid "Thank you for contacting us."
171
  msgstr "Gracias por contactar con nosotros"
172
 
173
+ #: contact_form.php:314
174
  msgid "Sorry, your e-mail could not be delivered."
175
  msgstr "Disculpe, su email no se puede entregar."
176
 
177
+ #: contact_form.php:371
178
  msgid "You can attach files of the following types"
179
  msgstr "Puede adjuntar archivos de estos tipos"
180
 
181
+ #: contact_form.php:377
182
  msgid "Send me a copy"
183
  msgstr "Envíame una copia"
184
 
185
+ #: contact_form.php:387
186
  msgid "Submit"
187
  msgstr "Enviar"
188
 
189
+ #: contact_form.php:403
190
  msgid "Your name is required."
191
  msgstr "Su nombre es obligatorio."
192
 
193
+ #: contact_form.php:404
194
  msgid "A proper e-mail address is required."
195
  msgstr "Una dirección válida es obligatoria."
196
 
197
+ #: contact_form.php:405
198
  msgid "Subject text is required."
199
  msgstr "El asunto es obligatorio."
200
 
201
+ #: contact_form.php:406
202
  msgid "Message text is required."
203
  msgstr "El mensaje es obligatorio."
204
 
205
+ #: contact_form.php:407
206
  msgid "Please make corrections below and try again."
207
  msgstr "Por favor, corrija los datos y pruebe de nuevo."
208
 
209
+ #: contact_form.php:436
210
  msgid "Attachment is broken."
211
  msgstr "El adjunto es incorrecto."
212
 
213
+ #: contact_form.php:449
214
  msgid "Please complete the CAPTCHA."
215
  msgstr "Por favor completa el CAPTCHA"
216
 
217
+ #: contact_form.php:506
218
+ #: contact_form.php:540
219
  msgid "Sent from (ip address)"
220
  msgstr "Enviado desde (dirección IP)"
221
 
222
+ #: contact_form.php:507
223
+ #: contact_form.php:543
224
  msgid "Date/Time"
225
  msgstr "Fecha/hora"
226
 
227
+ #: contact_form.php:508
228
+ #: contact_form.php:546
229
  msgid "Coming from (referer)"
230
  msgstr "De (referente)"
231
 
232
+ #: contact_form.php:509
233
+ #: contact_form.php:549
234
  msgid "Using (user agent)"
235
  msgstr "Usando (user agent)"
236
 
237
+ #: contact_form.php:514
238
  msgid "Contact from"
239
  msgstr "Contact from"
240
 
241
+ #: contact_form.php:519
242
  msgid "Name"
243
  msgstr "Nombre"
244
 
245
+ #: contact_form.php:522
246
  msgid "Email"
247
  msgstr "E-mail"
248
 
249
+ #: contact_form.php:525
250
  msgid "Subject"
251
  msgstr "Asunto"
252
 
253
+ #: contact_form.php:528
254
  msgid "Message"
255
  msgstr "Mensaje"
256
 
257
+ #: contact_form.php:531
258
  msgid "Site"
259
  msgstr "Sitio"
260
 
261
+ #: contact_form.php:572
262
  msgid "If you can see this MIME than your client doesn't accept MIME types!"
263
  msgstr "Si usted puede ver esta MIME es que su cliente no acepta los tipos MIME!"
264
 
265
+ #: contact_form.php:627
266
  msgid "FAQ"
267
  msgstr "FAQ"
268
 
269
+ #: contact_form.php:628
270
  msgid "Support"
271
  msgstr "Soporte"
272
 
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-02-07 19:19+0200\n"
6
- "PO-Revision-Date: 2012-02-07 19:19+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"
@@ -16,257 +16,257 @@ msgstr ""
16
  "X-Poedit-SourceCharset: utf-8\n"
17
  "X-Poedit-SearchPath-0: .\n"
18
 
19
- #: contact_form.php:78
20
  msgid "Activated plugins"
21
  msgstr "Plugin attivati"
22
 
23
- #: contact_form.php:80
24
- #: contact_form.php:88
25
- #: contact_form.php:96
26
  msgid "Read more"
27
  msgstr "Leggi"
28
 
29
- #: contact_form.php:80
30
- #: contact_form.php:620
31
- #: contact_form.php:629
32
  msgid "Settings"
33
  msgstr "Settaggi"
34
 
35
- #: contact_form.php:86
36
  msgid "Installed plugins"
37
  msgstr "Plugin installati"
38
 
39
- #: contact_form.php:94
40
  msgid "Recommended plugins"
41
  msgstr "Plugin raccomandati"
42
 
43
- #: contact_form.php:96
44
  msgid "Download"
45
  msgstr "Download"
46
 
47
- #: contact_form.php:96
48
  #, php-format
49
  msgid "Install %s"
50
  msgstr "Installa %s"
51
 
52
- #: contact_form.php:96
53
  msgid "Install now from wordpress.org"
54
  msgstr "Installa ora da wordpress.org"
55
 
56
- #: contact_form.php:98
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 hai domande, per favore contattaci a plugin@bestwebsoft.com o compila il modulo \"contact form\" sul nostro sito"
59
 
60
- #: contact_form.php:110
61
- #: contact_form.php:213
62
  msgid "Contact Form Options"
63
  msgstr "Opzioni Contact Form"
64
 
65
- #: contact_form.php:110
66
  msgid "Contact Form"
67
  msgstr "Contact Form"
68
 
69
- #: contact_form.php:130
70
- #: contact_form.php:164
71
- #: contact_form.php:181
72
- #: contact_form.php:271
73
  msgid "Name:"
74
  msgstr "Nome:"
75
 
76
- #: contact_form.php:131
77
- #: contact_form.php:165
78
- #: contact_form.php:182
79
- #: contact_form.php:272
80
  msgid "E-Mail Address:"
81
  msgstr "Indirizzo e-mail:"
82
 
83
- #: contact_form.php:132
84
- #: contact_form.php:166
85
- #: contact_form.php:183
86
- #: contact_form.php:273
87
  msgid "Subject:"
88
  msgstr "Oggetto:"
89
 
90
- #: contact_form.php:133
91
- #: contact_form.php:167
92
- #: contact_form.php:184
93
- #: contact_form.php:274
94
  msgid "Message:"
95
  msgstr "Messaggio:"
96
 
97
- #: contact_form.php:134
98
- #: contact_form.php:168
99
- #: contact_form.php:185
100
- #: contact_form.php:275
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:"
119
  msgstr "Se vuoi aggiungere un Contact Form al tuo sito, copia e incolla questo shortcode nei tuoi post o nelle tue pagine:"
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 label for fields of the contact form"
163
  msgstr "Modifica le etichette dei campi del contact form"
164
 
165
- #: contact_form.php:281
166
  msgid "Save Changes"
167
  msgstr "Salva le modifiche"
168
 
169
- #: contact_form.php:312
170
  msgid "Thank you for contacting us."
171
  msgstr "Grazie per averci contattato."
172
 
173
- #: contact_form.php:317
174
  msgid "Sorry, your e-mail could not be delivered."
175
  msgstr "Spiacenti, la tua e-mail non può essere consegnata al momento."
176
 
177
- #: contact_form.php:374
178
  msgid "You can attach files of the following types"
179
  msgstr "Gli utenti possono allegare i files nei seguenti tipi"
180
 
181
- #: contact_form.php:380
182
  msgid "Send me a copy"
183
  msgstr "Inviami una copia"
184
 
185
- #: contact_form.php:390
186
  msgid "Submit"
187
  msgstr "Invia"
188
 
189
- #: contact_form.php:406
190
  msgid "Your name is required."
191
  msgstr "Il nome è obbligatorio"
192
 
193
- #: contact_form.php:407
194
  msgid "A proper e-mail address is required."
195
  msgstr "È richiesto un indirizzo e-mail corretto"
196
 
197
- #: contact_form.php:408
198
  msgid "Subject text is required."
199
  msgstr "L'oggetto è obbligatorio"
200
 
201
- #: contact_form.php:409
202
  msgid "Message text is required."
203
  msgstr "Il campo messaggio è obbligatorio"
204
 
205
- #: contact_form.php:410
206
  msgid "Please make corrections below and try again."
207
  msgstr "Controlla i dati del modulo e riprova!"
208
 
209
- #: contact_form.php:439
210
  msgid "Attachment is broken."
211
  msgstr "L'attachment non è corretto"
212
 
213
- #: contact_form.php:452
214
  msgid "Please complete the CAPTCHA."
215
  msgstr "Completa il CAPTCHA"
216
 
217
- #: contact_form.php:509
218
- #: contact_form.php:543
219
  msgid "Sent from (ip address)"
220
  msgstr "Inviato da (indirizzi IP)"
221
 
222
- #: contact_form.php:510
223
- #: contact_form.php:546
224
  msgid "Date/Time"
225
  msgstr "Data/Ora"
226
 
227
- #: contact_form.php:511
228
- #: contact_form.php:549
229
  msgid "Coming from (referer)"
230
  msgstr "Da (referente)"
231
 
232
- #: contact_form.php:512
233
- #: contact_form.php:552
234
  msgid "Using (user agent)"
235
  msgstr "Utilizza (user agent)"
236
 
237
- #: contact_form.php:517
238
  msgid "Contact from"
239
  msgstr "Contact from"
240
 
241
- #: contact_form.php:522
242
  msgid "Name"
243
  msgstr "Nome"
244
 
245
- #: contact_form.php:525
246
  msgid "Email"
247
  msgstr "e-mail"
248
 
249
- #: contact_form.php:528
250
  msgid "Subject"
251
  msgstr "Oggetto"
252
 
253
- #: contact_form.php:531
254
  msgid "Message"
255
  msgstr "Messaggio"
256
 
257
- #: contact_form.php:534
258
  msgid "Site"
259
  msgstr "Sito"
260
 
261
- #: contact_form.php:575
262
  msgid "If you can see this MIME than your client doesn't accept MIME types!"
263
  msgstr "Se puoi visualizzare questo MIME il tuo client non supporta i MIME types!"
264
 
265
- #: contact_form.php:630
266
  msgid "FAQ"
267
  msgstr "FAQ"
268
 
269
- #: contact_form.php:631
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-02-24 15:53+0200\n"
6
+ "PO-Revision-Date: 2012-02-24 15:53+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"
16
  "X-Poedit-SourceCharset: utf-8\n"
17
  "X-Poedit-SearchPath-0: .\n"
18
 
19
+ #: contact_form.php:75
20
  msgid "Activated plugins"
21
  msgstr "Plugin attivati"
22
 
23
+ #: contact_form.php:77
24
+ #: contact_form.php:85
25
+ #: contact_form.php:93
26
  msgid "Read more"
27
  msgstr "Leggi"
28
 
29
+ #: contact_form.php:77
30
+ #: contact_form.php:617
31
+ #: contact_form.php:626
32
  msgid "Settings"
33
  msgstr "Settaggi"
34
 
35
+ #: contact_form.php:83
36
  msgid "Installed plugins"
37
  msgstr "Plugin installati"
38
 
39
+ #: contact_form.php:91
40
  msgid "Recommended plugins"
41
  msgstr "Plugin raccomandati"
42
 
43
+ #: contact_form.php:93
44
  msgid "Download"
45
  msgstr "Download"
46
 
47
+ #: contact_form.php:93
48
  #, php-format
49
  msgid "Install %s"
50
  msgstr "Installa %s"
51
 
52
+ #: contact_form.php:93
53
  msgid "Install now from wordpress.org"
54
  msgstr "Installa ora da wordpress.org"
55
 
56
+ #: contact_form.php:95
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 hai domande, per favore contattaci a plugin@bestwebsoft.com o compila il modulo \"contact form\" sul nostro sito"
59
 
60
+ #: contact_form.php:107
61
+ #: contact_form.php:210
62
  msgid "Contact Form Options"
63
  msgstr "Opzioni Contact Form"
64
 
65
+ #: contact_form.php:107
66
  msgid "Contact Form"
67
  msgstr "Contact Form"
68
 
69
+ #: contact_form.php:127
70
+ #: contact_form.php:161
71
+ #: contact_form.php:178
72
+ #: contact_form.php:268
73
  msgid "Name:"
74
  msgstr "Nome:"
75
 
76
+ #: contact_form.php:128
77
+ #: contact_form.php:162
78
+ #: contact_form.php:179
79
+ #: contact_form.php:269
80
  msgid "E-Mail Address:"
81
  msgstr "Indirizzo e-mail:"
82
 
83
+ #: contact_form.php:129
84
+ #: contact_form.php:163
85
+ #: contact_form.php:180
86
+ #: contact_form.php:270
87
  msgid "Subject:"
88
  msgstr "Oggetto:"
89
 
90
+ #: contact_form.php:130
91
+ #: contact_form.php:164
92
+ #: contact_form.php:181
93
+ #: contact_form.php:271
94
  msgid "Message:"
95
  msgstr "Messaggio:"
96
 
97
+ #: contact_form.php:131
98
+ #: contact_form.php:165
99
+ #: contact_form.php:182
100
+ #: contact_form.php:272
101
  msgid "Attachment:"
102
  msgstr "Attachment:"
103
 
104
+ #: contact_form.php:190
105
+ #: contact_form.php:199
106
  msgid "Options saved."
107
  msgstr "Opzioni salvate."
108
 
109
+ #: contact_form.php:193
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:202
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:215
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:"
119
  msgstr "Se vuoi aggiungere un Contact Form al tuo sito, copia e incolla questo shortcode nei tuoi post o nelle tue pagine:"
120
 
121
+ #: contact_form.php:216
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:220
126
  msgid "Use email of wordpress user:"
127
  msgstr "Utilizza l'e-mail dell'utente wordpress:"
128
 
129
+ #: contact_form.php:226
130
  msgid "Select user name"
131
  msgstr "Seleziona nome utente"
132
 
133
+ #: contact_form.php:231
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:235
138
  msgid "Use this email:"
139
  msgstr "Utilizza questa e-mail:"
140
 
141
+ #: contact_form.php:241
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:245
146
  msgid "Additional options"
147
  msgstr "Impostazioni aggiuntive"
148
 
149
+ #: contact_form.php:248
150
  msgid "Display Attachment block"
151
  msgstr "Visualizza l'attachment"
152
 
153
+ #: contact_form.php:253
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:257
158
  msgid "Display Send me a copy block"
159
  msgstr "Visualizza il blocco \"Inviami una copia\" "
160
 
161
+ #: contact_form.php:263
162
  msgid "Change label for fields of the contact form"
163
  msgstr "Modifica le etichette dei campi del contact form"
164
 
165
+ #: contact_form.php:278
166
  msgid "Save Changes"
167
  msgstr "Salva le modifiche"
168
 
169
+ #: contact_form.php:309
170
  msgid "Thank you for contacting us."
171
  msgstr "Grazie per averci contattato."
172
 
173
+ #: contact_form.php:314
174
  msgid "Sorry, your e-mail could not be delivered."
175
  msgstr "Spiacenti, la tua e-mail non può essere consegnata al momento."
176
 
177
+ #: contact_form.php:371
178
  msgid "You can attach files of the following types"
179
  msgstr "Gli utenti possono allegare i files nei seguenti tipi"
180
 
181
+ #: contact_form.php:377
182
  msgid "Send me a copy"
183
  msgstr "Inviami una copia"
184
 
185
+ #: contact_form.php:387
186
  msgid "Submit"
187
  msgstr "Invia"
188
 
189
+ #: contact_form.php:403
190
  msgid "Your name is required."
191
  msgstr "Il nome è obbligatorio"
192
 
193
+ #: contact_form.php:404
194
  msgid "A proper e-mail address is required."
195
  msgstr "È richiesto un indirizzo e-mail corretto"
196
 
197
+ #: contact_form.php:405
198
  msgid "Subject text is required."
199
  msgstr "L'oggetto è obbligatorio"
200
 
201
+ #: contact_form.php:406
202
  msgid "Message text is required."
203
  msgstr "Il campo messaggio è obbligatorio"
204
 
205
+ #: contact_form.php:407
206
  msgid "Please make corrections below and try again."
207
  msgstr "Controlla i dati del modulo e riprova!"
208
 
209
+ #: contact_form.php:436
210
  msgid "Attachment is broken."
211
  msgstr "L'attachment non è corretto"
212
 
213
+ #: contact_form.php:449
214
  msgid "Please complete the CAPTCHA."
215
  msgstr "Completa il CAPTCHA"
216
 
217
+ #: contact_form.php:506
218
+ #: contact_form.php:540
219
  msgid "Sent from (ip address)"
220
  msgstr "Inviato da (indirizzi IP)"
221
 
222
+ #: contact_form.php:507
223
+ #: contact_form.php:543
224
  msgid "Date/Time"
225
  msgstr "Data/Ora"
226
 
227
+ #: contact_form.php:508
228
+ #: contact_form.php:546
229
  msgid "Coming from (referer)"
230
  msgstr "Da (referente)"
231
 
232
+ #: contact_form.php:509
233
+ #: contact_form.php:549
234
  msgid "Using (user agent)"
235
  msgstr "Utilizza (user agent)"
236
 
237
+ #: contact_form.php:514
238
  msgid "Contact from"
239
  msgstr "Contact from"
240
 
241
+ #: contact_form.php:519
242
  msgid "Name"
243
  msgstr "Nome"
244
 
245
+ #: contact_form.php:522
246
  msgid "Email"
247
  msgstr "e-mail"
248
 
249
+ #: contact_form.php:525
250
  msgid "Subject"
251
  msgstr "Oggetto"
252
 
253
+ #: contact_form.php:528
254
  msgid "Message"
255
  msgstr "Messaggio"
256
 
257
+ #: contact_form.php:531
258
  msgid "Site"
259
  msgstr "Sito"
260
 
261
+ #: contact_form.php:572
262
  msgid "If you can see this MIME than your client doesn't accept MIME types!"
263
  msgstr "Se puoi visualizzare questo MIME il tuo client non supporta i MIME types!"
264
 
265
+ #: contact_form.php:627
266
  msgid "FAQ"
267
  msgstr "FAQ"
268
 
269
+ #: contact_form.php:628
270
  msgid "Support"
271
  msgstr "Supporto"
272
 
languages/contact_form-nb_NO.mo CHANGED
Binary file
languages/contact_form-nb_NO.po CHANGED
@@ -2,9 +2,9 @@ msgid ""
2
  msgstr ""
3
  "Project-Id-Version: contact_form\n"
4
  "Report-Msgid-Bugs-To: \n"
5
- "POT-Creation-Date: 2012-02-07 19:19+0200\n"
6
- "PO-Revision-Date: 2012-02-16 19:07+0100\n"
7
- "Last-Translator: Tore Hjartland <tore-hja@online.no>\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"
@@ -16,257 +16,257 @@ msgstr ""
16
  "X-Poedit-SourceCharset: utf-8\n"
17
  "X-Poedit-SearchPath-0: .\n"
18
 
19
- #: contact_form.php:78
20
  msgid "Activated plugins"
21
  msgstr "Aktiverte innstikk"
22
 
23
- #: contact_form.php:80
24
- #: contact_form.php:88
25
- #: contact_form.php:96
26
  msgid "Read more"
27
  msgstr "Les mer"
28
 
29
- #: contact_form.php:80
30
- #: contact_form.php:620
31
- #: contact_form.php:629
32
  msgid "Settings"
33
  msgstr "Innstilllinger"
34
 
35
- #: contact_form.php:86
36
  msgid "Installed plugins"
37
  msgstr "Installerte instikk"
38
 
39
- #: contact_form.php:94
40
  msgid "Recommended plugins"
41
  msgstr "Anbefalte innstikk"
42
 
43
- #: contact_form.php:96
44
  msgid "Download"
45
  msgstr "Last ned"
46
 
47
- #: contact_form.php:96
48
  #, php-format
49
  msgid "Install %s"
50
  msgstr "Installér %s"
51
 
52
- #: contact_form.php:96
53
  msgid "Install now from wordpress.org"
54
  msgstr "Innstallér nå fra wordpress.org"
55
 
56
- #: contact_form.php:98
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 "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:110
61
- #: contact_form.php:213
62
  msgid "Contact Form Options"
63
  msgstr "Innstillinger for kontaktskjema"
64
 
65
- #: contact_form.php:110
66
  msgid "Contact Form"
67
  msgstr "Kontaktskjema"
68
 
69
- #: contact_form.php:130
70
- #: contact_form.php:164
71
- #: contact_form.php:181
72
- #: contact_form.php:271
73
  msgid "Name:"
74
  msgstr "Navn:"
75
 
76
- #: contact_form.php:131
77
- #: contact_form.php:165
78
- #: contact_form.php:182
79
- #: contact_form.php:272
80
  msgid "E-Mail Address:"
81
  msgstr "Epostadresse:"
82
 
83
- #: contact_form.php:132
84
- #: contact_form.php:166
85
- #: contact_form.php:183
86
- #: contact_form.php:273
87
  msgid "Subject:"
88
  msgstr "Tema:"
89
 
90
- #: contact_form.php:133
91
- #: contact_form.php:167
92
- #: contact_form.php:184
93
- #: contact_form.php:274
94
  msgid "Message:"
95
  msgstr "Melding:"
96
 
97
- #: contact_form.php:134
98
- #: contact_form.php:168
99
- #: contact_form.php:185
100
- #: contact_form.php:275
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:"
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 label for fields of the contact form"
163
  msgstr "Forandre etikett for felter i kontaktskjemaet"
164
 
165
- #: contact_form.php:281
166
  msgid "Save Changes"
167
  msgstr "Lagre endringer"
168
 
169
- #: contact_form.php:312
170
  msgid "Thank you for contacting us."
171
  msgstr "Takk for at du tok kontakt med oss"
172
 
173
- #: contact_form.php:317
174
  msgid "Sorry, your e-mail could not be delivered."
175
  msgstr "Beklager, eposten din kunne ikke leveres."
176
 
177
- #: contact_form.php:374
178
  msgid "You can attach files of the following types"
179
  msgstr "Du kan legge til filer av følgende typer"
180
 
181
- #: contact_form.php:380
182
  msgid "Send me a copy"
183
  msgstr "Send meg en kopi"
184
 
185
- #: contact_form.php:390
186
  msgid "Submit"
187
  msgstr "Send"
188
 
189
- #: contact_form.php:406
190
  msgid "Your name is required."
191
  msgstr "Navnet ditt er påkrevet."
192
 
193
- #: contact_form.php:407
194
  msgid "A proper e-mail address is required."
195
  msgstr "En korrekt epostadresse er påkrevet."
196
 
197
- #: contact_form.php:408
198
  msgid "Subject text is required."
199
  msgstr "Tekst i temafeltet er påkrevet."
200
 
201
- #: contact_form.php:409
202
  msgid "Message text is required."
203
  msgstr "Tekst i meldingsfeltet er påkrevet"
204
 
205
- #: contact_form.php:410
206
  msgid "Please make corrections below and try again."
207
  msgstr "Vennligst gjør endringer nedenfor og forsøk igjen."
208
 
209
- #: contact_form.php:439
210
  msgid "Attachment is broken."
211
  msgstr "Vedlegget fungerer ikke."
212
 
213
- #: contact_form.php:452
214
  msgid "Please complete the CAPTCHA."
215
  msgstr "Vennligst fyll ut CAPTCHA"
216
 
217
- #: contact_form.php:509
218
- #: contact_form.php:543
219
  msgid "Sent from (ip address)"
220
  msgstr "Sendt fra (IP-adresse)"
221
 
222
- #: contact_form.php:510
223
- #: contact_form.php:546
224
  msgid "Date/Time"
225
  msgstr "Dato/tid"
226
 
227
- #: contact_form.php:511
228
- #: contact_form.php:549
229
  msgid "Coming from (referer)"
230
  msgstr "Sendt fra (referent)"
231
 
232
- #: contact_form.php:512
233
- #: contact_form.php:552
234
  msgid "Using (user agent)"
235
  msgstr "med (user agent)"
236
 
237
- #: contact_form.php:517
238
  msgid "Contact from"
239
  msgstr "Kontakt fra"
240
 
241
- #: contact_form.php:522
242
  msgid "Name"
243
  msgstr "Navn"
244
 
245
- #: contact_form.php:525
246
  msgid "Email"
247
  msgstr "Epost"
248
 
249
- #: contact_form.php:528
250
  msgid "Subject"
251
  msgstr "Tema"
252
 
253
- #: contact_form.php:531
254
  msgid "Message"
255
  msgstr "Melding"
256
 
257
- #: contact_form.php:534
258
  msgid "Site"
259
  msgstr "Site"
260
 
261
- #: contact_form.php:575
262
  msgid "If you can see this MIME than your client doesn't accept MIME types!"
263
  msgstr "Dersom du kan se denne MIME, så aksepterer ikke klienten din MIME-typer!"
264
 
265
- #: contact_form.php:630
266
  msgid "FAQ"
267
  msgstr "Vanlige spørsmål"
268
 
269
- #: contact_form.php:631
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-02-24 15:52+0200\n"
6
+ "PO-Revision-Date: 2012-02-24 15: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"
10
  "Content-Type: text/plain; charset=UTF-8\n"
16
  "X-Poedit-SourceCharset: utf-8\n"
17
  "X-Poedit-SearchPath-0: .\n"
18
 
19
+ #: contact_form.php:75
20
  msgid "Activated plugins"
21
  msgstr "Aktiverte innstikk"
22
 
23
+ #: contact_form.php:77
24
+ #: contact_form.php:85
25
+ #: contact_form.php:93
26
  msgid "Read more"
27
  msgstr "Les mer"
28
 
29
+ #: contact_form.php:77
30
+ #: contact_form.php:617
31
+ #: contact_form.php:626
32
  msgid "Settings"
33
  msgstr "Innstilllinger"
34
 
35
+ #: contact_form.php:83
36
  msgid "Installed plugins"
37
  msgstr "Installerte instikk"
38
 
39
+ #: contact_form.php:91
40
  msgid "Recommended plugins"
41
  msgstr "Anbefalte innstikk"
42
 
43
+ #: contact_form.php:93
44
  msgid "Download"
45
  msgstr "Last ned"
46
 
47
+ #: contact_form.php:93
48
  #, php-format
49
  msgid "Install %s"
50
  msgstr "Installér %s"
51
 
52
+ #: contact_form.php:93
53
  msgid "Install now from wordpress.org"
54
  msgstr "Innstallér nå fra wordpress.org"
55
 
56
+ #: contact_form.php:95
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 "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:107
61
+ #: contact_form.php:210
62
  msgid "Contact Form Options"
63
  msgstr "Innstillinger for kontaktskjema"
64
 
65
+ #: contact_form.php:107
66
  msgid "Contact Form"
67
  msgstr "Kontaktskjema"
68
 
69
+ #: contact_form.php:127
70
+ #: contact_form.php:161
71
+ #: contact_form.php:178
72
+ #: contact_form.php:268
73
  msgid "Name:"
74
  msgstr "Navn:"
75
 
76
+ #: contact_form.php:128
77
+ #: contact_form.php:162
78
+ #: contact_form.php:179
79
+ #: contact_form.php:269
80
  msgid "E-Mail Address:"
81
  msgstr "Epostadresse:"
82
 
83
+ #: contact_form.php:129
84
+ #: contact_form.php:163
85
+ #: contact_form.php:180
86
+ #: contact_form.php:270
87
  msgid "Subject:"
88
  msgstr "Tema:"
89
 
90
+ #: contact_form.php:130
91
+ #: contact_form.php:164
92
+ #: contact_form.php:181
93
+ #: contact_form.php:271
94
  msgid "Message:"
95
  msgstr "Melding:"
96
 
97
+ #: contact_form.php:131
98
+ #: contact_form.php:165
99
+ #: contact_form.php:182
100
+ #: contact_form.php:272
101
  msgid "Attachment:"
102
  msgstr "Vedlegg:"
103
 
104
+ #: contact_form.php:190
105
+ #: contact_form.php:199
106
  msgid "Options saved."
107
  msgstr "Innstillinger lagret."
108
 
109
+ #: contact_form.php:193
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:202
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:215
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:"
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:216
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:220
126
  msgid "Use email of wordpress user:"
127
  msgstr "Benytt eposten til wordpressbruker:"
128
 
129
+ #: contact_form.php:226
130
  msgid "Select user name"
131
  msgstr "Velg brukernavn"
132
 
133
+ #: contact_form.php:231
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:235
138
  msgid "Use this email:"
139
  msgstr "Benytt denne epostadressen:"
140
 
141
+ #: contact_form.php:241
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:245
146
  msgid "Additional options"
147
  msgstr "Flere valg"
148
 
149
+ #: contact_form.php:248
150
  msgid "Display Attachment block"
151
  msgstr "Vis vedlegg"
152
 
153
+ #: contact_form.php:253
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:257
158
  msgid "Display Send me a copy block"
159
  msgstr "Vis send meg en kopi"
160
 
161
+ #: contact_form.php:263
162
  msgid "Change label for fields of the contact form"
163
  msgstr "Forandre etikett for felter i kontaktskjemaet"
164
 
165
+ #: contact_form.php:278
166
  msgid "Save Changes"
167
  msgstr "Lagre endringer"
168
 
169
+ #: contact_form.php:309
170
  msgid "Thank you for contacting us."
171
  msgstr "Takk for at du tok kontakt med oss"
172
 
173
+ #: contact_form.php:314
174
  msgid "Sorry, your e-mail could not be delivered."
175
  msgstr "Beklager, eposten din kunne ikke leveres."
176
 
177
+ #: contact_form.php:371
178
  msgid "You can attach files of the following types"
179
  msgstr "Du kan legge til filer av følgende typer"
180
 
181
+ #: contact_form.php:377
182
  msgid "Send me a copy"
183
  msgstr "Send meg en kopi"
184
 
185
+ #: contact_form.php:387
186
  msgid "Submit"
187
  msgstr "Send"
188
 
189
+ #: contact_form.php:403
190
  msgid "Your name is required."
191
  msgstr "Navnet ditt er påkrevet."
192
 
193
+ #: contact_form.php:404
194
  msgid "A proper e-mail address is required."
195
  msgstr "En korrekt epostadresse er påkrevet."
196
 
197
+ #: contact_form.php:405
198
  msgid "Subject text is required."
199
  msgstr "Tekst i temafeltet er påkrevet."
200
 
201
+ #: contact_form.php:406
202
  msgid "Message text is required."
203
  msgstr "Tekst i meldingsfeltet er påkrevet"
204
 
205
+ #: contact_form.php:407
206
  msgid "Please make corrections below and try again."
207
  msgstr "Vennligst gjør endringer nedenfor og forsøk igjen."
208
 
209
+ #: contact_form.php:436
210
  msgid "Attachment is broken."
211
  msgstr "Vedlegget fungerer ikke."
212
 
213
+ #: contact_form.php:449
214
  msgid "Please complete the CAPTCHA."
215
  msgstr "Vennligst fyll ut CAPTCHA"
216
 
217
+ #: contact_form.php:506
218
+ #: contact_form.php:540
219
  msgid "Sent from (ip address)"
220
  msgstr "Sendt fra (IP-adresse)"
221
 
222
+ #: contact_form.php:507
223
+ #: contact_form.php:543
224
  msgid "Date/Time"
225
  msgstr "Dato/tid"
226
 
227
+ #: contact_form.php:508
228
+ #: contact_form.php:546
229
  msgid "Coming from (referer)"
230
  msgstr "Sendt fra (referent)"
231
 
232
+ #: contact_form.php:509
233
+ #: contact_form.php:549
234
  msgid "Using (user agent)"
235
  msgstr "med (user agent)"
236
 
237
+ #: contact_form.php:514
238
  msgid "Contact from"
239
  msgstr "Kontakt fra"
240
 
241
+ #: contact_form.php:519
242
  msgid "Name"
243
  msgstr "Navn"
244
 
245
+ #: contact_form.php:522
246
  msgid "Email"
247
  msgstr "Epost"
248
 
249
+ #: contact_form.php:525
250
  msgid "Subject"
251
  msgstr "Tema"
252
 
253
+ #: contact_form.php:528
254
  msgid "Message"
255
  msgstr "Melding"
256
 
257
+ #: contact_form.php:531
258
  msgid "Site"
259
  msgstr "Site"
260
 
261
+ #: contact_form.php:572
262
  msgid "If you can see this MIME than your client doesn't accept MIME types!"
263
  msgstr "Dersom du kan se denne MIME, så aksepterer ikke klienten din MIME-typer!"
264
 
265
+ #: contact_form.php:627
266
  msgid "FAQ"
267
  msgstr "Vanlige spørsmål"
268
 
269
+ #: contact_form.php:628
270
  msgid "Support"
271
  msgstr "Support"
272
 
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-02-07 19:17+0200\n"
6
- "PO-Revision-Date: 2012-02-07 19:20+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"
@@ -16,257 +16,257 @@ msgstr ""
16
  "X-Poedit-SourceCharset: utf-8\n"
17
  "X-Poedit-SearchPath-0: .\n"
18
 
19
- #: contact_form.php:78
20
  msgid "Activated plugins"
21
  msgstr "Activated plugins"
22
 
23
- #: contact_form.php:80
24
- #: contact_form.php:88
25
- #: contact_form.php:96
26
  msgid "Read more"
27
  msgstr "Lees verder"
28
 
29
- #: contact_form.php:80
30
- #: contact_form.php:620
31
- #: contact_form.php:629
32
  msgid "Settings"
33
  msgstr "Instellingen"
34
 
35
- #: contact_form.php:86
36
  msgid "Installed plugins"
37
  msgstr "Geïnstalleerde Plugins"
38
 
39
- #: contact_form.php:94
40
  msgid "Recommended plugins"
41
  msgstr "Aanbevolen Plugins"
42
 
43
- #: contact_form.php:96
44
  msgid "Download"
45
  msgstr "Download"
46
 
47
- #: contact_form.php:96
48
  #, php-format
49
  msgid "Install %s"
50
  msgstr "Installeer %s"
51
 
52
- #: contact_form.php:96
53
  msgid "Install now from wordpress.org"
54
  msgstr "Installeer nu via wordpress.org"
55
 
56
- #: contact_form.php:98
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 "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:110
61
- #: contact_form.php:213
62
  msgid "Contact Form Options"
63
  msgstr "Contact Form Opties"
64
 
65
- #: contact_form.php:110
66
  msgid "Contact Form"
67
  msgstr "Contact Form"
68
 
69
- #: contact_form.php:130
70
- #: contact_form.php:164
71
- #: contact_form.php:181
72
- #: contact_form.php:271
73
  msgid "Name:"
74
  msgstr "Naam:"
75
 
76
- #: contact_form.php:131
77
- #: contact_form.php:165
78
- #: contact_form.php:182
79
- #: contact_form.php:272
80
  msgid "E-Mail Address:"
81
  msgstr "Email adres:"
82
 
83
- #: contact_form.php:132
84
- #: contact_form.php:166
85
- #: contact_form.php:183
86
- #: contact_form.php:273
87
  msgid "Subject:"
88
  msgstr "Onderwerp:"
89
 
90
- #: contact_form.php:133
91
- #: contact_form.php:167
92
- #: contact_form.php:184
93
- #: contact_form.php:274
94
  msgid "Message:"
95
  msgstr "Bericht:"
96
 
97
- #: contact_form.php:134
98
- #: contact_form.php:168
99
- #: contact_form.php:185
100
- #: contact_form.php:275
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:"
119
  msgstr "Als je een Contact Form aan je website wil toevoegen, kopieer dan deze code in je bericht op op je pagina:"
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 label for fields of the contact form"
163
  msgstr "Verander de namen van de labels"
164
 
165
- #: contact_form.php:281
166
  msgid "Save Changes"
167
  msgstr "Bewaar veranderingen"
168
 
169
- #: contact_form.php:312
170
  msgid "Thank you for contacting us."
171
  msgstr "Bedankt voor uw bericht."
172
 
173
- #: contact_form.php:317
174
  msgid "Sorry, your e-mail could not be delivered."
175
  msgstr "Sorry, uw bericht kon niet worden verstuurd."
176
 
177
- #: contact_form.php:374
178
  msgid "You can attach files of the following types"
179
  msgstr "Bestanden van het volgende formaten kunnen worden bijgesloten"
180
 
181
- #: contact_form.php:380
182
  msgid "Send me a copy"
183
  msgstr "Kopie aan mij sturen"
184
 
185
- #: contact_form.php:390
186
  msgid "Submit"
187
  msgstr "Versturen"
188
 
189
- #: contact_form.php:406
190
  msgid "Your name is required."
191
  msgstr "U bent vergeten uw naam op te geven"
192
 
193
- #: contact_form.php:407
194
  msgid "A proper e-mail address is required."
195
  msgstr "U bent vergeten uw emailadres op te geven"
196
 
197
- #: contact_form.php:408
198
  msgid "Subject text is required."
199
  msgstr "U bent vergeten een onderwerp op te geven"
200
 
201
- #: contact_form.php:409
202
  msgid "Message text is required."
203
  msgstr "U bent vergeten een bericht op te geven"
204
 
205
- #: contact_form.php:410
206
  msgid "Please make corrections below and try again."
207
  msgstr "Vul alle vereiste informatie in en probeer het opnieuw."
208
 
209
- #: contact_form.php:439
210
  msgid "Attachment is broken."
211
  msgstr "Bijlage is beschadigd."
212
 
213
- #: contact_form.php:452
214
  msgid "Please complete the CAPTCHA."
215
  msgstr "Vul de CAPTCHA in."
216
 
217
- #: contact_form.php:509
218
- #: contact_form.php:543
219
  msgid "Sent from (ip address)"
220
  msgstr "Verstuurd van (IP-adres)"
221
 
222
- #: contact_form.php:510
223
- #: contact_form.php:546
224
  msgid "Date/Time"
225
  msgstr "Datum/Tijd"
226
 
227
- #: contact_form.php:511
228
- #: contact_form.php:549
229
  msgid "Coming from (referer)"
230
  msgstr "Verstuurd vanaf (referer)"
231
 
232
- #: contact_form.php:512
233
- #: contact_form.php:552
234
  msgid "Using (user agent)"
235
  msgstr "Met (user agent)"
236
 
237
- #: contact_form.php:517
238
  msgid "Contact from"
239
  msgstr "Contact van"
240
 
241
- #: contact_form.php:522
242
  msgid "Name"
243
  msgstr "Naam"
244
 
245
- #: contact_form.php:525
246
  msgid "Email"
247
  msgstr "Email"
248
 
249
- #: contact_form.php:528
250
  msgid "Subject"
251
  msgstr "Onderwerp"
252
 
253
- #: contact_form.php:531
254
  msgid "Message"
255
  msgstr "Bericht"
256
 
257
- #: contact_form.php:534
258
  msgid "Site"
259
  msgstr "Website"
260
 
261
- #: contact_form.php:575
262
  msgid "If you can see this MIME than your client doesn't accept MIME types!"
263
  msgstr "Als u deze MIME ziet, dan ondersteunt uw client geen MIME-Typen!"
264
 
265
- #: contact_form.php:630
266
  msgid "FAQ"
267
  msgstr "Veel gestelde vragen (FAQ)"
268
 
269
- #: contact_form.php:631
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-02-24 15:52+0200\n"
6
+ "PO-Revision-Date: 2012-02-24 15: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"
16
  "X-Poedit-SourceCharset: utf-8\n"
17
  "X-Poedit-SearchPath-0: .\n"
18
 
19
+ #: contact_form.php:75
20
  msgid "Activated plugins"
21
  msgstr "Activated plugins"
22
 
23
+ #: contact_form.php:77
24
+ #: contact_form.php:85
25
+ #: contact_form.php:93
26
  msgid "Read more"
27
  msgstr "Lees verder"
28
 
29
+ #: contact_form.php:77
30
+ #: contact_form.php:617
31
+ #: contact_form.php:626
32
  msgid "Settings"
33
  msgstr "Instellingen"
34
 
35
+ #: contact_form.php:83
36
  msgid "Installed plugins"
37
  msgstr "Geïnstalleerde Plugins"
38
 
39
+ #: contact_form.php:91
40
  msgid "Recommended plugins"
41
  msgstr "Aanbevolen Plugins"
42
 
43
+ #: contact_form.php:93
44
  msgid "Download"
45
  msgstr "Download"
46
 
47
+ #: contact_form.php:93
48
  #, php-format
49
  msgid "Install %s"
50
  msgstr "Installeer %s"
51
 
52
+ #: contact_form.php:93
53
  msgid "Install now from wordpress.org"
54
  msgstr "Installeer nu via wordpress.org"
55
 
56
+ #: contact_form.php:95
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 "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:107
61
+ #: contact_form.php:210
62
  msgid "Contact Form Options"
63
  msgstr "Contact Form Opties"
64
 
65
+ #: contact_form.php:107
66
  msgid "Contact Form"
67
  msgstr "Contact Form"
68
 
69
+ #: contact_form.php:127
70
+ #: contact_form.php:161
71
+ #: contact_form.php:178
72
+ #: contact_form.php:268
73
  msgid "Name:"
74
  msgstr "Naam:"
75
 
76
+ #: contact_form.php:128
77
+ #: contact_form.php:162
78
+ #: contact_form.php:179
79
+ #: contact_form.php:269
80
  msgid "E-Mail Address:"
81
  msgstr "Email adres:"
82
 
83
+ #: contact_form.php:129
84
+ #: contact_form.php:163
85
+ #: contact_form.php:180
86
+ #: contact_form.php:270
87
  msgid "Subject:"
88
  msgstr "Onderwerp:"
89
 
90
+ #: contact_form.php:130
91
+ #: contact_form.php:164
92
+ #: contact_form.php:181
93
+ #: contact_form.php:271
94
  msgid "Message:"
95
  msgstr "Bericht:"
96
 
97
+ #: contact_form.php:131
98
+ #: contact_form.php:165
99
+ #: contact_form.php:182
100
+ #: contact_form.php:272
101
  msgid "Attachment:"
102
  msgstr "Bijlage:"
103
 
104
+ #: contact_form.php:190
105
+ #: contact_form.php:199
106
  msgid "Options saved."
107
  msgstr "Instellingen opgeslagen."
108
 
109
+ #: contact_form.php:193
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:202
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:215
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:"
119
  msgstr "Als je een Contact Form aan je website wil toevoegen, kopieer dan deze code in je bericht op op je pagina:"
120
 
121
+ #: contact_form.php:216
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:220
126
  msgid "Use email of wordpress user:"
127
  msgstr "Gebruik het email adres van de Wordpress gebruiker:"
128
 
129
+ #: contact_form.php:226
130
  msgid "Select user name"
131
  msgstr "Kies gebruikersnaam"
132
 
133
+ #: contact_form.php:231
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:235
138
  msgid "Use this email:"
139
  msgstr "Gebruik dit email adres:"
140
 
141
+ #: contact_form.php:241
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:245
146
  msgid "Additional options"
147
  msgstr "Extra opties"
148
 
149
+ #: contact_form.php:248
150
  msgid "Display Attachment block"
151
  msgstr "Bijlages toestaan"
152
 
153
+ #: contact_form.php:253
154
  msgid "Users can attach files of the following types"
155
  msgstr "Gebruikers kunnen de volgende bestandtypen toevoegen"
156
 
157
+ #: contact_form.php:257
158
  msgid "Display Send me a copy block"
159
  msgstr "Geef \"Kopie aan mij sturen\" weer"
160
 
161
+ #: contact_form.php:263
162
  msgid "Change label for fields of the contact form"
163
  msgstr "Verander de namen van de labels"
164
 
165
+ #: contact_form.php:278
166
  msgid "Save Changes"
167
  msgstr "Bewaar veranderingen"
168
 
169
+ #: contact_form.php:309
170
  msgid "Thank you for contacting us."
171
  msgstr "Bedankt voor uw bericht."
172
 
173
+ #: contact_form.php:314
174
  msgid "Sorry, your e-mail could not be delivered."
175
  msgstr "Sorry, uw bericht kon niet worden verstuurd."
176
 
177
+ #: contact_form.php:371
178
  msgid "You can attach files of the following types"
179
  msgstr "Bestanden van het volgende formaten kunnen worden bijgesloten"
180
 
181
+ #: contact_form.php:377
182
  msgid "Send me a copy"
183
  msgstr "Kopie aan mij sturen"
184
 
185
+ #: contact_form.php:387
186
  msgid "Submit"
187
  msgstr "Versturen"
188
 
189
+ #: contact_form.php:403
190
  msgid "Your name is required."
191
  msgstr "U bent vergeten uw naam op te geven"
192
 
193
+ #: contact_form.php:404
194
  msgid "A proper e-mail address is required."
195
  msgstr "U bent vergeten uw emailadres op te geven"
196
 
197
+ #: contact_form.php:405
198
  msgid "Subject text is required."
199
  msgstr "U bent vergeten een onderwerp op te geven"
200
 
201
+ #: contact_form.php:406
202
  msgid "Message text is required."
203
  msgstr "U bent vergeten een bericht op te geven"
204
 
205
+ #: contact_form.php:407
206
  msgid "Please make corrections below and try again."
207
  msgstr "Vul alle vereiste informatie in en probeer het opnieuw."
208
 
209
+ #: contact_form.php:436
210
  msgid "Attachment is broken."
211
  msgstr "Bijlage is beschadigd."
212
 
213
+ #: contact_form.php:449
214
  msgid "Please complete the CAPTCHA."
215
  msgstr "Vul de CAPTCHA in."
216
 
217
+ #: contact_form.php:506
218
+ #: contact_form.php:540
219
  msgid "Sent from (ip address)"
220
  msgstr "Verstuurd van (IP-adres)"
221
 
222
+ #: contact_form.php:507
223
+ #: contact_form.php:543
224
  msgid "Date/Time"
225
  msgstr "Datum/Tijd"
226
 
227
+ #: contact_form.php:508
228
+ #: contact_form.php:546
229
  msgid "Coming from (referer)"
230
  msgstr "Verstuurd vanaf (referer)"
231
 
232
+ #: contact_form.php:509
233
+ #: contact_form.php:549
234
  msgid "Using (user agent)"
235
  msgstr "Met (user agent)"
236
 
237
+ #: contact_form.php:514
238
  msgid "Contact from"
239
  msgstr "Contact van"
240
 
241
+ #: contact_form.php:519
242
  msgid "Name"
243
  msgstr "Naam"
244
 
245
+ #: contact_form.php:522
246
  msgid "Email"
247
  msgstr "Email"
248
 
249
+ #: contact_form.php:525
250
  msgid "Subject"
251
  msgstr "Onderwerp"
252
 
253
+ #: contact_form.php:528
254
  msgid "Message"
255
  msgstr "Bericht"
256
 
257
+ #: contact_form.php:531
258
  msgid "Site"
259
  msgstr "Website"
260
 
261
+ #: contact_form.php:572
262
  msgid "If you can see this MIME than your client doesn't accept MIME types!"
263
  msgstr "Als u deze MIME ziet, dan ondersteunt uw client geen MIME-Typen!"
264
 
265
+ #: contact_form.php:627
266
  msgid "FAQ"
267
  msgstr "Veel gestelde vragen (FAQ)"
268
 
269
+ #: contact_form.php:628
270
  msgid "Support"
271
  msgstr "Support"
272
 
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-02-17 10:51+0200\n"
6
- "PO-Revision-Date: 2012-02-17 10:52+0200\n"
7
  "Last-Translator: BWS <zos@bestwebsoft.com>\n"
8
  "Language-Team: \n"
9
  "MIME-Version: 1.0\n"
@@ -19,313 +19,313 @@ msgstr ""
19
  "X-Poedit-SearchPath-0: .\n"
20
 
21
  # @ contact_form
22
- #: contact_form.php:78
23
  msgid "Activated plugins"
24
  msgstr "Aktywne wtyczki"
25
 
26
  # @ contact_form
27
- #: contact_form.php:80
28
- #: contact_form.php:88
29
- #: contact_form.php:96
30
  msgid "Read more"
31
  msgstr "Czytaj więcej"
32
 
33
  # @ contact_form
34
- #: contact_form.php:80
35
- #: contact_form.php:620
36
- #: contact_form.php:629
37
  msgid "Settings"
38
  msgstr "Ustawienia"
39
 
40
  # @ contact_form
41
- #: contact_form.php:86
42
  msgid "Installed plugins"
43
  msgstr "Zainstalowane wtyczki"
44
 
45
  # @ contact_form
46
- #: contact_form.php:94
47
  msgid "Recommended plugins"
48
  msgstr "Polecane wtyczki"
49
 
50
  # @ contact_form
51
- #: contact_form.php:96
52
  msgid "Download"
53
  msgstr "Pobierz"
54
 
55
  # @ default
56
- #: contact_form.php:96
57
  #, php-format
58
  msgid "Install %s"
59
  msgstr "Instaluj %s"
60
 
61
  # @ contact_form
62
- #: contact_form.php:96
63
  msgid "Install now from wordpress.org"
64
  msgstr "Zainstaluj z wordpress.org"
65
 
66
  # @ contact_form
67
- #: contact_form.php:98
68
  msgid "If you have any questions, please contact us via plugin@bestwebsoft.com or fill in our contact form on our site"
69
  msgstr "Jeśli masz pytania, napisz na adres plugin@bestwebsoft.com lub skorzystaj z formularza na naszej stronie"
70
 
71
  # @ contact_form
72
- #: contact_form.php:110
73
- #: contact_form.php:213
74
  msgid "Contact Form Options"
75
  msgstr "Opcje Contact Form"
76
 
77
  # @ contact_form
78
- #: contact_form.php:110
79
  msgid "Contact Form"
80
- msgstr ""
81
 
82
  # @ contact_form
83
- #: contact_form.php:130
84
- #: contact_form.php:164
85
- #: contact_form.php:181
86
- #: contact_form.php:271
87
  msgid "Name:"
88
  msgstr "Imię:"
89
 
90
  # @ contact_form
91
- #: contact_form.php:131
92
- #: contact_form.php:165
93
- #: contact_form.php:182
94
- #: contact_form.php:272
95
  msgid "E-Mail Address:"
96
  msgstr "Adres e-mail"
97
 
98
  # @ contact_form
99
- #: contact_form.php:132
100
- #: contact_form.php:166
101
- #: contact_form.php:183
102
- #: contact_form.php:273
103
  msgid "Subject:"
104
  msgstr "Temat:"
105
 
106
  # @ contact_form
107
- #: contact_form.php:133
108
- #: contact_form.php:167
109
- #: contact_form.php:184
110
- #: contact_form.php:274
111
  msgid "Message:"
112
  msgstr "Treść wiadomości:"
113
 
114
  # @ contact_form
115
- #: contact_form.php:134
116
- #: contact_form.php:168
117
- #: contact_form.php:185
118
- #: contact_form.php:275
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:"
141
  msgstr "Jeśli chcesz dodać formularz do swojej strony, po prostu skopiuj ten kod i wklej go do wpisu lub treści strony:"
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 label for fields of the contact form"
196
  msgstr "Zmień etykiety pól formularza"
197
 
198
  # @ default
199
- #: contact_form.php:281
200
  msgid "Save Changes"
201
  msgstr "Zapisz zmiany"
202
 
203
  # @ contact_form
204
- #: contact_form.php:312
205
  msgid "Thank you for contacting us."
206
  msgstr "Dziękujemy za wiadomość."
207
 
208
  # @ contact_form
209
- #: contact_form.php:317
210
  msgid "Sorry, your e-mail could not be delivered."
211
  msgstr "Niestety, ten e-mail nie mógł zostać dostarczony."
212
 
213
  # @ contact_form
214
- #: contact_form.php:374
215
  msgid "You can attach files of the following types"
216
  msgstr "Możesz załączać pliki następujących typów"
217
 
218
  # @ contact_form
219
- #: contact_form.php:380
220
  msgid "Send me a copy"
221
  msgstr "Wyślij mi kopię"
222
 
223
  # @ contact_form
224
- #: contact_form.php:390
225
  msgid "Submit"
226
  msgstr "Wyślij"
227
 
228
  # @ contact_form
229
- #: contact_form.php:406
230
  msgid "Your name is required."
231
  msgstr "Podanie imienia jest wymagane."
232
 
233
  # @ contact_form
234
- #: contact_form.php:407
235
  msgid "A proper e-mail address is required."
236
  msgstr "Podanie prawidłowego adresu e-mail jest wymagane."
237
 
238
  # @ contact_form
239
- #: contact_form.php:408
240
  msgid "Subject text is required."
241
  msgstr "Podanie tematu jest wymagane."
242
 
243
  # @ contact_form
244
- #: contact_form.php:409
245
  msgid "Message text is required."
246
  msgstr "Wiadomość musi mieć jakąś treść."
247
 
248
  # @ contact_form
249
- #: contact_form.php:410
250
  msgid "Please make corrections below and try again."
251
  msgstr "Proszę nanieść poprawki i spróbować jeszcze raz."
252
 
253
  # @ contact_form
254
- #: contact_form.php:439
255
  msgid "Attachment is broken."
256
  msgstr "Załącznik jest uszkodzony."
257
 
258
  # @ contact_form
259
- #: contact_form.php:452
260
  msgid "Please complete the CAPTCHA."
261
  msgstr "Proszę dokładnie przepisać kod."
262
 
263
  # @ contact_form
264
- #: contact_form.php:509
265
- #: contact_form.php:543
266
  msgid "Sent from (ip address)"
267
- msgstr ""
268
 
269
  # @ contact_form
270
- #: contact_form.php:510
271
- #: contact_form.php:546
272
  msgid "Date/Time"
273
- msgstr ""
274
 
275
  # @ contact_form
276
- #: contact_form.php:511
277
- #: contact_form.php:549
278
  msgid "Coming from (referer)"
279
- msgstr ""
280
 
281
  # @ contact_form
282
- #: contact_form.php:512
283
- #: contact_form.php:552
284
  msgid "Using (user agent)"
285
- msgstr ""
286
 
287
  # @ contact_form
288
- #: contact_form.php:517
289
  msgid "Contact from"
290
- msgstr ""
291
 
292
  # @ contact_form
293
- #: contact_form.php:522
294
  msgid "Name"
295
- msgstr ""
296
 
297
  # @ contact_form
298
- #: contact_form.php:525
299
  msgid "Email"
300
- msgstr ""
301
 
302
  # @ contact_form
303
- #: contact_form.php:528
304
  msgid "Subject"
305
- msgstr ""
306
 
307
  # @ contact_form
308
- #: contact_form.php:531
309
  msgid "Message"
310
- msgstr ""
311
 
312
  # @ contact_form
313
- #: contact_form.php:534
314
  msgid "Site"
315
- msgstr ""
316
 
317
  # @ contact_form
318
- #: contact_form.php:575
319
  msgid "If you can see this MIME than your client doesn't accept MIME types!"
320
  msgstr "Nie możesz zobaczyć tego MIME, skoro klient nie akceptuje typów MIME."
321
 
322
  # @ contact_form
323
- #: contact_form.php:630
324
  msgid "FAQ"
325
- msgstr ""
326
 
327
  # @ contact_form
328
- #: contact_form.php:631
329
  msgid "Support"
330
- msgstr ""
331
 
2
  msgstr ""
3
  "Project-Id-Version: Contact Form Plugin v3.05\n"
4
  "Report-Msgid-Bugs-To: \n"
5
+ "POT-Creation-Date: 2012-02-24 15:52+0200\n"
6
+ "PO-Revision-Date: 2012-02-24 15:52+0200\n"
7
  "Last-Translator: BWS <zos@bestwebsoft.com>\n"
8
  "Language-Team: \n"
9
  "MIME-Version: 1.0\n"
19
  "X-Poedit-SearchPath-0: .\n"
20
 
21
  # @ contact_form
22
+ #: contact_form.php:75
23
  msgid "Activated plugins"
24
  msgstr "Aktywne wtyczki"
25
 
26
  # @ contact_form
27
+ #: contact_form.php:77
28
+ #: contact_form.php:85
29
+ #: contact_form.php:93
30
  msgid "Read more"
31
  msgstr "Czytaj więcej"
32
 
33
  # @ contact_form
34
+ #: contact_form.php:77
35
+ #: contact_form.php:617
36
+ #: contact_form.php:626
37
  msgid "Settings"
38
  msgstr "Ustawienia"
39
 
40
  # @ contact_form
41
+ #: contact_form.php:83
42
  msgid "Installed plugins"
43
  msgstr "Zainstalowane wtyczki"
44
 
45
  # @ contact_form
46
+ #: contact_form.php:91
47
  msgid "Recommended plugins"
48
  msgstr "Polecane wtyczki"
49
 
50
  # @ contact_form
51
+ #: contact_form.php:93
52
  msgid "Download"
53
  msgstr "Pobierz"
54
 
55
  # @ default
56
+ #: contact_form.php:93
57
  #, php-format
58
  msgid "Install %s"
59
  msgstr "Instaluj %s"
60
 
61
  # @ contact_form
62
+ #: contact_form.php:93
63
  msgid "Install now from wordpress.org"
64
  msgstr "Zainstaluj z wordpress.org"
65
 
66
  # @ contact_form
67
+ #: contact_form.php:95
68
  msgid "If you have any questions, please contact us via plugin@bestwebsoft.com or fill in our contact form on our site"
69
  msgstr "Jeśli masz pytania, napisz na adres plugin@bestwebsoft.com lub skorzystaj z formularza na naszej stronie"
70
 
71
  # @ contact_form
72
+ #: contact_form.php:107
73
+ #: contact_form.php:210
74
  msgid "Contact Form Options"
75
  msgstr "Opcje Contact Form"
76
 
77
  # @ contact_form
78
+ #: contact_form.php:107
79
  msgid "Contact Form"
80
+ msgstr "Contact Form"
81
 
82
  # @ contact_form
83
+ #: contact_form.php:127
84
+ #: contact_form.php:161
85
+ #: contact_form.php:178
86
+ #: contact_form.php:268
87
  msgid "Name:"
88
  msgstr "Imię:"
89
 
90
  # @ contact_form
91
+ #: contact_form.php:128
92
+ #: contact_form.php:162
93
+ #: contact_form.php:179
94
+ #: contact_form.php:269
95
  msgid "E-Mail Address:"
96
  msgstr "Adres e-mail"
97
 
98
  # @ contact_form
99
+ #: contact_form.php:129
100
+ #: contact_form.php:163
101
+ #: contact_form.php:180
102
+ #: contact_form.php:270
103
  msgid "Subject:"
104
  msgstr "Temat:"
105
 
106
  # @ contact_form
107
+ #: contact_form.php:130
108
+ #: contact_form.php:164
109
+ #: contact_form.php:181
110
+ #: contact_form.php:271
111
  msgid "Message:"
112
  msgstr "Treść wiadomości:"
113
 
114
  # @ contact_form
115
+ #: contact_form.php:131
116
+ #: contact_form.php:165
117
+ #: contact_form.php:182
118
+ #: contact_form.php:272
119
  msgid "Attachment:"
120
  msgstr "Załączniki:"
121
 
122
  # @ contact_form
123
+ #: contact_form.php:190
124
+ #: contact_form.php:199
125
  msgid "Options saved."
126
  msgstr "Opcje zapisano"
127
 
128
  # @ contact_form
129
+ #: contact_form.php:193
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:202
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:215
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:"
141
  msgstr "Jeśli chcesz dodać formularz do swojej strony, po prostu skopiuj ten kod i wklej go do wpisu lub treści strony:"
142
 
143
  # @ contact_form
144
+ #: contact_form.php:216
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:220
150
  msgid "Use email of wordpress user:"
151
  msgstr "Użyj adresu e-mail użytkownika:"
152
 
153
  # @ contact_form
154
+ #: contact_form.php:226
155
  msgid "Select user name"
156
  msgstr "Wybierz użytkownika"
157
 
158
  # @ contact_form
159
+ #: contact_form.php:231
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:235
165
  msgid "Use this email:"
166
  msgstr "Wybierz ten e-mail:"
167
 
168
  # @ contact_form
169
+ #: contact_form.php:241
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:245
175
  msgid "Additional options"
176
  msgstr "Dodatkowe opcje"
177
 
178
  # @ contact_form
179
+ #: contact_form.php:248
180
  msgid "Display Attachment block"
181
  msgstr "Wyświetlaj blok załączników"
182
 
183
  # @ contact_form
184
+ #: contact_form.php:253
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:257
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:263
195
  msgid "Change label for fields of the contact form"
196
  msgstr "Zmień etykiety pól formularza"
197
 
198
  # @ default
199
+ #: contact_form.php:278
200
  msgid "Save Changes"
201
  msgstr "Zapisz zmiany"
202
 
203
  # @ contact_form
204
+ #: contact_form.php:309
205
  msgid "Thank you for contacting us."
206
  msgstr "Dziękujemy za wiadomość."
207
 
208
  # @ contact_form
209
+ #: contact_form.php:314
210
  msgid "Sorry, your e-mail could not be delivered."
211
  msgstr "Niestety, ten e-mail nie mógł zostać dostarczony."
212
 
213
  # @ contact_form
214
+ #: contact_form.php:371
215
  msgid "You can attach files of the following types"
216
  msgstr "Możesz załączać pliki następujących typów"
217
 
218
  # @ contact_form
219
+ #: contact_form.php:377
220
  msgid "Send me a copy"
221
  msgstr "Wyślij mi kopię"
222
 
223
  # @ contact_form
224
+ #: contact_form.php:387
225
  msgid "Submit"
226
  msgstr "Wyślij"
227
 
228
  # @ contact_form
229
+ #: contact_form.php:403
230
  msgid "Your name is required."
231
  msgstr "Podanie imienia jest wymagane."
232
 
233
  # @ contact_form
234
+ #: contact_form.php:404
235
  msgid "A proper e-mail address is required."
236
  msgstr "Podanie prawidłowego adresu e-mail jest wymagane."
237
 
238
  # @ contact_form
239
+ #: contact_form.php:405
240
  msgid "Subject text is required."
241
  msgstr "Podanie tematu jest wymagane."
242
 
243
  # @ contact_form
244
+ #: contact_form.php:406
245
  msgid "Message text is required."
246
  msgstr "Wiadomość musi mieć jakąś treść."
247
 
248
  # @ contact_form
249
+ #: contact_form.php:407
250
  msgid "Please make corrections below and try again."
251
  msgstr "Proszę nanieść poprawki i spróbować jeszcze raz."
252
 
253
  # @ contact_form
254
+ #: contact_form.php:436
255
  msgid "Attachment is broken."
256
  msgstr "Załącznik jest uszkodzony."
257
 
258
  # @ contact_form
259
+ #: contact_form.php:449
260
  msgid "Please complete the CAPTCHA."
261
  msgstr "Proszę dokładnie przepisać kod."
262
 
263
  # @ contact_form
264
+ #: contact_form.php:506
265
+ #: contact_form.php:540
266
  msgid "Sent from (ip address)"
267
+ msgstr "Przysłane z (adres IP)"
268
 
269
  # @ contact_form
270
+ #: contact_form.php:507
271
+ #: contact_form.php:543
272
  msgid "Date/Time"
273
+ msgstr "Data/czas"
274
 
275
  # @ contact_form
276
+ #: contact_form.php:508
277
+ #: contact_form.php:546
278
  msgid "Coming from (referer)"
279
+ msgstr "Przekierowane z (referrer)"
280
 
281
  # @ contact_form
282
+ #: contact_form.php:509
283
+ #: contact_form.php:549
284
  msgid "Using (user agent)"
285
+ msgstr "Klient (program użytkownika)"
286
 
287
  # @ contact_form
288
+ #: contact_form.php:514
289
  msgid "Contact from"
290
+ msgstr "Kontakt z"
291
 
292
  # @ contact_form
293
+ #: contact_form.php:519
294
  msgid "Name"
295
+ msgstr "Imię"
296
 
297
  # @ contact_form
298
+ #: contact_form.php:522
299
  msgid "Email"
300
+ msgstr "E-mail"
301
 
302
  # @ contact_form
303
+ #: contact_form.php:525
304
  msgid "Subject"
305
+ msgstr "Temat"
306
 
307
  # @ contact_form
308
+ #: contact_form.php:528
309
  msgid "Message"
310
+ msgstr "Wiadomość"
311
 
312
  # @ contact_form
313
+ #: contact_form.php:531
314
  msgid "Site"
315
+ msgstr "Strona www"
316
 
317
  # @ contact_form
318
+ #: contact_form.php:572
319
  msgid "If you can see this MIME than your client doesn't accept MIME types!"
320
  msgstr "Nie możesz zobaczyć tego MIME, skoro klient nie akceptuje typów MIME."
321
 
322
  # @ contact_form
323
+ #: contact_form.php:627
324
  msgid "FAQ"
325
+ msgstr "FAQ"
326
 
327
  # @ contact_form
328
+ #: contact_form.php:628
329
  msgid "Support"
330
+ msgstr "Wsparcie"
331
 
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-02-07 19:19+0200\n"
6
- "PO-Revision-Date: 2012-02-07 19:19+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"
@@ -16,257 +16,257 @@ msgstr ""
16
  "X-Poedit-SourceCharset: utf-8\n"
17
  "X-Poedit-SearchPath-0: .\n"
18
 
19
- #: contact_form.php:78
20
  msgid "Activated plugins"
21
  msgstr "Plugins ativados"
22
 
23
- #: contact_form.php:80
24
- #: contact_form.php:88
25
- #: contact_form.php:96
26
  msgid "Read more"
27
  msgstr "Leia Mais"
28
 
29
- #: contact_form.php:80
30
- #: contact_form.php:620
31
- #: contact_form.php:629
32
  msgid "Settings"
33
  msgstr "Configurações"
34
 
35
- #: contact_form.php:86
36
  msgid "Installed plugins"
37
  msgstr "Plugins instalados"
38
 
39
- #: contact_form.php:94
40
  msgid "Recommended plugins"
41
  msgstr "Plugins recomendados"
42
 
43
- #: contact_form.php:96
44
  msgid "Download"
45
  msgstr "Baixar"
46
 
47
- #: contact_form.php:96
48
  #, php-format
49
  msgid "Install %s"
50
  msgstr "Instalar %s"
51
 
52
- #: contact_form.php:96
53
  msgid "Install now from wordpress.org"
54
  msgstr "Instale agora do site wordpress.org"
55
 
56
- #: contact_form.php:98
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:110
61
- #: contact_form.php:213
62
  msgid "Contact Form Options"
63
  msgstr "Opções do formulário de contato"
64
 
65
- #: contact_form.php:110
66
  msgid "Contact Form"
67
  msgstr "Formulário de contato"
68
 
69
- #: contact_form.php:130
70
- #: contact_form.php:164
71
- #: contact_form.php:181
72
- #: contact_form.php:271
73
  msgid "Name:"
74
  msgstr "Nome:"
75
 
76
- #: contact_form.php:131
77
- #: contact_form.php:165
78
- #: contact_form.php:182
79
- #: contact_form.php:272
80
  msgid "E-Mail Address:"
81
  msgstr "Endereço de E-mail:"
82
 
83
- #: contact_form.php:132
84
- #: contact_form.php:166
85
- #: contact_form.php:183
86
- #: contact_form.php:273
87
  msgid "Subject:"
88
  msgstr "Assunto:"
89
 
90
- #: contact_form.php:133
91
- #: contact_form.php:167
92
- #: contact_form.php:184
93
- #: contact_form.php:274
94
  msgid "Message:"
95
  msgstr "Mensagem:"
96
 
97
- #: contact_form.php:134
98
- #: contact_form.php:168
99
- #: contact_form.php:185
100
- #: contact_form.php:275
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:"
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:"
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 label for fields of the contact form"
163
  msgstr "Mudar rótulo para os campos no formulário de contato"
164
 
165
- #: contact_form.php:281
166
  msgid "Save Changes"
167
  msgstr "Salvar mudanças"
168
 
169
- #: contact_form.php:312
170
  msgid "Thank you for contacting us."
171
  msgstr "Obrigado por nos contactar"
172
 
173
- #: contact_form.php:317
174
  msgid "Sorry, your e-mail could not be delivered."
175
  msgstr "Desculpe, seu e-mail não pode ser entregue."
176
 
177
- #: contact_form.php:374
178
  msgid "You can attach files of the following types"
179
  msgstr "Você pode anexar arquivos do seguinte tipo"
180
 
181
- #: contact_form.php:380
182
  msgid "Send me a copy"
183
  msgstr "Envie-me uma cópia"
184
 
185
- #: contact_form.php:390
186
  msgid "Submit"
187
  msgstr "Enviar"
188
 
189
- #: contact_form.php:406
190
  msgid "Your name is required."
191
  msgstr "Seu nome é obrigatório"
192
 
193
- #: contact_form.php:407
194
  msgid "A proper e-mail address is required."
195
  msgstr "Um e-mail correto é obrigatório."
196
 
197
- #: contact_form.php:408
198
  msgid "Subject text is required."
199
  msgstr "O Assunto da mensagem é obrigatório."
200
 
201
- #: contact_form.php:409
202
  msgid "Message text is required."
203
  msgstr "O texto da Mensagem é obrigatório."
204
 
205
- #: contact_form.php:410
206
  msgid "Please make corrections below and try again."
207
  msgstr "Por favor, faça as correções abaixo e tente enviar a mensagem novamente."
208
 
209
- #: contact_form.php:439
210
  msgid "Attachment is broken."
211
  msgstr "Impossível anexar arquivo. "
212
 
213
- #: contact_form.php:452
214
  msgid "Please complete the CAPTCHA."
215
  msgstr "Por favor, complete a resposta da charada ."
216
 
217
- #: contact_form.php:509
218
- #: contact_form.php:543
219
  msgid "Sent from (ip address)"
220
  msgstr "Enviado de (Endereço IP)"
221
 
222
- #: contact_form.php:510
223
- #: contact_form.php:546
224
  msgid "Date/Time"
225
  msgstr "DAta / Hora"
226
 
227
- #: contact_form.php:511
228
- #: contact_form.php:549
229
  msgid "Coming from (referer)"
230
  msgstr "Vindo de (origem)"
231
 
232
- #: contact_form.php:512
233
- #: contact_form.php:552
234
  msgid "Using (user agent)"
235
  msgstr "Usando (cliente de email)"
236
 
237
- #: contact_form.php:517
238
  msgid "Contact from"
239
  msgstr "Formulário de Contato"
240
 
241
- #: contact_form.php:522
242
  msgid "Name"
243
  msgstr "Nome"
244
 
245
- #: contact_form.php:525
246
  msgid "Email"
247
  msgstr "E-Mail"
248
 
249
- #: contact_form.php:528
250
  msgid "Subject"
251
  msgstr "Assunto"
252
 
253
- #: contact_form.php:531
254
  msgid "Message"
255
  msgstr "Mensagem"
256
 
257
- #: contact_form.php:534
258
  msgid "Site"
259
  msgstr "Site"
260
 
261
- #: contact_form.php:575
262
  msgid "If you can see this MIME than your client doesn't accept MIME types!"
263
  msgstr "Se você consegue ver esta MENSAGEM então seu cliente não aceita tipos MIME! Favor usar um cliente mais atualizado."
264
 
265
- #: contact_form.php:630
266
  msgid "FAQ"
267
  msgstr "Perguntas Frequentes"
268
 
269
- #: contact_form.php:631
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-02-24 15:52+0200\n"
6
+ "PO-Revision-Date: 2012-02-24 15: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"
16
  "X-Poedit-SourceCharset: utf-8\n"
17
  "X-Poedit-SearchPath-0: .\n"
18
 
19
+ #: contact_form.php:75
20
  msgid "Activated plugins"
21
  msgstr "Plugins ativados"
22
 
23
+ #: contact_form.php:77
24
+ #: contact_form.php:85
25
+ #: contact_form.php:93
26
  msgid "Read more"
27
  msgstr "Leia Mais"
28
 
29
+ #: contact_form.php:77
30
+ #: contact_form.php:617
31
+ #: contact_form.php:626
32
  msgid "Settings"
33
  msgstr "Configurações"
34
 
35
+ #: contact_form.php:83
36
  msgid "Installed plugins"
37
  msgstr "Plugins instalados"
38
 
39
+ #: contact_form.php:91
40
  msgid "Recommended plugins"
41
  msgstr "Plugins recomendados"
42
 
43
+ #: contact_form.php:93
44
  msgid "Download"
45
  msgstr "Baixar"
46
 
47
+ #: contact_form.php:93
48
  #, php-format
49
  msgid "Install %s"
50
  msgstr "Instalar %s"
51
 
52
+ #: contact_form.php:93
53
  msgid "Install now from wordpress.org"
54
  msgstr "Instale agora do site wordpress.org"
55
 
56
+ #: contact_form.php:95
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:107
61
+ #: contact_form.php:210
62
  msgid "Contact Form Options"
63
  msgstr "Opções do formulário de contato"
64
 
65
+ #: contact_form.php:107
66
  msgid "Contact Form"
67
  msgstr "Formulário de contato"
68
 
69
+ #: contact_form.php:127
70
+ #: contact_form.php:161
71
+ #: contact_form.php:178
72
+ #: contact_form.php:268
73
  msgid "Name:"
74
  msgstr "Nome:"
75
 
76
+ #: contact_form.php:128
77
+ #: contact_form.php:162
78
+ #: contact_form.php:179
79
+ #: contact_form.php:269
80
  msgid "E-Mail Address:"
81
  msgstr "Endereço de E-mail:"
82
 
83
+ #: contact_form.php:129
84
+ #: contact_form.php:163
85
+ #: contact_form.php:180
86
+ #: contact_form.php:270
87
  msgid "Subject:"
88
  msgstr "Assunto:"
89
 
90
+ #: contact_form.php:130
91
+ #: contact_form.php:164
92
+ #: contact_form.php:181
93
+ #: contact_form.php:271
94
  msgid "Message:"
95
  msgstr "Mensagem:"
96
 
97
+ #: contact_form.php:131
98
+ #: contact_form.php:165
99
+ #: contact_form.php:182
100
+ #: contact_form.php:272
101
  msgid "Attachment:"
102
  msgstr "Anexo:"
103
 
104
+ #: contact_form.php:190
105
+ #: contact_form.php:199
106
  msgid "Options saved."
107
  msgstr "Opções salvas."
108
 
109
+ #: contact_form.php:193
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:202
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:215
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:"
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:"
120
 
121
+ #: contact_form.php:216
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:220
126
  msgid "Use email of wordpress user:"
127
  msgstr "Use o email de um usuário do wordpress:"
128
 
129
+ #: contact_form.php:226
130
  msgid "Select user name"
131
  msgstr "Selecione o nome do usuário"
132
 
133
+ #: contact_form.php:231
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:235
138
  msgid "Use this email:"
139
  msgstr "Use este email:"
140
 
141
+ #: contact_form.php:241
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:245
146
  msgid "Additional options"
147
  msgstr "Opções adicionais"
148
 
149
+ #: contact_form.php:248
150
  msgid "Display Attachment block"
151
  msgstr "Mostrar opção para anexar arquivos"
152
 
153
+ #: contact_form.php:253
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:257
158
  msgid "Display Send me a copy block"
159
  msgstr "Mostrar a opção Envie-me um cópia"
160
 
161
+ #: contact_form.php:263
162
  msgid "Change label for fields of the contact form"
163
  msgstr "Mudar rótulo para os campos no formulário de contato"
164
 
165
+ #: contact_form.php:278
166
  msgid "Save Changes"
167
  msgstr "Salvar mudanças"
168
 
169
+ #: contact_form.php:309
170
  msgid "Thank you for contacting us."
171
  msgstr "Obrigado por nos contactar"
172
 
173
+ #: contact_form.php:314
174
  msgid "Sorry, your e-mail could not be delivered."
175
  msgstr "Desculpe, seu e-mail não pode ser entregue."
176
 
177
+ #: contact_form.php:371
178
  msgid "You can attach files of the following types"
179
  msgstr "Você pode anexar arquivos do seguinte tipo"
180
 
181
+ #: contact_form.php:377
182
  msgid "Send me a copy"
183
  msgstr "Envie-me uma cópia"
184
 
185
+ #: contact_form.php:387
186
  msgid "Submit"
187
  msgstr "Enviar"
188
 
189
+ #: contact_form.php:403
190
  msgid "Your name is required."
191
  msgstr "Seu nome é obrigatório"
192
 
193
+ #: contact_form.php:404
194
  msgid "A proper e-mail address is required."
195
  msgstr "Um e-mail correto é obrigatório."
196
 
197
+ #: contact_form.php:405
198
  msgid "Subject text is required."
199
  msgstr "O Assunto da mensagem é obrigatório."
200
 
201
+ #: contact_form.php:406
202
  msgid "Message text is required."
203
  msgstr "O texto da Mensagem é obrigatório."
204
 
205
+ #: contact_form.php:407
206
  msgid "Please make corrections below and try again."
207
  msgstr "Por favor, faça as correções abaixo e tente enviar a mensagem novamente."
208
 
209
+ #: contact_form.php:436
210
  msgid "Attachment is broken."
211
  msgstr "Impossível anexar arquivo. "
212
 
213
+ #: contact_form.php:449
214
  msgid "Please complete the CAPTCHA."
215
  msgstr "Por favor, complete a resposta da charada ."
216
 
217
+ #: contact_form.php:506
218
+ #: contact_form.php:540
219
  msgid "Sent from (ip address)"
220
  msgstr "Enviado de (Endereço IP)"
221
 
222
+ #: contact_form.php:507
223
+ #: contact_form.php:543
224
  msgid "Date/Time"
225
  msgstr "DAta / Hora"
226
 
227
+ #: contact_form.php:508
228
+ #: contact_form.php:546
229
  msgid "Coming from (referer)"
230
  msgstr "Vindo de (origem)"
231
 
232
+ #: contact_form.php:509
233
+ #: contact_form.php:549
234
  msgid "Using (user agent)"
235
  msgstr "Usando (cliente de email)"
236
 
237
+ #: contact_form.php:514
238
  msgid "Contact from"
239
  msgstr "Formulário de Contato"
240
 
241
+ #: contact_form.php:519
242
  msgid "Name"
243
  msgstr "Nome"
244
 
245
+ #: contact_form.php:522
246
  msgid "Email"
247
  msgstr "E-Mail"
248
 
249
+ #: contact_form.php:525
250
  msgid "Subject"
251
  msgstr "Assunto"
252
 
253
+ #: contact_form.php:528
254
  msgid "Message"
255
  msgstr "Mensagem"
256
 
257
+ #: contact_form.php:531
258
  msgid "Site"
259
  msgstr "Site"
260
 
261
+ #: contact_form.php:572
262
  msgid "If you can see this MIME than your client doesn't accept MIME types!"
263
  msgstr "Se você consegue ver esta MENSAGEM então seu cliente não aceita tipos MIME! Favor usar um cliente mais atualizado."
264
 
265
+ #: contact_form.php:627
266
  msgid "FAQ"
267
  msgstr "Perguntas Frequentes"
268
 
269
+ #: contact_form.php:628
270
  msgid "Support"
271
  msgstr "Suporte"
272
 
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-02-07 19:19+0200\n"
6
- "PO-Revision-Date: 2012-02-07 19:19+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"
@@ -16,257 +16,257 @@ msgstr ""
16
  "X-Poedit-SourceCharset: utf-8\n"
17
  "X-Poedit-SearchPath-0: .\n"
18
 
19
- #: contact_form.php:78
20
  msgid "Activated plugins"
21
  msgstr "Активированные плагины"
22
 
23
- #: contact_form.php:80
24
- #: contact_form.php:88
25
- #: contact_form.php:96
26
  msgid "Read more"
27
  msgstr "Читать далее"
28
 
29
- #: contact_form.php:80
30
- #: contact_form.php:620
31
- #: contact_form.php:629
32
  msgid "Settings"
33
  msgstr "Настройки"
34
 
35
- #: contact_form.php:86
36
  msgid "Installed plugins"
37
  msgstr "Установленные плагины"
38
 
39
- #: contact_form.php:94
40
  msgid "Recommended plugins"
41
  msgstr "Рекомендованные к установке плагины"
42
 
43
- #: contact_form.php:96
44
  msgid "Download"
45
  msgstr "Скачать"
46
 
47
- #: contact_form.php:96
48
  #, php-format
49
  msgid "Install %s"
50
  msgstr "Установлено %s"
51
 
52
- #: contact_form.php:96
53
  msgid "Install now from wordpress.org"
54
  msgstr "Установить с wordpress.org"
55
 
56
- #: contact_form.php:98
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 "Если у вас есть какие-то впросы, обращайтесь на plugin@bestwebsoft.com или заполните контактную форму на нашем сайте"
59
 
60
- #: contact_form.php:110
61
- #: contact_form.php:213
62
  msgid "Contact Form Options"
63
  msgstr "Настройки Контактной Формы"
64
 
65
- #: contact_form.php:110
66
  msgid "Contact Form"
67
  msgstr "Контактная Форма"
68
 
69
- #: contact_form.php:130
70
- #: contact_form.php:164
71
- #: contact_form.php:181
72
- #: contact_form.php:271
73
  msgid "Name:"
74
  msgstr "Имя:"
75
 
76
- #: contact_form.php:131
77
- #: contact_form.php:165
78
- #: contact_form.php:182
79
- #: contact_form.php:272
80
  msgid "E-Mail Address:"
81
  msgstr "E-mail адрес:"
82
 
83
- #: contact_form.php:132
84
- #: contact_form.php:166
85
- #: contact_form.php:183
86
- #: contact_form.php:273
87
  msgid "Subject:"
88
  msgstr "Тема:"
89
 
90
- #: contact_form.php:133
91
- #: contact_form.php:167
92
- #: contact_form.php:184
93
- #: contact_form.php:274
94
  msgid "Message:"
95
  msgstr "Сообщение:"
96
 
97
- #: contact_form.php:134
98
- #: contact_form.php:168
99
- #: contact_form.php:185
100
- #: contact_form.php:275
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:"
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 label for fields of the contact form"
163
  msgstr "Изменить названия полей контактной формы"
164
 
165
- #: contact_form.php:281
166
  msgid "Save Changes"
167
  msgstr "Save Changes"
168
 
169
- #: contact_form.php:312
170
  msgid "Thank you for contacting us."
171
  msgstr "Спасибо за контакт с нами."
172
 
173
- #: contact_form.php:317
174
  msgid "Sorry, your e-mail could not be delivered."
175
  msgstr "Извините, ваш email не может быть отправлен."
176
 
177
- #: contact_form.php:374
178
  msgid "You can attach files of the following types"
179
  msgstr "Пользователи могут прикрепить файлы таких типов"
180
 
181
- #: contact_form.php:380
182
  msgid "Send me a copy"
183
  msgstr "Отправить мне копию"
184
 
185
- #: contact_form.php:390
186
  msgid "Submit"
187
  msgstr "Отправить"
188
 
189
- #: contact_form.php:406
190
  msgid "Your name is required."
191
  msgstr "Ваше имя - это обязательное поле."
192
 
193
- #: contact_form.php:407
194
  msgid "A proper e-mail address is required."
195
  msgstr "Поле e-mail адреса - обязательное для заполнения."
196
 
197
- #: contact_form.php:408
198
  msgid "Subject text is required."
199
  msgstr "Поле Тема - обязательное поле."
200
 
201
- #: contact_form.php:409
202
  msgid "Message text is required."
203
  msgstr "Поле Сообщение - обязательное поле."
204
 
205
- #: contact_form.php:410
206
  msgid "Please make corrections below and try again."
207
  msgstr "Пожалуйста, сделайте исправления в отмеченных полях ниже и повторите попытку."
208
 
209
- #: contact_form.php:439
210
  msgid "Attachment is broken."
211
  msgstr "Прикрепленный тип файла не поддерживается"
212
 
213
- #: contact_form.php:452
214
  msgid "Please complete the CAPTCHA."
215
  msgstr "Пожалуйста, заполните КАПЧУ."
216
 
217
- #: contact_form.php:509
218
- #: contact_form.php:543
219
  msgid "Sent from (ip address)"
220
  msgstr "Отправлено от (ip адрес)"
221
 
222
- #: contact_form.php:510
223
- #: contact_form.php:546
224
  msgid "Date/Time"
225
  msgstr "Дата/Время"
226
 
227
- #: contact_form.php:511
228
- #: contact_form.php:549
229
  msgid "Coming from (referer)"
230
  msgstr "Пришло из (реферер)"
231
 
232
- #: contact_form.php:512
233
- #: contact_form.php:552
234
  msgid "Using (user agent)"
235
  msgstr "Используя (user agent)"
236
 
237
- #: contact_form.php:517
238
  msgid "Contact from"
239
  msgstr "Контактная Форма"
240
 
241
- #: contact_form.php:522
242
  msgid "Name"
243
  msgstr "Имя"
244
 
245
- #: contact_form.php:525
246
  msgid "Email"
247
  msgstr "Email"
248
 
249
- #: contact_form.php:528
250
  msgid "Subject"
251
  msgstr "Тема"
252
 
253
- #: contact_form.php:531
254
  msgid "Message"
255
  msgstr "Сообщение"
256
 
257
- #: contact_form.php:534
258
  msgid "Site"
259
  msgstr "Сайт"
260
 
261
- #: contact_form.php:575
262
  msgid "If you can see this MIME than your client doesn't accept MIME types!"
263
  msgstr "Если вы можете видеть этот MIME значит ваш почтовый клиент не поддерживает MIME тип!"
264
 
265
- #: contact_form.php:630
266
  msgid "FAQ"
267
  msgstr "FAQ"
268
 
269
- #: contact_form.php:631
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-02-24 15:52+0200\n"
6
+ "PO-Revision-Date: 2012-02-24 15:52+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"
16
  "X-Poedit-SourceCharset: utf-8\n"
17
  "X-Poedit-SearchPath-0: .\n"
18
 
19
+ #: contact_form.php:75
20
  msgid "Activated plugins"
21
  msgstr "Активированные плагины"
22
 
23
+ #: contact_form.php:77
24
+ #: contact_form.php:85
25
+ #: contact_form.php:93
26
  msgid "Read more"
27
  msgstr "Читать далее"
28
 
29
+ #: contact_form.php:77
30
+ #: contact_form.php:617
31
+ #: contact_form.php:626
32
  msgid "Settings"
33
  msgstr "Настройки"
34
 
35
+ #: contact_form.php:83
36
  msgid "Installed plugins"
37
  msgstr "Установленные плагины"
38
 
39
+ #: contact_form.php:91
40
  msgid "Recommended plugins"
41
  msgstr "Рекомендованные к установке плагины"
42
 
43
+ #: contact_form.php:93
44
  msgid "Download"
45
  msgstr "Скачать"
46
 
47
+ #: contact_form.php:93
48
  #, php-format
49
  msgid "Install %s"
50
  msgstr "Установлено %s"
51
 
52
+ #: contact_form.php:93
53
  msgid "Install now from wordpress.org"
54
  msgstr "Установить с wordpress.org"
55
 
56
+ #: contact_form.php:95
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 "Если у вас есть какие-то впросы, обращайтесь на plugin@bestwebsoft.com или заполните контактную форму на нашем сайте"
59
 
60
+ #: contact_form.php:107
61
+ #: contact_form.php:210
62
  msgid "Contact Form Options"
63
  msgstr "Настройки Контактной Формы"
64
 
65
+ #: contact_form.php:107
66
  msgid "Contact Form"
67
  msgstr "Контактная Форма"
68
 
69
+ #: contact_form.php:127
70
+ #: contact_form.php:161
71
+ #: contact_form.php:178
72
+ #: contact_form.php:268
73
  msgid "Name:"
74
  msgstr "Имя:"
75
 
76
+ #: contact_form.php:128
77
+ #: contact_form.php:162
78
+ #: contact_form.php:179
79
+ #: contact_form.php:269
80
  msgid "E-Mail Address:"
81
  msgstr "E-mail адрес:"
82
 
83
+ #: contact_form.php:129
84
+ #: contact_form.php:163
85
+ #: contact_form.php:180
86
+ #: contact_form.php:270
87
  msgid "Subject:"
88
  msgstr "Тема:"
89
 
90
+ #: contact_form.php:130
91
+ #: contact_form.php:164
92
+ #: contact_form.php:181
93
+ #: contact_form.php:271
94
  msgid "Message:"
95
  msgstr "Сообщение:"
96
 
97
+ #: contact_form.php:131
98
+ #: contact_form.php:165
99
+ #: contact_form.php:182
100
+ #: contact_form.php:272
101
  msgid "Attachment:"
102
  msgstr "Прикрепить файл:"
103
 
104
+ #: contact_form.php:190
105
+ #: contact_form.php:199
106
  msgid "Options saved."
107
  msgstr "Опции сохранены"
108
 
109
+ #: contact_form.php:193
110
  msgid "Such user is not exist. Settings are not saved."
111
  msgstr "Данный пользователь не найден. Настройки не сохранены"
112
 
113
+ #: contact_form.php:202
114
  msgid "Please input correct email. Settings are not saved."
115
  msgstr "Пожалуйста, введите корректный email. Настройки не сохранены."
116
 
117
+ #: contact_form.php:215
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:"
119
  msgstr "Если вы хотите добавить Контактную Форму на свой сайт, вам надо только скопировать и вставить шорткод в контент страницы или поста:"
120
 
121
+ #: contact_form.php:216
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:220
126
  msgid "Use email of wordpress user:"
127
  msgstr "Email пользователя сайта:"
128
 
129
+ #: contact_form.php:226
130
  msgid "Select user name"
131
  msgstr "Выберите имя пользователя"
132
 
133
+ #: contact_form.php:231
134
  msgid "Set a name of user who will get messages from a contact form."
135
  msgstr "Укажите логин пользователя, который будет получать сообщения контактной формы."
136
 
137
+ #: contact_form.php:235
138
  msgid "Use this email:"
139
  msgstr "Использовать этот email:"
140
 
141
+ #: contact_form.php:241
142
  msgid "Set an email address which will be used for messages receiving."
143
  msgstr "Укажите email адрес, на который будут отправляться сообщения."
144
 
145
+ #: contact_form.php:245
146
  msgid "Additional options"
147
  msgstr "Дополнительные настройки"
148
 
149
+ #: contact_form.php:248
150
  msgid "Display Attachment block"
151
  msgstr "Отобразить блок Прикрепить файл"
152
 
153
+ #: contact_form.php:253
154
  msgid "Users can attach files of the following types"
155
  msgstr "Пользователи могут прикрепить файлы таких типов"
156
 
157
+ #: contact_form.php:257
158
  msgid "Display Send me a copy block"
159
  msgstr "Отобразить блок Отправить мне копию"
160
 
161
+ #: contact_form.php:263
162
  msgid "Change label for fields of the contact form"
163
  msgstr "Изменить названия полей контактной формы"
164
 
165
+ #: contact_form.php:278
166
  msgid "Save Changes"
167
  msgstr "Save Changes"
168
 
169
+ #: contact_form.php:309
170
  msgid "Thank you for contacting us."
171
  msgstr "Спасибо за контакт с нами."
172
 
173
+ #: contact_form.php:314
174
  msgid "Sorry, your e-mail could not be delivered."
175
  msgstr "Извините, ваш email не может быть отправлен."
176
 
177
+ #: contact_form.php:371
178
  msgid "You can attach files of the following types"
179
  msgstr "Пользователи могут прикрепить файлы таких типов"
180
 
181
+ #: contact_form.php:377
182
  msgid "Send me a copy"
183
  msgstr "Отправить мне копию"
184
 
185
+ #: contact_form.php:387
186
  msgid "Submit"
187
  msgstr "Отправить"
188
 
189
+ #: contact_form.php:403
190
  msgid "Your name is required."
191
  msgstr "Ваше имя - это обязательное поле."
192
 
193
+ #: contact_form.php:404
194
  msgid "A proper e-mail address is required."
195
  msgstr "Поле e-mail адреса - обязательное для заполнения."
196
 
197
+ #: contact_form.php:405
198
  msgid "Subject text is required."
199
  msgstr "Поле Тема - обязательное поле."
200
 
201
+ #: contact_form.php:406
202
  msgid "Message text is required."
203
  msgstr "Поле Сообщение - обязательное поле."
204
 
205
+ #: contact_form.php:407
206
  msgid "Please make corrections below and try again."
207
  msgstr "Пожалуйста, сделайте исправления в отмеченных полях ниже и повторите попытку."
208
 
209
+ #: contact_form.php:436
210
  msgid "Attachment is broken."
211
  msgstr "Прикрепленный тип файла не поддерживается"
212
 
213
+ #: contact_form.php:449
214
  msgid "Please complete the CAPTCHA."
215
  msgstr "Пожалуйста, заполните КАПЧУ."
216
 
217
+ #: contact_form.php:506
218
+ #: contact_form.php:540
219
  msgid "Sent from (ip address)"
220
  msgstr "Отправлено от (ip адрес)"
221
 
222
+ #: contact_form.php:507
223
+ #: contact_form.php:543
224
  msgid "Date/Time"
225
  msgstr "Дата/Время"
226
 
227
+ #: contact_form.php:508
228
+ #: contact_form.php:546
229
  msgid "Coming from (referer)"
230
  msgstr "Пришло из (реферер)"
231
 
232
+ #: contact_form.php:509
233
+ #: contact_form.php:549
234
  msgid "Using (user agent)"
235
  msgstr "Используя (user agent)"
236
 
237
+ #: contact_form.php:514
238
  msgid "Contact from"
239
  msgstr "Контактная Форма"
240
 
241
+ #: contact_form.php:519
242
  msgid "Name"
243
  msgstr "Имя"
244
 
245
+ #: contact_form.php:522
246
  msgid "Email"
247
  msgstr "Email"
248
 
249
+ #: contact_form.php:525
250
  msgid "Subject"
251
  msgstr "Тема"
252
 
253
+ #: contact_form.php:528
254
  msgid "Message"
255
  msgstr "Сообщение"
256
 
257
+ #: contact_form.php:531
258
  msgid "Site"
259
  msgstr "Сайт"
260
 
261
+ #: contact_form.php:572
262
  msgid "If you can see this MIME than your client doesn't accept MIME types!"
263
  msgstr "Если вы можете видеть этот MIME значит ваш почтовый клиент не поддерживает MIME тип!"
264
 
265
+ #: contact_form.php:627
266
  msgid "FAQ"
267
  msgstr "FAQ"
268
 
269
+ #: contact_form.php:628
270
  msgid "Support"
271
  msgstr "Поддержка"
272
 
languages/contact_form-sv_SE.mo ADDED
Binary file
languages/contact_form-sv_SE.po ADDED
@@ -0,0 +1,280 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ msgid ""
2
+ msgstr ""
3
+ "Project-Id-Version: contact_form\n"
4
+ "Report-Msgid-Bugs-To: \n"
5
+ "POT-Creation-Date: 2012-02-24 15:52+0200\n"
6
+ "PO-Revision-Date: 2012-02-24 15:52+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"
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: Swedish\n"
15
+ "X-Poedit-Country: SWEDEN\n"
16
+ "X-Poedit-SourceCharset: utf-8\n"
17
+ "X-Poedit-SearchPath-0: .\n"
18
+
19
+ #: contact_form.php:75
20
+ msgid "Activated plugins"
21
+ msgstr "Aktiverat plugin"
22
+
23
+ #: contact_form.php:77
24
+ #: contact_form.php:85
25
+ #: contact_form.php:93
26
+ msgid "Read more"
27
+ msgstr "Läs mer"
28
+
29
+ #: contact_form.php:77
30
+ #: contact_form.php:617
31
+ #: contact_form.php:626
32
+ msgid "Settings"
33
+ msgstr "Inställningar"
34
+
35
+ #: contact_form.php:83
36
+ msgid "Installed plugins"
37
+ msgstr "Installerade plugin"
38
+
39
+ #: contact_form.php:91
40
+ msgid "Recommended plugins"
41
+ msgstr "Rekommenderade plugin"
42
+
43
+ #: contact_form.php:93
44
+ msgid "Download"
45
+ msgstr "Ladda ner"
46
+
47
+ #: contact_form.php:93
48
+ #, php-format
49
+ msgid "Install %s"
50
+ msgstr "Installerar %s"
51
+
52
+ #: contact_form.php:93
53
+ msgid "Install now from wordpress.org"
54
+ msgstr "Installera från wordpress.org"
55
+
56
+ #: contact_form.php:95
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 "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:107
61
+ #: contact_form.php:210
62
+ msgid "Contact Form Options"
63
+ msgstr "Inställningar för Kontaktformulär"
64
+
65
+ #: contact_form.php:107
66
+ msgid "Contact Form"
67
+ msgstr "Kontak formulär"
68
+
69
+ #: contact_form.php:127
70
+ #: contact_form.php:161
71
+ #: contact_form.php:178
72
+ #: contact_form.php:268
73
+ msgid "Name:"
74
+ msgstr "Namn:"
75
+
76
+ #: contact_form.php:128
77
+ #: contact_form.php:162
78
+ #: contact_form.php:179
79
+ #: contact_form.php:269
80
+ msgid "E-Mail Address:"
81
+ msgstr "Epostadress:"
82
+
83
+ #: contact_form.php:129
84
+ #: contact_form.php:163
85
+ #: contact_form.php:180
86
+ #: contact_form.php:270
87
+ msgid "Subject:"
88
+ msgstr "Rubrik:"
89
+
90
+ #: contact_form.php:130
91
+ #: contact_form.php:164
92
+ #: contact_form.php:181
93
+ #: contact_form.php:271
94
+ msgid "Message:"
95
+ msgstr "Meddelande:"
96
+
97
+ #: contact_form.php:131
98
+ #: contact_form.php:165
99
+ #: contact_form.php:182
100
+ #: contact_form.php:272
101
+ msgid "Attachment:"
102
+ msgstr "Bilaga:"
103
+
104
+ #: contact_form.php:190
105
+ #: contact_form.php:199
106
+ msgid "Options saved."
107
+ msgstr "Inställningar sparade"
108
+
109
+ #: contact_form.php:193
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:202
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:215
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:"
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:"
120
+
121
+ #: contact_form.php:216
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:220
126
+ msgid "Use email of wordpress user:"
127
+ msgstr "Använd epostadress för wordpress användare:"
128
+
129
+ #: contact_form.php:226
130
+ msgid "Select user name"
131
+ msgstr "Välj användarnamn"
132
+
133
+ #: contact_form.php:231
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:235
138
+ msgid "Use this email:"
139
+ msgstr "Använd denna epost:"
140
+
141
+ #: contact_form.php:241
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:245
146
+ msgid "Additional options"
147
+ msgstr "Fler val"
148
+
149
+ #: contact_form.php:248
150
+ msgid "Display Attachment block"
151
+ msgstr "Visa bifogade"
152
+
153
+ #: contact_form.php:253
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:257
158
+ msgid "Display Send me a copy block"
159
+ msgstr "Visa \"Skicka mig en kopia\""
160
+
161
+ #: contact_form.php:263
162
+ msgid "Change label for fields of the contact form"
163
+ msgstr "Ändra etiketter för fält på kontaktformuläret"
164
+
165
+ #: contact_form.php:278
166
+ msgid "Save Changes"
167
+ msgstr "Spara ändringar"
168
+
169
+ #: contact_form.php:309
170
+ msgid "Thank you for contacting us."
171
+ msgstr "Tack för att du kontaktat oss."
172
+
173
+ #: contact_form.php:314
174
+ msgid "Sorry, your e-mail could not be delivered."
175
+ msgstr "Beklagar, men ditt meddelande kunde inte levereras."
176
+
177
+ #: contact_form.php:371
178
+ msgid "You can attach files of the following types"
179
+ msgstr "Du kan lägga till filer av följande typ."
180
+
181
+ #: contact_form.php:377
182
+ msgid "Send me a copy"
183
+ msgstr "Skicka mig en kopia"
184
+
185
+ #: contact_form.php:387
186
+ msgid "Submit"
187
+ msgstr "Skicka"
188
+
189
+ #: contact_form.php:403
190
+ msgid "Your name is required."
191
+ msgstr "Ditt namn krävs"
192
+
193
+ #: contact_form.php:404
194
+ msgid "A proper e-mail address is required."
195
+ msgstr "En korrekt epostadress krävs."
196
+
197
+ #: contact_form.php:405
198
+ msgid "Subject text is required."
199
+ msgstr "Rubrik krävs."
200
+
201
+ #: contact_form.php:406
202
+ msgid "Message text is required."
203
+ msgstr "Meddelandetext krävs."
204
+
205
+ #: contact_form.php:407
206
+ msgid "Please make corrections below and try again."
207
+ msgstr "Var vänlig och gör ändringarna nedan och försök igen."
208
+
209
+ #: contact_form.php:436
210
+ msgid "Attachment is broken."
211
+ msgstr "Fel vid bilaga"
212
+
213
+ #: contact_form.php:449
214
+ msgid "Please complete the CAPTCHA."
215
+ msgstr "Var vänlig och fyll i CAPTCHA."
216
+
217
+ #: contact_form.php:506
218
+ #: contact_form.php:540
219
+ msgid "Sent from (ip address)"
220
+ msgstr "Skickat från (IP-adress)"
221
+
222
+ #: contact_form.php:507
223
+ #: contact_form.php:543
224
+ msgid "Date/Time"
225
+ msgstr "Dag/tid"
226
+
227
+ #: contact_form.php:508
228
+ #: contact_form.php:546
229
+ msgid "Coming from (referer)"
230
+ msgstr "Skickat från (referent)"
231
+
232
+ #: contact_form.php:509
233
+ #: contact_form.php:549
234
+ msgid "Using (user agent)"
235
+ msgstr "med (user agent)"
236
+
237
+ #: contact_form.php:514
238
+ msgid "Contact from"
239
+ msgstr "Kontakformulär"
240
+
241
+ #: contact_form.php:519
242
+ msgid "Name"
243
+ msgstr "Namn"
244
+
245
+ #: contact_form.php:522
246
+ msgid "Email"
247
+ msgstr "Epost"
248
+
249
+ #: contact_form.php:525
250
+ msgid "Subject"
251
+ msgstr "Rubrik"
252
+
253
+ #: contact_form.php:528
254
+ msgid "Message"
255
+ msgstr "Meddelande"
256
+
257
+ #: contact_form.php:531
258
+ msgid "Site"
259
+ msgstr "www"
260
+
261
+ #: contact_form.php:572
262
+ msgid "If you can see this MIME than your client doesn't accept MIME types!"
263
+ msgstr "Om du ser detta MIME så stödjer inte din client MIME!"
264
+
265
+ #: contact_form.php:627
266
+ msgid "FAQ"
267
+ msgstr "Vanliga frågor"
268
+
269
+ #: contact_form.php:628
270
+ msgid "Support"
271
+ msgstr "Support"
272
+
273
+ #~ msgid "E-Mail Addresse:"
274
+ #~ msgstr "Epost adress"
275
+
276
+ #~ msgid "Install Now"
277
+ #~ msgstr "Installera nu"
278
+
279
+ #~ msgid "BWS Plugins"
280
+ #~ msgstr "BWS Plugins"
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-02-07 19:18+0200\n"
6
- "PO-Revision-Date: 2012-02-07 19:18+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"
@@ -16,257 +16,257 @@ msgstr ""
16
  "X-Poedit-SourceCharset: utf-8\n"
17
  "X-Poedit-SearchPath-0: .\n"
18
 
19
- #: contact_form.php:78
20
  msgid "Activated plugins"
21
  msgstr "Aktif eklentiler"
22
 
23
- #: contact_form.php:80
24
- #: contact_form.php:88
25
- #: contact_form.php:96
26
  msgid "Read more"
27
  msgstr "Devamı"
28
 
29
- #: contact_form.php:80
30
- #: contact_form.php:620
31
- #: contact_form.php:629
32
  msgid "Settings"
33
  msgstr "Ayarlar"
34
 
35
- #: contact_form.php:86
36
  msgid "Installed plugins"
37
  msgstr "Eklenti Kuruldu"
38
 
39
- #: contact_form.php:94
40
  msgid "Recommended plugins"
41
  msgstr "Önerilen Eklentiler"
42
 
43
- #: contact_form.php:96
44
  msgid "Download"
45
  msgstr "İndir"
46
 
47
- #: contact_form.php:96
48
  #, php-format
49
  msgid "Install %s"
50
  msgstr "Kur %s"
51
 
52
- #: contact_form.php:96
53
  msgid "Install now from wordpress.org"
54
  msgstr "Wordpress.org dan şimdi yükleyin"
55
 
56
- #: contact_form.php:98
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 "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:110
61
- #: contact_form.php:213
62
  msgid "Contact Form Options"
63
  msgstr "İletişim Formu Seçenekleri"
64
 
65
- #: contact_form.php:110
66
  msgid "Contact Form"
67
  msgstr "İletişim Formu"
68
 
69
- #: contact_form.php:130
70
- #: contact_form.php:164
71
- #: contact_form.php:181
72
- #: contact_form.php:271
73
  msgid "Name:"
74
  msgstr "Adınız Soyadınız :"
75
 
76
- #: contact_form.php:131
77
- #: contact_form.php:165
78
- #: contact_form.php:182
79
- #: contact_form.php:272
80
  msgid "E-Mail Address:"
81
  msgstr "E-mail Adresiniz :"
82
 
83
- #: contact_form.php:132
84
- #: contact_form.php:166
85
- #: contact_form.php:183
86
- #: contact_form.php:273
87
  msgid "Subject:"
88
  msgstr "Konu:"
89
 
90
- #: contact_form.php:133
91
- #: contact_form.php:167
92
- #: contact_form.php:184
93
- #: contact_form.php:274
94
  msgid "Message:"
95
  msgstr "Mesajınız:"
96
 
97
- #: contact_form.php:134
98
- #: contact_form.php:168
99
- #: contact_form.php:185
100
- #: contact_form.php:275
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:"
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 label for fields of the contact form"
163
  msgstr "Iletişim formu alanlar için değişim etiket"
164
 
165
- #: contact_form.php:281
166
  msgid "Save Changes"
167
  msgstr "Değişiklikler Kayıt Edildi"
168
 
169
- #: contact_form.php:312
170
  msgid "Thank you for contacting us."
171
  msgstr "Bizimle bağlantı kurduğunuz için teşekkür ederiz."
172
 
173
- #: contact_form.php:317
174
  msgid "Sorry, your e-mail could not be delivered."
175
  msgstr "Üzgünüz, e-posta gönderilemedi."
176
 
177
- #: contact_form.php:374
178
  msgid "You can attach files of the following types"
179
  msgstr "Aşağıdaki türlerde dosya ekleyebilirsiniz"
180
 
181
- #: contact_form.php:380
182
  msgid "Send me a copy"
183
  msgstr "Bir kopyasını banada gönder"
184
 
185
- #: contact_form.php:390
186
  msgid "Submit"
187
  msgstr "Gönder"
188
 
189
- #: contact_form.php:406
190
  msgid "Your name is required."
191
  msgstr "Adınız ve soyadınız gereklidir."
192
 
193
- #: contact_form.php:407
194
  msgid "A proper e-mail address is required."
195
  msgstr "Düzgün bir e-posta adresi gereklidir."
196
 
197
- #: contact_form.php:408
198
  msgid "Subject text is required."
199
  msgstr "Konu metni gereklidir."
200
 
201
- #: contact_form.php:409
202
  msgid "Message text is required."
203
  msgstr "Mesaj metni gereklidir."
204
 
205
- #: contact_form.php:410
206
  msgid "Please make corrections below and try again."
207
  msgstr "Lütfen aşağıdaki düzeltmeleri yapın ve tekrar deneyin."
208
 
209
- #: contact_form.php:439
210
  msgid "Attachment is broken."
211
  msgstr "Eklenti Hatalı"
212
 
213
- #: contact_form.php:452
214
  msgid "Please complete the CAPTCHA."
215
  msgstr "CAPTCHA Doldurunuz"
216
 
217
- #: contact_form.php:509
218
- #: contact_form.php:543
219
  msgid "Sent from (ip address)"
220
  msgstr "Geldiği (ip adresi)"
221
 
222
- #: contact_form.php:510
223
- #: contact_form.php:546
224
  msgid "Date/Time"
225
  msgstr "Tarih/Zaman"
226
 
227
- #: contact_form.php:511
228
- #: contact_form.php:549
229
  msgid "Coming from (referer)"
230
  msgstr "Gelen"
231
 
232
- #: contact_form.php:512
233
- #: contact_form.php:552
234
  msgid "Using (user agent)"
235
  msgstr "Using (user agent)"
236
 
237
- #: contact_form.php:517
238
  msgid "Contact from"
239
  msgstr "Adlı Kişiden Mail Var"
240
 
241
- #: contact_form.php:522
242
  msgid "Name"
243
  msgstr "Adınız Soyadınız"
244
 
245
- #: contact_form.php:525
246
  msgid "Email"
247
  msgstr "e-mail"
248
 
249
- #: contact_form.php:528
250
  msgid "Subject"
251
  msgstr "Konu"
252
 
253
- #: contact_form.php:531
254
  msgid "Message"
255
  msgstr "Mesaj"
256
 
257
- #: contact_form.php:534
258
  msgid "Site"
259
  msgstr "Site"
260
 
261
- #: contact_form.php:575
262
  msgid "If you can see this MIME than your client doesn't accept MIME types!"
263
  msgstr "Istemci daha bu MIME görürseniz MIME türlerini kabul etmez!"
264
 
265
- #: contact_form.php:630
266
  msgid "FAQ"
267
  msgstr "Sık Sorulanlar"
268
 
269
- #: contact_form.php:631
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-02-24 15:52+0200\n"
6
+ "PO-Revision-Date: 2012-02-24 15:52+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"
16
  "X-Poedit-SourceCharset: utf-8\n"
17
  "X-Poedit-SearchPath-0: .\n"
18
 
19
+ #: contact_form.php:75
20
  msgid "Activated plugins"
21
  msgstr "Aktif eklentiler"
22
 
23
+ #: contact_form.php:77
24
+ #: contact_form.php:85
25
+ #: contact_form.php:93
26
  msgid "Read more"
27
  msgstr "Devamı"
28
 
29
+ #: contact_form.php:77
30
+ #: contact_form.php:617
31
+ #: contact_form.php:626
32
  msgid "Settings"
33
  msgstr "Ayarlar"
34
 
35
+ #: contact_form.php:83
36
  msgid "Installed plugins"
37
  msgstr "Eklenti Kuruldu"
38
 
39
+ #: contact_form.php:91
40
  msgid "Recommended plugins"
41
  msgstr "Önerilen Eklentiler"
42
 
43
+ #: contact_form.php:93
44
  msgid "Download"
45
  msgstr "İndir"
46
 
47
+ #: contact_form.php:93
48
  #, php-format
49
  msgid "Install %s"
50
  msgstr "Kur %s"
51
 
52
+ #: contact_form.php:93
53
  msgid "Install now from wordpress.org"
54
  msgstr "Wordpress.org dan şimdi yükleyin"
55
 
56
+ #: contact_form.php:95
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 "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:107
61
+ #: contact_form.php:210
62
  msgid "Contact Form Options"
63
  msgstr "İletişim Formu Seçenekleri"
64
 
65
+ #: contact_form.php:107
66
  msgid "Contact Form"
67
  msgstr "İletişim Formu"
68
 
69
+ #: contact_form.php:127
70
+ #: contact_form.php:161
71
+ #: contact_form.php:178
72
+ #: contact_form.php:268
73
  msgid "Name:"
74
  msgstr "Adınız Soyadınız :"
75
 
76
+ #: contact_form.php:128
77
+ #: contact_form.php:162
78
+ #: contact_form.php:179
79
+ #: contact_form.php:269
80
  msgid "E-Mail Address:"
81
  msgstr "E-mail Adresiniz :"
82
 
83
+ #: contact_form.php:129
84
+ #: contact_form.php:163
85
+ #: contact_form.php:180
86
+ #: contact_form.php:270
87
  msgid "Subject:"
88
  msgstr "Konu:"
89
 
90
+ #: contact_form.php:130
91
+ #: contact_form.php:164
92
+ #: contact_form.php:181
93
+ #: contact_form.php:271
94
  msgid "Message:"
95
  msgstr "Mesajınız:"
96
 
97
+ #: contact_form.php:131
98
+ #: contact_form.php:165
99
+ #: contact_form.php:182
100
+ #: contact_form.php:272
101
  msgid "Attachment:"
102
  msgstr "Dosya Eki:"
103
 
104
+ #: contact_form.php:190
105
+ #: contact_form.php:199
106
  msgid "Options saved."
107
  msgstr "Ayarlar Kayıt Edildi."
108
 
109
+ #: contact_form.php:193
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:202
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:215
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:"
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:216
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:220
126
  msgid "Use email of wordpress user:"
127
  msgstr "Kullanıcı adı veya mail girin"
128
 
129
+ #: contact_form.php:226
130
  msgid "Select user name"
131
  msgstr "Kullanıcı adı seçin"
132
 
133
+ #: contact_form.php:231
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:235
138
  msgid "Use this email:"
139
  msgstr "Bu e-posta adresini kullan:"
140
 
141
+ #: contact_form.php:241
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:245
146
  msgid "Additional options"
147
  msgstr "Ek Seçenekler"
148
 
149
+ #: contact_form.php:248
150
  msgid "Display Attachment block"
151
  msgstr "Eklenti Bloğunu Göster"
152
 
153
+ #: contact_form.php:253
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:257
158
  msgid "Display Send me a copy block"
159
  msgstr "Bana bir kopya gönder bloğunu göster"
160
 
161
+ #: contact_form.php:263
162
  msgid "Change label for fields of the contact form"
163
  msgstr "Iletişim formu alanlar için değişim etiket"
164
 
165
+ #: contact_form.php:278
166
  msgid "Save Changes"
167
  msgstr "Değişiklikler Kayıt Edildi"
168
 
169
+ #: contact_form.php:309
170
  msgid "Thank you for contacting us."
171
  msgstr "Bizimle bağlantı kurduğunuz için teşekkür ederiz."
172
 
173
+ #: contact_form.php:314
174
  msgid "Sorry, your e-mail could not be delivered."
175
  msgstr "Üzgünüz, e-posta gönderilemedi."
176
 
177
+ #: contact_form.php:371
178
  msgid "You can attach files of the following types"
179
  msgstr "Aşağıdaki türlerde dosya ekleyebilirsiniz"
180
 
181
+ #: contact_form.php:377
182
  msgid "Send me a copy"
183
  msgstr "Bir kopyasını banada gönder"
184
 
185
+ #: contact_form.php:387
186
  msgid "Submit"
187
  msgstr "Gönder"
188
 
189
+ #: contact_form.php:403
190
  msgid "Your name is required."
191
  msgstr "Adınız ve soyadınız gereklidir."
192
 
193
+ #: contact_form.php:404
194
  msgid "A proper e-mail address is required."
195
  msgstr "Düzgün bir e-posta adresi gereklidir."
196
 
197
+ #: contact_form.php:405
198
  msgid "Subject text is required."
199
  msgstr "Konu metni gereklidir."
200
 
201
+ #: contact_form.php:406
202
  msgid "Message text is required."
203
  msgstr "Mesaj metni gereklidir."
204
 
205
+ #: contact_form.php:407
206
  msgid "Please make corrections below and try again."
207
  msgstr "Lütfen aşağıdaki düzeltmeleri yapın ve tekrar deneyin."
208
 
209
+ #: contact_form.php:436
210
  msgid "Attachment is broken."
211
  msgstr "Eklenti Hatalı"
212
 
213
+ #: contact_form.php:449
214
  msgid "Please complete the CAPTCHA."
215
  msgstr "CAPTCHA Doldurunuz"
216
 
217
+ #: contact_form.php:506
218
+ #: contact_form.php:540
219
  msgid "Sent from (ip address)"
220
  msgstr "Geldiği (ip adresi)"
221
 
222
+ #: contact_form.php:507
223
+ #: contact_form.php:543
224
  msgid "Date/Time"
225
  msgstr "Tarih/Zaman"
226
 
227
+ #: contact_form.php:508
228
+ #: contact_form.php:546
229
  msgid "Coming from (referer)"
230
  msgstr "Gelen"
231
 
232
+ #: contact_form.php:509
233
+ #: contact_form.php:549
234
  msgid "Using (user agent)"
235
  msgstr "Using (user agent)"
236
 
237
+ #: contact_form.php:514
238
  msgid "Contact from"
239
  msgstr "Adlı Kişiden Mail Var"
240
 
241
+ #: contact_form.php:519
242
  msgid "Name"
243
  msgstr "Adınız Soyadınız"
244
 
245
+ #: contact_form.php:522
246
  msgid "Email"
247
  msgstr "e-mail"
248
 
249
+ #: contact_form.php:525
250
  msgid "Subject"
251
  msgstr "Konu"
252
 
253
+ #: contact_form.php:528
254
  msgid "Message"
255
  msgstr "Mesaj"
256
 
257
+ #: contact_form.php:531
258
  msgid "Site"
259
  msgstr "Site"
260
 
261
+ #: contact_form.php:572
262
  msgid "If you can see this MIME than your client doesn't accept MIME types!"
263
  msgstr "Istemci daha bu MIME görürseniz MIME türlerini kabul etmez!"
264
 
265
+ #: contact_form.php:627
266
  msgid "FAQ"
267
  msgstr "Sık Sorulanlar"
268
 
269
+ #: contact_form.php:628
270
  msgid "Support"
271
  msgstr "Destek"
272
 
readme.txt CHANGED
@@ -1,10 +1,10 @@
1
  === Contact Form ===
2
  Contributors: bestwebsoft
3
- Donate link: http://bestwebsoft.com/
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
7
- Stable tag: 3.08
8
 
9
  Add Contact Form to your WordPress website.
10
 
@@ -32,6 +32,7 @@ Contact Form allows you to add a feedback form easilly and simply to a post or a
32
  * Polish (pl_PL) (thanks Jarek Spirydowicz)
33
  * Russian (ru_RU)
34
  * Spanish (es_ES) (thanks Jesús Parra)
 
35
  * Turkish (tr_TR) (thanks <a herf="mailto:d-bulent@hotmail.com ">Devrim Bulent Ibis</a>, www.devrimhoca.com)
36
 
37
  If you create your own language pack or update the existing one, you can send <a href="http://codex.wordpress.org/Translating_WordPress" target="_blank">the text of PO and MO files</a> for <a href="http://bestwebsoft.com/" target="_blank">BWS</a> and we'll add it to the plugin. You can download the latest version of the program for work with PO and MO files <a href="http://www.poedit.net/download.php" target="_blank">Poedit</a>.
@@ -84,6 +85,11 @@ Here is an example for German language files.
84
 
85
  == Changelog ==
86
 
 
 
 
 
 
87
  = V3.08 - 17.02.2012 =
88
  * NEW : Added Spanish language file for plugin.
89
 
@@ -152,6 +158,9 @@ Here is an example for German language files.
152
 
153
  == Upgrade Notice ==
154
 
 
 
 
155
  = V3.08 =
156
  Added Spanish language file for plugin.
157
 
1
  === Contact Form ===
2
  Contributors: bestwebsoft
3
+ Donate link: https://www.2checkout.com/checkout/purchase?sid=1430388&quantity=1&product_id=13
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
7
+ Stable tag: 3.09
8
 
9
  Add Contact Form to your WordPress website.
10
 
32
  * Polish (pl_PL) (thanks Jarek Spirydowicz)
33
  * Russian (ru_RU)
34
  * Spanish (es_ES) (thanks Jesús Parra)
35
+ * Swedish (sv_SV) (thanks Martin Tonek)
36
  * Turkish (tr_TR) (thanks <a herf="mailto:d-bulent@hotmail.com ">Devrim Bulent Ibis</a>, www.devrimhoca.com)
37
 
38
  If you create your own language pack or update the existing one, you can send <a href="http://codex.wordpress.org/Translating_WordPress" target="_blank">the text of PO and MO files</a> for <a href="http://bestwebsoft.com/" target="_blank">BWS</a> and we'll add it to the plugin. You can download the latest version of the program for work with PO and MO files <a href="http://www.poedit.net/download.php" target="_blank">Poedit</a>.
85
 
86
  == Changelog ==
87
 
88
+ = V3.09 - 24.02.2012 =
89
+ * NEW : Added Spanish language file for plugin.
90
+ * Change : Code to include styles and scripts in a plug for the correct SSL verification.
91
+ * Bugfix : The bug validate email address in admin section was fixed.
92
+
93
  = V3.08 - 17.02.2012 =
94
  * NEW : Added Spanish language file for plugin.
95
 
158
 
159
  == Upgrade Notice ==
160
 
161
+ = V3.09 =
162
+ Added Spanish language file for plugin. Changed code to include styles and scripts in a plug for the correct SSL verification. The bug validate email address in admin section was fixed. Upgrade immediately.
163
+
164
  = V3.08 =
165
  Added Spanish language file for plugin.
166